diff --git a/.clang-format b/.clang-format index 3c68a1a7a..f4cd68ae4 100644 --- a/.clang-format +++ b/.clang-format @@ -81,7 +81,7 @@ SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp11 +Standard: c++17 TabWidth: 4 UseTab: Never ... diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9300cc846..d8b8322d9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -38,7 +38,7 @@ We will accept contributions of good code that we can use from anyone. - “contributions”: This means just about anything you wish to contribute to the project, as long as it is good code we can use. The easier you make it for us to accept your contribution, the happier we are, but if it’s good enough, we will do a reasonable amount of work to use it. - “of good code”: This means that we will accept contributions that work well and efficiently, that fit in with the goals of the project, that match the project’s coding style, and that do not impose an undue maintenance workload on us going forward. This does not mean just program code, either, but documentation and artistic works as appropriate to the project. - “that we can use”: This means that your contribution must be given freely and irrevocably, that you must have the right to contribute it for our unrestricted use, and that your contribution is made under a license that is compatible with the license the project has chosen and that permits us to include, distribute, and modify your work without restriction. - - “from anyone”: This means exactly that. We don’t care about anything but your code. We don’t care about your race, religion, national origin, biological gender, perceived gender, sexual orientation, lifestyle, political viewpoint, or anything extraneous like that. We will neither reject your contribution nor grant it preferential treatment on any basis except the code itself. We do, however, reserve the right to tell you to go away if you behave too obnoxiously toward us. + - “from anyone”: This means exactly that. We don’t care about anything but your code. We don’t care about your race, religion, national origin, biological gender, perceived gender, sexual orientation, lifestyle, political viewpoint, or anything extraneous like that. We will neither reject your contribution nor grant it preferential treatment on any basis except the code itself. We do, however, reserve the right to limit your access to our community if you violate our [Code of Conduct](../CODE-OF-CONDUCT.md). #### If Your Contribution Is Rejected @@ -85,6 +85,12 @@ All pull requests must comply with the above requirements and with the [stylegui Translations are managed on [Transifex](https://www.transifex.com/keepassxc/keepassxc/) which offers a web interface. Please join an existing language team or request a new one if there is none. +If you open a Pull Request with new strings that require translations, you will need to run the following: +``` +./release-tool i18n lupdate +``` +This will make the new strings available for translation in Transifex. + ## Styleguides ### Git branch strategy diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index a4a3ae2cd..000000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: Bug Report -about: provide information about a problem -title: -labels: bug -assignees: '' - ---- -## Overview -[TIP]: # ( DO NOT include screenshots of your actual database! ) -[NOTE]: # ( Give a BRIEF summary about your problem ) - - -## Steps to Reproduce -[NOTE]: # ( Provide a simple set of steps to reproduce this bug. ) -1. -2. -3. - -## Expected Behavior -[NOTE]: # ( Tell us what you expected to happen ) - - -## Actual Behavior -[NOTE]: # ( Tell us what actually happens ) - - -## Context -[NOTE]: # ( Give us any additional information you may have. ) - - -[NOTE]: # ( Paste debug info from Help → About here ) -KeePassXC - VERSION -Revision: REVISION - -[NOTE]: # ( Pick choices based on your environment ) -Operating System: Windows/Linux/macOS -Desktop Env: Gnome/KDE/XFCE/Mate/Cinnamon -Windowing System: X11/Wayland \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..557f4a4d9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,83 @@ +name: Bug Report +description: Provide information about a problem you are experiencing. +type: Bug + +body: + - type: checkboxes + attributes: + label: Have you searched for an existing issue? + description: | + Use the issue search box to see if one already exists for the bug you encountered. + Also take a moment to review our pinned issues. + options: + - label: Yes, I tried searching and reviewed the pinned issues + required: true + + - type: textarea + id: summary + attributes: + label: Brief Summary + description: | + Provide an overview of the problem, include any information that may help us triage this issue. + Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to Reproduce + description: Provide a simple set of steps to reproduce this bug. + placeholder: | + 1. + 2. + 3. + validations: + required: true + + - type: textarea + id: expected_vs_actual + attributes: + label: Expected Versus Actual Behavior + description: Tell us what you expected to happen and what actually happened. + + - type: textarea + id: debug_info + attributes: + label: KeePassXC Debug Information + placeholder: "Paste the output of: Help -> About -> Debug Info" + render: Text + + - type: dropdown + id: os + attributes: + label: Operating System + description: Select your operating system. + options: + - Windows + - Linux + - macOS + - Other (BSD, Haiku, etc) + + - type: dropdown + id: desktop_env + attributes: + label: Linux Desktop Environment + description: If on Linux, please select your desktop environment. + options: + - Gnome + - KDE + - XFCE + - Mate / Cinnamon + - Sway + - i3 + - Other + + - type: dropdown + id: window_system + attributes: + label: Linux Windowing System + description: If on Linux, please select your windowing system. + options: + - X11 + - Wayland diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md deleted file mode 100644 index d213b4fa3..000000000 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Feature Request -about: tell us about a new feature you want -title: -labels: new feature -assignees: '' - ---- -## Summary -[TIP]: # ( DO NOT include screenshots of your actual database! ) -[NOTE]: # ( Provide a brief overview of what the new feature is all about ) - - -## Examples -[NOTE]: # ( Show us a picture or mock-up of your proposal ) - - -## Context -[NOTE]: # ( Why does this feature matter to you? What unique circumstances do you have? ) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..90f543440 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,34 @@ +name: Feature Request +description: Tell us about a new feature you want. +type: Feature + +body: + - type: checkboxes + attributes: + label: Have you searched for an existing feature request? + description: Use the issue search box to see if one already exists for the feature you want. + options: + - label: Yes, I tried searching + required: true + + - type: textarea + id: summary + attributes: + label: Brief Summary + description: | + Provide an overview of the feature you are interested in adding. + Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). + validations: + required: true + + - type: textarea + id: example + attributes: + label: Example + description: Provide an example of how this feature would be used. + + - type: textarea + id: context + attributes: + label: Context + description: Why does this feature matter to you? What unique circumstances do you have? diff --git a/.github/ISSUE_TEMPLATE/prerelease_bug_report.yml b/.github/ISSUE_TEMPLATE/prerelease_bug_report.yml new file mode 100644 index 000000000..10c5d855c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/prerelease_bug_report.yml @@ -0,0 +1,85 @@ +name: Pre-Release Bug Report +description: Report an issue with pre-release code (e.g. snapshot builds). +type: Bug +labels: PRE-RELEASE BUG +assignees: droidmonkey + +body: + - type: checkboxes + attributes: + label: Have you searched for an existing issue? + description: | + Use the issue search box to see if one already exists for the bug you encountered. + Also take a moment to review our pinned issues. + options: + - label: Yes, I tried searching and reviewed the pinned issues + required: true + + - type: textarea + id: summary + attributes: + label: Brief Summary + description: | + Provide an overview of the problem, include any information that may help us triage this issue. + Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to Reproduce + description: Provide a simple set of steps to reproduce this bug. + placeholder: | + 1. + 2. + 3. + validations: + required: true + + - type: textarea + id: expected_vs_actual + attributes: + label: Expected Versus Actual Behavior + description: Tell us what you expected to happen and what actually happened. + + - type: textarea + id: debug_info + attributes: + label: KeePassXC Debug Information + placeholder: "Paste the output of: Help -> About -> Debug Info" + render: Text + + - type: dropdown + id: os + attributes: + label: Operating System + description: Select your operating system. + options: + - Windows + - Linux + - macOS + - Other (BSD, Haiku, etc) + + - type: dropdown + id: desktop_env + attributes: + label: Linux Desktop Environment + description: If on Linux, please select your desktop environment. + options: + - Gnome + - KDE + - XFCE + - Mate / Cinnamon + - Sway + - i3 + - Other + + - type: dropdown + id: window_system + attributes: + label: Linux Windowing System + description: If on Linux, please select your windowing system. + options: + - X11 + - Wayland diff --git a/.github/ISSUE_TEMPLATE/release-preview-bug-report.md b/.github/ISSUE_TEMPLATE/release-preview-bug-report.md deleted file mode 100644 index b2fbf65ff..000000000 --- a/.github/ISSUE_TEMPLATE/release-preview-bug-report.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: Release Preview Bug report -about: report a bug with a release preview (e.g., 2.6.0-beta1) -title: -labels: PRE-RELEASE BUG -assignees: droidmonkey - ---- -## Overview -[TIP]: # ( DO NOT include screenshots of your actual database! ) -[NOTE]: # ( Give a BRIEF summary about your problem ) - - -## Steps to Reproduce -[NOTE]: # ( Provide a simple set of steps to reproduce this bug. ) -1. -2. -3. - -## Expected Behavior -[NOTE]: # ( Tell us what you expected to happen ) - - -## Actual Behavior -[NOTE]: # ( Tell us what actually happens ) - - -## Context -[NOTE]: # ( Give us any additional information you may have. ) - - -[NOTE]: # ( Paste debug info from Help → About here ) -KeePassXC - VERSION -Revision: REVISION - -[NOTE]: # ( Pick choices based on your environment ) -Operating System: Windows/Linux/macOS -Desktop Env: Gnome/KDE/XFCE/Mate/Cinnamon -Windowing System: X11/Wayland \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e75bbcd60..cbb8face9 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,15 +1,15 @@ [NOTE]: # ( Describe your changes in detail, why is this change required? ) [NOTE]: # ( Explain large or complex code modifications. ) -[NOTE]: # ( If it fixes an open issue, please add "Fixes #XXX" ) +[NOTE]: # ( If it fixes an open issue, please add "Fixes #XXX". ) ## Screenshots -[TIP]: # ( Do not include screenshots of your actual database! ) - +[NOTE]: # ( Do not include screenshots of your actual database! ) +[TIP]: # ( Use View -> Allow Screen Capture ) ## Testing strategy [NOTE]: # ( Please describe in detail how you tested your changes. ) -[TIP]: # ( We expect new code to be covered by unit tests and documented with doc blocks! ) +[TIP]: # ( We expect new code to be covered by unit tests and include helpful comments. ) ## Type of change diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..80af12490 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,70 @@ +name: "CodeQL" + +on: + push: + branches: [ 'develop', 'release/2.7.x' ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ 'develop' ] + schedule: + - cron: '5 16 * * 3' + +jobs: + analyze: + name: Analyze + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'cpp' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Use only 'java' to analyze code written in Java, Kotlin or both + # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - if: matrix.language == 'cpp' + name: Install dependencies + run: | + sudo apt update + sudo apt install build-essential cmake g++ + sudo apt install qtbase5-dev qtbase5-private-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev libargon2-dev libkeyutils-dev libminizip-dev libbotan-2-dev libqrencode-dev zlib1g-dev asciidoctor libreadline-dev libpcsclite-dev libusb-1.0-0-dev libxi-dev libxtst-dev libqt5x11extras5-dev + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + queries: security-and-quality + + - if: matrix.language == 'cpp' + name: Build C++ + run: | + mkdir build && cd build + cmake -DWITH_XC_ALL=ON -DWITH_TESTS=OFF .. + make -j $(nproc) + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). + # If this step fails, then you should remove it and run the build manually (see below) + - if: matrix.language != 'cpp' + name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" diff --git a/.gitignore b/.gitignore index 9ab62e190..d3ee55d43 100644 --- a/.gitignore +++ b/.gitignore @@ -24,5 +24,10 @@ desktop.ini # MSVC Files CMakeSettings.json CMakePresets.json +CMakeUserPresets.json .vs/ -out/ \ No newline at end of file +out/ + +# vcpkg +vcpkg_installed*/ + diff --git a/.tx/config b/.tx/config index ce45c5ebd..82aefce42 100644 --- a/.tx/config +++ b/.tx/config @@ -1,14 +1,19 @@ [main] host = https://www.transifex.com -[keepassxc.share-translations-keepassxc-en-ts--develop] -source_file = share/translations/keepassxc_en.ts -file_filter = share/translations/keepassxc_.ts -source_lang = en -type = QT +[o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--develop] +file_filter = share/translations/keepassxc_.ts +source_file = share/translations/keepassxc_en.ts +source_lang = en +type = QT +replace_edited_strings = false +keep_translations = false + +[o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--master] +file_filter = share/translations/keepassxc_.ts +source_file = share/translations/keepassxc_en.ts +source_lang = en +type = QT +replace_edited_strings = false +keep_translations = false -[keepassxc.share-translations-keepassxc-en-ts--master] -source_file = share/translations/keepassxc_en.ts -file_filter = share/translations/keepassxc_.ts -source_lang = en -type = QT diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fe082165..4a7bb20d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,301 @@ # Changelog +## 2.8.0 (Pending) +* Placeholder for future release notes + +## 2.7.10 (2025-03-02) + +### Changes +* Allow adjusting application font size [#11567] +* Add Proton Pass importer [#11197] +* Support KeePass2 TOTP settings [#11229] +* Add New/Preview Entry Attachments dialog and functionality [#11637, #11699, #11650] +* Add database name, color, and icon options for unlock view [#10819, #11725] +* Show entry background color as column [#6798] +* Use icons for password strength [#9844] +* Add "Group Full Path" column in entry view [#10278] +* Passphrase "MIXED case" Type [#11255] +* Allow deleting extension plugin data from Browser Statistics [#11218] +* Add --minimized option to keepassxc [#11693] +* Implement T-CONV and T-REPLACE-RX entry placeholders [#11453] +* Option to disable opening browser when URL field double-clicked [#11332] +* Overhaul action states and add icons to toolbar [#11047] +* Show character count in password generator dialog [#10940] +* Add ability to expire entries from context menu [#8731] +* Add copy field shortcuts to Auto-Type select dialog [#11518] +* Passkeys: Add support for selecting group on creation [#11260] +* Browser: Refactor Access Control Dialog [#9607] +* Browser: Add support for URL wildcards and exact URL [#9835, #11752] +* Browser: Allow groups to restrict by browser integration key [#9852] +* CLI: Add `-d` dry-run shortcut to merge command [#11192] +* CLI: HTML export [#11590] +* macOS: Add option to disable database lock when switching user [#9707] +* SSH Agent: Implement feature to clear all identities [#10649] + +### Fixes +* Major enhancements to documentation [#11745, #10875] +* Various UI and style fixes [#11535, #11672, #11511, #11445, #11426, #11273, #11455, #11321, #11594, #11539, #11351, #11354, #10748, #11602, #11303, #11291, #10091, #9417] +* Various improvements to tags [#11676, #11652, #11625] +* Reset splitter sizes on database unlock [#11014] +* Remember sort order in Auto-type popup dialog [#9508] +* Fix database password clearing when modifying key file / hardware key [#11001] +* Fix issues with reloading and handling of externally modified db file [#10612] +* Support passkeys with Bitwarden import [#11401] +* Fix various quirks with CSV import [#11787] +* Show Auto-Type select dialog even if window title is empty [#11603] +* Refactor hardware key code to avoid deadlock [#11703, #10872] +* Show a clear error if hardware key is found slots are not configured [#11609] +* Fix signal/slot disconnect when opening import wizard [#11039] +* Fix setting window title as modified [#11542] +* Fix assert hit when viewing entry history [#11413] +* Fix multiple crashes on Linux [#11513] +* Fix backup file path time substitution [#10834] +* Prevent long-running threads from deadlocking the program with only 1 CPU [#11155] +* Hide the menubar when menus lose focus (if toggled off) [#11355, #11605] +* CLI: Restore the original codepage on windows [#11470] +* Passkeys: Various fixes [#10934, #10951] +* Browser: Fix cancel with database unlock dialog [#11435] +* Browser: Resolve references in Access Confirm dialog [#11055] +* SSH Agent: Add timeout to streams to prevent deadlock [#11290] +* macOS: Replace legacy code for screen recording permissions [#11428] +* macOS: Implement Secure Input Mode [#11623] +* macOS: Fix showing ambigious name in settings [#11373] +* macOS: Fix copy-to-clipboard shortcut in entry preview widget [#10966] +* Linux: Prevent multiple lock requests [#11306] +* Snap: Prevent need for snap helper script to configure browser extension [#10924] +* Windows: Detect outdated VC Redist with MSI installer [#11469] +* Windows: Additional exclusion fields for clipboard [#11521] + +## 2.7.9 (2024-06-19) + +### Changes +* Passkeys: Ability to easily remove a passkey from an entry [#10777] +* Snap: Use new desktop portal for native messaging integration [#10906] + +### Fixes +* Improve entry placeholder/reference feature [#10846] +* Improve CSV importing when title field isn't specified [#10843] +* Improve encrypted Bitwarden importing [#10800] +* Improve database settings UX [#10821] +* Improve handling of clipboard actions from entry preview [#10810] +* Improve group/entry view resize behavior and set sensible defaults [#10641] +* Passkeys: Fix incorrect username fill [#10874] +* Passkeys: Return additional data to the extension [#10857] +* Fix password clear timer inconsistency on unlock view [#10708] +* Fix portability check [#10760] +* Fix page overflow on HTML exports [#10735] +* Fix broken builds when using system provided zxcvbn [#10717] +* Fix copy password button when text is selected [#10853] +* Fix tab ordering on application settings pages [#10907] +* SSH Agent: Fix broken decrypt button [#10638] +* Windows: Fix ALT Auto-Type modifier [#10795] +* Windows: Fix wrong DACL memory size allocation [#10712] +* macOS: Fix monospace font sizing [#10739] +* Flatpak: Fix configuration settings off-by-one error [#10688] +* BSD: Fix compiling with libusb implementation [#10736] + +## 2.7.8 (2024-05-05) + +### Changes +- Add hotkey for showing search help [#10591] +- Add hotkey for group switching (Ctrl+Shift+PgUp/PgDown) [#10625] +- Add per-database auto-save delay setting [#9100] +- Add setting to hide menubar [#10341] +- Improve Bitwarden 1PUX import and support organization collections [#10499] +- Show advanced settings checkbox only for settings that have them [#6513] +- Remove obsolete setting for requiring repeated password entry [#9722] +- Passkeys: Allow registering Passkeys to existing entries [#10408] +- Passkeys: Show warning about data being unencrypted before Passkey export [#10411] +- Passkeys: Support NFC and USB transports [#10402] +- Passkeys: Pass extension JSON data to browser [#10615] +- SSH Agent: Do not use entries from recycle bin [#10518] +- Linux: Change hotkey sequence used for {CLEARFIELD} Auto-Type [#10008] +- Windows: Improve DACL memory access protection [#10618] + +### Fixes +- Fix crash when deleting history items [#10451] +- Fix crash on screen lock or computer sleep [#10458] +- Fix search field not being focused after unlock [#10459] +- Fix loss of window focus when Auto-Type needs to unlock a database [#10555] +- Fix inconsistent TOTP visibility on unlock [#10009] +- Fix CSV import skipping over single-name groups [#10575] +- Fix key file folder being remembered even if disabled in settings [#10636] +- Fix issues with entry editing and database locking [#10667] +- Fix key file text when provided on command line [#10642] +- Fix issues with hardware key auto detection [#10663] +- Do not override monospace font size [#10282] +- Perform group sort only when group view is in focus [#10202] +- Do not show decimals for attachment sizes in Bytes [#10595] +- Prevent merging of global custom data when merging databases [#10452] +- Fix minor translation issues [#10635] +- Passkeys: Fix StrongBox incompatibility [#10420] +- Passkeys: Set RP ID to effective domain if unset instead of returning an error [#10384] +- Passkeys: Various UI fixes and improvements [#10427, #10608, #10609] +- AppImage: Fix URL opening [#10624] +- Flatpak: Fix application autostart [#10563] +- Linux/macOS: Fix button sizes on modal alert popups [#10500] +- Linux: Fix clipboard clear on Wayland [#10500] +- Windows: Preserve file-hidden attribute [#10343] + +## 2.7.7 (2024-03-09) + +### Changes +- Support USB Hotplug for Hardware Key interface [#10092] +- Support 1PUX and Bitwarden import [#9815] +- Browser: Add support for PassKeys [#8825, #9987, #10318] +- Build System: Move to vcpkg manifest mode [#10088] + +### Fixes +- Fix multiple TOTP issues [#9874] +- Fix focus loss on save when the editor is not visible anymore [#10075] +- Fix visual when removing entry from history [#9947] +- Fix first entry is not selected when a search is performed [#9868] +- Prevent scrollbars on entry drag/drop [#9747] +- Prevent duplicate characters in "Also choose from" field of password generator [#9803] +- Security: Prevent byte-by-byte and attachment inference side channel attacks [#10266] +- Browser: Fix raising Update Entry messagebox [#9853] +- Browser: Fix bugs when returning credentials [#9136] +- Browser: Fix crash on database open from browser [#9939] +- Browser: Fix support for referenced URL fields [#8788] +- MacOS: Fix crash when changing highlight/accent color [#10348] +- MacOS: Fix TouchID appearing even though lid is closed [#10092] +- Windows: Fix terminating KeePassXC processes with MSI installer [#9822] +- FdoSecrets: Fix database merge crash when enabled [#10136] + +## 2.7.6 (2023-08-15) + +### Changes +- Significant improvement to visual when drag/drop entries [#9698] +- Automatically prompt for Quick Unlock when showing unlock dialog [#9697] +- Improve colorful lock icon and fix file MIME icon on KDE [#9632] +- Ability to search by entry UUID [#9571] +- Add challenge-response support for NitroKey 3 [#9631] +- Auto-Type: Disable entry level Auto-Type when disabled at group/entry [#9672] +- Browser: Show warning when adding duplicate URL's to entry [#9588][#9635] +- Browser: Improve error message when proxy cannot be found [#9385] + +### Fixes +- Fix crash on exit on macOS [#9620] +- Fix crash on search if entry doesn't have a group [#9633] +- Fix several issues with Quick Unlock [#9697] +- Enable save button when not auto-saving non-data changes [#9634] +- Several UI/UX fixes [#9647] +- Move toolbar back to top of window when disabling movement [#9699] +- Browser: Fix closing password generator dialog with X button [#9636] +- Browser: Fix handling of expired credentials [#9595] +- Windows: Prevent white flicker when launching application [#9637] +- Linux: Fix warning message about allow screencapture [#9638] +- FdoSecrets: Fix access confirmation dialog showing even when disabled [#9690] + +## 2.7.5 (2023-05-14) + +### Changes +- Add menu option to allow screenshots [#8841] +- Add support for Botan 3 [#9388] +- Increase max TOTP step to 24 hours [#9149] +- Improve HTML export layout [#8987] +- Turn search reset off by default [#9153] +- Use QClipboard::clear() instead of setting blank text [#9148] +- Hide group column header choice when not in search [#9171] +- Improve look of KeePassXC logo and icons [#9355] +- Add keyboard shortcuts for app and database settings [#9007] +- Hide rename button from attachments preview panel [#8842] +- Linux: Set SingleMainWindow in .desktop file [#7430] + +### Fixes +- Fix crash when search clears while creating new entry [#9230] +- Fix crash when using Windows Hello in a Remote Desktop session [#9006] +- Fix crash in Group Edit after enabling Browser Integration [#8778] +- Fix canceling quick unlock when it is unavailable [#9034] +- Set password input field font correctly [#8732] +- Greatly improve performance when rendering entry view [#9398] +- Fix various accessibility issues [#9138] +- Fix arrows size when expand/collapse a group [#9096] +- Select the clone instead of the original after cloning an entry [#9070] +- Fix bugs with preview widget [#9170] +- Fix status bar update when switching to other DB [#9073] +- Fix database settings spin box bug [#9101] +- Fix Ctrl+Tab shortcut to cycle databases in unlock dialog [#8839] +- Fix TOTP QR code maintaining square ratio [#9027] +- Fix Auto-Type configuration page on custom sequence selection [#8752] +- Fix unexpected behavior of `--lock` when KeePassXC is not running [#8889] +- Make open folder icon exempt from "Apply group icon to entry" [#9205] +- Allow setting default file open directory with env var [#9192] +- SSH Agent: Fix support for AES-256/GCM openssh keys [#8968] +- Browser: Fix Native Messaging script path with BSD OS's [#8835] +- MacOS: Fix text selection for Auto-Type clear field [#9066] +- MacOS: Don't rely on AppleInterfaceStyle for theme switching [#8615] +- Windows: Remove registry detection of desktop shortcut [#9380] + +## 2.7.4 (2022-10-29) + +### Changes +- Add 2 months expiration preset [#8687] +- CLI: Add Unicode support on Windows [#8618] + +### Fixes +- Fix crash on macOS when unlocking database [#8676] +- Fix display of passwords in preview panel [#8633] +- Fix clicking links in entry preview panel [#8644] +- Prevent expired entries search if no results returned [#8643] +- Browser: Revert code causing connection problems [#8665] +- Browser: Fix socket file symbolic link on Linux [#8656] +- Flatpak: Fix launching browser proxy service [#8680] +- SSH Agent: Fix pageant support on Windows [#8619] + +## 2.7.3 (2022-10-23) + +### Changes +- Enhance Tags Support and Add Saved Searches [#8435, #8607] +- Significant improvements to entry preview panel [#7993] +- Add password strength indicator to all password fields [#7885] +- Limit zxcvbn entropy estimation length to 128 characters [#7748] +- Try full URL path when fetching favicon [#8565] +- Hide usernames in preview panel when hidden in entry view [#8608] +- Enable dark title bar on windows when accent color is not used [#8498] +- Add option to display passwords in color in preview panel [#7097] +- Add XML Export option to GUI [#8524] +- Increase entropy required for a "good" password rating to 75 [#8523] +- Add shortcut to copy password with TOTP appended [#8443] +- Show entry count in status bar [#8435] +- Allow KeePassXC to be built without X11 [#8147] +- Enable use of VivoKey Apex and Dangerous Things FlexSecure tokens [#8332] +- Add setting for number of recent files [#8239] +- Add Ctrl+Tab shortcut to cycle databases in unlock dialog [#8168] +- Replace offensive words in eff_large.wordlist [#7968] +- Auto-Type: PICKCHARS can specify attribute and ignore BEEP [#8118] +- Linux: Add isHardwareKeySupported and refreshHardwareKeys to DBus methods [#8055] +- Add config variable to specify default database file name [#8042] +- Support numeric aware sorting on Windows and macOS [#8363] +- CLI: Add `db-edit` command [#8400] +- CLI: Add option to display all attributes with `show` command [#8256] +- CLI: Show UUID and tags with `show` and `clip` commands [#8241] +- Browser: Move socket into separate directory on Linux [#8030] +- Browser: Add group setting to omit WWW subdomain when matching URLs [#7988] +- FdoSecrets: Ask to unlock the database when creating items [#8022, #8028] +- FdoSecrets: Skip entries in recycle bin when searching [#8021] + +### Fixes +- Fix potential deadlock in UI when saving [#8606] +- Fix newlines when copying notes from preview panel [#8542] +- Fix dark mode detection on Linux [#8477] +- Fix crash when deleting items in recycle bin while searching [#8117] +- Fix crash when trying to close database during unlock [#8144] +- Fix tabbing around the interface [#8435, #8520] +- Fix OPVault import when there are multiple OTP fields [#8436] +- Fix various Windows Hello bugs [#8354] +- Fix use of Apple Watch for Quick Unlock [#8311] +- Better handling of "Lock on Minimize" setting [#8202] +- Check for write permission before entering portable mode [#8447] +- Correct regex escape logic to prevent parse errors [#7778] +- Normalize slashes and file case for last used databases [#7864, #7214] +- Link ykcore against pthread [#7807] +- Auto-Type: Fix menu entries in selection dialog on Windows [#7987] +- Auto-Type: Fix use of modifiers under macOS [#8111] +- CLI: Fix output when using clip with the -t flag [#8271] +- Browser: Use asynchronous access confirm dialog [#8273] +- Browser: Always send database locked/unlocked status [#8114] + ## 2.7.1 (2022-04-05) ### Changes @@ -828,7 +1124,7 @@ - Compare window title to entry URLs #556 - Implemented inline error messages #162 - Ignore group expansion and other minor changes when making database "dirty" #464 -- Updated license and copyright information on souce files #632 +- Updated license and copyright information on source files #632 - Added contributors list to about dialog #629 ## 2.1.4 (2017-04-09) diff --git a/CMakeLists.txt b/CMakeLists.txt index db732d677..e7183f169 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -cmake_minimum_required(VERSION 3.3.0) +cmake_minimum_required(VERSION 3.10.0) project(KeePassXC) set(APP_ID "org.keepassxc.${PROJECT_NAME}") @@ -53,6 +53,7 @@ set(WITH_XC_ALL OFF CACHE BOOL "Build in all available plugins") option(WITH_XC_AUTOTYPE "Include Auto-Type." ON) option(WITH_XC_NETWORKING "Include networking code (e.g. for downloading website icons)." OFF) option(WITH_XC_BROWSER "Include browser integration with keepassxc-browser." OFF) +option(WITH_XC_BROWSER_PASSKEYS "Passkeys support for browser integration." OFF) option(WITH_XC_YUBIKEY "Include YubiKey support." OFF) option(WITH_XC_SSHAGENT "Include SSH agent support." OFF) option(WITH_XC_KEESHARE "Sharing integration with KeeShare" OFF) @@ -62,6 +63,27 @@ if(UNIX AND NOT APPLE) endif() option(WITH_XC_DOCS "Enable building of documentation" ON) +set(WITH_XC_X11 ON CACHE BOOL "Enable building with X11 deps") + +if(APPLE) + # Perform the platform checks before applying the stricter compiler flags. + # Otherwise the kSecAccessControlTouchIDCurrentSet deprecation warning will result in an error. + try_compile(XC_APPLE_COMPILER_SUPPORT_BIOMETRY + ${CMAKE_CURRENT_BINARY_DIR}/tiometry_test/ + ${CMAKE_CURRENT_SOURCE_DIR}/cmake/compiler-checks/macos/control_biometry_support.mm) + message(STATUS "Biometry compiler support: ${XC_APPLE_COMPILER_SUPPORT_BIOMETRY}") + + try_compile(XC_APPLE_COMPILER_SUPPORT_TOUCH_ID + ${CMAKE_CURRENT_BINARY_DIR}/touch_id_test/ + ${CMAKE_CURRENT_SOURCE_DIR}/cmake/compiler-checks/macos/control_touch_id_support.mm) + message(STATUS "Touch ID compiler support: ${XC_APPLE_COMPILER_SUPPORT_TOUCH_ID}") + + try_compile(XC_APPLE_COMPILER_SUPPORT_WATCH + ${CMAKE_CURRENT_BINARY_DIR}/tiometry_test/ + ${CMAKE_CURRENT_SOURCE_DIR}/cmake/compiler-checks/macos/control_watch_support.mm) + message(STATUS "Apple watch compiler support: ${XC_APPLE_COMPILER_SUPPORT_WATCH}") +endif() + if(WITH_CCACHE) # Use the Compiler Cache (ccache) program # (install with: sudo apt get ccache) @@ -77,6 +99,7 @@ if(WITH_XC_ALL) set(WITH_XC_AUTOTYPE ON) set(WITH_XC_NETWORKING ON) set(WITH_XC_BROWSER ON) + set(WITH_XC_BROWSER_PASSKEYS ON) set(WITH_XC_YUBIKEY ON) set(WITH_XC_SSHAGENT ON) set(WITH_XC_KEESHARE ON) @@ -91,9 +114,14 @@ if(NOT WITH_XC_NETWORKING AND WITH_XC_UPDATECHECK) set(WITH_XC_UPDATECHECK OFF) endif() +if(UNIX AND NOT APPLE AND NOT WITH_XC_X11) + message(STATUS "Disabling WITH_XC_AUTOTYPE because WITH_XC_X11 is disabled") + set(WITH_XC_AUTOTYPE OFF) +endif() + set(KEEPASSXC_VERSION_MAJOR "2") -set(KEEPASSXC_VERSION_MINOR "7") -set(KEEPASSXC_VERSION_PATCH "1") +set(KEEPASSXC_VERSION_MINOR "8") +set(KEEPASSXC_VERSION_PATCH "0") set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}") set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds") @@ -177,6 +205,16 @@ if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.14.0") check_pie_supported() endif() +# Find Botan early since the version affects subsequent compiler options +find_package(Botan REQUIRED) +if(BOTAN_VERSION VERSION_GREATER_EQUAL "3.0.0") + set(WITH_XC_BOTAN3 TRUE) +elseif(BOTAN_VERSION VERSION_LESS "2.11.0") + # Check for minimum Botan version + message(FATAL_ERROR "Botan 2.11.0 or higher is required") +endif() +include_directories(SYSTEM ${BOTAN_INCLUDE_DIR}) + # Create position independent code for shared libraries and executables set(CMAKE_POSITION_INDEPENDENT_CODE ON) @@ -272,6 +310,10 @@ if(CMAKE_BUILD_TYPE_LOWER STREQUAL "debug") check_add_gcc_compiler_flag("-Wshadow-compatible-local") check_add_gcc_compiler_flag("-Wshadow-local") add_gcc_compiler_flags("-Werror") + # This is needed since compiling against Botan3 requires compiling against C++20 + if(WITH_XC_BOTAN3) + add_gcc_compiler_cxxflags("-Wno-error=deprecated-enum-enum-conversion -Wno-error=deprecated") + endif() endif() if (NOT HAIKU) @@ -310,14 +352,18 @@ check_add_gcc_compiler_flag("-Wcast-align") if(UNIX AND NOT APPLE) check_add_gcc_compiler_flag("-Qunused-arguments") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed -Wl,--no-undefined") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed -Wl,--no-undefined") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,relro,-z,now -pie") - set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed") + set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--as-needed") set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-z,relro,-z,now") endif() set(CMAKE_C_STANDARD 99) -set(CMAKE_CXX_STANDARD 17) +if(WITH_XC_BOTAN3) + set(CMAKE_CXX_STANDARD 20) +else() + set(CMAKE_CXX_STANDARD 17) +endif() set(CMAKE_CXX_STANDARD_REQUIRED ON) check_cxx_compiler_flag("-fsized-deallocation" CXX_HAS_fsized_deallocation) @@ -349,7 +395,7 @@ if (MSVC) if(MSVC_TOOLSET_VERSION LESS 141) message(FATAL_ERROR "Only Microsoft Visual Studio 17 and newer are supported!") endif() - add_compile_options(/permissive- /utf-8) + add_compile_options(/permissive- /utf-8 /MP) if(IS_DEBUG_BUILD) add_compile_options(/Zf) if(MSVC_TOOLSET_VERSION GREATER 141) @@ -421,7 +467,7 @@ if(WITH_COVERAGE) append_coverage_compiler_flags() set(COVERAGE_EXCLUDES - "'^(.+/)?(thirdparty|zxcvbn)/.*'" + "'^(.+/)?thirdparty/.*'" "'^(.+/)?main\\.cpp$$'" "'^(.+/)?cli/keepassxc-cli\\.cpp$$'" "'^(.+/)?proxy/keepassxc-proxy\\.cpp$$'") @@ -447,27 +493,34 @@ include(CLangFormat) set(QT_COMPONENTS Core Network Concurrent Gui Svg Widgets Test LinguistTools) if(UNIX AND NOT APPLE) - find_package(Qt5 COMPONENTS ${QT_COMPONENTS} DBus X11Extras REQUIRED) + if(WITH_XC_X11) + list(APPEND QT_COMPONENTS X11Extras) + endif() + find_package(Qt5 COMPONENTS ${QT_COMPONENTS} DBus REQUIRED) elseif(APPLE) find_package(Qt5 COMPONENTS ${QT_COMPONENTS} REQUIRED HINTS - /usr/local/opt/qt/lib/cmake - /usr/local/Cellar/qt/*/lib/cmake - /opt/homebrew/opt/qt/lib/cmake + /usr/local/opt/qt@5/lib/cmake + /usr/local/Cellar/qt@5/*/lib/cmake + /opt/homebrew/opt/qt@5/lib/cmake ENV PATH) find_package(Qt5 COMPONENTS MacExtras HINTS - /usr/local/opt/qt/lib/cmake - /usr/local/Cellar/qt/*/lib/cmake - /opt/homebrew/opt/qt/lib/cmake + /usr/local/opt/qt@5/lib/cmake + /usr/local/Cellar/qt@5/*/lib/cmake + /opt/homebrew/opt/qt@5/lib/cmake ENV PATH) else() find_package(Qt5 COMPONENTS ${QT_COMPONENTS} REQUIRED) endif() -if(Qt5Core_VERSION VERSION_LESS "5.2.0") - message(FATAL_ERROR "Qt version 5.2.0 or higher is required") +if(Qt5Core_VERSION VERSION_LESS "5.12.0") + message(FATAL_ERROR "Qt version 5.12.0 or higher is required") endif() get_filename_component(Qt5_PREFIX ${Qt5_DIR}/../../.. REALPATH) +if(APPLE) + # Add includes under Qt5 Prefix in case Qt6 is also installed + include_directories(SYSTEM ${Qt5_PREFIX}/include) +endif() # Process moc automatically set(CMAKE_AUTOMOC ON) @@ -496,12 +549,6 @@ endif() # Make sure we don't enable asserts there. set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_NONE QT_NO_DEBUG) -# Find Botan2 -find_package(Botan2 REQUIRED) -if(BOTAN2_VERSION VERSION_LESS "2.11.0") - message(FATAL_ERROR "Botan2 2.11.0 or higher is required") -endif() -include_directories(SYSTEM ${BOTAN2_INCLUDE_DIR}) # Find Argon2 -- Botan 2.18 and below does not support threaded Argon2 find_library(ARGON2_LIBRARIES NAMES argon2) find_path(ARGON2_INCLUDE_DIR NAMES argon2.h PATH_SUFFIXES local/include) @@ -514,9 +561,18 @@ if(ZLIB_VERSION_STRING VERSION_LESS "1.2.0") endif() include_directories(SYSTEM ${ZLIB_INCLUDE_DIR}) +# Find Minizip +find_package(Minizip REQUIRED) + if(WITH_XC_YUBIKEY) find_package(PCSC REQUIRED) include_directories(SYSTEM ${PCSC_INCLUDE_DIRS}) + + if(UNIX AND NOT APPLE) + find_library(LIBUSB_LIBRARIES NAMES usb-1.0 REQUIRED) + find_path(LIBUSB_INCLUDE_DIR NAMES libusb.h PATH_SUFFIXES "libusb-1.0" "libusb" REQUIRED) + include_directories(SYSTEM ${LIBUSB_INCLUDE_DIR}) + endif() endif() if(UNIX) @@ -551,6 +607,12 @@ endif() include_directories(SYSTEM ${ZLIB_INCLUDE_DIR}) +find_library(ZXCVBN_LIBRARIES zxcvbn) +if(NOT ZXCVBN_LIBRARIES) + add_subdirectory(src/thirdparty/zxcvbn) + set(ZXCVBN_LIBRARIES zxcvbn) +endif(NOT ZXCVBN_LIBRARIES) + add_subdirectory(src) add_subdirectory(share) if(WITH_TESTS) diff --git a/COPYING b/COPYING index 35cfc1b1e..4e85fc078 100644 --- a/COPYING +++ b/COPYING @@ -1,5 +1,5 @@ KeePassXC - http://www.keepassxc.org/ -Copyright (C) 2016-2020 KeePassXC Team +Copyright (C) 2016-2023 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 @@ -27,28 +27,24 @@ Copyright: 2010-2012, Felix Geyer 2000-2008, Tom Sato 2013, Laszlo Papp 2013, David Faure - 2016-2020, KeePassXC Team + 2016-2023, KeePassXC Team License: GPL-2 or GPL-3 Comment: The "KeePassXC Team" in every copyright notice is formed by the following people: - droidmonkey - phoerious - - TheZ3ro + - varjolintu + - hifi - louib - - weslly Every other contributor is listed on https://github.com/keepassxreboot/keepassxc/graphs/contributors Files: cmake/CodeCoverage.cmake Copyright: 2012 - 2015, Lars Bilke License: BSD-3-clause -Files: cmake/FindYubiKey.cmake -Copyright: 2014 Kyle Manna -License: GPL-2 or GPL-3 - -Files: cmake/FindBotan2.cmake -Copyright: 2018 Ribose Inc. -License: BSD-2-clause +Files: cmake/FindBotan.cmake +Copyright: none +License: LGPL-2.1 Files: cmake/GenerateProductVersion.cmake Copyright: 2015 halex2005 @@ -141,13 +137,29 @@ Files: share/icons/badges/2_Expired.svg share/icons/database/C46_Help.svg share/icons/database/C53_Apply.svg share/icons/database/C61_Services.svg + share/icons/application/scalable/actions/proton.svg Copyright: 2022 KeePassXC Team License: MIT -Files: share/icons/application/scalable/actions/chevron-double-down.svg +Files: share/icons/application/scalable/actions/application-exit.svg + share/icons/application/scalable/actions/arrow-collapse-down.svg + share/icons/application/scalable/actions/attributes-copy.svg + share/icons/application/scalable/actions/auto-type.svg + share/icons/application/scalable/actions/bitwarden.svg + share/icons/application/scalable/actions/bugreport.svg + share/icons/application/scalable/actions/chevron-double-down.svg share/icons/application/scalable/actions/chevron-double-right.svg + share/icons/application/scalable/actions/clipboard-text.svg + share/icons/application/scalable/actions/configure.svg + share/icons/application/scalable/actions/csv.svg + share/icons/application/scalable/actions/database-change-key.svg share/icons/application/scalable/actions/database-lock.svg share/icons/application/scalable/actions/database-lock-all.svg + share/icons/application/scalable/actions/database-merge.svg + share/icons/application/scalable/actions/database-search.svg + share/icons/application/scalable/actions/database-settings.svg + share/icons/application/scalable/actions/dialog-close.svg + share/icons/application/scalable/actions/dialog-ok.svg share/icons/application/scalable/actions/document-close.svg share/icons/application/scalable/actions/document-edit.svg share/icons/application/scalable/actions/document-export.svg @@ -159,43 +171,65 @@ Files: share/icons/application/scalable/actions/chevron-double-down.svg share/icons/application/scalable/actions/document-save.svg share/icons/application/scalable/actions/document-save-as.svg share/icons/application/scalable/actions/document-save-copy.svg + share/icons/application/scalable/actions/donate.svg share/icons/application/scalable/actions/edit-clear-locationbar-ltr.svg share/icons/application/scalable/actions/edit-clear-locationbar-rtl.svg share/icons/application/scalable/actions/entry-clone.svg share/icons/application/scalable/actions/entry-delete.svg + share/icons/application/scalable/actions/entry-restore.svg share/icons/application/scalable/actions/entry-edit.svg + share/icons/application/scalable/actions/entry-expire.svg share/icons/application/scalable/actions/entry-new.svg share/icons/application/scalable/actions/favicon-download.svg share/icons/application/scalable/actions/fingerprint.svg - share/icons/application/scalable/actions/group-clone.svg + share/icons/application/scalable/actions/getting-started.svg share/icons/application/scalable/actions/group-delete.svg share/icons/application/scalable/actions/group-edit.svg + share/icons/application/scalable/actions/group-clone.svg share/icons/application/scalable/actions/group-empty-trash.svg share/icons/application/scalable/actions/group-new.svg share/icons/application/scalable/actions/hammer-wrench.svg share/icons/application/scalable/actions/health.svg share/icons/application/scalable/actions/help-about.svg share/icons/application/scalable/actions/lock-question.svg + share/icons/application/scalable/actions/keyboard-shortcuts.svg share/icons/application/scalable/actions/message-close.svg share/icons/application/scalable/actions/move-down.svg share/icons/application/scalable/actions/move-up.svg + share/icons/application/scalable/actions/object-locked.svg + share/icons/application/scalable/actions/object-unlocked.svg + share/icons/application/scalable/actions/onepassword.svg share/icons/application/scalable/actions/paperclip.svg share/icons/application/scalable/actions/password-copy.svg + share/icons/application/scalable/actions/passkey.svg share/icons/application/scalable/actions/password-generator.svg share/icons/application/scalable/actions/password-show-off.svg share/icons/application/scalable/actions/password-show-on.svg + share/icons/application/scalable/actions/qrcode.svg share/icons/application/scalable/actions/refresh.svg + share/icons/application/scalable/actions/remote-sync.svg share/icons/application/scalable/actions/reports.svg share/icons/application/scalable/actions/reports-exclude.svg + share/icons/application/scalable/actions/sort-alphabetical-ascending.svg + share/icons/application/scalable/actions/sort-alphabetical-descending.svg share/icons/application/scalable/actions/statistics.svg share/icons/application/scalable/actions/system-help.svg share/icons/application/scalable/actions/system-search.svg + share/icons/application/scalable/actions/system-software-update.svg share/icons/application/scalable/actions/tag.svg + share/icons/application/scalable/actions/tag-multiple.svg share/icons/application/scalable/actions/tag-search.svg + share/icons/application/scalable/actions/totp.svg + share/icons/application/scalable/actions/totp-copy.svg + share/icons/application/scalable/actions/totp-copy-password.svg + share/icons/application/scalable/actions/totp-edit.svg share/icons/application/scalable/actions/trash.svg share/icons/application/scalable/actions/url-copy.svg + share/icons/application/scalable/actions/user-guide.svg share/icons/application/scalable/actions/username-copy.svg share/icons/application/scalable/actions/view-history.svg + share/icons/application/scalable/actions/web.svg + share/icons/application/scalable/actions/yubikey-refresh.svg share/icons/application/scalable/apps/internet-web-browser.svg share/icons/application/scalable/apps/keepassxc.svg share/icons/application/scalable/apps/keepassxc-dark.svg @@ -210,9 +244,12 @@ Files: share/icons/application/scalable/actions/chevron-double-down.svg share/icons/application/scalable/status/dialog-information.svg share/icons/application/scalable/status/dialog-warning.svg share/icons/application/scalable/status/security-high.svg -Copyright: 2019 Austin Andrews -License: SIL OPEN FONT LICENSE Version 1.1 -Comment: Taken from Material Design icon set (https://github.com/templarian/MaterialDesign/) + share/icons/application/scalable/actions/lock-open-alert.svg + share/icons/application/scalable/actions/lock-open.svg + share/icons/application/scalable/actions/lock.svg +Copyright: 2023 Pictogrammers +License: Apache-2.0 +Comment: Some icons are modified to fit KeePassXC design (https://pictogrammers.com/library/mdi/) Files: src/streams/qtiocompressor.* src/streams/QtIOCompressor @@ -220,7 +257,7 @@ Files: src/streams/qtiocompressor.* Copyright: 2009-2012, Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2.1 or GPL-3 -Files: src/zxcvbn/zxcvbn.* +Files: src/thirdparty/zxcvbn/zxcvbn.* Copyright: 2015-2017, Tony Evans License: MIT diff --git a/INSTALL.md b/INSTALL.md index 5bd818ec1..e83f064c0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,34 +6,21 @@ For more information, see also the [_Building KeePassXC_](https://github.com/kee The [QuickStart Guide](https://keepassxc.org/docs/KeePassXC_GettingStarted.html) gets you started using KeePassXC on your Windows, macOS, or Linux computer using pre-compiled binaries from the [downloads page](https://keepassxc.org/download). -Build Dependencies -================== - -The following tools must exist within your PATH: - -* make -* cmake (>= 3.3.0) -* g++ (>= 4.7) or clang++ (>= 6.0) -* asciidoctor (>= 2.0) - -The following libraries are required: - -* Qt 5 (>= 5.9.5): qtbase5, qtbase5-private, libqt5svg5, qttools5, qt5-image-formats-plugins -* botan (>= 2.12) -* libargon2 -* zlib -* minizip -* readline (for completion in cli) -* qtx11extras, libxi, and libxtst (for auto-type on X11) -* qrencode -* libusb-1.0, pcsc-lite (for Yubikey support on Linux) - -Prepare the Building Environment +Toolchain and Build Dependencies ================================ -* [Building Environment on Linux](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Linux) -* [Building Environment on Windows](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Windows) -* [Building Environment on MacOS](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-macOS) +The following build tools must exist within your PATH: + +* cmake (>= 3.10.0) +* make (>= 4.2) or ninja (>= 1.10) +* g++ (>= 4.9) or clang++ (>= 6.0) +* asciidoctor (>= 2.0) + +* Besides a working C++ toolchain, KeePassXC also has a number of direct build and runtime dependencies. For detailed information about how to install them, please refer to the GitHub wiki: + +* [Set up Build Environment on Linux](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Linux) +* [Set up Build Environment on Windows](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Windows) +* [Set up Build Environment on macOS](https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-macOS) Build Steps =========== @@ -57,13 +44,13 @@ To compile from source, open a **Terminal (Linux/MacOS)**, the **MSVC Tools Comm git pull ``` - For a stable build, it is recommended to check out the master branch. + For a stable build, it is recommended to check out the `latest` tag. ``` - git checkout master + git checkout latest ``` -2. Navigate to the directory where you have downloaded KeePassXC and type these commands: +2. Navigate to the directory where you have downloaded KeePassXC and run: ``` mkdir build @@ -71,40 +58,37 @@ To compile from source, open a **Terminal (Linux/MacOS)**, the **MSVC Tools Comm cmake -DWITH_XC_ALL=ON .. make ``` + +If you have `vcpkg` installed, add `-DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake` to the `cmake` command to automatically download and install all required build and runtime dependencies locally to your build directory before compiling KeePassXC. Using `vcpkg` is the preferred way to install dependencies on macOS and required on Windows if using the MSVC toolchain. -Note: These steps place the compiled KeePassXC binary inside the `./build/src/` directory. +For more detailed build instructions for each platform, please refer to the [GitHub wiki](https://github.com/keepassxreboot/keepassxc/wiki/Building-KeePassXC). + +Note: These steps place the compiled KeePassXC binary inside the `./build/src/` directory (`src/KeePassXC.app/Contents/MacOS` on macOS). ## MacOS Build Notes -If you installed Qt5 via Homebrew, you should be able to compile KeePassXC without any changes. If CMake fails to find your Qt installation, you can specify it manually by adding the following parameter: +If you installed Qt@5 via Homebrew and CMake fails to find your Qt installation, you can specify it manually by adding the following parameter: -`-DCMAKE_PREFIX_PATH=/usr/local/opt/qt/lib/cmake` - -(or whatever your Qt installation path is) +`-DCMAKE_PREFIX_PATH=$(brew --prefix qt@5)/lib/cmake` When building with ASAN support on macOS, you need to use `export ASAN_OPTIONS=detect_leaks=0` before running the tests (LSAN is no supported on macOS). ## Windows Build Notes -For detailed build steps see the [Windows Build Instructions](https://github.com/keepassxreboot/keepassxc/wiki/Building-KeePassXC#windows). - -If you are using MSVC, you may have to specify your Vcpkg toolchain by adding the following CMake parameter: `-DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake` - If you are using MSYS2, you have to add ```-G "MSYS Makefiles"``` at the beginning of the cmake command. CMake Configuration Options ========================== -## Common Parameters +## Recommended CMake Build Parameters ``` --DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE= -DWITH_GUI_TESTS=ON ``` -## KeePassXC Parameters +## Additional CMake Parameters KeePassXC comes with a variety of build options that can turn on/off features. Most notably, we allow you to build the application with all TCP/IP networking code disabled. Please note that we still require and link against Qt5's network library in order to use local named pipes on all operating systems. Each of these build options are supplied at the time of calling cmake: @@ -112,6 +96,7 @@ KeePassXC comes with a variety of build options that can turn on/off features. M -DWITH_XC_AUTOTYPE=[ON|OFF] Enable/Disable Auto-Type (default: ON) -DWITH_XC_YUBIKEY=[ON|OFF] Enable/Disable YubiKey HMAC-SHA1 authentication support (default: OFF) -DWITH_XC_BROWSER=[ON|OFF] Enable/Disable KeePassXC-Browser extension support (default: OFF) +-DWITH_XC_BROWSER_PASSKEYS=[ON|OFF] Enable/Disable Passkeys support for browser integration (default: OFF) -DWITH_XC_NETWORKING=[ON|OFF] Enable/Disable Networking support (e.g., favicon downloading) (default: OFF) -DWITH_XC_SSHAGENT=[ON|OFF] Enable/Disable SSHAgent support (default: OFF) -DWITH_XC_FDOSECRETS=[ON|OFF] (Linux Only) Enable/Disable Freedesktop.org Secrets Service support (default:OFF) diff --git a/README.md b/README.md index a2245590e..66078c3b6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -# KeePassXC +# KeePassXC +[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/6326/badge)](https://bestpractices.coreinfrastructure.org/projects/6326) [![TeamCity Build Status](https://ci.keepassxc.org/app/rest/builds/buildType:\(project:KeepassXC\)/statusIcon)](https://ci.keepassxc.org/?guest=1) [![codecov](https://codecov.io/gh/keepassxreboot/keepassxc/branch/develop/graph/badge.svg)](https://codecov.io/gh/keepassxreboot/keepassxc) [![GitHub release](https://img.shields.io/github/release/keepassxreboot/keepassxc)](https://github.com/keepassxreboot/keepassxc/releases/) @@ -21,12 +22,13 @@ KeePassXC has numerous features for novice and power users alike. Our goal is to * Password generator * Auto-Type passwords into applications * Browser integration with Google Chrome, Mozilla Firefox, Microsoft Edge, Chromium, Vivaldi, Brave, and Tor-Browser +* Support for passkeys using the browser integration * Entry icon download -* Import databases from CSV, 1Password, and KeePass1 formats +* Import databases from CSV, 1Password, Bitwarden, Proton Pass, and KeePass1 formats ### Advanced * Database reports (password health, HIBP, and statistics) -* Database export to CSV and HTML formats +* Database export to CSV, XML, and HTML formats * TOTP storage and generation * Field references between entries * File attachments and custom attributes @@ -35,7 +37,7 @@ KeePassXC has numerous features for novice and power users alike. Our goal is to * Command line interface (keepassxc-cli) * Auto-Open databases * KeeShare shared databases (import, export, and synchronize) -* SSH Agent +* SSH Agent integration * FreeDesktop.org Secret Service (replace Gnome keyring, etc.) * Additional encryption choices: Twofish and ChaCha20 diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..8f07bece0 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,46 @@ +### Reporting Security Issues + +The KeePassXC team takes security vulnerabilities very seriously and appreciates your responsible disclosure efforts. We will make every effort to acknowledge your contributions and handle them promptly. + +To report a security issue, please use one of the following methods: + +- **GitHub Security Advisory:** Use the ["Report a Vulnerability"](https://github.com/keepassxreboot/keepassxc/security/advisories/new) tab on our GitHub repository. +- **Private Matrix Message:** Contact any of the following KeePassXC team members privately (also encrypted): + - [@droidmonkey_kpxc](https://matrix.to/#/@droidmonkey_kpxc:matrix.org) + - [@varjolintu](https://matrix.to/#/@varjolintu:matrix.org) + - [@phoerious](https://matrix.to/#/@phoerious:matrix.org) +- **Send an Email:** Send your report to team@keepassxc.org. We recommend encrypting the email if possible. + +Please **DO NOT** use public channels (e.g., GitHub issues, Matrix chat channels) for initial reporting of bona fide security vulnerabilities. + +Once you report a security issue, our team will respond with the next steps. After our initial reply, we will keep you informed of the progress towards a fix and full announcement. We may ask for additional information or guidance during this process. If we disagree that your report constitutes a genuine security vulnerability, we will inform you and close the report. Your report may be turned into an issue for further tracking. + +If you discover vulnerabilities in third-party modules used by KeePassXC, please report them to the maintainers of the respective modules. If the vulnerability impacts KeePassXC directly, we encourage you to notify us using the above methods. We will validate if the vulnerability is exploitable from KeePassXC code; please note that not all vulnerabilities are actually exploitable and do not constitute an immediate concern for the KeePassXC application. + +### Example Security Vulnerabilities + +When reporting, please ensure the issue falls under what can be considered a genuine security vulnerability for KeePassXC. Some examples include: + +- Unauthorized access to sensitive user data (e.g., passwords). +- Remote code execution or escalation of privileges. +- Bypassing authentication or encryption mechanisms. +- Broken or improperly implemented encryption methods. + +### Counter Examples + +The following issues are **not** considered security vulnerabilities: + +- Bugs caused by locally modifying the application (e.g., injecting DLLs, altering code). +- Crashes or misbehavior resulting from normal use (report this as a normal issue). +- Vulnerabilities found in third-party modules (should be reported to the module’s maintainers). + +### CVE Reporting Policy + +Please **DO NOT** submit a report to a Common Vulnerabilities and Exposures (CVE) Numbering Authority (CNA) before confirming the security vulnerability with the KeePassXC team. If we do not respond to your report within 30 days, this restriction no longer applies. + + +### Other Communication + +For other inquiries (e.g., developer questions, user questions), please use the public channels on Matrix: +- **User's Channel:** [#keepassxc:mozilla.org](https://matrix.to/#/#keepassxc:mozilla.org) +- **Developer's Channel:** [#keepassxc-dev:mozilla.org](https://matrix.to/#/#keepassxc-dev:mozilla.org) diff --git a/cmake/CLangFormat.cmake b/cmake/CLangFormat.cmake index b2df97d4d..9ddc4edb2 100644 --- a/cmake/CLangFormat.cmake +++ b/cmake/CLangFormat.cmake @@ -16,9 +16,8 @@ set(EXCLUDED_DIRS # third-party directories src/thirdparty - src/zxcvbn # objective-c directories - src/touchid + src/quickunlock/touchid src/autotype/mac src/gui/osutils/macutils) diff --git a/cmake/FindBotan.cmake b/cmake/FindBotan.cmake new file mode 100644 index 000000000..94d9df98a --- /dev/null +++ b/cmake/FindBotan.cmake @@ -0,0 +1,65 @@ +# - Find botan +# Find the botan cryptographic library +# +# This module defines the following variables: +# BOTAN_FOUND - True if library and include directory are found +# If set to TRUE, the following are also defined: +# BOTAN_INCLUDE_DIRS - The directory where to find the header file +# BOTAN_LIBRARIES - Where to find the library files +# +# This file is in the public domain (https://github.com/vistle/vistle/blob/master/cmake/Modules/FindBOTAN.cmake) + +include(FindPackageHandleStandardArgs) + +set(BOTAN_VERSIONS botan-3 botan-2) +set(BOTAN_NAMES botan-3 botan-2 botan) +set(BOTAN_NAMES_DEBUG botand-3 botand-2 botand botan botan-3) + +find_path( + BOTAN_INCLUDE_DIR + NAMES botan/build.h + PATH_SUFFIXES ${BOTAN_VERSIONS} + DOC "The Botan include directory") +if(BOTAN_INCLUDE_DIR) + file(READ "${BOTAN_INCLUDE_DIR}/botan/build.h" build) + string(REGEX MATCH "BOTAN_VERSION_MAJOR ([0-9]*)" _ ${build}) + set(BOTAN_VERSION_MAJOR ${CMAKE_MATCH_1}) + string(REGEX MATCH "BOTAN_VERSION_MINOR ([0-9]*)" _ ${build}) + set(BOTAN_VERSION_MINOR ${CMAKE_MATCH_1}) + string(REGEX MATCH "BOTAN_VERSION_PATCH ([0-9]*)" _ ${build}) + set(BOTAN_VERSION_PATCH ${CMAKE_MATCH_1}) + set(BOTAN_VERSION "${BOTAN_VERSION_MAJOR}.${BOTAN_VERSION_MINOR}.${BOTAN_VERSION_PATCH}") +endif() + +find_library( + BOTAN_LIBRARY + NAMES ${BOTAN_NAMES} + PATH_SUFFIXES release/lib lib + DOC "The Botan (release) library") +if(MSVC) + find_library( + BOTAN_LIBRARY_DEBUG + NAMES ${BOTAN_NAMES_DEBUG} + PATH_SUFFIXES debug/lib lib + DOC "The Botan debug library") + find_package_handle_standard_args( + Botan + REQUIRED_VARS BOTAN_LIBRARY BOTAN_LIBRARY_DEBUG BOTAN_INCLUDE_DIR + VERSION_VAR BOTAN_VERSION) +else() + find_package_handle_standard_args( + Botan + REQUIRED_VARS BOTAN_LIBRARY BOTAN_INCLUDE_DIR + VERSION_VAR BOTAN_VERSION) +endif() + +if(BOTAN_FOUND) + set(BOTAN_INCLUDE_DIRS ${BOTAN_INCLUDE_DIR}) + if(MSVC) + set(BOTAN_LIBRARIES optimized ${BOTAN_LIBRARY} debug ${BOTAN_LIBRARY_DEBUG}) + else() + set(BOTAN_LIBRARIES ${BOTAN_LIBRARY}) + endif() +endif() + +mark_as_advanced(BOTAN_INCLUDE_DIR BOTAN_LIBRARY BOTAN_LIBRARY_DEBUG) diff --git a/cmake/FindBotan2.cmake b/cmake/FindBotan2.cmake deleted file mode 100644 index 20a9e7fc3..000000000 --- a/cmake/FindBotan2.cmake +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright (c) 2018 Ribose Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS -# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -#.rst: -# FindBotan2 -# ----------- -# -# Find the botan-2 library. -# -# IMPORTED Targets -# ^^^^^^^^^^^^^^^^ -# -# This module defines :prop_tgt:`IMPORTED` targets: -# -# ``Botan2::Botan2`` -# The botan-2 library, if found. -# -# Result variables -# ^^^^^^^^^^^^^^^^ -# -# This module defines the following variables: -# -# :: -# -# BOTAN2_FOUND - true if the headers and library were found -# BOTAN2_INCLUDE_DIRS - where to find headers -# BOTAN2_LIBRARIES - list of libraries to link -# BOTAN2_VERSION - library version that was found, if any - -# find the headers -find_path(BOTAN2_INCLUDE_DIR - NAMES botan/version.h - PATH_SUFFIXES botan-2 -) - -# find the library -find_library(BOTAN2_LIBRARY NAMES botan-2 libbotan-2 botan) - -# determine the version -if(BOTAN2_INCLUDE_DIR AND EXISTS "${BOTAN2_INCLUDE_DIR}/botan/build.h") - file(STRINGS "${BOTAN2_INCLUDE_DIR}/botan/build.h" botan2_version_str - REGEX "^#define[\t ]+(BOTAN_VERSION_[A-Z]+)[\t ]+[0-9]+") - - string(REGEX REPLACE ".*#define[\t ]+BOTAN_VERSION_MAJOR[\t ]+([0-9]+).*" - "\\1" _botan2_version_major "${botan2_version_str}") - string(REGEX REPLACE ".*#define[\t ]+BOTAN_VERSION_MINOR[\t ]+([0-9]+).*" - "\\1" _botan2_version_minor "${botan2_version_str}") - string(REGEX REPLACE ".*#define[\t ]+BOTAN_VERSION_PATCH[\t ]+([0-9]+).*" - "\\1" _botan2_version_patch "${botan2_version_str}") - set(BOTAN2_VERSION "${_botan2_version_major}.${_botan2_version_minor}.${_botan2_version_patch}" - CACHE INTERNAL "The version of Botan which was detected") -endif() - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Botan2 - REQUIRED_VARS BOTAN2_LIBRARY BOTAN2_INCLUDE_DIR - VERSION_VAR BOTAN2_VERSION -) - -if(BOTAN2_FOUND) - set(BOTAN2_INCLUDE_DIRS ${BOTAN2_INCLUDE_DIR} ${PC_BOTAN2_INCLUDE_DIRS}) - set(BOTAN2_LIBRARIES ${BOTAN2_LIBRARY}) -endif() - -if(BOTAN2_FOUND AND NOT TARGET Botan2::Botan2) - # create the new library target - add_library(Botan2::Botan2 UNKNOWN IMPORTED) - # set the required include dirs for the target - if(BOTAN2_INCLUDE_DIRS) - set_target_properties(Botan2::Botan2 - PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${BOTAN2_INCLUDE_DIRS}" - ) - endif() - # set the required libraries for the target - if(EXISTS "${BOTAN2_LIBRARY}") - set_target_properties(Botan2::Botan2 - PROPERTIES - IMPORTED_LINK_INTERFACE_LANGUAGES "C" - IMPORTED_LOCATION "${BOTAN2_LIBRARY}" - ) - endif() -endif() - -mark_as_advanced(BOTAN2_INCLUDE_DIR BOTAN2_LIBRARY) diff --git a/cmake/FindPCSC.cmake b/cmake/FindPCSC.cmake index ae3265fff..d37b269df 100644 --- a/cmake/FindPCSC.cmake +++ b/cmake/FindPCSC.cmake @@ -21,16 +21,38 @@ endif() if(NOT PCSC_FOUND) # Search for PC/SC headers on Mac and Windows + + # Additional search paths for Windows if not running in Visual Studio environment + if (WIN32) + # Resolve the ambiguity of using two names for one architechture + if(CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x64") + set(ARCH_DIR "x64") + else() + set(ARCH_DIR "${CMAKE_SYSTEM_PROCESSOR}") + endif() + + # Locate Windows SDK Paths + if (CMAKE_WINDOWS_KITS_10_DIR) + set(WINSDKROOTC_INCLUDE "${CMAKE_WINDOWS_KITS_10_DIR}/Include/${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}/um") + set(WINSDKROOTC_LIB "${CMAKE_WINDOWS_KITS_10_DIR}/LIB/${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}/um/${ARCH_DIR}") + else() + set(WINSDKROOTC_INCLUDE "$ENV{ProgramFiles\(x86\)}/Windows Kits/10/Include/${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}/um") + set(WINSDKROOTC_LIB "$ENV{ProgramFiles\(x86\)}/Windows Kits/10/LIB/${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}/um/${ARCH_DIR}") + endif() + endif() + find_path(PCSC_INCLUDE_DIRS winscard.h HINTS - ${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES} - /usr/include/PCSC + ${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES} + /usr/include/PCSC + ${WINSDKROOTC_INCLUDE} PATH_SUFFIXES PCSC) # MAC library is PCSC, Windows library is WinSCard find_library(PCSC_LIBRARIES NAMES pcsclite libpcsclite WinSCard PCSC HINTS - ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}) + ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES} + ${WINSDKROOTC_LIB}) endif() include(FindPackageHandleStandardArgs) diff --git a/cmake/FindQREncode.cmake b/cmake/FindQREncode.cmake index 69850edf5..fdd98278c 100644 --- a/cmake/FindQREncode.cmake +++ b/cmake/FindQREncode.cmake @@ -15,12 +15,12 @@ find_path(QRENCODE_INCLUDE_DIR NAMES qrencode.h) -if (VCPKG_INSTALLED_DIR) - find_library(QRENCODE_LIBRARY_RELEASE qrencode) - find_library(QRENCODE_LIBRARY_DEBUG qrencoded) - set(QRENCODE_LIBRARY optimized ${QRENCODE_LIBRARY_RELEASE} debug ${QRENCODE_LIBRARY_DEBUG}) +if(WIN32 AND MSVC) + find_library(QRENCODE_LIBRARY_RELEASE qrencode) + find_library(QRENCODE_LIBRARY_DEBUG qrencoded) + set(QRENCODE_LIBRARY optimized ${QRENCODE_LIBRARY_RELEASE} debug ${QRENCODE_LIBRARY_DEBUG}) else() - find_library(QRENCODE_LIBRARY qrencode) + find_library(QRENCODE_LIBRARY qrencode) endif() mark_as_advanced(QRENCODE_LIBRARY QRENCODE_INCLUDE_DIR) diff --git a/cmake/KPXCMacDeployHelpers.cmake b/cmake/KPXCMacDeployHelpers.cmake index d22051d32..f86067cbc 100644 --- a/cmake/KPXCMacDeployHelpers.cmake +++ b/cmake/KPXCMacDeployHelpers.cmake @@ -1,5 +1,5 @@ # Running macdeployqt on a POST_BUILD copied binaries is pointless when using CPack because -# the copied binaries will be overriden by the corresponding install(TARGETS) commands. +# the copied binaries will be overridden by the corresponding install(TARGETS) commands. # That's why we run macdeployqt using install(CODE) on the already installed binaries. # The precondition is that all install(TARGETS) calls have to be called before this function is # called. diff --git a/cmake/compiler-checks/macos/control_biometry_support.mm b/cmake/compiler-checks/macos/control_biometry_support.mm new file mode 100644 index 000000000..1bfbab184 --- /dev/null +++ b/cmake/compiler-checks/macos/control_biometry_support.mm @@ -0,0 +1,5 @@ +#include + +int main() { + return static_cast(kSecAccessControlBiometryCurrentSet); +} \ No newline at end of file diff --git a/cmake/compiler-checks/macos/control_touch_id_support.mm b/cmake/compiler-checks/macos/control_touch_id_support.mm new file mode 100644 index 000000000..e78767498 --- /dev/null +++ b/cmake/compiler-checks/macos/control_touch_id_support.mm @@ -0,0 +1,5 @@ +#include + +int main() { + return static_cast(kSecAccessControlTouchIDCurrentSet); +} \ No newline at end of file diff --git a/cmake/compiler-checks/macos/control_watch_support.mm b/cmake/compiler-checks/macos/control_watch_support.mm new file mode 100644 index 000000000..fce69edc0 --- /dev/null +++ b/cmake/compiler-checks/macos/control_watch_support.mm @@ -0,0 +1,5 @@ +#include + +int main() { + return static_cast(kSecAccessControlWatch); +} \ No newline at end of file diff --git a/codecov.yaml b/codecov.yaml index d92656b6f..96ac133ef 100644 --- a/codecov.yaml +++ b/codecov.yaml @@ -1,8 +1,27 @@ +codecov: + require_ci_to_pass: false coverage: range: 60..80 round: nearest precision: 2 + status: + project: + default: + target: auto + threshold: 0.5% + paths: + - "src" + patch: + default: + target: 50% + threshold: 0% + informational: true + paths: + - "src" fixes: - "*/src/::" +ignore: + - "src/gui/styles/**" + - "src/thirdparty/**" comment: require_changes: true diff --git a/docs/GettingStarted.adoc b/docs/GettingStarted.adoc index 5135e09e2..f79afe078 100644 --- a/docs/GettingStarted.adoc +++ b/docs/GettingStarted.adoc @@ -26,8 +26,8 @@ include::topics/DownloadInstall.adoc[tags=*;!advanced] include::topics/UserInterface.adoc[tags=*;!advanced] -include::topics/PasswordGenerator.adoc[tags=*;!advanced] - include::topics/DatabaseOperations.adoc[tags=*;!advanced] -include::topics/BrowserPlugin.adoc[tags=*;!advanced] +include::topics/PasswordGenerator.adoc[tags=*;!advanced] + +include::topics/BrowserIntegration.adoc[tags=*;!advanced] diff --git a/docs/UserGuide.adoc b/docs/UserGuide.adoc index 4000f5641..cf731a41c 100644 --- a/docs/UserGuide.adoc +++ b/docs/UserGuide.adoc @@ -6,6 +6,7 @@ KeePassXC Team :imagesdir: images :stylesheet: styles/dark.css :toc: left +:sectanchors: ifdef::backend-pdf[] :title-page: :title-logo-image: {imagesdir}/kpxc_logo.png @@ -23,16 +24,18 @@ include::topics/UserInterface.adoc[tags=*] include::topics/DatabaseOperations.adoc[tags=*] -include::topics/ImportExport.adoc[tags=*] - include::topics/PasswordGenerator.adoc[tags=*] -include::topics/BrowserPlugin.adoc[tags=*] - -include::topics/AutoType.adoc[tags=*] +include::topics/ImportExport.adoc[tags=*] include::topics/KeeShare.adoc[tags=*] +include::topics/BrowserIntegration.adoc[tags=*] + +include::topics/Passkeys.adoc[tags=*] + +include::topics/AutoType.adoc[tags=*] + include::topics/SSHAgent.adoc[tags=*] include::topics/Reference.adoc[tags=*] diff --git a/docs/images/autoopen.png b/docs/images/autoopen.png index a825accc2..3bc9ac85d 100644 Binary files a/docs/images/autoopen.png and b/docs/images/autoopen.png differ diff --git a/docs/images/autoopen_ifdevice.png b/docs/images/autoopen_ifdevice.png index 96af037fc..0bfb756f5 100644 Binary files a/docs/images/autoopen_ifdevice.png and b/docs/images/autoopen_ifdevice.png differ diff --git a/docs/images/autotype_entry_sequences.png b/docs/images/autotype_entry_sequences.png index 36b38348c..5c9581519 100644 Binary files a/docs/images/autotype_entry_sequences.png and b/docs/images/autotype_entry_sequences.png differ diff --git a/docs/images/autotype_entrylevel.png b/docs/images/autotype_entrylevel.png index 0c9479912..ea4e5a2cb 100644 Binary files a/docs/images/autotype_entrylevel.png and b/docs/images/autotype_entrylevel.png differ diff --git a/docs/images/autotype_selection_dialog.png b/docs/images/autotype_selection_dialog.png index ce94f6cfa..f7304513b 100644 Binary files a/docs/images/autotype_selection_dialog.png and b/docs/images/autotype_selection_dialog.png differ diff --git a/docs/images/autotype_selection_dialog_search.png b/docs/images/autotype_selection_dialog_search.png index 96d0fbeec..078a9c36f 100644 Binary files a/docs/images/autotype_selection_dialog_search.png and b/docs/images/autotype_selection_dialog_search.png differ diff --git a/docs/images/autotype_selection_dialog_type_menu.png b/docs/images/autotype_selection_dialog_type_menu.png index 08fb0f9ee..bf99ce627 100644 Binary files a/docs/images/autotype_selection_dialog_type_menu.png and b/docs/images/autotype_selection_dialog_type_menu.png differ diff --git a/docs/images/autotype_settings.png b/docs/images/autotype_settings.png index 624185a23..dd70000c8 100644 Binary files a/docs/images/autotype_settings.png and b/docs/images/autotype_settings.png differ diff --git a/docs/images/browser_advanced_settings.png b/docs/images/browser_advanced_settings.png index 9f4a8bd2f..60c6a8762 100644 Binary files a/docs/images/browser_advanced_settings.png and b/docs/images/browser_advanced_settings.png differ diff --git a/docs/images/browser_confirm_access_dialog.png b/docs/images/browser_confirm_access_dialog.png index 0e268e4ff..5bdd84502 100644 Binary files a/docs/images/browser_confirm_access_dialog.png and b/docs/images/browser_confirm_access_dialog.png differ diff --git a/docs/images/browser_custom_browser_configuration.png b/docs/images/browser_custom_browser_configuration.png new file mode 100644 index 000000000..257c571f1 Binary files /dev/null and b/docs/images/browser_custom_browser_configuration.png differ diff --git a/docs/images/browser_database_settings.png b/docs/images/browser_database_settings.png index e8fb7d59e..2e4e28fd3 100644 Binary files a/docs/images/browser_database_settings.png and b/docs/images/browser_database_settings.png differ diff --git a/docs/images/browser_entry_settings.png b/docs/images/browser_entry_settings.png index 0a2b4dd71..3545f2bfa 100644 Binary files a/docs/images/browser_entry_settings.png and b/docs/images/browser_entry_settings.png differ diff --git a/docs/images/browser_extension_association.png b/docs/images/browser_extension_association.png index 1a2368eb0..3c3ef0ae9 100644 Binary files a/docs/images/browser_extension_association.png and b/docs/images/browser_extension_association.png differ diff --git a/docs/images/browser_extension_connect.png b/docs/images/browser_extension_connect.png index 74674745f..39caca0ad 100644 Binary files a/docs/images/browser_extension_connect.png and b/docs/images/browser_extension_connect.png differ diff --git a/docs/images/browser_extension_icons.png b/docs/images/browser_extension_icons.png index bd2ba77ef..f8430265e 100644 Binary files a/docs/images/browser_extension_icons.png and b/docs/images/browser_extension_icons.png differ diff --git a/docs/images/browser_extension_reload.png b/docs/images/browser_extension_reload.png index e3272582f..178c19ff0 100644 Binary files a/docs/images/browser_extension_reload.png and b/docs/images/browser_extension_reload.png differ diff --git a/docs/images/browser_fill_credentials.png b/docs/images/browser_fill_credentials.png index 5766f4a84..6be94ee2b 100644 Binary files a/docs/images/browser_fill_credentials.png and b/docs/images/browser_fill_credentials.png differ diff --git a/docs/images/browser_group_settings.png b/docs/images/browser_group_settings.png index c9dc5bd60..57794492d 100644 Binary files a/docs/images/browser_group_settings.png and b/docs/images/browser_group_settings.png differ diff --git a/docs/images/browser_settings.png b/docs/images/browser_settings.png index aa14eb4ce..a8dd708a0 100644 Binary files a/docs/images/browser_settings.png and b/docs/images/browser_settings.png differ diff --git a/docs/images/browser_statistics.png b/docs/images/browser_statistics.png index 5321ff8da..1417aeaa9 100644 Binary files a/docs/images/browser_statistics.png and b/docs/images/browser_statistics.png differ diff --git a/docs/images/clone_entry.png b/docs/images/clone_entry.png index bd3145fb9..e01b38e0b 100644 Binary files a/docs/images/clone_entry.png and b/docs/images/clone_entry.png differ diff --git a/docs/images/clone_entry_dialog.png b/docs/images/clone_entry_dialog.png index 8fd9d49c5..c4df4c575 100644 Binary files a/docs/images/clone_entry_dialog.png and b/docs/images/clone_entry_dialog.png differ diff --git a/docs/images/clone_entry_references.png b/docs/images/clone_entry_references.png index 99e16d6a4..ce4321c0c 100644 Binary files a/docs/images/clone_entry_references.png and b/docs/images/clone_entry_references.png differ diff --git a/docs/images/compact_mode_comparison.png b/docs/images/compact_mode_comparison.png index dbc4a31d1..ec37cfd9d 100644 Binary files a/docs/images/compact_mode_comparison.png and b/docs/images/compact_mode_comparison.png differ diff --git a/docs/images/csv_import.png b/docs/images/csv_import.png index 7867d0043..cddd2c4e0 100644 Binary files a/docs/images/csv_import.png and b/docs/images/csv_import.png differ diff --git a/docs/images/database_maintenance.png b/docs/images/database_maintenance.png index 4c3f2b4e0..4f994373d 100644 Binary files a/docs/images/database_maintenance.png and b/docs/images/database_maintenance.png differ diff --git a/docs/images/database_security.png b/docs/images/database_security.png index f2d8b0586..3ecf5fc3a 100644 Binary files a/docs/images/database_security.png and b/docs/images/database_security.png differ diff --git a/docs/images/database_security_credentials.png b/docs/images/database_security_credentials.png index bc947fbc6..2ae903f5c 100644 Binary files a/docs/images/database_security_credentials.png and b/docs/images/database_security_credentials.png differ diff --git a/docs/images/database_security_encryption.png b/docs/images/database_security_encryption.png index 86f0f9996..aa2721421 100644 Binary files a/docs/images/database_security_encryption.png and b/docs/images/database_security_encryption.png differ diff --git a/docs/images/database_security_encryption_advanced.png b/docs/images/database_security_encryption_advanced.png index cb68078e2..617c61fd6 100644 Binary files a/docs/images/database_security_encryption_advanced.png and b/docs/images/database_security_encryption_advanced.png differ diff --git a/docs/images/database_settings.png b/docs/images/database_settings.png index 26a352590..adf2b48e2 100644 Binary files a/docs/images/database_settings.png and b/docs/images/database_settings.png differ diff --git a/docs/images/database_view.png b/docs/images/database_view.png index 3d5dc4b3b..77b655741 100644 Binary files a/docs/images/database_view.png and b/docs/images/database_view.png differ diff --git a/docs/images/edit_entry.png b/docs/images/edit_entry.png index 8672a22b5..ad5b14652 100644 Binary files a/docs/images/edit_entry.png and b/docs/images/edit_entry.png differ diff --git a/docs/images/edit_entry_attachments.png b/docs/images/edit_entry_attachments.png index 42bef27da..fea995b52 100644 Binary files a/docs/images/edit_entry_attachments.png and b/docs/images/edit_entry_attachments.png differ diff --git a/docs/images/edit_entry_attributes.png b/docs/images/edit_entry_attributes.png index 047c4fd68..2a48669fb 100644 Binary files a/docs/images/edit_entry_attributes.png and b/docs/images/edit_entry_attributes.png differ diff --git a/docs/images/edit_entry_colors.png b/docs/images/edit_entry_colors.png index 0c9482a82..c2eff3969 100644 Binary files a/docs/images/edit_entry_colors.png and b/docs/images/edit_entry_colors.png differ diff --git a/docs/images/edit_entry_history.png b/docs/images/edit_entry_history.png index 9a6c1cbb4..e4856642b 100644 Binary files a/docs/images/edit_entry_history.png and b/docs/images/edit_entry_history.png differ diff --git a/docs/images/edit_entry_icons.png b/docs/images/edit_entry_icons.png index 1cc46cdec..7b2f0fae5 100644 Binary files a/docs/images/edit_entry_icons.png and b/docs/images/edit_entry_icons.png differ diff --git a/docs/images/edit_entry_properties.png b/docs/images/edit_entry_properties.png index c781192ae..a50c21ff0 100644 Binary files a/docs/images/edit_entry_properties.png and b/docs/images/edit_entry_properties.png differ diff --git a/docs/images/export_database.png b/docs/images/export_database.png index 92a417ac0..fd423ccee 100644 Binary files a/docs/images/export_database.png and b/docs/images/export_database.png differ diff --git a/docs/images/import_wizard.png b/docs/images/import_wizard.png new file mode 100644 index 000000000..bba4cdd94 Binary files /dev/null and b/docs/images/import_wizard.png differ diff --git a/docs/images/install_wizard_1.png b/docs/images/install_wizard_1.png index a466f834b..a3b49c541 100644 Binary files a/docs/images/install_wizard_1.png and b/docs/images/install_wizard_1.png differ diff --git a/docs/images/install_wizard_2.png b/docs/images/install_wizard_2.png index b7c9c0712..f3ca19e16 100644 Binary files a/docs/images/install_wizard_2.png and b/docs/images/install_wizard_2.png differ diff --git a/docs/images/keeshare_application_settings.png b/docs/images/keeshare_application_settings.png index c3bb7f26c..5d22e85b6 100644 Binary files a/docs/images/keeshare_application_settings.png and b/docs/images/keeshare_application_settings.png differ diff --git a/docs/images/keeshare_group_settings.png b/docs/images/keeshare_group_settings.png index 51febf41f..8f9fa2175 100644 Binary files a/docs/images/keeshare_group_settings.png and b/docs/images/keeshare_group_settings.png differ diff --git a/docs/images/keeshare_shared_group.png b/docs/images/keeshare_shared_group.png index 4d23aca89..ef6886aa0 100644 Binary files a/docs/images/keeshare_shared_group.png and b/docs/images/keeshare_shared_group.png differ diff --git a/docs/images/kpxc_logo.png b/docs/images/kpxc_logo.png index 9af29eb30..8803335f1 100644 Binary files a/docs/images/kpxc_logo.png and b/docs/images/kpxc_logo.png differ diff --git a/docs/images/linux_store.png b/docs/images/linux_store.png index 7c63ca7be..aab68a0b3 100644 Binary files a/docs/images/linux_store.png and b/docs/images/linux_store.png differ diff --git a/docs/images/macos_install.png b/docs/images/macos_install.png index f72222786..5bd105170 100644 Binary files a/docs/images/macos_install.png and b/docs/images/macos_install.png differ diff --git a/docs/images/main_interface.png b/docs/images/main_interface.png index 088a05aaa..32f43cad6 100644 Binary files a/docs/images/main_interface.png and b/docs/images/main_interface.png differ diff --git a/docs/images/new_db_wizard_1.png b/docs/images/new_db_wizard_1.png index 360033543..ea3cdc669 100644 Binary files a/docs/images/new_db_wizard_1.png and b/docs/images/new_db_wizard_1.png differ diff --git a/docs/images/new_db_wizard_2.png b/docs/images/new_db_wizard_2.png index 3c384e1d5..98331ad13 100644 Binary files a/docs/images/new_db_wizard_2.png and b/docs/images/new_db_wizard_2.png differ diff --git a/docs/images/new_db_wizard_3.png b/docs/images/new_db_wizard_3.png index e6ac46769..fe8acd65c 100644 Binary files a/docs/images/new_db_wizard_3.png and b/docs/images/new_db_wizard_3.png differ diff --git a/docs/images/open_database.png b/docs/images/open_database.png index ca94c5cc8..0c4391856 100644 Binary files a/docs/images/open_database.png and b/docs/images/open_database.png differ diff --git a/docs/images/passkeys_all_passkeys.png b/docs/images/passkeys_all_passkeys.png new file mode 100644 index 000000000..b61551e02 Binary files /dev/null and b/docs/images/passkeys_all_passkeys.png differ diff --git a/docs/images/passkeys_authentication_dialog.png b/docs/images/passkeys_authentication_dialog.png new file mode 100644 index 000000000..ab5f1ee1d Binary files /dev/null and b/docs/images/passkeys_authentication_dialog.png differ diff --git a/docs/images/passkeys_enable_from_extension.png b/docs/images/passkeys_enable_from_extension.png new file mode 100644 index 000000000..b0744c8cf Binary files /dev/null and b/docs/images/passkeys_enable_from_extension.png differ diff --git a/docs/images/passkeys_export_dialog.png b/docs/images/passkeys_export_dialog.png new file mode 100644 index 000000000..3e7fd36c3 Binary files /dev/null and b/docs/images/passkeys_export_dialog.png differ diff --git a/docs/images/passkeys_github_1.png b/docs/images/passkeys_github_1.png new file mode 100644 index 000000000..1bd0e731d Binary files /dev/null and b/docs/images/passkeys_github_1.png differ diff --git a/docs/images/passkeys_github_2.png b/docs/images/passkeys_github_2.png new file mode 100644 index 000000000..553e1c4c1 Binary files /dev/null and b/docs/images/passkeys_github_2.png differ diff --git a/docs/images/passkeys_github_3.png b/docs/images/passkeys_github_3.png new file mode 100644 index 000000000..dff08f198 Binary files /dev/null and b/docs/images/passkeys_github_3.png differ diff --git a/docs/images/passkeys_github_4.png b/docs/images/passkeys_github_4.png new file mode 100644 index 000000000..82c31eaad Binary files /dev/null and b/docs/images/passkeys_github_4.png differ diff --git a/docs/images/passkeys_github_5.png b/docs/images/passkeys_github_5.png new file mode 100644 index 000000000..305ed7f5f Binary files /dev/null and b/docs/images/passkeys_github_5.png differ diff --git a/docs/images/passkeys_import_dialog.png b/docs/images/passkeys_import_dialog.png new file mode 100644 index 000000000..58b07fc45 Binary files /dev/null and b/docs/images/passkeys_import_dialog.png differ diff --git a/docs/images/passkeys_import_passkey_to_entry.png b/docs/images/passkeys_import_passkey_to_entry.png new file mode 100644 index 000000000..abc106edc Binary files /dev/null and b/docs/images/passkeys_import_passkey_to_entry.png differ diff --git a/docs/images/passkeys_register_dialog.png b/docs/images/passkeys_register_dialog.png new file mode 100644 index 000000000..5750522b9 Binary files /dev/null and b/docs/images/passkeys_register_dialog.png differ diff --git a/docs/images/passkeys_update_dialog.png b/docs/images/passkeys_update_dialog.png new file mode 100644 index 000000000..5657a8b87 Binary files /dev/null and b/docs/images/passkeys_update_dialog.png differ diff --git a/docs/images/passphrase_generator.png b/docs/images/passphrase_generator.png index b8180b323..abe7f73a4 100644 Binary files a/docs/images/passphrase_generator.png and b/docs/images/passphrase_generator.png differ diff --git a/docs/images/password_generator.png b/docs/images/password_generator.png index 230d656af..7299629e0 100644 Binary files a/docs/images/password_generator.png and b/docs/images/password_generator.png differ diff --git a/docs/images/password_generator_advanced.png b/docs/images/password_generator_advanced.png index f32754e57..0e534e02d 100644 Binary files a/docs/images/password_generator_advanced.png and b/docs/images/password_generator_advanced.png differ diff --git a/docs/images/quick_unlock.png b/docs/images/quick_unlock.png index 7c878a567..bc47c6480 100644 Binary files a/docs/images/quick_unlock.png and b/docs/images/quick_unlock.png differ diff --git a/docs/images/quick_unlock_windows_hello.png b/docs/images/quick_unlock_windows_hello.png index 59ec70057..935ff305d 100644 Binary files a/docs/images/quick_unlock_windows_hello.png and b/docs/images/quick_unlock_windows_hello.png differ diff --git a/docs/images/save_database_backup.png b/docs/images/save_database_backup.png index ad543b4c3..b59122642 100644 Binary files a/docs/images/save_database_backup.png and b/docs/images/save_database_backup.png differ diff --git a/docs/images/save_options.png b/docs/images/save_options.png index cf16c92e8..55c3e640f 100644 Binary files a/docs/images/save_options.png and b/docs/images/save_options.png differ diff --git a/docs/images/sshagent_application_settings.png b/docs/images/sshagent_application_settings.png index 7f07ee49b..8ac594c11 100644 Binary files a/docs/images/sshagent_application_settings.png and b/docs/images/sshagent_application_settings.png differ diff --git a/docs/images/sshagent_context_menu.png b/docs/images/sshagent_context_menu.png index 8bd280fde..d2743f6e9 100644 Binary files a/docs/images/sshagent_context_menu.png and b/docs/images/sshagent_context_menu.png differ diff --git a/docs/images/sshagent_entry_settings.png b/docs/images/sshagent_entry_settings.png index 263f55822..d2a405cbd 100644 Binary files a/docs/images/sshagent_entry_settings.png and b/docs/images/sshagent_entry_settings.png differ diff --git a/docs/images/sshagent_puttygen.png b/docs/images/sshagent_puttygen.png index ee68842b3..c463cc084 100644 Binary files a/docs/images/sshagent_puttygen.png and b/docs/images/sshagent_puttygen.png differ diff --git a/docs/images/sync_remote_settings.png b/docs/images/sync_remote_settings.png new file mode 100644 index 000000000..1d5c006b3 Binary files /dev/null and b/docs/images/sync_remote_settings.png differ diff --git a/docs/images/theme_comparison.png b/docs/images/theme_comparison.png index 408bb892c..bc344c019 100644 Binary files a/docs/images/theme_comparison.png and b/docs/images/theme_comparison.png differ diff --git a/docs/images/theme_selection.png b/docs/images/theme_selection.png index 2b087a84e..3f87719d3 100644 Binary files a/docs/images/theme_selection.png and b/docs/images/theme_selection.png differ diff --git a/docs/images/toolbar.png b/docs/images/toolbar.png index 9ae4049ab..742379983 100644 Binary files a/docs/images/toolbar.png and b/docs/images/toolbar.png differ diff --git a/docs/images/totp_code_example.png b/docs/images/totp_code_example.png index cf6084bda..81b251977 100644 Binary files a/docs/images/totp_code_example.png and b/docs/images/totp_code_example.png differ diff --git a/docs/images/totp_setup.png b/docs/images/totp_setup.png index 2c975889e..c8027b654 100644 Binary files a/docs/images/totp_setup.png and b/docs/images/totp_setup.png differ diff --git a/docs/images/totp_usage_examples.png b/docs/images/totp_usage_examples.png index 25c358567..60ef63bd5 100644 Binary files a/docs/images/totp_usage_examples.png and b/docs/images/totp_usage_examples.png differ diff --git a/docs/images/uac_dialog.png b/docs/images/uac_dialog.png index 1477626c2..5838d6f7c 100644 Binary files a/docs/images/uac_dialog.png and b/docs/images/uac_dialog.png differ diff --git a/docs/images/unlock_database.png b/docs/images/unlock_database.png index 5cd3c37d8..e8a5c19d2 100644 Binary files a/docs/images/unlock_database.png and b/docs/images/unlock_database.png differ diff --git a/docs/images/welcome_screen.png b/docs/images/welcome_screen.png index 0b4695f0f..a00ae400f 100644 Binary files a/docs/images/welcome_screen.png and b/docs/images/welcome_screen.png differ diff --git a/docs/man/keepassxc-cli.1.adoc b/docs/man/keepassxc-cli.1.adoc index c891e2d8b..5fd076f6e 100644 --- a/docs/man/keepassxc-cli.1.adoc +++ b/docs/man/keepassxc-cli.1.adoc @@ -16,7 +16,7 @@ = keepassxc-cli(1) KeePassXC Team -:docdate: 2020-08-31 +:docdate: 2022-08-20 :doctype: manpage :mansource: KeePassXC {revnumber} :manmanual: General Commands Manual @@ -66,6 +66,11 @@ It provides the ability to query and modify the entries of a KeePass database, d The key file will be created if the file that is referred to does not exist. If both the key file and password are empty, no database will be created. +*db-edit* [_options_] <__database__>:: + Edits a database. + When setting a key file, the key file will be created if the file that is referred to + does not exist. + *db-info* [_options_] <__database__>:: Show a database's information. @@ -154,7 +159,7 @@ It provides the ability to query and modify the entries of a KeePass database, d *--no-password*:: Deactivates the password key for the database. -*-y*, *--yubikey* <__slot__>:: +*-y*, *--yubikey* <__slot[:serial]__>:: Specifies a yubikey slot for unlocking the database. In a merge operation this option is used to specify the YubiKey slot for the first database. @@ -177,7 +182,7 @@ It provides the ability to query and modify the entries of a KeePass database, d *--no-password-from*:: Deactivates password key for the database to merge from. -*--yubikey-from* <__slot__>:: +*--yubikey-from* <__slot[:serial]__>:: YubiKey slot for the second database. *-s*, *--same-credentials*:: @@ -235,16 +240,24 @@ The same password generation options as documented for the generate command can If a unique matching entry is found it will be copied to the clipboard. If multiple entries are found they will be listed to refine the search. (no clip performed) -=== Create and Import options -*-k*, *--set-key-file* <__path__>:: +=== Db-create, Db-edit and Import options +*--set-key-file* <__path__>:: Set the key file for the database. *-p*, *--set-password*:: Set a password for the database. +=== Db-create, Import options *-t*, *--decryption-time* <__time__>:: Target decryption time in MS for the database. +=== Db-edit options +*--unset-password* <__path__>:: + Removes the password for the database. + +*--unset-key-file* <__path__>:: + Removes the key file for the database. + === Show options *-a*, *--attributes* <__attribute__>...:: Shows the named attributes. @@ -252,6 +265,9 @@ The same password generation options as documented for the generate command can If no attributes are specified and *-t* is not specified, a summary of the default attributes is given. Protected attributes will be displayed in clear text if specified explicitly by this option. +*--all*:: + Show all the attributes of the entry. + *-s*, *--show-protected*:: Shows the protected attributes in clear text. @@ -270,7 +286,7 @@ The same password generation options as documented for the generate command can Sets the Path of the wordlist for the diceware generator. The wordlist must have > 1000 words, otherwise the program will fail. If the wordlist has < 4000 words a warning will be printed to STDERR. - Any *diceware*-compatible wordlist can used. Note however that *KeePassXC* will NOT verify the PGP signature of signed wordlists. + Any *diceware*-compatible wordlist can be used. Note however that *KeePassXC* will NOT verify the PGP signature of signed wordlists. === Export options *-f*, *--format*:: diff --git a/docs/man/keepassxc.1.adoc b/docs/man/keepassxc.1.adoc index a37c9a098..b82a97b03 100644 --- a/docs/man/keepassxc.1.adoc +++ b/docs/man/keepassxc.1.adoc @@ -28,29 +28,38 @@ keepassxc - a modern open-source password manager *keepassxc* [_options_] [_filename(s)_] == DESCRIPTION -*KeePassXC* is a free/open-source password manager or safe which helps you to manage your passwords in a secure way. -The complete database is always encrypted with the industry-standard AES (alias Rijndael) encryption algorithm using a 256 bit key. +*KeePassXC* is a free/open-source password manager or safe which helps you to manage your passwords securely. +The complete database is always encrypted with the industry-standard AES (also known as Rijndael) encryption algorithm using a 256-bit key. KeePassXC uses a database format that is compatible with KeePass Password Safe. -Your wallet works offline and requires no Internet connection. +Your database works offline and requires no internet connection. == OPTIONS *-h*, *--help*:: Displays this help. +*--help-all*:: + Displays help including Qt specific options. + *-v*, *--version*:: Displays version information. *--config* <__config__>:: Path to a custom config file. +*--localconfig* <__localconfig__>:: + Path to a custom local config file. + +*--lock*:: + Locks all open databases. + *--keyfile* <__keyfile__>:: Key file of the database. *--pw-stdin*:: - Read password of the database from stdin. + Reads password of the database from stdin. -*--pw*, *--parent-window* <__handle__>:: - Parent window handle. +*--minimized*:: + Starts KeePassXC minimized to the system tray. *--debug-info*:: Displays debugging information. diff --git a/docs/styles/dark.css b/docs/styles/dark.css index 8f7bd67b6..4295629f4 100644 --- a/docs/styles/dark.css +++ b/docs/styles/dark.css @@ -180,7 +180,7 @@ body.toc2.toc-right{padding-left:0;padding-right:20em}} .sect1{padding-bottom:1.25em}} .sect1:last-child{padding-bottom:0} .sect1+.sect1{border-top:1px solid #efefed} -#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400} +#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:2.0ex;margin-left:-1.8ex;margin-top:0.08ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400} #content h1>a.anchor::before,h2>a.anchor::before,h3>a.anchor::before,#toctitle>a.anchor::before,.sidebarblock>.content>.title>a.anchor::before,h4>a.anchor::before,h5>a.anchor::before,h6>a.anchor::before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em} #content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible} #content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none} diff --git a/docs/topics/AutoType.adoc b/docs/topics/AutoType.adoc index 836d2c7d1..01aa0a5b7 100644 --- a/docs/topics/AutoType.adoc +++ b/docs/topics/AutoType.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Auto-Type += KeePassXC – Auto-Type :imagesdir: ../images // tag::content[] @@ -37,7 +37,7 @@ TIP: You can use an asterisk (`\*`) to match any value (e.g., when a window titl .Auto-Type entry sequences image::autotype_entry_sequences.png[] -2. _(Optional)_ Define a custom Auto-Type sequence for each window title match by selecting the _Use specific sequence for this association_ checkbox. Sequence action codes and field placeholders are detailed in the following table. Beyond the most important ones detailed below, there are additional action codes and placeholders available: xref:UserGuide.adoc#_auto_type_actions[Auto-Type Actions Reference] and xref:UserGuide.adoc#_entry_placeholders[Entry Placeholders Reference]. Action codes and placeholders are not case sensitive. +2. _(Optional)_ Define a custom Auto-Type sequence for each window title match by selecting the _Use specific sequence for this association_ checkbox. Sequence action codes and field placeholders are detailed in the following table. Beyond the most important ones detailed below, there are additional action codes and placeholders available: <> and <>. Action codes and placeholders are not case sensitive. + [grid=rows, frame=none, width=90%] |=== diff --git a/docs/topics/BrowserPlugin.adoc b/docs/topics/BrowserIntegration.adoc similarity index 68% rename from docs/topics/BrowserPlugin.adoc rename to docs/topics/BrowserIntegration.adoc index 9435a1c9c..c1650fa4b 100644 --- a/docs/topics/BrowserPlugin.adoc +++ b/docs/topics/BrowserIntegration.adoc @@ -1,158 +1,201 @@ -= KeePassXC - Browser Plugin -include::.sharedheader[] -:imagesdir: ../images - -// tag::content[] -== Setup Browser Integration -The KeePassXC-Browser extension is installed within your web browser so that you can automatically pull usernames and passwords from KeePassXC and populate them directly into website fields. It is a very useful and secure extension that enhances your productivity while using KeePassXC. With this extension, you do not need to manually copy the data from your KeePassXC database and paste it into the website fields. - -The KeePassXC-Browser extension is available on the following web browsers: - -* Google Chrome, Vivaldi, and Brave -* Mozilla Firefox and Tor-Browser -* Microsoft Edge -* Chromium - -=== Install the Browser Extension -You can download the KeePassXC-Browser extension from your web browser. To download the KeePassXC-Browser extension, perform the following steps: - -1. Click the link corresponding to your browser: - * https://chrome.google.com/webstore/detail/keepassxc-browser/oboonakemofpalcgghocfoadofidjkkk[Chrome, Chromium, Vivaldi, and Brave] - * https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser[Mozilla Firefox and Tor-Browser] - * https://microsoftedge.microsoft.com/addons/detail/keepassxcbrowser/pdffhmdngciaglkoonimfcmckehcpafo[Microsoft Edge] - -2. Click the button to install/add the extension to the browser. Accept any confirmation dialogs. - -TIP: For the most up-to-date troubleshooting advice on all platforms, please read our https://github.com/keepassxreboot/keepassxc-browser/wiki/Troubleshooting-guide[Troubleshooting Guide]. - -// tag::advanced[] -NOTE: When Microsoft Edge is installed as a managed application, system administrators are required to deploy a custom native messaging configuration. Instructions for this are found in the advanced section below. -// end::advanced[] - -=== Configure KeePassXC-Browser -To start using KeePassXC-Browser, you must configure it so that it can communicate with the KeePassXC application on your desktop. - -To configure KeePassXC-Browser, perform the following steps: - -1. Open the KeePassXC application on your desktop and navigate to Tools > Settings. - -2. Click the Browser Integration option on the left-hand side *(1)*. The following screen appears: -+ -.Browser Settings -image::browser_settings.png[] - -3. Click the _Enable browser integration_ checkbox *(2)*. Then select the browsers for which you have downloaded the KeePassXC-Browser extension *(3)* and click *OK*. - -4. Ensure your database is unlocked, then open (or restart) your browser. - -5. Click the KeePassXC-Browser extension icon *(A)* in your browser (see figure below). A pop-up window appears. -+ -.Connect Extension to KeePassXC -image::browser_extension_connect.png[,80%] - -6. Click the _Connect_ button *(B)* in the pop-up window to complete integrating the KeePassXC-Browser extension with your KeePassXC desktop application. - -7. You are now prompted to enter a unique name to identify the connection between this browser and your database. Enter a unique name in the field (e.g., firefox-laptop) and click the _Save and allow access_ button. -+ -.Extension Association Dialog -image::browser_extension_association.png[,80%] - -WARNING: If you reuse a connection name in a database, the previous browser connection will be overwritten and prevent access. - -=== Using the Browser Extension -The KeePassXC-Browser extension lets you automatically populate the entries from your KeePassXC database into the fields on websites you visit. To do so, perform the following steps: - -1. Open your KeePassXC desktop application and unlock your database. - -2. Open your web browser. The KeePassXC-Browser extension icon in your browser window will change based on its connection state. The figure below shows the different states. -+ -*(A)* KeePassXC is not running or is disconnected + -*(B)* Connected to KeePassXC, but database is locked + -*\(C)* Connected to KeePassXC and ready to use -+ -.Extension Icon States -image::browser_extension_icons.png[,70%] - -3. If the KeePassXC desktop application is not connected with the KeePassXC-Browser extension, click the extension icon in your web browser and click _Reload_ from the pop-up window as shown in the following screen. -+ -.Reload Extension Connection -image::browser_extension_reload.png[,80%] - -4. Open the URL for which you want to use with your database. If you have previously created an entry in your database then the KeePassXC-Browser Confirm Access dialog may appear: -+ -.Confirm Access Dialog -image::browser_confirm_access_dialog.png[,80%] - -5. Ensure the credentials you want to use are checked, then click *(A)* Remember _(optional)_, then click _Allow Selected_ *(B)*. - -6. In your website, the KeePassXC icon will appear in the username field of the login form *(A)*. Click the icon to populate the field with your stored credentials. If you have more than one credential for this website, a dropdown will appear to choose the one to use. -+ -.Fill Credentials -image::browser_fill_credentials.png[,80%] - -// tag::advanced[] -=== Browser statistics -You can see a cross-section of all browser-related settings applied to entries within a database through the Browser Statistics report. To access these, use the _Database_ -> _Database reports..._ menu option then click on _Browser Statistics_ on the left-hand menu. From here you can see all entries with URLs applied to them, explicitly allowed and denied URLs, and any entries with custom browser settings. - -.Browser statistics -image::browser_statistics.png[] - -=== Advanced Usage -You can configure unique browser integration behavior for each entry. This allows you to add multiple URLs to an entry, hide an entry from the browser integration, and more. To access these settings, open an entry for editing then click on _Browser Integration_ option in the left-hand menu *(1)*. - -After opening the settings you can add any number of additional URLs by clicking the _Add_ button *(2)* and typing the URL in the list to the left *(3)*. - -.Entry browser settings -image::browser_entry_settings.png[] - -To set options for all entries within a group, edit the group and go to the browser integration section *(1)*. Here you can explicitly disable access to all entries under a group hierarchy to the browser extension. You can set other useful options for groups of entries as well. - -.Group browser settings -image::browser_group_settings.png[] - -Database-wide operations are available in the database settings. To access these use the _Database_ -> _Database settings..._ menu option. Click on _Browser Integration_ on the left-hand menu. From here you can disconnect all browsers, convert legacy KeePass-HTTP settings, reset all entry-level settings, and refresh the database root group ID (useful when making copies of your database file). - -.Database browser settings -image::browser_database_settings.png[] - -Finally, advanced application-wide settings are available in the Browser Integration tab of the application settings. - -WARNING: We do not recommend changing any of these settings as they may break the browser integration plugin. - -.Advanced browser settings -image::browser_advanced_settings.png[] - -=== Advanced Setup -==== Managed Microsoft Edge on Windows -1. Deploy *org.keepassxc.keepassxc_browser_edge.json* to, for example, `C:\ProgramData\KeepassXC` on all managed platforms. -+ ----- -{ - "allowed_origins": [ - "chrome-extension://pdffhmdngciaglkoonimfcmckehcpafo/" - ], - "description": "KeePassXC integration with native messaging support", - "name": "org.keepassxc.keepassxc_browser", - "path": "C:\\Program Files\\KeePassXC\\keepassxc-proxy.exe", - "type": "stdio" -} ----- - -2. Configure GPO options (registry result): -+ ----- -Windows Registry Editor Version 5.00 -[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Edge\NativeMessagingHosts\org.keepassxc.keepassxc_browser] -@="C:\ProgramData\KeepassXC\org.keepassxc.keepassxc_browser_edge.json" - -[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] -"NativeMessagingUserLevelHosts"=dword:00000000 - -[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge\ExtensionInstallAllowlist] -"1"="pdffhmdngciaglkoonimfcmckehcpafo" - -[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge\NativeMessagingAllowlist] -"1"="org.keepassxc.keepassxc_browser" ----- -// end::advanced[] -// end::content[] += KeePassXC – Browser Plugin +include::.sharedheader[] +:imagesdir: ../images + +// tag::content[] +== Browser Integration +The KeePassXC-Browser extension is installed within your web browser so that you can automatically pull usernames and passwords from KeePassXC and populate them directly into website fields. It is a very useful and secure extension that enhances your productivity while using KeePassXC. With this extension, you do not need to manually copy the data from your KeePassXC database and paste it into the website fields. + +The KeePassXC-Browser extension is available on the following web browsers: + +* Google Chrome, Vivaldi, and Brave +* Mozilla Firefox and Tor-Browser +* Microsoft Edge +* Chromium + +NOTE: On Linux, Flatpak and Snap based browsers are generally not supported. Ubuntu's Firefox Snap is currently the only known exception. + +=== Install the Browser Extension +You can download the KeePassXC-Browser extension from your web browser. To download the KeePassXC-Browser extension, perform the following steps: + +1. Click the link corresponding to your browser: + * https://chromewebstore.google.com/detail/keepassxc-browser/oboonakemofpalcgghocfoadofidjkkk[Chrome, Chromium, Vivaldi, and Brave] + * https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser[Mozilla Firefox and Tor-Browser] + * https://microsoftedge.microsoft.com/addons/detail/keepassxcbrowser/pdffhmdngciaglkoonimfcmckehcpafo[Microsoft Edge] + +2. Click the button to install/add the extension to the browser. Accept any confirmation dialogs. + +TIP: For the most up-to-date troubleshooting advice on all platforms, please read our https://github.com/keepassxreboot/keepassxc-browser/wiki/Troubleshooting-guide[Troubleshooting Guide]. + +// tag::advanced[] +NOTE: When Microsoft Edge is installed as a managed application, system administrators are required to deploy a custom native messaging configuration. Instructions for this are found in the advanced section below. +// end::advanced[] + +=== Configure KeePassXC-Browser +To start using KeePassXC-Browser, you must configure it so that it can communicate with the KeePassXC application on your desktop. + +To configure KeePassXC-Browser, perform the following steps: + +1. Open the KeePassXC application on your desktop and navigate to Tools > Settings. + +2. Click the Browser Integration option on the left-hand side *(1)*. The following screen appears: ++ +.Browser Settings +image::browser_settings.png[] + +3. Click the _Enable browser integration_ checkbox *(2)*. Then select the browsers for which you have downloaded the KeePassXC-Browser extension *(3)* and click *OK*. + +4. Ensure your database is unlocked, then open (or restart) your browser. + +5. Click the KeePassXC-Browser extension icon *(A)* in your browser (see figure below). A pop-up window appears. ++ +.Connect Extension to KeePassXC +image::browser_extension_connect.png[,80%] + +6. Click the _Connect_ button *(B)* in the pop-up window to complete integrating the KeePassXC-Browser extension with your KeePassXC desktop application. + +7. You are now prompted to enter a unique name to identify the connection between this browser and your database. Enter a unique name in the field (e.g., firefox-laptop) and click the _Save and allow access_ button. ++ +.Extension Association Dialog +image::browser_extension_association.png[,80%] + +WARNING: If you reuse a connection name in a database, the previous browser connection will be overwritten and prevent access. + +=== Using the Browser Extension +The KeePassXC-Browser extension lets you automatically populate the entries from your KeePassXC database into the fields on websites you visit. To do so, perform the following steps: + +1. Open your KeePassXC desktop application and unlock your database. + +2. Open your web browser. The KeePassXC-Browser extension icon in your browser window will change based on its connection state. The figure below shows the different states. ++ +*(A)* KeePassXC is not running or is disconnected. + +*(B)* KeePassXC is running, but KeePassXC Browser Extension is not connected to the current database. + +*\(C)* Connected to KeePassXC, but database is locked. + +*(D)* Connected to KeePassXC and ready to use. If the icon is shown with a number, it indicates the number of credentials found for the current site. ++ +.Extension Icon States +image::browser_extension_icons.png[,70%] + +3. If the KeePassXC desktop application is not connected with the KeePassXC-Browser extension, click the extension icon in your web browser and click _Reload_ from the pop-up window as shown in the following screen. ++ +.Reload Extension Connection +image::browser_extension_reload.png[,80%] + +4. Open the URL for which you want to use with your database. If you have previously created an entry in your database then the KeePassXC-Browser Confirm Access dialog may appear: ++ +.Confirm Access Dialog +image::browser_confirm_access_dialog.png[,80%] + +5. Ensure the credentials you want to use are checked, then click *(A)* Remember _(optional)_, then click _Allow Selected_ *(B)*. + +6. In your website, the KeePassXC icon will appear in the username field of the login form *(A)*. Click the icon to populate the field with your stored credentials. If you have more than one credential for this website, a dropdown will appear to choose the one to use. ++ +.Fill Credentials +image::browser_fill_credentials.png[,80%] + +=== Generate Passwords +The KeePassXC-Browser Extension also lets you generate passwords directly in your browser. +This feature can be used for websites with existing credentials as well as for new websites. +You can then choose to update/add the credentials to your KeePassXC database directly from the Browser. + +1. Ensure your database is unlocked and configured to use the Browser extension as shown above. + +2. Right click on a password field and from the KeePassXC sub-menu choose _Show Password Generator_. The standard KeePassXC password generator will appear. + +3. Configure the password generation options and click _Apply Password_ when done. The generated password will be filled into the previously selected field. + +4. When you have successfully submitted the password on the website, a popup will appear asking you to either update an existing entry or add a new one. + +// tag::advanced[] +=== Browser statistics +You can see a cross-section of all browser-related settings applied to entries within a database through the Browser Statistics report. To access these, use the _Database_ -> _Database reports..._ menu option then click on _Browser Statistics_ on the left-hand menu. From here you can see all entries with URLs applied to them, explicitly allowed and denied URLs, and any entries with custom browser settings. + +.Browser statistics +image::browser_statistics.png[] + +=== Advanced Usage +You can configure unique browser integration behavior for each entry. This allows you to add multiple URLs to an entry, hide an entry from the browser integration, and more. To access these settings, open an entry for editing then click on _Browser Integration_ option in the left-hand menu *(1)*. + +After opening the settings you can add any number of additional URLs by clicking the _Add_ button *(2)* and typing the URL in the list to the left *(3)*. + +Additional URLs also supports wildcards (with KeePassXC 2.7.10 and later). You can use URLs like: +---- +https://*.example.com +https://example.com/*/path +https://sub.*.example.com/path/* +---- + +.Entry browser settings +image::browser_entry_settings.png[] + +To set options for all entries within a group, edit the group and go to the browser integration section *(1)*. Here you can explicitly disable access to all entries under a group hierarchy to the browser extension. You can set other useful options for groups of entries as well. + +.Group browser settings +image::browser_group_settings.png[] + +Database-wide operations are available in the database settings. To access these use the _Database_ -> _Database settings..._ menu option. Click on _Browser Integration_ on the left-hand menu. From here you can disconnect all browsers, convert legacy KeePass-HTTP settings, reset all entry-level settings, and refresh the database root group ID (useful when making copies of your database file). + +.Database browser settings +image::browser_database_settings.png[] + +Finally, advanced application-wide settings are available in the Browser Integration tab of the application settings. + +WARNING: We do not recommend changing any of these settings as they may break the browser integration plugin. + +.Advanced browser settings +image::browser_advanced_settings.png[] + +=== Advanced Setup +==== Custom Browser option +It is possible to enable support for a custom browser (e.g. LibreWolf, WaterFox, Arc, beta and nightly browsers, etc.) using this feature. +This feature is only available for Linux and macOS. + +.Custom browser configuration +image::browser_custom_browser_configuration.png[] + +The native messaging script file needed for the custom browser depends on the browser type. For Firefox based browsers like Librefox the _Browser type_ must be _Firefox_. For Arc, Opera, etc. the type must be set to _Chromium_. + +_Config location_ must have the exact path for the browser's _native-messaging-hosts_ folder. If you are unsure, refer to our https://github.com/keepassxreboot/keepassxc-browser/wiki/Troubleshooting-guide#1-after-enabling-browser-integration-and-support-for-your-browser[Troubleshooting Guide] for listing of the most common paths, and a few ways for finding a path when it's not known. + +When a Custom Browser has been successfully set, KeePassXC will automatically write the needed native messaging script file to the folder. + +If you wish to support multiple custom browsers, you can copy the native messaging script files manually to the _native-messaging-hosts_ folder from other browsers. + +==== Managed Microsoft Edge on Windows +1. Deploy *org.keepassxc.keepassxc_browser_edge.json* to, for example, `C:\ProgramData\KeePassXC\` on all managed platforms. ++ +---- +{ + "allowed_origins": [ + "chrome-extension://pdffhmdngciaglkoonimfcmckehcpafo/" + ], + "description": "KeePassXC integration with native messaging support", + "name": "org.keepassxc.keepassxc_browser", + "path": "C:\\Program Files\\KeePassXC\\keepassxc-proxy.exe", + "type": "stdio" +} +---- + +2. Configure GPO options (see https://learn.microsoft.com/en-us/deployedge/microsoft-edge-policies#native-messaging[Microsoft Edge Native Messaging Policies] for more information.): ++ +---- +Windows Registry Editor Version 5.00 +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Edge\NativeMessagingHosts\org.keepassxc.keepassxc_browser] +@="C:\ProgramData\KeepassXC\org.keepassxc.keepassxc_browser_edge.json" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] +"NativeMessagingUserLevelHosts"=dword:00000000 + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge\ExtensionInstallAllowlist] +"1"="pdffhmdngciaglkoonimfcmckehcpafo" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge\NativeMessagingAllowlist] +"1"="org.keepassxc.keepassxc_browser" +---- + +==== Managed Microsoft Edge on macOS +1. Deploy *org.keepassxc.keepassxc_browser_edge.json* to `/Library/Microsoft/Edge/NativeMessagingHosts`. + +2. You may need to configure Edge to allowlist the extension and native messaging host. See https://learn.microsoft.com/en-us/deployedge/microsoft-edge-policies#native-messaging[Microsoft Edge Native Messaging Policies] for more information. +// end::advanced[] +// end::content[] diff --git a/docs/topics/DatabaseOperations.adoc b/docs/topics/DatabaseOperations.adoc index af3ca6c32..b49d7378f 100644 --- a/docs/topics/DatabaseOperations.adoc +++ b/docs/topics/DatabaseOperations.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Database Operations += KeePassXC – Database Operations include::.sharedheader[] :imagesdir: ../images @@ -11,22 +11,22 @@ To create a database, perform the following steps: 1. Open your KeePassXC application. Click the create new database button *(A)*: + -.Create database - Welcome screen +.Create database – Welcome screen image::welcome_screen.png[] 2. The database creation wizard appears. Enter the desired database name and a short description (optional): + -.Create database - General information +.Create database – General information image::new_db_wizard_1.png[,80%] -3. Click Continue. The Encryption Settings screen appears, we don't recommend making any changes besides increasing or decreasing the decryption time using the slider. Setting the Decryption Time slider at a higher values means that the database will have higher level of protection but the time taken by the database to open will increase. +3. Click Continue. The Encryption Settings screen appears, we don't recommend making any changes besides increasing or decreasing the decryption time using the slider. Setting the Decryption Time slider at higher values means that the database will have higher level of protection but the time taken by the database to open will increase. + -.Create database - Encryption settings +.Create database – Encryption settings image::new_db_wizard_2.png[,80%] 4. Click the Continue button. The Database Credentials screen appears, enter your desired database password. We recommend using a long, randomized password. + -.Create database - Database credentials +.Create database – Database credentials image::new_db_wizard_3.png[,80%] + *(A)* Open the password generator + @@ -36,6 +36,13 @@ NOTE: Keep this password for your database safe. Either memorize it or note it d 5. Click Done. You will be prompted to select a location to save your database file. The database file is saved on to your computer with the default `.kdbx` extension. You can store your database wherever you wish, it is fully encrypted at all times preventing unauthorized access. +=== Storing Your Database +The database file that you create might contain highly sensitive data and must be stored in a very secure way. You must make sure that the database is always protected with a strong and long password. The database file that is protected with a strong and long password is secure and encrypted while stored on your computer or cloud storage service. + +Make sure that you or someone else does not accidentally delete the database file. Deletion of the database file will result in the total loss of all your information (including all your passwords!) and a lot of inconvenience to manually retrieve your logins for various web applications. Do not share the credentials to access your database file with anyone unless you absolutely trust them (spouse, child, etc.). + +TIP: You can safely store your database file in the cloud (OneDrive, Dropbox, Google Drive, Nextcloud, Syncthing, etc.). The database file is always fully encrypted; unencrypted data is never written to disk and is never accessible to your cloud storage provider. We recommend using a storage service that keeps automatic backups (version history) of your database file in the event of corruption or accidental deletion. + === Opening an Existing Database To open an existing database, perform the following steps: @@ -44,16 +51,18 @@ To open an existing database, perform the following steps: .Open an existing database image::open_database.png[] -2. Navigate to the location of the your database on your computer and open the database file. The database unlock screen will appear: +2. Navigate to the location of the database on your computer and open the database file. The database unlock screen will appear: + .Database unlock screen image::unlock_database.png[] 3. Enter the password for your database. -4. _(Optional)_ Browse for the Key File if you have chosen it as an additional authentication factor while creating the database. Refer to the KeePassXC User Guide for more information on setting a Key File as an additional authentication factor. +4. _(Optional)_ Click *I have a key file (A)* if you have one as an additional authentication factor for your database. -5. Click *OK*. The database opens and the following screen is displayed: +5. _(Optional)_ Plug in your configured YubiKey or OnlyKey to use it as an additional authentication factor. If you don't see it listed, press the refresh button *(B)*. + +6. Click *OK*. The database opens and the following screen is displayed: + .Unlocked database image::database_view.png[] @@ -61,7 +70,7 @@ image::database_view.png[] === Quick Unlock On Windows and macOS, subject to hardware availability, your credentials can be securely stored to enable subsequent unlocking of your database through biometric authentication. This is enabled by default on Windows using _Windows Hello_ and on macOS using _Touch ID or Apple Watch_ services. You can disable this feature in the Application Settings under the Security section. -NOTE: On Windows you will be prompted to authenticate to Windows Hello on the initial database unlock. This is required to access the hardware certificate store that encrypts your credentials. +NOTE: On Windows, you will be prompted to authenticate to Windows Hello after unlocking your database with full credentials. This is required to setup Quick Unlock. If you cancel this prompt then Quick Unlock will not be enabled and your database will continue to unlock. .Windows Hello example image::quick_unlock_windows_hello.png[] @@ -72,24 +81,13 @@ When your database is locked, you will see the following unlock dialog. Simply p image::quick_unlock.png[] // tag::advanced[] -=== Expired Entries -By default, KeePassXC will show entries that are expired or will be expiring within 3 days after unlocking the database. This feature allows you to change your passwords before they expire and be aware of passwords that are no longer valid. You can disable or change this feature in the Application Settings. +NOTE: By default, KeePassXC will show entries that are expired or will be expiring within 3 days after unlocking the database. This feature allows you to change your passwords before they expire and be aware of passwords that are no longer valid. You can disable or change this feature in the Application Settings. -=== Advanced Save Options -There are three ways that KeePassXC can handle database files. This behavior is set in the Application Settings under _File Operations_. - -1. _(Default)_ *Safe saves* create a temporary database file alongside the existing one and atomically move it into place when all writing is complete. This prevents database corruption in the case of application crashes, loss of power, or other interruptions. - -2. *Temporary file saves* create a database in the temporary files folder. This database is then moved into place overtop of the existing file. Although rare, interruptions in this move process could leave your database in an unknown state. This option is useful for overcoming poorly behaved cloud sync tools. - -3. *Direct-write saves* write directly to the existing database file. This is an unsafe operation since any interruption can leave your entire database inaccessible. We only recommend using this option when interfacing with Linux GVFS services (e.g. Google Cloud on Gnome) and other types of storage services that host a virtual drive system. - -In addition to these save options, KeePassXC can create a backup of your existing database file just prior to saving. This backup can be placed in a custom folder with a custom file naming scheme. - -image::save_options.png[] // end::advanced[] +=== Entry Handling +Entries in KeePassXC are the fundamental units where all your sensitive information is stored. Each entry can contain various fields such as usernames, passwords, URLs, attachments, and notes. You can create, edit, clone, and delete entries as needed. Additionally, KeePassXC supports advanced features like TOTP for two-factor authentication, custom attributes, and entry history to track changes over time. Proper management of entries ensures that your data is organized, secure, and easily accessible when needed. -=== Adding an Entry +==== Adding an Entry All the details such as usernames, passwords, URLs, attachments, notes, and so on are stored in database entries. You can create as many entries as you want in the database. To add an entry, perform the following step: @@ -112,7 +110,7 @@ image::edit_entry.png[] 5. Click *OK* to add the entry to your database. -=== Editing an Entry +==== Editing an Entry To edit the details in an entry, perform the following steps: 1. Select the entry you want to edit. @@ -123,7 +121,7 @@ To edit the details in an entry, perform the following steps: 4. Click *OK*. -=== Adding TOTP to an Entry +==== Adding TOTP to an Entry Timed One-Time Passwords (TOTP) are a popular choice for two-factor authentication methods. These codes are typically six digits long and change every 30 seconds. They are derived from a shared secret value and the current time. Once set up, KeePassXC can calculate TOTP codes like any authenticator app, such as Google Authenticator. The codes can be used with copy/paste, browser extension, and Auto-Type. TIP: Your computer time must be synchronized with an internet time source to generate valid TOTP codes, https://www.nist.gov/pml/time-and-frequency-division/time-distribution/internet-time-service-its[read more here]. @@ -145,7 +143,17 @@ After an entry is configured with TOTP, you will see a clock icon in that entry' .TOTP Usage image::totp_usage_examples.png[] -=== Deleting an Entry +==== Entry Icons +You can select an icon to be displayed with each entry for easy identification. KeePassXC comes with a set of default icons that you can use or you can use your own custom icons. If you defined a URL with an entry, you can also download the favorite icon for that particular website. + +NOTE: To delete a custom icon, go to <> where you can purge unused icons and delete one or more icons at a time. + +.Entry icon selection +image::edit_entry_icons.png[] + +TIP: Each KeePass application has different default icons. If you use a mobile app or KeePass2, be aware that the default icons may not be exactly correspond to the KeePassXC icons. + +==== Deleting an Entry To delete an entry, perform the following steps: 1. Select the entry you want to delete and press the `Delete` button on your keyboard. @@ -157,7 +165,7 @@ NOTE: You can disable the recycle bin within the Database Settings. If the recyc 3. To permanently delete the entry, navigate to the Recycle Bin, select the entry you want to delete and press the `Delete` button on your keyboard. // tag::advanced[] -=== Clone an Entry +==== Clone an Entry Creating a clone of an entry provides you a ready-to-use template for creating new entries with similar details of a master entry. To create a clone of an existing entry, perform the following steps: @@ -180,12 +188,73 @@ image::clone_entry_dialog.png[,50%] .References in a cloned entry image::clone_entry_references.png[] -4. You can create your own references using the xref:UserGuide.adoc#_entry_cross_reference[Entry Reference Syntax] +4. You can create your own references using the <> -== Searching the Database -KeePassXC provides an enhanced and granular search features the enables you to search for specific entries in the databases using the different modifiers, wild card characters, and logical operators. +==== Entry URL Handling +KeePassXC can handle URLs in various ways. Standard URLs will be opened in your default browser. URLs that start with schemas handled by your Operating System will launch the associated application, for example `ftp://` or `ssh://`. You can also use the following URL schemas to perform specific actions: -=== Modifiers and Fields +|=== +|Schema | Example | Description + +|cmd:// +|`cmd://ssh {USERNAME}@example.com -p 2222` +|Launches the specified command line executable with the specified arguments. The executable must be present on your PATH or an absolute path must be specified. + +|kdbx:// +|`kdbx://~/dbs/passwords.kdbx` +|Opens the specified database file. Set the entry's username to the keyfile path (if required) and password to the database password. The database will open in a new tab. + +|=== + +=== Advanced Entry Handling +KeePassXC offers several advanced options for managing your database entries. Additional Attributes allow you to store extra information required by some applications and websites. Attachments enable you to attach files to entries, stored as encrypted binaries, which can be previewed directly in the application (text and images). Icons can be selected or downloaded for easy identification of entries. The Properties section lets you view basic properties such as creation, modification, and last accessed times, and retrieve an entry's UUID for references. KeePassXC also maintains a history of changes to entries, allowing you to view, restore, or delete previous versions of an entry. + +==== Additional Attributes +A lot of applications and web sites now require providing additional information when you create accounts. The additional information is used to block hackers if any suspicious activity is detected. In addition, the additional information you provide can be used to reset passwords if you forget them. You can also store arbitrary information here that can be copied to the clipboard or Auto-Typed using the `{S:}` action code. + +To protect an attribute from being displayed by default, activate the _Protect_ checkbox *(A)*. To show the contents of the attribute while keeping it protected, press the _Reveal_ button *(B)*. + +.Additional attributes example +image::edit_entry_attributes.png[] + +==== Attachments +You can attach files to any entry in your database by pressing the _Add_ button *(A)*. These files are added to the database and stored as encrypted binaries. You can open, save, or delete attachments from this interface *(B)*. + +NOTE: When you try to open the attached file, KeePassXC extracts the attachment to a temporary file and opens it using the default application associated with the file type. After finishing viewing or editing the file, you can choose between importing or discarding the changes that you made to the temporary file. KeePassXC securely deletes the temporary file by overwriting it. + +.Attachments interface +image::edit_entry_attachments.png[] + +==== Foreground and Background Color +You can change the foreground *(A)* and/or background *(B)* color that this entry will use in the entry lists. Click the corresponding box to open the color picker dialog. + +.Color picker dialog +image::edit_entry_colors.png[] + +==== Properties +KeePassXC lets you view the basic properties such as date and time of creation, modification, and when last accessed. This is also where you can retrieve an entry's UUID for use in references. + +.Entry properties view +image::edit_entry_properties.png[] + +==== History +KeePassXC maintains a history of changes you make to your entries. Each time you change an entry, KeePassXC automatically creates a backup copy of the current, non-modified entry before saving the new values. You can view the changes you made previously, restore, and delete the history of changes you made. The age of the history item, the changes that were made, and the entry's size are shown in the table view. + + * Show: Display this history item for review, a read-only copy of the entry will be shown. + * Restore: Reinstate the selected history item as the active entry details. + * Delete: Delete the selected history item. + * Delete All: Delete the entire history for this entry. + +.Entry history view +image::edit_entry_history.png[] + +NOTE: Restoring an old history item will store the current entry settings as a new history item. + +// end::advanced[] +=== Search +KeePassXC provides a robust search that enables you to find specific entries in the databases using different modifiers, wild card characters, and logical operators. By default, search considers the following fields when matching your query: Title, Username, URL, Tags, and Notes. To include other fields and/or narrow your search to specific fields, you can use the search syntax described below. + +==== Modifiers and Fields [grid=rows, frame=none, width=70%] |=== |Modifier |Description @@ -196,19 +265,20 @@ KeePassXC provides an enhanced and granular search features the enables you to s |* |Term is handled as a regular expression |=== -The following fields can be searched along with their abbreviated name in parenthesis: +The following fields can be searched along with their abbreviated name in parentheses: * Title (t) * Username (u) * Password (p, pw) -* URL +* URL (url) * Notes (n) * Attribute names and values (attr) * Attachment (attach) * Group (g) +* Tags (tag) * Entry State (is:expired, is:weak) -=== Wild Card Characters and Logical Operators +==== Wild Card Characters and Logical Operators [grid=rows, frame=none, width=70%] |=== |Wild Card Character |Description @@ -218,7 +288,7 @@ The following fields can be searched along with their abbreviated name in parent |\| |Logical OR |=== -=== Sample Search Queries +==== Sample Search Queries The following tables lists a few samples search queries for your reference: |=== @@ -236,63 +306,39 @@ The following tables lists a few samples search queries for your reference: |`+attr:mystring123` |Searches all additional attributes for any name OR value equal to mystring123. +|`+tag:personal` +| Search exactly for the 'personal' tag and do not include tags such as 'my personal'. + |`is:expired is:weak` |Searches for all expired entries with weak passwords. |=== -== Advanced Entry Options -=== Additional Attributes -A lot of applications and web sites now require to provide additional information when you create accounts. The additional information is used to block hackers if any suspicious activity is detected. In addition, the additional information you provide can be used to reset passwords if you forget them. You can also store arbitrary information here that can be copied to the clipboard or Auto-Typed using the `{S:}` action code. +// tag::advanced[] +=== Merging Databases +KeePassXC allows you to merge entries from one database into another through the _Database_ -> _Merge From Database_ menu item. When merging, entries from the specified database will be imported into your currently open database. The merge process compares entries based on their unique identifiers (UUIDs) and modified timestamp. When an entry UUID matches, no matter which group it is in, the most recently modified version will be made the current and the previous version will be placed into the entry's history. Any new entries and/or groups will be added to the open database. This feature is useful for consolidating multiple databases or synchronizing databases from conflict files in a cloud storage system. -To protect an attribute from being displayed by default, activate the _Protect_ checkbox *(A)*. To show the contents of the attribute while keeping it protected, press the _Reveal_ button *(B)*. +NOTE: When you delete entries, a record of that deletion (the entry UUID) is stored to prevent that entry from reappearing from a merge operation. An existing entry that has the same UUID as a deleted item will be removed from the database without prompt. -.Additional attributes example -image::edit_entry_attributes.png[] +=== Advanced Save Options +There are three ways that KeePassXC can handle database files. This behavior is set in the Application Settings under _File Operations_. -=== Attachments -You can attach files to any entry in your database by pressing the _Add_ button *(A)*. These files are added to the database and stored as encrypted binaries. You can open, save, or delete attachments from this interface *(B)*. +1. _(Default)_ *Safe saves* create a temporary database file alongside the existing one and atomically move it into place when all writing is complete. This prevents database corruption in the case of application crashes, loss of power, or other interruptions. -NOTE: When you try to open the attached file, KeePassXC extracts the attachment to a temporary file and opens it using the default application associated with the file type. After finishing viewing or editing the file, you can choose between importing or discarding the changes that you made to the temporary file. KeePassXC securely deletes the temporary file by overwriting it. +2. *Temporary file saves* create a database in the temporary files folder. This database is then moved into place overtop of the existing file. Although rare, interruptions in this move process could leave your database in an unknown state. This option is useful for overcoming poorly behaved cloud sync tools. -.Attachments interface -image::edit_entry_attachments.png[] +3. *Direct-write saves* write directly to the existing database file. This is an unsafe operation since any interruption can leave your entire database inaccessible. We only recommend using this option when interfacing with Linux GVFS services (e.g. Google Cloud on Gnome) and other types of storage services that host a virtual drive system. -=== Foreground and Background Color -You can change the foreground *(A)* and/or background *(B)* color that this entry will use in the entry lists. Click the corresponding box to open the color picker dialog. +=== Database Backup Options +In addition to these save options, KeePassXC can create a backup of your existing database file just prior to saving. This backup will be saved at the path specified in the *Backup destination* field. This path can be absolute or relative. The latter will be resolved according to the databases path. It is possible to specify a custom naming scheme with placeholders. See <> for available placeholders and examples. -.Color picker dialog -image::edit_entry_colors.png[] +image::save_options.png[] -=== Icons -You can select an icon to be displayed with each entry for easy identification. KeePassXC comes with a set of default icons that you can use or you can use your own custom icons. If you defined a URL with an entry, you can also download the favorite icon for that particular website. +Alternatively, backups can be created on-demand using the _Database_ -> _Save Database Backup..._ menu feature. -NOTE: To delete a custom icon, go to xref:UserGuide.adoc#_database_maintenance[Database Maintenance] where you can purge unused icons and delete one or more icons at a time. +.Saving a database backup +image::save_database_backup.png[,40%] -.Entry icon selection -image::edit_entry_icons.png[] - -TIP: Each KeePass application has different default icons. If you use a mobile app or KeePass2, be aware that the default icons may not be exactly correspond to the KeePassXC icons. - -=== Properties -KeePassXC lets you view the basic properties such as date and time of creation, modification, and when last accessed. This is also where you can retrieve an entry's UUID for use in references. - -.Entry properties view -image::edit_entry_properties.png[] - -=== History -KeePassXC maintains a history of changes you make to your entries. Each time you change an entry, KeePassXC automatically creates a backup copy of the current, non-modified entry before saving the new values. You can view the changes you made previously, restore, and delete the history of changes you made. The age of the history item, the changes that were made, and the entry's size are shown in the table view. - - * Show: Display this history item for review, a read-only copy of the entry will be shown. - * Restore: Reinstate the selected history item as the active entry details. - * Delete: Delete the selected history item. - * Delete All: Delete the entire history for this entry. - -.Entry history view -image::edit_entry_history.png[] - -NOTE: Restoring an old history item will store the current entry settings as a new history item. - -== Automatic Database Opening +=== Automatic Database Opening You can setup one or more databases to open automatically when you unlock a single database. This is done by *(1)* defining a special group named `AutoOpen` with *(2)* entries that contain the file path and credentials for each database that should be opened. There is no limit to the number of databases that can be opened. TIP: Case matters with auto open, the group name must be exactly `AutoOpen` and it must be a child of the root group. @@ -329,10 +375,12 @@ image::database_settings.png[] * *Database name:* This is the default identifier for your database and is shown in the tab bar and title bar (when active). You can change this name as desired. * *Database description:* Provide some meaningful description for your database. * *Default username:* Provide a default username for all new entries that you create in this database. + * *Public Databse Metadata:* Here you can set a public (unencrypted) name, icon, and color for your database. This is used on the database unlock screen to help distinguish multiple databases from each other. * *Max history items:* This is the maximum number of history items that are stored for each entry. When you set this to 0, no history will be saved. Set this value to a low value to prevent the database from getting too large (we recommend no more than 10). * *Max. history size:* When the history of an entry gets above this size, it is truncated. For example, this happens when entries have large attachments. Set this value small to prevent the database from getting too large (we recommend 6 MiB). * *Use recycle bin:* Select this check-box if you want deleted entries to move to the recycle bin instead of being permanently removed. The recycle bin will be created if it does not already exist after your first deletion. To delete entries permanently, you must empty the recycle bin manually. - * *Enable compression:* KeePassXC databases can be compressed before being encrypted. Compression reduces the size of the database and does not have any appreciable affect on speed. It is recommended to always save databases with compression. + * *Enable compression:* KeePassXC databases can be compressed before being encrypted. Compression reduces the size of the database and does not have any appreciable affect on speed. It is recommended to always save databases with compression. + * *Autosave delay:* Customize the automatic database save operation by delaying it for a set time since the last change. By default, this option is disabled for fast saving, but can be useful for large databases to avoid delays after each change. 3. Click the Security button in the left-hand menu bar to change your database credentials and change encryption settings. + @@ -346,7 +394,7 @@ image::database_security_credentials.png[] + WARNING: Consider creating a backup of your YubiKey. Please refer to <> -5. Encryption settings allows you to change the average time it takes to encrypt and decrypt the database. The longer time that is chosen, the harder it will be to brute force attack your database. *We recommend a setting of one second.* +5. Encryption settings allow you to change the average time it takes to encrypt and decrypt the database. The longer time that is chosen, the harder it will be to brute force attack your database. *We recommend a setting of one second.* + .Database encryption image::database_security_encryption.png[] @@ -362,44 +410,29 @@ The following key derivation functions are supported: * AES-KDF (KDBX 4 and KDBX 3.1): This key derivation function is based on iterating AES. Users can change the number of iterations. The more iterations, the harder are dictionary and guessing attacks, but also database loading/saving takes more time (linearly). KDBX 3.1 only supports AES-KDF; any other key derivation function, like for instance Argon2, requires KDBX 4. - * Argon2 (KDBX 4 - recommended): KDBX 4, the Argon2 key derivation function can be used for transforming the composite master key (as protection against dictionary attacks). The main advantage of Argon2 over AES-KDF is that it provides a better resistance against GPU/ASIC attacks (due to being a memory-hard function). The number of iterations scales linearly with the required time. By increasing the memory parameter, GPU/ASIC attacks become harder and the required time increases. The parallelism parameter can be used to specify how many threads should be used. We recommend using Argon2id to prevent against timing-based attacks. Argon2d offers maximum compatibility with other KeePass-based apps, the default settings provide sufficient protection against any known attacks. + * Argon2 (KDBX 4 – recommended): KDBX 4, the Argon2 key derivation function can be used for transforming the composite master key (as protection against dictionary attacks). The main advantage of Argon2 over AES-KDF is that it provides a better resistance against GPU/ASIC attacks (due to being a memory-hard function). The number of iterations scales linearly with the required time. By increasing the memory parameter, GPU/ASIC attacks become harder and the required time increases. The parallelism parameter can be used to specify how many threads should be used. We recommend using Argon2id to prevent against timing-based attacks. Argon2d offers maximum compatibility with other KeePass-based apps, the default settings provide sufficient protection against any known attacks. -== Database Maintenance +=== Database Maintenance KeePassXC offers some maintenance features that can be applied to clean up your database. Navigate to _Database_ -> _Database settings_ then click on _Maintenance_ on the left hand panel. The following screen appears. On this screen you can delete multiple icons at once and purge any unused icons in your database. image::database_maintenance.png[] -=== Creating a YubiKey backup -It is advisable to have a backup replica YubiKey In case your main YubiKey gets damaged, lost, or stolen. The same HMAC key will need to be written to both keys. To do this you can either use the YubiKey Personalization Tool GUI or the ykpersonalize CLI tool. The steps for the CLI tool are shown: +== Remote database support +KeePassXC provides support for syncing database files that reside in a remote location. If you can download/upload the database file via a commandline tool (e.g. rsync, ssh, scp etc.) KeePassXC offers easy to use functionality to sync the remote database. -1. Create a 20 byte HMAC key: -+ -``` -dd status=none if=/dev/random bs=20 count=1 | xxd -p -c 40 -``` +=== Sync with remote database +Open the remote sync settings via _Database > Database Settings… > Remote_ to create commands to sync a local database or a temporary local copy of a remote database. -2. Write the HMAC key to slot 2 _(Set through the first switch. Out of the box the YubiKey OTP resides in slot 1)_: -+ -``` -ykpersonalize -2 -a -ochal-resp -ochal-hmac -ohmac-lt64 -oserial-api-visible -oallow-update -``` +Define a name for your sync command and specify a download *(A)* as well as an upload command *(B)*. The command and/or input need a `{TEMP_DATABASE}` placeholder specified where the remote database is temporarily stored. Do not forget to save the command settings with the save button *\(C)*. Remote settings are added as menu entries below the _Remote Sync…_ menu for quick access. -You will be asked to enter the HMAC key you created earlier, copy/paste they key output in the first step. Repeat step 2 for your second YubiKey using the same HMAC key from before. We recommend storing your HMAC key in a safe place (e.g., printed on paper) in case you need to recreate another key. +WARNING: If your download or upload command require a password prompt, the command will most likely not succeed. In case of an SSH connection (e.g. sftp), it is recommended to use <> so that no password prompt is needed. + +.Remote sync settings +image::sync_remote_settings.png[] + +Select the remote sync command from the _Database > Remote Sync…_ menu to start the syncing process and a progress bar will show up in the lower right corner. + +WARNING: In case the remote database is changed by another user/process after the downloading command finishes and before uploading again, those changes will be overwritten. Syncing is not an atomic operation. -== Command Line Tool -KeePassXC comes with the command line tool *keepassxc-cli* to access, view, and manipulate your database directly from a terminal window. The tool is documented through a separate man page, which can be shown using `man keepassxc-cli`, or through the on-demand help using `keepassxc-cli [command] -h`. An online version of the man page is https://github.com/keepassxreboot/keepassxc/blob/master/docs/man/keepassxc-cli.1.adoc[available on GitHub]. // end::advanced[] - -== Storing a Database File -The database file that you create might contain highly sensitive data and must be stored in a very secure way. You must make sure that the database is always protected with a strong and long password. The database file that is protected with a strong and long password is secure and encrypted while stored on your computer or cloud storage service. - -Make sure that you or someone else does not accidentally delete the database file. Deletion of the database file will result in the total loss of all your information (including all your passwords!) and a lot of inconvenience to manually retrieve your logins for various web applications. Do not share the credentials to access your database file with anyone unless you absolutely trust them (spouse, child, etc.). - -TIP: You can safely store your database file in the cloud (e.g., OneDrive, Dropbox, Google Drive, Nextcloud, Syncthing, etc). The database file is always fully encrypted; unencrypted data is never written to disk and is never accessible to your cloud storage provider. We recommend using a storage service that keeps automatic backups (version history) of your database file in the event of corruption or accidental deletion. - -== Backing up a Database File -It is a good practice to create copies of your database file and store the copies of your database on a different computer, smart phone, or cloud storage space such a Google Drive or Microsoft OneDrive. Backups can be created automatically by selecting the _Backup database file before saving_ option in the application settings. Additionally, you can create a backup on-demand using the _Database_ -> _Save Database Backup..._ menu feature. - -.Saving a database backup -image::save_database_backup.png[,40%] // end::content[] diff --git a/docs/topics/Disclaimers.adoc b/docs/topics/Disclaimers.adoc index a8e9be57c..419778ace 100644 --- a/docs/topics/Disclaimers.adoc +++ b/docs/topics/Disclaimers.adoc @@ -21,12 +21,3 @@ Special, incidental or consequential damages arising out of the use or inability Limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of The program to operate with any other programs), even if such holder or other party has been advised of the possibility Of such damages. - -== Contact Us - -We are committed to continually improve KeePassXC through customer experience and your feedback is important to us. -Please send us your feedback or comments to team@keepassxc.org. -To report issues, visit: https://github.com/keepassxreboot/keepassxc. - -Thank You, + -Team KeePassXC diff --git a/docs/topics/DownloadInstall.adoc b/docs/topics/DownloadInstall.adoc index e96c885de..ed24e3c79 100644 --- a/docs/topics/DownloadInstall.adoc +++ b/docs/topics/DownloadInstall.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Download and Install += KeePassXC – Download and Install include::.sharedheader[] :imagesdir: ../images @@ -8,9 +8,9 @@ KeePassXC is available for download for the following operating systems and plat * Microsoft Windows ** Portable and MSI Installer (64-bit and 32-bit) -* Linux - Official Cross-Distribution Packages +* Linux – Official Cross-Distribution Packages ** AppImage and Snap Package -* Linux - Distribution-Specific Packages +* Linux – Distribution-Specific Packages ** Ubuntu, Debian, Arch Linux, Gentoo, Fedora, CentOS, and OpenSUSE * macOS ** DMG Installer, Homebrew Cask @@ -38,16 +38,16 @@ To install KeePassXC on Microsoft Windows, perform the following steps: .Install wizard image::install_wizard_1.png[,80%] -2. Click Next and follow the simple instructions on the KeepPassXC Setup Wizard to complete the installation. You will have the option to choose your install location, add a desktop shortcut, and launch on startup. +2. Click Next and follow the simple instructions on the KeePassXC Setup Wizard to complete the installation. You will have the option to choose your install location, add a desktop shortcut, and launch on startup. + .Install wizard (cont) image::install_wizard_2.png[,80%] The following options can be set when running the MSI in an unattended installation: -* *LAUNCHAPPONEXIT* - Launch KeePassXC after install (default ON) -* *AUTOSTARTPROGRAM* - KeePassXC will auto-start on login (default ON) -* *INSTALLDESKTOPSHORTCUT* - A desktop icon will be installed (default OFF) +* *LAUNCHAPPONEXIT* – Launch KeePassXC after install (default ON) +* *AUTOSTARTPROGRAM* – KeePassXC will auto-start on login (default ON) +* *INSTALLDESKTOPSHORTCUT* – A desktop icon will be installed (default OFF) Example: `msiexec.exe /q /i KeePassXC-Y.Y.Y-WinZZ.msi AUTOSTARTPROGRAM=0` @@ -59,7 +59,7 @@ image::linux_store.png[] The Snap and Flatpak options are sandboxed applications (more secure). The Native option is installed with the operating system files. Read more about the limitations of these options here: https://keepassxc.org/docs/#faq-appsnap-yubikey[KeePassXC Snap FAQ] -NOTE: KeePassXC stores a configuration file in `~/.cache` to remember window position, recent files, and other local settings. If you mount this folder to a tmpdisk you will lose settings after reboot. +NOTE: KeePassXC stores a configuration file in `~/.local/state` to remember window position, recent files, and other local settings. If you mount this folder to a tmpdisk you will lose settings after reboot. === macOS To install the KeePassXC app on macOS, double click on the downloaded DMG file and use the click and drag option as shown: @@ -69,4 +69,4 @@ image::macos_install.png[,80%] // end::content[] // tag::advanced[] -// end::advanced[] \ No newline at end of file +// end::advanced[] diff --git a/docs/topics/ImportExport.adoc b/docs/topics/ImportExport.adoc index f56135a1c..4dcce0a25 100644 --- a/docs/topics/ImportExport.adoc +++ b/docs/topics/ImportExport.adoc @@ -1,61 +1,103 @@ -= KeePassXC - Import/Export Operations += KeePassXC – Import/Export Operations include::.sharedheader[] :imagesdir: ../images // tag::content[] -== Importing External Databases -KeePassXC allows your to import external databases from the following options: +== Importing Databases +KeePassXC allows you to import external databases from the following options: -* Comma-Separated Values (CSV) file -* 1Password OPVault -* KeePass 1 Database +* Comma Separated Values (.csv) +* 1Password Export (.1pux) +* 1Password Vault (.opvault) +* Bitwarden (.json) +* Proton Pass (.json) +* KeePass 1 Database (.kdb) +* Remote database (.kdbx) + +To import any of these files, start KeePassXC and either click the `Import File` button on the welcome screen or use the menu Database > Import... to launch the Import Wizard. + +.Import Wizard +image::import_wizard.png[] + +For each of the import options, you will be prompted to select the file to import and then provide credentials to unlock the file, if necessary. You can then choose to import the file into a new database or into an existing database that is already unlocked in KeePassXC. === Importing CSV File -If you have been saving your URLs, usernames, passwords, and so on in a CSV file, you can migrate all that information from the CSV file to KeePassXC and start using KeePassXC to maintain your data. +WARNING: A CSV file is unencrypted and you should securely delete this file after successfully importing it into KeePassXC. -To open the CSV file, perform the following steps: +1. Follow the steps above and click `Continue`. The CSV import wizard will appear. -1. Open KeePassXC. - -2. Click Import from CSV button on the welcome screen or use the menu Database > Import > CSV File. - -3. Navigate to the location of the your CSV file on your computer and open the file. The new database wizard will appear. Follow the steps of creating a new database in Chapter 1. - -4. After saving your new database file, the CSV import wizard will appear. On this dialog you can choose the various options for properly importing the data. You may need to select the _First line has field names_ checkbox before starting. Analyze the output in the preview at the bottom to determine the correct import settings. +2. On this dialog you can choose the various options for properly importing the data. Analyze the output in the preview at the bottom to determine the correct import settings. You may need to re-map the column associations to match the data in your CSV file. + .CSV Import Wizard image::csv_import.png[] -Your CSV file gets imported to KeePassXC and the data is converted to the KeePassXC format for further usage and maintenance. The new database file is saved on to your computer with the default `.kdbx` extension. +3. Click `Done` to complete the import. If you chose to create a new database, the New Database dialog will appear. Otherwise your entries will be nested under the group you chose for the existing database. + +=== Importing from Other Applications +KeePassXC allows you to import databases from various applications including 1Password (1PUX and OPVault), Bitwarden, and Proton Pass. Each import option involves selecting the file, providing necessary credentials (if required), and choosing to import into a new or existing database. Note that CSV, 1Password Export, Bitwarden, and Proton Pass files are unencrypted and should be securely deleted after import. + +==== 1Password Export +WARNING: A 1Password Export file is unencrypted and you should securely delete this file after successfully importing it into KeePassXC. + +1. Open the Import Wizard as shown above. Select the 1Password Export option. + +2. Click `Continue` to unlock and preview the import. Click `Done` to complete the import. + +==== 1Password OPVault +NOTE: You must have 1Password version 7 or 8 to export your data to an OPVault. If you are using a newer version of 1Password, you should use the 1Password Export (1PUX) format instead. -=== Importing 1Password OPVault Save your 1Password Vault locally to create an OPVault directory. Please see 1Password instructions on how to do this. Once an OPVault is created, perform the following steps: -1. Open KeePassXC. +1. Open the Import Wizard as shown above. Select the 1Password Vault option. -2. Use the menu Database > Import > 1Password Vault. Select the OPVault to import. +2. Enter the password for your vault and click `Continue` to unlock and preview the import. Click `Done` to complete the import. -3. Enter the password for your OPVault to unlock and import. +==== Bitwarden +WARNING: A Bitwarden Export file may be unencrypted and you should securely delete this file after successfully importing it into KeePassXC. + +1. Open the Import Wizard as shown above. Select the Bitwarden option. + +2. Optionally provide a password to decrypt the Bitwarden export file. You should only need to do this if you have chosen the encrypted json export option within Bitwarden. + +3. Click `Continue` to unlock and preview the import. Click `Done` to complete the import. + +==== Proton Pass +WARNING: A Proton Pass Export file is unencrypted and you should securely delete this file after successfully importing it into KeePassXC. + +1. Open the Import Wizard as shown above. Select the Proton Pass option. + +2. Click `Continue` to preview the import. Click `Done` to complete the import. === Importing KeePass 1 Database -KeePass 1 database is an older format of the database created using legacy version of KeePass. KeePassXC lets your import this older format of the database and you can seamlessly start using this database in your new KeePassXC application. +KeePass 1 database is an older format of the database created using a legacy version of KeePass. KeePassXC lets your import this older format of the database and you can seamlessly start using this database in your new KeePassXC application. To import a KeePass 1 database file in KeePassXC, perform the following steps: -1. Open KeePassXC. +1. Open the Import Wizard as shown above. Select the KeePass1 Database option. -2. Click Import from KeePass 1 button on the welcome screen or use the menu Database > Import > KeePass 1 Database. +2. Enter the password for your database and optionally provide a key file if it was configured for your KeePass1 database. -3. Navigate to the location of the your legacy KeePass 1 database file (`.kdb`) on your computer and open the file. You are prompted for the password and the Key file for your `.kdb` file. +3. Click `Continue` to unlock and preview the import. Click `Done` to complete the import. -4. Enter the password for your old `.kdb` file and click *OK*. You are prompted for provide a name for the new database format that KeePassXC recognizes. +=== Importing Remote Database +Database files that are stored in a remote location can be imported or opened with KeePassXC if you provide a command to download the file from the remote location. -5. Provide a name for the new database format, select a folder on your computer to save the file, and click Save. +To import (or temporarily open) a remote database file in KeePassXC, perform the following steps: -6. The data from the `.kdb` file gets imported and converted to the new format, which is compatible with KeePassXC. You can now start using the new database file (`.kdbx`) in KeePassXC. +1. Open the Import Wizard as shown above. Select the Remote Database option. + +2. Enter a command to download the remote database. If necessary, enter input that needs to be passed to the command. The command and/or input need a `{TEMP_DATABASE}` placeholder specified where the remote database is temporarily stored. + +3. Enter the password for your database and optionally provide a key file. + +4. Click `Continue` to unlock and preview the import. Click `Done` to complete the import. + +Opening without importing a remote database is possible by selecting Temporary Database in the Import Into section of the wizard. == Exporting Databases -KeePassXC supports multiple ways to export your database for transfer to another program or to print out and archive. To export your database into the KDB XML format, you must use the KeePassXC CLI: `keepassxc-cli export `. +KeePassXC supports multiple ways to export your database for transfer to another program or to print out and archive. + +WARNING: These exports do not contain all the information in your database due to various limitations in the export format. For example, the CSV export does not support attachments, advanced attributes, Auto-Type settings, or custom icons. The XML export does not support attachments. The HTML export is mainly for printing and does not support attachments and some custom data fields. WARNING: Exporting your database will result in all of your passwords and sensitive information being stored in an unencrypted format. We do not recommend saving your exported database for long periods of time as that can cause a compromise of sensitive information. diff --git a/docs/topics/KeeShare.adoc b/docs/topics/KeeShare.adoc index 306389f88..882e7f017 100644 --- a/docs/topics/KeeShare.adoc +++ b/docs/topics/KeeShare.adoc @@ -1,4 +1,4 @@ -= KeePassXC - KeeShare += KeePassXC – KeeShare include::.sharedheader[] :imagesdir: ../images @@ -16,18 +16,18 @@ To use sharing, you need to enable it for the application. .KeeShare Application Settings image::keeshare_application_settings.png[] -=== Sharing Credentials -If you checked _Allow export_ in the Sharing settings you can now share a group of passwords. Sharing is always is defined on a particular group. If you enable sharing on a group, every entry under this group, and its children, are shared. If you enable sharing on the root node, **every password** inside your database gets shared! +=== Setup a Shared Group +If you checked _Allow export_ in the Sharing settings you can now share a group of passwords. Sharing is always defined on a particular group. If you enable sharing on a group, every entry under this group, and its children, are shared. If you enable sharing on the root node, **every password** inside your database gets shared! NOTE: KeeShare does not synchronize group structure after the initial share is created. At this time, KeeShare operates at the entry level; shared entries moved outside of a shared group are still synchronized. 1. Open the edit sheet on a group you want to share. 2. Select the KeeShare category on the left toolbar. 3. Choose a sharing type: - a. *Inactive* - Disable sharing this group - b. *Import* - Read-only import of entries, merge changes - c. *Export* - Write-only export of entries, no merge - d. *Synchronize* - Read/Write entries from the share, merge changes + a. *Inactive* – Disable sharing this group + b. *Import* – Read-only import of entries, merge changes + c. *Export* – Write-only export of entries, no merge + d. *Synchronize* – Read/Write entries from the share, merge changes 4. Choose a path to store the shared credentials to. 5. The password to use for this share container. @@ -45,7 +45,7 @@ A shared group shows a cloud icon badge over the group icon *(A)* and a banner i image::keeshare_shared_group.png[] === Technical Details and Limitations of Sharing -Sharing relies on the combination of file exports and imports as well as the synchronization mechanism provided by KeePassXC. Since the merge algorithm uses the history of entries to prevent data loss, this history must be enabled and have a sufficient size. Furthermore, the merge algorithm is location independent, therefore it does not matter if entries are moved outside of an import group. These entries will be updated none the less. Moving entries outside of export groups will prevent a further export of the entry, but it will not ensure that the already shared data will be removed from any client. +Sharing relies on the combination of file exports and imports as well as the synchronization mechanism provided by KeePassXC. Since the merge algorithm uses the history of entries to prevent data loss, this history must be enabled and have a sufficient size. Furthermore, the merge algorithm is location independent, therefore it does not matter if entries are moved outside of an import group. These entries will be updated nonetheless. Moving entries outside of export groups will prevent a further export of the entry, but it will not ensure that the already shared data will be removed from any client. KeeShare uses a custom certification mechanism to ensure that the source of the data is the expected one. This ensures that the data was exported by the signer but it is not possible to detect if someone replaced the data with an older version from a valid signer. To prevent this, the container could be placed at a location which is only writeable for valid signers. // end::content[] diff --git a/docs/topics/KeyboardShortcuts.adoc b/docs/topics/KeyboardShortcuts.adoc index 93baa303d..0a3850060 100644 --- a/docs/topics/KeyboardShortcuts.adoc +++ b/docs/topics/KeyboardShortcuts.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Keyboard Shortcuts += KeePassXC – Keyboard Shortcuts include::.sharedheader[] :imagesdir: ../images @@ -9,26 +9,35 @@ NOTE: On macOS please substitute `Ctrl` with `Cmd` (aka `⌘`). |=== |Action | Keyboard Shortcut +|Settings | Ctrl + , |Open Database | Ctrl + O |Save Database | Ctrl + S |Save Database As | Ctrl + Shift + S |New Database | Ctrl + Shift + N |Close Database | Ctrl + W ; Ctrl + F4 -|Lock All Databases | Ctrl + L +|Lock Current Database | Ctrl + L +|Lock All Databases | Ctrl + Shift + L +|Database Settings | Ctrl + Shift + , +|Database Reports | Ctrl + Shift + R |Quit | Ctrl + Q |New Entry | Ctrl + N |Edit Entry | Enter ; Ctrl + E |Delete Entry | Delete -|Clone Entry | Ctrl + K +|Clone Entry | Ctrl + D |Copy Username | Ctrl + B |Copy Password | Ctrl + C |Copy URL | Ctrl + U |Open URL | Ctrl + Shift + U |Copy TOTP | Ctrl + T +|Copy Password and TOTP | Ctrl + Y |Show TOTP | Ctrl + Shift + T |Trigger AutoType | Ctrl + Shift + V |Add key to SSH Agent | Ctrl + H |Remove key from SSH Agent | Ctrl + Shift + H +|Move entry up (if unsorted) | Ctrl + Alt + Up +|Move entry down (if unsorted) | Ctrl + Alt + Down +|Sort Groups A-Z | Ctrl + Down +|Sort Groups Z-A | Ctrl + Up |Minimize Window | Ctrl + M |Hide Window | Ctrl + Shift + M |Select Next Database Tab | Ctrl + Tab ; Ctrl + PageDn diff --git a/docs/topics/Passkeys.adoc b/docs/topics/Passkeys.adoc new file mode 100644 index 000000000..bfb472024 --- /dev/null +++ b/docs/topics/Passkeys.adoc @@ -0,0 +1,104 @@ += KeePassXC – Passkeys +include::.sharedheader[] +:imagesdir: ../images + +// tag::content[] +== Passkeys + +Passkeys are a secure way for replacing passwords that is supported by all major browser vendors and an increasing number of websites. For more information on what passkeys are and how they work, please go to the FIDO Alliance's documentation: https://fidoalliance.org/passkeys/ + +=== Browser Passkey Support + +KeePassXC supports passkeys directly through the Browser Integration service. Passkeys are only supported with the use of the KeePassXC Browser Extension and a properly connected database. To enable passkey support on the extension, you must check the _Enable Passkeys_ option in the extension settings page. + +.Enable Passkey Support in the KeePassXC Browser Extension +image::passkeys_enable_from_extension.png[,75%] + +Optionally, you can disable falling back to the built-in passkey support from your browser and operating system. If left enabled, the extension will show the default passkey dialogs if KeePassXC cannot handle the request or the request is canceled. + +=== Create a New Passkey + +Creating a new passkey and authenticating with it is a simple process. This workflow will be demonstrated using GitHub as an example site. Please note that GitHub allows two use cases for passkeys, one for 2FA only and the other for replacement of username and password entirely. We will be configuring the latter use case in this example. + +After navigating to GitHub's _Settings_ -> _Password and authentication_, there is a separate section shown for passkeys. + +.GitHub's Passkey Registration +image::passkeys_github_1.png[] + +After clicking the _Add a passkey_ button, the user is redirected to another page showing the actual configuration option. + +.Configure Passwordless Authentication +image::passkeys_github_2.png[,50%] + +Clicking the _Add passkey_ button now shows the following popup dialog for the user, asking confirmation for creating a new passkey. + +.Passkey Registration Confirmation Dialog +image::passkeys_register_dialog.png[,30%] + +After the passkey has been registered, a new entry is created to the database under _KeePassXC-Browser Passwords_ with _(passkey)_ added to the entry title. The entry holds additional attributes that are used for authenticating the passkey. + +After registration, GitHub will ask a name for the passkey. This is only relevant for the server. + +.GitHub's Passkey Nickname +image::passkeys_github_3.png[,50%] + +Now the passkey should be shown on the GitHub's passkey section. + +.Registered Passkeys on GitHub +image::passkeys_github_4.png[] + +=== Login With a Passkey + +The passkey created in the previous section can now be used to login to GitHub. Instead of logging in with normal credentials, choose _Sign in with a passkey_ at the bottom of GitHub's login page. + +.GitHub's login page with a Passkey option +image::passkeys_github_5.png[,50%] + +After clicking the button, KeePassXC-Browser detects the passkeys authentication and KeePassXC shows the following dialog for confirmation. + +.Passkey authentication confirmation dialog +image::passkeys_authentication_dialog.png[,50%] + +After confirmation user is now authenticated and logged into GitHub. + +// tag::advanced[] +=== Advanced Usage + +==== Multiple Passkeys for a Site + +Multiple passkeys can be created for a single site. When registering a new passkey with a different username, KeePassXC shows an option to register a new passkey or update the previous one. Updating a passkey will override the existing entry, so this option should be only used when actually needed. + +.Passkey authentication confirmation dialog +image::passkeys_update_dialog.png[,50%] + +==== Exporting Passkeys + +All passkeys in a database can be viewed and accessed from the _Database_ -> _Passkeys..._ menu item. The page shows both _Import_ and _Export_ buttons for passkeys. + +.Passkeys Overview +image::passkeys_all_passkeys.png[] + +After selecting one or more entries, the following dialog is shown. One or multiple passkeys can be selected for export from the previously selected list of entries. + +.Passkeys Export Dialog +image::passkeys_export_dialog.png[,65%] + +Exported passkeys are stored in JSON format using the `.passkey` file extension. The file includes all relevant information for importing a passkey to another database or saving a backup. + +WARNING: The exported passkey file is unencrypted and should be securely stored. + +==== Importing Passkeys + +An exported passkey can be imported directly to a database or to an entry. To import directly, use the _Database_ -> _Import Passkey_ menu item. +When right-clicking an entry, a separate menu item for _Import Passkey_ is shown. This is useful if user wants to import a previously created passkey to an existing entry. + +.Import Passkey to an Entry +image::passkeys_import_passkey_to_entry.png[,50%] + +After selecting a passkey file to import, a separate dialog is shown where you can select which database, group, and entry to target. By default, the group is set to _Imported Passkeys_. The default action is to create a new entry that contains the imported passkey. + +.Passkey import dialog +image::passkeys_import_dialog.png[,65%] + +// end::advanced[] +// end::content[] diff --git a/docs/topics/PasswordGenerator.adoc b/docs/topics/PasswordGenerator.adoc index 2d8310b83..4a6665265 100644 --- a/docs/topics/PasswordGenerator.adoc +++ b/docs/topics/PasswordGenerator.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Password Generator += KeePassXC – Password Generator include::.sharedheader[] :imagesdir: ../images @@ -21,7 +21,6 @@ image::password_generator.png[] 4. Select the character-sets that you want to include in your password. 5. Use the regenerate button (Ctrl + R) to make a new password using the chosen options. 6. Use the clipboard button (Ctrl + C) to copy the generated password to the clipboard. -// tag::advanced[] 7. Click the Advanced button to specify additional conditions for your desired password. + .Advanced Password Generator Options @@ -42,5 +41,4 @@ Word Count slider. 5. _(Optional)_ You can also load your own custom word lists. Click the plus sign button to the right of the wordlist selection dialog to choose a custom word list. You can download alternative lists from the https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases[EFF's Website] or from https://github.com/redacted/XKCD-password-generator#additional-languages[GitHub]. 6. Click the Regenerate button (Ctrl + R) to generate a new random passphrase. 7. Click the Clipboard button (Ctrl + C) to copy the passphrase to the clipboard. -// end::advanced[] // end::content[] diff --git a/docs/topics/Reference.adoc b/docs/topics/Reference.adoc index c123befc4..f81f09d70 100644 --- a/docs/topics/Reference.adoc +++ b/docs/topics/Reference.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Reference += KeePassXC – Reference include::.sharedheader[] :imagesdir: ../images @@ -18,6 +18,8 @@ This section contains full details on advanced features available in KeePassXC. |{NOTES} |Notes |{TOTP} |Current TOTP value (if configured) |{S:<ATTRIBUTE_NAME>} |Value for the given attribute (case sensitive) +|{T-CONV:/<PLACEHOLDER>/<METHOD>/} |Text conversion for resolved placeholder (eg, {USERNAME}) using the following methods: UPPER, LOWER, BASE64, HEX, URI, URI-DEC +|{T-REPLACE-RX:/<PLACEHOLDER>/<REGEX>/<REPLACE>/} |Use a regular expression to find and replace data from a resolved placeholder (eg, {USERNAME}). Refer to match groups using $1, $2, etc. |{URL:RMVSCM} |URL without scheme (e.g., https) |{URL:WITHOUTSCHEME} |URL without scheme |{URL:SCM} |URL Scheme @@ -48,18 +50,18 @@ This section contains full details on advanced features available in KeePassXC. |=== === Entry Cross-Reference -A reference to another entry's field is possible using the short-hand syntax: +A reference to another entry's field is possible using the shorthand syntax: `{REF:<FIELD>@<SEARCH_IN>:<SEARCH_TEXT>}` `<FIELD>` and `<SEARCH_IN>` can be one of following: -* T - Title -* U - Username -* P - Password -* A - URL -* N - Notes -* I - UUID (found on entry properties page) -* O - Custom Attribute _(SEARCH_IN only)_ +* T – Title +* U – Username +* P – Password +* A – URL +* N – Notes +* I – UUID (found on entry properties page) +* O – Custom Attribute _(SEARCH_IN only)_ Examples: + `{REF:U@I:033054D445C648C59092CC1D661B1B71}` + @@ -100,4 +102,45 @@ Convert resolved placeholder (e.g., {USERNAME}, {PASSWORD}, etc.) using the foll `{T-REPLACE-RX:/<PLACEHOLDER>/<SEARCH>/<REPLACE>/}` + Use regular expressions to find and replace data from a resolved placeholder. Refer to match groups using $1, $2, etc. + +=== Backup Path Placeholders +[grid=rows, frame=none, width=90%] +|=== +|Database Backup Path Placeholder |Description + +|{DB_FILENAME} |The database's filename without extension +|{TIME} |The current time formatted as dd_MM_yyyy_hh-mm-ss. +|{TIME:} |The current time formatted according to the format string specified by . See https://doc.qt.io/qt-5/qtime.html#toString for a list of available placeholders. +|=== + +[grid=rows, frame=none, width=90%] +|=== +|Backup path example |Location of backup(s) + +|`{DB_FILENAME}-{TIME}.bak.kdbx` |`C:\Users\MyUsername\MyDatabase-02_01_2022_03-04-05.bak.kdbx` + +`C:\Users\MyUsername\MyDatabase-05_01_2022_12-10-00.bak.kdbx` +|`backups\\{DB_FILENAME}.bak.kdbx` |`C:\Users\MyUsername\backups\MyDatabase.bak.kdbx` +|`C:\Backups\{TIME:dd.MM.yyyy}\\{DB_FILENAME}.kdbx` |`C:\Backups\02.01.2022\MyDatabase.kdbx` + +`C:\Backups\05.01.2022\MyDatabase.kdbx` +|`C:\Backups\\{DB_FILENAME}\{TIME:MM-dd-yyyy}.kdbx` |`C:\Backups\MyDatabase\01-02-2022.kdbx` + +`C:\Backups\MyDatabase\01-05-2022.kdbx` +|=== + +=== Creating a YubiKey backup +It is advisable to have a backup replica YubiKey In case your main YubiKey gets damaged, lost, or stolen. The same HMAC key will need to be written to both keys. To do this you can either use the YubiKey Personalization Tool GUI or the ykpersonalize CLI tool. The steps for the CLI tool are shown: + +1. Create a 20 byte HMAC key: ++ +``` +dd status=none if=/dev/random bs=20 count=1 | xxd -p -c 40 +``` + +2. Write the HMAC key to slot 2 _(Set through the first switch. Out of the box the YubiKey OTP resides in slot 1)_: ++ +``` +ykpersonalize -2 -a -ochal-resp -ochal-hmac -ohmac-lt64 -oserial-api-visible -oallow-update +``` + +You will be asked to enter the HMAC key you created earlier, copy/paste they key output in the first step. Repeat step 2 for your second YubiKey using the same HMAC key from before. We recommend storing your HMAC key in a safe place (e.g., printed on paper) in case you need to recreate another key. + // end::content[] diff --git a/docs/topics/SSHAgent.adoc b/docs/topics/SSHAgent.adoc index 8c6a086fd..8b385c64c 100644 --- a/docs/topics/SSHAgent.adoc +++ b/docs/topics/SSHAgent.adoc @@ -1,14 +1,14 @@ -= KeePassXC - SSH Agent += KeePassXC – SSH Agent integration include::.sharedheader[] :imagesdir: ../images // tag::content[] -== SSH Agent +== SSH Agent Integration SSH (Secure Shell) is a widely used remote secure shell protocol and is considered an industry standard for secure remote access to UNIX-like systems including Linux, BSDs, macOS and more recently even Windows received native support. SSH supports multiple types of authentication and the most widely used ones are either interactive keyboard input with a password or a public-key cryptography pair of keys. KeePassXC SSH Agent integration is built to manage SSH keys in a secure manner by either storing them completely within your KeePassXC database or by having only the decryption key of a key file that is stored elsewhere. SSH Agent integration _does not_ provide an agent itself but works as a client for any agent implementation that is OpenSSH compatible. -=== OpenSSH agent on Linux +=== OpenSSH Agent on Linux If you are using a modern desktop Linux distribution it is very likely the OpenSSH agent is already configured and running when you have logged in to a graphical desktop session. This should be true for distributions like Debian, Ubuntu (including Kubuntu, Xubuntu and Lubuntu), Linux Mint, Fedora, ElementaryOS and Manjaro. @@ -32,10 +32,10 @@ WARNING: _GNOME Keyring_ prior to release 3.27.92 had its own custom implementat It does not support any constraints you may want to configure for an added key. If you are running a modern distribution the custom agent has been removed and replaced with the stock OpenSSH agent which is feature complete. -=== OpenSSH agent on macOS +=== OpenSSH Agent on macOS Apple has made OpenSSH an integrated part of macOS with automatic agent startup when it is first used. No further configuration is needed. -=== OpenSSH agent and Pageant on Windows +=== OpenSSH Agent and Pageant on Windows The SSH Agent integration on Windows supports both _PuTTY Pageant_ and _OpenSSH for Windows 10_. Since Pageant is currently still the most widely used implementation and is easily installable on any version of Windows, it is the default on KeePassXC. However, Microsoft includes a native OpenSSH client implementation with Windows 10 since autumn 2018 that can be used instead. If you would like to self-manage your OpenSSH version you can use the builds offered via their official https://github.com/powershell/Win32-OpenSSH[GitHub repository]. @@ -61,7 +61,7 @@ Alternatively, you can use a _Windows PowerShell_ running as _Administrator_ to KeePassXC and other compatible tools can now use the Windows OpenSSH agent. To use it with KeePassXC, update the settings explained in <>. -=== Setting up SSH Agent integration +=== Setup SSH Agent Integration By default the SSH Agent integration plugin is disabled. To enable integration, follow the steps below to access the settings: @@ -78,10 +78,10 @@ On Windows, you have the option to select _Pageant_ and/or _OpenSSH for Windows_ If the value of _SSH_AUTH_SOCK_ is empty it means the agent is not properly configured and KeePassXC will be unable to connect to it unless you provide a static override path to the socket. -=== Generating a key to use with KeePassXC +=== Generating an SSH Key KeePassXC only supports keys in the _OpenSSH_ format. On Windows, _PuTTYgen_ saves keys in its own format by default and you will need to convert them to OpenSSH format before being used. In this guide we are going to generate a standard RSA key in the default size. -==== Generating a key on Linux or macOS with _ssh-keygen_ +==== Generating a key on Linux or macOS Open a terminal window and type the following command to generate a key: $ ssh-keygen -o -f keepassxc -C johndoe@example @@ -116,13 +116,13 @@ With KeePassXC you only need the first file listed. ==== Generating a key on Windows On Windows you can generate key pairs with _PuTTYgen_ and with _ssh-keygen_, depending on whether you installed PuTTY and your Windows version. -===== Using _PuTTYgen_ +===== Using PuTTYgen Please read the manual on how to use _PuTTYgen_ for details on generate a key: https://the.earth.li/~sgtatham/putty/0.74/htmldoc/Chapter8.html#pubkey-puttygen. Once generated, you must save the key in the new OpenSSH format, see image below. .Generating a key with _PuTTYgen_ image::sshagent_puttygen.png[,70%] -===== Using _ssh-keygen_ +===== Using ssh-keygen Open _Command Prompt_ or _Windows PowerShell_ and type the following command to generate a key: PS C:\Users\user> ssh-keygen.exe -o -f keepassxc -C johndoe@example @@ -159,7 +159,7 @@ Now we can see two files were generated: With KeePassXC you only need the first file listed. -=== Configuring an entry to use SSH Agent +=== Adding SSH Key to an Entry The last step is to setup an entry to contain the SSH Agent settings and key file you generated. 1. Create a new entry, or open an existing entry in edit mode. @@ -173,7 +173,7 @@ The last step is to setup an entry to contain the SSH Agent settings and key fil .SSH Agent Entry Settings Page image::sshagent_entry_settings.png[] -If you chose to not auto-load the key on database unlock, you can manually make the key available by using the context menu from the entry list. +If you chose to not autoload the key on database unlock, you can manually make the key available by using the context menu from the entry list. .SSH Agent Load Key from Context Menu image::sshagent_context_menu.png[] diff --git a/docs/topics/UserInterface.adoc b/docs/topics/UserInterface.adoc index c61dc85a8..66a06fafb 100644 --- a/docs/topics/UserInterface.adoc +++ b/docs/topics/UserInterface.adoc @@ -1,22 +1,22 @@ -= KeePassXC - Database Operations += KeePassXC – Database Operations include::.sharedheader[] :imagesdir: ../images // tag::content[] == Interface Overview === Application Layout -The KeePassXC interface is designed for simplicity and easy access to your information. The main database view is split into three main partitions detailed below. You can open multiple databases at the same time, they will appear in tabs. +The KeePassXC interface is designed for simplicity and easy access to your information. The main database view is split into four main partitions detailed below. You can open multiple databases at the same time, they will appear in tabs. .Main database interface image::main_interface.png[] -*(A) Groups* - Organize your entries into discrete groups to bring order to all of your sensitive information. Groups can be nested under each other to create a hierarchy. Settings from parent groups get applied to their children. You can hide this panel on the View menu. +*(A) Groups* – Organize your entries into discrete groups to bring order to all of your sensitive information. Groups can be nested under each other to create a hierarchy. Settings from parent groups get applied to their children. You can hide this panel on the View menu. -*(B) Tags* - Dynamic groups of entries that can be quickly displayed with one click. Any number of custom tags can be added when editing an entry. This panel also includes useful pre-defined searches, such as finding expired and weak passwords. +*(B) Searches and Tags* – Dynamic groups of entries that can be quickly displayed with one click. Any number of custom tags can be added when editing an entry. This panel also includes useful pre-defined and custom saved searches, such as finding expired and weak passwords. -*\(C) Entries* - Entries contain all the information you want to store for a website or application you are storing in KeePassXC. This view shows all the entries in the selected group. Each column can be resized, reordered, and shown or hidden based on your preference. Right-click the header row to see all available options. +*\(C) Entries* – Entries contain all the information for a website or application you are storing in KeePassXC. This view shows all the entries in the selected group. Each column can be resized, reordered, and shown or hidden based on your preference. Right-click the header row to see all available options. -*(D) Preview* - Shows a preview of the selected group or entry. You can temporarily hide this preview using the close button on the right hand side or completely disabled in the application settings. +*(D) Preview* – Shows a preview of the selected group or entry. You can interact with most information stored in an entry from here without opening the entry for editing. You can temporarily hide this preview using the down-arrow button on the right hand side or completely disable it from the View menu. TIP: You can enable double-click copying of entry username and password in the Application Security Settings. This is turned off by default starting with version 2.7.0. @@ -26,16 +26,20 @@ The toolbar provides a quick way to perform common tasks with your database. Som .Toolbar overview image::toolbar.png[] -*(A) Database* - Open Database, Save Database, Lock Database + -*(B) Entries* - Create Entry, Edit Entry, Delete Selected Entries + -*\(C) Entry Data* - Copy Username, Copy Password, Copy URL, Perform Auto-Type + -*(D) Tools* - Password Generator, Application Settings + +*(A) Database* – Open Database, Save Database, Lock Database + +*(B) Entries* – Create Entry, Edit Entry, Delete Selected Entries + +*\(C) Entry Data* – Copy Username, Copy Password, Copy URL, Perform Auto-Type + +*(D) Tools* – Database Settings, Reports, Password Generator, Application Settings + *(E) Search* -=== Application Settings -Users can configure KeePassXC to their personal tastes with a wide variety of general and security settings that apply to the whole application. These settings are accessible from _Tools_ -> _Settings_ or the cog wheel icon from the toolbar. Settings include: startup options, file management, entry management, user interface, language, security timeouts, and convenience. +=== Screenshot Security +By default, KeePassXC prevents recordings and screenshots of the application window on Windows and macOS. This prevents inadvertent spillage of information during meetings and disallows other applications to capture the window contents. If you would like to enable screen capture temporarily, navigate to _View_ menu and select _Allow Screen Capture_. Alternatively, you can start the application with the `--allow-screencapture` command line flag. -==== Setting the Theme + +=== View Options +You can customize the appearance of KeePassXC to your liking. The following options are available in the _View_ menu: + +==== Themes KeePassXC ships with light and dark themes specifically designed to meet accessibility standards. In most cases, the appropriate theme for your system will be determined automatically, but you can always set a specific theme by using the _View_ menu. When a new theme is selected you will be prompted to restart KeePassXC to apply the theme immediately. .Setting the theme @@ -47,8 +51,8 @@ For users with smaller screens or those who desire seeing more entries at once, .Compact mode comparison image::compact_mode_comparison.png[] -=== Screenshot Security -By default, KeePassXC prevents recordings and screenshots of the application window on Windows and macOS. This prevents inadvertent spillage of information during meetings and disallows other applications to capture the window contents. If you would like to enable screen capture, you must start the application with the `--allow-screencapture` command line flag. +=== Application Settings +Users can configure KeePassXC to their personal tastes with a wide variety of general and security settings that apply to the whole application. These settings are accessible from _Tools_ -> _Settings_ or the cog wheel icon from the toolbar. Settings include: startup options, file management, entry management, user interface, language, security controls, and integration settings (Auto-Type, Browser, etc). === Keyboard Shortcuts include::KeyboardShortcuts.adoc[tag=content, leveloffset=+1] @@ -59,7 +63,7 @@ You can use the following command line options to tailor the application to your ---- Usage: keepassxc.exe [options] [filename(s)] -KeePassXC - cross-platform password manager +KeePassXC – cross-platform password manager Options: -?, -h, --help Displays help on commandline options. @@ -77,6 +81,7 @@ Arguments: filename(s) filenames of the password databases to open (*.kdbx) ---- +=== Environment Variables Additionally, the following environment variables may be useful when running the application: [grid=rows, frame=none, width=75%] @@ -85,10 +90,23 @@ Additionally, the following environment variables may be useful when running the |KPXC_CONFIG | Override default path to roaming configuration file |KPXC_CONFIG_LOCAL | Override default path to local configuration file -|SSH_AUTH_SOCKET | Path of the unix file socket that the agent uses for communication with other processes (SSH Agent) +|KPXC_INITIAL_DIR | Override initial location picking for databases +|SSH_AUTH_SOCK | Path of the unix file socket that the agent uses for communication with other processes (SSH Agent) |QT_SCALE_FACTOR [numeric] | Defines a global scale factor for the whole application, including point-sized fonts. |QT_SCREEN_SCALE_FACTORS [list] | Specifies scale factors for each screen. See https://doc.qt.io/qt-5/highdpi.html#high-dpi-support-in-qt |QT_SCALE_FACTOR_ROUNDING_POLICY | Control device pixel ratio rounding to the nearest integer. See https://doc.qt.io/qt-5/highdpi.html#high-dpi-support-in-qt |=== + +=== Installer Options +The following options can be set when running the Windows Installer MSI in an unattended installation: + +* *LAUNCHAPPONEXIT* – Launch KeePassXC after install (default ON) +* *AUTOSTARTPROGRAM* – KeePassXC will auto-start on login (default ON) +* *INSTALLDESKTOPSHORTCUT* – A desktop icon will be installed (default OFF) + +Example: `msiexec.exe /q /i KeePassXC-Y.Y.Y-WinZZ.msi AUTOSTARTPROGRAM=0` + +== Command Line Tool +KeePassXC comes with the command line tool *keepassxc-cli* to access, view, and manipulate your database directly from a terminal window. The tool is documented through a separate man page, which can be shown using `man keepassxc-cli`, or through the on-demand help using `keepassxc-cli [command] -h`. An online version of the man page is https://github.com/keepassxreboot/keepassxc/blob/latest/docs/man/keepassxc-cli.1.adoc[available on GitHub]. // end::advanced[] // end::content[] diff --git a/docs/topics/Welcome.adoc b/docs/topics/Welcome.adoc index 4eb168e6c..65de19a5f 100644 --- a/docs/topics/Welcome.adoc +++ b/docs/topics/Welcome.adoc @@ -1,4 +1,4 @@ -= KeePassXC - Welcome += KeePassXC – Welcome include::.sharedheader[] :imagesdir: ../images @@ -9,7 +9,7 @@ KeePassXC is a modern, secure, and open-source password manager that stores and KeePassXC is for people with extremely high demands of secure personal data management. It saves many different types of information, such as usernames, passwords, URLs, attachments, and notes in an offline, encrypted file that can be stored in any location, including private and public cloud solutions. For easy identification and management, user-defined titles and icons can be specified for entries. In addition, entries are sorted in customizable groups. An integrated search function allows you to use advanced patterns to easily find any entry in your database. A customizable, fast, and easy-to-use password generator utility allows you to create passwords with any combination of characters or easy to remember passphrases. === Overview -You can store an unlimited number of passwords and information in a KeePassXC database. Every piece of information you store in your database is encrypted at all times within the `kdbx` file. When you are accessing your database from within KeePassXC, your information in decrypted and stored in your computer's memory. KeePassXC places controls over the access to this data so other applications cannot read it (unless they have administrative rights). The interface is designed to let you quickly access your passwords, search for the right entry, perform Auto-Type or copy/paste operations, make and save changes, and then get out of your way. +You can store an unlimited number of passwords and information in a KeePassXC database. Every piece of information you store in your database is encrypted at all times within the `kdbx` file. When you are accessing your database from within KeePassXC, your information is decrypted and stored in your computer's memory. KeePassXC places controls over the access to this data so other applications cannot read it (unless they have administrative rights). The interface is designed to let you quickly access your passwords, search for the right entry, perform Auto-Type or copy/paste operations, make and save changes, and then get out of your way. KeePassXC ships with light and dark themes specifically designed to meet accessibility standards. In most cases, the appropriate theme for your system will be determined automatically, but you can always set a specific theme in the application settings. @@ -26,12 +26,13 @@ KeePassXC has numerous features for novice and power users alike. This guide wil ** Password generator ** Auto-Type passwords into applications ** Browser integration with Google Chrome, Mozilla Firefox, Microsoft Edge, Chromium, Vivaldi, Brave, and Tor-Browser + ** Support for passkeys using the browser integration ** Entry icon download - ** Import databases from CSV, 1Password, and KeePass1 formats + ** Import databases from CSV, 1Password, Bitwarden, Proton Pass, and KeePass1 formats * Advanced Features ** Database reports (password health, HIBP, and statistics) - ** Database export to CSV and HTML formats + ** Database export to CSV, XML, and HTML formats ** TOTP storage and generation ** Field references between entries ** File attachments and custom attributes @@ -43,6 +44,18 @@ KeePassXC has numerous features for novice and power users alike. This guide wil ** SSH Agent ** FreeDesktop.org Secret Service (replace Gnome keyring, etc.) ** Additional encryption choices: Twofish and ChaCha20 + +== Contact Us + +We are committed to continually improve KeePassXC through customer experience and your feedback is important to us. +Please report any bugs you encounter at our https://github.com/keepassxreboot/keepassxc/issues[GitHub issue tracker]. + +We are also https://matrix.to/#/#keepassxc-community:mozilla.org[available on Matrix] for real-time feedback and +discussions. See our https://keepassxc.org/team/#contact[contact page] for further options. + +Thank You, + +Team KeePassXC + // end::content[] // tag::advanced[] -// end::advanced[] \ No newline at end of file +// end::advanced[] diff --git a/release-tool b/release-tool index 6d8310d7b..43f058000 100755 --- a/release-tool +++ b/release-tool @@ -51,7 +51,7 @@ BUILD_PLUGINS="all" INSTALL_PREFIX="/usr/local" ORIG_BRANCH="" ORIG_CWD="$(pwd)" -MACOSX_DEPLOYMENT_TARGET=10.13 +MACOSX_DEPLOYMENT_TARGET=10.15 TIMESTAMP_SERVER="http://timestamp.sectigo.com" # ----------------------------------------------------------------------- @@ -883,7 +883,6 @@ build() { fi fi - OUTPUT_DIR="$(realpath "$OUTPUT_DIR")" if ! ${build_snapshot} && [ -d "$OUTPUT_DIR" ]; then exitError "Output dir '${OUTPUT_DIR}' already exists." fi @@ -892,6 +891,7 @@ build() { if ! mkdir -p "$OUTPUT_DIR"; then exitError "Failed to create output directory!" fi + OUTPUT_DIR="$(realpath "$OUTPUT_DIR")" if ${build_source_tarball}; then logInfo "Creating source tarball..." @@ -930,6 +930,13 @@ build() { # linuxdeploy requires /usr as install prefix INSTALL_PREFIX="/usr" fi + if [ -n "$OS_MACOS" ]; then + type brew &> /dev/null 2>&1 + if [ $? -eq 0 ]; then + INSTALL_PREFIX=$(brew --prefix) + fi + fi + # Do not build tests cases CMAKE_OPTIONS="${CMAKE_OPTIONS} -DWITH_TESTS=OFF" @@ -1404,8 +1411,8 @@ i18n() { if ! command -v $LUPDATE > /dev/null; then LUPDATE=lupdate fi - $LUPDATE -no-ui-lines -disable-heuristic similartext -locations none -no-obsolete src \ - -ts share/translations/keepassxc_en.ts $@ + $LUPDATE -no-ui-lines -disable-heuristic similartext -locations none -extensions c,cpp,h,js,mm,qrc,ui \ + -no-obsolete src -ts share/translations/keepassxc_en.ts $@ return 0 fi @@ -1438,7 +1445,7 @@ i18n() { elif [ "$cmd" == "tx-pull" ]; then logInfo "Pulling updated translations from Transifex..." - tx pull -af --minimum-perc=45 --parallel -r "$resource" $@ + tx pull -af --minimum-perc=60 -r "$resource" $@ fi } diff --git a/release-tool.ps1 b/release-tool.ps1 index aebdd4883..c9db231f6 100644 --- a/release-tool.ps1 +++ b/release-tool.ps1 @@ -10,7 +10,7 @@ Commands: .NOTES The following are descriptions of certain parameters: - -Vcpkg Specify VCPKG toolchain file (example: C:\vcpkg\scripts\buildsystems\vcpkg.cmake) + -Vcpkg Specify VCPKG toolchain location (example: C:\vcpkg) -Tag Release tag to check out (defaults to version number) -Snapshot Build current HEAD without checkout out Tag -CMakeGenerator Override the default CMake generator @@ -19,7 +19,7 @@ The following are descriptions of certain parameters: -Compiler Compiler to use (example: g++, clang, msbuild) -MakeOptions Options to pass to the make program -SignBuild Perform platform specific App Signing before packaging - -SignKey Specify the App Signing Key/Identity + -SignCert Specify the App Signing Certificate -TimeStamp Explicitly set the timestamp server to use for appsign -SourceBranch Source branch to merge from (default: 'release/$Version') -TargetBranch Target branch to merge to (default: master) @@ -65,7 +65,7 @@ param( [string] $MakeOptions, [Parameter(ParameterSetName = "build")] [Parameter(ParameterSetName = "sign")] - [string] $SignKey, + [X509Certificate] $SignCert, [Parameter(ParameterSetName = "build")] [Parameter(ParameterSetName = "sign")] [string] $Timestamp = "http://timestamp.sectigo.com", @@ -103,10 +103,7 @@ function Test-RequiredPrograms { Get-Command tx | Out-Null Get-Command lupdate | Out-Null } - if ($Sign -or $SignBuild) { - if ($SignKey.Length) { - Get-Command signtool | Out-Null - } + if ($Sign) { Get-Command gpg | Out-Null } } @@ -141,7 +138,8 @@ function Test-WorkingTreeClean { function Invoke-VSToolchain([String] $Toolchain, [String] $Path, [String] $Arch) { # Find Visual Studio installations - $vs = Get-CimInstance MSFT_VSInstance + $vs = Get-CimInstance MSFT_VSInstance -Namespace root/cimv2/vs + if ($vs.count -eq 0) { $err = "No Visual Studio installations found, download one from https://visualstudio.com/downloads." $err = "$err`nIf Visual Studio is installed, you may need to repair the install then restart." @@ -197,20 +195,43 @@ function Invoke-Cmd([string] $command, [string[]] $options = @(), [switch] $mask Write-Host #insert newline after command output } -function Invoke-SignFiles([string[]] $files, [string] $key, [string] $time) { - if (!(Test-Path -Path "$key" -PathType leaf)) { - throw "Appsign key file was not found! ($key)" +function Find-SignCert() { + $certs = Get-ChildItem Cert:\CurrentUser\My -codesign + if ($certs.Count -eq 0) { + throw "No code signing certificate found in User certificate store" + } elseif ($certs.Count -gt 1) { + # Ask the user which to use + $i = 0 + foreach ($_ in $certs) { + $i = $i + 1 + $i.ToString() + ") $($_.Thumbprint) - $($_.NotAfter)" | Write-Host + } + $i = Read-Host -Prompt "Which certificate do you want to use?" + $i = [Convert]::ToInt32($i, 10) - 1 + if ($i -lt 0 -or $i -ge $certs.count) { + throw "Invalid selection made" + } + return $certs[$i] + } else { + Write-Host "Found signing certificate: $($certs[0].Subject) ($($certs[0].Thumbprint))" -ForegroundColor Cyan + Write-Host + return $certs[0] } +} + +function Invoke-SignFiles([string[]] $files, [X509Certificate] $cert, [string] $time) { if ($files.Length -eq 0) { return } - Write-Host "Signing files using $key" -ForegroundColor Cyan - $KeyPassword = Read-Host "Key password: " -MaskInput - + Write-Host "Signing files using $($cert.Subject) ($($cert.Thumbprint))" -ForegroundColor Cyan + foreach ($_ in $files) { - Write-Host "Signing file '$_' using Microsoft signtool..." - Invoke-Cmd "signtool" "sign -f `"$key`" -p `"$KeyPassword`" -d `"KeePassXC`" -td sha256 -fd sha256 -tr `"$time`" `"$_`"" -maskargs + $sig = Get-AuthenticodeSignature -FilePath "$_" -ErrorAction SilentlyContinue + if ($sig.Status -ne "Valid") { + Write-Host "Signing file '$_'" + $tmp = Set-AuthenticodeSignature -Certificate $cert -FilePath "$_" -TimestampServer "$Timestamp" -HashAlgorithm "SHA256" + } } } @@ -284,14 +305,14 @@ if ($Merge) { # Update translation files Write-Host "Updating source translation file..." Invoke-Cmd "lupdate" "-no-ui-lines -disable-heuristic similartext -locations none", ` - "-no-obsolete ./src -ts share/translations/keepassxc_en.ts" + "-extensions c,cpp,h,js,mm,qrc,ui -no-obsolete ./src -ts share/translations/keepassxc_en.ts" Write-Host "Pulling updated translations from Transifex..." - Invoke-Cmd "tx" "pull -af --minimum-perc=60 --parallel -r keepassxc.share-translations-keepassxc-en-ts--develop" + Invoke-Cmd "tx" "pull -af --minimum-perc=60 -r keepassxc.share-translations-keepassxc-en-ts--develop" # Only commit if there are changes - & git diff-index --quiet HEAD -- - if ($LASTEXITCODE) { + $changes = & git status --porcelain + if ($changes.Length -gt 0) { Write-Host "Committing translation updates..." Invoke-Cmd "git" "add -A ./share/translations/" -quiet Invoke-Cmd "git" "commit -m `"Update translations`"" -quiet @@ -313,7 +334,10 @@ if ($Merge) { } Write-Host "Creating tag for '$Version'..." - Invoke-Cmd "git" "tag -a `"$Version`" -m `"Release $Version`" -m `"$Changelog`" -s" -quiet + $tmp = New-TemporaryFile + "Release $Version`n$Changelog" | Out-File $tmp.FullName + Invoke-Cmd "git" "tag -a `"$Version`" -F `"$tmp`" -s" -quiet + Remove-Item $tmp.FullName -Force Write-Host "Moving latest tag..." Invoke-Cmd "git" "tag -f -a `"latest`" -m `"Latest stable release`" -s" -quiet @@ -322,18 +346,22 @@ if ($Merge) { Write-Host "Please merge the release branch back into the develop branch now and then push your changes." Write-Host "Don't forget to also push the tags using 'git push --tags'." } elseif ($Build) { - $Vcpkg = (Resolve-Path $Vcpkg).Path + $Vcpkg = (Resolve-Path "$Vcpkg/scripts/buildsystems/vcpkg.cmake").Path # Find Visual Studio and establish build environment Invoke-VSToolchain $VSToolChain $SourceDir -Arch "amd64" + if ($SignBuild -and !$SignCert) { + $SignCert = Find-SignCert + } + Test-RequiredPrograms if ($Snapshot) { $Tag = "HEAD" $SourceBranch = & git rev-parse --abbrev-ref HEAD $ReleaseName = "$Version-snapshot" - $CMakeOptions = "$CMakeOptions -DKEEPASSXC_BUILD_TYPE=Snapshot -DOVERRIDE_VERSION=`"$ReleaseName`"" + $CMakeOptions = "-DKEEPASSXC_BUILD_TYPE=Snapshot -DOVERRIDE_VERSION=`"$ReleaseName`" $CMakeOptions" Write-Host "Using current branch '$SourceBranch' to build." -ForegroundColor Cyan } else { Test-WorkingTreeClean @@ -344,9 +372,9 @@ if ($Merge) { } if ($Version -match "-beta\d*$") { - $CMakeOptions = "$CMakeOptions -DKEEPASSXC_BUILD_TYPE=PreRelease" + $CMakeOptions = "-DKEEPASSXC_BUILD_TYPE=PreRelease $CMakeOptions" } else { - $CMakeOptions = "$CMakeOptions -DKEEPASSXC_BUILD_TYPE=Release" + $CMakeOptions = "-DKEEPASSXC_BUILD_TYPE=Release $CMakeOptions" } # Setup Tag if not defined then checkout tag @@ -368,18 +396,24 @@ if ($Merge) { Set-Location "$BuildDir" # Setup CMake options - $CMakeOptions = "$CMakeOptions -DWITH_XC_ALL=ON -DWITH_TESTS=OFF -DCMAKE_BUILD_TYPE=Release" - $CMakeOptions = "$CMakeOptions -DCMAKE_TOOLCHAIN_FILE:FILEPATH=`"$Vcpkg`" -DX_VCPKG_APPLOCAL_DEPS_INSTALL=ON" + $CMakeOptions = "-DWITH_XC_ALL=ON -DWITH_TESTS=OFF -DCMAKE_BUILD_TYPE=Release $CMakeOptions" + $CMakeOptions = "-DCMAKE_TOOLCHAIN_FILE:FILEPATH=`"$Vcpkg`" -DX_VCPKG_APPLOCAL_DEPS_INSTALL=ON $CMakeOptions" Write-Host "Configuring build..." -ForegroundColor Cyan - Invoke-Cmd "cmake" "$CMakeOptions -G `"$CMakeGenerator`" `"$SourceDir`"" + Invoke-Cmd "cmake" "-G `"$CMakeGenerator`" $CMakeOptions `"$SourceDir`"" Write-Host "Compiling sources..." -ForegroundColor Cyan Invoke-Cmd "cmake" "--build . --config Release -- $MakeOptions" if ($SignBuild) { - $files = Get-ChildItem "$BuildDir\src" -Include "*keepassxc*.exe", "*keepassxc*.dll" -Recurse -File | ForEach-Object { $_.FullName } - Invoke-SignFiles $files $SignKey $Timestamp + $VcpkgDir = $BuildDir + "\vcpkg_installed\" + if (Test-Path $VcpkgDir) { + $files = Get-ChildItem $VcpkgDir -Filter "*.dll" -Recurse -File | + Where-Object {$_.FullName -notlike "$VcpkgDir*debug\*" -and $_.FullName -notlike "$VcpkgDir*tools\*"} | + ForEach-Object {$_.FullName} + } + $files += Get-ChildItem "$BuildDir\src" -Include "*keepassxc*.exe", "*keepassxc*.dll" -Recurse -File | ForEach-Object { $_.FullName } + Invoke-SignFiles $files $SignCert $Timestamp } Write-Host "Create deployment packages..." -ForegroundColor Cyan @@ -392,7 +426,7 @@ if ($Merge) { # Sign MSI files using AppSign key $files = Get-ChildItem $OutDir -Include "*.msi" -Name - Invoke-SignFiles $files $SignKey $Timestamp + Invoke-SignFiles $files $SignCert $Timestamp # Sign all output files using the GPG key then hash them $files = Get-ChildItem $OutDir -Include "*.msi", "*.zip" -Name @@ -403,13 +437,12 @@ if ($Merge) { Invoke-Command {git checkout $OrigBranch} Set-Location "$OrigDir" } elseif ($Sign) { - if (Test-Path $SignKey) { - # Need to include path to signtool program - Invoke-VSToolchain $VSToolChain $SourceDir -Arch "amd64" - } - Test-RequiredPrograms + if (!$SignCert) { + $SignCert = Find-SignCert + } + # Resolve wildcard paths $ResolvedFiles = @() foreach ($_ in $SignFiles) { @@ -417,116 +450,216 @@ if ($Merge) { } $AppSignFiles = $ResolvedFiles.Where({ $_ -match "\.(msi|exe|dll)$" }) - Invoke-SignFiles $AppSignFiles $SignKey $Timestamp + Invoke-SignFiles $AppSignFiles $SignCert $Timestamp $GpgSignFiles = $ResolvedFiles.Where({ $_ -match "\.(msi|zip|gz|xz|dmg|appimage)$" }) Invoke-GpgSignFiles $GpgSignFiles $GpgKey } # SIG # Begin signature block -# MIIThAYJKoZIhvcNAQcCoIITdTCCE3ECAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUyaXWK5K1LP2TD/IgGb5Tfs8v -# C2GgghC8MIIFOjCCBCKgAwIBAgIQWKLXLYzA/YnM/yHg1O3HSjANBgkqhkiG9w0B -# AQsFADB8MQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVy -# MRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxJDAi -# BgNVBAMTG1NlY3RpZ28gUlNBIENvZGUgU2lnbmluZyBDQTAeFw0yMTAzMTUwMDAw -# MDBaFw0yNDAzMTQyMzU5NTlaMIGhMQswCQYDVQQGEwJVUzEOMAwGA1UEEQwFMjIz -# MTUxETAPBgNVBAgMCFZpcmdpbmlhMRIwEAYDVQQHDAlGcmFuY29uaWExGzAZBgNV -# BAkMEjY2NTMgQXVkcmV5IEtheSBDdDEeMBwGA1UECgwVRHJvaWRNb25rZXkgQXBw -# cywgTExDMR4wHAYDVQQDDBVEcm9pZE1vbmtleSBBcHBzLCBMTEMwggEiMA0GCSqG -# SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCwB9L/+1zlcXOQLoYvdrYAWS9B5ui+7E9c -# XCn6wcB4NdmaRbNM3kdWc8nbjOOHeOct2jVzVu/pJR1SagI+V1R1BfzgfzuW55Yy -# iHrqXQGfL9xhqJAWSvdQRinvlkZ+WY3QxnOhzcQk+BTLYdUwq04O3jMv7vnH6fuL -# q/HXEsgDObZC7EyKEtVbWVo4nqY0tUTviJXvRI/sFDN8DvULefwZWIvF7G11NFeK -# It24+hDCzvVBKtEn7DNmFGO1CJAB7Sz4jFewV4MP1gviMAfGbSBqavyRDBOG7eda -# SVb1Zq482yoHNAs+mpIQK2SGvUKKAJK2wCDbzgpvu5sfzwStpc0hAgMBAAGjggGQ -# MIIBjDAfBgNVHSMEGDAWgBQO4TqoUzox1Yq+wbutZxoDha00DjAdBgNVHQ4EFgQU -# 7u2WZ7fqJiaM3u9SlzAwGBhoWH0wDgYDVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQC -# MAAwEwYDVR0lBAwwCgYIKwYBBQUHAwMwEQYJYIZIAYb4QgEBBAQDAgQQMEoGA1Ud -# IARDMEEwNQYMKwYBBAGyMQECAQMCMCUwIwYIKwYBBQUHAgEWF2h0dHBzOi8vc2Vj -# dGlnby5jb20vQ1BTMAgGBmeBDAEEATBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8v -# Y3JsLnNlY3RpZ28uY29tL1NlY3RpZ29SU0FDb2RlU2lnbmluZ0NBLmNybDBzBggr -# BgEFBQcBAQRnMGUwPgYIKwYBBQUHMAKGMmh0dHA6Ly9jcnQuc2VjdGlnby5jb20v -# U2VjdGlnb1JTQUNvZGVTaWduaW5nQ0EuY3J0MCMGCCsGAQUFBzABhhdodHRwOi8v -# b2NzcC5zZWN0aWdvLmNvbTANBgkqhkiG9w0BAQsFAAOCAQEAD2w/Tt5KyPbX2M+h -# WVwgqpKm42nk6aN2HvSp+KWlrB2t+ziL+1IRXwq7S0V7p2e1ZK8uXLzBjUDVGjBc -# ugh5hGG95MGVltxCJrr/bk1He62L7MwVxfH5b5MrE/vC/cHcSxEB1AZwZxYKjDPf -# R81biDVch++XeKmvUxfT4XGo7McJqT4K/TcLwijSb/AWsXR+r2BXEAqgsoG37kk/ -# fbPKimpJ07hxd/RNYVpE33E93zCQ1Tjc1tP3DaLq8cpS6jGUY5NNOzRgp2mGcGHy -# lv6Q/xf45qNvHiqFVctdvY9of0QFjg5eYDr4rLDa+mks9f1Jd8aDWKcsfCBnlohT -# KIffbTCCBYEwggRpoAMCAQICEDlyRDr5IrdR19NsEN0xNZUwDQYJKoZIhvcNAQEM -# BQAwezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQ -# MA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAf -# BgNVBAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0xOTAzMTIwMDAwMDBa -# Fw0yODEyMzEyMzU5NTlaMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEpl -# cnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJV -# U1QgTmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IFJTQSBDZXJ0aWZpY2F0aW9u -# IEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIASZRc2 -# DsPbCLPQrFcNdu3NJ9NMrVCDYeKqIE0JLWQJ3M6Jn8w9qez2z8Hc8dOx1ns3KBEr -# R9o5xrw6GbRfpr19naNjQrZ28qk7K5H44m/Q7BYgkAk+4uh0yRi0kdRiZNt/owbx -# iBhqkCI8vP4T8IcUe/bkH47U5FHGEWdGCFHLhhRUP7wz/n5snP8WnRi9UY41pqdm -# yHJn2yFmsdSbeAPAUDrozPDcvJ5M/q8FljUfV1q3/875PbcstvZU3cjnEjpNrkyK -# t1yatLcgPcp/IjSufjtoZgFE5wFORlObM2D3lL5TN5BzQ/Myw1Pv26r+dE5px2uM -# YJPexMcM3+EyrsyTO1F4lWeL7j1W/gzQaQ8bD/MlJmszbfduR/pzQ+V+DqVmsSl8 -# MoRjVYnEDcGTVDAZE6zTfTen6106bDVc20HXEtqpSQvf2ICKCZNijrVmzyWIzYS4 -# sT+kOQ/ZAp7rEkyVfPNrBaleFoPMuGfi6BOdzFuC00yz7Vv/3uVzrCM7LQC/NVV0 -# CUnYSVgaf5I25lGSDvMmfRxNF7zJ7EMm0L9BX0CpRET0medXh55QH1dUqD79dGMv -# sVBlCeZYQi5DGky08CVHWfoEHpPUJkZKUIGy3r54t/xnFeHJV4QeD2PW6WK61l9V -# LupcxigIBCU5uA4rqfJMlxwHPw1S9e3vL4IPAgMBAAGjgfIwge8wHwYDVR0jBBgw -# FoAUoBEKIz6W8Qfs4q8p74Klf9AwpLQwHQYDVR0OBBYEFFN5v1qqK0rPVIDh2JvA -# nfKyA2bLMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MBEGA1UdIAQK -# MAgwBgYEVR0gADBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsLmNvbW9kb2Nh -# LmNvbS9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDA0BggrBgEFBQcBAQQoMCYw -# JAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmNvbW9kb2NhLmNvbTANBgkqhkiG9w0B -# AQwFAAOCAQEAGIdR3HQhPZyK4Ce3M9AuzOzw5steEd4ib5t1jp5y/uTW/qofnJYt -# 7wNKfq70jW9yPEM7wD/ruN9cqqnGrvL82O6je0P2hjZ8FODN9Pc//t64tIrwkZb+ -# /UNkfv3M0gGhfX34GRnJQisTv1iLuqSiZgR2iJFODIkUzqJNyTKzuugUGrxx8Vvw -# QQuYAAoiAxDlDLH5zZI3Ge078eQ6tvlFEyZ1r7uq7z97dzvSxAKRPRkA0xdcOds/ -# exgNRc2ThZYvXd9ZFk8/Ub3VRRg/7UqO6AZhdCMWtQ1QcydER38QXYkqa4UxFMTo -# qWpMgLxqeM+4f452cpkMnf7XkQgWoaNflTCCBfUwggPdoAMCAQICEB2iSDBvmyYY -# 0ILgln0z02owDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpOZXcgSmVyc2V5MRQwEgYDVQQHEwtKZXJzZXkgQ2l0eTEeMBwGA1UEChMVVGhl -# IFVTRVJUUlVTVCBOZXR3b3JrMS4wLAYDVQQDEyVVU0VSVHJ1c3QgUlNBIENlcnRp -# ZmljYXRpb24gQXV0aG9yaXR5MB4XDTE4MTEwMjAwMDAwMFoXDTMwMTIzMTIzNTk1 -# OVowfDELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQ -# MA4GA1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMSQwIgYD -# VQQDExtTZWN0aWdvIFJTQSBDb2RlIFNpZ25pbmcgQ0EwggEiMA0GCSqGSIb3DQEB -# AQUAA4IBDwAwggEKAoIBAQCGIo0yhXoYn0nwli9jCB4t3HyfFM/jJrYlZilAhlRG -# dDFixRDtsocnppnLlTDAVvWkdcapDlBipVGREGrgS2Ku/fD4GKyn/+4uMyD6DBmJ -# qGx7rQDDYaHcaWVtH24nlteXUYam9CflfGqLlR5bYNV+1xaSnAAvaPeX7Wpyvjg7 -# Y96Pv25MQV0SIAhZ6DnNj9LWzwa0VwW2TqE+V2sfmLzEYtYbC43HZhtKn52BxHJA -# teJf7wtF/6POF6YtVbC3sLxUap28jVZTxvC6eVBJLPcDuf4vZTXyIuosB69G2flG -# HNyMfHEo8/6nxhTdVZFuihEN3wYklX0Pp6F8OtqGNWHTAgMBAAGjggFkMIIBYDAf -# BgNVHSMEGDAWgBRTeb9aqitKz1SA4dibwJ3ysgNmyzAdBgNVHQ4EFgQUDuE6qFM6 -# MdWKvsG7rWcaA4WtNA4wDgYDVR0PAQH/BAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8C -# AQAwHQYDVR0lBBYwFAYIKwYBBQUHAwMGCCsGAQUFBwMIMBEGA1UdIAQKMAgwBgYE -# VR0gADBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLnVzZXJ0cnVzdC5jb20v -# VVNFUlRydXN0UlNBQ2VydGlmaWNhdGlvbkF1dGhvcml0eS5jcmwwdgYIKwYBBQUH -# AQEEajBoMD8GCCsGAQUFBzAChjNodHRwOi8vY3J0LnVzZXJ0cnVzdC5jb20vVVNF -# UlRydXN0UlNBQWRkVHJ1c3RDQS5jcnQwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3Nw -# LnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEMBQADggIBAE1jUO1HNEphpNveaiqM -# m/EAAB4dYns61zLC9rPgY7P7YQCImhttEAcET7646ol4IusPRuzzRl5ARokS9At3 -# WpwqQTr81vTr5/cVlTPDoYMot94v5JT3hTODLUpASL+awk9KsY8k9LOBN9O3ZLCm -# I2pZaFJCX/8E6+F0ZXkI9amT3mtxQJmWunjxucjiwwgWsatjWsgVgG10Xkp1fqW4 -# w2y1z99KeYdcx0BNYzX2MNPPtQoOCwR/oEuuu6Ol0IQAkz5TXTSlADVpbL6fICUQ -# DRn7UJBhvjmPeo5N9p8OHv4HURJmgyYZSJXOSsnBf/M6BZv5b9+If8AjntIeQ3pF -# McGcTanwWbJZGehqjSkEAnd8S0vNcL46slVaeD68u28DECV3FTSK+TbMQ5Lkuk/x -# YpMoJVcp+1EZx6ElQGqEV8aynbG8HArafGd+fS7pKEwYfsR7MUFxmksp7As9V1DS -# yt39ngVR5UR43QHesXWYDVQk/fBO4+L4g71yuss9Ou7wXheSaG3IYfmm8SoKC6W5 -# 9J7umDIFhZ7r+YMp08Ysfb06dy6LN0KgaoLtO0qqlBCk4Q34F8W2WnkzGJLjtXX4 -# oemOCiUe5B7xn1qHI/+fpFGe+zmAEc3btcSnqIBv5VPU4OOiwtJbGvoyJi1qV3Ac -# PKRYLqPzW0sH3DJZ84enGm1YMYICMjCCAi4CAQEwgZAwfDELMAkGA1UEBhMCR0Ix -# GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEY -# MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMSQwIgYDVQQDExtTZWN0aWdvIFJTQSBD -# b2RlIFNpZ25pbmcgQ0ECEFii1y2MwP2JzP8h4NTtx0owCQYFKw4DAhoFAKB4MBgG -# CisGAQQBgjcCAQwxCjAIoAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcC -# AQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYE -# FPvoURlVLtMyc41aoH1W7jNXhNkUMA0GCSqGSIb3DQEBAQUABIIBACa4ISoVYuy4 -# LQD5f2XzRDboWCOwR2ClFczB/vOn7uX+RKpbW+vZwllcL0wk0kA4Iotk12yKLAni -# K0DkhX8P/Gt5B4hMFaWYKkwTZljITgCEHoAy8vQzpfDUdfJF40R7IIEQLzr2/n5q -# Iztv/ApXsPX8SkgEGdikFbBA0i/xtzI8+3sI1QINiRig8xEH/1eOZlR54YHwClvS -# 8QhXueb9NbqNN9oKBwx5gRWcOE4I2E5mYAppDDQyhqitbeeY2Pw4Eo5koLM3zTDy -# 4/zc+A9lNkAa5eDTavxMHQVqKgO5KomzIYHAdIFnKs85SdntIOr5nSAHnAl6svTh -# iJXqSEggdX8= +# MIImVAYJKoZIhvcNAQcCoIImRTCCJkECAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCRMgDV7DQ6PzRo +# 3ULpsxL1VU2JvIFnZPXlxq/hkfU2Y6CCH2owggYUMIID/KADAgECAhB6I67aU2mW +# D5HIPlz0x+M/MA0GCSqGSIb3DQEBDAUAMFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQK +# Ew9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gUHVibGljIFRpbWUg +# U3RhbXBpbmcgUm9vdCBSNDYwHhcNMjEwMzIyMDAwMDAwWhcNMzYwMzIxMjM1OTU5 +# WjBVMQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMSwwKgYD +# VQQDEyNTZWN0aWdvIFB1YmxpYyBUaW1lIFN0YW1waW5nIENBIFIzNjCCAaIwDQYJ +# KoZIhvcNAQEBBQADggGPADCCAYoCggGBAM2Y2ENBq26CK+z2M34mNOSJjNPvIhKA +# VD7vJq+MDoGD46IiM+b83+3ecLvBhStSVjeYXIjfa3ajoW3cS3ElcJzkyZlBnwDE +# JuHlzpbN4kMH2qRBVrjrGJgSlzzUqcGQBaCxpectRGhhnOSwcjPMI3G0hedv2eNm +# GiUbD12OeORN0ADzdpsQ4dDi6M4YhoGE9cbY11XxM2AVZn0GiOUC9+XE0wI7CQKf +# OUfigLDn7i/WeyxZ43XLj5GVo7LDBExSLnh+va8WxTlA+uBvq1KO8RSHUQLgzb1g +# bL9Ihgzxmkdp2ZWNuLc+XyEmJNbD2OIIq/fWlwBp6KNL19zpHsODLIsgZ+WZ1AzC +# s1HEK6VWrxmnKyJJg2Lv23DlEdZlQSGdF+z+Gyn9/CRezKe7WNyxRf4e4bwUtrYE +# 2F5Q+05yDD68clwnweckKtxRaF0VzN/w76kOLIaFVhf5sMM/caEZLtOYqYadtn03 +# 4ykSFaZuIBU9uCSrKRKTPJhWvXk4CllgrwIDAQABo4IBXDCCAVgwHwYDVR0jBBgw +# FoAU9ndq3T/9ARP/FqFsggIv0Ao9FCUwHQYDVR0OBBYEFF9Y7UwxeqJhQo1SgLqz +# YZcZojKbMA4GA1UdDwEB/wQEAwIBhjASBgNVHRMBAf8ECDAGAQH/AgEAMBMGA1Ud +# JQQMMAoGCCsGAQUFBwMIMBEGA1UdIAQKMAgwBgYEVR0gADBMBgNVHR8ERTBDMEGg +# P6A9hjtodHRwOi8vY3JsLnNlY3RpZ28uY29tL1NlY3RpZ29QdWJsaWNUaW1lU3Rh +# bXBpbmdSb290UjQ2LmNybDB8BggrBgEFBQcBAQRwMG4wRwYIKwYBBQUHMAKGO2h0 +# dHA6Ly9jcnQuc2VjdGlnby5jb20vU2VjdGlnb1B1YmxpY1RpbWVTdGFtcGluZ1Jv +# b3RSNDYucDdjMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5zZWN0aWdvLmNvbTAN +# BgkqhkiG9w0BAQwFAAOCAgEAEtd7IK0ONVgMnoEdJVj9TC1ndK/HYiYh9lVUacah +# RoZ2W2hfiEOyQExnHk1jkvpIJzAMxmEc6ZvIyHI5UkPCbXKspioYMdbOnBWQUn73 +# 3qMooBfIghpR/klUqNxx6/fDXqY0hSU1OSkkSivt51UlmJElUICZYBodzD3M/SFj +# eCP59anwxs6hwj1mfvzG+b1coYGnqsSz2wSKr+nDO+Db8qNcTbJZRAiSazr7KyUJ +# Go1c+MScGfG5QHV+bps8BX5Oyv9Ct36Y4Il6ajTqV2ifikkVtB3RNBUgwu/mSiSU +# ice/Jp/q8BMk/gN8+0rNIE+QqU63JoVMCMPY2752LmESsRVVoypJVt8/N3qQ1c6F +# ibbcRabo3azZkcIdWGVSAdoLgAIxEKBeNh9AQO1gQrnh1TA8ldXuJzPSuALOz1Uj +# b0PCyNVkWk7hkhVHfcvBfI8NtgWQupiaAeNHe0pWSGH2opXZYKYG4Lbukg7HpNi/ +# KqJhue2Keak6qH9A8CeEOB7Eob0Zf+fU+CCQaL0cJqlmnx9HCDxF+3BLbUufrV64 +# EbTI40zqegPZdA+sXCmbcZy6okx/SjwsusWRItFA3DE8MORZeFb6BmzBtqKJ7l93 +# 9bbKBy2jvxcJI98Va95Q5JnlKor3m0E7xpMeYRriWklUPsetMSf2NvUQa/E5vVye +# fQIwggYaMIIEAqADAgECAhBiHW0MUgGeO5B5FSCJIRwKMA0GCSqGSIb3DQEBDAUA +# MFYxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLTArBgNV +# BAMTJFNlY3RpZ28gUHVibGljIENvZGUgU2lnbmluZyBSb290IFI0NjAeFw0yMTAz +# MjIwMDAwMDBaFw0zNjAzMjEyMzU5NTlaMFQxCzAJBgNVBAYTAkdCMRgwFgYDVQQK +# Ew9TZWN0aWdvIExpbWl0ZWQxKzApBgNVBAMTIlNlY3RpZ28gUHVibGljIENvZGUg +# U2lnbmluZyBDQSBSMzYwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCb +# K51T+jU/jmAGQ2rAz/V/9shTUxjIztNsfvxYB5UXeWUzCxEeAEZGbEN4QMgCsJLZ +# UKhWThj/yPqy0iSZhXkZ6Pg2A2NVDgFigOMYzB2OKhdqfWGVoYW3haT29PSTahYk +# wmMv0b/83nbeECbiMXhSOtbam+/36F09fy1tsB8je/RV0mIk8XL/tfCK6cPuYHE2 +# 15wzrK0h1SWHTxPbPuYkRdkP05ZwmRmTnAO5/arnY83jeNzhP06ShdnRqtZlV59+ +# 8yv+KIhE5ILMqgOZYAENHNX9SJDm+qxp4VqpB3MV/h53yl41aHU5pledi9lCBbH9 +# JeIkNFICiVHNkRmq4TpxtwfvjsUedyz8rNyfQJy/aOs5b4s+ac7IH60B+Ja7TVM+ +# EKv1WuTGwcLmoU3FpOFMbmPj8pz44MPZ1f9+YEQIQty/NQd/2yGgW+ufflcZ/ZE9 +# o1M7a5Jnqf2i2/uMSWymR8r2oQBMdlyh2n5HirY4jKnFH/9gRvd+QOfdRrJZb1sC +# AwEAAaOCAWQwggFgMB8GA1UdIwQYMBaAFDLrkpr/NZZILyhAQnAgNpFcF4XmMB0G +# A1UdDgQWBBQPKssghyi47G9IritUpimqF6TNDDAOBgNVHQ8BAf8EBAMCAYYwEgYD +# VR0TAQH/BAgwBgEB/wIBADATBgNVHSUEDDAKBggrBgEFBQcDAzAbBgNVHSAEFDAS +# MAYGBFUdIAAwCAYGZ4EMAQQBMEsGA1UdHwREMEIwQKA+oDyGOmh0dHA6Ly9jcmwu +# c2VjdGlnby5jb20vU2VjdGlnb1B1YmxpY0NvZGVTaWduaW5nUm9vdFI0Ni5jcmww +# ewYIKwYBBQUHAQEEbzBtMEYGCCsGAQUFBzAChjpodHRwOi8vY3J0LnNlY3RpZ28u +# Y29tL1NlY3RpZ29QdWJsaWNDb2RlU2lnbmluZ1Jvb3RSNDYucDdjMCMGCCsGAQUF +# BzABhhdodHRwOi8vb2NzcC5zZWN0aWdvLmNvbTANBgkqhkiG9w0BAQwFAAOCAgEA +# Bv+C4XdjNm57oRUgmxP/BP6YdURhw1aVcdGRP4Wh60BAscjW4HL9hcpkOTz5jUug +# 2oeunbYAowbFC2AKK+cMcXIBD0ZdOaWTsyNyBBsMLHqafvIhrCymlaS98+QpoBCy +# KppP0OcxYEdU0hpsaqBBIZOtBajjcw5+w/KeFvPYfLF/ldYpmlG+vd0xqlqd099i +# ChnyIMvY5HexjO2AmtsbpVn0OhNcWbWDRF/3sBp6fWXhz7DcML4iTAWS+MVXeNLj +# 1lJziVKEoroGs9Mlizg0bUMbOalOhOfCipnx8CaLZeVme5yELg09Jlo8BMe80jO3 +# 7PU8ejfkP9/uPak7VLwELKxAMcJszkyeiaerlphwoKx1uHRzNyE6bxuSKcutisqm +# KL5OTunAvtONEoteSiabkPVSZ2z76mKnzAfZxCl/3dq3dUNw4rg3sTCggkHSRqTq +# lLMS7gjrhTqBmzu1L90Y1KWN/Y5JKdGvspbOrTfOXyXvmPL6E52z1NZJ6ctuMFBQ +# ZH3pwWvqURR8AgQdULUvrxjUYbHHj95Ejza63zdrEcxWLDX6xWls/GDnVNueKjWU +# H3fTv1Y8Wdho698YADR7TNx8X8z2Bev6SivBBOHY+uqiirZtg0y9ShQoPzmCcn63 +# Syatatvx157YK9hlcPmVoa1oDE5/L9Uo2bC5a4CH2RwwggZJMIIEsaADAgECAhAG +# Qz/MzOQzqJLMF7dGpYxlMA0GCSqGSIb3DQEBDAUAMFQxCzAJBgNVBAYTAkdCMRgw +# FgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxKzApBgNVBAMTIlNlY3RpZ28gUHVibGlj +# IENvZGUgU2lnbmluZyBDQSBSMzYwHhcNMjQwMjIzMDAwMDAwWhcNMjcwMjIyMjM1 +# OTU5WjBgMQswCQYDVQQGEwJVUzERMA8GA1UECAwIVmlyZ2luaWExHjAcBgNVBAoM +# FURyb2lkTW9ua2V5IEFwcHMsIExMQzEeMBwGA1UEAwwVRHJvaWRNb25rZXkgQXBw +# cywgTExDMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuJtEjRyetghx +# 6Abi1cpMT88uT6nIcTe3AyUvdSkjCtUM8Gat0YJfqTxokb9dBzJa7j8YWOUU1Yc4 +# EDXoYYtVRE+1UkdPAcXNMf2hNXGI45iZVwhBPQZBU4QfKltzYqrjAZgDvxeYd68q +# ImjzUfrCY3uZHwEIuCewmNMPpEgbdjuSXDyBAKKBtaO2iqyaJpqcC39QnDKlXMic +# DPqqH5fI7wK7Lg9f4BwOsaO4P68I3pOv7L/6E5GR9+hTj6txhxFz/yCbDxN1PUvD +# sGaXjMmVeP2M95fkwOFwut5yBESDIwAGEWUFsTJ32hSmE74+xG6rVqtueayV7U9c +# GURznSk9ZlTUqQOW9Z4K+pu29gTZ9zVWlONIsQR7QXfGKZWF+Xik6rTujSRTTsK7 +# QNMYzBI6b9v0nD2pEWuGZDXIO5o5N2HzXEFlwxCFY483yWSObHNBp9PFtiDueqv+ +# 8vrN+lsirZlDFCxI6hW+F8oYp3XxHdSqxsMRTqbO6dUjH2Tyd0G5fbyT8Rid7DbP +# 6p/apzIrdFOM0kdcKLmppYBp7BInTdjbWJYhtuORIUZQbUOSM71vYCUHj7xkckiY +# YmkUf0XH8xx8jqgVWseBW63gCEowhCEYxaWt0QGyXJ6UrlV4WTUCWzxm45I5OQoo +# fymUvdutKgr9bR3nJ5yS/c+E3KnqJhkCAwEAAaOCAYkwggGFMB8GA1UdIwQYMBaA +# FA8qyyCHKLjsb0iuK1SmKaoXpM0MMB0GA1UdDgQWBBQta729krTac3CUndU0S0Dd +# DscjHTAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr +# BgEFBQcDAzBKBgNVHSAEQzBBMDUGDCsGAQQBsjEBAgEDAjAlMCMGCCsGAQUFBwIB +# FhdodHRwczovL3NlY3RpZ28uY29tL0NQUzAIBgZngQwBBAEwSQYDVR0fBEIwQDA+ +# oDygOoY4aHR0cDovL2NybC5zZWN0aWdvLmNvbS9TZWN0aWdvUHVibGljQ29kZVNp +# Z25pbmdDQVIzNi5jcmwweQYIKwYBBQUHAQEEbTBrMEQGCCsGAQUFBzAChjhodHRw +# Oi8vY3J0LnNlY3RpZ28uY29tL1NlY3RpZ29QdWJsaWNDb2RlU2lnbmluZ0NBUjM2 +# LmNydDAjBggrBgEFBQcwAYYXaHR0cDovL29jc3Auc2VjdGlnby5jb20wDQYJKoZI +# hvcNAQEMBQADggGBAJSy5YPCbh9ZsuDCKgDuzOWZzNza4/FrA+kT7EitDezYN3S/ +# P0EVc0tPbgYAKfNqY+ihAMyjZHdgybfBWhGzUTDo+HEipcnZ2pgwPadsw23jJ8MN +# 1tdms9iKDakIQ2MVsB7cGFRU8QjLovkPdZkyLcjuYbkiZRoNoKlhmrOOf6n1oCwX +# VJ9ONJijc+Lr3+4EIqZ39ET2+uI9Wg9Bfd9XrDZfYFEcRJjNzRpCtHb26aIzV/Xi +# MWasHRPaII34SzD0BmaPbsLeGW1UGvW3tQcgVNdT/uajegmShVb+c5J5ktRSJ0cq +# yxmTAYaeMuA6IxG1f6kui1SAFQs2lzlGyEgxgiNGo7cHHN2KidhrBL3U2bGr9Tkd +# p3gmV+Gj3esCdQzJE4aqmUZvIvHpkrair4qbLFZRNozAZJn2SIeQa5u2U0ZmvcAr +# 1C7S3JVLP3t9LKE0mlFkV9pbIU97ND3iH3tO0Zb3SvCK/XjO1PZVb8EXsi67wbfM +# SWAwi2CETDonb7+gBjCCBl0wggTFoAMCAQICEDpSaiyEzlXmHWX8zBLY6YkwDQYJ +# KoZIhvcNAQEMBQAwVTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1NlY3RpZ28gTGlt +# aXRlZDEsMCoGA1UEAxMjU2VjdGlnbyBQdWJsaWMgVGltZSBTdGFtcGluZyBDQSBS +# MzYwHhcNMjQwMTE1MDAwMDAwWhcNMzUwNDE0MjM1OTU5WjBuMQswCQYDVQQGEwJH +# QjETMBEGA1UECBMKTWFuY2hlc3RlcjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVk +# MTAwLgYDVQQDEydTZWN0aWdvIFB1YmxpYyBUaW1lIFN0YW1waW5nIFNpZ25lciBS +# MzUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCN0Wf0wUibvf04STpN +# YYGbw9jcRaVhBDaNBp7jmJaA9dQZW5ighrXGNMYjK7Dey5RIHMqLIbT9z9if753m +# YbojJrKWO4ZP0N5dBT2TwZZaPb8E+hqaDZ8Vy2c+x1NiEwbEzTrPX4W3QFq/zJvD +# DbWKL99qLL42GJQzX3n5wWo60KklfFn+Wb22mOZWYSqkCVGl8aYuE12SqIS4MVO4 +# PUaxXeO+4+48YpQlNqbc/ndTgszRQLF4MjxDPjRDD1M9qvpLTZcTGVzxfViyIToR +# NxPP6DUiZDU6oXARrGwyP9aglPXwYbkqI2dLuf9fiIzBugCDciOly8TPDgBkJmjA +# fILNiGcVEzg+40xUdhxNcaC+6r0juPiR7bzXHh7v/3RnlZuT3ZGstxLfmE7fRMAF +# wbHdDz5gtHLqjSTXDiNF58IxPtvmZPG2rlc+Yq+2B8+5pY+QZn+1vEifI0MDtiA6 +# BxxQuOnj4PnqDaK7NEKwtD1pzoA3jJFuoJiwbatwhDkg1PIjYnMDbDW+wAc9FtRN +# 6pUsO405jaBgigoFZCw9hWjLNqgFVTo7lMb5rVjJ9aSBVVL2dcqzyFW2LdWk5Xdp +# 65oeeOALod7YIIMv1pbqC15R7QCYLxcK1bCl4/HpBbdE5mjy9JR70BHuYx27n4XN +# OZbwrXcG3wZf9gEUk7stbPAoBQIDAQABo4IBjjCCAYowHwYDVR0jBBgwFoAUX1jt +# TDF6omFCjVKAurNhlxmiMpswHQYDVR0OBBYEFGjvpDJJabZSOB3qQzks9BRqngyF +# MA4GA1UdDwEB/wQEAwIGwDAMBgNVHRMBAf8EAjAAMBYGA1UdJQEB/wQMMAoGCCsG +# AQUFBwMIMEoGA1UdIARDMEEwNQYMKwYBBAGyMQECAQMIMCUwIwYIKwYBBQUHAgEW +# F2h0dHBzOi8vc2VjdGlnby5jb20vQ1BTMAgGBmeBDAEEAjBKBgNVHR8EQzBBMD+g +# PaA7hjlodHRwOi8vY3JsLnNlY3RpZ28uY29tL1NlY3RpZ29QdWJsaWNUaW1lU3Rh +# bXBpbmdDQVIzNi5jcmwwegYIKwYBBQUHAQEEbjBsMEUGCCsGAQUFBzAChjlodHRw +# Oi8vY3J0LnNlY3RpZ28uY29tL1NlY3RpZ29QdWJsaWNUaW1lU3RhbXBpbmdDQVIz +# Ni5jcnQwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLnNlY3RpZ28uY29tMA0GCSqG +# SIb3DQEBDAUAA4IBgQCw3C7J+k82TIov9slP1e8YTx+fDsa//hJ62Y6SMr2E89rv +# 82y/n8we5W6z5pfBEWozlW7nWp+sdPCdUTFw/YQcqvshH6b9Rvs9qZp5Z+V7nHwP +# TH8yzKwgKzTTG1I1XEXLAK9fHnmXpaDeVeI8K6Lw3iznWZdLQe3zl+Rejdq5l2jU +# 7iUfMkthfhFmi+VVYPkR/BXpV7Ub1QyyWebqkjSHJHRmv3lBYbQyk08/S7TlIeOr +# 9iQ+UN57fJg4QI0yqdn6PyiehS1nSgLwKRs46T8A6hXiSn/pCXaASnds0LsM5OVo +# KYfbgOOlWCvKfwUySWoSgrhncihSBXxH2pAuDV2vr8GOCEaePZc0Dy6O1rYnKjGm +# qm/IRNkJghSMizr1iIOPN+23futBXAhmx8Ji/4NTmyH9K0UvXHiuA2Pa3wZxxR9r +# 9XeIUVb2V8glZay+2ULlc445CzCvVSZV01ZB6bgvCuUuBx079gCcepjnZDCcEuIC +# 5Se4F6yFaZ8RvmiJ4hgwggaCMIIEaqADAgECAhA2wrC9fBs656Oz3TbLyXVoMA0G +# CSqGSIb3DQEBDAUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNl +# eTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1Qg +# TmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IFJTQSBDZXJ0aWZpY2F0aW9uIEF1 +# dGhvcml0eTAeFw0yMTAzMjIwMDAwMDBaFw0zODAxMTgyMzU5NTlaMFcxCzAJBgNV +# BAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3Rp +# Z28gUHVibGljIFRpbWUgU3RhbXBpbmcgUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCIndi5RWedHd3ouSaBmlRUwHxJBZvMWhUP2ZQQRLRB +# QIF3FJmp1OR2LMgIU14g0JIlL6VXWKmdbmKGRDILRxEtZdQnOh2qmcxGzjqemIk8 +# et8sE6J+N+Gl1cnZocew8eCAawKLu4TRrCoqCAT8uRjDeypoGJrruH/drCio28aq +# IVEn45NZiZQI7YYBex48eL78lQ0BrHeSmqy1uXe9xN04aG0pKG9ki+PC6VEfzutu +# 6Q3IcZZfm00r9YAEp/4aeiLhyaKxLuhKKaAdQjRaf/h6U13jQEV1JnUTCm511n5a +# vv4N+jSVwd+Wb8UMOs4netapq5Q/yGyiQOgjsP/JRUj0MAT9YrcmXcLgsrAimfWY +# 3MzKm1HCxcquinTqbs1Q0d2VMMQyi9cAgMYC9jKc+3mW62/yVl4jnDcw6ULJsBkO +# krcPLUwqj7poS0T2+2JMzPP+jZ1h90/QpZnBkhdtixMiWDVgh60KmLmzXiqJc6lG +# wqoUqpq/1HVHm+Pc2B6+wCy/GwCcjw5rmzajLbmqGygEgaj/OLoanEWP6Y52Hfle +# f3XLvYnhEY4kSirMQhtberRvaI+5YsD3XVxHGBjlIli5u+NrLedIxsE88WzKXqZj +# j9Zi5ybJL2WjeXuOTbswB7XjkZbErg7ebeAQUQiS/uRGZ58NHs57ZPUfECcgJC+v +# 2wIDAQABo4IBFjCCARIwHwYDVR0jBBgwFoAUU3m/WqorSs9UgOHYm8Cd8rIDZssw +# HQYDVR0OBBYEFPZ3at0//QET/xahbIICL9AKPRQlMA4GA1UdDwEB/wQEAwIBhjAP +# BgNVHRMBAf8EBTADAQH/MBMGA1UdJQQMMAoGCCsGAQUFBwMIMBEGA1UdIAQKMAgw +# BgYEVR0gADBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLnVzZXJ0cnVzdC5j +# b20vVVNFUlRydXN0UlNBQ2VydGlmaWNhdGlvbkF1dGhvcml0eS5jcmwwNQYIKwYB +# BQUHAQEEKTAnMCUGCCsGAQUFBzABhhlodHRwOi8vb2NzcC51c2VydHJ1c3QuY29t +# MA0GCSqGSIb3DQEBDAUAA4ICAQAOvmVB7WhEuOWhxdQRh+S3OyWM637ayBeR7djx +# Q8SihTnLf2sABFoB0DFR6JfWS0snf6WDG2gtCGflwVvcYXZJJlFfym1Doi+4PfDP +# 8s0cqlDmdfyGOwMtGGzJ4iImyaz3IBae91g50QyrVbrUoT0mUGQHbRcF57olpfHh +# QEStz5i6hJvVLFV/ueQ21SM99zG4W2tB1ExGL98idX8ChsTwbD/zIExAopoe3l6J +# rzJtPxj8V9rocAnLP2C8Q5wXVVZcbw4x4ztXLsGzqZIiRh5i111TW7HV1AtsQa6v +# Xy633vCAbAOIaKcLAo/IU7sClyZUk62XD0VUnHD+YvVNvIGezjM6CRpcWed/ODip +# tK+evDKPU2K6synimYBaNH49v9Ih24+eYXNtI38byt5kIvh+8aW88WThRpv8lUJK +# aPn37+YHYafob9Rg7LyTrSYpyZoBmwRWSE4W6iPjB7wJjJpH29308ZkpKKdpkiS9 +# WNsf/eeUtvRrtIEiSJHN899L1P4l6zKVsdrUu1FX1T/ubSrsxrYJD+3f3aKg6yxd +# bugot06YwGXXiy5UUGZvOu3lXlxA+fC13dQ5OlL2gIb5lmF6Ii8+CQOYDwXM+yd9 +# dbmocQsHjcRPsccUd5E9FiswEqORvz8g3s+jR3SFCgXhN4wz7NgAnOgpCdUo4uDy +# llU9PzGCBkAwggY8AgEBMGgwVDELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1NlY3Rp +# Z28gTGltaXRlZDErMCkGA1UEAxMiU2VjdGlnbyBQdWJsaWMgQ29kZSBTaWduaW5n +# IENBIFIzNgIQBkM/zMzkM6iSzBe3RqWMZTANBglghkgBZQMEAgEFAKCBhDAYBgor +# BgEEAYI3AgEMMQowCKACgAChAoAAMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEE +# MBwGCisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMC8GCSqGSIb3DQEJBDEiBCCw +# CjBOFSrHIl5SZxVeFP1D+IfXa4B5pNieNHIkm0/SqTANBgkqhkiG9w0BAQEFAASC +# AgAgFK2xkUz0aie9HSo0e4qyDk83CNX9G/GR7+DObTay5l7OYVZIdB2kOZIS8UbH +# 4gMSsjplIVObVyf1DjGGCctq4bFDABL7wpwqm7P3tEjs2d/HK2Yxoe1c8YFTYMJJ +# Vc6Q9l/nZA7ZC/SCH1NyEgK+w3vQ6SARudN8/ZgFVa1P3DdwOADmLD774v3bOUKq +# XKDOySeYD7bkCekPv6yx6DnrWBBsYIKFRv2Yv4duThki4CC1FMgEVTmdBDJIP3R8 +# 1BgXjPvVxYX3aQ9emC3KluyNr/BEPZiVdwBjXCE60n7g/Y8qNgqY0ZaImSpl9MFx +# VkrxE7iNfBcBE8xVCghyDahs1BxyEeEdQk+QlLD1Cv3KGODlyWjgncDAX7fnkC6l +# M7KUttjXGi9uQG3g2dUCX+744wPhRg+DBfch2Em70I0kYsPY6ETyrQogZdi6QzKO +# Hlf/hUW0o9HCc6BrTSL4y8G0mlKVCgUpMOjlrip88bvW05ZUX20arGKxGg1uxFIA +# r7wvQyFn+RvNc0kqWt/xgwp3HAc80ABPCYumLqGwucBWisiMt4P2s+fkLpYJdC/n +# pS/3fRoepfGmv8J1WAIjGiO7e12aDrTQqNP+2RUzkNpy2eRQDL+3VUFQOQqEfkVL +# Y6wpN6nB7olNULhPUlwZChf49v/h+XUxhgHozWN576qoyqGCAyIwggMeBgkqhkiG +# 9w0BCQYxggMPMIIDCwIBATBpMFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0 +# aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gUHVibGljIFRpbWUgU3RhbXBp +# bmcgQ0EgUjM2AhA6UmoshM5V5h1l/MwS2OmJMA0GCWCGSAFlAwQCAgUAoHkwGAYJ +# KoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMjQwOTE0MDMy +# MTU1WjA/BgkqhkiG9w0BCQQxMgQwwrUMFcAva5866cdprEw/weWm4EfoAA4SCloN +# B50191F7ps9XQIxGfsz+g0vQxzxfMA0GCSqGSIb3DQEBAQUABIICAC3qVFmWQWkL +# kn/AYJPZ3B7Yvwq0P7SqcHO9w5FiV5wsznH6xfvkTzXssQLhKaZdqypnHCTNth8D +# 7mgr6zZYh5CgQQ3SSG2q0xVzs3wanJmZ4g6I7bVeGMLv47tFnCed9G3aP5cywDBn +# vMOiwZnQR1WwM8T6qE4sAb4lKXUYDbIVB1DMRAF3j2rQMAN9e9jF6Ok+ZyQqpBSl +# ve2vBR0TgFXeyidwiz6O2I1FWc1OzwMchbJTANbQqWRKuiQ6gm0Bj/S8dalBb77I +# jxS0Tn7kRH1Sr50ZfWRSxj7H7afsQOKbDHxhWFhctvQfbrmbNj+gHcm9j/rSPpU7 +# zj5OvgKyYQnjiLjCnGBTmSML2ZwvXhPv2XkFQ2yL2nYWTRqLjARdcP62kSrkQxEa +# DLAZ7mcndE+HZVMllBGVI9/H5hkE7jINBU4gNvyqQQqF3xTatJMldyrXCQ6R9wfN +# LsdyFB177vZXLrS1EymCzq1COpbrw3oa/LXP+1hZFhoaOYy00LUnCU5Zjd8UFWIh +# FDj3Z7O/Xz3P8BR4t7PGqUu3x8UbxcsGDH0w0e3pvPmxXiBZlspjNieg073YNKxU +# Yuj0b3cX/cpYH0M0Ne/tXuHwbZthwwll3vytT7Aa+oglejolDQjRc8Gv5KW0dUK3 +# LmVw9eforeFUrTExSEc/0jf29BmZz9do # SIG # End signature block diff --git a/share/CMakeLists.txt b/share/CMakeLists.txt index 34017e95c..f120fc6e2 100644 --- a/share/CMakeLists.txt +++ b/share/CMakeLists.txt @@ -58,7 +58,12 @@ if(UNIX AND NOT APPLE AND NOT HAIKU) EXCLUDE PATTERN "actions" EXCLUDE PATTERN "categories" EXCLUDE) endif(KEEPASSXC_DIST_FLATPAK) configure_file(linux/${APP_ID}.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.desktop @ONLY) + configure_file(linux/${APP_ID}.policy.in ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.policy @ONLY) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) + if("${CMAKE_SYSTEM}" MATCHES "Linux") + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.policy DESTINATION ${CMAKE_INSTALL_DATADIR}/polkit-1/actions) + endif() install(FILES linux/${APP_ID}.appdata.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo) endif(UNIX AND NOT APPLE AND NOT HAIKU) @@ -66,6 +71,10 @@ if(APPLE) install(FILES macosx/keepassxc.icns DESTINATION ${DATA_INSTALL_DIR}) endif() +if(WIN32) + install(FILES windows/qt.conf DESTINATION ${BIN_INSTALL_DIR}) +endif() + install(FILES icons/application/256x256/apps/keepassxc.png DESTINATION ${DATA_INSTALL_DIR}/icons/application/256x256/apps) add_custom_target(icons) diff --git a/share/branding/keepassxc-fileicon.ai b/share/branding/keepassxc-fileicon.ai new file mode 100644 index 000000000..f33835310 --- /dev/null +++ b/share/branding/keepassxc-fileicon.ai @@ -0,0 +1,1906 @@ +%PDF-1.6 % +1 0 obj <>/OCGs[26 0 R 27 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + keepassxc-fileicon + + + 2023-04-23T19:15:39+02:00 + 2023-04-23T19:15:39+02:00 + 2023-04-23T19:15:39+02:00 + Adobe Illustrator 27.2 (Windows) + + + + 256 + 256 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqkmqed/J +lXbWepazZ2l2gBe3lmRXUMKjkpNRUb74qhP+Vnfl5/1MVh/yPT+uKu/5Wd+Xn/UxWH/ACPT+uKu /wCVnfl5/wBTFYf8j0/rirv+Vnfl5/1MVh/yPT+uKu/5Wd+Xn/UxWH/I9P64q7/lZ35ef9TFYf8A I9P64q7/AJWd+Xn/AFMVh/yPT+uKu/5Wd+Xn/UxWH/I9P64q7/lZ35ef9TFYf8j0/rirv+Vnfl5/ 1MVh/wAj0/rirv8AlZ35ef8AUxWH/I9P64q7/lZ35ef9TFYf8j0/rirv+Vnfl5/1MVh/yPT+uKu/ 5Wd+Xn/UxWH/ACPT+uKozSvOvlDV7sWemazZ3l2wLLBDMjSEAVJCg1NB1piqdYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXgvlTyj5d8y/mf56TXLJb1ba7rAHZ14lpZAfsMvZRirO/wDlTX5Z /wDVji/5GT/9VMVd/wAqa/LP/qxxf8jJ/wDqpirf/Kmfyz/6scX/ACNn/wCqmKt/8qY/LL/qxRf8 jZ/+qmKt/wDKmfyy/wCrFF/yMn/6qYq7/lTH5Zf9WKL/AJGT/wDVTFXf8qY/LL/qxRf8jJ/+qmKt /wDKmPyy/wCrFF/yMn/6qYq1/wAqY/LL/qxRf8jJ/wDqpirv+VMfll/1Yov+Rk//AFUxVr/lTH5Z f9WKL/kbP/1UxV3/ACpn8sv+rFF/yNn/AOqmKtf8qZ/LP/qxxf8AI2f/AKqYq1/ypr8s/wDqxxf8 jJ/+qmKvGvO/kp7X80xo/k2IWFzDbJd2SRyOp9WKMyng7EkMeO29K4q9a/Kf82U8zKdD1wCz81Wg ZZYmHpi4Ef2mRTTjItPjT6RtUKq9KxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV47+WH/AJNL 8wf+Yof8nZcVerjFWxirYGKt4q3irdMVbpirqYq1TFXYq1TFWsVaxVo4q8Y1M0/5yMtj/wAuP/Yu +Kph+Zv5YnXCPMHl9jaeZrSkitG3pmf091+IU4yrT4X+g9iFUz/Kb8218xj9Aa/S0802tUZHHpi5 9P7TKu3GVafGn0jaoVV6dirsVdirsVdirsVdirsVdirsVdirsVdirsVeO/lh/wCTS/MH/mKH/J2X FXrGKt4qo3t9Z2Ns1zdyrDAn2nbpvsMVS+184eWrm4jt4L5XmlYJGgVxVjsBuuKp1TFXUxVBaprW laVEJL+5SAN9lTUs3+qq1Y/QMVSiL8xfKcknA3TJvQO8bhfwB/HFWQ29xb3MKT28iywuKpIhDKR7 EYqvxVD31/ZWEBuLyZIIRtzc0FfAeJxVID+YvlT1OH1lyP8AfnpScf1V/DFU7sNSsNQgE9lOk8R2 5Ia0PgR1B9jiqIxV4rq5p/zkTbn/AJcv+xd8VepxyYqwT8zPyxTzAq63obfU/M9nSSKWM+n65TdQ WFOMi0+B/oO1CFUV+VH5tnXpP8OeZF+p+abWsZ5j0xcmPZvh24yrT4k79R3AVeo4q7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq8e/K//wAml+YX/MUP+TsuKvVxiqy5ure1t5Lm4cRwxKWkdugAxV4/5s80 3WvXtEDJYQkm3g77Dd3p3p9wxVCeVP8AlJdM/wCYmP8A4kMVe5jFVG/vIrKynu5v7q3jaR/korQf PFXheo3+oa1qjXE1Zbm5cLHGN6VNFRB4b0GKpxrH5fa3pemm/laKWNADOkZJZAdq7gAgd6Yqr/l1 5gmsNZjsJHJs75hGUPRZTsjD5n4T/Zir1zFXiXm/zBNrOsSy8ybSFjHaJ2CA/ap4t1xVGRfl3r8m kjUB6YLJ6q2tT6pWlfCnKnauKpb5Z16fRdUiuUY+gxC3MfZoyd9vEdRir24MrKGU1UioI6EHFXiW uMP+hh4KHcWVD7H6u+KvTY5MUIqKTFLBfzM/K6PzKF1nRnFl5ltaPFMp4Cb090DMKcXWnwP9B2pR VW/Kn82ZdWmPlfzSPqfmi0JiBlAj+sFOopsFlHde/UYq9TxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kv Hvyv/wDJo/mF/wAxQ/5Oy4q9YGKpb5h0KDWtMeyldozUPFIpPwuOhI/aG/TFWMweTodD8qapNOVl 1GW2kDyDdUXifgQn8TirCPKn/KS6Z/zEx/8AEhir3TFWN/mLO0PlO6C7GVo46+xcE/8AEcVed+QL dZ/NtgGFVQvIfmkbEf8ADUxV6XBqh1i78waNJGojtVEMdOrLLGQ1an+YHFXi9vM8E8c6fbidXX5q ajFXu+uXXo6FfXSHdLaV0PTfgSv44q8N0u3FzqdpbEVE00cZH+u4H8cVezPrbJ5qj0XivpPaGfmK 8g/Mjj4U4jFXkHmC3W313UIE2SO4lCDwXmafhir2HyxO0/l3TpW3Y26KT4lRxr+GKvHdYto7b/nI RfTLETWxlbkSfieBq0r2xV6ZHJihFRyYqi4pMUsH/M78sIPNMA1PSyLXzJagNBODwEwTdUdh0Yfs P2+XRVT/ACo/NubUZ/8ACnmytp5ltm9GOSYcPrBXbi1eko/4btvir1nFXYq7FXYq7FXYq7FXYq7F XYq7FXj35X/+TR/ML/mKH/J2XFXrGKt4qlnmr/lGtT/5h5P+InFXkXlT/lJdM/5iY/8AiQxV7pir E/zPVj5YJBoFnjJ9xuP44qwn8t/+Uttf9SX/AJNnFWZ+UkMfm7zOW2AkRiewDF2H4Yq8lxV7j5jB /wAJXwpuLN6j5Jirx7y6QPMGmEmgF3ASf+ei4q9Huo3/AOVnWjdvqRb6P3i/rxV595sIPmXUqCn+ kOKfI4q9T8lKV8q6eD19Mn6C7EYq8p8zGn/OQMJ/5ch/yYfFWfxyYqio5MUIuOTFKKikxVhn5mfl laebbQX1iVtPMVqK2t0PhEnHcRyEb/6rdV+WKoL8qvzZu7m9/wAH+cQbTzFbN6EFxN8Prsu3pydv V/lPR/n9pV65irsVdirsVdirsVdirsVdirsVePflf/5NH8wv+Yof8nZcVesDFXM6qtWIUeJ2GKpT 5pngby3qQEikm3koAR/LirybysQPMmmkmgFxHUn/AFhir3AXFudhKlf9YYqk/niya88rX8aCrxoJ l/55MHP/AAoOKvKfKWox6d5jsLuVuMSycZGPQLIpQk/INXFXrOtnTtH07VtXQBLi7jHN6/bkVOEQ H39sVeNaTZNfana2aipnlRD8idz9AxV7vqNsLuwubUmguIniJ/11K/xxV4HDJLZ3iScaS28gbidq MjVofpGKvb1/Q8xj8wBlotsQtyT8IhJ5mo6bUxV4nqN0b3Ubm6oa3MzyAd/jYmn44q9v0azNnpFl aNs8MMaP/rBRy/HFWCefPyg0TzVr/wCmJdVmsLr0lhkSPgQeFaHehGxpir5/8/aI/ljzZe6Lb3s1 zBbCIx3DmhYSQpIfsmmzMRirHvrl3/v+T/gm/riqtbnVrluNsbiZv5Y+bHx7VxVOrTyb+Yl1T0NI 1NgejGGZF8PtMAMVTmz/ACi/Ne5AI0+WFD+1NcxJ/wAKZOX4Yqt8y/lH5w8vaJPr2rT26x27Rjik ryTFncItPh47Vr9rFX1P5XuJrnyzpFxO5knmsreSWRjVmdolLMT4knFUzxV2KuxV2KuxV2KuxV2K uxV49+WH/k0vzC/5ih/ydlxV6uMVSDz5a3N15auIbaJ55maMrHGpdjRwTQLU4q8s/wAOeYf+rXd/ 8iJf+acVd/hzzD/1a7v/AJES/wDNOKq+n+XtfW/tmbTLtVWVCzGCQAAMNz8OKvcSFZSrAFSKEHcE HFXkPmryJqWm3ck1jA9zpzktGYwXaMH9l1G+3jiqQCLWLoJbBLicR7RwUd+P+qu9MVeh+QPJVzp8 36V1JOFzxK20B3KBhQu3+URtTFWdYq8289eR7xr2XVdLiM0cx53Fugq6uerKo+0G6mm9cVYV6erK hs+NwErU21Hpy/1PHFWXeSvI1899FqOpwmC2gIeKGQUd3G61U9FB33xV6WcVeS+cdF1m48y300Fh cSxOylJEidlPwKNiBTFWMXXkK6urj6xcaFPLMQAXa3kNQOldsVXxeSbyH+60GSP3W0YH8ExV6J+W mnXtlb363VrLbcmj4LKjR1ADVpyAxVmhxVo4q89/Pf8A8ltqH/GW3/5PLirO/J//ACiWif8AMBa/ 8mVxVN8VdirsVdirsVdirsVdirsVeO/lh/5NL8wf+Yof8nZcVesYq3ireKt4q3XFW8Vbrirq4q6u KtYq1XFWjirzrzf+fX5deW3e3N8dVv12NppwWcg/5UlViWh6jlUeGKvIfMH/ADlH5zvi0ehabbaT CeksxN1OPcEiOMfIocVYHqn5l/mbq7u175kvgJAVeO3kNrGQRQjhB6a0+jFUtj8s+bNWHqraahqA bcuI5pq9+oDeOCwtq/8AyrPzrw5/4d1PhSvL6ncUp414YqoSeWvNmkj1Ws9Q0/juHMc0NO/UhfDG wtpjpf5l/mXpLq1n5jviEAVI7iQ3MYAFAOE/qLT6MKs78v8A/OT3nCyKx67p1tqsI+1LCTbTn3JH OM/IIMVT/wA/fnP5K84fl9e2VlNLaaozwMLC7Tg5CyqWKOpeNqf61fbFXu3k/wD5RLRP+YC1/wCT K4qm+KuxV2KuxV2KuxV2KuxV2KvHfyw/8ml+YP8AzFD/AJOy4q9XGKtjFW8VbxVuuKt4q6uKurir q4q7FWD/AJi/m95U8jwFL2X63q7rW30m3IMzVGzSHpEn+U30A4q+ZPPP5u+ePOrvDeXJsdIY/Dpd oSkZG396325en7RpXoBiqY+SvyH85eYUjuHtxpenvQ/WbwFGZfFIqc29q0B8cFq9j8u/844+R9OR G1Rp9XuBTlzYwQ1H8qREN97nFXoWleVPLOkAfozSrSzYftwwxo5+bAcj9JxpaTXCrqYq7FUq1Xyp 5Y1ev6T0q0vGP7c0Mbv9Dkch9BwUtPPPMf8Azjh5H1FGbSnn0e4NePBjPDU/zRynl9zjFXjnnT8i fOnl5HuBbjVNPSpNzZguyqO7xEc126kAgeONqgvIf5v+ePJLJBZ3P17SFPxaVdkvEBv/AHTfbi6/ smleoOFX0/8Al1+b3lPzzAEsZTaaui1n0m4IEwoN2jPSVP8AKX6QMVZvirsVdirsVdirsVdirsVe O/lj/wCTS/MH/mKH/J2XFXq2Kt4q3XFW8VbxVuuKurirq4q6uKvEPzk/P1NEln8ueU3SfWUJjvdR oHitT0KRjcPKO/Zfc1AVeHeU/JHmvzxrUv1RZLy6lb1L/UblmKqXO7zStyJJ8NyfDAr6Y8g/kx5V 8ppHcvGNS1haE306iiN/xTHuE+e7e+NLT0DCreKtEgAkmgG5J6UxV5Bcf85Cwkn6joTyIa8JJrhY zTsSqpJ91cwpa0Do0HOhx/zkBqf/AFY4f+klv+qeQ/PeSPH8kVZ/85AoXVb7Q2jSo5SQXAkPXc8H jj/4lkhrR1CRn8nroIIqNwehzOb28VaxV5/5+/Jjyr5sWS5SMabrDVIvoFFHb/i6PYP89m98FLT5 p81eSvNfkfWohdrJZ3UT+pYajbMwVihqHhlXiQR4bEYq92/Jr8/k1uWDy55sdIdZekdjqNAkV0eg SQbBJT27N02NASr2/FXYq7FXYq7FXYq7FXjn5Y/+TR/MH/mKH/J2XFXq4OKofUb+30+xmvbg0igU s3ifAD3J2GKvH9a81azq9yzSTPHATSO1iJCAdgQPtH3OKoNJ9Y0udWVp7Ob7S15RkjxoaVGKvUPI /mt9atXguqC/tgC5GwkQ7BwOx8cVZPXFWIeePOa6XE2n2Lg6jIPjcf7pVh1/1j2+/FXm/wCmtY/5 b7j/AJGv/XFVX8+fzpl0j1fKflmfjqrrx1TUIzvbKw/uoiP92sDu37A6fF9lV5R+Vn5U6n5zvy1W tdHtmH12+Irv19OOv2pCD/sep7AhX1j5f8vaP5f0uLTNItltbSLoq7lmPVnY7sx8TiqLvL20srWS 6vJkt7aIcpZpGCoo9ycSaUmlHRdYsdZ02HUrFi9pccvRdgVLBXKcqHeh41FcEZAiwgGwjskl2Kvl nzZ5ZufLevXOmTIREjFrSQjZ4GJ9Nh9Gx965pc+MxlTgzjRSoDbKGKceT/Ldz5h8wWunxKTEWD3c g6JCpHNj9Gw98uw4zOVMoRs0+o83bnOxVA6zq9lpGnTajfMyWlvxMzqpYqrMF5UG9ByqadsjKQAs oJoWr2d5aXttHdWkyT20o5RTRsGVh4gjCDfJINoPzB5e0fzBpcumavbLdWkvVW2KsOjIw3Vh4jFX yj+aH5V6n5Mvw1WutHuGIsr4Chr19OSn2ZAP+C6juAq9c/IX86ZdX9Lyn5mn5asi8dL1CQ73KKP7 qVj/ALtUdG/bHX4vtFXueKuxV2KuxV2KuxV45+WX/k0fzB/5ih/ydlxV6tXFWG/mfeNFo1vbKafW Jqv7rGK0/wCCIxVjv5bafHc6+08i8ltIjIlf5yQq/gTirJvOZsNa8qTX1t8Zs5SY3pQgq/pyD5Eb /dirDfId61r5ntKGiT8oXHiHXb/hgMVet6gL42M4sSq3hQ+gZPshu1cVeZeW/Juo6rqs02rLJHBB IfrRkrzkk6lQf1tirzDzp5lGiaZ+5IN/c1S1XrT+aQ+y1++mKsL/AC+8kat538zLZo7kOxuNSvn+ IoharuxP2nYnbxPtXAr7C0HQtL0LSbfStMhEFnbLxRB1J7sx7sx3JxVS8yeZtJ8uaXJqOpy8IV+F I13kkc9EjXarH/b2yM5iIsolIAbvnbzl521vzZeGS+YwafG1bXTUP7tB2Z/539z9FM1ebOZnycKe Qye+flzx/wAD6NxBA+rr18amubHB9AcvF9IZJlzN2KpV5h8saJ5gtBbarbCZVqYpB8MiE90cbj9W QyY4zFFjKIPNg/8Ayofy79Y5fpC7+r/76/d8uv8APx/41zF/IxvmWvwAzjy95Y0Ty/aG10u2EKNQ yyH4pHI7u53P6syseOMBQbIxA5Jrk2TsVYr+aJp+X+uH/l3P/EhlWb6CwyfSXh3krz3rHla75W7e vYSGtxYufgb/ACl68W9x9Nc1mLOYHycSGQxfRGg6/pmu6ZFqOnS+pBJsynZ0cdUcdmH+e2bWExIW HNjIEWG9d0LTNd0q40vU4RPZ3K8XU9QezKezKdwckl8hefvJWq+SvMrWbu4CMJ9NvkqpdA1UdSPs upG/gcQr6c/Jf8yk87eWR9bZRr2ncYdTjApzqPgnUeEgBr4MD2phV6DirsVdirsVdirxv8s//Jo/ mD/zFD/k7Lir1bFWAfmsTTSxXb9+af8AIvFVL8qgPrOonuEjAPzLYq35db1Py71gSHpJNQ+/pxt+ JxVinltivmHTCOv1qEffIBir3HFVK5uYLa3lubiRYreBGkmlc0VUQcmYnsABir4X1vU7jzBrslyi s4kYQ2cIBLcAaIoUV+JiakeJxV9a/lV5Cg8neV4bV0U6pdATalMOpkI2jB/ljHwj3qe+AKGU6nqV lpmn3GoXsghtbZDJLIewHh4k9AO5xlIAWVJp82ecPNd/5q1htQuqx2kdV0+zPSKM9z4u1Ksf4UzT 58xmXByZOIpGwylqe/8A5M6ol55Litq/vNPlkgcd6M3qqfukp9GbXSSuFdznYDcWd5lNreKuxV2K uxV2KtYq8+/PDVUtPJL2Vf3upzxQIO/FGErn5Ujp9OY+plUGrMai8EAzUOEyTyR5vvvLGqrcxVks 5aLeW1dnSvUf5a/snLcOYwN9GeOZiX0fYX1rf2UN7aSCW2uEDxOO4ObiMgRYc8GxbFfzT8hwecPL MtsigapahptNlPX1AN4yf5ZAKH3oe2EqXzP+X3m+98jedLbVSrrBGxttUtqEM1u5AlUr8PxIRyUf zKMVfa1tc291bRXNvIstvOiyQyoaqyOOSsD4EHCqpirsVdirsVeN/ln/AOTR/MH/AJih/wAnZcVe q4qwf804C1jY3FNo5XjJ/wCMig/8aYqlv5XXATVrqAmhlg5AeJRh/wA1YqnOqaaNB8k6lbs6uZpW KU6UlkVVG9N+AqcVYX5PgafzNp6D9mX1D8owX/41xV7Piryb/nI/zc+keS00e3fjd67IYWp1FtFR pv8AgiUT5McVeZf848eS11jzU2sXKcrLRQsqgjZrl6iIf7Chf5gYCr6iwpeKfnP5ra/1NfLlq/8A odiRJfkdHnIqqfJAan3+Wa3WZt+EOJnn0ecEZgOMsK4VZp+U/mpNC8x/Vrp+FhqYWGVjsFkBPpOf apKn55laXLwyo8i3YZ0X0Hm2c52Kurih1cVdXFXYpdir5z/NXzWnmLzUYrV+emaSGt7dwaq8pP76 Qe1QFHsK5q9Vl4jQcLNOyxMLmHbQvC4Fepfkz5saC6by9dP+4uKyWJP7MgFXT5MNx7/PM7RZqPCX JwT6PYc2blvmP/nIPyaukeaV1e2TjZ6yGlYAbLcpT1R/sqh/mTgCHqX/ADjb5ubV/JT6NcPyvNBk EK16m1lq0H/AlXT5KMKvW8VdirsVdirxr8tP/Jo/mD/zFj/k7Lir1TFUt8yaQNW0eezFBKRzgJ6C Rd1+/piryG1udQ0fUlljrBeWzEFWHQ9CrDwOKo/zB5u1TW444rkJFBGeQiiBALUpyPIse+Ksl/LX QZUaTV7hOKspjtQepBPxP+FB9OKsz1i5lttJvbmE8ZYbeWSMkVoyISNj7jFXyB+afmrUvMnm13vZ vVFhGtrFQBVFCXfYUFebkE+2Kvoz8kvLa6J+X2n8l43OpA3857/vgPTH0RBfpwBQyrzLrUWiaDfa rLuLWJnVT+05+GNf9k5AyOSfDElEjQt8zM08zyT3DmS5ndpZ5D1Z3PJifpOaGUrNuuJsrCuBC0ri qm8dRhtXr/5Z/mlBJDDoevzCO5jpHZ30hosi9kkY9GHQN3+fXZ6bU2OGTl4svQvV8znJdirsVdir sVeP/ml+aqMk3l3y3MJJXBj1DUYzVUU7NFEw6ue7Dp236YWo1AAoOPly1sHk8UKxoFUUAzWEuIqB cCF4XAqIs7ie0uYbq3cxzwOskTjqGU1B+/ESo2Eg0+mdC1WLVtHtNSi2W5jVyo34t0Zf9i1Rm/xz 4oguxjKxbE/zq8ujWvIF/wAV5XOnUvoD4ejX1P8AkkWyRSXiX/OP3mE6N+ZVpbu/G21aN7GWvTm3 xxGnj6iBR/rYVfXGKuxV2KuxV41+Wv8A5NH8wf8AmLH/ACdlxV6nXFW64ql+p+X9G1Mhr21WVwKC QVV6f6ykHFUHa+SPLFtKJFsw7Dp6jM4/4FiV/DFU9AAAAFANgBiqndC3a1mW5p9WKMJuX2eBB5V9 qYq+H7GGXX/M0cajhLq16FUAfZa5loAB7F8BV9wQQRQQRwRKEiiUJGg6BVFAPuxCvOPzv1IppWna UpobyczSgd47cdD83dfuzC106iB3tGolQp5GVzUOGsK4VWlcNqtKY2qm8IYUP34QUvUPyT8x67Pr Fxod1dtPp1vZtNBHJRijLJGoCufi48XPw1p4ZstHlkTR5OVgmTs9jzYOS7FXYq8S/OnzRr/+IP8A Dtretb6YbaOS4jh+F3aQvVXcfFx4gfD08cwNXlINBxs0yNnm8NukShUFBmtJtxVUJgQuCYLVcFwK uC4q9m/JjUjNod3p7GrWcwdB4JMK0/4JWObXQTuJHc5enltTP54Ip4JIJV5RSqUkU9CrChH3ZnEO Q+KpjdeWvNvNGP1rRb6qt/xZaTeH+smIV9zxSRyxpLGweNwGRhuCCKgjCq7FXYq7FXjP5bf+TR/M D/mLH/J2XFXqdcVbxV1cVbrirq4qkPn67Fp5G8wXHIKY9OuihO3xeiwUb16tQYq+W/yYsku/zI0G JxULO0wHvBE8oP3pgKvsLCl4t+cNwZvN0EINUtrJBTweSRyf+FC5qO0JeoBw9Qd2DlcwHGWlMNqt KYpWlMKreGKs6/JNaecrw/8ALhJ/yehzP0H1fByNPzZJr35k+YbD8yIPLVvBaHTpLizheWRJTNxu eHOjCQLUcjT4cy55yJiLdLIRKnpmZTc1ir58/NZvU/MW/G37qK3Tb/jEG3/4LNRrT63Cz/UxnhmE 0NhMVXBMVXBcCrguC0PQPybuTH5hurevwT2xNP8AKR1p+DHM7s+XrI8nI059T2LNw5r5E/OOzS0/ MfXIkFA06zEe88aTH8XwBD6t/L+6F35E8vXAYMZNNtC5G/xiFQw2p0aowqn+KuxV2KvGfy2/8mj+ YH/MWP8Ak7Lir1KuKuxVuuKurirq4qxT81//ACXHmH/mDk/hir58/IKFH/MvS2brElyyfM28i/qY 4Cr6wwpeG/maWbzxfg9Fjt1X5enX9ZzSa8/vHB1H1MWKZhW0LSmG1WlMVWlMNq0UxtWc/kutPN14 f+XB/wDk7DmfoPrPucnT81HzUlfzstz/AMvmm/8AMvLM398PeEz+sPb82bluxV55+Y/5cLqkkuua Wn+5TiPrUA/3eqKFUr/lqopTuPfrg6vTcXqjzcfNivcPIDEysVYEMDQg7EEZqHDbCYLQ2ExVcEwK uCY2rL/ysJTzhbgD7cUoP/AE/wAMytCf3obsH1Pbc3rnvlT8+YkT8ytUZTUyLbM3sfq8a/qUYAh9 H/lL/wCS28u/8wafxwqy3FXYq7FXjH5b/wDk0fzA/wCYsf8AJ2XFXqNcVbxVIfNPmqDRYVRAs19J vHCTsF/menbw8cVSHSPzC1O91O1tJLaFUnkWNmXnUBjTarYqz2uKsb/Mq2Nz+X/mKIGhGn3Eg2rU xxl6fTxpir5t/I+YQ/mbobN0Lzp4bvbSoPxbAVfXOFLxn81Lcx+cHc9JrWFx9DOn/GuaTtEVP4OD qB6mIFMwGhaUw2rRTG1WlMNq1wxtWcfk4tPNV0f+XF/+TsWbDs/6z7v1ORpvqUfM6V/OaA+F3p3/ ADLyec/vx7wyn/eB7Tm1ct2KuxV4j+Z135dn8xlNKTldpUanNGR6PqdgPF+vIj9dc0uu4OLbn1cH PV7MT4Zg20NhMbVsJgtVwTG1Zp+VFuz+aGkHSG3kYn5lV/42zN7PF5Pg36cep7Fm8c58mfnZMsv5 ma2y9A8CeO6W0SH8VwAofT35ZWptfy88uRE1J0+3kNRShljElPo5UwqybFXYq7FXi/5cf+TR/MD/ AJix/wAnZcVeo1xVLfMWs/ojS5LwRNK4IRFA+EM3Quey4q8vS01XWmvtSkYuIEaW4nbpsKhR92w7 DFWvLP8AykGnf8xEf/EsVey1xVLvMawyeX9SinDNDLbSxyBF5NxdCpoPpxV8eeS9R/RPmzSb6RvT WzvYHnbwjWUeoP8Aga4DyUvtjCl5r+b+nn1tM1BV2IktpG99pIx+D5qu04bCTi6kci87KZqLcRaU w2q0pjatcMNq1wxVm/5QpTzNcn/lyf8A5OxZsOzv7w+79Tkab6vgpeY0r+cER/5etP8A+ZeWZz+/ HvCcn94HsWbZzHYq88/NDzlqViRoemJJbzXEfO41AgqFjbbjCe7Hu3b59MDWakw9I5uPmyVs8rig SNAiigGaUm3CtU4YFbCY2rYTBargmNq9J/KKwIXUL9hsSkEbfKruPxXNr2ZDnJytMOZejZtnLfF/ m2/bWfN2p3kLeqL29me3I7o8p9ID/Y0GRHJAfa+lWCafpdnp8Z5JZwRwI1KVESBAafRklRWKuxV2 KvF/y5/8mj+YH/MWP+TsuKvUK4qtliimiaKVQ8bgq6MKgg9QcVSfVrC00/ytfWtpGIoUgkoo3JJG 5JO5OKvNvLX/ACkGn/8AGeP/AIlir2SuKu2xV8g/mjoa6J+YWsWaIEglmNzAqiiiO5AlCqPBSxX6 MVfUX5ea+Ne8l6RqZfnNJbqlyen7+L93Lt/roTgChV876O2q+W7qCNeVxCBcW4AqS8W/Ee7LVfpy jVYuPGQwyxuLxTiCARuD0Oc061opiq0pjatcMNq1wxtWa/lMtPMdz/zBv/ydjzYdm/3h936Q5Gm+ r4LPMC1/NqM/8vNh/wAaZZqP8YHvH6GWT+8D1vNw5jsVSjzRouk6rpUqakywxwqZEuzQGEgbtU9v Ed8o1GKM41JryQEhu8JIiLN6T+rEGISQAgMAaBgGAO/vnNyFGnXEN8MFobCYLVsJjathMVe3+TtJ Ol+XrW3deMzr604Ox5yb0P8Aqii/RnSaTFwYwOrscUaiofmFr36C8l6tqSvwmjt2jtm/4vl/dxf8 O4OZBbC+aPyk0M61+Y+i2vEGGCcXU3IVXhaj1aEf5RQL9OFX2TirsVdirsVeLfl1/wCTR/MD/mLH /J2XFXp9cVbxVLfMn/HA1D/jBJ/xHFXl/lr/AI7+n/8AGeP/AIlir2OuKurirw//AJyU8tNJBpnm WFamGtjeHwRiZIT8g3MH5jFWv+cbfNiq9/5YuH/vf9NsAT+0AEnQV9grAD/KOR6q94ySXjnnTy+d I1qQRrxs7oma2p0AJ+NP9gx+6mc5rsHhz8i6/NDhkx8pmHbS1wxtWuGG1a4Y2rMvyqWnmG4/5hH/ AOTsebHsz+8P9X9IcjTfV8Fmur/yFZD/AMvNh+pMnqf8YHvH6GWT+8Hwer5unMdiryb8zta1K81m XQyfS0y09N3RTvO7oHBf/JWtAv0+FNN2hqJcXB0cPUZDdMREYAoBQZqrcVvhjat8MbVsJgtWR+R/ L51XWUaRa2lpSWevQkH4E/2R/CuZmiweJPyDbhhxSew50bsXhP8Azkf5qVpLDyzbv/df6bfAH9og pChp7FmIP+Scj1QmH/OMPldo7fVPM8yUM9LGzb/IUiSc08C3AD5HJK93xV2KuxV2KvFfy7/8mj5/ /wCYsf8AJ2XFXp9cVQWsarDpdg97MjPGhUFUpX4jTvTxxVimq+ftNvNNubSO3mV542jVm40BYU3o cVYhpN4lnqdrdupZIJFkZV6kKa7VxVnsP5jaXLMkQtpwZGCgnhSpNP5sVZNeXSWtpPdOCyQRtKyj qQiliBX5YqwPzL5s8v6/oN9o13aziG9iMZeiEo3VHA5DdHAYfLFXzjo+o6n5Z8xwXkP7u/0ycOFP QlTRlJ/ldaqfY4CLV9j+XNesNf0S01iwbla3kYdRtVW6MjU/aRgVPviCqzzJoMOtaY9q5CzL8dvK f2XHSvsehyjU4BlhwlhkhxCnjd3aT2txJbXEZjnibi6N1BGczOBiaPMOtIINFR4jIodwxVrhirL/ AMr1pr9x/wAwj/8AJyPNl2X/AHh/q/pDk6b6vgya+8jC681DXvrvCkkEn1b0q/3FNufMfa4/y5sc mj4sgnfKvsb5YbldsqzNb3Yq8i/MOHj5vuTT+8ggfb5Mv/Gmc/2kKyfBwNT9THeGa9odwxQ3xxVW s7K4vLmO1tkMk8rcUQdzkoQMjQ5lIBJoPZfLuhwaNpiWkdGkPxzy/wA7nqfkOgzptNgGKFfN2WOH CKXeYtesNA0S81i/bjbWcZdgKcmboiLX9p2IUe5y8lm+RJ31rzn5uJC+tqus3QCpX4Q0hoq17JGt BXsoxAV9k+V/L9p5d8vWGi2m8FjEsfOlC7dXkIqaF3JY/PCqaYq7FXYq7FXiv5d/+TQ8/wD/ADFj /k7Lir07FCX67pP6V02Sy9X0fUKn1OPKnFgelV8PHFLFv+VZf9rL/kh/18xV3/Ksv+1l/wAkP+vm Kqlv+W/pTxy/pHl6bK1PRpXia/78xVl9/bfW7G4teXD6xE8XOlac1K1pUVpXFWG/8qy/7WX/ACQ/ 6+Yq87/Nv8pLqy00+YrCb621sANQiWPgfSGwl+01eHRvbfoMVSv8kvzLXy3qZ0jU5eOh6i4/eMfh t7g0USE9kfZX8Nj44Cr6bBBFRuD0OFLG/N/lGLWYRPb8Y9QiFFc7CRf5WP6jmDrNGMosfU0ZcXF7 3ldzbXFrO8FxG0U0Zo6MKEHOelExNHm4BBGxU8ih2Ko/RNZu9Hv1vLahYDjIh6OhIJU/dl2DOccu IM4TMTYevaLrVlq9kt1at7SRn7SN/K2dLgzxyRsOxhMSFhH5czS3zB5g0/QtPa9vW2+zDCv25H7K oyrNmjjjZYSkIiy8c1LVb/V9Rl1K+ossoCpCv2Y41rxWvfruc5vUZzklZdfknxG1DMdrdiqpa2tx dTpb28bSzSGiIoqSclGJkaHNIBOweq+UfKUWiwGafjJqEo+NxuEX+RT+s50Oj0YxCz9Tn4cXD72R kgCp2A6nM5vfM351fmSvmTVBpGly89D09z+8U/DcXAqpkr3RN1Tx3PhkQhnf/OO35ctZ2p84alFS 5ukMelRsBVYW2effcGT7K/5NezZJXt+KuxV2KuxV2KvFfy7/APJoef8A/mLH/J2XFXp2KHYq7FXY q7FXYq7FVskaSI0cih43BV0YVBB2IIPbFXzJ+bX5ZzeVNTbUNOjZvL9459KlW+ru3+6XP8v8hPbb qN1LLvyZ/OKO2jh8teZLjjAvwabqUrbIO0MzHovZG+g9sjyV71kkpR5g8sabrUNJ19O4UUiuU+0v sf5h7ZjajSxyjfn3tWTEJPMtc8q6to7kzx+pbV+G5j3Q/P8AlPzzQZ9JPFz5d7hTxGKT5jNTsVTD RNbvdHvVurVvaWI/ZdfA/wADl+DPLFKwzhMxNh6XN560KLQv0u8m32BainqmWn92F8ffpTfN+NZA w43PGWPDbyvVdV1DWtQOo6ifj3Fvbg/BCn8q+/ic0Wo1EskrLg5MhkVDMZrdiqcaH5V1bWHBgj9O 2r8VzJsg+X8x+WZODSTy8uXe2wxGT03y/wCWNN0WGkC+pcMKS3L/AGm9h/KPbN/p9LHENufe5uPE IpvmS2vB/wA5PzgiuY5vLflyflA3walqUTbOO8MLDqP52+gd8jzQxz8m/wAq5vN2pjUtSjZPLtk4 9WtV+sON/RQ/y/zkdthudpK+qo444o1jjUJGgCoigBQoFAAB0AxVdirsVdirsVdirxX8u/8AyaHn /wD5ix/ydlxV6dih2KuxV2KuxV2KuxV2KobUdOstSsJ7C+hWezuUMc8LdGVuvTcexG4xV80fmZ+V Wo+UrmS9s1e78vSN8E/2mh5Ggjmp77Buh+eKU5/LH8773QUi0nXy97oy0WG5FXuLZew8ZIx4faA6 VFBkeSvofStX0zV7CK/0y5ju7OYVjmibkp9vYjuDuMIKotlDAqwqp2IPQjFWOar5B0C+LPHGbOY/ tQUC190Pw/dTMLL2fjny9J8mmWCJ8mL335ZavESbSeK5QdA1Y3+48l/4bNfk7LmPpILRLTHok8/k 3zNCSGsJGp/IVf8A4gTmNLRZR/CWs4ZDohj5X15nAOmXBZd1Jibb6aZD8tl/mn5I8OXciYPJvmaY gLYSLX+cqn/EyMnHRZT/AAlIwyPROLH8stXlIN3PFbIeoWsj/cOK/wDDZk4+y5n6iA2R0x6sn0ry DoNiVeSM3kw/amoVr7IPh++ubDD2fjhz9R82+GCI82SKoUBVFFGwA6AZmtyE1XV9M0iwlv8AU7mO 0s4RWSaU8VHt7k9gNziSr56/Mz87b7X0l0nQDJZaM3wzXO6XFyvceMcZ8PtEdaCowc1QH5VflDqX m+6jv75HtPLcTfvLinFp+JoY4K++zP0HzySvqjTtOsdNsYLCwgS2s7ZBHBBGKKqjsMVRGKuxV2Ku xV2KuxV5HrP5OebR5p1XWvLXmUaamrSetPEyNyDElivJaggEmmKvIPM3nT8w9B1++0d/Mc9xJYym F5kICsy9aAjx2xVLP+VofmB/1fLn/gh/TFXf8rQ/MD/q+XP/AAQ/pirv+VofmB/1fLn/AIIf0xV3 /K0PzA/6vlz/AMEP6Yq7/laH5gf9Xy5/4If0xV3/ACtD8wP+r5c/8EP6Yq7/AJWh+YH/AFfLn/gh /TFXf8rQ/MD/AKvlz/wQ/piqyb8yvPU8MkE+szywyqUlifiysrCjKykUII6jFWLsG5Fl770FB92K pz5Y84eYfLV79b0W9e1diPWi+1DKAeksR+E/PqOxwEK9u8qf85F6LdKkHmW1bTZ6ANeQBprYnuSo rLH8qN88d1eqaTrmjaxbfWdKvoL6DvJBIsgB8DxJofY4gqjcKXYq7FXYq7FUFq2uaNo9v9Z1W+gs YO0lxIsYJ8ByIqfYYCUPK/Nf/ORWi2qvB5atW1KehAvJw0Nsp7EKaSyfKi/PHdXjWs+YfNnnLVoj fTTaneyNxtLOJSVUt+zDAgpX3pU9ziAr1z8uf+cd25R6n5zoBs0WjxsCa1/4+JF2/wBgh+bdVwq9 4gght4Y4II1igiUJFEgCoqKKKqqNgANgBiq/FXYq7FXYq7FXYq7FXYq8d13/AJxx03V/MF/q0uuT xi/uJbl4RChKtMxcgPyGwJ2+HpiqjF/zi/5ZFfW1i9f+XgsSU+dVbFUVH/zjJ5GCj1NQ1Nm7kSW6 g/R6B/XiqMj/AOccPy6Rqsb6QfytOtP+FRTiqKi/5x8/LJAQ1lPKT3e4lBH/AAJXFUVH+RP5Vpx/ 3C82WnxNc3RqR4j1afhiqLi/Jv8ALKJuS6BASRT4mlcfczkYqiovyt/LqNeK+XrEjr8USufvapxV Fx+QfIsZVk8u6YrL9lhZ29R9PCuKouLyt5Zhr6WkWUdevC3iWv3LiqKj0vTI0CR2kKIOirGgA79A MVSfzd5A8qebLf09asUmmVeMN4nwXEY3pwlX4qAmvE1XxGKvEvNf/OM+u2jST+Wb1NRtxUpaXJEN wBXZQ/8AdOfc8MVeX6loHm3yteCW/srzR7lSRHdUkhqR14TpRW/2LHBSp3pX5xfmPpqoketSXMSf 7rvEjuK/ORh6v/D40rI7b/nI/wA7ptPY6bMKbEJPG1ff96w/DFUw/wChl9ap/wAcO1r4+vJ/zRg3 XdAXP/OR3nd9oLLTYRTclJ5Gr7fvVH4Yd1Y5qv5w/mPqSukmsyW0T/sWaR29PlIo9X/h8aVJdN8v +bPNF4ZbGyvNXuWIEl1SSahPT1Jnqq/7JhiAr1Dyp/zjVrl00c/mW9TTrc0LWlsRNcEV3Uv/AHSH 3HPCr2vyl5B8q+U4PT0WxSKZl4zXj/HcSDavOVt6EivEUXwGKshxV2KuxV2KuxV2KuxV2KuxV2Ku xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVp0R0ZHUMjAhlIqCD1BGKsY1X8rvy81Qf6X5fs+VSTJBG LdzXxeD02P0nFWOXv/OPH5aXDVhtbmz6bQ3MjD/ksZeuKoX/AKFs/L7lX1tQpSnH1o6fP+6r+OKo uy/5x5/LS3as1tc3g3+Ga5kUf8kTF0xVkWl/ld+Xulj/AETQLPlsRJPGLhxTwef1GH0HFWToiIio ihUUAKoFAANgABireKuxV2KuxV2KuxV2KuxV/9k= + + + + uuid:cb06a81b-9f9d-42c2-a74c-232788afe4f6 + xmp.did:945db5ee-7e5a-7846-803f-65206778cf92 + uuid:5D20892493BFDB11914A8590D31508C8 + proof:pdf + + uuid:9e4c6a5d-5850-4b2d-ba62-ca6055f90c72 + xmp.did:a9e5b225-fa58-1749-879e-ee0cbc42b5ab + uuid:5D20892493BFDB11914A8590D31508C8 + default + + + + + saved + xmp.iid:22bad6a9-99e9-a547-b4a8-c9417d49a540 + 2023-03-29T23:10:27+02:00 + Adobe Illustrator 27.2 (Windows) + / + + + saved + xmp.iid:945db5ee-7e5a-7846-803f-65206778cf92 + 2023-03-29T23:39:55+02:00 + Adobe Illustrator 27.2 (Windows) + / + + + + Print + AIRobin + Document + False + True + 1 + + 128.000000 + 128.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 22 + 22 + 21 + + + CMYK Magenta + PROCESS + 100.000000 + RGB + 192 + 0 + 128 + + + K=50 + PROCESS + 100.000000 + RGB + 14 + 14 + 13 + + + R=106 G=181 B=54 + PROCESS + 100.000000 + RGB + 106 + 181 + 54 + + + R=46 G=107 B=38 + PROCESS + 100.000000 + RGB + 45 + 107 + 38 + + + R=252 G=252 B=252 + PROCESS + 100.000000 + RGB + 252 + 252 + 252 + + + Branding Primary + PROCESS + 100.000000 + RGB + 97 + 153 + 48 + + + + + + Grays + 1 + + + + C=0 M=0 Y=0 K=100 + RGB + PROCESS + 22 + 22 + 21 + + + C=0 M=0 Y=0 K=90 + RGB + PROCESS + 51 + 52 + 51 + + + C=0 M=0 Y=0 K=80 + RGB + PROCESS + 79 + 80 + 79 + + + C=0 M=0 Y=0 K=70 + RGB + PROCESS + 103 + 104 + 103 + + + C=0 M=0 Y=0 K=60 + RGB + PROCESS + 128 + 129 + 128 + + + C=0 M=0 Y=0 K=50 + RGB + PROCESS + 150 + 151 + 151 + + + C=0 M=0 Y=0 K=40 + RGB + PROCESS + 172 + 173 + 173 + + + C=0 M=0 Y=0 K=30 + RGB + PROCESS + 192 + 194 + 194 + + + C=0 M=0 Y=0 K=20 + RGB + PROCESS + 213 + 214 + 214 + + + C=0 M=0 Y=0 K=10 + RGB + PROCESS + 234 + 235 + 235 + + + C=0 M=0 Y=0 K=5 + RGB + PROCESS + 244 + 245 + 245 + + + + + + Brights + 1 + + + + C=0 M=100 Y=100 K=0 + RGB + PROCESS + 193 + 33 + 27 + + + C=0 M=75 Y=100 K=0 + RGB + PROCESS + 209 + 85 + 0 + + + C=0 M=10 Y=95 K=0 + RGB + PROCESS + 245 + 215 + 55 + + + C=85 M=10 Y=100 K=0 + RGB + PROCESS + 80 + 158 + 69 + + + C=100 M=90 Y=0 K=0 + RGB + PROCESS + 42 + 48 + 142 + + + C=60 M=90 Y=0 K=0 + RGB + PROCESS + 119 + 43 + 172 + + + + + + + Adobe PDF library 17.00 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 5 0 obj <>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/Thumb 51 0 R/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 29 0 obj <>stream +HWn}޾_^R /֫`LC"ms2.&93=u9fAx $eJ&W<ۛͯ*Z_aG?-r%'V+/Nw =[v1ʨVz-V$7h j;2iqZvJxYd?Nb29v Zj$lȧ%RBs [%nŻDZ>CAW7BW#=w(Aqp6f@Tz\;@BByg}gF(bkEyk5%:hي4T BZ{<؆.@2ǷkH.>E){x|2E}4PYggmu>? D +endstream endobj 30 0 obj <> endobj 51 0 obj <>stream +8;UT4_%"16#Qk>&/&RS^e+D+'(a_JN;Zf`mPmAXV!=SH7#,&:[c47&t0F9&")_X-P +l)6W\S61.j=$r`0[U*ro,X(^NKri,r-\j(I1u7tloG;_rqOZm#M:21e[le=#ZgUPQ +l5fqh,+If~> +endstream endobj 9 0 obj <> endobj 11 0 obj <> endobj 12 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 24.0 +%%AI8_CreatorVersion: 27.2.0 +%%For: (janek) () +%%Title: (keepassxc-fileicon.ai) +%%CreationDate: 4/23/2023 7:15 PM +%%Canvassize: 16383 +%%BoundingBox: 0 -128 128 0 +%%HiResBoundingBox: 0 -128 128 0 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 14.0 +%AI12_BuildNumber: 339 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0.382499992847443 0.600000023841858 0.191249996423721 (Branding Primary) +%%+ 0.752972662448883 0 0.505330502986908 (CMYK Magenta) +%%+ 0.057919479906559 0.057945560663939 0.052277076989412 (K=50) +%%+ 0.417439699172974 0.709999978542328 0.212999999523163 (R=106 G=181 B=54) +%%+ 0.988235294818878 0.988235294818878 0.988235294818878 (R=252 G=252 B=252) +%%+ 0.178956523537636 0.419999986886978 0.149739146232605 (R=46 G=107 B=38) +%%+ 0 0 0 ([Registration]) +%AI3_Cropmarks: 0 -128 128 0 +%AI3_TemplateBox: 64.5 -64.5 64.5 -64.5 +%AI3_TileBox: -221.600006103516 -472.899993896484 349.600006103516 344.899993896484 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI24_LargeCanvasScale: 1 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 2 +%AI17_Begin_Content_if_version_gt:24 4 +%AI10_OpenToVie: -89.6405817596406 31.8513286850885 10.3658946694974 0 8188.47999682482 8187.80830472083 3147 1901 18 0 0 6 181 0 0 0 1 1 0 1 1 0 0 +%AI17_Alternate_Content +%AI9_OpenToView: -89.6405817596406 31.8513286850885 10.3658946694974 3147 1901 18 0 0 6 181 0 0 0 1 1 0 1 1 0 0 +%AI17_End_Versioned_Content +%AI5_OpenViewLayers: 77 +%AI17_Begin_Content_if_version_gt:24 4 +%AI17_Alternate_Content +%AI17_End_Versioned_Content +%%PageOrigin:-242 -460 +%AI7_GridSettings: 2.83464574813843 5 2.83464574813843 5 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 13 0 obj <>stream +%AI24_ZStandard_Data(/Xb[M?"U`9$dBVU"^E,WEyUy͹,m gy#~ʐ|ԜY1xXBaBĂi80Ȩs06 #>PH7cGC0Te8X᠘$#a8 4:7w30 ia8-Ra`v[0H q( Z(0*% JTy#a$QEEHТh8820 g54GiuU6Â0\$2&xp-3FQg6-<3oƨv33o!F2!d㡉s85LJ,lҙYWI#L+"U}jȈ?a84|(pHĂCs-ZSVd8 [w H((-D*C +Fg8;-la C0ޫ4s"q p@,wb Ba8,@\bCHPP?(3&|KW %" cH1vXcPWXwܱN *(EQ]k7ó+CجMUy}:yg!DʴӖdS]v23<'ꥰƬ +|^i7Ga&!Y4f&$ddس20\HH y|7u +'|0·Fgs<^"y|:31 T`4a! +78Aq;K;[$04Ѣe,fQRp79 4 #  + Al@᠁$D@ $‚4 +A*HX GT`8X e&ǃ" *@`u_:Ѹȗ= ض2]fK4&;LI$RBD´?,r1]XWfe}{1_T`8|yt#QsJδc$"U6Y+6O4 l!^C[e*Ρb*ˣ]EoNG)gj<%,n7+L3BmY׊^WeB+z^J@2xCly!O#*y%T8C#g)ѵt ZTZ#Yumny-U#Vo+u +*S"Ǣ$W~dwC\ԱRhqy \1yuD%;o:vG{*+VR;S_X4QV8f2l=bV]7<ѲPZ%Y88 V_%KlN7AS#R晙l58hx+N#=_0lBFe L~dΑz?,"z!:R2yRtūBEź[% xw94e_EElRR#tixM9#b gJY F~1#b{y!;rIEhzHt[zxWWC}<97֯Y=ySJ<#QTX%mWFVeh5zM?gmZU& + 

*k`M!V =XUIjceN Va +z +U p48+pbm #" 4A8f854 C0Ȏ 2R$08MaY!k7#;+uY# h5'+֮8eKgelĮX6ʘ\Ty^sϟG99S<f[%P9LtڽX o\bѴ>;CfoB U>H.۞g//\*B+ Ρ2罷Kz1 U?33"xC[T$Ek{/vQKY5KE|շS˥'--R'R,6oc ҹ\hxl"YGJe^5J$\j,YB'K-WSokQm =}ZX ='bgɖ\FweahfZj$}WbҜ\/uXfsk4>0 mFU:MeAS,'AǾl8ٝ bo|FBIJSCee*h%婗"pʫ>×$:Tf5%X~W|FC%7,FsZMdQl扙M5,wTmJpv$ʰ8IU.4ar>YsXy4;IΫ=IyQT^1뱼bXmd2Xm~X.RH=,9Oi=V֤| [96n{]9+1'f-yxP56@rMrDYvJ{LIomtfQkdJhfRVJz6G^qZVa-:DUGSsbAC{Ű.yw:d֌78Ŋ9tb7Ҷ2]/L4,IDV,mw$[dRN͔#MQi\2 Ce4<[LKWTKtK{:txNS&L m>˒vU/ +ٹSFn$bUy- K+Qz?*3r9Tx̆lISᝯBG$fg}>5akRs.S_%4u&*ռ6ٸT',5튦84˫Xy⡶z q lKc"bb@VR)YDyeɓO%]'x ]I\+sbCjD$J_yhv;emg9GBIi6ĪMF冈_L\JNdJ꘦L:g{$]_Րe9iioߊս[n7^Wn#3YՇܷKߍܷ#=-#D<UZd;bZh4C&v;=2If;SB,zSy^sZ1$jjs#2I|"çy5W` 1.ARZ͵tQ$ORFw'W\use'?+vtR#+ UI,D9Ϯz&WL% hyx%SwI*meHli +ͰO f>JOH\ocX#fa&&sۼ8ͻ5]ʜ؛bNŬɳ+j~Yʜy]s&693Xzjt׍<+s=|roFWU.K֟'ޟwU\GDvS]$ _#]Ed鰰ZK+kdIrYt{HH:;Ff*ɰ=_uY9sVsɮv?:˜ihc2lޥё]}Lfs;MĖ5 +]Xዕ6 |3-t 5mxTv<5[p|rXhzyx_`i}eVҪ׻DWz^ꕧXQ ) }Weftʺ4ӐXh*$5ӽwJ7O3j>wxD 皇L,ܼ[,;;|gC:<<Ÿ+Os0V-oHX'ފK ʒח:)l蚥'ޑvVzTG2]2 eRay;6Eج˄QY9,HDS$,$yJ%fF:;P͘gΪlvÛRn<3nSgc#Jg"LRue"NMY4HԴNR!jNtHd9o +4}F˚Nͱ5:V]o&oJSL4s,7>_Jze֍St*Yv+,{.="5ir'iyEwV.q2s!e/ƜvJXr}Jϝ4XSYsGNh1ݜ7Ze5?{ oY6S:D蔗jy vnv ˼]&W} >v1W2 PFJdq +gvED9R*}jNBtFWd;y*yf;G*->bJ+܅pNx.FhsؔGnTeIxb<&KdHRL)LjF$c 0(1P}BlFgI01  3!CG62MZsu8(kڪAqF!5trCp= +B܈*Öi9/-hSF% `).wj2[8}Vz%띒ez\?Qj 2%љEH $VM(D@}t]jɳ lhȆ҃9-NlSD"yGקiN[WEϬ+N2s@^fSʡIx.6tv^"Gq,d4E'b4Ss+󦶥N#rVX;wr2b(si_^4XfvaSY Wx+ljVx٪F}%H%MfE!af | k>E=VbۍT,sdWS;H{ U\"rN`,1!Pq:Q.0NRPo\, +oY]ؙ~Sf`=z3:lI/, V9hyM i2 FڴaBNY)*whDxbN0aRЧVxbĺKM\% 1cđC2Z=F9#0q*0x /0mٿrZ8F?}~'e]lBzzE']-G!t՘Z{}%@Xpu@t($f?{`fʠqAUMqeA +uxv=5Y@? +s۰׭Ыd:k¥6lj~b`I@̤ OȲG@:$? ϐG؄ي߉-U4(y:n va4許όJD2+?m0k& 7N[Jciu Q7!9'~@'&*Km&> }ևƵ|ԞDLd;B 'R=B|ZCtȇ}\EM$YTW͜2:W9@@Wx,P1k8c)e~!S''~ŶSW W6P\Cne:5Dn[|K/5,$r*J?Ħ TTl޵x(H Np @,ffk6/[w3W +pV۱hKgnV:̜Rz֢%v2EG7G- %zg@ .f J,r0cQġbC\Ocʈovː*rX-/JYi V&^ɏyYRI 6 k:Ҕ>Iv\%IB~m_5Cy}eZ6+Elm]Yda1cHshy84TG( Ön\ha$$.cY0/| $7'nf!տzTb@ +pRX7Qo5,dpBиG=,rZu\?2cjU~Pyqvޮ%2 `sa 4k2b,pȺlg:4zӪL" +} OФW &4ܯwB8gs8_vJ6}e\I@lw ĝ()^LP C|05`R1/+ t+^dCq kk!c`~ϫ{0pgd$7+4 / Ke\,!w^5S(  l h%afg*sb5Aǟqpl,2u9OQ1{mAPe?Be җЁ ޲~] PrEx̊C@Jf{-XNXir>]DJʄ/9RQ;P !u%r. +IOM16_Y=-t;v交K|6J?Ebf<0sJ0%rۘj̄+mueZ8HǬɃE37JK8HSx#Pg鰱}$7F +ǃeZO%Xw]8j+pYͮ)76oYXUlh2Avؘ3J⋹E+(#^4i97ЙAIqkHt+[wjCޖ~! +z{9iPHO9Zٟ{nKkvBZen/㓯Y$ZP9rln2Eu +ϐ>DxA`-M癸پ&@f@RQ'ǶY ]d 4)e?ocpSU36w)[0;ILsS:bM-m +*A`m4|3c*D6RqTif{̐hVʫz$埃bd]#RJrp-؞/K=;<|ӿ, 0iz-i% Ę)f'Fѩg|PP0KG*&4Y=G5˵/"B~bϚ"Ǯ _q ;xVveIC #,xjqSEXΫƖnjaa's'#@aka6c%&AX^kaI0hd<ڲEA&iZ}u`(NyuD$rp%W, Cqňz"NW,}=ɈN_mH6 A=d_߬8*׹(.ԗ=G̭4Q6$MHIfiwK]~-jGdb+_x/5𫁍S%uHB=˓V +$EfaI]` Uz"9WNB$pj"SqakelrQɀVZ8XxUdOIZ :oʸr?  +Į&ob7({Pv+e\8܂ZQϡ3']1[߲ega)B`s0~?fswi*za%TJ!$9tKxBfb~BɧxXoo%6D 1g]낌>v9hEns菘?CM#ݯg\]攊kbmv Rfz+;|zV +FND̠!=A~:-WbcJPqȝTqP\/rir0A=)^_8!Wo<9 ff{}a,:ۣטwSxqe#-QiDFf <-)NjrR=9L$tb1O8 Z=#+"2IXǀeҝ/'z9'XQٯ1.; +$S &GKHay I`|%Q/tŮNRb]Jw|e UkdcS@#̼QB<8/?S Al)Dqɇ芧YVW K5)^I=RD~?,Znllr(:ۤiD.7^WO6?UR FuK`]ҢOSc#S eoR\(߂M`EQ_dSP峺=\n+i:hWhvIʇtfIsaH$[&# |G GT%nubzOO˔-44`(|216S)mX rwasȷ12BÓr;8W@RDŽM=Otg!; puR ++4!~0s~X(R3S0p7 =HfO}]Rz/`o5 ,)؟Krî.ʪ\l/s` yQGx:Xw܆v,:pDǟSRAR#@C C/%k..ճD!gjeS+&vh ɤ-P8:T&0>ZbHQI-lg&:PofIR))4{ɕn?rEvN\^!d+I4Ryݾw&^ $InQWSTFY׬B>M+贛z,FfL̢f$y $ +LlmόtnK;2B&@Eu =KP +93.TBZ)Kb%'VO|HU:#@1^A@o)1o;gNq)H)avkvtcTrTñ{]CI2aJ +mƁ䋈y 5f|S lipHۈbaEP` +^cƈ#fVR1 a=˺9(V a\ѥ֪10]w ;f +֋| ]Jure,YaQ-6?=%̀'NT5hD,k(|몶H܃|as.uJ#?j>;}t>yꎻhݠ!cیO^:;c9~8\܇0i(YwH K3a h%T Yq ˋV 3gwLʻHޝjU2+D8ئ^ F1{R?b=t"MUDN3_E^x)-^V^Pm`+t"HSQҘ(:o[+k%s]2 *KVR 5B(Ǯ2!M&*z=зF-Ë".dB>AMU?mk +`r),j.Sɠ&`@jo4-5I)8%R|aFnBFavC K70+cCq>* II4H +6)?&ԕ=Ssr{_* %UK%#kZ6٬Dqj_kfvg":z2}#]Žhήˌ!ms|N9̸` ȝ2u(֫0`,m(NU<.BOMz,ӱ/eg@컩[lF!EputQfaQ{'U\Ѱ27XVDR6 {+^=8ѥf37*¿J\BXj + IDq=8su7c.̅QV^ք{AtZgy[#Axƍe#xe^ {9~H@rdŕTɑ~iE)B!{!_0LdK42"VISS x A]"3#{c^4eGF6܀Xb粨\Ǯ=!؄ pp \co* -`yK+TޟnQq,l""?=K[ G EۮB3M;?r$f9ˁ ^6@ OoTB;oK3dx1f3o9J^?~E_UJMq4<>H̓NRm5D|ab#s2nHyXWe*~/w]%/eZ /ݨ6kOxV+ڙdrn0;CIQz=<ȻټZ^M펭V;,ھ{g y:?hlЍlDChJe+VEAFʰP@O0,9ЁDQ6S"vk/IYЦUs!.d+eKˬ e(f"%r)(Zyr ij{L}'cx5Ũ7Fts XE@(J +GZEK)&c4rǥ*&kr[/54M ,[U$mح|y*Ppѯe/%ˁWܛ H{*=.-ȣ'1[g+ |*l,; D|?a>g)N޽@. RK8><@t :Z_ʅAM%}XiN|6`j-ս@'@!Q=BǺtehj[7(l=(Sz +G"% M1uбd*`-KzL@Є~A\6ؠb^,^ iA1g b -a8rBks+7#5yUR=mj@rG\S9]{pčbn,`ouc̜T oYVc!Ul7 #(jt3r@lX'K ^Fwd?[v%z]pŐ\({=am" ݁~ʗ Wz`>v#싡/afO + +b*^%ocYÎZՄ$Օ!RI_\TcOV͆ +AJAh?D1!m8-GzHIБA/*Һ%]?:>t}gE/_}-W +#N'iD 1ܠq0 ߏ|t! FK: Gıwze-5EsKe>Ռ8^Mqz=lUSus!j +L,aʀMSßEydexb@^U]6IWN8 z^ƧQ_V .ۑ0A)1p/xWZml g3/ |Sڦck:s}cs`HOd|c}?󭵈87R]3XB8HVfZr'|c9u pJ:N'qu gwWB\ҏ OphN'۽7G͑o0%n# "%kTkHw8ݷIKM^$Ubl-,x/q%)o)K8uP8!rC՛蔖;p_u͍dx>ɲ%Tq7eeK{ۓLS$0;*3KoKY&$"T!쿘e}<8ZLPʼn#ۣ)(ِsH3H$ ء#+!(g6ƹ2B|Cxke @u:G[[{Ӥ1$;v!MMӑDc_w؛`,&6뚺Ů[q) 53 +S3%,0l\3 -Af7 +z`gJ6pW9h5@6z_]6 M^,/>aS@(FɚG8:$_ST#X2[-hsD/ܣ +sNjk1l'>bWhwk*Q(i" =1!\]~YZ|ާ%:)E7bj P:QpƐK&-࿳2sq"p>ߥ~fp(gt2Yt2x.:EʪqXsn#‹(HG/ElBSg )~)&#כ_Pjz)х6G/c@L>[@ad94ʀy99"]ɩ!T8ւ#Hy6i%%͖8_Elk~#E m|Rl}~EoE&up?Gyu4$s@v8+d03OX%>ɊlD&{L2nUҒS&W&OR%(:M>k5^hWy;7!L@}?,%⮘qk#7"( BěM_$!S͛wSu~٪ZAUKolz}/s(L&i:l;[P^EmWv L%΂t@C%0ͻJUNx`Y ܰ_NfA/[)I*&/ Z;&xhhU*_x yvR)t BDgYaYm''%fOw߂hrMjBv) V/^.VT62[IT + wK/ %cBt\?^T%C>9Q6BlɈW9J6 +7Osof MBxٛm5(46uyLYD4RC9]k?g1 WSy`q_a5܊@줗&ȃǽ׼FICy;V32 -0x羠!hf,TrEU S;7]:pT0q%u4q[pg-a}r h'iôi%LMځ 'mVTA?H_;wSL<8NB nX~"x*<%Qn|Ok]iC.g`2[*'-ѭ4[@Cq{x+BQFJ  [@+fQab3^vbvHq9r/쁡GVGÞ>?JqiV`~6 K*26R#Fo$u<W_Q\Azl2Slw=h7=bgW%fX ;2H0=m2Elt5r.r+_Dah}O/0kS5``o ;"]u0]rTwbbA[C\c!֩"7]cd^&r?\%7#}X|MoCZK뒥7@krvpvNF7uɏ6 9:*",>AWr۬{`s{-\"Щ!ok" &HJ&`+͌~bێ~COXs}?+1zQOUEй)*^mo,mガ vɩXȲ5b>dJ/ +{{UE!~2Ǔ'~}?22]u!| >+D/ &10P=. ևZ+$|#E,gP}CgE>=sGe>8/"2`ާW$)je +eѾmU8y\)BBn0JH'?~c)gVWYI20#MA2fvFf䓏*Rf ̦P܂*Fev,2_lVVKq j&+g XOoDIp`{[k$C$"U3xUFHRV|zJ.o<"Ot򔂭4FXlJc=p~RZzvWy" +zo@ݱO[JF< ;o@%þ;' yT+{MY` Ѫ͓zVKPo +*z!g)|wC=-pqކ)\]H4nSb fRE$24_r'jkN8{|rTεNiQs%=g"+\:!0.!?9BY~(;¨?!1ѿ2_<]N=iCY8fHmE$R&r/H(dR~\H,((FO'9Q +YGM-!@8z!S~ڬXHQé7 kayL}u9 +TddDVtk,r{}24_6 +Pl7~*4`Iy345k#ƪs<(PTCC Nt@=~Hj.7uzo& B;JucSs(Ú!>àѕ%h&AL@?~]bD{tqOIM4γ ٤f}X8wT'H( lkas.w_;py;[wtA`Es;V ^v3ArJMJ dtvqIG`p!1GH`Mؔ%I uA*IjEIC H$Rm'%` |)6gВ禖tBc{jRm$[ZKaKtZ3/@@&0(F <QM$O-6 3Y R0qϯ4)=Hlfa|սE zwč3(|¼;S*YטWaMYKdA\7#嵙Θz0 D>/֑Jdft%iM;y_nmyђnOݜ`\_Zc\LE El#PŬ&U/QUmvQ Mu%@O5㊢&B2w%#H,iQQnKBUb;Y:Nt|EGNڝ6u80hJJkbNw~F6aq:0ڗ'FLTn +/]73~<%ޏwś!@bxR{<̇0Ż@+ k%ɰ`J*XL>K8{p!琰 ALO]_XEF)Qf8Qġ8FZ +~/bQEK 6zT2:yOXc +F(R4/3wrǘ&;9;qc*wTyg*(p\$^ЂKO}mRp =#ѢqW|_U8Y\ sHǿPK>84!$01BL/+g 6KkGi.zk鐔gv'FM+AFPqbsT]beeҎleeXa&4p,ig*Raۧ!%+GK#x>裃 )ԷI7 D_ղhUrkJ-`d @8{BTֆf /`p%% }U C2n:y[EתtpCxsej̻_Nh,7tIHoj?/P6Yv,]loUI޿ _+2 Yo=m ‰ճ ~HH# GJHe`3  ~WCG1@f'iDq#>&=+*r0Aorl'Vt[ 0R(5ab$v/I8-2*`;~8}x+3/yكɻ nLbj%tАCO:T<=uF3Fs-h;d)hV'cq÷J}gkW87}|=K-yI>oq40]H2TqڵxX|f@-Eb+c`a  r|:=+mͱ7T k=7.M(akX8/^vJBр6}jdSd>}3/Q<0לY(mpgW":ZymN-_{X(@hW=/i[dšjγ/Lnjf-:[Ec3]{xPnQ- A@%@VLuKojIL|{%;,k ?)<|tʇSj_24SnCpChfXDK_lT) Pϼ xM6sL]4gmOdž}AZtP0h?  8ByXR*yynWpWܒ@F*ƄS@S> + ي*2Nf7Fո^gv w@ZDyQ"ZAUQEZ}@穓pyӧ2c^yO'n.#SR-;Lr." Ah1yUS#l$&伖>Ni@pW2C&;H;pmO;y>3;wRi )bLް/@rzbG7@>8۷?SY  hW +awJM܇͇8!k %6_L +g (47iPVZ"p4ӍɅƈ$dGXSb7n{-P7٭@&Elxu6[ϞF[ycd/\1WĈ PMB0F]۱2w4JORJR* oRucROBӇ!#B-"S;Ŋwqxg8k${JJ C#bsv/>gGqDZ8#q8IsѧzFk(); qw"+\!4/bs8i랧N$P [~ROx)(/ѭ +C4t44a#(8B$ix"rȋKt99^ȻJKЯ{ji3,&ez1Y]4T,-_H ,iI5>ʞVhA{wj]evuG4Z*$>(4+qSfFk>? zz|R*i;53\-d+i;mS9QG~jO-#;ÖkUC_YVi|UWWUċwx]nUąʒvJ+ʖ1*W}K]YQnTڵ{q qUwd[,n\f >ءyjR72]##iʩPbڇM~͔g<_$ҋpRGRWI$JcIC"Av?ZOb~˓/OO| }cO愄#U͙L|%s>x31d 뗱Ot")Ag^g"^Eb=~DLi'v'[ˬcK3/1 N 1s-D{R ߳tiJ Q,)rtgسB]Fal=ɲ/[pR<ųh:ERR[O"ir='5#mXlz ++YHz -Q_jbgWfkQ3)ɷ~LGmU k"d= &Ԟ>kJxrd^rEi$7'GMUʞQnbVa+xhx?yzOth.̅D!?тJi'1;6fguatg>lrrm:/l;eiej}Viu!g0?9'씩E%jrG-z8 JJ!ZT'!TB?o~Ɉ[pr,NΏRUޱQۣC9c ϗI``$,;1)Sв᪷I[o= Z黨eH)Pzc Qk8>?@h $(p``  ,@."RnuBYA# pҺ8P)LD@ #]!|or*[CCީT,?Xփ}ZNmtkWkwC"R)=wM83})>SV18Itk2ŕ~~V/S9$9˸k=Lm9k +y1ȮrzZHO 9T4 &If](=Re(B#a&bkQÉAZ )iꥤDlz +Ej.}) +~5Ch%3!!_xF [bce$x&2Pj)IL&D D mf15QTH/uɺƍ [%Z3*O\QS5k=;o+Nw{Di!j)KI(Nӑxĉk).1c酜pDӈR"!i]M)BUdJ^rE].qRG3zڨ廮-Iez:o~N(F?Ķh% 2P>$Eo"YEbъwQfDVGqUqf2(+iP,rD>܋_4.tӵd jjyh)}̬cy%y5LWx#w?vCo{ f5TՉxţ*eV8Dq?^l{hW-xv6*bxZO:Vnj~{M+ӑh7 1xYgք|WڝX!tÝm4:"A'paH8NԸAui4'^ӉuZx5+~5w|:>T*ăZeJ.rɥyLUtM\'-7-D$N;Ej99Թ]UUÐܚa${2"2GK]ZRr'2nɕ2 E_.4l)ZRƊy>s,nx"gP)||GQzD'g4wq5$~_ؤ!R~{A9sZTBk (T󐘂UT%f A~`#Hܠ^<`)6 +A֬Az>Vz~B֒*ci+6sz D\EҋrԸR9*Ʀd7rw&6"\esb*m*ElVeNu֙ǡxFڐTdF3laZϛ;X)1snnԴ$ȑWCiiEqua((BF\DR%C9by6n^R r":MêDE +!Ad U\BLF&B{wLB2ҍHxO{3pFZWшP"XDAp} +Fջ +JJdDN*խJj&A1$G*VAeFFWGIqfX]OR2rIq uѧ!]j憬~׍jo2yE1\jQ4}J?B'JG"J!TIyqz +9޼Ч ])EFI%rDC YokS3l!(j}/u=oVj"92E.FQFP;#y/k9FfǸr26pTZLa#C*:@"%5vaO>QctNzDF!rY}xqb͙R0|s"4X`&?H(A(K\Uﳾ R8eFD c|4)_UЋ1$ݘb3%!Ty6BA2-C!ZbnHW͜Dz|]~ ΢#tޒ4Py>s6 +:9=z35(4)FK-xYy"EI.䬙LOZ> Q|QڼZQ<Ÿ\rZ @\b4M|,sknZ#\Y:tfb=_3ab +8bs0FĠKOhGiI ժ)eTtJ$9,m!jJʩ"X,`XT"b;k$(j0䉖K\^y8Dբ:jAAdTqNmNrX]92-x&lR8] A\ a>_|ƍY|_-MɗgN}tR&45:􈍴Mq&6GDU"H ch"/[iRWDI}Ar51$Fb7ECs`LD~)x[Mä>bb+G Skr\_PqA$C| A=O݈:XƗF!_Tõ d9aymf֍FUp>4''gg4=KgurWL<'o fA:6!0*@ +Й΅ԊX?'waEhu&Zsh;IƧR Rlޙݘ5p2B"I#&vfYptɐ*xDn:SF_E7\ f^͹yݻ^y]_승 9" +Qz˒U%hw*Oab$GPB^+~D8Ÿ\|uv6[+ uwteVX5^W׎ģOf{FbF)(Y[GLD(~xVE29[n05NydzSJx&AIk,irX4I 4NF::rb(ĪZ-^VlKX r>:9jeK[$5V +fdƋ7ZQ;j jG \Q*9{-$Í&60US5E))NLA<yxx f15ZP4"^ ,q%bJV3A\qŝ)S9HJ6B(H'+8&i2]NZռ +Ou ,;%lC/Vd2ԈzӚҸr=圓zHV W + ]MOױ5}_cZ'!3_+h5K*9#슯, z8"1C: bjaOX0$_D!bXʰ%l*js&!VV/)A9QEFX2QV'f\4T Y$I1s2׉ECQɊ*DGg(LijD ":8[1eg<ȕZ f/./G-QsԲAY/ V(W\X "͟,b~B +݊Q"G5Qf[UOp.MHQ,ZOXsFڭ-5+vU*RO!˴,iYO#W‘dN.).Ireo g̐E[Qr/f2JaUp[$7-*bP.Gcӊ8Y!xp"iL̼RL.vd'8XTLR#Kv}kk9ʝovp"57"*gXi]][;ESQilZ*ؔ!"CԞW,\28*MF抗ʉu^-"IUi5ъCLգDP CfBʴ*j:(O2J2m4f)+tb"}R}PGI]!TQ42%y;U7ܐhSq%^s%cOֺHGS0>GXYQK#3R+'iZR2U\HE-]jc3݄$>iZ$nfit8aiŽhG"X]EȉhhG/$IQKMV.dVt%ts=]iuyaǢבQkE)\NJrNo ;;ւE}L1pA uJʫjk0j*"'BE>F墧n㺗'Sdq'B9hrFC9ٛ7 +̈HHCʐd 9Qwr s6l 167i!IEմ筲Jr[e}&]Y\8z:o,huL|KӃEiS|=oIJVe#");ɈDg!D"ʣԢL9|OE^Z Gˏe,Š m2yRY5*!Hy>GGV(Yt_ZTM$Ϛh!+[ְ#ٷҸӡ߾ C,\(ia'(|[1)@§w #.)nT|pFgV~pZ" IV:3 f0{u˱P4by2%mʘ]l.c2g:Z:?WxUKٳ8ʂ_tԹiI2[Rа d2\0gouB &SP[ +M rX;|`Y ‰E$\R1%ky}Y)ZHNPɓjt49Á¹c4#ViyIu9,oձ,R\-fJϕ(= F2.Pz8'mN0yfw^zS e -MIs>Lg"t]8 gw=Dp@m%DOj+03ZzPt5. ґPJ*~)1ؕVL?'+616+H%UvG/:7 |;+qj8cP[3puIiNBi>p gu d8gZ^ DdݭR8ЄQS8aot`)b~t+x7#d<<&;c)g_)l, -nDLX`_ 3t:_*XV*o]dOHnSI@Ph7 +)E94?mȯEwٓ@57\hR-vp<\E ЇL"P`4 Վ%Fkރ/&r}湚N2T].`%UR}1 AFC*@3(WƀC-^8@meB*+aM&3]~jI[y.oea QI\ve}#g~,*(oD'%7I(@$OE( o@8EQ"xdg~?75Nss t@*(rAH +9{㺱X_X]n`nB)[VA@g:f.7 M@6_D{u`n`z뤼y>2ҵû pf@CA_* iͯŘr6!76$\fS8~t.ԩ%s@oܕdSڸ:?Y)M{# P¢A7P ;Ji`L)Cp5戫XCn-nQj}x< hj@SSYC 17֫pFFiBE[n{6!cy/Wׁx2I~f:*H܀b d8sv922 45Q`B4e"r߉܀Bb ; Mz*Ҟ0&6{2;M+c8VJZJ-?0а(rokX.g X1- *:Q?x[f `aOe XʀZѿ~ DzH-2`kx y $wEY$zPg F(U1nqV0Օ8~Rݜ-Z `_ۊRY钒1b`1@v B - |ݹuNi``Wum\(H_|z DGDp"Js2b(DuoN 5Pg'[!苽Č|-pB 8ed U9R E;ceɧcQq),  +8FnVV{_T9K+P<1`$Cؕw1uN8 6Xoho2Ğn5LU^G/}=LWrM9M)BP +p+IL +d$հUP\ PJX + 0S h̃y>k.<͠ +xLO6*L a +teel{onfHa]$0L@l.Ff.Dw ]SDiɚ|]_$pV_dUI O1Vu#b$Z fvS@IgEkTr߀PApFͤW'وR&" *ڒL~*yqh\@2YNE3>G]>?p/}[}@pYrrE,K9q?",FB_'1xoDJ}!~; @ @$P 0lȢ04Ht@(@@Bkcs;Ij<mb"CZ0jpo@'܂۴.zk +Чl@YJnmj3~Uh5kd 96&J't4;&D R5E`%!}aVL {iyo@&|-yf83T:f]Vy\ŎZ$0xb.IuwN ⃩yC8{SjA13t':{wKjmlcMQcԀ`&-~`hJQnyI + 5 D݌_j@fܘNRh)5᭹;p[CJ 2'bR.._nș40h@v"Ef@!D̀Z]GyX#Qm X|Up:(΀Tx4O2>fXVWv˶6a{2R\4* cۄ +Y,ջeWvP +.(eS<niy @{qD@B+sف Ma@'m | +LygCv~e髄ELP]*B~(f>7 +nV|N`@ma |V+?k)9ýpS6{-`B.`|ˬD9Q6 QS2U:ע +n|3G73ND "t ꮀCGGV#I@W6 L'14nXf=]ywME)zc| +zZ Mɠ&o1VS|\7%.\{Ѡf`ph_ESF9߹umV**`V Bqí@1nP#,1J[7CVԥԀU u~۹+ j˘VtOi9 +|*"|UX ^xmy] +X4nfT[cKWXA~ +HgK Oz8 \,,E.4QN5H(4fQb# P4h?' & a&0HhT*FLw^ %{$gO{="/HCry6zXY 2xSsE,`>ĻV8*]~]>|}^PO +N*=M]Y&lt!\oT `dWe.'rpb:fD@7j8q|y_ٛsi`:'4"`/wAyn%Ђj/{ 3BXoN) m(ZprMu$ +KpNR"M T%R˟(G1ڏ [N iRVtr @zH$r+5@36 Px6B!YD$0fd׵G4=7\svE tzDy(7cMx;]mP0柢% ԋZ][QZ6R@b:wQ(RJC+B12F#2m0 +Lv8Ww#=:a ";gt: 6c/HȄլa/A-1-J]k`Wyd +z% +9ndrHɒR7J<(?a9\{S_ ֏Y +|3 vc4+-(E&@}߿(^rtWX GUIcs g~{Kc42iCv&Y;{?)m#_19c6wcYd{EV0sRr.eT̓/m5E7?!B_hylYnnND)v˲*ƥS'Q p&~ JPYkg1owH%^4fGNgl>;{ӆiǴOє#[~6OI,"`B-Jsiƨ;+hVpW$#sIaCo^ߔ.\p0m\XyPV֡ED6ar z:uyߦPfgaˁwl]2N`bza`n]䡍{7̽e?&u(%?R_~Nvf$ 8GpQߨDfjO$SvR1f'߃;%$%58PXZ-b8uvKdkT~)?%SJ' ݍ#d&"YHSݭ#?#C\ +F[OȿA NR`hYOF98Fރ飓O\bݣcOɑ6*'U$EeA Y@?HofHV{OW;O*ÏͰ UpDu)8|kJNut@/OCSҒKdcVPK>Q' {P6H .&O3*IQ$//U/@:ܽAQ;%$m 4xn߯x.Z%@A;Z Sʋ(_ [ 3$a]s5]g燚% +pUk(k +'KP3/Y?.+OA 7]aYE \G՛I[Tw )J 8gMoî){b,FNr)[}J)@nhݯE%Ϛci?c="~&} '1SQ îP!_%{|3Үg Lԅq25j;i$?cш^A5Q&#sv֊E("D[2o? gUMU N\▊׿u+Jo ۗ_ߵV3$i qR+G/Qȩ A3md#Tv%ٲtӖ)秧|#f!l ΖȧxAUʁW'!V#؄>!gTJ{'%yXFw: +cj|&⇳_X +SPdWlV_*a]H$R +Yex?C^-|1co ƿb- FZ>ڽݤOSepf SNT/?،9a |"GݡkgtDv9%-7$硒1ف[~pI|Wt:Pu~~w,g9Pzg*bo.hT`d5N~UڻE~yN5+﷕Y(韛qr =q_ɬc} ?UFEF2!GyXpbFs>:k/g0uw%(NbrhYR{Aڇ1\Wi@mBMꀖ5 [tZ܋Ee?"ё8}A(fV&f6[adDY?龾 +#y}dBLT]GhHYo ᕭ΋VZ*{x{]`_8X1粽BNSםn^V8\%sT:[~MsǃGӗ'#ӯX˒qBraʂ(]H7GZJ@PP~^2eHK ]yT5K$~PJ/]Y. )dwt*kMNUQQsۍâq8'4X4ϿO~xN +Bx߶o&$ld/0AO7{n|[2oſ0ert#94ibA֘ ķڵD}dF*|`EP)јF:qXf>8=ٟOnU)hb9cQ2iՏ(Ż|Ϗ;%L)".b_-秮|YZTd|ɖR>; +2 +c{N}obOen7H/'+W#YܿWi*yC+, إn_ +a7(t'uCށi;g靾rA3dƩcgC:kt?{ =\Vu[5Fș jn&տ2P,4?}"[/k~]A݆?䤏Ɣ@OiWwNdo!4/ŭ W qcY0O#.%(gJrÕ84j"#g BjfHd߫&r,YeW +؞5{FDY_$8{~('ؿ1HwMZא%l6dR u8&Z^[Pt 1oJ﵄ Ce1{B!&3 |x|={>~d-Y>vb voU5rt?iGYte3rQџgi?p{ˤ;9 7X~©Hr؈aL\Adhܛ>Xƿo͡4D}~{n~r[w2"^s9C:WA" 6Tꊁ: >v}}臭/VY9 +$ڜȊfe>|,oW}H}MRl% +-6g~vϿO6M.8oE\EoS$֞|яpO5{Viwkgo3ʩW>mPn^P6$˘~nkmi=k5rٓ󊏜,A LWZ`Z#9b|BPl{q m?jVqk{`G{&dSb?TiTbpG#O4&hT1[iۿX8]*}1tվڨt۾ov@ DmuJz")m V)Ȋ XcFUr3`;f&_c- p(b-=/l,'N>U+Q.k7~kU3Ͽ$Biuv R _Kg? l />=ǣvk{NA~?(X(n$Q~mk{rCk{ʠzLܵ}`J.+ 7IeeۿjP})l^gR?@E27ӁeiIv2&3zjZ`p:t-ח0Q}>Vtx9! B$T!pVeu.4NUWk"v:+aJz^fS)l0iu2!sxE䴁y>fJ_dn綱 J +[c#0tT8s/%ZBd\P,d{V)@BlV:>DTno(Πr%}.Og`%-Gԑn#r} +&I$:f^K puD+@,|5[V/ ` 34>ČHOQ cZ< %H]TG,ؘԧ8/+}ϸhuݧxn397:;̯R6{hU3_R*+\)Ζ-;W' !P\e@R  *qjmU h}͹4\RA1]A<ՙu obZ^Qhn(y"OMMAՁ +dS9MJMGSNԍTlq\mpbƝA'9Y=k{k +QNu|J {]iMTVz%V1#z() +RGLOIEq)Qn궜AJFG-zQiu^b4qiZA$*$⮨U u=θ{ :%qRI|o z產LOu)ħ:3S +&)-d=ű5;Caja1jȇ:SEh)e_ƥ ꝒkSuaͫLaig- @5UUb-i7w ͶRjw$Jwʓwo̕@WvWڒbճ3@qȆlgJqYj5k}n@!G-yfP<t5T?Gk n]y ,9=2:F#{]u՘XL )79M7X&YG[@TTXNQcE fͩk2Y,K$7J8G#G +kQ/5p@{ G{@KȪTD% +,؆O,,1?>PgpEN\ߘd]4| + QO|LY7 /Q \fKfU+& s4i>5vwcM^VA]}+^?I\dZx_2} ?ǐ"/s~)^6GHgB$ п Qɢav7o[Q頻bTA&P s7pT=g K7ŔPئzRw ~q6]5њ-je;9jl9pJvZ>fEfw( \oT61եimċ +z`ѹK4Ȱ :2TPPRmA3Nˤ,8(DJ\C&sD%_^@MVtGaM<8 w[Or,/6K,:Iu0ZVm*e~8IT ֱ<1U#.#94L v5t$X,DY]G\?ElFpg*[[PItUPn?h jt\jµUeJhRPS\$(x֦U׬@pPb| WЪ8,M.2wN%Y sM7Pg'[A(M'ܛfSPU/f$4}VԂ>i2zØ@;QGcFtHXv3@8;y/H"' +WC"M }MSƱfM7z&5DAVc OpljBqHvT8)A(ocS_`*M) +|aSr̶Ȧ|7 }lςT +YeT .@Ĥ%@æ+VO M|LXAgAoj7M/lAb}A(ːWl_а*r A5/i lS pHG2m-AO$)H m:V6m76­VD4A86eȹn]:wedi{FzЄG~Tw7&mAZ}VŝT:2el3Quؾq"Sun&Hp4d6 8ud8Dd{ %ofHR<B7-!DL@Ah(B9HCQ>#y ܔl~`la[[i {4?> e([YAh68uWٹnPʎM}W\t4ћ7t DoZҸij;:EoVB')r'ϹB^Y T́C7%~:B{jzmwӃ,UI r&◗/M^_Mit w++f󆐽oz)d\AܝTh`z1"X?$qD+BТZ? c.*BU%Fw? zzS8(x"yl vݕ! @5&}u`-B;rz v!$L%EhdmpzYG)DSAMaNzd/BA6d zR\j$[Lb%PR,Bŏ{Ϟ07&߄\bsUs9Zdbb3v)}sڎWEhObzU|Ѵ%D.DTK*f /[r.B5vT>.{!)`gm{2"ChJ$u\$3PʣvnC2^JB?-0@_Mj< Əf L!Mc+xzXA)%X36Ît !tE!B>&U>5$5 a!TEddWu3Xֻu;ȍ OI @Ir&AC! -cp|Հ\E !2^T3KqO,@!$D}7K-Co06@4x; 2 !48[u1pMPgdw D 4`W!4w%5?!䀙F$ C(ut1R!6)3enHcx&߅}bܭA/+öP2ͿD?inB1]e(XdP&2=rlU#rHHt4QMݐ i1+;f7A0Nm)}!_V%>:q4yJKcDzHaTHOOu\mFyXJp,6e=_}| +-zv֊I"%(1JN1q{_0&AwoCW=f'O *y{gBӿNF3!ЫH8τ..E&$nn^Pjta%'/H5v,ъ@M9};zJHTýDYJhdIjzP/" + AGL˞Ib+TP*VOhePzBy' +pZP8a_N +Bʠ8Sr @^hg0=[Nٲk-'#@1Tͩeҡi-DݐNZ,'!P2nt4x2~U ZFnAc7Z Hn7z 3T?Dx  9T9"H<NLAS)E.Y`> 2&m8FO1 QD !ySk^za="=EKӁaO7W*4=i|A(,z_̲tUQ"UXM'bd7"h*\$Lpo<3 :R}\VY +H(bu8L:F2̎Lg"JNiLq2@8$}dː 1Ռ*I*˜ф\Kw* YJIπLcJjއO*)R ׉!.b+bR9”}FOi`FDq;.~ ĩP2b:s9TV11h2 ˬ/**c~JƤ%L4͘fL/JL(.-SD+И3c^: әtItZU̘W1(|oT+c1YXLrX9dT=8YL(k_(RVYB '%I[Tw"hHн /ƀFL5/GLZ-jlK]0 Dc:bWT#9#&IbA|K'o|.UB!`EW.򘨹favLdaRn>,GfK \"LW(2۲#r3Uj&K8٩ep6S4IAFLyC%G ait@ +"+F & ^)0?FQhΞ9GQoRӦ *n)T}0 T"E|U0M5R92e'_ +bq@|)3ԯ 8*i\LbmRĻ-.&Pա:qPUbou9O[oU8-)Xп +L #qޢe|`7%*-&m<S!5х$xO/ 9ѱ$&XBb' 6\BvTSm]Trأ!oF|15;v֥']OȌb*:R +\08!(!+ff@\[N}ڒx$E&9br2MUs7"rL3,u2_o –&cjdFL3=5ў㹓Mj;mSQ3yhI5$5| &Fr2r*쥃Ss*2ݱI $v +7=BPu2mr6 cw8%Z6OA r#5BʜFtQN4.ET1Ps.YqXo ChNI,|(-Q5V5J˙Ťב)PJIgk; +&`GP2u:! ,SA}M_-(mk2 Ebؖ c܈ڈN +g'T{R w,K{vº[^JvMPFT#2i-ҖU +k%3C|@ֽG .$>S3@;S=YNF'Gug=:= mi@Ƿ><|* CYA{QEl:uR]HT;53/;ukO]v; >pE1)&R8|!Z'ҨN+l g|x!s'|'l#b6\vjRO#-i'SyG1NJOjvZ$:|R ʓ ǗOϛ'3TO)Hk +kK"nĥ׋򔵲Y4y3D^R9H019pz/Xm^> ̕{XJ!@RYΞ3uxcm64T +շTJv^O=3rJEa>O:)QKiJT$h4ET[*ޏꘀNnD_NF;FJb9 ߺT3- &(.oFSc('mҪt^ w쟿Q%kv408i4,JH(̛F q]!`]F%mXhUY|gX}Fee]v+\ebڏiHX$jeѷB3j y١RkY-FP[CUxvH]xtH߉nPu\Ld$y5Kqɉ9@V eڪ9Y7m +Rn[ۤwF) cOamH _ + kï`<@kb_֨`歇 U/ EOs[`F xhlˑ)̱lXPW1O}R|QzxT6T4!D\ِ ¥aԯA Gd3Q8Tޅgl%ޑ[ 2xWDCm*! dUVZgA( 3iuubS KQd!*@⛫`&:SM F\E?nr9,\; +$u,i6Uߵ玒@5/*Urn" SdTQ^ >_BtGUoިE UZ4J.n 4PT^⓺G"00mBT\;luH͂Ӷ\?a@ג uxZ65Qt?°;RޜSʌΠU-epUfh+R8+bbOR5ݙ5t:g7Zl.Rgc]K+ M#{Es$%YcE +*2{nLꍤL-S'L+$aWj)/?G }]ؓd@>MT} "=FRb=~k_ksλ2] 9KT EbW6aQu*`)E,&Ѯ"̋suMQk7ڕ ߱#hWSXTQ8U)@UBy8^+dL}@4-Zj u'|AqNMz pKwL*n=4T:W+J*ָ!:"U*a#ӫJٳ* Vy7XqH_iO* +*f4"`V:C&Tc +_<3o Vp7yncXEʣ,è&Vu+`.A su.V!طB +s8+Uo讞NH7ٱd5kX߃ +%c}Ds=5#+mz`cyZa?kاz~X.Rj6 +0"!#zm_YQS,WHdhz,X+Dde'(kY_̳8" EQQdY,nTCrh|jr` F2n$sؐх+m/Y(vg;6 GhgC# L䃙,3_Y{ 7 5Aϊ+:G yQLϳʲy9`IWv#(YSW%t.?ϳDW>stream +ɬgQ@i$k7e/-k>e!1/SVE|%X >YA\dwBrʪn: !Y J4/:M<'xd*sX*!jDY YKT3AzNsBg;~1CpjJ?EUCH2鲠b>ڱn,A,Oe+rKw_Pi7ΚRxzylY;D;K#g P4;LyjᒴgqL[wWy2c`l +d"0`oQ''״*Bx8gI#v=4cgyJ`=@geC[PKf /Ϫ-˘QrV<jy8k$TR15]3ڴvuM"&|BzV,cu@DMJ^zVmtRPϳ0N_1,i{SG/[+?ϊhӊt6҉ƸDʳ$KFe\~xP+;- , 5hW\ g +xݽ +VR^8 غga2~bRYLK,D&DKȉq8LO/; R~X+ŅS$^><˧w hwEw0t lh0t[; +!v|ZwcZ!f1FYhb wVH#4MGV wj.2KMUYlDbPB9 )_mY.Cb +fB#3^{YCDѝEiI@ ; [ b͐GRgѫ,$NYpFMeYOXKǁP`!S;kwceub0)YXx]g WYvn̹ [YVsP(W:gy%uVYr G)E9Kʸs s)gU=)$tȭi9u/W*H E#=6P4SUQ񍳀/BOP6XaJAPT)9 UD$9k$ |nEVVa+q`-O>Z`I8+)o,TAX-lqJTgrhs` ΂YX99v,zEg{+E@,(Ҟ&MgP_+V6 qe (4t;.`Y +RT_#?=je-C0b*iL<қy^XvJjp5J嚜=~X z?z&XExW`JO6j.A ]?ύ>w ZYn+~(5U, ԪEee:E7RWM돥w=o."d= +ӌ717ʂ0mevfD8+$6Oq +]Y:TpOK8+lwgѓVY/8WѦQW8_J}fקNj|e]~3eو+H߫*c^E}EqVg=2)v"]Ճd/%Dapg!r&$8K|SPdz%|CKG|cYg@T7|"9$F\T{r5k w2#2W!g͛-E%Ou +ɥ䚂hh]/p7j}YYcQ%9kԯq$G>tPFXiPWYGBakziB쪰9K`jV7ge`s=I:蠳Pfx@WL-1g?0g -9=IYy9KJfCտs֦!؞hR,19 Ͳ3Y#|9إf0$ҷ^5!ͩYcS;x.mNnf9$DHeV*VKUև91ԬLdCKPky9KjD Ԇ#p,cM',X$JPlc-Y .<(ܛdHa\5 +Df6`r,k,Tpny͚,8> +A.[&޾j5 # G-kwLpTE4B`{o |rJe0:֬KMgehIjV2G`}e5 d}G +(S%o`j7_G,yEzjIAf],fCfl}"'gͱAM?e#Ru&`5x0H{ඪ#3/2Aile?S>mRWФYUI0f9GAriVY08ZoiqnY "˂}KIo2kN=V ,.}jV2*JY1$lC6T,S ,d6 MlzɄ5(jyE Ylӯ4jVA +P&MUC8ff2q!>5pU :fp;7T,bլSFլtYF>r'F=lmͲ֬ui:(NEך]yB5f +qW,/K@5-}eD駲 S-Sex膲fhi\*)|Ͳ./'p>Y^J߱CEP+f= :ep@חOeYڮ)ӗXRDJNUP)1NhT'a;Gf_Pyc5̀E9 #jՖp=Vif`u;ARXAfi2iԬcFHLy554z + +UIWyEKJp8oMy${5X:՟2,@RcPfxXlkŔ2(^҇]!-k+0=nTph?,,eҤĭ:,fa'2Le dwY3SYpY%<5KEBwsԬv@3LW Q,tfH^,͢m#͊;kTm*ŭ6&Jln]bC vG'װF\z̢YmD43<\ctY,ȩo2 ԬJU5#Z~͂)2cysDneZ4kHv1,ys)ͲSf<YZq%KҬLU ]',7P#JȌ+֏Mau$ot @j &e,\A/qۊnM4 g4k}2QVa$5|9,.4 6J-f]%3g5n4ҬhF Z&KrO|4K,r+B#!;y*KiY)LcWaB]jV(<,P@4Stxϻ)T+C͢@UǠ7Z^ԬZ3a\1+S[wG֪͊I:x2P|]K$Bq5+ȓНfMf=OzWȃjI7#͛Ԭ|/TS-HjjLvrK=+QQ1BYkY4+QJ2! iy44k%|/Q,&A˜f7f4&4b+ ,Ή4͸d,f:%rD5+fi\]Y$ƈG]'͔w:ח򩍜'rgӚu`3)+9 Ѻf=Mkp +5 /75KX={L:ٮYxE3X[)t^([j5KDٖ<5zZunYNFwfu8YS'i+Nh%p" v+,ZOSY{62$3_1$ +.,xW%0RYgH +f!T܊Ѯi C%Br%EkV~D7ǤYBlE- >}Yج8eY(5 8_E9)Eѽ,yMi$tQ +^.vrYo.85kWTۭYm7+kX6=2.y-^.݋y0ZY]FSԌu͒0Є9{adWXYR0XlYK+^pK:d,6KIj +ʱi/ZɎ$ ?e6+$BfHfUM eR<.G]ByVQ^9FK,Ϊc=8a^7KrOTL,ެsK%QRz@Eɷͺ^eÿ|ʝ5 V 胳4m ]b/X% z ,g%HJs[<&@q(Ѹ βTp8ϝ(G,FӿО +_ҫ,RpPIqjElN~=7:$0|4@T$$q/9SE$'F8 N:d~ty㏳̊KEg-K8pFStJ*KAc,%nC}n05害V+ H٫̲ĂI8Rٺ^8KZlˍ!!-+ґɊn mQqVHTpj@[ٯ$p^{ Y,GkX’8PJB + ȗt| cVYѫgpNx,!Y2\MgY,׺`Nq%1U q')!<W?BǽiM狝%qOo-3nk <ʺ?tfh{#mAzKu{ FgII@c!dHRгx\l2gʚɈW8n17K~@H&? + Vib~Y/YAjyY,\G8dqV!gB3YF)8_J@4HtU}ޝ%J,u$ @fᜪC geKBĀ!h](&*̢c3Cb,Q0 k)Ag pYaPKYI[oV>)ϖDE!"Ab@m6}pFuY:0P82¬d*s毤p7Wlwɥ{А&]S%y^bp֠R(D ,s!8k| VMUxio8Kr晲'z&ԍAb![ugX*lz8W8V8|W a͒/@]W(|㬬>X\_;Κ;\~Vj oNqU8+0I +)pg"$Np 풧^x(\p2vY{|G1xHL g7  ]Ml*ef^kY\yWHشNg?eqI.=ڠ9Y~ldM +P10A$94F 7r9 x, 2j|=,.ܕE$$ =J"nyT {㬥DQ"˚Z,T=l`Z"9+<'ˀ*">rOT'h[\Ќn[~*{XC'-\$gɊ 'MJ՜ݓe?E&YF9mY^ScT'ʟwDκ6,Ʃ?왖b#'/}&Dp4YOPْ/YGxNHcK; <pΑ8DΒzùҰ?$!gqz(@·5KaE/K%D-\r-E>8rx[ׂ+eAMZ2ϳ솉RrXX& lYSD6r +hzy)e\ȯP. ތơvC60u[ P=Io۟b*gm@*lI|O=#|,YY5}gTݠEQ9Yn5X8K|ԙAR -ve>ס}w'\IYM8igi F2z?) ٗξ!qr`Q`xC b ISpI$ 5衁_r$WSv[Y9H8) +;Bhx%Q<ߩY% D'T ?Dƈ7s;j-A230l]b{d?$89_GD,8=h: _Jx2Z oKbb^q;zS@hZH5/pƺB T\4+!"s[k*\uO$2o3&ɨS,] Ix %2/lx*%+"%M|WO +,޸b ͌3fFΈnv)&}L60M81"aE% AAeĒJeB#М_e`2|Dhe0B2eS/gC~{=3>a_ \?f 8şӭ-0!~:zǵ20{1E :lo!E)l8.&$nGp4h?B ]0 m|dda;$IgdQ ,JGS#zD 3@ 17 Ğ}!BC0˂daD8>!4B %wUBx,gSAtB(4~ A<!4fB$?֘gmCC $A woAB?m'by~GY_m_-}N:ɝk*/Ћw4?H%8M2΍F>!„;?y~<=ʽ&@?B|G!ckA?- f B1$wghD-J)AD 3|GC` z>maN&8,MlD$"m,f c, =R !A'= % j<*&Fyt( +3G/.%>\KG\w!} qyJ'oXﳶ!%/FGhBgè52͘R⪄vܩCD>C"yP/JBaBiF)Q~,+m7HmHB"̜g1k }3Wu \X^ '+A!4滙Zl_Y*HvLh?rC ]Џ(X!h `t1 _O?4\R +^PC4D!U!X?0aZy.HhL(_SFэ0( +UxJA2l䃶?1$;,53V%*ߪwz?N ܆Ja(a؊.c3@s(SOa_ΟrzA=?1|_aA9CŠ?qbd,0Țߣ01DYxIcoI癉HP t/2:|w. '>8?&a>HI A U$T63ǸQHBG$'lɰ$(7&R_]sb:Rթ24TC(BMCc<,G +^ RTyoЗbtU4LI<%]'x J1 +[FA# "EFH3{m173<}֐\uNrZCm|nScHU:Q 1<1UwL:Q+{NA+4t'ȐF#6?cg_bH[*^! pOdHc#@gcH#WiȡB9Ő$P2K Wz؛5(tˤ J8rv4סVD`z1&e& iL +hp8nxTEp_pH;%Z5>! _SAtp!Ґ(ftHBYU-`:&pnЎv…0!-̽!Vmi iv |nX=D`ÐFZew!k2L\7HisHMnFhe ؇ + K#}+T^e>7x\sULPcF ӕʝ k C +i|#"hm冎 ~lBƁTqy0LA3+SApP4ip;ܰܚ '( +p`Y#]}A(leA+ga@Gzd)bœ<iCV(?#@=~4\Bs8g۶P$gsSqr*RҨg={dZ pmE7NW-7DnnZn^DGQ M۽ LGC,ƸgSvʹfNJ6GC̻LJkX _֙m۴ E,Ʒhm?ٺ1ˆ+lʟ4q33ɲܰO;S(&iuLQ`,[Kz>8n(BZl4ltilREh.'H 6Y7n8Fbp\TqD 1 ŽJ5Кun0=9KԵZ24Ҹ~ex(ڰu XKe -(.߻9qOvF+hΌ#i [ +/tEf&4 Z(@NE?ڞy ϶Cdv'vWZ h,={diPDɝ(AX@earIyHz7xsh-M +H,{F mAit/Ch84Ip ZMd@}-=h/S+{]I[AO1Վ48)0aQ'ã:0QRmTX +iGॼ~]"HNSO i#OQ݂`Eϐ~a!Y"!@(aH8ރ +vMfHc7 VC i(ln iqB3'2N(HL|KiLH"L#B+Y},t܂!6\3_MC{;cm`_A +"4I,Ze% iM4vN[`ߓ il}|GBɘB$2!"JHT ,#Lc4o]v!:cIԾ \pewv*VDzyx Kc8AdFq (4h +a0!W?H=ԫfڴYD#, AHcƭ9Xp4K#T?! xy19g|g6=x+!π@TI",iđѸEz"2B?38>G|8QsDZW|s`74nEN4 E1Hib $,pi`vdHoV D{4Dc NIP t1m HJ Y):nE Ced?Zqt >\ +sPR͠hH|V0DPsu@_`5X$оyA^ 2QҠ?9Iqq@FahmAX wfQ +epE!zh"t_=@3g{j7 <~c4gVYKʜG֏!db +,G#ĩX{.ȫZF&QF`=xmQ6[3+N<DkVv:Fz#\Ɉ3K|e(f㏮>b,S,2[5eX~\.v>p&4Gѓ]Q,CO0o NG + }+}}48 Y@ 5hT"(CQ?$/x y*d\UG -&R҉&<:ql[b)d{E,S@)cIF)CmLx/ ϫ)@&t.D[9*8JHWx)2e cA:<O4D~ +-"y2p? S.(d~oJ[~kΔ\-]0ۗ)Ca^0T)EIc-D*>H0ijYZH@顅+ZHC0[`ڈ&pZb1䰢BFf\=*)^>F}4iz>Xt3M&p-z}GCwJrBѰZѰS _bΣ/G)(l yFIєaf9*M@lGC| {p,D )CV>/,ĉ*Fs +&TW"=+ WXϚ2h F9RGJѰ𦱔}4F`/hx&~fO{=3cbG쑤Ӕ0i8h)6zr呟eVj)ff5g=2]}vG6 +=v=N(0h@ޣR-Д[&뗧E F#{4pud1)Cb噸=_ +hoOs1Ub, O5ۣ+IX00rÙ:ORwh\rBFٟpգ8iv]w6֣1q\sԒvmWԒaCfߣ1VZtkO rJIבG,v.B2&hx*Z׷1£c':ZtRP'Hu;|o Aiei*mL3A|#I` 2IdX{&p P X921I02pg 8 snZSjuHJ-~Gi$5GSJnaŢqأѬ$ډd9Aj12^mѮn~!DC%$G&t|fJu!lo\\%+bT#ȵ,ۋ@ 2WqD;c *`]\9Fv3^{ h‹@ _@Q;nJy3Qs= 9h|UdBGcw7z4N`oPA8"bHӠ) k +b1$ |NHMϣ!+| +Zz h_Ea3tg~@üj['$!g7eAh.vS~7%bnѠ4>A=Zi21h5P+.}Wگ8s8R\L*T@Kՙ +}קνm 8XB*ƥ%D '+Y~^\sW "^^[ ;O7u1p4 c9e'. eB{\ T]XxJ.8%Ud՗@0CD(nCM٭ O1ѳq/56HmѰ<}lG6~n4d$( +UvdX6͹p-#a!!,F#iF4^n 'C7 @Bo4_T qkPF7F T節ki"l`&مP-,Yg}WuB1X]d)[ՙj  w!耠l؁[;GSM`)sd6~PU(#S3@h8 yqv'"?hp0 [1XX(_-Ў9s$o4)ӂ#*׋ئU%w\`H 63 +g2Y*hTm/S-g%`KRhx|K|F[KUF:.å-ѧa>|]8U0܌r>[M ټLZlq4~\ܸ/:hZp4r_zhYߡ!@KCRv_s&r :R'! ?p}G#xE{4Kl努mGZaW,qdt?ڡ>cDp +ңO + _ z|KWrpRWRcwdAG$E"+,yx"v-Ċ@Y2sE 7.\?WX=[YߣZp:&ZG~ɘW 3~ +ь1xO$*F[Ir1Vp(k0 [j fAZ 4<Vt֍u B̭"8k縋U㷭hd7U*R CحM|-7ruGc_ 1TWEռ;B) DU]i &\ˤ[hی|{~&t+PLǣqF"hG#iWlXKf6rh 89 0h晸eKϊZa! F`%οs̨ʧ_FP:DkG_lBpXv3`h +bVΤGc>pRAzFBCY˷j1Qb=ƬGcm1i {4RѰv>ྡྷXh.8v(j@ QZ(8MzUx.#&QAAbE8v=$F<.xuQ<%R!vȇ_0dѿp O+JOƭfjh-->PK=;3<jN#$pwZ!LFFa/)ѣmNܲM+Zͣ_K ,<C(֠賕gks؛VХfy$e0=F!Bhg"dJM+t_<? }hXj4 +#4!f>cZģFՀ|ihMlqGw4Y$i5> ]LUI%Sw4fӘzigC~Ffe$0Bp0c\$`D9+I%'4gؤoh`_\%р2E[qъű8ZY٣!F!KZxiJK_X +{wV\fڇdeoFV>W/BIQ_pI-ؒ/" +yqP-_E.P I1@.I#UۮOTENj#% VT-QI5i`z 9Pm6: Ru`ԼlU.5Q}G0­ddps {_dn⏥vN f ըŜ|AQa|2QKS n~rQRMj|腙DG~-$y1[j",?^-^ />յ%x9Mm]ʻ@=y}b\]RujGj̚t +SrOT" iV ص6E%g.­ʅbږ\KM\ r~ G~\\WGR[{ 76\4.q\.RIJ-(oEŒHxԦԦ-v-`J[pGSC([|5sBJ$[x- +K ~kֱ^ژкZ̩ZԂ"bVjVBM7rZ@Y-AjRZ +WyOa&|ԴG V 2CȰ][xpUM,RtWg,&,Tm̢ŚFZU, +e`X?8PpXmcAd5(6ܮ漮Fږ5jsXa| 擵_DtIWkǰVlcѱǚ|1Q&^c}|Bڱ嬱PXX4Y,DIr B˱LQ,H,k"ƆCT|ĢV$ ް0B-a!f{-k0`n%X,k'${kcXp_q& +++jW=BzE w"FWtTxt# ʍ8pSYTQ1EQAL0CQ*pHwSn{ +ES['Ny)\ I9oqMq61k{;v7ʙ⍾Դob?~{S7$0fXbbp#zT \JBpS)+Q~I)^@)*IATk/)]RpI +#)<- +R(^ yEuXU!Dgo; |W-UoFkvku:&Wub'hDNP&;jUu+Zյɪ X`'.TGGu0:؉Jmm1WI0$X:8OMHQ&LB%1Qg$^J<rI"0IL8I|ף "Dz@g!!﹞oBq&!ҍxɆrXڻ+s!c1Yf}G8\Ļws e{TYBx V5!n‡8qHp3}8 +bJAP"!vA7qC- +\AĒ 7}io 4v!K璂!6A }$mZ]A3Ǽ@U(W؝Aq1 7 hE ~>R5!7#/-@q ™+Q+|+.Wy~m`b~ +).9m zV.c%OS>4ǏrgD!~l8y*Ug*[?ݜz+ۏU~?XAyM'omN?!#oLt;h:R y?Z {h@BFc_Ѥ Cd`neփJ < z EJ kSxGFP484x#F/A',B,v5{ +Iސ'G6&OP 'T?4~j&([ӗ2_^O4Ճx3ţA)(S5f"vB2&$]~HO?$id4}mއz f8J +> ,E)WN>P~ܥxc[=ZG{=!60pxZ!'/&̡҃>u |MSbx< <\ j./xsTØcx xscMedР S2; +@ +@pK~;`I 4]&td ;YuN't:`VC(Fd=T4d,atHVp +YYH6S~bsV9`Zs`PfHA8<3|r-9pn :c#"Le&~ơ'/8x8f8|T0 Chܿ!}CHz2hooȤ7D8A!vڄ>^leB1.M]70U~edI[IKQ0or2H7"̍#EE*Yc +W Y7*z9~"tn Rl ^ ׏A+iʎA+/ۢ`A1c1(c /8:Lƶ p8*PL#i-|uó<͓'e0.O xGnP7pCuA낵]Ph޻ua; Յ^ 0O8r| WǦ E׆n, n;]pta$N՜μuD]&;"xn_ /Bդ.̗]jS6R&Clp]0C\pI;\s%] 7.].3tA,.-x[`yn-Jmala صNszZ(R- js\|shYL+ H, AæQ  K*~z> Â`),88 W@R@tA+vsq_{+D\j-28չ +4c4 +=$02][Z +! +̇*) +TD{*I +)R +Gy0ٌ¡ ꢠ.dTQ؛ Q:G:LPB’%A!GAaHr/k P8Op8y'%(IR RU۝@!b,tQwB\u~w?pڼZߝpDh wDuw:;wBM;N14=YN@ _a;A/X޹: :6 NS]0pS 9DV[/3٩*wArB8͌]) ɹ ڄa]XOMXLi&:˄#hLHJ LP_KPDouA(wӂ|K ̺^P\]¸%i\K0`A]P;@]v[KuAL(i# Vz R.aE?tĠ%, k]B7vr^. %^gxA\.!}68-A#Z d LPl+/~{%\Kl^ &.`J rSRWB/[G0X8Ȯ + y\/HQ^ [/ z%ےD`IC评'K` oNa ` %+0X=  K,V +a FXKe շ+X-O"*#|4vXBh08K0He`m] !o0HIncآQ(4KMO K MF 4L( ·%̫~FhjZ$ɰ`o_{$,t^IDB<`$0_iQ- ; 7O%%Ͼ0zP#`k$Y$xH`!NT$G*|"0@ # ϟ`:B#$kW#h 7a +F -epP:d@BE +B@B ~""X㶕^!B'KB2/xGabT_ C95!QUr0Ua •Z %Bȡ/TD\oA`ӅCUurp:9a*9?| A@ ƒA:w<@5 "Z 8bY: $%F0Hwж?0Tl[R`p7Ћܭ.:WFQZҀAl{%|`mGaa.W7͐AA*_lΦ`0 zyoqFʃxBG@v|;$`!ڦlD`Kӝ;9]h=اb J頌 `,ab9Ls`:E08'Qy; @-d86⁃L}`ȩg}J|ܠ}`66ةŖn`b@``<56g «ADC[Uwr15<Ԁ/ J: Pl(0 +\4 +ph@=A*hp4_f, fpA^ {2Hʠ(GAL`Vϐi!ǀ(Ot CJ +A A۟:#y{a`. F`\OCO00U` A# w/^ 0=G D.. >sA0XqsR. F=?AAL,d A`DT9. +$2W2η`PY`7<[p-ȚbZ.`a;oQz O-} (oZ#߂) JS[ 5motނmނ [[n&b|Y -Y@#o0z 7oAnlAA~WzL ZK$rRWH|RIau0.K}_]nbQe~X۴>Y`\SeALW27z0,=+(׃b~̵U8 +P.,.kIov8cSYMs;[~jgvk]ApʏU5RbH=U!B]C<?gaSA/JzT 3T@(:qjO@BNGje+0d I&*&jHWLA`p1DY +Qn"\w!W?$6B| m7 +j- Rko7 +XתEAý% +cctV<]Ѻ笾̄R&(4(?r'tFXyy1 $,Gj Yn.rv:-?t_+'zlgۇ0+N/.@*~M|Kl6355EMĔ`x4#S`A*,[댃PȆIfKCY|҂xW\2O8HT=^+b*.%p; +D ZݓS$hѰ$Z<4rI<;K#pF4`홁G G,gd[P,m <(gUD+0 regV NS* mE M1E*n2WvdJ;lnS'+D祦X'Wn AbҞd[Ji7Q]"+ID)A#bM w7v +V1d{!qL<͆/r @hECl2'ߜL|9#R׮9GcQ6C +Aq䕤d,roX"pO+t p>Nb/Q ePh m!$P!#w*kC=S9apL2?rF4|yŤSp94eiOK0%S?JBsJR.3+]3.1wNBL<9#^/"2WTNEn?4Wܮ㤅!8- [CpBY'CpI?I~CdΎqgPJZf3Dǹ=crRDOb#3ˉi\$H4"D2fiXLXH0 Vbf!Lέ>/M|IRE:c)N[^d_ӱdt:lH9mD%fZbQmfVC8xG CuE|Bt8Ψ%S->tm+y!/ horbJJi5r5Hk -Q_)AפdJWjFիЮh +jPL*l~\)Ơ4!oxT:%TΌ@: E/a4iE3b  ԵD&"^FWuF=:L٦}:gs;WCN9Ճ\ $2e 疫tPrPRp佸5,Uz֭VjZV,o&N&Ԓ͊?8dAI'N4uH15YZ(cC%/cZ446hG1"8(S)UZ0D 2 % 8p84 .@\`d"P@ `@ @8@.@@A* BA +\``%`d@2.@L!*z`ԠAA`a"3331ĤJ:2*,&47 /܀_(s /AHe"^ӚDJbes8d`Z4q Osφbe:-#aB|Fqx/ +&"-,6沈NRl~l3^dCZMZPE*Sǂ˙!X0MiAE-PT Y\؂^--@1da! $O.wla #mfA*XmU-T{-Զd&' -d=~,+8AT@p 0@0" ؀  L  P8'T"c%D˦`JFJ(8\B6РdL +V&)i h 0D2嚅!ch ©! Qg78 nQeȊx52)RCT")Pp寚2VKZaSbIԚp +%W(LC/ld*6k"+`]r?dhP eaDU +/ =HJU|*%/ĝ9QfՒR Q}C2QCˤȾd蓺i<*ײuZe:gLdt q<$}%)^f +rfv-?rօmsq]jސva*uvK%t/Y;J{ *yؚ, * ]Y~2IHɘFIٍlD"zGEcD pa 9d\*f@v8R)TU/ 2jšY1CYE5J~t T:U2]lnZiN/DF}U ׸ܛd @IÂT[~~ +\N%`X{g"G<e^?ﭷ0 K/1hyD_GK_|1Cr܊_qlj'V?ˆad{*GeLs.b .}vԋo놻L,#-dUKmLzRe_9V76*s\ |fk3KDt +K/K -$"B(\` +,~ %C?[_lЕ smËoގfK9.ŐG 87P-[*e6"HH#Uya,F8FkgΗ/+Ecxx}#HaE6ʱ!&PTw\x%1dF'HF?向cou! r|?2Wr& J_ 6`0 `,z$}p6\X%ȸc+$a*)BP|;yD n#89h(| a`$@ Zqe!}%=wH +Z&tB!&"9 W8B0e] <.ޓyK| wc`K/-8`=I t|gnVGrił>0Ҫ*m`E_kfݺ\=>@ <oUn;'ri,čQ RkRʡ?O\#fl96iK|)FO(31??:7ET/zU:ǝ zB[qꦢ@])^[h+*Ea'a)KTM<:JsqvnSO/vfbGah!c~U̹W )Jm/xkQ$gF}iM[½0.fG|z&-38>}0@5}.qRhlQr-1D\6)`ñH AC-$LS:/^|Ay(%Q+vjf/mʛvrsGLl rT!9G`:g: 'O =K8-| u ^{yyA CsA߉t-&<| ^ Zzzz036JBl'q{(.NHg'=O%/!X#l4b.Tw m[)hg PC"O#fXvn +=]c,j0bR]V:u#\ªfRD{6,7I^Ak) +(,_3Q Iқ ,k2p",WB'sm¸Mݚ\jZ}!hl4&(Vp=mYl=NT8pduxn+~]8|!e(?BIVӤa(fJUGTϢv\NJCU)L +ӷuI_k[ } +o'F#v`ТˑD! 72 +;V/Q"X8W8}=QVw9 쪒}L>";[%hHׅ0YJIK7s,iX.t8By +•ة/&AaY%X:k 7wu}$]oRCQ?MTq; ӏGq'Bxn&n2sTcdH$Iٶ;M" x~,C4& ^LޛI\w~X kOAl鼟}{e(ig2>c_aHkWi3r܍vĻB Dlf0B3xxA #\x5O@\/@dkn u\ =<0rS x"K\o2N= 8r%L} +gzLaqFx9\{3ۼY!5W %ߺ^o~GȥoF7RDE E%t|l")$u킚`.K7$izz} +i{V|b*[Vꀝ)ڕ4y*TzyqkSrT|e ݢwx!X&?77!rTDJP< 3N/"9U*;kbvfml[mR/lh%-eMͻ9T2[[/^ݥ V"ƙf!TAEƮ#\s/HnBq ӱHZp5ͫ)eL/zh9i U_ Š(򾮱Q"wHPD`MRL(D5enxAAfWpDNDݽ; +Fm4!SVL~хt3>8/ЃM~K&%F= /9>6kԡ?MYmYx^z?C:" +7g6%updǍz%UZj{_zW"$C_ְږ.0)k#eYI6Az) +i ׾O7j>6,o`haLG b7Uq1-o^Q3W!yk}U}uC c=G-D1yRT)CqFbg :1 .C%w'ЩlRLvm-bNCE7CGBt[)`5v*h"+ggkӚuTp Uc:Sh4i|?c0aǝ crTُ݋@FJctBE0G~QZՍ2:sV{>=?b{bBx؏Ii +u=_Ql41+b{,46XǼc {5!(6oҘ g %k=6S/Q@fJ*4V=Z۸;̀Vi%g}ƺ4ZB%C;&U Gynjձ;m4JNÿjPQkJHiw!|1G~,% @kLj8VP*|̟ǐ(k +"\iEX]F$:+ A$15?~}l!󁬢WXd`Ȳ1{1TY4tXH|,٬ jP !K#Y1$H̃JKff E (,?2ϛ26TU{e e V\mW, VeHY:%fݘd.*/ f D5HLjbc5_=>2cy3}]=E6 wOcᚖƞA{Ɣѡ2!P|UX&Zz!#C 3uyvhog>:~DNK'h Qhp>gbH&&YZO+ +m<=v=44pF4K9A$jQq55a>@[.JAd4ߵZҠZ-_, vZ@|F䜫W#V /i0?@X !N ӲYsT*&P0a5 4ê*)$rF]%Jc2j+j4]Z5Z㫦UmZ6W6&y^iQe/-~T v ,1j|P5SxU8pDfe,wB4(Rw:B~I\Xɫw S UV{V#b=jbjVXmU+ҸyhU+}UͿ'ciDU)y9AY +tcx#i5ՈY"- YݦX4/gY!OkwY^Ak>kg`ԸK4 ot*k*=kZsaX4#wR@ө7rkξYpZFLkʮ; A4Є 9K֬e*FAyci[K,ci`id@(Ҡ[65Z?Ҩ55/'J B,XMdiӵ VciH18~ѰimZȵV5J# T}-iҠʳϧfZZ4\4XD/.\Y`Sq@m̵k|5LA#Al隸ꚾC6*q`%8gJcJckڪJCN 8[QVi0r4mT.>llUSFd7ڹl6%$Yiel}ж8vQqMKjh٭҈ckJlm>lHnKVmLHi q+7Inp[;t[SE[Ɠ[ihn:q1w#^i4U>FOM"Bo'YޯI^k|CB[K,]GJ `Y37@NB+ 9$4 WO4\y + ZiGqQ+ rdnB⊮4@+n}~qqEƁ<X`W`~\9u[ [LFTr@2|ʥ]ilr]P.7cN?E\WJOs0 3&77p˹ sݹoJ#XV +J3SӋXi* n`rV; %t:U5l]t34IҭZQfJG/J#^#7JHiuA) Mne$u:ǪV'_]X0VJmX9}ϸI~.P6 !S6 8S6]NPםPidŧ^ק4Yס) GE&{USE`yίҠSbIP +^9T0jY* -օUGuY]idEiQ=GҐ-NUi YGU斳duJÝ&cu* _ ,XW +0?Ҩ>0hRMaΣҠ_TQitϺ,oq"Fy\ n~.T8T4TqgJC'luޕE^ 6g]ʹ(JV@[\ C ˆ_1oxd@u ;D GvXvfghЧ!+ -v*!v$RLwi: F%Qi䔆tWK*ݍ .!w)V@j,mJCs wN;ϸsUJTc4b.-{I` eNiDQ8#,+/CڟoiUb+2 +G]4 +ꏔV@ƇIPwLzqhNY;b^sˡ7ab 4AaLF049Ɛ3{|1{w4idȪI|& L$`,j8 & u<{kp&*k￷8iKatsݳL@3=vO>ZkFZhrķŇa4>}{|7Nlm?䓆-TlhQ8RBiL|94ta."L4=MY@aXCgKJ >~ uHJu4S4t/ -~ r҃vSp(ѸΏ!J#xpW\flnV#̏C-PAREi4W +^Q0W_"cF{5 MPCX>~F_K1ayc)) <XWjzE?) &hWEiJpJEi T[H^  +F ;` b("5PMmX'`Jix-4 +t6-Qāl#N~`B {`t>" HPAJp{3ANrHc'dFyY]hHe4(Ar yRHh0׭:*ҰfYHœT|)A~[C3ŀ c|[`8ko1i_ wv!KU@IꆭT| R#$\b-yP +n NIRwn > 2lCS@03plHp ED.(ZdD{.{wpHfDtA|`OIAiffi(`I + F=Wհ nD#R,F/H D>d~FwvH#{]0 C! xT4R4e<5 MD܂ϓ $>/&NZB<1 z"/PCavB|aq|/%UE +4ihH &4.4 ЬxHWv|M{ j0 q1H?.}';јI .hc[ш7GC~hDrҸ.xVsynn +QL@,fR/84H㙆h^pG5]:PgG ;BN42hKzY4r @㍼`i8 /ČBw 6M]{ /h01Te9n:? >?~[\t۷4Pm?XJ( h24Ẹ@~^d^'! >/Xz=R!A.y6~0_3c0x iA*#PByy áH?Mhh0! 7yI n8A za&){4~A:`ihT !(qȕ=-B>TIɾV? 0(ӱe(8O +ՏFgQ9ࠊ ңMT2Gl8ғYX3%17C#W`3},Fb;iEI!;58K6G$`u(0H;rͣa^'v]$;RZo`ϴ;; +O6*RYE#Tʝ&p  w.h{O pBNl rjqGɣ08HKCaC-?Py45D#Q(_5'2W26m`D8Jx͟ApG9麦1Nax4ŘG-ldPo, +ڥۣ*TVIEȀ +n<Up"Z1~*dA5 +z4ܿ69O: }" +#gxo|FNz4$cyT&@tOLQ(|4  T)9^ ;h 3:178i|4J&4QYL=ĜA$Y ½GcUuC8TFa࣑͂-. #z|4Hg c6D᱾JbE'F#DZrO| +H!% H*拱IHLqhChL5dbKh>itmhŲ +CG3\&6ы&GCqEQjܧevl(x+>Ѱ%WEhˀ3GcPE&hƖE?X6|v GW섇C=H$H)#m>n?πahT6^RFkUTlaY⁶etIuăVqeOҨxȱ)/PhҨA& u膸5 &Bh 4FEv +5!F +-j֪ѱSHC5cLBs! {O4; X1= +ZWh$4dFc<_ i?6A*yH(hAaL@miȪOaj5wwB}E+@ X$M'M(A HA[g4 &¾v Sd͇l1 [J0EJ;6 L7QˡJ1s Deuo[ +'Y'ǐFO +~j QCkZ45ثDʐ1e.0RѐF'ΐMuUbnΐT~JQ*bD2( JjҐƆKvEBr!GjbHIqG! i|&YMWWӑ@8}f5*bH*_3ajHFA$%^vQP|o1xALܧАƫ6d4PR1VwhH|ap01RFsGk4nLK6#"ΜQ@1;l)+rϷt/QnAQqބS8kgdQz`J;ED͖(N +FѺJ A3[q]FHFa/L0%[|^y9)-)8жֱR}PCRa َoRwP\iԼ%F ݰ)[81dsOODrn\m" hHZwh=nPNC7aN8':T gCXz!р5زBFOŐ<i4$9 ]Jr="'' 1{"HC3.$ope0ryc#wVUVI(/udD"0H ^8Ա &gNb/F`4>RovX}mK6zHcr<I嚏eCO{ֱK8}v@dB.1C`mjQء"Ҙ0j=Qx4Yہ:ƷEALCYEH#Gt=ҨXP*8C`IX g'EG feA[gjDQ@4,5xz)2%OCr\" H&+NQQ]SkHL$ȑ g ZAdc[ךbTہt0T9Ai0IHI.dM: pSH~/ "nlb3%&|e™HND~|4^j:G`]mhfQWPȯ0!k;tbsDhv=@aSiAz  ?g[A= ?4LlRKsXDoD#'3)Yaُcl`s@3\t;BF(Avvv@3qf9i4edcHZxdHx&kNBۢHxD&3 y3RNLy zlƁũ)"xvxh~ܳGWWaqj;wvjekFRHc"5Bp#G iXn<0RC;C/2aκ@z4 uJ:8Hc\iVA >bk(0HFIs#V_QK0!|Rہ>FTUAi_FV+ghLg(QCkEe1?!¤ȽpBw2)bs'䚜9mxMYPҨ}\!Xtb9!8\ +c I@94_(z Br0LGwb Q6f +UdR iɉ6g3F𳳠E$+L[Xz(8n!KXHcutp]*_KfHÎoNJِFե)v$bHN(;PC/XAf+!XXԐo4@[@yئ>O1kf |1O#895AͲiw,`Dѩp֤Ir]$i %(OyH#YPENPL &[ i08/A8ĩ=UHUnYUhHcm1rNxG4æPv`?C%҇4Nsqֶ#Ҙ,0-eqzDstaIo(X 2n z{1 )A @SR`=ĀPAHRJR**kL9<6JV<읩IȌO Efjނ&g(R؅LavsjUDlbsDT?Nȫ(i2ssrU}k8壍eX?3yuL@̔pNEqaj m2- iu:S>ch5\"9L}dfRAAD&J43Dɉi:H::ShV !oDLFaNwdGbٵIRPk^HTeF=MXvFX`9éWb]2bMˑ [\-M` aRc y\$e{v䞉ȹMHsu;p=W.1|F_g|b(F^\b4Yp`0ዢGFN)HPp弪gp:3HUwgI'UMu΢xUĆ7'$PE ӡ,CVQM-5|1f`f"6`Uiw~ԛe9#B=3Z 3J"*MF UtbĠmd84R\)T*]yhػ&-_bUJ!ݝQwrq\mF r8; ;"1%0 n#"A!V dnDI !~V4T )u#2WC4\yN2!::U01rӒ!+j0T!Tp'(3)LUw5IU}Rfț3nS6YFYI h_(9f(M`=J^PMQL,5JGɂ^.Ŵd5A8VQ +nj\هU##*:}(me%*ɨ y4C{.Zt*z@W i{LT:.ނH ά +A% i n~D vA!D:A"Tg:U) ^'M'Fك} 5욽j%ߤD\viL]>N"c4)kI|%ň:uv{L¾a|8 R_QuPnu|ї0(ށP#p@9X@ITPC%YL?pc PUiEΪ׈wUjh6BXUm튩 +'ck|*XcRT͸PbL<~Hŷ푻ĥP4bL>]^^4&ҋ'thG"SoT^Qpo*)nh oa0ݖ f E^RՇ#zr3YZKK'†Lk 5-ٶJ 9]=B"<|9j.<' ij*V~`b%ƓA$E,c FIQFgcrxXIXKt|/irw-hb-mxmRnb[1YDM? iG5doJ]Btbљfi^n\&Hw|-ʫ]WJzZe$+ ˼a AeC΁T!Fn{aM(4TTDU^4<%GKKчe5+x*䙋4`"HԘ +DQ iRGDt֌-Uam;WzyY_F`/R_ +23+QqFBSIJ(𦦘%b7,O|ϒjw/Q]K5Z18GEtTZUdJR&-TѲ{@. 4!ŔTGZ4UTR;=YI j*v K;*<#S]#r'hBΉ1 NH8R=h7&8mQmk$H&O={< '$$AqRMy;] )vKL24!!!OLlqpT3"D>U?AY\??o"hr6-!vxH4b+Vk^cHc&Y]HDZ k}}QxK%5K裏חEo0oe*y]n*J9~.X'D/&gGDSqNcާTNB@1sWG emGj ^^XtO%T4Tr:C< IhPѸ{zD lH0T_j\`D\ ՐI&:yh0$%󤇊b("*j&(jakTBf"d=UcuPs8V#Un\5b#xZBO2XJBZȧ1R!l(38JWszCL!8i9NWHT Qpf9#| 2|bnCBNAX +".k(KWߤY @BCk7 gQ<Vp< @`hAlp@fP#`$P +(x` l@0P h`:T4 @ c=/"{Ucj AT'c!6ΠO!\+Y`[  "8pA Sk`,5؂ B?Enx2z~=8UeӪ[,&n (8U>5]&Gb񔣊zb5He"fkd aX׾&6=^ RECi#٧:"4aR뮪ܒT1pSY uCѨ͜dw+kfÊz:7)4 /$̅u7TDah OSIJCsɓҴ&:iTUhZ <2Z*H (1CfF@8:.TAE1W4nP)P<\׵>1XM'O_&Vv)q!̰XD–%"ylr,Ct 25k[b!cMnڡLtG([i d5F-h^@o275T{}Ge$)W>kY&4Jg ̯ O{g +3tC7Ttvvd'^4Ԃe{p/$1fBzbR^ل9(FIz*sD?/p^|Bl' mu' 8l>,j3@]q ~*n"ҐI9$Pp ؄{S(Γ\n$X7xgqzx`ro:-m&-ZۥhҠğE[ [5|{P/Y +XqyA6ek(NkO l"[4, EB V/wU}p؜MQFZ:h "3{a7^l/i;ˎ_/d_+rXQCeoV7czl7 +"kX0X gs]gX@{0iBdM^~zIFX_F>'N]^*HYO;RI'+`  `-f1en;z&2c#N֬*[A`bqIðb7 +]Ue;Yf`h` +d#y _!nʯKS :L 'c$f=2= Zsh]8v7ʬV?Y3Xԓ5VYmSǥ@uȗRS@vs&+\PMPғthJ@#?bsX"E,`GrMu.`J?-~S*44ùqX- Cb@M0rUB6:^ +y +#z Xߨ[0< 1+x028)f dML0هA"(Y܏s|sڨܿ?:da+ &}pP!;A +ǮO?A@0eZ}*(qX?)) ް$RaYG޴b`4oI C!\`$5*Yxv6r;J-%3RQY`.F1];Pd5"~TMH + r.iY"$<|v8G sY~Q\a\*VVqJVHA{ACJ &C z:XorxØd`382]V2 +Hzjq%YPXL栯i@%0z8hzzȯqpc8I#khOu_GFƬ{ |50D}+='>GZWK "~A=˜.C\ Hh0Зf#ZǶAofL©218P B6 \C@1<|"qBzs-Kɍؘ +.T<,Qxr@2U7yME[R QL0`w'[ .(a̔ +XBFBt8@#(m$3,Ɏx,mKOHo*1^.,3pd#H*b[rU ]=磅7hwQyS}w,=w yJl~4H6{E*Y{JZCD zVag^qN,_'6!@zP'u +݀_Ҽ8n܋Z +nwP 3,qd#_gI ]\O%JJO2J9:?PT]U>ؼ:\+qdƨ5 X_s<WWȦW_dfL.&.r@ER<+{,)v17Bx] eZtW2S*2LpT-mbdz.Dll>r.S)lC4׷?\)LKP2ZX|EfT7nR?luH,Ӽ3>/2/^O%Z?h\hNEBgKvHg: 3?S_jۿV2U Yp +cB +cqW@#XW/fI}E+,0@[KWb"H{gk(؆,5-d, R#]|:7A`4@2wwMx(AW{8f-HS/+޵1xIa +eCCxYZdvMJ0]v>ˌC]:eȹ,s&2 9.e),.I[Fڲ  `\-,2-x5/fW pYe$k⽼Od;舎VW#x) *SSi5h9gEg~VXͭjCٺe؁]m0TϲL&eDUU/MSY72ߝ(Lu,}RF"J|M&NTHI6֦@>(#qa?wzӧENtuP2eB͓.)(J@R'~*@Reӥm2KB0$HЏUh7QM +8Mu1LŧϺ231gIJZ_,RtIYr}z3+1J0B$%)K('"I㍴5[d+KTT-(8)n +=t-؞++_|`t ?kR @ ,d\A y`f 8&Z5ۑȚ7"9/I _ȇ 1DG Œ)B.#p:;Og`+1 {t_%*P'"xQGߘ"o8{(ϯ2}{ʯf0~ /=q1=سзzzZqþg+_@`I2/S 7=_&w 85В^bɄ/&sh/!;~fz5[?^3IN +F~'9w_wm](*mJPwM&uA =<ʥ*]^fHA**"x6z0<^6z!Bα9WGI=qm93q9?ugZ~cYGsѣ @P*xGwxe ӌVlvѴrQ?U,O%TEjD7:U/=H__bô5yl[+"(x8o^Ɔ"W1j\FX0!/a5ǔDcB1\W\׼ɋvY*[#pDd=6]/.J mQ+ӧ6 j6崲m;0mN~b;l7(Ԑ#zԼ {jn#Ӕ)dM)Mb|`!O-\o^c>9E ww*O:u'ApM5閃GsԀLjT $Ju~z2ӕGd8NpưԩSlwYĊ2lu*Y_dTgC$;'C'R]z%oTQ*]Jm$5AvX-ㄘsJRگILJ7)FbҎGf +w@;1C(3Bn"l~S8KT]:Dqse\xS &2.c #)KiҘI&M?Q3oK[N|`J ]ai>At$p~ٱ niQJ].U +";TYP{`<5Cn֭ ΋3MfnZLf9=Smbdp~.#6p- p|jM&@2P@qf%_ٯ $Brx|щWqѷ%ή0r! =\gdSaK^4,7j"򬫝6Ʋ٪BrMI2i.E穙;`$dGQ2 eY"W]kD%J3$d N|H5 C'Kc@D+Jy%,@[^x*hL(nS83$ '-c: %ŁiU lyB +q%fN'SmJQ)pX@*=H}zFkT<-Ht:8F)h<rHR?^1Fg <%*JC EMTԊ SSD c֜#D1^{ "p㳓Ӄ u.$pLgI0q4:#n܏r4Ư~e#E13<0ci3Bx<՜Jc3&1)[WRNq pvٻnx7lzGW\gk,v>5/ ]b&J`ii14 +[mgkx@VΥO  qǞِNԸMʱ<_b$S݋hMFkj<-}"i06t=4 +-5}@Z\U|9pR@c0-ۄM(WUWFoXhj0wR˚:UM3t듉l!#X׊ p,\)n$*%2BAZ,mdF9&UEBA*UnT/x[灝\*~%SOwIh&*Jo JQ [ǘ=ڪiMQ}WЬLF@2)8'Bx"p.1h^2p(n497p SBvn/l44S@ z+_Dѐ4*L6w%6DiCRd!"{FJcKb< O..Sn~C\)[M-GCi,--*èelK]dYD1 8xkA ʍ;,?2'hcS1Sp[-e}-qk`ձ›E-~Ҳ/'c#".}>d#K[<Ɓ dT(€&;إג|#r{1X=-7mbu b9,q}<ްPm= ^c 5HgX 񲅇hh249>`k\(:E+:eQ&laE6Phkn!2tP\Pt"qESqwIRtGs9OanҠ>it G&Lt(Mq foa%Vk)D&;U$E"A}Z!Tx*2pDbEY + tsKVlo}lد%- ;Vh=n{) C`&Xg ./[:^mڎ& /H5.[r{!/5p{|2?rY0fOXXtAr1#)kl{H̺bV6@3Pb`u;g>t-P8zURWQ,=ש +[x*.KBϯHІY)`[Ȉ):`5#{K Vt5 qAۜY:n]%;c=5zG@h|U"%e;8J +oVs@Dbm|~ɰǶO)/Ep6c@OǠ{'6W<[OVS +2l~_(3 X;~zp$N U$"H7i'HOdVyEeUzat(tM .D;q-ND_vZ^q5S67:*:ƢG~M.!RM3liHyhd 3MkR^jO:J s24P4BX½muqB3!Z]xA7 K.L ڛJPWHИ\: G*~gJ +QϓF|R3XX]s7[o C@Y9Ѕ2}7:FS{@fNB})UnL) +Q3K ̽*H䉾goݪN gTM5=#zm䥊 _U9 -89 #+v]Cy"B_writ7G50̅_hGHlw" >O\fѡRW?:$))TQDd.5I*=Z%hܳ,~ 둼ouOIl fI=:m] ]8vjN'LS BcKgWW/X=euA@iL~q+ 6)!LbўמCNF- %CP>IEX ̰MriHXDAYǚCvʃWG$sbuĔ9ecVkoxE"ȉnz #MܗȮ&IUGi7&Th9}2Kkm"iނZnue|Bh;<])qL1>ih/՝a}Nm+2U*~ +.)6Sy&%x A $7wrh$l`aj̐[Q32TWTK_V|@0Pq{G4}&~ϳ)3v^dޥ 4@]:MK+c'w~༊Գ&Z66Ğs"+TV7 3' OEw!q RtI=82VY wF7xCGzD 4ۦE; ~ /mQg>D{^=aMA 7mOieLT13 ]}J;fŭC#}[AVz["gFh.zw">G6ʆ+ua4o"f0ۺ;kR +y 8UIʾ+Ut!-yw͝1’\޶Ql !c3Ix1$]O +![<|竲[-)xNP-sK2)h"gT+vZNNz!6B餎 +~&P,Ue Pm_O }´!è"OCei%eNuB0*. ם0q`82Յ0boфn?:)F2ܔlp[1[;9clG'y7V;-<.B'}3Tfv(Kπg$Wf#=έ:C}qŎ}0?=s +2ݼܢqϣx']e|{7>thӞZ{ [c) bu$]"p?c(;t{"r5UYIY62kvྴ^߾^,UM*yޫdYC=֣WAFh7 +R_j$`D\qoR= dBẋ|)'?)E0.w?%'> ..c/Sh "pxqO-hs6 2..,:BJc#`I0\4E~uvQ꟡ E^xT3PP++HHđYJįAbE*S/CJԼsL)["v 0n[eNqvYp$: a6&%Sl[u$I,f Sa^3*Ң~T`,SQ@2wUq=[fPU \rhԊ❮nSc +fSg6+SDN+ί؍/G!1%,-CuD\@}M299BrCf%g#hqTC k`ޣriöp(cdo .GIV[(xbmOE8,wNE),~ +@1PkW"YӾ()K|bJr HTAO^~O;b3fcFHfd8pfX ~XؔTd(şs?m`h@ٜ?-):hE/i]FQJL8,Щ +a-eK-#**ޗ(%OXrĈ䏻M+ʙГU\hFIYj\^'" 5ظ0S4HA6EЧ.툷vs5^ksjep{5R難;m/e cwm9 l+d1^Q.~"3j %Eϐ32rV) v +endstream endobj 15 0 obj <>stream +&SXB:t5HeLHGs>!-o6N}}DԢWD)DRFzSE TC 8H"{K~4ϻc%H1v)&ސE$/4Rⸯ9&O!̠w_V@=;;3n ZS%]oz,=X:u07̴ǺlGTsAps?]=:b )f-!5*SFDZӆnX67pED-+e(v-4$k .W{"2Q%v7 =*((TmהUPsf=^ +[&y|btsH F ;ˈ;z$TauNkMYTP/u +]_ +ahw#6[ZdaM`2%@znwŰ&| @i21=ƛZ>d3ChBoSVSSV'!:NzY'P!z1ɋC$u,Ut)jLMߟX bۇ=[ .2C) eB^D"-}:j +b[1 3hŽV"pZo*_\9Wρ*gpApɡ;2\h@epm$hE_k\4Ax!/cjޫ%yB%OCok7Jwo +ۭ[ި~do&dZBZ(ym$%1rZ@A +B0uO.Sn'2MٛdGO_, t T NL|L=W{|jȫéK^894p7Q!i@{cB,:04EK{V! +]r'q)ln>`Ovق}T򝖻PָIƿ="%t",toi9ᖭ4b.W"3.YE`ٺZɮ^~‘`,lmRPt  >nqٵ*yЌ8/NOcT + >C?69 OyDB^_gD9\[JfLyt]FSƈwVP@_mH@O>~l%,dHή \˘3pe +Q->*-4+7HCvYB8GXVN{p̦`M5@8G[TQCqoo'j8BSˉt!+ 12cK} ` @Y8h4Z(8dPsj9^ϲ8b~qevGQ$q./7EaJ {׷7G`C?Lvmd˿%TOB#igq][m6y PJnVtlXq&/Zt[m.f. ןXvD8u#WUhXQW2*ZnXR'ÊݍCHAŤ+ Wv٦YFy1%TiU.euZ.RVl7vkʊ_|:+,a>wYaҳb( $ D7`'^4kU +gEQ@8OԊBmZtp$blaS:l10!ڊ)tpV>KD\M[AP# ĢV-*Vi+.B7QR&8!AmZ8*9Kj+v@!mEQ)ӻZNFS Eӆ<-B 1|UIwƟF(1KaD{K/߮ d22z 0P%{ =*5D (sF2w ۼxh'L׃4B8Fec14V2Z 69l+\^uQA/:`!91ETP#_QR08iA=vEBYa-:K2H(2qJlPExuS4?DLylUFE/BDQckZO aab*PcD$,ـH h/!ujLhf6}j+K7*5bګy!?Uͻ%d{`e*l(cX7 _o)VPOp(5V>z&P4WH }&[Y(FZx U bhEU-Uo\*i)7[,Z]ZtALh;»SQ]Քz.TA-Зt*zq'seo5#/~K^Eav%1B +F 0z${}MvC%/R|M (^g`'*^T;Of8Cx+8/:c^]+1[brKRAkbOɤ V4I dV-;ފH 92iPp/v; QC :c/z,WߢygkǟpEkRID]r1E`U5aA14ȣ5^+ ]pPWi4_DTl:h'=tQu8Z"̰:Fr+:4"gW?q!3N8V=2EpV=JW!PyLπWEyPTL+u^,qɰeǻA 8V}f&_\Mӡ OƋ9 +^WZR%R P"QRLǞ.u[ؚʮ^\tTմ])sOߣj/}[n2jh,~zio"?)Ҍ6 RJwa~W2EKy@[BV'.lᭃ^iTavLDyuwv|`x}fkx?! +8|J'ʎ^k$Иji\6838-[!dy:w*ʢz Q s_UI8 7E׀SqǙ›߄t '=;G}:LR3Vtq Zei@O(0ZO5&p?%) +}T]fHH)%).ʱx7*I<+饭p2E7 0.bv"g.gurcr&t2)怴 wpC,U Ž;btP_w T] XV +&CɤqŐ)9ITj:1Fa; +eH_Ej ^ϢFa:ˢҥt2C c]ޕ y+9շiWb!]-۞hd= 'Wxw,w=sR1R I&"F@̈ênC' $ QX!p`q 8ߏ/jtnA>okV(pX%f^*&ZxZ[ʙH +wIE; Y#8/A ^ZY8n02ob&C zدY$YUi a8PG%_0u뜜k\rˣu.)jUyBilxYkɜyNZ?U7gLcf)}Xe̋XrgvW#!{Mp_뙴P)OJ9GJdXr \1v]gO _Ҟa]=Žӣ5n g,0O, +9@]|#iM?)Sʡ&ظl@%>$W8t2AyـNSH؂#BpLi%t{+5٠"ra:`Vy̑s+qU8(8E oɼB{&[| -2\R4" 'ku;Cq)kdRAFJ$!Uk1IQ&f lrI>1 +͸յR n[xc7⧆ω !O:AEERU(1۝H g Vp4{0ఏKplX/vX# [,oPї890KYđ!2E8 h+*Wq]Ee?T#JZ$[2iZ;? ^p@IRa10/`CX&0~YigΈiDxQ4Lc.WXr0ɂRĨ88Ә6ͫN8%CNǢHSF֢F/e?\WwQ㡸OUA` U{&FP.d~M5`4ڼ,8kd4AZg0V3BF޲[o"OIjhRז5Rdm"gC_W5[iI3#DUc r&A!~dDZGVIzgEJԘ/$AWM1NFI”Q3 8Xy2>ɰwߴo~h޵"])nEFx}RP̆;9C_׍^TIv<֕R]߭(IGt=DAH=6sBnCR ",[7 yk&)߁hWV m Ax qJgND@ٞW$d'@SqLׅIyVU%]ck;{jc-rCuLZckǃmWZ^Zj"/޴]b[ݱ})ickZ|JziJyXc"ZC3ғZ:TL[ggI<|T[:al |&\I^&{'3ЩQ#m~^"Ss >ε'Wey$t/oFDmI58Fڮ4m@}air!lTWf%_nOuky邧u\M>g}|Wʽ#dsywPCa&_F7%ƬG( g$SM }J"҆sIE@'s(tj4PB]j; +.ǛF Uo\DqL2Ǭ1(ڪtBf0XŴk-Weftl_å@N +:Lpc=dl3U ڡIC xq|Ǭ?GU_Ḅ8QFw&8-%W X Y?8] QF݁cfSH|Nbj[zLn"aC(!'"k v .S#A9|M0;$KJk*4dgC&1쑉,I +s=j\ kTf#%ߍ5\!ƃRRE2I/Aaȑ'a:69q-Ŕ֋a%&'8iaaV r'|O7|Xd6h)Z-H"yE-q}nIdG$aAYKֵpr&8%Ipx5^c(M{=" }$M&& (qf .n: 9EhI'6 ɜ{GK5t*b;u6 nmVnԥ٩U{Ŕ +LrKLp D43lP*+ANbZ[&O*5Ɲ?HB;s$?EDcY Pjթ'cx0BpYDe$FQڨ- 04[—` @қEZk-~ymv=̄pC):Km(Up Ȥ8ɯ0xM"pÛEQm.^P=G,}pPA$:NtN@tS?>%G钷 +ی@szgaK 0me$X?1.;ǯ=$Q}Rd"/4P,8@m5"U+Z01>tI6:YzvR;j`R&| Uʷ%:@nk[c 5ϫ0GpD+4VeVb馈"O"MHaD;1 +(lg54g``Al􁩥%it'ei@ +P^G}9Rs͌#~+ +X3u' ,אR^%]|Fs~;@it\ PkJoKQ%Q0Vn>lFt2s٪;gݻ|V>֔asPSH|NgK8f]L숬~3SѰ 1Z5 'A DhA\sɎJzF 6_讜+ꢼ+(/tTTʣ`JDExJ*S +6T >`4(/0f_R,$O|%b =PIՇ4=Ȇz9 +0L7\`0Hu}GSOS=-0y:uf \G0(G-SSfؓU6BGS6@zim-h9; Z`0pDL/:Ǖ)LW\i՚`,\_XM=TZs F>i6v!D;xb$NpёH$[` kH;Jg̙cO@NN"2#9\(0´JG9qo_ +nOIHot6%ңtD}G΍⁲`36cr#!pPHp`1u,0!Huu`!s>SWwHN"S|X>wv$SGT:.~L.&0 lƂ?{H$f %H[U&"Pr>NOoZz<ܼH;E)@]J05M>rم )IV!󐰨T?٩p +$I|(Vß#$Ճ*<UEkY@] +7@+/[tD.m\Ќ!ɰ~M_PN@Td~`.bPaHq9ҀR^B6O>[ 1x?$$qwܹJ쉹 $.=} bz5eeOLr*ba$je(]9w(ђ1d#EO2oIa1sL4J2DΤ-@(ӯ-Uw5//fzݐ烵<\朎 +6W|jB-#xzv:ZuݴQ2VxD >ԓ:ƪH hx*#:<>.Z?xK)[jO 1::{jhWMEGnHi075ٺz1Xa4%} XB$Th lwh Z{Zj bV ` %Ӫ5і2t{DBYJ. $4giIvVryF[8z@aI.4)2. + ,5l͋s ՍΈlS/ ֠1 3ed[1nER 9VeTiU|b"h6J5 +'y(hE7U@<*&Il!I-g+`39(+vtOǨsT*x:cȜxĸ!>xYc8aqURR QU򋲧t +EoNrDA3]/[-qmUcUk +(wP-+ݜx>Jy,# ߹=d!N_EIsT3 n~^-b>? +XAB91!=-?Jȍn8歘 +$]¦J)E?j6Ux1EW)}=[@U:lҫt$sV*=(J`\b6~J)Sp;JO`7\ +DjUH ^ŒRMבAq$-f{!I-5罠P5l=Z`._@̉f8ZxNDuWT~@ +s/JÕȏZiY>l+hoE&fW:+D߇:Y]wz9%jy蝺?Ti㠶~?G\~ιϭ~6+{xDFГz0f~TsVv&t^LzeW ]3k$,2M9)6m0)4,W$ #R@ ]LfHY9l,*??dZ )MMy:p7[c{fP4';Dwvs0ov@M`5JsS )@XY{RNt(χ)x`pYWppſho-QLɡyaIzDv|M d:U~AL ;l0="!GV/Dp8@i&G9ubO_*($_0L/i*HE@ =orDigj B/܋Rzͨn. W0chĥY0yYHt'}GDXa8} zIRXK&9+s|-t f%e<x 3U4U n0#G}s0 ԫ4Fwԙ0PJWz=:h{;m5X :{4iٙ(T T/Udz1bз@Q:Q;EY6g +ј8 omrd#>B)s+f.X^_\6XzC/0\vl\`%X4HAb {E~:j ﴚ9Tm1`hTUZg⑵ht,]1hQ=$N$QÂ!2O+ +bM.C?7kfAӻ⭆*u usQb C$`7Ǹd }הyfAXQbއoTo3a󗕡2dV1Wk,whI|=udDE T_%mfsnh> ,OXiAD44 'dzSX} p\0l?H"67}?]6l{ݯ8!LNfUk{|-v8>=Yoا :%uSm'H1̢xk]@FnPvGxv<^%G5Xt= k +z#3Ieu&@qYIBEl/+" lO*Ո% }iYKR +k܁cyE#rH +l5:_RxAX }>I g޻t|iȋ;"Pa4Q'?Mg4JnSቲ1/ [J9{))-}8nVpA:sZ %,:n\m7R <<? ?g9N;:n[E?FGGGGGGGGGGGGQ3:,9ކHH)Gȉԇܵ;%iT]>/iV!wEK2*ED * ^ +T" rW{ZT%凋L*tUB2+K>92@T, %bY yVz[Dž$".d~y\UūE$:Eqz ){Eԣx7[W9ɗ?aҒ}Nr%SŌ)DxEd5IrZI,VEݳ%3TI`dX-nѰ_\JpkfU&w ' *#0鴌 +cCbEBβ,+ZbN."MZ=)~TU/IZw\|&P ax\SZd%B<2r[1_8Z5BgyjUjx^Cٕ>op:G2咛^}ͮ +oxUҟ6)dH{ r1Zβ4 ) ~8`({ ~pdAIN+aT򦘓 =JTĞ[n.i5Gjc vYs.cO)vY_$ ][둊Ħ;cQSEcH5=XwuƝ֗-~\ sI1d$Mj=OqۣdfJnGiZOz0բ09x +n?8BGЮH̲ZTt:A5=N"aDV-QZ۩GnThBͿOm:ߵ8rU +;?멂U>H_>*Ms3λmqݟzّ&m[~6ع[6 799|{c -O^il ^^vz]W{^jn[i%8MǞ,Ss\q(Sr8pYfOcȃ`el3w\uh'Mc(zF4A;y9ղNiz9ޝփq$f=So47\-N|2EIq!AGjݴ| o1|䮤EYO:''2w},l&h-]<:I{PITCxCsڧYڊYd)ElCۨUC))GX/EtRE02! J!iMO+S t=H=EzOj{y7)i_!&z<#(2Ø%9իXT"{c-e{{7lNIy؋O(^kY 7g4AogσlMHm%gn[qƐùpHeɇ}z(Ά +p0;_zs۹ٸ<B\enӿ4!!cH1E +2E +Ñ76p︽;7qN6tB%(O3?1CB:rSm*UϛݶC y7>vZnY544ܶ?c2YbfpnRxjՏ9Eꩋ a9)Nc-EkJrُIkt8 jUz.y8TW6mcmA)Jϐ9\$$>D$sn0ðv~R"8ZM3CB@)CpMcfn6dfմ^nPM?5M+gjڪi$bմV\-ntTNpҌp@4S}޸át!]Vn6]r8ꆓr8aHȺuΪe"U9defHesv]upRΦ37(TL#|ߛ%mov:hƁm4K4Az_mYfo6:&"K~av JKݸϤ%,p8tZ:=)ʜs?蓢$E'ɏ` viޗGZkYe(ʮZ)ew1E0?B슏bq >5fujƁ,'\ t5MlN'޸d;lOS/9r?hϛ/= Ir8mYn6/ݧfZfce;"duA9)NHm.[,<;ه"DEi'rB3CBʐ& Iafٿ3u5Aaoqhm87u,9ոVޮk7d_HqTun@Љhwx8p@v8lu3Yr6ZVwqJqfYٌB:jYeY֔Ժ&CP޴nkNلV'Q}4=&z= q1'QwR=ղ1;=}17/}n+9! y ծ1\礟kBn3ų8znAĮv}Hw]e%dvZI=rpnS5NqĐ&';S'4⮃mt81 h{uجv8jOq[$anK3mjZ2םML2q0ǭgN3?X븝8ݦi:w\k7h-' Q(CBP'DC8XP4TѬoLb<Ӫbr6ffeZwv40$$ҠfYYG8f1,5_Yǹ-64՟$, S@3BbLG +sm_ǁNQctZ8xT,:2eȲ1N!Cp4LSl։M-=폢햵&bUAs0:nh/~pd4]>8u0md*s[)M}qnͲq5-@8!(Ng CR9($emk3 pm=@WM k卋 2k֙pl3lMpN I8(LN4Tx?)egCw]}85.dƹC7}ʱAfմHh:*I#g ookٜ᜝qq'ɋrǕNbfqaHuG1Bh~}J:m1,9xrAC<:aOm[l:qcxBMj v:fsa_ØE6}Aaz~/n] Re%ٌ㟢-6UCQD+uܭq!{ v9)zN'Ev_p{D$E.k ~#UU.2^{^u(ʹf}oY܄8 Ȑe;ڻmtAp8yRp8c0$7!J2s97s17!!u=t{-Ͳ9;ubϣ=t)p,_'s]i3Gsi/ݺNFlVMAp)5qvmk9.8)в4sEi73Pm:ҊwԪ-ǕefȌ.+hMiEP4:q(mnMqApղw9JN"gmBDΦjN4Wϫ643 +=HŢ" -[rϓ탊$;#cDdn~K%)o,&{m'8\մ'=,},W=d8bSъ6dz]y4"#KfQ](ڣfYglMPE}MK;r^մ; ,9qI3ոy7 =YƱݸ/d IDMe^G{]!!$gjYeݷA\MSմT,cW.H1n6ױ;-BeM4'EPX}qN^XTh?OG^wQl?o0S&Q͆$J|j:ۆf39> +mslt&Ll,/ݶ3eY{YfuRv~2_'s>8ݞ!iIr8gw^EQ;.8Vxu8IYneci\-~2ȁס5n[ټvqyw8o#kyWerchmg'#9Q83X=%u^b 1D ԗ np\'2ݦ|B#3}mq;ժ$vmƉռ9H=Wg~Xe)':v8(gjuZvnBmӽCen[q4vv8("9{_霝Njy=)_ҪR/4 %=/9Ԓ~YxĪhIp(ZS|ruNٲ ~w]%KbvYl2fc vtQ+zv&9=rz UY|xf!v)eriV5퓻>/O3ȱdEK. j=RT;WIgmUb[O9_vqjy(N!g{ݚu(b1n +~p<9g'DɊ 7iΚqNf4ڬv:᝷r8cH1$ټ1wNz14?嶫}'EYHigӥ@vIe?xp3~PɏiPEjNhU?o[udn=n:}L2knCP17!'gj/|*ˆJݶqy6l%6Cl{(Us3NmG{fnearBˏ)PGAYrz,a6{ zItFJIT:* + =N|q+nE)iZKJtچ eӞ3 " +VK]z'z*nc4]RS_.OtVm~Op[d4$z8ZeQh8^#]QZZy֞e.8-96ҪN:3d3nBJ:t?j`8s\ijnm fN٘Mjۚe8z]OY_EUn+BQ>&IJOnGqxfMִ= m;K3mOśfwJUSp$;;4[g?/،rBE:9Sd{o[e&so)EE`T27m{Ltpn?2޲ WB}̆Mt})_GbY#:I䗴"/E)z@neJ-;^rӟC:}M.ˋ!]cOp:t> !w-PQUF,CUx@fY^q+!4KbwS+u_]uקH=ys9hT,_m=( + +bjȋ_c=٦},39WQ$r=AWP/K{7MpGpFͲqfilVs\imjmII:OY_珢_.=4opҐө=olЬw[OYfWm7pϫp;kDEhjZY$ec 2f>HBOYzF>P8%wu˒N3XT-S,6D&!,}rDiiMm0lLtPz\U6ح%+a^vëuUCA͜U +ܷ]Qr[L2jR2VW2eQ* +ݗִ:j֔E*M]1ْU8VL*~O9P-:=o7E"oROj&Y^UEm[{\ W{ iٛ$Ei㰽50{0w!O&"e,Fy5 YN!)HCGbzJÿm@A9!6$ o" IQr87k[5DZ᜜M^7Rӝ$;$KrُIr4W.=o67PKlT3{yZkٴYݴVMK;hdmiNi݆g S+*%+¦ǹ u{;.:8wߺi!''Cϳ81OSCximQ +*vvBXmjFԯ*@}-R9ӨG + !qƒ_zW=]u)hEq||^?ֻ. Pi@CJvY3dĢw5=fɏ-Qkrz'su4'w??)JrŮ|\rAhWU+mugL!}]5S'%Em Q˓$i/ejUHgE_\0}/:vNǐ 㷊[&+(b,BOIzq(Wr6㨋`}ICyeuϳ%=/:Hub]j>(f%.h9)~tqێJT}cx4mn T/KqA93$DtR'pFzr_bn[;Y鰙6w4!H_yxݦnRZ6Xܖt?SjTE2Gղrs\.?)Znur1$j?"sT[1{׮E;gBxx&JNزUUѯ8`vxL&ܛ=~zzNGd#O3赜f1GcV9^ $U-=Sr[dYo˓(vQ,nd*ln_[zW5]35 4;\ZRKTܔE&fٛ^taMMa,g1t65/Qǐ$Rluҟ1c"&k&y]4 n4THRd +L3R!ie0+t!Wx\iqƈmۮ뺮ۖik]scI;w#鼦w7t]߸|};{.tOۺ4N׸{}׻u}׹M\ӻ^˶}wmunm}]m6o͗r{q~雯eݾw[me;m;ܶys=vmmmӷ}5-4w96M|Mnm=Zosumo<:oYm]k]\s>kNqUߥ풫m{q{w>y]k뻶;[oy];;n߸mt/x,x=zmmmu9]]77};]:Ӵ4ܾZu|q[۶eks|m]N˽M_b %$,.i?c$~ qݳ>+q)DZgn~'{&ukNL0帻4]({ޛe^j}4E7!({-!t@>hd>= vKx`"%ZF bDjT XNcXcyzqrTpMh=4iL"%lsc$ +ku@)qG]SrWM%){z̪2^$]@VnjGM u.\?yOodIo!Kq3G vGp;es9渇2^XrqIG !l " d̘q18GOd9FϠ4?04a>uX-?ot"5MwΆ!޳OӜE&En03C#Ƅ"e<̔D`a UnjLkxNStݴBRnqzFkm4++#.R,RʧnQ>oᤘ듏'~~)BL39^{r6&Ղ%rN!!2\^hDJ;CR^75(ˀn;n< un)\u2P`.LFB1)$;fp:ßv/G~M]]\|{j#;5,Xf3:.DX(亻Y$) z+>0Tx$hRɀIۤ3>\F"N7uYfo|qR 'S +yW.dRnj + Sl0>)Vr m֣h,}YbXjeߞ>ʡȓ$#'Z.s:(_E* F j1bg wTk4j٪if#r8f3f-$e3Qr|4A+Rj^ňO$=k4w (G.bbz5S7>ϔG_<]ysN:[o9;,I%E&!Ά4 ءgHT`b / ^%!إQlVH;9NeyIz^i#s49`H>IòJ]7,O# J3f=c۔qOm`@*}CPU<1TA"EQ5qɟkN{Ex1Qd~aD>Ic夆 +~5ER|x$I8,h Co7Ǐzf9+P! >h8DXõx<,iՃ=S@ # EĔT q$AtQ#01'0_%e b:MѲnJX:얩@JA;@i80=l{ȰbFE,E$G hG=. +hwsMU;rSS܎GMWN;3cP'wr׏zgIG4A +1+9HZDp1 )t2ޫvf^ e g"Ѭ\џGJOzؖŶ$4j=>nIINZVq^'}Ut zscCyCͲQ;Sy,j +meP|iWP(y$MN*PN?9{iKrܪuzS>Ь衈0Mq^+bz_ +&Vwun3J˖ʿԓ8;`N(=dRdX#Eojv=(f 7Ml#ҏo豤HO考JIVKz1>7G%"1?_*z3ñ0Akj`o=zZ Tj_@-B(rh2\9 3"$$9VFuItzu21]_D~T$14;!eg]Sf)!~%<2JU.S 9Pb/\)x4}{a89,VvIqJ`$|yzSLףc=q!h!~&Q8쾄(#4ddcY mja-~mz7Yʞ'uC+fiƉ!4E+*JMRZ ~xYbOUZoQTQ +R\ [nKlrbbHKr @-1$Ϯ$muAQ/M&v[uDiӹ0ĵ8C+@Z"%<̈̈NtzG2"h`Arz^q(cd%UnY "|x:aǘ>2JX4ZFrhd(:xA˱=4`hZ+z Rݳ]\`r1L gT#(Ԣnxp!npJ;sҀ"tE"+v1+GyxBƊ4~z&n秥#fPAhmǹ^GS#!Y`T+R#=ۥ'q_YVB=O¨L&n7ۮfGPۊ64^L=VPtL#2o ȿI`iITHZ.,hG끠MouQ1l}fG; ո ^+ XU'E[ kQlԶmumAiIQ=X ,9`J:HZ)Yƌ<+~ԪV}C<<]׮S7-/ɻ,_I9ӍOģ״L"gSve-ճĞ+J|$II}yrI22ϫ=Z6ϫpw{sR B(,'׉4lyѢſ4FX 3/-:s`|IC.;3PjDURTn[I(0LR[a) V UuYq31}D>yE|&:.n)f_z=:h7ŐZvpAE$Q&'{VOM5[ # + fb1-5LFjViΤD5*ҊCߙYMC'_G$|޲,ӜDZpvP Zג1']۱}^(QoIOZ}Ԭ1:Sԕ۬N2mg7 Q\wuޖ$E;}i#Iz_RUߡ4=OAIzNSt>IGz]~G/k~SruLtuǮ!bA\ݧ)u*bU F5/[Fo+}9nT]FHŸGw.)9ӳ?Sޤw]~.^eӳ@Ҁ#Pr nayͲM_CGM(ڧF:.iԄcp%3TU)]ZܦECEDJ Fèm,gR͓pR uSWUOˢh3P,$G?mZ]뮄<.{ˑwvҔ=^)R8N]n ~OG՘zQ,X,T'wNIS~[F<=l{獚)^}Q<}*~11pԞ0\>o-i]ijUӧ iHMhMs_GuU˚Ӵ$v8,gճ _owIeɫg+@b&;$EcDvj*@Uٯ>v@1V0+'.Jս,[CBXv#þAxn+iO0^:rSݺvSS?G\e4Iv:)xy]M/T-+㣘fY}XQm_&t(v霛] l9KgǺ/&6b(g]H=eHRî#cjHfmi€^Ԧ_VȀX5E[Ԫ5)^wjq<⸒c,I%q"sRξZu5o趙Yg$=Ę{RˊVOћQGVM0s=OOۦ?olB4Ϻ䨧%Ϧ*^ٷ}y/{^A7JnCi\[UU HUIKr;,ǒCcmsv46x?WWLh0=ws4iS4DzdhCU*ZBE0:9i8Vv=my!yqf5E)#(=hWW6hG%(8fbbĺ*8^ bO7wI uvrhh]k1t9Զ;Ij]-M&6ɔŰC]mC3ʬ\|eIbW,hʣ,Ǚ[w +:arY~SL 8*~Su]ԨIL5%2P~j6rY1~1Cl;L͓ݺV^D2Rbv>EFBEmynϤ*"7Q()&7?tAbB񪺗$I^]oUzXh PvS5;iCѻz(Jێ7PMC5˕ݓdmjCn6_Mu=ږVf)PSTV㠜$u|;7E$oQTlL9 s,iWjݗ"KEMA/宾9Z"#e :H]0q?>Muuh8AzO?鯛Tht97!nǹ]gឲt|ww<±&<صQo(uo7d9b8(FѶ+avM!ػ|eyt!)RMzxjlZoMeɒ%}T!wuAI]ICv4N2:XnS4%julM4ݸuT5˨,)"Kjeeƣze\!I~>Q8 Ez([yq>h)1q(zRL8w x^D.7!=,~^PE:pPcr[=[8x۳I*_QCOW>M_0T=7E-KZ'i9]xFuo3OWDB6-Z+09ɞf-.db`HJFF)h;fh⍦X+baD<BȀP`T@ +`Bċ6VK#AvRM#)%&&HJ WJ?:%\ۺH'6r8 +\"@AT`0 X P ㇌-*/%=?Vv/dz߿hzxQ4A \C- M j T GFļ a8)(ߺ|k9H\'P"!,xA +f C,,n|B+pd=/ݶn5Ŗo!!ACR`1A+4! +Pz@ZfbZ,#1#xA;|Q>ϞmQ@` U'8a -x:|"d$:ݐ!=췆VFWx4a\u?5üCH(F1DxD3hQDe +B>Y [o6Q4_֥}b! I(QD &``HyQTZX0H_X#߆ @!P@$@ D@"d W0".XA +` Hxa;mS/4G;,Ss7Z TBPx`"@A1 +Rp0/ Sv! E d$ +-((=_o=HHQ,P $ I$\ ZЄ)@J / GPBTЂ!$` **s^3(z~+JF& `/B/|@A.x g@#+( +N=d\bdTV^_;U|݇9H@*0Bp.xQhB0/ EHR}lt1?M`V؂`2H +V`'$a b`/ VPDXĸE.2(v2R/t5&#BP2 op$< X +Qȁr>#e:zzbJDHl2 <؁fH IЁlh- r0 @0 vG(0g$w$8b|A d,T e8%8A U&0p,F#+^NzWjzIL +=tdPJ჏% #~=n&o%-L+͝tjxBifYuTVhS. ZC`$("v%2fFDFB!վDV/]yMu= D `2H@ p,D = ANP"%ȓ3$i!h^&Z~qpatD +LrP +H x:Ac"BZN#ӳka<_x$^_@p@x R<&bnj +e5jyhRDZJZ+f%R!}r$b"ɡ8r:"C`(MScYj_7ǻEt"t ‥hJ(\r##~jz^)8f$7-b#6u=- 9|\x1qA5+$\f"TS'A˶:Or)4?lȜjq։ʈ.Lks\ yVB+\%i:x}+qNݷNOu 34d|`U,{w)鳨$͒$\hUN,XidꦉTYm2(iː>(6sf0ųui wt]=l|jJTj:e|0En2|B%(1OU]rٝ,S+|çf7KGOӛU2%FS0Kj̢j8e,m Eճ U"كD_Q@0b'2tLSѴ~x@6D\USU/|&qZ%xno`(=%2ϱ$*;b)"1+!IXQd-K`I=YB/ e=a^0-S;lV[F%lrB jsATaX> oUyA i`HOxp-,k!hEK2dQyZDO7={ִSE SLu$GP43_b +0+vKq?G$2T@3Scyꢸ$Y渲aXL@dfys˞M0#l+> G +Iʇ_y>-~cT%ddIr&bDI*() *nYD4'*\fT4QH$$vPݶE[2AȬ2Be)D#v`n/#$K +/Ř~$"+v& X EKsKө6e/ZVn(eL*/#+'o=6:ߎG[T9XDx^J ҠD=\NDr +/'!ӏ@44n>Z)8JV! 6HF[-YL{5NX1JX2JZ3Ϫ"͈F>7U.O1T\>WD*V/"Unu0|]QtFI7ɱv  +dQej_w}a]}7Ƴf9` UeP$Z,Ch+OC)#7P`8R`:Pb${EZo)W_IH1!qaZFԨD]@Ig'=Gj7#eseV$2.&/ur%zeNWشO쮀 Hq܆XT5 89GmӠD2^)"\$E2(<\FjX%T=`>J +/BåKqSJ XX#~#CKJ A%V.Ś$T'WMUU3'٠$x&M]xc +C]ҌIhQ~$86yMxG@tT KJ9<6 1'7VDb\Jߪ 75 ut,$-.T /`"ϪJ2񂇚)- +S{,~\m&Xm3a _6n${2Ko|rR,zG+ ViųbwxihD\)z#npB7#WUT$ _+B%vԨF3bڠG]d(mD2&>PZ|Ŧ) 5;9#@DL41#ǰs +T}Jx)}b@ +OtgS3<\0T`=rJ$uRM{േ (:jXĤL8@NL + e:}NC 9pcB١Y_QO@JȓUB3^𴏕*#'$7P$f^6f>bJAà SSԦ.-|XUa%FU/)x%"$>N-#)qPlcEDCBRJ\eǬ{l O< LXr +^_7\s3 +ȊHœ8S4c&ʊ/h<  F̨!b: qH )$p1ez:=ԇ`hBT<9+V~QAƤ/<`NDڂ0 +h@ s"dVY):J(a xR]Nj2D +ɃAQz38T|u<+=z,$ϊ(F8);1ǖd0<+]MvԦ֥8kŰR)^ + +B"Lhl4y^%,XzPY!R70)R8dhDh%&ċ0(+[A0`%XPB}MdcEd$9dcEIYpBYN0UD/&nHxrˮr;%jS@*[V-EL2|ӧ[N!̒Z7M,p!e'}cӅ-#EĿcNʿ7GRQh^DN#9_W ZNJ WūClW%Ux-ѫր^F)\$[u\W_-ы鵫iT(hŃØ<).yp4O.Klzղ"I1;%nα[cB| +Va9]jUx$s2|pNu?+n +neD$eÏAhYb)=rјF+N"e͒E$|w,ud^nKnKnN&>o#%ǐjxҊo==y՗ѿ )\L%&\(}ѱnԦ-X$')0,R'qMtaF q(#!\1cf,8HP-}s6`F1$ IKbUJ-%٫N%w-~ d:)1PkS{]<˖uDѭ +/&/$(܍($2nW 鮒,L^Lر2 +jxĆ '*},=3N<_]qMSEPzqbhw{ѯ.oyNSemIr'cEɛʦS1s\4$s0yNٗ`v6(]]7m㫘eͬjnmRE0E"yfڪeV]H=UZR,;-`Ī+9V?yq29:zȩ^uEVAp/ǓMv~U'.S_B4^NKS5:=!V6 sS7| Q4ovw&蟞"VeճfzQc/C묈$1&(-KZKk8XJJޥ*&k~Co:H"Z6lcEZ uuQ6ٳ I tudpwc[-A'ŕ~o19],QI2኿X`D$fچqT3mr)}ZJ3P(Ze%#ֵEPĢ-#?f%!yV3Ln8!w܉3VtS+j[xdͳk";miPtEJibYN+Q嶑G?EMoY=%1X_- v]y59iM9q?,F~}'q#{st^B, Ѵ?MAkʗ$9V4u!;owˮY ZU?MSMP<@!U!ʲX`؉,YLt1>tEʑ\{N= =%j\Ywhx{zӋb}Rs23 +,4{N9b&_ïGOEfQve&^4/.rAfpR N +_]2RPbH۶r6)ۆ".XH"*`z'3P*~FT%G=?evnݺ_JMK}~sOZi̔Txw56YP軻G1ERQR8`GMT<֞ۻb"I5R>&=/] z?7Mtϫ״~aeoQjP"80{߲ +l,sP Y)Nx4 X):Lr43T~ìbZZU"}z] Wm(BFNƛq$0H9&gW/H+:N1;. T݋̰PI}Xcz ʚLe:%(Zt?;1Xy^BO$cCsf!|r4]r2K(&yJZ}&doL{[I6_B QqPU@,Up0=)"\E&!O%Y}M9\$[Π=Y4` nCn0cи@ VE$% I~%#AEP0p0h(AfV_ѭ\c\M\\ʱ@ `ph,UtF?lL+%. +5Gx08a+ G -$ ЍdAr1fN;t4ʲ#T &6pc9h"O@"lt1htVjM4<(H +( =@ K +; 1>T'| :5QXGl~\$P9h7hB<P"T$0D_Dl҃ R ':ٵ5( (EXЃ=xQ LY鍮'Gn8be6LNvfѺ EDns|Ṓ=wUvd-B0 řq|c*ͺ;?za,@%8~Hd = h~ eL;$*$-L-1]"C#I9mtm{j]܆o+`YOLyW^];md?04ϧJXkmKiT슾A\'WvFpibo(}'nI%(>jon牝y(xvy"I枞3,)]U7D9穗e~? 6O.dSj-HԸiYDG%XEAmW_ܪˊJn\XIs_YOd%ByB;}뱬`Xj|>fa]K?lm8`" @0n}Uuw5ű<ρ?q7&:HхYE۟6r?ِKZfԭcBP<˥%zu)ЌEWYDQ<?&Q>}gѤŒ_Wp9vBۍG4M!ڗ#nTP$H$u+ׅjKX5EDk3Ŷ7ǯ9rp99pT)E),a~,;z8EԶ5I(ji{P4x,aOqXqu&uhE_WO~&_fB\=Aom10M'~O,9͒94Ɛz1bO_ uƑrY Xtk}A)TLzV/QD3E Tx_n|ʒ`n\oX-?ϑퟞ;IzG\Mr"繓dHMU[ZW ̵O(8Zg"DcڢDR T0z~(YFǥa^X*|e׍,$9=Yc~ ޤ\zJ %rѣdx^9f#׶.Q𼦭-߮dZ}:⸷Auc'K6ݻ6J)" .`z>mMgM\oUUԮ* &i% EKv` WYeɎ~a&\u{4nu] u&n+M}hee0|OGQ]pgW\]YtsTu >f߽ΦL(XuE" Y<W[[n1GӾ}uU6g u4oM(+{N<}mSu,O7`hyo8:3?9 iqqjFJtepL)"yj%ݵ蓫'Eq jDۍS-6TPO|=^M5Q +iSt.Z]zKQ[?]|14xbSO oS5\o_n5HV!9Vɳ$:$7B@ĘQnj$n1y^2aW6lu"{^BKr&VI $C + 42[$erAiAqr>T$%7yh]_[~MIkbQSn>~'ponhx'I_*@Z3,+A|6-HV"d?̺ )1imMKqc' EWr_<sL +Gtyt҈tۮv"`bL"S-ꆟvG~zJw!yL~?ǴỸfcr:ƹjuX-s-Ϫ` a7mϚnz$*yDmbڅמL h#m҈d(z~1:iP|O7MOq0)#h@:аnwTϡV\;aҊʖA+&*%>P1c9hqBPzޠn z.NF ~MwZPDh5${]+%xTDpi7b{2EWW +6pFv$mǩZ0- + 3ZF. b1/ML(1c>h@q#zy+`hK +g!4T]$ +==æ)Uz]W{ZD('R +K"X {1q#G8h0Aq4M3o$#r8d'.Lpl;OE$Z|P0lݒ~%y۔{ۧTB)IBȞMLՇQњJӋ4dre-׹a] ek9<MoQQԣ^%U/czVj0t9mC2iS j壓?$]:v^@<]7n̋{GTˮ>OtʞG̿nlqK*GxoQ$S2oq(෋c|^wTRt +.>~ӓ:ȑBxpS] L + h]QIb ?Q2Ċ.K9bPH@, / @pAR㥄2 h/T`h\4hLw<?,@ $NL(?!4ԏ!fAK)tH%{ZFuD 5X8Ć,f -Zy1z9TyiYe,3m<?+K}ƥ׍i!'BդH)FyNǞ{vabe) Ȫ + MŒ:2]D~-;asp/P|V$yr]Sl..ױjךEST4U-?[/G-d^0=p=M<{ TErrXcFEEc 1%AA"hL"&(>~6e B 1JJph8R`7LX1?ŔO0D3B#d̈XF8JX.$3G:1S& / XĘ|mdO~֥r\~$Ǡvu8)- o@1jG "WF0PDlPMgX&i.,+|B0O) +wI5 + ɐ<5K?fهmk$vEU@Qu2DLˈeO܀%`y~6nĶ~8hūkMu1v 8@XR2(&~EKIM3 +˵eKlyž'n6D3,V͋z]TMk47$w4 H(ADG54$I.\*-v:c*9u0SOq5hz71rBƌ *rc$jk$j$1fĿ G.GbU˭.b6M=$QJoܓ$=[z_70EBCHd.bl\N,SE<@IyD8&(W4z& 6bN+>' p"Z8x#X0*ZvH!QkvsbDz|<\8A>smrJ5i)B0L^0׍!áPMa /)P hXJf4  @AШD@OajU_U_Λ&(=Yۏ܁ƙΆxP{E :]u`pt!A۫ +cV%)G cZ+iQ^we2FX~=/ǔ7o˾v:t|K2eaAE +gZ67.-5#%!5qI` JO\nS;0;'~)?H  ^PXN깈=d`$VUB @ +˨/m2ZV @-'_$&$鮣?fbL׎EU%~bxZF]Ew's R +82R[y.(k"x<.!l~2عzEI4#u|Y9M9S+ciIa"$035˨9azAS ~C:bĈXTo& igv:-yHRab0~Q?rXR~i,F̐B TgH(ǰ壟>vY-BdEgY{pHn8$Sѐ},_>G2v+;SHp WEl%C܀D bH|PQB.~⇋t9VYȪU+~z-Oh@ ՌXjE +󽚺"(j$[-{/ (J\pjQfP%=cM}L jfeR/a9jDZ|ȃ\-{pZ!^yMrUz'v ) B̈|,mR\; \*-M@;qqQ47f0GfݰX DeNEۃ1T+&8P˖7)lѲ=8>UM/[ח>a1մ=`Qbnj"v𡂥:3Ϫj?+&qҪGQlw]$_l`9 "j]-}ZduŸ^,ֿ%}8}SvϓdD6\ZfZUh,7#9n62LNhXOh.7`{Q=0jŰZ7ZVxX1#D0(vI5,Qsg^(%gr;s0Vu&Gr$q^_t|û$v豂$V#%xp !j^x^L(^0TP4.^&crmo7GЪΠǗcM8]IIE{-D&xQA 3jphF!&JnEB}G bh9ia39մTϣVyyޗ~ m5+>n\c)f[|}[F?Ljm Fl0+*d~Ԡ@-^dO3|W, b\M}$i^F""}5;Zql=s8Yfڙi׍ݳorG` %LIQB#G *XV^ma0l`'II9UC>M5qq m~ ,mw`ajq ˞W=u)Bbso}<ɡv!Cqc>pI!y̴/$tTm;3˜4I 2O$qKS&G D=ZЈ~"4"_&ǔ0l=ϳu_q(ZèTa"B#zѳ +vOnߪ#G%(48hVNjpGmߎC̴Ym/4G.K ?ѣ"B eأ$hEOۓ v->JOO)`wbM*we)fXƳzwu"KQFִЉr&7c$% ςTA\F8VҀpΌCޏ0ѠRIg1u70 "ˡ1n+[󑌹/ǖ2(P멓ai"6}n$Cdȏ-E9-'0=mE1V'mr]{FŢ,yGO;V̾7xĐ!a9*EnklwR諞s`1&2Z wGlg@NV "~Άl yh#emQ[@*Լ7Nu>`]U~5"5bջ,=XN,O.v%7Р'Rgr65%9TvyïĪq(P[&b,}%$_+- QQiZt4Uܞ^6#X˱4Ǯf&k:܍SJnZO<|8͜`LHsq)V3ſIn#9ŝmU%,HMTT'^vXF)ڗ$q᠘Mjפs#) ~?&v6E(7rW}#)v{.J +gVbWƐbص,5_L(UMMS&wcE",e+N.e1arQX̞ԓEb#uKvA3'lx/O۾t<JIeg=U4MYXIː n$wI"x +nUv;VG0ԻxpfOqįϞ'}ϓquou#v=:ϺiR/=BK{leEZ:ՠeW~~'{ݏ&]=6$wM7Ix;8P{CV؟WZ)+QojO=HZOZ[BBOy]#uO=vK [; k^,~Muq*ьpHMESYWI6W^1<"%o,~s0'9.wb]YnpzAnXʹL4oRHţjCp{h{Nc5ݏ#uLM|4 ŞKkbSp?4/fs| nZU'$>ou^lݣ'ZKv{=GE[\Z=F(#wAAFe&* +bז.J5C(g\?R-+2' B˜ G/g:YflW;%=' {`8ÉcER.=~?^ |/+v=fb.D'o'kNǹ[3'tIE=dh^.bԛ𴌨_PJajo=2XʐB*Prq})ܲzFP˖xJEywᡥdG$2϶wX͛eבT4T2܄^GR19vpM̱iMW-3;DY2GM[ղ} k#*=MlXē0zSzrERvkur\;.EOjԮRd( ShC;HV7HV+PʠD/^78Rd~aF4V~ʐ?Xt4˖U< +vcn;NC,[̂fժ*9zcZSM[5='O) +FK|\3)jgĦ{loϻ$MC+Z v.w=eY_jx>g^m%2C:nƱF*ÊȎWL(9v^.N,{X.N%Iӑ0Aֲ%A؞7HskZ4[ E|< T9V--=\s8Y750DCRZvu(nqѣAX;o!!Yfdj tЬo[u}q Eㅒ29xmr=1H4( Wll9ơuE' fG}9%v\"hR+@|TTZ_znSͭ3-;NFXs̟eM~yZs1G=H()d}I"GPd~g>~(Z2BKv%&5ӼAP>(ZM΀Pjv=,aU4sRIq>NRLh2}N} 蟞8cxIz3Ū~9G{>})d %Y +[m+}yq'<+9A2jo3)=tG<~T4IK~U ZOXZe}45.=7n$f"(jU-y..7^w u'3sܚejVOQM Aoղw_mS1|"d@OfXP ˎQt;9P>~jseQu|/lHNnQ'GRj^vŪ*5z2؅R֤P0<7K Al:ZU$Ï'$y2;}C+Zbӟqo8d5ǯG/S}IޢD  +(Ge=$Xw\H1Es$m&^C3d%>% +6ǥx ˈ+5_k gflޮ/KuyiEEP/E-[3)RbJOjH߻mf-!RS#ܗ㊞ox%Ɍ YZ\6GK @"4P +~aC-8J0LX,FJcjUؔţnj<+GK.oNj(-GjmoR=GZ(}XWYx+닕)Vse-p-;9oo]XOEQqrSq5IvoӬqG>MqS.}!6ɐ/̎Zփ1ZF,N7[{ +-бjE+* +vGz"ȇ\c?j_.؅uԊ#> p0,#خE/G?5ySE/ϚzT45OhN ~goay=zHJO^-Ytlj[ Ş*U fRTefamY5c$mQKREq8 œ?u՝o +SHy2?OUO8q,"ŖjYuq^^ò'1n=/'K +ΌGwij`Wi|z]0,sW=2,X-5\V!UXrWPb0ne4(_i*e󕼆o;lB:1YOI^PԴAzܴ]<-e+|BIҚ9I- (=F-+#v5-e2(ȮNF^^ժ9z*CײַKE%aASv7KN=2ȍr~U$a:)^$ׅBN +}F$5ܓba3,Jn#ek+0qCrגm9KU\v;nkQJZt/A.w]^o=ȟ%o 6-/^1!>\HVHNjɛ,]o(ZiˎO/ BOzm o]_y C<(* +e]rסvS/ɽ$Y~]ժo(p0C6;RRPt=n6K.W8 :-bj7HR9R Ife_R )RZ~ܶHMy\OWTWc9zXI2 +L"83Tף,]@}ItLtL,Klfo+K7Mۺ`i%,#Yq8,Q/;jjfYm.>oulK*w(:: +AӢ#O̖q?. {ܻuZ:ċ$>߬ǁZV'7ǓZ5L?Kq;=b&ǖTuJV$țb ql- )-ݢ߿UE2,q=Bx'5Kߦ*[TA{`X|vU$f 7`RbBĤ`H1\_=V+#I˅H+4oewG0%cHUIjR@-$Bpi1g^P}^~Ժ\v7RTXZH(?%eIX7I1CBGtb:mŀJLĢoǯqjW]U_rLϧŏ6Z@"|ro%Y<;mOڛc \ԄX6涑Z备JQ;&G+Y-S9R0[JOn1d.%Ⱦ{N?.׸T,H^7N\4hECS +^t 3~UN=̰^EW˴1 +fs2Lɯ^5uzSs,&A:& r6(]<4!(5eGn^ ~Y䴌7ٚz&c2ͳM5mW8xeL!)$%ymپ]l^\%8os?j#"[,vC5bi&c-z42( +Ѣ -XF%8]X m+7(rIr$}4w@ɋ#)|<*?#w-iOxdqtݷ^Uk9/I] eZ~1|}Um[7-'C-K-1X&+2oqוTĎKrzFBI*;Zbx][4L{<){rag zu٤:P3|p1}zYI ZpFfx%sE8JZ>R^Cx;_u*n(;mUS3K~rlL+%aQ; h/?-K lEOE_m~zgIH҇h!Êh%i*'|YB +rt S^YmSKb*~c-m5.k +-߮cbUs<>k;kNUejUmT9tBl"bHȪiPs׵Y) ղn06, >stream +kN&5Lb"7MjUy{,kA%6#Ǎ4ճ E]-$i-r۔;WZq  U 铲;MSpTCw><'<^܂T'ɵsHhF{n%We/O9o/EgQOn 庞mm3S0ճ9}X()Z-h^LX6'GRf6N;>izzm1C$KE%'P.(K jٳ9ɳef3wmQF*], ,b]Yg_Y旅kEb[ty;,} (Ean+LsWVܦ\6&cɈԫeKtEa[˦6]8NDFAkX|nv\>-9gi_5cH݆uVb5L\)U +vnrdq̈~>ϒ,GzfDmR7Z$??K*$&0Nsf1c$FIKE11hxh!1Ls\~}n`D +}M}E1aފѺޡQђ&rUe>푼o4lhM='V^Y+.9z~WYvL-GoG -&:9@,"'5w󜣨MKZjzIɱqxgn3+ QڒV>ʠ7Y\UeΊTU2czjYuGNm*B$%m'&E`y՜!yf@:Ksq+.|P'yׅvF=z,둽~m-# xk~{s$ieG~ +U}pBx Ҳ7ǝ Q/X1! Gim &UE{Pt$+=鯦=kVZZ^ٱʇ元5v?c|qM bbqB8%#TDgKnax,jURf8O0Fcy.H܄L)JQxt4u%53ǩ!ط6"b:Lw1 ;,HEMlzE%vg. Iss*hnvUC'YZƤF+`.zzБE[v0.+݅ϡ=UhԳxF%}:D͑",jOQ>XɡIkGpģYa$q2T8b(0??g,SɎ~ڴ%UqFjtsׁؖD4z~X$Hes1KĪ?Դ0?,z,JNti20>eqN]i>ec5aFe,#aͣ*5IV3@xHw+$G2B#~9t%iN8D\,TZU?=S{Cd?M{fF<̯ܕ^oёe|>40c3cF/jշn4T'I!2|w~]S/ʩ3X*UulN(~d?`TɯZ7 +Qr<#%&Z'-&*]I&AbNiQNz=H>o)mKKxv؎yUa{TFD6,E:bQ- +"}qʟϨD4N\1F\|8&Au.Tˎ_w|zW WD铟",|bBEZ3^+'%Q.1;6*Jvr4KIx+H~ PsE4Jle"yZF:uQh5:f\;C 'Pd*t%"v\]gP,{,) XƋ$O2 +XPzYS.:TNVI|mZ0{MQ'PZru)4"nĀ!`lrWӫ*!_%Qs :hvXpp_+`p?ܸg#jN$ #XԈR7C @`+b#,#ȣ׈`D'WE +9NB$[\tKʁfD@HV>N\waL*V-*Z'' JwD1}bLHs}k  G[P&nx%ĿD..leYL:ŠL#;elZ-&?0#" 4>԰ѢEI]:nÄ8s88x^=Q,RV=45R kMɺO/S ^GG&)RQҡכd &\B˾ZKRt1J^X'~Uk\Ͳݶ2^"'#%%h(@>`Ntݶm?qˇg\T2JZ,ܶɒERGFg~IEȐB{9T\-Lg*Xtj>L.ٝ3X$-I׃\ǎ"|11bQ 8Ёꤲ0+:^bZ8B!9^TXN7L^7e)GyJWsxfJ+ iZ)X~ӨD3`'#)VHhP$Ӣx)딑#%DFXy,Syn!/^UåVE쏖/!z9FCV/}ղ,MH&N"4LBOW묜nK~iN"iYgEr# 3gJ?TVbFȜBŊ-\xFIS22zhhBĥe h_`!nqʧq9̨?B):.F h%$P ydiT/NaD1&O +h!3X`P5R%RK VJW~EeLү"3 /zdI.r]Oje:W~)^v[cR&".G0-X|VSq;bWҚ8L*ZSiгEEJE(CQz~NC9jZb&q.v3y;N8$W5$}5" *F"$(ul[{N/$b:i~f.idP40ZN1Z$\^,i9ZJ$9u ԇğS%մAnqZ"Y~nm/{y9~IzJcDg7kNiY;L`-UA,P n,bUbQ;̞xZ6-U(*Zy)k'vs vIҙ"T&f+%DяrOdȏV11c 擿hlб 4LBv]JTagnݰ)w޶!R*8UA)_ФN1&OР ( RMYB]՚$UDhEMG< K)$*=*[芨_q^M+%*e'5R%+0>xv" RRl,zDtR 1 @0MBD?j6;o)ZT@>>iM-o?!}adb) XК^n"ŷqTz>ޯ+eX|q@S$LJKV#=YaԉxOszLxZC9=_#aog1e] N<{Z/HOojsZye~{S[<}WH/kc31Z}]  e1]ホyךC9Y'J#;;;pH琣>uZxsەk%k!M]C`X徜x{o:B~"@ X8D26ϓ{%5Q@j3; +B"|@ u1 + s|-h+SR}J ) 84uCA,c[_ m L&2G=IkMk*}$ .l_ Xxw){5& Kp+j:q( L*DM_ɫSOՀk9uI*d^)-6q5O`eue Ft*BB[AΧ"FtyYi/h Ug a`b W‚>e*[EPn5{XkRU]soL'urYXtIݤ]E'n1Y@)35C?22p9CgУ` CJinM4[jFZ3A5;iC'`I߃]XC#]m0 )/y*D`Z@$QJd7v]҅`RgV=h_ͽq;Q0vS\n#<ܸ_'ʅEHEKtؼ2w&U]S3M%6Av@ߵBlAڐ@Gw1W:(4d095ut A!&q%^jrWzpnsKpcWӵak( a)/4F?<(: |fmV5r +JND8>'C3ACM'7NAȹ>ɴ v;lIzL.@۳Gn4ίfdJ{a7nj k_Ɉ`QYNH`!<Y rMܒW*0f sA=~*{ 4M&iiگѧ +qu0Zq pJ,)a_E3$_GE'{4Ү􊵹]U䧹$ %F͘=Ű:)go٠-#*2q*zGE[+ʡ`Mj,l5|Hjg~'i#H7bFԨtXM VJ䤚{#hRm٭sXą$ +meiFks*l^?Ɓʩ(y+)Oņؘ̹}aw 3fYdlVP(=% +hW2 vկXYMVſ&fj?\bF'AOo>R7RSi@vϒXu yƴ 8M)b2Vs`%&9"ySfu]Mzquv rX\y.37hBUbׇ,.sX\I՚0|% +=EpT>%!Krh["Is@+TgT8`:R( +uG_JpY& 0 V)P^qLd/98~l ^r-!&׊tQefvEYG?=x̗MM0 +h"QdZ9 +\"̓Ve??\K¥)W"n/Ÿ}YI6PbRYDyoj5 9uOkBcN|5 dн&-Lp&R  _6GtMs&O +*뺉oG[8O2WNNl[x0pYu} lBq8&!襍+Y眴k(>żG0yTcz0LアX!(AF>L4zUD%86euRfF4}@~ #3+#=^[c7SjktPq|R-(`vSCM vRL+qyGr_%H.ȵWˁmZ,_5li` Jxy8Bh#ee3Sa΢yn$@7AO'!/:J}2j 7n-ʪ^ ?S8=^JVJ<=dB\N QPNA  eT$r{m[\ҕ(\BDSk>rժD)-6q.-gJkhKU أ=6 .EK!J2|JldE\VY}IAPASI?yz:aи*%?a QCchKyLdQ[t!%.?U"dh~Q9(nifCB(jb ^]33>"TD@8p3#2sf+ DzIAތO pfs_i_mvb&Y[eJ' ?)7>%!3 ,U`Wm(M,O@sڴGddyNR&dXp%=l#xdJ#j ) oH([*pN9]uMCc[An +;EAyUi|þR_L(pUZ\&^XBOH鼫6,$U5#b d+%x1:"x@vM{z&XDn3C&ziquL& Pyk,To_dy5gβG +N:1=suQxlɠV\}10kfӵ)J'j  N% :[f#OBWZI5n4J-amjsYQ&#1 3a7u_o9`jgk™o$g5P#NG6QpVI!R@ SVupT\lK2V6FI( M=͒ ! Np]TxOXXOc]RXM{:_e ~%|k@fgrCB+lׯc؇s> W]iPyB0UJ]s!VQߎ+𜬹 Tu^}A'g3uRpE_:A 4 p+Z38qA>HF +7}rΞ0) DtTFp-œ3 n'Jt"R\4TQFG(JU-jfϓy 7AMʈ-GC.+XɊHpHDTƏ)u:bckvqP,{-Ky/zej|7GPm 5p;=UEiV/~VRBa_\)ēb@Oqm:@off22J+1Bt68x`{Z~e q>8d5_ Z*.t!8QR0de^LX\x/"%F7 ]Z{I +?P@ $lLnrxe9̡HsM~Ӊ Y" ߟk + PrjE{0 + w{HJM HHTF?C;xp(=-0Y"}Rp4\.bIy jnl0<"j.38]}82Zu*Œ&"rb P}'qXj( + BCyEdRb:@-E.܌ͱ[wDI0*N9h :^F$BPjAj~*FZr\?W{E%%ɗ}Auڗ ~ɺ8aܛIÞ +XIIh&ݑ%;l;<`;\AQr\>=hyuIUF%: ]g][4G~BH ݣ/I?L[Iՠ:r,4LaxN|Z-6%M%cgw(/y2JZZh#'x0VPPNpq"lJ1ؔ9X2/+BB͞#X޽L,5Eɰt&6t,DVy/I)_s EѶM_r.oI\{vlir:$ ~ ړ0"L{W(.'l`M F+a$H[7kdX~Om;(^&=i VOԮ K_-4ǭen] O5&L~kԜOf8iZ~[45DkI?Lـ=|CPLg OtyH$sxt &p´m3 RVcQ &Hoc贒) ({JKs'M1ᯁGW:!E6DKhB`c ;s kDD3KwcdMW7cQEΎŕ o?yF^R;cw +ʵ3 kD˂F'OGd rXAq!:|G#֭gWY i3 n׿ua'+II`,+mzM8y$%96˭&*sW1 \YGGHTZ0!TG[ *v۫2Oɣ\^<Fsʸ̲`B' *rTEVWnVaQ`ܰKJNҮ#EȦjtxUQZ K/] E +!ɭo=]&~PK )%'{).eS2Pm2L==D${e Z5D}CϙzҫG+}T5M'u/1u#.*XV4x|5wDTIÕJg+w>AO`nC{#F; Jx"8 uQt\*/-wjH$KO~p!FD2$BZ3,ȏ14&"UeΑx$b2ZZ V gA9C8EZ~s'Q.t"+ݵ ic| Ev$֤\zR1c!TIo6j5u v3#4HkX[k=k#HnL b*B}>euJ8קa(5|EzQ-нeU(|X!6jHchV(TCW8dw`'H~+|~7t,삊&})e۰wpLFp&ꁫp~t7T1ܬe}4H'M>t K&8;M㹜6w~{O벮4o*A}?!i I N8jt@ OaPw\OH 9ЩWoVD?ʼ'='cA\CTV,-e4a5cd5c-ba2c-475b-8ee3-694c470af0c642b-42e1-4e7d-8146-fa48247ee4fc04188m10SVGFil/ : +/XMLNode(fxmlnode-nodenamid;attribute(AI__1valu2nodet/Arrachildren; ,w100%whyyxxobject,1feTurbulencet2resultstitchTilesnoSbaseFrequenc.0numOctav2feCompositinSourceGraphiininope/Def ;4fractalNois4BevelShadow44-2xGaussianBlurstdDevibfeOffsedddyoSpecularLightingstyll-color:whspecOusurfaceExponent1ConstafePointL-1000-5xz2zkk4k1litkkk13arithmetMergNodiCoolBreez14-xMorphologyaradiu1.dilabb-d25DisplacementMap3s3bxChannelSelRyAm340 0 14155animfillftaralwaybeg0sfromd(5totoaccumunondditivrecalcMlineaNc8cccccc8cccc1ccccbD_d66Eroder66_d(_77PixelPlayR50 5remov11 1;20 15;200 200; 15 20;1 1 spliNrepeatDindefin7dc2;20 20;Diffused1yellow5;gr٨rJHF$4Z*)i@`c C AA(AVdv쵠cNʣn@(:v{h6K+ yAOo}Q:o_ϬR$&I!kWzK,h'aߓO`lE9-w{qTʍ⷏Lע_;жx=:g=Ju)$;+( S> %U_IFo>8Hl,Yɼ0;7nYҲBˀ\х +C%ٮmeq51Xfu (<`$$#2h!=+!fw,iW3&.DЏ|{pIR⤠DpU'eD*9(b.8M2;(~a5ҥBY8,-!SRe@ZSHؒ4XS%xfP^a?&KlS9^tc` OpBkB~`?SU Ӊي F4^c[rv8vqnD6YL18j ziGNdNJ'LMQ 5vn*8G4gomSi?3?g򚧌ETsO/9ϸ߯@`jiHeFoPؘ+w2z0#'x6N|.ꐆHsshP,]ΐ6kM3k[м|d%t]\F3U눊[GI^*ڴbi vBڷ".y/Gΰ =@GS HJI6v8 *`zz_jX,]sj0-5>XW]($PX7T5eS%L־I'l@+=MHhsp8ZjK~?41yK + +6+OSf+ Y&)7X} Zy`NE#@*SnFӌE5!a/%BkeҸM Z-H|- Z&D$ xi:5RRk($GqM0G}&R#$.4]C%j\TtyIXYjg ?vH=/k=-+Tգi29(-OS4fQT>UȂ)~X$5L /,APsTQ?=ÿף;(#@Ă)ӻ!*%?Vո}KL [VQ#X?išoזYwC(*(ʤ5QS}Q@@cc٩[CJk C.BH=-\"hFRL|Wa + +"Ӄ !(N_i='h"GZu#!inx.ͻXG}lK][O$lCB*߉%pk7E킗YR6b7`fpqwncyKOz;& ߑ|^yŕiS$G>'j nBVG3+B:g:$ ٠OB[F1ȍ r\uޡ9C}@17c0{=82X$.+]^ˢ`aݤoڲ^Ө L"OTc)no{@ٞsP jV;Ae,{Rw5Ei]6G痦 +;#Ib(5cu͙.%+zpo>1GQlfplfkx@t/(4K6M]Z"r%z3 + 7tEy`E$"5޲VE=.Cc5D8Rë3c]TDBQZTv3C$F)_LlYId ŅeK^qMsZ.vk\'NIAc9kh" 5b<4aFAD$wn&35S&NbQɥؗ^/|ʱJpў3fwHxfG?v]2Go|җFGU>+'ʗZJ)W%~t_ԗ9H7銑{aV$٧?7f>eZO]D/pOhz~j5r ;i?;bGx:eÔHlA8ߥkQe^hO88r=Kӄ8я7HrQ "g?g3Ѵ+ XTjّjX|ݵuB_tOH}>?ꑻ>r7Z-bݾ!E=ڑȿiI."lŢľ^9VڢE$"4>k׼ՠEF<" ]xH4\o>e#ύlӍGC#dj{LsG%K%;ʭ3ϸY!33 0Hg0 `:,3(Yz`5p `8,@B +H`X`8 "hP 'PpxWE@ 4H8440 q-xƃ_:8UH+Gs!"XDaPJj9jɒ;f2hb! JUgv4U%lTLŮXp¹,{GI:I)kG*k۪[*W,cG{輮RM1"$3ѝSrwNx)Z^]$]8PKKjJc䶑 6~xDxPZԜGLN__kAI;USÔ9cL lMNg2:Ge=)A1s:JGg I>2D E[2ܐt$wP<,?oH(2%Gr53=53F$"RQ!-j?aʾ# :D$"(@9!"р*OG$&TH  wRpo.xO [KSҺΣj"3aݕ55X+ ohNPSyWT:ryG%9J~:DbDܪ[z$;k)?l{~D͛<^gf?)pIOoݠn+kZEOck*3M%O^RݐqnPrL66wQgښ{&d+L1 +j-m%=m*T7j[:[;6InL:o>2Y^am8M;)g1RZ6\}dBn~VOv)9Guzt?D&c># &uӑ&iJU;x&;'?*Y206Z%oK%Io{ڸaA X,`a THsӃi5ooHmcڵiLKu_BoR8 DH@e1,0 (3]%w٦,kͥ\wc鳍Ͻjͦ r5htQ15:_"铪O۽q5xk>̻ⱐ-62ufәuM/YPҘ_܋s! +b(BY1`P/ . yd{ H$/ ML6+&=iZ^oeUw2O 8QW |Sz/oci~q˻)aL^6<0kU }spK|-$-tUkh(^D'O `SXsxwcrV h['k [i{o׃+=%``fׂ.+[P͵C0)>ֈ9CiCCE.7A>/0 M j I>腲d|sWÒ8/g+ϳg~Pj6ͨjEΎo/N[afWzmVM!#H0a + c +I)< SNS3\y;yi r<( RIK-PG"m_ +QH| oVp)إp@:evzyF3P|cbѠB, SC"pq4 !SAj`,)MS(VS8ȘSB(yhu_LRP̎]R KAZ<8k{#YXc)ަ*)SS8qox)oK!D- R t2N-O:kK*}~ZkT +J\FAYD2p0:pLܠ}||E!xsd(--{} &@5>A[>!rP󉚷TW&Tnc3(ޝeYS1eAtn~Sån6\S Τn:1_SE<,CڜtԢ i^`TcC(xtt6X۔7nS$4{J4 7 X y6CǕٞFÌ:iZ_9AB^ 1-aJx%jaXA*|}3֕wvP`)pRtU' m|f@=jqpoeׂRH&+J]5!iS>Ip'bq1S:`E V%3>e.R@5%GI`)kJSyof%]e#D?0 m,*PRՇ5 g / iq9rɲU/Sxen[^Yd؁P HhcY /F+~('I jI՟r0 +dP4X̅25D)vKidn"'-6eY<)V@Ym{/;X;ɴ܆c1p#lG N!~˞=~7*3f:02.;Ĥ=υR9P0{y#OB4fRj`7ܐT`oGFX5;38dtd?0 +xx78TIZX`d8g BV}t̍ޏa}Ϻ).jYYw }6|lR7(멩UËwwb5^Ф QrܦxW~őLSL).lUn}Ye GЧf1D-:+nfwK;)a^;3~ H'&$YӁ-2¼kT[6ʐؖLL#u7e줺e8~We8ÑAC#[](>B>dлvŏZ\+F\<# ~  dQrԜ=ρvMvjq1FD̓23:N U.;gwKOEsrڲum3y؋2I >X#~%fPpu"Ҡspw]qȻ/$.%li_dښ=A17Bb|c9i6*3Ae^[^e#k0ly7=V!b)f6sA얂7~&Y>~5Tss#/9I;~7 [YfB*h$[JS\ژ]/̙GH3; @5AN8 &)Wė&,C> +Sw݋hUc6Ҽf.C/ Hd>- \m^e oIFƓ1952ۥ~wp( 4I2Am* _?;;[R04\8sZjHwI] +dSqV"#EtuX9[svddmvO*Ӱtﺥ^%Ahަ/wp,̸r酰Oٳ fl +?έ0*[htGρfq\M'0L`1 i`6 +s"CҡI%BPͧ =:iIBe @AC+Z9=STӰU?Y_I2(LȊ+&" R? +Z:ZrLNH#<5#ڦ,Gw0DDzfP9LXueȜ w5w<ȾkmQ/ɎN :g|D\>=(ѼTyCuU38;i_W7_߀u`?d8 #s_L S +;c-߄e 9 + [oӁ/nѿmkmJ4N qCfkca/#ґord m|9MCRvJXYn&r}=S&#C*YeὬ#[/=h\~KDHu5Umr̴aK- /թ>9&~ŤNv0־;6LJn y cP ' f)gX; 9)kG\r`Snj:BRO& i!AP=Z0'휞6 joYSv'QЌd=aF]C/ +8aI'c"O%LU@*A z;m*Sʓ}Lmo.~G d6ES`8 eӿr #=oP]/r@/t47b$t }Z:u*Sqc=FX>VUU/ g+RPV^5Edlgu .Byxb*+zRȗv 1>S$$Pbܚ4Vk66$)RiXncwqE)udK[!ƼV%O481](SEFBTM +>E⨋!$]gj2q4ƕ~6 +x`~qB8M'KZUvT{y'28C㲍V V<-oa̬)@g M499j7;$ E#ιiCy|hk|/e2MuEHwg>o1(4cĸہ {LtTw2Ozr8DQlQ=H +y=?w?W٦_5O9^q8V&2e7aR"\^nʾNM4~MϜ?Fq <%IrSƯyX!0Mҝ6uyW<4hp"p7+ *6!o]3L zP̘855 Mm2 "K,_WhqrA~Q ;u9Bmz*N[r2 +#k fH= +zYL@9{3&dH+vS1ƽ)JI1!c*&~?0غF69e\{ڝ{dr,(=ĩGV:.ànICZCIi$5ߐ4w]6MJ=}EU7*r "^۵5sB1'WiCL鱥w L[Y—<4͂@ +jTAPDa3rXzRmMsw"LBF58mnshsת@į`(WE\o5fA4ryʔ./(d۸PR;CYˑS3-$<TC4 ~ZJF 'p@>2?5A{3ȝMx",0I0Uh˕%Co"p?oڳ؉H_ +Lh=CBDQ7i*x%*'*V'7ͮ- S >RDoD .3wCZѴOu=1'9WS~X)j'3eB2/tI,4H_Gԋ8Kdp"vWqЪ _t>7,$vJ$Zb6x̰Ӧ`uDNJHr[X0s"V.TAB&;ԁP[$$oXpSb R,p*1/Uhav9=ѸP!ȴ,ڧMNdwUflԌޯ(χ>gz֕!'>!(k $,S.WPm><‰VmWhw!`s!/*($0bD VHÖ/wZ8SRhfXX}Q]C6Ft${٤j''(={~Jq9qǝ> F&غ(/ANĉ;$t]0a0*89i(=1姲f +`N9ˮ ꕭX肈]޳<ޮ%WVJJ.ߐޠaOTt$@s;Mޯ /$$K;`ݟ!4׀]%eh~-φ!~Rke]JIdn'm5 @hC\3X@b9Kt-aHI<6ف?qʤ Ε$/^kq"/*__ԥEwE¾%GR㮇V":kOLrtulobz~._Eh&HNoMGÙ f/m7JrX_tI+ĭ|jOZ3G1d +H{LF';h+AmŅ#'R>JVT6\9IyCliwXwe9X&QmKpz8urTX9p,,w?Mgfpz(=^Uzh X1`:Wv)D) L7?s1D7#QV{M˘ٻ +}QiΉʨ0X0HcsdV$a0o+a +IZ_E%e?'^@wmR?:(\`Z ķPRŨK+[VF¡؈9xz\z| \H{ CCznwRF_=A&fy_k,i8IUTd~Hn)[cB?4Ck Kf0OdX肏N3cM%?f_/dЍ1ȇS8~4Eix m]FJ#Q۴#-I((0U/7'BeJ(?H⮓hHԫBviٙNz5(g'Þ(4<ѽEnHgNv$H_/u+#!2i^ZH -w?e썇^A;æ< }S`h(]0 ҂UC +O*&*ShL-_ږ8m +(eu2 rPIhjAEa/*OQyc= Qԕ}.mʴ r:z9-3S+9mxqp ^M$̔Mc9WIGSP|!4gFڵϯ)* jILTFLi J0R2\0?":MΖAI1: G+ߎu7!tɸGz84rG#4[ VK2Hߖ5G֒ BO_j8 C| ŒڦJH4>xjJg[̂7LKL'7mhCtnˠHJT!_437oBrDz 86]Vn**9rji٫ihzBxP&k\;#P-*p=%Cy<êX.N^-aObi~[h4&^gsb!gm +i޳@RZUe)65lǺ},%S{l̪}jwb.⳾Y?0QsHG ~(@vpNšG*R"\V#-*& +,A*Ͱ{r;l淭9߮zE5IY٦yt 66sʲW7iN#Fef?*2d&(QJ*;f\}ٔ\6!74YQg~[?@Ljp- /9ߌ4}gC+?PvnS46b;G/ͪ f#T +  >PE}b1&9䓮!4z(Ri;p;0{UJOvx+Po2D.̣܅lsaΒ؃A}.J*: Oڣ];cL@/'L8Z"uNR{$z3~Tx +U,i.O $FK3sLhͫb# EӒ6O1֌<ҐR7΀إL|jZIJ[K69( +EpU4shb1tCƬݸ &ξSGK#q,GA Ha#+a!MtOW#h>u҉|YӒ(NMsM x@)Ii38k*j.ruDc `FcԵ8' |dSr 7FZJT3ZBLJS,J9l9zvÍ.nZw{ݽ<yXׅCVAYA-ֽɤG$d~iV`NVWX 1ty6 +5ZX%(9ɤ`b^$fiC|ݨ3"5'(j&WQW /| +<ݾ ^OGrAWZ +d ' @81{Q Axlr_ \znSU!MxZ-K9X582 MM^myM>zֽIdհQ=>D0# ?,jɘs6319/aBˑ2Yj,93 cM(k1 I&Y[jNh&yʊE\u)Wx5a5ۭL4sM4EU&ht#rSe3⚠J- /sW%cs\ҲDLo;g$grb1F$O.eJa#%ك#JdcQY>AuA^8RzEgkQ<(|mhi3BV FM@uoQY'j +j& +,/@2q جZۻNz)%{Y tᖭm^Sz_ڥ +5#ô uO;ԜhuM/N2 ):rO&)sBH(4*EQDNFS6.G2꫃oۘc_u9 L]HL#gjE,} 9@s/ +}ݔ؜EBQ~VʾL-= ȿƻiv,NDWj*+g[?ajI9 BhjHj_ȌwlJr]%Yh|/ +U+hdb!0cHxD-nJV(jIf:j[[ +bnG$KFZOv +`|CQ6R _Ir}~ѿ&n/"`쉠:; +%C"߀B\@Ui$d,U4逘6FYjDE^%;^@gJW`Y^b1DOyFCRPOǵ_"C_,k_G El$Ңgv҂"=<]K7aUd7b3H2n^$.'Qgo/S?3mc(VR8֚g6Xw"$Y(A ; N=l&B5ʘhVB73ۗ+h c2Ǔ71N&;dpW6=hܘSRI#DD A9 6}xѢ pCWܣJVIpHWĸU uJ7#4N2 [k=e~i^6حce?ff9QMrdj X\Acrh- Ch^ٕRfD +%U4fƄ+NBc)6n,A + 2?6ECPUSW}[ )od#i$W˵"q:y"aI"^jsG;c=N@~`'Cw@y ! e[@q D7JtDJTOxrd>A|LrL6 TFTU9 7ֵT>7jX䖰Y$2: }#JQ +q' -t*J7r,w u$>U6 mD # x@A '"`e3sH|Â#Ana o#q@9}zUAMjSMUb(2?48c>V:KČ0  4T*QnY}{s:P1,_Ppw}-8$#96V$*f1b!At"xα!=a;(2/k.ZKt0dQ:J,( {ȝE(sx +,2aq5Sz( ۿ:J$"C`*M!֗EފH`@d![!Rj)2 kmvo&U-<@_} yf eR+xbLx|=Hw yO{  #w&;JFxBF)th=ZP>ǡ E. dj! ;\@AdLh01Բ`mkם-)|aU +"5kɵpF*@Izp= THocl*>xZ-FѠ1}= }%̌my@&<+?2c9w^/g wE\};p]Oc>bS>#g`YI^ pÊw#p۞ˌm}st2ey'tTj&шYѱݲI5a]P&^Э!%*KP@ǀpHPg܁B)MxBk †aNCG{ 8GV +C/g_Asq7E)=hoQ{Z>'`ЅK1uIL0& &$oyW}L-KzFZdOlRI3jz"::Zf׊\ dΪ8g_nJoeteBAW8oe4=%K ?3F&D}e-9=-uswXvEb[e]QT`|c6^"9;(ԨIa0W5QRJ(9 F _| +VS4RNj.3k`7LT@#42])ooʕX* (ެIZBD##d 3W +ʙW u?F +X~Av}G UmsM| %ۖԕEdu͝Qra@swaAg +l]vpxx+SVτmOxoPJ"Beylf0'@NFѢ[FiDgOJRth(}Ww|46)a;hPO%JP_IMz[JkrFĔinsHv-)NWFl52븄+=JoLVA.![:C4z!N>0F$TdnձА[CG-Hf& H_ BJ4 i`hsKAB1A;hrz>:Ng,ϏMMߚ6Mzi|-`XbftΙHy3L 63SU=C!]VuSs)kynQ~wO&"熵(X_@Xm7gB&^7mG4}|;KsG#O_(7],*`EODT!δyj+C[72\{8+@iLZ2I* N( +`"?q}xJ6TuF%9Ęu0j%_q:=!>іJLSjeA(tX&x7[];a̹Yp0-!䫸F9?ls 'y╾ΡЪyX[&m3Bm|9q/GovTd-A;{=Chu+zxKF5Etɜ9SR!FD&Rj|'RbL b5 #Ӥڸ\EؠjЁs  VfGNYH^cm}҄~\꽟#UR:OT1 7f>#ZӢW“\3+Óh9fNݠB Gfjvw浈[,(Go؜gb2 +XFlhYVw¾C*פWJWA yi71skΖȯf^Um""},/A+@i(GBFpm&}A}L墏ǧ}8x}|O +f*ƍӉ})5(ɝLſH}l1sDh.t7YyP(h.EQPg, 5Ԍe +\TDؔD#̾( ڦN> M!ӉmŭKmZ^p߭aPL,? +z$DWcsֶfp,;@KT$ 4ФPAb +,z::׉q¶+R/N&WB8}D*fdj(Du%5@QUUXWVa"E ? +"o/rEs<{{}ޜc/r=w.vkqyc(nc{3ǟキg9{c>bEGϾ9\k7c>z"k1[q...li;|z{>Z"ǣb]uu;}<8_ǹ~wq34`8,Neۖ'y|Ts=wd)ݪW_v-5-zǼE9!;=RSn;+ZŸcw9y>vwĹ=wA\W6JKCwc5]Xqgq]b>k!'Qkk?޽95aý;uuF0cApl3CXݾw3QߟCh8l_-+{ߟ{-rok.w_ww߆;=szϿv-Q"_:_yι8/,3a988oؽwu1]Z˳Y"|!__í{oqb݋wQ>G~sǘ̹9Csy}AP̾P??f~Q{{:ᨵ~{pܣ汏]wqy缻r;E- jQ75G0wZwA yzo r19ח,99y{:x=c66Xnq7xهpű̳wÁw7v˽ߙ?u(~f8cq;Yν7gޠo7spwރ#:#xQŜ3v~nkD3׏ 5Orkgem-{;9߻/سk7:{v{5]sα5:;p(<1Vebc{Xsw;s޻;{>̙s-!A֧zo7[Zk=v}'1g9gw>}{{Μo3=oߡv{ػ]s?]{;w}w;\  5gh 5*tհp 4ZQҘ7\c-lx  eB5FC` qN bta(( +#Wx}>GeTnSհ,>HJA>Ҁk}CeGӪSF 1!LBERR R02gԑEFEuˆDaDńP2 6qۤg8(B"< :$+VV )*P$$ +RD `ɜEO 2ӑ]"XUg1Zg8ē8P92:D!@:'C!WA!K _6uk  QҨ Ď y`>)tIk,P]4OjɼH_%x} }í+:!v-,B*P^/NrbI2;p%TSȃNO.:^,a8ƃd*gY,'XTphg3&{Fo0mb{g:W1mBOB+i(RF/Uuyixaa'$BKeR/'-^T(O3yG Ly#"-|C y * +py n ut \y)*B*@ѥ蛗@>a#݈5D!4L~h:խ2'Pُ iG+YP9m<$t@n-7N=cTdŚy@=>)yH&d|>aUqxWS8yyFdV˜.qk(,`x0<<3>%F>NϬ!<Ʊz*Y DOP|M5Zv{K= 23;1ǁƐH$pN-pp"J$h n tP=]GvvTI3ieanV䎦*ؐi!mf+Kj6R]IPY+i:\JEPV-Zkɳ֖,[ɜWRNZ-) q9: Yu@nf Uk +`Cv6 sgIKs4UEm&[BYP+OZx:1knoE!]$pyTMNj„*`R m#iKf(,3:(cl0PG#r*LΒs!re޽N8IU W TRN^34P&[+'9((j߼b z6\LڵesʩXKA+G[ ESE< ҙAfUph,%{S֒N) u +H S@0& )Yk&a5:,Vc=P+L Or +:M(* +of"C ֲȪBM +j&%cp^_yJ8Ҁ\ + Xj+ X5[3J P,jVj +Bo(¨ +Xh,YLi%pY+ T A%KI>*֢D\"[/)|4R>k&"]Cm촃]By'3EvS +M@n`  :>3p}ȀG(Z6RjyQR0hH CE UHUlZSqd +*#YMtp[DDi C~Fff +)8el#tn.n=q@шAf3 Ax5<,\9oU `x^x0V5ӲtTp$ϡ\ +N#mDmXH:ُp٪j fHۡFN LFhi@ ˨ } #$T '!/'j njp% Xde}"Ejeh*9Pqu+ 5&$`*l0=l) B:(,áx>NIϑʜ5\L&DDu

;EC3ӭ&˲)+07%?Á}P7J 8NZq FN:Ig(j@ۉIm$=A%T +lBr3Fd BFk~Wo-|X2@B\`ہTKpz Lk$ d 8 n"@,Yd^;3ELۉ@d M"ֈ|O!ZH(  !D99H 'p 2A,m&#OL_2]b8E8,$w cVjHNd1"2 "` Vu1jf^kReǖ8[❶ሑ%f.{{H9FϺl2#UeQNub'ʢ\OHј(D9Q'pH!hmK@ Υɮ)ɮӥ.;KkF |p`9NV#/K:,Bau2cP.1pp<Ac5>M.a,sc,WK y7JF·"z ARוr: HTiDkEAxƒan I&ʼnxp0 +RE((=B+P(XS3Mjٕ2;r˄vBJrt$f?"أ +'|$0+{"p1WoLxcB7a "CY}//X'oLNބ:F "OXXy <ı%f +>J\;L%Ν>-{xeэw|F (_DQlQN:*6+ʗ~c7萂hKH 2@XK b-׺4Zqi-y4ZP?4ѥ+>4Czv.>g¢Áuy!W3Z:ɟF^`'FM'K#e4" ΉvW1!ʄ̊d-B' ]'CZ x0yWǭpuR ) J<@~O>׀ sR +YCM @Xr.8>a@-v" +R)E#,Opx_jxR#O߉A@&E،fe؎|̇1G!lxiM nn.~K[޸ZkӘpkPa14&53.!Ȱ #%5LX`. AfAf> Gr\uFǨᇎQßD 8HzHBJAJ7Ǧg8-p# okZ8@HY;}TFoTH$0c{g8ԑ?5TGu̺-uٟО&D>M5Ex*ubVfboerѲ@ &E4.: QUapqV ԰44 Ulmehو* B#L͟>H"H -1fI8N֤-qa;},jeQ-hQ@:-X'2I6Z8>騑W&y5d3 T]\Ri?!҉X N$/ 7)o&Ț"_b>A's >E~>>q@8&YŔ|uFH' B!D2+?U\IcўONq$2I^|]c*>j@,iXR9}q Q aNح +o tsqYȄ] @Lӗ(ʃ%4׋iF +C#%D)IjxsU$% l`U-Hlff +t +8gh%/_ճT Yu qhN!% FIfY Dp80J0<:6^?7py|V.n.,juJct0O +e2ERVtXh-H*:\E_,PS_BexG kJ$cMMk1j,K aL2}A!YBg@ĄCI]*U, +KxV.8G} |k25I,P1ī2E5h& +DiYWuUxDup/@  p= ]#@(4a@¼\"epX+ )vk$3y$` ԰0$8[ɂ;C(gv0ATߚ(mq4TdK3B8 +!ֱ8 6|CZZxX&  ,uSPF(0(A#g8 1 V͠R3&x(a Og8A$S>-AG? pɰ +3.D~dd`rSBq_{<ؤs)ŷyx׋0ǭ[&'B)t*o XWpQ[J%\=AokLzg0NLJ4د3$tdGNXY +J>x兀Q <Uq"1#TY AlZs΋A6n,EcOٵ |?"+ ?Á4@B?(X`u4[ +?b,_x d'v(SS^"VMᆊKp(R[W,e]?Á%)Fo>U"i $TITA9ef@ #0  RTSj:\:>(X( 0!1F!dfjhR|xԕlX#u'hv{ iOvZXmr/VYPCpwr;Mz`%ВתMf`AOA)[1*7#43r$%]SHX,[z1Rv&{*p?Ř63y- }͝&{Mq9(X$x H7 Al,ܰw}|.FS> gۺ4 ovU)Hf JZ]!¸S^&9)ۮ)Œ׫"hD'E$C$B0x߭j|[ .39'i:nL^$y;@vFxњ`r`La$cgboQ~}/ph6XΈ +H ӄ߾H oA!vO-?' $ 5k/1N/l}6XRr&7Rt'c]7'Ct~ja[۝ +ّV8i+9 u$#?6:mBTY)~dN(e] gfSPžwӿhäT!g^Bٲր DcP~.݀hD9me^7 +[@a6Ϲ +Jf[QdIQsJdDEb):v0 88$MUGW>Wi ϯlV*Gՙ nb_M 4эX1_a,4RϾC΢qح%PAڝUɊWRASU|"Dz]/;5!),4Զg#d\kG$SapD0i'DE.Γ;1Cn+,ӇebTG vqgiL<,=upD?xb#n|8)C=† )Uð& ikEz3ܫA.VxkKpQ,H6g?J `xE ԛ=))^BC)BWνNԊ 5wpDyӎЂ5 y@^Gi X|K˪o9pk$b + +v.TS)O;ބ1e1u,gdŧ.vxM v8,<woo=4Z8,\e,,%~ &3Nk]~p?v X:QaW %j t~>I[vo.2'M P"teO˖竲6voƔB ҥէ7]HN9 z.^ތcၵtla8;cGë"9v^b`³\)>f'6;..z Kb2vEpŌqR\<+zP) 82Q$gl*z Ѝ(~ i_Uo?aA8Vuq#. Q Vm{ʖY0[fZ5 N7nC +vY#3Ј1`AwpQ]U  H#g"WbjZ[qVMs11ᬨbшR\ \'k9~!t\u]|;RcHĕM=ЙANXu[RsH_FaH:TSXeEs<_ 1yK[GT}aP򒾫E2V׀S=_UgH!tK-dhs8vbq E(CX#L3M` /g#[1!L6Ijϓ_-d WɚlnJ#/GU{9I_隘ۓtŠ:B4ƂPmu"x4I*uyor"A"ˌavb(%cGUewIb  Tؒ bqtX8Oꞕ iҰ XњU0C^J.~+ٕo urt22p(ak&L = ]ADݗd߭D9~m|͉̌Z, J"&oUhI?9"*fm2N.!5Rn_=;j8 9&H+2{zh) +pO"WTa+Bp}1'z_y}TpqTjz؛$TB>`}}P<9*|k.lVk( L<S7P_li\; k&j =AW#wzfZĆk1EXս]JpH&t61]韱:8ʍ +_=n VE^pp̘ƒox82ڑ*cIkcyկvvjw,8 +2{or\[V2 +UMT84Kl 3΅7좍%i*!RWC|r(8Zz#cVKxUŇspPҵaӆ.w4rL{wt3˄}{S44D|n!YUk%aI%4eG<甘g8b|}9\27c3}ޡIP/`-7e /.K<)d_iЂU"vQkQˆW?ʳQP$&pKeEͶ V +1U+xZ"}m5NLt\nA )ű{۠_f1Tв6Wq5afCrhf8NyaQUTeᏡ<9T+logPo +Lr imЬ(_aKic>A aYGVS7WV]|25hVPvG|8/(E[3 +dB;2l8EYh@ yz,؄2j5HEs!čc`sdb}^&nXX| kQ8F n@͇gCN:oT{= 5U/AԔ4<c% L{AإA1x_p|7VS/ X2齬 3f2D9 ah@qyQ! +I/h#k [,[-P#&+pr鋎6θnA^^e[=`FV |q=#N[%MGnT,E0"x2R/\C cj/z8@JZjNbҌaH +&nҼDN}cP04$Jkk*[.\ +E4FJn Wxz&UBC>yrX.-^aRp$T$Y w@hA@t/Nk(dq.>Dٗ~Y"d#-@DEm8EM<% yI,U> +z:Қ4"]cMT$ O'ĪY%)ti*<^K s8JԥHӧ䨢D9^P]2ae95QQ C,-Q$P!.PbagVo2xc;E!.8`vF۬{H9ݥ 蓺:|qjҷVN0>G5+8ٿ1Ts4qeX[ۺ%u:~Ό(F0,v.pi H o$X#4~g'' -YFT#f۪mN-mKrR?H|%0+%lmn FE 'w+29 Ah lzaQ9DkLSU*i}`8wRuc 沗 +Yvtw#69l .e< +KT +n MR7Mps˜l\`"$g e"pZ4A,hh4Z"Z9wu6k; =5Ln 32j[u&wHÍ+rs9)8g\[EYNZuH:NaFxIs=A@yϓ+OeyL+P*/6͠׋%<%cLHT[?̸{ +(ϤzуzO*%B[Y0wَZ2Y"DE] +e&zig{~b/ ٬;9>!1j& +\+fڬ +y\$LoUf嵚KTq/?5Ğsq-0Bׂ#r4jƶd 詿J7:JeѼ1K撨@YM}|#Ƭ^\ w[ #ymq玨 u#y&IِhԼa +-o  CϬ&­- cn?*+KW럦}NI->脒+5 +Rnxg0;ŞIB6 +]lF6MʁAA7 (HvQ}h~裥j fčl$g4BT^P$B1o8ɡ5gf<І~tebI$ ǁBWJ&ykk4*DS#[}3h~VQ@X_&u.r~0!A!s '7."1D$6dXo6$9~P hp $^r1ū0 8\?;HĽ}0E >9HI;6h;@afgXOҥZͮsQ U(ŅY|1e)zSHd2f`g;lDL$sry|6y<_B;e"NrD"ec̨$_AcW!92 wIp8WR>ai)zJ"*A,} o`f*Y Dpg:-j}NxuLoI輠3P?9D9e2۵ Y jylYB+E64KOXԆ?X*oỳc-UWc2g+{i@# ɩ*~")L}˹_0!T8p&lh&HӽNhzǧٕ> {4s:w3Rxn\J>9-}q18~ޓo[%Sӓᱩ>xj^X,aPW, )q2A Ld Rw3=.y\:5gQ͊x]#j\jCd +L%rg͛\kq5IL0PAjOF,)>C Z9 Ax[s^U.I.SykUt /"JY$k e7'ED^MpR-%)k|喿bK0lXx1˻$?GiĖXoZYL%7Z r {b`d|NLjhE*tN9}3OlTIK&5ߓ+wG&ľ8SKk ƉϺr|vNU: ÁF pϭ_V/Ju.FB +4:X4]`$R,&^bAJȇ):${씀桽Y礳#WϥڀGgNH>iU+6hzTkx1u OƛSb-|[OȊ{۰S^?}56y[ؖNҴ}dO6z>Wނ20{d])G>a8^C\U/0 +l%@"nke64z$ ͂!jI~$p?%܎Ѽ`z1}-a0Vpk>Yz= DE#VRcZEi(bzw@WU5RCԴ* ul{*)9Byl[Q5 , #\[$1cAnܸA8v"aq +JjDjF軐.%X̐T)Toķ1ӄbG.NF~zv?QgO90gS% }һf=@YD:MN"p*Pb +6V sTkI%%zZHvQD-(dH\PԤ9镦6)hN]h1QDOE:f'3r1_{ "iĔ,B0;,Εᬺmw)8LI 8;lGW}*lR"Z%5b 7ԩD:0!Hkn΅8i|T{ȉx)3OԴ{Jۈ$g#u1UMmOlSbme G5[P uaAD? v%cPF(6ZPOAXE ݈oaP9a=Wg +Kpx%& ,CJY>OH*uKWT'>Ii#%?,稚1mͷ{tR08egMƼ%v]tߙ]t8RbZpb:?L3jӘvs>ga@ Yѫs9 tyAc.8 Ogre出!/#Z-NIIgTE5$s +bx ( 9*!/j);LS"[k:= W$SW|b ݬvq@5[߬Wk2J?8T0۔e.Z!*N?2e,ggfJ6͎. .hi_i`-hD #Α_v{wj68%e&YVRu;YFBDЧ\__=%ƧaуYj#Ωݽ"#VnOVob1*]vTV)[c"@řJ3D) Qڏ|3yL1'Tt;0S3S~(}4hd+$R/W_6lpM+ܼڪu3 E zwYRU±C04QW~NS.K|eZ垗~Pc@f@'0@H!07 +!I^FCnfG;Do#EheEv@[~zg ?Vc\vi'LEܱ[ʔlI +:[L/3h_(#L%dGDOtx5ƈ[^!l$؛FrpHKcLyܤ(Yg?ȼ VџE-.1̰ Ec W0\g J&ek ɦ]2&of+p8˩4˵:iz  +vSԥRE$D܈=I^:躷qװ6}*&i z׵ɕLbioMsЀlm*5Fw g6GrUMko#hS;$Q 󳜥(A>m7TgrYhksv `Q)v,RUG{|o>W;f-=^p#:zLQakJ4 ˋoB +t=j^%{"{_ #n7@L`Ņ˟jvC A3aq@oX+c9qq Pr1X^OТ Vl`?~&wLmyhJG/ruҢkxhCY+o_{ |5Vt?ifYwT0o7D:zS c _rtH$~V6ldSejiX[' rODx1׿)/1q\lcp^B۾fۨzp49`bo0 LEP7p3Vn3"%Zy2ftz=Yqp2_r/APj\RE*z*H>vXY`ެIx~sx&g !7tXa!a_zwzqmK`عfQͩV ܘ ?tbᢊH2.?W)OAlCmϧPqQ)ZY$&"GS^.~guw4} Aճ)±WkfJ:d#4=ӟok2yMT07-nٔRWd< qƋP^%hx;#TmR `6}dsA| U*G5ɘF)г6H_${Oҭm +iQK mx\+\ZvJv { ;‹?ncΦՒl3Wzd;:=PhiWk/^&MY+p4hKyX.Q,! #fc7S1\3* C,i#l+ѨYy8Ѧ`>(̗ #[1م5r }顺f7/Хp Z֤Xߔfqe'X 5K`wf2υ^` r_)(ŏ4 MLWZ:6Uڝ +B-aiIqĚ0nm!mZp&<>= *yv]G;FQ#5m +ƌ?&^}x:S<9TU$ Uନӳa0l%gt_ۘfBș2kpe-+q ko~) $WΨ6w8zE_|PO%\QEMcFfbc@7-]k ~9Up(Q;vu2|5DE67(R;QvVLvUOD`vR4єIg!zP~&y fʜF+|]%Rv.{lHn(a([051YՓ?ݹb&(粝Q:,Qf`Re~eH6W7>fDoS]H7AMiݦY[ AE +-=շ' X= ʈ'_ +(3T[ա!ߨn d'z4Gx@}fHwt1XN +й Ove*u! +i]zEyPWb" =zPܞ@50#ڛvs2ኰHVISul|ceG 22zӸx7LʶC|g[9Ge}shYa6kc3JNgXds32]U+9jBjëP\t0I +%"W~/{oYO?|VGg}+3rIKXҴ;(xjCWBۦ"b0lf + +P\ut".!ͨ(B `[` +wd 5B@y(]pk urZ-a*}W~oSc,'PxoFElNUu=dcT(ju[[v:3B E*X. "TZP`8$V +C2#{dwBFAZ{ʜoFcЍ]H._t+(QQ-udI q0oo<((#$.#`NE yAg!_+>Ľ戎;EIBh>% Ba-֢5hzѭrkBF,UN,o/-H;*zay}}" h=/ԃMS<l̓ARfnO&\鿨!b@5wIwHUc* =EL{O +*iC!` +bCHn8@׻oJ]ՁsԫJH~~|{`U..7+D8E:[IŠ9%Y%8{dvP!M”OKsyhe$KI +iaZuyNjY?2^LLِ#,ZRmiZBM$ٯQ`S4Rkd +i + HiV<OE"QSTYP2G\< 2SH@A^.A[hjVWiv]PHm`sYcBkVÚiyR*􉶯kXpN'G4d)h.wyE2aVOFxea@=FAUά)w%`ȋ7z Mks2O?3=2 $wMRwдVC~z-唄w'疈H H_0lch/>4mNzso(g6S)(n.%S7XD[n?s^4pB|NyB89J5x)~Y MK~h9: g=T`m;zM5(NjՔq+UJ@iB+qd/ ~-+5ryJ+sI]RjF=1o|fu‹c0#;]|]٢3Ol¡l.L>ɜFX!i|d{`ƙ) LSDe6 m2='R*rjğI-a9:@Ch$X.pěr"6Ai.:! e^=_gRD"9QS%O+H90DE9bGkr{csY +endstream endobj 17 0 obj <>stream +7p^AT&*wUfIZ zޒJAQฐA*ͼщ)DU@ ]>63G ZicLٌ=~Bm9nz 03[ǀ` f|8vM܌H~ۣQ ͎br@BӸ:%вC\0Yj?bEXlE'("tf@ 61F$Ly O5OANZy[܊j P郊ۻ?`[\@"D$ؖP@s"ڌHH,e͊|V.Q`zĞP?yV$Y2H, E_1=6~(O<<" K2W]7e~KQaՒDa=alCZ |>J#] &::|<hKb}a-p >@ p!9@g_%GSN#iAW֓T9Ul l3jOKӆcgX k/eNGernǚHs!6,! $%?ipH^]=Ub:=؜Z\l͉L)+;j(t^m R8K9֩`Qf\H5Qyx${<Τ3ݰյF*2 'gk4j*qgc>/p5(+MwzhBSC%/A{?5S?8?w+j _}(mojeP)9wq8zydnQ*WY2U*V{VQ5&whA$bm +XQ4NmD'"Kq|wu] , ?U`y8`wLI$}Sx)JH"B<Iƒ\cc:nǔ,߯gpEQ$OX +[3JDx7DQ$KDʆ{'`5 &Qlnܴ*2@ު@pϹ:hpasҤ&0ox-Ӷ2a̵X(I=vf=@Е&i6~G{s,鷐K̝֝lDp5NRX߸Ц85>1"%*V(TW_ܫF%M 6~TyVQHfN5}Ig4!n%qQt1hқf>N9Ĺ}d5y=R~}mmùA  r{p#N[ жyac_>C"$fH(*q05Ta 0O {(5Z; i ̽ +'}){-F8m\.$3*y"tAk[&W=X`n)Iu_˗B~wJe7S)^=*'/I-@ Qk tr AmE VOʟƙ؂K}xjglSۡ?ӯ;ˆ[JŬ0f0]wD*ODrP!Ix:#cejE*R| &OYj> V( lsC'^:1S3*\H4քZl( mZye)؎SHVd9 I آG:y~jA(M?!6J~?<v`NN!xڰ!YhKC0[t7n$P}H% }k(ޮw$`tUlv3"4oS2@e),4 ֎-̦T,|du_/o G @EYJ`&Cgۦ#.~j ;7GD 4R | ~f$7?UX9L+r +N@Gmk ;`O]NS O}A,=5R3;%V_?,N79+!Q6m)jrc 9iy[f:/BB6pȜBzs"^gg-@s1MЦֲVO*bɟS0yu;c#-^"JORxM/2Kjct۳ӫ =8HL0t@TpI'G7?_NT7>֣פ}zkh,i_nhNr7_3vdeT{|lb6/V߁K0Yj+ (xΜxNfk.}n #7I=d::W܊22-a4ΖayKXK|D[P= }G|^[Wa- M7 5}w-YS#^:`G{1$̴JLJm *5Y̢lg` (EɇT~Rw\ v<5!)=0T^ '6d~&4'l:^01=vԲ"#ԏ3E IYZR5XȷAлF.)sQ+E|HGw eFKDzl7j:h5њf1 +8'(o?, 9M`Ub EsttۂzH]WhPbU[_ h +:iyVZ]M$!3\pALٚ&]rf5܉qyiy x +*@ZGlmaM-'&k)`)#;|X,y *KvMa(8U&3r/aSzkJl b ] :EX92iGzr:ph9T YS;Iʹaa~4`;tXeQ&V + %'!lP#P%ab5Ks f \ pIL*򣃔-HV3\+ïvh=C{Ó첫SDک$S!^0RT@rN[)ّ<_R*r*RC$Uj۠B:ҚQ2včи3KC[ wv_Q͹Nfj&>Hx~9(=jrN,D#z4#GAx[Fg_lŃp[lFI;Js&i{|{%awVT JXPmxUSlฦ" =Y'Q#X#\1J:T%+_ڰ6)kPKq +}CjW*aTӣZSO'"¯=O 2jbK/YZ0'U0#4BŴg% ,<1q_/ ;à/!]1OA{0c.w%t͘53w +z!Uw2A +KҨOu=#F{:JrpLp]WUC*ӊoO`V < m62Bi_y>H9>lSI!ZA}9 m ލ gf56JBføA* JyO^ DŽ }) WFmycDyj@>~D_#/_[L[Wq::v<-;Q[4Vf,6C |ύ%1>Y(ZWm$sg\S㸽a ` Xpx_dbeHPi tq+Ƨ8-_`- KPp"C{aNzHq=:ƛom3(Db+2nG`Ceο跠\Wl${-~`+ԥh+SNmrx>80#븃ZS F̊h`#JXBO[Jk=U~B˓@Oڠ' +9oj|A6TtYx@y=_"yw :v?Jpc]5"  a%jjAҔ$Xh ߱-@)/J=%({heSUV`` };O_Oky3-/:jTUXC +fgUuβʰf1 + +UE &Feހ5T嚋H"G6r^;c.:\ >xIPKc>X>ørZlXAIrn"wW5 ρ߲ER 5)O\Ǚ҆_ENiڸ׺C-ߘ /gv]F";t[3NpQH@q|,6p(7[ƅQ}ap dA.@+?'PL6ڻ+9־-unZr֪.Xfjm堥 Eؽm՛{[=*&%9M:p`+(2A=Npa?`\"[wW@b7 C;Kl+fNqri݌jl%MIPuh`rM=|L>3Gz?@R- ld(\a(7iu'peY&sTв݊vECV%bR?'$gz "VDDD$1+@5 Ĉ`1Trʒ- PRDUv)pJxl6 +:N4jLhM/%A`Kj]a& iNP& fDBXZҹ80#SrMGL ,,9F1:F0Q"s#"8aEpZ ʃMʶH,6H$M*@$&*Wb;VltB2§ 6(`J_cyRE4S1!HHWxT/&DlBc2PrH8NNGupq8((L$Z0" Tr*APTJJX(a- ?iP)DJo<*Jp:,ԃ&L@l<36zux"[8N3* 2 E CDtqJR($>hjp:1R@} <Z +ՇQVH@aG Q09QH ʔp !F70\DNBryL4Їӡh$Ks2x@NGGBXPVDEpb$T`+&cs,qb~8oܸ>·y0 r(U8hrؘܨB9paA 0N Ӈӡ( t`Q5Hrp(IӋG\|8p:"y|8>L!x (y2jV6.,'jB8dZ, +ҨP0de!-QFi@hpe#ˍ‡aHR2 + u +*A5cq6FDqV&7G*P/e*J..LZ*J EX!Ã5! 3%SaJIVEPi sYTt2^$N(bC*=<1$tjTzaXTT +&6brYZh^`JG$ +QIq=PXࠡI}8Yҩ7ʛh% BYFq!, /4"JE)4@&{p: 8 VcRrY<0O!y|qq*)Ȝ^JL>΋dd,aA<:6P-!."0,4uy \$4\-]ٰ!`8t_Dcpcx%ph%NGbqPD:(<-g"G"򴐊鴍Sj$B6:NUEidЂ2+Pb ]&͇ABha$4|8}8}L^ M%= p>K&.ȍH:ĠX\T0*rPJ\6P$&yH8I%/3 &Qu +AQb0q&DHAqŚ9|t>%u9 x -D 1P4` n>#Hm@Q%AKu xa +Vj-XX#$HZ(HP2:jx@̧T N DP(lJU"  B"PR8VP:Q*\ et K|<72LLZq5:p sJ;htPXRi)a4Dc(" ~ r`((DH!y F9BDɓE@+gb/+г84&bbat>4B Ѡ.( DpAITX-m"4J +XɍK%QRh)hS2'ׇө)hXQ9hiȼ|T =2Pʀ@y2jB-( ( +"De2GI")zB)WFI@=* ӇӁp8^rHH ^\IRp GSrBXP} 80ht">(0RH4.>0 +_p1@𰄈tVZ˂B:I&cKzW ޸f\˅(-9 p:'"q7 #cskJq-*0Dz:֑Z.3˜Ҁ+ xx H‚՘D tZX#x D>ņH%`S:d@ ^KDR&˄Q@PkHaS"g *ZŢt3⦥eeqX|:IXR+@ + "9PF@$0(R<VdEB2!f:D//KT\&er"1QƇƇ +a]*b54  z0A#hЉhPV &A$B-6*P+F/ %KF$q$KnR>QPf\>/kCàJ},ÃLPr)-1 ܸF Y1Q!XuDUX8f1Z P |! ;8!X) H(  Jn\ J0PA@XT-*ap: +C_P,%dP,C&%+8,D:3"B( (.N hVQBIx«%^' H*Eݘ]t;릧( ~=mN%3O5}uLt]OnmL92j'=2@LwՖrr#k&v!~3SNK%6.ɑ$"8Z)6.@@IKNQ9r:.Rd>N'EcL+>qĀ>Net>· mB4QQrX!eJZ.N2-'AFEI*8 Jecq1PI"lڏ볢ań!0 P(,YhǪǁ KIIE +9ey91y!H0A,'diC4rDP:Rǀ Tp2NLZ'%AMT*q =8X@tKj%4,@D!VJ&Ѡx˸(k]qQPh6&KML(aej5dAH0|ZKY3(<"y^L&$Ãb2@ ltFCP$r%B bjAMİPN'*DAQb 4P>XH\ ),AE 70DPpAX:1*DZ:p:3 %0!f13BIa@HHM&4+$Hfg(J!*.9p: 2H("ċI< "jAy P"+P!%#HHTkLd^Q9 s@q `IU +`JOU +#R2P1(ȁuX#Ufc@"A  9x 48x|<(G y<=`N-i!Zz881D(J1&7s"aHHB+BYHB  +.(d4nJr @O*S//*20Ax@€EER bXZPSEFT,|y:NR:Ct>>xܨc!c-*HJT(!N3% +DU +$"@%Nftcep:6ҩ`-ND\ +4+#b:HĩH'KA ڌNa9 (xxO Ղ!GAANxHD f9N܇L #JҀx Ԃ0+#%ĺ׈iʇӑQt%grL"y4 r1y2J##OBBF@:((eR(P|hQn\***zH NP^$bX@M(dnV`*c>lS1@}H Ja§VGt,N!z9QQqA̤p(p:#N4t7}DRMR ++FV! +6,X0kV8&Q ߵL !z)I:$*Mp@leMM6BV +$0b8\5H92py|8^>J7s:xAit eJX '*16Az*Q"l- D D$:26:|8d \HD +B&Q( 'ɆH'.AI}T!Aq`,X(  (T0 +zʇ!Hr\`6’ɕ ,l5@Xҩ@ղD Ch2b>2BQk!im 2@%T㰪QWv`^$#LX0}R6mTJp: M2/ -qx>zк\60A@\>f<! +рE&_,\g.dqBHi *p)@j:L #ɥ$Cfr@˕RA)p(H%ip:+xl<b@zjx䡠3D%ɁbQ(гX +XX&[VhY(:@kB 8â2B%`HdFh9a +pY r ~D!Z KtPʭƀ "8 ҹu^$ML"6 +I `MdqarpxhyN MB):j<6g 3 +fc@%! 0ЇYMEq$,ܩbDP:$riyB+_q"<@ D6Ru1Qh]4ВJG 4< + +8d<%'(GǃhC(dHG$3nHC3yb6)=$b$1 =IUJ˚7F}Țcs;]w̻?kLiSY:6 5W;,GFdwx|߮7$y|"swexΚs:1{>w9~|}NeQe~߷2~Ktּl{ w>&߷o]e7=M3=~IBl˻uۆM۶n93禙z{[{lfƸ32lMqo<昝}z}Y3]5v&wj&߶^scmw6{ۡ;rkx}:n熏Srn͉˚3۱]:u;7_ns^CϿ|q1G߼3UOw=dd٪ȸlNL2.krte e_:nC},[sKN۶x26ggw}׶=O[-e;:VLFmN1؏e7ϼx /2켾e˰9[}'"3SfUloln n.>þskܼέ߮=l;r:1ȭy};זolͩl;1؜̹=_?k5@>onm۲-bkȰ%CEdw퉎{y{̯zyw￳{s^u#bf> +d:ns:(}Q)8UVmqznl5Ƕ$Nw]?2j\d=|{4ѹ%3^/׍;ٮ2q}lΚ>w2Tn65C֮<;vi7m5gk*<L=}}d|ebR53ѓ!z_7^v|~뫬=kcfkE<拷~MbN~v5ު"cFvt~{eڪr6V]V)ٜZi_vk,UU=3/cTkɚ2sez[\|d||| 3Yew%f7obne˼|LדӉiElӗ))273.L>kILVhcp:*,&4iy fl^*.X8 +kC㿛ܞM=񱽷1k/>72{{nٲ=/ޮj)m=:^="z:9fֺub_Qqnc;-nmֽ?5tvةw$NMֶξ9?[n?_7nN'ܩ뎿pߥC?fGuo^O~gg1"6~zmC<5nޘ0W1 ۛoߛ}_@V>dloMwvo1ow1{p]9[ks_u~Lfl%n{'yƭ^Yu{ϛ{_[nyɋʈZr3::cdM|/|~ޮZ~kZ&c:tRqk߾7j{oz*{+WsѻٓssmnJ;e~{}Qnce5=Tceλw8w5uTGx׼ά5|֯ZtP֖q:-Tet^dܘitZ[W[|$~֮غo٬f{2n?dޛUSۮna>co?~ +bqwלac{;dCœT&:=37kCϋⰉ qk`z} qYٹboJžV\\]Tkެ~f֍{c?S?s&j鱫6k6ߛnfk~k]nnbk ջucmq[sR&?3+6sO[sN|ꌈٚs[+c}y57mvܘύawWX]~n%~[lӗ[UfE"z̭Θ}}ko9qq!;\omiSl17mAOolʽ},Y7sY/|Qߩj}wyظ5_;]fέzʪϷwڼz5kq1;9]ouo3lpܻnؾa#k_۷k7=2g?+ISG1u_if\*UUTxt^y}Q2Ke{Qo>7/U?Ws9QEF&+e$Wzyw)nvOlZX\Z$v$$F^Gn؇˛r)޹O֘Uu5vk٪{ͷ{o8yH㒁.䰟Iz}})ot]95;~cM17]Uw1Ϩkc" x6Od{Y~7:>s7r2NLi^e^Wl߼o3֝32WDRs։ 0:9ט^z3EwH޶m-߫'>ko]KNe̾N\W P ˌQ6>TwMY!CnWt~d&Y3]]/))s񿙵2Ϗmrx/"/6nȘۖSS3k%uOK6x|팪w{6X[Y{um͊ט޼m[ߺnu6Tz5xbDƃ"&I#0 qP0JR":$&b`00 +(@C9VF9e vҏ3 8 H[7}9)Հ(]hY6zxHr =bjkiR-c}i/G*Hp{#revF݁^5<65L6ج391SDaw;|e;wtep?ȃ`U#J},L\!חq@n7Zٿy0Y& LI3a6Ij(tk2|LCgD4р +8yO!OҰ$ u<l+.nfw~ĕt_ˎD9jIQhnw8_9D  O׫! ecH|( +(i,R]KSS̷Duz=3?&f{uw=n9q= $&` 3PxdK9K=-;KGtogd|+¨r-F_A#EF:XMl7B.Vv6IPL| 9$/.M%u=a"%Fďi՘jAee?%Z4E|)m *[ uϖi^[$T` /0RvM~k\*z/?|_@i4iU0+0U6np.PWj~J,VC)d} #4xp^jIƱOM^)qv_! ( h6h7h1&ЖhAz5\ y]+ŝ@wTJ`g*.+ NdjOg7݉#(՗튯P`HwYtb*ؘ`>6JrfA Ix)e &)4*E}/ek[E\A!T&Y VԹ\ yH sS !-IWVrP2Ukt/k3OWR|LSY#Wʊ`SӚLlhJ[Söҙ`i)PO/T*KVL̳b~y0u:]k/T%H.Kftsݢ}:qoD.PIK͞BF! jBQ k&i?d`9dt^(9 PE ݤwY#E}ڇᖽD# 6=VZ0IG)L"VKuXB4󵣨C"0ɸROBmy) $bOwllN`SG,P=sbLްUǴH>sD`^_Y#:y*RɻV.k27%3 7H%ykM& ~_uy S${ ϔ3k.KF,#S/9Ky3ܙdGK[$C+\R3g^+Hz碓bA[}}LnB]N$Ɖj(*(piIPDz$ )PbxGξ7聫 ^fo$ph˴}`iAw9xíiF|J4n:1JGzT;bAR蛢S+9٘{#DC^ژFBH=B+ %{i+r %G{_UfWT0/P/XY߅3Ḣc аF . 4}>9%(ce]L(0֨f>V\IlԹ m4S|!E:'n24*x?X8ʘsEWݯ5>Q=_ѓ2Vh-p5:l)D<DJ̩ٙZ?Fm?fU?-Yg?/6-6g#-V!ɮڳ 9By2:^F_~d 29-[NDPI֍$>Jďw!G}?|3C+;FюHQf5+[/w5(k4w_k5rwW7K-Q p[OIb"#=~_=`&黙XiEV(piq֧*;SZC# +JN|=G?h)V<% Vӣ~]cs Ҍ~֌I~ؚ޺D|'cЀp2e54!m@?'iz1Մ}(&G/bPf)@mk|b&Ufk10޸-1Z:6T 4̑Qj{+5,pVSEGycJȨNwq#z +="p٦\<:Цy .Tam +9::(1KxW,54?d{ZXms0w E06.1Xlfc%<grq)v D#5W~I;Ƥmzp;p$(bγ0RAfM Q ¥`_EuhjөX6;a 8j%fr n=5- +Ѧc8#Cr ȧ.bDuH^םvggR.K yvyz6Dd!'V>۞IL2<*B1-vIÎU^"XCbk3?i oYΘv'~:gqm0vg`Wn9aiM +1,cMIdv "Y !tvLr|kĩi{q״ "joC;41 7`EU& @3!e Ai'OݼfW7c!s!/im.%u`FoMUOπjN6v wvѴ|$b[g+^g$gCiW>7Bd`R+#b#DHEc<;SݪipbyWXD3 S &*;cAHz':wdR7nJ |GE6Y`$clM,IJv_(^ڽxuyUZΣzr?DM$ -|aٴ3qn +>gu5Bq30WBgKCYQ vrP:ᩣUl  Œ)3#]Ԏ[ WS8&ܫ&:R)-v̤v)NJWfT''4< +XK  7 +K{5J.zUD>JVh[VK]2"`jF+Ƅw;}3gfAhYg`gjH !qאEӤy 9BgT((&^!slԨm(L8_"1gʄ=ab9Vj:mYF*8_zZ#=Q0GH=얾5B(p؂Vwߑ;wde[@sbWe;ǧކ Wv3IOO1^H]hNnv{SZAJZ29 SY7.Mn\  S2[gM0?s2З+=]ݒBFO)A7]D 5 T[; _)@YawGi+K3S, M&k }:il5ȯyG=6f+6EŤ2%J+K' ^g%`z?k4V&28ezN֊to]톁+!Z*9TomW,. Zi;i,hIgƞ٭*BO+qZhD4"WA>m>3cEDs]q36\w4>[ە-9vlM9ӜkKnmjemOItTL: p'lp?HFE0V\6 ߋHj?@{4b7Z}vP{~7eGyK"fj! HDRKoQ רzTWd†чa䤢rAl{{2/q]9d35LUŵD}X}dZZlo6t=@^I=y֡WRO{9,~bY@RZamr@l?| lR]yeEB r)kw%$',oyODϺNj~hop}k"P[޿Ґ_lK=~ %wna^@.v$oŠ\! "QFt("l}[ g tÑEi"4WI1rO:׀c-=K8z\*f#S|JO KtOMTԋscru,a0vU)Qpuq 8,+'Ֆ{J`XZ(BZI)_,ޥvj>aڊ +wQ'WY1'X{Z'w s Z? + *sb,@O{o$k(S,} zKOk$ < a!5;FUx7%&o FFҩ[ZsRW tMA'FZt/fX!)0{gQI/?IQad@=6OgD$']RY fqo­+X?ŵ+V3U/[!Y< ++(,Bؖc닁a$wl-;Dd`f͈)+#oWT)'߬_ b_3Baou)ẘs5Q¨C"ltMx2ay +PZQ]K"jaF?X8G^y}ȩ]3 v4"YLr푎Aa¡tvEjc[cpهQKx$V=)Q96&&\m4 ԬF'\95:;# 5KgdFm̆N)A>kRRfI9˔RF8t6(&Jz ۘRaeR܀u,jkpRk)MJ,{5RZ5#A?5)y#ԩ!=$cäȥԔT|mXGu@qc ^%ھ>MnwtA4gg!.. +VRvotM>V鶘cPq?^]zg̿S9g٨iW+.45F[BKxt7R*aG=.7ske^_%-,^hte-tz[63a|W[ai(f~fIY @0[`k(S*U^ Uw'? :Y v%Erf%J7Á*0JFn[ٜe +nK誖qMw/%0wXr"BmRB;^%cɵ i(gdᶔ߾ [2΀30&J#H*(+3'Dqk/T{:u&d[zL,qa ":dGV:gb\u q,FB\yęiP.BD3gKI\(vNEA!%ly_TZΦʱ~6TC,ctFsQ:4a{k0dzӐ~A-‘3(hfBO1.ws #DVOŎ*~9:ؘ[eY+v]N.h/tEBˡ,64N<ȼa(lx"jDRA&WvϼMor[ST$%,+UH2~PޗkJNrjj_ԉo9wc?pkh0;Qx}F>崢P H b44Œ<6n +oFĢ-i-Qފ4MAEAz( - +'rY*IEۥ:-w«Bl!0vg;]ÉK +_uHHnqV2 5f_E C6HDv$D%KZ ;p*nnEÝ!p,87GEӎjUiv?OßϿ(cvzoYd9UvWtsϤwVU'&c?ƫ_X|1 vqSXX Iyf%)iCjh9OA=7I$ΈzKS4#vPy_jnQUytǩcmH"-vbO3]@Rz6ڢG=b{~ l-Er l77WE5LIeM3qH{]=[Pf +B^|a%N@T^Rw߾/"= YP:7}I쑷ܬ9)z%nҒqrbj7؟ +n곸Tr|L*ou/ Yr+Zx]0K'XT/FЂuv8Nw2p_ oU(|K epey MJa"JWn )2CdS+ $7/#b&4Lu%"{F>"|o .Lv 7g9*Oj>{`3V9T9 +:xR7cjAoˠ yCYց}?Qn/x,ooR1}UTaZ~x@fԏ]MaIDs&*[6W~2v704"$зgDFHٱb-ltenD&j_%}bX@uVuo?fGjxO̪4PAJe z6cEl%/7x 4 2C\pXg@9}0E)mrFl  dI|*o^#Ǖˮ}m <_U ~O1nO(ҳJ$/49=Bo +ӽcf"fG@ 7,#Ȃۘdd' LG/M=o } ^ +RY2ŘB},!9 -y5 D>DnVx`IF!5c"ɢC_wNƯtnAx^n#|ܩ|{1sxp1a'SDciT*bhMlݨ5Fڸ9ޞ~؜ Cs}/PqJIL**oW!Z _M'#YNF#fUߝC4W7Eb7f7z>~O/vהFRޞT4l(P׿7qፋ ;(DKi0(o/߫2X۽#iJgPϭԭ(Ћ_;hd?![$BdT1aNnh2:EE%Fe8̭6I 9eXi@H#em|HLo_J@,ѮIܥڨB>0|B[(ł:pYBC g 1G_(r8t/xc/RxM$HTG8Ēl/3e+ňl=ǦGX,1=ڙh41;^N_lΆ SNi`^$$>\3b_ tETiʨ%z 3&‚~I(`ђaLdX/Ш_tJ(3GǴҳh!“EBgMFזR|8}4< <q8g d͵k7!]PIr] 9p#%m8hX)Ù{~}~ë +"e42oG,C݆^)Y%R0sw yH$CG+Iȥ +N6R6 JUEX3_,LוcG(E`&HE$"96ʾ +;E=kc֝0y3j1`_[NORL޹ycI ֧eLjzdvX!p7ʓg xp]%"۷|x(3,R8ʼMT~^<Zm \8)c/QF3TT-b6G0OgtYLbO0O[3֭y[3W"wfaO InǶM3vw]e㍿R4ת!Kio JP\>OpFnJ'HOigHևլ)k+ [M+u1X$Td^ѼSo2@ ,^44jar D[ty&ǵ'!n5M9o"o kD}'] +*c$SXY>Ӥ@h'A֮Č]/;gX|K 6}ufՐ`&Vӈʊ-L< ٙHNQFE)UѳOj-K. j ?Phōg;Khopzmd*ie[MʨbDɍbN^}2Yy DV 1 ,,8qdNDVbj&G뵡` 2­f'OBOƉgNt؉+ o࠳kpPX\:Ra_|&^B IxE Nxtzc(apvwv8!}|Y ?~w\,"FiU%yRO)Nx]K@0lBh$>hŹgigwn8p,>&(5IiF];d,uk"wۗ + N%BPxg !>5^ +v?%cC4)Fem.πd{$>q3xN!@Al3!3&1/^/M2z{.IN(swA 5J额5NwΦV𙮭XS`$].lw2Mn3 <(/Me"sEH*j'oex%h T4.wqf Kʯdl>U!I`0UD2&**d l9%Kn=k{&+mZeynG(}'Nf'rȨ;Y|s\*pBU68ρO]@Pٸ]ryn:0xi[D΋Nh7yܔxc +^PH[Ίa48+>`VUA{ \Y ۑ*@Mn$@lr +)T)-D~(x 6G/zys ^ +9TbMW&uI^Q->yyVyR&}&M͌ag Y5wF: +8Z|LtP [Tb|%PY/!lc~qJwX , +Z5tp]L^AqEs@aOy‘ݏZN쎸1 1k|K֌9/t?P+4!z⁡ب+ yBj&fBF?wl +U,ѷ dک]M4;mѲ%mg4\$_!4dj4j1}` кl~mJηQ]D +>? ձX1s0o7""H)jvҐCIpdU{ M 7\*8B6n;S2>AnWxmx,m|&.Bv|vZk 1V1Yl( UjW8pnGF9MK +y7kt9W%\M#+3B9h} 6лFIJ;]JbVhCnrvb r) +hUn﹝SxZ5Z |)~7-\/41k 3~Ѣneq`9 %"ܚm JeIoݞGҚ)!~D<0uXpɗ績kx2AVv%A_IwNJJ4MC(vt59u8n=`i;h?j>g&6bu@cw@UڂMpvk,7A境$ [|B{kSÞO2"<ۃ:aIa'q-Zվ]#ACV7Fii`f4a67k5,v݃ԇ0* U6NЎ7b]sNRn~0ݯ bΩ?ua%$D3h*Ƞ] ++d-;e4Kz5pI/}22t$..p[8#%IICfϜdWKsnkꍗSpYR '~rŧ||1&jSϡNq_R"sDaS,^Y^Fx>`}A YD1"ȘdyđT`υeŢO~/{@;?0C⃜X}P*w_,8ɭT.$. )YpO~?s]<[Hqoc|7D6 WsX-8[R"cmbi)#+_m wqYqyơ rQ9&X3`]o^@>Дcj}pAGAlѤB:;~k'x6&sd,sG-&墆١ +eK6 %-1)y`!{*47ƹMJ) ]6,G4r®{Ǣq,f>71Mɗ$= k2-Da00aÆ0q 8کoٌs0x q1QoE(:XaDZ,qEجhID[e:p~yB)'6~#eTxͫsʨىMwFbCrs)k]woI :§]`<Dzĥs!.z&Od?(!XIhMˋ cR!6t~!g0ȹ &0 s !MzbXVc91B!*$!f!$L kvF!D2#pBa' 1R~Cls$7[GF<ěh=GUIPգڐG#'8-%ﲭ?` p. + +Uy  +r%g(áԓ(yff$NSil&W%nOKZ"\U@eGUoQβM wd'P rBVr4jCـxzw<^b`Tpx^I4wѴ9.GY1g@X(fX[CGְ)kCA͜܌oH♇u=qg:(~)k׼MK,ZBNPOu _l$Fgasc*0gԄ{\=A 3Ul}ՖU˨I*Uh#V 0T Zț0 "*&hO;Yw,jpȽJB ȭ`#@O ? (ZEj0?i.h;TC +endstream endobj 53 0 obj [/Indexed/DeviceRGB 255 54 0 R] endobj 54 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> +endstream endobj 44 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +81.999 87.966 m +58.509 87.966 39.398 68.855 39.398 45.365 c +39.398 21.876 58.509 2.765 81.999 2.765 c +105.489 2.765 124.599 21.876 124.599 45.365 c +124.599 68.855 105.489 87.966 81.999 87.966 c +W n +q +0 g +/Perceptual ri +/GS0 gs +51.3276672 0 0 -51.082531 79.320961 52.8889999 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 45 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +81.999 84.397 m +60.486 84.397 42.985 66.887 42.985 45.365 c +42.985 23.844 60.486 6.334 81.999 6.334 c +103.511 6.334 121.013 23.844 121.013 45.365 c +121.013 66.887 103.511 84.397 81.999 84.397 c +81.999 2.748 m +58.5 2.748 39.382 21.866 39.382 45.365 c +39.382 68.865 58.5 87.982 81.999 87.982 c +105.498 87.982 124.616 68.865 124.616 45.365 c +124.616 21.866 105.498 2.748 81.999 2.748 c +W n +q +0 g +/Perceptual ri +/GS0 gs +42.6973495 0 0 -42.4934349 81.3880463 46.1602249 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 46 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 81.9989 84.1684 cm +0 0 m +-21.678 0 -39.315 -17.636 -39.315 -39.315 c +-39.315 -60.993 -21.678 -78.629 0 -78.629 c +21.678 -78.629 39.315 -60.993 39.315 -39.315 c +39.315 -17.636 21.678 0 0 0 c +f +Q + +endstream endobj 47 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 81.9989 87.0704 cm +0 0 m +-23.499 0 -42.617 -18.864 -42.617 -42.05 c +-42.617 -65.236 -23.499 -84.1 0 -84.1 c +23.499 -84.1 42.617 -65.236 42.617 -42.05 c +42.617 -18.864 23.499 0 0 0 c +-0 -84.322 m +-23.499 -84.322 -42.617 -65.204 -42.617 -41.705 c +-42.617 -18.206 -23.499 0.912 -0 0.912 c +23.499 0.912 42.617 -18.206 42.617 -41.705 c +42.617 -65.204 23.499 -84.322 -0 -84.322 c +f +Q + +endstream endobj 48 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +81.999 81.152 m +75.588 81.152 70.373 75.936 70.373 69.526 c +70.373 63.115 75.588 57.9 81.999 57.9 c +88.409 57.9 93.625 63.115 93.625 69.526 c +93.625 75.936 88.409 81.152 81.999 81.152 c +W n +q +0 g +/Perceptual ri +/GS0 gs +16.1964035 0 0 -16.119051 82.1906052 72.0745926 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 49 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +102.511 78.7 m +102.519 78.664 102.525 78.629 102.532 78.594 c +102.665 78.566 102.669 78.596 102.511 78.7 c +90.96 53.648 m +90.42 44.003 l +96.789 37.064 l +90.42 30.124 l +94.63 25.537 l +90.42 20.95 l +90.96 11.384 l +73.038 11.384 l +73.038 53.648 l +65.913 57.294 61.054 65.174 61.054 74.231 c +61.054 75.746 61.266 77.147 61.48 78.66 c +62.254 78.806 74.754 84.045 y +74.65 83.479 89.348 83.479 89.244 84.045 c +101.321 78.849 102.532 78.594 v +102.839 77.106 102.943 75.724 102.943 74.231 c +102.943 65.174 97.977 57.294 90.96 53.648 c +61.486 78.7 m +61.484 78.687 61.482 78.674 61.48 78.66 c +61.43 78.651 61.429 78.663 61.486 78.7 c +W n +q +0 g +/Perceptual ri +/GS0 gs +22.6831684 0 0 -37.6614571 81.9402084 62.7759361 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 50 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 76.7188 76.9968 cm +0 0 m +1.956 0.356 4.002 0.534 5.958 0.534 c +8.003 0.623 9.959 0.356 11.916 0 c +12.005 -0.445 12.094 -0.889 12.094 -1.334 c +12.094 -4.714 9.337 -7.471 5.958 -7.471 c +2.579 -7.471 -0.178 -4.714 -0.178 -1.334 c +-0.178 -0.889 -0.089 -0.445 0 0 c +3.557 -51.764 -2.49 24.637 re +-15.632 -57.126 m +-22.559 -51.102 -26.944 -42.223 -26.944 -32.286 c +-26.944 -20.723 -20.897 -10.05 -10.938 -4.091 c +-11.115 -5.248 -11.293 -6.315 -11.293 -7.471 c +-11.293 -14.32 -7.292 -20.279 -1.423 -23.036 c +-1.423 -54.254 l +5.958 -61.636 l +13.338 -54.254 l +12.894 -47.762 l +16.362 -44.293 l +12.894 -40.824 l +18.14 -35.577 l +12.894 -30.329 l +13.338 -23.036 l +19.118 -20.279 23.209 -14.32 23.209 -7.471 c +23.209 -6.315 23.12 -5.248 22.853 -4.091 c +26.467 -6.273 29.566 -9.089 32.05 -12.347 c +26.043 -4.097 16.284 1.27 5.264 1.27 c +-12.994 1.27 -27.795 -13.46 -27.795 -31.631 c +-27.795 -41.913 -23.055 -51.093 -15.632 -57.126 c +f +Q + +endstream endobj 68 0 obj <> endobj 32 0 obj <> endobj 31 0 obj [/ICCBased 69 0 R] endobj 69 0 obj <>stream +HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  + 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= +x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 +N')].uJr + wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km +endstream endobj 65 0 obj <> endobj 67 0 obj <> endobj 70 0 obj <> endobj 71 0 obj <> endobj 72 0 obj <> endobj 66 0 obj <> endobj 73 0 obj <> endobj 74 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +22.6831684 0 0 -37.6614571 81.9402084 62.7759361 cm +BX /Sh0 sh EX Q + +endstream endobj 75 0 obj <> endobj 76 0 obj <> endobj 77 0 obj <> endobj 78 0 obj <> endobj 79 0 obj <> endobj 63 0 obj <> endobj 64 0 obj <> endobj 80 0 obj <> endobj 81 0 obj <> endobj 62 0 obj <> endobj 61 0 obj <> endobj 58 0 obj <> endobj 60 0 obj <> endobj 82 0 obj <> endobj 83 0 obj <> endobj 84 0 obj <> endobj 85 0 obj <> endobj 59 0 obj <> endobj 86 0 obj <> endobj 87 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +42.6973495 0 0 -42.4934349 81.3880463 46.1602249 cm +BX /Sh0 sh EX Q + +endstream endobj 88 0 obj <> endobj 89 0 obj <> endobj 90 0 obj <> endobj 91 0 obj <> endobj 92 0 obj <> endobj 55 0 obj <> endobj 57 0 obj <> endobj 93 0 obj <> endobj 94 0 obj <> endobj 56 0 obj <> endobj 95 0 obj <> endobj 96 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +51.3276672 0 0 -51.082531 79.320961 52.8889999 cm +BX /Sh0 sh EX Q + +endstream endobj 97 0 obj <> endobj 98 0 obj <> endobj 99 0 obj <> endobj 100 0 obj <> endobj 39 0 obj <> endobj 40 0 obj <> endobj 41 0 obj <> endobj 42 0 obj <> endobj 43 0 obj <> endobj 105 0 obj <> endobj 106 0 obj <> endobj 107 0 obj <> endobj 104 0 obj <> endobj 108 0 obj <> endobj 103 0 obj <> endobj 109 0 obj <> endobj 102 0 obj <> endobj 110 0 obj <> endobj 101 0 obj <> endobj 111 0 obj <> endobj 112 0 obj <> endobj 26 0 obj <> endobj 27 0 obj <> endobj 115 0 obj [/View/Design] endobj 116 0 obj <>>> endobj 113 0 obj [/View/Design] endobj 114 0 obj <>>> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 36 0 obj <> endobj 37 0 obj <> endobj 38 0 obj <> endobj 52 0 obj [/ICCBased 69 0 R] endobj 28 0 obj [27 0 R 26 0 R] endobj 117 0 obj <> endobj xref +0 118 +0000000004 65535 f +0000000016 00000 n +0000000161 00000 n +0000038951 00000 n +0000000000 00000 f +0000039002 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000042686 00000 n +0000000000 00000 f +0000042759 00000 n +0000042999 00000 n +0000045017 00000 n +0000110606 00000 n +0000176195 00000 n +0000241784 00000 n +0000307373 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000357014 00000 n +0000357089 00000 n +0000358179 00000 n +0000039627 00000 n +0000042339 00000 n +0000347025 00000 n +0000346912 00000 n +0000357400 00000 n +0000357524 00000 n +0000357647 00000 n +0000357770 00000 n +0000357894 00000 n +0000358019 00000 n +0000354929 00000 n +0000355081 00000 n +0000355225 00000 n +0000355369 00000 n +0000355521 00000 n +0000341784 00000 n +0000342316 00000 n +0000343039 00000 n +0000343509 00000 n +0000344163 00000 n +0000344688 00000 n +0000345650 00000 n +0000042401 00000 n +0000358144 00000 n +0000341222 00000 n +0000341270 00000 n +0000353578 00000 n +0000354030 00000 n +0000353641 00000 n +0000351799 00000 n +0000352554 00000 n +0000351862 00000 n +0000351736 00000 n +0000351673 00000 n +0000351245 00000 n +0000351308 00000 n +0000349709 00000 n +0000350269 00000 n +0000349772 00000 n +0000346849 00000 n +0000347060 00000 n +0000349923 00000 n +0000350041 00000 n +0000350149 00000 n +0000350384 00000 n +0000350437 00000 n +0000350744 00000 n +0000350821 00000 n +0000350976 00000 n +0000351094 00000 n +0000351171 00000 n +0000351459 00000 n +0000351554 00000 n +0000352013 00000 n +0000352179 00000 n +0000352305 00000 n +0000352428 00000 n +0000352669 00000 n +0000352722 00000 n +0000353029 00000 n +0000353106 00000 n +0000353261 00000 n +0000353427 00000 n +0000353504 00000 n +0000353792 00000 n +0000353910 00000 n +0000354145 00000 n +0000354198 00000 n +0000354503 00000 n +0000354580 00000 n +0000354735 00000 n +0000354854 00000 n +0000356666 00000 n +0000356465 00000 n +0000356244 00000 n +0000356027 00000 n +0000355673 00000 n +0000355794 00000 n +0000355912 00000 n +0000356124 00000 n +0000356341 00000 n +0000356562 00000 n +0000356787 00000 n +0000356893 00000 n +0000357282 00000 n +0000357314 00000 n +0000357164 00000 n +0000357196 00000 n +0000358211 00000 n +trailer +<<9F89EF539AF2504791E293B62117F98B>]>> +startxref +358408 +%%EOF diff --git a/share/branding/keepassxc-icon.ai b/share/branding/keepassxc-icon.ai new file mode 100644 index 000000000..47283e03e --- /dev/null +++ b/share/branding/keepassxc-icon.ai @@ -0,0 +1,1637 @@ +%PDF-1.6 % +1 0 obj <>/OCGs[29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + Adobe Illustrator 27.8 (Windows) + 2023-08-14T23:38:54+02:00 + 2023-08-14T23:38:54+02:00 + 2023-08-14T23:38:54+02:00 + + + + 124 + 256 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAB8AwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4qxHz3+Zvl3yesMF16 l9rN3/vDo1mvqXMpOyniPsqW25H6KkUxViKn8+PNP7+S7s/JOnSA8LaKNby94np6jPVQf9UofbAq 3/lVnmUfDP8AmVrX1w048ZvTWuwH7rma/fgQuOi/nn5cAl0rzFa+arWOpOn6nAIJWHgsyHkW92kA /VhSyDyV+bema7qJ0DWLOXy95pjHxaVebCWne3lIUSbb0oD4VArhtWeYq7FXYqlnmPzLoflvSpdV 1q7SzsotjI/VmNSERRVnY02VRXFXmi+evzX86/H5N0qLy7oMn91rWrjlcSr15xQDkoqOlQwP82Kt t+WfniZvrGs/mTqnquSStmFsowx7BUfjT2CjFWx5D/NjSwZ/L/5gS3tR8Ntq0KzowrUAzH1WHzVc VRGnfnBrGh38WlfmVpA0aSZgltrlqTJp0pNftElmi6d2P+VxGKvUopYpoklidZIpFDRyKQysrCoI I2IIxVdirEvzN89r5P8ALv1qCH63rF7ILTR7EbmW5k2Wqj4iq9Wp12HUjFWE6Po+neQdNn83ebZv 0r501T47iduLSeoy/wC89v2REGzMNqe3FcqyZBAWWEpCIss+8qa1Jrfl6y1SRFje6Qu0aElVoxHG p60pQ4cU+KIKYSsWwPW/yQi1DzHcahHqAisbyZri4iKcpVaRi0gRq8d2O1envmNk0fFK72apYbNv SpmjstPdkosdtESvLoBGu1fuzM5BuebA+V/za8vGC6T9H+YrEepBNGf31vIPsyxOOLNHypyXt8+L ZThzCY82GPIJe9P/AMqvOeq3/wBe8qeZqL5r0CiXD12urfYR3K13NdufzB/aoLw2PQcVQ2qalY6X p1zqV/KILKziea4lboqIOTHbrsOmKvGdBsH8+X7/AJiedgIfLdnzby5o1waQRQKf96Z1rxZnp36/ 6oUYqzPyN59t/Nd5qy2kPo2WntElsW/vJFfnV2X9kHh8I+/2VQv5hflv/im4try3uhbXcCeiwkUs jR1LDpuCCxxVPvKHlqDy3ocOmRSGZlJkmmIpykf7RA7DsMVY1f8AnTy5qvmnVfInmC2ie1cxxW0j 7xymSFHMbfySB2PBh38G6qpX5Uvb/wDLfzdb+TtRna48o607f4bu5SWa2nJH+iMT+ySQB7kHu1FX sOKvJXU+aPz0unn/AHmm+SrSOO2jrVfrt4odpKdK8ar80GAq8/8AzF16bXfMtzLz5WlqzW9mtfhC IaFx/rsOXyoO2abU5uKfkHByzssi/Kv8wbXR4v0HqzGOzZy1ndUJEbOd0cD9kncHsevtfpNQB6S2 YctbF7Tmzcp5f+av5h20FpdeXNLYyX0wMN/OKhYUI+JAf2nYGm3Qe+YWq1AiOEc2jNkoUHlvlvVb vRNYttStSfUgcFk6B0OzofZhtmuhkMZWHFjKjb1H8wJoNG81eUPzAszSB5007UpFrR7O7UlGYD+Q Fm+fHN4De46uwBewZJLy7885bnUofLnkq3ZkHmbUFW8daV+qWhWSYdOxZG/2OKse/OnWBbW9h5V0 8CCziiSWeJNl4J8EEVB2XhWn+rirCPIHm2bynrovGjM1lOvpXsK/aKVqGWu3JTuPHcd8VfR+k6tY atp0Oo6fKJ7O4BMUgBFaEqRQgEEMCDiqX6z5ie1uDYafCt1qAUPIHcxwwq32TK4DGp7Ioqe/Eb4q 8a1r8sNXlubvVZ9bhmvJ3e4l5W7RLzYlj8YlfiK9PhxVkGoXI89/lbqGnXlV8z6HELkrX956tuC0 c0bbcvWRWWo7k9MVZh/ysOX/AJUz/jKv+nfo7lyotPrv9xXj9nj9Y/DtiqR/lmAPMv5jTLveHWZV IpvwTn6W1Pc5E9UPKzbkqCdzTrnNcTrGobatxHt+2v68nGW6Q+iNAubma71tZpGdYNQMcAP7Ef1a BuI9uTE50GOVk+/9AdjE83kH5leVbjTPMM168qywapJJcRGoDqSashWtfh5Ch6ZqtbjMZX0LiZ4k G+9iqW/tmEZND0P8wwT+RETSH97GloYa7GqzKq0Hf4c3unP7uLsMf0h7dmS2PKvN4V/z48oLKfhj 068eBTQfvCkob5/CMVYT+aMTyed9SLA0HoBPl6EZ/XXFWHvae2FXsv5bzXUOm+VrRJGW2lttVeaI fZZku4+BP+rzanzwKk6eeNIgbUJ5ZudzJeXTuoNSQszJGK7DaJEUewwJedjzxq126Xd1qfOK5dGk sKx8EWVgOCqoDfu+Xz23woT7yXrtuPPmlcHpHdmezu+XwhoZYXahJ8JI1IwBK717v/oWL0qn0vr/ AKfGm3p/XPUpXw9Xf54UM60enl787PMOlyj07bzPbQ6lYEnZpYQVlUf5Rb1G+Q+WDqrEPM2gvpet XVoVpGHLwHsYmNUp8ht885rUwOOZDrskeGVJZBbf6RFt+2v68qjLdgHuWgLS61s/zagx/wCneEZ0 mHnL+t+gOxhzPveWfmCLW481XTwTSTlaRy+p0R02Mcf+Svy61+eabXTHiGjbh5z6kksdLmvLuG1g XlNM4RB7k03zEiDIgDmWoCzTN/zLtY7tvKPkG0JL393C1wEpyFnaL+8Zh8qsP9U508I8IA7nZgUK ev5Yl5b+cldH13yd5xoBb6XfPZ38ndYL1Qpc+yBW+k4ql35q6Gf0hb6tEKw3KCKVh09RPskn/KTp 8sVYA1p7YqyfU3lh8q+VYI2KJdLqNvPxNCYzOsjJUdm9OjeIqMx9VMxxkhtwRBmAW7SO3CgFFAAo BQds54ku4Add8CDTpiFLG9ajhNlcAopHpsaEDsK5djkQQ1TApkvFP+hWOHH4a8ad/wDjsUzoL9N+ TqK3egfmr5N1DW9NtNX0IiPzPoEhu9Mb/fg2Mlud6fvAopXuKbAnJEISjT7/AET8yPLy3VuRaa3Z 1jubVz+8gl6NHIvXgxX4Wp+PIZiarTDLH+kGrJj4h5sO1DSdQ0q6Ed5AYnU1RiKq1O6t0Izn8mKW M1IU4MomJ3ei6b560M6RNfTBbe7U1uLVAA8spFAU/m5Bep6d9s3mLXYzAyOx6hzI5o1bzucXetat PNBbFp7qRpPRiBanI1/2zmlmZZZkgblwzcpbM003TdI8k6TP5g1+ZI5o02GxKVB/dx/zyP02/VU5 udHo/C9Uvq+5zMOLh3PNv8sND1PVtWu/zC16Iw3mpRiHRbJt/q9j1Vt/2pP1VP7VBsAG96XhVLPM 3l6w8xaBfaJfgm1vojG5HVWryR190cBh7jFXmnkvVJFSf8tfOdE1jT0EdjOxot5ar/cywserKF+d BvuGoqlXmHyhqWjyMzIZ7OvwXKDan+WP2TiqC1PXLaTy7pemSQhbmzvGa3npUmOSKZnWvUfER8/o zG1n90fx1b9P9YQsV3Qdc0NO0Bamu6jriApKTatODaXH/GN/+InLIjdrmdmWf+utf7L/ALvOb/8A h+Dqur3jLGLAfOH5XfXtU/xJ5Wvf0D5oUHnOg/0e5B343MYBrU0+Kh9w21AQqQzfmB5p0WE2vnzy lO0K0D6lpyLdWj70DMpJCfS9f8nIyjYoiwgi0IfzM/JE1d+KSdTEbWYGvYUC8d8x/wApi/msPCj3 Iq2/Mx71GtfIXlO81CQngLloVtbMGhozSdPoYr88vhAR+kAMwAOSZaH+WGratqcWvfmHdx6leQ/F ZaLCP9Bt67/Ep/vG/DbcttSYCXpeFXYq7FWN+d/IOheb7FIb9WgvbY87DUoKLcQONwUf+WvVen00 IVYUupfmv5PP1XWdLPm3SI/hi1XT/wDevgK/3sHxMzUHh83OKsO8/fmF5C1LRVk0+3fT9btp1m+q 3FsYJHAVkeMtGHQNSSu57ZVmx8cTFnjnwm2G6X5l1DU5BDp2k3V7OQSIraOSZqDqaIhOa38jNzPz QTZofOzD/lFNW/6Q7j/qlj+Rmv5oIO50b8wL1WtoPK2pxtKOIeS2nUAHY7uiKPpOTjopAsJagF7L /wAq51j/AJUd/g/4f0v6Hq+nzHH1/rX1z0uf2ftfBXp703zZcO1OJe703JIdirsVdirsVdirsVdi rsVdirsVdirsVdirsVdirsVQ2panp2mWUt/qNzFZ2UC8prmd1jjQeLMxAGKvKL3/AJyP0m9vZLDy N5e1LzhdRfbltYmhthXxkZHcD3aMDwriqwfmD/zkNKhuIvy2gS32PpyX8IlpQV+EyI3/AAmKrR/z kPe6LMkXn3yXqnluJiFF+g+tW1T3L8YvuXkcVeo+XPNHl7zLpqanoV/FqFk+wlhNeJ/ldTRkb/JY A4qmmKuxV2KuxV5n5s/5yC8h6HfnSdPNx5j1uvAafpMf1gh/5WkB4V7EIWI7jFUnT8zvz21I+ppP 5ZG3t96DUL2OKQgUpVZfqxB9qfqxVa/51fmXoY5+bfy2vobNN573TZRdKig0qVVWT75RirN/Iv5s eRvO6EaFqAa9ReUunTj0rlB3/dt9oDuUJHvirL8VdiqWeZfMek+W9CvNb1eYQafYxmSZ+pPZUUd2 ZiFUdzirwq30u8/MyKT8wfzOujo35c2NZtH0AyPEskQNFnnK0ZuYNFK/E5Pw8VpyCvZfy81Py3qn lCw1Dy1YjT9EnEn1K2WJIaJHK0XLglQOfDl47774VfP/AJt1T/nKu289Xemac9/PaSXTDTrq3s4G svQZz6Jab0jGgCU5eo1R3wK+jpmktPKzvrarqEttZFtSUIvCdo4qy0RqJRyDQHbCrwv/AAvYyWf/ ACtD8ibsQTxgnVfLQDCGcJ8TwG3r8EgB2jGx2MZBpyCvX/y0/MPSfPnleHWrEejMD6OoWTGr29wo BeM+I3qrdx4GowqyrFXYq8I8w+YfMv5veZbzyj5RvG0zyRpjCPzB5gjBDXLAkPBA4NCpH39T8NAy rLvyjP5VWd3q/l7yHbJI2iLAmq6qoDmaSYyAKbgnnKQYWJ4/AP2cVYt+f9/+eum6zY3PkV7ubQpb cJNb6fax3MqXSuxZnAjkl4shWh+zsendVnH5Mn8w38kxT+fZWk1q4meWKOWOOKWK2KqI0lWNUHKo Zt/i3ocVYZ5u8qflv5982atpejXB8ufmZoL+rFfQD0JJW4rIkp9M0mX4xyYfvF+XVVOvyl/MzWr/ AFO98jedoha+dtHrVwOMd7brSk8fQFqfEaChHxDuAq9TxV4j+aMcnn782tA/LgMToWlR/przGq/t 02iibv0ZV/56V7DFXjn/ADkj+ZkvmHzVJ5Y0x/S8t+X3NtHBF8MctzF8EjlRRaRmsaeABI+1gV6f /wA4pfmXpl15bXyRfTrDqunvJJpqOaevbyMZWVCerxuzVX+WlOhoq+gsKvLv+cgfzM0zyj5JvrBJ 1bXtZgktbC1U1dUlHCSdh+yqKTxJ6tQeNFXyp+UH5l3/AJB8322opI7aTcMsOr2gJ4yQE0L8R1eK vJPu6E4FfRNykX5f/ntpupaeyp5W/MVDFcxp/dLfihSRe37x5FI/13wq9zxV5l/zkH5s1DQ/IZ0/ SCTrfmO4TSbBU+3+/qJCvvw+AHsWBxV5j+ceuQ/lX+W2j/lp5cl9LU9QgMur30VVkMbGkr1FDW4k DKPBF4+GBWB/841/mTp3k3znNbavMLfR9bjW3muG2SKeNiYJJD2X4mUntyqdgcVfayOrqHQhlYAq wNQQehBwqxPzv+Z/lbyfJb2uoPNd6veitjo1hEbi8m7fBGtKAkUBYivbFXyb5m8sfnXL5xvfP8Xl 3VLC7ku2voJYomaSBa1RSq1aiRgK1V6dcCvTvOmvDzh+XehfnB5fMdv5v8pSRnVII92CB+E0TqPi 4cj6ihv91s3jir3P/GWk/wCB/wDGPL/cX+j/ANJ9RX0/S9Xj/rfs08cKvLvy5uGP5mfm95llXnc2 Ekdrb8jU8LaOUFenQi3jpir49mllmleaVi8sjF5HbclmNST8zgV0M0sMqSwu0csZDRyISrKw3BBG 4IxV+hflDzZca7qfmWzlgSFdC1I6fE6EkyKIY5ObV6GslNsKvij87LXWrf8ANPzL+lopIpZr6eW1 9Wvx2rSN9XdCSaqY6Up8u1MCsIxV9Medb64u/wDnGbyR5gc/6do11ZvBJX4qWzS26jlQ9Qin6MVf TmFXjf5nRnU/z1/LLSJRW3tze6gATsZIY/VU0od1NsKfwxV8+/8AOSWoz3v5x66sh+C0+r28K1rR Et42P3uzN9OBXmOKvrr/AJx385X0HlvyZ5ZaMTQ6nDq07XLsxeMWdwAiKOnE+p9GFU8/I22s9Q0X VPzU1mkmr+YZ7qb6zIObWthayNClvHQEhVEJrTqAPDFWK+U/+csl1nzxaaNc6IltpGo3S2lrdiYm ZDK4SJ5FK8SCSOQFKV6mm4VN/wA0vLlr5e8622oacot9M8+wXmheYrJPhikuZrdzbXPEAgScz8TU 8T1ZjhVin6cu/wDoTitT6tfqPqV39P8ASVPDp6fwUwKzDyRBDpv56/mN5Xuxxh8xW0GpW56c04kS ha963Tf8DhV8i65pF3outX+kXg43Wn3EttOO3OJyhI9jTbAqBxV94/lX/wApH+YX/gQP/wBQsOFX zb/zlDrPmO8/MubT9We2+qadGBpUVsyvxgm+Ksx+2JWpVlbptTY8iFeQAEmg64q+pPzE0Saw/Kn8 tPy2KldV1m9s1uLc1BUAcrgNQ9EmuV6+GKvpDCrxn86nGh/mV+W3m1/htIb6XTL2Y1ARbsKiknwC NKT8sVeH/wDOUvl6fTPzXu78oRbazBBdQN+zVIxBIPnyiqfngV5Dir2vyjH5iutL/LDS/L+oNpV/ qp1mybUIwDJDA90rTPHuKMI0NKEHwIO+Kvqjyx5H0Xy55Nh8o2JlfS4YpoQ0zBpWFw7vISyhRUtI 3QYVYTpn/OMn5WabqVpqNtBeC5spo7iAtcsRziYOtRTcVGKso/M78urTzzoUdjJeT6ffWchutMvb duJjuAjIpcUqy/FuBQ++KvEvq9r/ANCf/U+B+tfWvQ67fWP0vStelOO2BWdfnxomraRqGifmloEJ m1Lyu3DVLdRvNpzk86kV2Tm4O2wct+zhV57+eP5dWnnnSIPzU8iD69FdwK2sWcQrKfTUL6oQV/eR gcJV67V8cCvm/FX3n+XWr+Sv0DrvnfTtWD6TrV0+p6g9xxj+pusSJJDIAfhKBB1612qCMKvirz9q 1jrPnjX9WsHeSy1DULm5tnlHFjHNKzrUHpsdhgV6d/zj/wDlBJqt9H538zKLLyno9buKS4oiXLwV bl8X+6YivJ2Oxpx/moq9X/Lr6z+Zf5qXn5kTxunlnQlfTvK8cgI9V6FZLih9nY/NlFaocKvccVYf +bPkSPzx5F1DQgVW8YCfTpW6JcxfFHU9g26MfAnFXkRsE/Ov8s/0Ffstl+ZXlFmhljufhcyR/u3L jrwnCAOafDIPDqFfMeraTqWkalcabqds9pf2rmO4t5RRlYf57EbHFXs/5M61pF/rn5Y6fBI41TRb 3VYryBlovp3UbTRSK3etGX2I+VVX2FhV2KuxV8y/+uvf9vr/ALu2KvpmSOOSNo5FDxuCrowqCDsQ QeoOKvDtV8ieefyv1q58xfltCdW8sXbGbVfJ7Maox6vaAVPTYcQWGwo46KsXvoP+cb/zNnee7nfy X5odj9bilK2ZMvf1PUDWznl4FXPfAq2H/nGHS/qFxDY/mSqaHdMktzbpCjRSelUoZCt2sbFeRoSu 2KqcHkr/AJxr/Ltvruv66PNWqQfElhGyXCFx2+rwVQH2nk44qyMaZ+YX5yNBBe2kvk38s4uJWxHw Xl8ifYHGg4psKfDwHUc9iFXuOj6PpujaXa6Vplutrp9nGsVtAnRUX57k9yTuTucKozFXYq8s/Mz8 pdTv9ai87eRr39D+drUAOa8be9jX/dc4pTkQAKtsRs3YhVgmsedvy283yJoH5y+XpPK/mq2UImoF JEQ7/ainQMwQmpAflH/lHAqQ2/kz8vvy388eU/NWjeZ49X8vS6g0N5N6sExtQ8DpG8jwGnGsnxHi KUxV9Lx+bPK0iLJHrNi6MKqy3MJBB7ghsKrv8UeWf+rvZf8ASRF/zViqH1Dzx5N06zlvLzW7GK3h UvI5uIjsBWgAYknwA3OKvB/0fqH/AEKp9Z+qy8frn6T9Pj+8+qfpL1fV4+Hp/H/q79MVfSeKuxVj 3mX8vfJHmc8te0W0v5aUFxJGBMBSlBKvGQD/AGWKsMf/AJxj/JppOY0aVFrX0xeXXH5byFvxxVk/ lr8pvy38tTLPo3l+1t7lKGO5dTPMpH8ss5kdfoOKstxV2KuxV2KuxVAazoGh63aGz1jT7fUbU1/c 3MSSqCe4Dg0PuMVYBff842fk3dymX9BGBiSWEFzcopr/AJHqcR9AGKojTv8AnHn8nbFSI/LsUzH7 T3Es8xP/ACMkYD6BiqM/5Ub+Un/Ur2X/AALf81YqqQfkn+U8EyTR+VrAvGeSh4+a1HirllP0jFWZ +jD6Poemvo8eHpUHHjSnHj0pTtiq/FXYq6oGKtchirdRirsVdirsVdirsVdirXIYq7kMVbxV2Kux V2KrS3hiq3FVwXbFVuKrgxHXFV2KuxV2KtFqYqtNcVcFririKHFXAkYqvBrirsVaY9sVco74qtYb 4q6uKuG+KriK4q0p7YquxVxNBiq1RU4q5hirWKtYqvA2ocVW9Diq/FVp3bFV2KuIqMVWYquUCmKt 4qsOzYqvxVa+Ktr0xVvFVhG5xV3TFXUPXFXHce4xVdX4cVaP2sVXYq49MVWHtiq5a0xVvFVrdcVX YqtfFVw6DFXYqtPfFWj1xVsttirQxVdT4aYq0w74q2pqMVbPTFVhxVcvTFWyaDFVq7nFV2KtMKjF WlPbFV2KrT+1iq3FXYq7FVTtirsVWEEHFVwYd8VaoteuKt8gMVW7k4qvAoMVdirsVWsvcYq4N44q 2aEGmKrMVdirsVVO2KuxV2KtFRirXA4q3wxVumKuxV2KuxV2KtFQcVa4kYq3xGKu4jFXcRireKux V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVbyJ6DbxO2Kt8j4D78VQsmraZFdLaS3cCXbE BbdpUEhLfZAQnlv2xVFcj4D78Va5Hw29jiq4EEVGKuxV2KtFt6AVP4Yq7kfAffiqjdX9paKHup4r dWNFaV1QE+ALUxVUjmSWNZI2V43AZHU1Ug7ggjriq7kfAff/AGYq4MD8/DFW8VUbiQAon853+gVx VIvN/nHTvK+kHULxJJ5JJFgsrKAcp7i4k2SKJe7H9WKsOj8p+YfNk3qee9WktorhPVi8oabOYII4 agUuZUIluCDx5GoUN9nbI2hKL/yx+WeneZofLS+RRcGYxrHeBeQZZBUuGYliEqeTFtqHKZZanw0W BnRqk6l/Lk+XpUl8iazLoV65ZotHuZXudNuSvxOrQSl3UkDd4zVR0y9myDyR56/TwutO1K1Ol+Zt LITVNMc1pX7M0Lftwv2Pb7iSllcUn70r4iv8MVVsVU7iURQvIf2RXFUPcXdtaWstzcyrDb26NLPP IQqIiDkzsx2AAFScVeYDWvNX5ggXlnqknk/yFJKtva6gvGLVNTaRxGjQPIKW0cjkCMgc28N9lUk/ Mbyj+Vf5faXbaneeTbnzO15KYrm9lllupFcDkGmeZ24896cVAxVOrH8rfJMvl628z6Ml/wDl9ez2 63Ty29y9uYVIDAXMEjPAVHV1KjbrTsqmnl7zr5j0bzBb+UfPnpNe3tf0F5jt19K01Dj/ALqdOkNz 34D4W/Z7clXoIkoyn3ofpxVXxVB3xpLCfc/qOKvMDqEGo+dNf82X49bTPJqNpukQnp9cZFe6koek lWSIHwyvJMRBJ6MZGhbDvKHn24svOsus61I0seoIYLqQAn0lLBkKr14oVAoO3ic1mHU+u5dXEhl9 Vl7zb3MFzBHcW8izQSqHilQhlZSKggjqM2wNua8U/NbzxBqmqWNtolwWi0xzMb2IkBpzQL6bDqEA +0Otc1uqzgkCPRxM2SzQTPUNeM+iaH+ZEQ4alok6WOvCMU9aymdY50IFK0LrKgOynMzBl44gt+Of ELevWzVuf9j/ABy9sRuKobU/94Zv9U4q84/MxZPMWteXPIKOVs9ZmkvddKmh/R9hxkaI03AnlZEq PfFXz5+cH5v6hffmXafooqug+T76P9EWKfDC8tnIvKVgNjVo+KeCdOpqFfV/kfz35c86aHFq+h3I miYAXFudpoJCKmKVP2WH3HqCRvhV5x/zkh+amiaD5S1DytbzrP5h1eH6u1shqYLeUfvJJqfZ5Rkh F6mtemKvP/yS16b8wvJOr/lrrNwzahp8Av8AyzqDH97A8LAR0f7X7mVk4034My1oBgV7x+W/me48 zeS9I1e7X076ZPTvkoBS5gkMM+w6VkjY0wqzPFUDqRo8J9z+o4q8dgjMvkjzvGm7r5lvGnUChobi Jlrtv8JU5iay/CLVm+ksBez9s0Yk4D278uWnGn+k8jNFFbWYijLEqtYatxB2FT1pm90srj8A5+I7 PHdZ0fTrLVrq106ZriyhcpDKwoSB1HvQ7V79c0+YgSIBsOHMAHZktlEIPyg82vNtA6lEr0LlVAp7 1Zc2HZ9mJ97kafkXsugLcLBbpctzuUgRZ2rWrgAMa9982TkpxiqF1T/eCb/VOKvOoyV/P2zeU0jm 8sXEVvUHeVL+J3A9+GKviC9guIL24guQRcxSOk4ateasQ1a++BX0F/zi1dXUTW8MUzxw3GrulxGr FVkVdMuHUOAaMAyhhXviqV/85a6RoNr55ttQtb1pNZ1C3VtR08rVYkiAjhkD/wCWFI4+1e+KpN/z i3Dcyfm7ZPECY4bW6e4p0CGIoK/7NlxV9D/kqWbQNSlB5W1xrupy2bD7JiN2wBX25K2FXqWKpdq5 p6J9z+o4q83m+r6D53vINQAXy75zRIzLsqQ6lGnp8Cei/WIxUN3YZCcQQQeRQRbGPMHli60e9aCd SYiSYJwPhdf6+IzmtRhlilR5OuyQMS9E8o3GmWfl86k92vorDClwCKem0KcOJ7knsKfLNzpJxGPi vahflTmYiOG3mtppmo61qRVAbi8uWLyuelWNWdj0A3zSxE8s9tyXCAMiyfWLC2urnSvy/sCJre1k j1DzPMv2RFGwkjhfp8U8gG1eQUV6Z0WDEIRER0+92EI8Ip6XpbVuG/1f45ezTTFULqn+8E3+qcVe afmRDqFjJo/nTTIWuLzytO81zapu02nXCenexoOhcIA617rirw38/Pyz5XTfmP5UpqPlTXgLy4lt wW+rzSbyO46hJGqxJ+y9Vam1Qqef84nDSru6mtnv0g1PT7w6hDYMtXnie0ltWKEkfYMtTSv41xVh f/ORXmn/ABT+aFxBpt5+k7CxWKy09IByUScR6yx8R8ZMxO4rXttTFXovkDynf/lT5HuNTuogfzF8 3BbDy/pexlh57jmOwQkSzV2XiqmhxV7N5F8vQeW/L2k6FC3NbGJI3k3+OQnlLJv/ADyMzfThVmmK pfrMbG3WQAn0zUgeHTFWN6rpunavp02n6hCtzZ3K8ZYm6EdQQRuCDuCNwcVYzGfOWgwnT7i0Xzf5 dUUiMjImoxIo2D+pSO4oOhFGOVyxgiiLCCLQZ1nycwq/lHzDGSeTW4s5ypZagbrIU+XxZjfkcXd9 rX4Me5Gw6p5rv4TZ+WdFXyvYSbS6nqARrmnQ+nbIW+MdjI1MyMeKMBURTOMQOSd+XfL2naDZvb2f OSSdzNd3czc5p5m+1JI56sfuy1kynRUYl5f2T8I+jriqa4qo3kXq20kf8wIxVjgkO4OzA0YeBGKs Jfy15l8rXl1f+RZLeTT71zLqHlS+qtm7t9t7WRQTbu/daFD36DFWJ6lpn5az3n1zVvyv1/SNYBPq yaGjSQ1dSGCPYzpGQQTU+mPxxVH+W4tL0Zgfy5/LOax1EjiNZ8xEW4h5ftfHJcXTr4qnHFWVeWvK E9pqkvmPzDfHWfNNzH6T3rLwht4a1+r2kW4jjB6n7TdT1xVmemq0l2tOi/E3yxVP8VaZQwIO4PXF UruNBjdi0MhiqalRQj8cVUP8PT/8tB+4Yq7/AA9P/wAtB/4EYq7/AA9P/wAtB/4EYqqQ+XwGrNMz r/LQD9WKptHGkaBEFFHQYquxV2Kpfe6PDcN6isY5O7L3+YxVB/4em/5aD9wxV3+Hp/8AloP/AAIx V3+Hp/8AloP/AAIxVcnl+So53BI7gAf0xVNLWzhto+EY+ZPU4qrYq//Z + + + + 1 + True + False + + 128.000000 + 128.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + R=252 G=252 B=252 + PROCESS + 100.000000 + RGB + 252 + 252 + 252 + + + K=50 + PROCESS + 100.000000 + RGB + 14 + 14 + 13 + + + R=106 G=181 B=54 + PROCESS + 100.000000 + RGB + 106 + 181 + 54 + + + R=46 G=107 B=38 + PROCESS + 100.000000 + RGB + 45 + 107 + 38 + + + Branding Primary + PROCESS + 100.000000 + RGB + 97 + 153 + 48 + + + + + + + application/pdf + + + keepassxc-icon + + + AIRobin + Document + xmp.did:d74b68e3-299e-3d42-84a6-fb7353bfd658 + uuid:8ca93482-ba60-4213-8393-bfa8062707e5 + xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 + proof:pdf + + uuid:979eccb3-da43-4d82-8b4b-67c29f55eeea + xmp.did:f1663097-f590-6c4b-81b4-e504359f1e0d + xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 + default + + + + + saved + xmp.iid:2520a7c9-03a3-1044-b2dc-89724d81ad50 + 2020-12-19T13:48:23+01:00 + Adobe Illustrator 25.0 (Windows) + / + + + saved + xmp.iid:d74b68e3-299e-3d42-84a6-fb7353bfd658 + 2023-08-14T23:29:13+02:00 + Adobe Illustrator 27.8 (Windows) + / + + + + Adobe PDF library 17.00 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 5 0 obj <>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 23 0 obj <>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 24 0 obj <>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 25 0 obj <>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 26 0 obj <>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 27 0 obj <>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 28 0 obj <>/ExtGState<>/ProcSet[/PDF/ImageC/ImageI]/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 38 0 obj <>/ExtGState<>/ProcSet[/PDF/ImageC/ImageI]/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 106 0 obj <>stream +HVn0}W2WJAHTPPm-?g8VOsΌG;~Յo^h7FxQNbȅRJ֐Ods8db&X==ÃokDu MAYKlM +~3,X4Q㆗-iEI-AW|ȡexHx9jؒm[ N`8{U?JmT,2z`c)w`tt:eאmЛ[=r/ou6 ?wm糿|m>ws;7 $>hC&ݯez|#((R<2W(НC!50~15LRk`c3 Q@T05zno:Q,wνӧ&7R;z^nPbĎؾRN)- IgmΉ9 3Îg ++/1 + +endstream endobj 107 0 obj <> endobj 9 0 obj <> endobj 11 0 obj <> endobj 12 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 24.0 +%%AI8_CreatorVersion: 27.8.1 +%%For: (janek) () +%%Title: (keepassxc-icon.ai) +%%CreationDate: 8/14/2023 11:38 PM +%%Canvassize: 16383 +%%BoundingBox: -88 -236 188 337 +%%HiResBoundingBox: -88 -235.889763779498 188 336.110236220502 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 14.0 +%AI12_BuildNumber: 268 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0.382499992847443 0.600000023841858 0.191249996423721 (Branding Primary) +%%+ 0.057919479906559 0.057945560663939 0.052277076989412 (K=50) +%%+ 0.417439699172974 0.709999978542328 0.212999999523163 (R=106 G=181 B=54) +%%+ 0.988235294818878 0.988235294818878 0.988235294818878 (R=252 G=252 B=252) +%%+ 0.178956523537636 0.419999986886978 0.149739146232605 (R=46 G=107 B=38) +%%+ 0 0 0 ([Registration]) +%AI3_Cropmarks: 60 208.110236220502 188 336.110236220502 +%AI3_TemplateBox: 50.5 49.610236220502 50.5 49.610236220502 +%AI3_TileBox: -161.600006103516 -136.789757675982 409.600006103516 681.010230116986 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI24_LargeCanvasScale: 1 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 8 +%AI17_Begin_Content_if_version_gt:24 4 +%AI10_OpenToVie: -423.465748926613 333.510683876831 3.26889526208565 0 8196.74813662337 8201.58266374714 3147 1902 18 0 0 6 181 0 0 0 1 1 0 1 1 0 1 +%AI17_Alternate_Content +%AI9_OpenToView: -423.465748926613 333.510683876831 3.26889526208565 3147 1902 18 0 0 6 181 0 0 0 1 1 0 1 1 0 1 +%AI17_End_Versioned_Content +%AI5_OpenViewLayers: 77777777 +%AI17_Begin_Content_if_version_gt:24 4 +%AI6_ViewPalette: 0 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 8 7 +%%+ 7777777 Fully Shaded, Precomposed +%AI6_ViewPalette: 1 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 8 7 +%%+ 7777777 Fully Shaded +%AI6_ViewPalette: 2 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 8 7 +%%+ 7777777 Flat +%AI17_Alternate_Content +%AI5_ViewPalette: 0 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8 77777777 Fully Shaded, Precomposed +%AI5_ViewPalette: 1 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8 77777777 Fully Shaded +%AI5_ViewPalette: 2 8 4.52777777777778 8162.61349693252 8190.55214723927 0 8 77777777 Flat +%AI17_End_Versioned_Content +%%PageOrigin:-247 -370.8897637795 +%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 13 0 obj <>stream +%AI24_ZStandard_Data(/Xt^ -DP{\t]!`qzd7#.&F9G]sWBM  o5>l/X~Ͽlo-o6.f/oaw3v96mm{=7jq~qw~Şո/<,r _{ٍ{?g-zj-6}ƚY{{{眭7ۯunA.f5/,"(Z~3ly__ ?؁v_X_؆|ߟt. ~~z~u=.zֻ`ym09Ɨ_{awa]z{{szg[76[{ƶ羭g8|7vۯzWk7cv3ck1g/_{{;k~xnߙ[|rߗ_{9{y{{olϸ۹s1wwwf|3g7brۭ߆{O]E,ZQ =sC z`/(~}?=e~> ЃsݵÎ{}{w^0_;=/5yv`7A uO@<׽}a+ ׿?~a:ޅp{^y^艞o}}~g b0 /@:°޿e0rv ,s|/rm{쯷^a׽}Erc_rs _g ^wuV{0~_1xc;B{/,@;[{lW[3}lΜ0Zcsk?us6_w{1g3ޭ~9/bO X_7;Zԡ=Zg|s喋V[mo}7{=5߷q7k-[7}ꏹ٬km{Ykw[ko;o.ۮygv뎹{:ۯο{=g<̻l߼y/ El/Ι!㞻޻w_{ngw/ Awx׻Nw=eO{ mfsyy矻e/WcuZou]{uӟ4C-jwz7}wo;cyoy{ysy旋;vnC jOwkZk:`/wgwm1?A0Yg|Ï=9X3.la{׻'vbv!}^uw.l.wwv(w?twaw텩h072kofwƳ7l{_{[fk/ƽ띭vor6F[=A0EІ7auCЇ?B/0C+^YE/~=A1E~]/̅e[,{ -h?~mnm^k\Ņ g6fDd$KӘjN/,"Wu4K嚎Z(i5&$kL2BY+#ײRt:~$VzB:dt4EI6AeiL2I6YKd!3e%2D(TIʵDԔ@2STiGP p=v&>i'&&>d)zYj?'ÄUJ*Ru M,EfgJ\z:9j2?#pa\2fVBM4%Tד\tva g{:c}^9n*Sͨo۳%[0g*S5~:He~4)P64[bF:w}ޜgxr3{Ǜәl9~ Ј2Mt|rϔ\^3oY7gv3oZ쳞3<_;6bc.g7{}圳|9뾹2֖ C!$Y #{u1fENh=DYHooQSrj-e*鰒t|;IPϿ4DH fZAkڍ6y & @r6c{-w=Vgy|-;/&dȇQt qBӉʼn%td6^֭6pdr1{l3yg_O ${xgˮk 2/lqzvfgݯ۠#m9|o}[f*O6$gjͲ]{ i2:u%A$j\qF=ÐQeqIIҪ`2˖7—lW)*f)6.LUM/ 5MRIFOv ~JUBm0lŘglys[%Ͷ]X9f@ +S,>7 ,Na FhHO E4;<j-T4M M45iZ" &2>+phh +aJ >{ Fh6Ѱ!lMӴDӴ4$M6MLE4MRM.!Ei ۅ9$ h1Ѵ "Z"Q˿"0`6وTsy6ps&#F^BMFCTdH? _No@(R2!2OiB=*%=KGL%Rhd,a-O+ze(DHIc7҄@JJ%HzrTr5.c U(:nL$2eimlx(vLhp>PwJo$ӎd&gn)u-$meKZ0K_gS$˵iܽD.&YڲIk|SO쳼ͬMY{-Gݖd'-{_&WN"m-ϼ[>,&Oj˿d!-9ZRbu5&d-bmt-˯I_'̹ Ioª*\7w3~JP]KS +BWPf"iLJe*tHX~%L3ZU,SVJ@YJHu,1+swS4I㚢,$#6[m6w{{{キє1cc͗߻/^quΘk7cqX_us1Xw9owVޜ5>cD` qJq %%Q+Bn1ˋӄpࣾjj a, pEE(B+L*2 *w(ӥP Sy8PHa&NMxLa!"AX.A<* aaF86?qBuۅi7!'RCA>k}`Ul :Ē.>8]. &.y0\.6&!98X.9q1@tFN@!EHBnJ!p& 9GeI9p*'Ò+vȂ̎%BctLP2Ţz8iU 3F?C-1TJQ +q{$ºcpޓATHI%<,PNbL(#t(UI QBHPhnnۛ2夣/AbbRq +jh&zq0((ɇ]&%ҋLopVIR+*$ ɀD@ %0`$A&".AFFU"⧈'պ$eD S@ F;^ YtDBZ"XZ.MCe^lC!pM :-Րl d`t+qneSXlۅӬ,Hu<'f. !`Vv#`F rO@cu2/ж@F +4W>R.,3+|g|8X(Ep8$Hdlva+cjq؃‐HIqx<9c+Q4i0+mc!*mє14I9HZe?`hfÅ!$*R -# $,=Vv!mB9XFۨu-KG{8ZkhQH!6zP|84=4A@cHd1ж [K%Bh-~-{n.%@!ZYXY#zj%M,$N+,Z"TD>B>l\&ZB` +ѰۅI4yx@B {pbR`0x^LC +0(LW) +07 J}_p|<̃x 25)L"4HvHu, Ka cab6=<]GaYOΌDHÝT&4$k$<I8 &I "HG8hDNȩ9YH3 >%BC8ST*i3EB7p?4AC  %3H+!3H> `lo4v5hA^?/[ j||1ssʑpQ}, +J"oqX-BɁj9 jAa5Jxxs%>J|dP^ kdV +;iL!2Ƥ _1I$ƤJDpUccQEq+"jQҐËb n*~@k4"pE13a/T ?2"D: a ģA4#NS pAo)舖EĤ8LRHxő8&*,&3`/J(>Lf0ccMbE GC9[@p0P#.wU"  +`?Qf\a,  *P(<4< Hv m"*tᾓJ.4$<$<,RI"n"$(۹%Ӷ-H0'{aDc#"""Hxa{{rܓFEDere0B+EN%҄LEx ] V"@@8@*ԋJEC&A9Aɜ e4&d75`:AdsiK3:AǮ +J:d( Z J* I$@8@Jval,'c"d((R- +J<  +J8G(9@"P8+(9p`Hjfݨ=X}4ۅe7Vf 5M$RfkvaA>r!:*&Z @zV ;CGA;R{x5ttwB2(/OI!s M[9B 2]%G4h D{0*"T"v :2q?LRYJGJI0A8d. ҽJD ^.#+M>m;T7A$ae:p|+Ť ( 4siApZ$ QZ@p^lH'Ct'.ZJp4t.$^@ y0ƿqw,BE&rʰb`BfP4 Ba(/a,M "d7]kV+44)$QhV(V  }l` &@2#*= %hrg2DVAZՊJTFnZAVhs 5-b H_,ł7# "] %\FeaXHva+Aq6~*"CI & ^hH *˭hVǘÁOI&=, iiX%Btۅ +!T$$:.aT%cSxpd\/d%,i# H_lǛiH%HSUr15;C<ƫtd"XhG6)Lܫqr4 b>y1:[d`:`@-\b cM>m棈7`( 9,+͢FVa0h E{J!wÕ(ڧPb" +Md*j1Q @?7-h h \i+NӇJbAqc +6 F'>5P E +]XEH4+iT6D6T",nPʠYH u6h`"D (B3m߻DQ\FKŇ!2: y_2=@%0va8tI)S(RB&T4WLp(]TN + +2X` +,XJ!w0 XJx*Ӣh cTE @hE3H8AILZe5Ph. { ;QMH vQ&:H +B{7 }^ b w &P.B +P:P.l@>lY"O4sӉLhfD$`  9mVH2VBB,.@, $1(c 1CՐ3j6WFAʩuZdL W^R&I%(SSI` |w(2QH&A ٠c0mw:s?Pa'VԸ]ԅt"e@}ifS1D~z^{ְ9uc*)m*Ye ߩ`@]qa@u(]F;qGغ{yiHZS҄c5/ cGDpPqBnyf&iX 1cݨ-3Ȁl6Du>c ]^p>3QC &<TVS<ùcPgpw5FJ?ɴFeDx N8>FCn;s aKN֔֐9N!L"Q-1찮9$yqbR[&# +diHkN6Mx H,SDDܱITI= smr?ޖN8(R\}A6Fk̯Oa[ī6 ++{|Ka"p TC[  LH4ETTN'C0>q0:zڇqKuPHن/(~2$ʒMLg1dׅ$t&i'I_c":Y>*wBAԊ 2A{Sm/m *HiۏHhzE8w:&`qm{3inAɚ!^715opQղZWZUo/̙/L# +/3o;3Ed)\<~1 ?ނ +/ +z?w +1Ԕ$s?u.lI:8Q5t^b ֿ0B9^+ ;ǜP!w"c,߅O8T HxPНTW7.˜!stw-e+W p!B)VWM3T|^X6:ղ G Uz}E8i0ġxGY۹(Bμ>Vq56?yQytjS6ycďnC(ss+xsKمhx8&o,s r+z )nMo<ٞ=Vjlyyekc|G}3In)P8P#BF.AI8jڒ-"ފ5vOͫD&SoA=M2HLF25<^UYfq3scfL3g&IMKiK7@rY" +ai|.qgwkŭ0M#&}wA5g'}O2$h՗yiQ2u חDTEE& !]fl%,}|gzor"@5H;Y"uVMΰJ+ON j\y}~2'`(?5>Skn=W%8,#,)jn'OAr eZe`(5 aj:*j|%qg&O]fD3όM} 6>i:epTCZѲ> +ʁfCGN +Lp@P)__~"iSa)]Fev0XBz;{gx1,.2}B80⮙P3?96]&OY%?TjaaaSq|Jـ@{F$ED# {CP0V2)aDU$`)ЖSRup8 +8=_ 2N 8R_[Xh~ں3&iQO-} BLTspWm~Cr +֋U|\)Y_eA;]-VwqEHp}븊pڹ%~[~ hg(e X6mAʶ/~|N/a\QO4shpC(ǫvD&+3Z܋*EH\+P'C&IrŶ +4ߌP Lk~[޷XY$ώg1Qީ?"I(}ba:ױ}ߞ&ꢉɗgow0·Rrܣ!yS !#$ $ i:S -e&PZ|nPom-g] 4BT2iqCb,q.62LcM@؃,wݯ\iq5rO2 .,,ioxsr"cTˮ@o`A0lϸpƳ32Tj@۫i W}3}'S?'cⓤ]ˠqFꙓd/޺)#|rP5z@䡪'A!eA|a"We> ٖsa) ߊ|CJ5*) +,o>&vT~93C #_ߖ` 01F4p6QhD'm2BYj8Aځ.tɦc!½Hȡg!\G +gOn^n +:B6/ׂW_DtsQ5S9UUՙ H >^Rjx1, X%E88V6XqV/>Ɩ~WԞ6Rף7}ȉ3()yIRB3dGu5+ +G[59LFۀj‘f\[(j0bR 'E2@Cn{Օ~465fdW9cA 672y;'FjBp)lE@spI!ۑTn`ҵL+ Ui/Cq3kJJ8|2R8h?02Wk5ٟW8')"G gO;PƓoc9:=ˆ6| z0Sjg ÿQlwd4xX_HrvQrlĴS+h eBv +nSՐ #TyjV>9Y@FLBT??EúKfMPmNe4T`zetF]`xǭ <-;3sOy^b);h[$ڔS$Ol<(:JB/BZ{M jk l"'N,dព^S'Efu&qny(NCku8 j~kBf-w`W p<VdƕLr-HF:IFG{٘|bX|yK @h"~ ƠJc l" +S0;9376]Yĺ @j&b;sπTQ^ψ)@@`ts>f +mJ#KU;I6  Ш&Xt5p"̶OՄVQiI17 7 +>Rf)J!!у1tg=~(e6?Cҗ>GM=zÒ"S(̏?kr*:h+~K̟=X9bF9>Ca,\k80KB>( G^7+T 5[>o;PL M"{|+x\uRn'Pq}̆,yP&[r +b^t9'#c.f6p#8) +NSW jxYҺ =JS fI@QJ[〲 M +ąe0fQs*h2??o`x5HJ سDxU{Mv㦏R?mӘj|&z)1:V (d)GYvs hozʺ7E 3H.fp3%fUsl~w MzD-EJ쏑?4  c/'"ЁO1D(̣mb$x@Kvv -AW1!x [bUBY9eHWѭe Jmd^N(f Q2 O-22sWp]4:V .M @yЈBN +eQ?Rpj-udJ]`րtA-N;%iqTJT=ٖ;>Km4µfQ:àZz"q׎'`؆Q!2&lh 8C ,ٿZ?Fҟc4|<'c@]RwYqE!U{} '//*wy2%$aVdr-)PT*bY4Do+Z(~q`B=%}3S7[)H1x(2CްoݘԶՁB;ÐNsǝŧ x؂g=o <󣴧ȖaH%Ӟj7ӵ[:*HGt6KsW Ԅ dhw|KSJ|rK!< 'o%H娷 o7;x+a"it+Y@ihi<Ѣ@$sU:Q#|h!F.i\Sز TI?dlqRT_U4[YO}_T:'൧#K&53v`#0sKګJ0aEZ +T_e`]{5*:o7K(".mv+nIg!B{v2~m=lIL`0:nd2/fc@ Ol/dxiPf=tõlbYG+8l$; f|jY$fmު:"r#$mWrg˓L͠b✲O .Zλ!n n,~YB)J8lo4N>s+SZ1BKo `˚/"asCm<7k"2{HןJ5S.+A@-jP܃|{T<7HfxZ?H@ t&.RN'bG8c-8ѓ'v-Y :B`1RQGG%nvco@I-6-i/K[D|Ȧ"?s=}EwA[~SSKh$Ӥu-pMF/-J0~G$-#~lzs8OfpF{W}xф;I2#keW`K+*/zJtwmRKP5(c9 %,Bmݵ!ɝcPϯ٫]@W eo_J#D1h$qfmUzUe^&iVzA{ MܢkD _yF?$ɫd9P"Ə6:$vzpw LuM-N1yFR`e6a +'ήꜞT׵~q0q#umTun| xMQe6K/&:u~@P_Om*2-7ҋM*TX2UE;%h ֌a::˴#7MHN _7?i_hzaRiNp5m>M:S<포F+&0~nE;e9x TD"mʫ';[/ +W_\ƃ zZ~)>9T*f8}z\* ^rA:щ(DflK]@v^!2(Qdp, 8>A-XQ}پW~${ԫzťXh|pxIDwE]Gj^Ke娰&e$vq G4CREuCw˞{'v+wR{ܴ1}ޯ؟ r_jqM˰*i $^ EMOVaA]ox}q?˨y5\7J?._4K`ASB)(PFS'%HkdE1鲃AVˡx1|GA #nw4Hϥ +P$tq.řƿSzEtyկW\]@U9->fpίy+h*uIN4: +&2nY0%X`\Kp?Q*baD:@0-Dt.w-.C3Czh +@܌ﻫ/Ŗ~!VޯtmD wŎ6_n4-NdVvhwDjcaY@ zM1;`Jxsu#2*q%FjMmiLQp!z``և~#F#iѷu%.&ϸH?Lۤ>)2H#Hf[/F25+ދ$تw_dw9%GRh9j]U ]7 7dJ#;b/f"%kA@NjQ`'r!P7EXa"tg+P?At/ wւnw 贉ėSF_BiĞ*z)7s>nL^' jОGp> Ѿ!!oD.'#i-u;>Wqj]G1uE8='&'yѩ؟+gz}c}Ϗޛ_(ꠑ%|{:!swa~_p \)g5'=> +(g yNb0 RߝLy7rfb~PDk^ƌL-=^e*qYrǶ9ֽ][`- a.<\eĢHn5w1[6_8#;ʏ72c =pe@}js„FۣBQz?LݷŒs4J?!h˩3 Vf8n'_3nv2eQB)RR6ccS1yeiZyj4)F~-@e,eG1]tM65Ԟj -'iM0M2WCr QhRI7_B:ܿ9%^ .@ @{rj]RUcTz\gR 6ؘrSeɳriO_q;e^2 ˑ +bvK\r8Vx0A1ŏMwe`jR˄g&E# zM)V%G4 e*:P3ģpr(b MU3aXif?S:.Tٞ^%ڔ +UKM3+!Ĩh8qNI_e6WѨx%7pl-P|eRFÙU]#ѯQdACA$ʱ _ݍ+l_&ETVLa>7hkB +J>K77ěqQ$WqD$ åT UABb*ȳbX +6J >_aJΧCuvxC>V7l)xEWH}gLT4jR_ױ?ujrI~ohLZmNbIk .a +D^#bJLXq7?$kHcF`t!iI+DzIi#?sWE{.7a$4\VvIeT@>@J 31c2Vߒ'0?G\s ++7~Zّ `JoM|'Eqmf(E.J1GA_=DAliJpmJ?#G@ͽh=7-d iT2T&6\_ey`Gw-Vݥ1ņ:,*gݵZeu8%YA+Rvh$<ʱ2h|ESj +M YW֨J"NW+v +*/P30GP0|?Oڸݼ$oyo`}CQn0vr>N뎛*OTgj͵)?-%KuM+$8/kXEfVS 8pbgɜhՄۚ}8X4W*l5 Z"X`A1?zF? F+P@#<.U$"u=sSO,3~D0 -!~&@ڽ&]d$۠E%ȋt]ܔJ3dS=`G6K\RJٯ{]$9jʍt[ a_DnK>,~ڲ: \ijiGL&\H,GTm Vo m## 1dCFi,!vJb.XY7{vS3Rws* :)}}q"-({bm]q؛\H\ E\4ҕmWPS9`è 4vȠ)i#egd9ᖏ.\alؚk-&1?-YIq!,+Ug^g!~1ȿiTnA+a +zF<!ͬآ<&6"̑{@A(nѓ*v`GXw"F.-;Y(!!v{pL̑((8c>ܧ %T@zDl4=JX9?:ͳ-ع2"B"8FY? ځ!"DQ Ye8E5g.:^s)9߬Ȃ DfipJfZqaK,X弗h()^c佑ӊMyrM' aA`zGXMX|"D8LUUL%±a:URbCZH@BQGt#0fe4¹ l% +PT^KHKA\ŭI85:n1̷ڤ/epq_{+-LҒmts*%ihs cmƭ':at3f('a{V|f1#% ss6ڳAi)3w +iЯJ43%N|zh-qan ;!Z;:I*PG%9d*r +4t|wf3(r} lu4Q3Px(سWmBǍMpxM (9~o +b׏`Kԭ)D./:d ܎=Ff~u8\l E"U/ހ(X!2Vz%v6nF>XO9dW'J;БY{B ae2L/xG g o}Q{`so/ Vr(٪Q"0#t*$Y7J 6(O%PF T8D=^Yx{X6 c`ڮ# @>>O$(1/y:9]`@Hz͠d|,4 [mSWVM!KSˌ^iڤ= FTK)Oc.뀊}SyZd,|Kz0hI]nP8Hb`1}q^FRnkGBRh>{~gWǹN6SV@IMR vH Msl[T_NЕ4!z*}->+ w]HGh,B` cJ&V+D|R;C}ƺ4u^Rv^BhPT-ҼwBY*Gq*.=?ZgE f//j^7*o|Y>6pa&y&Cv"m]d<2 9%:HeY+e%'C R5`pG&9`p>.հ&a ̅qC[z a#˴Z\=}n}/'7J2nlZᦩwelыT +*qU:0%9H H@qa]W5wJI۶mKD@J}*B4К% +߸:J;S +u͎E]bɎ"]A#;0;Bv`~]~nr|ԕ6ZK>t>C2R^L8^ԿJG6Sa m6 ތ;_tk[(xI FzB.l4,MRUX=G [ NX+#`6iPN'|yl::঵?z?v``H;v# o%'̥ń0!9 &Jh=]P 8j"pJЇn-4 ;È?U)LؚvQ^/ +C(ZoNؿ\:=Aq3dXvt(׼&r-*WXQ\]d@2`D6mjs($΢4yXE ևh#8Os~ɸOo%$@"Ԝ^O蝈{Kb/,ɼױO|R,гq.;RP8 Pj='m%;<,߭v;k}Bǖ0t9Zxm/ dCAQ=/VT } X|vʍE;kb=p@q=pӒ ֺbR)niE}N dH l,KvTlf&(DȎ"N䘐 mJ XXNne;88-u>n4}_ CHwn9(:lnݍxƚ&%x,fm&Ob{'s2rg]mzR94va0Cuɫ0cÚL#*XX*6 +m!Ƴi퇔dEP="F86oZFyfF L L*š\JrF3 `X)P<7V3Dڣ| +Ƙ@hT& [=[y߶oI rTV禝̆ԟ/:S '1`i_ؠDZVQUCKݦ s#4\UbL`FQsQsUNȹ JL`b*fI"oUYU_G8*"2/"ZF4$GyCSډ(_~]D;"XJ˛դ?B;rJ7y ݼJ) +-xG";&޹{I1%h%Ғ0"gTD?};gR`+ψ 3'؁4^ZEdJ< K%Q(B{% +H k*;zNnS%;E->GVxuj΃G%{'*,WlNNh&'d֣`vcu4yH?t({QU+RHɤŢ;d* 䪂T$94Г@ɺCDѣo:'fS KQx_?BǗ +3$.` rѨZHܔ&Hxv3spǾ<4C)E7HV$xUp)t;,fXBRMcpf龁e,Įq3$1qe;oNcdyh](fNfV/AzFJ 6N0^H0* k@,׋A/kK#Tj`H/;dj x/I"Nui?ch-HoNP!%3̈6eW/B)OǚZ[ۚK{Dj)cdң^UD^I58CK]LmEsavEe] +zOSD WȎgQ@#X...,{p>T !`$KڟxOk+d;Xy7?gЁRAGMԵ,g؇2)+g5M/ qJ.T'/;y" *\!Q*Mծlh]_HX~v\odbFeI@4v5 yH Ѱƕ c,j  EQFmA8%UJ˞c"/ +]!Էƒ +eJSzoDً8oćMFITzoX*qؐѢqbɮ'̎%hDQD9Ype]?SY,bX;n!_WE0dwWaV94lШaL6c^t9K@юyqEst"boLPr?5_S_C o# 򡅵uV{>6,Hqڗ1C:PJ*m܌%;fe #ZZ\]Tr +y#IL~kiJS" AV,;L.;<]ŒXcCPCw /r #v/ncDҴDÐqBf8JT "ajp%%ѧȇ576[>0ԏ,Mkw>Vc;=%)X1Br|>Zط~7D"4CgWp*5XږeVa N_ASW㥎Ce:_U/EJc"U䩁TY$IdM5Y$Y88z7[`;bM.IM!oZ0I4ݡzj)TSN]igFUR@5 -m tq]-v9ǺNS(XEeK#aRMw8+}%}~pdU=NO_FUL5MyԔy?'8b KCBB=y@6ɚ'*˒h?1KnCߔiM4RρdӦ!D ,=*QY$%DW5 Qt?LYC*FfCtP  +(P @A +(P @A +(P @AۣqDOD+i@ WB("M$ ޠ=S̀^EqNcN-̝ zYmRВ(~+S%UYJ-Z @]הLA GNIw z5Ehe][%GmD"1lvҍ~ 76NFkHAK)⏼nI TzbGq&I@j@GU(X<H]̼:?YT1ܕGeIpBA[5Tb:R=R\jUz&VDUɿȪ~NFFn]X~Sw:G $O~Tem)r96>KNr]od/}۸۸D8/vEcQS>_M YdEPYݡskKxPPS!{WA0-pu,167$7 +/)n;h/zS|ޜf?3"O鯬,2-*K^8-9KГVYo:/Pb}A 9{ 4Vl(q]F/',"6hXZx VZGWYm\rQhXMh#6u,"_φ$[ҐʒPRY2xؐʒ"~#_aHL!:PpGI>R?E9*K82dpʒshfPwQYWPUaS +Mu0$;2-~bGNw\m?G4xʒG-*KzydCKʒ'2+8'_d6u!!{@ݼމsCo'%XXVfZI㢴%ヿ@Vsˇ_z1hF|^OR=Ƴ@4F[_KKY!fҏg#op3O~a&A%ht"qLv\.6+R䇠h',mqwA]Ȃ.+]]]6:/P\Ž!6.jRFҿ}2¿:bd +_4kKI⌺)h;ᴱ=eQ :+#j$ !wFFZ;h:ދ Bޭ}oj2PW@~ Y~U2 y5; ]\/0"\Jg\jo[ ԇYa-5Q@xI>,J˹ n>`lw3:c =BkJM-C7Bn6eluG c-gQ;]uqz`ܧS;v*]XHd<^~18ptR+z^;o$#p3owLfs>7!*tGwSes6 ^JApt1H!=r4= $Q|^߰E yT=on7lo0 7qP+ {m, 7ox7ܠMj@O\/\i奶{v˥ ȃ;E΋'#j(=}s u]~0KI^WE2Gj*9`صY bXQC=V]1m`Sr ?QL]m9RQBc |*I8 !(>Ddg5ԓň"@A8"zB5y8GԳȾ1`7Uh="R4ƛLDF5 HBnġhE|cK f+YQ"60m\C40Qc:IF|<&K]̿ڔvJp;p fVe p$ f4z7KQF%) 6Dw[_C +hY:7o0&+頶șP1sPCY"Ǽ_n449c{bJq/2#n`lKjK輚MWsɫQ~Cּnc 7.=|5guXz5E_vGKUhl"L{^fI9Ԙ׼ Pcnd0/oj1?z@l>nGgimSY5$+( I nTo>}tQW^a T墁KrQtm;SmKB`uVɽ[w_ZF|Xjş8,- +P=AxH:-3WW+C8j&W$wf,-RSѬc:2ҳ-w +U3]҉دeB`)B1;#|b٥_ip~?<|ui3fڮ_>i{3h0bECYz,js,Ul-dr{M~x*^=5VJ㐤Ul8Wbl/hAfou jxҶ׷πqČ֛,l!7Cw ^ݶB; f +mW H$`UK&bD>.8rnCT}?3QJ'n%M;RCDIZ)(Jx3:C;3Ⱦ&6l&0b~JfDz */D3iY1dXCk=87/YJy_)sX wR2bWԖx?mm\(H[> JJ8JP챎Ѷ\+;" +K8"l=$M= +s7Vב& }>b"m}Qúk:R$o[Xe7z԰JK/( A rk;+AњSxXĘUlz5̎eN&QɾjFi;竧$ 3s_)G$W}J0ȀG4hX? $$CȒoG€̯m 6Na9^]oc?D$xͭ5ІO΅< 610ݧ"\8OW1Fyz9Ԕ@;vtBdіI򋃳@ucW- fG$z)$+qV( b6PsLjF#Ϟ_q+yʼ@7613 }H48$Lr{ *M*ݣ;U~Ψs7aʪ*'g?b(ml+{{͑ +w+@ʈC8)+'e~v(|G\>25g֑ːhuQɴLΜv*?ZX{MG T+AbWXV4f5ה%4P& U:kd9zN{,o$~k!)PٗŶRȤYV!yH氨-gDgAd ~Bbل+xP.]'$;Ss'+~0>%(䞁N$(jƁ%/ #!H +$1;ͽP)^ =ai.92Mgp]4:E&myX- 7RtH%„&ZWxz6PNO!eq8olVV5q/LBb"k-d{[AEʉ ċ5/vwe*wŕv +'(HE0ͨFv⻶[}K4f%ة ZPjT-"v *岰WK2Sa9nu3ӻ $4_FgQ-W:߁8׿9 X` |¼G(n i#ܜX6äH+D?Z,׍NI5AS2*eh]ZvIj! R5Z@BJ+r0"QBr%ʾ|H#ZzS[B? /%9Ti@6q`>ڀf4XCFBG؛S7ӵh7U~.lEuFkG fn ,{b3F ZAdDΧS\94]bP#nCsP6/q ANW1h1(+7]%V +NJrI z-sC%d0Jy&L0{d-7e@[h-9THbH5ɯoUͭOu#D|Z= N-ѴV=W|&d;4mN ' قj2_?׃d Fp.!!3$aIjJlه(cF3`(PRTy@ +q0 :821%)xyh޵cWg9 4F_!=UJlq#Ǔx -}x{ߖu@AnaxNz noRt#amlhS."W2(ͭ=L su]7xeKo'O]JKK[ځfYُȯ^`*9:MhY234IWTw& 4QA<5`A(Amd83!B,9^wR~u:UP9W I˹v߷E^yxA4\Y@`6@RSbE@}]4Ɵ^9$7T,n$ŲT2b('V+D'YFdJybD*4^$ǒܔT68!|NpO) n{8w&P x*b]L%w *jJv|r֤'&tnV~Yu']K[Lu5ZŧV!+Wŗgu :OUm15:'=a#ʁN<t%OrkCjY;Q6U#:ɻv(7^LW]җhb0lwKVQ!٣pqS@(B_9A=77) + UzbGU9LYR7t\V 3͗uDL 6Mc#iԗSq nZ<@yBz*]GN"+$s3q!׊xkA4[kb5_靏O4\*GNniŽ ЂՑuŠIrQShE2xܩYm z*R;Ȓv#g#dYOͰx+46ezsM0*DHB  KXRZ +cvcJ+Q>` /)0P^:ON$`zj?eɮqwbZ7 H(#,]PxL$bٟM;uS~8! M.'' ٩WsZy`ulؠ?Z\Lt ջbvz(6'Gr N؅-HaH£S`co(ۓ!c75̘3H(j_֬5@",tc@GCe?hB%y|+p {y6ӌܰl7ј-+gNA~~mW QD&E31-Vv@4) fLAJD^3 !d41AʺS Zbْ}`hRE,E‹I]n~kʕӚϱ?52UvKO7Bg%$ݡCkJnxVܤz'&j Ǭ.5 XBr IIkD?f"8VIT}mMQbηf6KܽK{N['Ğ#n:9֪ aD(gPhJ O Jݽ7+ QGdK%LJ՟;؏bM"*q5i yBH5# c#T`ad|<02N!%!vTh8}=w\l +@ݡ\S[aj٠xz!9:LEwM1B0|gϋ]vF2 +>jܮfI#C\w䞂q{x-fKhQV|6˱` +XOH =Y3Ef.2[eG&2BVG9jlqcЊ:LaNX.p/ 2J%Ӭ1ƪX{tuhWhUPJT8%RUNQO T$Fi疢R)")Hb{K @A!8!8!@ AueB|Z] $X8!v5rA^^)e}͑^aEd_4!eaJpp bi(vlH"g ヂ? ?vP \hoՇE$##PrJVqIiiCubCP1j]F)iaXleUb(XQx%E'D3UFUKOl+&"\i0׍P^>|@(*Lb%̐t2JÐ ;BZ C~O, ͤYH.*0 ;%-piY +<*m8.Pn03333333333333S,GI,c6#&ahN$OWZ)zrU%<]}c}߷,7Kz\y(뺲,ۺ۶mۚfIa4 m;D4ʮ:Hϗ}`牢hPi)hYiB(,M4O4Mǰa B=?@ CQD 8di$I(ahYE=mq]}W(dv] <C1<˲TUiu]yyBBA 6ceYV0hˊ뺰Yv=?*|h@**`@"?)  I|(` χ"i +@?ISAC?fS5-ǰۮjBmdg4ID3$0TW}cy%g*<{(c[۲±L6b`&G~ݒ[`6Dں/h8HDubXt]#<_D:hہ+3M3p7EoG"E͒|B)7Y_!:EH2yDf9":.0l.y$w8Dp,3]׶BqߏCpۮizUI 3M׶}?y? *zm^,v]wR}a뺶mV, ,,zzw؞?3Mtm0n۲J DBi(ڶ0 q,,˲,q캪H  O߹`ոqHDw0˪25K +c0Gca_CLϹTMe^4H- {~e<~5(hz1K$@q|G$Nz$"cal\X|M+dW&A;h !C~,Hts܎Bj L +FCv0v=ǰ'I3UeV,P&uQ?첪L3hAgx|UMODgV, Cωtzb,Mym]4 EM1zօ㙖h6}w]L&۲j5KC!i^'ߍ5 o \ɦE؞/8v D8U(Hc{ D2_7CQC݆Ǯ^$Y+7'V i4f.KbVW6f/(?(XJo˚@Q4K(A7K&}ԁXu}#.i*sh8$&~[i{87_"u*0蕞X$izUg7o&>Az&3U}ii4 0 +&kՅeڎH(zł #픉,G&m{dB{ޠ$wi&I1@hXD6@<( bAB" B! L ?ءC e`KH+0Bqf* +b@ZbH#DFzb>p zR 0\tXBh8]!hDE *oŠLw8Z!bNϷ' +#<)HX.64_bI|fy#`m;P%|~*!QE !Hde*H:X 7#Sѩ+&¢Y ؽ!« A2E$VfBJ]VRY8ZwΠ' ٘E0!^}9p.}g )|{am1XF-~!Yb1YX&V$tx.$%\h ҇60 ONSM AđA/`4VQMSߎ}EYh ]9J [:C SHU@ڴM0qF'f@ O>00 +V!xu-~l' G7ٻ xh@Cmp`{+8 !8aRX]=1L=bS(mE!k 0rExQ"%8cA@ x$D#P0A#R{P؂jD[BHħ*g פVad\ +f.bD \@Y+Kfz +q}2C/V)?VP:Cy(i) ;w͘ \c dI\sđ" B*֏eltDP/T(xW6Xw 8,EP GGISe@ =7YDAF1,9)pT<0M` z8~"0 Zq!!5$8"To™B` F F + +D~:Ā)AAqQ`P`\LRpY`VB7D0094 d<@KxxrB!ςLG4q ?7& B@CˁĻ@Q \v1BsA@ł"HJAa@̄6, ;4]+Tr@e5`aO:!2ȫF@͋N- F8#B\&P*dHL@P!D{ @.1gTT U9bU>V3qTX} &UNJg +"&1p< j@Od< .̂ B6zphgT#PkA>#0|BQ/F TG` K@ȅp{m A&\m؆H.0DPT07W|GXJ&tM!'p,8Y `w1R/`H`?@ہx-F^'>H 3лaB j?3/ ll`I p6I Nչ0=|y!!`VG +J w^@ *8ho&oqE@2M@!p%-8)ߤ㽎 p>7fBȀ 7 H" Nh +PWsT`1Hk ~ 3 @JZ@yf B@@hCJfpxO@m1+L`Z6*h0MAoNדZQva&e? ]E@w3 +pxF/Y3л8aw~@x%[ %X_ &3iT@4w4% x#v@ +WHAl,do :w%K?]  Ƙ }HWrQ$[e@~`?2-6P.Anֿn=m} +{`4$" t T'.vF8( f|_"藠[fHX=~qF@aNAOf0 }:`R1Q ^JI`v +( >9 `&5g y^-!p3 &=Q~@Qs673p8{R=ǾOJ mB +230P`0 [^0-"9 01@`3YT|/t@0x.QB\'޿~bP9!V4L'{-w?f@Ia[xH{]G9x ptkᡲ +Xh8`abiJ?O@n%r#(/М {3q3\ +cW} {uP !175(yލj1nk($__bKL}(k ?4&0Ctۃ·m=*sa(yޚԐR;,w(1#_~ZAG\ +{ qM{n{`AP= sx%27A$#xA΄I$yM,l#] +.'`QPb{Ѽ9 ݹ!9ܞbSP#9>8ЭO s !bSݝ9?8Zc򩡝\rf:[y3p -1y" sy9A/HG"( ?G*'y'C [>JƂt"\v}1V4 wca?rDAh=8'9 ( 1B!Bm8ESP1ąAr"!m@Q ' APGG@P=; +Y4&*qP#OFfe eO蒐]aAOAûV0ՊÃiH'={`$_XD@.!\TLȈ%ӳ0j Ͽg :T@!3-ts :Q?ӢǿJu2 +~gTf?94S)6x7yE™O4IP&~0?5ޞ߸w"վ.y~ӗӻMF?FN8Kq$׶("\PuzvzA0T">7mɢi^ԔO33u.0nO^a}FU&(5Q4 %,@ )C|qv>1P?Ca*{grPX(V~ց]9)ih(`AhpPyAC&dB@.1HT0l鴹tv.*Ҽ}_ij1,Ҏ}͙Jc-9 +iG|y^Hx3лwLȅF2Ӻ"}1z~΄h&$8 `m5JWzt3dHa7ɯ0HDj + 5.1!N]wn3N>43TlĸQJ$ !W!W1JX  ÔQ1b`WD冊 *4PB0*00Uk@P Z`!!KÃRaqK ,,0`qA0` +!@`6t<.( !"CG"F4BHi6X*d! BD ,812b ,(ЁD##A + +%F0(Plt (a>hx  |\*D4J@GHXp QB$'d.X,%{P, t`AA %,쀙PP +hX D|X,H .ZXpxbr:6|``b +PZ0!bb丠C&(.pdRPJHDt(AR9a# +)1"E(),6%%-|X:RD"E墜d(1  8wz>Zպ&&Yl],"=c)~IMdB(_= ;"u"]pug_e⦥Zm7f{̴c25CaB=&PLzxOE7hz4[<,.eE"m$o[WO~ZvoL?ٝbSOZCd+\VK}?35m ][JynA.+_7jUa9<ӞM݃h-W_t k]FIIokvozr&rB&I+_F|)L.%RRB+%YGE4{h rQrY5䲒͛ϡA.3VT:JjW':lWwTxE[=}흮%ḤΟ-5:/{"G=ݕD,D,ړrY=s tW伺Ϭh,S\;M4!]mSFybQ "Cƍ5J2.hڲZ%n6WbOu Y>Fvt+ãi&hfjimW4}rO4lԐ +DqCk&$BLIsyʽQLϵO^["#U42=uLcdXzeD<ƥ[Nsk:WJHj˫6ZCˊ͏^W'cF1vwvάD롣R)ޝ~+Myp 1wG'(b2y0euucǀ\@hiX +BLj(e-w|%RݔLvCZ]((&#"ṹ9UۮCKz'FiNz76pϔ~c{.}fwk] NIGUvRӳ))4H)UmǴxp뵷'u)|t\GVUqQ~L/J,Mh}R!ZA0H)e 0 + Eap +@L6lV>2$H  1B""9(Ԫ$΁Im~3k_` _Gr)c"/V:c>v`$;t76Bl.G lAY˰}iʮ_Y "īA~]#Wb=AU%(d%㍩-3Cq,\4'cWz9E;"/^iˑ=<.B6%Po}l.*ľ6Q8eݩWG%W91{0S{}RE=S(. -uv}]a=e:w[;p"uR_1 D%sb39.w`O*%Q݈uzT9>>0q/J=ѽ%hHf6e|wAIhexd!wA\Oww=(CK8x)N;z5c/I;7 HXY=3* ݔm` +y}QHDZL*{Y k.\wK `%`.9/_?!`[y +EhĄV=fjfL40G]!Eqѽa-Ժ'Crգ1ub/$Y2n9t>IETO,^q=O_W܀ +NuYtPk =0LJX_Oh8? Xrs+uU8uUFȐ&rOѤrY05;':@L)tU@}Nwr 8j|$X'aITzīXfɽ]ŋCнF LdԙÚ怭{<GJxtVB2؄T;m Y&*u^!0CGxV&(ÚKL%EKZ9M+Ɩo!=HTb+Û(Iv;w7wE)V$ ATKx1NDbO~EC_LS }J)富%O-}#%K .q N'-9@d?Nˋbq&!|Ƀ)hm0Q?|)76%b) @ +%&]?ϱƎU +!UVNA8OҐس4,;;YޯϏִS؎HRdTGm WfK.aD{aү $V1m&7fҗKiZ>u(Wko, ȯ'a] Bfd _``#P58t +pX:N>D *nyDN7k<"Äp$\M[H' >tU#: 4Հ>Bh тt0L"f^$ ++7* 8hV3i!8 8/36wn^)pF; 4tSVa#p5'*dCIӿ}2pX7'k_se8sIJx"!e=˵͈y%c~]Ԉ񕷤oƷ'I~¬8rl(4iC-#opdT[Ǟh4vgc(࠽z$AЫ!Nu2H52A?83/e!`ۅWഄgG¾aforjB:b &<8@DԢ+$mzOdxp>kG !vK>R +}c<,,%FWYqCX8Y&ja@Fdt!3- vXA嵒 Y?5z8XiLnzy_{yW\Wna7:^༹6 ^^]5ʵm+BWws0H]\G7 XҭG"nq3;qrkֶ0[^Y[}ֶAX`gXY~Ԯ9E^ +]SYyȚuqVVM5',+K#YY  )0R ڊfk "-)`Q0֫+ue"}ꪋU,+ +V>VtN$e)ۀOR]F+0}jʪʽUu`eBU5BúĶ[Uj,;TT`8`)NORQ3MO :>yGUPQIF5bTty95ݞ- FM03t{ ׄpU0p(%LI)}#%-H:JFtP ++L@# èhgg(F+`Fէ*m(Z4E(76YTIE y eFLGU=AOP;-m:hh9陶IIlzuzJP~ z(b#' p(5747lKNy&g{+ǸST3i223tXpjJfbWc#<:7ibnij49MԟiPu%3XP9&-/JOY%N%HLqҽČic^$üD/.̴MR61)+O/- BF-<,+-c.<@ʲ2 +ȑEJ^MN %͵)KeUl2 HJI JJ e%4ȑ{>IQ7q|\6>&4),'%8l'yQrDJ$% JF%'UlLR1LGX=>֛$숄l$!c/n!?Bb !oGG:!%Q +93 +yccc'&#EWt(c| rt GF1LұQEv422_ŌRrYg\ + +@>p?(~-)Z>!Q96 a&``RG]_ӣ$XDi00F/?P1X +藱Ơ!q ŀ^603z@?MJE>ʠMԷ= @lZ}|}/>?.=ȂI1wxlyyTswAi';A yx8%M7ǎ-3@OシN K(xw4p&L`%vvf:n]XQ;leSI.n47׶0.(/]nN@sq(XTѲN4|ٹxusHgpq,2,| PGpPq|7kl[jlDoo8M߇0/ݛf*y3 8')(Sg:Rt9Xjm:1^<,6 ki4 L:`ghPS4 0 +TFvͭiD)iv;mavf;6zQX\PK`{39h<vA-`5cS+-pct KhN (F"$/ @ZȐmtT:acA+7I&VD[:v?i@rD. a +(llyڇr3ghf; #.# } `D C +|ac,hKL6%F*K lv}u{u€! ;dT4UQ1. +-(B; + +0Dq( +|%Vc RbPkH [v"XX^a 𷾏2u,VG, +SU6UV1]UM(PO%շ @& +@C1 SMqҲJJȁ%@ 䶸-pbJj[ (-uzZ59-#-9 +~P'`x@Ub")i-D M"x1c}A''& nke#*9'?RHb{z +Y@Se\92BIɩҖ2ęB>`DPe!fCB AXFS9LC(a P[gfQJ20]0fChIDD%^ ,UIR|h +{ z|wz08ĤP(hwʩDAW2,O?ɧzzi=Ϣ?Qatty`h +U @{f O`^ "PA|@[l lY+!P.P? +-!ȹ7n|%3MGǀ^1hhAD3dĂ23#}zq::^ lQiA| tL[sF3_  *RG<B01\^>}x87BY~`\|`hvc7<=BHsRZ¼$x+8D,9.DHZ!65KB/ +➰JD@h;F ȗli= =I& Ssـ) HyTzNN**.-K0$"~%.i"scCy9xob.LJCBNƗ@p~EIHF֖A孀3\*)ZV jAIaaPЂ!@W?$6`rt@>NW0zdX?:@"`*+FFFT:L9L9L9L9L9L9L?9|\H!WR- q`1 ^PX$eJ475o6(-S-eC]_qu5K1jYb/!@@tRsYuP(YCGTf $ER™fg_U&EGTn]38˹T&?T ?zG\@dR FAJrk'v6࠮Fb$Ӱ$+:Q 2Ȁ +P tp={}'-Œy +kPb6KXU|ց6nbYF %9. #3[؍\d$"iL=Hlե`"*oke(5P/j +[ADre CҌZߩ{dlr}/@x  V4}NY +/P?j&0Q9j#"F,ỶLͥӐ= j*DQ#E"ɡT"HK#K nU4KȣO8?6\S]SQT'9>2RP(W  `Q  LP^@ H +WèXP^.`l~4*U]h@~u\YI iJ#1%&Lrr"aܼgKB4V<)qP[A;: XU1S`q iEkTCP"Ear;V̵EJJ]T1% 2QMʔڬF_b31NkFx[etD@H,]T')HR4jMD<58x{ 0jL08l7oӠ . vUZlNwrmkt-ӌg + TYQUf# J$Wg yQĎXLgVE{P9VtfF'Πko +ޠnP\EF)"f/U{jf"攍ejf>6=f>F +tRV j hp[CS@g A +@ T0p 0 C4 +Pt,pB0 `59(A$Qa&”3ZŔayOF(p S2"ipXU=LCV`c$.3%UÌqk SͧA\%혣i1&T$M{08S.$Հjq: ^?,BQdsƪ@l0ok8LA(҄j_A7gDjwIie85UAؠ)>PRjLF (j^"XC$ Nx#b16 r(F5HK(6]VaXuPd{2oy>Nq]!gi !2$&_f{&A.ECxG\5sBg  5QӢ!f^´Vl*C!>np%MPnP CD=͆BIõ+C [1>4zEaADdXu$86ً`5;0-qQ2LP( ~"-X`*a Ĉ +Ը(sby$Q]M|+=jƒk2$TȪ^AjbDT`h׹IO:lěBKěf !uƻԈ"5OL=l09 ZQdjk7B;X"%N(<>^MV!2d y9 +uepĞK4zW\ Q eFQȣCQA(LD53ajӪ Ȭ&wTv@!Bۜ8sZp$g,-;U:2Av`тGI;>RZ>Pj v&>t@B{Da5LiB3e5ITi@y +-W*178#D& |5'QCdDӇd&DH uԻSwKȘ( +,`6# +VeIUM^LԄ:Bv5"^Fb1Q.6 + b$9el!CAO7sTHF)t>} $ZO6 Iؐ'"*퀪aam\3PD50z0ʔƴ= 1miX%z:Yܚ&6zԉ6DE6ğmjX*{xc*\-R0GMmqqYH8X%QTDT05QĺU֎ ۵NJ/DsST#AX"h{Zi0"l4x)7U*kI[7n n +aD^GVb G`Q;B5`LH|Wfՙ(S9:= ,>Ɉ!iq )Q름XWEڈpD̅.a*7R6r'BcMpūB2vgpc5c^#G dvtSL#] +/Q"/છ2Gfyh~*"AI¶%Z5Ra 4TtP}.ƚdbbb%۪}\VǢ!av!rIe1֪@3PBUK_^:ȨK,spB=K=O 5L_G*rO|aR!4{B*̓AoFhB"s4&*Q>D +?ݓN&jCNd z\grPIͦ2?X> QQG3`Y~\7d! 5/>,} QlE(b[jSC6QCm*rj7Vct(拘zylvx<)Oq6L}iBlw$^GZxNYb$Bq柋#X7f#:Z@&$FnyZh&b]? +t /Ũ +USY0烙 +iĜ TL< +59|FPJB>E*gaJSox'ݩ䉻#%" ]4F\d՛Bj7DQ"y44J\QBx c?d<2 be2R 0 A(Ajf [D 賲IY%QG]*<6M]@ ;6ow+uOdjt-k3gz\M]z^agi?܃aNul MO^!KuH*Rƒ0sGU5f _\ +y Vvf~3g(E q2}UK#lFi7y)CJ.]?#QCrz (:ξ*0;0@H`]lLǬEF %UCIKT#ynKQ Iz\FCSmp& E,dvKq8S9S2II83ywI?Uc1 +g[%8:L`f|OX=Df-K%gJ[Dw8ĕ^t:1rl;x%:38xۨ:Lt"T m^zN M+`p(.kUy< +?t8@wPc1pOl +tkjfK/JW Z +@B!ځaSAĻRs>n7WJ&*)Vr.|&>4icvAi_NЈ4H +Um?x=/sQ9Cy<^`JRriN# 9t1._QAʿ谇Km:}B_0QϠI팛Ԁ$nد%6Y:;3t;t{2(o^|ssd?L*ğ)?$ڀUӽSG|p`Gr7/YPF}xmCsxa.YmSh (}yHo1;'&EjtHüë+!|pGˠf-9G7ؤSm0XWJa{| y e)2odtY>stream +j@yE®%C% +Jrde'+HHD~j +=FvsIe](r.ڨHNN[AtO #OZy[o`YI7`& &bH1ME/P8W \E9zJMܴMm0"qS@f+0%#YJ[i$^S+7j2r WRl"D 34\O~qs \pMhFh;&z}Zѱj"~w9;i.C9,٤{Ed ʲR5D'96̩P|bısb;sRwc\H*y}L75toFAspٚWe"2n\Gs-d^161nݳ'z8ÁXR;{EM{ufJ\= FyNz$9ŔD$wY%mU^N`QZ_9b& <@Xꡦr[:d5VOoҩ&H$]L%>I)SKF"Mk˥y pʄomWWc'Ilaiђ $Q4=+=DX:!ZωF0I4kt;ƙd+Qw"Z+8>s꤂DXli8X8W gV7#Fu +b_CHL /i$*K6®QG<=Nj]c%5x`,i",ŴDI/2 :rh+ݒ$|+*m3I懹 l?-JIA +2 OnjQ77sb3ܝ4LVv_1 usN}dD|ȁPiis3#l^U5?4;B +:A|ѭ&^V^BH0 C8J=q)8AT6+KWS64RūK^;:`q/9>)i0਍>j:iJ=_$##/-D %HЩF~1z)}! @@2tu!\?ua nh6҃, bLVtIr#޺N1XofQz*YnD u?X&$RDTA)i3(8<@H F/'#AǛ>qA\"y:pw+yYS7H!)HcxjÚ@<`b.Dc llo3 tcy),ꨏp0TK ){|FP(>n(QjnA2%!q/-(m*s:/ fح|2W$1ykS#TIi7HNj6@MГfC+ѨVaT-.-/2UjVbrTm+j_s5"1y>۠=?{+n= ATnrk Mp& nIbnt%smU%@m4 T^;Dk`f63 >P ԴvשJAiҧ6`q`B_8b`'yR! `[[TqHp4m۾#E |@stJM ng捐*s<363{Αe!aAkPp?^cO=zBjII,~]Uxi MIoN48٪#esgbҐ1yJj v(TH'rfemܣGd>ȋT* (~-uw.\<3<951'`RK̃yCƐIZهR,f{b=l*FAi!j}ԆѬl_pѨC. "N(GGOϷ6 +QNIs='R1+,jg)>B83*19-b ¡P؎zXuTժ.p.2cЌBÖ8h;\24I(vw`号 y[*@Y'* 7E2UOg"mzTԉ[ |"]3[gCYAE/p*+\~5 $"6(IZAQuR 76/b񼺏j ʉ]] wƖxrLYQ) ]~_q-iŀfCV=SŗѢ7:芻ưxM =KQ>lA8PSQ9_ +&;G`dh%Ws3H~/BiXÕ4|M8љ[D ҄9v$-E'lat9}W|K3n*n4P@UNp&btRpPP}\g#dk5( ;U%q`8S|PrT잭D<åNKC2--6,v$ OZcXK>,T3ibnd $R>{ޝ(AY8!Vu( +V8<-@@Pb]1Čw {PJǙea%?`M@ *ф k] *+rFÓkCy)d8-Y$1MO@GG-i :u@bkEeQ-,0SI tlnVs!RojGu2vOU1&@) T.D<"DWD?/b9bxI*e ˀ|پy+eGA@ƽ PH+ -Ke5[{AXQktyuq#Hi0o5?{NCs5$e{~Ɲ4fh*+%8 W얹V/i1=f@ kAe5gEǥ̳g0RA *YDRIB45_0(r:〆ٛ^3c u+3H? Ե\S^+S|a/Ut h \]Xmg_ "0T:r&`7u8 #3l;HEc'F% |\nvV iF- )M]e췀{@>tU p# 5'xOhL|X6bS[7k)Q[? L  }@J[j t[]Zf0v_c} a+Yj 1H瞢T)Hy YHA|]5 å9X!iGPTǞ$dCo5+S^M@ L2Ju7)E@[0',y`i/!lq򒲆Tlb5B[i#B[0v;?Kp a?}wجDfX"`F)eEUS߰@Qgq_ }_&!e|W J +%J* +X$ | 0XN 08rd0^R+&inܘW k>@O,& Yoj|&w0@`IV +@%ً +PP0wh$jVVk|hRf,N֞rb'W(*=0.[FXWkt^C1!o#<,hi:mLD3b@T)!a)qa/ P] ħtׂX,3uU}_:JcݿGeDyE%b,uwqިῦRi.H)uʂCW\ @XOT} LR* Ѿ +<+"`cǺ5# k0;{8F U2)`6a($Ɛb.\f pm9{Uaˣvwb_rz ``HJI:qMb3H,Ы>^%׊aUez +8}U@^J'⇺AC0NT&%@h,m7|cL&Wۋ1)Y1VUl֤keplh-OdeԆNNatϴIIL, ќ%"i#Cɺp֊Ěl7>aJJ+(W,,@t)` 6=*YX {+aq=3YXp u"]abN,:W?`nwӦ*~A +DWGz WhgA6V>B>6l.>M.n3Q"PaaM܍7e +Q92`ΐo,ˑF*t +,XǢ-ڿ=xV`>p03^;2}%g^ǎW{G)X |c t*`R)y.,rR*a^y`ׂn +(Z0cv`-X dGv@SncXf4T ^d UI:a L S$Z=[ii_S TL+8H1ޙ#h7$2+p?#q00"uRiq +''+5 RdJ3:mb"W M%wCp: < pC*4ƒHlx*kӉ\Q0b‹TGhQۗrpҋNH8m(kboo#?MD&?E(AܜxVx"Zk78h0^Hq2n˧tN9SPQ`q-$G59ga&y2eayC,4)f rPoFLAq/`!3TZ2* #086N,35HӸ^8¥3/P$e!ڻxВ.+j̚ +3R}xhqDt٢M|~U=-"Os1uwBM ="%{xĊ1# CL8DB,.ZN "t(zibEXxr09O&&m|(- Wd9YCDܔH(f4*`TCC 2)99㑰dLID%TaD cI-DQS#ۓ\ǘţⵡƃk,fndА:E%k =&L'nWjEFTY@LpE5jZU7eVGĐB.BERcʉ56)r:j_u$vUa(hrb94Ȇ^ 2&Uצ*p6|Q[Ji|42/O.ц[UD$%a( BLHOQua@q! ״sD%H9|DXb(al*6'Lи @<=_xP3ykL `Exq*5 KV\NJU,M-P:&2Tq9 ?HK +dr}jmdRP\2]5*-E3yND fNPw) %l&M4J'"*ǩB1&ɟLfH4L +&``"u$d$Yͺ3< *8քB:K.FcCVBp ӈI͎*ۧ(V {OxMSh&k`U1B4|0.ˁݘVYٲGxSa^Q>awu*#m(;$FP + KoVP.hOo@R2ڽJ lFN<Ϳ4gި+BL94LEH4PkD׬`HbZC!A6{EoR +DP8$H4#VT8!:QL[0xja<$I T] :<|v*RҘM#ёF|؊F>MDʠG>j%tx@$@Qb>Ok'?C,:"W h"jY+W0ސH" .aN# +)}8F *Ș<` NzÚW m*EGr.1: -&&`ٰHjtW13"硺*=T:_tA:w)KS!j-Q\Ix {w,2u3d"L|U.p@ &` *2.@  * p\ +> 4 +< 0L@7>u:\>dG%EBr9pQӣB%"3N9Ի!Ng>cZŀUM47hK\(b9j>6TU4+g^$ /L#6*VJJ- ^) &s9C jdo]Fb!֚Pl6`6pu/2PмH_\i /[7@,عzf#&PKݲ*Va2N{[j Q̍5FUщqi , +kWYi2baRNPL4 j/ⴄ(3/٠GDB2@q=f5pXlV.3G"id pb U?RQtqT]tx"؀Z}\,NJyd)/z*hqi3 Ȍ4p M*316G dEK( 7?yLN 0ְIm> ً*n1W܍蛘 m6_ΔN` +&Iv]DlZ *Vpj"6P(DD}ӕUA'a{W:7,!oN$ 3V\Q&W^,yTKб3 ^c;d5vFGN/S+Aq5 aB Sab{WaPKyOxc]0y7˜?6>{jWjbFw$XY葡? ĸ4 %xN̰7<]0:Y0b &JP;afu<)#o9c#(A2hT8uTs%aQcDj"Xv4t: pHjۏ=Τ$ ~ aCFz^5s ck4┰_#G*-e=1=ۜHFWn9|6 x.$ohn}k&:lR&$کw42ln&he~1cCpC, v\5`cy|$$U^G'vz_!B,Z-\($yzwxnktKH?*-/}c;z7E5TXMǡ:zR7n쾯'B.)d쩙Rk} L2?9x*S+_Պpz,EOƑ+q2Un MOZ#Cx0G<ޯװ]18srxX +ˏ^K;C ^iK +38pQ#+ DZ/<^ixMןxmu |n>^iI^F(\SY 35ot^=NuO鞾] z>t~!^2@L:~FF2ֵתu2u<5< e9^lc?:j\shQ w'yV!yӪԧ( +8TjGK^M94pz9ϣr_T\{G>+=]\a>:v{q2V2oXAw3?Cs"I!M{'Ir]nYu'(c\\o4)r/{J'=Sl\A .U%T7?Qt\_Kxv62?[밠8;!͚1Y޷&q+vt.ޚ~f7=~,hIsו"S a02?34;5.U7|>>޵JnpM5~nŽLѶt謶oAo-\fydwqWcT(Wkm=ebE.@(qƩqA5֚Pt\ovg[A}q`VIƦm-$A2 ?d><6([ˠ-Y+ܪ?&gHjqN+#&^̤ 1[3+I)puЅ˫J\$HkR~e\#Gl/iuGNziTܜeC]Zi'R?ZBj'B_mېr:u*uYrط77۝t%kɀB6 +0hW-b K9k GBȘ~JeiPzҽfR**k>9 Xz Bs1Ǹ퐇~tL}C'-+n\: 2h1SKr%ؼtRǥt&Kex|[I-M;X41 xɰΗ2(WMz[{I8i& ͦ^Ӏl_¤ё +^B9|@g&0. 9V{Zd=U CJA*vM=&v;V>BgĤͲ tPdԱɁB;,RL:( nū̸LzX3飊8L:K ՙ t ~Yo v +D +]+ehIW?z5 +tH7klTNqV4(-L!+e߽-d%<{;a]VhkZ2ǩW]YU0i#KyHQG3@[&Flyp_hɈ4)vĆnn=s&~'+8Ci}щr3j3V7,m#lOyFljtZ{ W@~o־!#bsRf`@sΧxuM/ZCA[38_΋Fc39?T@bA +YpzhmM"r0X8g!24[x#|OQ͉؟vɏ=Aӹ;U j5(*Q1Y8&^a6A:c@xMacL"uX6Avh. ʄ O@ؼ hluW6nF[c5 HI&HRFyۯQ--'4 +Ϥ3urB*V A9-GӔ*a*ۅ #5jbe«V6c ̘ F뙤sqO3{* ԋonI,O׸I7V4p^;z$($S5LG;gF5svD!sx)WB>m֧2֣/iJ7Bdx$"ʒ4;ƼHoZtNcBA2.nQe*Ţ#a$Dji+6tw +ݨ!`- ƯUjqͣfb׻%PZƃ7h0){¿W>#R%q5uSv[a$U"Alqqd 3k,:y% szf~hcħ`0!WωY ~JJ&Cd֝O V6͗[ge@EҾ_dy28&IRtC# )B|AiY.E*p-UmX!l:k͜K ܻHe`[:CMDs3l˫ӑUX'(;يvzL z]\C-u֨~fOzktWȥ 쀈|$Ddg1o"G6|#-xݻ YV? 푇?O +m9QU=)BCOY<O=4_Ką.C pD0O+ ԍ`2!$Mu0+r: :Z.oz[g3([;PK35Xdf,3ATt"vLqW`PJGk4Pgy}vseP& 9w?ZnT?580=2(W}ShV^܂E#w(W蜶lF X}g"K)Eq$c7<*҄;ahJoO]8HE|Z" 0l:vCgQxR76#OSTT̴E>ԍm"չ!6i쐼_'PZF+f*_=E>ϜGTH"˼aB!P įp 9Iaԅ >;X*Ypsؙʕq^*T@t"ʠL;F ʬ{p ,& ŞVZYWƒ_G #APKJ# #傞+;9wf@L`ߙ*]#UEH{v5Eu23Hf]s sV'f%k E[GZB`^%<ˋdCS؃QzISC](냢G$)ZdTΑi9BߢF5Kk)(LJâ GNm5mDiH 4'#+ʹX fo?F|˰&%{>^&ZO2 Bj}VN2G墝ɴ (9c:!2!xR30v&M`2 $=gaG%j`Zrx# TY1iTZP;6xgR筺 y1W1t(kQ`bVCޔ6_}8"gT(pΛ ^D X\FtX0>]\Nوy㒳^ b&/QZ[dl W"`&6Jde^bsfFCIƐ#!mp!g(0b Mx=ۖJ!OW`YfP𲩱 4O5jst!Y"`PsɥlprV"T+v+HAw|r+V%@A6(% F' + p'gW.O"sQ*`TDnV!%\|y^Y0ճ X+B Zs>K5N]\Tr͂ᛊT}sq!ټ Duɨʅ^< }D r>/ExtGState<>>>/Subtype/Form>>stream +/CS0 CS 0.725 0.725 0.725 SCN +0.106 w 10 M 0 j 0 J []0 d +/Perceptual ri +/GS0 gs +q 1 0 0 1 92.5943 12.5728 cm +0 0 m +-57.189 0 l +-69.799 0 -80.022 10.223 -80.022 22.833 c +-80.022 80.022 l +-80.022 92.632 -69.799 102.854 -57.189 102.854 c +0 102.854 l +12.61 102.854 22.833 92.632 22.833 80.022 c +22.833 22.833 l +22.833 10.223 12.61 0 0 0 c +h +S +Q + +endstream endobj 109 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 107.549 m +40.102 107.549 20.659 88.013 20.659 64 c +20.659 39.987 40.102 20.451 64 20.451 c +87.898 20.451 107.34 39.987 107.34 64 c +107.34 88.013 87.898 107.549 64 107.549 c +64 107.196 m +87.704 107.196 106.988 87.818 106.988 64 c +106.988 40.182 87.704 20.804 64 20.804 c +40.296 20.804 21.012 40.182 21.012 64 c +21.012 87.818 40.296 107.196 64 107.196 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974426 -87.0974426 -0 63.9997368 107.5486832 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 105 0 obj <>stream +HMA?i$fB^֛Wgzl}ͭ>K`w]z΃Zv-m} K;^dwzZ_jOw:?c=O/X,%?%f};A֗i+)ǿXPz@''< yS@'< Ou +@: OyS@'<) Oy +@': NyS@P<) Ou +S@:) OuS@P':)NuS@P:) Ou +@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:}p j@EAg!LԚ9U+hO~oLP:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:}Wv:)Nu +S@ @ Mu +S@@[S@PؘP:=hؕPP'PP' n @Q@H`3 +{ Ľ66r؄(@;x'l$Ľ(@+;",$ + +@: $# @98 ,$PRN@+9% ,$" @K83,$p' ;= Hή@u=]n$p;W > D5psH&50nz_6=o_GDM/7?r闤LdL4L~֦}5_Q4LmdzMn #i}_\pGz;S1=Թ{s\f74=ɘ~?PpH~ +endstream endobj 84 0 obj [/Indexed 41 0 R 1 116 0 R] endobj 115 0 obj <>/Filter/FlateDecode/Height 502/Intent/Perceptual/Length 10070/Name/X/Subtype/Image/Type/XObject/Width 514>>stream +H엉BIguhPi]uuvv_g3ϣئj2ޠ2ߊƥ4PuyہRfWunkFvnF)j4\ݦz6opUҵ$Ly{4}f#y +6?Oۘn;o|[@|}4/PPpa3cp!G?j" B <gu[/O8ғUǁP E d~c~<T(B3P?Y}A8 A@^gyV3?8` +"nI;~}Yi` - $~|Y(Zj ` Xr Q>y/s,V%jAh  +A@>ySI֦SG b +ĀD!`O{{vޙ.z :,Q@At07~~>zϾӃ l1 +>, +& ;}67PիVrA@ +<@CCד&iQo")p@~LF p8gzq}ڝ~o/g(F `P8&,*O??>O΋{FyO!M@.U0 __~}4gP}+}9@ BC`I ` P??޳$GFH` 0 &4UPo $ +?Y}4gOPNgS.L0@9 b6r @@yY{r^ :o P ]U@ ho>zk!t)>lA@  @5xpTWW=#H 8  e@@] 5?>O֫T͐^%@  b jh 4?h>Y_>6Fŗ@` p1``$Pp_GyzOύ~'Ł@ 0 +8 fUAu P ,[~uWׯ4C{PQXpbp O ƍ@- `g~uTA(P"xD1q N]Ph[5M +QQ7)3{@@0Ɖ@@>xP>|t*Nςb0 8؄T + WETHBA `pH ]8vr+mPb?woi +i` $ U54bFJ@.zW q`p0 {@@ ow +Q`  f@&!@g@Q"G'Ph?|nb3U 1G45j +g6 Owvqp8!5@,x + ẀTjcE60/~! 5@Mc  :6 Ln ??n0"l +D+ `u؀0ph})!p &5M7< Or E  ?w0H`pQ@7A%#3`vnق`ߣNHAnރ S`#   `_aݾԪ<W h T"X\h 7L87ZXZ IX9! h M`f +$ g"&$kt>7!+ˋZz "v +DV]I@N +~U1b@ Fs@`M:@@@ݯ< +3GWB#U+j\_\F( $8h +=0\#4Ni_Vk- y w&iao\ [t =0hF@j +pc!G yN$3Ў *"נLt 7x,p ?L dx#S`=`#@w>( KQ"@2# #'o6+9{`^*ك03; #SE +|f: X1aɎW@֠N !?%3; pF2ƠA"Nnr;_(E@NH<"/g`T5S@{a@61u`G@`T!==B`BK ]z ;@;#`OB;X^M3;; u)q C NAŕ6]8뀺k +!{\Yw^KPfNt ! #(5P[M{B\"! vD0(PP|1@[0ށ(MI|1&%@OG\Y]"f  @: ~j ;pO(0vN}ox܎"ez <w_A p G/:1^1`/A逺_hڕ{;Cx=V@1ʆ/ <@nF TG'P"`\BlfG5CSp +R|N#itKӣ}ނH|R ܁G1>GI|B؂UI #;~^,0~!pYBڂ@%;p5) tz5r@GJ@w%Ƭ(h Vpw%%;P#0^yTBπG8K )%[Pj@9W7' s p Qv`= Sϥ<~@? ++S~FnASt lS s2fn6 i) P8:7" /<螜K7i`g܂eU8?; PJ`Ԁ}j V΀_qj xp +CقfS?!N^<~}Q !\ ^p`L =6-(<پ 8{#>?3}^@􇀙_>ϼf +f 3 Ap/13)XJLɗNAOxx +`L {8,5 xS^ٶSp\@p +Lħ7=yn VF@|줆 3Y{27Vcw NE;C} 7?h +^!pMj106 |?8<9K>p +&+04)Cn{2cQ9>Scp.>[1B3$.cp:_SE1pM9z\`[.F]s | s1,% A_@1)`l <K #SVYZF_(`"`Nͭrmgw}xQ NA+G/`sm%%+c0^ڪ{ǧI)q {͝j +X0B%ݝZyks=:aph<' ӹL@n?KDg"` +81;.p{{*`)" _,<-pyn$o˫J2/OOFUZ_f%`mvl3HV^.m CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=CzP!@=ް엇Z"IguGG QrN&:[Qt?Cy"}/Vjv?x?>$b?>Fx߻r1wJ"gB;[k?WWWV$H(H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H Ѓ@=H,X"u+k $ŋNQ-rT<89W7=${ăN. B +jAM,{חfZ*d3xp藀' pIxx KC+#$/(n($`Q  m `;Mu4B0DF;'?XE'P)i,kDLP :HE@[p# ؜r8NNd:/UMBA 趛J1NX*?,v]7$`Q" \u I@&`e + +N$O !g>>:K' +5F@,;j + /F@Q+sD' %e 1"EX5ݫB$ XV4TtZjˤ# 55IZI@,)Ow=2[uI@8gLP +(8>%P*d3x4|FEp/-X' SJz wIfRgh4 ~d&K hb  LJnY1H }y +o9AH2" "F_:JF3`sp8 -b Vc`X.?5b + @.XBt P"ijSY_W ҀpDg=|@EVA!#ejS`M/NCdDXlƶ: Ep:lQ<`**HE`xk@j)SOOT@ E]L\$U0W"нXn`DRD  (H 89:1jo28tDDD`ѱNقRDT>4TAG±x2-h{k`iq-^MZDΉ̬^"@k =O{PՀtAD`QQKlAFȹe ,<4-8h8{P=b26<)-H5 i4"@k@@te9!@RfՀOj:{Z "<pM<^K@Հu=(k@~^_h5Kg!_t k #,& =\&@, +< XP0P'dI%Q{ѸxI'@x`:AJc J-LlЎ" '`(NP'`-8̗h[GMD`q:ujeθ.k`(k`9cjC\&8pk@`<5`=N@\_huh#y2+x~T'O0#2ط{O x&'眀,91v<%N@UX;l +*\.h:D=z:c%zP 5rD SPzXG@$92?R@%950:G` =@U`ORX$`ƖaE^ /:@-450 AM=%<@N@c^G@I*%vHh*!&J%OAP'@sAu T=T@ D x $OqP2􀘄9*z8lr<ήXa&l6(2/]P puY{!r68## +pt]DOxyHt T<^G@ARlbj 6`w>Ly== lP 7lk +`@-P>p!@sT47z@x*z@ 7Ȁx %. ;i`p'@KL^ dl0@1pv~-}TPx"@u!2#PI 8apx +Ax'! |%{ /f~LIؠ&{?w@O: 0[; +AI30LKI  $z!{A h >|yX0B #hU7` >95Unp~{@ ߄vxH(W\_]vFbfytIll\KT.0 @ Tyw?;|2hY܁< _,WjRU 4 Wxמ_{(%6C0@mnBl'iy82 0)Aw?kꀕR!<: EO3"@ @*2ҩ @pķi/:T +̤^mV'!'R* &Q @bǏ +J"<A#prz$M@6A@``* 'nED&c`! VH@K PPHܪ5ӳGvgw nuR .kl܀CXCk(6j [AHLg~]_p  +p PQ } +M+| MU@="n{Dh3:2o +l}Fl] +=Z_<VE@ iDh1~8 v¯{X`h|RmA5ރ| **I =H*4?`/+n/ FM׀} +޾98E "d240Gߤg;,7K  +1`@5{@E%Ѐ e>./)5}gm^*lw-)9AnՀ} +1fPɆF {O?`_{` خ +<oDp|vPQR8MOWA@@ (T:Gw/?}'o +PU-k>s::I` Z`PP%f8$G{ٷ?؅#kzdx +y@(,'8odO-?%7)msҁ(]hl=OV 2O +V 7 X@ ݆f3'zc7<Dk`ʁ ,p @<4/$Ie$@Mm +D h4A2xA??T5 s@E lhLJG|G_(6P VA逊%q`02~y_D @T +2X.A<0F|; ~^Ts 0T $@т[z̄Wat{}~o\@́r QoX`*0/[I'}~u{#t x{%]@ `&< üXN*ql7~AJ|yF|N 7~2aKO8e&Ѕ,-5嘜Gp>yS `@C9 .\ ݆S_7%^t /$@6O;?_"؁Jn4]\rI5<>_gp$ {.(|o>/#d@sgb/owX@ *9_Njz{!L:PW!륧WGL90 X5ʗm% E`~!GjD ԀD?O?3p I, uOQ p:i ;LI \(Bi}?KPZp2eB3A ??`JM`A.„`X+?ZiPsǐΧj‚ 8d5DFL?:}ʌ$BsĶm(l̍gg0s#-s̙{zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzZ +endstream endobj 41 0 obj [/ICCBased 117 0 R] endobj 116 0 obj <>stream + +endstream endobj 117 0 obj <>stream +HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  + 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= +x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 +N')].uJr + wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km +endstream endobj 112 0 obj <> endobj 114 0 obj <> endobj 118 0 obj <> endobj 119 0 obj <> endobj 113 0 obj <> endobj 120 0 obj <> endobj 121 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974426 -87.0974426 -0 63.9997368 107.5486832 cm +BX /Sh0 sh EX Q + +endstream endobj 122 0 obj <> endobj 123 0 obj <> endobj 124 0 obj <> endobj 125 0 obj <> endobj 42 0 obj <> endobj 111 0 obj <> endobj 91 0 obj <> endobj 126 0 obj <> endobj 127 0 obj <> endobj 29 0 obj <> endobj 30 0 obj <> endobj 31 0 obj <> endobj 32 0 obj <> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 36 0 obj <> endobj 142 0 obj [/View/Design] endobj 143 0 obj <>>> endobj 140 0 obj [/View/Design] endobj 141 0 obj <>>> endobj 138 0 obj [/View/Design] endobj 139 0 obj <>>> endobj 136 0 obj [/View/Design] endobj 137 0 obj <>>> endobj 134 0 obj [/View/Design] endobj 135 0 obj <>>> endobj 132 0 obj [/View/Design] endobj 133 0 obj <>>> endobj 130 0 obj [/View/Design] endobj 131 0 obj <>>> endobj 128 0 obj [/View/Design] endobj 129 0 obj <>>> endobj 88 0 obj <> endobj 89 0 obj <> endobj 90 0 obj <> endobj 110 0 obj [/ICCBased 117 0 R] endobj 82 0 obj <>stream +HWn7WV\#@P (EN?d79H뱋WsV>>|¿S۲m(O??_z};}3귯`wFslvb3:2&Q^{*Xi<KINeڱ+|v:?n'ۓX]Rs:c:Me i| ,`:o+w;B셩u;aXxap֍o౮=\-R}cәw_T1&6:ѻ/t`jz{Tfz5Ɖ-Lh4 +F2>zUtɱ!kq0"#nHodadV(]6ny3邞 +Np), E A+^u)l@@ "%$|i4-ίVVNoQ6ĥ A#uu'xLlmlyNJX^wOa._ƹ6PwOupfÀEAGB}X+&dO>, +-`1o6hi1v wrɽtלk/:׳HK{;,қ,dPJRHG@-F3b Rl;:Q$g0xF%3;]Ȋ2(f0$$cзЭrp[>%GXwE=RbhNPh0%ea.fqbzQ#S/g"C_D(f$a>\A@+OЊD +Mp` r!R;;al, V9wr(0dpvXp8%5> endobj 93 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 20.434 m +40.092 20.434 20.642 39.978 20.642 64 c +20.642 88.022 40.092 107.566 64 107.566 c +87.907 107.566 107.357 88.022 107.357 64 c +107.357 39.978 87.907 20.434 64 20.434 c +64 109.038 m +39.284 109.038 19.177 88.834 19.177 64 c +19.177 39.166 39.284 18.962 64 18.962 c +88.716 18.962 108.823 39.166 108.823 64 c +108.823 88.834 88.716 109.038 64 109.038 c +W n +q +0 g +/Perceptual ri +/GS0 gs +45.7043571 0 0 -45.7043953 64.1565933 60.7857552 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 94 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 20.434 m +40.092 20.434 20.642 39.978 20.642 64 c +20.642 88.022 40.092 107.566 64 107.566 c +87.907 107.566 107.357 88.022 107.357 64 c +107.357 39.978 87.907 20.434 64 20.434 c +64 109.038 m +39.284 109.038 19.177 88.834 19.177 64 c +19.177 39.166 39.284 18.962 64 18.962 c +88.716 18.962 108.823 39.166 108.823 64 c +108.823 88.834 88.716 109.038 64 109.038 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -58.6434212 -58.6434212 -0 63.9998055 76.269043 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 95 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +84.937 98.025 m +84.945 97.989 84.951 97.953 84.959 97.917 c +85.094 97.888 85.099 97.919 84.937 98.025 c +73.146 72.454 m +72.595 62.609 l +79.097 55.526 l +72.595 48.443 l +76.893 43.761 l +72.595 39.079 l +73.146 29.315 l +54.853 29.315 l +54.853 72.454 l +47.58 76.176 42.621 84.219 42.621 93.463 c +42.621 95.01 42.838 96.44 43.056 97.985 c +43.845 98.133 56.605 103.481 y +56.499 102.903 71.501 102.903 71.395 103.481 c +83.722 98.177 84.959 97.917 v +85.272 96.398 85.378 94.987 85.378 93.463 c +85.378 84.219 80.309 76.176 73.146 72.454 c +43.062 98.025 m +43.06 98.012 43.058 97.998 43.056 97.985 c +43.005 97.975 43.004 97.987 43.062 98.025 c +W n +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 63.9400253 81.7712097 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 96 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 58.6104 96.2867 cm +0 0 m +1.997 0.363 4.084 0.545 6.081 0.545 c +8.169 0.636 10.166 0.363 12.163 0 c +12.253 -0.454 12.344 -0.908 12.344 -1.362 c +12.344 -4.812 9.53 -7.626 6.081 -7.626 c +2.632 -7.626 -0.182 -4.812 -0.182 -1.362 c +-0.182 -0.908 -0.091 -0.454 0 0 c +3.631 -52.836 -2.541 25.147 re +-15.956 -58.309 m +-23.026 -52.161 -27.502 -43.097 -27.502 -32.955 c +-27.502 -21.153 -21.33 -10.259 -11.164 -4.176 c +-11.346 -5.356 -11.527 -6.446 -11.527 -7.626 c +-11.527 -14.616 -7.443 -20.699 -1.452 -23.513 c +-1.452 -55.378 l +6.081 -62.913 l +13.615 -55.378 l +13.161 -48.751 l +16.701 -45.21 l +13.161 -41.67 l +18.516 -36.314 l +13.161 -30.957 l +13.615 -23.513 l +19.514 -20.699 23.69 -14.616 23.69 -7.626 c +23.69 -6.446 23.599 -5.356 23.327 -4.176 c +27.015 -6.403 30.178 -9.277 32.714 -12.603 c +26.582 -4.182 16.621 1.296 5.373 1.296 c +-13.263 1.296 -28.371 -13.739 -28.371 -32.287 c +-28.371 -42.782 -23.533 -52.151 -15.956 -58.309 c +f +Q + +endstream endobj 97 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 CS 0.058 0.058 0.052 SCN +0.035 w 10 M 0 j 0 J []0 d +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 20.4342 cm +0 0 m +-23.908 0 -43.358 19.544 -43.358 43.566 c +-43.358 67.588 -23.908 87.131 0 87.131 c +23.908 87.131 43.358 67.588 43.358 43.566 c +43.358 19.544 23.908 0 0 0 c +h +0 88.604 m +-24.716 88.604 -44.823 68.4 -44.823 43.566 c +-44.823 18.732 -24.716 -1.472 0 -1.472 c +24.716 -1.472 44.823 18.732 44.823 43.566 c +44.823 68.4 24.716 88.604 0 88.604 c +h +S +Q + +endstream endobj 98 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 CS 0.725 0.725 0.725 SCN +0.106 w 10 M 0 j 0 J []0 d +/Perceptual ri +/GS0 gs +q 1 0 0 1 92.5943 12.5728 cm +0 0 m +-57.189 0 l +-69.799 0 -80.021 10.223 -80.021 22.833 c +-80.021 80.022 l +-80.021 92.632 -69.799 102.854 -57.189 102.854 c +0 102.854 l +12.61 102.854 22.833 92.632 22.833 80.022 c +22.833 22.833 l +22.833 10.223 12.61 0 0 0 c +h +S +Q + +endstream endobj 99 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 107.549 m +40.102 107.549 20.659 88.013 20.659 64 c +20.659 39.987 40.102 20.451 64 20.451 c +87.898 20.451 107.341 39.987 107.341 64 c +107.341 88.013 87.898 107.549 64 107.549 c +64 107.196 m +87.704 107.196 106.988 87.818 106.988 64 c +106.988 40.182 87.704 20.804 64 20.804 c +40.296 20.804 21.012 40.182 21.012 64 c +21.012 87.818 40.296 107.196 64 107.196 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974426 -87.0974426 -0 63.9998055 107.5486679 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 100 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 107.483 m +40.023 107.483 20.517 87.977 20.517 64 c +20.517 40.023 40.023 20.517 64 20.517 c +87.977 20.517 107.483 40.023 107.483 64 c +107.483 87.977 87.977 107.483 64 107.483 c +W n +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.26651 71.6794434 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 101 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 103.84 m +42.042 103.84 24.177 85.968 24.177 64 c +24.177 42.032 42.042 24.16 64 24.16 c +85.958 24.16 103.822 42.032 103.822 64 c +103.822 85.968 85.958 103.84 64 103.84 c +64 20.5 m +40.014 20.5 20.5 40.014 20.5 64 c +20.5 87.986 40.014 107.5 64 107.5 c +87.986 107.5 107.5 87.986 107.5 64 c +107.5 40.014 87.986 20.5 64 20.5 c +W n +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3764191 64.8112564 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 102 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 103.6069 cm +0 0 m +-22.127 0 -40.129 -18.002 -40.129 -40.129 c +-40.129 -62.256 -22.127 -80.258 0 -80.258 c +22.127 -80.258 40.129 -62.256 40.129 -40.129 c +40.129 -18.002 22.127 0 0 0 c +f +Q + +endstream endobj 103 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 106.569 cm +0 0 m +-23.986 0 -43.5 -19.254 -43.5 -42.921 c +-43.5 -66.588 -23.986 -85.843 0 -85.843 c +23.986 -85.843 43.5 -66.588 43.5 -42.921 c +43.5 -19.254 23.986 0 0 0 c +0 -86.069 m +-23.986 -86.069 -43.5 -66.555 -43.5 -42.569 c +-43.5 -18.583 -23.986 0.931 0 0.931 c +23.986 0.931 43.5 -18.583 43.5 -42.569 c +43.5 -66.555 23.986 -86.069 0 -86.069 c +f +Q + +endstream endobj 104 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 100.528 m +57.456 100.528 52.133 95.204 52.133 88.661 c +52.133 82.117 57.456 76.794 64 76.794 c +70.543 76.794 75.867 82.117 75.867 88.661 c +75.867 95.204 70.543 100.528 64 100.528 c +W n +q +0 g +/Perceptual ri +/GS0 gs +16.5319595 0 0 -16.4530048 64.19561 91.2625198 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 167 0 obj <> endobj 168 0 obj <> endobj 169 0 obj <> endobj 170 0 obj <> endobj 166 0 obj <> endobj 165 0 obj <> endobj 162 0 obj <> endobj 164 0 obj <> endobj 171 0 obj <> endobj 172 0 obj <> endobj 173 0 obj <> endobj 174 0 obj <> endobj 163 0 obj <> endobj 175 0 obj <> endobj 176 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3764191 64.8112564 cm +BX /Sh0 sh EX Q + +endstream endobj 177 0 obj <> endobj 178 0 obj <> endobj 179 0 obj <> endobj 180 0 obj <> endobj 181 0 obj <> endobj 182 0 obj <> endobj 159 0 obj <> endobj 161 0 obj <> endobj 183 0 obj <> endobj 184 0 obj <> endobj 160 0 obj <> endobj 185 0 obj <> endobj 186 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.26651 71.6794434 cm +BX /Sh0 sh EX Q + +endstream endobj 187 0 obj <> endobj 188 0 obj <> endobj 189 0 obj <> endobj 190 0 obj <> endobj 157 0 obj <> endobj 158 0 obj <> endobj 191 0 obj <> endobj 192 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974426 -87.0974426 -0 63.9998055 107.5486679 cm +BX /Sh0 sh EX Q + +endstream endobj 193 0 obj <> endobj 156 0 obj <> endobj 155 0 obj <> endobj 154 0 obj <> endobj 151 0 obj <> endobj 153 0 obj <> endobj 194 0 obj <> endobj 195 0 obj <> endobj 196 0 obj <> endobj 152 0 obj <> endobj 197 0 obj <> endobj 198 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 63.9400253 81.7712097 cm +BX /Sh0 sh EX Q + +endstream endobj 199 0 obj <> endobj 200 0 obj <> endobj 201 0 obj <> endobj 202 0 obj <> endobj 148 0 obj <> endobj 150 0 obj <> endobj 203 0 obj <> endobj 204 0 obj <> endobj 149 0 obj <> endobj 205 0 obj <> endobj 206 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -58.6434212 -58.6434212 -0 63.9998055 76.269043 cm +BX /Sh0 sh EX Q + +endstream endobj 207 0 obj <> endobj 208 0 obj <> endobj 209 0 obj <> endobj 145 0 obj <> endobj 147 0 obj <> endobj 210 0 obj <> endobj 211 0 obj <> endobj 212 0 obj <> endobj 146 0 obj <> endobj 213 0 obj <> endobj 214 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +45.7043571 0 0 -45.7043953 64.1565933 60.7857552 cm +BX /Sh0 sh EX Q + +endstream endobj 215 0 obj <> endobj 216 0 obj <> endobj 217 0 obj <> endobj 218 0 obj <> endobj 219 0 obj <> endobj 49 0 obj <> endobj 50 0 obj <> endobj 92 0 obj <> endobj 222 0 obj <> endobj 223 0 obj <> endobj 224 0 obj <> endobj 221 0 obj <> endobj 225 0 obj <> endobj 220 0 obj <> endobj 226 0 obj <> endobj 85 0 obj <> endobj 86 0 obj <> endobj 46 0 obj <> endobj 47 0 obj <> endobj 48 0 obj <> endobj 87 0 obj <> endobj 43 0 obj <> endobj 44 0 obj <> endobj 45 0 obj <> endobj 144 0 obj [/ICCBased 117 0 R] endobj 80 0 obj <>stream +HlUn1 +Ckݢ z M580C@F#D/t Xi׺>`-/nt-:^~ h|k*zaui +endstream endobj 81 0 obj <> endobj 227 0 obj [/ICCBased 117 0 R] endobj 78 0 obj <>stream +HdTˎ0 +fDJkӢE ݤv90hCه/G:<#}xᝒ{JNHmM}9=;"g +g>?xs8|sx#G2$5tka?egq'/fR*5\Z&N(31@$euD5vqndpLF-}%N SUR1BIXKzBf*rfJ{QTJ^б}@f>{mԼi &~.V8Rs>S )F EWk5dq Ҽc8`- yQ_7]yoi͡Y!(s58&v_8v237ujcMiv i(dU&:;^(ߘ"hJ #\ \p_m3㱻gx>,[S) j= +endstream endobj 79 0 obj <> endobj 228 0 obj [/ICCBased 117 0 R] endobj 76 0 obj <>stream +HlVێ6 }WERl>M> {(Yw&CQ巧pÇOaAGRz$#I?^÷5[)+??^r-?52f חi/RM J% t[YuF)+J*\2 +b&$,g̤&*-O; \i[v,\O]?/'kk Q܎L!^sXOd$HDwc-ۂ0KmA!~jۄC)2<:$ln2 w%Mn$6l!aۑRX:7V5F\dRGH<S{&E +yfp,U ọ0:Fz8"JȶBwW #Men o; (c})*"|۱!P{."ĩW߆L;6EfE Cވ=zAj(HT7uZjzj9&ii.\J@_vBBG2rr7 3x9@ҡVqXt5jOާ>*23Xm< ͈>0eP蜍R0~܍ZTKho={ +3t@'=SsfxL%4>{zL#sPy鵀I)JmжևjLφf#XAJmW{wE@0 LR+\ brG9e '6uÿeBgɇy&E/TN{!fX&pczzhos@fsQd{c#)."LC׶ mήO}("˙Yt˂ji wfm XQUS)#H)ass +H"1DyؚFe8Du Qn%.RـLg?Ο5PnIlj~3JLj-F_Q47.W=~GR9,1 +endstream endobj 77 0 obj <> endobj 229 0 obj [/ICCBased 117 0 R] endobj 74 0 obj <>stream +HlTˎ0 +E}mZh=\bE7iCb'E[3cHQhx8DL=T=gj8} 4^(pmT憯O?^ϰuqrXXR YC] 6=~7NB?w"WgܫKܴcո㞖%F7)dP% ((.sIk4K)vyˊl~tcMyܕKH$ڄ!p,[$.RL4*hI7j`+'{qp( %=dYOj{S,*)&ԆN`"DB,@NB#{ ϝ15@[Mj>iD jLucA#V9Nnkm3p}Un5NqZkr'!7&n*Jǀ f36 i栲A{Sp_ֶ61&goQtmL*fS +b' .ꈩMSB{c}Wsr;2 +endstream endobj 75 0 obj <> endobj 230 0 obj [/ICCBased 117 0 R] endobj 59 0 obj <>stream +HWێ7 },.٤}i.Ry-E8i7P 6<Cj|>;Y>|ǡZU| +*VŦ{aK&s;|b:.]Xd|i2.%k=9|l\ͽONμZ_ɌndόSx6ջx:@_=E^]8nBxD +9%lYb):)5td%dbLn,کEnWq4EޭSٍkEg<]8դ( W+ Ygb]DQUD?.TX[m%F[<6%.!Ygg<M/*fG bgY6h3ȚM7eR 8ih#oE^gӓaD*yNyM [X땰gL&D +nsR3W PΏjOj1^Qudӛz8$e/!\R`@|[>+@XXzTIlȺYI UP0{6YS*d=WtLSƀMU;GOq/*命Gxp/MV5Q"q(m;VM iH2AIp ZGw]1@ tʮzb]qY\>OnɝYY<(oSeq BkHQ%i p K (V# Z=Ɯgl-HD)Y3X=``^ňAQ`<+0^&Ar>ʄ׆I3GH ʕ"IV16"'hsqU.k"9_&JA6(\;n#o,F+!X$D[D];dlKmWv՟;:#Mя%3_0xMkklprqd' C9 +GɹC OC ~/+YmFn~4|XiI +endstream endobj 60 0 obj <> endobj 52 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 124.876 m +30.432 124.876 3.124 97.567 3.124 64 c +3.124 30.433 30.432 3.124 64 3.124 c +97.567 3.124 124.876 30.433 124.876 64 c +124.876 97.567 97.567 124.876 64 124.876 c +W n +q +0 g +/Perceptual ri +/GS0 gs +73.347496 0 0 -72.9972 60.1731949 74.751236 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 53 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 119.776 m +33.258 119.776 8.248 94.755 8.248 64 c +8.248 33.245 33.258 8.224 64 8.224 c +94.741 8.224 119.751 33.245 119.751 64 c +119.751 94.755 94.741 119.776 64 119.776 c +64 3.1 m +30.419 3.1 3.1 30.42 3.1 64 c +3.1 97.58 30.419 124.9 64 124.9 c +97.58 124.9 124.9 97.58 124.9 64 c +124.9 30.42 97.58 3.1 64 3.1 c +W n +q +0 g +/Perceptual ri +/GS0 gs +61.0147362 0 0 -60.7233353 63.1270676 65.1357803 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 69 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.988 0.988 0.988 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 81.2522 80.7289 cm +0 0 m +-6.657 -3.252 -10.749 -10.159 -10.749 -17.568 c +-10.749 -19.492 l +-6.024 -18.851 -1.588 -17.668 2.415 -16.045 c +2.441 -13.912 3.539 -11.914 5.357 -10.792 c +8.171 -9.055 10.967 -8.89 13.279 -9.71 c +16.664 -6.923 19.279 -3.69 20.904 -0.16 c +15.08 3.095 7.568 3.696 0 0 c +f +Q + +endstream endobj 54 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 119.4496 cm +0 0 m +-30.978 0 -56.181 -25.203 -56.181 -56.181 c +-56.181 -87.159 -30.978 -112.362 0 -112.362 c +30.978 -112.362 56.181 -87.159 56.181 -56.181 c +56.181 -25.203 30.978 0 0 0 c +f +Q + +endstream endobj 55 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 64 123.5966 cm +0 0 m +-33.58 0 -60.9 -26.956 -60.9 -60.09 c +-60.9 -93.223 -33.58 -120.18 0 -120.18 c +33.58 -120.18 60.9 -93.223 60.9 -60.09 c +60.9 -26.956 33.58 0 0 0 c +-0 -120.497 m +-33.581 -120.497 -60.9 -93.177 -60.9 -59.597 c +-60.9 -26.016 -33.581 1.303 -0 1.303 c +33.581 1.303 60.9 -26.016 60.9 -59.597 c +60.9 -93.177 33.581 -120.497 -0 -120.497 c +f +Q + +endstream endobj 70 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 115.139 m +54.839 115.139 47.386 107.686 47.386 98.525 c +47.386 89.364 54.839 81.912 64 81.912 c +73.161 81.912 80.613 89.364 80.613 98.525 c +80.613 107.686 73.161 115.139 64 115.139 c +W n +q +0 g +/Perceptual ri +/GS0 gs +23.144743 0 0 -23.0342064 64.2739258 102.1675491 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 57 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +93.313 111.636 m +93.323 111.584 93.332 111.534 93.342 111.483 c +93.532 111.444 93.538 111.487 93.313 111.636 c +76.805 75.835 m +76.033 62.053 l +85.136 52.137 l +76.033 42.22 l +82.05 35.665 l +76.033 29.11 l +76.805 15.441 l +51.195 15.441 l +51.195 75.835 l +41.012 81.046 34.07 92.307 34.07 105.249 c +34.07 107.414 34.373 109.416 34.679 111.579 c +35.784 111.787 53.646 119.273 y +53.498 118.464 74.502 118.464 74.353 119.273 c +91.611 111.848 93.342 111.483 v +93.78 109.357 93.93 107.382 93.93 105.249 c +93.93 92.307 86.833 81.046 76.805 75.835 c +34.687 111.636 m +34.684 111.616 34.682 111.598 34.679 111.579 c +34.607 111.565 34.605 111.582 34.687 111.636 c +W n +q +0 g +/Perceptual ri +/GS0 gs +32.4143639 0 0 -53.8184166 63.9161148 88.879715 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 58 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 56.4546 109.2014 cm +0 0 m +2.796 0.508 5.718 0.763 8.514 0.763 c +11.436 0.89 14.232 0.508 17.028 0 c +17.155 -0.636 17.282 -1.271 17.282 -1.906 c +17.282 -6.736 13.342 -10.676 8.514 -10.676 c +3.685 -10.676 -0.254 -6.736 -0.254 -1.906 c +-0.254 -1.271 -0.127 -0.636 0 0 c +5.083 -73.971 -3.558 35.206 re +-22.339 -81.633 m +-32.236 -73.025 -38.503 -60.336 -38.503 -46.136 c +-38.503 -29.614 -29.862 -14.362 -15.63 -5.846 c +-15.884 -7.499 -16.138 -9.024 -16.138 -10.676 c +-16.138 -20.463 -10.42 -28.978 -2.033 -32.918 c +-2.033 -77.53 l +8.514 -88.079 l +19.061 -77.53 l +18.425 -68.251 l +23.381 -63.295 l +18.425 -58.338 l +25.923 -50.839 l +18.425 -43.34 l +19.061 -32.918 l +27.32 -28.978 33.166 -20.463 33.166 -10.676 c +33.166 -9.024 33.039 -7.499 32.657 -5.846 c +37.822 -8.964 42.25 -12.988 45.799 -17.644 c +37.215 -5.855 23.27 1.815 7.523 1.815 c +-18.568 1.815 -39.719 -19.235 -39.719 -45.201 c +-39.719 -59.894 -32.946 -73.012 -22.339 -81.633 c +f +Q + +endstream endobj 71 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.22 0.22 0.22 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 92.2746 69.1907 cm +0 0 m +-0.002 0 l +h +6.394 -11.422 m +6.394 -6.345 l +6.439 -2.933 3.489 0.029 0.057 -0.003 c +-0.037 -0.001 l +-1.657 -0.047 -3.3 -0.628 -4.594 -1.595 c +-4.936 -1.916 l +-5.083 -2.061 -5.162 -2.169 -5.244 -2.274 c +-5.365 -2.419 l +-5.444 -2.525 -5.565 -2.735 -5.655 -2.887 c +-5.983 -3.5 -6.163 -4.2 -6.171 -4.907 c +-6.176 -5.032 l +-6.176 -11.422 l +h +-22.368 -63.529 m +-22.837 -63.533 -23.414 -63.476 -23.939 -63.39 c +-28.319 -62.725 -31.774 -58.615 -31.703 -54.195 c +-31.703 -54.195 -31.703 -22.834 y +-31.703 -17.807 -28.323 -13.358 -23.6 -11.852 c +-23.6 -6.431 l +-23.6 1.937 -18.868 9.656 -11.547 13.232 c +-5.654 16.152 1.364 16.917 7.613 14.767 c +8.519 14.454 9.426 14.09 10.288 13.677 c +18.442 9.77 23.692 1.408 23.674 -7.624 c +23.674 -7.624 23.674 -11.854 y +26.69 -12.804 29.348 -15.126 30.685 -18.003 c +31.049 -18.781 31.341 -19.649 31.522 -20.482 c +31.582 -20.764 31.626 -21.036 31.663 -21.31 c +31.748 -21.833 31.771 -22.305 31.777 -22.834 c +31.777 -22.834 31.777 -54.195 y +31.777 -59.342 27.59 -63.529 22.443 -63.529 c +h +f +Q + +endstream endobj 72 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 118.8371 52.9832 cm +0 0 m +0.109 -6.655 0.375 -27.216 -0.111 -34.362 c +-0.38 -38.325 -3.337 -41.347 -7.304 -41.555 c +-17.684 -42.099 -45.945 -41.765 -54.571 -41.648 c +-53.02 -42.963 -51.528 -44.058 -49.121 -44.058 c +-4.987 -44.058 l +-1.015 -44.058 2.206 -40.838 2.206 -36.865 c +2.206 -5.978 l +2.206 -4.02 1.546 -2.064 0 0 c +f +Q + +endstream endobj 73 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.22 0.22 0.22 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 70.4654 58.589 cm +0 0 m +0 -2.344 l +13.198 -2.344 l +13.198 1.093 l +h +f +Q +q 1 0 0 1 100.0429 61.0422 cm +0 0 m +0 -4.797 l +13.02 -4.797 l +13.02 0.943 l +13.02 0.989 13.016 1.035 13.016 1.081 c +h +f +Q + +endstream endobj 246 0 obj <> endobj 245 0 obj <> endobj 244 0 obj <> endobj 243 0 obj <> endobj 241 0 obj <> endobj 242 0 obj <> endobj 247 0 obj <> endobj 248 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +32.4143639 0 0 -53.8184166 63.9161148 88.879715 cm +BX /Sh0 sh EX Q + +endstream endobj 249 0 obj <> endobj 239 0 obj <> endobj 240 0 obj <> endobj 250 0 obj <> endobj 251 0 obj <> endobj 238 0 obj <> endobj 237 0 obj <> endobj 236 0 obj <> endobj 234 0 obj <> endobj 235 0 obj <> endobj 252 0 obj <> endobj 253 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +61.0147362 0 0 -60.7233353 63.1270676 65.1357803 cm +BX /Sh0 sh EX Q + +endstream endobj 254 0 obj <> endobj 232 0 obj <> endobj 233 0 obj <> endobj 255 0 obj <> endobj 256 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +73.347496 0 0 -72.9972 60.1731949 74.751236 cm +BX /Sh0 sh EX Q + +endstream endobj 257 0 obj <> endobj 65 0 obj <> endobj 66 0 obj <> endobj 67 0 obj <> endobj 68 0 obj <> endobj 261 0 obj <> endobj 262 0 obj <> endobj 260 0 obj <> endobj 263 0 obj <> endobj 259 0 obj <> endobj 258 0 obj <> endobj 264 0 obj <> endobj 61 0 obj <> endobj 62 0 obj <> endobj 63 0 obj <> endobj 64 0 obj <> endobj 231 0 obj [/ICCBased 117 0 R] endobj 39 0 obj <>stream +HVn\7 }_0D-qҾ$hh^Q8h )bwxx<˽9|g}Ur*w*VkU6Gb7MpL޶d3ԏ6H2Bwl#LgrY{]̞qQ2Z!|{a? j"fA W.\]YzIbż~;B rΉkNȉd|~2>9]M>^o斞ټ_Ln?3ͪlG O1y'c ʋWyug=+Išr0߻)YN JXs YHjpw{ec4^>5Drch+,;t*.Mď Zp)>( NAꎠ5'xln3:loęr:mn;7wa: +endstream endobj 40 0 obj <> endobj 56 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 115.139 m +54.839 115.139 47.386 107.686 47.386 98.525 c +47.386 89.364 54.839 81.912 64 81.912 c +73.161 81.912 80.613 89.364 80.613 98.525 c +80.613 107.686 73.161 115.139 64 115.139 c +W n +q +0 g +/Perceptual ri +/GS0 gs +23.144743 0 0 -23.0342064 64.2739258 102.1675491 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 266 0 obj <> endobj 51 0 obj <> endobj 267 0 obj <> endobj 265 0 obj [/ICCBased 117 0 R] endobj 37 0 obj [36 0 R 35 0 R 34 0 R 33 0 R 32 0 R 31 0 R 30 0 R 29 0 R] endobj 268 0 obj <> endobj xref +0 269 +0000000004 65535 f +0000000016 00000 n +0000000245 00000 n +0000023840 00000 n +0000000000 00000 f +0000023940 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000029615 00000 n +0000000000 00000 f +0000029688 00000 n +0000029862 00000 n +0000032629 00000 n +0000098218 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000024596 00000 n +0000025365 00000 n +0000025822 00000 n +0000026279 00000 n +0000026736 00000 n +0000027193 00000 n +0000131674 00000 n +0000131761 00000 n +0000131837 00000 n +0000131931 00000 n +0000132018 00000 n +0000132106 00000 n +0000132187 00000 n +0000132264 00000 n +0000174039 00000 n +0000028043 00000 n +0000172126 00000 n +0000173074 00000 n +0000127117 00000 n +0000131150 00000 n +0000154049 00000 n +0000154173 00000 n +0000154296 00000 n +0000153550 00000 n +0000153674 00000 n +0000153799 00000 n +0000152070 00000 n +0000152214 00000 n +0000173729 00000 n +0000159514 00000 n +0000160024 00000 n +0000161250 00000 n +0000161724 00000 n +0000173137 00000 n +0000162881 00000 n +0000163871 00000 n +0000158163 00000 n +0000159451 00000 n +0000171595 00000 n +0000171718 00000 n +0000171841 00000 n +0000171966 00000 n +0000170224 00000 n +0000170376 00000 n +0000170528 00000 n +0000170680 00000 n +0000160675 00000 n +0000162353 00000 n +0000165085 00000 n +0000166403 00000 n +0000167007 00000 n +0000157413 00000 n +0000158063 00000 n +0000156155 00000 n +0000157313 00000 n +0000155467 00000 n +0000156055 00000 n +0000154456 00000 n +0000155367 00000 n +0000133664 00000 n +0000134774 00000 n +0000116760 00000 n +0000153310 00000 n +0000153437 00000 n +0000153924 00000 n +0000133278 00000 n +0000133390 00000 n +0000133504 00000 n +0000131327 00000 n +0000152366 00000 n +0000134837 00000 n +0000135537 00000 n +0000136238 00000 n +0000137213 00000 n +0000138418 00000 n +0000139090 00000 n +0000139644 00000 n +0000140348 00000 n +0000140869 00000 n +0000141530 00000 n +0000142003 00000 n +0000142633 00000 n +0000114941 00000 n +0000028645 00000 n +0000029551 00000 n +0000113686 00000 n +0000114241 00000 n +0000133627 00000 n +0000131263 00000 n +0000129868 00000 n +0000130265 00000 n +0000129932 00000 n +0000116804 00000 n +0000127153 00000 n +0000127209 00000 n +0000130077 00000 n +0000130174 00000 n +0000130382 00000 n +0000130437 00000 n +0000130751 00000 n +0000130829 00000 n +0000130978 00000 n +0000131075 00000 n +0000131471 00000 n +0000131568 00000 n +0000133160 00000 n +0000133192 00000 n +0000133042 00000 n +0000133074 00000 n +0000132924 00000 n +0000132956 00000 n +0000132806 00000 n +0000132838 00000 n +0000132688 00000 n +0000132720 00000 n +0000132570 00000 n +0000132602 00000 n +0000132452 00000 n +0000132484 00000 n +0000132334 00000 n +0000132366 00000 n +0000154419 00000 n +0000150478 00000 n +0000151055 00000 n +0000150542 00000 n +0000149274 00000 n +0000149671 00000 n +0000149338 00000 n +0000147790 00000 n +0000148358 00000 n +0000147854 00000 n +0000147726 00000 n +0000147662 00000 n +0000147598 00000 n +0000146970 00000 n +0000147034 00000 n +0000145600 00000 n +0000146059 00000 n +0000145664 00000 n +0000143718 00000 n +0000144484 00000 n +0000143782 00000 n +0000143654 00000 n +0000143590 00000 n +0000143156 00000 n +0000143220 00000 n +0000143373 00000 n +0000143470 00000 n +0000143935 00000 n +0000144106 00000 n +0000144233 00000 n +0000144357 00000 n +0000144601 00000 n +0000144656 00000 n +0000144966 00000 n +0000145044 00000 n +0000145201 00000 n +0000145372 00000 n +0000145447 00000 n +0000145525 00000 n +0000145817 00000 n +0000145938 00000 n +0000146176 00000 n +0000146231 00000 n +0000146539 00000 n +0000146617 00000 n +0000146774 00000 n +0000146895 00000 n +0000147151 00000 n +0000147206 00000 n +0000147520 00000 n +0000148007 00000 n +0000148128 00000 n +0000148237 00000 n +0000148475 00000 n +0000148530 00000 n +0000148840 00000 n +0000148918 00000 n +0000149075 00000 n +0000149196 00000 n +0000149483 00000 n +0000149580 00000 n +0000149788 00000 n +0000149843 00000 n +0000150154 00000 n +0000150232 00000 n +0000150381 00000 n +0000150695 00000 n +0000150843 00000 n +0000150949 00000 n +0000151172 00000 n +0000151227 00000 n +0000151537 00000 n +0000151615 00000 n +0000151772 00000 n +0000151920 00000 n +0000151995 00000 n +0000153089 00000 n +0000152872 00000 n +0000152518 00000 n +0000152639 00000 n +0000152757 00000 n +0000152969 00000 n +0000153186 00000 n +0000155430 00000 n +0000156118 00000 n +0000157376 00000 n +0000158126 00000 n +0000172089 00000 n +0000169605 00000 n +0000169669 00000 n +0000168981 00000 n +0000169045 00000 n +0000168917 00000 n +0000168853 00000 n +0000168789 00000 n +0000168354 00000 n +0000168418 00000 n +0000167731 00000 n +0000167795 00000 n +0000167667 00000 n +0000167603 00000 n +0000167539 00000 n +0000167475 00000 n +0000167912 00000 n +0000167967 00000 n +0000168276 00000 n +0000168571 00000 n +0000168668 00000 n +0000169162 00000 n +0000169217 00000 n +0000169527 00000 n +0000169786 00000 n +0000169841 00000 n +0000170146 00000 n +0000171379 00000 n +0000171258 00000 n +0000171040 00000 n +0000170832 00000 n +0000170929 00000 n +0000171137 00000 n +0000171476 00000 n +0000174002 00000 n +0000173665 00000 n +0000173881 00000 n +0000174113 00000 n +trailer +<]>> +startxref +174306 +%%EOF diff --git a/share/branding/keepassxc.ai b/share/branding/keepassxc.ai new file mode 100644 index 000000000..b1574e45b --- /dev/null +++ b/share/branding/keepassxc.ai @@ -0,0 +1,1872 @@ +%PDF-1.6 % +1 0 obj <>/OCGs[24 0 R 25 0 R 26 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + Adobe Illustrator 27.2 (Windows) + 2023-04-23T23:19:03+02:00 + 2023-04-23T23:19:03+02:00 + 2023-04-23T23:19:03+02:00 + + + + 256 + 84 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAVAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWmdF+0wHzOKtetF/Ov3jFXetF/Ov3jFXetF /Ov3jFXetF/Ov3jFW1ZW3Ugj2xVvFXYq7FVsssUMTyyuscUal5JHIVVVRUkk7AAYq881n8/fy40+ 7+pWl3Nrd7yK+hpUJudx4SVSJv8AYucbVDH8+dOCc28n+aFSlSx0+OgHjX18FhbTDy9+ef5b61Ot r+kjpl8xI+qakjWrAgVoZGrDU9hzrhVnwIIBBqD0OKuxV2KuxV2KuxV2KuxVB6vrOkaNYyX+rXkN hZRf3lxcSLGg8ByYjc9hirzHUf8AnJ78sbe7Npp36Q1yYdtNtS4JqBt6zQV69RtiqHb/AJyi8kQE G/0TX9OhP/HxdWUaRjcD9mZj38MVZ15Q/M/yH5v+Hy/rEF3cceTWhJiuAB1PoyhJKDuQKYqyjFXY q7FXYq7FXEgCp6YqpBufxHZey/1xVcCAKDYeGKsd81fmN5L8qhf07qsNpK1CluKyTkGvxCGMPJx2 68aYqxGH8/dPvIjNpPlTzFqduT8Fzb2QaJvcNzr+GC1bf/nIDy/ZvF+ndB13QoJTx+tX9kUiB/2D Ox+hcbVnHlvzh5a8y2n1vQ9RhvohTmIm+NCa0EiGjoTTowGFU3JB674q0H4kVPwnbftiqpiqV+Z/ M2keWdDuta1aX0rK0Xk1KF3Y7LHGCRydzsoxV5LBofmT8zUGveeJ30byYB6+n+XIpfTEkQHIT3cv wkim+9Pbj1IJV6Xoeg6Do2nLDoNjb2tuUDRrAoQPt8JZxu1f5jU4hXnml/m75nvfMEOjnQo1uZJx DLBykEib0bkSNuA3JpmFHVSMuGmgZTdUzzzV5Y8pa3YSDzFY21xbIp5XE4CtGvcrN8LR/MMMzTTe 89aPzT+UkqXdjPPr/wCXjGlxYSHnc2Ct0eFuhQHt9nsQD8WKvYtK1XT9W0631LTp1ubG7QS286fZ ZW+e4PiDuDscKorFXYq7FXYq7FWDfmr+aWn+RdLhCQnUfMOpN6OjaRFUvNKSFDMFq3AEjpuTsPZV 5/pn5VnV9S0/zD+dWr/XdZ1KYQ6R5ZEpS1iZ9xEqRmrso3YJ8I6sW64qzz8xNWf8uPy+u9V8paFa sti0Zeyii9KFImbi0rJDwJCVqfvOKsG/JT8+PN/5h+aZtIv9FtItNhtnmubu2Ev7s1Coreozr8ZN KdevgcVZH+Yn5P8A5WaxeWiyGPy15lvnb9FalYkW0kk8fxU4DjHI+9abOex2xVKfJ35i+bvJvme3 8h/mfIJTdnh5f80D+6uRXisczGnx7gVPxA/arUNir2nFXYq7FXYqhb+QKiKejuqn5E0xVdzxV5b5 08++Yda8wP5G8gsv6SQf7mtcb4obFD1VTQgy/q6farxCpn5K/K3yR5fvGeTjrXmcBZ73U78ie5Ls T+8VXLelyatCPi8WOKEZ+YvnfW/K31N7LT47m1uOSvcSlqK60olFpSo3FTmPqM5x1swyTMUx8i+Y tT8yaE9/qVklqHkaOFV5FZIwB8dGrtUkfRksGU5I2RSYS4hbFfMv5UeXLzU5NR8o3K+WvNtkA6zW JEcZ5bqJ7dfhKP3IG/fl0y5kjfy8/MXUNSvrjyt5qt107zdpygyxAj0rqOgPrQ0J8fiX6R3AKWfM agivXbFVaCT1IlfxFcVeQayv/KwvzYbSZf3nlXyXwku4a1juNSkB4hx3Ee60P8rD9rAVY1+avni4 1i/l0eyk46RaPwcL/u+VDuzeKK2yjp+14U1mq1HEeEcnDzZLNDk9e8m63b6z5bsb6FwzGJY7hR1W ZAFdSO2/4ZsMM+KILlQlYTgRxCQyBFEhFC9ByI8K5YyYj+aut2+meTb6J2H1jUENpbx13b1NnPyV Kn/byjUT4YFryyqLCPyk85yM48r6u3r2dypjsjL8QWoNYWr1Rh0H0d8xdLn34S04cnQp3+Xpl8lf mDf+Q3djoeqRvqfl3kSfTapM1uta9gzdf2a9WzYBynreFXYq7FXYqpXd1b2lrNd3LiK3t0aWaRui ogLMx+QGKvn3yFqNnqM/mP8APrzgrfU7UyweWrV6H0reI+kvpjp6js3pL/llz3rgV4ov5va3qX5r aZ53112kjs72OVbNCTHBahqNFCp6USvzO53xV92Wl3Z39lDd2sqXFndRrLBMhDJJHIvJWU9CGBwq ssNM03T4misLSG0idi7xwRrEpY9WIQAVPjir5i/5y986Wc+r6L5asZq3elF7y9dDvFJKFEKVG4cK pY+xXAqa/l9r1t+d/wCW+o+TPMsit5r0iMTadqTD941BxiuDTeqsfTm8VIPU7KvR/wAhfO2o+ZPJ 0ljrZb/Efl24fTNVD/bZotkkb3IHFj3ZScKvSsVdirsVQGq9If8AjKn/ABIYqw/82POM3lfyZdXl mC2p3TLZ6aoHIm4mqFIFDUqtWp3pTFWM2UFv+V/5fRW8XGbzFqJMlzO3xGS6cVkkY9WSKtB4/MnM fPm4I31a8k+EWln5N+ZDH5pvrfUJy8+roGE8hqXmiJYAk+Ku1PuzE0eX1m+rRhn6t+r288WXiwDK eoO4zZuW5nAXwAH0AYq+ePNvne7b8w7jWtHn4palbaBwapJHEKPUdCjNy+jfNVnzkZLj0cPJk9Vh lHn2L/EflKx8+aB/o/mHQf8ASonX7XCP/eiB/wCZQKmncVH7WbDHkEgJByoysW9G8reYrXzD5esN Zttor2FZClalH6OhNBujAqctZJ3Y/wC8sf8Aqj9WKvF/ysuZ7T8qta8zly2paxc3t80x+16rMYkq fZ15fTlOWfDEljI0CXmz2/amaHiddbI/y71fVtM8zWVvaTlLa+uIobuA0KOrNStD0YV2IzK0uUiY A6tuKZBe8aPq9tq2npfWocQyNIiiQANWKRom2BP7SGmbiMhIWHNBt85+ZdX1fW9WmutTleSRGZIo mHFYkDfYVBsvv3PfNJnymUt3AyTJO6DszNbXMVxCeM0LrJG3gyGoP3jKRKjbC3rH5mzxxX3kLzVH yRoNVt4mZPtGC9UNIvatUjIzoImwC7IG93ruTS7FXYq7FXnf/OQeryaX+T/mKaJuMtxDHaL13W6m SGQf8i3bFXj/AOfsp8u/kr5D8qWzenHdRxy3IU09Q20CM9Rts01xz+dMCvm/FXvX/OOX5q6h5bsP MKazc3N35Y0WwF7Hp8QSR43e5ih/c+oyUB9WpXmF79cVfQP53+ZdX8tfldrms6PP9W1O3WBLefir FfWuY4nKhgRUI7U8OuFXwTd3d1eXUt3dzPcXU7GSaeVi7u7GpZmapJPvgVnn5Ba9No35teXpUbjH eXH1CZagBluwYgDXwdlb5jFX0X5PC6N/zkt5x0uEhLTW9Mg1Mxiv9/GYlNfcmWVvpwq9oxV2KuxV L9X+zD/xkT/iQxV5V+ZPDU/zO8iaK/IwxzXGoSpX4Ga3QSR7V3p6bV9jgKlJPzYu5LrzKLep9Ozh RFXsGf8AeMfpBX7s1Gvnc67nD1EvVTBTG6OroSjoQyspoQRuCCOhGYgk0W9z/L3zjc3mj6Xb6tI9 xqF9JcxQTcVoVtVDH1CKb0brTfNzp83FEXzLnYp2BaW/nXrer2lhp9jZTvBb3/rreGMULKgSic+q g8zWnXI6zKYxFdWOeRA2eORwUoANs1BLhvU/yfuedvqemTDnAwWURncfECj/AHimbDs+d3FydOeY R/5GCe18s6ppUkhkj0nV7uygr2RODmnzaRjmyHJyg9TsP95I/wDVH6sKvGPyvia7/Je90lB/pWnS XltNH39SN/X4/SHAyjPEmEgwmLiWENbe2c4JOuTPyjb0806UadLqI/cwzI00v3kfezx/UHsPkFOH la2X/i26P33Upzd6Y+j5/eXOx8nlXn+6g1DzPcyQ2X1P0j6UnIFZJWU7yOvQV7e3X21GsyAzNCnD zSBkkEdozMFUVZjQAdycxLano/5oWym28i+Xg9LibWLIKaciEt19N3ptXj6oOdNAUAPJ2YFCnr2T S7FXYq7FXmn/ADkdp0l9+TmvrEC0luLe4AH8sVzGzk/JORxV5N/zkkh1v8rPy/8ANENZIREscj1r Rry2jko1O9bcg++BXzfirOvy9/5RX8wP+2LF/wB1C2xV9uefNWsNI8navqOoac+rWVvbObjTo4/V MyEcWVlII4UPxk9FqcKvzvvJoZ7yeaCBbWCWR3itkZmWNGYlUDOSxCjapNcCsy/JHSZdU/Njyvbx qWMV9HdtTstp/pBJ/wCRWKvpby+36U/5yh8yXMZLQaLosNmzg1HqymGTj0/yn28RhV7NirsVdiqX az/dxf8AGRP14q8q8+BLL81/I2qSNSOb63Z9OjvHwTf/ACmmwFUq/MixZPMskxHw3MUcin5D0/8A jTNJ2gKyX3hwtQPUxB7f2zDEmh6H5Ej4P5ZP8supH740GbXSHaPvl9zlYenxZF+Z2oRw+W3hex+u C5bgsjD93C3aQkbhv5adcyNZMRhuLbcxqLxpLfNFxOA9E/Ki0aOTULo7IFSMHsSSWP3UGbLs0byL k6YcyivyVuPrOia5fqKQ3+t3dzCfFHWIA/epzax5OWHqlh/vJF/qj9WFXldm3+Cvzb1HTbolNE85 t9d02dj8C39f30Vdl5Ozn70HfAVSjzj5WbSNSYxofqE5LW79hXcxn3X9Wc7rNOcc9vpLr82PhPkg fLMaR+YtOkchVW4jJYmgHxDKtNL95H3hjjPqD17y/p0umaRHaTsheNpXZkJ40klaQbkDs2dHhgYR o+f3uwhGhTxfUZbm9v57q5m+sTSuS0tagjoOPbjTpnNZshlIkuunIksl/L/ys97qKalOn+h2jckr +3KN1A9l6nMvs/TmcuI/SPvbcGOzfRH+Xm/xn+a0uuRVk0DynG9pZTbGOa+mBEjJ2PFW7eCHvm+H e5z1fCrsVdirsVQmsaVZ6vpN7pV6vO0v4JLa4XuY5UKNT6Dir5/8gaT+nPJvmb8jPM8gg13RGkOk zv8Atwl/WgmjrViqSEMf+K3A8cCvmfzD5e1fy9rN1o2r27WuoWblJomH3Mp/aVhurDYjFWd/kpoF 15lTzb5asJoItU1bSRHYrcP6au0d5BMwBoxNEQnYYq+pf+cgNevtD/KbXL3Tr02N+wggt5VZVc+t OiSLGTvy9Eufh3HUdMKvg7Ar6W/Ibyta/l75O1X80/NcZty9sU0m1kHGRoWoQVDft3D8Vj9t+jYq 9F/5x28uanB5e1Lzjracdb85XTajKD1W3JYwCh6A+ozj/JK4Ves4q7FXYqlut/3Mf/GRP14q8/8A zX8v3mseVTNpoJ1jSJo9R07gAXMkFSyr33QkgDqwGJVBtNaefPKFnrGn0+uIpLQ1qVkoBLCfeoqv j9OYOs05yQ2+oNObHxDzYPJasrFWWjA0IPUHOftwGfeR7B5bTTLpHQLYSXQlQk8/3yqFoACO3cjN 1oImUYnuJczALAPcs/M+7uGWys45isMgkeeBT9riV4Fu9Aa+1flh7TyERAB5rqZbAMHtNOnuZ47e CMyTSHiiDqTmmiDI0ObiAEmgy3zber5R8lrpFjWbXdWP1Wzij/vHnnojugG/wA0X3pnR6fD4cBH5 uwxw4RTLfJ2gr5e8sado4bk1pEBMwNQZXJklK7D4TIzU9syWxmNh/vJF/qj9WKpL578k6Z5w0GTT LwmKZT6tjeJ9uCdR8Ei+I7MO48DQhVgGlec5tMl/wb+ZsSwXoHC01h/95LyMbK/qkLxf/K29+LbZ XOAkKkLCCARRR2pfloz/AL7SLpHhcckjmPY7/C6gg/dmpy9lnnA/NxZabuX3GkfmDc6SmkSCMWwJ WSf1F5vH2RmrXj47VPfbJHHqTDg+208OSqa0/wDLu0s0N5rt5GtvCOciK3CMKNyXlfjQeP68cPZd bzPyWGm70v1DzLqPnKY+UvICmDS1/c6r5iCFYIISPijg6cnYdO57bfGNrGIAobByQHpnlfyzpXln Q7bR9MQpbW4+01C8jtu0jkUqzHr+G2TSmuKuxV2KuxV2KvM/zc/K/UNensvNnlOcaf550T4rG4qF W4jWp+ryE/D+0eJbbcq2xqFWAXur/lx+bUY8vfmBbnyj+Yen1t1kkpCS/ULG8nwujE1ETmu/wHfl gVhWpf8AOLv5seXdUi1Dyxd2+oyWriWzubeYWlwrJupKzFUU/KQ4qmPnP8sv+ckvzGv7RvMtjb2c FnGscEZurdbZW40kmMcEk7c3Iqxp7DbbFU00f8lvyy/K+KPX/wAy9ag1G/j/AHlppEYrEzL/ACwn 97cfF3Kqg/aGKp/pWjeZ/wA6testf8yWb6T+XOmv62k6NJtJfv8Asyyj+QjqelPhStWbFXvaIqKE QBVUAKoFAAOgAwq3irsVdiqXa2pNup8HUn6DiqVcsVea63oeteSdauPM3leBrzRbxjJrmhxjdDuT Pbgdu5A6f6v2AQqbWc/kzzzbC90y6Ed6R+8C0EqnwliNK/MffmFqNFDLvyk05MIl727Dyt5l0i79 exmgmU7MhZlDL/lBgPwOYmLSZ8MrjRaoYpwOyj/gfXL67a51K7iWSU1lcVdvYKoAWg7DlgloMuSX FMgIOCUjZdqvmLyf5GgMcbG91iWiRW0ZElxIzGgWi/YWv+ZObDT6WGLlue9yIYxHkp+T/KmsXmsH zh5uA/S7rTTNO6pZxNX7Q/34Qen7Pf4j8OSA2M95jv0wqyCyUrbRr4KBiqtiqA1vQNF12wew1ezi vbR9zFKtaHpyU9VYdmU1xVgP/Klp9Ll5eUPNGoaDASWNk9Ly2BJr8MbtH/wxY4KVankj85zxSTzz AsdQHZbCAsF7kfAtT/ssaVUt/wAkre9nWfzfr+oeYyj80tnc29r0p/dKzsP9i4xAV6Fp2m6fpllF Y6fbR2lnCKRQQqERR12A8e+FUTirsVdirsVdirsVdirGfOv5beS/OlsIfMOmx3UiCkN2tY7iMdfg lSj0r+z9nxGKvPovyD816GPT8m/mJqml2aEGKwu1F3Eu/YB4kH/IvfFVST8pfzkvv3Wo/mldR29D y+p2iwSGtNg8ckRHzxVNfKf/ADjx+X+h3w1S/SfzFrFeZvdWcT0f+YR0CV8C4YjxxV6cAAKDpirs VdirsVdiqldQLPC0Z7jFWNypJBIY5Nj+yfHFVocjcYqxLX/yz8q6xeNqAjl0zVWJc3+nv6Ehcjqy 0ZCa7k8Qx8caVLP8EfmHaIken+eJZIhUEXVqrMB2o7PMW/DBStnyF51vo/T1jzrctEW+OGzt1hLL /wAZVdaH/YHGlTzy15C8reXZDPp9qXvjXlqFy3rXB5VqeRoqVrvwVa98Ksj54qiLG2e5lFB+7H2j 4+2KsiUBQAO2Kt4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqo3FnB OtJFB+YxVAPoFuxqGYewJH8cVa/w9B/vx/8Agj/XFXf4eg/34/8AwR/rirv8PQf78f8A4I/1xV3+ HoP9+P8A8Ef64qvi0K2Q/ES48GJI/HFUwihjjXigAGKr8VdirsVdirsVdirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVf/2Q== + + + + 1 + True + False + + 128.000000 + 128.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + R=252 G=252 B=252 + PROCESS + 100.000000 + RGB + 252 + 252 + 252 + + + K=50 + PROCESS + 100.000000 + RGB + 14 + 14 + 13 + + + R=106 G=181 B=54 + PROCESS + 100.000000 + RGB + 106 + 181 + 54 + + + R=46 G=107 B=38 + PROCESS + 100.000000 + RGB + 45 + 107 + 38 + + + Branding Primary + PROCESS + 100.000000 + RGB + 97 + 153 + 48 + + + + + + + application/pdf + + + keepassxc + + + AIRobin + Document + xmp.did:15104d2c-f19a-5647-92fd-ebfb7e2a9d9c + uuid:a5c10b3a-0105-47dd-9dc7-c8c8656a539d + xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 + proof:pdf + + uuid:fbc32be4-4dc7-432b-b68a-63696265f39c + xmp.did:5ec6b319-42f4-834f-9a94-1742c43249e6 + xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 + default + + + + + saved + xmp.iid:2520a7c9-03a3-1044-b2dc-89724d81ad50 + 2020-12-19T13:48:23+01:00 + Adobe Illustrator 25.0 (Windows) + / + + + saved + xmp.iid:15104d2c-f19a-5647-92fd-ebfb7e2a9d9c + 2023-03-30T00:28:09+02:00 + Adobe Illustrator 27.2 (Windows) + / + + + + Adobe PDF library 17.00 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 5 0 obj <>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 23 0 obj <>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 28 0 obj <>/ExtGState<>/ProcSet[/PDF/ImageC/ImageI]/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 128.0 128.0]/Type/Page/PieceInfo<>>> endobj 51 0 obj <>stream +HWn7 }WV+J.qҢ@HXum:6#a# x(ӝ<;)?i7qUSJHdr`+2GI>F^U_=ZVN$j +cTHŰL)z &,P火Unt.V ]ĊF7`{Q.y؃:gY<_ B'FEv8 h0ETf}OZ~{>P4ֿSЧi>NFjnR3js隋X: ;ܡjEp#~-oGj-3m݋j! +endstream endobj 52 0 obj <> endobj 9 0 obj <> endobj 11 0 obj <> endobj 12 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 24.0 +%%AI8_CreatorVersion: 27.2.0 +%%For: (janek) () +%%Title: (keepassxc.ai) +%%CreationDate: 4/23/2023 11:19 PM +%%Canvassize: 16383 +%%BoundingBox: -142 -14 262 115 +%%HiResBoundingBox: -141.500194631545 -13.8897637794908 261.999999999991 114.110236220508 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 14.0 +%AI12_BuildNumber: 339 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0.382499992847443 0.600000023841858 0.191249996423721 (Branding Primary) +%%+ 0.057919479906559 0.057945560663939 0.052277076989412 (K=50) +%%+ 0.417439699172974 0.709999978542328 0.212999999523163 (R=106 G=181 B=54) +%%+ 0.988235294818878 0.988235294818878 0.988235294818878 (R=252 G=252 B=252) +%%+ 0.178956523537636 0.419999986886978 0.149739146232605 (R=46 G=107 B=38) +%%+ 0 0 0 ([Registration]) +%AI3_Cropmarks: -162 -13.889763779498 -34 114.110236220502 +%AI3_TemplateBox: 50.5 49.610236220502 50.5 49.610236220502 +%AI3_TileBox: -383.600006103516 -358.789757675982 187.600006103516 459.010230116986 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI24_LargeCanvasScale: 1 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 3 +%AI17_Begin_Content_if_version_gt:24 4 +%AI10_OpenToVie: -301.827610325819 270.77290632912 3.88349315223746 0 8242.54634672557 8217.66620684501 3147 1901 18 0 0 6 181 0 0 0 1 1 0 1 1 0 1 +%AI17_Alternate_Content +%AI9_OpenToView: -301.827610325819 270.77290632912 3.88349315223746 3147 1901 18 0 0 6 181 0 0 0 1 1 0 1 1 0 1 +%AI17_End_Versioned_Content +%AI5_OpenViewLayers: 777 +%AI17_Begin_Content_if_version_gt:24 4 +%AI6_ViewPalette: 0 3 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 3 7 +%%+ 77 Fully Shaded, Precomposed +%AI6_ViewPalette: 1 3 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 3 7 +%%+ 77 Fully Shaded +%AI6_ViewPalette: 2 3 4.52777777777778 8162.61349693252 8190.55214723927 0 8162.61349693252 8190.55214723927 0 3 7 +%%+ 77 Flat +%AI17_Alternate_Content +%AI5_ViewPalette: 0 3 4.52777777777778 8162.61349693252 8190.55214723927 0 3 777 Fully Shaded, Precomposed +%AI5_ViewPalette: 1 3 4.52777777777778 8162.61349693252 8190.55214723927 0 3 777 Fully Shaded +%AI5_ViewPalette: 2 3 4.52777777777778 8162.61349693252 8190.55214723927 0 3 777 Flat +%AI17_End_Versioned_Content +%%PageOrigin:-247 -370.8897637795 +%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 13 0 obj <>stream +%AI24_ZStandard_Data(/Xl4jK.D +fn;?j"nL̔((A~J +w  ن yΜ_9kǼ[;giq{}o=ss8go\[_No-o5|_}|{ߛ[}~k/{m{.8kb30 C0Zw]u؁^׽~~_y^wa[q徹y㎽ֽ_yߙ_zۭ^|ݟ͸}ckŽgl{{y9ߏwo_..~glbzw_nc?vZ~Z{{w-{c{}έsŜtv|mxa Ϲ0p۞ߛk,®`v [:ԠP7noޅy^y{W=;_=]w\ ӡ.{:>BOw?O_? ^9xa``-.k/ 9X16s|/r-: 1v`y]=?}o}_o{umyAqs3rzoE}a{Y3;gCl=|> _g ^wuV{0]~ x-bsq{aywwo}|w~ƞ[w{Ynߺ_9<5wϟV-ޞ_f]l;mZcZ{ݙg5ln1|{7[gcolۛyr-w;񅁡9<"vs}w{{`حߞ>ߟ>h.wzyׁ]؉io{!6ߌs:3=s/bjZ뭹kN{ӟuEm[ovmp;r3\9s?8s5rq}wxmwAN5[kV.:|!;1s00ow1kq߅m[=az׳N.ww݅m.v/@r6޽=c-g3|Vm_|9@ A qC= 0 ЊWbE.vы_DODP EQ_6sac|7w򻯾khC zz-j-Z{a~{ _n:CгVFۅіY{33 g6˲m߯kW_ݚvoܭ;s^c9{af2$㛡2!a֓,Mc9 X\U!,k:Vji)TPM'iBkڭiZG e5BlJe+,Ou(`CR[kLQi_J ZrTHs4UR*c]KS)c&\K$KMI 5IgJ F2IF)JXE2 ,KcE2Z"1HD(St-ȅj,Q-4 :,SЉ.lVk%C(DSYHu= +Lgmpz')>[ﵞ2݌=[s2ݳD(kULiL2{mϸ>ϿΗs_7 r]Is@@m"G3 xjvqkͺ9vk-sbq:s9lus9ǽs_qwk%Ðu8Igdu1fENh=DYHoo0jJVLT%V}GS4I7ÐX +tTiaԵ<Rl5XuhM&Ot!@H?fl ;9%wg{ybs_g\G"Ζc~-FU㊅-K0lf3 [mɶ8c_ٌgx}&4D|z] 6נ!e~3_vfgݯ۠m9|o}[f*SP6^$gjͲ]{ m2:u%C$j\qF=ÐQ}sIIҪ`2˖7—lW)*f)6.LUM/ 5MR"דD |FMQT,)h=Uvan1{q׿גmo_k7wUDض fL_Kd:KBm3,P(=_̽Y_2 C#xUY$d\Km0I$sĈd1q9RMIsm0iI")骶Le]G22e IBM%Ҷc:Kd*LLZ323R%SU:zR4WBAM`L7=5EL$izצW*ͳ\UĪ*=(ZcIG9!LBU:x똒');g(({9ih)u=Q1%;ں)86Z:QjY#Y +@=Y X*Kd +ڈBQhywZ2I +\D;bfQ& +z|$o{96 +42pVLonkݜ۾y{v') $ՇHfw0U4K4Kq-[t] #"مefh,flDn,!F "DRD6%K?&&UhJ:zҸLRKv/]$YґqI ?%g'zv dgٹ\JКv^3ȅI"f:Ñ2%UjE$j{y~q ǽ"h|awy_0y>~°Y`~ uCοcr8ߎys6{qg۱ǾosW;g9e{|:{5g3ݯky]恡$P2MUfJR'CNiBqF僓ԊJ@DnIɄheJmp頥Jۅ_j MRHd@C#@3R8ciPhq䂒(pF7z@X8-V(*H\Va((G $i;t'$*8(0NxBPJ DɣBED( +fN)Dc Nb0$$dR5"Cp +LxQi@:(Or(8x +ECs`I>!RezxPªAs񢆎5 t4H8İ]*z֩BcX-Ec + 0Si5&>Z}@‚cC,L[H:eA#0<|p|^+`LR +R.#Gr #Y0H'CR )PAfpKn>+Mt!Q}*Yº'(Ùt2$ v6L ,΀hdPJ $cIh,N +?pJ)PAlG@q%$@*@ . 4p(1)h !b0 S)_1@^TYA|q|N2g! x;I45uΈzDbӷ M߹f$Q..o2}Re)mF{([ȪV$HL"t"@S (|0+rAbBy>C$C +Hp,auL`ܕ΋~tqGǎ Epva +vUiwf Y%К`qkmAX(!ECK^1Bl_H KANh\3:#7P "]Xg8g£p6eI5p*’)Ȃ̎"ctLP2Ţr8iU EAZTJQ +qs"zCcpރAHI#<,PN1%P&F:(U$M,HTb2 9&*d|xpJM73$ۅi2/!BbRq +fl$jdD.A$F̈+)Gtd@'A cD0H?q l9PGaHējY@XP ЇhǃP0@ +D\H > KAcb. m< *ǩ<:"ylʃaՃ{0TMcU:6c%iP[ڐ$ϖbHmz[PQop7 +H),D< ZmV@KP :3D 0P+ taro@cu2#?zF6W 4{p: ` *" ֯p@$ (@C!'ath8p. +J~lׁC8Rp ?@vab5*XU#Cl`WH  hV Z'ӧAPh +NCw,F!52$҃F4(N A#Y nl =q|CD*x8Gj m}P-CC#260iIl dC]X`@ +hhi'AHP4 hehևQ6 $j#FO'O@C4'!:@.l-4 !hksttfp-5ի1VV3(QMb!qFHaD5(GЙhh(h&m,m?MKM#QViEӴ%Q(MӴVih Q144M}ii4 SC[.r%@すrw$w@ۜpQRZ+ԡ +Pд*r9';iۦ. 1q o(!ZK +?*p'V]SN +csaר$e(V}Մ*0 gO E$. +Z/ +!4WR0'*u8pBW]a.S@80*SxI Tb"ۅ({hL ]C os5!7p 6hFi*M,:MK4va#iCr:@59=H4@ +lFɬRϢ8Ł֣@+{2)Q 7 Šs'^(njC\<(dkb: *N`EhyHO E4;8j-T4M m454qvaMN 44MkD4Mceߕ0 AtB I2*D[4-4m ym|C4M4U;MӴt@ӴaHiZOva5 M/$V@!Z_#=`C-d m >LFBy +5M+U, =o:dzTh2Vi~.sR{4+R@XyLici4IY—D28SZb$q$ÚzY,sUד,SM XI5M9րzJYv-WAZIuYPΔJ5MQkɝN(y4RXȱXr-SkʭLx$&2U%q*K%u4O* n1ofc Qɩ3%TJTVb+L)3gy"\bZ*]Oĩ\b%.eHsLIӘR9e<ʙSP,kBWTY2}B%*Lk@ly X2o.6R*|"dwE=ՖY:9r=I3֑'ZiBS%u%kSlKRD"!Vuʴ w HyJONYRRiXcPYfkde蚙HZ(*ev# +uki"de-'s1#A6=5n2(>d@N ȩ9DEx?FbsPT**zxx20+Aau00`4+IpV  a]Mª =P)T Hjj/ FUGiTx0LU4]DYESPe(Z#U@CDSYX?h$ שP$@.\sx>{9ċ`GCNvs_ ,w\E0h1D0QRw0{>"Ć%aI"*$rzT>Q=DTJT*ia_j0-D*x(Hfh$ +Ʉ"$P] دs;vu䄕9&!ҹ3qs5 9a!`HRj.8V +F4*F m2VBZ hT@HDx^zUoLPWi3fyU&]OcLʈc&nR"ZD(oEbcPBNL" 'DT"iK'"psղX|O:X*4-rZAGH袲ѪP __TB2 x2P y (>B ' 0Y (>ۅ} ntjh+va_XDUq怑h?} E EȝE -DmpZ4EnFdpq/Iu  .j,}lvaӱ"Kǀ/F.}'SQI +HDHD$"(}'TR:ddQĀ)F2!2taȠȠȠȠ"clEE"((e@Ng@NFFA\ ;x0|D0"TU>JEE MH Ғ$AAIkmB6TԣF6Ů@ ÷.sM~t6Ê`4€tXʃ&ksi%\MDPrϭ$":' `rNXX W0"2 'MI&o8`dk9Vob)\ئ6 +BF@QwEx ͺЬ(ML1YTœƉDU 9i6CiY@ +\ +nL +`OcL<=ƨ1 +Q^Z$R610x "^EqO$SKb}t6DF!0`4Z8L1`Hk %|p ҊD8Pwۅ8Q+‹BT҂ +ɐ K@#NP}*rz*[PrH_,d`g&L]6L]<(8㠛\ad۶0"؃P&h TQO&V@0pE1:/_ &2,>0zφ86|`.l$/9x.舖FD$  oiVH?pl2Kl>sJ N +4mE\,ć xA#9T ifa\ ɠ8  62l)"^@l=4wQ4`(t *awwQ'F+)p}dx. SBBD8Z @,ɧmVvaVz +IsJ/ BSW.M/+ArAffAL [IUiB)JGeI T!IX-XE+ %$K 0cpߨ`tb)X +>Q@ 'ƇWhB "ЩiH+s0❆BN`4T +C9F~]7Bŧ'+bۅ 8mZEj2 +&P(\. N;+aDQ +u0a"wPhhq$Ԕ +" HW 4L.vadG=J5ZfmW.@h܂~j7J> #+F<(va Z1)#0Pçj n44H9,.cn.* + +|Dd?/b@3 +.QILJ&o:(Ӊnf Lv8`hQE^J!8X$KPH0 Yۅ1H>mnrV`z:vgÖzP" 9jE wI@:^G'ÄRv-%6x9.a@3&>(O jjڌ=AA'[4!c +4P.6) \$PP.l@: +"6Th"ETKTJLr@ Ӂ2Mnd*䲖6FD\4 +ʺ@,bVAB!2BrK餸Lj*8XeVy[g ̑zT&U cEapJ ]Da 4sh$B` I3`  +eu3SD4R@B.*"ɣ8( 90 r +dC?5'o1YbАZvT +\[]VZ vKG!d[gdm``L̘Hb!Ă dZ2q) 03k7Jw׀7 }w&uo( GD/DQ GDƻ99g4]̀3!,0>m1'G1H>NUb>}jr$db5`2ZB${PTtC5d4`<>Yք _f -,S +YɎCOT~ `FSyr +VS(Q:$3@'P [gɺ`!~+$>h +`bnT3\?Nu41F|AQ>9{P!Pfm+Q\ir:22Ss0fFY j)LD5:8M>@*|hhvdt;ɉ=7afYx*# Rg}e"喟zm%uWQGc=%Ɍ[;WHpo\,'36ٕez.(QaRdP3 = +Z2ٍRP"T+RϕAVy Nj e"FAS0 @:xҷ4&ӯ.Bypt9a_!Py!9yT+є£H幆8[|-fB-'a|WI{ψ1&\w|j)N bbycz͂w Tx;A (?9<i}3ޣ".FcGUD0ͰRfpIޝ۠YF @/iv@~f&-8x&+b5} \aն;$[6P*䍸ԓ/G7+qlTR'Ө_fيuMkf|% ut}Ί|t|FjQύ eA*G}/7:ṾΓʼn +]CGvhʓڳXZo0-达XQ__ 6~dQ6꠵ںFp!׍BLjsž!DHQ n``[<ZE'_VPd,L"V(PuB 8GOPŹ޵}8I:S]㊑{ +fI_KeKw#OWаaJc5˂ |66 k R Ykn N2DZ־sS_K'װL=)Y?k3 cNY<3#l +qQ сT:ʓ=7ȬYH^jyh섭:(u|nJԳu09V&8c`H$+Æӕ%Ch+K" +@H.u醕ծ@豲Ki 0c@G )`xK n=f" Eƅ't9@jutøK$ma;c6QS9S ^ ʨŪ.jntliZKIGW*y +5y(;Rua)[Xoz]·;^zžғbJ\s:r#ݠ|,/k?b} rN^S7,E.PքŠjo`ue|=q&Յز$|Fvn@ q4[*m7*х#UІḶ?):BX&s%O,T$o5,()d+4HuU|s((m(?Y+B=:3]lKc.0s>0:˪l}yKV9. ˆ$HO}eq6G-D%yٸS]XY1ea +}s]ۈT)Zbcɇ]w{Bx>('KDI3lz%&A!`j,N,vۘzRO D ٸrls=tg9]ȪMFed +3SvY>jc j ~K4?1\[9XbR0@_A5 Bi}+">mmޭGSTkn(jk +iu8tǃ>t\g¿4ȸ#u_639iu #p`+@3Mqԫ)pR^˞pLD˹OBv/ԝH`%)o*t\+򁣣8WfXbys\ ׋ TȇǘݸpT盲9>ͫ3L +m)9p.P?yz0H!!vp0p6F$'쬩>Պ $BSTp+44oc4I/Fȁ+u"uicuFnÂ,"A5ó 83^G5@g,:/Frd>V J?.# |=WЉ*{fCʧv )Ӌ6$A|?~cO܈JV}e5(_2D w<6tDڢDm,'TբfKcgtjLG ,)+Ήb 0}Ibz6E6y0L8ɑp8`=>Xks0XZ? +Uf"ȲBFky[Jz:B3~߶.\Zš]c +hoc՟ѿ=V7`pHfn[7)adh9moj9K@K6>(᫕PFjCazv,y8₢]XqY/+3ep"|ED2ѴKg3DX_2+a \e.Bf1zLv7i j&cc?SƩA(U'N+܍|ڜef.3"N{ySMgoaE٨ ,5KI/t?;@ '߸0}K!vd,+?#73 b$>A =Rz/]'OiǍzSaHf;cx ̲lUe<4 + يS ^6/N/`  ^%jA$"%&=Q aFFJ & 6aa߹ԓU,B2GG4r+Sc]s8#4dwm +Qa3'[o\$ҫҒS~Nv+7"FP1 0e4g'药Yt"y4WR!uGAfРĄ|HMS t铿rD +Z6wJAN 6a*TdA+|ԳçF.yXJuWpއE GuyZ$mD]M=<krtr/TTLxm:N;q#B0l2 }- :3|N\t= \NVǻ- +Z#1L2ӲӈW2w9(rc1vG@Se$؂ 駬4h-'y/MCxy#WU!0$]F0 [-w^ ] %H46װbjԇ4%b)J\Pw1cC >T#k/7#UQWb~[=~'RצE|-sj%H[to@GL4iE''ݻ}a 9H;dZ)zaD30s5Ķ R ~h0%&ee70QXWF3C,&)[<ӀS$CEH!q#?Թpŭ;5Y-@M tޙaO`l"hzb*('58m ،D-<Ůu)ЇZhÄ*p؂kpGPUf3e`Am@/'j= b0 +׼A?r#:ОOߧ^3mv_k{p1y?mtv8z(,4]w6bzh /[,ӎ-Edczr^:mǬx>p~l?bO~?@8>^.-4oҥG]M*,'@fEFH֜2 #ſN _%cl\04- ^ύz ^#y0[_W\&1X j2F#oU5#!SSdɌ`E v;¤| M>7u\I7ՃNGJ&F/qF~1Z#('\xԋnTpvuP/'$OߋzM.7"7kLl{^ʑ}տIBiRϷӦ P{` YEXŸ^D**!Ȫ\TP4C3wvo[}{Ҥ:rq9pV<*PAMDA!N YGkM O׹#dDў1xWr\2$<ȥj6~ +8xf*zqri~tֹ43tCm"s"5vw[y츎_hrV3M |?[u{G0WE!:Tb{Q| &zOBE&uIrWMH%;خT]H9L˰WqiLʁaX S>DQ)5*H( +\']:Cl J.㕻0m%8@ +$aǓP)2B[?< 啸7:"MKW]憎$ bԷ7/HL( [y/(/T;sNjLcՁ^ X vT} 粓 +"mfU~?ޓ;A7],Ja KX1p"Ĝ^ `brq})KevDSc ӕz aS6QN"DؗTTǕ/mwQ:Nz%cеdO3-X.WtKq:A.CH(HhaH +Jpά9rLk1Ȕ$'#6;p̣10d`mE]X S7W:9\2@ )O ަUZf!mIqSc(QYs\Q((­`h' d_]ZTj0)g 16nWJ +sN]*1H$56*H&=wzK4DRh99m{Sw5A[#ZXԕ C8ŷ(sazmqF1Ib)jW:qޕٽf1f! <>CCwW>׊^ d&V +Y%b[  +`Wu\Pl$TJÐr-D)@b~ì^[by{!˳"~+L{tx Y&!}h wl?)aG_vg]zoWNeBǿ[)-@, +Cznlw8YWg@:7?)Se+ћ^!DIjs#&Rb3uKnPʄoKs|׃ec>h5Lx*2 kT~\ wIx)x +}R]a7sEV2SKHm甪ylŁSiM?K qY='%FRR8N֪7?O?{H*YG+ ggI^2K c_ݹ(.@҇P9"zV ++kJ l1HɽVkGƷY{]Z7jGqډi韨3_~Oj R.mV'+Sbhg}xQw7@|iU +JLd D$u7Dx#?U)yH/z]J"| x5@(@#9Nv)l<9jȜGRbQ+9+Vs%ZKBLħ9`CdF.> -l[,P>3SGLŁ/Kญ4D&iL8NW<03Pɔ}8^kh] jYWbPid*KYRFHgSя@L:+J ;`)|p"PO6 ч/et#MVJX>. .t$TI7! Ҡ@ӆE+ZX,ZAəOshC's3~6F }iƺ?2 ՜\Tw=@^\q>伢LNkT[CM.~9W J +( >`4] +Sv-sBRgZ]Nc[LGV` eaհS[r/g“'vYlSHY6kiw\2t7/$8K_MlUGY-a5˖YiLX#67D!ҨNM*`-$[=_S8wJML,P{4 sƾ4TGl]W77ҁkA{wl-P {Z`ӑ;oڰÙz/quȟq ,1e+i9Tjpg@ }(4m}tG2=PzEPG4,v层^ٷjba{e%Swk\= j"":Ŷ_D'ϑN*mYE7GCr&ā!_J uYϛ7dlդM+cGr/h# ߖg]̣t;A=Df#`H.G5Af0-!˕HPN̫TPMhF"Hץ:3HɊIs,^,JL?$-ߗe $׳lJ%(IޞzzJ6̃xȌj3xL'Iy.RnaQ& ( wͶ͵}4]OWK&G!fA;VxDPW2 aߔ&4f1ZgmKwds> "Ƀ$+m7,j[HB?ROZ„LmuoW_~)rl=c\Dcw YpXa>P]oi֯Y&mrv^졛!ͼӵ׵KOW:0So:imO͒&ĢC;r'8 7, +$b{k2-°z}|(^aoh/;!gcCg2.'T_t%%S,,YNEJHj0R) H>QFWuԈl#eHK3J詴88܌ үH[Se}ʝ)gCɅJG do4cf̓\/iL-XIbtJS&㺙k }>| Ay=ʂU h7׳e[jsӄ V6 ӚT'ԛr!:ZnF\縨?5ڝ};r i) ץȤ 2͠ 0 %c$wZ·t{ +iZ_׷sa&-omawTpڏL.TGWe :&N4$ʩuiu=<#ZBz-lKo 3z^!=-'=T"dÝ!%TDK G@n+Fc =[qPKQ&Iq":dAk͓ VͥF4T4xHDqx+[#ƂdD['Nj٘V0k,HnN“DM0+#(MrLqM|{9Eޠ-{r +S5z̬LJ^z-D*CoTYEz7d,E% +km ~\g0cC-T8rNڭJ;UXTNCE%2IsZK+s; 0h,ʁ w>N5OD5 'R)X]xS,`ͯwq .Q>ȧrz4$j&-Ձ܃,[)&>>3/0Ѐo4)eePkVѩ-#oF?`ѯ٥j$:z$Pzf)'={쀧Mu[2u_뫕 Bν}{|}\qerTXFxRcBK$*q]kgďi|[{[*Ĉq3fHt*z T"uCrqݺ)pDYjsi}^"ζX%٥;#kQ)~ /poDe<`VT-B \8I6O*Zמ . t8Ƞq\&[@X$ r@qY +Ry0u!HP#([-!F:%!!AR<x0rrpm> oVi=2o#%L?O[5u\dV/?2M;` ŻD%"-VRioz`3|:MV](\u eJ? J-'59흵ApdpUJy3l6\eX:_L?wuׁΓ jj6g(ۏF'3JhQRKK|?/흙jtNl X%'`M_*CVm';A8û+5wQ}>.q\dV: -Yt4E?3|\=5j>u[ 09{n.HqZt[ \P$.lɨZz|>X^@_`B Uiy6- Uڏ>GeC*׉< ?q!A uu9^sHcaY>/ G,QJ00֫:8|\%VFMv *4=qیe C ;V +j?aga`*ҧcF2WHBOS&J:&khQ7ޝ?"K*+Mk1P M?ӼY]*D#n<\fbΉ،@v, Wi{`U} seJN"IEz`Db~v8Qc>6Tn'KKB(}H.қRDnd? ⬓>|lչ1QJWAi4;q<uAdwgѪ[}Ɇ2_Qʏ4T(=r7 Xi; +Oqk&gA6Ϫ0vVUUfV3?T'HJ0uPm7I +m0u-gļwCr {K)ꊽ%]Nj+@a'FPVNjD ֱO%3AAl/!+﵈I$]V^_ Gl!" U{u VS /n(o@>xM6(hLF%ulJ7gh]YyO+ 4I "I/WHO{S]X;og̗pdIxt‡IA6a 8V%02 CS(hNNbEn(@lcE&.´{h BVff~jP&2c&N̽ h6d7 0  0  0  0  0  0EfK$:@= |5ԧO{?'H&7@~24'. &}MA5єwp +:$wwr%~I|ƺDB{e/sW&C S}۶zv@X! bgtMӶM@l+/+UK6/mil@5 4l)lFU]B5ThLc^ XdFׁ0%Ƌu4ƚ*_ Ta{Cc:z(X -saH~06Qd`ׂ~<,J)O9Ⱦ[utLRi甸l/xdcS@hyEeVLu,G +ECu5AgGR9ΗXR&)'i;4X~gO[/_6铛 ˬRUw0@i[pz6|tݒ*_"_B+unV,'6O,:Su 똎#lST|\b N_Tݦi_==d}{VwL >kqџr2^*"zK MNrGW'*;G/D>x';yIQrG)&r }q9,"uTP 3+(9@_g.@q (c); ɴ5x~^_(|M0n1X 78&&` daH\"!q^:qtBO IUD(nTV;QJe Y opzuH_0&C_#,I@^K\z=K0D0/=^ +>o$MAFL4q5[?5Z{V4C}\1VFӿ'(G"~֯VAz%6p +% wxi-aetI൧F3[}N Sq]E!)E &zlCQD=UXLP(+n(՗A7OXN>ו6ftZ[NwbF\Q8~kY+8S6 +$ѢBHd@f`  ƤxD>&P6N"( DpPp00Y0dK-*?z|ErU\/l׳W%zJVf\_[Woz=8cƷ+~z3*#c[%> g[F5lw7ˆW;(x<C^ K=Ĕvh8qcO3!](Y[ɲ,T:,.&%1|P^T^pGxud"=^c`~na"Xx/SZn`!(.xG:X*;qA z/c6lLl{«pz&/aԘ9 HM[w9I)ɿAAg~qyݍ_rA@Fhҟ{>c`-^=Vwť#wquPFS}tB^и +S5"!((Tӻ4vt);w@7ٽys+{ۃva=n + +gޜ{qdClSPssJ?=D%. {p)@ J\AC0¡Ͷbό+5؄8 +. &$hvz0.Q IZl)s8#4LBd.;D}ETKRQ'B+2 f# 6d *m`*\ 8r0R,fjx[F5\ +XUg e->eFpmH hg45a֫Z;نxlmJk"9xȌp@]X&|sc972(4R:{}9H;tߢ4XkfIfdN tk5(7GF5Iv¿"76$jC}_A&SIlY]ء7Jl?c.Λ߾S,^]N}K˺2L8P}r_[RѾnAK(h>ӄܹL/i8Q/*tŰֱjO(BqP=4Az5Qj4I[ bofY +veJ4' [OR[>x<¶'0L"u1ul#vrDR=:|rNdU|f8izr,PDoZ#YcOb:z0fĴѥg;T6 +8\W6vyYXROFI `k$~\3ESc×*m_e-R@_u7Squ '-31'v&z(tx?@/q p׿Tf#櫭Mu w:Rix)cBERZxf-Hyy:agёٹT]OJn㍸  +ϊzC*-z/ +@/jY[V@Y8iC_桳BG-dwv}Tbv"?h^ H})SĒ>KLv S"lP]&Q\WNvYJ۪ *:7Lw&>뇋BDiB\tn#-) #XTC:(:V:~d%ϟQZ3t6o%Yc5q/-ա6}joP6gDks ,=[ij뫩ZnF~ ;'NDj,^xWy* ugf/_`pCAB~sJ"Ne +Ry"mpFu_8,}öO vPǿ'\}6Q⿱mkׄheWxBsB~y$r )L᝻'\ H#FV 9ws}X MN wT1zj(ao98qͤb d-4ߍ>`ԋaB\0{V5BO2/`;p$IԤ'WJ{wQ+Q}ʢj㼤l'Um]c/E_ ̤kCb#\bzJX'0NRz9) ,:P^ P}XM%Ylo S$8Mw|ztrG;FbUIG P7ˎS$"'i+ldaTȠo< } Hsp'ilԷN""ND"c{r:^bl"J|;$g(@۴i +AXT^h v|CdLچ9|Lύ% _֗QáN>Wݞz^]~-e u!S T +6`AM8C ~@rr9Vi<:WԿMc+Nid򣸦l*ũ%OqqdYFC frŴe=LQY1" + `UU'|kg tE顕I(uץC0T^rG'pK\HK-i-I1' &i"Q@5{)OcOq~B4"'Σ^;pKJyX#҆aO{Cxwq`#p91H\^C :&U5eTdm t:>qx'hLO,_HU1a{ +ys/,&SE0Ӣn4:R{ {|#+ljNރBUҏEpZh^R%I/vQ)jӇ EIrSFzSk4R1[O[(jIUY7aK,t!M2iٕIq.$*`"?0 n9栗Cx1o5oaVesD3!Yg*3Uzb)ߕ'vِ߾XaT 35VNwnlZ9WY c]$\|_EvFώ~TS%7OUhDw(8jGN+` 'R ;]L\B׳Vbx !£N1l\` fG>pMi!"o}<6v/Ӑtm,i^ ^?Ow?ज-?'{'X(<0v)x,;m 5J6}#x_]9!D,hN,J s*nA `+–F_8RE}]_-\*<`hNSH 56"׼"t^ЛU,ʷIW3$Zolڥ66qA%:?I p)oM9# G9$ፌ$Ci]ЁWM"D'j|`8E*{%{)$/m 4q}KRX]#[h(|4E\񿣞g;xLI2tw2Z4%ʱ]Sb xPۭd4T +we`?XHPfȘ(5)?{+ +B y>5<$ =wk2۹  ngH8# t(?;~9u$qӏ;X*6I*/ :' E]U˶.MW$7]q.Y,}.pChfw7\j1eBS)@%$IsSQEoxߓ"\y!BZ5j>B%t#mM%C %HHUa~gJؿDR4Gc7J`~[=]0 Wi;kAz N+. D@Պ`d ;{7mʰ a i2p[g]I}4rġ<ٖXD3\ q2àg`>錗dO0EI%Aeq%q>WܟwH$OǾV[I}1G8>1TBaSˮ Ŀيj 6CxF@Gԙ.vUc%w5GQE{&@@p|n}90BS/fJ +kqI]?1RZe-OвCe;k'7`䅟t,n)SE&|XvF}H4QR Ai)հ-ӅEp}N5ғ#mcE7,쳆 +H7X8EFyn[&0R/[ oP@gւ rKe]&7%uŗԚnMȫ<^1ΆObIQ|RzNXT0f 0U\`;8>ahGP5%=s DvEoG3*\H@]K$`]q އC̑&sGe(.t +.c@m 09s(~T+I Y>=9;Ihtwӣ0vb +6aAk)$kCh=HE| ="<64/l1R꣢=&dm/Nh:@ :i^[oף徟W&Q30kTlx{*'[Nc!ؠsME A0*(YMÁ;m{iX?`p?jʑ)\5_R"Q~6ظ;u tleɢO=wjH'tKl i[ɹnD}ȅl+dg2xPbи`րo@% KΓb}FgڿX&2_ȜJAл<3Iۗ\0ZiiAsěXdjQur/ͬUȰlT9?뫢Bx1eu J)ol_{] 44cuz.2k:ysQ5*i~Q%z oU%tO9d\A^=@M7b-y,d 374rf?IXu#$JQyM]SA'0'ahFg+3 vN+Mw9c c/:Bfa( +A*$F=c34;(w$\{ |:ES}6hQn& + {Uw_.\̕R.SJTv(rodQr&Ͼ,Ԙ%2nwQynѤ'/9` #2Spth!&  jjJٖK6s<1*Q]BQ'Đ=hP(0 CH qIU8B9+ÂCm 4&ZCQG?B,+ + +rIs]b\mZA]dؾ#,YM&*כMO1̹euNhc8;b:.[Lsb.2(m_ˍP=2P15BeZZŷdO;-> MzHFIH4iaŚ-e Je1\#G}zlB)U!rY NTuGn logF*lF b&`{{n*zd{ A)]XDБT3_Ts4˲50p: :t,֤F̚q 2*0#=#j +, n|^L DhGQfr`J_ڪ{M?@Gg^pҁ¡iCg^7a4Q58\v}>M]3<0 4_ 29y7 +XG +UlEf-3sŶXd,e,dqKX5JP:,aX_^a]J+b|뇷dK4ḵkϮ +* JUT +XYJ- +iᜄlSH3T*I}Z$mVPr ?>!psb9Efs|%4yush-gʫ򭝜%W"\pk\˱ B;0` &&t1D4~a0gg& `b_LكI>=g}~V(L9/zʹ4 z Ls$>!8!8!!HG2jH^2Xt,j]PiK;5{4UQ Ce@DHp qFtBcC <[ > 0ڡB\nQE$(z%4\4mHI@'3FۨfJCTX+JW,^!da8Y "3~$ĶW!j\j`y}W $إ7GL @Eޱ1 c#+b#`eaY5kEe >ǂb_ k.Pn03333333333333S,˲,Ql&[`M6xj$JRVD}a8ca,1t,۶¯뺮{fYvn +3 6`D 뺮l˒N =_lh*bEi)4(@4<=$I: +-˞ea8$<Ͳ,rEQ8`: yӴ î+zua} 8uY֟ʲ: o>ii) +3p0,˲L+lˊ뺰Lˬ QEx>4 PA?Q@0 HE $E>IS@0LRC4)H벫B<0h VФP\噮!H{zC}` ]\0Cae'8ھ%01egGZaN4Ebd2T,cgU+]/y.PP,}H&C =%yCP2@ +žiQ? l뾉D738P!gm\wm5=<`麶W䍜C.jcYbm O/um}7P$yn=麮k_mY$ &@Qyiq˲<5=<˲P˪2#5K/ c/LX(w s}'c=..Hђ(Eh4=ߠoz~Z}HyC GE VGr`.:OB۴~ieY auPCȍw,HVȰ ++g9CmZ?IOuں<6X0rJ#0 +-1˪^.NX9cᶫFCi*;v î*z)]xBp:˥Lځ4ϙ$d EYNᄆL͆L$H HOeUQ_E7.L(KFT(ۮg9CV0 ΄^(ȣ/QBd/W\ېᱫ0^ &j\L|G4y+dW1KP6v'$ +Xr 1$ ǰn& +&9PC"}G#iviXn蔾3oykʴ/rݑtz^#.͆,v7{~SÏ:EH&T$o@o`E!IyQum1LzFCiLH8 U1\dB\0 #a$jcMwHD|ak_H$sw,E-rKMH&I1!0V@<( bAB" B! L +[i2mŭ +B~x> +;x(œ}AX#"OO^gv1gQwH)0H$nY#&.QC$۫0$,cCABSE̽! '1 eS}MI+d  $ +@-N57Ϡ'C(c Us.8(Nn n kp_V={2I(ˆN\?1D4)!C#Z;EFEjE€[J9gLq ȹ`WlIAX +3A*lvDo(+!X2VҸ8]1|jWAE@+DwA.e ?\&ɉ@^3% Yヌj" DHjY2 +S  Xo@px F{qdB9Hl@qQ [޿ g +)8PRz!dAyqfiDC1l@T١68AF{dtB+L!vh)9♂`1 ; [0Ɉ:Pu9 HtlM/X5ZJ]v]2@=Ǐ!:7% +Z`\Bja)䀅ZZ+h]48Ҁon Z6`VE0S^ 8vn@YU#|`gD![Z&eo t?2.>MA "|6 `c00;VP @SE@| $y4 + r.xA +aSV!@GAC;aϬo +lB j 2jFɊ@d6]B>)ha4nGcV6Z8vaSt @BlxLٹ` k8`6Bj!P,&E,C@?pӀ/ %@J8!S Q <)H̤ H&ڈ(!''إ` v?`Ӡ4s0^ #`_0;3B,`Jްg 37~W 1p)I |hRK  v`;yAkq| lE1^:j /> @ +L6RB {gwvfqN@/0 +ۀ{Nf7g(! p*с +PJhc uan{'`H&rEagG&^klI?spȁ-qUB;<59A +n `O .+B>HaWg XV2p#xdTDÑ~?@4ux  -<-(`oPaPl 0?=30 +@& +x1u16( p zCW"/p@?}4%j&` +0V V0qH]a8F(W$H@&Cu<3A0q" d ݬ< Wy,xj2B3Ɂ Й / ]'$B[@W`mnϧ~4c9,0D*(#~C_%iH2+@zvA$Q΁"P}Ap  +*jܿ!pR + +09)hs/3pLz3lhE^7c*_0&P#HÐP@@QA;. G}01p W{&o5((ŀ6D&s:@z#f@j]B7܀}܋Lli p䂈gTB`A,䘞HxJ{ +<4*8 +f'klg59 PU 3owyZl>(u{i@Lg/ZwL#'`0yt#m`F~yzE}NdrVy/G@>g +$Jm/k;1x ~w@Q1@> +T MW@H H@fZqP @T(!c5Pg&M`y|Tf)% +}f);jr:@ u\ғ}L! =Hk#ki 8ݣ7? :@`@u0π=,')+tXHxl(!0~]z/Tcۿ,A؈{!Y|O=Yp2sc9G_y`8Ç ? 0&a,ߓ.AMU +,0> W󉒅;nAVqoh>t/!M.]Sv5x过̉.>h&F8?6<愞LXﵜ='2}=\_0` F)e)H7$T: (c0qDg,)xf':&ujwXڦy"} ^'_]TN'nث^U? Ƙ|= m(* +qЎ(q9T^M09qh4{7 RX&,Լ;>Oć:S,Dl(wֆYy8eN/ 5h@0nO}Y)P 9z/ة1\9ZQJ^- }Ԭ%n-"Mq*j/дrA<Fj>GA@@@İEJ\ +`?>d*QNƂaܗm|y"u;ff4rDX2F) @9c2" C vrVCCEF*(lB;0yz<9!`/b\d HJ=Bd`A[3!d$Z~ސ;1HH\aѼ0)>HhL}8.o;V:z ˱Gt|\5>y4XH,-z3,Z3} +Zi KQ5>[]N+-cd<.U{V{FcU9}Ew`r4F'TIbZ.TQ 9@`=N6sBg+Oc(: `8Qx `LEQHa&@MAk"7LDH:斴33Wnc^$ch?:RjӴ%6c6 :pO5V4U=>M^+ب$?Ʊ> ZCCX +QaSUj*v}12K0b;dukgBV/6W̹u2|KevǥPɻJU ،Dh.%wЄH]D/&^Eafd4%f'?G^{-^2!cV1Z2Cf>ʷAszCN([fdI UH4b>ア'hKOFOMi}la(;&z0w͇Eմh3gL:W^$w" ."a.QDfI$W^q% +>΀A ^!\&&^X'b%VUZh!1NIqN@4@La +"AJWMBtЅB'(N`La 2ؠ + EV9j&IyWy#Y*xaB"ENkD̸$¦W2C4/-wFqc팔ˠ(618ƻW3^4ʴ>vUhbT+mC#֏JE,imT;&@L8(R:%$_*]С(x d !" D`@ +"l' ' +``HĀ(P FA + +:@(R:,`8% , `(@:t( XpP@ +C X0;JP@(R "8T +! H@`papL +) +B )0 +'P J(\A:V@8 0HxABt!D ,p `00` +@#`*A T``x,PD !H@PAR $P`T  b DL ^V*0@ !^a)HaF(LB $!D +@ +Z!b + +P@!#AmaY1/L1\tGS ܎bO;9X~Isw43E7$IuLF(ټ>UC|m8>Pz#ט)TE͝tGhX?]>X^(uըxۘ TSs(sE*HƢ+grI7E|'WeUW"fv 7סDU G_zGV0ĵ;X>(g^6'u>#Ał~=}.R3߭Cu;_Sb5.fU5l\>Uͦx&T5|O{HRXEZ* +]CX*xLGJ hhjgԣPkkxMc7[xtuu +.6:fξ;<9K~Y8K7 G"*ArXFE#_Kfό;'3~Debbywu<#7gqG4rMdOpйRƛ]ψlHD #|)Q%t'9W(JR茎Cx&r1u&:M_,U6NZBBiX჈ZnJ\6Won#ϾeklEHB#ȃW5ʊRdjl٦dZxrClQ/nwZv^?\}o!?,jFfBRtଜɔ$vuJvbUTuRwaDݑtZ +( l *HU =؁ 6 "r806 +Ta #T! 77 ĐC AA2 ѪPQ(Bjl1a| +"Rpp c~0~xC98a"#`5RHTWͤ^KJiT{]Hn+ڨ9e˻)fIS׷5ɉp tC3]BV;?C9gȕæ}rH]q6bR˨8qUW_P5mhoN61㬸$UuXcCTtx6aD 50oLE)݉g%>vrDCŌ=gUr:2FWǩʓcQސ9JQ/(4+d{71s;&Fuuj!˘)w?syE1f8s2bVHFPT3 &@L{RfR23Ϙ&#<:Ddy2*Qд)8ލJisdDmQgǾ4a[篧>lYm%WH9"G!Yjk"s>O U*NG֪aɬ>]caC&T2u3uHhL纩|vWGZ4H~>KCȏD&2&4ژcqStwS2UG5%vuɽjEMl)âJKdudf=RI~'kнHy]4dCh9yLWp""5ݧ:'BY ⤗a8_9a9&qj+\:a:F4$gwci3xbZș!S\sybM;)"_)&9H7r,_?!-!5b3(D  &@'@pJD{ 1:N^Ô("5d|d̆5r4Z=o [aUX;'(+szAbMH|/\6b̖;;I4wuc){ʾ73vCR/㪸ZUL)m%1IR%j#V㨨T#A;]GpsaF` /34>'Vm,ι>*sDIU "Wcc%U'UkpSHntduF|1w{OV' bMyɾ +oMjk ov?qQ.nCD)N $Sfc sK,4Sڭ2Hj4Cnb!:kSW*_='¿ŽWՒyXj7F#Vo:?ן=kPo؏2}F+[mgFC7`]Bt6kNW6e"hc}"cB'#:dlLATЇie -g%[?!ᙡn=(-^;I|cn>XVMjVk6VF˕L9!vZɰtIռtin2#Ve\œsDF,#oⱢ3`btV7kqL]JVu;dmlM64B?vֻDŽj\w~Q,D%%dTl"GCGRHKxbtWQ!O,bD1֝rA+f˯46'DX)7nbZL虦N!V&QN籟(Q\GF)&$<|QF#J7t? ,H6Tǚa$[lNUf>pwv]fD6BY=|A#Uԫ4+i5bRTP\fάthXCtrDG49::{ȕ\]um̙Ъc"ADKH) x(ĐTH4"c2ñ4%/iDq{G!d)291Dn;KsD1C%Gk!UC+WcůHw:وyUӟP7ryhiv)ǟtUy17!'MWHn%I~&qz;WlWDƼ8 ~&3Z42=\e3wnqhh%B:?oRFWDhP>S-)e9HKPޢ{QttVzISaB.CB>4~V[f6'*!zXw(q'S1ҢxۑN|=7Dؖ!&k]t)Rxr\UՕޏ|Ҟc{ʒTIZ+o*df"V-}kQʪ^{]WGr呑EMk%qʹeEk4U}$ +NTSQUlzp}XTڅE+Ә3?Mݘ__DRbJX[.ֲmx'2o_J!QJDSB$?5k{|HJ|oȤpU,~cJݾSt1k_Ԉn7ttF4Б.[eihZӉHrl'd3%{ ݐ~Tmv>?W s#b6JqW1B1ϝudVDAC^?*Qh~+vM$k% +lR-̯Ƶ=jI}QsⓆPƿwXk|Y"=}/\z4>c7S4ʥmw8 +;t2ÚM꘍r+ 9s$JcJ9E#`HFD2).`N6ZF.$F!$QD1 1! TȂr]\AXb wŋ& +RO(OD +KډfxCA-xI&'n_]$c7y}eGPTf2ZS>!WpblP͈|Ɓg?)sAQ#*.՗l2;4 #L.7Dl쳜tDd׏}Rsk=|$b"a$N{ayෂQ) %ൡ}O5?U[E>dEk9RDEnŴp{~9W"ЮRRxB1CWnLit%Mexd5.;vM{a#6jX],YH[ǯ*]r.<}UN Xf/edAʒ3khY&k2"j 0,lR>ꎏP3($ӓPτ4򢷿t^YD~"mKY+] f:Cg2]儭2vesNWGS*F^uГ-:+5+q_M +ʲHzcoJSɁc,*`ឳ2ן68 F?S.k;%%Fו?nlV&B8~ h0p'DdYhdNjˇ8M\K:+GQ+ $ujDi3i<!y) 9d|G t_Җk +8r)YjA&ݦ"5PЩw‹VPh% HXNd2 jɵ@b%1l.Mw.IgƲ0>2o!sdp8&$K7_AIQ'_E ƀÈ#W{QJU,Dq;d:\9Q^!AMyM<ɢ1=-:\9вՓ,CKxX-7R }\HOF?X8Nѭ;jŹZH Bq4ўΑ5Z ) HiZTHʨ-\M1 ~m̉]f,LidJ,5ƃ%P sh 30iҹS [wd2$#ieLő:DTXXxgͫ6X Jd+nHD`; <.Blim(=N˂Fsv zc)o&0Cn?&8:{\XIb$cDyvt HGʂtKA+}cFF[} 藒BZ~[x f9`ޛ{j ؼ,rxCݘM`%'nyqѷ#+.ԓKA!JnoNM00 Ѵ%rR 1d~rђӽkC_]ƒ СrT"ZXO  HEeO-Sd!kJe9ІW%sb-P(dApM8?7-b4|vl0q0 ǑKJX8ЬE+m';FcjHm4^_j;cJ vg[K; w&*rɲ/eU)1eߍr*amWeL%Q~xaCi$!,SO( uJ鈻R ,Ò ylp(_UQ%qJ0Kica(#pu8CN2t` e =pO$!,b&!N"5K˩ +ᚈ E4g."3㦌hdZrW5cTbĄ [ ezj4p\hd~n5CS{Y:e-8@ ^fҒtP'GPYO !*gCT3ӊ//8rnR$8))TD4\-9 %e !*7,-MةI'Q à;Xɍ+(-A +kEv> +tY\x!DŽq=d1 B- 7+2 l}$K4oS +E#5*Z)"GnR"/֑U~)̂L\_WDոU4X: +]@wqHbVGDmi{"<ry'E'BkD"|h,?5%6zU#=S%B!f :" +jV)$Ęm 񹍟5*ql"V +l0ǎĈXe m^XOazHJ93ݛC/<53ÄD'٩d4HtGbBOs F<&@`{){\N(^T':}䲤9 +L $`1+VQJQ=ڠ3PeE= @YK)` RA^^Tr4,iu +(-GWk+ +w_`JJR!/\L)n?L#!Dw9fP>xlqϵ?cgndx +_Hcđp~ =ݑ + *6sx.캌#z]Z6lOe,+/UmOe+cF~`?}&adt"sBngg ʎ@L ^osc|w{aP67'J]Qp +)`j|OF>B~me";i%R2&XHA#=jL0'E;M3~%svŽ&I#6c-2tvidCȘ$ +cirYBeLj+Y2dղ_@zCJxK)>&d(^@E56`.dXhu3 dpПR?a3u6d8vhz/@ڋOz a獼+`&3ERtkǚ ?tNAtǾ%>d'0- dNn$BٴOҋ8Η.|wMP7u vƊ!]#θhR0c(N ŋܨYhtucكZ،VEd gןncI +o`ƫ)L_oޣ|g}+AF/!YNTF(t7 y|}Y/G\;eNه#(߷Ѝ ,FXB!pk[- +zHJ 3Ld>ʧlvX`#f0ecE&s<,|^Ւ_80#Bڼ:Z>{6* ]=-ek;4LeG}Snj3bA{ND]%%ҳ7PqY.Vpur55$FSG #".e62IBUN%R;6oGe` \*t *h XB1th  +EjEΜ&}YՈ .acdJuoB# D_참\#otGmy2f h*IxiFZa}ǔNUj`sFLv.-ѯZ WXW +[#_۶oQ%Abх ƊzYF?Rj=T/L X8q,_&N^r @QP8VbinjP6u"ĺи<6)=8jk`bF(2@CVG#*;\IyɖU(tXJL ]@XqC2pY >;mAm +U\n"BD.rM+%h%'18S z2B 0{& _T-7v|(+;`W) D@0 v f.5.ej0-(Ua +DBYӒ2LKY֪we>R*aZ?u"Ij}с;?%i2Mo؁*'LJуJʤ ?M睖VD^W܈gR܋XƥS@I7Oi&MoY7TBq256*r-;:1s< +_g_>#=cB-a%Hw--f>]j+!&[JPTZp:tIѮD6$ۣsjavF}H*Lߙy"ևĈ` )2)xPû/[X- okŠjp'a(^겂"D55p$\7{ڣM:h#՛7@ R脳S u'V0ض'&YJbP&YG*!g$$䃿R5;1a;'S3]/d8'"&`*fzC83W5篅o3j$fURuj܄Rd=I[^Jz;ڞdԁjwPbŻ*_8AJ عEL'W J?,%,.5.VD9,pd#\6aKQV QYI匵es[?NT+C7 oB:\Jߣ{=2QrJEvJc0 @JGʕ57qX~qKqqqs$$ WX'<+:n Zh-<&Zuc'PYxWn( C1PZ=/W NBQ4&|\hwP¢$e5rj&o +@w,(,55Vie,!< +bHgCNGbhp]c> dC 뇾syeok+#0i¿ UD7Г$ +[x: 1A ޮi ԑ#lU55BfwH 4Ӳix2{AcS t}cI +*U DݨWBL`|a"kltmJ !V>9ׂ}0B׉ nL;Vx.{M*8*π1TLTKsGMEd+C=f0YN2Hs'{;H3@B;cfG[R7(i6q DIG((f}LW*QLCIPH'Jf_S'2,~bkW!K[/#K8!Nh~ueԈ+~ 1^Kr|NHt5f#7n \yp6g^0c YEvo  ~ hw eucJtL64̞@+3&&XQR /dà= +ìaV2=Q_B $|Hl̘cV 8[v(1'pP@gD#6”sQDRa&0LNސtk.PoͤJK(͟hOۧ:Eh>tk|>lFPGR? + +QwC_(:.wYBC"sp{2Go >RGhec4u>焗9>tY>& pq~%?t8#<:»7\jo]87hra|Re{٭ jYO?*@0[ƿX1Z(0p\)[uyM 'TJx}___vHˋc//P/خߵ..協7W43̏0N켫+WuVWY `YW:[_ힱ[W3+.рn'V]= U\Y+Ue(ڪu'j +Y_7<ު+k@VUCV՛ UTՉUSR pzjQ** +ME5QzjbǑMGQy?EuPU#70PZl' + `-SSwQf5jJto05BA L})%}YJdJzۑB7J1hEJ*4T` rR ++Ŷ'|?(mJg(58 BE]-#hh|x&M&IE=~R(hQP>#.E l +y,* +k&g"|z'] mz9眡5g + +67#Ojn }%&|''8Esv&дLCgdfcf|;NM]יІ ,㌉ӗqfMS3&g\&eXk4u%XpgH61%~i ^(ԍ<,cWZ0' խT`b"pw;iGJ:R$s҄%IGIARf3I):%Jd#%)P! +#5.GGLJYN͓;O~2g"p%CXI[%#E# )$%bb D\C=>JT(R$(e!~i >!%({ )xM]DE9qQ@(ƝC:U+eita|T(w#wrlQ4 "`d vl ##f)CF _d\쌋ael^\t͸hԸxb""a)?dcMQb"VLԘHZ(&~\Аd0BחpxP$EP<@w sʮaa臅.$aI`H +C8pP< 쎊|@/0pYs<( " k0D@ E? N }+* -'v@~H{~bM(P$/*_canACO :Ga`^=0x Bݬ}tǍ_Z,0/臩_䀃㋡>Q~z9>?<|{vp.j {O @^msw)Ob=h^ %'4mT B^\ݝLuvhwsBؼ"y 6^ꤤg astqagͼݝtݝ^[2$mnNi|:Ovpzsq5h˂pѭ$Ňjl! KPN&PBÂF(mIA3s\auZ{s +sK?,641]"e34= xR5hj+J^ɱmEnoMffgǜeliit+QkҸ+2@rbPKӟ@f + rRN`E, ^X+"dbS n- %cd;acOAiV22kZt bgg"u`%"̢ dcqj/ghrhYT@|1"@a_ H0XD.l.3Xdbaʊ +&X2yq` O,[\PTpA~D@D +M|bl gV.|..@x;`ax (Ǻ~^,/U*{ڜ@`ch +endstream endobj 14 0 obj <>stream +!WJg8PQ"%.pC'HjjhC`%%5ρ;FI ,2Q95WSR(ݚƠMN()iriI53`>ԓ05-| 8P9pY$ d/?Jġ\p'U62Z+*Nz:qT-x)2Tϰc4JJ395'F)+%=8!Qe )H +ڞ k # ܀1PNĀvM)1삋Ȉ7A^dJ"";e~l(h%)m|6G@_{ۇPǧ +lzcRP,RK +2ppIm4*I=>t\QKt +LE @ߨ#%,>>:!˩1 JR<(_1%f؀@ dXAj#&Pu+AYDGgpŠ F$Ah@[P"I_erpB E%̃hCw aYBHAa ė@ܠyΫ]IBlC@]syQ#΍ Fhyҁq@C94s6pG~=B3@0/qll342}A1+BJB448[R݄ +ˀ! ěi⑑PeP "o׀lUq$ *0μDm]5 #!OL +F8;sa+**pa>E`ń.s""\{ͱX+*z\Ol1!Y}FCC+*;  {ˋ$qU &URƴ,mp,h-(0\@U?>ʉpkȔȇv +z` +%b8eF +jq0GCYАIQ6NOSǝ.G +%&F$bpP r.S"B@tQ?@ѱ_{,`T0HJtGk{@B1]L#AoAN +^ ‚xp12DP񎦠qwo@ PK  DTccHckJfBAj֗TbTc 뮂ZsWw̓Od/6o}zV;|b ~މx1ung܉TF(+z%3&.p<9CߐWwbĿ)Mhz1TmU#Q.7WYaV5Ka̭<d9a7T2"#v8W\V%.LY۰㠱dKJ'F3#s[1ٔXoPM*+VC)%!]=H*(D BB H@ + $,@  + (,@B̊uw#ͼRx$)VdnJZ DuW6k:_f^.NJ~F]d?bURDAc4z 63ZMױ2uP!jK-0_h!lgxv/~v(.+qKylw#:XS+Ns|}U=9{{"OçcbbRtCff&In2 0 0%_ q( +8CI A)af'2E 佸wSk$:Vk~Z$ZʱbV9HAɮSX8tW3m( 3=k;d5U7ۓޤGӪr잆6vX'xZ17;<IYwu^w5$/,~\w c ( (@0bDz} $%5<|&wݛ]gZa(57YQpa Ưȁ_(qvnQLR/1 +ۛu~Iy=߬ \Zx̤oTJF ŜGvp{e{cWUz.rB 4ixa +DSKr6m]J myu( XtѪxQzx^w[DC+C+Kvofةkj{ +Ca9D蕭!ڮVXBZ6l%dGz^ +M4伮Bڢ_[Ŋ&vp~lܳNsX ^~׍=6u40|PrC*k|FB)TE;2:]ZQ@|jpz)Ѭd41R& OۧY,ܜ +݂ ~c$5R2 +-$ +=7HK낤oYWwgJ62Tn]*#%[׿? H)1+ڰS#U`z+ں!w}|_l4_"C>mF#N+Eumt9:G)ͱW^XҀςEzIxDmBg֕l˺϶"T]2Eiѩl`r3RZA̅@uf3EV@uwKq6c:_ 6@8<31|u;6zO[Ym ^|N!SdZW!S]ru- W'y=#@14/]>;$KR04-ZiAN\V'bu:^.:PTW]&$dB s)1ݫ@̪Ы:%9865ՍDA3P,߈iՅ!-rXJ6]APv @Aڇu-mS6M!n3Oٛ:*IG*0u{dm r~`qe,y-V%48KdPEK/¨4l1k7 eQ8X.mԕ1iܖJ2vJOi:z(rZNԳE] pۏ\nYJL#Ņ u=boh## n*"L@B[<} +ҹ:ViӶ}:t?]= 3^=?y:h3$A Ρu[fOFN.+t&Xltђ0S9،ɆCsqjG[ǀ5tzC BNWT陡J$ϑJ=bt6b %:!S-2^D1"x޹R"ReɜOX#<,MT_uljH&DPF5-> F>?I1e_JʵRǑԻ"k%հ Y6hXS`,*SS@؁d)]VruF0+Xw~5Z7J?xiƩxepQ!pkJa8, vQG{PWpkw)aV-ML+U*E _[MX>4s$EoD}k#u 0Ԧɼ~DZͲ!wO +0یZpf!f>ϲX*=1}GcoםO1Pʲ/LauBkݢg0+Dxs|"T`)! + B!h)'*sT=&_O "XcgqpEF"$dژ9<q(3G_S?2d%^$Gm)7 đqL@?6N=Yu$^w +endstream endobj 67 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 CS 0.725 0.725 0.725 SCN +0.106 w 10 M 0 j 0 J []0 d +/Perceptual ri +/GS0 gs +q 1 0 0 1 92.5947 12.5728 cm +0 0 m +-57.189 0 l +-69.8 0 -80.022 10.223 -80.022 22.833 c +-80.022 80.022 l +-80.022 92.632 -69.8 102.854 -57.189 102.854 c +0 102.854 l +12.61 102.854 22.833 92.632 22.833 80.022 c +22.833 22.833 l +22.833 10.223 12.61 0 0 0 c +h +S +Q + +endstream endobj 68 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +63.875 20.434 m +39.901 20.434 20.397 39.978 20.397 64 c +20.397 88.022 39.901 107.566 63.875 107.566 c +87.849 107.566 107.352 88.022 107.352 64 c +107.352 39.978 87.849 20.434 63.875 20.434 c +63.875 109.038 m +39.091 109.038 18.927 88.834 18.927 64 c +18.927 39.166 39.091 18.962 63.875 18.962 c +88.659 18.962 108.822 39.166 108.822 64 c +108.822 88.834 88.659 109.038 63.875 109.038 c +W n +q +0 g +/Perceptual ri +/GS0 gs +45.8308182 0 0 -45.7046585 64.0319138 60.785759 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 69 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +85.176 98.025 m +85.184 97.989 85.19 97.953 85.197 97.917 c +85.333 97.888 85.337 97.919 85.176 98.025 c +73.385 72.454 m +72.834 62.609 l +79.336 55.526 l +72.834 48.443 l +77.132 43.761 l +72.834 39.079 l +73.385 29.315 l +55.092 29.315 l +55.092 72.454 l +47.819 76.176 42.86 84.219 42.86 93.463 c +42.86 95.01 43.077 96.44 43.295 97.985 c +44.084 98.133 56.843 103.481 y +56.737 102.903 71.74 102.903 71.634 103.481 c +83.961 98.177 85.197 97.917 v +85.51 96.398 85.617 94.987 85.617 93.463 c +85.617 84.219 80.548 76.176 73.385 72.454 c +43.301 98.025 m +43.299 98.012 43.297 97.998 43.295 97.985 c +43.243 97.975 43.243 97.987 43.301 98.025 c +W n +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 64.1787186 81.7712097 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 70 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 58.6266 96.2867 cm +0 0 m +1.997 0.363 4.084 0.545 6.081 0.545 c +8.169 0.636 10.166 0.363 12.163 0 c +12.253 -0.454 12.344 -0.908 12.344 -1.362 c +12.344 -4.812 9.53 -7.626 6.081 -7.626 c +2.632 -7.626 -0.182 -4.812 -0.182 -1.362 c +-0.182 -0.908 -0.091 -0.454 0 0 c +3.631 -52.836 -2.541 25.147 re +-15.956 -58.309 m +-23.026 -52.161 -27.502 -43.097 -27.502 -32.955 c +-27.502 -21.153 -21.33 -10.259 -11.164 -4.176 c +-11.346 -5.356 -11.527 -6.446 -11.527 -7.626 c +-11.527 -14.616 -7.443 -20.699 -1.452 -23.513 c +-1.452 -55.378 l +6.081 -62.913 l +13.615 -55.378 l +13.161 -48.751 l +16.701 -45.21 l +13.161 -41.67 l +18.516 -36.314 l +13.161 -30.957 l +13.615 -23.513 l +19.514 -20.699 23.69 -14.616 23.69 -7.626 c +23.69 -6.446 23.599 -5.356 23.327 -4.176 c +27.015 -6.403 30.178 -9.277 32.714 -12.603 c +26.582 -4.182 16.621 1.296 5.373 1.296 c +-13.263 1.296 -28.371 -13.739 -28.371 -32.287 c +-28.371 -42.782 -23.533 -52.151 -15.956 -58.309 c +f +Q + +endstream endobj 71 0 obj <>/XObject<>>>/Subtype/Form>>stream +q +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Perceptual ri +/GS0 gs +0 TL/Fm0 Do +Q +q +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Perceptual ri +/GS0 gs +0 TL/Fm1 Do +Q +q +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Perceptual ri +/GS0 gs +0 TL/Fm2 Do +Q + +endstream endobj 72 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64.819 97.953 m +64.542 97.953 64.263 97.948 63.983 97.936 c +63.977 97.936 l +61.953 97.936 59.828 97.745 57.847 97.385 c +57.58 97.336 l +57.526 97.069 l +57.433 96.604 57.337 96.123 57.337 95.629 c +57.337 91.955 60.326 88.965 64 88.965 c +67.674 88.965 70.663 91.955 70.663 95.629 c +70.663 96.123 70.567 96.603 70.474 97.068 c +70.42 97.335 l +70.153 97.385 l +68.606 97.666 66.763 97.953 64.819 97.953 c +64.819 97.553 m +66.613 97.554 68.347 97.307 70.081 96.991 c +70.172 96.537 70.263 96.083 70.263 95.629 c +70.263 92.18 67.449 89.365 64 89.365 c +60.551 89.365 57.737 92.18 57.737 95.629 c +57.737 96.083 57.828 96.537 57.919 96.991 c +59.916 97.354 62.003 97.536 64 97.536 c +64.274 97.548 64.548 97.553 64.819 97.553 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -8.9881496 -8.9881496 -0 64.0000153 97.9534912 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 73 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 103.84 m +42.032 103.84 24.16 85.968 24.16 64 c +24.16 42.032 42.032 24.16 64 24.16 c +85.968 24.16 103.84 42.032 103.84 64 c +103.84 85.968 85.968 103.84 64 103.84 c +64 103.593 m +85.831 103.593 103.593 85.831 103.593 64 c +103.593 42.168 85.831 24.407 64 24.407 c +42.168 24.407 24.407 42.168 24.407 64 c +24.407 85.831 42.168 103.593 64 103.593 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -79.6798859 -79.6798859 -0 63.9999008 103.8398895 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 74 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 103.822 m +42.042 103.822 24.178 85.958 24.178 64 c +24.178 42.042 42.042 24.178 64 24.178 c +85.958 24.178 103.822 42.042 103.822 64 c +103.822 85.958 85.958 103.822 64 103.822 c +64 103.422 m +85.738 103.422 103.422 85.738 103.422 64 c +103.422 42.262 85.738 24.578 64 24.578 c +42.262 24.578 24.578 42.262 24.578 64 c +24.578 85.738 42.262 103.422 64 103.422 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -79.6447525 -79.6447525 -0 63.9999008 103.8223267 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 75 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 97.883 m +45.317 97.883 30.116 82.683 30.116 64 c +30.116 45.317 45.317 30.117 64 30.117 c +82.683 30.117 97.883 45.317 97.883 64 c +97.883 82.683 82.683 97.883 64 97.883 c +64 97.583 m +82.518 97.583 97.583 82.518 97.583 64 c +97.583 45.482 82.518 30.417 64 30.417 c +45.482 30.417 30.417 45.482 30.417 64 c +30.417 82.518 45.482 97.583 64 97.583 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -67.7668991 -67.7668991 -0 63.9999008 97.8834 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 76 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +81.21 93.107 m +81.235 92.989 81.256 92.869 81.279 92.75 c +91.022 86.873 97.552 76.185 97.552 64 c +97.552 45.499 82.501 30.448 64 30.448 c +45.499 30.448 30.448 45.499 30.448 64 c +30.448 76.199 36.993 86.897 46.755 92.77 c +46.777 92.889 46.799 93.009 46.824 93.127 c +36.867 87.234 30.175 76.384 30.175 64 c +30.175 45.35 45.349 30.177 64 30.177 c +82.651 30.177 97.825 45.35 97.825 64 c +97.825 76.37 91.148 87.209 81.21 93.107 c +64 97.552 m +61.94 97.552 59.923 97.364 57.965 97.007 c +57.99 97.104 58.012 97.203 58.041 97.298 c +59.976 97.643 61.967 97.823 64 97.823 c +66.043 97.823 68.045 97.641 69.99 97.292 c +70.019 97.197 70.041 97.098 70.066 97.001 c +68.098 97.362 66.071 97.552 64 97.552 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -67.6468887 -67.6468887 -0 63.9999123 97.8234024 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 77 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +61.549 69.302 m +59.008 69.302 l +59.362 69.459 l +61.195 69.459 l +h +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -0.1565536 -0.1565536 -0 60.2786407 69.4586182 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 78 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +63.875 20.434 m +39.901 20.434 20.397 39.978 20.397 64 c +20.397 88.022 39.901 107.566 63.875 107.566 c +87.849 107.566 107.352 88.022 107.352 64 c +107.352 39.978 87.849 20.434 63.875 20.434 c +63.875 109.038 m +39.091 109.038 18.927 88.834 18.927 64 c +18.927 39.166 39.091 18.962 63.875 18.962 c +88.659 18.962 108.822 39.166 108.822 64 c +108.822 88.834 88.659 109.038 63.875 109.038 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -58.6434479 -58.6434479 -0 63.8746872 76.2690582 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 79 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 CS 0.058 0.058 0.052 SCN +0.1 w 10 M 0 j 0 J []0 d +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.8748 20.4342 cm +0 0 m +-23.974 0 -43.478 19.544 -43.478 43.566 c +-43.478 67.588 -23.974 87.132 0 87.132 c +23.974 87.132 43.478 67.588 43.478 43.566 c +43.478 19.544 23.974 0 0 0 c +h +0 88.604 m +-24.784 88.604 -44.947 68.4 -44.947 43.566 c +-44.947 18.732 -24.784 -1.473 0 -1.473 c +24.784 -1.473 44.947 18.732 44.947 43.566 c +44.947 68.4 24.784 88.604 0 88.604 c +h +S +Q + +endstream endobj 80 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +63.875 107.549 m +39.91 107.549 20.414 88.013 20.414 64 c +20.414 39.987 39.91 20.451 63.875 20.451 c +87.839 20.451 107.336 39.987 107.336 64 c +107.336 88.013 87.839 107.549 63.875 107.549 c +63.875 107.248 m +87.673 107.248 107.035 87.847 107.035 64 c +107.035 40.153 87.673 20.752 63.875 20.752 c +40.076 20.752 20.714 40.153 20.714 64 c +20.714 87.847 40.076 107.248 63.875 107.248 c +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974808 -87.0974808 -0 63.8746872 107.5486984 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 81 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 107.483 m +40.023 107.483 20.517 87.977 20.517 64 c +20.517 40.023 40.023 20.517 64 20.517 c +87.977 20.517 107.483 40.023 107.483 64 c +107.483 87.977 87.977 107.483 64 107.483 c +W n +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.2666092 71.6794434 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 82 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 103.84 m +42.042 103.84 24.178 85.968 24.178 64 c +24.178 42.032 42.042 24.16 64 24.16 c +85.958 24.16 103.822 42.032 103.822 64 c +103.822 85.968 85.958 103.84 64 103.84 c +64 20.5 m +40.014 20.5 20.5 40.014 20.5 64 c +20.5 87.986 40.014 107.5 64 107.5 c +87.986 107.5 107.5 87.986 107.5 64 c +107.5 40.014 87.986 20.5 64 20.5 c +W n +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3765182 64.8112564 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 83 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 64 103.6069 cm +0 0 m +-22.127 0 -40.129 -18.002 -40.129 -40.129 c +-40.129 -62.256 -22.127 -80.258 0 -80.258 c +22.127 -80.258 40.129 -62.256 40.129 -40.129 c +40.129 -18.002 22.127 0 0 0 c +f +Q + +endstream endobj 84 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 64 106.569 cm +0 0 m +-23.986 0 -43.5 -19.254 -43.5 -42.921 c +-43.5 -66.588 -23.986 -85.843 0 -85.843 c +23.986 -85.843 43.5 -66.588 43.5 -42.921 c +43.5 -19.254 23.986 0 0 0 c +-0 -86.069 m +-23.986 -86.069 -43.5 -66.555 -43.5 -42.569 c +-43.5 -18.583 -23.986 0.931 -0 0.931 c +23.986 0.931 43.5 -18.583 43.5 -42.569 c +43.5 -66.555 23.986 -86.069 -0 -86.069 c +f +Q + +endstream endobj 85 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 100.528 m +57.457 100.528 52.133 95.204 52.133 88.661 c +52.133 82.117 57.457 76.794 64 76.794 c +70.543 76.794 75.867 82.117 75.867 88.661 c +75.867 95.204 70.543 100.528 64 100.528 c +W n +q +0 g +/Perceptual ri +/GS0 gs +16.5319595 0 0 -16.4530048 64.1957092 91.2625198 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 86 0 obj <>stream +H FA6,cwF*|נM?p+g\kztaLﺘ6=碦o;K>} n`wLo#_3f|`[jGMﴵs0=< '4G`zhz3=H?iLO5}g(8  y@y@'< Oy@P< Oy +@': Ny@:)NyS@':)Nu +@P< Ny +@P':)NuS@P':)Nu +@P:) Ou +S@P<)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)Nu +S@P:)$;)Nu +S@i +H`o +S@@ؚPP:) G P:=6:=:=6:=Yvl +؍@Q@ H`'( $Ľ&PF;(`o ( $<Ľw@X(`a TVuT +XaH`M %tl +XH`9 rBX)H`!' Uq^X™(` ;9 H.(@wvEkm]$pC ۹: HV&}ۘ @0qkz^!lM5}(W{LӓLY22 /:~mmLg0=ՖO}\%ӣmdM/4=;˚>H[gSL5Msoh1(GpH~ +endstream endobj 53 0 obj [/Indexed 31 0 R 1 135 0 R] endobj 134 0 obj <>/Filter/FlateDecode/Height 502/Intent/Perceptual/Length 9936/Name/X/Subtype/Image/Type/XObject/Width 514>>stream +H엉BIguhPi]uuvv_g3ϣئj2ޠ2ߊƥ4PuyہRfWunkFvnF)j4\ݦz6opUҵ$Ly{4}f#y +6?Oۘn;o|[@|}4/PPpa3cp!G?j" B <gu[/O8ғUǁP E d~c~<T(B3P?Y}A8 A@^gyV3?8` +"nI;~}Yi` - $~|Y(Zj ` Xr Q>y/s,V%jAh  +A@>ySI֦SG b +ĀD!`O{{vޙ.z :,Q@At07~~>zϾӃ l1 +>, +& ;}67PիVrA@ +<@CCד&iQo")p@~LF p8gzq}ڝ~o/g(F `P8&,*O??>O΋{FyO!M@.U0 __~}4gP}+}9@ BC`I ` P??޳$GFH` 0 &4UPo $ +?Y}4gOPNgS.L0@9 b6r @@yY{r^ :o P ]U@ ho>zk!t)>lA@  @5xpTWW=#H 8  e@@] 5?>O֫T͐^%@  b jh 4?h>Y_>6Fŗ@` p1``$Pp_GyzOύ~'Ł@ 0 +8 fUAu P ,[~uWׯ4C{PQXpbp O ƍ@- `g~uTA(P"xD1q N]Ph[5M +QQ7)3{@@0Ɖ@@>xP>|t*Nςb0 8؄T + WETHBA `pH ]8vr+mPb?woi +i` $ U54bFJ@.zW q`p0 {@@ ow +Q`  f@&!@g@Q"G'Ph?|nb3U 1G45j +g6 Owvqp8!5@,x + ẀTjcE60/~! 5@Mc  :6 Ln ??n0"l +D+ `u؀0ph})!p &5M7< Or E  ?w0H`pQ@7A%#3`vnق`ߣNHAnރ S`#   `_aݾԪ<W h T"X\h 7L87ZXZ IX9! h M`f +$ g"&$kt>7!+ˋZz "v +DV]I@N +~U1b@ Fs@`M:@@@ݯ< +3GWB#U+j\_\F( $8h +=0\#4Ni_Vk- y w&iao\ [t =0hF@j +pc!G yN$3Ў *"נLt 7x,p ?L dx#S`=`#@w>( KQ"@2# #'o6+9{`^*ك03; #SE +|f: X1aɎW@֠N !?%3; pF2ƠA"Nnr;_(E@NH<"/g`T5S@{a@61u`G@`T!==B`BK ]z ;@;#`OB;X^M3;; u)q C NAŕ6]8뀺k +!{\Yw^KPfNt ! #(5P[M{B\"! vD0(PP|1@[0ށ(MI|1&%@OG\Y]"f  @: ~j ;pO(0vN}ox܎"ez <w_A p G/:1^1`/A逺_hڕ{;Cx=V@1ʆ/ <@nF TG'P"`\BlfG5CSp +R|N#itKӣ}ނH|R ܁G1>GI|B؂UI #;~^,0~!pYBڂ@%;p5) tz5r@GJ@w%Ƭ(h Vpw%%;P#0^yTBπG8K )%[Pj@9W7' s p Qv`= Sϥ<~@? ++S~FnASt lS s2fn6 i) P8:7" /<螜K7i`g܂eU8?; PJ`Ԁ}j V΀_qj xp +CقfS?!N^<~}Q>'$$4ӛqwľ4Hw쵾K>foK@/%@h5jek)xr7 9CP1O? k +&)1T)B3) d=|C`.32&)Poon3]=c@ +Mu +T{R@ LA(CAvvǠq +|`wy <)h綀Y<39u +h} +:{ + +oCA%`01 AkP@y:sk +2wXBJ@cpe x +AGڄֵq +#D*/Vj{ +Xlr +Je#1ƒlT5׷8vV.2R@xB!RgR+s)8>( >!'۳ S{}YG +XEpp#< ot~;(L mo"`gW ptn/^hN""OR(`5 x~Jl*JpJ +jCiN\PB6S? +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@У(= +@od:[(UB n+|6Oə+ٹhv" d %S|Ro)`e xzyn*|&EYl[†k!ۣs)w^LJ3 ؐ_%~Q@9Cx{iյ /Hϯ])oNfg _srU zt)u_fZ*dxc@)d:[(Uͭ2#ݬWJl*^)[ WET h-#^͚ [K[c L])PgRX$|&`h{e:ۖp4&+&U+@׭F\e#D*#4ZJ} P@p)) tZ`BmS99 ( {-%@c=6)!=1[ ,?cpR_־c`w<NzSs +} + @1 9!n4k + Xv x!xS`r=>83q +PژE0z + ,O|<3` {j +F)(π!8))(@C` Pf5#`$ 4|X2Jz7d3 g'o?w@^ o  ~bd 0Sh,{@C 3x0l@8r܃o@oAXV foL'==!@'nnig!@PCo@>o-ӧg?q  D do)7-Dv't~΀5P~7ق$g;V/3`}6ԿlA.ei>o=OY@ںnix~7@jnA {X'07'S|g `Iyjޟ@H‘Ѩ'ށWqOV lk7`<JOXL| [0W@ҏ ,20TK;pK[ Z[0[si>o!`=T2/W[0? #̴w :@yws >;O@zSف ݃]ӧ xOdUO8x@< ,,yV I l?=j zCKP={'@'0@y y g`U' #|)w|~(G@AR!0t@R<? 8=Ŝ|{[pg $9g 9ߵ%?0ƠyBPO 1=,G@ !`Q=?`LX@^w@U_?˅/#BBH|" +DđD eYIztW;1;;37>>uj\`kI {@8*cU-/;X !`zRL@eP7uG/\*`mP@e`44v]woS#!-u{@F +TFQ K@o0bBAVrM0 +3o-!eP h"Pt*@ +Z/a$5pp!/Bz*Pvmd5pdZOyAD20 /\}2%wE@ *"{ uWxt!NAϕ HJ1bU@ǫ6*_#Kc {eP'al TK,JXI=-_ \Y D**o@`%P0XB@TiF 8*1-x|H @i(t*p @`CP).m#zJ l)c +툀\o]c 0Pbzo' #gɔVnv<Oޞ_X*@?a(?J`p Mh9\ *06 +~go^ -p; %U>rN^IpaU b^䏆rrx@;[`G@"8{p(}6Ac C` +>Wα_` g(%RxU0Aoog +@W`Z`7m +r@1H |C +6KL. m 2Mpe`07O7%B``8% +ģI2@c@W3@}!P +'ݹ)@#6BM@1@mPA(G-8@6U͇ZCX[G2c@V0 A 9(L:</o@;0郴 8 Q Fp 8z"#?S$xhLu &U9 A ` +s$Z<c}؏F@'5 l6JC; `}78  (,`" =  |v_~? V0YZnԁȀ@ ` ( = 7 {CRp@b^@(0 A-j>p`U7("eB: +=f A@ P@0BET>$.ޓW2 A8 +Kp hp ,4~qT'?gaNn[Hp &Aadl<، +`GV@;&0vcZ1 H8Sz#'a>7@:`7K(@`T8kv|uo? (! VA@)@0 0K26X͇>@] @@@(@`XE60 |H6e`*H PCp\Gx# PϘ@$$0yqT \̇5C3%U "0F'} 19@}@CYHr Gxl8O֓H~7y  €8®<^zD?@r  :(` 'tLOmӟd |/  % Ib{2?/?h 0>"FAyy W~ +7 |2 P +pEV2 |꾳_@TfA( 04pqTOF+'}j}jgA ( ) ~O}3Ȁ BAk2=0_VAQJǕ'Pa?p9FA@@7{oσPA1` +=f/YH` x0?9@( ՜(\_c%s_;YmA!h^qޛMh AJaUcoS9_T( ʆ6>rTaPb?J!OZZj@B_I`]7-ZnQVLIm7ީkƩp@JӵcQ~0)6j>{յ=SS=ڒwS +endstream endobj 31 0 obj [/ICCBased 136 0 R] endobj 135 0 obj <>stream + +endstream endobj 136 0 obj <>stream +HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  + 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= +x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 +N')].uJr + wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km +endstream endobj 132 0 obj <> endobj 133 0 obj <> endobj 137 0 obj <> endobj 138 0 obj <> endobj 32 0 obj <> endobj 131 0 obj <> endobj 130 0 obj <> endobj 127 0 obj <> endobj 129 0 obj <> endobj 139 0 obj <> endobj 140 0 obj <> endobj 141 0 obj <> endobj 142 0 obj <> endobj 128 0 obj <> endobj 143 0 obj <> endobj 144 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3765182 64.8112564 cm +BX /Sh0 sh EX Q + +endstream endobj 145 0 obj <> endobj 146 0 obj <> endobj 147 0 obj <> endobj 148 0 obj <> endobj 149 0 obj <> endobj 150 0 obj <> endobj 124 0 obj <> endobj 126 0 obj <> endobj 151 0 obj <> endobj 152 0 obj <> endobj 125 0 obj <> endobj 153 0 obj <> endobj 154 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.2666092 71.6794434 cm +BX /Sh0 sh EX Q + +endstream endobj 155 0 obj <> endobj 156 0 obj <> endobj 157 0 obj <> endobj 158 0 obj <> endobj 122 0 obj <> endobj 117 0 obj <> endobj 159 0 obj <> endobj 160 0 obj <> endobj 123 0 obj <> endobj 161 0 obj <> endobj 162 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -87.0974808 -87.0974808 -0 63.8746872 107.5486984 cm +BX /Sh0 sh EX Q + +endstream endobj 163 0 obj <> endobj 164 0 obj <> endobj 165 0 obj <> endobj 166 0 obj <> endobj 121 0 obj <> endobj 118 0 obj <> endobj 120 0 obj <> endobj 167 0 obj <> endobj 168 0 obj <> endobj 119 0 obj <> endobj 169 0 obj <> endobj 170 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -58.6434479 -58.6434479 -0 63.8746872 76.2690582 cm +BX /Sh0 sh EX Q + +endstream endobj 171 0 obj <> endobj 172 0 obj <> endobj 173 0 obj <> endobj 115 0 obj <> endobj 116 0 obj <> endobj 174 0 obj <> endobj 175 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -0.1565536 -0.1565536 -0 60.2786407 69.4586182 cm +BX /Sh0 sh EX Q + +endstream endobj 176 0 obj <> endobj 112 0 obj <> endobj 114 0 obj <> endobj 177 0 obj <> endobj 113 0 obj <> endobj 178 0 obj <> endobj 179 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -67.6468887 -67.6468887 -0 63.9999123 97.8234024 cm +BX /Sh0 sh EX Q + +endstream endobj 180 0 obj <> endobj 181 0 obj <> endobj 182 0 obj <> endobj 183 0 obj <> endobj 110 0 obj <> endobj 103 0 obj <> endobj 184 0 obj <> endobj 185 0 obj <> endobj 111 0 obj <> endobj 186 0 obj <> endobj 187 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -67.7668991 -67.7668991 -0 63.9999008 97.8834 cm +BX /Sh0 sh EX Q + +endstream endobj 188 0 obj <> endobj 189 0 obj <> endobj 190 0 obj <> endobj 191 0 obj <> endobj 107 0 obj <> endobj 109 0 obj <> endobj 192 0 obj <> endobj 108 0 obj <> endobj 193 0 obj <> endobj 194 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -79.6447525 -79.6447525 -0 63.9999008 103.8223267 cm +BX /Sh0 sh EX Q + +endstream endobj 195 0 obj <> endobj 196 0 obj <> endobj 197 0 obj <> endobj 104 0 obj <> endobj 106 0 obj <> endobj 198 0 obj <> endobj 199 0 obj <> endobj 200 0 obj <> endobj 105 0 obj <> endobj 201 0 obj <> endobj 202 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -79.6798859 -79.6798859 -0 63.9999008 103.8398895 cm +BX /Sh0 sh EX Q + +endstream endobj 203 0 obj <> endobj 204 0 obj <> endobj 205 0 obj <> endobj 206 0 obj <> endobj 101 0 obj <> endobj 102 0 obj <> endobj 207 0 obj <> endobj 208 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -8.9881496 -8.9881496 -0 64.0000153 97.9534912 cm +BX /Sh0 sh EX Q + +endstream endobj 209 0 obj <> endobj 96 0 obj <> endobj 98 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +70.936 66.189 m +71.386 73.577 l +71.52 73.641 l +77.553 76.519 81.579 82.965 81.455 89.584 c +81.434 90.684 81.326 91.695 81.132 92.602 c +81.245 92.815 l +81.484 91.83 81.582 90.769 81.608 89.584 c +81.756 82.884 77.672 76.407 71.587 73.504 c +71.534 73.478 l +71.08 66.043 l +h +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -14.6765232 -14.6064301 -0 67.8957977 84.3313522 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 99 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +56.466 41.613 m +56.789 41.51 l +63.994 34.295 l +71.375 41.673 l +70.921 48.3 l +74.402 51.781 l +74.62 51.781 l +71.08 48.24 l +71.534 41.613 l +63.994 34.078 l +h +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -10.7909908 -10.7394543 -0 67.0767288 44.2208672 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 100 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +70.873 55.321 m +76.219 60.678 l +76.435 60.678 l +71.09 55.321 l +h +W n +q +0 g +/Perceptual ri +/GS0 gs +0 -4.5232949 -4.5016923 -0 72.1971588 59.7019844 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 215 0 obj <> endobj 212 0 obj <> endobj 217 0 obj <> endobj 218 0 obj <> endobj 216 0 obj <> endobj 219 0 obj <> endobj 220 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -4.5232949 -4.5016923 -0 72.1971588 59.7019844 cm +BX /Sh0 sh EX Q + +endstream endobj 221 0 obj <> endobj 222 0 obj <> endobj 223 0 obj <> endobj 224 0 obj <> endobj 213 0 obj <> endobj 214 0 obj <> endobj 225 0 obj <> endobj 226 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -10.7909908 -10.7394543 -0 67.0767288 44.2208672 cm +BX /Sh0 sh EX Q + +endstream endobj 227 0 obj <> endobj 210 0 obj <> endobj 211 0 obj <> endobj 228 0 obj <> endobj 229 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -14.6765232 -14.6064301 -0 67.8957977 84.3313522 cm +BX /Sh0 sh EX Q + +endstream endobj 230 0 obj <> endobj 97 0 obj <> endobj 95 0 obj <> endobj 92 0 obj <> endobj 94 0 obj <> endobj 231 0 obj <> endobj 232 0 obj <> endobj 233 0 obj <> endobj 93 0 obj <> endobj 234 0 obj <> endobj 235 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 64.1787186 81.7712097 cm +BX /Sh0 sh EX Q + +endstream endobj 236 0 obj <> endobj 237 0 obj <> endobj 238 0 obj <> endobj 239 0 obj <> endobj 89 0 obj <> endobj 91 0 obj <> endobj 240 0 obj <> endobj 241 0 obj <> endobj 242 0 obj <> endobj 90 0 obj <> endobj 243 0 obj <> endobj 244 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +45.8308182 0 0 -45.7046585 64.0319138 60.785759 cm +BX /Sh0 sh EX Q + +endstream endobj 245 0 obj <> endobj 246 0 obj <> endobj 247 0 obj <> endobj 248 0 obj <> endobj 249 0 obj <> endobj 88 0 obj <> endobj 64 0 obj <> endobj 39 0 obj <> endobj 40 0 obj <> endobj 65 0 obj <> endobj 66 0 obj <> endobj 254 0 obj <> endobj 253 0 obj <> endobj 255 0 obj <> endobj 256 0 obj <> endobj 257 0 obj <> endobj 252 0 obj <> endobj 258 0 obj <> endobj 251 0 obj <> endobj 259 0 obj <> endobj 250 0 obj <> endobj 260 0 obj <> endobj 24 0 obj <> endobj 25 0 obj <> endobj 26 0 obj <> endobj 265 0 obj [/View/Design] endobj 266 0 obj <>>> endobj 263 0 obj [/View/Design] endobj 264 0 obj <>>> endobj 261 0 obj [/View/Design] endobj 262 0 obj <>>> endobj 54 0 obj <> endobj 55 0 obj <> endobj 37 0 obj <> endobj 38 0 obj <> endobj 56 0 obj <> endobj 57 0 obj <> endobj 58 0 obj <> endobj 59 0 obj <> endobj 60 0 obj <> endobj 61 0 obj <> endobj 62 0 obj <> endobj 63 0 obj <> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 267 0 obj <> endobj 268 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +0 -0.1565536 -0.1565536 -0 60.2786407 44.1548843 cm +BX /Sh0 sh EX Q + +endstream endobj 269 0 obj <> endobj 270 0 obj <> endobj 271 0 obj <> endobj 87 0 obj [/ICCBased 136 0 R] endobj 49 0 obj <>stream +HlTˎ0+q+ⴂ(Zq2Bة~TY>]hy8zBedGTW|~O~Lןf7;W)FsB>B'ݼGkY]~WFBPT/F8Ɔ>DǻV"O]ga"P Q\T᧙+V299=+hWϊ~(6 W9069}3R.;  ѲGU(oAx܍]s%7$)tK}:儸j'q,\J۾}v'9!c;SnP2泏C`GYn^8cL;p +5'9em}{~> +endstream endobj 50 0 obj <> endobj 272 0 obj [/ICCBased 136 0 R] endobj 29 0 obj <>stream +HVn1 +Q5K{i)\ #h +]D-3IfHqy$s:\+|#m~ I^+m8K>bHEr + xS,]F7edo^zMNrH[S7,u,#(Sk<&(T'~K pXhbpv%"ݯ?]hQhK} N圓&dM(QͽV^kܨ?pwғi>ؿ;jyٕ͟9VjujUYcbvջS pᵁ2A^Z:ظU 1RoEaFK'V$]X6odٯ +OB+5:VjaK[~3 ˼<+U Y'EU)ɤCJ @ "rlrE9fEP2G0hW9G8.Tqh Q RvDdB| NMX&ʠ }Kh(3GM L-)Ӥl%&b,P52*&΢&R28ko^=Gfjm4HhBMH'cd})&CvD +ȝYAo.8k b5( \.q~&D{t ťbnȡz:2q#E (P4b6 ܻp-A\'lNhYR6$eLRD5y/[A. #Y\ֵ'/ +endstream endobj 30 0 obj <> endobj 42 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 107.483 m +40.023 107.483 20.517 87.977 20.517 64 c +20.517 40.023 40.023 20.517 64 20.517 c +87.977 20.517 107.483 40.023 107.483 64 c +107.483 87.977 87.977 107.483 64 107.483 c +W n +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.26651 71.6794434 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 43 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 103.84 m +42.042 103.84 24.177 85.968 24.177 64 c +24.177 42.032 42.042 24.16 64 24.16 c +85.958 24.16 103.822 42.032 103.822 64 c +103.822 85.968 85.958 103.84 64 103.84 c +64 20.5 m +40.014 20.5 20.5 40.014 20.5 64 c +20.5 87.986 40.014 107.5 64 107.5 c +87.986 107.5 107.5 87.986 107.5 64 c +107.5 40.014 87.986 20.5 64 20.5 c +W n +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3764191 64.8112564 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 44 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 103.6069 cm +0 0 m +-22.127 0 -40.129 -18.002 -40.129 -40.129 c +-40.129 -62.256 -22.127 -80.258 0 -80.258 c +22.127 -80.258 40.129 -62.256 40.129 -40.129 c +40.129 -18.002 22.127 0 0 0 c +f +Q + +endstream endobj 45 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 63.9999 106.569 cm +0 0 m +-23.986 0 -43.5 -19.254 -43.5 -42.921 c +-43.5 -66.588 -23.986 -85.843 0 -85.843 c +23.986 -85.843 43.5 -66.588 43.5 -42.921 c +43.5 -19.254 23.986 0 0 0 c +0 -86.069 m +-23.986 -86.069 -43.5 -66.555 -43.5 -42.569 c +-43.5 -18.583 -23.986 0.931 0 0.931 c +23.986 0.931 43.5 -18.583 43.5 -42.569 c +43.5 -66.555 23.986 -86.069 0 -86.069 c +f +Q + +endstream endobj 46 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +64 100.528 m +57.456 100.528 52.133 95.204 52.133 88.661 c +52.133 82.117 57.456 76.794 64 76.794 c +70.543 76.794 75.867 82.117 75.867 88.661 c +75.867 95.204 70.543 100.528 64 100.528 c +W n +q +0 g +/Perceptual ri +/GS0 gs +16.5319595 0 0 -16.4530048 64.19561 91.2625198 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 47 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +84.937 98.025 m +84.945 97.989 84.951 97.953 84.959 97.917 c +85.094 97.888 85.099 97.919 84.937 98.025 c +73.146 72.454 m +72.595 62.609 l +79.097 55.526 l +72.595 48.443 l +76.893 43.761 l +72.595 39.079 l +73.146 29.315 l +54.853 29.315 l +54.853 72.454 l +47.58 76.176 42.621 84.219 42.621 93.463 c +42.621 95.01 42.838 96.44 43.056 97.985 c +43.845 98.133 56.605 103.481 y +56.499 102.903 71.501 102.903 71.395 103.481 c +83.722 98.177 84.959 97.917 v +85.272 96.398 85.378 94.987 85.378 93.463 c +85.378 84.219 80.309 76.176 73.146 72.454 c +43.062 98.025 m +43.06 98.012 43.058 97.998 43.056 97.985 c +43.005 97.975 43.004 97.987 43.062 98.025 c +W n +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 63.9400253 81.7712097 cm +BX /Sh0 sh EX Q +Q + +endstream endobj 48 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0.058 0.058 0.052 scn +/Perceptual ri +/GS0 gs +q 1 0 0 1 58.6104 96.2867 cm +0 0 m +1.997 0.363 4.084 0.545 6.081 0.545 c +8.169 0.636 10.166 0.363 12.163 0 c +12.253 -0.454 12.344 -0.908 12.344 -1.362 c +12.344 -4.812 9.53 -7.626 6.081 -7.626 c +2.632 -7.626 -0.182 -4.812 -0.182 -1.362 c +-0.182 -0.908 -0.091 -0.454 0 0 c +3.631 -52.836 -2.541 25.147 re +-15.956 -58.309 m +-23.026 -52.161 -27.502 -43.097 -27.502 -32.955 c +-27.502 -21.153 -21.33 -10.259 -11.164 -4.176 c +-11.346 -5.356 -11.527 -6.446 -11.527 -7.626 c +-11.527 -14.616 -7.443 -20.699 -1.452 -23.513 c +-1.452 -55.378 l +6.081 -62.913 l +13.615 -55.378 l +13.161 -48.751 l +16.701 -45.21 l +13.161 -41.67 l +18.516 -36.314 l +13.161 -30.957 l +13.615 -23.513 l +19.514 -20.699 23.69 -14.616 23.69 -7.626 c +23.69 -6.446 23.599 -5.356 23.327 -4.176 c +27.015 -6.403 30.178 -9.277 32.714 -12.603 c +26.582 -4.182 16.621 1.296 5.373 1.296 c +-13.263 1.296 -28.371 -13.739 -28.371 -32.287 c +-28.371 -42.782 -23.533 -52.151 -15.956 -58.309 c +f +Q + +endstream endobj 284 0 obj <> endobj 281 0 obj <> endobj 283 0 obj <> endobj 285 0 obj <> endobj 282 0 obj <> endobj 286 0 obj <> endobj 287 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +23.1531162 0 0 -38.4417267 63.9400253 81.7712097 cm +BX /Sh0 sh EX Q + +endstream endobj 288 0 obj <> endobj 289 0 obj <> endobj 290 0 obj <> endobj 280 0 obj <> endobj 279 0 obj <> endobj 278 0 obj <> endobj 276 0 obj <> endobj 277 0 obj <> endobj 291 0 obj <> endobj 292 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +43.5819511 0 0 -43.3738098 63.3764191 64.8112564 cm +BX /Sh0 sh EX Q + +endstream endobj 293 0 obj <> endobj 274 0 obj <> endobj 275 0 obj <> endobj 294 0 obj <> endobj 295 0 obj <>/Shading<>>>/Subtype/Form>>stream +q +0 g +/Perceptual ri +/GS0 gs +52.3910713 0 0 -52.1408577 61.26651 71.6794434 cm +BX /Sh0 sh EX Q + +endstream endobj 296 0 obj <> endobj 41 0 obj <> endobj 297 0 obj <> endobj 298 0 obj <> endobj 299 0 obj <> endobj 36 0 obj <> endobj 273 0 obj [/ICCBased 136 0 R] endobj 27 0 obj [26 0 R 25 0 R 24 0 R] endobj 300 0 obj <> endobj xref +0 301 +0000000004 65535 f +0000000016 00000 n +0000000175 00000 n +0000018904 00000 n +0000000000 00000 f +0000018969 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000022143 00000 n +0000000000 00000 f +0000022216 00000 n +0000022390 00000 n +0000025144 00000 n +0000090733 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000019575 00000 n +0000146050 00000 n +0000146134 00000 n +0000146216 00000 n +0000159188 00000 n +0000019982 00000 n +0000149910 00000 n +0000150797 00000 n +0000120860 00000 n +0000124036 00000 n +0000148071 00000 n +0000148195 00000 n +0000148318 00000 n +0000159027 00000 n +0000146873 00000 n +0000146998 00000 n +0000144208 00000 n +0000144352 00000 n +0000158521 00000 n +0000150860 00000 n +0000151380 00000 n +0000152040 00000 n +0000152512 00000 n +0000153141 00000 n +0000153663 00000 n +0000154638 00000 n +0000149190 00000 n +0000149810 00000 n +0000020902 00000 n +0000022081 00000 n +0000110638 00000 n +0000146647 00000 n +0000146759 00000 n +0000147123 00000 n +0000147246 00000 n +0000147363 00000 n +0000147479 00000 n +0000147593 00000 n +0000147720 00000 n +0000147833 00000 n +0000147958 00000 n +0000144064 00000 n +0000144504 00000 n +0000144656 00000 n +0000095503 00000 n +0000096053 00000 n +0000096773 00000 n +0000097741 00000 n +0000098945 00000 n +0000099375 00000 n +0000100430 00000 n +0000101115 00000 n +0000101819 00000 n +0000102505 00000 n +0000103540 00000 n +0000103949 00000 n +0000104675 00000 n +0000105345 00000 n +0000106071 00000 n +0000106593 00000 n +0000107253 00000 n +0000107720 00000 n +0000108347 00000 n +0000108872 00000 n +0000149154 00000 n +0000144001 00000 n +0000142413 00000 n +0000142988 00000 n +0000142476 00000 n +0000140932 00000 n +0000141498 00000 n +0000140995 00000 n +0000140869 00000 n +0000136563 00000 n +0000140754 00000 n +0000136626 00000 n +0000137242 00000 n +0000137743 00000 n +0000135939 00000 n +0000136003 00000 n +0000132059 00000 n +0000134492 00000 n +0000135026 00000 n +0000134556 00000 n +0000133328 00000 n +0000133658 00000 n +0000133392 00000 n +0000131995 00000 n +0000132420 00000 n +0000130706 00000 n +0000131062 00000 n +0000130770 00000 n +0000130082 00000 n +0000130146 00000 n +0000127595 00000 n +0000128877 00000 n +0000129274 00000 n +0000128941 00000 n +0000128813 00000 n +0000127531 00000 n +0000127928 00000 n +0000126159 00000 n +0000126618 00000 n +0000126223 00000 n +0000124277 00000 n +0000125043 00000 n +0000124341 00000 n +0000124213 00000 n +0000124149 00000 n +0000123602 00000 n +0000123666 00000 n +0000110682 00000 n +0000120896 00000 n +0000120952 00000 n +0000123819 00000 n +0000123916 00000 n +0000124494 00000 n +0000124665 00000 n +0000124792 00000 n +0000124916 00000 n +0000125160 00000 n +0000125215 00000 n +0000125525 00000 n +0000125603 00000 n +0000125760 00000 n +0000125931 00000 n +0000126006 00000 n +0000126084 00000 n +0000126376 00000 n +0000126497 00000 n +0000126735 00000 n +0000126790 00000 n +0000127100 00000 n +0000127178 00000 n +0000127335 00000 n +0000127456 00000 n +0000127740 00000 n +0000127837 00000 n +0000128045 00000 n +0000128100 00000 n +0000128414 00000 n +0000128492 00000 n +0000128641 00000 n +0000128738 00000 n +0000129086 00000 n +0000129183 00000 n +0000129391 00000 n +0000129446 00000 n +0000129758 00000 n +0000129836 00000 n +0000129985 00000 n +0000130263 00000 n +0000130318 00000 n +0000130628 00000 n +0000130915 00000 n +0000131179 00000 n +0000131234 00000 n +0000131546 00000 n +0000131624 00000 n +0000131773 00000 n +0000131920 00000 n +0000132204 00000 n +0000132325 00000 n +0000132537 00000 n +0000132592 00000 n +0000132901 00000 n +0000132979 00000 n +0000133128 00000 n +0000133249 00000 n +0000133537 00000 n +0000133775 00000 n +0000133830 00000 n +0000134144 00000 n +0000134222 00000 n +0000134371 00000 n +0000134701 00000 n +0000134822 00000 n +0000134925 00000 n +0000135143 00000 n +0000135198 00000 n +0000135512 00000 n +0000135590 00000 n +0000135739 00000 n +0000135860 00000 n +0000136120 00000 n +0000136175 00000 n +0000136485 00000 n +0000140128 00000 n +0000140192 00000 n +0000138216 00000 n +0000139502 00000 n +0000139566 00000 n +0000138152 00000 n +0000138585 00000 n +0000138369 00000 n +0000138490 00000 n +0000138702 00000 n +0000138757 00000 n +0000139067 00000 n +0000139145 00000 n +0000139302 00000 n +0000139423 00000 n +0000139683 00000 n +0000139738 00000 n +0000140050 00000 n +0000140309 00000 n +0000140364 00000 n +0000140676 00000 n +0000141147 00000 n +0000141268 00000 n +0000141377 00000 n +0000141614 00000 n +0000141669 00000 n +0000141979 00000 n +0000142057 00000 n +0000142214 00000 n +0000142335 00000 n +0000142628 00000 n +0000142776 00000 n +0000142882 00000 n +0000143104 00000 n +0000143159 00000 n +0000143468 00000 n +0000143546 00000 n +0000143703 00000 n +0000143851 00000 n +0000143926 00000 n +0000145847 00000 n +0000145626 00000 n +0000145409 00000 n +0000144921 00000 n +0000144800 00000 n +0000145067 00000 n +0000145170 00000 n +0000145288 00000 n +0000145506 00000 n +0000145723 00000 n +0000145944 00000 n +0000146529 00000 n +0000146561 00000 n +0000146411 00000 n +0000146443 00000 n +0000146293 00000 n +0000146325 00000 n +0000148441 00000 n +0000148496 00000 n +0000148806 00000 n +0000148884 00000 n +0000149033 00000 n +0000149873 00000 n +0000159151 00000 n +0000157899 00000 n +0000157963 00000 n +0000157275 00000 n +0000157339 00000 n +0000157211 00000 n +0000157147 00000 n +0000157083 00000 n +0000155907 00000 n +0000156245 00000 n +0000155971 00000 n +0000155843 00000 n +0000156124 00000 n +0000156362 00000 n +0000156417 00000 n +0000156727 00000 n +0000156805 00000 n +0000156962 00000 n +0000157456 00000 n +0000157511 00000 n +0000157821 00000 n +0000158080 00000 n +0000158135 00000 n +0000158443 00000 n +0000158673 00000 n +0000158794 00000 n +0000158912 00000 n +0000159227 00000 n +trailer +<]>> +startxref +159415 +%%EOF diff --git a/share/branding/png/keepassxc-128x128.png b/share/branding/png/keepassxc-128x128.png new file mode 100644 index 000000000..88f358de7 Binary files /dev/null and b/share/branding/png/keepassxc-128x128.png differ diff --git a/share/branding/png/keepassxc-256x256.png b/share/branding/png/keepassxc-256x256.png new file mode 100644 index 000000000..335639784 Binary files /dev/null and b/share/branding/png/keepassxc-256x256.png differ diff --git a/share/branding/png/keepassxc-512x512.png b/share/branding/png/keepassxc-512x512.png new file mode 100644 index 000000000..4a2d14c95 Binary files /dev/null and b/share/branding/png/keepassxc-512x512.png differ diff --git a/share/branding/png/keepassxc-64x64.png b/share/branding/png/keepassxc-64x64.png new file mode 100644 index 000000000..bf6fdb81c Binary files /dev/null and b/share/branding/png/keepassxc-64x64.png differ diff --git a/share/branding/png/keepassxc-locked-128x128.png b/share/branding/png/keepassxc-locked-128x128.png new file mode 100644 index 000000000..7677d5d9e Binary files /dev/null and b/share/branding/png/keepassxc-locked-128x128.png differ diff --git a/share/branding/png/keepassxc-locked-256x256.png b/share/branding/png/keepassxc-locked-256x256.png new file mode 100644 index 000000000..749bbb186 Binary files /dev/null and b/share/branding/png/keepassxc-locked-256x256.png differ diff --git a/share/branding/png/keepassxc-locked-512x512.png b/share/branding/png/keepassxc-locked-512x512.png new file mode 100644 index 000000000..85b75de52 Binary files /dev/null and b/share/branding/png/keepassxc-locked-512x512.png differ diff --git a/share/branding/png/keepassxc-locked-64x64.png b/share/branding/png/keepassxc-locked-64x64.png new file mode 100644 index 000000000..2621def2e Binary files /dev/null and b/share/branding/png/keepassxc-locked-64x64.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-128x128.png b/share/branding/png/keepassxc-monochrome-dark-128x128.png new file mode 100644 index 000000000..4e67b878f Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-128x128.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-256x256.png b/share/branding/png/keepassxc-monochrome-dark-256x256.png new file mode 100644 index 000000000..c4a078505 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-256x256.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-512x512.png b/share/branding/png/keepassxc-monochrome-dark-512x512.png new file mode 100644 index 000000000..fea1174ef Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-512x512.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-64x64.png b/share/branding/png/keepassxc-monochrome-dark-64x64.png new file mode 100644 index 000000000..a723fc647 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-64x64.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-locked-128x128.png b/share/branding/png/keepassxc-monochrome-dark-locked-128x128.png new file mode 100644 index 000000000..c22815b5b Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-locked-128x128.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-locked-256x256.png b/share/branding/png/keepassxc-monochrome-dark-locked-256x256.png new file mode 100644 index 000000000..c4525b651 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-locked-256x256.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-locked-512x512.png b/share/branding/png/keepassxc-monochrome-dark-locked-512x512.png new file mode 100644 index 000000000..323dbede8 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-locked-512x512.png differ diff --git a/share/branding/png/keepassxc-monochrome-dark-locked-64x64.png b/share/branding/png/keepassxc-monochrome-dark-locked-64x64.png new file mode 100644 index 000000000..04c1246f4 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-dark-locked-64x64.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-128x128.png b/share/branding/png/keepassxc-monochrome-light-128x128.png new file mode 100644 index 000000000..c5ac3c42c Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-128x128.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-256x256.png b/share/branding/png/keepassxc-monochrome-light-256x256.png new file mode 100644 index 000000000..7140833d7 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-256x256.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-512x512.png b/share/branding/png/keepassxc-monochrome-light-512x512.png new file mode 100644 index 000000000..1abc22225 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-512x512.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-64x64.png b/share/branding/png/keepassxc-monochrome-light-64x64.png new file mode 100644 index 000000000..9755f0982 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-64x64.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-locked-128x128.png b/share/branding/png/keepassxc-monochrome-light-locked-128x128.png new file mode 100644 index 000000000..3ea3e6e04 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-locked-128x128.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-locked-256x256.png b/share/branding/png/keepassxc-monochrome-light-locked-256x256.png new file mode 100644 index 000000000..9f6004f53 Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-locked-256x256.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-locked-512x512.png b/share/branding/png/keepassxc-monochrome-light-locked-512x512.png new file mode 100644 index 000000000..486a3b3ef Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-locked-512x512.png differ diff --git a/share/branding/png/keepassxc-monochrome-light-locked-64x64.png b/share/branding/png/keepassxc-monochrome-light-locked-64x64.png new file mode 100644 index 000000000..dcd4ad40d Binary files /dev/null and b/share/branding/png/keepassxc-monochrome-light-locked-64x64.png differ diff --git a/share/branding/png/macos-128x128.png b/share/branding/png/macos-128x128.png new file mode 100644 index 000000000..02d22c1b6 Binary files /dev/null and b/share/branding/png/macos-128x128.png differ diff --git a/share/branding/png/macos-256x256.png b/share/branding/png/macos-256x256.png new file mode 100644 index 000000000..1726dab67 Binary files /dev/null and b/share/branding/png/macos-256x256.png differ diff --git a/share/branding/png/macos-512x512.png b/share/branding/png/macos-512x512.png new file mode 100644 index 000000000..dfe4f6f0f Binary files /dev/null and b/share/branding/png/macos-512x512.png differ diff --git a/share/branding/png/macos-64x64.png b/share/branding/png/macos-64x64.png new file mode 100644 index 000000000..b76ccc951 Binary files /dev/null and b/share/branding/png/macos-64x64.png differ diff --git a/share/branding/png/macos-monochrome-dark-128x128.png b/share/branding/png/macos-monochrome-dark-128x128.png new file mode 100644 index 000000000..dd30e51c8 Binary files /dev/null and b/share/branding/png/macos-monochrome-dark-128x128.png differ diff --git a/share/branding/png/macos-monochrome-dark-256x256.png b/share/branding/png/macos-monochrome-dark-256x256.png new file mode 100644 index 000000000..d769b171a Binary files /dev/null and b/share/branding/png/macos-monochrome-dark-256x256.png differ diff --git a/share/branding/png/macos-monochrome-dark-512x512.png b/share/branding/png/macos-monochrome-dark-512x512.png new file mode 100644 index 000000000..b849f199f Binary files /dev/null and b/share/branding/png/macos-monochrome-dark-512x512.png differ diff --git a/share/branding/png/macos-monochrome-dark-64x64.png b/share/branding/png/macos-monochrome-dark-64x64.png new file mode 100644 index 000000000..9811284c2 Binary files /dev/null and b/share/branding/png/macos-monochrome-dark-64x64.png differ diff --git a/share/branding/scalable/keepassxc-monochrome-dark.svg b/share/branding/scalable/keepassxc-monochrome-dark.svg new file mode 100644 index 000000000..51e107088 --- /dev/null +++ b/share/branding/scalable/keepassxc-monochrome-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/branding/scalable/keepassxc-monochrome-light.svg b/share/branding/scalable/keepassxc-monochrome-light.svg new file mode 100644 index 000000000..35c886cd7 --- /dev/null +++ b/share/branding/scalable/keepassxc-monochrome-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/branding/scalable/keepassxc.svg b/share/branding/scalable/keepassxc.svg new file mode 100644 index 000000000..aad6c5a16 --- /dev/null +++ b/share/branding/scalable/keepassxc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/branding/scalable/macos-monochrome-dark.svg b/share/branding/scalable/macos-monochrome-dark.svg new file mode 100644 index 000000000..2d8e45a1f --- /dev/null +++ b/share/branding/scalable/macos-monochrome-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/branding/scalable/macos.svg b/share/branding/scalable/macos.svg new file mode 100644 index 000000000..f1d48eebc --- /dev/null +++ b/share/branding/scalable/macos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/demo.kdbx b/share/demo.kdbx index b1a37e99f..0d47152db 100644 Binary files a/share/demo.kdbx and b/share/demo.kdbx differ diff --git a/share/demo.key b/share/demo.key deleted file mode 100644 index d97c5eada..000000000 --- a/share/demo.key +++ /dev/null @@ -1 +0,0 @@ -secret diff --git a/share/demo.old.kdbx b/share/demo.old.kdbx deleted file mode 100644 index 14c034ff8..000000000 Binary files a/share/demo.old.kdbx and /dev/null differ diff --git a/share/demo_readme.md b/share/demo_readme.md new file mode 100644 index 000000000..4553adaf3 --- /dev/null +++ b/share/demo_readme.md @@ -0,0 +1,3 @@ +This is a demo database to showcase some of the features of KeePassXC + +The password to unlock demo.kdbx is: secret diff --git a/share/icons/application/256x256/apps/keepassxc.png b/share/icons/application/256x256/apps/keepassxc.png index 91a232118..335639784 100644 Binary files a/share/icons/application/256x256/apps/keepassxc.png and b/share/icons/application/256x256/apps/keepassxc.png differ diff --git a/share/icons/application/scalable/actions/arrow-collapse-down.svg b/share/icons/application/scalable/actions/arrow-collapse-down.svg new file mode 100644 index 000000000..27cfc42f2 --- /dev/null +++ b/share/icons/application/scalable/actions/arrow-collapse-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/attributes-copy.svg b/share/icons/application/scalable/actions/attributes-copy.svg new file mode 100644 index 000000000..b4e4725b7 --- /dev/null +++ b/share/icons/application/scalable/actions/attributes-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/bitwarden.svg b/share/icons/application/scalable/actions/bitwarden.svg new file mode 100644 index 000000000..9d22e9adc --- /dev/null +++ b/share/icons/application/scalable/actions/bitwarden.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/csv.svg b/share/icons/application/scalable/actions/csv.svg new file mode 100644 index 000000000..e76afb0a8 --- /dev/null +++ b/share/icons/application/scalable/actions/csv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/database-search.svg b/share/icons/application/scalable/actions/database-search.svg new file mode 100644 index 000000000..a1a30a675 --- /dev/null +++ b/share/icons/application/scalable/actions/database-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/database-settings.svg b/share/icons/application/scalable/actions/database-settings.svg new file mode 100644 index 000000000..7bd0b9cab --- /dev/null +++ b/share/icons/application/scalable/actions/database-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/entry-delete.svg b/share/icons/application/scalable/actions/entry-delete.svg index 66ae96f1b..f052113af 100644 --- a/share/icons/application/scalable/actions/entry-delete.svg +++ b/share/icons/application/scalable/actions/entry-delete.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/entry-expire.svg b/share/icons/application/scalable/actions/entry-expire.svg new file mode 100644 index 000000000..a0a9ad53b --- /dev/null +++ b/share/icons/application/scalable/actions/entry-expire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/lock-open-alert.svg b/share/icons/application/scalable/actions/lock-open-alert.svg new file mode 100644 index 000000000..348537f09 --- /dev/null +++ b/share/icons/application/scalable/actions/lock-open-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/lock-open.svg b/share/icons/application/scalable/actions/lock-open.svg new file mode 100644 index 000000000..ffe75da95 --- /dev/null +++ b/share/icons/application/scalable/actions/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/lock.svg b/share/icons/application/scalable/actions/lock.svg new file mode 100644 index 000000000..5c0eb3f66 --- /dev/null +++ b/share/icons/application/scalable/actions/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/onepassword.svg b/share/icons/application/scalable/actions/onepassword.svg new file mode 100644 index 000000000..b43237abc --- /dev/null +++ b/share/icons/application/scalable/actions/onepassword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/passkey.svg b/share/icons/application/scalable/actions/passkey.svg new file mode 100644 index 000000000..c1345f1f2 --- /dev/null +++ b/share/icons/application/scalable/actions/passkey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/proton.svg b/share/icons/application/scalable/actions/proton.svg new file mode 100644 index 000000000..89515ddec --- /dev/null +++ b/share/icons/application/scalable/actions/proton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/qrcode.svg b/share/icons/application/scalable/actions/qrcode.svg new file mode 100644 index 000000000..7778d1054 --- /dev/null +++ b/share/icons/application/scalable/actions/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/remote-sync.svg b/share/icons/application/scalable/actions/remote-sync.svg new file mode 100644 index 000000000..77b691b1d --- /dev/null +++ b/share/icons/application/scalable/actions/remote-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/reports.svg b/share/icons/application/scalable/actions/reports.svg index 3d62971d2..545352534 100644 --- a/share/icons/application/scalable/actions/reports.svg +++ b/share/icons/application/scalable/actions/reports.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/tag-multiple.svg b/share/icons/application/scalable/actions/tag-multiple.svg new file mode 100644 index 000000000..925e47ed1 --- /dev/null +++ b/share/icons/application/scalable/actions/tag-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/totp-copy-password.svg b/share/icons/application/scalable/actions/totp-copy-password.svg new file mode 100644 index 000000000..935501117 --- /dev/null +++ b/share/icons/application/scalable/actions/totp-copy-password.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/totp-copy.svg b/share/icons/application/scalable/actions/totp-copy.svg new file mode 100644 index 000000000..1f134017c --- /dev/null +++ b/share/icons/application/scalable/actions/totp-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/totp-edit.svg b/share/icons/application/scalable/actions/totp-edit.svg new file mode 100644 index 000000000..b3814fc4d --- /dev/null +++ b/share/icons/application/scalable/actions/totp-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/share/icons/application/scalable/actions/chronometer.svg b/share/icons/application/scalable/actions/totp.svg similarity index 100% rename from share/icons/application/scalable/actions/chronometer.svg rename to share/icons/application/scalable/actions/totp.svg diff --git a/share/icons/application/scalable/actions/yubikey-refresh.svg b/share/icons/application/scalable/actions/yubikey-refresh.svg new file mode 100644 index 000000000..4e51f88a1 --- /dev/null +++ b/share/icons/application/scalable/actions/yubikey-refresh.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/share/icons/application/scalable/apps/keepassxc-locked.svg b/share/icons/application/scalable/apps/keepassxc-locked.svg index 7d84d536e..a838d8ad4 100644 --- a/share/icons/application/scalable/apps/keepassxc-locked.svg +++ b/share/icons/application/scalable/apps/keepassxc-locked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc-monochrome-dark-locked.svg b/share/icons/application/scalable/apps/keepassxc-monochrome-dark-locked.svg index 128588928..e3d392c07 100644 --- a/share/icons/application/scalable/apps/keepassxc-monochrome-dark-locked.svg +++ b/share/icons/application/scalable/apps/keepassxc-monochrome-dark-locked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc-monochrome-dark.svg b/share/icons/application/scalable/apps/keepassxc-monochrome-dark.svg index 93452845a..51e107088 100644 --- a/share/icons/application/scalable/apps/keepassxc-monochrome-dark.svg +++ b/share/icons/application/scalable/apps/keepassxc-monochrome-dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc-monochrome-light-locked.svg b/share/icons/application/scalable/apps/keepassxc-monochrome-light-locked.svg index 79bc8d49d..8b2a3fad4 100644 --- a/share/icons/application/scalable/apps/keepassxc-monochrome-light-locked.svg +++ b/share/icons/application/scalable/apps/keepassxc-monochrome-light-locked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc-monochrome-light.svg b/share/icons/application/scalable/apps/keepassxc-monochrome-light.svg index 4e72e893b..35c886cd7 100644 --- a/share/icons/application/scalable/apps/keepassxc-monochrome-light.svg +++ b/share/icons/application/scalable/apps/keepassxc-monochrome-light.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc-unlocked.svg b/share/icons/application/scalable/apps/keepassxc-unlocked.svg index 88a440965..a377b782d 100644 --- a/share/icons/application/scalable/apps/keepassxc-unlocked.svg +++ b/share/icons/application/scalable/apps/keepassxc-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/apps/keepassxc.svg b/share/icons/application/scalable/apps/keepassxc.svg index 433a4041b..aad6c5a16 100644 --- a/share/icons/application/scalable/apps/keepassxc.svg +++ b/share/icons/application/scalable/apps/keepassxc.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/share/icons/application/scalable/mimetypes/application-x-keepassxc.svg b/share/icons/application/scalable/mimetypes/application-x-keepassxc.svg index 4b33c5a69..f846a4e46 100644 --- a/share/icons/application/scalable/mimetypes/application-x-keepassxc.svg +++ b/share/icons/application/scalable/mimetypes/application-x-keepassxc.svg @@ -1,2 +1 @@ - - + \ No newline at end of file diff --git a/share/icons/icons.qrc b/share/icons/icons.qrc index 209a1d35c..e92c98a35 100644 --- a/share/icons/icons.qrc +++ b/share/icons/icons.qrc @@ -6,17 +6,22 @@ application/256x256/apps/keepassxc.png application/scalable/actions/application-exit.svg + application/scalable/actions/arrow-collapse-down.svg + application/scalable/actions/attributes-copy.svg application/scalable/actions/auto-type.svg + application/scalable/actions/bitwarden.svg application/scalable/actions/bugreport.svg application/scalable/actions/chevron-double-down.svg application/scalable/actions/chevron-double-right.svg - application/scalable/actions/chronometer.svg application/scalable/actions/clipboard-text.svg application/scalable/actions/configure.svg + application/scalable/actions/csv.svg application/scalable/actions/database-change-key.svg application/scalable/actions/database-lock.svg application/scalable/actions/database-lock-all.svg application/scalable/actions/database-merge.svg + application/scalable/actions/database-search.svg + application/scalable/actions/database-settings.svg application/scalable/actions/dialog-close.svg application/scalable/actions/dialog-ok.svg application/scalable/actions/document-close.svg @@ -35,6 +40,7 @@ application/scalable/actions/edit-clear-locationbar-rtl.svg application/scalable/actions/entry-clone.svg application/scalable/actions/entry-delete.svg + application/scalable/actions/entry-expire.svg application/scalable/actions/entry-restore.svg application/scalable/actions/entry-edit.svg application/scalable/actions/entry-new.svg @@ -52,17 +58,25 @@ application/scalable/actions/hibp.svg application/scalable/actions/lock-question.svg application/scalable/actions/keyboard-shortcuts.svg + application/scalable/actions/lock.svg + application/scalable/actions/lock-open.svg + application/scalable/actions/lock-open-alert.svg application/scalable/actions/message-close.svg application/scalable/actions/move-down.svg application/scalable/actions/move-up.svg application/scalable/actions/object-locked.svg application/scalable/actions/object-unlocked.svg + application/scalable/actions/onepassword.svg application/scalable/actions/paperclip.svg + application/scalable/actions/passkey.svg application/scalable/actions/password-copy.svg application/scalable/actions/password-generator.svg application/scalable/actions/password-show-off.svg application/scalable/actions/password-show-on.svg + application/scalable/actions/proton.svg + application/scalable/actions/qrcode.svg application/scalable/actions/refresh.svg + application/scalable/actions/remote-sync.svg application/scalable/actions/reports.svg application/scalable/actions/reports-exclude.svg application/scalable/actions/sort-alphabetical-ascending.svg @@ -72,13 +86,19 @@ application/scalable/actions/system-search.svg application/scalable/actions/system-software-update.svg application/scalable/actions/tag.svg + application/scalable/actions/tag-multiple.svg application/scalable/actions/tag-search.svg + application/scalable/actions/totp.svg + application/scalable/actions/totp-copy.svg + application/scalable/actions/totp-copy-password.svg + application/scalable/actions/totp-edit.svg application/scalable/actions/trash.svg application/scalable/actions/url-copy.svg application/scalable/actions/user-guide.svg application/scalable/actions/username-copy.svg application/scalable/actions/view-history.svg application/scalable/actions/web.svg + application/scalable/actions/yubikey-refresh.svg application/scalable/apps/freedesktop.svg application/scalable/apps/internet-web-browser.svg application/scalable/apps/keepassxc.svg diff --git a/share/linux/org.keepassxc.KeePassXC.appdata.xml b/share/linux/org.keepassxc.KeePassXC.appdata.xml index 0efc17c68..a38728f5e 100644 --- a/share/linux/org.keepassxc.KeePassXC.appdata.xml +++ b/share/linux/org.keepassxc.KeePassXC.appdata.xml @@ -5,10 +5,8 @@ KeePassXC CC-BY-3.0 GPL-3.0+ - - application/x-keepass2 -

Community-driven port of the Windows application “KeePass Password Safe” + Von der Community entwickelter Port der Windows Anwendung “KeePass Password Safe” KeePassXC Team

@@ -16,6 +14,12 @@ personal data management. It has a light interface, is cross-platform and published under the terms of the GNU General Public License.

+

+ KeePassXC ist eine Anwendung für Menschen, die extrem hohe Anforderungen + an die sichere Verwaltung von persönlichen Daten stellen. Sie hat eine leichtgewichtige + Benutzeroberfläche, ist auf vielen verschiedenen Plattformen verfügbar und + wird unter den Bedingungen der GNU General Public License veröffentlicht. +

org.keepassxc.KeePassXC.desktop @@ -25,31 +29,326 @@ https://keepassxc.org/docs#faq https://keepassxc.org/docs https://www.transifex.com/keepassxc/keepassxc + https://github.com/keepassxreboot/keepassxc + https://keepassxc.org/docs#contribute - https://keepassxc.org/images/screenshots/thumbs/welcome_screen.png - Create, Import or Open Databases - - - https://keepassxc.org/images/screenshots/thumbs/database_view.png + https://keepassxc.org/assets/img/screenshots/database_view.png Organize with Groups and Entries - https://keepassxc.org/images/screenshots/thumbs/edit_entry.png - Database Entry + https://keepassxc.org/assets/img/screenshots/unlock_database.png + Unlock database - https://keepassxc.org/images/screenshots/thumbs/edit_entry_icons.png + https://keepassxc.org/assets/img/screenshots/edit_entry_icons.png Icon Selection for Entry - https://keepassxc.org/images/screenshots/thumbs/password_generator_advanced.png + https://keepassxc.org/assets/img/screenshots/password_generator_advanced.png Password Generator + + +
    +
  • Placeholder for future release notes
  • +
+
+
+ + +
    +
  • Allow adjusting application font size [#11567]
  • +
  • Add Proton Pass importer [#11197]
  • +
  • Support KeePass2 TOTP settings [#11229]
  • +
  • Add New/Preview Entry Attachments dialog and functionality [#11637, #11699, #11650]
  • +
  • Add database name, color, and icon options for unlock view [#10819, #11725]
  • +
  • Show entry background color as column [#6798]
  • +
  • Use icons for password strength [#9844]
  • +
  • Add "Group Full Path" column in entry view [#10278]
  • +
  • Passphrase "MIXED case" Type [#11255]
  • +
  • Allow deleting extension plugin data from Browser Statistics [#11218]
  • +
  • Add --minimized option to keepassxc [#11693]
  • +
  • Implement T-CONV and T-REPLACE-RX entry placeholders [#11453]
  • +
  • Option to disable opening browser when URL field double-clicked [#11332]
  • +
  • Overhaul action states and add icons to toolbar [#11047]
  • +
  • Show character count in password generator dialog [#10940]
  • +
  • Add ability to expire entries from context menu [#8731]
  • +
  • Add copy field shortcuts to Auto-Type select dialog [#11518]
  • +
  • Passkeys: Add support for selecting group on creation [#11260]
  • +
  • Browser: Refactor Access Control Dialog [#9607]
  • +
  • Browser: Add support for URL wildcards and exact URL [#9835, #11752]
  • +
  • Browser: Allow groups to restrict by browser integration key [#9852]
  • +
  • CLI: Add `-d` dry-run shortcut to merge command [#11192]
  • +
  • CLI: HTML export [#11590]
  • +
  • macOS: Add option to disable database lock when switching user [#9707]
  • +
  • SSH Agent: Implement feature to clear all identities [#10649]
  • +
  • Major enhancements to documentation [#11745, #10875]
  • +
  • Various UI and style fixes [#11535, #11672, #11511, #11445, #11426, #11273, #11455, #11321, #11594, #11539, #11351, #11354, #10748, #11602, #11303, #11291, #10091, #9417]
  • +
  • Various improvements to tags [#11676, #11652, #11625]
  • +
  • Reset splitter sizes on database unlock [#11014]
  • +
  • Remember sort order in Auto-type popup dialog [#9508]
  • +
  • Fix database password clearing when modifying key file / hardware key [#11001]
  • +
  • Fix issues with reloading and handling of externally modified db file [#10612]
  • +
  • Support passkeys with Bitwarden import [#11401]
  • +
  • Fix various quirks with CSV import [#11787]
  • +
  • Show Auto-Type select dialog even if window title is empty [#11603]
  • +
  • Refactor hardware key code to avoid deadlock [#11703, #10872]
  • +
  • Show a clear error if hardware key is found slots are not configured [#11609]
  • +
  • Fix signal/slot disconnect when opening import wizard [#11039]
  • +
  • Fix setting window title as modified [#11542]
  • +
  • Fix assert hit when viewing entry history [#11413]
  • +
  • Fix multiple crashes on Linux [#11513]
  • +
  • Fix backup file path time substitution [#10834]
  • +
  • Prevent long-running threads from deadlocking the program with only 1 CPU [#11155]
  • +
  • Hide the menubar when menus lose focus (if toggled off) [#11355, #11605]
  • +
  • CLI: Restore the original codepage on windows [#11470]
  • +
  • Passkeys: Various fixes [#10934, #10951]
  • +
  • Browser: Fix cancel with database unlock dialog [#11435]
  • +
  • Browser: Resolve references in Access Confirm dialog [#11055]
  • +
  • SSH Agent: Add timeout to streams to prevent deadlock [#11290]
  • +
  • macOS: Replace legacy code for screen recording permissions [#11428]
  • +
  • macOS: Implement Secure Input Mode [#11623]
  • +
  • macOS: Fix showing ambigious name in settings [#11373]
  • +
  • macOS: Fix copy-to-clipboard shortcut in entry preview widget [#10966]
  • +
  • Linux: Prevent multiple lock requests [#11306]
  • +
  • Snap: Prevent need for snap helper script to configure browser extension [#10924]
  • +
  • Windows: Detect outdated VC Redist with MSI installer [#11469]
  • +
  • Windows: Additional exclusion fields for clipboard [#11521]
  • +
+
+
+ + +
    +
  • Passkeys: Ability to easily remove a passkey from an entry [#10777]
  • +
  • Snap: Use new desktop portal for native messaging integration [#10906]
  • +
  • Improve entry placeholder/reference feature [#10846]
  • +
  • Improve CSV importing when title field isn't specified [#10843]
  • +
  • Improve encrypted Bitwarden importing [#10800]
  • +
  • Improve database settings UX [#10821]
  • +
  • Improve handling of clipboard actions from entry preview [#10810]
  • +
  • Improve group/entry view resize behavior and set sensible defaults [#10641]
  • +
  • Passkeys: Fix incorrect username fill [#10874]
  • +
  • Passkeys: Return additional data to the extension [#10857]
  • +
  • Fix password clear timer inconsistency on unlock view [#10708]
  • +
  • Fix portability check [#10760]
  • +
  • Fix page overflow on HTML exports [#10735]
  • +
  • Fix broken builds when using system provided zxcvbn [#10717]
  • +
  • Fix copy password button when text is selected [#10853]
  • +
  • Fix tab ordering on application settings pages [#10907]
  • +
  • SSH Agent: Fix broken decrypt button [#10638]
  • +
  • Windows: Fix ALT Auto-Type modifier [#10795]
  • +
  • Windows: Fix wrong DACL memory size allocation [#10712]
  • +
  • macOS: Fix monospace font sizing [#10739]
  • +
  • Flatpak: Fix configuration settings off-by-one error [#10688]
  • +
  • BSD: Fix compiling with libusb implementation [#10736]
  • +
+
+
+ + +
    +
  • Add hotkey for showing search help [#10591]
  • +
  • Add hotkey for group switching (Ctrl+Shift+PgUp/PgDown) [#10625]
  • +
  • Add per-database auto-save delay setting [#9100]
  • +
  • Add setting to hide menubar [#10341]
  • +
  • Improve Bitwarden 1PUX import and support organization collections [#10499]
  • +
  • Show advanced settings checkbox only for settings that have them [#6513]
  • +
  • Remove obsolete setting for requiring repeated password entry [#9722]
  • +
  • Passkeys: Allow registering Passkeys to existing entries [#10408]
  • +
  • Passkeys: Show warning about data being unencrypted before Passkey export [#10411]
  • +
  • Passkeys: Support NFC and USB transports [#10402]
  • +
  • Passkeys: Pass extension JSON data to browser [#10615]
  • +
  • SSH Agent: Do not use entries from recycle bin [#10518]
  • +
  • Linux: Change hotkey sequence used for {CLEARFIELD} Auto-Type [#10008]
  • +
  • Windows: Improve DACL memory access protection [#10618]
  • +
  • Fix crash when deleting history items [#10451]
  • +
  • Fix crash on screen lock or computer sleep [#10458]
  • +
  • Fix search field not being focused after unlock [#10459]
  • +
  • Fix loss of window focus when Auto-Type needs to unlock a database [#10555]
  • +
  • Fix inconsistent TOTP visibility on unlock [#10009]
  • +
  • Fix CSV import skipping over single-name groups [#10575]
  • +
  • Fix key file folder being remembered even if disabled in settings [#10636]
  • +
  • Fix issues with entry editing and database locking [#10667]
  • +
  • Fix key file text when provided on command line [#10642]
  • +
  • Fix issues with hardware key auto detection [#10663]
  • +
  • Do not override monospace font size [#10282]
  • +
  • Perform group sort only when group view is in focus [#10202]
  • +
  • Do not show decimals for attachment sizes in Bytes [#10595]
  • +
  • Prevent merging of global custom data when merging databases [#10452]
  • +
  • Fix minor translation issues [#10635]
  • +
  • Passkeys: Fix StrongBox incompatibility [#10420]
  • +
  • Passkeys: Set RP ID to effective domain if unset instead of returning an error [#10384]
  • +
  • Passkeys: Various UI fixes and improvements [#10427, #10608, #10609]
  • +
  • AppImage: Fix URL opening [#10624]
  • +
  • Flatpak: Fix application autostart [#10563]
  • +
  • Linux/macOS: Fix button sizes on modal alert popups [#10500]
  • +
  • Linux: Fix clipboard clear on Wayland [#10500]
  • +
  • Windows: Preserve file-hidden attribute [#10343]
  • +
+
+
+ + +
    +
  • Support USB Hotplug for Hardware Key interface [#10092]
  • +
  • Support 1PUX and Bitwarden import [#9815]
  • +
  • Browser: Add support for PassKeys [#8825, #9987, #10318]
  • +
  • Build System: Move to vcpkg manifest mode [#10088]
  • +
  • Fix multiple TOTP issues [#9874]
  • +
  • Fix focus loss on save when the editor is not visible anymore [#10075]
  • +
  • Fix visual when removing entry from history [#9947]
  • +
  • Fix first entry is not selected when a search is performed [#9868]
  • +
  • Prevent scrollbars on entry drag/drop [#9747]
  • +
  • Prevent duplicate characters in "Also choose from" field of password generator [#9803]
  • +
  • Security: Prevent byte-by-byte and attachment inference side channel attacks [#10266]
  • +
  • Browser: Fix raising Update Entry messagebox [#9853]
  • +
  • Browser: Fix bugs when returning credentials [#9136]
  • +
  • Browser: Fix crash on database open from browser [#9939]
  • +
  • Browser: Fix support for referenced URL fields [#8788]
  • +
  • MacOS: Fix crash when changing highlight/accent color [#10348]
  • +
  • MacOS: Fix TouchID appearing even though lid is closed [#10092]
  • +
  • Windows: Fix terminating KeePassXC processes with MSI installer [#9822]
  • +
  • FdoSecrets: Fix database merge crash when enabled [#10136]
  • +
+
+
+ + +
    +
  • Significant improvement to visual when drag/drop entries [#9698]
  • +
  • Automatically prompt for Quick Unlock when showing unlock dialog [#9697]
  • +
  • Improve colorful lock icon [#9632]
  • +
  • Ability to search by entry UUID [#9571]
  • +
  • Add challenge-response support for NitroKey 3 [#9631]
  • +
  • Auto-Type: Disable entry level Auto-Type when disabled at group/entry [#9672]
  • +
  • Browser: Show warning when adding duplicate URL's to entry [#9588][#9635]
  • +
  • Browser: Improve error message when proxy cannot be found [#9385]
  • +
  • Fix crash on exit on macOS [#9620]
  • +
  • Fix crash on search if entry doesn't have a group [#9633]
  • +
  • Fix several issues with Quick Unlock [#9697]
  • +
  • Enable save button when not auto-saving non-data changes [#9634]
  • +
  • Several UI/UX fixes [#9647]
  • +
  • Move toolbar back to top of window when disabling movement [#9699]
  • +
  • Browser: Fix closing password generator dialog with X button [#9636]
  • +
  • Browser: Fix handling of expired credentials [#9595]
  • +
  • Windows: Prevent white flicker when launching application [#9637]
  • +
  • Linux: Fix warning message about allow screencapture [#9638]
  • +
  • FdoSecrets: Fix access confirmation dialog showing even when disabled [#9690]
  • +
+
+
+ + +
    +
  • Add menu option to allow screenshots [#8841]
  • +
  • Add support for Botan 3 [#9388]
  • +
  • Increase max TOTP step to 24 hours [#9149]
  • +
  • Improve HTML export layout [#8987]
  • +
  • Turn search reset off by default [#9153]
  • +
  • Use QClipboard::clear() instead of setting blank text [#9148]
  • +
  • Hide group column header choice when not in search [#9171]
  • +
  • Improve look of KeePassXC logo and icons [#9355]
  • +
  • Add keyboard shortcuts for app and database settings [#9007]
  • +
  • Hide rename button from attachments preview panel [#8842]
  • +
  • Linux: Set SingleMainWindow in .desktop file [#7430]
  • +
  • Fix crash when search clears while creating new entry [#9230]
  • +
  • Fix crash when using Windows Hello in a Remote Desktop session [#9006]
  • +
  • Fix crash in Group Edit after enabling Browser Integration [#8778]
  • +
  • Fix canceling quick unlock when it is unavailable [#9034]
  • +
  • Set password input field font correctly [#8732]
  • +
  • Greatly improve performance when rendering entry view [#9398]
  • +
  • Fix various accessibility issues [#9138]
  • +
  • Fix arrows size when expand/collapse a group [#9096]
  • +
  • Select the clone instead of the original after cloning an entry [#9070]
  • +
  • Fix bugs with preview widget [#9170]
  • +
  • Fix status bar update when switching to other DB [#9073]
  • +
  • Fix database settings spin box bug [#9101]
  • +
  • Fix Ctrl+Tab shortcut to cycle databases in unlock dialog [#8839]
  • +
  • Fix TOTP QR code maintaining square ratio [#9027]
  • +
  • Fix Auto-Type configuration page on custom sequence selection [#8752]
  • +
  • Fix unexpected behavior of `--lock` when KeePassXC is not running [#8889]
  • +
  • Make open folder icon exempt from "Apply group icon to entry" [#9205]
  • +
  • Allow setting default file open directory with env var [#9192]
  • +
  • SSH Agent: Fix support for AES-256/GCM openssh keys [#8968]
  • +
  • Browser: Fix Native Messaging script path with BSD OS's [#8835]
  • +
+
+
+ + +
    +
  • Add 2 months expiration preset [#8687]
  • +
  • CLI: Add Unicode support on Windows [#8618]
  • +
  • Fix crash on macOS when unlocking database [#8676]
  • +
  • Fix display of passwords in preview panel [#8633]
  • +
  • Fix clicking links in entry preview panel [#8644]
  • +
  • Prevent expired entries search if no results returned [#8643]
  • +
  • Browser: Revert code causing connection problems [#8665]
  • +
  • Browser: Fix socket file symbolic link on Linux [#8656]
  • +
  • Flatpak: Fix launching browser proxy service [#8680]
  • +
  • SSH Agent: Fix pageant support on Windows [#8619]
  • +
+
+
+ + +
    +
  • Enhance Tags Support and Add Saved Searches [#8435, #8607]
  • +
  • Significant improvements to entry preview panel [#7993]
  • +
  • Add password strength indicator to all password fields [#7885]
  • +
  • Limit zxcvbn entropy estimation length to 128 characters [#7748]
  • +
  • Try full URL path when fetching favicon [#8565]
  • +
  • Hide usernames in preview panel when hidden in entry view [#8608]
  • +
  • Enable dark title bar on windows when accent color is not used [#8498]
  • +
  • Add option to display passwords in color in preview panel [#7097]
  • +
  • Add XML Export option to GUI [#8524]
  • +
  • Increase entropy required for a "good" password rating to 75 [#8523]
  • +
  • Add shortcut to copy password with TOTP appended [#8443]
  • +
  • Show entry count in status bar [#8435]
  • +
  • Allow KeePassXC to be built without X11 [#8147]
  • +
  • Enable use of VivoKey Apex and Dangerous Things FlexSecure tokens [#8332]
  • +
  • Add setting for number of recent files [#8239]
  • +
  • Add Ctrl+Tab shortcut to cycle databases in unlock dialog [#8168]
  • +
  • Replace offensive words in eff_large.wordlist [#7968]
  • +
  • Auto-Type: PICKCHARS can specify attribute and ignore BEEP [#8118]
  • +
  • Linux: Add isHardwareKeySupported and refreshHardwareKeys to DBus methods [#8055]
  • +
  • Add config variable to specify default database file name [#8042]
  • +
  • CLI: Add `db-edit` command [#8400]
  • +
  • CLI: Add option to display all attributes with `show` command [#8256]
  • +
  • CLI: Show UUID and tags with `show` and `clip` commands [#8241]
  • +
  • Browser: Move socket into separate directory on Linux [#8030]
  • +
  • Browser: Add group setting to omit WWW subdomain when matching URLs [#7988]
  • +
  • FdoSecrets: Ask to unlock the database when creating items [#8022, #8028]
  • +
  • FdoSecrets: Skip entries in recycle bin when searching [#8021]
  • +
  • Fix potential deadlock in UI when saving [#8606]
  • +
  • Fix newlines when copying notes from preview panel [#8542]
  • +
  • Fix dark mode detection on Linux [#8477]
  • +
  • Fix crash when deleting items in recycle bin while searching [#8117]
  • +
  • Fix crash when trying to close database during unlock [#8144]
  • +
  • Fix tabbing around the interface [#8435, #8520]
  • +
  • Fix OPVault import when there are multiple OTP fields [#8436]
  • +
  • Fix various Windows Hello bugs [#8354]
  • +
  • Fix use of Apple Watch for Quick Unlock [#8311]
  • +
  • Better handling of "Lock on Minimize" setting [#8202]
  • +
  • Support numeric aware sorting on Windows and macOS [#8363]
  • +
  • Check for write permission before entering portable mode [#8447]
  • +
  • Correct regex escape logic to prevent parse errors [#7778]
  • +
  • Normalize slashes and file case for last used databases [#7864, #7214]
  • +
  • Link ykcore against pthread [#7807]
  • +
  • Auto-Type: Fix menu entries in selection dialog on Windows [#7987]
  • +
  • Auto-Type: Fix use of modifiers under macOS [#8111]
  • +
  • CLI: Fix output when using clip with the -t flag [#8271]
  • +
  • Browser: Use asynchronous access confirm dialog [#8273]
  • +
  • Browser: Always send database locked/unlocked status [#8114]
  • +
+
+
    @@ -863,7 +1162,7 @@
  • Compare window title to entry URLs [#556]
  • Implemented inline error messages [#162]
  • Ignore group expansion and other minor changes when making database "dirty" [#464]
  • -
  • Updated license and copyright information on souce files [#632]
  • +
  • Updated license and copyright information on source files [#632]
  • Added contributors list to about dialog [#629]
diff --git a/share/linux/org.keepassxc.KeePassXC.desktop.in b/share/linux/org.keepassxc.KeePassXC.desktop.in index eef24fe7f..c022b03f4 100644 --- a/share/linux/org.keepassxc.KeePassXC.desktop.in +++ b/share/linux/org.keepassxc.KeePassXC.desktop.in @@ -42,6 +42,10 @@ StartupWMClass=keepassxc StartupNotify=true Terminal=false Type=Application -Version=1.0 +Version=1.5 Categories=Utility;Security;Qt; MimeType=application/x-keepass2; +SingleMainWindow=true +X-GNOME-SingleWindow=true +Keywords=security;privacy;password-manager;yubikey;password;keepass; +Keywords[de]=sicherheit;privatsphäre;passwort-manager;yubikey;passwort;keepass; diff --git a/share/linux/org.keepassxc.KeePassXC.policy.in b/share/linux/org.keepassxc.KeePassXC.policy.in new file mode 100644 index 000000000..e5b837e0c --- /dev/null +++ b/share/linux/org.keepassxc.KeePassXC.policy.in @@ -0,0 +1,18 @@ + + + + KeePassXC Developers + + @APP_ICON_NAME@ + + + Quick Unlock for a KeePassXC Database + Authentication is required to unlock a KeePassXC Database + + no + auth_self + + + diff --git a/share/macosx/Info.plist.cmake b/share/macosx/Info.plist.cmake index 53e489742..086d208df 100644 --- a/share/macosx/Info.plist.cmake +++ b/share/macosx/Info.plist.cmake @@ -22,6 +22,8 @@ ${PROJECT_NAME} CFBundlePackageType APPL + CFBundleVersion + ${KEEPASSXC_VERSION} CFBundleShortVersionString ${KEEPASSXC_VERSION} CFBundleSignature diff --git a/share/macosx/embedded.provisionprofile b/share/macosx/embedded.provisionprofile index 6fb14fd57..29e599c24 100644 Binary files a/share/macosx/embedded.provisionprofile and b/share/macosx/embedded.provisionprofile differ diff --git a/share/macosx/keepassxc.ai b/share/macosx/keepassxc.ai deleted file mode 100755 index cea3b65c0..000000000 --- a/share/macosx/keepassxc.ai +++ /dev/null @@ -1,7697 +0,0 @@ -%PDF-1.6 % -1 0 obj <>/OCGs[32 0 R 33 0 R 34 0 R 35 0 R 36 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - Adobe Illustrator 25.0 (Windows) - 2020-12-20T17:21:23+02:00 - 2020-12-20T17:21:25+01:00 - 2020-12-20T17:21:25+01:00 - - - - 256 - 256 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq6uKtVxVuuKurirq4q6uKurirq4q6uKurirq4q6uKtVxV 1fH78VbxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVaWr8sVarirq4q6uKuJA3OKpL5g8 6eV/L1v9Y1jUreyjoSpmkVC3HrwBNW/2IOKvNtY/5yi8g2krxWEV5qbBarJBBwjJ8C07Qt1/yT9O Ksam/wCcspfVIg8rTPH2drqND18PTb9eKui/5yyl9QCbytOsfdluo3PXwMafrxVk2kf85QeQbuVI r+O80xmHxSTwFow1NxygaY9e5UYq9I8v+c/LHmC3M+j6jb3sa05mGRXKk9nANUPs1MVTqtcVdXFX VxV1cVcGp8u+Kr8VdirsVdirsVdirsVdirsVdirsVdirsVdirsVWyGgp44qp1xV1cVdXFUr8xeZ9 E8u6bLqOr3UdpaQirySGnyAAqWJ7KASe2Kvnjzf+fnnHzReHSPJNrLZQTMY4rn0/VvJdt/SjHNY+ /Zm77YqoaH/zj55h1a4OpebdRMM8rB5RIxvLtiNviYtwXb/LJHcYq9D0r8lfy809FDae9/IpqJbu Zyf+Bh9FKfNTirIY/Jfk+MUXQNNp/lWcD/i6McVdJ5L8nyCj6BptD/LZwJ+KIpxVj2q/kr+XuoIw SwksJGNfVtJnr/wE3rJT5KMVefa5+QPmPSLj9JeVNQNxNEeUfpsbS8WhqOLBuDU9nBP8uKonyj+f nm3yzdnSvOlrLeW8J4S3Hp+neQ9NpIiFElB/qt/rHFX0J5e8zaL5h06LUdJuo7u1l+zJGaio6gjY hh3Uio74qmdcVdXFXVxVfE1QQeo/Viq/FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqoSt+9I8APx rirVcCurirHPPXnnRvJ+iS6nqUlAPgghXeSWUglY0HdjT6BudsKvm+20/wA8/nB5lN5fyGDTLdvg U8jbWkZ/ZUbepMw6929lGyr3jyn5I8v+VbP6vpVuFlYUnvJKNPL/AKzU2X/JWgwKnvHCrTK3E8QC 1PhB2FcVfO03n/8AMKSRhNq8kMiMVaJI4k4sDQg0Su1O+amWrnbinIV1t59/MJZlWHV5JpHIVI3j hcMSaAbp44I6udqMpfRAU03G/fNu5TuOKpF5s8kaB5ps/Q1S3BmUUgvY6LPF/qt3X/JaowK8LntP O/5Q+ZPrFk4nsLk1K/ELW7jU9CN/TlUHr1X/ACl6lX0Z5G88aP5v0SLU9Oc7nhPA+0kUqgFo3HZh X5EbjY4qyOuBXVxV0bATAd2U/gR/XCqIxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KoWU/v2+Q/j irVcCoXU9StdNsJ767kWK3t0aSWRtlVUBZmPsAMVfL0r65+b/wCYCyAvFpUHL6orfZt7UH4pWAJU ySbfTRa0GKvojRtE0zQtJh06wjENnbLtWlSf2nc7VZupOFXlH5gfmrdXbzaX5blMNqlUn1JftSeI hP7K/wCV37Zr9Rq62i0Ty9A9X8vxoNB00ISyC1g4sdyR6a0JzOh9IbhyR/DJJYP5q/KbSdavZL+1 uG068mPKfigkidu7cKoVY9yD9FcxM2kEzY2LVPEC35V/KjSdEvEv7m4bUL2I8oCyCOJD2YJVyWHY lvorjh0ggbO5WOIBm/DMttS7zGqjy9qhYlVFpPVl6j922498jP6Sg8nlv5ffmpcW3o6Z5klMtu1F g1JvtIdgFmPdf8v7/HMHBq+kmmGXoXqeuaBpmvaTNpmox+taXAFabMrDdXRuzKeh/hmwb3z7ay65 +Uvn5vULS6bNxFyEFFuLUt8Myr/vyPfbxqtaGuBX05puo22o2MF7ayCW3uEWSKRejK4DKR7EGuKo quKtRn/S4/8AVf8A41wqjMVdirsVdirsVdirsVdirsVdirsVdirsVdiqEnP79vkP44qsrgV4X/zk Z5ukdbTyjaMR9b/0nUSOnoI1EjPX7ci1PsvvhVm35U+SU8s+WIhNGF1O+Cz3pI+Jaj4Iv9gDv/lE 4ArGfzg85ycz5X05+PJa6pKp3CsKrCCP5gat7UHjmBrNRw+kNOWfR5aIVVOIG1M1NuO9/wDyv1iP VPJ9mtR69gPqc6+HpABPvj45vtLk4oDycvGbDLOGZDN3DFXcMVdwxVh35sazHpnk67hDD6xqI+pw p3Ik/vD9EfLMfVZOGBYZDQeCiIFOJHbNDbiPV/yh85SSEeW9RkLOgLabKxqSiirREn+Ubr7bds22 i1HF6TzcjFO9k/8AzZ8lx+Y/K8zwxctT04NcWZA+JgB+8i/2ajYfzAZnluYl/wA48+bpWiuvK90/ L6qPrOnk/wC+HYCRK/5EjAj2bwGFXttcCuhP+lx/6r/8a4VR2KuxV2KuxV2KuxV2KuxV2KuxV2Ku xV2KuxVBXJ/0hvkP44qoyycI2buBt88Cvmryvbf45/OG41CZfUsvrLTCoG9paUWIEVIo/Fa/62JV 9BeY9Yh0XQ73VJQCtrEXVT+0/RF/2TEDI5J8MSUE0HzS8k9xPLdXLGS5uHaWZz1Luak5zk5mRsuE TbuORtCfeSvN1x5W1c3XFptPuQEvrdaVKj7LrX9pKmniKj3zK0uo8M+TZjnRfQGmanp+qWUd7p86 XFrKKpIhqPcHuCO4O4zeRkJCw5QNoqgwpdQYqgtX1jTNHsZL7UZ0t7aMbu56nsqjqxPYDBKQiLKC afPnnHzXdeataN66mKxgBjsbc9VQnd26/E3f7s0eq1HGfJxck7SfjmLbWvt57i0uYby2bhc2zrLC /gymoyUJmJsJBp9LaDqsGr6NZ6lCKJdRLIV/lYj4l/2LVGdHCfFEEdXNBsPn3XYl8jfm8l2lYbCO 6Seqio+qXYpKoXuFDuo+Xjkgl9JoxKgnr3+eKr7c/wClp/qv/DCqPxV2KuxV2KuxV2KuxV2KuxV2 KuxV2KuxV2KoC7NLhv8AVH8cVY9531FtP8paveq3F7e0nkjbf7axMU6f5VMVeW/8436Ssa6nfkEt HFDbRuep5lnff/YLg6qyn87L9o9BstPUkfXLgNJ4FIRWn/BMpzB7QnUK72rMdnkXDNHbiu4Y2ruG Nqyj8rJru287WMEE7x2116wuYFJCScYJGXkvQkMoIzP0OQ+IB0bcR3e5Q6hYTXEttDcxS3MH99Aj qzp/rKDVfpzdAhyrRGFXz9+Zstze+eNRjnnkktrVo0toHYlI/wB0hbivQcmqc0muynjIcXLLdjoQ DYZgW1N8MbV3DG1ew/kxqDS+X7qwY1NlOTGPBJhyH/Dhs3nZ87hXc5WE7MS/5yK01frWj6gq/FNF NbSN7RlXQf8AJRszm16p5K1VtU8p6TfyPzluLWJpm8ZAoWT/AIcHCqfWpreJ/qN/DFUwxV2KuxV2 KuxV2KuxV2KuxV2KuxV2KuxV2Kpden/SD/qj+OKsG/OFiPy312grW3Cf8HIi/wAcVST/AJx+RR5Z 1AgfEbuhPsIkp+vB1VQ/Ows2oaOpPwrHOQPdmjr/AMRGartM/S0Z+jzrjmotx3ccbV3HG1ZJ+Wy0 89aV85/+oaTMzQf3o/HRsxfUzPyTGo/MvzW4G7Hc/wCzGbPAf3026P1F6Nma2vFfzL8p6jYa1c6z vPYX7hjKBvE5AHB/bb4T9GaTX4JCXF0LjZYm7YZxzXW0u442ruONq9I/JVmW81hP2WjgY/MGQfxz bdln6vg34Orv+cg0U+XtKenxC9Kg+xhcn/iIzbdXIZR+VtB+X+i0BA9A7H/jI2FWX2Z/0xf9Rv4Y qmWKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVLb8/wCkn/VH8cVYl+ZVpJeeQPMEMYq/1GZ1G3+6 19Tv/q4qxP8A5x+ulbR9UtR9qKeKU/KVCo/5NYOqor86LQk6RdgbKZonb3bgyj/hWzVdqDaJaM45 PNeOaa3HdxxtXccbVkf5crTzxpXzn/6hpMzOzz+9Hx+5sxfUzLyYP+Qj+afn/wAbjNng/vpt0fqL 0LM9tYt5/wDNukaHpLw3caXlzeKUg09qH1AdiX8EHc/dmPqc0YR33vownIAPD1BIqQFrvxHQe29c 5olw13HBau442r0z8mbUqurXRGzGGJT7qHZv+JDNz2WNpFyMHVAf85CXIGm6LaV3luJpgPaKML/z Nza9W9mX5do0fkbREYUYWy1B9ycKsosT/pi/6jfwxVNMVdirsVdirsVdirsVdirsVdirsVdirsVd iqV6if8ASf8AYj+OKoOeCK6t5bWXeK4jaKQf5LqVP68VeK/kndS6R5xvdDumAklSW2cdKz2jn/jU PgKvTvzI0ltR8q3Hprymsyt1GP8AjHUP/wAk2bMTXY+PEfLdryCw8VC1Fc5lxG+GNq7hjash/Lxa edtK+c//AFDyZndn/wB8Pj9zZi+pmHk0f8hF80H3/wCNxmz0/wDfzbo/UXoGbBteV/mn5Rhiuj5k jnqZikU8Er71GymHl28VHTrmo7SwGuMFozR6sC4Zpbcd3DG1dxxV7X+XelNp3la2DjjLdk3Ug/4y U4/8Iq502hx8GIee7l4hQeW/nNetq/nq00a3NTaRxW5pU0muW5HYf5BTMsNj2q1tYrK0gs4j+6to 0hQnrRFC/wAMKo3Tz/pi/wCo36xiqa4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUq1I/wClf7Ef xxVChqGuKvFPzNsbjyx5+tfMdgvGO9ZbyMVoDPCQsybdnFCfHkcSr2vTNQs9V0yC+tmElrdxh077 MNwR4joRg5q8Y82+XH0LWJLZQfqktZbNz3jJ+zXxQ7fj3zl9bp/CnXQ8nDyRopNwzEtrdwxtU/8A IC086aX85/8AqHkzO7OP74fH7m3F9TLfJw/5CH5n+f8AxuM2un/v5t0PqLP82Da8M893Wo33m69S 8m5w2T+laQjZESgPT+Y9znPdo5pHIYnkHFyy3SfhmttpdwxtU88neXH1vWY4WU/U4SJLtu3AHZPm 52+/wzL0Wn8WddBzbMcLL2PV9Us9H0m51G6PC1s4mkengo2VR4noBnUOY8T/ACu0+88x+d7rzJeb CCRruUmpHqymiRrUdFXb2FMICvbeWKojTT/pg/1G/WMVTfFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYqlGqH/Sv9iP44qhK4qknnPyxF5m8vT6aaC7jPr6fIduM6A0FfBwSp+eKsB/KLzfJpV/L5V1es KPKwtfUNDFcVo8Jr05Hp/lfPAVepeZPL1prunNaz/BKvxW846xv4+4PcZRqdOMseEsZx4g8Z1TSL /S7x7O9iMcydD+yy9mQ91OctmxSxy4ZOHKNc0JxOVWhMfLmqQaRr9jqVwrNb27P6vDchZI2jrT25 VzK0eUY8gkeTKBo29vtLm1u7eO6tZFlgmUNHKhqGB71zqokEWHNDry8tbK1kurqVYbeFS0kjmgAG JIAsq8K1vU7fV9ev9TtkZLa5cGIMKEhVCciP8rjXOW1uUTyEjk4eQ2UJxOYlsEZpWj3+q3iWdlGZ JW3J6Kq92Y9gMtw4pZJcMUxjfJ7N5d8v2eh6ctpb/G5PKecijSP4+wHYZ1Om08cUeEOZCPCHk/5v ecJNa1KPyppBM0MMoF6UNfUuAfhiFOyHdv8AK+WXhk9C8meWYfLegQ2CnlcvSW8kHRpD4Cg6DbfC qeVxVFaYf9MH+o36xiqcYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FUn1Y/6UP8AVH8cVQVcVcGI NQdxirAPzQ/L59XVtf0aMtqcYH161TrKiDaVP8tQKUHX59VV35a/mjFfRw6LrknDUVolvdvQLN2C se0nb3+eDkrP9Z0PTNYtfq99FzUbxyLs6E90b/MZTn08MoqQYyiDzea63+XutaezSWqm/tR0eIH1 QP8AKj3P/A1+jOf1HZuSG8fUHGliIYw0fVWG42IPjmu5NadeUPNd15cuvRl5TaRM372EbmIn/dif 8bDv882eh15xmpfS248lKXnDzTeeZr30Y+UOjQNWGE7GUj/dkg/UO3zw67X8e0fpXJktKo4fsogq TQKoG5OavctTKND/AC81nUGWS7U2Fqdy0o/eEf5Mex/4KmbHT9m5J7y9IbI4iXpOj6Hpuj2v1exi 4Kd5JG3dyO7t/mM6DBp4YhUQ5MYgcnnf5nfmmLQS6F5el56g3wXd6m4hHQoh7yf8R+eXc2Tf5Wfl +dGiTXdUjpqMyk2du4+KJW6u1f2mH+fXCr0EsSak74q6uKozSt7wf6jfrGKpzirsVdirsVdirsVd irsVdirsVdirsVdirsVSnWUpIknYjj9PXFUurgV1cVXJIyMGU0YdDhVg3nn8rLPXi+o6IsdpqpFZ rOgSKcjfkp6K5+49/HFWM+XvzO8y+Vbk6R5ltpbmCD4aPtcxgbbFtpF8Kn6cFK9W8v8AnHy5r8Qf TL1JZKVaBjwmX/WjajY2qYXulaZf73tpDcNSgeRFLgez/aH35VkwQn9QBQYg80ofyB5Tf/jyK+yy y/xY5inszB3faWHhRdH5A8pp/wAeRb2aWX/jVhiOzMHd9pXwopvZaVpljvZWkNu1KF40UOR7t9o/ fmVjwQh9IAZiIHJL/MPnPy35fiL6nexxSUqlup5zN/qxrVjltpeTeYPzM80+brn9D+WrWW1tpvhI Te6kXoeTD4Yl333+nGlZR5E/Kyw0ARajqwW51ZaPDbj+7gI3BNftP3rhVnLOWap64q1XArq4qmGj ITM79lHH6euFU3xV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KobULb6xbMg+0KFT7jFWPVO4OxGxH gcVbrirq4q6uKofV9L0bXLYW2tWi3kagiOQ/DKle6uKHFXnms/keWl+seXNTHINWO3uiY5F/1ZUH b5fTiqWmP87fLhEY+uTwoaKpC3qsB4ECR6fTgpVzfmx+ZdowjvNNgB32ltpo3JH+yp+GNK4fmx+Z l2xSz02AnbaO2mkcV/2VPwxpVhh/O7zETE31y3ib7SALZAA99xHJTGlTLRvyNVJTceYtSBcsTJb2 pMjv3qZX8e/w/ThV6JpOmaPolt9W0a0WzjP25BvK/wDrufiOKoiuKurirq4q0W6AbkmijxJxVkOn Wxt7YK32zUsfc4qicVdirsVdirsVdirsVdirsVdirsVdirsVdirsVSnVNMZiZ7cDmB8afzYqlAcc ipqGXqp2OKt1xV1cVdXFXVxVUS5nj+xIyjwBNMVVP0jdkUL8v9ZVP6xirhqF0Ojhf9VVH6hiqm9z PJ9uRmHgSaYqp1xV1cVdXFXVxVaZAGCirOeijc4qm+laW6kXFyAWp8Cfy4qm+KuxV2KuxV2KuxV2 KuxV2KuxV2KuxV2KuxV2KuxV2KoW70y0uh+9X4uzDY4qlsnl2Uf3M7U8GNf1jFVL9Aah/v5fw/pi rv0BqP8Av5fw/pirv0BqP+/l/D+mKu/QGo/7+X8P6Yq79Aaj/v5fw/pirv0BqP8Av5fw/pirv0Bq P+/l/D+mKu/QGo/7+X8P6Yq79Aaj/v5fw/pirv0BqH+/l/D+mKqkfl2Vv76c08FNP1DFUytNMtLU fu1+Lux3OKovFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX//2Q== - - - - 1 - True - False - - 128.000000 - 128.000000 - Millimeters - - - - Cyan - Magenta - Yellow - Black - - - - - - Default Swatch Group - 0 - - - - R=252 G=252 B=252 - PROCESS - 100.000000 - RGB - 252 - 252 - 252 - - - R=0 G=0 B=0 - PROCESS - 100.000000 - RGB - 0 - 0 - 0 - - - R=103 G=186 B=45 - PROCESS - 100.000000 - RGB - 103 - 186 - 45 - - - R=49 G=115 B=41 - PROCESS - 100.000000 - RGB - 49 - 115 - 41 - - - - - - - application/pdf - - - keepassxc - - - AIRobin - Document - xmp.did:d533b712-e3e1-2d4d-9d10-810ee84643e0 - uuid:123ce022-0d47-4398-a2b7-3ac78f3a3ee4 - xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 - proof:pdf - - uuid:c0995094-a15f-431d-a464-7e378391f643 - xmp.did:f6c53e8e-957b-984c-ae83-7e48da0435ab - xmp.did:2520a7c9-03a3-1044-b2dc-89724d81ad50 - proof:pdf - - - - - saved - xmp.iid:2520a7c9-03a3-1044-b2dc-89724d81ad50 - 2020-12-19T13:48:23+01:00 - Adobe Illustrator 25.0 (Windows) - / - - - saved - xmp.iid:d533b712-e3e1-2d4d-9d10-810ee84643e0 - 2020-12-19T18:46:26+01:00 - Adobe Illustrator 25.0 (Windows) - / - - - - Adobe PDF library 15.00 - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 5 0 obj <>/Resources<>/ExtGState<>/ProcSet[/PDF/ImageC/ImageI]/Properties<>/Shading<>/XObject<>>>/Thumb 77 0 R/TrimBox[0.0 0.0 362.835 362.835]/Type/Page>> endobj 38 0 obj <>stream -HWɎ6+GvszI F`8@|. sfO]V>5ͻze҉7n~d_N1V![ Azr~bԻzXc4PLQ՗#8l{8+IMÄO.؀'PxYxᆋ}e!@w;Ҩۓ~ۧ'=U->xx!zy@+jcXBu7PXL7|ԙsDⲶilxv{eِs BѦR<lѝn@ m!?!l4g15sk@uA̹nx3 5-ґSф "j5^o44$;حB_+-.ikHBنyi9"D.yN.%i@ZHq y/K~-A~2SUid-&\v&6%c&8PBm!(\VsS!>3Hfm(9/RBWJF1E\AG1WRGu\5&c&zTG/uIW9J_n9l6ٶ`Qd^7-9t?2;2;]ڐ誺iUkCRCjj{6$l zDdqƃ~lMPp#6r\8*Al܉; K G`(HJصtqr s^ؐ ɇ{ ۰kqEΉP8,d KXxsnU@_ш(Dsԅ HP )V$;]ٱKz U}\/3@-Ef~9l -a -TBw ܿܚFhDR3_ .kH}ڏFw:`s&> endobj 77 0 obj <>stream -8;Z\tc&omd%#(Z.>iK5:7E$MlS8)@nX*.N7!qYIB9MTq;Go03LnbI_Fbl;Z%nEWj. -/P*gQJZf#&_B[!f`u+4Q#h)=phP8IOSV0h)-1pRZY%i1H9Pi$\n'Y[XFT#%=&j^m9 -ZEd@*AV0LAj;Q!?Fbo6'Z9OQ/[)NeOg* -4E]uKY,GiQCrp^$a_uJ"DP#gpjI$g)o3n]I<>gEm>nOcK[.aGj%:+sUS/H1Or/YXb -S&q1CrZ>Qsh"-qDo#t6,Wt2MN`BfXF9qUpjgcnFeAJEhY?F.8(d5u]7c!/N\Xct_C!Np`=EQ>e.4NVNEX8#0]Qgm-;MFk@W~> -endstream endobj 79 0 obj [/Indexed/DeviceRGB 255 80 0 R] endobj 80 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 63 0 obj <>/XObject<>>>/Subtype/Form>>stream -q -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /GS0 gs -0 TL/Fm0 Do -Q - -endstream endobj 64 0 obj <>/ExtGState<>/ProcSet[/PDF/ImageC/ImageI]/XObject<>>>/Subtype/Form>>stream -q -/GS0 gs -244.1599945 0 0 245.4399945 59.3429222 55.4917377 cm -/Im0 Do -Q - -endstream endobj 65 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -181.417 57.924 m -113.648 57.924 58.514 113.323 58.514 181.417 c -58.514 249.512 113.648 304.91 181.417 304.91 c -249.187 304.91 304.321 249.512 304.321 181.417 c -304.321 113.323 249.187 57.924 181.417 57.924 c -181.417 309.085 m -111.357 309.085 54.359 251.813 54.359 181.417 c -54.359 111.022 111.357 53.75 181.417 53.75 c -251.478 53.75 308.475 111.022 308.475 181.417 c -308.475 251.813 251.478 309.085 181.417 309.085 c -W n -q -0 g -/GS0 gs -0 -166.2333221 -166.2333221 -0 181.4170837 216.1957245 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 66 0 obj <>/XObject<>>>/Subtype/Form>>stream -q -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /GS0 gs -0 TL/Fm0 Do -Q -q -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /GS0 gs -0 TL/Fm1 Do -Q -q -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /GS0 gs -0 TL/Fm2 Do -Q - -endstream endobj 67 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -183.733 277.423 m -183.733 277.423 l -182.944 277.423 182.154 277.406 181.385 277.373 c -181.373 277.373 l -175.66 277.373 169.677 276.834 164.101 275.815 c -163.599 275.723 l -163.5 275.223 l -163.241 273.919 162.973 272.573 162.973 271.211 c -162.973 260.992 171.247 252.677 181.417 252.677 c -191.588 252.677 199.862 260.992 199.862 271.211 c -199.862 272.573 199.594 273.919 199.335 275.221 c -199.236 275.721 l -198.734 275.815 l -194.381 276.61 189.195 277.423 183.733 277.423 c -183.732 276.673 m -188.8 276.674 193.7 275.972 198.599 275.077 c -198.856 273.788 199.112 272.5 199.112 271.211 c -199.112 261.417 191.162 253.427 181.417 253.427 c -171.672 253.427 163.723 261.417 163.723 271.211 c -163.723 272.5 163.979 273.788 164.236 275.077 c -169.877 276.108 175.776 276.623 181.417 276.623 c -182.193 276.657 182.964 276.673 183.732 276.673 c -W n -q -0 g -/GS0 gs -0 -24.7455978 -24.7455978 -0 181.4173279 277.4232788 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 68 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -181.417 294.52 m -119.35 294.52 68.854 243.782 68.854 181.417 c -68.854 119.052 119.35 68.315 181.417 68.315 c -243.485 68.315 293.98 119.052 293.98 181.417 c -293.98 243.782 243.485 294.52 181.417 294.52 c -181.417 293.82 m -243.098 293.82 293.28 243.396 293.28 181.417 c -293.28 119.438 243.098 69.015 181.417 69.015 c -119.736 69.015 69.555 119.438 69.555 181.417 c -69.555 243.396 119.736 293.82 181.417 293.82 c -W n -q -0 g -/GS0 gs -0 -226.2054596 -226.2054596 -0 181.4170532 294.519928 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 69 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -181.417 294.47 m -119.377 294.47 68.904 243.755 68.904 181.417 c -68.904 119.08 119.377 68.364 181.417 68.364 c -243.457 68.364 293.93 119.08 293.93 181.417 c -293.93 243.755 243.457 294.47 181.417 294.47 c -181.417 293.27 m -242.795 293.27 292.73 243.093 292.73 181.417 c -292.73 119.741 242.795 69.565 181.417 69.565 c -120.039 69.565 70.104 119.741 70.104 181.417 c -70.104 243.093 120.039 293.27 181.417 293.27 c -W n -q -0 g -/GS0 gs -0 -226.1058197 -226.1058197 -0 181.4170532 294.4700928 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 70 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -181.417 277.758 m -128.546 277.758 85.532 234.539 85.532 181.417 c -85.532 128.295 128.546 85.077 181.417 85.077 c -234.288 85.077 277.302 128.295 277.302 181.417 c -277.302 234.539 234.288 277.758 181.417 277.758 c -181.417 276.758 m -233.738 276.758 276.302 233.988 276.302 181.417 c -276.302 128.847 233.738 86.077 181.417 86.077 c -129.097 86.077 86.532 128.847 86.532 181.417 c -86.532 233.988 129.097 276.758 181.417 276.758 c -W n -q -0 g -/GS0 gs -0 -192.6805115 -192.6805115 -0 181.4170532 277.7574463 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 71 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -230.042 264.049 m -230.112 263.714 230.173 263.375 230.236 263.038 c -257.765 246.351 276.213 216.009 276.213 181.417 c -276.213 128.896 233.689 86.166 181.417 86.166 c -129.146 86.166 86.62 128.896 86.62 181.417 c -86.62 216.049 105.112 246.419 132.693 263.093 c -132.756 263.432 132.819 263.77 132.889 264.107 c -104.757 247.376 85.849 216.576 85.849 181.417 c -85.849 128.47 128.721 85.395 181.417 85.395 c -234.114 85.395 276.985 128.47 276.985 181.417 c -276.985 216.535 258.12 247.305 230.042 264.049 c -181.417 276.669 m -175.598 276.669 169.9 276.135 164.367 275.122 c -164.437 275.397 164.498 275.677 164.582 275.947 c -170.049 276.927 175.674 277.44 181.417 277.44 c -187.191 277.44 192.846 276.922 198.34 275.931 c -198.424 275.661 198.486 275.381 198.556 275.105 c -192.995 276.129 187.268 276.669 181.417 276.669 c -W n -q -0 g -/GS0 gs -0 -192.0446777 -192.0446777 -0 181.4170837 277.4395447 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 72 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -174.493 196.469 m -167.313 196.469 l -168.313 196.914 l -173.493 196.914 l -h -W n -q -0 g -/GS0 gs -0 -0.4444444 -0.4444444 -0 170.9031067 196.9139557 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 73 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -181.417 57.924 m -113.648 57.924 58.514 113.323 58.514 181.417 c -58.514 249.512 113.648 304.91 181.417 304.91 c -249.187 304.91 304.321 249.512 304.321 181.417 c -304.321 113.323 249.187 57.924 181.417 57.924 c -181.417 309.085 m -111.357 309.085 54.359 251.813 54.359 181.417 c -54.359 111.022 111.357 53.75 181.417 53.75 c -251.478 53.75 308.475 111.022 308.475 181.417 c -308.475 251.813 251.478 309.085 181.417 309.085 c -W n -q -0 g -/GS0 gs -129.5558014 0 0 -129.5558014 181.8615265 172.3060913 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 74 0 obj <>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUv@`Ӽ +1pK}o>^3`u*T +wԥxM=Z8uT0\A=8ٯn -aȰfdr8D嫗# - tH}#>U&/%{MxG/'?YCW!V=VU:>=0V}e{`'LNT/@}z S`g_gPc`gXH}=`9aS5H=\Vh`fX^}s`V'XT=RvSm`9<R}`_QgX@=HNPrUoS3(Q8O}p3\&G3LP ԧ=0N3nR|`zcܦ}pϪ<7<;\'[-/u;I^T~SgxE x.]zO:Q/Sz5:ԓOԡ>W>WXS'Bro~Wo^SO x]z#uFՋKk1SA;M[GY; e`:.pQnRwa=0R]C]|C7{xukxu .=՝`9pLUgT0_8Mvu~,u]S7NQ7T!8C]tbuu--` u`ouXD$YqQ7 UGU=`1u`GuXO&NoVT 6S5}`Yu`uXX)ElVw -Pեյ`u`uuB+X[]j6Q VVw}eՑ`'u`QuK-XQgS S m`Ku`-uT0XIeU7 QGEI`ou` u]]25uV#9V]bQ Ju8F4 uR7]D`NS u~8O6/'Lu`:.LTgsՍipr0I\Vw un8_:-cխ -u`\Twkqp:z0JXRg ]u`M]>+ (ӂօ@'T}u\Q]?8XVTUM#]`[u8uUXA8JTVgR'CA`wu uNn!)X+WqV̮.)R^Qw~/3 -MU' ]703~;u u>ེ:Q]GxPNLGxHNTHxDMN$<&R7VGn+ w _; w _C { ߨS ws ߩ[ ߪc ߫k ߨS ws _K w _C _3 7Ց[Fl u"u7Su 1u9uAu:ࣺ:AGx\]OxN#<'QRިϩ -Ϫ -O# -M$+/u%uH_uEuJ`~uKX0:PP)#=`suuP[A8HTVgR7Q`_u@uVV@8RU6UUMce`Ku`uZQ]?8\W6TWy`;u u_L>8G]XRgNR'ԍ`#u4udH=8O]YQ'TwMSա`u\uiB;8YZPV Աձ`}uunX^:B[W.Qաk`iu"urXZ9J\VG.SGՑ`YuJuwXT8T^UU%y`Iuju{XP7\_T Wi@_S -uXL6H`1uQYH`Rg *uXH5`!uSWeIPaQ' JuXD4H!`uU%9XbP juX@31`uW)9`zu`u\2Bd&W P1E`ju`uZ1Ed&VG QGqU`Zu` uV0Ie&U RIe`Nu`,uR/LfT FS q`Bu`E`:iX. `,n5`iX f`+`jVX -ƫ`:+`zkƫ -6`:*X`:ln -`)X.`l5N -֨`:)أ^`mƪE. -6`:(X`:n] `'X`n&wm ֩`:'X`zoƩk `&بi`oc V`:&ةQ`pF[n `z%ت>A`:qSN `$ث^1`qƨK. 6`z$ج~!`:rC v'`#ح`rF;/`z#خ`:s3֫3`:#د^}Wo@; WWԝ+ sbuDpB::"8XP@~nGU?7ԣ#H utRuCpE}:z!>PQ@NΨS T'gԩ;du2uApH: 8nL]R@.._RԯPK)uD:v"u@pJ;: FR@ngQԳcH1u$~vu?pL];B\S@o PԹs9u|:wu>pN;:{zw{wz࠺w{໺8z࠺w.zyw~.zx:x>N:8W$0^?Z:xx:xx:xx:xx:xxzxwzxwzxwzxwzxwzxwzxwzxwzxwzxwzxv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺xv੺x:  ԿZx^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^x^W$0^0@̩sPk(v ->W4@-`7}7}3u$~3u$~3u$~3u4/4/4/4+uD+uD+uT'T'T'T'T#ud#ud#uttttuuuuuu u u uuu`_9"Wo@՛Ы/yuPg՗pA/z#WW uG0`[=97zrn?iuQ ՏpE=,z$V7uI0n;`W8w'zqOYuR^ VՇpIz%U)uK0.[`S=8/zpn_IuS pM= &T =M{`O77:os9u\Tk upR'R MO`J7WCm%\UC> -vkpW}(Q eR>`E}6Kln V?~ -&ap]=,z*Pw yuU0zkXPoW -`AWW + WpZ5#:jVceQwK> Ϊ`HU' z->%ZpT]4[zhoIuXS? {`O}S .8Au^pN3f{1ul[T1 ._`U=R 08n]apG2:eՋ,#V?7#~ NC`]=\P z28}eЫ7`_}@_/m#Q-W>k'%Q"~}  @n15Xbf{P Ru.0E]4`iЩ+ u SGI@n0UH`fRw u.0M]6`mpS .W0S7V]^f TuJuw.\.sՍ`qp:LVWR7E0[9D\KW{ tuunnWrulA];Xn-;kթ`u`:.Tw]yN]YQ7# N"ubK=X.,{Kԁ`7u`.,Pq`Gulu[Q]?8YVTUM3]`WuDuVW@8O]UU7NSGI`ouuQ[A8ETvWNP@BxYSV|{uJMCxM]RxS^R~/3 -M/u:𿺊pPPx"S>G2u>Ouiu<ouYu;:𜺜pKGxJN.$<&|n$<&|$LvuG VG QWR00S/XLf&˩ 3Ǩ}Ap:0p:ܡ ?Gת'gWGsǫ?W[LWwW= :"YwިRE=xY@5u7w>Tz*u-?Rz0:գՉ^PWxM]e|uo'oQ#u u +ԋluԫ\u+LV ԗC0R_}.8G};KnW ՇxD=9Vy9U}g`GmWg#`#IJC}ZFƫ9zLVp`.>ju0O} `hw -VoS LP/W^-˪40K]Tf`zXXE}1Ы/1z l6۩ l9O-zܮ>!pG -@O*pz -\> -F=>73VP|M>PG -&@=>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUvEn }KLόzW~>jXs'纒t~O7`4uAqk~w >So-갾LiuL' :V~8ԧԭ<(p..F}(V|:'VlޕԷ`Yu.>*˩wiqXGݶ;o I}kU0:b7VJfPW+C`lurc;Y0PJFQ)#W7)ST(@PR p=yY=!PW'oR sս[s,uirzT_ݘT%'a:)N5^P$s$Q IX=@!3[u22z|ESOԡȈUA &7
.CWolBfR`cu -2z39ջO]̫.VcrQ G :XEdսJ5,N=SO`Qu汤z eXLw7:c}PW{w0Gu5^L96T`JuızөJol~Ө ;uC^l_VܨPG0:a.4L6R|~ S1UGWUV]cO Rg<~6حmuJˑe}v$@ta@N0xQ=n/8^(uwa NQ rupi1\-8S'ԥg7pP7\^꾂8SVpz` -.W uU -pPS0P=7#ꖂ(KꈂD=<z{ϩ BQ<&#xHM0z? fQo{u-D9|n%KHԝөG 𹺒`F.VL&GuuWL(2O]Ezo&5K{Q]]CzԓUw^-`Ip 즮XX=_`/uWE]=p=P/w61wWIgҁ' W9p;+5pGuMzqwVlQw _r&ꨁ;.D=u`}u>cvRXY]2zꎁԫUG =``S۪Y`)uQw l>`uxH, սR0V;V -N}RT0:SWT7 -Յ|`>u_L'R !y]> `u?oC$#&P +\#ZuO(%< Sw4J]!u`>Up@} HuySwpT" ut? Q'pIQ p:7o\n DWK8U})uNV -p2շ\n -F-R p:.N J'V1Y.W p)P0D}5quOgU0L}71uKՇQ0T}9OxU]p. Q_H}>z2ϩ<. U_X}Bjr @}D#bP_Ig`߫[H}HwRR_ԧ|`:-P}LgBT_I`V;q̫'u3 -x`nGY̮~): -?N`Qo"P_ ݁g5,+]B)vGw3vgێxDVGXK,8X}c'XO-8T}#XR.8QxyU NSo?:`pzn}`uu;'@28C 6Q P=fz}=S.lz`+u`gWN5V=~vT TTO(G -P  Q>P'@/OH_x[=z:2uMtt[nZa@W EQ|] NR`lgUW>V&@0|MZaP=:z2zu#`pN=}sz1 V'cn8Գ0ZqNg`Rpu8=pH=zzƫCW#XN9Gԃ@r`P -u8;p@=vK9zslQX:SG]t`,W"uX:MZ=sQ`zVjRWX:#LuG`UO:uX8}Upe`zRlT}بn;+RwV `lTNuX7P=n[}`z:Uuiث.<W]x `:,Sfuإ5J=kՑ`zv+&VWEQX<ԣ]y7 `QOzuX4Ehե`zS\P=n=+spB{V lP uX3#@=fGԹ`z{xQ)8>SpG]| W!u2C0\=d`zNhRG>+pK]}G : V1u1k0V=a`zΩXS.?CpP~ : UEu/nHn0i*8#|:S|TWeuJQ]Ց: #'uVG -O,0]`W(>:Q|QYuDEfՉ: ̪WuXU -20i`T(:P|SQuN@]6}໺ lwuT 80/q`R'^:OREux:J]q: KuT <0/y`P'^MV=uxs4Fi:̩u S 7@0Nԅ`M]&ީ LS5ux.c0Va:[u"S D0Ս`K%ޫKW7-uxnS,pS,pS,pS,pS,pS,pK*pK*pK*pC(pC(pC(pC(pC(pC(p;&p;&p;&p;&p3$p3$p3$p3$p3$p3$p3$p3$p.+"p.+"p.+"p.+"p.+"p.# pN# pN# pN# pN# pN# pN# pN# pN# pN# pnpn7{uLAA?kNVH$V_#+P[}x`Col?୾ GW -6V_#,PwA8`BuL; uGY0: &pPg#,PwA8`BuL; uGY0: &pPg#,PwE `A,7F\[z pQoz#.-XPoE `A,7F\[z pQoz#.-XPoE `A,7F\[z pQoz#.-XPoE `A,7 uGY0: &pPg#,PwA8`BuL; uGY0: &pPg#,PwA8`BuL; GW -6V_#+P[}x`Col?୾ GW -6V_#*QS]#x`DOuC੮uH-KV%~`KG~ "SOuc৺1S]k5LRz&~`M=C  Su̩k:7777799;z;z;[a1'e["sY/uEu:<P'y8O|U7}ૺ _mMuNuxT(BY]^U -2P|VWՅ: FQU7 -,:R|PgՑ: J -L: -<NKVw -_&SR7՝ux\*W'ե?ux]]*Sե?ux]]*Uթ_ux_*~{VSW -UԱu?5`VP ZC]&k_;R -|w;S -{wbP)bP)bP)bW1dW9f\Ww9f\Ww9fWgAhWgIjVWIjVWIjVGQlVGYn\V7Yn\V7YnV'apV'irUirUirUqtUyv\U?pT= T zM0Q]/`^'HuN~\To?3~fpP=LU z.=0U]0s`:a\uw\S>s 8}#pL=LVW z)0Z1S`cԛlu.7RO>!8|KpGLW zN0_2+`eW{|u P=5^{6kpB=P zءC3`:hSu-W=kIXz]Q7 `zXrI]5`j#*uVG]lVo<]XxX=lS `zئ.ZN6`m[>u,U;uة^w6R=T `zةFS7i`:p VuS;{ՍئuMU7`zج.Y]9]U`rԣnu67,RO:աXtKGlW`zدn_:-=`uKsuv P9'Թov70/If3I3Ypzu8Cw:^<%l9Ǩ'`{u8Gy;9\qNRpzVGԳ:= ,lN8`_u8M|۪qVpSo~pz6U^?-Hl7g`Gu8S O]nNU/ vppzvSws:Ad -쥮6'W`+u8[; HlNW/!>bpz Q-Ek`uBMԹ5uwxIkCԭo=@j_K `yuzVWw7`quzVW~W`iu',,4EՍջ:zU~U/#@mXUg] `MuO:,3|Gm:z!S>V/$r0gXMeL W`-usJ,2|IM; :z)QV/%2 [ 7V,1]kk W%+XAbxE S W^S/&@1LZaxU:z5Zuuj;( wԻ  練SS/'@0NJ_xW:z=u|z? -u{z?uzzA -0]^PULVgW`p]S;n.Q(DurzI w[ -0K[RI}Q`:0B3ԭ=N-Q/* <,Ro*8<,S*H1vQW9:vzρ-ԩ5ԋ.,t`}u`+WX\9XIZeVVSo;oz܁Uunw`Iu`M 7XN5XWjR7 V=hz遅A[,^{`u`k[[XA]2D=.Wg Q>0:bz L~`^u`;S.R}=P.U}/L-YOH,]yԽgE]+y[Gԥ/0Sw'Wg -~H?տZ(W3V -] ayT`PuS&AFT P}]>Q`4uO7K$ QFR R}q=0FC]P8> ԗOP+VU7xB}R] )u:u'VQxA} B]%WwxQ}"^V^us7GS]-SxS}&ԵV ukԇC]Ww8I}*ՑS -Rub3P\.S8[.qW uZK8_"VWL}3sM.T LuQKW8MjNR^7S)P?uH{ԟx[6S7Q}ީU:`L2>Q' % u&hMV#XacVL0zw PNu6A pT=@z| -P'<(Z9%W:2^V\^ꦂ+8HUpzb -T Xu]Ym,8E=,SԑGp:XT^܂S@\pzF ^Uo:uy+\/xVO# V S< @1_Zcpz)# W`un3^h>QhQ -Q՝ՋYj^^_%̠n6P In쬾~ƮQp쨾zYnYr줾v=.KXAt젾rU] XIv,>nԁǢXRy,>juեZ{X[]{e3D}L>aM̪\ ȄW]̥W5<[.BP)] M݆ >NU"cԕpයI}|EQ"^}ܫ.GRԇ3z$T}nI.RG7aLup:09G}WLV_'cԷp: TG*7T/10:Y_}LdTL E, R]V n0 @kÉ#-)ΔpS?{'WjSKx*YP7 ࣎qu&y Yϝzyأ{kQuS_^T5U2ulnRnpS|z(EԻZ7uV؃ FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU@`nA -endstream endobj 76 0 obj <>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU a(zKdAZzh *2 ZpI@_уoIyLp1pUz78EJ"Y`tZKvtg^F!tW~abmLwك :Uױ}פ"B"cxş'S_`;|`Ef2'#5Ln30M4fw38 4@b<Ԣ <%<Y)Jiж<:gp>ޜ"J: -(W b~CU+y1kG]V0loEو UZ TdOE?v"9|8!1g)Cq#R<zӃ%yHr'@3@ڏ{\@@yA*S{ z -yjwPc2'Pcwcc)c9Gc cvc/lc?$1x=&9%I$Y uF`^a(3zA3NSˁL+.^ddvr #g #) "1 "9' W 0Ed5L(`E9^h,Jr ,r#+*s(+s#*:pwy9ЄSGNчuR^\<5%(\ hI@іx)'zxl.@%<1X/ (%&$lv4i|uKc^"xL$d)!UtvBb ЖlhTl$\qʒ?p6cC@n3##XPAl M0s'CYP΁GeU@r"&+SO˶ Lc]@%&20esP @ -dg`crS3IXpq&$c`1rR1 )F."^` rLHBnV Z`"bLN@&V {tPLJ@4V $R tLF@P@(O OB(t w4R+%$p,M@ -F {6"Hh=Tc2\`99.XI{@b < 7tXBs@~|J0e`6U30aDR*9XIc De@5 *2l`8OɴTeP:طW) FW@qF*<38H -M:plIN@"&{n~Q䟴aC0ٕ<>rl_ hœfВ8S|/8ZS(41NhO#8r<5>Y>8*8(8&_8|/J>;}>5?>O4[L%?^>NNC _8L05?84xsД?pZs<@CX4cЊs<@#vmX}4aЂs<@xʳ33SJ3s -34zy;"*Px@INyYx`iz;0@5D^ #0PeîCi TtR(¨ `ҁ -0 Zs` -dǵI)q<@fHr /;L9Lu '0@FN` 8>=o` dcEq<@&XH @N`1$6@ -&Xn"% 63@ZAt#H"$L죤J%FD_h L"&<1cy'X4a Db$ -1@dae 6 2>S:kd <,2T@@`9s V1+XidD$ 2@&˘a E0l6HG`  \2.9Lt/Y9`* `020&b0rs<$FN` - 'd0(@`{ Tx-P`B`(PPZIa@-XYM`  Tx!L,PN i+Pg^ t7xmdY -T&q -T<Ū9!FNN>'XTM> -t up=Z;˚=lrR [6[ -!xp%$@'mvhE*+ -\cCnt@;WXPM< t}pZ?~ @4iu?8F;@YPNfn@觛@iFz&PN TgfB衘z&1kϨ%si%;{,"<DO'>DO&p,m ]4($/nH_m_?#-~RG#|wGFhPF,$|rI0ANjvh"vH"RE`*@JCZPt']8-d/(N -:5 @iJbPp08YMRAC&e !nPd7(Jj0 @IpX$/0$#~/1T5bE͂P̂PP -=l( ͊PbE(Cα!y'R<,)%i<[ -@rpc -@rpk -5):T6'uWlM.cRؚ\Ǧ1Q`c2p% -DRfm*8V6%qWlI.gZؒ\϶!y!yq¼qþiiaaYYQw`0`0V3AF3AFkxx`lOfh ` -s @zb0 9)bpMfi&̄ ` @f:0O3%c3]R1 + /II\IIl `fzH3d_5 @> Xz,a~Fְd]k4 @. X`R.eL0:6Lt `!# @ Xa-0YhZv,4 `1C @% X`,g@ֳdWcS+1@ - s @tZ= : RDaMĦTad")8l2@ FT -  @\*U .,FbJ1%QelB/%"fvR(m,3;): ` Fm`#}X8:ldG6N+g&3hRe `B2leEֲ"Lk}6Et `/ &`UXw`UJ*fXCVBvlIjP$|vP$,5;(z`= `?[ zp`58w=5Z`xNNxMnEGlS"#|R"+,6o)faxI<$C|VgT ;*p 3p+p # -p -p 8rn^s|^l7oP|Eyp`oiIӴ( 0(08w`\e<gYpF Y `;0Iw  >+8w`f;f#:}v!p`g;g8P,93@/;KibXtZ1,: g31|: @@# MĦHf|V>*wDXuڈ @ϮEct,v.Ʈwch"1a>@;CaXvZq,;-|8t8 mȶwdh />@=u;PO]"Yw;|HrTH @5me(;PbRP Pwe(%,>@%];PJWbT`6B@0@! 3`(*ɬ<e>UHf(;Dhf2The4 ȧ)<E|pv"?up@0 s,‚# =?,=P?;EwOz>;z>;z> ' @ܩ @ wjP`8{jP`8=g@LL=gb`8g3-h\i @i @w#)0I @HJ"FI"| wHI*,>7JPa8yJPa82,>'@DH2L>'Ba8g 8t|.tptp;||}d p #!F1@ȳT w@EB|TSNEJ>;(̞X}f@`;X}f@`&")f}f"b@`&")4 w`!)3 h4JCZ>+ h40zb1vc1vc1vcI@`$!1~FcI@`$!1~FcI@`$!1~FcI@̳l w` 1#)@HAb|F -;0R w` 1#)@HAb|F -;0R w` 1#)@HAb|F -;0RHBb ?# 1$ 0HBb ?# 1$ 0HBb ?# 1$ 0i@`;}F@`;}F@`;}VbXi@`!-v}VbXi@`!)4 w`!)3 H1D ?Ɵs . -fDV}~3">UdߎDwXEwXEwXEϊlgE6Q}">YMT"Gϊ,;P`E(">f`,"EDcG| -|E4 -;PaG|*@Xh>v` ;@XC(1$kH>%` X-` wXC$[(>5` ƒ,qK@%XB(2%K>E` "` ʖT*[PeKV8z@-Xw̖ cM6P{|:kPgM6P{ G& 4& = b@sz:|Z@{O`OI=|xR@ OhaPI== -@: âSzzXtJ@NhbR =ML -@8MȦt)t.6 Ŧdyd6F ƨDyXd*@LcU<} -@0Y&42+DNv ɮx:\@'KheXbI< @,eH,^ ˲xP@c[2;l @&}mȤt-v θDwYD@?Hg]; @ q`y$L/y  09Ga`H;3, @e`H̰0a0v0Ebc:Sl @Y`"9V 0$QuX Gce: @Q`ȡL394Iv 0ĐtFKBeiR(:, @ -E`! 35!i 0dsr8cAgm9 @5` \`n97i97i97I9WI9wX)9wX)9wX 9 98888X8Xclb7&6fXPLX4vp6Zl;$]RpvYR2PJf{:7l@oJ >}zoB G`vpԑnNhܰ@mppdl@ \AUd3Flp -4QmX!"ܱBEDKvfp!KBeZ(6,@ "z 5[Af*54PkY#j =kP@0 Vj#xR @H  R"jBMȦIt6 Lc@2 UHJD cri4I@. ]%DJbBB2h&L @i4 <:$RgX'@1OD 6>đf"HdPaFd3FdeR((2RQT\V - *JU $S1FHfb(2| @6Kbl - VD= "1@Qc+Z @{pn Pw8tXF`0-laZ-S* @  -Pj(bi0M`.3 - @Pt`ʘ.# @pb6 z8 2_J `PɀS^:Y0et2atV6 `.*Iu(f.!X#T3d[r `@9SDohgVΘP[3b '4I-O0h_SZa>&<¤|KgxQ %!f C" Cw46H,O1l_QX2 # cL7F`xmWc <ȼ߈+o'<H+Op&<+q%<*ϲr$<ψ*s#<H*Ot"<*u!<zAn#(h)GVk }y5LO`L(@ c -@zp)8*L)%(Q"$0yǘQ=#ŒPaD(yφPfBE2#}|Pr` @A]O -?L'% Va:(I62TM@M&u Fd]M -Av&҄ULJSBF:-hb.@ ZXKPCw>)"/ %|Duvh"*3 "+ " -# "[&)#;)#i#2ϴ`y`qW6+}xa`Bd`IH$34YwTUwTQt[DxO(YDXDX_! d 7j s !,K[-@ K-$(@3J5 -@+JN7L l@Ya` ʲvE(u(v vPvPh(PL=GDZ&@)6QyuX<8DJ2@a 1Jp09Jup` -LuSH*0=;pə98Ss4 -3)+0pp&ifed -Lʺٜ`J N'l\@`X61lp &:EDU,0q4hp)fabb Lœ1-0[7\`| n! Cs1cbpFfF ̄[I/0*7_`L n'xB.B-D^TnB,HqX,JQݩ10c݅0U Y*HAP@ :@ f D@"T* @N@F@F r| <%HJ\\HKL\KDLd@ Rs,$<9X#HO \^03D0:3C0 -2B0 @P`u? r1 )#ZJڃ@n@<7p"&sv *_q`&7ȁy\+fqo _6oL@|90Sp 93 xd\[2 DžTv`܁1\{@n c<,t@NЙY@Wn -e<(t@n~=9qO t{*L.2 -Ot:}*LN28tz*RLI2*%8t*SL(Mr/:et`0LNL%G/8xʁ~ '8i4`aZti o(_)_L%]o xKa\`Megx`'js݌MxM{L0*24tNQ"NR#N3.0q.1a.'@L rrq2p#o/n;22T G! FA HEq4 HDt HC A@ TO9NYC@$HJ^`,B]`mQA`yr B `Z`5B1h"wE ie<@ -O!L`: ,OL5h%6$XnO`- I6(("VrXkidR(5(*f<:XkhdQ(,A0vbL $@ F`(0p"a`:Rc`.Rd`"BSf`iSg`Vd E HAZ!2 "0 iKDlAtNK4HtEB4NH*BJt8M|Z8Gvz4 8S(҃fbDAM}Yv?J'%E|S9M;6x A`4(IH*5IO,xJUo8ٯܶa mPE˝9ALor8!XM?v.F?Q\uPP=*jl.%E%{7x&b*\5:@?3r1\Vl̼WlʴXlȬYlh6 MiLjm2d`p= <@j EZ 0FJ a,hb`XbPX `eh,0$XQ,JXq5fs=;H@4B2PoL  #39q9xȬ aTf\`W[y fRےzqMc C؟nFPT,Y @QBK T|3$! @|mJ!YN ,0 H -/XN=p,!$k '29A|]FjK -M3Aɜh"gj>OjO 240M× ZJD,0H_'](U:Үu_. HZ*>_sAhol m/qOyT6u#uo 4ۭt~寇\5=BIFu zx:0bRIo1f/sj7W"?&XK Bޞ+ jVzOt0d~7: p 2ۣE=]~n.~aJt"%{A/OD?Xz8{p *k#@6 -{pH k?`]m -endstream endobj 40 0 obj [/Indexed 41 0 R 1 119 0 R] endobj 118 0 obj <>/Filter/FlateDecode/Height 3140/Intent/RelativeColorimetric/Length 61261/Name/X/Subtype/Image/Type/XObject/Width 3132>>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU+2 -qPD`&IKAK@,4L#R P~n{IeUu]G7^v_xm6gdddeg JDEMӜ; =T\ "Ѡ -cPUum]DZKsYfeoOi,+~3?ZS=~ys!+ A+.,;rM]`csK''>:y6}oӆ]ư|WyӎcﵽhijVWz ?9AICb? as00ފu͉N:?p#c7o޼uD`rù =Y73ӓo7 ^{l#x򲒢zFddNɰV A0WVji;8yWA+ 0:tٰ ,< ={<ş[4{,tey98`)hǿ=e*c#7]}|ؑxMվ=AFD#*BDh-vd]T@Ow};ޟz0j0HX]-m&rX LOܻskldxJϹ3l?8TTDY0?w-"4NfD KTT;Nu_2xN~}~-`^K:" -E(:Xш$vձ`A+bK}u׳^?ɅH4Jj.>?ɀGS=*xG !Auĥйe[[46dҪ -E!l# ,LQm89f;89`x hL{{{9Kr\gg I-:?=wl̛{^K a1D4px qn\fo.PowzSߥ'{ۛv}cB,/͙&GM)?YX^Y-Ǿup>\x`(D׾dD"^*"vlkl6T+d٢t>b wt5\0K_TZQwh|fjwN<_K g[兙xt6z]u,I]ZRHJR?ՔWچֶc4a|rN/m/p4_,pȹe[̛'G;^7*jRQ(ˑJDBx,&`Px[PI-+ДW:{ǦgW;'pJD$O@5O9'1S"SLBB,T Mm]#SK[H!>$}k_ -(?;S@ -b[<Fؙ hhjc|{+ 񡾮ֆ*mRK F˖?;}I A2BW=e<>"vHbpp*׆ -"W,/jf8tQ\Uah};4`ĬNh8<;߱f}l& HHKƹfDz8UIYeMCarvɺ:9$DRǩ:u"D粙i?)L Y -uu}{Ŷ{ՐҷHᾮuZUQaN6$Ï _w_TDYRȧUur ԃĨs: Sf@}!dET64vO̭n:O/!Su48w6,Coj*Jy$4'W$hW*mu}Լd;<#wI-^ϡccqzV̗d9QۙgJ?O̯mWp:e1oY?Z jea8CY?a3<tQL*7 MZlEB>ў}ה&ٲt{gpXi5Ty߮IDHZ;Zt> h~X0jrE.z~TֵYGps\<Ψl465Lm!]l_(UVշ&o#+Ӿ4=Y_^,gEYM[U ѐ E2e3Q P`qx -* Wye1X~ l^L}2v#׷ww[qg["PFgy[R*"H`dzlfRÊqđDw? \\gf?/;w xЋh{7-VxS&b+3_  -DƋn𜐍[s&O<[mm kf†&1d4ܠVH<<,\SR5v! i{~˦3{cPO{Bl -!UU501>qWm&L, PZF909j7$"ޝYۋ.˝:BB r;b_tb þvKS=52-R4v͊ugWȔ gkiU٠-<.ngH@D7nY4򱶵vmR"!Ȋj{hʹ J7C=mR*ubyEmve M'&+">Cq|Rgxn" v^wCԩX_EM 掾b?-;.Ot[ J|R U(QV,OF+P<͑J&+NDB7TB\T7,*IFN\{rRp|OӲ{~ۼ4,l\~z~ oE?O̭.\6wG-5 -A +M-C4cT,##ǘnp@$)&t}wkTR0Z>JƇOgd9?gI'}VNJ"2hmi0Mfrʦ!Β}Ӭ||;'jMŭóX*Kf) dԻvQ^|.tș"yEѧxcE.LMEJ*͝v玿Gsl*.;^6֨d8F'QT:&6d:/r٘m5hb.ç啺+p"]ko5ebpmPOKZマQʞ?^Z6;;`kkVJ=ZH8j}Kcm?Ifp'ފcP| zP@T֙;&6K 'Z|$h ٞdXpk@Y^P[{fV'DH>0l8l>pA'>p 3${l> o8pD_bvd}dߓɰി(s_CA(hL6vNs}ciPأJޱuO Z]-[)iƔ7=u &l6ժBCQ\Loq‰4[|xͨQ8-d] -$:sװc& ᐌl}Ju8|Z^k^;vȅ j92JS˩@R8z4 -KaW(כ;^؝!m}+eBodQ4vCJ8X2pCc JW!;f_u7׫$Kp[RV<-^_AN9ؒ7 -$뎡NS-1N"+RUjnGd$ǻ{[tR姣PVy}RXt΂ -pAUgvy/xz?uPv46uo2&9=o3V+0'7=uyb|HEOWlB'^4wNc鋹W;jbs惬3a !>]|s^%~RW Q,&'d&ؙwcf\pTɰ5)WMg/S0On uޭ.yٯӮ&4 ç'$A)*D\- *Ȣ(K+dt/x?QG]mtF݈i97FcӢǓ j'WzF_L)ѝ2Yc+5<a:^n94Lt3ݟx!OaU7qxcC5Z*0?V>aԲ =AgY[DIpgsìGAԙe]_ƒefrw{Q(1 -RZ\y7q KIo=UÉtVكd42b=/Qk?$3wVf;J MZNBOSJ dL*M]-9ad -ХNTl&-6}w[+]z+dޱ7!9QG`"4VsӬcQck6qqdtgizziQCqbAu#t&ɤS6fGi={[ʝf- DQ^HVw^&]{a55W_,nzH3CKlzH$]`ji'mDdԃj6r%:^CK=V4Q?R֒rH%)f̃ -xW%ΑaG]op}$ZKqݭ !rQu=DS/ o ODUh>W倣zXz{zTT>4%S7~7qUh~6EuQ{FF! -AEp( -"27 =`NTTZ<U֣͘qTR,$Gʃ7?pëZNY(g?v-}rY n3Zi.i2ۗ !Uh9'/V8NzKn̓3=7XQdtkr8eaf_YӍ;`6gfOh޲GCLײґO?ݻt*zԽK5N>'qZ~pM‰%_bq7i+2qL!jL(`Go7bpWCGc$l=ʬ3BOپ x)[v2s#ݍ^N<8 ;&Wә6;h,|-ƖU2|O+ףzպ"IB4|J[r@kxf3n?nѵU~OqJNtTЪS-mN<}->Mf0CHGZTƛAr@nR_}ʬ3Zxvĭм->-NwO]LB.8~gbǷf -.>t>4*e&C7yYQBq\?խCK4p_> 'l÷q^Vzx_iG1>5<>=_Qyz 5e[jDGצvT8XmB6|47;s5W]|),#5;t| 5_EK~c8d" ^~0dvGo6xT򁐎@cVzeVKRW^ܜ&nV4P\E ]m'L;f24"zKz^|-67/8$ yDKQ o[plYX{ev´+ rKa9 H_?ѭKߺPQIgBU^X2/} yHHgg ͏\/rJ`܍Ki/=>5q&پ Ȋ@.&qү1@wn 2;s\ -M yKh?3eOSL|'TOم[+dzK=*- LHGAM÷q΅~7tlC DŽt=%M"ѵ3~Mf. ˄.>wq4"&|SU o W>8zd$vw|\-2SϺt$שs߿X -L7[~\QF@·3[q^z|ͽJF@@Z҃q^zl}n&}ݤ˞bzynE%ͽcSe"_Bn)$5:lo]}-^`ṝQYuԣ7)k=)ߚ}YS> i)=;q/eH=Z[HZ@% 2R/zJ܊]IjKlt{=#kﴖ{UPmע"Gק^k!uKaFrwSt뻟-& nA!5Ђ&T鶁֣i2`[W%6 [>8 -|ZN~`}|(a -/vuG){9+@޲HNۘlS>8򓎬LpԣP~?D: -j.$ ;@hw}) AB:ݣK]|_]MiTUv."QaPp`M5n4( 6 [ UT+O83ozΌk~~?纋[nF Y!`}ؓnH7_=yG=Wo䕛=vfхF@c/8wqrJ%UH8Ra<Zhb9c%7f , @>sef#oJ4dˆ4gL/>R^_H_Ց{i)99k|_M,Z !=B 'Ƨs:Rb4V뗤in;)3pgҐ^_Q>892UQx_sDs>hbir;65} * -X=>ȱvZ$r/"Hs_|v*om -i¨8?:UT%GN_JHml4k9%ξ{:Ul Y++h4V'oA/ -TRW74Gt(sM m|-Bk;/>YXNɱ2ˉc5~UC;~~>lʓuaTL. -/446O]+Q&l5k;%y{oҐ^_i=sǦC:3n>svQߜ|!Q37!}UG1cg=>K)1XXnXKuTH[z`U*BrzocH^_ -x꘹x_SXcoGHͱrrJ@zEɅF}ZboJ37_mԥ.vʞ.=];F7iq+ܑJCz}KS9y{x{>ێcקǻ*$5cVrBr.a~Hb9NPoDt&ʐB񹭂(+Z(`_zv}ʣU>Vʎ0mCwnS o룀}FhƧsrCEk:Ǟ,˕ AQydrT15%3EPFjmlʣ>Q$pSߍ׸hyeCѶiVv15%+Gsjr̯uM$}5K%TaDۆ.LN]M-eˉ*(`_ZU.=n<sBh=;&]]؞щc_s|jִ[Z& +1kw}@u<'htVvae14d󍼥l3IoZV} -xFh'­q 9>6meW^U7JKƋ+'P6~|hS<WZY63+%@9ZW[&> -CZԵ(IsB'J2#u]9Kffp{Mh7:45(;¨Y?WI-zB]ɚ>#?|W"'d2ޛUi^Ǎx/>+2q kz7lܚ[a@&Wåˏf|!8؏$AqIkU\^?pq끵[_bN>jƜ73'\%wv/lăz>ZjNbF:N 6L"OpIlF<'mlnZ>=|_[@lew7U-NwVeN|i] 鐈쿸W &YJn=~}s^>d-i[?Sޝ*`ENZ95A81V>T5M nOޭI~K'LNbFIY_Hxb 8؏߿26{<ܸx vXmL? |7ՒZ`D:yDUvL턌xPZK,?_$%wZKfatp"+3AL<{#4&xX[L 3^.t~I:8)#2kăHƃtMuWyH'%wau{@NK^`ld14j.Ϋn,A8o\[9Vbk>lXѵth9p6r܈{Wcޙݴw{^Yh^MhXn -8 5] #rZRvl"+:ƷR%ڸΐ*k0''ELYDr~~8%+:Ʒщ=~8*(ZҸ3&y'CiMWxyPu-:pΜ 5-HV5S5-~tpd_ٰi -@6}ןEMMmi/8VTl!jlOrc)~![hf7măJ7|ϗbF<$>4 T-󾧺tp^r˕7/و.6U1e5l{rZ@]!f\3{ | WYMs_V?a8WU%4'/]5RT_<G؊W/IL*Lp\T\$*W8Hء'asG[JTIJrM[K=?[_il'$w僉$'*=+[/cĖlpm$53[W=pWtdz!sXI8K[6ڙ+[-az3!8PD:7uD@qߪJ%A HQ ڨQYdq%"(B@Y$@T[U~Μ33KwO#oܿ=bN-%;Ú<{hp}C-_&zוCm&C @)wj}흗W[tC w&revalHS 'r}bl؞/c\CZ*`e'&Vŵ@5{R37M]+o>BuL.9{#mA: -u|e흗ZMf@#=+Y_9PEό.ds_l20/N*ѥF@ aelϗwυ5yynau^WIс٭rexEPٖH:/sKw:š<Hzwj^ys;n/svS6isw;/cUJ?`Vfਉ`9ocJ ?<-?kUSC/vlϗwυ5yFmRXc]uGJm=-MFtyfyNvatPן_-Wޚ 1;r̫-: #Bgo/WVPHjF36<=. 10.?(WCau|:'0O6+,wk/w,srφ(.O?N_hЅ<D/o׵3sc&QBw9sgW u-+Uޜ9JwpKvm׵GL17M]O&]uj0euraMu.8SHO#82aDf7Kҵw:B<|WbKIJ I'uV']uK2V&BujH.emW6f.7.c_=9;AXRZ #tqBz"^@mzS͒t❳!HсY K_=p\kED*cIie[6k9;5[ǔH.}kK:makv,)L*3[ǖO uV~TReksKɎ[ Ft`v,]{atP@8p\YX_ ̶][JkЩ$7ۮ,o?9j05-y}qe.4PK<|,Fup }? kPCH+ VʋϖHP3D 8_+Vޚo9hXR?:`bG:4q Box$0z:uP UۧS6!oK;NS\{Svد4k;@AK#VA,Ar3\s9{[k:VE ;&+}֣>\JfgfJ+ -!B?&{:iz?{x>Zh:V͕wWG oetMr[T"k{x>Zh8]ɹ^igN#8cND%B7*S q@Ec--sɺ;wA^EhL}2ɡDDmd5{ōΈez̈́i`H{Zyk}tT8*c1L{%dg&e{:LxT Y=S: ] XK\--s _@y:XykW铃jJ*$-+YŭK23]Oh:PVMftvy9H8=+>prMs#ma)J%|}Olu7%Wi幥GW9pfDRwŭ7BƮڮl {XVp=]n<N%ծέk qIT2!cvmu>i@b0V.nOwIsL4oCv<NAXܮ {lYvUͽBD/,pETaz=+1׮.7 _F~w޹TIk{oGtdWez H &ӴӐўw% >az+1׮ʼ$~|]zfWp=T !cs|_94quqawezH &'+l>?>G뻒q0=Ώ_kWeP՜rUͽ@52;kkm$ S/~uq{VJCɴru~}#l@Yjn"'6 -'zyO@CKi[97pBF{R%Wj-k(2lTaZiz ϥpsP@YѵŁ&?~gtMmU}r-&#'rrca(:+9wk1)Lr!B#YGo5~v5qq_{O&EiD|O@!(9 $dfkm׫na~cmv$m?X}^ir4]qF -a~cmv$,L`:w!"{ƟnAwW-5%Bg^郠B4ߕÍ^c]tFK?AwW-"ufp\ 1L÷WXp/X -oD4]A2|^by2Q?L<,L`̮5@Vn D?wَ8gj~WAkniC"4x}i_~9"~@OSTN'Q̌F܅ni#dmdeS"<2@/ ;kX/\C -y}wg~WMfA÷Wj:L<,LpDxdvzƐ-=|lWYLpX*9w[~wb&s8a"rO/Dח}q2]_^o3^GV,=ñ.6pZU&,5`p{ۚu0sd4-{n?k8Agb~=<;AaZ׾N Y+_/ɞ-.J5+zeb7'Mo,)_ߥaa:""{OB\@dGMdebRus^750ru 8%D^5w2]mx^5xN k`kg^""L@b\p=c=ljD-56DxdvѾ 8DҞUtMfˮͭ.d[Z;{h#>;ZW3=yt:vxj+m.왘qnm?-MpdtG![okWBtJ÷W>߽=8svKkwD4]+Z]ш}a[ ;~W?z{K zpDkln[+Mpd4Pvn~xx,40zv7n%5GkhCZdTX+eWш0]bYYR@{n>L@[FCkp%ʔ:K媮VF&k=ni%" GiO1t )IdǴK1eRU}mv$,L@~Z,J9k -D"2h(*/$t -n51N$c|U^]:n 5оd4-r620{ -<"Zl2*M@v<]yʭR1yd,ʫq[v&lp zCA1k ĄW(7 { p}Wfy2c 5f2'ףc8hzbXÔ4& Gkw흸0]띖tBEGV(3\W]z͏[@0]b\HrR+b:3#G'/V[ࢉ띖V͍~[ uҭ7qN .\4=v[ %Mp2+Zտ>IGM@{'(,aӳz}+c z~bxW}ҪQ쳄h29ཚpzm3sn0bT|`P5_f3%+1R(f}c˖Zvz58 *IK:)ڿ睝ϳ1%u.a sr%5HlΚ.[:BJYQ81\~M}nrzWCqКT|`A8H@hY'k\ eKp%sC4xҒ6MoiTIpͿv~>@LJi K:+XfP4eK@boG:+8釛^mW1fNA 2^LD:BJ=MS]촥c_=Ձ.%-5_mAcw/*o٢ko?)7;5^1^%/T|hLmaڑS%|7sl2ة&;,;v1%%*ڿ˓=+9Rց>]OZ1\b%F '/UYaK@X6-:1\tO8W1kS h)*v^`[3=t M/Ol~b%ߟ@OX1'_ h.Gt rzg g(h#t ?ҡڧ.[:mK2oҎt ?ة v%٪1V p<\c+eXҒ;ޛc?Еt1 *{o:1|t=ܨ/+?8{"TV~ ב|gu{s6qÖ}Wց>]OZ1Ta˓LD: N11%/;5^сj(<Zyq]u;1T|>W'St j7ۑK:HfX7ݙHp}]צ?*}co%@,yFW?eK~rЋ_Yh@˰;'N}-w(Ϝ6ݧQ"bwg/"J}鰤cK%dʖ\bw^4ml4@9T4W1˜͚6|6HE2sE8H~a%F 'O - K:r*>T>0iK~~f.HBNMWJKq%mִiQf *7j]/e"-X‰oh’j^>_^败cQl~~u#vcf|uq csҹݽ|6PEwگm:-+X±%1>|-IEo=u_ݜvc!f|=xq'cWqSM^>TDwگ}~Hdu{si0c>lhde,@kR[v]W7riG:Zvjrkŝ\I6cFk'źk[3=t Vbpi0c!CKǓ*\W7riG:R__ƕt :N:Qe""׊st Zanے8kA5JrKjҲ>d03kw!+}:.+9UIt ' wfZ[Hs%gat 'Y nƌ+L=<]tlAn|}ޝ11}SodK7γRۍŬ+L~,n ;r8D/9DR.t 爾3ǃ11}ޞloo1m+9UZl09{a[ы@ϱ}ݒV'-_6tKUOt grT_Zpg6;e:cD˨>=Lr(lp%cnT0g{tXǁmK"qB騶5Lzpg6R|3$Qt6)@niynczߌtmmad>n\b~9Qco!m\p&_:>/cc=JmՔVb6!L,^MzHlh~N^;[WbwꑖӮ0Iw}E꨾3LzHdUU~Gm3^#͔#L&^E:<}=x:}ב2bn\H߼PZ]~M;:C}{.u}4`\p&־:LLz۪)-W\=/nRJoוՍiWg|$Qs`t DsN.eJt c/:3@O Hgo~Eb=M2NGQئ[m  gj,T}рe:L} "[Hg?x)#Y-d]a:;/7U>Mz@l~CE@[v]E]Gt_G~_b[mF%姇@wNmk.[&~q)˓@׳SQxn0hOlO)坸@׋ -L8[L ͗^|Hɝھ{2bn1=zzq bFԋZG i;f-`$+҉{3O{[ƽS0=ᅳVH/~oE=UߟM 1u؋՜0ݫ^>~44i;0P{u $/QOgSlxѵs?IGw @VGs]*[2K?:qO=|} 18_a/ߍٺ[FԋZG i i|'{Q*k Ɲھq=Y&^6Uߞ 18AqrNe;g tG)Ww 8EՇ Gw `@"P~T̥iB:Kw `@›ٽq>^pٽBZ ʝQu #ҋ[*3<{tE`kiGEATge[* -L{Bw ,ćK_1[w ``"5wPlb;$MVe9k A]FqbH Ιp+=7fnʼiO{Tpt bVWy AM30߼#թl-Dof>d};bnA Up; vnڑ{1nʾђʯ -@ҏ;VHսwt$^6BxBw N~d툭 =zYOnqWˌ;$P/|'ٽ@H=#e6jn@P=Y9iIٽ;[˕V(W[<0H/5C_o];٣kvl-DC Y߼ʰseHwn|4 i`P-n_2l-W4UWrx7{a.vcg0lWFm-'Oiafgc;acv.>-'.V.&y+`^,7?iRdb0 4l X f@H̬Z}nŠxΉOUw@كWakC&NѤ'LݺI\,[[T?g{7r;Uӹ_2)l$ }@ oE'~< s졵(ëmrφN޸v̱.8n7G-z~|.T {f?~sMR/W8nևm-?N':Q0H7gx6Je oY%dg;}A&q|}ylw6›دD7Nf|a:9#QKl[긮|XAv~*zm6H5;mƉ~sM[(Cnտx~)(/HfOq;Et ի0ëAt ?|X@9[wQ@o|I%q2o}}n(INaA&q|2H1Mdߧ}d=~:\`;:'vL˕@!t Dn˘kVB>wF-C o7y(Q"7{б|)[)f+mŸ:~QLxt ፛0֭t +7$cU>s Qsl(oN [z='QmVCeZ/=X=<d=rhTV@j*ݢv?\tl8[eΟ7uo\-.3=ŋc%Ÿ>8]a:VUuPYۦ[]"aMjY;,yl@PfCe%-2^ j?[[)%QMjY;,yl,{pRUYۦ[)%铺ne;@fYcR"7wP:.[]cΝ{>X}M dQ:z:n_l)ժ ڦ[]#ɣvxڟ@:CkׁVt k7W|6qFnCgl0ݗ1vt_"_@9[V^t 7[|9aUKfyJHEO2/_6l^ ڦ[$/R;Ef/jHպZvLRIfJmx%e"7w:auސu1+,=3'uc@*K妔ʠmEŸ; 14W*-)d&"Kl@'떒,-.CiSt(s6'Ls -]=\|@ܱ|6gd㦽g@ - o|v4 JKfyq}+"V&<dxlo˕At ?uvL~5"ټZvLRHGu]@klrOH7Gx$mg%w@ -Y ۡY{6*O}{eSt@X(j\|[[]%S(vد(- Y"̃"j#8 " P3'>}ffTZO_nd!߂F%jǹv ؋upЎYse^;_~iW@O/W\;k]w.7Kv^GPy0WPިOsFNm0[9Aqu٢vsaө<-k -JsVecZ;phq?jgwri@ J󛗝d![aࣽZmeT;W0}չnϧ} 7,N韼;#hF_~ ,l]FO@\G{Q;4ɥ} 7,(|ѹnMҾN0[aAu1S >^/viY;8g?jʍ,mt:Ƿ@ ?Zꇻ%@LoN`Њߛ{Q;\m"}/?7|}On;l߿Saj{Ӯ~W"}/7A_xVݢ{;vmP-8CvayӲv 8l7lh ˋWV`iX;OPxl7L@ o?\ڷcVqz-ܸփV~2OzLPZq# o~ȪȀLpvwDVF@ J/j ݫVv|'-ܸ4n|_*i@o ˋQ;\, i *vl}%,?OřQ;ؘkEv ܝg iߜEPy7'7k;m@&=mJ>VZ͋Vv ؋_9oC )->IWņdvX0j!Y}~m} -o[EëVr0[)AqfjY/_6OqD6@&Žn;-qh$2F;Poúv@BAJU?]*h vaiX;GPtlO^MҾ? |}l].Ҿ\4[ocoouQ8v/@&x$dB2 !1? H(/FȄd@B& c<~2!P0ٝ+&  mEry]Ġ2&ju@ c i$2F;v@B c i$2F;v@B c i$2F;v@B c i$2F;P;Z!(L9_.hbHH;dv !1@Q;MiowawqX;dAP}wvUz-py^N.[J~uu<-``hB5!Y}>Õ_M,hF%d3`0&b0sV2-f*M[{TNWv8t!c<~:LA  ?2!=C&xtȄo_H%,%rτ AF/%(zj~ -sv zﶧ cIj~,d} /JΌvk@*h:zvC?h:wI;<8,i@*sz@qEU?|JidC JW߯,RwC,j^)[}:eCzKi|#!=4&znUG>7[Wopj6zT -CVq~@;_llH0rnAI;~gF;v)I;j:Rxwn!Ayn!ii@:G? Ostm-0AZj\ *qyu dD$#Ҹ\3"бdD~Gjc܈_/F} Vd-t]bַQ+>Y@~:T^ ޹Kn{Z;_ap'+tvjΌvȿih 7V7WWtVoŵWJ\7[BE;^iEW^Tz^? Jc>*]>+{?/h*|>qmȽprيʾ>)WOqT;z7P,nqt;jR* ?EQxeP;]5v Q-kY@͸q}R;V/o˂(n\mLx-~Jb}̌]PYTPLfrc܌]пtPMQOC77'ìo -pi-8A8s׌[a1tWaq-j' -Y[I;h+݀v prG? #qT=xZi|2ّȹE,V[,+Ml\6qZqY-o_ -Fܼߛ+kR+ }8EQvȷ ޺iDP;ZaQ5iCŬo]#j\oNi <5QoAyC3_nL([ژ!ȷ{t |hFˍ CoA?OI;}H/(5Td} TX>FQdu-@A8uvȷЇv;,d} /PNm^ףٲvȵȧZ|:xJ;Ё׋~-T@ΓvxЁKJsЁӤ -Y@u#jΖ( Uʠvȳ پmDP;ЁۃN>. -s{wfd-HACY=[+e} ]T~@'}Yؘ0%y/~L@'mYڜ -{ -Op1[xpu7;3ecšv;:MJd0ً ""%RW;Of8g2goht-d~epjQhwg{R0%k}[)޿9=`)FsnUh1:K1v~( -?r^U3 pzw`;gO(yCu `m40_Dr*;e"枩6%{9.2hNɍfcewE$ͮ(˖:.zDQ;[JI;6?;|fu-MeߌdpkYhDߎ3=`I޿פ52o2Z5,_|( ->NhV= pv_Ks`Cu `M4z? #9i-~XԞp!ESu `c='s y"_ -SVRX= wXUnaz`k[a{A;fu-ebΟkYhE3l=`iFsO XSaK3vκ~zV=تSL>xawZhLbdnl0me.à,[kOߩه o--зO:^ɬJ{,B1Swt2r??{ot-Mf PMu `O?q,4Է(Jf+^Sa+0]? N#nUnE(w`zㅡ=Շ mRhVōOJgnu2~CXf>L2]T@>xa.fρn$9z9]u `/_cw2 ;XQIMo|)5J[ɳ*q qbNl8}+kn$NsjS!}~j4,>*8-s2,0hD`*[[swWJ玡0bph[I3v/z^;l[k})/ Y+?{VdϺnUf[@]wHϞRz݋0ͮ>L %Ku `i[G3!UTH7y4z72ʖ@lJuJ@CTe/iVW|^K1g e X?zRFVWHUn)&wU2={Ju/@4a"d0-Y[)m=̈́WESu QZ2'c$UTWlPHTdyB_o[i`5?=̞~Hx5~XsXx@N#n$ɪFGHukTH7@*ħo~횪[Y]51;?A04r@:oQA0}gw@"݋<f'ۺ@r//wU={6 YPHfW~}mJ[ 0>!jbEZ"(1$|Os9罒;\ܡoQt4}(nyO8"g۾@adCjrpYnN lNtn߇5i -$Ã*8cfyps5>nH-gնo Q=&&ӳgPQٿ[͒3D;M-.Cv y5=-w"M< @1G[[gSdxPwG6/_on/ -#cj|ܐ[UYt; -#zzl -!*w|YpvɳenB֏}Ll9\cg`͕~}L~\[n_Kasn l$kXdky[& R:^l[olf%au2l\YU4v ོVohkv UM,*ta*YcIn:Ht}-g17YcInTh x$:vv ] ??RA'[0:Z3NgзpkOֻXdky[.,*ta^7IݺpTh dpkLz-v DDJ~n8,X_Z'^˳pZExR7Yjv m^xT*ogJם@nM_ZNN%-7"Uo8rlfq;V*~8iz[Ο.nv JgRAMnk~(n~R{u8a|UDQl?iEQ_tk{+fy +t ۩mԈt `uAj<{-7AYKV½6ԋJ:/:zJln&7ʼ^zr] [P6_T1UAY/pEu9y>7Kt `UZ{jrx<\S-Wxӗ4r+nHv67t x-y4bӗns;5Mn&^u'uOr><6|JTމmnzc𢣧zr]n[?y1j p -gƚac7 3kӗ'pIuげSݯSmMp[.JltU [+PQqa[NQzgnJ:1Z[t -AzY{-vn&ښQ[ngf Z;xճPvqBӯxӗlxH\SعhkHI>TƙIdݓnƯiK>X3C%pNA|NFW@pnהt afmrZ[ 6/5e_[*ܻikJ:oiaL6-dol -Ygcl~$/geO`bOݯn+5{ cU5n6f p*;3mS/*J6|-%O֞dFF[nJ1HޥF7&kt QX̴ѳzQIWZĘߪ-WիQf̢wIړۈt U^.;Tdv-n8K͵ӻPIWZĘߪ-w7̘xݓn-'q)KbL: [oRQkMڵP0v0FOB%x_ic~K\VؾgOt -a=ɌHI\^cV xXlҮ-K׋J:+'$Vŗn}=J^%O֞dFF[n˧ e5nBE\lܮ-ǩb~lz_/*J5:ymU|0:5Kt ga=δwn+5{H~E\tܮ-b~lz_T1+DU[DgqI*mSn+<ͳ,^o-ثı0uN"(d Qcdu`]tVg}O]n?]n{-8kt -;KU-/ܭdYة7dgt 3ݮlfW{.GY͂t 3]<&Yf-W -~fY4jt q^x|:z:5Yf5G.܅6c@} oS=,3n͑nqd27t BF2 x3t,zuW]n"AYn3ݬRnJ:̩ugtӑn wǓ*owAjp*i(<]m[kzy OTaw%-xέ扵}őn%gtdڭQ OnWM7{%]j O*rR ϩ<&-Wy6z8-ByG2 xcqlm2]=]n߇֚SP1|M{7ԦAQK@޹[drHw_~O,,St= -5OfAI@98^OI?kQc ߼E+,2 rdǖ+K0i0t U-o\rjgdڭ9-|[_?v|Qu4;,iEo?D֚fAI@~9[&\Ʀ}c |Sq[6v6Mf[t .Ԛ`W1|ۇJ1$Nx֭-|͓4;GrJ;ׁIcq< -4yt )n໔s$ %-5z$MqH}$Nxv^s[ t5\4 {>^YpY ©M4ݚ+x,6&wt wĘU18W͂q* /t ? -"6fu.k5.W~̩:-IVIK:|t2&^w|%yT:p=^c| Uh^-bc‡㊖ m884&_4<%G. m(o&Yt WbcIՑn$4&o- .}_Kz /ȅu'1Ѥ[s[n|%IxɇOOqVIK+tpxq+s'UD?t D~.%EaI -FiӤgP -_?~F/oOc𥨮zJ1|ݼOM:GpDk\F]w8r?n^cRo6!8nNn2lqrG~LWvVqG&ɧlL:If61x[jQ7|Ԗc>DU5e" -2#opa6q\ o0ՖellGz.Wt6d'~-1[Fm ;|N|-lEç٬u:lv._v#ÖpǪqrT|}-@Ym:h ֖u jnzm.u FSȩ0>fVo78JyťݻkxcC?[Z˗ܬm+]gugIu N-cu /m:]inY-u~8֪Su Se&/\x2Q[`72fE5kU@6δ*Mv TY'\qA4/5, -vU یa} I*MvV-}_6 Ya)fQ ];\WLNx$U~ 5N$֪4aF2ff5 - ;bU[17I$ pikU < j"hVkV#]PٍjފY0oP TYI 5C$֪4xBѬ0֬qW./V(`$VgkIUi2X8 YaY-t@}d7^+fQ7HRe&/\Pᇓ8& ƚ"J1IvߑgQORe&/\P'LSIc`G2Msmtu xQT3OG3^?Yƨlu ~8Δ12{Di.qGnϋj(``'C_nǙ2\&}`4͵LlOxdYq 5O8SƔdu5D\]t>N_K/?J?'|l wPB-]ANۿ'il RkgUzk`Bi2 -8 z_i]fM?vJt781AԭFd2ٳLh=A]U:ُ>ctӏToU: */^ޗ0!$L>> iᷦ_/ _H8H\2>Ϧ6^?CoMI&KpkL7mUMm/KaY-lͰ\ΎIp)p3ޛ4MN@NP{j&]\Y쾟ݨV@}4: &PM(]ޤirz&vvJ7pNzȦVoU: M`/Ka ל&MkpYoO$MMA-UbxPQpi߇p=`හߞI i45&qv별kBUئ6Zޗ4\,l -cMqdy;%5G_(ԟ-Ji [%Jɠ3;kn|S@^Ro~N75E[P:Nlr^Ju)5Z}J 5 0isDrWTmUy~54äє%^[kN ]E bt7?eoGpGo'c=ѓ& -6i~W@1ikP&hՇ'\Q$ \5Ub|(i gߚZN[>p]]|m"Hp'6rd8gok@V zPĚ]IN9"$Ƞ3;k i ?T8'67uc엕4oMZN/89:Un&Ѳ_V[y7zdv26G7IO[Xsߕ4 »>j;tfG$z?izuU_f67BU$z(&rIv@/}md 4(בIy/+iYOHƛp\Zq7hE~ -MӼWck6&>Lo: yZ@FjY}Z+J@.ro~2Zs JR-Dq.W<署r~ynQN@^vzܿ: 8 TayFW *d&,wOKkQvrt.ObwDI U/Nu֏-oU,i5)f_o Y$]^}>kr,M_N$T5y={4 PT eit~kYv«Xy_v"IY  ›2il3};HU'uG:Ӝ_> N}Q;<A͗S5!"׫MPrj7j8L(/@EbW,{,: !Ο?P'h.׋ڎ(:!p5GPuߵެzᵦGϨڏ3 -d]$zɲʢP.2,ێ; -ڄךzQQE\ 7Y>3L8F4k{4?HΧT )Pa2.{d ei(?ۖ[ -0=#@ ZcjoO>c -SmխNG|9|N2*JebW,{,: $ylyPIkώSQ'ZŜ@>pm7>N<?INًUIIPE{ObE7Ezy6úyP9\D@eb./,: ܙp/;_uxiy\~pmϪ>N*N_r1'== 5gf(9Y-cm,: "I! @  'Z/,:ƻ,0yܙp߶mj(/Dubէy'EzמT~ݸr ī~Pgܟ ;?6YX[%쨌5[ӥ‰Xϋn(?E.˯:L>=\$hN膲8T۳C7]awqy%APd||sgeW}6@ =;5fRc|DUQy7E$x-fmkv5 Wq~i eq6g,?vt9JEIU?r0>w;`ygLnM 'bm:ͻ,:kki~ìspm= ,[cm:ͻ,:_Ct8AZoqV9A鶿zp_ c|kR]|D6F5(=Lvi~$m6I>Ȣ?:-oz #>C<8S{^|j #Cp5]VoN㭴Ai𙄬=/N>#[~{OVQY|*6XiPƛ$aX|ooS(:Om VguvZj qOl_Z[ wsq0cD#(Y{fR=^6`̨Y|*J"Fky'9KudT1,!kJʾKYݵ_-MP5F ߳8ih)J#*e4gy4xRH <Bw\e"fguMtHeEP*ѝ)! [*D>iNf"3=EaMI)<bo1fU!Z}y:dqxOO-9>[ Dك]P<'1ZsfYr j||يo@(E<\7=K}Jtgz _Q]#"eu<[uL@DoݠH8i$l$h,6'Zm%y:DYG@UVid|;Qv'ie PY7&nN͔[_<boݵTMQ]#|+evV^ۊ@Z"nAxh| NYnFuSVos}ăZs;H40F)x~.ӡeUxk"O/JpMU=yx;pZg<Nqy$39/F:~x򽏣q"<[/c7&Fs~K""x[/uKQ$ $x@TP` `NUfOWlKğ/ֻ5{C<.%x\R'|Ûtx oaH:Ј_F://" HxiD<$jOE:_Rw)cHLǐhO#;;x='u{WmD|PǵKF:|unfDqCaFMh]!Zٺ9]Y< Cx~\;W taQ&T6ɟB(#xyH/Cr9 j! ܡ2 c]Eqe0Oy4b4AkpQm,\:[WB΂hι*/F!-*1pf-vIi;5e ͚jOM!C]rmtW Ts=eqZ|P gfeiu\Pͱ[EƬ՜?x18bp%B*Lvw1|,7&<ܡ'm<џ - IhEٌ<ܡ*o""Y%µcʄjSCU$H'{М?sb8@pGjyseF:CR4PfGjgz=3[fwqQ63$ٯ6,SU%Ĺ(@k!3I'z`Y/Byѩ2OC}<ފБ,nfMly$XSELu<W\SQ-|.B:ym , nܪOI{xɨdȥ/?纟B2)x{YILF.7^zx̴+#,A(/:UfVɭoطX%= E7NmʖK>+ pτSe/S}ž%> |b^.0?cWCGM;!`56i4ry% 8fݦuR|u!uasyv'n(c зfʍҗ2lXb#4Q]BGQI+f :E"KpbKY'(AБD Pn0=c^v+,G(E.} !uaʠC*`!YmoNEH/k%Y+"tC)q!t$1"e7LطfoO(/:Une˥O;!ua&ЕU<v2 :={$`f^-m`˥O>Paptq4\K%a2m.[.}׶8tUyxO5 aqSg-/ʋRs{}'ke6bMH;f:\&2m놩1xmB!o9^Sb~y05Y;"iꥹ˞!N!2}- ZfnDp]V=W]?`neK *Smзy{"9&͏9!6~JlؒESY4+L - ?M6.\~/# GB:RwF85#I3L|{% >C\ULs_gPn\Ods\W3qNH;ϕ~7]}IBWoKH+R, eO(ws[GiX+SVar~~ ljU+$X9 -f7m~x4>XOCGiX"0wU]> !.{:% ]~v6SNicQPGi>]q`KӄrRwSJC~`r$X<SRo"|K.}o'-?Ji{~P&6wu_;G$gie?LH;؞KmL[oɥx%h=]-"9\nΧlvK(gȳX??Ymϕxzi[r^(-Z8tV{OHˋys8kPzw']#ߒ ;r׻x\(7 ,/:M7 l!!-^)ە-I|ZmeH)|Pn\jK}=lmϱ)lI,3: :oWirE4恘HiJ,ɤx􏷫~ 4ÉV.GYd6<AZMt"rMQPdwx%}xfqMm-c,i[C=.2:M}x46p¬k? '鴭Ey䚬#@na^ƿ_-,_ : lL/.1d<=AV˶NS_%1ԄY#_Ex&_B3ݸӶcn0_e4u~jJT:TE7-rmf\N/2ueYж0_8M &pChݹNbWt.yM:Մ'"4KN./8-#?p¬njtvL7_Om'/.Z\S[Ğ 0 ^NpLrnU?z&\zw=EBN.(5: C0 ⢕rXdW&t5~g(|_8o7u67 nI_AEQf8aZ[9B8x_"t;HjLccdLw;FY3۞:Cw#tON^ˡ+sCՃӺ:6oEhGuo'e'ծRfٕ{_* n5ôʡBԸp'nUVoL+|B30λ#r.jWG=^"L7ʛk=LCG1Ȅ0ݾ r)?$tˋvPgK=q u~R^nzYd<MnVrK9i1g!aU'0ˮ:Vy3Nrhȥ> '8{ԃM=rT9 rǦ=K>L'%rHnzm9eSOՃ0T9aVʽ:`|[^Vr8r^.P4hiQlYAՃO=m^aQ)O&zHfEp.hrHCh>M=q\a\V.CَPgezܻ!'pׄN9xΑ|waPBr ?C[w@hr?ؖ1U0mUu/)n=H_Ui2wˡh.0OV4RcMcይǸ _r'mlmPJB7X~zDՃ6yB=M0Br7zrh},7|(;ޖCʁG[=yz.oTrq=Stˋ_\wL#ҙpPꮍlz4QZ~Q^vysL]0DŽ[^V /}:My\u`mM۸twgD[㪋5M-$nlq:/<9U?t}Qrcwدq(M19 hK#=xpi{aV\yr}+B6yrERvӺo{Ye,SS/ئ̇o-ԳzIn~^פbthȷMshTi&';qюr/Jxa^np8p}12A#J~ZO zD$(S1v$e7.7uUz6ߥޏfÖ{y$ߏx2t(^E,\kO¬ꦫ '0 5Ӫ֋ Y&2IܞEj܁vimm A\1vGy}ٛ4x0NA 1GcX8o%Hv\YB<|>cg".q^p]m2 3ɛ~~_;¬Y8Mm—'_GYՍylXZ劸h-2u GC i$q|GzI9ìe8t=Ui;,Weʦ󻘇k,^S313Q烲_-ɇc(eP㋘V%/;¤ly߶2uRt8aZ<,Foq:ɇq YӲahUEZ3?ntE\4y6|H`~\ЧpIG/HvE>UČ_a.cWgP/1vYՎzʇe2%)]8L}S$µMCrEםʇ<C\$&]!d?-7 \Pa~ԡ,E. Q6esUo|p:P}8]E:1~̇mYA-<u.y]?0vj_e{z_yx!ɻ+"y؛pU8.! HB߱LpDUa~Էe =6Y0L$q <*ŹLC[q9I>9yDrEM?+^W:Cӟ ap-2 r<eU{{?-¤hq>:}[eɻW| -yeT8pS+"yh" }f]x"ʪVU8,>.O8aR[tʇo,o⸋C\߾S5LIP5<\c}x9R?_ċ R1wC]\uӗ vM]d(B3Ls3k1ͻ3b8O)$ZzbO}.^طMSorCNINݸ"bZo*DݴmJ]Mz?7J\ -b,PS/`>>b *"tC$bJ:hbOIqqLuKi0NPVk! )|wH)Z'el2EVnƿNfQXrA/w׻ĦuKi0a\ -b>O -k#@6 -{p *!aO -endstream endobj 41 0 obj [/ICCBased 120 0 R] endobj 119 0 obj <>stream - -endstream endobj 120 0 obj <>stream -HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  - 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 -V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= -x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- -ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 -N')].uJr - wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 -n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! -zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km -endstream endobj 117 0 obj <>/Filter/FlateDecode/Height 3009/Intent/RelativeColorimetric/Length 104591/Name/X/Subtype/Image/Type/XObject/Width 3004>>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUv; -肖`Cc 38T\}[C ZU>u_{2][s]\on: f(}1x^AA/]w5-y e}Û~p#V6|}4Ό_xfUOB*;~g#^>> ~|uKE?;`>j`:O+[=?㈟lxdG'T:qofa軐Ul/j.ٛ`ok}kWh&I&㻈~M<0Xho}TM^J`zcMʏ2 -^2m>n\oJt+([㤯S.⛆bb|vef?͞z]]|RtI=Rd|}|t|@Ve{_md?k={]M|=[m71_:>g|M×+x6QwG{jsV3=eJeM*sɷG|j; ~<oJMW~8.ګfOɞ=z*C}=]̧_>|&cW _%|,㉂_>*lߔl?JU{٫dŞz=z!ŸEɾZL:s˧2>U|mŸ ~2;od/f{SBh/QHXsP|*cŇ/ '|S)Y}w|nPgj=D{!dŞz=zÿ.ow)ij1䫌"n.?i ~!;7cGn=fϷ V{C={U}W|Luԗ%3YmW ?WP~}rASݾilUPjo=7{%SVe[G}1㟇7|}O|CM}l/pOj4T{f={ ֫N)CgSi)cnj5| _6G -xu!ۏ`?P폇jl9K^ϱ^B=O?Oi&ګs/_*k:?*C_ s.Xm}l?PB?}!ڛf^={Su&1KE$of}KŇoJ/ -~m?~ǡ~?\խpme{ǩCr!K^/^gzJUʾ\%Kŧ6|] {Cƀ(Bf7S~}lo}C;D{jSZJ=O?zOMW-CUÿrh!ۂ>|C u]rnb6j~ud{z9njTU琯3>T|ut?~7u;}2ڇhF{j6c^c+tJ)cŷ uOd~~pߤp? uۧjOPu=4{(9K{R>w|Wm rHQoi~?G]} 1>dŐs?Bcd%@PI$=sP]-51fr]|BmY*ڥ=dpCu䏆2(8^Qx*Y]M%{|G!zn}[]}Ow{BnbWv/ڥ٥ol+^ױnK3^xU GLx[ -w{]Q;B!wQ^ۉv)hv.uluۈw ?6^|<O~Ϛ}[|G!zϭ.u;3v{>l/+f{]n]UL]E.5nq&Ko||_(/@w{#!Bj0$~a\Tfjj]5Kv @׋[Az?: / B/Z€/ + o^'x ]|hkjR.\.N|g3߅ߙ;;B!лi%w$-d*츽nt}v f ]Uv=dz8370hx?-/Y&me^{*L߉;B!(܅D2Jg2\p{v?ۗ[fG[ٟUžk佈W ^ o~Ā3;U\6IS$n}|G![ ]v{2J3,4=vpl~ln1W+W5#^5CxY,x?`wvlJW3{.dҩT2~'ljfB!}O;=LҙL6Gp?;?n/no`81ۧ~3jMC{5t|cۀ'3' "~J~f3t*d1c!BKX܂{2J3,~nongMlWU_ex~~ʀA^&\.ɤSd"|?B!tGܽp1܏St& b^!]ptס}s`xU^K{^"gl6N1B!"'$ܳ "Op/JU^+#|>Ǻ*H~8'rL|B!PІ{Z^(+*v>qܮa5w[WP>Ā_.~+e;~"ZwM;B!OF'9{Lp VKqrOvϒ+"F,̈́ogx;%V%߳*&GwBSܷG,w36/*dwۙnT[Є xwO&~ou;|'|? -M!B{Ć '{po ~>O&vGvt:C}R_Q8ߧx<{];N|' |OǼ|(|G!z{}Pn>=Ԃ{,޸dwpO_%ۿzo/(WIhD|'ww;]{Z{M_!Bipߒp@H {p x2ήn==x_|~_,WtB~{];n=/~]]!Bͥ="eýZpow!}2fou po޿5_xKtJ|wwһ[*7QB![ -I,w{L=a{݂{pܧSr|n#?ܾgoslF|wEYx@{T="#BTGlpp?ýqipg|\J߯u{oؿ^[bA|"OCN0ߓ#{;B!&Re=pߑp?c:ܛ X,oۿx]q+ܾiUF;|g/k>||/||?Nz.B!6*-m.˝#1S'^,S5}d9n pߵڕ'߉79}F| 4=|O8|g0ߣ6߷wBM}ˆ{ԁ!=p'޶>bs ށJ큽w;r _'} yi1=wY۶#;B!І=b}ے; IJWu nߴP_wK5}wһT~D|Gmo)|B!M G-c1Ý-]:! -o߉w77B00ߥ޷mGwB6ܷ- wUVKٯ(CQ:$7],X84%|/(=OzGDDDDXX}EppߢD=w{2|}vF^*U9z'"""zp6rϩ܋"+=.n4.~o{=m.zWOO ջz'"""zrO.pW -w=.Oވ) З7]^* y廣INDDDn=/E3*7]ppw軽߱~o~7|YQ+Ebzϊw"""7/Ai#{I.p=vu{7n]^,y{z'"""z.pWDSF!p?7pWps?j{7zqջ}T2zϹzwމް6ܣr ElDܷT ܯ;nu{#o1QާD{VFDDDDo\[)#IW9#{F{?IpAvDJ{{_z(czB>zϠw"""l,$ {ZUDSq++* /=׬z%-v'|2|^Uˆޕz'"""zQ}f6 w{Yn^U7G}\T蝈uu{Ƚ E}Sn~dp.~.zou7 ]^^]}Z^h}=މ^U'OE徲ZV wUE[܇^|{M~mn~|WWeữwữ=z@DDDD *ܗUГF^uwJn1wew]V^U|7z/y{r;r/k*ݪ݃΁;pzwợ#}z_Y꽄މ6܃rφn}eU.pVyrkUmՙ>ߍvnՔw}c}Mz'"""zum'=bTK" }_].pYw#w>%wzW;z?>:Tlo˫9OwG9NDDDBrPr/(r/ܷwTWwe ܍}?-Vw|rz?SW6U+F=;ыޖ{ƗT@ "U{eK`p7rwG}ȋ=F ѻ%zWޫuz'"""|'}ړ9}cS^S*w^=7׉Fm]P%z_+;+ =~3r_wvUGm E p!zTˋ3꽢z_/w"""[r_ܷU*wFȽ{O}w[^Sz?=9VWUNDDDKȽ,rUg"mN|!zޕFGƺyNDDDwrD"M{U~|{7brorޟ\.zs}}SDq7D;*#w#{M{{Pw{٩}_%z_/޿;x'"""}E*C#wݶ|Zߛ!;z~zSWD>>މhK{:IaOrD {M>%һݶޏUUf[:=މh{ܗoyr?q~Ƚn{ P |oG.|7zPwz_DDDDDޏ\rqpWv> +w>R2zoѰwOCUNDDD/^WU*KG5{Cх{D%|3z@DDD4rCG* OV!&0ܑ{F v~sm~}޳ɨ=""""R}דyg7>hN_9w_wO+_7zO>މhD}OFnۍ{GܑCrC~>މhD}ғ{73"HPq;|zOw"""|{rOgYO3=~pw˽)RF?{{* +OFs]n<ww}O/} =};x'""\/v徔$ܟ;wW:}8z'""ۘGw# {&$/= S=ޏ]w]fF)NDDD5_'s'rwjST}YGzެSFL6W#eW;-'gNKֻW}=zp>މ#A.ݍܿ/n}na^[&Nr3+!ɞ<^"/}\ܿA Ý wIg޹LE!BGrr/܅'Wk{{$`o<{'nc[) LLz/B!rr/r.nZ={[zLa'2W+RsI!Bw^ѝhArIrOd:cr__@}}Ov+"eHEQ^B!*t/ݙy&L*f+<%;r 齗==׶L]STww^&s{BB7{^N.^U3Lq>ɽ&h{ݸ݌AslUEUsˤbcOB!rIeQɽRerWuò]>LW rGޯfr1NAĭfc.<K9ޡwB`%;$aڎWQw{h<ܯILܿ@={QOz_gz InEa{m0W?ϘyLx/!:rIewtgrM7-ǭي;d0L\AAn./8{nF9ih"תEA9#B4;;;{&J&+nXAڝn&:M&ϐ;:VxAwu|6=luױL]SeVxG! =;ѝ]U0mǫَ`4LW~Or䎎ׁ޿6jO' uV3 |ϵ-CWYVvzSޡwBZ܋$r*w1y*ɊFlŝT|zCr)޿<&}6iFP44UjLwwA\;B!N%;NtgrIz~Fv tXr2? 3~'o l: nn :k,*Hg(<{#BD^$9DFw&O畚$+nZWQwp4Θ?^ wt;\gp:qږ\.<K;B!N%;񂰗{&+nXي`4jetO=Wmr1NF~[Q#{m*KjwQy2zG!^$9Ĝ՚$aڎW¨tp4KS5ߤzXt<{ݸ ~ݵ-CWYVr qBcӽDt8^rWi9novtX;2?9޿^_]^t2^݊ 9ih"ժ9E˄w!BG,{^x={ZU3L Zq lX/.o^;莎٭4 ã1@N*5mY?fet}=c1=_xuIUr'tws~j}k$\Ǟԡ, -<!B -)B/HPiaMmUFqEY7gB(w{̳dm[eNȒslwi~zG!/"VM~;4TԱ>13_uIUM~";z/}"O8 -﹎= ]CYx ;}#Bt;EtxAH kj;篂04/ٝȽ;Q/D̳do_̝eNȒslw ޯ[C!]~ rg9^dEӚ9\xfyY5QBRz5uUiGa=ױk#u( MQ;B!~INQ4 Cu5WAIU\~hNߜr(Ɋ:&5s 76͊nvC+wBG{UZtw7uUiGa=ױk#e(vz'x ޯ[C!rj~MфoYN2tÜڎ IUM~x:A/5?z?wM]Y7z-2'XUdI9wwB!E3s Ɋ:&5 o76͊nvN{C=5 $`{cOMCFP=띡!Bo݅4}; 4TFc0z*8wCGBܿAޏ_:wM]Y7z-2'Xʒs3-ޯ[C!zz_r'tg~Н$ya[MM]/rѻz?a"O8 -p{jx %D4E!z><;E~s;4TFc03] $͋{rGG_"K&X/ܞYDCYxcwwxG![u;MQ#mbX3{zuiVuNT;{z#މ;*4p3}*$i~zG![;;s; c}bNgW04/z't't?=<;DY]SEnMZzܞZ$ -{띦(!Boԇto:߲/JCe5ح8)@B$Sv;fӍgtXmLq tn'~2_N^=K(=ޚ|6 *r[xQyumQ{>fbXN۲j}}8˵$ͪ_掺O_{O8 -<׶j1@u$CSeIc=s'uN RG1Ogƴl 8IsGO zUދgiz9NFJ- -KSr$;|Ou'u-f9A:h2/כx~iVP2w~By?K,M0\2׫l2MmIY(~_umQF^w2fbX^ڲj}8iٮqfIs?b{w<,wkY-{]#Ogƴ8v{R//foޏy&{eiz9NFu$CS2y u-P՝h_~ѧ!/{'y"yO(=nVt<4Z+w$g{]ޱwC~={E1,/Hmjc8r\?4^Xu_F%Ya\/=UH"14U-ιES4QMz/$ʹ_~ћewYG:Y-fPh"Eci]Хwyʺ(QTGb6-(N]Yá;:*$Iޓ(=nVt<2Z+%ggw{jEI݋7[C.宪 x:_6[0SRUOu?Q?[cwww.M(\2l22~t$:.;|WN3,/Hd:_ͭzA'nD^=;:"IޟI޳4Bu,sZ̦TEnTC[~ϧwuoN NjRGQ{}}8i9Dq?s>[KޟYDa9v^IލmIYj5˽y~W~[{YN۲j}8r*r[Hީsn] qa}c;m-fYFQ42=(v4PJYŹEpou'RlPP[^8$Au_ohlǺyxy-CI\gѠm7Շr1ˤXiޱw~cTL6_,UuVh2/IQuôWlϨ;?񽳼SM]SeQX&aިQ L:E#,_#9[h,LerbZo}leE uu,ewIX̧^Ey -l:G#l<Yޯwpݭ'VH4H3ս`u ʪli{6wo{xy-CWI\Χр^l ~˛;;>SݳBBuouz|)HrxuFR(l,lwSY\.f~ݬW|.JcQ/;put6OuyG|)Ruâo?a'3YהwCSeIX̦!{Fy/2d"!Yh,Leblw AM7;|`^7+]>uZJRn?yy\uOPsTpSݳTJխh2/EYtâQw$e*Kx^{2d<Eܯ܏ut6_כn}!𺛖P{뎹3;w4tUi5X L:~\poBuO2T[xJudU3LkauB Aiw5E){Tey#N%=߻k/;8[H4H3Bɭ{o0buy-w; qLCSeI}7b>By\ӺyuSݳTJ}2[,EYtӲg8fyW$a9zy=PsT27W;lt6_duo! ʪfʭ?"w޷w)"h,7Q2yu>{ꞡ )6}w_ԛyPM]SdqMWJt2\Ai'S{u_Eu #Byg{w5ϻ*v^eyGܼ"Ûiݣn ^{(+nR7;O$+4(xzyϳǽ!+uO$TRůduw>=<;nHr> ^.RS,|;ex^,{lw(aZsG~ԫ)?^ը=g(1֯{=}8R%^wLu??1l-S}2yeRPo(^ޱwstZ){||)H}G~Cy_y_̎y/ܼGy~/~uϰ?No.u߰;{P8}GyMCSeIpm7 -{:@.ë}$;}4QeEM^tN{߆>A޳;JݓTB AUVW_;)fe[*wAΜWk_WR%\wn6}r~iy_{yy/y~ow!p4{lwñWwݰ[;ӱ3 -/ f(" y礐Bb*IC쵙wƺrʺ8weni5Պ}ײcc;`[%eSr7׽CmcYwX}{_}7wǾ+qYۓu/+^7̀1yoO@|ӳ͝no`n]ܻ뫋Rp|t0?TX#ƽ?Miޓy2?;̄mnըU=ͼNzͺy1gk.]xl;:˼y(^Ҽw+~u}+׽x˼wy)}4 ;u~{uSƼpwS: r_e݋ɺXwc>2go3Gwpt\׽@]x_c9/꼷M~*}yXwl,'66d"μC__z1;xuļ?{vjC;~u'{y (Mκ0C ںMش> -˼y2˺,~s`Z(yoye𵯬{Y{E{ʺ^edڼ?^3׷Ix_4k;>uTֽƺ>y*~a{Θ0g{Xso6Ywüc_^iG;yy[潮{y_>[3+y*}EugμgļǙw<,ֽkYwYw>3u(|o;?>,%= X$g~μyںĺ/uOu`ɺGu_Q}}s{uy}gkc-I=ļ0s랓c/7}ʺ_@`{M{Y#u޳;c{T]xruycvgc-uXu}+7ʼ}qy`B껻*p{:K 19adOuuy.Lh}`M{uӼ^4=ͼN2(hV}A_֎m[;0{IyC;N_H4[X\2u@|2ʼkʼ0[u_6u@{)ubhyMdݏź_}Aw?)TJuޗw~Ӻgrۻb b7rNW_;Py}}.Zl&LėGy1uƺ'u^~P21[1gbyOy_aqG1rSںu/)^>d݁92=}Ӽy?2=nY .=*}YYƖXX c{;0gw{KK1r7s*OJ"atqu{SY'o;0?} !, }w[{2a`_x2V@XJXwYw`.>+V}^,.=Dwg^U}ݏĺuub_Xw`P2b!{J(P=lYLn}s[XKm[;0罭Ex"}gkc-I%eR=ĻuOh뾻t\(_o7uyļ? nӓ2i1+yuvXe3? -DD4Ʈ.r|qF C-ӽEn){#uKH~<bϦA24w&-B}`fXNb]L >&t_"@w`1ޟ( 7${۱ R*"=#BOt!ݫuBwvNDeҽŻOr]y={!(o3ӽ)kE#tQ #z&X-.Bo;B!PRWtrRHwհBhB -~8 Awh!Oxm -{J2xC!.taXJJ]OX7O;B_#x_x\ДV]$x!GiBwҽRuн}#h/w!{ϵ Mnx9&-B~{)/ ݴ]f #x xS&c*{TI"ϞJQ!tMpҽZo)a^LeBSD;B_a۬W wX*7jޅ!Bn7TBw>{S :w`݁O1!޻瑩BB,/JBBC>Mg?W]ޫb>+ Bݿ ݅ 'f?g}C/c{mhJ]8&;;Ba9A拄-E7 >_PS?xm.{㹖B.+ S;B!nbpH^kp<%t6[!+?\>N۱tUn*ȳL&{?BLTBwҽT4v2)w!=x6Uw혺jP i!G%taX^rRޔUrN/2Xow;Bbxx_ ]mB^.泒3ީ݁wBzN4ѽ֐Urڝ`4]#{& xچ"11S;B!(otϰ eEBNFt_֛p<?#{S%{s-CjD%x'!vOb3 i~?1)ݟ@wU`y7N۱tUn*!ޅ߀wB}%tҝt7Ͱ]}<%t6[!]لo;19I!лzFoE)W(UMY5,B-uLzя3 ޏ~Y!]mjT|V$xϜN#BtO k Y- FYDݿgxxxzmhJNsLTBB&{L R6_,-E7ߥt_7=zxn%{s-CJDe2݁wBw鞊pҽZo)i~?拈b;BY"`y7N۱tUn" i!Gv0,/JBZoʚa^?O ݃6z5j&~1uը$plwjw!ztO !+uz!tG5ޏ~Y!]ߵMMiի!Ecbb"Bnbtϰ eJRuih2辋~tGwb!ރb>]ϵ Mn֫BNyDvBWLTLwDBrR4n]Jz?_MxerV .!%taXҽT4vn8G!.x?Exmn6 z~1uըU$pl[!z+ )W(UMY5,O ݃6;#?x_QwmjJQ-xOxQD!Et==rnc@w۝H~<z~smCSuwe2݁wBbb3 frRtnh2辻w!~P?QM@>%xxer^)r@N#B={ayJzS cNt( +Pf c l{;ͽWi+Rk}Cw :g!c7}ۮ4F*&ŻzB X(UjxbZrݻ^LgB+=JY-ZӖr1/ -B{)ݳ,/P7ۊ F9c F#%jgcݱf-ϱ݁wBw;;;'r.;]MӹXmv!Jt"xvt,s2UEn5jRA$xgRS!LGsBRZr3+K~$t?Sv{x4F*fZ.Dg)޳)<"B] 3)BwнhɊ',۽D~^AwK(nZس1Եn- 9c;B!K鞥tgyA,F>2̹ ;o;B臢vO~&x?1k6ܒjR!9 ;B!;c3,'ujИj;x~J hox??QzXd4諊lx}{&#B=#|TI-Ǔtw0:)_@wzx^w{n#]S;fZ.EKBtR to4eEFrx"vB?W_RaY-n%%xxG! j>2̹aJ;BQ'x?wc;l2{ܒjRA$xgR!з=$v'tOr|.t{Иj;x~J˝;BCJt:Fc@SH.,{xG!-{&;C.JZ%+`2̹\oG~"v\;Bz= -}jaͦaו[RR*LLvG!\Bw1ۋfwN ޏQzXd4諊l$xx= #Bwg)Y^ Jђ^0,'F /w WݞHNYLl;BO;s/f[QhbΝzw :)_@wЯE~=nZسxT -1 B蓗Kbws1R1ۋG~"v\;B7z%1 -}}Xx)r]x= #t&tgBRZr3kR_;Oc~^:s 4n֫b>'p,=B=Y^Hhʊ&,׻ё #~[ox?wmW {>5ziIJH!>qݿ$vg9!/uQ5}ds{]/'bJ#~C= -}ʱfSVF. -Ogb #~SL~oK2'*fZ.Ec1wBBBFSV`vMnQ-YYd;ug躳 ebhw|٪{0$zO=;wϵM2NY-aӬWK\Fy=w;?;'2YrblGXwr ]|ϱMkj> fϻ$l:^ ]FߝE)+*f7O+e'ô]ϏxwRɻ?z]:{u^&~ը, -\2 ^Ǻ3tY^2|RkdlUhk$K=;wϵyvz1{fZ*2slw'N=r(u/WN8-׊?Ζuuuo̻9iumYͧAݬUyM'¼+랢7Jzaڮ~\w;|QHvyΧ^ݮɰm5b>+;yW ]w$9/kvw0̗ r fϻ$l:w{4NjR&W(Uvo0.VNOgv=0wD!B:]/gajT|Vs>֝r$grGrUaڎ_nA\w;|dޣ(y\:NY/faӬWJ\Fy¼kN=~wEzNf˵z#u`?= y7m7t4J1Hyg0躧uO erRlb4t6mף~,yGy]/XgWl2wZj̻, -&;^}wI֝D9/kv?̗ vnON^-YEy;!hwxS;a {hu|q ݑ~}zwiz1{fRJ]x.i4I!=vN=dRr̓}%~C{Nrwe6t4Vȩ(p$ KK /H+hZfoXG(Nڝ;~3-( }0z9 VZ*泊$_v7ڝ/J6_,UN4/7;<:'/?w_8 -}ױ-c]-AݬUBN%g&);)f -J dzz7(\iNw;v~9aw|2w[jϪs, AaNKwNeZhu|q wHwy_~K=~]/faӬWJ4I๤$xw=EҴ3/JJ6_,UN8-;<'/$o/lw(]hj1 Fr, -\&wxwo^d5W*f7Oްl(>_vwxdL}^'~U"<; -kӝEYj&f[G0>_hi"5v^(]~^ƃ^Yh*K`B;a"i )jPԛp<[yO4ݣ$o/lǝG:GmVm5e-UeXvwڝ 4ݵrFj7A'/~K= -dL}^^Y" <{>XH:iw%%/V?̖ntgt9Bu߮ѠnZ!ʢex'$I 'H+hZvotw0/WHwxv~9ax7f9 VZ*泊$\{.KJw^lX[h2_nvut\?;^+oIG샹߮n*Z!ʒg>h; )f -J dzzax Ş❶{-cY'~ը"<;XҝEV6Zh:_mut\?hwxgvgw[/gaӬWJIK=MRwx,S$; KzNfN7 |>n+o9Bu߮ѠnZ!"ϱx';!Ig8A\A+`<]{`vNV)r, |;yG{YdsRr̓}0>_h/v(]hj> F峪,xfɑa -Zhw|}r0iߐ'yNr;9S߭ɰi+b>H=MRحו0[0'Q9#)fR9$ OW[DE;GJQR4\5۽xXmq0'm,1x={qY&~UZʢ;!hw( a U:d0NXt{8 -}׹_Oz1zfR64E%!tH Jf+f7t;FIhwyv={طqY'~ըZʒx'ŕ;!,yAUݴV?Wr^IvwvO(]~=vl_ݑq{þ]j> F2uUD;!hw( ŋUktOzAohüN8=~=vl2ujTYx%!ttDY ZovlWa4"?4޿i.vvV1uMD;!hw(;,_()Q`<]~%tb=3{طqY'~UZʢv/C@tH;/VGr;o 8}~tG@ڝ{D:]/fAݨUʆH"Ewta^pS0 ',#^*UTB*-r&)H=x_+~ݧ,/HXov'nEۮ_wǺ05uuqg`o m9"ϱOugȤwEy6_j:|g?OQVu}Xw;wkGYY~{_3BU$gBƊ!_) .V}Η$Y~/MXwwOGv?Ж,ۿ0 ^]ww9^gfl=AoXwy{6gO}9\뫅HNy';^MC~ߝ$E]Η$Y~M;;F߿]SWe'?k1|&<>! wFם]w|u8g?VUtûc`T>{<{%?W UN}w;.*;/HXksw I߫Gwy;}qgxC[gsl0xwxet2ߝxQ͗Z{(NoEYM7;FüͣYr /ɱ;s" <;wxU4S !OY^uno;'^,Ww]SWeqK(`m7d'a3dҿ;eyARJ_휼KxM^=vXw;swM]-?ǃr>EcwkΐI,NjlԌ:ݳDqz+ʪnݱ0Jwm=ϒkxNߙk}PIi?wǼ롁b}򂤨6w{9ydz4xww*[Gvk1|&<>! wWDם!Y|u8g?VUtûc`>{<{%{3BU$gB!_) .Vɻ$գiuǻh=睾{UY8 -{l]kѴú`ĞN߽k,ni{<{%r쏝3Y8;!1:hB躳 ɳJ3w}$գiuǻ=睾{UY8 -y7PI90xwx%t2񢤨 X[OQފnxw;݇yoGuϳ'ckLN}w; -%,'l|yOѴú`N߽k,q'so m*?vY5pdq'BK_GW`C&X;(^!r(zn{lW(NwǺao~OFNQ34Ex!NSw9u=_wIьZ&f^Ixw(wO(]z>l׋xk[uSWei;ŻŻ/ʪn֭vo0-j~iXw(ġ9qY'~٨" <NQxw)ȺSź3,/HfTN4/7x~'źN=w]/fAmM]E~w;~$~weU7V;t]?xw;ɼIsw|2w)L3uJ FNx9IJ%ݳ4n_Oz1mf,;MwǼ Q4fjub= 8Ȼc$N=Mw,alT Meww;EWwgXN֛ͨp2_nvq0NRxw(qxwz:lWxmY5SWe瘯|i;>䈢|ݿeU7kV;Mt^iF~w2if9 {fjh$p,y -~wwg9AR4Zo{l7(IɺD{Qi]-Aը"<ːy);|^ΰ()YktOQfݱP"w=K(]v>dk7UCEcwyŻŻ ʪQ[p<[wq0J»@|diݾ|:w[)L1>;U;hfGj?]Dq=Xw($ -}׹r6Vsl4>ߝEYիugp:FI=_xw(݋y>$n_Nj>;FIY& -MQxw,]ߝa9AR4hv|ٟ.q=wG&Q|ح۶ꦮ"1_4yw;| E1/ʪn֭vw0-~%ix}_;Hż?Yw]r>;FIX& -MQxw$]ߝa9AR4hv|/q=_uu2[;y#K(tخ۲j"1_4yw;| -E1/ʪn֬Vw0.j .%R߿~,CunnMN^54E8{,'HfTvo8-7~')Yw;b.=aZLGn˪"<ːy);|YugX^ͬ5ZhXm}(N3Xw(yO8]v>xk7UCEcw9$B]; պ dzzw<$%wRz{YGw/v5Vfj$,S;ESȺSt%wIьZ鏦vw/4#uRz{>YD:a^ƃ^۪WuUyiw ub8^Uݬ[`<[wq0J,_w;{_GQiY'~٨" ^) -$E3f?Wb߽ 쑿;Jw=4BuvݖU7uUy睦ɻcX/EY͚z{8_m$/;Wż?Y.f9 {fjh$p,y -vQDh}Ќ @9g@ rPm_@w6q/% NjZ6ZXaqr麿c'={[GY?֋d4땒" F1tdwӲ3,/r|ݟ vw|~{:qcnMNVQeIXJ߽w|B4 Vjvo8.ֻ~l8|5s.qoVsmՒRyy' ;;z(yI杢,wOwgX>~wX5;dRwq:ۮ燗uǻ׻cǽ]/fAը1M_yםl^Kz;M덶7Lv1|<;u9 {f\ -ɻxwx81; \ARF7̖V?M{D^os6tꕢ,iey(;EKH>N]'^Y+B.#pl4# E'rB&Wr '{~@=ºz-~wɻ{mZLGn^)b>Y&w»3N) ˓wbGjzAHwѕXmxk7%Eߝ;;~?OgR[xXoѴv>~׼_/d;u5 f\ -q^(:yw2kvo8/խ~8-5wk[6t4ꕒ,iey) -?/^wNwgX(+f?.V8m w%y|ϱAߪxk7eE*d&NyxټVw0-[m4-O_F= <> }aӬr!x!»qYN -R5ڽdTwtɻk_efVR|6swuywɻrRovb ~û{{D==Aߪxk7eE*d1p|:RƳzxݯ׻v:~oswj>;Z(rgi;8-?r~YH"N^"bG?&~33yoKyQ.VN4-58Lw]<jvZ*HB.9&;E๢u ˓w$T:_iywm2X }MNV.b>Jr׻c`8> r\k{ÉXol9G= u!ywsltj> zHl:ɳL4+ - Ert6/J鏦i9O= uǻsm|o7:ڍj LD4wg֝_Ȼ3,O]R|mwmpw{\}׉d4k,3$~;o S ʵF7ϖzdXwF9y:tm9VRT|6Y&zwewgd:bGRӍɴ'|ﹶu>BzFT\&E=;Eyu ˓w$T:_iywŻ|=.Dnl2urAwOr׷LN jNzcgq=Y;=6O-Q۪WϦ;w牢B\2͋rRkvldZwx}\<jvZ*HB.Y&w»;I)U`<펼\owu,^&^Y+d1zw1Ѻw}K0P6ڽD]7x#u|{ӵ|:wZJQtcw,QR(:~wKyQ.kN4-׺q80^w;nVsu<Ւ" Lgx) -q{ ˓w$TtҶ;w6wu,fMvV.bûc u'`8> rTm{ñXo"N= u=${m;][Χ~U1M'96~wY.EX5;d\t']<w[m5WǃnQ-)@ޝg/xwxOyI)V`4p2m;yȼ{c{c^&^Q+d!I NS!Zw*ZyT&'HR bgv=d?7wɻckt4k,$NGy\\(ךp2[u#zw/Aw=kwm\zHyweȻ)wwgd:bGRwi;Oۼd=ױǽY/ɰnTYeR<$ȼw֝_Ȼ3,I)U`.Vx6m/?w۱G=${e^Φ~Y+e1M'91Mw}K0\\(ךp2[7ywqK]n۪WJt{w&zwńwgd:bGRwi;^!7ۼdɻ[~Y-nTKIeR<$y(;|_Ȼ3,O]R|mwdziS ϸ{H|z9f\9;BFHyweȻwwgn.)Jݑwwۡ= .Xݍz1 {frFjM"଀""ΊHW{W̩J~M%j2T{:»D랊=C|\ *Suhɺ_uǻܹ{adMg+B;>ݙY.:2[7[k]?;-Q -ywѺw~PL6_,Wlyw/=ȻL]['AWn -5R*:~twxԷN3BBSGbowݻv$dޯdɻqoJԨsUY"w=;;WkHrw0KM7woϡݬ3e:_-YʐyORxwx\sbE*Su1vɻu_sNV_/Q#7 -9wxۻ?d(&zwV?TffkOg7;&~\a9qgR]YjԸݳ4{i&W(UؚДd\xg'sqo:S$ֹj'=»wOGNYU֐x4m BdI{`m7L;-Q;|Th3rvoawwLww<;SזhЕB -9wxݻ3+,/4[h2_u89޽g zMJ杼kxmKW%xwxTT:~wJhx2_j#ɻwۻȻ?zwج3ek:_-YDJ1ɻ?w,y*WoH`;b>w֝KbbV7TffkEg7;_&~\aktyelVLڒXb>KSݟs$w㩺 s]dCuNk3eDgwg t*wJ;EgrR7TfjcXѻ ^y=ȻL]['Pc+B1.Ѻw~PL,/Nk}kNwa~;w}ܛRAW5.~w:~4 -[˩ '"b Նxr/$;|3g'{Ϭ"9Al{ln4Ӧi "l;ivJ~)J˰ i{mSߨdk7_.iCisUƳr\݃tGVwW=;K߮d45B=2hwt6_,sB 'M{:v'v}ǝelWKyJ]U+B{*Hc1;D{;fHWZ'setv+i{?}0v8ǽmh<-IrL5vgtd{PTkiT^vxƯv]}ol<c# vO4mw*J`!ެ |,| bg u\hw[ʜ 6v_kʹi{vxelW|:w_!aq;Dl:/yhB}8]v{lBG}K{%ժR!G=L$~/h8mw͐vzMj[_~Gwu.TcWw/ r dzj;?;<.Է\{%*L"xwr:;u]]ҹۻr';|wLCt<xT".\yw۬www*`8SֻWN4-[ݴZwŏw?w߬{mB>Pw\wr{Hfnz;M;|;C> {f,=ֻ+wg8w'R7zwλ9NVΥjLww.q-JZ~Abynr>;d" WwU-޽ '3L?}|hmիśL*vxN^/=&ӹۻJ&O;0z5vC{>+=*\yw[;.#=MQ{MV7wλw?Y-faݨKZt[|T".\ywwww*`8"=#߽Rou|ֺw?<ĻoV vZ.ٔrN9{")ދwFyw8w.}6͚iM^xw{})ݫ c aȻx\:+wg/xe4B\m{?;=.Է|2^wψw~+ɻ^wWf7ĻƎwݧ~Uo2=np<{wE{LMs׷wZݟxw8żAըZJ 7xN^ GĻgw:d\ouz;~B{ݨK|6ţ`wIr=wO$3W7jwwxdk7kֻ55zo;w'R7zw|?__޽~w{ﮜޝywѸ xp<]6xw8ۓ=M}^'#I5 ww]FU-m{)}2;>wVr_$H8(#ݞnҷӻ+cs׷w;w3]̻iX>t[D.xݽ?Ԥxd\ouz;~B{-޽TgŻGŻĻywu Gbdx_єwӻ ]l<^+[ţx.㉔F;[nbݏ/w {Zﮜޝy}ݣݳ|vOb<.7gR2@RA@df# -*䜃=_?.S}γsf\,<=dd,"˻~g}w_2MwȿwoݧGzh4kzxP廟Nc{,w/6ؼjuϹU*7t8NOyw>wwĒzP,ך`4΍w7֝wzj>MF^UwQn׹wn wOw/UĻ 6zm5wi- >+]ǓlY{1}ɻ}1wow/ﮋw ߩww8w5oz&re_Yjޭ^+w艘wg?XB{8wݫV?w_p˻ϧѠnw/<EĻ{ywo \w_}:[pi*%)qNv=3ƻF{?yw8b>S^^q]ռu w,%SX5h<QԻWw^UwQż}BSKh»-}3޽%xwm.qvzʻvY#=KTltλ-}pZwn Em6,޽w˕=}y7}j{]~ww8ͻk_*V7\yw8wo7jo2z";`sB{4wwǼ;d4趛 Oݓ|w8>0Mh뻇xF+}:[`wwԻĻ>/8dup$W|&߽ӬweoRx${=ng;`zF{ѶGS^--lyw;`=ݓ -tλM}/ou`W|&߽Ӭ2=7wl;ksl}Z[9g{\[)17OF;i~Uw6r:;`=#zB\k{фwyi-5ɻvY Ļw|re_'yrލw_̦ݻxݵ|x gƻ_fs͎|1cEeǻݭ=UPr?޽wg_Ի;N5ߪV?`'˻ϧ@{MMFOxwA;wƵ/xwֻO6^x2=ûx|뻇xF+}yOlvV)wO%cp}p4a{;|r1m|PU~ƻN~ml}f]s.{=zSuPeE@PIe+Te$s&ދB;w?%j}o|}=->Zݯ;@R~y~ztxƻw{w׷vO2 <uݧ&GwSw@RSon~zw^Wgw{wUwܗw˻$7Datw Gw奔x_%޻'1x!@w݃KPw߉}:;w7}*zڻzw,zY@wz&zڻϤOw8;9\_},|^@Ļ}$|ڻJχݷ>1޻/oGF?DcӻTw (~Ow74_WԻ1~o;@~xݿ}}xzwyw;@%xw2r}vglwz'wy:Sw~HȾƻoE~s{ӻ'|ݏw_ho^{wwUwww@.G>R{>@VwswJ?w0:vp"~||{PĻ߆~݇; -wBλD>(w?eKYyndݷk~w(Wݯw}eiP]]>~ƻ?ywd$xwdDMwq4Aw_\M[w+z2w?_yw>08<adwx?nhzw"wz;2TweÃ=wx/;@r7@;9>x仿twJ' -5}ۻ^{Sᄊ*{יwl{w 7w(S>|.@SwUɾ^3wh}ĻywJwHww_]N{_OXwxĻ%JmxwI{л?g޻S>h{Oop;@r};yWPgЀw ݿ}wH/ww?Hwy|zO;@%;k{w˻o7λͻбڻ>EJy}̻]*xw7w?ѻ(zw_˾h;@Ur}-"~-9>*v;t̻@}ƻTͻбĻ5}޻T,ݷ;mwwc*ow(wcE}#s;t̻zwSwtݿzwJyw:_;@;K{o;@ż;{j9h˻@Ǽ;t,?ywyw:^DݯûN{w?7޽ǻw˻(z仯.{wUywjwPOw(Mݏ>h_:_xݯ;@Z}/z@6x[Pwkw?t׽;@u~~I@wKمw@O;+|5PԻhݗVwy݇;ǽ;ywzl;@~;@E>ևR"K@RQPɘs%H\{^t0ol'VC{伻=;{ݧ;w7;fD Vbɻ^ey}~owӬw߽i{.<s{/w`\ep{\ݣ-V݋;_ŵUV~|6 >~z>ƹ޽ױu ٻĻu]μwwq{wĒwt{w9}7'g/U; ~vl{4<5-ϻyw0LٻgŻG;ywݷ̻,{DwY|CW+&}1 xwP.'~ɻ1~»7ջf|-{Qx=n{w,{m#r{~Sw-Vjvǻiwノw/w?y? -_~xwX=ûX>{pT|Ǽ;xj)?{d<^ֻw G߽1)";cctV{Aww߽Yw:~(}w,{-̑'wλ=Pzޝyw ݶx~ݷxwﻟ^\wyw0Ӽ;`w?^4ϻ*' 3׭w`w{woOw7;!)/r;eH{[{Q{.vӽzzz5z|z<}:F,zhX:pqnd/OZ~ ޽Roɻ _'@{A{V~4ûwlC仟_9}8Rw[|VZ.ozt&ϻ'Ļ]܋w/Ǔw#==#=»Yᆴ=ݗ~~h1 7RA{2ۋ_wK_ -j;W'ĻowEwwOY~8{>޽m7k~\&y}3-{<=:^[o`Ȼ1wwX=={-yS>>ިŻ\ Ak;X<9_ԛy/ ݳa;`~xmOίnwxw0^ը /SxOF`Sa2SZԚnws>o/NŻǭw_wߚ{z'tʻwWKݏ|OGWYS.=&ҹZC`4`w?wψwߋewϪw);?"]h.޽Yw:?9${]CcwݫV׻mELPv(>=^\w/wC Q>N;fR|}Rf`wxy=9_ɻO}w|GZYq.PTƻ?r"K 4 ;?Vu5#7BwLpn?^wNf7Nxw[5=%=~û^1*)=(=+xwZZ[ΧAUWĻxw{Ի[6ñzF7KMp<pw׷Փr1I#ƻ;xw;dw5=*[Zwݓ~#t{|;ݻ|;\;}#}6;͚zX$yw.%=Mwtּ;|_][-ĻĻWJ\Z{PSwlXZouz\^= nZxw[^{$ʨwGwWVt<pM'x^xf?Ļo_wyN|ݭݝ݃X2+*{+wqv-Ѡ۪wGC];}-VXB{g|xJƻ{zՓxxjϤ;]ƻߚMw|n|0ߝyO}oOFNS{w o۝n/ =޽+|d(޽V)Ļ"!ͻ>p.hxj]h:[w/x<Żk˅x^x\Z{PaYyw;0=OeŲ||ռw|~5},޽h{"V~kZxw~yw_{R{MoW{+.NDAw7֝wrn?%3BR>xw"or.߽U7=%=xwGw|p,Vw_,5ȻUԺ}4ݫb>GC;7v{zxF73IwQTG^w2Fh"SwMkRA{,{ݼ;CƍwŻzp5a/][.Ļƻ݃ݝݭ;]ww2bY{˻y_nkX{xD,ljݽ~IkM}ǻ^tbfw8廇c vo8-fG;|Zӻ;z\gĻ;xwd!n,|h"x>q~>ެG^wG2FS[x:_jλԻջkl2w -t2 nS|\t:~~8wۍ\^= ww:6+ƻGIN4w;\?>]6~kZ,ryw."1R&}8.]߮\{n{J{q;oxwwwwwwOwoĻ/fG;|ZӻQ_{\gRhHwzwf{8~hӻ?xw|ɨiwO#ƻ;iQn݊wh"R[ou][-faӬUJ\&^7۝.h\{\t:~~8wۍ\^a{: ww:6+ƻGL^{MoWOwt6"םw^(^(Uj݇bw?Io\{=>i~û>pNA|;Ժ}%}r1Iţ!.{[m滇ct Ƨw7gQTGwwc#bnŻ{|p4R[ou][.faӬUJ\:^7~#twELXn}.)$P2x/DDlfjnAW^✑9-|;w?O}>spp{w kxXw?~ݗ{FTP뻿C ]w;_K2ʵftl/c;{w9lbxw৮ -G8{NRwtNd_?}lVRb{EP6ڽnN5~!Gtlh},wn,{{œiyȜ̖yu뻟'nCҵ~Y+TIȤ1;<ݣݳ/V-x~{mspt{w.Ow5c<]6{z/cosw|bȻ7"8yp(wX"$P5ɻ}}tw -wo z,y(/\=p<}F7ԭ|y}w;sWػUY`Q?_tރP{<ΉJD}02ɻwV>wn62~Y+TIȤ1;<{{wϊrX1~统O}>a"\$»nαwd{_3ŊȻ_wǼ<}OѰnTKyE[8 uǻOݿ{,Z(ך[7;|ƻ<_wso e1Nƣ|{t}P8sB߽dxw; z{wyx2| >2ɻwF>wwܣ߬Sf\T%!J_ñwwQYQ+Vw023;o|snO-}޽H91;<{wAVٻ5c<[Ȼ]w;uޭ{FWD+R{ Ϲ;]UN_3jw{w;Cug:vOyFWDwrAL*W>J=+bN]3ƳŊȻ_wǼ<_z9nTKEwH8w'ޝ rk5]6;|ƻ<]߮9t1NɻC ]w;ֶ\ݥjtmchwx@׿Hy\N4-+vFGomԩ<*_*2vqmmÒv/*U̗eo|>v?8t<5h3 tk$ -%Zk{CYQ5ô{;v/k[+}1V]\>&Kֶ\I7%R*vgmB#E=seA$Mf }e]ݿkw;/]iS=wMCSyk7*_*2)6ykg|!vvO0,ib"JN$+ʲi hh۬M]SAը &N=NoiwjVw0n7{ݣx-|sm˹"$VE,Cs4ޓL*seAvMf }Hwxk#~ -ih"{TK\&&o/1 %^,WD&|z~/;otgYNǃnQxˤYvOLXR\3L{wcΗoQ?`oQ_hvVb6(|6b44vOerjVw0n7{vv?\gk[rȣ~)r;$h08$Jg\YGB_7;>mKwҝ) ڦ<R/s4/kh'{\f?(a[ <v?85u:t[s\&vϻ{Mgr_PVa۽D=g?#-j mwJ_&~U2ϦSL{;tLBSUfslmXy4%R.vgm>G,N=ɤ~o~pvkt<5 -; vOLXRʊݏAx"{{ݭr1V]\>&N=Nkw{Z9vGv?B~k[r~)R;$h)?bqZYi\;v?$E=$Rkvbu89#8_vwjl<Ւ\gϾg`vgh'9(kvo8/7$hwxi i0hVH\&%p,Iw!B:/ʥjg˵5GwttH;7d4keE,v$i>> iw,'2TN4]Tݰat>}6dk7eYgڝa1q'H'9{ATʵf7W}gNi8}_K_HǽU׋xmի%H۝C'ڝt6/ʥjgˍ3G}wJ= -9,CWWi*TeRi'hC^ڝ;v/JJ5h{AHvx}6dk7jeYsI >~ HvOr|*+HJGJ prHG$ޯq?*vvߵ{sjTKr1M <|ڝ; lAF7̖mgvwvGJ= -ϱtE*2)cIvvkw{(Vw0-mB;v=tvf5 {f<$@go$hvOerIԚh:_aNk>K//ߵ{snTKϦ; nvOrKx*@ax4\HQ 9g1`$SBU{}o 8!6mwIԚp2׻uڎ>LkGخ۪k;v$P4M=rB,WF7ϖ<]now;Y&1i0\zFOGNVU(_zBT bIVVw0.Vp<_mv_Y' IsnOvVQb!ϳ IwI;TjN8"xAqW_&Khb6t[uMˤ96GڝFBY\P, dzz7OatLbalfJ%Q9&kwBdNep dZoub5j~{vH}e$$ݣ0dw|2" yeHv Oٴ%Zkv\V^F{<է bv?vVCS2iw͑vLPt,/JEk{lx~}nw;,?{}=F_LGN^U(;E!yvvg8^˲[xXm xڮt'$$ݣ0dwk}>ZE<2$dڝ%^j&s};Xi{AqW&KKhl<*Isl;MvIx'/JEk{lx~}nw;,?{}=F_LGN^U(;E!vvϱ\^˲[xXm xڮc;WIB= -Ϲ]N~aݬUX,CO_3/%I֚h27>Nv?j9e#Nig4e5ڽd\rs<{#e= -I׳u06b:wZ*D瘬) -ϕ;{XUjkv $}e$.'k[ɰn*T,y!v_3/%I֚h27E0"< 2=]Gخjh\&α94;*$e5ڽd\ors<{#mJ:}1;zUJsLtg{;M=ryA,˪Voub5j~v޾~# -}Ϲ]N~aݬUX,C?"mw*kw$)ZMfwNW0" qڷ4l<*Isl;Mv'K߅;wbYhvo8-۽yGH$ߣ0\zF_LGN^U(;E!Nvϱ\^˲[hXm|]?IǤ?~GsnOvVQb!ϳ Iw;ݩĒTkN8:]l ˆ{dxoǤwhb6t[ Mˤ96GڝtGӥB=we5ڽx\orsxg9!bGj?i9v𙾞Hy9kf9zFʅsLtWI۝J۝x1WZNWq $~GGz{9a^LGn^))R>+,Cҝ/;̣I3,/dZ[xXŴ]GN{Ea@ݺqY'^Y+BN86CڝF+%/C4i ˑvbGj?r;zH96Mw:Iw;P4I3,'dR[hXm'0-x'xgG7m^qY^Q+r!';vnw{x1WPZNWq $hw;|GIC]?tՒ*2$ӣoISB j/z~1>#q:Џj>:ZH9Q iwN/| ErB6/)J&vҍx~FQ|GGoa๶y9kz9FʅsLtWK۝J۝x1Wr Ƴfwv <ӝ{{u5~OGN^))R>+p,Cҝ/;ܣI3,/dZ[hXo'io;|gG0]voɰnEyɐvP4M=rbj?r\?Ii##<=N\ۼOz1 FʅNQHwxݩsY-W`<[w|1ma~( |ϱ~oVɰi+EEgMӝN/ iw ټ*f?WI7A!0\ۼnvVVBN9&mw -o4i b ˵F7ϖQ;_-vOLw9ivVZR|VYz$N}; ټVw0.|1Iig׳ݣ[c] ,gaݬUJ!' -!NI ǡ4Y+f7WQ7AHwK=N\ۼnVZVe<ˤNQHwxݩsY-W`<[w|1mvv( -u|2wJIYct' o;wl^RJzMW x_smr֎r6ڍZ(r"1IhwxvIgNsX5ڽxjٮ7;|?Ga{e]-~UT)x!MQHwxݩvgy1RFz{8/x~@?}/ݣ[xc] ,gaݬU͐v٭F:{w\Ù --qguǻPt:,'HJX[hXm'Ͱ8wǼ@]ݣ0]/f9 {fM-rsLuIߝJߝxQJj 'fAH߮qc]/AըVyE8I=y?xwxwOayARJzw8kxAŷHwa໶_Nj>;ͺZ.di;Eɻ2 ʹBY7;dOݴ]?+~QxehnvV)IS^;|w%P`<[wdzfڎQwȼ~wK|:wZjEcuɺHyw'rj폦p 0yǻ@{Qxmnv -9Y9&}wºk=ߝ&p( -%lr?^tv $wWw](=2aZLGn^$p,{b)#wI+F;OaD1Qם{m~ON 9Y93ywGCt 'rPVN86E7mBݿU=Y(=2a^LǃnQ$,MQXwx9Y^BRk{lΚa9^Fvz\+dݓwǺwd$%_T`4]fXQ|Ż@&}NGa๶r6͚Z*d4މT?\֚p2[nvdznڮy,8 -|ϱ tخѠ۪W+ż" $ASވ;|w$%_T`<]fXQ|Ż@[5 -ϵMrmɰir!'<|&Nd6C; +zNxM;2߻_(=2a^LǃnQ$) -;;Jjgp 0"w]wa๶_r>;ͺZ.dQtixwxt2,'HJXVN46E7mBwȘwO= -}ϱ |حݺm\ (,ّjf0c;Ԥ&i+H"2ŻSxwfwɻ3/ʪnVN4/7xAw;(u'&qtخnTˆHǒuߍ;EygXN(`<[wv0NwǼ||ݳ4Ϲj>;zUY9;wGZDt NjzM:_]?ⴘw; u/=C߳/nvV64E8׽DSyw.ΰ )Q5ڽx\aw޿;结uO(oViի"14Yw;|3R#w`9^Uݬ[h:_mv0J~w{Is9vl<)w(;T ZNfx8^Iy}?~fikv5Vj,[;Mߎ􈢋yg9AU\ta~xw;b>$Ϲr6ZIYxw -/xwxwEIJ 'fw<]/$=7ߟoYDgk]-AUuU-֝ƺ(.yg9AU\mta?wx{ź~̒8 wixwxKMp(Y:dQfdN=MwuخnTˆH2hºK!N=ޝIьr Ƴz{.QwǼ{{YG\f9Vb,;Muǻ !eǼs(Y:dQfd֞N=MwuخnʆH>ޝZwhFhb=X(Iɻc==_,s~OFN^1uUy4Yw;bbYeU7+V?W|u ӌ;sɻI}b6ڍZIǻSxwx9ŻSŻ3,/Hfkvo8-ۃu]?;u8 -7tSWebi;bwEYj폦f<_/4#w\wik_vvV64Ex)ޝ» z;MޝayAR4\k{la1{Q9qYͧ~U*<ǒu;Eȼ/ʪnVn46xAw;纓wO(]bl<쵛) ywi Zg`]l$%y7||ݳ4Ϲj>c>sT( -KE9h\ԝ|S~&VQ-$Һ 1;|%zwwQUݴrj?]nA'YNwB;{ݿr6;zs,CSdD9;qN^eE3,ǫԛp2[wտGqѻc>\a@>xYGwz>d4kϱ M;xwj*9{IͰRkvzlWi?w4v97t4ղk*K"úףwg\y%YM-W`46QwǼ@a|ޝ=K_χz9 {f9)Xw_j8w/UjNo8-׻ߣ8^w$ -߬ѠjT\UYi -ޝq]dU7mhu|/ w(ϻӺgI[/gaӬU<24EKӺQ%QV4rJ dzzw8]{'kP;{Dap|:w[k*K"ú@!л3.мTn46QһczgI]/faݬU<24EKӺXsz(+a9^lb==wrwu{&Qf5VڦʒH.pưP 4$i?zMxaw^׻?~,b6Zs,CSdD9; -8w/kvo0-ads_y~wZgi,Q۪W\UYi -ޝq]dU7mZou|Wi|}s,v9l<赛XHbޝsZw;UqN^%E3,+`<]qyy/y#8qY'~UZw3uwg\xͻ$i?zNx(Nw;|Ϻ?7O8 n~ZLǃ^Q+{eh$ޝsZw;uqzwQR4rrj?]nA'i|w;|ϻӺgi,gaӪW~\UY3ح$UuV59*bbB`3<6TBy7wweUvo8-[x~%i>xwxa?랿{ws·f5]iM-=_w;yߝIV+ٰdgayU;}wi{z1zVVYb N>落w%Evo0-[x~i>1wN=9nOF0 ]%clˤw{ygXNeU7̆&fw897/$޽w;b<i{=z1zfVI9#{wBy'${I*z> 8gxdyTgaaY&~jU]Eclˤw7{鼳 ʪ^5V?̖t~%+/gݳwqx7|oWhm7FES$g [ Uzv<;7/;^ϻD^/'{^&^ըUuUy^&%;KLxQVjrOQwx!?랿{Gwsv5]iMeu7;!$EfFj?qByR(֝;]4B߽^NnNQ,K׽LJ%;)%REYիzg>^FqJ=w;wO0n߬Qk5M) }wB-цߝI*ٴd'aٻwRA=sޮnkU]E^}yxQVjjbg(Nټ?0bw>uIr:6dX ]8x|)潜;r$a6N8-7ru0JW6xwx)?랽=9~ZLǃ^YU4EyXwu;!ٻ0/JV՛`4]ٹyA'1JuN=Mwa^&~jU]Eclˤw{ygXNeUV7ϖ}\]?4wwxŻuaݜq]ͧAݬMe>w'o.wBw`X^bԛV?Wܼ ż%xuO(h֋x"ϱtˤw7{鼳/ʪ^5Zp<[|u S:Gwx Ż?ٺ}Ir:7dZMӨh$p,Cߝ;| ΰ )Z0V?̗t~'+/gݳwqx7|t<[ZUWeu/^%RE9Z zk 8fyP;}|ݓ(tmɰ߱$pl`/;! ɪ^5V?̖}\]?4wwuŻuQݜq]-Aݬ*"<%;;NjUzv8;7/ㄾ{1xweźy>t8 -}z9ٻr6:YUY8ֽ\;?żygXNeUNo8-;x~)#{w;ݟlݿ>$}j>VnT4Exޝ;%y'${I*ٴdK6alޟ1k~={{GA磽]/fAݪת*SE0 Όtҋ"$_d79=xnXɼy{ɻkMSnONA]Y&]wH*ΰ V?̖QVnڎ';~Lq%xcz>t4趛JI8Nߝ#SiRhw|ݟΪv7Ld#;㘬{|ϱLzQnMN^-K~;$yd"rT֛p<[wY\x~ɼw_ -smSi߬Qn*%:Yrl ɼ ˋJGj?ʪvM3|}O@ٺQ{໎eܯtخi֫eIX;Ea gy݋4 RZo{tNnXɼGyw;㘬;ywslSi|mɨm5Ⱥ<ˤ^3黿QtyouldrMy1>םxmwM=b:tZ$ -CNQXwȝt)*}wxT5h:_mdzy]/x<ɻOW0ٺ' -G{YEr6:z, ڦ~qYͧAݨUJ1tuJ睢wKZ&fUg([8u|ױr>lڦqi]-A$. Kw'wJ睢w/ 'JFj?Ug$[8u]2׋r:xղ$,{UHayA*WNo8-| q ("y{u'{m7Mr>FRyw(;Z:T:ExT5Zh2_nvGYtr<2!8׺Ⱥk[]Sϧvv^-K~;r-}d"rD Fj?U̻z{ECzQnMN+Ywg:Yr׼ygX^zgpR.׻a9$E1}ddɻuMqYͧAݨUJ"1t1ywº@NQ NjJGr;ʊvMȼd8{w;V_"xmz>tl{jԫbg'ݿ!^1[bX>{)+j8-ucl /Us=B;#B {๶ߚr>{jԫbgY!Kw1MYQle;^;c_/0]xؚ|:hNKc CS)3;Blw|\K-&QxG}PObBsX-f㡦*X -T.;;B%=IN,'J(;6Ofw8:ޯ;BK{9r6{jԫbgY!˖w7R7{~v#vB={akWhvZ]JBlg j]j^4/usl Bݯwa1VxvSUJci*۝vG!=IN,'J(;]m0.Vksw8ڮΗk;RG[Js~cdW٨W<2)ݳ;BxgX>{VTm8-tcCx~g?!ݵ\/Ѡו[RJw;BWlw|\7Z&nlx;Bv~N:\@S;mIUJci*۝+B{=؝YN(R|6v މ ޣ(;t%t}/*r=ϳLJ,B/ -JMlUg'+R?xmOF^WnIj9Rg!^޳ i|\7Z'nl'?߸{j("t'vߵ\@vڒX -T.;W!Ы{E3]Zno0Ηksl /݁w/_ O:ncPSvНgY!߿YN(*5`<]p]?Ηk;Kn{o }9 =En5r1s {&;B{=a<{є?!xw\?e5UjR!!tg(1awBDwKSפLwr|<#߀wПA`mVx8pޔ"L*I_B}(޿xgX>JZ]Vٵ;!~%t?C!'#uVSir1xobw!z{),{U+Mtp2[66x%g+!?=t|>;[/ӱ۷- =؈ !zSDwK |\JeX=Q!ޏ'+B龿}8f[WzR*2ieRawBMOb3JMjZ˴;Ηk#>VD݃Y-fv *{V9& #B?F~{at&W(UjuYf #>ޝWB1O>re4!U|VHslDBމݓ)lXu3MfDxl 7"t?χ`{|:ve4UjR!!tgbtBW=xODxgtwh-dNx?ޯ;BC}}O龘kuU2dL@wBbxg3BRdUkwx:/oj1NcM.V|V9BAwB==Ű@.t}O~x+{hwBalng-MiH=vG!~,{"; |\JS7:=g0B5OC7|:ve5UjR!!tgbv;"B_'ow\:&5eXDxl |!!;ߣtn7H.,vBv=Ű|:+*5IVi}wre4!Qg{{l~"B!{grU+Mtق} -7!^_"`oV9{߶̖RR*2ieR;B!vΰ\:C.5f˰z;~B՝WBz9}kuUBHdhw!=Ű|:+*5j- 6x%g !{EsLw/v j -<=vG!~Bjmk|x'v'xwEv'tPw[oZ&Ґ"9N}CB=lXu;]{w #gtPe4!*B.CΤ@wBv1Jetz`4-(~B?%fOn߶̶O #B S {&{Mj(Z˰z}1/;Bg~%t?߬Cv֛r]g鞈#BIw>J$Z۴; m Wt?tŌv 4j -i=g!=lw.zx:_)ޟ!ޯwB_[dwB ~֫l2reݥZH ;n}(%.b7Drh2JFE&lj國8^xxZ %lhT뭎txx\>w"z[t[to7jR!'tGA]ݡ;ѿonn"͗jչox_w"}лl7r!IYt|^N؝ߴ`8?H -JѺTx'g/,+&GwBN^-T2BwϚݿDDDNl;7x,2BRkNDh+b>toիF1Mt{=nNDD'vDR^,WMop7Og;M~jԌR!8Wt]Н:HLj1>2|\@D_܋ewIl2*_Jǣ (݉}xw uldT-{_>x'"_}ެUʅ\&e=6ݝBSNDD{lr{|~=Qk.[NDb6v^-T2Y݉~?LPmd67lu6ݕ݅K#Qg[;{dݱקޓLXԛ^tZ>>,Ӊн/to5FI~q+~uv;v'""@(KrU~u W[חF(pPי ݉}ﺅt6_4V;|6 MJt| m􈈈mr{|~=(x?Hg %wtxx\> w#ŲyCн'to+b.J*NDDYv?u87x`8 -JѺox_ AD+/fSws%ty{" 4ާ;v'"",;6xT&W( &އl~މ~iիF1M[t]Н];H,˕zxgNttWv/ddӽQ5JBs{P?O;{tw.rU~uާ._;ёGE~Z^3J= umCw't'""zxWvw)|w;ѱCEd4Ttl7jr!Ith>NDD~Yv?u8x`8?je}d} މC 6ݛB=0z݉' kk -%&x|q|+wcjK=njWtEB&Нc:Ļק,gx':^}1 -(i˴;t'""zN-'Srlx&3 +Nt\Xv?Iн$t8uoMwoxwxEb {Xx զ Ml7jFCwt'""z,++uY{U~uDG>ݗBt"tw+BnKw/t'""xw~} x މ$M[{ˤLcw""»cp4~^2;x':v?,hhҽD, -h~ ݉>x6x/Cwoݛt^t]B3Нc:9Ļקl -d:DG+tt -ݳ?N't'""m2BY} މ_}лRt7 EН#~6I{Ql+x\>x}vl}1wн~݉>5ޝNew»{^^>MfŃ}z މqo}dӽ!t/{HwNDDqYxwl=+xn>DG?ӽ&tt=Н{ Ai~uӳ~މy{פ{EIt{=-O;Gw G{G>DЋeϧ{{}^VtO&bEw }V{Aen8w/~n -݋&ݝNNDDY{c N}ۧѢp-}[;;ge]Ļ_=^[}3x'vuE?}FxwoRxwcȦI|C{ڤ{}]k;. H, މst_>Pt8GA]DDD_։w.-˂٭ĵŸc3#X@#tB !?;=GU ?VXyo]Pu -ֺ_=\;_i|yƼj[X܃\ w7u_fW\{y5eu?}-ʺ0K=a3 PΤu׽u$Yĺ0}ݞcP~gQp.}^w6619[ۻw@M׽9{;$@D̼6;1:b7y {yuDÂ;K^ʞu/Z~ͺIμ/y_YפyJPE`݇u/ֺ_];~U#κ)5r5Pu~Xˬ;0yޓּ0Rn:gu?eIa=;7\λ0k=.=w -yۺn@t0wuόo+rYw~Ǽ=iXw"yT7a;}Z;2u@[_?ֽ{u`{L{yXX;Q3iיw@;y߼;0'Bn]c[gޫFӟwylºwC~˺0y_r}y;@9(}ş-ּ;DuX~Ǻ00)W/=ULdp޳Bqlއ;=cn5ĺĺ̵߳7cޝDȺy -{!01u ccPż5uk;xww zsκ2?݇uo6jUo97>;0CoZ7iy?<>=t罢w4w -Bnޱ׽\=7}wy>޽z_jں׽u}u@S}۝;1RE}ȼ32aݻe{1/={u@jV`r; #>޳]Ͱ('8˯{hzn0,.Ou`P‚}oΤyށ/OrۭF]{R{u@ }}316jl靮̌Ce¼&{ћ^heށ/5qu5RbP7~ptrvqu#1/]s/0M1;^BnMk 9חLJ; -rDŽys=:h>dށ/ʺW?߹+}S8weLy0,@{uߖfOuLȼ*ZM̻̻wd?u7u^]-kW庯($0Ko$#^;;uZ/ֽ-]uO(jҼǽy?>=?ļWyyP˴uoͤo.Nu_w}u@-=wכ-1={Mu7u׭u`Y𼗭yoy{>{>{ufUJuaP輋{o=_,Wzßwy>bMuz^ȅ=5iXwTwq~ZLћwyCw{b[z*.}}y~zl{2\Eogq{BMښRE5mcwg9b^FS_{Zֺ;w}iI;zB5{y/xudށO^w_F]ue6&{̞rbޫz%$]Пw0]w= v*ɺML;kּż; ^unZn6jZ$=8;9%}-κG}#b>:2G [uOu_su]޻3q{wy>yX>0LS;; asuo5뵪Xý;ru_fy12ԶtF{M1]oއ;asֽ/ֽju/[~w{}y~j{Z2:c51[by/y7[b{O y>KpMuתb[C32?żyOy!W(rb{>X`݇wvQ*bwwu9׷wrދVoں=4ν{8^]雫۩f`幻>e{cּļ;}lއح5£G@IP9IgF{]ĚHt7 ݛuDt~ #B]+2swv)I.xg};Kr辋n1/fUtG!>a{Yaxowݴ# ;B?O:M>:-tBMTsw^ofx-VwD.)xGT={_{xmrӽQrJ;B!9~{;;û()j F);Bt?ݣgtݧa让rE@wB} <]&7Z9ޗaٮ$)ޡw~t'INwqcfnRBk?xxAȪVK>Ow$aDx9fx#r/O:>HDw;].w!l]!{)ŻnZQ~bx xGg*~NI{xm2{"$23_~W!B~rE"כ Ɍݰ7$C>НqDwS'ϧ!{VUe; tG!Pw 9,JZ%wzzkX!~xGTBSF]XY-6]S(sJG!B_~={ 2bxOw$ax?%_Ru)ݓzb q?_IIwU=Bnrݫ"U_#BrfxLXVolZo v /kC}I}7|:{V^UI, \A{!B -9KPHV%wz|x~Ż;Br'ӝ~ ږAt_&DnըiLt{F;F!B>9,JZ7Z^8nZHzgxO#$qkv$nYi\{ft~ #B}=;{ ﲪv?Mfaٮ #t{*wFW~G9otLtﴚH2?^W!Bnr1ޟޟ9^+v7 ϗnڎQKvJrx'9~|9wm7l:VVUeI, ܅;B!3x\Zo:pNYi\K~#Bov<]VZnha%,+cma5!_Of Ѵ4SiE:=3vFdjޯx_ܿLUUYa0=4 ]몲$,C?p{B-ޛ'S4񢤨ݞn=xyIeEx;~tF秧v^UELQϦرuY8to~#BFV}#Ͱ jGӍvt"]EZoj_ xGZWN^}#t"[&qgdXu;$KSD5[WB xo]N,'zi97h,֛mK ޡw uI557UUY`>u#{hUeIYC{tG!wf)xQRnO7LM<$ZOx?xzGFW_BN%t/|,ПyرuY8OtototB!#ݝިNp#Ͱ jGӍvt"YEZoNzyw^~/׫̳4`>~Q$XJ֑;B!~ OxoN,'zi97QYQV3/zG_oNn֫ȗ"е*K24u;{}!zQp()jE̋jlODxG_+o^}G^EL(gdX:, -P'k7j߁!;Ip#Ͱ jG]o"YfEY -Ut~z"_8 Sw2-{]UDc+[G߃!ݝިjxhEIt{}ôě΃0^Y^T޿z ;B,eBc ]먲$,CSGtoB xoN v5 mgNg~-eVz%z>+bW}^UEI799"2w;B!Ixo?H1,'zi97QY^VޡwzFv"[&(gSw<"7~f xoN v4?Zx 4ˊ?n/ѭܿ]Nm "_&(Sw[4$]M7C8I މ_zG_wr@m "_8Sw2-Eeǚ=7AwB}t"x?fXNei٣;aHyQoޟwxR}#r94M{3߇̼=1be7FIDw_^zGWr r?\yQkgD}ED:D,KޢrB!tj7([ Rw8^%Y#m2ͭY^Iݾ zG^t1fbi;8p#o]{y{O3nv6_(FtvN{}{znTw>;s6ͽ*b!L]SnY^=߻'lnXv._,UF hsl ~s?;Ϧ{^*䳶ihj&"K{40w>aDIwJlup<_`v} }uFJsٖYeYEp]$J{*QuôB\>{? 7ooswṳs^jԫRnpSYܣ4=*J|qq"eE{x:{_bƝ 6t2vެ*b!LCS3i1>w.xsG38.Eڻ]t+z' fܯs?gsͽZ.Y4t6Tҙ{]^=߻,+1錪B\9{~{a wg|Ai74b>g[Nc"K{40w>iD=HuôBlupkNsO&ݹ+$9sv#J|qw4ۻaZ\^o;Owhrn;ݝ=]w{M{/Wj{uιi {1-Sc,GsG{,w=_(ޛ|Cs߿81{^g-Lڛ{]r.`p{ὫlW{b٘~s |:{*csWh;߻]{{{OgM{{oV{{v^l1==7wwg"]a{L ʺ{owok43w5{?{9;>?>w -_wgb`,m{?b\];}_I#=>;[r~5sb[ާ[{xܯxs-{o{>}qsw|<4;w;Sd90wޣޕm{/9{oއ_/h?wwὣ/wo_>̽s_w᥽{x{Sޗoh^}׷7W|s{v]Muo#Sw~;~q؈;}~}Jsܛm`WK{N{~sf͝ŝ>4{skwޠhEh$nqs~>ݹ[\{I{h9;j }?dO~64e`ͽCs9sϾ4w;gN؂( ?dPPTfhSww{d}w?_޳zJz/+j~!#މi@>pgܯɝ.ng,#UrOA!B~g!~N|gz|g||BpwɝrN ,wr?9&w!wB/rޏXgu{!3IﶫwwO3_[/ |:$H˽VeIE!B =;}@z?>a7΅޻w;|| z݃*B6˝.j^OY{rG!zjUߥcIe{zlzgOl[w}";ýroXG,=7!BYл/rz?=zo|'ߝg.s$w/s{~Or߁B!2FzcޙvS_[.R*;݃%rI]!w wWB!Zc_0߻wL|~w)ԱIwE^b{!}rG!zRz -I!.zgO$Y.$h%o\_p'3ܻ9˽zrLr?#=#B=z_^'Y5"۶3|>B+~ݱ'$w;˽r'X2}w'(wrG!%]c}z?(WX5{[>&; &zxYөc w ;W*Fnxr@!B+ARfHzo(|Z Z; k$w"w{^>gprumK=r_B!R%ߥ*}wݶU|S?ؓ Ý侀{Np܋;9_Y! !B!aoi.|z"zY;|3{xo"p= M#5!BYEN|f}߃z/Y'R0߯c>~n6w>b]7Xe{B&B! ]ӻFz7U˂{+n'IL==<c *˝^ -ʽg뺶r@!B/B懲7 ;]{Q^ e|_$~}}(ᾐ{E]{$k,l#BDk /aoiNz' W<]G}wzHl-w]½ȝr77]KC!B߳YֻFz7Iދ߅f+?\ߺ|)|_8/~ - s$w]׶BrOA!B/RPBB#UK|o |~W~;{<N,ܥp/)r'MrgrB!^(E海3-M d3(q|ߟ -τUOcNrpIr/I{rG!z{z'gNz;=vg+?X]qp/Np'Lum˗;B!E}Ku$1z?aI|g~nppWݮ}{kI<0tMs=#BRAzg50Hw>>ߟU<'v>|$Y4t]rV#BVSBw]7L{J|,r=#]{3$|.g#B#)|_|'ka9;;}5{ -Iv{e qprÝ] w!'B!;Rzgy{w{2[߇ֈEΒx{p; pp&L5;=}];B!ʩ|z`3Iw^`{]|Cb6w>D/s{5$m2b#u{ړ{ -rG!.z|7 3G|f^ L!á5*{ %n,k8 w -0Idk.3wBߞ.'cJM| [r)~_DK~=#k8 {~.sa0]!wB?5i{Nzg}2k ?> |0w;ݲAGpo/u ppoHC!BN|07% ̭;`7n Vo.aQp~Gyi u!B+wwzw|?|3/-{CɄKj)=_nK[u;&~Zs^>; wSݕ{;B!ПXX>߳Z"w|ߙ9l=] xEQdLe8[K{pp$3;Bn7ca%$! xy-^4|3H*Je;4= ^E]<!3w;>rQ~~ ç}mp[ۛrIn'O ~Olh6}_#B|&|߂栗w;}4&ϮZ{Içڿ9jWlb.nyn}{ssZvhpvu jG;B!oDN~'+'5֩} ?1ݾ #v;~qn^~1pߋrG!y8;N~}J~;~I '?{ڿj~l@lgۭۯW%>&ܻ{~v=~`B!6%{N~'/;~x~~c?_[>=ab{'!Kn'7 -'J -ܳ!C!BM o{\0OK~aooo !|[#lÒh=vjO#v{~In'_3krTt~#B=W|P, -g7ߓ>!!m=j~=}r{"N U{YwB|?fJJ|'_ߛK{|XVwk'&0=ÇB>M=0rϯfD> wmr{Np?ժJd2{փ;B!َbTT5b\]o'#Oe_oaTrv{Z)Kb!ϽbYgbp#B=|~t| b\T}4L}\ >A|\!%3Ivmcj՞` }lMx4ۛ3r{ZKb1܏wBFg-ߏ|P,T' %>ᓈwrr>u{/Av1{?h'~l_0gIuqr{T, ܟ%#B=6=﵀߻~0'Y J xO3x0uMI Iw#sf>^q~.nj #q]!Bqߍ߉ߛvz`8bO!|]ǧaF}N]CGvQ;_ۯfpej6 SJTrnpB!Xk~|W~|S&| ŻY>kN~7?`]=8g1}g5b!pܮ1pB!^?+g~Qo4V[x+x!^>`xAQa $SYv7f`bnAnў#f{2ۭfQ_OngYv!BI@=+~?~''΀f̀2iw N^oH>m7m"l;17v8ۇf{h/j -pG!z{~D~''΀'_>D.][ċ5 ='=&ўy>.vCvׂvEL/5vv{^=~pG!zڅn~ek%;΀3[Â_]kĿ7׌׎7(i9?QHv%vC 7vy=Mf^bn?nψ-wwB!}y;)~* o)^1^;^CR|цYՏXf7h_ڕV۟hGpB!wY',xyKyG1҇Gz+v&kv+FR(va{C~]ܞ'ܞn7nB!Pw;^=x"< #^Pb8^ o(i>nPQ;Z+bgf ǂ ϒlWng'ݞ pG!B|O]xG,x-5Em؛ouuv#vMv16APR{*ەۙGvB!<=YC&6|xxx7]x'n#++3]j=/lWn?nφ#BmJ}=w<= x-SWB.^#~"g;7GY坸5j]`wĮ.fchw~nb+ar{f;!B(ߟ]|5&xË́{w /זwMstP].\g;b'[w.ڕD'FkGn?B!Oh[g}b+3##7#ij EByy닎M ו-m6{sF)]"jWlϹl?rؾwB!];nMX>''X|7|L -JZޘꉱպ:{݀]` '*=Rn߅B!Џa,|5|LyPhނ~̕:5h]خԞv!B= sZ kGwόWWWזךD]Ŏu&{!Glp;B!=Zcv0!I ERzA!ӵngGs=O?$|j>3>t|PS͗,CzSh_W"Ko]*~[]>sZ|?T|cɧ1_Ӆy#1C\~\)kf>U5u;ޱ~1|Sc 4|Cw:>|j[Wr.Xr=!s7~hh_Uٮx CROs _+S˧/=_5('PP!C={>Wc!u;oi]ߗ >$ᇊ:>|j۪_j_+gTP1CbhlC|S5K?/_+>f| -s7I\z^xik=z?CMv6ڀo M9Cf| -9kzr0O}_J79'{hjgnB4>"ᛆo">V|1k˗HE SIOTlL:So#>V|9Kט~gxbOɾlsٮ$}ᇈ3>|MSo ס>/Filter/FlateDecode/Height 3418/Intent/RelativeColorimetric/Length 73012/Name/X/Subtype/Image/Type/XObject/Width 3418>>stream -H -ك FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU`_ph/CPGz%΀;apJw`ɟ4~GA ,1짯PoV0"^\"YcUNrY,`EvB}Z2@CA_'uo$Qo"[j; ]#l=ƂWDDDhaXjC5WO"""upDXbZnQ7ӌl{j:D5Rs"nc,tEDDDacQUXCT :|h6U T n4J* -]SUlPӒ62ej=DDD VT%L]+"F2V>^+"""[2nUAUTu@DHzJn]{zhU2P0U<hZ WnX^WDDDWɪ,S-VGD4zЕ+V䫄Wt&""UMʲTtKJ+UīݔW:Xե*TrMꔈ&bEҾyUUuO2=*R,JJ*Uʩ2Έhu+AV$Wt+UNyPBU0U$SΉlnJ}+pEDDDߠ^V*VUU -Ң=C"针[:9"be -JxeWh"""z dRRY2Hez+2V&W-ڍt衕\**V*TS&=#)NBN-m ,WWKϫ=AjU5TҨ - -R1nDDi"daj}UZdw(V=,TjI@q_N?讈hRi)c:ixu,U-pEDDD e̳CUUTTATS^ʧ:Ö6V,,WNWW^WCq&""*UU{UsŪDUGNU -UTT4 @ rEjKJCWF7U T)RQ)O%zIDBJ-eVXXWW'W -[QɪV-,UTE81ُD4ȴ+V +ӂ\gJjfʱʩ(QU*e*CTZS^,vidbi`5xuJjjnjպVvYuвTUT^TTMOD4MxPK+VW-.[^rZ:\ -[QzYʡDUcTT1%wD[Y-<_]9_%tqpqj \M:U#Y2VU*e*O *)M\"eJ|*UHWf v-\{݉`UNV jUE2Q՘ʓ*Jy*ԇD4-ZKV++'AWժպ2q5"""b[EWyVYuYu.TC7U,*) PT4ZbrzLt5WIJ\Ӻaլ̪aՙBXJ0U,XStgtODTZ)"`5z*Rtu.:==\wj[M5U-UeV .UZU׍4SeRJ0oDD!\YAXXWW^WW.DWg+WW3-pEDD4:]հjSǪ aiFU-8TySEҞ2$,6V+, WWZԸ\a+"")fjGasU.DUcU -ҦjI@Yg_h9K+یWZW?8]=u*jjO -[MvZV-3V=U]ŪQZ*5U TPlrE -j|JJӕyU}媽U*ͪ*QU*QՋXUZRE$%-MXWWnL\ \-j\9[ʹvFY명j%jXuJTհJTuk*J7URue8+V W&]tzt,Rpl5wVDDD_UKqՁH\eJTհJTUUw)Ҡ5" feJ}*խӕSjql6WYVUݬU5UU -Pe* "bV&,WWplu$:[-f؊h+j7wR\u VyW٬rY%)UCgT,NIDԟX4"]CJp\Y䪕йa*7~2HerDDʊ*UAWp%qu jl?Vj^j\u VVʬUUW*M T/" -2UIWXWj[ո[:[-c[a+""jNVʬU7TSU*MTo"BEeYUWWʸlqup%Za+"" nUGjVVVV}VeQU*T1"fÙ -+U«\W\lpU [mL]X\UJ\հJu*QUͪ>eDU&*EDHXWWWq᪲Õتƕբ[mJc\u\UJ\UJ\Ubf՝Uz4_"BJ畡{U+W7WWWj\y[-VZ'ADDD*aՑJ\UJ\UJ\UͪUªTUETSDeJ*g՝խՕલલjcjUU⪊U⪊UWªǪV}r,*J*5UGD['l_^eqEpup%jqRpUZl%lululVDDD\u&WUW]_ n^'YE*VUU}J|xU֕Uwo=^ nWWVOVV'FjUNU⪧g>( _@IBTQﻳRv8QYIuUgȮr]U^&TBT?BeRJn|\V1qV=Umm%q Be -WU=v0]EbWmXudUUW !!WylՌq2CgvV-U=V>N7BwޮU .j0pCfˬZYU*TmTUJTeW$Kū"Ƹيq5FCǑ갭*V!jOWYZULUϪUV}N* B(}l]ej"[M'˶:Ac[j)[U": -B!k W઺tUIWFcםLUsvU.TzJ*h -! XI^)tՏW7\WǶV]ilB}:ݸLU3cw®dULU٨B^嫔"zW -W[1=lʷUIDa!:2\ut؝WYpꇂU)VUE?6G%U -W?WS"[fuǣQQ[%h[!BpՉpUiGW CWy|!]zP<zRWQ]%qŶq%l{Yh+Gm+=UB!eG -X*|Xmu4pju]J*UBq nVWV+j l5ɱUVE -B!t]u*]U|WYjWX%]6VB蓷3VlrȵU)UVB!;DªİJejr*fpm- UE-! -p;>B[]ցE/UVw1[}j%m5 l'[u|[VJg[1[IZV!п(VUg*]eZEow]UBWVJ&j+Oe&٪&leVU)qVEB!KJĮ"X3t]eW WMӮtXUIBW2j!۪Gjd+۶Lƶ:c[VV'1ZV!v2JJ CFj:>jjtYpn*!ЋۊV\ [݅˶rV]UlUlLsUi -B!޾4J*V*0M˶U rU\ ]5 \檀UQWU[& -m{fl٪Il2 CB[VQZV!sVepU]eEZ䪮ppWo\V!- -m/խVVca>۪Mjl2MCg[0b:B(U%v+McWI갫V*]\C]{_WB诶+E`)j$lc[Vue۪*mUf[Eiu Z!BoQUXVUUMׅlrU\fWjIZosc* -!txeJim&lUm$[V&J$*L@+BUʇaZNjVQVW=HW=]V! [Epo՝VV.:mUle [V*TBԑVepUUu4-`h6U*`%]uAUԮ* slu}}u [{l٪N,0tM0*zBQUǁJ*ViY*UfWUp|?W=\V!0zzb%j&l5 -[u;d&٪fۖiUl+ -!zb: `UfX WU5]7LӲ V&%XV*]"W] -W}\BqZlD[V:ʲL5MҪE+ -!zeGYHXineV6]EbWU˄]sXBYi[i+j.l厅=UILu*mŴRڪ9B!>vjW XUM $WU+rÊ]EbW-UkruUwUOpBRjO[VLj4"ZgNڸ( - GT87lԣ<0VwtZRKc,{$M8°Za508I\%X9W V*Jz+W}x}m֠nUm*5(L`zӪh%[M*p:^O+lEDDK}Wu5 -0Rtjj`\%XUU9WU>UDDjW[9Z9[y6޿3[9Z5jh%[V*0;[wbjb:;oaոJ.g30Wr""qmUVleKhmЪh%[IGтV#!"""_:*`\`%W]UyQ9""zv۪B͌Vf+GV d+* -w -CըU`g ZWyXUYEQVU*+\EDCl뾭,\4[VV=ZD+*( ՂVK`=6긃U,XM/`\eyW]*"ݰn:[}YUQl%Zd+U*ZEatjlnXW***U/UpяlVCVlV٪GVF+*cGZسX9W -02XM/a%WfY&WVWVhkg/=[UhVf+UVd+*BUKhEDDAXVjUVr` VUUՍՕ٪U]U&[VVkV)"""w`%WB*qʹ`52%X]{X*"lVmUUU.ZZZ-jb hushEDD4PVðJ=/a%W V`UUKUDDܪn[];[hUWlVFVDGZml VVe\UV\`檯VWK**7Zi%[* ƍhzj`u`urVrU.XU\v+\ED ꦵl%ZU)[e3jVV)"""ڵXFVq -Vl*(˪6XfUQխUc+lUUl%Z9[mhABhEDD0Vհ2UU:X]{X*"ڐn:[VhUVf.=`5+J Zj V~DDڪGlgYCbGqC#hEDD6X-NNj V\ʻW!ZݶVlꏅ<*li52ZB+""^}X *ZvU.XUU=_mog6dVVfheFUVϡXaո2*UQU]sW\ED`eZ2Ze d!ZVU[V`Yfz+\ED6jVU-ZVF+W/[-h%[ -ZC VtJ`ո*`պʹ -X ꣣Ui2[-<;h -=XEIVU6 VEYVu= -W=Vlhm%Zdi5VDDD*`u:m`ۋWa5 VUU VUUDD{mVVVfVVhV!"""#3էV+VDD{oV}Z:ZVf+KoZЊh;`owUQU]?n""z --jVj>h%[-{Vhuhu_Jza%WnZW}UDDOo˶y]V:^Jr~VDDDg>I( ?D'A -3DUWWuwfIw aX]Wk: -V=V#wVcVhei5ѴPRh5rlU -ZYͅO V)X== p.&>]ZZ;R C+e+E*VM ""-n>=XX ."]ViU͢UZ7V4X]}X5[mʁU hX*"˦o7VBZlZUh=D=hEDDW2X)W]xjzDCjV7VZ(Z V]V>*ЊnqXV`84ҰUDDMIV#V=M+evˣUy!Z-{숈v1ª:jXMƮ,W+"+LOY*C+""baW\ZêêU -XmHhӪhk ao@DD_3l F>VhVDDYMfV=p8z1VDDT lZuV h(YA+""|X+"" -IwVE+սU=VhEDD]ʗy:[ VZإ+"""r[V6`G@DDZ}huiuh+#)X+"-h+V/V˞C""VV{VXmlAZM´ -zshK"" hViVXσի 1""U{V?|WO*h틀Uf!X fj?X_UIZ Dp`t""ڤbhEUͧՉ7hEDD+-YR1z+"-,Dջh6Nhh#JaM'`ED Z rV)Z-{R!X]a;`EDM}lA~ʊVgS@+""ڌfJde:""ւ8EzZ@+""ZB vX-{/VmVAZմJA+""Z˦`V::VDD4hUU>B+""Z|XhX:q`UXUj 9ٴjHFe$"|Y*Yy*:`VDDdJJ;VW3hh}U63VhKZV7.. Y)ZЊַX-XaVDD䗐V.VEMCVVVK!Xê"+"" -VVNh haaV9YX]aVDDdVw+ZVuU\T:>2*ôJA+""Zbae\`UְX?kX -ށYjɧUChuU)NijYѪd*+*hX)X]hXVM_V=[V`EDDNZ9Ҵz ӪiumhuUN* h`eda`u|",+`+""]<Z nЪ$:shdehVDDaVau**+Wٯ嶑3eX7 4;E$F׍ Mi$;5saY!zni5ҚVhe -Z o(+ -!m3sX+|U BDV AhKVaKVBV=Z]{!I}Y}'Y4U#+ +UPjz `BR"Y ZVR*'ZEaeN=ZV -hBÊd(V C+v8*`5wڝB!ti}i״eJhBVGX+p`%i&`h` X!TGYjB"﹎LIFVD+M껠]GkO!j=XM jXV՚`$`u( -B!w]UyJٴSU{ܱ-AᠡսYV!nVwV4U#+ +َaVU+)+ -!G]G9*#Zrƣ#t]SA+B7ZV$+Eo`5 -XY=?`5jX!d=ZIjhhrYVZG+ -!mU +U#FcsaV)B%ZUUyn+IVZVaZ=?$ z}"YV!~3Z$GZ͉VYDafA<ԴuM -B!t:YհR$ZY&lA'i^LgV[ CYUV/BvV%jj ZYGqǶVZYV!WV-Cl0JҌ`5?j/a%eڗյ?B}Z=6jZYGrYdLeE4UhY!V}X YFcôl{~ibjG*/ -B!Nh"iUUAi(i5#ZImfDCM{]T -!dUJjd%`51-p8IbJZ7'`BP_V=Z;Z-iq4&ZYV!SV +d6w 4+VPV `B;GUv5VKUgIf1ѪJTdB*`%dEҎVp8rբվ=hBXoqyafA<ԴuMmhuZ!NZYհR$Ybw ,/VZjG*RVBV/VUU$Vٴ$ -}ulfH+MJ -B!t:X X}WTUVa2^FIәF=XAV!\_V=Z;Z-"ϒ8 -|;2'cU-VJG+ -!?^' Y)iGX G+vQft6PV `B7;GUvVr1yafA<ԴuMmhuZ!`uJ%Xbw ,/fŲ^J/k!EZVBV|6-__9, @ft{)$F駙ִ$ -u,OZF+&9dBM`d`JQuô8򢪛֛-xB}[_hu)V=UUYG9eV7YqZIV3 -!гqVLVnZaYQVM1X(dBl* ՕVWZkȳ$ulJYh\jZ!zzVd2, ,/=auB}KՑuPZM]yDa๎eI+h -B!Ą\VVDJQuô 8I󢪛֛-;qo:/VoV8tmSya๎e\VVlB#aⲒU3Lq ,/qbz}[a%O -!/$hu<}UIc[)3ՎR"mB!!++P&Vϲe;FIUt8LV VLVV -!o$d%VoV8mSya๎e\VVlBݡ VWY`e%+fzA'Y^VM`du<}B!+ Z]huXiuwM]yD9e"?sZ(%F+ -!MVVLV+eE vLVW -!㲺,Zhu:RZQYi軶B+"wmSya๶e"DVgZq,Ke B!U?ˊ%aEIV5ô/$˪n~ؿXY-B=vWZ:RY }eqcȢSYq,Y=CV!fYqWY aٮDqeݴ0.:WY=NB$VZ }UgIcʒ(&YmnBv ɪayQMEVNVBm"+$YtvjJ%E v S"z"+YVBhu~׵MUYئ$, w -!'-Z3Y(+nZQEUDV#0'*++ -!ʹj,IV}eqxmH"mgZQYCV!>gY=Ym/HxA'Y^VMY~,$B?DdEht$ꚺ*4u,JEVB"YV JzAYQMYXͲzBdgF+&ﻶNn#iU/ +~1YM3YCV!AVVUVoG*NTVVTVMUYئFVLV -!C^DV &՚JV4ݴ$˪neu>3XAV!@AVVÞȪ.,smЉ$e5B(UVVK"+AȪfadY1XYY] +BO(*nUIcPYq7YV!ƾj6ʊ$"+ݰl8͊nݞQV=GBdEhu>˪2Ϩ<6uM%+&ՔB!t^V^Vk~%i^TudQY}@V!@+&UdڦFVLV -!ЗYYMLV+&+Ytv3XAV!GY3YwmSEQ໶eLV(dBQV(DVU0m zY5DV#{wduB=i(nն"O(]2uUH dZ!"(+^tò]?4+ʺiwY}Bh(#U[We%q{m"K"ϭWLV ") dB^V^VkJQur\?4/Ɋ -B!]Z1YwBȪexm*oDjhd5B5jJd`ZYhi;IURYߨNLVBgnUw~6uYdik[dŏAV!6jrՒJ R5ô]/eY^Vw@V!{Ydm$ -}ױL]U6sBxAȪnXQfEY7nUGe1LjBVVDV'*#U[WeQYym"K"ϭZYM@+Bjv Fr\?4/ Y!z~@d0Ya๶ih*WK"@V!nbZs(ɊQYeyY-d5 -B!ꮲڦ.,wmj# -<B+ -!cY-5'0YxA3Y5DV#dB^V;Ym*4r,CW$MV3 -!}&WYX q#aٮDqeݴ>FY}B2Ҋ4ʪecFd%ܺ*+ -!PYnxA(nXSYEU7AV]w:CV!~USya96,^1Y-BZsdeZQd>jdBi{;aOdUEQ๶ihaZ2Z1YM +B}#^&S"ՊJV4ݴ$˪":AV!FYQZu]/&+ߵ-Cg!+B(UV% ndU3L0NjzwO!Y}>ʪ"O(]2uUHd5B,Eel"&iw -B!]Z1Y*slSYynj~hBEV8^6ayQAVBQVV~6LVqPYLV^-DVS -!WY{Y9^$trZ*iB!䍲ծm8 -<׶ M7Yb@V!X#^&S"ՊJ/$˪!: eKD!YZϧdw~}(ͦl06!ы -"&k ~]߫L2|My, eUAVDDtY*B(R|wdWV3ml,w? YQ.ziu&]l:zV^SzeUDVDDw)Jde`8deyYQ^WRz~ -d\̧ѠoN٨UBY]#+""JȪȪz=U +dEDDuN^Y&Pd d+Y݋n}{+HVd Y~|dEDD\VG"YzgoFjCY Y};U(@V"+G|\m -VoeC$""bYFVDVU'sY]Jݽdjw{-n&""*/qY땳MǣmNYZ%UYQX*B$Jӫuaڃ8zeyYQ~z++ES b.ꋬJVUYQhzlu%RV1奲:ju7&a2EV@Vn"YA+""ʪ1UOd5d劬?DV~FVC""\VG"Yzg"+u-%+]\*}`:ՃUUɪV0Ljd|PBVDDbYFVHV6 Uk"r$""o)nDVvWd5Le? YQnzi?Y̦"+vZzM*Ȋ]ȪT*߉jYx2;E<(O]JhdF ыe˪HJeUdUYi $ھU +dEDD}N^DVOY-Dde:m%*""} VkX"l֮gHDD} ]"Ȫn6Y=e|YcY=ƲV0Je`(ŲR:}Ke^:d<"du/QBVDDVVסJVNYMrq@V/NȊrkL7&ئ!WuMNhȪ|)nDVvWd5LdCVDD2YBYl*nDVDDtхJJWjp<͝:c -+dEDD9BVVOj$ꉬjVIdUDVDDt.B$JӫuaڃDV[dEDD-)K ݬt2EVm%VyDVDDtej:[8+:YY} -@հo"F PVYYA+"/ZFVDVM՛NOd5Je|_dEDDy5{^$Y/Lden +]^dududNDDz eYEVrq@V/NȊrGFnըZ!+""edU5DV&Ȋ@YZ9 @d dedU@VDD_V WJV7"DVݞirDVHV) Y @Vh`["f(ӅJJHVLj(ߥ:zY=Z[F/U%UYѥʷ"+-aڃDVDV~FV=B""?oݍ|:dVjGdEDDI -Ȫ5,tpVkWdu({ޅ}Y5Y= +""ȪȪz3(A* YQzMiu.Y/Lden"@Vū+%їV_d5_,WdEDD9Gj5U]dudu?Ȋ+Zh;=Sd5eeyYQOdݬWBd5M\VVȊBXePd刬vYYŰBVDD.d%Jd5d dedU@VDD_XVߕnDVJVz nϴEV3%5""EdۺFY55]$*"+"^TVR.Uъd5d@VA""?Od\EV}!+""zۥʷ"+-aYGVDD^SZ煲oM I$vQjGdEDDQ -Ȫ5,4d%BVDD~)a2]U\Vz3(Փ% YQ@V;w^:Y$n,PVYYA+"/DV_d5_,WdEDDȪd+Y݋nZ}݉OeՎd5eey -YQnOd=!Z!+""z_VZkL?DVDDe*Y̦ UY}7YeNtJnRP@--ASW WsN&ܵ~bgVkcY}uY5guzrt6tVBqwVY*W -?䬞gu}VEgoJrVkݳ;f -4*'Y=YujuNgYU9{VVwVOguՁ`ଖFj{VYtϪ9dk*'g}vV{Y_[>(Z59 g@hYmU{V -7~guyVgerg䬊*gumY}`L8fzVW;g?blYU/gUo4zgjߝiSj{VkYg_;gsV - wVջ'Cg_9+>v*V.fW'Y}Yݤgu=Y0YGg?:>%g_|ȕ̳zezV{; -Է̳Z(muj?= -{VgU Ϊ?ȳ*Cg3 -E5|VVwVOFsVYUNOfI<9}^^ mY]guUVZ|V?_^Y"껳'8Xvj{VYtϪ՛`:i996>:9gg>䬪 -Lj{g/= g9V -2:g#=#gϪ6tVVY&U)=n1㬮.*ggUX<+k3#gU:Y'gpVͱwVuV -9:bkYwV_@³zMzՉ`1Yz}9sg(m~UY7[~f67׆ϪV_]x[Sj7=䬪zYա`Y̳z~l6&jV@wV?{VtU@^M?#g@:Kg8gcUmv]fՙ gj9+f>Җ YsՕ O٨;+M=}g@uV -*Cg)g@$ggUqV:f -ΪY@`Y];+ *Nҳ;+YY@Y)7648%g= -Hsչ gjY |gu }VC UgV 4Y8+d*;+8+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9+8+"9_ ~{hYp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8دCA[?< -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ~0 faV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+Nfc oSЂ0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+~0 Y1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY1+"cVDfǬ -Y 2+8f@dVp -ȬY0aP0u- -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -Y@'0+NfaV -¬8Yp2+dVfɬ -`ױMl,h, 9caBxWs  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+"aVDfì -Y  2+f@dV0 -Ȭ`Y0+c6+މY2+  2+f@4Y -Ȭ`Yx=z9/  2+f@<c4+ɬ_9ulsgl"g o]{E4jl*YpY{VdgxggxЋVgUUg5O8+@XpVqVxpV=tVuV; -`ϪYqVxqV^γqY8+@8<+\="g# -ΪY>sU#JsVz謒Zkg!<~uՀ8sγ*䳜Y9+@:6g8wY9+@xqVupVVgrY 8񬦜 .uV%YrVngggUSg5gepV8?oY\g:;XqV2*YB>uV+Y5]gY'g!Ym_gUNwUYV@|VyV9Y(gu4 -.YgsV\g*Ϊ8n,8+@8:"gyVYmw=gg8U:=g|V|yVcYYk']=:2gp*VuնjYYM9+keUuVsuVߜ ʐg5g^2U՛8zY8+@qV5yVyyV -YgUkMyVY}2YγgGW*> gg4 -pyVX<:::+:g*Y>g5PgUQg*Y@G2>U=VsV UYUY-jYN8wyVNcY@8Jjfvߋ q:+]UGUsU<rVfYg<;hYBY5ղyVTwYeyVuնj)꛳Y|*ΪY|g9:yVsqVfs<g+g5gj6j9+VRY5Y ǓY}9+@8:OqV -pbyVgUunՎ=Vn{"JlwlG")-"",w!d -|)+")U *]ɪJ򤬦(Õ=@j/Y ,Su-UȪYѷJ*U Sj*ՅV_B""_.S"nY' -XYV5dEDDrZBV)!+%nڎxQd?ȊϲھJYEkKYuMU_dۭSYUY,DVxBVDD}\P,NFþ'e%j +""5UȪ'eJYM0z ZIY=P9egHYRYIX*!+""EVuEm;=ݐg^e+x<3Y-h> c)+6DVՋUEȪ/dEDJ3,[j4Ȋ\VVxj8=ǒj'zNew&:}YJ$j%eeڮdoduWߐv+nY' -XRF YUe* YU^!#e5y/3Y#""JV)Uj4-ei7U~""LVzNeUMdՖ Y- "")յh1 RVȪ˪PT!nX+e5 DVv'hu#+hEDDw^QVaj> @4nJ*U Yэ.+jݑ]?MlIYnȊ\VVˋ|ϱM="d"eU*sX!+"pU#&e]dB!ѿVVovZ`2JYY[U5󵬾zDD*Jet5ô?lLV񈬈aAj*e]d:qU,'dEDDi**RV/BVJ"+]dNȊVd5 ѰﻶehN*udEDDs*jw{i9?'Ajnd+x<ϲy"Asm3UCLV%dEDD+Y=eUj;=ݐG")׭,_Ȋ\VVK)`:rlS׺VSzRVedEDDiU=fXIYM"odnݬ0s,)v"j"J&+`EDDߊ*jV`4y/3Y#""ZV)UtXRF-3""KEY*RV/BVJ"+ݴe* -ZZVqh]2^TEVOȊ.崒zNeUR[nO7-$ !fBVDD8eu<扬}ϵLV )?]w%j:=ݐG")׭,_Ȋ\VVK)`:rlS׺VSz𤋮JȊ 64ò]OjQ\QYIVovZ`2|ϱLm'&YrYRY%jji;^0O2`: LCvZM!d%`ɪܕ.+jie~8L"*(d$z|ϱM=ҨW_KY}ՏRVLVzA"y/3YNigX:HYm_7`2|ױLmTQKeUd(+U)?yRNWMh< YBVVȊޅEYEY8}ߵ-CugY=#+"".U,dUIdUR[nO7-)xFJp/dEDDG.>2扬}ϵMCjekY=geeX4-[Y#+"">m'd^% -c)+6ui5F*U YQޕ.+jieEV2pLhu"" TV)Fj1x8=2^j*z5UEȪX.R*VzGr*EѨ HߛIQWIX ʊfadyYYDVVB&Y}Yʪ"K(]2zYedX!v+G"M/-r()nZQEUSYIVB52j^e并eh, <\eB}kzՎx"+U7,(N[YY}@V!YYDVUgIcȢDVV +Bju$aٮwUeuzeZ!Z`YuTVU]yD9XfDe!zB7a hi;^IHdEhY!Z~>neeqcH"ϱQVAVBneHdz2,J7-(I󢪩NVDV]/+B,w*(}{ږ$s -B!VTVQV;EIQur\?4+ʺdBhMx ̳$ϱMCSdQYV+ -!iEedp ɪfXa/i^V7B-YVV*4Bu,SeűAVBߺj hi;IUMduiu^VBMVQV"K(]2tUDcw6DV3 +B7ͲZoFZ1,'~%i^TuȪdBhqͰ:+"Ȫ*,smTYxd^8BT̴ZڱOde^iVUB-[Y :?*4Bs,SYx"ZAV!؝VWY1,/HxA'Y^V5t&t]/ -!eNeud6uYdiX*snjCdEaY!YVzZYq(+nZQEU7TVϣzZMB-VTV]G`EeuطM* <׶ M%IVAV +Bwjjc9^U7,(Nv?2B!ne6ȊHdUWe%q{m"βZo!fZQY'Y1/HxA'Y^Vu?OBeY!ZT_ީ.ڦ.!/2Y]Xơo,4ϵ-CWIˊ_e`Y!0&+Bݎy&+AM7,(NƛVY]@+B;q"O(=6 M%+"+B!=1ZQYqDV+QRT0m8jny -B!].7Yơ,4u,SXn;(\,!"r9'J=MڤO 融ِKTYx"V=lB.EV]VGQU0m(ۮ'z{eueuB=gjՅj4}eqcȢɊˊ -B!:b6Y hi9Dqet0N.EVW*+ -!EaEeu&":McߵMUYئ$ -V<DzVkBObVZ aٮqeմi"V7JG!KTVEV "q軦فjKduQ%E v ,/q:ʹy>B=cjՅj4}UIcʒp\eYͰdU#zYdez%Y raxգaZQOۮ6Z9nTBp\VMV V VзMUYa๶e"KWXDzdB qY1Z T]i%ɊzA'iVu8VY@+B7jՑj軶>ں*tG:ih"=J)! VVB/uiŦ"BE"?ji;D>͋n~OV/ΜV*B.&LVi"K8 <׶L]SdqDXV! JfZ1YɊzA'iVu8VY@+Bhy0 }U8 -|ϱMCW"(RB8 +B_j"<ʊx~%,/a:<1Zn:V!n*&+am$ϵ-STyDXV!* (]e%ɪzA'iVu83VY +Bky,a2Ic* -+.; -!зZiȊPqaڎQۮqF3hBf:mbz>qۦ.,M0\2uMUV.B}OiE*+IV5ݴl 8Ip|iY!U+fYwm]yO4tUWX,B@hdE8dE vae%ɪzA'iVuh<*dB6:_a`dud"OIc*2Ydueu%#ˊJJVT0m(٧yQmLVG&+F+ΠB VY1Y]`5}eIk[e%.zXduY!vwVl.!T$YtӲ]/$͊n~z}{jխBˊ"+"Oqc*2N{ -!eh%Rqi%+naӼcȊ>@+B - YVoLV qڦ*,M0\2uM%.+Q0X=pXAV!ۋ@E.+IV5ݴl 8IBWFYV]dZ!VYfY1X3X]d5}U8 -|ϱMCWj'RJa=`BGbB㴒U7Lq i^TuøȊ}idBW[aua5i"K8 <׶L]SeJ)! VVBowi#BEJUM7-0N,/qZh Z!VYfY1X1Y]d5}U8 -|ױMCWj'RJa=`BgZeh%Rqi%+nAӼfY1Z:AV!~V VLV3qڦ*,M0\2uM%.+Q0X=pXAV!~Vl1!T$YtӲ]/deմ]?NV/ΠBciYV V}U8 -|ױMCWj'RJadBZeh%Rqi%+n:M$Y(,Af&yG6$*#wW&>q ,/qhLi -B! X]bbz?ǡ,4Bsl5e{DրB&h.i;Fqet=VBVWYM ?vеuUYږihrՆ"KdB Y1ZILinZadyQm׏VieZ!:3X1Y}~?0XmSEQ{mlﲢ2B!f$Y&eUT0m(NMVVgN/N+ -!Џ$`ua5j:nƾkȳ$ϵ-ST VD$+ -!Kb$VgN/No -!R X]: XC6Ugiئ.+JeB-ՊJ&eUT0-(NݝV.V"?VBVϫ"O(=׶ ]S65`Bh֜VЍe;FIeݴheh5M7YV!L VLVVwm]ya໎eYQJd`Bh,JU3Lq ,/a?pZOB-e,iad5jۦ*,2t %D'XAV!IȊJd40m(NƙV3NVpY] +B /3Þk$ϵ-Te{/+j X!Z8A+IiujiٮQEY7]huxdh5]iZ!Z*!'XڍC6Ugiئk* 3$+ -!Т Y1ZI3(UV[E v\?$˪n~:2Zh Z!zuVVjU6uYiږkrՆaB-՚ӊR5ݰl(IfZ1Y1ZfYᲺ@V!^38 VG~7][WE%qc*ۻ(%2 -B!xBV+.+P*daZadyQMh?3Z}2ZMgN/ -!} Y=$`5]Teqc[VJB! Z940m(NݍVߴB2 YV`uU5uUiږih"dE)VBHje%J7*zAuFQ8%վ{iJ|*cƆ﹉OyQMsZqYqZ Փ -!'6Q@ڝ`ݬ2ϒ8 -|ױMCJV!.LJJ r\?$˪n~sZ=VA#hB{jaժk,4BsmԵV* -!z-*itò8͊jnڃV!$~pXqY d~^]SWE&qxc\_d՗ +Bp cRVfzA'i^TuV\VV d4hBMau:v#6k̳4slRX+BKj&h(L}~IUvjzIZB՞U6uYiږIZHV)BV7B%eu#du0ލZ,5ݴl(I[%Z!䞧z`5uUY:iBVV B!t$fVIVR7Lq 4/i{N+.B!: -XVVuߵMUYG9eRJB]0)+A[N+Ujl(NW=#j@+B,VVm$ -ϵ-Ж )+FX+BmJ/V iٮQfEY5mZjG:ZB=KYj"Y}ʊJV!.lcRVfz~%iVUv vDB!~ -+!+"ϒ8 -|ױMC^arX Y@V!.H+Ea+4h~IUݴՃ,}fBdSY= Y QjY]Teqc[b՝`B -MiEUSFZ-D+vWX%RXMAiGaN٨`e)2Y+""e2RZYJ+եҪٲ] VW+ZZiMDDnX='UX^:V]ªlJ9X!+"":2Ye*Ѫh ¨VV"VuI_Њh+%nV~ێ,e*+"":6iUTZRZUkB+q ۝^0+VOyZ4zVDDa`5[J`5u;qk<,U&+`EDDQV"%*Jx~n?TZܦzVDD6aZjj`5XvVGF}ª{OB+"U?%>hVDD2X`u5 v(jU+U&#dEDDXVBҪU!r=?Zu{6Փj>_B+""vX-o`廎bd%`u ;hu*:;7֔VU'VЊ>lf )^ B+""nX`5XVq -XW=JV* lU ,iuchhK{j,Xyf= - - VȊ& -:밺TYXX+"":m%:OiU/i zB1""<ªh`u -YѡVJJEhEDDi)յj j |Uk -KX+""iuЪJduZBjhKjV΀}JhUTZie U'OhEDDY{j" bjԗ:XYj*:Ӫ04 Z{yVj R<}ZUSi nZ=B+""*J`UVX rӟ$""گ]:hX@iu (V`EDD_UVJՅUZЊ6Pae+""fhubhUTZV * ZVWЊa5Z*xem"" -yZߗKZBӴVDDߺUg VVEGUOi5h}V%|Us;eIDDvlV""6```ը0*+""mV!""V/UYaUVDD ڐՊVyZKZuV'""}V%%** -BVDDB'hVwmXݯ*VDD{GҪ,XѪ -}Yr7`u{uA6Z5?Ջի Za+"oVV -S_'jIawZ2kj{gi9] AOk^]s{+""Vտ ne 4fKau`u`!VVEZ3VDD]UV`EDDd[J5 Y -YfULZQVӕauUXUJʴVp4 -[mWW=V 7WVhEDu-հ[`EDDدѪhi5VDD[|`EDDiu@*Դ!C+"*_UV{jZAӪ -Za+" V Q ҰzV mKyZZV7m+GaVY[ѯ4H`W*XVDDiuV7yZЊhj,QVlϠ* -[mXyW9X -V^ Ej+""ڍYJ/EZE(Zmt a5ªhzUAZfh;ZZZI "jRU7 vg.GgцT4J""]+Ei5gh5i5VDDZUVc h XN|LӪ`i5ZaU ZYX]`%Fa -V. UEZVb+GVVCKUb9""Z{YWe`%J`iXVU7hҴӴzQVV)Z &V1zgae]5Ur0X ,YX)W9XQ:,Z۪lh%RrJl5VDD+*u0 -X{EXNOX5QjZͦЪSIU_*PRRiVVU%U)X.XհjYXX+"""Z[ [A+"sv* -J\5(U\ЪJlehu.JJJh% -0R2i~ 0V}sz R-UKJleVV ʹJ*Ұa]`X5:"""*UV Ҵ:ZL+[VVVЊh-UʺJ*X -V*+㪏VN-%VDDDq9Z+ZjVhl%EVV؊7v* |uuV'1hAEZ7MUЪVVb+0Ljn2R -qJ\VoZa)#""z -U[JlUI+ R2 -[\5sJ`/kXҰ:LXU^V K+UVb+E0E+kY}=y&)WEah`rՅջS`U)W+""ʖЪ%:*UOh%Zl5VDD*WMXVJ\Uc Uʸj?*`EDDWA+e+KتVV@hljlh5-""jVt zVUz{daVDDD+VF7VFj5VeҶZ<Ъh""]d]J`5X, -2:XVDDDhelJӪh+E+e` R2Ҷ`+"?ݪR=O\`%*鉆UVUVyZ5JlUJl剭VVVcCiB+lED;a5hX)WXVw UYXUj[f^WVDDD+^V5G*K+k+E+U0|lEDtTJJ*ҮU+qU -V ,Vo -UJlU7Vh%RJ'܆Kc1VVV -**h[EUSP[]V1r.SW VrX[+X[Z!c;Uj hVUNVJ+U0hъb.W)2WGIWEpJ\5 +uªVVa!*`JX1cK6VBrlZ*h`J8\iE[1SUVS:W8Vp*wUnGa+cFacݿ[e66V -VUAVB+U0bjTmcORRXq+qUUvK`f`b1U%j1`+UnVjcUCUJ+ڊ1ƞŮaj[elV@+qV1n*U}q`RXV` CU-]c=y+19Vl%Jm%R[N`(dt[W1V.RWQWGI2h0WVV*wVa%RX"cGVaj]mZ=h[u{j+Uj+Jlux[i+{lr`WV*JaV0YcªNX1cOX>JF`u·U[ VB+޾ 8&bSڊ1Y]wU8 -V* -j+&U V%WV1êUU`uރVUR[Q[Nl5 e+1{FӮ:WV*J`V0Ycª.J]UKc1z[*19VlZ@+]աتDQ<\V״cͰfU ] 8 cqվ -RW *w֚Ub1ƞyg -{ -VO՞h [].q{UjNK:W+qJ\Xu;U3 sU -*WV1*j5UMh%u·U[mn|U[[틭aAfm[]lO+ػftU4U]u`%Xmv Y+RXψ1{l۪.V:A+تۃ?}W[[NVluM[1e7Kp`5]u$WV*J\ WV0Y#W+c칪UMh%u·U[m>}V[)[.o"cUU}qՎ -WVnw֊VuU+ci*jb -[Y`.lUmKl':q{OiWWV@\[]]]XmmVv -s6RXժa'cVJ*hUKi!29Vmت[mT[}S[툭yfVc5U2VuՠrWvU\XU[p`j6CFzUc1h5U=UCle>lVjSlmu+؛k!jT=q/uWu6\Ճ0Y#HaU+jb1ƞ -ZRZmu·a[uam՗`9sVc4peV*s]M\XmmnUzW5RW Wacn*U=UClej6l[}[}[[V*Q[f[i+1UV]MX5-WUqwqgq\ՅZ*gQW)jJ"cDՂV5Uj+c[5al)$&3[Mz.+ثniV\uUU?U_UpUjUʚ@a%"c -[VJXU6[U*l=luxV3Ua+1滵fjU%W \U\1sUjދLuqU^tc[VjBVFlVmت[mV [,a?.flWcuu{jUwgUZ0Ή2XVJ"clVuJlVMت[mfVєN3[帺+bYu*u`U~iW}W}n*-\.aJX1caeZ r[YU6[U7V?lu0mVuPUYuYWUӮ WmU=j6UՆ.\FW1cqe[6VFlV_mZ?7ɶ"w\'KLuy@3qZ#[5"[ֶJqhE_?}|gRW=Xjjqq檪jG\UWiX+""MV[BrL+՞PVbV^+tED -`գ*UU]UgUÃJR \EDD&ٶHmU2mUluWVbʯ+xED!@UO*UW"WՕNv#Wm'ҰZVDDDoMVV۱*VVy['il+mWW/~\\+xEDobU2Ue*qգpUĪΕj=qUW -lU[ER7luV`ڱսQjI\uo#`v|6NB:\U5]U]Ak6R[l[e:j`Rla - -__)B>U)e:MWUbWm'UDDD&V)[US[ylU'l&rlW -_TVUUª{U|6N0vU *sՆ*`EDD6-cR\ z1pU!/~Avե^]WbWmZUDDDoVbVj)[hXjWJ**U1 -W+|"YDD0 -UbV%YԬWŬJ]Uծ֮UDDD%lU[([US[)\Eqqpjҕ+W a9ZD]gc>lR -P\Tf*a*vUW}ڪ*•تlq*vTWUW4Ra9 -BV7w$h0*fJUaVVSu\>aŶڲll*DWW2^9R -2ZDDLd'c*UUM¬WVŮUDDDQVy[([UVUPW ,_偕 -4ZDDONdro*3UUFZU!VjU{⪊rbbW+""_6S[)\4V qj$XWRRJe"'-"Gg&mP)QeҦQejTJϪUªU%\EDD-U)՞UWWZWcCW6R_)`Y2|F"Uj*UW U bV -X"\\>{ leJ*׸:*Uף,_)`Y2tܚJDeJL5SJPTJTPYufn̪_7UWFKXACSIN3ݧf4(2Whz|).LW YnVR\\:էڼ{ʫW%RaM55VYvلwcQUI57U\U_rU%UO:fջNYUPUwdUɪU -kV!.!R]uXWc`š+WV oӷ4W9TU?ŪjUCV]u`jK\9Ua]MyהW+VJY%RQjMUus]Ue=;WW1b] ͫ):V*XScʪJ CS)jU~ϪcUm*]D["Uu\źU*RaĚkY?] ĔSAu,cR5MUjXU)rU*+m)quG]*1kj\YMkV-<z.9ZXU%^n*]Vڪ)r\qUWs_j kj\Y&a!H=XT9Dm~LUU+Y`6EW/R\*WU_+VJYj ŗSǠjnUSUĪze..YLVa[W)j*UPX)ʙմsq{ TzrVaU -WW)b]Ju&UWs_Jkj\Y!ƾO闉<ƧTMRM5GMAU嬺\ͪg -Xq|Q]NuUջ -kJBfQ3 y+>:UHTmT)QUUΪY|q]ż:|0o漪*V*reթC*S)JQM5GzU*alRWW^4uXRbM++V#K+PvC詩*MEBUm*]:G\*ի9b`57VȬ6CTRR5M9UjJ^ knRY1r+TQ5Y/B\u5̫WU`MTV[~5.OTSQj*DZU*amJ}XSaʑ; Qb:RQŦjsU*,J]yX9rcjK j!nCRUT}TTJV*ྺ)JbƊ5-`Y(5:H]TSRUMΪU[Xӳ3VNYMhTV NJVZ\uu5̫XӳVYxծDXyT6bTVNjUW9 -v߈0 MQ-4WWUWm_ -j0a@ڢMu6UXU:Oz\*yըZ-`'yWTJTm*YR]*}VYh#∄m)I5n*Tp2wUW㾊Fzm;5ZfIƄZQU*[#M^-U .J ػ`\,UTMT*RWu^Ձ$betNQS']^}VX 8Z߆vJλU -x Əʠ -kci4tIU -xLjWZ,FgqN=#˰KkbaegIUX[" )kM%j^lZբU设XXw{pD=,~gH4-SzS_rAxNߩScv_ xNO=8mUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU@TUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU؃ FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUa_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU=8$7 X [ -endstream endobj 113 0 obj <> endobj 115 0 obj <> endobj 121 0 obj <> endobj 122 0 obj <> endobj 123 0 obj <> endobj 124 0 obj <> endobj 114 0 obj <> endobj 125 0 obj <> endobj 126 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -129.5558014 0 0 -129.5558014 181.8615265 172.3060913 cm -BX /Sh0 sh EX Q - -endstream endobj 127 0 obj <> endobj 128 0 obj <> endobj 129 0 obj <> endobj 130 0 obj <> endobj 131 0 obj <> endobj 132 0 obj <> endobj 43 0 obj <> endobj 110 0 obj <> endobj 112 0 obj <> endobj 133 0 obj <> endobj 134 0 obj <> endobj 111 0 obj <> endobj 135 0 obj <> endobj 136 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -0.4444444 -0.4444444 -0 170.9031067 196.9139557 cm -BX /Sh0 sh EX Q - -endstream endobj 137 0 obj <> endobj 138 0 obj <> endobj 139 0 obj <> endobj 140 0 obj <> endobj 107 0 obj <> endobj 109 0 obj <> endobj 141 0 obj <> endobj 142 0 obj <> endobj 143 0 obj <> endobj 144 0 obj <> endobj 108 0 obj <> endobj 145 0 obj <> endobj 146 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -192.0446777 -192.0446777 -0 181.4170837 277.4395447 cm -BX /Sh0 sh EX Q - -endstream endobj 147 0 obj <> endobj 148 0 obj <> endobj 149 0 obj <> endobj 150 0 obj <> endobj 151 0 obj <> endobj 105 0 obj <> endobj 98 0 obj <> endobj 152 0 obj <> endobj 153 0 obj <> endobj 106 0 obj <> endobj 154 0 obj <> endobj 155 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -192.6805115 -192.6805115 -0 181.4170532 277.7574463 cm -BX /Sh0 sh EX Q - -endstream endobj 156 0 obj <> endobj 157 0 obj <> endobj 158 0 obj <> endobj 159 0 obj <> endobj 102 0 obj <> endobj 104 0 obj <> endobj 160 0 obj <> endobj 103 0 obj <> endobj 161 0 obj <> endobj 162 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -226.1058197 -226.1058197 -0 181.4170532 294.4700928 cm -BX /Sh0 sh EX Q - -endstream endobj 163 0 obj <> endobj 164 0 obj <> endobj 165 0 obj <> endobj 99 0 obj <> endobj 101 0 obj <> endobj 166 0 obj <> endobj 167 0 obj <> endobj 168 0 obj <> endobj 100 0 obj <> endobj 169 0 obj <> endobj 170 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -226.2054596 -226.2054596 -0 181.4170532 294.519928 cm -BX /Sh0 sh EX Q - -endstream endobj 171 0 obj <> endobj 172 0 obj <> endobj 173 0 obj <> endobj 174 0 obj <> endobj 96 0 obj <> endobj 97 0 obj <> endobj 175 0 obj <> endobj 176 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -24.7455978 -24.7455978 -0 181.4173279 277.4232788 cm -BX /Sh0 sh EX Q - -endstream endobj 177 0 obj <> endobj 91 0 obj <> endobj 93 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -201.013 187.633 m -202.285 208.606 l -202.664 208.787 l -219.709 216.957 231.084 235.257 230.734 254.049 c -230.676 257.172 230.37 260.041 229.823 262.617 c -230.142 263.221 l -230.818 260.426 231.094 257.412 231.167 254.049 c -231.584 235.028 220.046 216.638 202.853 208.397 c -202.702 208.325 l -201.421 187.218 l -h -W n -q -0 g -/GS0 gs -0 -41.4666176 -41.4666176 -0 192.424408 239.1365662 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 94 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -160.132 117.862 m -161.043 117.571 l -181.401 97.088 l -202.254 118.031 l -200.972 136.846 l -210.806 146.728 l -211.421 146.728 l -201.42 136.676 l -202.702 117.862 l -181.401 96.471 l -h -W n -q -0 g -/GS0 gs -0 -30.4885464 -30.4885464 -0 190.1102142 125.2657852 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 95 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream -q -200.837 156.78 m -215.94 171.986 l -216.55 171.986 l -201.449 156.78 l -h -W n -q -0 g -/GS0 gs -0 -12.7799854 -12.7799854 -0 204.5773315 169.2155609 cm -BX /Sh0 sh EX Q -Q - -endstream endobj 183 0 obj <> endobj 180 0 obj <> endobj 185 0 obj <> endobj 186 0 obj <> endobj 184 0 obj <> endobj 187 0 obj <> endobj 188 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -12.7799854 -12.7799854 -0 204.5773315 169.2155609 cm -BX /Sh0 sh EX Q - -endstream endobj 189 0 obj <> endobj 190 0 obj <> endobj 191 0 obj <> endobj 192 0 obj <> endobj 181 0 obj <> endobj 182 0 obj <> endobj 193 0 obj <> endobj 194 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -30.4885464 -30.4885464 -0 190.1102142 125.2657852 cm -BX /Sh0 sh EX Q - -endstream endobj 195 0 obj <> endobj 178 0 obj <> endobj 179 0 obj <> endobj 196 0 obj <> endobj 197 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -41.4666176 -41.4666176 -0 192.424408 239.1365662 cm -BX /Sh0 sh EX Q - -endstream endobj 198 0 obj <> endobj 92 0 obj <> endobj 88 0 obj <> endobj 90 0 obj <> endobj 199 0 obj <> endobj 89 0 obj <> endobj 200 0 obj <> endobj 201 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -166.2333221 -166.2333221 -0 181.4170837 216.1957245 cm -BX /Sh0 sh EX Q - -endstream endobj 202 0 obj <> endobj 84 0 obj <> endobj 87 0 obj <>stream -H EAzv I$*ss_0RZ܅Op9gޟ>K[\V}Vpz~XV}g-FꓼNZn_`X[`~úIxK}DT yV_;E>Q Y~o ]}~swgwS_=~`;ǟ" l|[3ZG/S-U>XQw>UT쭾QLPG쪾NLS짾KLV줾H,Qgl>FS3juq@>@4D}z(G^ L}nE]"B}iI]#0Y}dO$0M}^U]&0C}YY]'0X}T_(0L}N8E]*0B}I8I]+pYuLuKzgWOPw <\G2Lp5uW UWU |> \[7&p}u{=ԝSwSV_^?wUT{7N_][[;wWWoTo.7|^\Sl\zz!p-{J:5c5Kk+ԋg՛WԻSۅWہջwԛw{) RazMz0V([P^^'Q/ 6UOf;w 3ԛN= -`azjzN6+A^ WBP*Ro -TGzV8+u%"`azgz0[1MI^%S T/& 3ԻMP`JazMpz0H=%8EU+^,^^-^.. /<^ ^0<^ 1< \AcxTzz)pLJ=wԛ/W T/>QO6|\Yo?(E+_s;wP/~Q~8Rw7wSoS[;w}]sGupovNځԗۨS~oPw>A]9"pyuՁWV | \V66pQugU_/S' |\L4Jp)u;u-oQ <\B1^pu3ꂁgWϫ^Q_U x]}?8P-p:Y= 0u+Q\wsԭcԷCԡׄ#ԙԑ#Չc7}wq3ԗmisԷMaׅ-Y Q3EG=w1+ԗm)kԷM!׆- +\ V}shwPP/:=Q"ux@>$N}\Ъo -TЫ ձ;/ԩ{okԝۨ+ԕ;/Չ{oՁSyq;/i{oaSYQ;/I{oAC9 uo@+WnL 7ȇ@HL*XGDkZCSG:2}+b:!#XHH 13$a%%1̒ 3Sb:lpXMK2%&a911̼fVLLS'CAM3&&&ƙSԹPQ̨IX訉a4u,0cb:Rbb11M -111Ș΄f\LLSG0bb: &ԁ 11̈΃maޏi8؉e}b: %FuHAF^*`GJb!,ؓ v8oz]ꮟ-""v|=YT? -qQ'ʼ"_<~,#+!sxB4gxHxg5>Q?`~.] msǻ}`z0Tm~n\}~`?m>>z6VR=}O޾mՇvUߦoKс N}p`sn>8z7S0էxSo6C|S.;|S&3|W#^ 'zo>0U?W[ zo>-x[a^ǻ -g:T}V]7T3FN}P+y7=>WJRkRH}JG[y!RmԇxL7QQ^B}DՋy 78̗Wz5_\}>|i8^VvpϩEgxR=/>|IW/ OpF`+bsUKpZ=/>yTWeԇF55}RKpzQ_@}" Փ\VpzWV_j.>e]X}m]W}m]V}1u]T}Q}]S}Q}]R}q]P}]O}]N}]L}]K} ]J} ]H} -]G} ]F}9]D}Y]C}Y]B}y]@}\}ՍfwUT`zyCuzB<@LQoШ7Rgt.:z ЪWx:7@zc%N zKJKԡ%7a]3՝7e&K҇?7} u% My_EJ* 0(U<)Uٝo`aY/Q)|Cz:NIW1iulG0Ȱ'iJʂ`eO˄}[:LHZ 4.!m4,!q}J]#.ƚP:JG^5qu;mJ߃&}YB+;sR' o|M -|@]"0!6 aiTH o| Ml:GEdxCobG9*";_3#f[ u/a?W | -s:EDhƧ0Uh | uoa!R4E?;$>yֿ34Ćؿ+$Ć>?#$| 3URGH rGݠ 7|k+] 8c, qw;_li]K?ko]r0_|u,_|3:?=?'kw \iuP -og*k_›AA+CP{0O>bOӥEY{;&K,=!zPH=IOPQO9V`{':|:Od1y9\1$?SaoEc>+}@-a Zn 5 a> XH$]~nN.@G [?DGZ}+K`Y}OY%Rs0ቾ',ݒWqtDStn:M9Lim{&7[ڪt=v,iU:˞G 7ſDi"aߠ4KX} -}}%D_֫Bᄾ@U-et0B{tf*Qo:QT:RؠOQD&RR4S>SxR$R),g~ݩUk Z.#?+Eku,B?.*=K5,C?N+=+kcpBj1Kѹb6OcJB\1}'ѹZ%furt>^:e=XEitNIYE\RNcѧ}]URцԠPa_A7딒5Uj1}W:%d iGZD5tNXAYQG}S:VPVt6]tt6Yt>[x&U&t>{z&U.t>~}QFt~}QFt>}M^t>t>w^3:bL@_qaԻA]1O]h3.Bglx)!萱9ۤetd썾2t6IwQ}8 2Fod>nݲK]S E׌mѧ[&.sƮ˭EnTg=cOsvI+蠱%lA@ G[.%Ϋmil>YiD;"許bMd렳^{ՠ6I*-[U$N :ll>Vk$;2Z貱 Tu=^ˡ&C6ISr-{Tn#N˵ :nl>S):n:֚輱H=R넪XUHZ.T#j0:q,>tiuXQёceu6HjJoERUSjutX}=-RꠒP;ǢBwnPTt:De:t:"&Ա (Х[$!vA'ىn!)ȴ:v,>VttH[sRslFJ܏w,>nt^)m.ˠO]AWpI"C;[yCCSqI -+D;%:{d;k5!:| ;k5#|$k5%:}KE':~`C$+U'~@c$+U): 賃$ Uw-zGKh[ю>9@yEo[=Ay6Fs[=^ScW=zOl)r X^#[ \Ө%74MOie6jIC MBECZ=\|SCDGϣ"ԟ0@q}BˣRKoOhz> %ȿ'4QB^)og Hj Dч z&f+=XrMq@CSy^J,5&$`vBoh.h,z8c +Oe7^b&c;=Xb9JC/&h6zx>-ѣ%/-^cOjbIꀦwXR|Qݏzx}i8VB|ݏz%td/bs|b Iw?.o5lP+>=aFZIw>> }j%'GO@ -(E#\Q+>S;FNV*|䫔GZR^= RR=$RiR=(ZiR,ZiR^4RI=;ݧJD>=T -'zqA =#zI#zI!zM!zM!zQEOj|$zT)=!zQ?;~gW~xГUCo^|(zV%OzY(Eo^|(zV)wzS?Sѻ*tУUcTJo8;~ŧwU2~{ءGC/>;N=zaD^|,zX%ۗzU;s*پtЫڡ^V=^=`B9;vr}xءgC>={=zi(Dj|0zZ%wwzV; -y>pлڡV]=dB:7v'|vḡwC>系 zqu,"Bj|4z\!GzX; -9>pڡW}c lB;3ngr|tᘡuC==Nea{Gϫc澳qC/{8z^<9˺Wɝ^ pB~O</n轇{rxuC=N^Ue{OGcγ1CO{:z_wzZ7ؽlӺWŝgc t:ypTuC==NEi{GFzZ7똽l> 9rA54 Еw,jC~<:pNٽMmсslmнSvggӅnۆxt{?;.t6t xmн.u?%nۆ|t:nхslqн.SugSۆ|tᜪk?=*t6t T]T㶡{?]8OϦ - ݻ8X 㶡{!t6ttc5[|tᘦc?=.t:t 4t?8V?8Ϧ ]9E~~6M躅G>Us躍OG>Us躍OG>Us躕G獩>Us躕G獩>Us躝F׍9BDW6nLϩM:o):qczNhy[ݟnsGS[`tژS??*t^tT?]6PF)55OEw=TEg=TDW=TDG=T<4P^IcZ%Fӄ+'>.r(1&t_qtИC4_|3Pb4M7zCi9M5cZ%Fӄ;x:fLˡh}_zf}?nzf}z -BLiS?z ALiSz ALiS3z OAwL)9F_sx:cJə~03c*4#c*4^ c*4 c*4c*4@1gjW_Wqwt3+*q&3"t`}b:dFSѻ7^LǙhЁ 0nq&3"t` -;tɌXDOt1g2)B֯۸/\LǙhЁ zE8M:Cn1g2)Bַy-Lf4E{tɌX?rKt3'Bnq&3"t` b:dFSXLǙhЁz$C8M:^An^1g2)BK +Lf4Ez {ktɌX/r+t3URnq&3"t`ʍЩb:dFS[TLǙhЁ:z+A8M:@6P1g2)B;)Lf4Ez =3tɌXrt3M`nq&3"t`-Бb:dFSwыQLǙhЁ6z27@'8M:Gof?PLǙhЁ>z3хb:dFS ѬG8M:W'Lf4E^vt35K,G物KYRZ,ىr(1&t_%P (1jWgDG=T:Cg%:JLE!z@Mbj(:ڈnS{FyuFtC5ΫC6ꪳ:Dh#IJD)zA IR/ :N ZN|yu^BtK5ΫST}"1էj]WC>Us:FOh:HLC1zBAbOZS}uu:tS5c֡T9t]'$T͡=u 1էj]W CIiUS:FOhGLB1zB=b:چSqu6tc5c􄶡{!t\' #X u 1jWC?VC:E/h:HLB)zA=rV3:E/hGL׵:nS􂶡{xmu:tZB!z@Abt/Nه.ŚBz< IrXS:@g!:Ik -]VوnSxO:z; IrYc谺Bto:.$Ǜ5lD7f*z9+QrYc谺NtƛyUYCw5nvx]u *9^9tW]Bf):KWkUWЫي՚CwjyYu=.A9tVZt :Gof-:LwkUo']&ǻ5Ϊwыً.DW՛,F p M`yUz/m<\z =8A:Ae5:NkUoDz]'5[YDG,G tMeT$y&M*z)}]z=@IޮItS~t (^BDAǻytR^ Љ^z=;%yFI3z#@GJzGD}`]T?rt$,~@&LIޯYtQ}]Н_=۠C%/Fwu*,:A>RQ>fAk6nN dQpMϱdI& 2pjCz8Oc%zJ)WLGeDoU* =>J%Aa0g;[+} kҫJU#eOaQzZ)~v),JV+%: )ㅾEjūْ2^KXVZ-)ㅾEjūْ2^KX^XbQsA;K } kҫK7j.hGzx/aMzZVI/SXVjSq@[C?V7+T\ЖJ‚dŒ㝊 ڒ2^[XXrWqB;;+ _О>%ȃ'ca5zb h mIokXZ<C[3;֢ת$О񞾇豊%GOhOzxb!zjiړ^1XZ|4WG"֡&O>-};K'ў񑾉E虪3cohSzH"LR婱G'aY]Ϲ1w-=_1'J0v׋3:WiBҶzqF_ǜ*R҈Cږ/NޤA]qI)}3қ4HK#.i[z8cFzitm%mKo}G/ >s>iHJ9}уtHym✾A:$g +=]\2Gd @&N3ӞrqAdFڒ..^CJ}֘R} sktHSjCz/d&zIicRGWDo">mP⊾-:=[\2=EQ6g+B&hX_1^jqE_<-Kډ^-.Er}ɸ\;ѫ%}";Hk#zOdz 5{CLB#žjd]>IzW, Y\'2 =C6'KDWf_7dqI -=Fہ^,.I}h;Ћ%}"S#4I\`qI M[Fg==X\'2AdnOL@O%gx{%}"4Io^qE_]RƗ5=W\2=AnMWxz.i}KWxz.i}KWpz6nKWpz6%Jpz6#5Iopz6#5Ioh~w @4ݿMPUS} '✾M?UVvRqNIßkx3z85=TaRqˆwS<0O*PYNNqJ7J!*3ވ)NtF8Di3}(! yz8% !BguP:~=>KoT=RArw7c6,]SbSFqLwJ͑k.OOmP:~DqHJϡr.N/iP:~BqD_J:.MaX~%@q@JzK黰tVI:\Ou}9}+Qkj*=O<[%jk3*,]WV誺&N<{%k+(,]W =N|o{%lưG&,]WV,M|O{lδ#},m˴]&t^i[7J2@7KBqW=`:\wzxG7KZ}Ww5hwzxCA-pzn)\,J@U} -[W8=@Dn "OOчڥrRyrzK߁h-LM}K$񛾂 %tzbzMo.ҋD7AJOK/9xiǵ$LA/s{lO@j7؝z~J析csz9E{OG7 -@7gؚz cLo? =p16AH~LB 找7=Ŷ;yoNO+,KlJ> =/ؓ^}zBGM7 ti!W}z-ѧ ttCWaKzY ]/]'gؑ|zCW`s+Ho> } -z gw@ttCWaCzY ].3G/> %}z'g@tt Dg`;zY-B=v3(;:sz'gPtt Ew{OBϠtEwtWPtGc:nS#0:#݃17z #]-]7z #])7z ] %~7zoO/&./{{zGJGqtyHߍޛ8s -;nޚtHg.}XuCATQPZk|Aзޘ?wCzg.^ѻw{[z}HO^F#zntoJ/Pz|Cލ-)= zIooջѽ%EoC =z77/q(=7Fv5ތ뿡ݛSzw>^=x7wo,rzntoDn azކ^齻ѽ ?Bos zsLHnG=_Jݎ^\WKӃs:Az&Mᅭ޺|9=?J W{s:az(NXG/ݎKy2zvtڞ.pC/t3V.޹|)= tE+=]V:zvt' #@'8Kn޸|=tizt# ӋE,'G_Dnp,`>p?zt+f!ŗ##\G AGMۏ.8Z dz~t1 -bϧAWJ0^]|:=p:eztc3̤GMp.a"=m?dz t[xA e3ܣ׋BwFۏ.>7 -&=_4zvtQw!fѻO CM1|l:}z0tIa%C̡WmGE.10]b -=j?$z8t!q3MЫơKW D@Oڏ.>5]bc :xz~t!)ӃO' DG/n1޳]|3]c8=h,8z~tE9C F@O1ޱ]|d0: zhtA!=УF{WGE1^5d=b? zhtY # +L GAo؎>1dl<zvt"iE 'GIoNr>`@:Tz܀t~I&ܤFMN27"^7]zt&ѽoȨIGCo׍}^/$e=qH:zft[x!(KCQn5sߡ IGYCr^=]L"ztpbUV;\wkFLβ:("=[/eztA,ZѱһJwF֊}-*e)=vT%zVtkjQ.kaЛc_G KYLs -YX:rzt dWaӋǥ˜kD@O.eNӃ5S L!4'ѩ{ztsZ'"m={d9z6t\6=4=V:9ztFsު =Vh:M9CoՄ|+4GǦ뜠jBg>CoCcuK53M]=Q:zt(ttDGЉ!Љ 'J@' -DH@'zO/T^(("-=Pq:{z tPtt7<}RБ9RБ㾣IAGFAWzMS'])$]5Nekztt$t8u/qЙ"MН^۔þBw -IGBwzEoS& )(% 9LQ: z4ttC -LIDzFRN&*2&K=3zLttLtg.]2ѭyRѱӫs>gIENJNEzLR^%]+<(]1J%cz\ttdt(uQѹ2ЍѽћC>GIFAWFzDoR$+ )=I ztt4ttt$IХ~ҋ>'GKDJH'A.$!,+!=Hvzt\ttz=2ͲѽRѾ{d}HIGKGIWJN#']-!,']+FZ:7zttt/Yn_1RѲݾc䤫}JwKJgKKLon"-.-.-3E>gztttO^)>Sk}HLKMLK/n^"3.7]/5/D_zttt?YN!r~;+wHN+@'LNMn!90=!>]胞!;ݯ]1=!:烞!=1?]zt! GLA\/z -tJtt_Q. JK1k!Ua9wGt]e -qAME!wotdݱ"ݴ]2] -]$]2 -\*]2ݡ -[0]2 -Z4]Rʐ)i)2ey:n5;%/@-gTeMĞ ]rye#:qIb{:P^tv˕uE -;ҡ-;!Z6S[.GlK.lǜm/\ؕSy Y7sm!c׶cN-dqmzsj!kcnI Ys׷kde]su[6[XsLoadYɲۿ D7)"74pz\з~W 9W]o;|>)\=o'\?sms:'qypNVG( -ɷ9ɶr9yD8S'p|ʵ u䜏N[<‘i+i8{~{:rϯx\uO^T\/kH=?Ur=yS^ߓX=92QxOd:mG3 {zOƪ6Wy 'zgABvA= :(WOאr:"⼃Ǜ{\ 9g=(c99zm#zO䍃r:*|by饃R—<uJ <(:2<`{n3ա1sVV=wPss?ϯF7V>oƯ7KV=%.U-x?ܹQ WXMZzx[!`%b1@"`^1D#`Z1H$` V1L%`R1P&`~N1T'`vJ1X(`nF1\)`fBq:T}uYE`s&Ț^%.V KI\0zA2`q:f,5&uЀ9[m3azq:n@^!nVhzԡ:Шs4!SG(CpzwHV:!WGS8L!pzoBC.0:a"u;T8WWԁUo ө# \^&TN/L%pz]UL -0:x0:h0:X0:H:(:::a)u\w+jա^WKc ^UxM,.z9XY^Yj:s`yugԋ=9Soۨ <^ -6R^l3z$Ni+B:}`KudT[ ^6WE= 9S9z 8Dt) uϭ -p:pz8Pz8YTUSɇ3`uDu9[8MyWWR7>ܨ;O8EuK]8Ctnn9.8n8nn7|.6|5|n5|nn4|. 3< 2< -n2>0>B-|ڧ]܁o??O~ȏ2ŏo>^WCMz|`|bڜ#{' -pG.@ז~-WCgB.#?#~<3缏m/+&1>--&%?³;vb_d2&?Gn? -~}Ƚh܋Ƽ7>`}IܒR_ v OٯK/ȿ#Y_?ޗwث*}ȼ#"]ծ]O~hos΀NcF~?5{/oϨY/ʼ3޻~CZvl?p3,tfTD(~P:5R#yۼ7 {>^w;oq+mםb}I>w 7<#o:_Gɿ7+Kڨ)d#=>[= !>?'ϤG,?G(oN#$~h׿H vDdL~jn_'!7{^7I{]Fs^7*nIyK>=r/ DaGm#:_B~I|~}{bϫ^7y5x<>y~?Ďw8%+K0k?BMTqk!y7O້~}{ӞWz^WxE9akïACWn\:?`2SMmL~ -G~0Kwwq^gyE^'_T}2뫅Ia@\|0;c|uwz^UxkU/s+E=K Wn_=Aşp3gtc;LZ/#ȯ&>6|{}=YOԳ 0/+GԷoKiIWe -z - gyEÿf<~7OBi'#?PN|?3}'yWؓJB/ -< ݪQߧ~ 1}_W3!+7O;ۿŸ Y/?O;P~??;?!΍@~f?K?87?_ |+mW {^'Yz^Wԏ~DiC|W+m_ caH͛:BM~?I~_'7~DM3IOȟ!牿Lm~;V;_y^}M{[O+Ƽ /74H@\>z8џ?M]6~W{yF^Y*:V:ȟ}3g&_"]s{ C)g/eӺ_m_i˞7zޘwRsUgB$!wȅr !HJI !$FBaFtiu -hAI-! V߸og9I;#K~x|֗hÎFSx9rpP?wѿ_w\!mm"’?I{%?3qgD~D>_O/ -6~y!y㸗7{^WyA^}'?{ws)ӟ[<_@\=v/[Tq۶liMuQgժKHzIUUyS?vlRJ>_2Qՙ˳_FgQ[i}-y?0 u/8mOS+bPyQ^7h'yNɾ2Y3~o@.];_'G hGl'6_uYGI+ ?/ϊDe 4>?8{4=b/3*:/ȫji/&N/%37]>_'9a M51W@e,bV_/ςd w_pXX6M>ϑOs/] -!.{{z jޏH3=^7Uz8/̋;K>N{e٫sY_C^w̋;D{r |v#' :?e}%~~ϣ?k|W  -I??;1CMM2g|y W -x ?.~B=}{i{aY+p^W +bWkn~/snNSK&?~Tg#䯯S2/ȂA̟Je~6D~ Xώg8?SQ1~l޴WzAoCy1xg̯c7x_1䭝=rpp9oS!c4~8FR'ɟ=ÿ( ?d# ~Xt$2'82.q䧋5~Bw}%Խre/؋Nz^ ¾Eȗ -9r0?G>?zό_(s36na?7N⒒DIlKl]ߋV½=Wz^Ey&mwRg_x.vp ӟ_(?rߓ6ї?~NQ3?6-6̟#/L$gx;2w|x)3gSۓRWzރ^W'~G9C W;WIjghǏiGџ)O~I~ -8< 3|#8'ɑ/7o[[⧃ޟ%/1`/փzH/ jb?8+y#`'@'#_Wx'_PBM͐ߒ}ɟ~q fK2?W2/D~E>7|{!K{߼?w=^gzD}$8ț@'b?<+y#`@ N+sI}1M -EE!¦rJ~A&U)k7#oBoߑ!w>{OK޻O@/̛N_~)9f]<2}]w RNm իK"//#$~wowWgkoimԸ75WW1 /,\&c~/+c9A>D:"DF"v=}C?? GE(=/>sGG؋ޠ7#?>g9pgn(;wf͛./ٟIF??k~xоݝ{:$>ڲPO8/#3aa%?ә@_J_g~}=Gua$1@HcE;qBSJ]޻ PҪU[E/N@(ȀM0 1iS^)s\]|g GFE'&%_XT\ZV7oB >ރGu/r'أ S9D'x?G33@o9??*/\`ٯE?[P]UQ^VZ\T}%䤄(  _?k~GG/o)_Ag*j>$2dFi#As=ZL~HhXDdTLl\BbRJj%eՆI$>O| ) ?z{xqϵex"S_IW9g| 'isI?WD?o7k Օ%Ņ(23ޕ@] () ~}u^`f& .ɏOHLNIݕgoF־$KJ** 5 @|#?_eY߆ރ'uOgi^P/9/O=ۯ0Z ??*I_d~"M@CU%M9efݝ ï#BM_ -:u+Y۳j>!@+ _#MOgf?#P[Wjl$Q#9 W'}gyO'mgcE9£Xo-L~>n?`Sroݺym~ЏBmZCuIܜ2IEAwP[̃߆:u/ṡcmR.g>&' {O$?`^~AQ1c[;_)B_~轐,{b=B/ -a g`)DBcA/,ܹ _G@nSWG{'IqQA~2!i)"~z ;' O_-Ru_癿J4ḋ3w{kuzH~0$? -D߷?_XTRZ^Q #iB'_ -[8޽w>==cOsEg2ƿop 'GGُɫ'sǀ@nSgG$eEYiqQa~ n{{i<N~oa1ױuNg1 Ia>"_43<۶trvqs$@1"y%eU5$;:{zFF? >p#u"h3 -(eLNq `@G? U?_! ?48c$_W[S]UQ^ZBߗ?x{y]0wogݷseRԩ|l@a7l2k$;v:5>Z@`p&?Ʀf]޾ѱQ3 -!7n¿ |G0EeEE"J"K'2~,1ooEP9 @?L֖i}4n w෧/Z -}u>-|H`>|G[xA;9{h:`7ut;?.&> >|{T{=^)gNH'2B% -_cL3H@Çf&itwu[j Օe2)Iq1ёaA~zKd -'$_oF=f毁ڮ]G߰qoH}C""cRRWTU745;L=}0'g>rP3J!H?x -1={ʽ=^^ޚX֬@ O_"A,g'G?48mh3q)Q_[߸aqZ[[3WS?rͷA٭G8߂SGFb瘑?04<:6>953;wQ @ ,>?"c=^Оa/RoƼ?3g%O?q'3J!$_&>uıGh :M 5Y{!I ?_<(Uթ{{__w fV - OHJNMgAZ}C#c3Pw#/K⿋lj={νJe-PIO/?ȿ  ?HS4&'Fz:B@w&'&FGEwtognZ[[_m]wǑpHNۧ,ۢIEjャM{meyHNۤm>vPǖE@ۤ9^^(R?8< 8D##kbOy?q>8Oϴ}mâV{ 6䟟62<8KH?Ÿ pwuqr ~>~~F1 ?a>Fwrvu ONMQRo&6:>19=| M(>|%ĿOC("'^=γζ .?gc,ϐK~(?Hm"gg&'FG{{)2Rb##Bxo ~!Zas ->?~賛#q q2|SHl!R3?jPHXxdtL\BbrjZFV2/X$ph?5=;7LD|L|h98ϨC"{)3焝eߒ -?C5C =D#"?_+&X_[Y^ZF߉.U*33Rb#BS_ ~ECCΟ}}~9k|cS3Bj)e~@`PphxDTLl|bRJZFf27HU.B\ZYEF>.>h_ ޳jO^wtqhOk8~ѿϔO~ ?A򯭮,-.BǘWKTE9ٙi)I1QA0=\Aۑ/o,O?cƻϏߩEͿH1d#f"Dji%'3f~̬"UIx!!'D?)|mSgrj^ߝx(tU?F?\Ssc}ue?35IL]R\T ߇RXdEZ;Ν@O4 BBb)RX98 3?$4<2*&.!195-#+GWPT\.ohjiEȟ/-on] |X䣍gK||4ikhϴ^/uu3'G_'.?M~奅y*%Ņyʜ2]VXɤ HAkwS03̇̿b$065-2faQ R22yŪҲ: Z!nݾ#O_ ^'ֹc]k紟~M۽s΍[k775VWUŅ4Qah;(2KHhfj,0m} ϝ˼3320L$6HeVrk;{Gg7wOo,#A'%gfJ5HJ -$=@>U|"qL> ->ܳ[|ߏ#Od#O~6O~ݽ;o`PWS]Y.UdeOFR*1LMFW.cX?sT߿761|5|gW7/o_TY?9ƎwGgF_(ɿOM~/߽}&+}ݝm-͍u5U‚gm|#P ͷ[;:yxzMf~.|Uo`p(N!X?"S|jg{u[=^Oş~.5%=!ё榆J"9twsqv[YJf}#{Y}~ډGkHl.ʬֶvNή^> AGO2?fd~M]}csk{GWO_4$yuAH)Kg{=?Ot_,G?|  ?sSc#C=]m k*%0X' Za%JB3Ssj00m+FhR&W;8{z 3? -M-mݽC#cӳs cΟ88'QۭVlLbWAOOtO D]UeL䓑"B|TkWK>GOG?J<`vC6|Y^NVfzZJRb|lLTdĥCϞ0#@xV8;9Z[Zb6?A($I1SP'lǘ_P[X;:=}`o3!A懞y%:6>!)%5=3 PKDY%#%B|V^z@L?B{D_TeԔ+#.=?xoztْŴC)Ҥ1.}&E.[njniecgd<󃘙2򕨘􌬜\M~A>T _|ڋg?8Gϲ_8   - Yiɉ q /1<3z{wuqv07]l)p_|٧:ܟov]}i}=}hbϧ73spt^]?e~EQ1)iٹyrED]VQ ɿ& 7⏢G$vࣼiLJ9解GQ:}8dk_ /S@yٙi)IQ c~> k}}n+l,͠hBgkov_I{]3_ct/X%KYnfaimk_f|`~ !x_'/PRWsf}n$#s\|v*.N-?a_ ᯪ,/+-)*Tr2SS@G_aCxzp%u?㾾4iO͟*y M,m+k13Od,@槦gd¢Ҳ*H~m]} 2"1$(082erRUTRZVQyZƦ6~X?#~"+ ~ʐKG?7X_q_^VZRR*2XJ֭_o7/w&PcCF&&h?69nn/̏2__*,.UWV]765C9?z42:3޿1ԏ~g$c,!C{ f-\]Z\*ȗMC:j}Ksq!&͟J?2nN.koܴ;?x̏3?_,,*Q̯Qohjnik&`/ -7{Ɗg&GhoC;-M 5 +`T$'wnv˦;9XvLiҤ6_4`滮3|`~4;K̯546wtvo# gG[xM(Jʯ:476i$_? +ww6z&8?>hmq=Hص{w:r$n~D$0dWa_Wȿ ȿsA~E|fJOJ{^~q򣓟'c>olokmnj_}Ld<#.];w!Gݞݻtjܗr_*11!30 f݆[:z>"I)i0e ̯_u$?OG3+[={_P~>{ Am05k ?O?۶nxy }> }Ⱦ!&O!|# s0?g=ve~2#_ߘ{wH~-[]m-/-)RɂKzԉcG߰n(ܧ72rr_r_b_=z0M0gsŘ30(4칰 ""b`gfWW33f7||"|1a~^RI|IBcs' &,W*@ggqBAܟs? sĄ}}RK{1LC~?7qq) ۴%?:-߷1BϦ CHBB!`076mYdI| -mga0>0mL t]iWޕdK yfzFO"2wH? ]?WPT\Z^2_ og ,;ſ^|Qa Cحsy9(߼iO)~ -}HpAr4>h*`w1_̏OLNa77IW!߲u;p0d~3E8̷@淢wI~/A&wD/?lԳs ]'?)qmV//+)*!3طg׎۶v?>.&:/BCQ/b4 6 i}ŗ釰Y9ťe*:G ۉ?;.&&wimx_Qw_;fZW)*J ssN1Wr@>q |>6_(HQl濇_0v޻?Of+(*.-T(UjF淠?| 2d~wſ*oBG! -WsU~g2~2-Tkk* uı#_3܏@N#}Zsa~H,#"`~a ߈߶2gʪjF5@曚Dwf5A'AU~&=5?{ :F,/-)g߱i#rC.?'"##}!vOr?Q|cz#!;B/Kx0??g濆_N0?B0BQUh:fD2 >I/qC|hs= ?(iGbZꌵzF]](sϜr_s'v?"T&B'M6ce/b_g7~ť`R FSb@u.(߻g}Zzߗd\,f17F]D:Oߏߊ@wu;ܟ1mJZjJRb|lLTd\&iuˏ&[| !BX* O'36 wW]o6[mֶvh2#o!=9ӕ܄o1'? (Z6X_gj*^"_ydp? prߑ| "|2"OϞc -/WpWP̯ViZc]CcSjoi?ǖH_  OßWOy1>ߏg ~pf4756kuZJY/:EjpO<أsgϜOb"a2X -;r> _/&B!BD&KHLNgei$?F_RWkZc}l[;Pmp!o x`{/w#[}q& -N -~p_bn25k~5rp1LWEyrjIɉ q1ёT"'|{1 -?1T(HeȨx0?5fs//^b%azGhW(`o456{k[Y0+o2" YPQ|W8wgti޽\s;!Z6}^[+ʜa~5o/[d1 SScc"2X$GOv}~#kL9B?B<>*KdaQ1I)`̛`!6Zx +_zL`No#oim8{2'df[Lrkz>ByF []ʕˤlj3uRp?c/\Uq|ե8 -@!{I! ! : cE: -H !=4wvw}<{sM;qo3;s)oݼoLYXOf~)Sc#熇Μ: ? p򒢂4hrq p_U+2X$_bOpmi>=L>0x|H,ɕjNok_a^p`~|RJZfv.^8柆揎MLNM7ϚAunOC|&ϋE[?~r7B75{ɯuC?|sUM e%Yiɉ?ukmmB.5pߘe`?>G SC - y|H,)Tj  - KLN/,)ojnm?ǠCi`>533Xb߄|VQӴg;? SGො ?-oޜ)FBT/.HMN=\]vzZI"!g>>ܖ -?8|+_ KdrZٯqtGD%$gUT7.Ss#cSKTg1oCY2|'YZ(WfGSTNd%N8!i࿎?e4COa9UŅy9YI qQa!km:Z)I"r`0g _me\lloظi`phDT!!)5=3'k{o_?0yh+@=v1"nWp̿ 3<ȧbI|JSGg8O!m?,bio?F3i3?{& K1ǎA%>i? S3&??߷c{Wt 7;3-%1烹 wh*L* <,C/r3_BC_&W5:}'gW7wOo䴌ʚ--[;͜S q]ϒ/.-I>Kf)N> {(tM Q>՟J?)/,_H3bBorנ/oڲ(?7+#-91>6:2,$(^Q+2X(_e\s[z[|[YBD*W4Z[`> }h`HXDTl\BrjFVN~aIYeu]CSK[Ƕ;/Aߠ52 jS2g>FSGg~ٵ9!FIi3^y^i-wg?&>0;wtohkij(+)HMN >pFQ)R }k, Զ毶"TP6z;M=|C#b I9yeյMm]{oei`e||3@??~D~)~(eL7'zgp`ΞmmMUŅy9I @?/3pNӪ -T,sE/7|?:GB_,ɕ*NoB_@Phxd!>)%-3;g݃{c>F̿*a,f>p22OzD6>>=z*W]A-ЏR @Oo*όCzߢ}e?tC~=wtw67Teg$#C=\]AuR.ܖ̄c }k_B_Pз_>0?($,":6>19-#;qKή]g^ܷe2|[HV7bB">>=QzT㍘˸.l祐 '''>D࿍?/>wG/د6;k.oKb;vz wV{kKcRQU^ZT.MIDG }n<';oXv.;.- зc՝- -%&KeJ?8lcB#!D/I~|.kwD|6{=^4W27>C#з,,{Jyy6#ﰮs S53c}7ρϨ_sQྺMPWS]YVR#ϐ&'DE/O7gG;;o۲y'0,VXs1wPv`lJ3skmc#C#cbR2r -*kjTm>hSg~˘?}F_|R|F|=֞`Oγr?g> 'O?c5z%&7ւݨS}6USCmMUEYqa^vVzZJR|ltdX8@${`o jKs3&5~u迿x(-|]ֶNOGCOcKڤ'9hmiUTfgKS%aA~o+zk,̹_BB ߶}'}GgwO/`phD$.1Y*˔W*-]=C#cl/#o5&6%j3 }ĎZ3⣾c lY>=fw>C^Br?O׸~&ƍ~7oߺyec#C=]͍JEeyIQ~|7߸c+A>0 UfV(7mBޑEDKRҳ -*kTma`GO<}Li%$j"9j󏯾c{=^=Ih7]72 ~|h?ʏ?뷘oMvu'Ǐ= Wwwjk*J ҥ)舰 ?=m \s[HB'n;g7O/(P%KL2s J˫M-m=_`\~srvOMQk|ck!#"3Sz<#uWG[KS}(?W)&'DE>^n.Nv6 ~Q[_f*ss{S3.N @cA _ o2OntoM޸ܿp̩ǎF{{:U u5eyYi)@_3s6}}nofB_' -54wwpyxšQ1qRYfvnAQiEUMmC[?82wA[w!4⅚ϙ7 90O;ƇC{=žR'S!gN;izI|_|@S~B@~~m_0ˀcl?r{?A?EOh?`MP*/-*ȕgʤ q1Q!Їst/ZD}}n8% }>070) A;:~A!aѱ I yN~QIyBYѥ>z20ٯ種3Lf1(Ǝ_8Ę:bP{ZIZ!!*"dl ys-ۄIŠ{Wo|/?6gqWCc9IգTz<3 JSkQ {_@/zgS~|bGUGxtǃP_p?O~KBP'(eg$Dz:ZY=}ٵr|5_a}Ön/gsJkMi۶CB䩳-m]=}C"c2s $e*Ym=u =l8aHb>#}{h='=u!x'qdMl=B7}@/v~B?'Re -9 m/|&FVVV)-+)HKN tsq4?ԉcG߻{vŹ4Kr8S ǩχ>> }}o -Bwf k;g7oЈ؄Ԍ’Rieum}cs 5> `I4;4@3_| -z/gS xTWOVGW+F49|_fw #L'NxJ4?-͍5Օ%9YI QfNz}׎!$7m4%羁}0_Bq#*{4߇۶=p(PhxTL|RJzfN^aEq̿rud6e/O'Ч5G =pi#Ly&< WVkq|] WD'S)4oѣOïRtRAFj+~OŎ6eKSC]MUE /'3-%1>&*<$S'=t`۷s's oJZ#M 7W=< }Kk;Gg7O䴌܂"IYEI ` Vb,b%5Y諄>?gS='S0)LXʄ|c3orE r|g''}VVV%-fg%'EGy{9;Y[\8w$wk&k׬rȈa -*_ɇ~FwC߁G<}7 (4"*6!)5=+7TZ)o+Z;.]GON!#n/3|"WG_-||F>xS{3Qs WV3|+/y)YVg{ƾ?-?^ 6*"4(L-?P֯3Yccs%O羁}^4BC }> \o,O9?0$<2&>1%=3'EI'׎7? _#9чvYf"=psS9Tx4V'㖫ci|ާW@?Oy!6Cޜ} Le_+ >>8cp`]mʖ憺rIqA^vfZJb\LdXHGHo o,Uj̐iO'ϣv 7. -?93 k[gWoఈ踄䴌܂"IYEIlۏ]c~"~K-HGA>p641*Oo"z:Og#9l\Y& ~%[6 %7c >}vg NP`ՒH/}Ml>Ϯ^{/v)M *i 7;#59!6:"48II]c,OsWo`߰8E7^kt _0-m!|BãbRӳr KJFcbkƅ|==J [<}=|N|xzJ@U}5$7oyjCV6NQ IYE2iIl6zG'QƽϘF/S1>`gX-۔ -ysc_qh=ROGx&{,.M?ipUQBIn}GBZp@[XRA]a $!d_B6]v:6CrIز^ =?$W>/=3yg}Qs -^׀]:R~$N._pσ ->(ا=׷CF_#hWiF <~}yٻ3RSb#Bm٪~,rm7\.*}依ƾtI[ BЧoO߱~gGBǷujKk֮߸ekHXxTL|brjzfv}!a>((d&Яo8owd [\"ȠTtS~I?'sF;TΒ}Lcyq"Q}>֌p?r=ٙ黒wDoٺyW $"Bz:R'omZBC۫opvqsݗC__߰)(8tGdtΤ]iY9c'>2R#0]d9F/I}C_{ךDM|x {e=QO x;Yf% -5[7Uq - ,폈d?#3 {b#&bibFl1#-%)!.:bG趠Md:GR߷wO侏с 徽=/s_o6iS}7BG>P5zIZ迏_@o OLI؝ᣪRhQiJoli~ ܳT_m ѯDiRY|/'5y6^N/|J5?GoЫ _O'RV_c*o[Eۺ͚5MƲ %ŴIfU:/?7{wzjrb|lTxX-5%Dϖ?sӫ}7Wg'Gboggc6?<OK)BgGB{}?fSYbj;"c(3 /E \(3VT" a>g"ĸ%Ϳm淑 -ƆkBG_HqOMIf,>I{z!bK0i>EF|@CK!?ß3 gjtu/_V[@[cm G㣍?_\tVl6q̴]I;b"wlڴHiS'Oǹ?x~}wW'cgN)s ܷͣ2􁾽>Bۥ/ 6O 2R/GЏMu?9sN+L02b=~Ӎ-W[K}⢾VԠg}bB_3>.&OK='Bz</}'?,l5~ޠW5+@'@3~?$GEƳY9yj:j|Z]=-b}g5eo+侩XZr\Y_nyٻ3RSb"B!KUϓ?eF "s[_oOw7gry~ܷoGo G;]=||dϜ;Q3O:iX$JJ)/B͇Zf귑j -}*}!@0?6: -Ƈ >' {a^1KѼY jb1z׀q迌~=,>ܯǧ[iI16Z >N=ٙ黒UoFr>M{r/kdp@Kvvm}+L}e~#̿1_O;ZꃉkW/Cs8AA>ė/&큽gBxhHyA'?NsgO]O#a??˿j5ÿiKжv?!7 دJZߑߵؿ߼ɹ/ܿ|TUQ▟=r_~qD_eϚ[qGЯOݐn.G:f?6mc~;}sv@D`prvu={?pАnj8e~s.VgN KJ+La>BCͿ߬oV7L}SeyYIqQaD~2˦ ֮Y' E3D^0/迧K3GΛ;~A:t_~Xqs68Lt/(\Yye7[Yk}}~-7DQ_h(/57r#Wr?s?^wsߠܟ:e1~Ç4?r{W_/wWg'r_ܷ{Y=ImN?uyp|bT01m]oEQ[VihMhVc\"ײ˲. Uqy 5igę}3E}C#BRbck7B/08,":.B>G/^^Y]S[ vg eH?nQd}> -G tBdP >e=YOs39d$6$ !ô -`A). ;qXU5 RZ>/\O}}=tSWe҆:pW !w3-??=-9!.:",8徝D,! cA3}2?F"@Jb?C?($<*&>1B?k z! ?qEAu MrEKkJ/Ûυ3jP]J֖ƺe?;rߺ/X9}aϨgssIJio{<ɶ-П_&ϯudjzEuM]cSsK+]?}bx!:ԔƆ[7!]/& VageB'Dzy9c6+ 3Sٟ`@ױ:ZB_CCBXlbjniemkO>B/ 84":6!95B?;7B-BqI)Me[B̧{wOP}J\)2i7ʮ\Kpߞߒ6_ K=bIO39h(H6k?) -h@#~_]nFto?'r_܍ʛ2^{|ٷG?+W:;TJELXrt߼s?7{~jRBltDhpӧ Z[Y CǾny?B__BHlbfa)4yʴ]=|C"cS221WPB("A} C]F?~>K>J1[[M 5UJ5w;úPrA|?#gԓ{x!;;mʖfY&K/Y]M`Ԥب _/7g9S&CH,L"cd}?L Ӡohd,215c;8{ED%$C/\B H0LWVS+!;:nc}}dkQKGWȥ 7+o]tܙS }{@m[6_K@/Ȝ#=hs39ys_6x !A?OJf-FW۸6<.\RvfmTb#|͎^qH}} wuv[ -rz߲r?gi qa~ޞ.N3O}ط075jaGctG+oc 7Jc&f@)f̲wtv - OL d)wڍ`pЯkhl7ԝwE3>  ",pf_SU~_~cGЇ[f3!=pOFywǃf)['Q~?=cr?v[}>skU5,\?K: -ᄊ׸z/w~/߅;˗.ɂOI  puv5cڔɓl%f&b`?gc XǾn O}}} -o!"f" s]<}B#bRc\퇡>/oʚʶvuGg7>o>/dhb|CjmK1=}àcMʼe$h$=!/NҸqih`!~ @ (h~.s?z/KbK-*o<~מrc=srs2BÍS[2/7r?=5)!6*<4(qӁ_NXZE2O7V:u}>}=} ʚG/08,2:.19-#3B`{b ->пBu>ڀA` >zx~&/8F$QQGҫ{ EPHPAP)4 FF{SjVƙ59(O'a{?w~oT])+)LOI??b;T>D>GDzO}~SfVYryC]-/$sz}_oMN6VF4TB<܈ff!+9~>U\<|B"k֮SPRQܨghlfame|KB?,<2~l?1)eQ`?~[Z*Ude&%@oߊwqrDc|=Y'S3}WGř(Z8ib4LߠNƒ_r?7;3#~dxXh_o`kmaflQSMEIAr_ZR\TDHŋqV0gW}}.n^>Aa1 )-}CsK;G^>p拊K@_8=q跣CȮП?"0PltxՋ&Կt0ٴqp}twmD;Z[YH{d=-=<-<\6B_K.7B_@HXT\BjzyE5 ںFVNp}'@p(ɩ/_͌`86FNᡗݝm-$/)L?W&gdF#Dz"~];z{or2752ޠ(^Vf(f_|R/8scC/&/[苈KJSPRQܨghlfamr>CL٬ %8oM./ 3?7}G, ok~WGkܿs~nVFjҩa{-]]&F|- >xeȬg5!0V@#Q#1}GgWwO - >q*)5#+~ՍwqlrrMWU\.+Pu6L)CK+|k Sc=퍚j*J -}iIqQa!~^n`>9}|G>}.n>~A!1 @:9eUuM-}C3K{G7/m~;w;v< -ss  -6?A$#Y z1~yp[+K!ϥ%9~p֣зBA|U=[Og0OOI.G9~Dojqcut}SsKk[S~G%$/-~ǻ~7QQNy}G 1k _sbQ~s)8;zwmhgcifb n`_LDHk8sc/+Wqq  -IH]/A[֞;v :sT"~fv^aqI努B>mg13M?'Fݝm- O~}x7OI -?r0RWɹ#r}Jƹ /;3ɘA{w{[+s#}] ʊ}) 1aA>^nU4K>g 0+}^~!aQqFm=vή=>_tJ嵛Яǡ߁B>2?'<3c#C/{;ښ?}ޝO8zh^=>\x ScC}d>T>{= vw蓌ؿ\yνGOj:{_Cٻ('p͐(k yJY酢,بCVF 5E2$E1<\VXG!9s9/`gAC苈KJYNNAIU]#D6ȱȘS32s K.]Zu;w?_<=~}EE?suT@2HAYA$I9gA s9H2(QtFUuvD}SW!"Cj>&  -_96-ܿrP[]QZ\ r?JlTxhp3xsr჊{H mssr`v }*>2s9g> +;7/nq=2]WFw] ̜’J~ױП 0߼B##  3w'o ;Zj*J -r2Rb#Ax8ZhiW:r>||a>aO<p +?=@H?ʏKJIߏ?8 -:F6.0#cR2r -J*jZ:Ƚc7'f_3ߘ}ܟD?24r~a^NfZrB\tDXHP6Q"\luk1WC d9KЧu;'V?-nCG+R:w?08~JzVnAQiE -}chˡψ/>(f޾u}t8?;=)>:H}7';+sc]- 5 - $ġ|(>rYOux\MaP$.|`CH~?t_Ld_ ]c3+;'£ҳ˫;{Fߺ}wfn/?}!oDiJ_O&4VUf$D^docif|^Yxg$8 ?yyXY62g,l}n$+<|섊O@PHXD4 涎NC#c0')OW3{sw#WImMuUeEyqQa`XTWUV:/&/Ob=yzY C [w~{q5 M,P_KL+*kj#u_ߙw ^}Fi$y%?r0/;#5 -@O7g[+sCSWU9~E9Ypۅx8p3g!R_ۼEhȎbK~3ںFv.^~.^_TR^USF" eB`>R/_<{ßߛ3q`_0'#%!&"43UcAqCDd>$ǴǥSFl!|N\@#~v؉O?3gu `{F$dV6Gݜ3={}K3+rmjwIm-5U%E9i0/_ - -rwq052T?}ı#ۻVdf>nNMl 0}f)C询BOA>pA٩9{NQ`phxT앤Ԍ܂Ҋچή<'VwQ7S7Ɔ{- 5%!~05?|vP|={K_Obh_| )s m;b70$<:>9=;8}Sy?/r֦ܬtQ=\m,͌pJY;wlڲ -qL")_M@/ Utnq)i9paשih[:8yED%$eU56u{)?BzvB̧Wϑ 3S7ƆzYiqQa>0UUTF2ǸǭW:Y_T)C101eOžO@pXT\bZV~qyu}s;w`hRWN%/-rXWSYVR r?!.:",$P_GKC|P@b.ȾbcZ*3_FM\<|8bR{eªSU502stq xrdL|bJzVN~QiyUm}SK;o-S(|)`w'ǯt5Ue&F^vs4 RRamYGC1/Boŋ?f??xs^Ҳb_ľЈ؄̼ΞQ?hnܟ Ձ2(?'+=%1>&rHPٯ(49F{ADކAzC:Cw*]z )bMvHN}wf`7{y}G ^.wKΟ=suY(E>3=gΝxʵ}t\Bb4 M-m\=}Aaq)YEĪGcO@!?!g=$!+ˊr3S xJ}q!~ܨ]̇C)ܯ[0ef_o@9@ƾLNH-*DO>}_"wYGÃ}=]͍u5UҢܬĸhBh n@aA2E߸qF0g -п Ч=n^!Ptr*X'/ 8,2&>)5#;DxB%Je v vlTlLnoi,-H -vw27PQEM]mXt!|gȇ~ ?sW32sr -O-,mhi&GƐWV?6^.̿db> /;#5)>:",8`cinb(' /x oi::d9 `ٿ> S`/\Nn> 9y%U `HxTlBrZfN~aIye̓}d'A?79oBQiqnfzjblկ(-IO rs45Ū)KKs}d> >[xð8nAϜE_܁(԰n^~aQq95P>Pn]w?ܟ}N}r_wgæՕ%y9iI1!>^VF:Xu%yIq7|:qc}L0B,I>m98y1R -ʪZf]=}AĔ܂RbUM]csk{Wi`ph?ό~ {WXR`cab(+EI}v6?FMo6Оf:~?uAUT10o]PRQSG[\>Pm=)쯾yMgߣ t67TK Q }3c]- U%yY)qQ v6[7A@"/>s6 =_Сp#hп/(,*!-ghbnic KL+(.oji'ON=Frc?:<ԯ&g%Fx[[kk(Hb@߽:Q;v%>o=65~'rMjcD%eT4-\<}B#bҲKHG*(>"z;Zk*ʊ rS#‚|=\m,M 5Քd%Dy@c%I@>s>:t п}.(9~!a1Ii9Eu,@ -/,)~pɩA-,.Z~vg{;[ꪉY1 2w}Nn^!qIy%U P(!*6!9-3'XUSC?̋+oV~O?_^Cܝ,͌tjJrR‚\Gwq_Sȧ[q՞f۟H~\bWPX\JNI kdfebS;o?_0bROW{ksc]M%(?'3-9!6`keajH rowz"ofK&l@S_f|q)Y}k;'Wo_|PXDt\bJzVnAqYEUm}SK[Gwo?yhٹmBBSR -Mvw45Ū*Jax8ﲱRS3}T?'F?"<~.\zoXr`ĤdUfvN8`BtBj&Pj{rݦܟ}> stdLhki"f$EB.v͌ t4TeE0|ܜ4N>ŗCFO/gecĈJH*(ij[;z~}FEyf$kv +RAAE * #U@z  ҤKw 3''j}g&FfMr2b‚HcFT>C|.3~>[`:=(!#76hfsrB_J(Is@_OW{kSCmuEYqa䄸А@OW[vV('> '#(_!쯙쯨+ -8@_#{(}Kmw/߀a1)i9E%5umݽ# qx$iBB 3Bwtuꛚik(JK@Rf+sLy3_ ȮG^!Ҳ -*z&fX;GW/?~ -QϬ2M$q GG{:ښj*Js2R#zvvƀ#jʊraUc;+le= oFCG_R#7#[_1= +%~`8exɛ7m>J|yB~Q Qm]{G:T9sEϕ}܇#?;CISDݝm-M5U%O -r!1z8`-]`r#:j*i&o ,>7  -WRQ?vή~!Q -K+kZۻzFF8D1]|.bp>۾؇'@ugV+Os'or>yzjǽ@lomj(-.{a҃ب;~N7o3TWQG_0e!aq ɩY9E%e5um]#'I4Jc }Cs~yڿt#Y_@WSH߳ 1=30_u^/_TL -#x_qy>ܧQ)ӤI"7>ltdx0?'+=59!.:<4$ Mϝ1:qL_*`_FR ~m[6󭲿:\_;,%dU568~WYXY;v [PTR^US?[LKh>D[?-s/j/'9]y껾 @}n7~,9Å~}}ʀ!T7?xIՀǙ{AS3s -xssp?CISDζ쌴ĸ舰A>n,78|HKCUIAVF -/Ɂyoۼ{/D.X{'w/;G&_/ێ6XkW.?k|8`_[CUYANFJ>ؘ`e61_J%OPXSTV=ri ̮[޴uprWX\VQ]?8<2llGB -CC=%~a;'I=IP}>2K۶ f>gό}4uA}3sT?8 [XRY }>>A$/uY܇#?KRIDA NM)4>jk4/e`]_, ?| ԯ,-Lf&F# w .M77kk3O}um=C#S3 T?*>)-+QQԧ;kmp9b334 -4E$Lhkn,+.JOMN - puvy)Ct _v[ i__Q{gquz(t؅"Hw-9̀{Z=}gaQ|éOTJm_ѹO-@wҨOR_JFNAU omNH-*@QI}8^_/'{cGsĢQ񱑡ƺ~b\tDHKKS#=-uE'}W/gaߞ.6o>?QKBY!/"vYT5 ͬl\=}B#b!ťUM-mݽ}$ -Ч?3߫ _k}0޾0(MuUeEy 1A.@}}-U9)tR;*BfV?u/ ՗ST72{$fAZ;iՇrR}2<A!'Fhki(-*JOx:ZikBK/_d?w>,Ojt~`8F<}&o}.~AJ=|$LIUSG7 8,2&>)5#;$!tCJR3AU8)cQc=m$Rcƒ<]l̍d$oN8 -g&X]`ģO ;(ꃵ 9~ݒ| TQMoW\^]30<@a)X!>_MV>e I 91> -loij(+.HM ts276PUz&`_D  -| {?oc7C/c'\B"/^E_AYMS  k;gw/߀؄̜’ʚq -Ceϰkh#]mYi^6ϵՔ>{ڥ<$Y2Ueć>H>,D9ywy+s:!Ob(@_OW{ksC]ueYIa`?9!6*,8䅾2`ۀEX#w6niwC(@;<~ -}ndja//*)oli ?@a8@Dc'qiЧAECq> -1s4[h$Q҂@wV*Ϟ<ƕ |\@}ٽk۶jK46@t0=;w`>zYv.>!(hZt O),mhGbH]G/_>d2I, P[]QZ\OMx:Xi(ʓٿzYwهa-_I!뱓D7$$KCU5 ͭl<}"IUV54vtG(>,3١OEes~[+@4~hmf$Dz8[TUsE1!>n>t4/[`k#D0? /$vMI)9U-f.A )P֎ >a|߾UU[)1CaG!Fz[+ˊ 31a>nNVfƆzOdKJ܀ qs?|m0?Bs -]LIUCG7 8<*6!9-3' ?8<26Da8D50O;}{ا}àw6Ue&Ƅy28]?}i,59~Gksc]MeyIa~޳ɀ@?OW'{K3c}/G?q >}=w<Ҳo)QQ506?(,2_TZ^U[ DcgHWުP#>51:4T_]^\`cnzGU)qQ|L t4Tg3 CT4 LNpp?+"&!uUM=c W/'m]@ vEu|}g;oǷL>) zr|ldh~R|LDh}+3cM5;}3|ߕo3X>Z&V^"ced<Q\ZQ]Ҏ?Bcff@/'}d4U#3!C6 J4=1:<\_SQ"7IJblD} }-5eW$ rq8tRoX}$ w蟰(i2yp Ee5m}K[G7oؤ%5 ]ch(p"p_3kA8y_C#~57;3EONloi?HKyᾕuYi}}N}Z{]B^\F_o@px@?\~YEu]Csk{WOQyE}b#巆qqԟBO u4Ve&E;Zh߽}Μ>v0[ʃdfΫwBd)9Lw8IB/^v붊O@hdԌ煥 -}@I7}mj-as<> -?r2 Qa^.&Z싊 -rsr챿ޖgá/п$%-{C6@_[70$<*.~~aIYeM]csk2( @ eWk歅`qv>frlewGkcmUYgG>p63PQdgead%%'Wۭ>!ꓐԧc`dae/*kl92>7oũyGMB>>4hmn,+.~$QblTxH`_<{η9)#//s F_C[/0$":.1qz<~yeM}cK[GWo@B}0h}x ­wp; g}=?;A{:[ˋs2ӒÃ|=]l̍4U(\*%!&rljcL Tfda. SV>-Qc'8xE$PPV3qp -IHN)(.kjGagA5wL;w}HNOaГ~~[sc}Mey `Yf:`?.:<$PO[b5)}!>'m} -}>+9rG+Oq"qܧpIMŻj&Nn!I)Y/J*jۺzF'PXXw+)78?bG$:oU _!쏍{;ZkK -#B|<\l,M5T?'$>=aj*=oK32Csп72wr -ed<WT64^Q0|%(ףU񛃕_ZV_z_?؇nnjoi,-NOM qw25QW}KNEQa>NvVF:8bc6> >94t ,<|¢2rT4t ͬ=|BfdV6w B{.\HD'4 csGri ff~vf -FM k*JDx:Xpg3 tc1gJ?lՌ[k39 0( -dAr9 (H49N4(Q݇{o,Pyjnu9?I\B -A_E]K_`Hxt~fN^a @X -"4:@ }6`qJ ;:wlô;>V}O@)Ã}ݝMJBq~vzjR|Lx} EE :oϮ[h9K`~q3X]{8sO@e wU4Z:zGG}3͟c[cq7GrOQ$~owg{ksC0/'3=-8~CK3Z*} }~>`\qTԵuY9{FD%$=/*!TT1H}>z }|p߲ ~^.pvz -4P[U^R*-9!62񑵙m9I"gN<~ޱa~Jom޲mz񓧅_rMFw@HdlBW9%U ]=C$(鷨Y=wo{rcI Q|!~.v6ftU R:? ?ɂ<@_C[/(4" D?#+7PY] osKBѓcz?> 0g&ǁT@oW{Kc]uEian˔ĸ@wg -7e]8+xoy[Sk <{A쪔-{:6aQO-,kli"#ONͬ1gMce[hz>B!]mJBi`?'A~.6Vf*J -8%lQez}[{'WH&E5M-a262:s϶KC|Ӝяϸ옠_ -U=1:<n>S)a]REo@/.LMNx:AM tPeE?/vEghbam' 8,*C?O"Sitp?."賚,j>rr 'XY\_uNO3{[kK -r^HI - qwha~Oub -:o휱-WrLl1>s%R汳o`XԓĔյ-]C$鷈џC3~c8[?O}ȓciT2 د*/+.~ُ ?671+C%DQyLb<po#C=vv GOKuC$ -u>r{0yrȽAἁ|BGnwmSfjrOhm(-J,>:<@WSK_9sXfo;v2b.mUHm;w#ia2rjZ=rp OJM+*kj&Sc'f0?0_Dc6e7s9wP! uĪB&QnNY[@5U!W*E&@_ ojYJZzf@PQMg?̉,RV~g1|ckD''ތiζzb%8?;#-ilD򝛲H @bKoDTeBS3g>|Bg/]od; $26!9-#;PElhn$Qh7E^ WM}w7pObDzs,ķ]<|β?B7+J -r2RAC|ܜ!:jʊq@}}gw/hE%Z~[GWO@Ln{mG%;s\7QtG~aw6Շ#6\ٯ(4eʘTrHXeĸ'f40EEP " " -t; -H2󝯿n2:xT/ 7‚|^UyqANfjb\t WlϜ2;rpﮝ۾ߴ5+`6XN)=Ϥ4@SѲ(li#OYٝsrv[PR^%2E#t -0]Яi>-kaVwpokƆzT,"`?#59/@;Aobo o9v57'1~F/`}NFng'%s>B?_ǽp}pmW%"AmuEIa^Vzr|LdX݀[^n.?kmyF?׮ZƾuXV}qR9IFI˟Ϟ|7^HXdL|rzv^aiEumH*GC'J@곩Zs'&Z\~A?b K% Ey'!}oľ=adOgy'DOIW -R5C_|Xho|BQ~ -ǸVם}>f,UksSCL"K -r3Ӓ#Bthgmqd_Bb:}]}-UFcBO ].TH}6nۍv79z㥫nn}[PR^%zHV|W8A}% kc>=A|c s jj _[i)A}ľI3ľ1e7 -̀BߔЏz -ť}ƫhT|o= >sMވr\>߆?IW#']LÂZD¼OBricFϙ9CuG렭R{:&}>L6l~]{63?cpˍ~w=|iBJzv^QiEumH*WmUubhlY{At1$Y5r>e_,-!0BAmMUEiqa^_oO7g\ G@_oonim@A? Rҳr }dHG-37ͽAbd2T~R)Or0>GXgmʆz_SYV(8霝qӟkžON?r!Iv31=aamtvP̜P,oP6e-ߚ|L!3`q#&a9e~% eŅ9Ө0ľ;aooaM}Fz#j/9_ fO >NBϬnfX|"X,R?ȏgGGb'?<5ٿهZaB07+-)>&2_/k|ClYl ZPg3w{aS LSҝ7M RkKSi ]o޹WXR^$2 -}@s l|;O¹'uzSB(чR/RKx``鼃h74qw:o`?E"@ǯr@ݸ -փ -}|ZsCcC u'bavr~#}~GG#GmijTȥҢ쌔O?q9[S(w_pɗϟ;`uIM3v(?%͘Sul_?naew~TlbJFN~~mR]74,k~7Ml>BcۃI%~;i!z}O<r`ϫRbskl?=z@ÅKWYGFDzWb%}b,-~+K]|$@khu}m{owzlb! 73-).:"b'w_f l֧ӧM2y.wza[{?ANi' f}?-\|y6 [S_(fF}6O}nۚA/CW(b!:@N{(>=~e_"BWfe #w|'cF}^7|GԌ52u*!yx<Cwg|cU"4}HVZľfAofjå(̜? :i.3d_cQZD]-NTiΜ3oXMLOĩ_TZQ]['bR_?7Ī?_G}6Ybg\!sGH9gяypL,Lj}_AU^g'm:֚X8( D\"₂(5AE 5FF; \6bD]9y{/\Ŕ|Û9C؏ܽckDxXHp[ /ժ Y*Џ3"%bIװfYUwYjB.+*?トg*at2 rc?/;#%iABϝ5yh#C}=UXwaU@S~.чab!%=}OMXZێs삩>$_TZ^YAܯrH}8R+V2#&>{R;UIJ_Rrٿx?)'kwE]DC'{ _WުQ w(Y]E0 }5e#{V.#v"O^>hoojPTˊ r3am?a[lƚ2#cVT}vU{|,1y %(?qT7wO/kù?+n$$eU5u m peԇ}f 0< !AfPG$5c[nG#Eٿűʲ̩~K@ߟA, }9A%ug/:}¦=Q -}||XҒb<D~9ulǾ(#Bʽu%y2w!4r)Ց!޸/5_%afida&8L9{B_B֓ߏMS6y&QP_ussXAL"L `>. %=}ZF4pEȇ[~Q~nV=~PphF1W^KD JdFv.5G+1l0F1ɪ - "GaHhQqTǾ6\hxp~c?b?^E]5mVz#ɪ T;U/%шz~j:q/%˂V ؾ+2*I_p3-R R_r^t8 dIA9?P~}q5Aa~~=a_γw*aS1ǐm ]?r@?g/!ɩـ~)~=CԆ>ș -ؓ1ܹ~rbY62&c1sо=;>ߴ>d ͞93v6cL }+ξߓQ?Y742maec7~Ϧ{^typ[wLԿU[x~;\L/G[w]$nA50=@BDzH?$c4ۙ-Ae%E~"Eư ksF2&=A?M>*3QLF BZ03/$d'''+(-lk1hYؿ~$Oܵ}K5A˖,Z0w WƑ]53e@VUW r_侺)X?70263Qr2m \n#@{5U3I;LRc($b|0'Bܯh> -{,,c/3RKi 7?X ׎p[qcQ L8r0r[6 ]8othv6VMaUF?>}6{|R1o?~┩={/^|UHئϿس!ESZQ߇R_x5AT@Z4HQQHOa$'! I -E>0췱V!y<}d~Q[7dзsbqy%C_`eg -NQ/i+ ?OINɞT݇ܧp)/>A|;|˝"׮ZdтfLsq`g3b2BI rgKI~@FIΒD'i3g]hɲkօGl_ԏOJUN}E|i$N[IgTf ~b}}> -dkTO#*dRO";Uo+]+I9uRXO;r+ 0> -س -9c>YII pObRM-;؇]Ăº*}"|rؿroN=u~>^s<\';#f>**|:I( zG  ]\a|VnؼuƨM{Y{ ΫgX'BBE29!OpFQ 265j?10K,=g)o2`6EU}.Ob/WFc5k8-0OT~U\Fi'&Srriw*!Z1(".bCU']g:ka!+}tw:e8[kKs3c#Gw#K4g?א)g2)!ߥ}%;ె~W=qQyY EF?'Eg/)pO}]TkmiBښ -43upWF./(]oJIioTcۺ3KstڔXEcھy_^8πUuƪUus_>;%/7'ߓBhBb^>KZ~Ӗ -KJ yE3m^(bo{g_N5o*$+gC#lN 6!9ngT}BO"~VRd؉~)d/})Zϩ^?ϧ3̐⧧iFѦY\}d -Kx[L)9c%=lkBLT؉D[dBXY6uqWeo}*3_4Jfǻ,Bo__}q]{=…u1^Kqʫ"T@B߈ӨqyF(kJF ,o6@n؇4akɫ_ɳ?Kp)=xwxy{H.CJD+C?0Kxin? / -ƶeEh~Akԩ))줤~p+٧EcXR -?[ڕ}Xׂ߻O_ȡ?П4e,wKA?sHeJg*>UQcpJA_ ~¾,!Bj8YzGuj*L$fcwZ˔?md -I}~k?}m/Q;o 6Пg~-l~D#†Š]ˊ[21?Y'11)I k` ~iY9YVߛҡۊ;,/CRVW.-Ц$*O;o-֯Y`Lӻ*w_2zD?cOl`IJr k ctMO -է1 -ykgF:H -fFp*,+Aͭp#QK;)e2c_c:K]8dwc;â:qDMTך웠/T -)PU0Ua b, `~v V, JIhu>UM91*rtv%hʳUe&c>]J -;q]7oBZ1؟8ᯌO!PIss_ - ?]d3߫ҀAC`֬ߴe} W$$s2L/]uԷ>L&% %K}R $ Qc@ØLӘ'~ W]r r_` ?7'KT vf Nj#Nﴇ>RG m}F(4f+ѷgVa[-,S./1_JcchB}5~]NX3`n߹g?wku5Ey]ZjR22{vnU9g̩EІ 2h`~B/_ |BB~2t~O||ָq]{=W2 y0H5u0Gxke8§6RXTU -תAp c`$ʘXDU2}feeO\#J~E3*aڤd?7Gƾ}*}wɾw gCE]8 藵tT_'PQчЇajЯ/)2IW,!ďVDEFFЉRqIɩ4`?h**-؇´ܢ >16UǪo3aQ7]``[+OdehS`W#BV50כ؟!ч'}}9VNW3yЇ;c0]ɀ^޾v9p8RRV_TzE#|%m+q^K wro`ՕHh&2#MCGbQgFtrl9,\JtOO⟹}`$7c] Bdb}G:-A6|#GѢM{oǏ{)$U+*D$JY19UIaȈАаOφ%؇N}1e?|$a*JLl=jB"1X[6]{Οe0.+}rt ~~&\᯺ gFBSB%~k7,}ppH"F)CcIWb~Q?vԷ>{%>N%~Yi GguՕfIM]  -7@\\h5Z:%XЬ @v* wAt(25sι{ 8@JB??I$8c"_~V`tG~7ˇ%48Iχ~0g"f o͜>u -Mbu1GG<:&L딩ӡ!s/CS*Ĵà^JE\iI0aɉZh:*(:g -K+/bٯobƌ[Ӆô10Օgs2S50 -?y/>m}Uk%f 晚ϙm8KWu}_(?_=g2$hfa~-۶.LB$9STZ^YS{nakTT}!!bڿ@(/-.Hf-;"XDH}y݇ ^>c酔~EN?%/ױ_ޟ RǏ?g _џ@7Xl9GíC_.,G BO.(TBE(egi$?*2B'<\DC(K -0h>l"b JJ>}%D#!T_{a?>& QٟїW_C ?яO` #NhkKXkT|a!!tBBBx YiRVoI%dTjJ\:_V\ >66+`V/a-Mp>//;$>̟ 5C761;"oA@W ,dda>`gWS,E#^-Rs}A!g^K݆۸}y٧}I&B!!XEH"~5whԯ>-A?٧,9e?VG  &M: 74o{HяφЧxrBJSчNulqA~nVf:3?:*R - T RQ\_~vCS3|:R_ K*/->{:6>:"TqhoreK,͡}___w_Y'EXW;EO2," 0z QSP_| -J"D`~RG ~dbrJT@Kʄه -.~c32kˎuEw;$ׯq[ [Z`0627m?CC 3 Kg+֬A%8zL&/~9TRn^ -EBEyl$6^a!A?: p_FS3Xٿt~|sK+|{QeJ`7>L3*clQ~NfZ6Nyؑ0w9ìZ[-0uP~Q~agE xG?8?rӞJ,mb6},^D}~ljjH2F cQ@._ -*gfIk7nݾɄA'k_ }x҈0>di#oj2(<)f$M }+F}0B5_; B6iZHD>sTo\e -~!$mW*9T^ͺzN_R1{(P%e LW.g -3S5jUH`'[?`ú5WX[-]|!sfK#o'`39 sx7_djÚu>h+l -Pi2)K (eP?#]UVl:_VR}9E@?DEc" +Cu+hX/^z~&NX}{d}g>؏F}2.Mbgjy3M#y?N@7%'JПGӖmqP }wя.?q6&G˵5*!0[r/Oϓ'OO/M鱗_vV}cW Q@e_p1:٬b4yI(UH>Ubfնіoj򶱑>~?'$>5_4m]_;w1J>*u&953;Dx!J }\C~񪯯\}\ ߼g&kcՑXz˽ ^^F`(mRJ*/}y-'G>(CTNk0kDȾwsuqoF!I7O'1GC}; -'GcdD>o>o賿\cf D,ExL27Чd&n8Tݤ跷^nj))qW#+5=#>K>1>PGWߐk-,m7#^8KJgfO>D^03Ix?O>P~M`g9tcЏa.äPI)Ȏx?d&_xٲJܮ6`:5?P槱Ύ=Sڱe_ƲA!ob%e1e?pU̲-ԧ迫@O5)} I)i,e֗?~f(;wt!M G  CD"!(D* FK;Wp Xs;UtSi -v>~F~/_w#>!|`>Uk֭r-ή~RhDT>^J˙KW'0F'jn7q[vAR,Oߟ`FC!%P#;#ebȊ;xJgWwٰA>x8z؇#e?'된9z9;~ɆePOgaahߞ`-GϢklǟvPVE X#]@'xBy) %lVp¤H,~aWR2c'eg΁60UN쳱cCtU{A)U pu`os)obldkjPg'33|*>S| M4_͇7wF;{m.n~=@d0ji=fSgHP>&`DoߺAo(+)*;oo"3`MC9"\I#' JΝohΰ_C\{>ha}1;/dONJQJ_ne}-i -ߟ`砯3/^lu []=|8ad#P$;VYSpҪ;~f}.s7߬`]Ғ`BE|Ǜogqa{쿁3F܏?M(l_uВ*7A S0$wC4TVA:q,k -k(4_$n`@H؏O@p3s -J*[oQSlLOHA <=W;.e?q'T, r||{6zk|8ã *Dwo~C/+˘JNRM>&7(_(bY9e%k/%M>,ރM`Ә+`wE#owWv6Vr|C %1KF]Y -= XW]Y^zXVweba>W]ƇO'&y^._o/#jG~l`5|]=|3y;lsqu񅒰h&A.\W{g}`FQOTz|{/\8Z > lt`ryxEbwO?|$;$Y }MgKZk;8mw<c ~kBHS8+m-MkҒ"-7;0Ȇ#B*>^^?Ϙ?) 2@7Yɪ!&t_>DID?oN[I[YZ[#w ~_AQgMD5(UP. , -}((܂ B`Z'b-5ͺ7n;:I|Bqڊ@+W7nv拾ęƆ6905Tχ_ %1R=gY˙N&;|>3Y9*jM s7اaH*oZ#_BWS~{t۷mH/TSY̱??a֘?SCDij37nFmn;@?@K."׾lUwX>y<M .ܙK'<48wu;9:DD"G';-?ZG'RtR+M-Mnvsĩ?I8 @@g?!x05|w89 (6oBKY#RyHz\7_*>#3_{r2_ߴȘB_`7 xwDq~P߾C,C>w@hƺ%y9iTȇ{с#%;%PHX ؞4Ҳ* pa,6 _Or%nbdl`S&O?;Xã?i3fhO/\^onno2dWqw&E{w8ۀ*: -f"jqRC}Z:åⲵ9:9ؚ'Sҳ˔^rSnσl~=6. bRi(6vyzR-wl܇]?ɿPiGr#,uVro31aɧw77$ (T-9U}cX~HBߨ@CPY\E [풞NO;[gMFQP}Rh+k𾵴_Bgw__[Ϧ/s`dDhU,Z[kV,PS^4?cQW"6o51Įo_@?ЏM:ЯjG># m-Z] B -̴,Y -}.V9@|5-W˃6$e/,)?[lq 4>~q!=>^}5\Zիt1 ~H?k=/]Z|s >ǔO$ =OXŲX{e45\*Pt0k%şfO{NY?rјXܣsq/76.ubwGv}ܿ{k89&{I\DBV }- UEgΘ6ubm. SC%_h*c Ig@=/σ,{?&ߕڂ&pq.7ys -}?ܥ -<-Gݰ7D9W76ddU7U})F}oo݂׃_Ck1UU~X~UTZDJ|5k ͷ lE,񽕁 SaO0ROFZ\Tz>lVzJbcz;mHp@y<>N!F]B$}N>ζ &D=d۪ا[89cap  pu-L}U+}u%R?RGc1291ks}hֲV_YN.^!xb@_?^U/W̲YnNVӧd w ͷyV;hYXXZB{,N]B?}P+j@vPV }ThDa!:al ֭kjȿlG&ϑJO:ͷV̅~H؞}LHr1<#T{o(^d%:q=vB0MK*q -TܨyEep`ڤýf49+˱(]B|<\}c#ϖ2?7c`)'M$qwFk|OOAg! -QQ\Jddlj;xx{}02%=l\TB}߼x8Anvb675(+-2} PGLi[X6?hwľCG%pW5^km]ak }0|$3rS8)<,%n.N}pp#? -_[ WG?Z -$>eF~vԺIЗKجsKgcoYzg7_,+)L=HA{㦋h񀚛27߁Ӛ+P}b9V>ݼ ˾abóT@'Ɵoh'YoıddL)ΥXB  9a{`'XgC?}4O<~OC󵡮&"8|ɉ1bN̮0W^3UqfF}_'t4t4*K˾* ( ** - - - -c2fʸMYNV*V,SɏnQgtNyI<=[R1HalTJ5{JZb6(42&>)5}[.>񖶎T싷IۏnÌ}}hGFi;z -Lbj /[d??̣M)zݑ_AB7JY}f)ksԯ,-B4޺eبp¦ УJӖq?*&~u y-ɿg;'}|*Gh.7{ƴ"#G :d[o@? H!oߵWerĄfz,4S_ij,Yb"}prTbmUX?6j=I[25M,XeuCG6v]d>gzE`J -h}*Jfٟ;kTq 4 Z_G}=EgcSgїYlVz G; Kʪף7?GƝo߼C\Wg{k ō5}FX*%Ȱ` -.΂_ -KLf'->WWeﭩk8??'>qTsц5Օe|QMU)hVfRoR/^ďK8+|OVkuF 0}!a GO8km,鿼^=ϣEկس{gԤ舐@D}+5({Lx0=ƃ~Phex}'Œqؿ<E1ݜbpG.20a`V\ _cF>lD߆^_ >rG¤g͝e+M2WD<&oB*.h;~ ßc}~ _3:Oji:J0[ɯ$ֈ -}Ev*]fR *=f -#@L~AN=^sG?ƾAhU}TZ\3RRB\tTxhzrc p$FF+WX-eг/_!/H,d"v.ˋ_xYX\ZNBp=r -_ꇾn\wu?R_[]@f$Q,C_`"9= *?P:C±+>cUϣ<:O_!uホG/>] jU lRa!ϙ5}$Q"|[G?A#L5G@BT;v'âb7oQP\Vojik?ѿpBwWqH=z` -WnS"2kxH` Q||Ĕ= V*ak`HD4+#;UߗOc҅sg p]- -mʥnJL4p~b(]J&o~066cʐV|[; ̏MHܔЊֺÍNw_G_-(P*F2Q -MX*:V"^>8,2:'RZp!aYnǑt(W`KgCH},-.ȧG}/NjxE ϙ9}ʤ _}1Onj1|Xױ[w}PB}?sμ0ZXZ휀㺀@I@o%p/G:suC37]ٙH#ÂXZ?NfR*# ITwrq[R3vU?H귿4ϟ:vƆzIU{0sQ-)ɉ@ZoOw7WFm"-M|lU3U|W7wOﵾ@n~|brʖlaWuA!s }ڡw0kgot _EQ_ú mO(9O!WRIvsq#8u.Kb_h7u5`,=5)^0';?oiS&~GI_7 13ha#Ff3qʴ9sKk;'C#̜Ҋ ~Gs"?f{CzıF}eִ䍱"B~k5j3dlr)%S#cS AwuoKLMھ>|P I FgґC}//'kk䍆# ;klD?ܒgj ߘ9}kVNjIY^&ѦSm,^:O?R/~OWGk:_\99>:"d-T.5.'cofѥk<}|C£b⓰3}Iؘ`cxZw%Y[gg돗wa د(-ڕD_ٗX%cNz;sg/m*v QT= % tB0HA@lly7Wƽu=sv{Āk[q }#43#}{t_fJ+沿 y>A\J -Olu5021wtq -r#T!i\ 6>:;ï{7H'GFŰ9ɩi*KEU:yS+~.N]~}iZTVRF\IwupLi4Q :N\< dH6%/XF]z}o"7^gs~ɮy]M%~y8Yu۶|iZ/G-Wک֬]q;tv;Oзstq dFsaݲBfm>w@?PqDO(}YMLP‰ -e|=|C䘙[Ѐ}[{-/*IdVSOU]iȩ.E[KcVR)*v_0D?7x`旉*%Ɩ6EWwOੑ37Uyɉ(V0R'ibvX>} F+2&. +*~Ww>A[b.G?~6ot_C}gUUjoXY1h1@_/7;kKC ݭb -#Pzd>76FV/onTbB^rmzA[( Ғb#ØA~Nv6A555'}'W7Oo@zpXD4;[P\Z.[;{&%.0JwoN#Ãp!>?+,2x9;Z:>}`CK/y}6ldϾؾszPÞ>dBAZЌ68<:[, -ι?} XOx{2dЩ7 ToVZY\NO&@?oO }U41El쨯GI-THUg?B5,Np;ۚⲒ`6zqcVM ݵsmF`*}d\_<_A _صg᣶ǜ{CXQl@?3L,64u*{} @{pS36}2bo?>VPЗKsS9 舰`zqG-|IF#@;zxqI*P=Sا#lL} 1/sl@Ie ܯ# Ņ| ~ɏ(Lg&3NćW/,淴+'NMCgnP[*I*J >?$ClGYaaa?{gI'64hx&+o_,׫PԗJ*8aJEH} -}}r Tjjw/ŠKLedEU520ʼn}._GI`~w9ݹ5s95УT5p!ady:8>GLr{-6:,E@=; EzQzg]euiR좢(EYgԙ$we&> -Q'avo>hΞ1}I/a2{Yp<'N9 ˋVm8x~ B{C3]OsyﮦeE|iVz*fL!Yʂf>tuu=ô`!bc:_ebɒ&2$`f(}6V>Q Q0h{'W56GŊS$9yX}=vp[aחN=/طP$ - ~~E L5)`c>dS|5z 2s4uqqRjFv^aQYE b߁VK)=y9FпpSX + -eI舐@?_dSdnBOkkiijjjiiS/7wv_v^3Bq/oZ!оzޡE_f=UW T^~/آOQQBa ?5-_/)+Vq, );w{٫WNz+YdqLD -S<>6UolBŝ#JLI+Rc[={/4LإgOkm9wWc}MEiQa^6ZLiU.7}}]m 36ˉ`(>ewZBS/F3nDl5 -]}C p }6}Qt(kSVי4ZtVqTyjʞyPc/ЯZ(S2%QZl9z"MM uu M#YwrEP_:T==ai[ޟ];ڏ>4} -"ş!!xH$>xx?+'*_(*d~kBDaFȐ"迵P?-Y,6˗ Yиj RiX S,3]asZaBQB2jLZancd>K^Ⱦ]8l(UH7'M>ޫ]lVG76P?nJ?%G*G_CП.2>y; g-~C] R K28Mn%i|Ɩ:+Чg; 3WӟXWC'r -J_~}m @FA?g'&&$>=OMٹ2Aia|.pNO1I>OCPWB$0C4 ysH|DE1#дs? )пyx@obKH-L.ÔW+,7wr}B#6pʋ~]{8MQv>N}u;;NAhBfÃ}ׯ͒]nF__AQeik-٧Pnh" d$(HnFAI -s$G%6QZDA "a)ajefvi;P*S%U*Gn}4؊xOǩЗW8p_i ݧDǝxJA *0yl?쏿s|d~p1~k3] qQ?OINN~$%%',$b|ͭ`~'`ɩ陗sX7+:@o#A}&7:y8t}rbid+B(i38eBs1 țq )Y~i>!) kohKٸtjbltڻy~lW/3}; =jT!w&$df ?p߄ߌB_@h}}r -p\Y9wb_zЏON+,jlntht(?5w/w3ࠀ /7v6M t!TЗ IJJ#)ICA+MWRՃ D'r<}c]%_xjbv2OПrHO"/+D7[;8]bSPKGi1_/.ROï16Njk*گ@d -,> ?/+G澆ΉL,88 دg%4~9;_ZcO#$m %y}v6fF'U7}R4qѽ1|bӆu'RwڽWT\RjCʀ(Ξt%$<[PRQ]A?26DϝaS_Oq!Я(x3&*0 gS't55T  IH4:,<74G/"Y#>| {+nue'aXpP~X99wQ7ZZsq|ĒS#G`A )=E&$ee _9Lه'GmM 5YiI+.x\8w\ped%;wl&#-|o眿qէc -;1tiYT5u!%,ϜuvxʵțX\^UǎG0M03ެF/C@DOv}M5B?'+=9!.&24(URAʪjG742w<4":6>9-_XR~??J%x4~??;3=9[kʋd7#îAy:;0kKۅ`K*7c.s1 䯒kne%f۱^=>Ir,]+FOҗ??ލJ sҒbc"B\fzVƆGU!G拊ݻWDDDO'5J34]A`B:zUlji?, -_ܟ?#oif76P#ҒS/-++GS7465 9D >O"g[x }rQ/?~O~V?* zǏi iТK}Z5cںz\ݽ|!B#o'f{u}C8ք}jIzOu>՞[ʊs2Sb"B]lO+?lᏥI?t\ZtzI "d?+g`q)U?'}vW -s>ܪoi__KDY~Ŀq_Cr3#WRki7pܽ෇h3".$q?VM -Ѡ*/wG{LB+SKCO3465] u!2:6>)%uWfVNAգ>8E81Ѯ7_e-+.@H۞ |Vx:;RUi Rb?yR3k/?ƂCgyѼGQZ[050GJKK@S`?>O|[mwHBw }!rM ZԷu4TBϘNv -YZ:GYEMšc_>2:&>1%5=B! >`=ݝZ}XgK=/Z|LT 5>^NgtT9Y) >O? >Qd@_џl%5M5]=qs\b{a?Y -c㥺-;{AHB2D`^NV̇ AU+)PzpsTSQ&쎌,Obrp1=}|i]$x#3O?A{'~C~c3?3_8FV}gF_ɨI75;-3xdg502UwprY|/0t}DtL\brj:4Z._cqddN{nkW.XqLGf)q7n \s˒Ŷpф |}i>oCYZ>lk3+[~66?7{Ϯ-"ׇ]r9|-2Ϝ.s>M~d}¾?ϱ5#>M}}Q1qIiD_ -BU mU!#7mI3؉hn%? D( DYɉq10D~} Lu穫U #OvGJJpG/7ȄGrVѓgcJO>'-,A`?TUUMLȿݎ'? '~#US?6 -f71W^N -Nur -o8m%K<!aQH؛_A/aodǰO)aZӰ?L߱mk,nlnΎ -v¾(}ac8N}}H} )%$ey:z&f6ή0Dఈحvg9PPxsj(mt~g/."Hߑ将C||@_K?Sq4Ұ8I؇ۍ<2\nC6o&T_?y}+P}tcO55?%:?||B=|/X!|:IAgY_ o#WoAݨzL*`K+I\ST4`_M-m(^ޫoܼM?WTՌۮM7_pTт9Yiۓ`pQ=>t𝓒 D㾱gXiO KaVR5+#̐\օG'mO9p܅J2>M7ڻ],o)#~kKz~)!B}/Kq@6G3_dcԟ-]fVr-ϥWVO9sM'?ΓOjk%C_ihf>GcO׍Pq<|Q?S_yrdtezt! M9:}~G唯_cZ*G(被n.(S\tW:FAsX8[RfZޞ糿?@d?.aŲ`5am-M>,UW! - r>Fdokz -C]- r??EFZRB}¾?8}D_?ILBRzhbH !+W[npru  ܹ;)%cgΕ]ZUCoy'?RDDLD?aWLdض -n,FUysaqf0#IOcoۀ3@"T˛cXw/6~.A~-:_ԡP>F~knCP/AsE~~V}wPף.;`tѝ>2m|\Y5`_tJ`  gf?QP S>} OƆoTa⦥$i:k˕Pj*s=YJRBa_TT |%&aUQ7^nnfzG-1S3*>WzFvzG E'3L./v_p";+I_Z /7 j8HcE -=#SPхQ?1Ql̫?O6^={s}O GG 59O -10Xĸ0T75PQ\f_g+ӦΑ*ihlCgAg d}q{g𨏻:;y)ո%ŧSwDo 5pTWQdo8RlOA}D_BJCL-gkphxt\}2N^V}пV@1W? + tD?.&",$wW_ -E$Їga_pf [KܒQ?8,*_ P1,>??CA#ܣC#f>>A~w~~?UPOKՇf^_J$,?a_YMطE=BB)~}_>Y߻7^}ʥ gNegeط7!.:|{&gVPkzڰK?vRbDqG8' "})\*(-341[eecgqvCG8Yt+׿Y{Z{H! w oA8'مEP_GKCMY?g6A6b $[9{sDp>'$ '?ߍ{R-L'G{υXB_P__W 5˨OwʀE%iN+?o"`_؇]nop$dawf - -a/?{G|O|lԎm~^mmVE;<}dGf>O%b%U -]( ^~vD|#r N9LMh_24]{̰ _3SА?oDPE 3gLeCf9,/XɩW? /~W ?4 ~_ y!~&?|h|*>s$|?x~=_I:ĩ`KTWVXLKWR -ٟ: Wn.g`̲7 e(y#n=tZ}slPmLKIڽ32,$wx+ t4T`ue>wR,?>D}qZP J*:88 ܶEܝv3._ 7ё^vb~z8,X7_ΡdL\H3[3i_P%Wӄ3~!P4_ ף>}>q P4I?dAGGD||ZH>/3MwW76ߨ,/-9%'FΨ/?$/_,txٻ*eþ2*h6d;)__8atz?e wnTU\.9+&"4x'uk,͗h%g#ð8#=B'}L}-QDL-֬]gkphD̮̣9y.WT465 O22~GXC ,zښJ -}Y}&ai?A-g,9ޡ:~PhdlB2~iyeuFFec3{%O6~7G)?<䳙?c,`{ϩZ[:>'Gԇ`早1Z-Se@/U}]cS3`z֑T8oG>1N _ߪVqT^vVƁ䄸Aްvk,LA-< yt}dǶ=}>Ti8786j &fl6nw߁켓E80תבyinwtv=qcp$(%J(*]t/EH!T(*%(*S; 㲵%m! mF53f:'>|$WW͗*%+Pf=Q\qa#~QPo9HSxeswd>65t ,b ~;؇ q}'&Ef|nXꕚƥgN&}r[ ͍ Q#Kxe 22?@3LȰ06 -p#ÉhYleO@Hxdtl]:r,taqIĥwǰʠߛ=nsua! t :T\_y8G6ľAhPAQt@>Kke.n"6lښ@fvO J_°\kh"YAta( }1IWRA` t 1"4)BzҘ1"{W_kh2 -bߕ UuPPsT/>~b?џo/ =(>%KQ%~]~mWUDy >'|&ܹ:j -,zƦ3No>W ;߃ON榆:\ eO"3Ci &k;_Pܳ7-# ϞtФPAЗP*C^O }/}-}D}|ތEeOCGMQ ْ@?UP\ZQUM-Qn.KFKq_,T~ڏ柄{Sb6'IK~U1A~^n.D}jʠTy1d{ [[}\a(nSRƲ^o+ :>ns۝˗++`NHۻggׅyZh{lnb47y(nI'@/yT}>ij /u\a \6*fSRrTϕW~yr-fs˝6oz|L$Dߓ N664 'p ! nXW k@w}P3?#?~ۧ{>_|L/NoԿXG//-3RY}ܜAEOڮď e-.s+!ZںF2FEnM`[wd_>wnEٿ奟9}'SSvض9&j@_/l/436T'ia_FF/2"G&M-AYU}<]cV6V{GFmߕ#rO).-/k\Qxv[{C&샔> k4$;~(EзZ̡?GUy}RmC'/@"K[Gg7ONԌlP_xKHoS}Ÿ~,_||?H2_З~_,/)E7GG"sc ,U-Ls!5=A$s{ u(q?} WwBB7߸zt#O޵=.6:2<$e3#8u檫6~@Ѥ [>Q͛%Л>4 Kk{'7a6mMHLw 3;䧅E%e %~CagՀ_~7E2"TJBD_W[KW˱y,ݗQ @QIցo 8:ћQk~ 1'g{(9 >O||^g#WS^wH ~ǽ;D+_3pz:;uP=þA t/MٿwM d./)a?|}3LpUOClzu, -]~xHIZFy=_QUkhjnŃЇ^R׽}w}sS~OA?fâ/ðO^~UGw}9rBԿsSr0꿕"~0싺~N~/v_{>'䋘_a'SV~Yg~VT} X^?W]F؟0In2y oim_-s|[nm"GyMу675N_;q4+#m[6_jrGۥKikjRz@ٗ)CGr菃IQPW[HoQ1؝~kXNk\ٶ\H("ҁHBQ(**qqNXJ(II(C#{ fs?Z]}1}is?As9y !w+jj.@J>7!Ut2"ЧwcV@CcQɠM? t -U~#>p8;q_@~o43ܣ>_@>3;YcC=QV!x*:i -WŶ217^C>C(tcbq) Dzo'y Wn_^Kٯ[zfᵼΞI=m՞.Nh+O5TW=RIq`ñ/v:]}>\@3-.vrq_Ӻ[}w 8r<:6/_I>4Oiᐊ~)A務R@П;^SsEP)I1Cu:nΎ --fΘfh0Qw85U#o>?E>a_}N8s+82F 22q#3sn+lپsGGğNI;uJ~AQ2-% ǧ=$ /IGE Q#ȋחȲsT_YeQ&oϪ7ppxtlbrzfvn>_?Siȗw_ ~V~~b?_ڡ>+~ #M;7S+5UJn@(Tmzy8̳ u4TU -e(t@??cUDdae/~} Abc;˲Q+AD4 !Mgϝgcl -56C< <qlO>> DПO3䣯8CD+ݙto K>X+<{' GiD%ej?&~K/O.p?ϊ6©_p5ب v6VfS &hC#x忱3W4^d؇F+cߡel`aQ}ܤۯ^5Օ%r/d&':|?o^uE6PkScrZa V8ʾ_گpwAe(p''?` $DihUuMm=}ĝx,ZsMvA'%zBvNY5AN;ڍt qDԕf3/TCQ}u-S,l9E&${SIQS Srs⋑Y̗>CAPLBLdXС{tX $Tdѫ/B2 -ٷd?$<}|xC{X[SYx-/'{""4nmU.N.5c&|j`_vyWA|c_xv=Hvȇڸ'A:fZXZ/\ظw׾؄s޼}A_ @r9P@O= -V:5|RZ!onw\o~P?2& &_wp_~ wDy_`!MH_]mMUy"T?#L|Ldh Ks醓&h#wlyAf q7n&76] [O[M/QWݻ{}>=%)>&xHࡀ}|^hokmi>dڔIaͩQQ1l^~rj'>O@ { ZM?kl c_~@)2cWzʡJƨkLd8r3~`hdL T:p3 /})gg玐y_*|iTW{z嬌Ԥwnٰz"PTC;yԎnݙ(3Aʰ=~~ryz{~e:7wg_oɟ+?W++)~^HK>>v;޼a׊lϝmfl44[i8e_ ioáїSzc:@8+=V]S[O馳̳[k͆͐ G"!iYr>1 -v#=yWWON:)U[A{2a>4\r4Q}SP۪?q2>)5#ru8t//?C?;K@o_o>9QGQ;7gNF_dl8F~oF}AEs_ðFƦ,)ۡ<+y76F߼a+_] qjn (aG۶ij_Q={\s%0H$*TVE}RB!SR%[}վN%QmJ$Q!R`|{~oI9i<΄?`kefl^Cu*2b j I> wYI@2hY2\ 8 e܅4%W!Ll BנK"kWJhC(;y/ˆt AhOie?TFS+LOILܾzwybw(IIYs>,9A/sp n _ujIanFjBtA{p߲POK]YI/&*"Շ?r0'#%!GH&X}eKCOP-~~G{+<{ՕWK -r2/%GG C+wVG;  ښjJK$Ο؟$w9 :m|::iӁ9 EK +֪B( ͭtڳ``H3P"r.kmew ZA8|q[Q3P ."x/`>Sp.Чg/G/ ? ?_Lkhbp ?r脔’;-maO7mw} -~J~<={4Ljt?Q ]z0 '=%> -xg@WSm*9i@ݔɓ@ 8RFv>~5lys+b>^salw=I#8vZq,/<51phxyo676[ -X.#4 Xobax|'︪Uo~;g.\R2(*Z +[g;} #.&PV~fM=nFa> }Zݏ: F;1x?@'@rX}x/-'jsρ@~T|JzNAqYEeu}#]}JOcB}ώP%>GbF{_}N}@A;WW]Y~ ;=9.*ԱC~X}{ c fn"nC"ġʮXVm[=w/$,ldt\ҥLhWQhhjik𰫇ldg}$Dh'ЇL~0 B>1qyԟ5g.W\NGc>~qiER>4[Ks?;#П92jx yOM n\+-JKÂ|zm͍+dBL)K =xNϰsD{3ُg]o֠Uom?bÈ'=m`=]߮ZZT.).e&kscCT*),ZH|Uqf^,ٗdcߘžPHIX4(x$U<ڶ_ ={ -Ngǽ۵p񠆗 ~h!?\ľu4`d g&cउd*a'@N'ҰLN^q%eێ>~C/!%=+}rG1xE_D?D8 PcX }v'#,/eЭqj׀aaEEEE2( ( -@@@rNs$ QDtʸ8;;:Δ{nu*WD|4Xb¢R2r K+k:GOMSM^->0^~g3_2Dæ ?~@~IaNƵ(P) c:H}1HMs(/]c>>w/x\ "_7?߇.yt 7p3~%oldp{c]Md@κ9;Zh): WRBTn5:>x -~氿.ڡ> G?\ P P d4 M-m\=ãPTT56v@Od>R~0oG}R71:<؏|%Ey)|!5C=cӢODAqRR_QUS瘉é3^~TjL?F9/>0?0/vw*q%swv@Km,u4THSq_4nj,mN8aQq)yE%7nj'؇~ׯg߾ZCAob my] 7aLKz%OwW'&zrRB[6srN'']gn_AZq1l@srqo.(OZ;k`bE}QqI9PttuA#ɳT{ȓ0 -~FJR\Txpў 0>1W2W}a]R2U5t-lO{\ ON)(zؽ(<9P,->0U=E?@_/NK ?nnMPڰۮl4 ѲΈ} ,y)Ea;{GH?yVW-?>:tw|mU g\NYCVQ<(o.1|[89DNZWoH\J U7('*!we#̬lO @IWy0^7Ң|~txp ѷ23>/[6W / ,WP72?տ qO/MљO޿Xo҇N]ˋҒb#@ܜNXsH -aavjْ[f})V}hh~N~QzbZBLDsnVfF:{%%D!κ9+fJ?R@>^~d)ijwr;{ _DLµ<(Ɩ6{MN{+C!=B ܈/HMJM~YA+ZwͱFB{32>v"_\^]wԇuμl/G~{aђ>591:4TWUV|YWG;k3C]-`Sh;fP j%I8U?}5ľ1b ؿ쇄G'~]csk=I;&}`XW]QR = --oij$/'- cwfNkYWwB; -Y^VU>']PDliYyEZ&Ot0{aCtÆ c1?FqDأA, xwuu5L>(Ab}I-w gaabZ?C.khfmzϕԬⲪщ)hXP}C4RW Igw:TUG{/Ў+POg{K㍪Ң̔Ę]L t+)`W95͐}Vj }e5 m̾+SP\ZY;42NzW$1yz=|71|fÍqQaWwq9-3zF?Jb)l{ ٟmߒ;G^gZ쌔@? N739pnDz~7>Խ2X>)a^.m,LM 멫*%D֮Y -~U],p?H}QqIYyE5 -]# 6|S7C 8oL[/T᣼Oay[*#?W_{ZE)X?=9>:9p1;k 6X_Gsʶ-r2 QpUg>fOײ6S?|hW - - ؓ^cm=#|'p酆G'e+vDI?;4`[8p;WTv2gR7?LK:<$甫š4w!e6n\|1P.M9Ps_ą54h|q9ťƦ{Q'؇OWɰ?#zui0/+-)t#7++oD/['qs? W"b -Jwf~!S3s Kpͭ;qtFgdQ {=4#Cd&8Gu3j>sh/@^+a R>,l\O@ dV\YS> <%an3o4 -w@x:[41ܹ]iF1+@aSþbb_m} ,|}_s#.%fVPowqٟS>?>v7+\.!@oocifjbonuU%{Rp{+|xye<[:2Pj֭C54uAyk'aE$de׫C>7 }FIYxc~<Ѓ7/+.̈́Ǒc[YMM u<8> =?1i~X@*mߩc`r9ʁuw[ +^zԟt~cO}zn;ZnW]+ȥ'E;{帝aS}赪۶IKR`ܿMFa_@/N -541]=|GD'eU\U[OJC'? F/_@ܣViwcvl&6-r2 cn?}`6dU.WVG[!s{SgyE@-mdѢ8hN^=0&^|tDXp/x &B_a,~9Dd#PNLBZn6՝{ML[wyx֍KӒb#8y3Sc=m۶lAqkM>>O?|rj_<@ HB,}GoY]Y/!&*F˩,DS767a'ݬ]}7(}2e W߭g W9z줇7$adlRZv~7nilnDS_r 3e??QOW{ksCmu啲⼬Ę ?/wgG[K6HWk8mv%2v?9rc_ƾ~S3K' ,2j_VQf)4?rq5W/XjnV"r3Sc.zy8L 0TںYv*%u}ު?D #lI`5M\R: -ôgi2"yC=wLп"@כhJp wn -ӓb"Ar?Sn}^GSC@&˦ }㌣ieVWTQ04b-mݽB#bS&յ ]=<ރC3ԟ?Cke&Dv;`c>`WCMYATSi𭩵jʋqaE]AArjrP@%ITrA@P$QFQѱҋ=馇AڽO8~yx6nB%[XEvN~d4}@@ieM4I~t+}*3اCY`DÀ@wg[KcmeYz).&*s)> UòҒOw̋YssD}>,MZ>~غ$V<um] k{gwo`\9tw ͭ]g{܍ ۡVᝇzCΚpx>tԇoAP&s:Q#s+{ߠQ iy5 ͠QT3>u?ꓴC}~~;=meEYiI1a!>v43C=mP$D|hy@}x ؖE%HSQ:rطwrG HyAD?a˅׋=c8@ρ}``d]p -+J -rҒ`o0@ "hD鬹ρ>dȭ9$^،f /(w3s -Jʫþ NLNDƿ}%}Ƒ뮭*+rG~rs45BU Q̇y7?lwh$zf4;gwȘܢΞ;LH dݏ?K{T_H:c#CMuU9#NliZjJi%ډqTݰT}Η RLL-!yQ1~ZⲪF~STc9ǜ%L,f'thˋ1%Ğ=s*- TS@ Pa95>kv&kd\rQqU =CSKwl|bjk-7:If1-_옻f4;=[]m͍uUexI;yR][]eiKΝ9y"AgYN}qH~Ff6^K)iY9Uu-m]0_^|5/R )^ĿζFLyW2R'x8XB d% |8\쓰WmOVγYRda&VvNۥgbk7xo4;}C_媗:“b.=7>۝6H/!PC߱{Rr0KG7/c'Ϝp)5jAieݵ]O>pYZWm˩Ľ&hfb]x[EIφtu0?('vY|盗O2o{"B} m]}c3389 gWGIÉi6ݯ&N%$<G(hmn()̅wBtDXh0C';+sc]-ued@lA~ pJod_7E}oA!}WRӄngFute;w]t&;\$Z7UHaudݝ7ZUf$Ɠb'ff k*ö%E۶|=#¿bw)l-l\=O=1%J~IEmc w>e^cYW#맢->K<&s:P=43G4$w k-sD}>,{3Y^>~$eɍ34]; Vq%~f_`ku-gƖYkf]Ԟ'yqT@9lix9'ՎF#_~M\xy@RP9jlnmz:*6!9=;[}ãgD}:SL_+1Kă{[g[s}uYQnvZR|LdXH2&)$ce+}>&:z&#؇V4` O0" {,l/@hv -2| JPUYQޕKq1Q'l-L 5JKq7`+*1&>iMy/ GD ^x+;'7r#/\L^ZYyjQ𺳡q|{N:Y3^BsRy@,AW }GC}q@DpD%)kY9{E'eU7u@}01=7?B]BH_K}J8@owGkS]UiaNĸSݝliZjJe%P];վcaE>EDAWR$[:z'N29=g8׽ F!II()E}ϒ%)iOJUQ%[68Hcs3sz?߾o3s'x$" ؍C$\ hCHR
Iq1"P=6op23*y-Ⱦ#sǸ9Hcž9 U_XD~ `ME][FrN;sbBϘc}:a5 ,wtQ}uNvXz4AjS"C(AЊH}IiXB*:&l7`lbj’jVå6x#'@?!Rs%9i) xm^`cnl6++LbPwӈgg?b1}%Uľ5( 708 tnaqYE5x -3h ޅ;UΞHCDz!m-M U֮YLB\TDeOKO"ԧNK0he5-]y#=M^Xr8=s~f"N͸US)C[[r/;>=?'#-Hb,G]af7Os -JU_ڎ:yG%vhȮ,+8'c>R_ԟG/0u #b b.IP@}}C k{ <~RjzFV^aIYe k@$E@// 7o4_px4olomnNWS8ŋs&k9Ѥ1&?Gi31h!a1TYYyEU }#3+;NEG2ABi^p 3zɞk`A%8 =}\t6:r<u|П%RAC1R#_.#ԇXۻn|<#; }mHː8U}B}7 ._`Te</׎@fԔdjb"`8&ˡ>^j>I ED^ohjac_Ph3nuLxCk `o[ j8N~v&Aw!쬠 -ҒKDf`h7. ƆQ}}$gT})ka.dEFAwlyU2$ d%BQ>>_5wp$|,D `ci -k)㢓n)S0Jԟň'1$#s޴u.}qINfA%/q`v>G\iCYƩ?&?.~`@?'^lu2.k:q,9!9`kifdK/);+?p%z$2ŗH[iw/ݡ&8 Կo3[f1>=:o\>WRp` ߝ7op01PYj%xϘw.φ؟B?-R)iYyľ˦GE()(*-ؿy`ѓo8 .PCp0DC| -U5 b d_rp}ޠ'pTL4vP}yE m}Lqfs$ߊ9}l\6;f<F !'g+a5 -b3$WZc`bھ7hobJzfb5;Ӄ; ZQcS@h_x֍:|b}]UYqAvF@O76kVJ.BN4vg#P('| -g}`:`qVwTA~tҊjV}妖VX\`8bmׯyXEٙIq1]p!"}C(Sr? ǪOCJT"7IT: ^8 ޴N: -8>I@i9#W^Hb56]<}C£b⏦edUC)yaJPơŏm@6~|\߹v][YZ.oOǶM.fFzZjJ -@@yS R#`tX&:cs+;vxC#@ r K*kX˿d db.,E v/==spgA2v-R(Q*Ң}_j=)eHҢI*JT~-W#Jeg=>_ { x>5UEJٗ=fɠ`f\JT8gx9Kx -9EeUh,741x}7lFIɩG)܆fZr{!7d!;Y=~]Ԅ!WYFROc"C=\,Ly*P}~+ Pȩ?We{HhЈmBEgZ._{>BŶ#fCP 2fvuܾ 5_*/9g֨{ksC=-  -fL+HTA`<>TPQYeEpA`2l06>)`zfvwA߼} ?.>!du">;?]5 g H%2l޸!ըXm>3I/#P}}cǍ窯V_kw)e-9gِv8k<^$|Ɖj*KَHMNGGGNvƆ4ťx @_Vvď@3).P341f ںsORJZfvɒڋ͗h ut=|)8: SH~Rxdع}=:ݾ5]8_YV\MNlgeflt|9K>x.`)_ohL`pr ZOd|x>P^USBBP=Ё-p>{!{wE>ޚtPW[ h\%.㱉FSa;?J3wt;8pW6g.$l5CiǕR-=8>QMXqʵЧwUyJ6b}P1-*Cʤ -ǥ$ǝT-Yn46svU$vjxɗ[~94/?3 \wo]imɞ*8~^nV.'gN͘ - -;XS9UA &fklݼ|7l Y90۱s%JH{2NRk~'{PSYVRTuP -MaDV&Fi)aOFѨ t̾6s*]m2H1up1z=Y8WwYDu~AO/yo|`ÉCpP*/nFjs,W@'_/7g{5f,:v\}-t1G>?1r&`MɨXsUn^~A6n޾{Yp+mԋݸBԊ3L!ISXcT<Hea- ugKNM?/!v[tDhP2MX31Y&A`f GI?N|PmJ#3Kgw/2Bago9qLEu텦V ?IC|x>ca|@1/֢ O:@ =\p&3cC=e% #-$J̆y ՗PV[X9yGYyqMW]6{_YP{{v. G<{m8Ċ6_`c:_I+nU6XBC_#F -bG=*P4QXDbH?slu]CkQыB8Лo}?4?]b>}" ULKIڳkkTx:{kF:Z31$ GJa_>8q2!d_mni/0$lmӎ-(*)6<{)⣰@z-&yM4c+S ;b"C7';܉6wYRY@ړnh*jPSYV\JN۱%2,PO[ 0SQL%ˍŃ$!\e?o:蠣g'ut#)g - E\ q?CJ1+:W/aJœéI >f&:ʊ'e_gϠ'U_AIg` wF„P/,>Sq<]mkҀ"}HߤqoHENjVɳ3)T側mzz?Ч:˧@_V,ĩU(C=Z9{a%&:r,Btֽ=dSpۺ/Hd>v\SY޾yӆ nN,SQ7$죨%%%K ƦvN~Rrj-8":t>~?ge"+W>E5v#H k+b z*]m-E ()p٧3VQ}!Xu"S9pHu -pVvNn^BP~au0p"c̘HZUdiWTҾ"uRJ%]R$/e?3su8gs?}~ќk ׽%\zVnSUXsshF.;۝t >BU$#UVR|5P>"#GѭU'N10st@=bEݸmĔ܂ⲪZ vT#CD~yX`4L K$c1a8 )U5FB{'oyA!a+b]{S!E[Z93 =$&:OO(Z̴lX*:r>.XEVf: d_N})^|ߝs'}E -8Sa6ܠ%QS#ьw` J*5jf60C@~ˡI)i9yťu Mx7o㄀WvngHW@=;7.45Ԟf:L . GCciI&rXS}q;GgwZo3z74X`YYUM}(%+\4ܸ, -r{/7Y?Yܱ %-0-ngcibwbHt%G>7TeXں -[gPhgmab9UNVf4ybbJb_^AIE bjh3͋H`b$Yɲʚ3gy;lρoOv -4)n\rxHKIܻ+v7kAݝq,!d(8~X*Çu#tOHu9'SXL-XF%gG -K+a$R|iU+pƢ35eXi!HnΎ3mM t)N5%8 @`//)`%i2RFGjXX9x,Y`jF񢒊3XExm<oN~_:U_<:}Շewn;]~0/W dokefb"bRbWt[{o^PHX"vԌ -*%Q -! ݉`F`._lnŭNCS*x6fF:S&^oA`'./qQCQpWi,Lk;n%QףYylQl$|w6ʑ{mdC銒₼T֍(%!<\-L,'(s+R@[cQM%1̬lܼX~s}h*?]w|e$=SgY=r(S?'젟cyO; j;m\4$h'0fmajˎ!I󯞨Ͽ^v °C١H1ɕPrպ[!I)ixťudH|=(}/hqhAxd!"9qׯ+ ^nFt/=mȾxN -)n he «0lrk`lNs \  I>c)n]r(?73-yD/_(0n䉀lgy+&G/}BQ؟+tv̚ sBʫrR:t>(HQQCDB"%brڛI͞ٶAc֘}?oBRϟs}.b! "ge`0 qk4"'5߷߄2K/G9^$mmc"EǎdO"o4ZmT("ٗBGS} aliLghjni@ AnjcKΞzP]/rXO]r2brtB}c͝=+wf(yK|W+>Ģɔi}4]=}pHdrZ֡E+0qYE;k'bAʨ'瓩o`v%im4]>W 7'#5)nMrw733Kk `dx\\D>c_B72wv#E\ضsԌy'.6]V/hvWc_^0]D,es$$FX5I8Sk1t2G$JeUϣ*QoLs?FڛbaʛR dS_}lO;)Co7ņJN3RiEmXM”{t8^Mʠ/dXlh:4Y:.wqZf&d\RjFN.j ڎ|ǝ!yAJOGϟ1 ?p~+0V\x} ;t׭ܜ-L ̜>ux5 웯F|2D革#5VDm= "Ed'>|@joQ_SYqT8jw$z|c}](JNRlc6~Mm u7RKwEu بywJ/z$;kMjl07'3{{$-60Csi>-Qh_}Chg:sv8Z.t֝ 9VX|aDKK>A>G0{yʥ*PD᬴@,*|CphkenbiNE/ `弌?lcTǩ.}=cֶ.K7G0:4ĸtsNy"!߄ .? صq. QVZ&b@ hJ%6V(J#m&cU8.$\.WP\>d>͓B ٴUwn>A" vw>~P:0n_]\xE# -hKm5L>NafCR8PBWը*&N<201GQ.X!<*zޔ,$QTu~/VO)G>-L@c޸v⅚ғGs2ScG^`:O_Vno] 3?vv.D=i`ck$ģ'TT7(~rGO:ɾ`oTIBfhocۨ 8:Dq[l"d,ts_OU)Vٍ+HϞ;lUlhn0#{7OvkL{^H GanqgJNSoO\۲)$8"41ПhP̣Gkl϶oge>OO/,'bH]ڪӧ -gHI [PE -|Uz/^(uD `723<#)i9Ps5n޺Ï+ /qƹDx=ygGeؗ Ԁ*-4L Bem0WT~2gJOCYz\kj;'x4XkS|VYiw lTAsVC|#k}i9Z$TܴK[nxcƪ+M-p5~k7GEIH9u8nVۀut֝{|&ɨ'㓩> ߀0k/^!q2S᭑a!A6/ښ _ʣ~G.a"92J)4l*Q;b+B|NWTV7dF/N$t2f5Ԕ\wGGm%lh!CI1^!muQ} P}5t_K|Vb􃇱J"L\!l^ }&8ˆړGlK ).䝝9t}P 3c]ڔ68L,~" u9*M$Mٺ]=}B"w'fbW\xڍf^dIN}U9xn+jS#̧xnvĸ]۶_~B3y:Mg.+? L5A pEGWF`pȦ-_.N=k7صvvf-(nQDX)ݕJJJ)%(RrXvmsssfǙ}3y?w'sHYEepPPC"όql҃{bDh7a4CZQ/3Rqw56U 5n$o/v+j6_\$wXvCUah6Rr˾hI}]L!ԑt&RZYbnWACOFVbjWs_U}BAG(Zܬĸ0c>lxm->QK7~'U3cp}3Kk{G]/=}`1GX._Mm/>#j=Wv:|}9RIfMץ%3v>ߞ}"U_s m3<'l,oCX$E6vw8U5hi>-J^^-{V񤢶Ѐ$Ж]_B_bv<:K*ItSGpJoనĔ܂bԙچ Z3E'z#SI}? _opW/5לdؖ1r_ ` -)+]\2Vp)~_xIY7ƍg[41=wE@#vKt@Gj¨ʎJeT#s46 -Kcք0|q<%J>%`!*md#ߢ#Fa՟nlja-T:?x.+woQ zZUu]ܝ{XUaK{^Iޠ8F5bqS^؎!З=m %6NsPq(/w@jd*Ӈ 0ytOb`E\#mMض#3'stSG")ը߃nT&B[޹‹_p0/;#59>:<$s -WgGRVézdÁ.R>~qoZaw 6x%Gki70/:.'taL8vLm4FT^`G:-3tFGB++ʎݕ\䲈&gaj"&~n$ϻcGb΁SOC`cs4vȖqg2 kѨڑ׮\:__[]yFq E-mǪ9iӧ"F #iwՖo>5gᡚ+fԛjhb> yJ%)0$<:>95#;cUg5^nީ!ѹ+ ^+՗ԇ?ak%WWSYsS㢠\ΟC:]_w5]&\o> -[H"8z,A؟i1nXxSP|qW֟Cʬ=Ha|2x~βokefbh0e>Cuꋢ6Lu5%V.HkQvWuɬVh&uUEyAZ[fZJR\4ߛK3gLJC^˚:@˩/2#7dJԤf68zjIaQq)49H_}FaJ5\yo)?pe;8륦'KKs2؈ ?5;͵&a2y1#G@z/5o} >} -11VqLKk{DžKH}A4hg/\zM|!?SWjc @#}KqXTVz=yK F輀f7ٗÓ߿~Tz4#4 {[勒rX! ՇJz/eg0jRlODVؗ[ ^Ci6f>5܁ -s`kt!թG?v)%&դ5^~R|M=O-G ]5,S{dyo— ^78v@a^vFjr|LxHΎs$Xp]]AO6F¾1t&fV6pE.n+ a[C?>5γ5޼sOgQ!)/' "-F/5ifE@O271?ZsxTZ#mX!#cʊFK 퇟tΩre?be2r -Z%vVQ5as$ךn.6hFu'tDG/֯K55)Dՙg`hb>W-{Td\*~w -_o(+uk).J'rx{rs!p{XWaCVU52=>M!99._)9RVQY] 7+ߟ!>Mao,/=X\uKldhR-gbzz) cd?amZY~cx4ZEbgu QR3AmNԩ֊zFAP[]YQvWsǶĸM!-v7v1/+X޺ d_ P̏B3Z CfYRQrq[ BOJ-(>tSq`%8/q^5zzmUd0V|;Ty/A~@#%E9;%Fyq_?`omajɄ/%mAR2w'o:+|w\z#0_h"$=妆J!9RC֓7)v_o?Ym`l ig>(h"2WMKXz/vvlQ=KDAb)V`gmAI=w6nsZeGaݻ+N}  =O36#3B#b1̜|D&$ >_;d<=UŪ=?5$j\:DEI3mh*(RM@AEEPAvA" - -}aHu?&6N3mL} 3s7<9|?ߛtUnEF, ; ز du(M-*﯋\vMLnjV TWYs=!0ItދW:9vHꨚvt\ļ+GQc5hJys< 6B*qɾ^Z+OVA-R}O> llv6USoerW)rvG.Ӡ%Ĭ -_9wꙣ+?}`Az. 5O_>&8TJDjsUAhFDƢ)i7Qf;t E N)o5I__5zKz*vQ GV)^Rl-] Y>g|s3ZBU%fNQF\}Fƾq3Bly̞,IHI_I@ߠt;#JLo'G'zy,;(u;6?D˃:&E #HcdGGAAU?DPccY)#cSҳ hgV/p뮔Ҽ.)i[w=@!}t3Gk|tJblm׼nf}9xg 5#SnrY2شdz-]*[XlO55 ;pTDdSݫS{9O_X#qd?5[!kQx |2yJ̒MK>*8> !4yϢPǨuHіT8rW|j?jy#=U@cw)1G(4!;#b}RG}{i,^3ITIz4}\O25ҼMQH߻@ږRz%ыhj{kWѭ-M5GT7dKM[r9u3ktIT0l(jgӢ4CML)7-,}BQWZ>YZTn{DS3S{e7t%_ l]HZwc˦*b}#a1]f@},ZF26n,VZG0Gz=A O]eޝ[J4SM $dy40*K,쿋0*UӺ|bҹ-RFvUP&-Kif/nWJ/o}A:á,/݆fHK])`gcmL qLsץ~?Ur )8t0B'z,aM[v +T:f˷d{oOGX aK|*ס?쪀VEٶYkW. /3T'Y3̄ -b)oX: -;2FϚ$Y+챬@|_I? -I+?간ǡ( %7+67 6URY"}LIHXOsDpZ<53>Ǻއ[K? dx,+;XU]]b?jwL@_ޔ*oPzV:?{=Zs7N˲jP}fp+sWס!"9-xx7'm):aMzYNY&Xk$(?&xD @&smrjE>DI,T?Hd{C̅;ɪMJ]!YagYoݑUzS/?j[]XNlkKevl)*@@&FQ/[ {Ǯm)d } }=ٗSDEt4v -%'.KN.(ں#oBnqHIqouQ} BIzyYy֥BT×X(.NP>'H|ᩯ;J{dB8$AqIir7o݉{h͉Sz;ޯd0&ZBI1 -RK4Xdp%I9:$)쿠JU"O]M͛m8)j糼(0{ړz6Q=qq ӛ`")=ՠI]cKkWCWNIϲ;򤓒T0d[I!25)S eV%#KwQ=W$`O9ER)mh>.T˻R'I[ꮑaI8t)qr%ÖTp.JOIZ* v"I;/YR}UI2td_LSzb&c1GOgjLc0ٙ/ڲs79+4ίDrr/$zo﹪o\Wh@SWYRbVB~~xq|9gYvwzF!T®"b2;I{R#B]U`܆q) Ifqkͺ .{qξ?yOOϜ'|>zWCGw0R(~K#0;u!tt" EMI89V |',RFjPHٗoP"n\ )&c!d}zeJ(tT_aS+?f,O@p~rj*Xl Jǒ$VWYvts7GJ%f!a8!i#J3$Y讴o7s4&8N(8GͲSy/yDaYՂo)HM/ vm꼇(ΣD&PHĢ;ᣜyfz[_H,[€/}1Żk/Q4d@ ޠmzTZؓPTcKaKS6 -I--;~W"yGj[ fHo8)bGSP4F6v̨Cq.:p8Sm+񬳨7)QIt΃ĵfnFEx~]t6~S~>=WWh֯Y(!vnX;QUwO6j8 BJa$w4gݗx6g^|e+2r֬H?KW Ic-uxgRd'䑙+ MIdtoH27N{p%s?',#RCP}B0\:vo .Av59ysÃ(NR4[[bIfX{[qjC(Ғ}e4J>x']q\gx͍Mδf=ťekExҥe)?MUUq^H/ʏ*v8j^v%UdHϬSYQo=->PUTzJ $71O"{P;:~&(Q h @JɑcjQ|k!O?e_1=&BsMd1t& rF$'~!e~,(IvQ}2Nf^cTC5 .HΟ>X]e\.}7A:X?^=vȅLDTV }m( JT' ݖ30$2f>u6s|-?yIVc-_7ѧO  ڕK*>ZoڜIŁU^3MhT^~6Νڳr߭Z~; -L[;H)fx&LMϖLW@tƭ:|'c_+1>SJ$ *x}iĔ) NQ}wBUDt܂$YǶ쐪qFV/ 1_N_)ʘϺI GGbA^3ݦpF wlk V$YB_]ܒQBLS9y1LJfw[r-phM9k d~$oVkħ ^=T*+dCvf,]?tw8*B?q}WH(D!4`ߠw 12&PAݸyۮ@%JT%Z% bE+B&ٿ.Y~[Ӗ׬4 FH#F~_SV}7*(l:UwAN.h3<}CtIK%W.^fC_*dSmR~4sEʾCQ}2T՟>i^b%UP&_$?}5h -녾j(kwopݜ<~"y*I~ .δ;[eb=Jې2P:ye"DdAݶdh8δ^~fl¢TlERl{M_*_im 4q~LdH sq N;aJKN?3v*~,+?B&%W'.^z/rpY_U'ubX_B)Т[,RQ6CR#Cg6QVѢ';&ƪ\U}JT6StJCt;'r&Jm"ۃ#yZ,Gf؎ e }ڏV,eCZ1t'w9Ϯ}8D]&N)f~"[kOi^)VͲT_HSS{vRv5M`jM/:2q/R~2V~̻ZZC&G~ B ޢCT|._A-ZF)rrMd򣇔q.#!e_W1.A,PtTb*^aT\cϹf -f,]:iN3oD$3-V^;N*g?Iw*n nȰNIqQlWdpܳyfoگNSE{a@\{INctweJOPwHQᕟޣ Zo@C`j:9`pei3<}C#Rӳ ?T -%}[5=~(*?gq"Dknp?uTy<68TtQ "m,+VMqA "*(",Ƣ՘ FZܣڙؤ6sW,z?;y9uEN'~|Lb_ i4ьi2t}, +L- j fܬtp|nsuV97Gh,P84ol^7\Rvݲ?ڧ/޶cMP9e??T֢w~ -.Zo}4S_FR -_mKY1  oυ簐 h -{ȨNld7/`kz?\p#B`֮/* - mh7] _ޕ_/`siQ>~8bFR?Q?+ԁ# -:ԇ<֗BXZ vo-W?em -GXIq1!˽= -O& -Mn1;y8ԣ6G=âV'P2o'>kQ7¯mu BH2҈KV¼tPd(u6RWa`sy%bxI.` {/#TVP2TyT0ߵ4"y=&`#> @}8P:uq`3g9vOw*^G7_-NXKOi. }]U -1#TB#Iӳ -K+=9kv߼|yB bעR^#?|zEYR_Kg/it/0RefNA $` tfhfhS&lW%Kˌ:// keԯB+0lb}F"tLC]MNl5 ‚U1QÇY ]S%~7YUxKU(*Mg-bX-OSojǾI_tjtT>Ke \YVAO -b O!^8* Tiry+MI΃e\y#!b_mtƾ, V``XQGDǵG}boE}=|G#noX.%u #?w3:ᥣoSష.LE^H}B2˖V[{Gٮx.+*̱/ FMF7lɄ7:"Qd=VAF}O]KE}X~?l+ml%+B"c@p@/6I&Kԍ}EGYn.+l|oA}( -gEvjPUnʊ g&`{{M;yEL#_&)UZwXU"a.+̜ %do4aڣF<1g$ - DJa*(Iݤ&,JZ/( 3&-3wCI9 TS׀!|ƭ;uН2bF}L?5OCOT~9'N=QD(Fp8ZpgkX qy y<6 7pC W["ZO("w}4Iv̤fII}C؇+y7PcpxtlbʺlNK0K܆7o-[3 -m7Է|&LH^kW~[4NJxkEiQ^6^xB nfM =bPK8j@O|$>ٯc_ yKK:}?ք}cDZ_DN}w\j$׷G&CQe"0&`U8߹ !eB#qЖeh=(fN; @CXgwtM 5domP?GMWptT'F}xujsEɺCrۖ N@7Nxӎ|ZZ>a6S_}e ӷ(|yso~;Gԋ.ѯl߬I̴xN}7F}G$RXE4 ]`)ɒ^%ܽ@@cЖNSĘYː&-+ sA% uPNѧ2ghbN_sSO\S' K}Vf̱SV Z 9uƎ5|`^|=0d5o8BBudƱf]QeX0n,B)Q75t2i~71e-v*g3.c֢0h`9Z{`#c_XoS5 |yٰQ_LPqi]@0H+Mϟ;}\ZD  +t3 `?0<4~nD> GjT6*>~Aa+M6dF` NH"޽mqLZ3K3CG}0 .Uɩ,i*wwHeS5E(?n{ZGΣ>>`W>gkIl - QI_)xl'Lj6ScQ$6Z "AP:րQ@EHD@0,qM.,A1L& .ZsgȼO>tZ 6W0xyVSUTO/ohIU u޹kOiG`"Ҥ~qV;oPɗ޽Q>dD.sЈQp$iz CQӰy R8h(H7mJ'`ROagSQ5KOϮsOu5[jBlTV-y7oI;tJA7X Ջ/þj!>wt9W~&XSniT񤱤Aԏ3MBQ( rR1.bN!/Ф!ˢfth4f͚: {AݻlSQZ\m }t]A/_RNgTh3ؿz,UӺ1:lJ%aAԯRŒdN}%% ?,i(A֐a`œ3/1)%}q*AM,m\C1>d ykSP)ӆ\.6֮LO!m>3,$ԁH ktRZ-d.nU}G'3+~]:7~@,/OH/I% -RSI -ޞ`bpa^ 1P NCn~1& @MKb_>ݪ%[CU%g[/c_Jϊ"H}(]Ro2(US"m~)۪7ɕ^ nH:УKQ\9G7S',ZY'~ _ 1:lʧ$<$/צ2R4YptrvI hIZFVA{ oj{]q08Zؿo9#8ŵVSEDVeWZSPWцנv[*K~EHJ6 -'# iTߋP/;9uN1۳iE\3@&˷P̤<&i@I3(K̂ v"h܌w - - N!%=Q h7ᣍOơơıՈګ}.MQTݡ -Р~eB[j#mYI2EW #GTA}{*/ /$ دzEXtctٞUOAl8Da(}w4l(F2|ǹΘpI*2T^ cq` [ 3ҖHǰ?L\RdWR R Q & d&#]3'xO'Ua?XSwY0?FjEύwa uЧ;H}d(fwQG#FemU˗/K^K -. ,^Ry"Ȅ#/_'[n?۰?2E qDpRJ1LQ 5QYDc 7ƹyxaΘ5;:.aђ:lj8S+>,W}g8a?a$dN!@}566 o,]_]4)!.[~<`: -ō7식.F[DՍMetٞO=Ay EJ8)rI~PU dCIC' ($lf8 (qqJzf굘:[8k~~̿/\VĎg #lSƑ3DoFHD7k]Z]Jڴo9!TVR !B\vToLk,WģvCy6}]/t>rfgӧ~H0bƣ,F+ : Fr}`0f+WaWlhq8w -˝wq2D89#48bYT&~ wԏO JQXPpЕ@iS oUVF*ٳmemq#Tv>蜼^nDwٰϟ:%bԿ~sg] >CP?3̡Ça`n &L͘Ĥ+ w -?qlhnS2c+ 1xFE6K?z h95{ulbkP32'J_נMK 9}:{EzJR"ty8>7_5u#-S)Hu\: _J]% iKcN}AQ$cơXˉvY`_?a ~I}M)}<kþY eRߍܠ09r%?OisiCnІP|CqU+/K&x /emNwFb?`?5# _kщf{柚Oz%PtǶMeHŀHoX @ćO @3f͎KPơơi+4z8h [ogGpVn zo8JKoXo7g{}Y̱֯O){GTN aY]<}?CI}Etkaɕ r<3 ߜgpWAiYyth膧-XLFM5ma:Z4D~Vd$GasٌM)Z0ogS 'Ԭ"b8 -pXѴw pƱ6m07Ka}%SWEDoS/Sg%Կ_~><hۖQYaA~^Nt_7;P jW -O6 pXAQ9nZ;z@7]&lX -t5Hζ&겢ĘrmS_R<|4 {,zfVkqqH)(éޯ Aam# ۇVҦ0Xٶ,b7Foяx2eqݔqݴuݜ[ZKS>1;n8\jomn#ԯ()NO -rv@Q/QR00 /Dg Sh]DLBj&C.2M0~`')Qe/B}<~jeOAT<%wrm[XVo,B}\#.?.oq /r 9|=]6VY[0؍㶕ο*)aݍwT\rzvݲ%OYk_߽6TK7pAAXBMA*+LM rQ H3@|DΙk _*8~aQqIΝqbؿľX@Pe\E ^}IJ[5ħ,#i m A'eWd'ֱ_2TOWG+[5%9vwv،v:r˩mZǏ}r[9bpM.Ï?#$~gyw?) -7d|?"EPCEzf%Ey9#VXg#N`X?av]xtBJfna)c0`8Ev>!gY^ @onY!o}F"ɲŨLQjQ>=h}udwg[K>&/d⸕Zksbva];Q7Wcbf?@7qIiٸgk}y]F~$]_q]?]6z}N:@<9) !>m̀Aڥ$4z?{1U8^~AaIr6GY _|4,>lګh[4rpg>k +NcٚU\y'ɝŮN} ͸ju1"OCYF}~в󪧫,ڊ$37鲥~9 ]صE3+5nBP7hK+n 8j{?aU{O`)y $ ܙ;qU#<c#C<]!-V0yr)qxFV?i8ܽBvDǧd8 -%ؿİL/'277֓`?!&\a&z]0ys{͈Y)Zľz_ -SoM}ũqG/?gMUYanf -M܃9ІF. -٢]aa-/(4261-+z7Z:G. {_AИL)^ $RAA8Y{b]K3'Ot,Г"p:ns| kJO3x]&Dnn=,Z>TL+~3YBԿԿ>udVg%b^HtϚ.C`3!q/הm}iA70숊ON)(كx %.tI^H8:;TOcQ?IQR;q0Cv:g`R6G|BDt.Cݝh Y$2ؗVF"%ԟ'ɞ -KJwukP*e?xlanFJ<i]@E 0pBᗫ,ZmDԱO,GOЈ̼*&~Ex7j_S>v@#8G<,"Ln%?wშ x -Qy[qȂq޽g}KtbJ‚c#Cpnط4]ZеJL _eݍ  N)㪮ANvH}zZ=uB~uyq~VZ"ՉNJv\5''*t6;b'y'7U-70C tqhǁ i @.ǃkWru3EGBZ%\4Y삒 - {.4<6>ɺawuYQn&sG=`/,sbO`ײ. ];W'MDgPhdl]YCB(9i ?oeEFcK s2is4yЎ -]Ir=|tmS2r YLxï;"p$&ި'0/1>@/>Nm{fk iĭld {W66M"d(."֌&?E9}D1~cs[Ã0}/rFtJ3N`8aSe縐cȓ!𹫴v/cI 'au|R\TXuC0wOs3 KBHo -i q;.^ -%Ӯ'SQS'W^Z%O/0`_l{a>n,/PEeU|B߶wu3opa_ؿQ+\A i@=$ A!>H%n.*>V1ɀ}m]u!Y\^]' WVG`/"G;)C8wRǒjjذ$6\VHƖ]\CI};4A{_9{3І+h3m:iU+ HB>jp[;7]N>w}=ƾ>/z46\|bJE: rᣏ XʡqC@AV*[GyB#cS2%ARo>5riи݈}\}lTh熵}{rݚ2* n+6Vc=|cpDtBrFgjXWCA}|頭,-WeP@Zqto%ڃGOě?]W 2|5i ^&X 7[,K =F?FQ}`6Uh_Pָm2aDKW?ZS"i{k+J -;p~^Xte-Kg?F 7߈a%q⬉k7xFB] -Vhs0~RA['& gPhlo6hhW>Q}I7l\hC"Wazxun/JFc_A] kbh@lvסbw:;#%16_rNvLiSFa_>`_$ X>!1 ) -F=- -ؿ؇atx}UYQ>,k(Vذg<GMwy38g'M mHU!϶6 VAI -ץT]W>ktcwo`hd,5{sOqk0oK˱cħ 9 @t^<نΉ:囶-nkx#E6›Sx^ЀS7y:x̧Γց((lk\R J¾&?`_62t1pع@m0}\#Ը•G?ܓכNb?:Ca("&!9Z3b&b_#8> -K73%MiɎ:*s~g-Z FYq/kyM3P )+R('}#E+SlSkg6o* kW/vUm,i[dPR9.{;OߑW@[ :?yjO 8 hUh+{\߻%,J2B P oTX `s+:fN -0q샑u`"IAA%CE!ɠu?x )Nn-pjtW/KK܌Hru?6GbR'1%3ggQ<3흘9rBצ>&wt+_+ZԧvU8mL5uL,6pj; [+xw7 /} -.ܻ{B+;p sJsތzVe5w+,-8vF>u`/8ڌq'a7}O}ww]RcRPhFJBtDZP(]ML؇o@Ҝv!T`M mi -vCIzo,Eq1p+__@ԟԟ8aا[n̵R:?8Zj3mz/; ->wD۰ - ##fHu4$a߂-YfFFPR*bt谯P>U^)ZxmUCҒbB}<9Y,B(/Î_褾>)?ΙT^Э)]u#C0ZoUAPq_3AKjl6jC jך-|>!1ě{Zނ~Q8XOG?ЗĻe:܀΄ĩ()TggB:el$Q4^gK}G(HB]HzoZ}I;ښdxà V,q[ 2`lȭ)ޘ9u/N$Sѭi MOPV&&΁#Jչ 8Lj!>\̑!WtPAժJϜbt{Z~^~AěLhxz[uN.}Op>M}|:C_IqC:q NE2ʥ -B ,X+` cӗ)53g'baa})[DʊsRc#C1x]eZȉ$jנuwҔ%j'QB:ЌoNͪ.,K#? SP"Q}a0Q?)l+Q_zH_/^9ygֱkq[kgf-I0f\Emil(%M"(J=JBRIFVfvٱ׳<˙y'|>tOtjn Mģ=Xޠ Az$e7E%eje}Fwz::g} ͍ gOC阆0h ?cBbsH_= c}sK+Nl8a i^b(5Sj{߻;&24ϛ2 MQ1{WګJ4ÆfE[%vpv'@FN^!F:Z"^}!Rr򳧅k@}񗫣NroN78jGI|K?x{dL\B|C?C౏YO -_0(PHܳkGXH %$j L(EVB>?JLΤ1 -ϣ -^ !/ ,RZ}]*:Ǐ)@}Z2j~\Y7yYQK8oֺ{6N.Z4b tNk[ # 9=Ocs_"iBµzݽR(m·mް dg ef -COONA}hI;N k9#b^*17Tǎ<7.:BH%G{;[(PbzK[)(T4b,(vv cR؜9_ImrW>ꋠy9Sy̨lc꫿׌} 쟛67v+U-7WbJ/3+j5ݼ >}vE;zb_g޿<(<ަYR{BpvP?ssq_t6V|L;TO+wԷQ -Uh׷{OU7}> gubƬ9|-|Ǯ}B8 &VZLR'@5?,e ]VU?SRDJKIiXxd 6"ukT4au׌hz!bчG^UVRT)lkF7gpt\+)LLX -c_k]Ǎ6R?ltkD'V^Ë{C%_D?RkھΩoϊ'awhЊS-g|'@z֡#NJJΜoNk[;k7{b_ǞЧa#?lj/U^(;] ]fg&Yͦal@cGq`YbҿyЄ@(D -&}Oɤľ8 -0ϣ ݈{vѼ|S+ ɰ/5ְ)Kj+rv a=WXTR6*~;HNNJL)JO? s&⪝®څK sӖ{S3/>]vR-bД,_'t ` -Q3h GyՁЀ}L"Gk }+q~I"45^);=%kӪ帻Β0ZAdꭄ}mWSK?k|6u|EDťgaKP?ϩXv]Y5 P>QIQXTZ=KOͥˏZ5t9V0/ ޾}fEġώ`s(vqOki -}#-esNf$.6{y3%fBwMϔa_iRtR!)]_}NLMND,d8` ή&t_p8;-o 'cx^lJ&R_ܨBм7dpV6/\"-[ãcR3rU5 װN[uM+9'DwATXR m`Qxc0엇WӦ$MSI{R+CE[AQDAW4*{#[@*Fe -"( Z<߻x_؂oϟps?ֱbշn3ܽ p@pxT\Rj&Ҋf~>XʗFmY@3){" }8>,-? sҒ#BO?`k ǰgvM k׬\9^ {&O$_Wɾd+N}˓ǣXOKEYiIOuw63b J*#M2f ;Z6Pi"y*5;XuMd0N#bR2r ˪`;0F>B4φiEyXU W?Sb7>щߨihOwz`HDt|rZfn!$źvb -d0kg>:(>t^K7ʲbh @Opu23cRQT_($poq$xce-}&Ty$JX) ,S~^O;C…>0@eoJT`9q*t;Y;1iWTZqz0'蔯?U[7{׊P}]+՟'֪/LYϢz3WB ->"İ -/-]FfVv|OI8w >{d1e$._LcDNygv^%쌔3aA@O7'{ks{wioLAF -ȥ za9@%h|:*?wʲaO>@wu@_((NM u0DWKCmZv/Xȧt),Os%aCǺ˗ Ӝlb -YsftDT6՗wg1GYhgKWV^?][NP|U5 Z/^C GLc -ntu57V&E`L 6] -:Jz#>{J u+ 5d'GAB@gR\ >'2xmW(,AĨkTM-܎xDb,mj*s}vQ}&IGFaT~aNFqU!Wg|sRK~t7OWܶ!ðĔچf |57ςGm -~6]r3S#BOuwq45hi1ZDQ~,^@Z 64f}'}Urv~#?yd+sM}~DA$c ݌ ^TW]^Rts49wh2Da (j=G}2LW\rͺ hfzdPXT|2H%F)Uw?L)Q})ףGaz8P'3?RZ5w"tu4tZ:=~"0$":. m -7oA #biO}X]PyJor|td(^WG;+3]-0x D$>;JƑ\'ʾ)o3^KǑ>0VLa5mXD%ǝ ; a|TC( *Z䮃+3UT}P@(ݨQ&8So2=Cӏ㌔QDc&&ʩODsULgSŊKlܼE[blfeq̇`?>9- 6sb]SK[ ? iOc}WG,}7,h?5e& }<ݜA*wm -v "T =T~+M,^Cf -bʹ2*'lBtD)?/W*;oۺYUEi"Jv<49Z: S(3E_M}ͬSHҲJ+.s2 LWS}ttFOWG+ِ㫾_.DٝNXZFng@p֫A[;yz<p6=+\qYeM=5#9nS&}0@kݝ[/5T!d$ƞ :}!  چuJ/QC^cAA/ };F#xd -?ee<3" k)a%Rb#C35=w.Da) FLQK>ٙrTRZTJuL8xxrSYUmcs{gw/*/iOBQ{T91 -t\p_Ozz1؟ja+Y_]{A C·x - -;RN} siO{5{)kK -r2Rƒuwq45b&Ub@Zz%9=}Q@WȾ1g s)(Eeԕ憚 ӓQM]YfHYf*˘)na?CeÎ RJdoTIs툷`Hdl"=vtDTgѪϦ(Wy7hgsTT_3QL[-60Zk/X;& - [SK[ãR2rJ˫jݽ7 !NLg|OsDC -g|пThkn(=_x瘇#x h@ҒQ r |$ R9G<@f[B(r٧"``jhzO喦Lpӈ?oOWG[K TW-'j*It,Ť1K̝w8VIU_BZFE[p>#3k{ѓâ~y?E}q<΍w1%9 M[$D& ťTK`A@z/FP9f|5gp'('oA)1\)]H3.$Rrv>:_S|85h>P)=YI)GH7C/+Oeb -Jxv W/ %헯 B%ʛB2t L>QÂ|\+9/\sNc1%9k/(,gVT5 ݸykbq>?so6>厶e)qL('iiYH%%)!&B5FpHρ'+Oɾ%- )$y{I9|4))&95iP oz5Ա),Vg'#Ny;enBɩ*a$tO )25N'wHdlbjfna֎+}_ݚ|ߞPJ'9ͩzmNfJbldHլNTWoE'x 7^ _^Q1 k;ppx+1,uS~[Bz}tZOsC O~Nfj@?$ӕaocifb}NA ^q }V^%Ⱦ*}s$>WbNu)}bF?a=&td db*!6"C`PhNFw0/-\R#"*MjJ4u M̬iE%˫.\?2ۅU4735TÙT}_8>)8@$o߉v]!5M3+['7O̜s5 m 쏂ܞTp/s=>v[jK -sҒb#C}ܜO27=fGv$ l@1P 4gl@8eIiYyEG%4hA}M !TWWdg ~jnjI%)!e\Zďd O~)lRNQE񓖶̀HTY] :P}`k k(}tgtc[RU}E'롈aKl]WU58~704[PR^Yr8`_wxq?sAY0@҅F~ia.;lBlTX#t *H%X6 h }l@kx|VcI?%dZB/ܬz*+eEHPc#CN6'T=;oٌtTD b>S'"6V,+@u -ON/)'G90 y7S -$ ՚`'~G+Rܬ$VdhML4F#GDT9α8l]ڵGZfl ӎ~؄Y%Uށ}O`L#XWUQZNOId.g-O79pID-lX9s/D)'dP+dopi,?ª`g>y_B|~ >9Hܚbƒݜm,Q5KC*?n܁G4@rzxE -KS؟Yo8!'1o[+ʊ3Rà {K3c}j*)e+ 5 :83iV7_F: YX#}W>2PSQZ`Ű05P= ubAUʜh9KZ?*L#kO`hT\Ϫ=Cܭi@k?h0G4e%B}P|BšdkBzi>N>ƻ.*u;,;} 9&f6 px+1%Wدkl%?`>fp-A>ݦeIOW!П}{ "B_@/-v W/ߠtv>FE}?tѡ΋mMVI/離41Nv'edg"`I"* -((^.pUzK/ -ʥ (DMtMD1j}9sn!]فy?ϗ}T4XZ OT`d2' L!SYU]SДdxtBj&K祫n ݂9~U#35s@ -2 P X>RlaG -YA6{S2ro:F=C@ oh;P[UQ^f̍ t45G@?AB\ }ĔO?!T2Ͽ0 ٗ}PTؤ⃇i?2:> Qi/Qyёo}}k:nEY!'3%!:,U$f VR]X5Jr8?iV=.loT4hT fљ~"T)Fe9pT}҂xRWS޵pU˨S6j5Vqhr:Vv,Phdl"`?c+=E쿟.<ˀI \~\TX@_ :/i+A}@L)A1@ GMUpٿ70LKd_R!yPs`q^vZb,!fFzZ<\IŲ(cKW ->jF'vG E֣Qfwz\8vhmaqQ,G 42XȾz5L`dA}j@UЙ1*kY9y$fWVדw&i/:;'":=xy0F趥)Qdcbf'OW,$_"pĊ[GKv$\;miXX;zE%fWV64oؿ?8,GqcpC_#OQП gx}~`I'+-)>`cijW  !<#aПa/œ}HR39Ee\RA>Dì%XS^v6>6kƵ@S[깕eEԄ`?/,SC]MuU`OR Kj)Cddz1GPPxKJnB~.r6,O@ΜCGjc!5Do~1:''5C0nl*J -%^hO-cN`,3,Jghjacp [PBbp?cg>3f{ ~/@铭-K 9Y@_Ow[K3#}jQ %!.WXF 3> -J*TS}WШVMcˉή:?kNjC >xw`Ol?PsdXlksw*! ,Ɇ6E2;%QvnSPR [XVk}׸0MR3!Kw Th]UEY!'3%!: %30Cyt01sP} cI\Bj-_mSPܭ_[7@xt<`SPr[8_2/ ]O8ٓЇ ~FWcgc"B]m̌u4 KdH蓥}$0֑BɾԬJn=IAD O}TѲOP3 5'XT{/;}#07#9>*4іTE/7B{Z)MS?gPNrR2T32… 0-+puC3Dr?1ݗDWaץpP:A!8Ksғ"C}Z[e$DyYvV:{Tvn -(DЇg $MEм %bӲFȾШ܂CU g.ѐDYpS̚{8ͬ3Z+ˋRbƒ Q5TWU޹#kLO&^5Er8:&W3D3ߡ'I%ᱶ ߹wo4P}+(77q+ˊ8ݝ퉺>/8UP}jG>u1/)-#;,KCSG֑[M!aupo_;=/)菎|п-EyH7dgmnbE@FYi~>bB|ZΫD ;@DlbZ6Sg_?dԟ/xy||lljFTc#C|.JKDĞKbRZr#TR}$/(,:!%SX1C 7GƉܜEn -&Oؼ9prWg;ࡒ丨@ܖ,M قMpPTy[_;unߩ506sd ٜRaؿKa)+4/;?A3f?A?vuUpN^ܙ6 Yg'"F}߅} YC")I̴PdM{=Euf繟gy47}}+scC}]MuUeE9>B|<0z DCi**!-N]Ko3+{l֎GRؿyV}\pOJG eOMAMYAv Tl`!RSG8s 7/m\='-#;9ؖjꛘ:R65?~ =]8]z\b"B|<\l̩)ÙҮHI 83sѿ"D쫪ko66utubIKc>l'_7Dd@~B@?F?"4@WK@_\DHk~ПF~ _c!1Ii9EeUu-]}Ccs+;GW/@<ut{ǹNc"a'ZA{AߓdPSQY#.Z`w !c&?Z<-iy2ͭ]ܽãw:Tp)R-=c!cXz:[ 7SldKI ܾ„lUiIZsfϢ5fOMYgzM]#,yۻ`^1bjV5޺Q[G7ٕ觇Շ*mn|454b"C{9XSV!v%KqT|)~2`jq̾f704<*.!y 7-`j>#'c0P鼃[wѿƁ~|tDF@O{jU+1~3o3wRu!y7sڊ[56qϾ#%egtbHl RRnA77VW^XqXSwGrX55٠ Fb9ZWcgM,Q'*!-GLMcsWO+ڍz<4ȡoìJnJ̳'-JOM -vw6C:%9ԟļ,3=f%/f -g`hbnmُz6/) &lj>6~gOtu qFocaj _Ї}WXwK3XGΟ)abժ+U$e»q3f?$"zCJQWB4߹򸽋b>'ݝmkW~:w(?;#-yWLDH9ܒZVʘ?ȩ?OZU &hhKJI%WC3#̡GfwGu5UJs2I 7%'[KCħJ4' L8ohJ[ \-*Ag`dbam'RWaowv?}؇f}4 ƳBP[s*4}ϭ-6"*2G`.B賟} -P@KH)502scg\bJzf#%'ZmZ}Q>> "Wܿsj9؝am-L6oP]+/#)juŲ%V[3h9'&fͦ&7 M*gfef恃y'NW\ؔPǘpvYg -g܀ gEi]!xd#S^yxqSw8qf)b_PXTBJ_A[oɾߨol}N?wxeb"Gq>2D//'< -H}K?<>!Lgs>5V!-l]=}B#bdSpUV5\zb`Sjc]uK\ƒܝL P*B - * .]_5gJ`" f:u-=)mMس/#'HIYȼ #sѡ=%'=zpVS ؓΗ9/%1ngXﶭNv٩(JS ӡYOy ."#WX`d={z>' }>~ܟ`oЇ.Ы[^ >S}<3ٛҒe(gWzKյ&H{ҧA$<0:К  ŅyMܘ' 3mOb^vG`_HXF&$'+.ׁ]O?_7ǡ=ݝ# r2fʊr2; Gx_s?.d[؟c/ľ8ľ@ܫiEefcZT45M&I"%$P!RJJ*Yl!ҦM/H-w6EVss/{?}y_3s -J*k[æKX)Yl(/ûi a8XO8r޼C\EYR3gL'{GU78+[% im0 ?~b>b?VVQU`;:{M"ܧ7'sՁXЯ(?IoA_]Ue$~3iDc}^}WUi.YpV뀓Iw/߀"XJ(XZDA]]-.Vfksc]M5k.֔_/ǜv].@ʾYS1gJJV6 rՄ7T(p&Q3WYVRT|%?{уmRoN}yjr3iXcC|\UI qGُg54Lv{g>6A_%ѿ3\501P>ӦB|G|?x ±=$]k6oi PWVB '^+%k3NrZa.kW1^9fzC˖hb'-o7XG}G]p&1ڸ OO!a}Y\Z񬦮U+cW>s=Hw+%1.*<$˽v;,Lׯ#$*?x`G_<9:>ɾ..~!aq S09~%~f߇Gg{9o~omF迨(f=oFߘ@_ PKHL-V} )̷l߹gcg\ MHN #+Fz^[j^WXWS]YVRQԤ_/ܬ{[^|9Hadkޘ}䕤Psɲ,v8x~Ađĝ܆-yƿ,ٌV,+ʊR`lWB/xyiu#hm tږSyR>o/!Ⱦ$@!̾ӱ~,r`e}#`;:}ȟw8?4a>vD/$Oxyj2@-c2hh-] f9z s >լ5uͭL68^" ^i_vV[KS}rZan{:~.%fCzSw]‘8wEZKmܴzήg<}.E%ܺIv~qi3HVnZrBldXEsg\۳ssWj/V6}Fc2E?b?N %#f%:Zf켂bZyE~s+nBG?b#~gB}ݝ>UcC]gR~C@?:1HOOc}] P@(U!bjNN{s**?{U n^ 2KxW=fgj'ҷ|?K>|L|~._VQU ~DdÇ =]lЯ//-.!#BDч?]8|&M$g>_[ه_ݻ<|5Zg.G^Mq~n!b_Z*lE۩I^'9cx*=]m u_wGkFXIRZV~+ѫ`W6qv%Rvϝ}M?3ɾ`؏J$+VFoic;:QB37){:LFksS_]UQN+.~@Zlte)SR58+?N0f_2ܺcG\۪k?Ʀ~؉."]ieK-$"xB*hJ83 eևdV 2LKG;%Pǎ UK+SE`9":0ׂV^q y5M]70426>`|H<aZC?=%y~_[U^R@?%1.ߵ>ОOYc{}yGcihjsG,0 [X*V ,i!T_+}aDVˆzkia^VzR,.,"ͫϝ>q}{1 -` L}LjHW~a?۲}B:yem[;zU_\^ R7H 30̞ټAN!QJ|LD}ISLiU..y2/`烰L\e׃oa70$OHN_\VYSC$S'l.O OMϠ_}6KLE>bL ($BWGk)ёA~͕B 9z֫7nZ:yDR3r+j`Q2<ٗifB룐dKtq67ҿ {&;"i I}9_& PCVF2 MB#i%Ҧ{2₦M /K?~3ƆiNpFvRKS`՗5ŮJU¾p>>9-a.~Eu]cK[g7J}dBxzI9UE>}PFdROW{kS}MeYqA^vfzrBltDh}wXG?ݸ %VskOyEeUuMm]D2m Q_0ΥaP? '35hc3aBa_.4*em۱{}vS{fVv>KFFE`s*$;Zj*s2ݜl-L n@u{AQn)f m_` =s`¾o@Hx>>)`?K؟`8\@tvI;X$8lc#tj/N<."$R诓@# ?XL^o>xǾK,}CbqKdqNKބ>1.dlxN&t5UlgizOOeaٽc7!:a N 3)AԗE"_pDL|JFv~qyuCK{77crx $(OLaMB,40"XYQqA:2gNj<zr 10>#sIu ;yE%>yTXR^UE i}C#c &ES@!쫮oEvfJ,@txF%tw57UW>HKC}!XRCS_N` 0T?|\}侍?ُ̰ۻ 0W&'1rH_c( 8RHŏ$#67ҿ}=vk_JUa F}lSE<:#41C [G7H|b*ԓ'; ~&:Hy`JŽʒ̴بP&{!8[u4'(37GQy c?8,2&.1%~eM}SK{gLú?dqx|H ߗt_z>} S"ec#C}4 -P[@AjR<>*<$ @_@ _3 vH6K:w̭=|pIYyuMm2 1 1?A:b5%9 /7G&wo]oE v*b .U,O7.^EבO`. -E$@M2\IMu)Fϑmc-IǴdFJ|LD+W.=u\nIjRآW9_`PhdtlBJzfv^AqYeM]cK[g7BC?`|P t;X$8,&}t*T_[U^R(' @?.&*,8@gU2! -d-v~ԏ ghja넨kBjFN~IEMCKG78:>*QL~B0e3 Ȅ¼ب0Nvto\x )Ŷ~PL]-SI h}_kc46vp Ǝ#k%kɟoIcJrfJ$quJJOÅz[II-MCؖZ>b`r_a__Ph.6!9-an~QiEu]Csد(4xnAT-Hコ{waYvYww)1.JLn߻Qtst|rzv~rB;|z !XWSYVRdgmaW~9&.^)G@KJ*WghjeML/oiG>֮O=+sCc+KH2x(NKS?sԉ/}^D$8R󺮡ohfmr'lɔ²&Rgo?12>=F7ki=ӂs;}FTV;#uqd\F wcwc_7 fV.ȘT*b}Sk[gw_0 ,]?Ⱥ7? CɠS)䞮vRsC-@ 7+-9!6*,8{SA{cE;piW#k`laF -NH-*Q c ^K7+p:62D8VZboefzEWCxEC^<"R'o^ [q1q)mdl+<&!5+ ]3%赗ؑ>#klgeMKQVZR>rO`7߸xdؗUPطupv#xFD%fdW[Hݽr_( ج }=mME9i1a>.vV&w蟖@/] }|ž1 _]oīw@hd\rzNAi%L3ǀcᎽ6A67=1v5Ue&Dzv r2cc%;$OaK;&vN^Ii%ĆvtZSdG>~ħ>L}Ί\f/a0hNRwXAni 2HlZh뫿.9ƾ<}#3K{g^~!Qq)Ye5u ͤ2Jg0G'gr˳/`7"06XO*/)HM &8Z8pwϿI -/^V8f+e1:1=w|q$>xdd+,c _0_H&Fy;Z)?#uJ#z3^ymp\pIq+g8RghfȨ䌜²FRgO?mhd|zwfXBGgY-YM1dx+aFw]͌u4+RJK7,ؑ[+kBM-l\zG&$eVT7uvSa̡7 AӓLJ!tj*S#B nfwtn\vY/?}R؇z݇ի9%K4uo8|âS2r!dMdS ,dhbAs}w^{avj|d%B%y8[iPr^Ȁ$N HDED/#5MFȰ|¢R3ʫ9+rY#]4<8!ܝ,MJZ$<DRkRv?)!%sd_mCS k;GWOȘx~N~QIy<@r~"?K[}aCGsh Rz:[j+ʊ rScC}9X`_x>9|w2iYE,_M=C"cҳ J* -2,#G)NZ L,8QlbZv>6+*jie!!몏O}8*x/HUUU</ڵKJ.B6$AꯙնI|?xǾ;?(4"&>)5#;G?:sms& Bei0Bb >mTO(-LKN pu0k^+)ʜ?{?2n;p}g]I:ЯAүe q8x1x퇫+ɱa@_w{ 7`Ã<ݜl- t!ergŎ="*<a&ٻ:," 0Jn SXZU؜;*)L}ޤ`s&ŤS`R ʒ,23@`T9wn]]R[JJdj7u[:8C"Sҳr *kZ:hC#cS qso3עaʬ 'GA*Njn,/)HM pq01}K%y}1ɰ~Tՙp83L"5qQ@wޛK/r{^#6DLLVE1;;s/KFfw'RrJvnxBPxtBjfEHmJ",=`@OGK}uYbY(gca #!*ȇ X -eGPِ,.w:*/Ԭb ;1 r},/1zIGhʒl~YkIIIqI"SJh3Gf_^̾-ӛ_TZQ];04:>93wiqHٓOGyاo(/ T 9o񇕥٩ʲܬĸ舐@?}Yi Qa>y(cb| C VSXZU?<65|eا)!%`ogkcMEq~VjBLxhk?7繳dˎ}^HA|t7$qT)-gdnEI9V7^^K3#- 5yAy9Yj"W/~DRop?Y?5ܼB"2J*jz&68'W/_ȘԌ’Y%0 `AB*s3C}m uE9i Q!oO7g[+ S#}M}) Q!}ߜy/OÀ=%8rYΰsp -H@˴˜ܽ#bӲK*j@N\Z{]$A,`FG}fP;@6n^YYBI؈`ow'{+3#2f<̌_SAXF5*tA³9N'%oG_S2rʪ멮whw=U2sno*+HGQ8l.h_8(+IZ`Pp=~}l.ߐx!rf6.xЈĔ܂ʚƖ񩽹}>m#e./I۴?=162T_[U^R@puZ"+JytclC-#,E[GW;}bߥ ၾζƺʲ₼쌔ĸ _/G{K?/7?Ա~ƀb 1$%5' $2.9=ohljva[1OSDΖ.Lv6Ԕe&Daudgc}y>~#o"Q\ZNIMSE(JJ.(%inaim}s_p~ۑnx7Iqf,ǎ"tLA&:Hގ|K7aeki9>-ӛWXR^YS78<:Akoܿ>>g??>>1J -ɱ! E9Y) Q!~>xwG;fZTsg$l_|Ч)Xf0ag:u>2Y3/Ĵ|J\Z b0fO xQks֍+ Sc bk+KAy;YjBĄy8ϝe=̈4,a߱f| EpN\`Np;jchT\rFnaYU}s;Mtcڡf9UfJk`J+ sSMuU9$' D_XO'nCѿ L9UP:7419zxFD%gUT54ut myOHCkПT_SU^RB?5)>&2,8@F_UYQNZRLDx K}T/N9 b_HLJVӋaQ)Eegsobo\qeq~,xlomn,/-!"KདྷDZO(<$6v.x1i1 a y5 -no}Io0ȢGhk+vqJ\lgN1SBOGWRQփ;}C£b2sJʫjaw{ )?E? 4C:%Gz;ښ+ʊ rA'EGzy:l,Lu4++JK AecE?A#D6ʼn0"?$26)=?WTgî1UH,tEQiC.E{w)R)JA:ņA)&잳}{gs''Ox~SQswȳx?:hS&LJ;ۚʮ_JONruA,,X1g(XvDb?XP("v Q7Dq`4R݈Sڼ?;C5@52B -rs0צ."x":tw.]VϺ!6}cE%edT5t ,m\=C£b.&&fd\_QUu>>g39Dy>gV%2^nhmQWSYVr=?7JZJR|셈 O7g[+sC=}UeE3R!'yu^!Ճ{_@#!#; $261%#{b&MM ?|gt@cB5Wd<#wz:PdKǎpsFgb;?Ƴ=#D ))i"R’ֿݺ}ghé~[!1>CFؙ<7 Abomfw^FAPG@5҅Qo{h> 괰o@pXdt\¥WWh^ɇPgfqE#3km@џBчЇEZNfFjrŘ@?oW'{K3cC=mMuUe9)q T賠lk诓<;NX)YEsZz6~iyu45 wh,%U豀h8HCwPU^MMx!,PGSMY^F#$χh,X@@1K֍\"D5RL|rzVq$?AfA+}D!،#w{n77TS1*4H# 3:q6ƿnWlS/#b_HTLBYsu M̭l<}B#.']_X\ZQ]t Qb "yibu#ojNEEeL?prblNk*ˁe_M|)!.:2,8@WKC]EIAVFR\T@1^~>bٵ{7t ͬ=|.%^)(ih;2gm-sSGcÃ}ݝmMuU2ӓÃ<]{FRL4XzQOYDhH -h5ըolaODE HFHF7#Sէ#"#?6DQVzrBLD9EU/hFmb>!HHSTV=ghlfics11~^AQIyUM}cs[[=}C#PO-@ByL$,pP@FD ~b(WRc/Dx9;ZP;$/+-)&*|?an.6{X>A[ ht/ $*!#m`B#Z ڵj7{ǎ'V^JX:1+x*Y2EdPEZvFJBld4-4Y)qSǏ`;c?(CbFtS310sv6cIE=_$ˆV_GĔhB941zoVG u]s(.RRb"H1ˆڽ뛏hoK}#'E0R2r -*ZƦv.^aqgUT54BݿON? $Lo -%v@[7;ښkK -&'^ - pu431>Ni 1!*9?A]Qc)Dv B46N32vp ON+,klG" 4"p & -dƴ.ₜ+B|ܝ,M t4T%DPe4~h "}3 -cRFo5R=7!@}'LJ^lq91$dkij,/#b͡\+mL-cC\T KJ+ih[:8yF u}wóY~@$/{@2D\\agRDޝ]M ufAO rwq036TWQVLj cw~O~46G< &khjeA+95 -]wG<~ ;@ /?̙vkPj^/xԣcCw;[*K s3ӀɆ#&kef0M#Le^]~eҌ_S7m\C"bRҳ9~cB"#k"-AP[c]U`?/Ws~bC߇}}}9xpL8~]%XUeҤ "XE)RDTQz&(v:v=u.q[- 3Nߟ컟KHU5tLͭl.n޾܏K<s?#+~SK{gw}3sga07; BM=]͍0K -r`_L&Aq`gmaflHfu?Ƿi}C,5/0(8,2&!lZ]S;}ɾ&,+bXKڔ*+HPQ23TU%SdW&3P$`!9M<*u/^\CH}cC3cC%R/k1EMqh@|ܜW\Ck8?>쳰Gf_FV^AIU]SGk"ܿr?~M]cs[GW/ɛg=c> C5@OR5eF'ܟ[| ߼kW/?}0 [v|xҲgN -=r`P@?; 3Vlʮj"kQ -'khje.^-P8F1tU3}񑁾œ+GSo!{+3#=-5e,i+pKc~`x[ -۶x89'OHrč۫bwL,憺ꊲ₼l.Џ8y<ND;k 3c=mMu%^VFrN!>nN> @+ -/36Рq9eSVPXLBFNAY][ܚ[DQmvozҲoVmbAB&FkU$֒Ï="'ZVҲ)-1\LP}Nn>t 1gdfmFO$ϥyEh+8-AS-űap -6PbX}|4OѾbR꿃':oL ^loi*/-JB?0=\mM t5Ԕ x4B_}+@i+B/3?߼ NVMJV^I j٣ã.T6v ߸u#߮݋wmq~ѡ겢̴䄘_/j*bY -YCo\{I&c;>V!xx[(Bg-_RQi)0^tw_ND8 tt^JN 9B0V'B"Bp)`"x>߷ψQv2|de%5Mm=cS k[}o_aaOIMK-(*mhjm߼ٟcw&W>BW*ySm͍u5e%yٙ׮ЏBt`? }Wg;K3C}-uU%y9 ?/Bo{>N5Rn-+ $".+hX:xYKe4]o?~ϟl k'ƞ> \ۇ\3)%Ąx8Xl용p+[ Bp<2x4K[ݞ{E^t )*![p~ypa^B#K(\|tĉc|,D,t5},l;88yw풔4tḼl]=P 9rl2̜’ʚΞ, @H~]>#7WC|tx 7+jjyPzw"Z[ik(2R}>^n>+ -72FS?OѰqm0fxaJP̚[;yE$$eU5Ӻ5Lҽ J2 '=BR\ԩ__Qfw?&]][0 CQYס{PP"ޤHEĶTTDݵM41{a=gE~s~/Wsc}mu͂\6Kr>c))$%JBKJ.(t\ -;qډoq[Bl<^3VpOGKCuyQ^f* 'hcab('a Q; -7C,,t_JFNAIUMC[~`q)P KʫjZ;{zGF&Lq>U d]!?P3ӓ.?7w 7+=УPy{9;Y[hSe$%wl'xy0@; 4QfOD\S`\stw)͞p> -cY>޿{ȶ0콟~ur`og[Sm%]gqsdKmJǸ0aQЉJM]C3+{go#!)9eU%4615¹p< -[85?tcfrf\WUZBp(`H"+y ?e>Ë#B"eU(Z:&f6v.@ ݏ>u?+w`h8 2_~}H>!W/п?z~x(?'3-%1~@(NVFjJ -r2RvBIDǻ@d>WEx0^fDYdN )YEum}cskϽC#bR2rʪ`819u!UgrYQ|"MMnoGdKd -vw25դ(KKB b:,xYЉ-',2&!53!:6>fa$1Yl8X[Ao=Nvlv&,(@!q떺"ao[xxq|~A!;%$+*kjZX:8zAr<" -~ZfN~Qi~sۙC2`+FSe,?-gOп216:2:V~A!Q1(:&l!ي+j[>{泯J}Yd -({IګTmm(:{8@>6c}mu;ID>HM}vIƉ!OZFdcji7 z#wĕ l=fő.8 -s2R#BX,DP;|87УY\e!ypx>"?,$M a_V^Qghlfamt IYMosS}}(/Ӡm UE9i)q1'Î9EH_WKCMEIA>0YPHxӠ=8}D6L6.>"bR3rʪ[:ΏMLܼ}w.vm4 v5Ud%E8v8wЊ1 -K6.lFD;HZ^ v^#)h.O]2eaUXcO}q I)jںFV6N@G~2&.1% bg=[l.wt_^Rq:9TtУA@wsv036T(+"m"|x -?N>nMHd6ye5-= m~A!@hsжA -,Зx@^0?3RH}^?{3Sc;F M MLTX nI ( ;Fb~P y5 teڭ;GCODFJHI/b̍[ Q&ZgTO,1:;n\DB 7+=5)>6*xH{]jkpn-Rnr)Rwiۥ"E.@A " U"fwݘ&~n莫'@U+JK1T -Y}n>ggz\ǨN Zi9y * M,lX>!1 eG+8l6mfmpv7PZngoOdgifg3g -D> dmr &Þ, -:!-%h]`%/K 3Ã\̌ t4Ԕ֯]-˔QHb+W|+?Njy|؇?_a./&N"ShtSZv<ںF;\=AbR3 *x"pރ<}5@L~O+.PY=7c1طgĸm!A>.N֛M t/'ÔQ)$ q$"0>̟[ycmK.Y!*N`hh3hKʏWpzkGw0˓ܦ^0܄mN7$nϞ{:Z656TVfF|27υ8hd> A..Ae-Sg_w@ q0U4| -7h.{;n^LɊޙhJ"C)8lGY}1} -.)%-#z Z:z&曭m]ܽ|B#%fd"bcf[GWoѱǀ}$$S3z\7:}aXn؞%Íh6!d :B&s|o3-Ⱦ&ɔYf_PXmGng_mGp{rV׷9moW;3N;|p?["-PWky9iB]!lރ -C>p>QaQQ32C(A;S ;йʣŅriβFsќ> ?Vnb>Ed*M_t_M]S[h?pKX`?%=3'`/`l?4|ebOVgW''z r~ܬԤ^vhiࢿf$J!KyKlQ --x zҲ<|C"bS3s UTԝklvȃ8tPP=xxz ))ړ##9.*,9:y9): t[Nma0 q^IU!m=gWң'k]8߿{5{.?, EXKgg$G{9YDt ~I>!3!Id -ΐWn7465sdzx!G&$gfs7Z;{Jb!ߠt_lo@p֨Oi]؋ǘ죃y/ٍ?V}٘С%elޮ[-ךk d$FGm pe9Y[oT+JK14 -ρ"?[vuJi-m]=¢wȱ/O= ᭫woπ߄i|lyx_Anfj¶owg{k$jʄ"qۻ|pҐ :fߠؤ:zk{W6< OBOp7 \mj iYV546]miy06>*닗lu3n_n` aכy6-1624oo꿳 @p˖XP*kX0 KSTR~4Vnhb -:meO?$=?<݁Ѕڪ%Ѐ -e$+Y~*'?>}E}}q 2/-#}-=CcSsK;GȘ$Eʏ?/*, /͚AΊ(pt]ҫ4EPT+A{HQq92$}}~'gg?C/S$gh6?rTg0wn~uubl>~@ݚU>^.N+-L8T)ÐX&bX?c"qSPV341sr 3@%moCI=+EX-g:hZ>}B\gkcMEq^VZR{wDl - Z`kiY(/+-%_HY7c+@Nn:*H ¡˜[Ӏ5 ?x -;Zˋ2S!=PWX.WWU@ h9| h"sut_E 뾾 -g7o߀~$9Uu]}gσ}$ʾ Qwoݸvy|}Mu%\o tsq05fS(D!)D?l }|gNCo"/6w7:7GW/դNHJ+.ih9s~p']^ufo7pPׯ^lܹys}ۚj+K -AkH]g%8SD}ZBp W sh@eUWC(&P EPy2X0d\WUVs*Q(@۷l Y”N) ez<~A>1/AĺL2`YZwr%~‰܂ΞsH{.XO ~3?wxbV073=91!f~`}5sDI, 7oV+-TQer}Oڐ[v;%i䳯_WkaE{ൈp9@1"{;Yik)+0$̛˧ DfP4uXl {J('P|bjfnQyuCK>} شNE; IC808ݝ0ɜSV :i[0a"}I)iY9yZ:zlcS +[{'w/wwHBbJzV^aieMCs^1[wSJd'!YяF3PQa<6<8pt{sCMeia^Vz -~, }W'֖f&l.*}&%/@âOB`4?xg 8jj ݽ#w;]PRYv!b'OaFV\C8Hn yJc|dxڨCxX2)q; '"(8)tt]~*@G%eW4L.N\q=i"<)W'F.A$ 5yYiI Gi}j_/Wu(?L -ݟŔ+(k[9b쯦{0XRJFv~QYUmckGw߹ FI%x(g\o}ͣ#.hm*+HI:w~1[_OGKS$"1y?c}´V i-Ⱦ$CFg`lfw ^KW\R_޾qmb@XРUl}RkyWdTյt '7/u·F0%ɇ [C(!đt4H$Ŀ[wA>t/ u_QYt_[e`dbni~c=~2TNAIyu=XRϙ?x4do 9BW3xBF5՟8T_]^\s*bwEhgkenjlG%fGIϜG<.RK8YD8Z#ZOUkC7n{(>153`pdWO} 1-qPA -<cCu5Vd<w z֭rbkVVF+⦈<%\Hzv+mپ+)r -˪Q$às<8'AChȕa"҂G  vwGO[CMYa)!9ՇDa~!/ŐaʁtXl31vG?"9-3,% "Rς+qO娺] Hϟjoi(-LK>xpmM YTIїY@}4џ9>^ň/_/f.UTY24E\rFNAiU]S;+؂.l5[ap溪B` ̸-͍ d 1~/DH\<|ֆC<հPG&!$kP.NOڊ,G;A'p5Th̥Gا龘HL٥ -4tmGS2`_:{Iٿ}IrcZD}Tͷ(sT\wgkc]UYQ^VzJb‘1wl H ۀ/ǔaH },y?gLi3э˘Ui(7AA:RzUPĂEEQQQ EpvQgv]1&hvSI?ߟOz[ a`52Dbf]I鎪c';/]݃C3̅쫿'GP ?F@Rp'Z[]}sqAnvZbL(0[sc]27f8:|-TQD%/ڰlgMD [-:oE nw- -Ӓb#B}\Y[Ój?D&WźO`t&}*WSohlfamKc_W~ciYeumCS;GR< m t7?} ȇ? ?2#L Ual.RgG[kKsSCmueYy2SDB}3}5K> }g12=1⦈vƬs*|z6nqB`\:ią sACmA -6ﯫY_N@Γ3lԟ9KOOۏtة3t@j?FGIe0޺~<*?k+PJM fA@<Rv&e 1( H|Ov靆 ?fY(4ݽsMŅ9YiIq"? } 3C}|u5> 'NB_O|f4q -4tt Ḽ/] -IL-(޴ֶb 'M}1 2{p˝gN;TjGiɺ59qQB?/7g{ SBmܜqDXwga ׮m9y| 1֍h)QaA+Z/ZT]~&?'SIݟYsAUT<"=&}B"bӳs׮+ٲ07{OBCAV՟@q߹qPCؾd}[1}QQVbגφDGwdt5*W@BΊ\PXt|Jjv^va\X}-l1`#m4* -n:3%>M9mMu>W(7g,p?,%P@ -A e kQ~z34A>ȡǞOuW/k?q}P J]AzZLn؞RuJʪ_ŀ}w/̜MP)$=ܘWDBɾdIq"(v]pVҍ Ve$DxS_.qUU@bb4RN'dAR[_}B=CS {g7/?ahd\r-e;kCcq(l6Kcgs{݆=rp훋 rRcE>.˗.236ۊ)J*?D1c70$"6 QspyH^Aæ>yMlS8ژNKx:-671Pq|CuϾ_}O` -f%N.޾,$ -Z/\~ y${߾ ؞TIq!*9p߽;WӪ_m59Qa.NKa xUe%EZg`DZ&/%c>P_!jr|EyliE! Q* 3gꠔFr[œ1Q~q3r`KwTgvdrO=WL OzgOx>Q}N?|A\}ÂWz8#OA8&o̺2o wtvX' IHXB~Kk[y ȍyGyb0<E\`aq{B+M~%"$<<lџo~2('v[@Cs"c3Kx NH\vj@c8C"s`8#PA :Ϝ)s(LɼodfiqPXt| -=FG1^ǣ`G?2/>hgLc FTh;LHgD'<9g741[' 84, ddrWn㈐Cw("8#`]h?2|򅳧OЪ_\q%@_>ͤcQOfcW^od -spv -Gr[䶦B'CRaԀ - m;~[ o0̹وs8A}#GPycRrlQ}_W h{“/?w7|Ձ%1n>8wܦ>)Out721_%P B~9@$7f%f0@ӓI},.>3<#Awg%EzXon"}Z&EܞrS34[+ MJ+n -1ˍ;9'n鐰@'.޻u̠2R]mSqAnVjBtxpJKľ-ДaK}GW@CKGM'PQ@+ݎ7 (g:0>;LDŲH.\zA@Ă,`נ -P@ - -jFEM dژ5}{nf=?y{0}:18c%D{9[j()ȡ3 X>o ݗ؇̚- ؗ#gM-Aܽg/1mhlF2ڃ/?y}A9wԉK/E`kenbBS)Ӣ?Ix'RsgILv춬Ԃ ;<5ԧ܀?%=0i=CNYi!|'9MT #} kQo~3f,fzxAO/>c"G}AOB~ 43f'A@1$O$'qt`:}}bڋ ,m\=}h_`IYyeM)l =!!>dqx>ww߸ -niAݽR`owvl6}џO݂+)i豌ͬzD',w)Bk2Xo!!:, z%)AT#,X<;=).24@ގtb@|a,m]<}â+1J1Z1nvc'joE@З@G[KS"m Յ u~%xOKa#cb_򡮩Z`bneEd?=k٪#3@{Y$nH<1'/: sύ5Ue;l* dociflH[ HQp?I~tQԟ>tlS:( !>~ԅ n=AdX싌@#߶݇vҌ@_!@0&ܼc+ -< B?+C}ON7IO'qsv'ABvOoݳPaO 'ؗmjam~b*2­?tBynL|gJysG+.@>oްnU.>:RhkenbdHGS:RџOΜ%;w*ZF&6!IiYyXw;960긓'tL8e%;6oX2gIjBtxb;+3c pDl"Ɲ9߿m<wnL e&Ąy9[#")ɓ3c"vE1?g|9H!l%e0ԟ -QΘ/8<J%eU D]?˷>QNF 'Hp>-xqݪeYi0S!qQcԧo>tD%ݳi+w>h,nX܋)Q_1#ē'Qinٳ̞%)aA@1t?ؗB؟Ba }yE$4) 5)ھ{A j~`?}j*Jwl٘<;#9>:<؟zȋ9LFA_$%~G}!WyEe5 1ȋNqXT|ʒ+֬/چB\I BPbP'*'v@ϝ9MyI! #}]-u-D{ނrw*'04*>9{r| -޸I=C>"m%_`G[KSEu!(< =>>}e- ʪ`XA &n۵-º^tz[G[yG13̘\}xrVp(ÕGཚu DboU_GS]e"LVY_PП/%:"Ǐ:eH2y,1u>qHp؉X]ZA]`E7PeX`?|apQN^4#9.*4b:L}ϧ;eBPj.Pħ`0(,gϗs5m\1$I?Ƽ4mL^=gOsՓ '6", V/!|bu}p$ٹ.*j;yEoڲsO顊ZfIT? e*3@#ᮎW.]8{dݱཚçZJH^2ODD'MpTA^L`:yDb]n㖝ťVq|!~ -0zAyp]7ۮo_45V|h9KRÂ@PL,L}E0Nx=PhCcsk;ge".q\"޿!4x kWdy.276IRSVC$fH `_Dds."&.XbҲ &Dʫj_|&a7PQrE -#1QnV8n9J\r^ - rs@R\3/ PGrt},2_̒Cd_˾3$8"&!5 -h}T?uQs07(C\zsݝ7^n?Tյsb FNKDMPT7t{ػtAQ#F D H"B8ܹZk8&sO}D\̰W],gcu! cDϺ^,e:Nls k<|mޱQ:D]7;NPHR>rٓj*Ko^taЃL ' 9 գo4$ov|`!OsveY14&/;#9>*<8=78Y-; ,I[ -'{'h;p-5$tX -rr2 8<*T؄7!sO2ea匔`0`.W{\xv1*HӇ }Kqd'P$/c&3srqua `+npો((Ѯ$)@4pP '  -\3!Puy8s!bR/ ֶ>k6y~kЛ~~; @mAwQ_zO"{&-#a[hm * ؄ҳr0EP;4 JNfjbLd۹e/$EL u%<2K c_N'J*&|7ESh -wQaNP`aInKzܽʘ pc=>d2K˶k}WllT_R}Hy^݁?vQa#9nD}{N8*wi *$~`jl2߯Kˣ>3Ee|p8٠ϋ~pa\c6;i~&/%!}~G do?? p]""+T^Dz?@]C[h9-m`=8s9/i -EQ_XJPis9aת:Z.;kep"  _︣qu]-bu]yGOGDǧdVY:4Hy%'0 omy_,|xB$Y,A -QYGE瘚Вஷw>4N1W,sA1d.X^?g(ʴCT_NNRbe8b.;X}G%܁uDrEywռ丨 Ļ0 WXdk)ʄqcTPR!AA9@Q>H%,]\=|6/$":!ʫp.8y} -YIqÂǹ)%dI/+Ȩ/'}FA!lBk ? ,l}\|B A^tYNj,g.%g]~U nG`C]6&UӃ'*"4 PG!__W {?y0t81j'O3BԷuZ{FD}JxT\rz6JY%>$,a_}ܗ@qP٫aqn{f93M Ǩ(aէԅN?dOrd܅eF.SkdXLs9YO@ Ev(3SC])Mޝ\7h#UƨM8~_Q_F*`k{dA`S6K/ G}Rdb_LM};} o6Dt5qUE!'2KqxS{|ؤ+E5w~yY}cӫ7-mb.O,≲"\ϭ,NO -)!. ԗtRe볲svqDOHDtB%2xʫj-@>Ft {hR(_Pan~> zȺ"`#qTгl"%,$}I\YTʱ$JhwbnB񃻵%7]ιs!$Ա{wl^l t4'K2'~yGeqfadn`,M"X. *"6PޤI$%X -**)Rj4%qf7q}ygCDw;3bO((akY8,Y_~KJ-P\z>"b>$R>ޝ[M5W.gg$DE۵mӺ+ܜ,7g.'OoH}p#cL5`|SskeAkoގvp"6)53AmC3\t;x)`t bb7$k aE}gHt^=a~q XP?NꨔuGԧOs_CPq%(?'# csyƳ t"V)p>]Y *Wޙsx(6!uv?xGbQ_ -"/V8#L"Ő' -w2hhOg9|'NQ!gN'ԝ;7ه/B0s؆ȰR0| X~BkZ@+G%h'/bs/q=Yg|M|Jo Н[7dg)ސ?;.Fw߫ ʹPYG9wiZ3[ou NHI+t UֶnTY>]m-;PO[2^IA gV ; -QV0/08:|ǣTTss#@}{w߽Z à ad$ngBTT ́@5 c2s .\zO}Em?QCrK<.E$ b6߆l 6tj@*!ve7[JT<M%]!Ay>ZS&;Vvn^lڶk_xdTLbJFv>;5ͷki&FYv:[v_(mܶ3woH?t8\XXt f͙gjneDS~q5..b0 Y7ܗD}#?u&]|<\l(!D̊.2 :Te%8<deL3]yjx a%Tâ쌔Ę}mZzE՜6EU nW L|[wv.GĘᰀ{;[7e0]K (?0rCePD0EIJ/\L,]ا/Aoo8D=Tt  O(#T2<^ĒnhXDTLtn޾H~Ce .^C 9z󡧫HQǫ}Ve`#?c߽vyx m0i;TiGL}~٩@g//;=%!*;gHG$b@/] O& -P) }}1KSawuo=vVB}oeE$bntmPxXGdbK['WO[w=xxt|rzV^Œu]hǨ] ^ww7j]| 73- e7ы”DQ{4^eތs-qtYj-Nş>soJʾ}ġO//e% eI?u;lXv&F:j'3JVH? CBԂ2S K|6Dԧ>` -_ -SS8n솢4  Xj:z\{T=O+@^ST7 -pq0[0w =m uC^Jx>ۇCG' @go#}v:t^v/xkX) @J -?!2/9<` 2ԂodB'~LbjEʚzD}Ob곰a4+v}B}JQvKM=NSJJ`XQW^IYeTu3f7vX/o޾{'c2sy idQ^cwwo6U㬛Mn'鰩7Q Y͓а켢KWʉQzC M}vHbrέ/9/LJZ]JI렫''Nt^gz E}5P l GQ/*.-Q ) }}B_{y ?QoEM?%>gߑK.)Gk+#dS҃uLc~eݬZ;;tę ޾!Qq)~fNAqjc~o?;{y!7䄘Ȱ ϝ8mV[ksu/F~lX^hzL69=x^Q )gm_}XƺW9$Fz_8s}6kV=i8$D}:{^FD3ũOF7bMC7[l4$W/.cS2x"=3=e5-=k;'{WG o]!3!׊ b#Ãz?};Yo2٠zEj|5o3y#&XMK'ԣGHo(i ǔ᨟OMGO1R5ţaiެv?wY8j,Yjmn{xx:w?(V̝䴇O2򊞿,mhbԧ{rz`~ݖW/ >)qQiM.510ROSG\c ތOJ5~ָ?8ץ(/ ]:w܂KLJtm27//R%\ԗoř~=<.($TO>־_(cTƸ0R#Bh]m6RمJnOT%d'2r3f]PUCgkYmqtٹ{c' -/Hk_Ġ@_uN^rH}Ѧ]I+U4qFfL8k.($ݻ?^twtqbif~e5T.;KiR_FH㗈mԟ="ԏ/~QVQ]odKϸωc>daHn^v6."E8z{>'ܛPN __RYS߈nV8Y>'fy.@pYJ -ߴdLD=[l%\:fVԥs}dåQhPzC@g?y?4?'E_b%J}PB/]AoR> ѲyoaKW$$}^ܗvadeKOq0v&H}PVR_ I՗\qǃ<9Z1|jh6l#;~/&nzFv~o+D}, ȇonKA䄘ȰkW/;GƖ;2z -nD7dc<D1wuuu -Bs[~Bl$VcPeOt%XBԟ4y -V_nҬ hh/^rz#3-.;w?|$8Ӭ’(4uvO))ȅAjb\TDH3'locajj)=oLE"NU?a'"erZ~FhfzF^:P_ROo 㕋gO;N-fFºhkIa9yZ}?F̜|*ͭm~v,B|}T; L7upd,ɠ~X> -/f1V6X6x"LT1)rDZOȧSQIv '@1yw`8=Ro]~aF#5}9(f>SP5g>s$_Żq^![B}^R\tDHֵUuf]!iP(:cZ9_ ;q~uE %'Ā>[@}:c6i_Qޝԗ%󮚖.LCGO>rQz&Z*0Xwb眇}=x[P}^]7D^ujfއ"^<֝706u瀇'v+Nr'ٰeյ ͌xRT3RJblTxHu83G:s'FQA_gaQ\Yy EDUeqCT\PDw&F\ЀTQ@DDPp"4K7Mݸ"J'#sj&/}sV_oAcPㄏ7 2Cz~9߹qS{ Ƙ7WǓ -&ədo~GN -^b[wK8rag<Q`[9))!.6fuW, <*0`P??oeץZ˻XTRV)WZ=}>#cJ|^tZ[#k[v|(ެXR}Tn0.>Y9jfOށ>_0q67/("Sz:b`-}F=}Xú/aBq"f0ٽVkwۺC;g~A#H+39+ٕ#/޻\r[Ή.,_6ݹ}]lQQ>~\Tku#zh"j454d?'O>F6@ߢ8s|~Zh~>W&Inզ-Vխa#M1kޢ8[>v2#+'EFoտh൏>>TVUJ%Bs)IT]0H3}V{洅3=R ģƎ?6 <L6JP?Gs?~jRvbgRw֣CQE2~E^c: _V",wsgOM߷kkV.]0wbxxhڐCΡ&:{tSY9y݃xwi\O4."9sıCmY8H>h[:@ bR], EiZa ~!ȇ#*F)Gqc~3Oެ-N/b:GslRߛPߴeu5e_>>MwxcbggkP":V9MDdaNTh C^w{Bw+gٌdrrS,*EWV_WγdoQ:r;`܍δ-и;E+堾R #_g#rT2\3o}[} V_5YYetrɮ~s><ʭ`(Q7( pTpȨ%+V۸-fo\B/biZ5`@WxfBu:v9y@tuƑG^ W찋{ݿ?`ȰA!F̞P{~Hr鳹޸sX\ -Ƒ6fuW,>)49~-?ȱue۹ꗖWJ7:$+**/A~v2 >Ķ8mG酜L[շ}1c yx8rLHnغ_y1~^s"/043Dwn\{tj_@gGL4bؐ޵ mVc){1&a>wsg~_ֲX}}>t# q{wnݰoGG 320``_?/{mg$'A}qiY E||$~YTZZZBViT -Wdaߖaꗈy B}:iyzۺ,8%bEˉȻYW.(*ވԯ# t4}I-~iLG͘BQ ->sG9^~a#'lHn7 -$*ZgxioW}ÊHbH7HM>3*7ꧤgBN -@ -Y B10/"bOOq׶6 Q!տw弜3NM՟9 ߬WQ0wpl֩K==}:| S"̎:vԙn+~>֯E~\I@tjeUT"({K3Rbcm\zŒHȼ)ro;LQ'M`57hϜ.Jp:﷫hjE}{YPD8ywlU͛1e¸Cգ[Nn.qeeYzױ% ->|| / -bP$F! 3+2va_W*deΤ1&Ṉ̃]}ۖ0-[nR H}xO6s.r<[yPoi@2M<59X>oR}}/\F}Q^Oد]E߰g]"dDCdDZlܙ'O;z٣[n_8wtmV-mQVV_T"-R >⢢d (*EJf-}>dz6~GEu_q?MUYh1  --6j*(, ťj&uD}X`fMDvU{ofIsϹ^YJV?wjwu7{ y\.*>9=+7_,Wݮ -wO~?>=vvW;k׬Za[Y#S[~ǦNTBy+nЈD :PA[GWwK};>7/+=%^,-mk@ BUg"XZVI}>Jwk#B>YAQ1?yڻհ}/^66/?tq[}ρ#ǃ^r-<2%NAHohnE=!F_~VEV,xl|􉣇;TGm?ԟoYZ/ZӶ;y|հؤT&-J Mݗ8!={ -w~r~ųAei!D$? ֐kPꯥQPTZVЮQ*dB~r 1J# wWdB}d^.ZJrH}]f/9:y]?5WB|@/&F]O;M>NKmm-L@}C}]D>ml>m2h چǎh=vIj>N5ӻnnKDE̴k/ :~^ne1eN.V}MրTNqɩLV_R*>_Ws8lv.6} $0 -W VdP ŋ뫃C W[oW}G6z\=} wzC#b`x _Ԃy,W%mJ4TCc<ݜX*FmXH}Ssꉳr -eDR~cݠ¡u[Gt:_OWg~]aT? _ ԯB5(c+dR|L>a#E);P''a G+O;Z)GřP_>תRQyq'L'O՟ϙkfaecnz)͘FFvTVqUWR.Vz"̴8ؐar"N+]WxZacX+W{[yރ_|u7W/.CȮ[}XW/)oiG%X}FbLDh\8'ڷkFpX3z km Bs -"1E_^&|A|VvVVf&WffVv6+'G Oʕم&-ʰ?'W~|A>=y9@Z5Yt0+כ!eZ{4ؿoo -U 'b4:ϝꋃ{wl^r9V͜n՟3z;4'drW˯q7RֽSW4QӠ>4]!+-)eg0bn|?߹egZf -%XYEOӟ*_mDX# Pդ2TXR$㘏dfYy}e -a:: UԏDˏjfb/Z5_},O Gޠ!F'+Wݮ -uHS_`# `10=%!o1y]j Oӛ:'Q@Mﮩop#WxN +,*kCjRQ7/iqS#NѲhE5X7(Կr= >_}V" - l@~zZj*#%%WJ -#5 7{ v>!'WoX՗'EQ'շ -Jh3f665__}ρ#ǃ^|-<2.)-3SP$``@4|}t;p쭩@ys|4CU:7/1 - ,llحpZwCB#bL'*kM_HH'*AǏ Sw~p aدBA_~!ρ)ONJLL +11)9gfr7ߩHJ}<]XY:ZkiA:K]=}6m۽g._ Õ%ģG66Oz:u5Օebf11!Ο>qо][7~i^s3f0QF#'"u &fH}ܴ?45,5 O6s?]A= -JH(!l rsq\775=k.VX#w QSX}G,P_T"Ke}p}H> 9?#-+66.>g9 ȣNm]}csmݔT' .2M235)+Wc{kT$ .e`wcy}^}/`nM -9,478?zȑCUӞ:Gg7xOkaz A?;'&DGEEFF@EFFEE}&_AMi;;+j*z}^ - - -Ulm-@ I#C-Ze;$rpHwvy}%mrq?? ˭$fg0jvӴߣ - J3"j4|u48tir %28yⲪzISk{g7?SS_G{P%t?)ଙ.h%/0B'syE5BWy,UvrCK5_FeO3B_B_~SSXLf2&F%=}jeSu_ZWէ?t`=q-Ro-꿇՟WrGS?@sMHiw(J Dfz_$2~/Hjr#Ӌo5\vZ2J twsurF[Za'{oنAf,ltA7SgAfZV.oniDfT>ס'swg{kSc}mUY bТÃ.~5ޕxWPC2'ѐz'e&>%#}=Fx:ȟ3|biSKۍNrgږo2ԇ 'y3UY՟{ MWDuprus#fv.jEP,@c\8pFSŘf)Ύv6App53]}}P_q(78(<:.  rLInnCgM'GdKʰ2T(VA0?NRcPq4zr?-#+;_QU#H[;(DIW\k՚HR6՟yLsL-V^y}.GO~IOJ7HwܼG -<ͺKma$H}_?JpP}#M N'7k aWع{CN)y%@7`'>Qt,]T_*Cy" AB^.;-?_o/O8ol͢E}ZA K~|n.ɌxZ,5&:BPcF2+5/)kh\'}ȡORU7O}yjUlz֨?S@145_jݦ-;vwg01|L`Cc3"PHj\? #o<}Ľ;w /]Lf" 419OF*tZ,'<""2*ܧ'&R|9ԉҦ6epR}"/^/5W,ʦZA}gGjD`՟?gE/+'(.zD}C>%ׅ~scR ?;3|G޹c˦uO?>[ OڅΛ&FysG>i״V^\/LI/<~e]V[7͙ //֫?ťU5u>OFH#GE?M    DS}njyU^B.< iWM!|PIRwV^7?*q68c 皐lcQ"AaQqtWP\KZ;SS_5xc4[] 7_H}@0P8 TS-34slP?Ydjb[l8qESɩV_,miy[r(spݤu; -/֏յBQb'Я CGAW/ G `ܵZV;yG$/7>cron/V_&E|nV:3!vX}7Wf^z'a41be+ltΞ;LJ+kDP9@۽w`R}iWHm-R1RNMS# <ݏ8ںOp nəyc%RՍP/089/˰cX](W -M 8DZtxPksg׮Zt5u]gRꗃu"(hEu~~^HrR@@%?$,-g?+'_XRVY]G.z>_բ򍩯e5H4PJVV( $Ǚ0H}k;gW7u @~|f* |6 !9wz2Se%ө@?_o$o%9ٯ4sd TDcA1T[r&bl"" "{ ,/KG1 W, ⚙3|3iǬ.ܣiv"URUYq>5=9 Hz:ZjHJo\d|qa96\U5 fX_SUQF+ϡ{yzA{xzG'fd{58B?0O,|TӐ=ww]sFY5uUPنCO7(<&1-+?D/+]ǓG''WIn YM\r:5-ۃAR1Nz+P UkUx4VUZ/zO,;m @V\KL' -\]q~A,ťtvؿuD=( -Y}([OIlDbF&6iR}qjj RRҟSP&W=sДbE'f>L(oཞ@M#^]$VNh)nWR sZ/w@hT\r!a=}ƭ>ϦM? q9lX*fE:P混1-M u5Ғ¼Y~|LdX}o0 >:qBHD d՟<å. R/*R_5N}gy $$/]&%z-[wf>#NpԏOɼZPBofv?z Q+!Vzw_U^OHm, t4~PU"_ї_yH}hxawr5L ;z'o_7WHgO<v4Tf&Ƅz8QLVe"E"Zژ-k*hE9I(xyv66v྇i?.1%=;'wg1U'dQfNZx'$_AO D}㹢/ޝ{SE_'(տw)Q,ϟ9qUi v˖,|'4 A͝|s )94onFݹœԄ@B} gf׸UY"R_'fR -Aj> -m`>hnl,/-.ȥf%'F軻v6VVJ/械_ڏ/1 S}`8>1ʛE},#Y^IϳHd\r5PGaV ;Z\>#;A}4:H}d3745TJ -sS#Bm(,)Vֶa1 Y(WT71ڻ`?ix/xYǛ>8f'>(~ϙUX}E_~GO蝻ddnN+.mdCญ&P̉'P웉/ I -Pа/%:Y9PaYR}ߠԬ -P ԿuO,Ǧۦjm~9t#orꗔUT76L~sc}-''DNv6V s33S(33s ~HxT\b*T6(ŞE\/?ʥ>{u/e9syh6lWT8tsYٻxG&ebGf htxigq]t9R&9BCu^d eV@m]d(ڔ >}zwGkS]Uyq>5#9.2ol$kKIJ_f>~.G}F+ }+JзXA[{Fģ_эwo`'OW`gu9?Z]R@~#jJ* -ξSd_~'X:̮\<{\m* -r6#_`vFS]eYq5= `mntI_a}vUEdB®R G`45UW9Q?"4֚bafjlt#cS3 5~&{/kX'AL RHQ PP̾2r -ʄںg/R=@ԬBV& RwW382տh,-NKtG;uH*XURA>/V9|6Fְ!IԼbBk7n?&mt[՟2n]PܩG؃WQv ;G)fCf>GrDl"x9oaf_6ep7m]ܽpOHNφ7˫黉G|>oHG_<?pMPPM]0̼X;{ML-,q%Ɲ R}";bD[_by9 עRlW赿8i?Im=RB25o> -BAVڪĸP\=8|s3s>z(*aQ )yPAw \g!lA}/˲L @ˁW~ ojRm ΜM`0˫!y=pepOQv@}`֮RZDli?P__vڦm_CoaU?-+Pس;82g'9d^+Ɍ$ԯolBw`7d1sғbCPwsur|SSpطsp&~phD٤܂^k'A8k哾e9Hz9X}y%:[v=CSaOHlfQyUʼgWⲃo*N -Am3R_CШ8P?ԇrJrjyH^6ׯ\6)ˆ&F6Z+K -SqwZ1[Pl]P?~&Ϝbؽ֎ ãPn V>ī/&˲0r -X 7{4XP8ʪ}X}:8 ^X[YVGpu&W3Aϐ+Vku E"qUܟ AWJS'yqhݽkVu"9~4C4Fb귵4(+.HM8|U}{[>1op*,*6!`˳gW.qw>y#'AnWƒl'K2;O7]*ˊҒ8[jk6 (ȳ՟?'~JǑMd xQ?sUH>Vߖjj߲QE˕˗*cp6E(R髟VTWfPUZ{&<$1o\i0}K5*~'C#cӳ -K+jۻz8K}h]5HrD߿!*,FW۴ ߯}Ȁbamx:-,}Ł﯎ݺsbǏHKU~v:R?aGKC{ݹ} BRϦ>w9yE-H}zTzPGĪ/cˋ٠0TSC{ᱠ>~,GY2;PKHv~KscC]M%v*)O15|A#d qBl-VW_fDWݴ M1"IH-F߾{R__%_}S ص{)ZhP,fUcF\9>q<~ŵ/?v_ԗHN6+K -1'|TLcG;oDDk76/O!F{?zu&ρPտ?1~KC_'[޹cg}?__Pg>8On&\,X"#Q⁀5bl_Pޑ"E" HtDPbD,oxcxwIO˙L}.,BVff>Wcm@}Lc9%>zl-a?"Ѣ =B"~|LDH˴aia,aS_{3s K*w 귟oki>]_s07+3=%1>6*<$0>b}Ј lieMs6\U`B}vKMׅmjDD6t6_,! 6k0!R!5R"XS KO>,:Tzǚ(=T?ƠҢ 2o9S_U^q8qt8RIeةY]=L-MHₜiD r8|.d0 & {K8t8x|܅7H+ɡ~tJ -}h R][/^Zך=}տ5wbG[scmeIaDgm&+/SXO*+谑m+U[6rT}(NEYRwu/`ηmj,+9t`_tdO7T9l&OL6 rtq rv ԿVW3Qap]!R}].Zw( ;uVB%ˌLi, MHJ.@}{杻x+9QK£ӵ>q(@6o\gj+6[_/JN=yj– eOEEu-YzoEȁcokmu>u' ʫf"?צ~9BҢcGJ puCg`>3Xl._(vv`Jzfv~qyu2BF=߂ -C2 A}9f*0Z76[a4&OC}LPRJ%Q¯A+:J )  w 5_nbf?n&jƫ~mV]~RLCmUEɼ)Q{B}\\6Amm}::%^~A!wO<>qJdT; LP+o>?("GHBk;W&S?\H}$/UK*$0loXá?gRFw[[ȷUcP;P1V@͍5%2=\|}WZPDTLLZ%>nbb|pf`qBG7/ԣYyp{N:ŭ*; yL.Z3#Y%c_[KWoɈW/ AxtE햠)B}P_`aI5r15&EԿnomn()LKJ E<Pi;қ>UgB귶49U^\u4-Ȱ>>ԧ}(,O vv p(5#+dF~MCA 'fw4Na =$NH8_""m8υQwz\SxwH݅\# ԷFꯙN1Boڊ }dW7K*?=X|J}hGxOvd,U,ocƧ~9Rw)_ Ie3Qշc>s9z c<[XZY}ԿRo-nS}uy1/arA3__D/giuke"sH+Fz}S}KWnB?|TO<(RHg:ie@áeYﰴذpq P_7\،P@؄LPK^_ժ?ROm $T}!IF!':(G⼙ IԿ7!ˊ rg&.q:pqP\P_ߍ_C}2fDzH|6f-׭^E5gTby֕}mjHH$շg;%2spWf-te@}5W -5(#RhjlbC9ȢS͘9cykh,E~vAqEMbzJ.+K6G?~p=U77cT_{8 -PU}kT /t##c+W_m тi&.ךqсcokbjgϞ9Daӕ}-%H#,_ib_~eCg t&CɃ+SI}ž^}UB}/-ѠS6~*~nn֬klkDQlD^bfa)*1A b,A,X")"VDcGQ1Gf0#w2O%.YN>mG7_\UqWet:YukY#eݕ¨]~ -L蛚"RVF1ەc[&P?",4xƙ\=>bIJiB=p(KBP(s~M|B Txg{8+mdf3A# ȝDOu<5y*|pTQT -rҒA5+-Y8odD9~.J[P) }\ttF1yc1{ȁy3R6ZF̜ds׳;3b4OX -Xt9)B6yU&bS6U?k8ԷG4N~gs9k=~BߥSs2ӒyYYNb؉SgJgwN;7|e5BǜeHeEF}{KPr'Q_*gꛌ4M;E%KJ؝O/tWƩU_Y~/qMH9 - ;Tl FRTO6t~_/wD"!K-Q}wo9A!ظ[▟=ęѫ"`_4'y+S*}O!m?;Q+7"ϒʕN~`ȢU1~zvna'o@?T U,|PsQV8w$zZWO74&kneK~s|Rj&_rտ|MFgԯ~RodMrǩ`ke.TyP?kg4AN_z9;K@}sT݋N}h\ݩ{-9I]Caq '+=%!6&z@_t<[N2a(C'5W]he_u NmIA O9ys'g0W1{oO~] oԲ0#,`c^V}^~ɩ9EK>[^߹{UuoIkKhX#DTټ}dշsp/$od4.m4xV;}[7eꨰΚ1u#H{C싹n~Zwf4r̄)MvDK\aKBJw7Q}j QOg|f*Ӏnݚॸ:vZ{{Ma{AyKQ4Pk娚Qߛ+c6boci^5iU#GsVgj2QeeD32U?,{T?ը{׮TUq _gNg܅{9)2 xקeSTU;Uߐoapt,Ӳr -PYIxheC1?'35WAae!Tg]4G}j_ԗ6JO;v#TFFa0N}q9Z~Jfaτ,dVTӳs?\Žw?]p䏇!xYlɢ4&O3h8$n.²kc/P3 %3فw)Qk|h㮚jwMU-!_|A՟:qPNe4%GNWS6Y}M/3Y~4xM* 5 - L4\ݫPkoT/PCc>^аQ~j"Tly%UUUsԿGկdav6p9btO0DI_yv`ȢUDtP5;F_<#ݨpO퉼>JlȨÉ"]pCZ$ъˉ/W;y*} g]+Ξ" 54x.\H[?pu[:x%9v -ԿV{5è*QC гUrS_zÍF@}'NXP;,πŠ~ؘhN}'C~Ƭ%Oݸ_xӪe_C}.5շo@_,vP116Z=\ _ .0 ~ˎ ӟVdܤ$斶אX ؝G//7>7o6RWLeCP _Lwb@PZ"Ũ?vr;'w^;V}AkC sŰRp|@kyԜ?cQ\*P?4֥s5w7oWFjRf(lctuPXc'3166~O(Rgrݦn"BUOhP9;2vEK9ZT[VߛVg E?~Sɧ>5{aG#j@귿m>{EWQ9}HB\LԶ𰐠K;;XBx(/'xqcF"ʲ/Ű CvNn>!Zwܼ~BB[r"(5GR.a,z^yѮCQ-_r2~3"<,8 >P_UFt/rsoB}"Ϟ袡eg&H<' _j+}s*M(Z|,5oX:]b[C^``Hb?ˤꬾMI.y[[gCOV Oaq3O&rՇ@/2cWQC)9bXghL#J= @}3Pߪ'*kD>GlzF\4.l/dA9ȭBW,e)25*ƎA}!,"~K"h@}/Re_hHRŶ ԿDޠ|Z}ez_z66o_ ፌCf~~nVpnZ}PdCK]EQ:Pw~y~2V?jۦuX}}dsS1GgW???8[Nڥ 'cu˩o6o6}]mMu%b?sMl]0?E=dbc"nUƳ )e*n4V}yP>VǏ̜<=ZJ}gGR"R\Tp%/73 U߯Rw';WߞPɊW>h*袩"Sy.dn:+̩cGDm B}83gLhAM@XXE2ݨ?AFEo {2?㩳9=V1PWo"~BW}w'Nꋓa7K+*[/cTJַ}U > \}<-`O}VQ|Щ׶V*݂:U&~O-vDٷ23c4}d UIr2a hn,"ި?o  ع'T?Z~}F )Hs2S@C>WA6A{n{R?-3Pѓ.~#ՇbD홗CO 껃Ԟʴۓ~G~n˫(e% CeL^/-M24 }Fe# 9 3?u>j8ں>Ұw>R}\{LC>Z;8%?H_PG߻ͯ&/Ǝpg6TNP_&S[Sy5Ye?h7d9Zj*J -e'qx:? /WTQ[Q{2O7!Cx_\T@cW/Xh7d,C)ړU'0ARB8˾룖eoGGM"9-37ixie_DP Կ|^O@BU/!7iceHG`e3٧էnmnO<+r[xXȚUz;;Z̙9cXCYwGM0?JƭP??U?p9`՟BIOcƊKBxU4 g5qt\PGR%ں޳`7cT_@cm=U)QQ6 eY$}ࠕK`C'{K3c>˾f_e_DG#G170mlamU?.OBwBS?~ΈྪOI9?NP?)>oZ~}?>!U%VV.ԧ>`!Tٿe?}1Q> -M6>Uؗet$e5PoN:2WꟻSq{<UP|V:'o)LGo -b/H`Q^5R=!/QFo߼!$PߖR_UU>]nvA}t՝~sϞ>~`|ȭB֬^ڂd_GKCMEQa"bٯ(<T%kU5J6&j[( - -*\5A]edSA@A肕{fgz.kUoľ"E}]́ꇑ7^RPW|!PIifi*%@YXxM?r'T?B1/DҢӓFjO2 ) 4눱̈ - \O8:9hckɖkW-[5d2b_tl=L-P$¢bRnC1CHۑןq8y[t"_ʮ)~Y}Lu iԇ쿣'Uf[351ndXpM/KXIGYY05ټcw (5I}?ńmT'~zRRP}Kө.\ԏe0 Hۃs(:UK W?dOQWPTQR~i R{`&$ľ"Y}!TBzB}{1hnO!;O(foo kbGCK9$:@f'5uR>yҌ:nU90?~zJ½>^twsu>p䠭۷BW 5q%~zշ؎P՟W+Y}A,!$?oά_aï)|9>w0`S /;3-(|A];VXNXk*#CCk[Q*I}N),LPd釩o@ɩ߇r9T振uEWI+&P9oZrbO>zcw|c]Z\ >3%o{*` Jo"_LWu=oBzL~$ n?r[b W)5ǀcB~ -Vũp^Ɠ2dw7"$H}:K^_O76[j#.{\Tp/&2,Tvsg\N]쳲?{7ٟ ʉLg7!""_"l%C~aR )'ދ߸ ԧ^x܀znuUa^vfZrB\LDXp -? ?M/?(TYUV *I]:ڙy!5>-4m͍uܪ -viqܬ$F\tDhPMPN?vo+ ľ"EIS/1\W$}mPT('0 iԇ-O y1Oq2}fj#6:<4` Do_ȫ:\};WOaFITۯ> -݋QSG;L'?uD[(=H}z)c0yqkk*9e -s3ScCoxy\rwsطۿgξ9}uE1m45Pcc>\}=E@ T嫟꿓Z>Ox/y}ྟ67s+9Qw ހ_\O:9 _Wgd?G!|JUp@a"ӫF3>x$"KRUiAK`4 y}=q+جG3X@ޞT-MjEOoF>=ۓ>P^+Q}vi_FU_\.'^6/A}~?xOZUR{1ޞW.r0؇#ߤR2?<_l|=%R_AKbSAbwTK eg%'Dv}[=}%D!IlfJE}MJfŲEH}-R_Λ>8d |d" ?"6q5~\B*AKc}8qC~i[k3c> W o-ξ,?B74Wr?gSc?^nľ=wucꗳJ"o/2ԟ;Q64#GRr?0};;pYT?Ъ5eM-CWDk4H} eg_ǭ 9!/Kf_HƍZGw#8H}IaB_t65гvIG+-үAKR q}~UU`?>6:\2A+12A>6E&_ۋ?D8ľrGHR_2|S_Q\y/w"'tT((@AXDXY16+b![&crzKN{3fwvvv-?>o_'a}͇LrLi՗ >ag4bb3~,QK,D}y3S_}[c_K?]~2  ‡W/D} Q_%%a;?ɾsgq`M,Tw#k)&!}t/@D=D}mUE/baE}# -TonLM6R0쬵&_pKὂz>RѱC쏖e_ELXRAWBWXͺQ?"$8Wq{CW+?~w)s??Q~~O6;H7$AWjZRQQ_Bٿ%Q)eOSȾLW1F -gL3'˪+mX1_/햻D;7o`~fO$sodG(Շ5&~ϰ>PTL5R7%oA׫aWv쟓[b& bn\췒e_󇈎g+T_%cqm`~NV* oc:VF?9FaQ1RR^}X -M$YT{}R,?~w?oC+X37!i# -dW 8Ԑ+6HQ|՗X`O V[Eb?v_ _ٟBЯOxm0*D5Y?$?AgWHjf6~0?Ú@n\k|S#~:P?'!kM o 7g*QǬ|z }onv}3Sp" cOP@i_lT$~? V,q_N+ꃚY) $k3D}JXa}}~)}qkfQ+~28~(R?֜4u_ -Zz5\+ҚD}} -Q_7S쟒_i=dт™S'c;Wpd#`D~Vu=7nt_/- 72OWCN=B{9b S_35IQ_E|3AGCߝb߹sGG{[ 'ǾV*T\}#x0G0 )Y[U_iHQ_sGzDGR'a_BomeanjWZ -rliMOL_.QMDK{Ce߸bb *M}c#R?ߟR4__|3#ϟ]7PߞX>kV?]uWM gN?ZSS?wTvF*TOXOZvD}/,fEMgBES|<ݺv`g7;AoH;}%~H~P\@lRN!{RϞ;v`C#0=\o -f_\߮% Jܓ =ׯk(.*?R?N'Q_!k+z&0oR!q wٷ473)ɱ?L !PߣCpߠ;SNJgp >TkPS_PKO wwuԷ_U}rSSQ&$Nկ:xb\u ?W~][ % 7;zDVfZrB@?onr07ˏ}PRO(?x8O(x͗/PڹtZLTOkjfwvED/E;}X7'XgVMS#RT3ĸLm&@vD}m pfeɒfO;:'+#-)a}{ -ط0>9UR|CqTN=N1yr&՗_h07q ~w;Ohd/Mw7FFٿx d;+ʶlR_%gXFjR"_/w7.)dmiQ[c_׳PޱC9ۀ@oC/7kI~^SZ^+wVМ@/]8wSӠ0aO4ިg+$†A?YY-`bx%EsgMϟ2zؘȈОA"Ow׮V@VjPnP(PO5o@CZ.|?|`/C19PA6L4T^~Te?ī}:w]Zy5Bn. %*KɑH7QhNL!J٘dvp]{e{߽oN;ݵ}}O>V5a9;Y1`.4 gCYڹm:KiSSV=sǏ3>LO5=Z!!=Rn]SoPOx?b1RnEYI傜 ]ԟ1u2X1ꋙ}|67Tc S 8t`׎-n.k-LY/Z8_]Eqа? TOGϖU^|3YB6PVͫϞvbkE';3A}EU >i=~t\rZv>RV_|HBP?䠏6P?_MhRr{(f7\[V\z0/+BblݻsfwWg5Ɔ+i/֜ /#%$̻z1r cR2s aʸ՛0z٣חx -Կ}jQ~VZR?!v@Zu.&?9|q|ݑ[X"Ud~˫kFKJ܌P?<$=orْElP"6P у{̴䄘S!ccifdRW}%sp&Tobak~cHĔ>G7r߼R@C?V8KCX}hPR]}-yǮ|IiYR?(?׆տuR?,W}7g{k P6V_NT-F}1`%ڻwn,RT>*"DP>{vhgma33Y}o;p= GуIwX·X*~^VjRl!l XӰ* @U,SK[Gj@]ߣo^!kkܺ~073%_A} J}uJiCVb}m-Meo^|1?;#%):~{w{na*]%|a,} Ϩ[ bQ0GX8l䪏G/Tư'9@O`V0)Orwਯ{'#Qw ԇFR7({S5JPSԿ -=Q7DCC\'hki(u¼ ё9”Zo@!1On=LVC>"`xa(6i AD>CP҄'~oT4zeoL<.ߗƺҒW/f%DE -8t`׎-\!t-9`~oŋpZ}Ip2<ؑ~"݂D/4:ϣƍ8jbD:jQsLQ9PG,+F}qwݘ憺wn,Rw ~?߽oI}99%rBO}4#$FI;aҔCzwH|~umCKO1?|G+H -aX_SLI9U7@WW͠_|3Ύ ٱxǽgA"JA}[}y$*`#Q~9G4VWݺqra^VS!ǎ/k(/+L4aR@Rf?TO㨯BԷ섙D%eo}U /AGx{nC[[=GpP?E؎Qo<R~MKCm5V??+-).zG[+SR-M Utc$كͨQ؇y3~G[Kc}MUyiE"þl2E 4TInL -r x`"fZPY[}3+;'"㒑nL}t} _R|07#%`@Bر2ر_/T{9O9z -Ri]v$GsbR))ިI!mw۝& uQr{fSs{ߵZ7<Ϭ~[W|54@Z~qa^/?{϶d#A}Fd;;[>ynɭkWsx t> Bl` "L>;=y,ʪX}S㲅V?"K˫`!~wLPPB@ gi7[nr]|=Ab$>:)V Ys@z7nտp)&!%#ʵXGO[ ߑ<_RW0BMPhf)M#bNʌQ_C65?~x͢$#j}]j* !J4n ~VDxPR_KWoA;oHhnr:~_N]zY8$SoZǿ[@, zw-N/~|J:~P&ԇB!/Egєz o25s(20K_(q->$:AzRez@@O{:lEy9P8}ƨ?PiExM7X; #n`BRBOCZ|B~UE) ,6b5)Klt:^pҡ?}O"tR!G t`/0֒n˖jj,ǂJ3!S&MQۀE44`BBaZB[ȱC x<ր~ piov%^5їh%{ՌbaQ'e엕@ٿK ;rXPݻ'YYXMe<%I _EΟԗ8 vZqzWGos@ ݊5`S?}PE ߽g:å)ʎC2$4"̣)!EVG+"s@KΝ>vAj Rċ-;l3#9RT`\!o*ը߸^m(1.*qHF{&%H}S'N$è/T_P:7wrտIm<~۠ԇAKFm-Y&|V_1CU̗2JH}MPg^`~/߁FP?#%!&"9zi/VWlXlB}Q3[=è/M,?_SUqVQ!"-щCe%h -KQ(՗eԗ|V_Em R7 VbdlBx6y_Y~Vqaoi)Ui7S^nԟ*0Si:V߄elr& -o)귴waQP)%7_HM -Է17c} pOez^kWs3y1aCN=\A}Ԉ-Eo>C?>T>^O./\clfaL]X$l^&޼{5b6op75H8#}c;ok oԗ?}ԗ"-َ|!dãҲ -~pTPZͽ2~nfjbldw6fkVBQSACAzGb/e'Doomݯ,/}:{9o[&iՇVNĻs~ÓUwDntąsЇx{7Z!8'PXU]SGg;nr+ -p/F~֧xP^_ol,Te(>!gǒsY =}?C,ޯ{ּ귷[!~VZR\T8{&G6ohʨtEP}\A_>homj{H_\x%'3->H=>\6Xl՟0?R_& "G`GQ+M?MNa|eU )˒! >MeׂM]}T}oFWg&F^m2k*u?fzmoi'2 ^>T67C,ŵ+~| H'̓Vv_2K8B+ԇt LYVlXhn2/;/?{b㊂E1RE$1tPb @QD*(PQquhsNaf?x}z~޾ n}ۚj+@}1AX -B}:WUZ+u#*"A}:Ws!@}fFvdm흰dz&~o~}uݒ,|dޞn`cA3 #E:RRw Y @4JTB^GZǐFM_SA# W >憚ʲEyLx^.9Mt  e gIA}YB}EB}]#S.^1켂e5 ͭoWxPWPb$DG_%շjfuE> -T*>īϕP^a9x\c\$!$$GKBg$oK75F"P½nܼm;nWuݒ?^A}+zz۫^G}&{f>ԗc 7!b!zSKʿrͿҕo@%$Ϳ ?eN_CpML{}$ϖ_CԊR_zGF` >y~S}Me‚gޮ|x9xO -E~H#=B%uJjZ;vYcO^ w]h/Iߎ>vP>| X)aϞ:H} /nڠ^S%S۬׫oN g/),B:@޾/_[6oI_rjokAg&^UF[KSC &_"lP#f('(C\!K&$gNy8u"$ϠԗG=cA}PيVSVŎ]V8rgqɩ~qiyUm#xObԯJKy '~!VwlEBPo L,lv9x~T|JZV P'=h&k>4o*/-3S@gN~ȁo̍ah)<Xf~E/5y}@ |RAksR7r̤?[[ ua5eKĪ?RE}Bz 蛘[&Շsf{Uu=ƒ7|Ý߇ޝb̴+?&1?EK,V_š>n6luRKD%կ5G4K5 sTI(P3HB;75VA+0b$^ggt>'{ ]Z>_|)//PS)Ǩ1!$2/ +B#! cOxOOq8ɚ`FT&,f~E/%E>>X PX_SY~0?/;#-QDZ#:Y:;PS@}93g𖃠ZsPded^^Ec@q1,":>_Xr^u=ROIkKo;wrh O}+sc]H}5ĿODdB9R}5.}cs+{eɩ}l^TRMa~N+%>:"^ 6<?G@}~=5TQKID'ݏon(} ;x)Ow{lfmި(/]'% 'z -hC h7Oo ~EWw cP?#5)syoҺU+?¿3fΞ._z&glfeㄏ_  [voYUm#%U7AzaI+l#!:"lJ.J};>^PvpZp/)*b$^s8qD6FCHj#D% >8T^aՈvwT?<2&-(]VQS _7B}wK_ԇ3)vt3#=ZU"-/ꠄUbPZ%Z۵v|/]Mbfd[ [-{%C( nANNks} Ě\v:#!&T>G[KSC]mP"ѭ,,qN|PE/5QOFBQ~魛pDAOx;zh.0Ec -ڌ>]WPvCj=/rP;kdJ]ܽN LCW4 u"ܽA J`^v:318wMt::VcuqnP%ԗE+#8~~BJF.ЌGݎ ݻnˡOv62k@1"Bp=]hFzJnI P_4h"՟9$GE}@%tomGQ3?w.4+3c͛4Ԕ!XQcv\[}y @ .Z#-KQFSM-i>KJ/]^ 귢n}R޼zNG:ښUwKK9 ._Sܘ]}edWgE76srSk 9һU涎@WC#ߌN>.RڅlĬ,]sStuYRH}) 쎅vI?w A0ۚUwns?PPZPuU(r2kWCEcyhr՗(iSͬlݼ=u5.)=ԯe6pd~/~-Rԏ>}O޽X_GyR|gvBKS56urھAxP_Kۏc"t~qAvzR(B}hʌ Qx"՟G?2jvYozFҒ¼X>Q| -VAdBfwr9W0u5>9=nem}bs_?K "qsғc01wGN#=j=r.#ׄ=rD<sӆ(RC[Na#!oigT-YTz#ZňlE}S&uUeEVCCQ-|R)]A-# h?`,&@˘(ᷫ~!ƍ__O7G)U_[Cԗ-iO59yp6pڼV8m贡iN@=;~pw676~<>"՟QgGЇ÷V1=7+->Oԅ3!ǏDQԇ_._Wmū<EKZ|u@b፫}=!%#^RVQhhn~?0]U|)~#ޝ[EiIq1"B]hFzES.;oЯ,E 329ꇄE%eckll_Vk ̔ё;=€*PçEٞ_fHg}l F{Qwg{[s#¼ث#υ ->v)C"X{"Woq*H//"&.zz *6njsN9'd,khi_W#߂Z}u -4g݈:rp߮:XWRA}'߹/R;PUPRUߤgdbi] B_5Z3/(fO>{oi 2SG_qׁH}# BAPԬBj;\}\Ad -ϩ`c]5_{Pboca2ξ_{_앛I՟ger.rӽmȚ"՟;zq ?r};:Z[Pux>Z h-\!P_Bj,EIUCȾ>c7f;}?$ze_yPU_msn<ۆ{7m9nFmúm|}<]hFzJY5RjSƛT,߃пTϨ[v 7+-9!6&¹S'?fm 5[P+OX[!aQL}92RjjEst(8>vIiE+khze_WM ~sOLIgV-Zpɯ_j2\?YÜ_&&ν? )t>? ߳DH<֋Ĭ,]ux9ҬL:j9 -M!~>=/+=91Ȉ@2bD,s!r3x/8W -P_WѧY:::~6L ݐ- C;Y$2T%Q]J*Jb(ZƸsLs_|}mce>^.>%# -olwv#0݌ԇϺ;4ݻ}0'35!V_^yܜPK60sB ?SXZQ}ǝϐᏳVh94NoiDd_8u|=]l-L 2a^n7L՜Rhjܬ)ç9v0$hNG[+3cvM"K@5A@P4Eb9%:FA4vGs'}X}@_^9Z*O?a9FF0̡S6F3 OmXXFчwaՕ׊ sd&/s"phHpoW';ks=m-e$EYD1kAϺ1Q0ϫ׮,YgK;gwF􍎃[X2usVw9f{d}!p_. F^vuL, -Ǎ&iAͳ7MOVqM7vVzB|L_?lֿ]Ϳ|Gt17G+n_<s@ǂBH}ENP?h/GO9)9 Yvrp?}{$v_OtLAÝ[5׮e'cks#crQ!پsT͵('wn\g%Ɯ9y˾@^.Vf4]m-uU21F0E}b+('/| > ү䍛^36T~_H}dd O$UK޹o&}̭;Gt9q%qǼt޹G޹`_nkQ/'Ŝ:vp_^_/NvVzZ[Ueń7 -rsnXnTԟMd8ϋ՗٬C3qt| ,usOoB-JC72PHR_AN -ÉG<&鵧[W"9yRr -H}=C3+nF_7өͿ@n^/+ϾɈ MgP^nRHŜWQ/E9~B?h{=\-L vlQm&!A(A[FEYXǏ37/gIy%Um:4 ['WOg4u)UuwO>x. '-V6,)+ΉcQbR3r -JʫnܾBE+ g0&4ݻ}0'35!=^nv,&Y[fb˦ EC˙9%rSKngVƤ>ȖǶ|.jbA#۬:X Qd$\<Tá!{|v9;Xtk*++.*Q>l˖AR||y60_qZ) $|u|'?o8Ge8oCg qތ>tլ[ ⇮o%‘&8o 5TgY yR/xQ/6I"m-͌hڀf)q1}׭]賊RL/q^BsBRr -*jzFfV.~!#O%eVܬohjma2B৏}ϟvwӛVdg_8{P„+b‚>OɞL`P_PX Wuh&h)UuwO a^Λ/ ? 74UޞGoT^+JKs:2PH>R_QNÅ_GJE(JEi&B t4(JI pq|~-@EhWZׇSI)"AQѱbAU:@)+v IB*.JpGEI6s*y>d&|9H̕UF-_ebfe+ѓg.D&faݽHTw~?R/m qW@cBwo `mnr#}mM5P_AN/#e@}5Mm}ȼ{sݡ_|ԯmhnCփݷkݾYV{%ɣCvlrw63zڴdޘF&c |. B__GW%%fKЪ?ZG}|^iX@sk{g/, 6(b\t cEVbHWH}^0h֋ÙI!31P$Vܙ?~&\f4p4t7\ ;D"qu(;l/"ao_rXe|@_F -Gw/d> 82r י8xxm'ިx㽷&^Ai{Iΐ{/l2C=:MUEY ԗ@>_wB?i2?}$ -2aon}4hұp MKC7%9Qp߄y ?oO A})YOޏRD?ʁ. -+)@#HAB_7\iP͢b%jV1Xbz .mj?uRt|rFNA RɳNP -;[} S>R&PZfjb ȁ};0,Mt R:¨B#g!dt]}cS3UTq߇'BQ|~ueyIANFrBs@;~ڲu5+jiJ2Dho|KhQOR@?P/ .]>0WI -D'JpWP};~脔܂>!g8q=?Au̔Oltu4%˰ ->Ǩ#C#ЦDhf1 )D]}or2B/p+A׍˨ 808 7';+3PHNSd"3gL#SSGCO GDݚ˙/& mO7S񨏊yڌ"bsJ*SVQ21wrg -9_MJͺVT[?OW=/}K[KC-R8?;j\ء=ͱښ?E#{jE25RR:w5=;_҆:w;V85n׋Ӯ]`̕ZvQOG/$~;_sw@_KC})3מ[9l_oݹWFk¿qm?/wѶ^Q؅Þu4mYg](9PNk`uu¤YϚuuĬI fׅ~:Z#5m9?Q\K"fr?}?np1Ob-I.f mb?uRt|rFNA z[ڞǡ;[}ۅozXsZfjbL3'طs/t2C]*#Thg/'H}AɃ~XПƉ -}Awҫ -K/^77>ojmx y˭G7,w^CXz9b{|eoeB>tY_dJyeUtt,mw{zG'gdॷXzK/P/JK x$RcNm&kT/]4_>?Y;7CX|9?,a}mv;ًp'N3IRyV[%9)WB=]ľj -+-Y(Cg?;U {}=Ϻ~2q׏PԗSPV޸YQer,1ՇX:ښk-Qqqu67߼Q[sV6o.ԟsǹѰ -*8}#bS3sn}PS^pj\>> @_ۚA녹R#._8s!/wWG[ȭr&7|+߾yR ƪe.;/ň~PЯW]FVrqol-㦟~w^>>:68Α1 wtB\bڱ~#ln<>y>(7lg -T'Qꏉw&x}ulP ՟ -]&2]ls غlAtUĴqgW8+U5n52? 8ڸoAz/8 5EyYiIaΝ:vw.۶lٴNK}ҪHKAMR곡?~c~FA2'o0t_R ˮXZ]k-[pr{c] -_\Z^QY>Vۈ_p1H:;ZݾYR|4RszP_I'#%)4R2(z]CSK{ݠG'gdܼ}OOC {ajoiEg']E9x`vez-u"B"pz=J}A2/Ԫ?#<̕WXyЌ _\rzv>Ư?v>j+~>!I˜9ojjcBǝ=w$^ +!xx_9yșLD=J}gC_bt'QXc$ 32upq -SPƱ^yϞOxqrH՟''v9IiYy=r 9ۑ֦wn]/̹}3'rwq27ۼQ[SMEAχ#gNgO-(G7D@)G8xh*PT47n76uts h\DtBBܸ6q QVPn̴ٍĘЋgOD?J}^_P[- -}L,]JiM[ LnS.E&eWT4KoT/BbnMܺ^s-%!JHHo󆵚j -+-Y(Cꋉ0_/OFa%i2Jye5t̬l\ -Z!˿r[+#VދʊaΟ>~nN-M lZ$/ zB~5.9=;{-]z ?}[/}]MuUn,)H - - `cifa9V/_av?}DN~"?NF?M>&3^ި}GC>Oj1}qWà 3»ԟ3{/bQ3I3{'7 cx{}gNy\`9VplTSQ[t|3DsQN_FxrU+>¥o O}TXR^]v|y񼽥YЀw=]XYi۽ci 5Dvx?ևRBW o&ЇcHG+Nlf黰ɤ|xմL-&{ KNR\VU؂/0,8^Q`R0?'#9>*,wqKS#=)q2Zߝ?'E%zݖ!{|rԇL~lӪOt[PvP ;A~<jXJy'QgȪ?2~*4]~- ĸ)P/LR-2eH}n> B7InSPRV9}#' _+g1 -X>Z߽skjݥUVZ#e/9-cw?ތwNxkcvH_[]EYIANFRLDHP{eKc!<5ЇH_/;[j*"SINQ7H}7/{s|톧PxLBjfnAQiyu}RwP/]}T %8 W~sCm峧f%F<|1 ] U -Π>+xR[!1]oz<^ }d|GC;ۚ+J -Rc"}n^qjzjXJѧW{=2n-^hsm͍~YI}㺫B+T/H=l98E޲Uq^5M]C +Tw`B"ҳՒuwp 7[kr݅C*DLM qٟO5; '#)Qh?7J!"˖sY˿Ah&r -J*2;r*,Ng:3:=pSV$?;=9.*4y;+KSC=M}wl"- _f5JǯRaRv'WChϼlkif%D|ׯ3Ž{K{IEV32%o`hT\rzNⲪohѾ͡'hA%`WGkS]uyI܌ {_t'6:u@EyfMH<_޴D?rg|_t{a)9H֎miGqHO0?'#%>:,8-Czϣ_: jf(gE(ro@koi,/}$?7+=9!&24.lQhC.w {̶v@}1Iz=._v/1{=h9Qd,Mu "٦?ϛt .{vn^# -&C?MVёwh{_u?oomjB?JOI G\.9AfK&e}Q -iأ*n^>Aa1);W76;z9nxz$fVT7;@?6A!)y{KCm%0;=).24[nNl,L u5RܺEZ\ϻO| :/*.-Uq^UM]C +݈_[mC 8R\_SQZTsh[eEgӣԟ }~?5YqaA^vFJblTX$r"[YiSaRe1/.44t L̏!yVQSo5bgط@憚gO?JKA9_? 1/QSӓş1ćOOWgI #COⓟ*IN/8uam(gSꏍ*UeWg{Kc}MeYIQÜĸ({ˎؚD_C //+-I`ì?`-f_c%1?cijzV6vx\v_1]r>͗ʮ'QvO57QeW^FJ CS>^yt9@}> B"b2 -JphYN>:u~}ӛߩ:IO - tqKS#=-}wl۲YbF kyVsS/Pς>yҫT~P[U^q~nfZR|txH-()k#f&}=;(vfH_Tk_vgU)S"dC2<'B$2c(2gLD$\-n:g|{o{o{95ٺB}Gz FW䤃CPV b\G ߒ©zO}>ؾζƺ̴بWx_locajp -87(G벰qpr\Wt]H z#w:ԣ>zSdԫAKGkoej\WB}+~=V10Į޵`78 WN\˯u* -s3X~kү#.,~ٳ{qߺ©ODL0=>6']+JS@AW=ݜl,M5UEz30=glnxՠĻEeUu>z>26>vtu.<aB^noij)/NK v咇@} AcG2<Pb&Pi@{OPDBZNAY][qށaº}_qnvzO:=Wz'.2Fe/wWG[ c}-5e9iq42Q8@D}J՟T%0Ǐ4Tna17xzsq43PUЗEIR]",ܽ.ai& P[Ozdq[_PF ޿ @o^⼬;nas0&ABo]Sفg @K 4 |05!QZˋҒ=|v'S >}RHGGt47Uf&F - t|Z^@_X87Gpo1F>L1^D}fCGx1V101_R^NCu~[Eu)T>~x]AW}=/u17RS:%+%.ˆ{Nm x!yгgdn@xv"h<;ڟ/+=;%!~޿s25PQ:rPU©OZ'1A}MEiQ^VZJb\TXj}1̌ ~އCsBi0/ L[`HxLBrzNAiEmcskGwW} mm]>0Fd|l$P07#%16u:Xj*H bcO.շC{`' &` 'fDLBJFNai%@OгSh d - 0=59> -v0'#%bz`Q= \8R+1( bfGMUz -}PWK)b‚y`g%B/,Z'8B&dUBKya5?Hnļ҂䄘%53%qhPLmෳۑXd'gTo{dwjk{H3Dvʊr3&wWG c}-5e9iqacG0eFFZ r/) aB{CK s3Sb#ozysq45RWQ=F };poRCRDĥմ-l]ݽ.FI+󑱉ɷ3s2E1xkW.ys45Q?s QyL{v(Gy'X~w8ArϨkX:yE_R^ ;0L70 v>/|87;l Ӂ']mW+Js;֍˗<ܜl-M ÷ N}f@՟?9> ĸbvVfFJ -'eE0hRg.Xo#PxW\^]6- ydi[0%yy b+/JMgaEWBZtw }#»~q+*۷j÷MAԧ1;vV:*w{wbl|xp/$/>t!jtIK'D޸lomnb|Z^VZBTH!6NVAv8$eU4t ͬ]]PRQEw ۚErѝN@{EywE]twu0RS>%+-.,63bb,lܼbRTm^ -ߝĻEeUu>ߝ/8Xœ>ϻ8Xj*H >|!6pӣ>R}A0՟TZ}<~xcqLMEH)ɞ"/QZ=G,)mڑKlCT76̝{o39<9?~[6ympu]gm‚>{8~<ԟR2x,ќ &oۮ}c]H[PR^Upg/x6}㠺6U_/+*~ԁȝB|vVP` tT(̠ݖ A:Iz| 2M]M-m<"8{;B/x,wlct));1Bu6bzV^aiEuݍ֎NDg}@c)<UeУꊒܬbps0Y}}ͣ?3(B!;D5d^徙moP[U^\s N9Z5wZcC=m UeRw$Or;~1h1νH8}fN~ʚFh<vϛ4D57Tgg¢9-}6np]olJ:w Ǐ/(K>cCaiYA<}C`ra!} 7g;+ +YDvA>*= Zd&e-r=-;م\%1sU&W-]y03IEekog c OC{K#k%ӃHCǏSyd#:Kx@EᩏYAq@+J^K?}pm6Нm֙W} P}QV} -By*j:FL,iNtk .]-()m{i8ɽ W3RΜ<}`ODxtZ˖.Y$7ј_?*`kXmjic?8,UӤkzF]uEIanVqQwo fXZaɝįF|GI_U=(oT]K,fmi -U_Gsb~՟1_Qԟ4L!a%h}/gVThj>{?OJ ={`&Dҫyӡ E tsDxxk2:> ;~7d]0>bH+'w9 Ły@v Q1ُ>? aBk*f_߲ٗpsv0P[ -qƪ4FR/XBJ0*;¶]ܽ|BwD㲓VNs?8;q[rvmdНhF:j@}9@}Y| B|Zs+;GWo Bv^qY[5mӾCeiz=mu9B -Rݣ?%T38(~oJR_YAIyDSWB:um=X9{qtlbjfnai՛w[uFC0Ɇatxh;ۚkUe]H;sؑvx{8YA+i ńTp,Yf;r -XM)&eV]kjziwO{GėAϟR t#w5a)Jr"9AHl3>ЏdZg}4yOMj@}̤G>Y62*.f.Ppt!+ Pw;8S4d@} -"CbOe\S*+sdIUy -JH.8{£NKH),ro6)(=eVWks㍆:JЏH -a-f r4{S>M"-A:0.?s>9b~qj;^m'QpGP}@@}H;7Td&  ڷhZ]-5U+I!fPIUȢEXdt -܃GOAy-{_VR)'GSG:,[,)%RAY][`=D~SPRA~.#ckoi@+1=| Pua"B  O E"b.z:zl K\i^.xIeNv[6ݣ '|)$eclԎ+?Ba! _|ԗ𓎶 cԇ`/ɞCSKŠGSTۼ{Јgb2s K+޼SE Qx$A<~xRV} rRw6g{+3(kVk;8Ro?ن Db(8&# F\RZV^QYյD>2>_>~b t?1: .תʊ.@G1Gb[#14U'}HNOM 4*rP^:Pa1ё`dOXfPjk*ݺt0J\AmL}؟# ,قs'++oVzt!;]s[8L}G{EҢܬĸ3#&fEC1oPԟ:7,9X aQ rPu:61 |v1 l@'O2>Gtu171B I Ee0>E DP@7Tz0p._O7';+3cuz1-@ԟ;̟J}< -X-p-_# GWOEFǜOI۵ -=yS-X,y@n{uwn^,)LM=ov/(FQ%`rtt0F}JIMKGL}AHs )9%Ё_j|a1:24j;|96>y_NMKo| -s3PE'H_ -JAVQ;9A}1S\Yao_miZ9N?qdlIڪRSABL/r1odjni 1;{<>)bVnQYu}k=}~#c?lwn =~8rzjr‰#1ё;m1t I̡`CnUoQA6 1H_Kl8CYR N1\[ܬgN;|`_dxH&:`V+Aq03/'r@9L}9E_M vN3嶁+θ0 LM0w\uy#.f m ,R xQmyH+*ۨETAaĝN:[XVUߌOO/8#v:S#,8%TGTDH(?lR(y0 "P_4)#+[KS]U|3Sq1{"Bܜ-L t4T``W73VF~Pnr>Q8g/d5Q){ɳ/'^Mb&Zn^fv֍+UePA:ػ;4~P_OKr[>v>pn'0m]FNAiemoW d3؟< Hb^YUk+L-m\=Pxn[Gw[CVpU ;r۟n ذZJD - rB o xU4u X:>.T6s?Ļsd.'w]^nF:j H)AfAꋢ>-Dc}t}H^4Td^LMN8y}!feKL`Q>C/y!QE齔S[v? qaN}{Ɛccm./ʣ R[}m5`H,ꋉq DV)SV341 g/.?)Do3Hr38xݡ.;,L 5T) NdwyBCYQA2*+ b\_]^pOH?NaVYIBb{+ -eҲlqq6q^si9uMTQϧ^)@~^ 0דމ.?L 3LDR`"IA -X.^( [ፄ=BO0v9bX] -rt07 dSqXC;o%dn}aD#aG8R#«c`ljne+rI)rʪ뛁qtE,d(Ub$2ۈ@wgЁ?lՂԗ!n9!!}$ꚺ[Y9{A'~`nwpdlşw8/+=HL4(ն-*֮Fwc/ZGQaA^:;`HO'e?$dx6KmkVcO`}JdB;&EKqR3Ė#'q+jZ:}><!{ !(eq̖dDNM@?vWG[kcMEIK-g 'r%Q"0M}}KGܒ:1pSӳkZh#!FnȑGr$S#KF} £Cl&|1̈́y3C}AӨOVbX9(PYطo^oP3SÂ=\lo512PUٰЎKr }F !E8)YyD8U m=C3 *Q^ &*cl'(EyYShcinjRS^%"ܽo&_.Ll\=ŝNJI-,oz^l0 "K"OUiaNfڹq1,Ł/ϧ-0Qg.FK(ؐ{P" -H^ѫ%v*זIrgp9֓dfzֳTeL؛_a/bƃgL琹&_ζkزȒ}OWG[0]MJkV"d"rs)b 8vu_OvWZc GW/ >[R{22ly;p\Awp b%y܁W[ϖ(¹koTWQX%Z>^QJ -PQPV'ޙڄ s O92 #fTW]YVGn m-?K/7ǻPG S-s -zW.5ֱe?>Ug S#}-׫(ʯ\RT,sQk)*ߨkhji{#)%5}7{(tz-&Z@gNdypopMՔDWb-d;A*@*V!?hρc'NVT6u߄g?/^O&3>:~s%N8q`OP)E -h6C}^?ܩO5K_Tٯd?.&2l?/7';ksC=֩)+HI_ -_H `?GVwhfm}Rk@k#bg:CãɎGǨOpcC@}>vw4Z$?MkqxRG,Y).:L,lݼܽ?gjPU8C -s3Sa EYiIq1 /bBf:xs>UaDL*}Cwtu236݊ +/B_H>Ujr\bIS|36qp b@kO|bfܻ3~rS}Meyq~vzJ⑟޹@g UE)|r ܅ - TvTӲV5\mM@{ڮ4U-+JONTv.TU }?3R0Ub,%eܬcGG?kci@GkUb}e ؟M=nxa +ۨkhbi捬ں>7ԧ5ɷSVÏm* -j %\fq 4(\@kՉP \@㏧f>CjT`~I*N ou\yIMՔJIE,^ /!8C}.4j"wCÍd6W[k_ -r2Ӓb" rs05ٲqZi$JS؟w+ Fٴb% 52s s U䩂Ҋs ͭ;o޹pϡbPǗX[jF<#pƕK/ XzhLVf4AҨkM2/CSK;'w %: Phxl9m>P,=[/]:SJrb p 'eJ.p|c?32]^zڡȍu5ۢl舃|=ݜM UJI^) -9̐gd3nDqtUTذE/0$4,p|RQFwޚjU8AIujJ2kVY'Dx\!L4?h!2r8 [G7/tOt 4uXt,S3XN 'P];\m,L tlX$7-@c?3awٟ7wot]|BueyianVƉ];}<\̍ nްNMYQNFJRcK~#J͒ ?F 1Nˢ>DƖm]aOFƞMx9 Ϫ'|$P1P#?vnt3FtPU])B8-?崳?BPAE]s cҲrAry'rF}$L}"gg$6ܿoC;KS#=- $,( M0c=3Qwx죛_n uwܸT_ SRrp_K3c] -} -}7ҲJBj:jO@О1qNuB-@<*yʥΔp@pp23JSڥcQ6^D9s9AvNE:~Gc| $`Ο=aZv2:stTVK=!dɾo( -HF$Qķ,YB.Rv_KȒi63|Ms=~yӋ5`InٸN@r5G> as0֖kE94'Bxy:Xؗ,h2O8Q]#`2f~_టNIHI-(.k7J*KV(/Bjb|L@?ョN&zj -sFx;h -ZOZpFa1IyeUu-] LR&.![XR^SIAg/ù#h -N,Zjb)P&PHO#Wa!(/D}e5O޿7~fc}mUYIa ZjSǂ|:[[hilUQO  -o5kf٧vO v5 DťUqLxFN4ڬ -̶.1[$~O36zgLZJ?,~VUF+!O\U Ҡ$ V.`FDǞKNȹ\\6~2oѹ<{GhXWUV|9'#-\lԉРﶷ6gM&@ Qh&Hr ]i#3+{g7OCG{z GO4o$b=qk4 MtDhA/w@3 𣨿 >\8WLMhmi^WSqJAnŴQ=\m̌ v +H -;ؚ>U?Sd[# |+)ghba?83 )9DMq(AB' &z*^aڣPh=8Yܱ}EY)qM0پc'w,8< ["⛖ahcifPqAhV@4_ .& #߲ϠN%Y8@CH^W'[KSC=m6(%" N Eb!<<6:PST}y'(l5M-m~ P7clI3Sc#C憚¼ q1,4ԔY"UgD$J$dUյt -l]< OA"2s JʫAVfi3 }>>GN32tfSCmUyIQ~N& }txyqv4ݥ +%!&]F  -}T_ZV%&-oln۝-Wa/feٗwv-gP}0g r3SDGpq176RWU`['ȇ 0O:`1"QXTBZNIen/\rZFⲪk73w>LDA;hmU]|.6*"4A/w8s#1(/>ϑ߻;4vFc}mUYIaLZj|udxhpV%y)q1~@mf9}9e7Oq Q_@h=VRVAYMC[ѕg3s -luG'bH}`[ -a>ۥl'9|`n{kZ{5%DPe"y9x4Ed$v8 qG"3'i) q2!}EY)Pg=Re"SLNEE,Lj}?zwpc0RFzJcA>]M whmQ'^Qgǎ5>r-/ZfUظxxdL|bꅬ’Nz i/Tg_Oٙ鉱ѡޮ[ W/O9~4s$` 6{őυ_H%ZR= 9y*.1tF&f!,4zW[ SQZ9 9loEfW% *\z}t_CyY`F{;Z[T\-.;:}m$6lBFm=U?qPQfX\AXLBZ^IU]SGa;a[4]vbM>\{;kRc\\w4TfR͆AݿPWK]MYAFrFk0֖3ƭ?b"X+k$kh'_O176 ËE0:*J HtDeǏ,ԟ``M Vf%'/>q@}r%vXo( ٧?㨲 ݰynye5Ml.K ;՞"M"qC}jޢYQSrZBLdXpr* -{%DoiPc,ObEojEq@t q.t&":>9=ӮC\UlCWr^fjb y.d,[Z\T:e^/y4g>x_H쿆]!?2<~zc}meYQANfjRBl cnF2j -{eEnްdl31,[b*[J?k P =_TVUH O"s\ăၾƺhN$ԤġꡟUvA}d9'*Cpw -I)jzϞKJʃuA@=Bԅ XqPomj@1@_/7tQ%(C+!!d%D>/M٨?M$3稹º鼍_WSYZ~톺ZJ{`f6 Iemz9<ȑ&ʟL%) Colnep)=P.65ԟjHe{;oc-Uǎ:21PUy{&8,"!. Yۻx - [HΞ~8c " hj2r162<$5$ ]͡ 0ԟcw쳰p?4oqj]uE)ĸ舰f:U߶?hӳqY4rf KWVdg.$?x㧈i0\aNקT >^>cFu\k,e1X#EH[B{#V/~dDpDD32sv >A: 1fH{[B.tГǏyvm~e= Ex;AD#_hJ}};tfsSÕ¼dA<\l,L5ԔHvGUQGv%SdE%dHZ9y -=_TVUH8dX&`Ll_w;l}MEqAvzrBL̾ MEk";y9\FJZ됈y Z:9~"W563'w6`txGCDvVfza%#-J؍ohţ?Ge`c,f.ڪԤب̯77Qߧ$V_h'/>MШK%_Pp,,ihؑ#0HVVw)6 u4ՔwK߀=".yDz>x`W{#=[o\ZW]E~~p1O7g{C u  GMz9n^DuUK - !"χP2Ya#Ds?c wSԗ;7S bm-2Qa^,7W:h.[ ԇMxFЌXO0,f`+רkoٶ}[0E(ήA2%gop+C8{O*Ғb#BO= CF- Tef)qP3@((.\|jD<2N IL -Eeo|1$)lj$U9) a$rwv(2УuRSV$18؟R_7G)r0̝NK $π]ې7h-_@V,#8g1 -(ΛP°6.`c$R3s De`涎[#ꏂ&lkiT&SbϞ /449nzƗO˪GP&Eʎ#\69 ՗$:oש\$c# !v07:DmLq?`ZnwؿRW}H;+3!PÈE8Sq,qs3)b4u;wZ9y  MJW6\Ͱ(Na̰4fG9wmt=6 3!LRHQYm1l P=6ur WD#&_A;b`Jӓ}x{z\3Es<._3b.Y v8~ E49{>gB3׫>8#66ixR/ɲOQZgu!ޙ*#'!kT=%fop+_у!ׯ0OO ={˃ ,Tf4VWVAS(>{LRJlģFQDLb_ 1>G -ĄzG#Czz,LM&]l̍hJg$9؟R_ǰ/^aL$İ$Fpwq4E4cQ |bْ$b9g38[2byU/[edqe\ `x(K^G;Gݝ7Zj+EB?-1&ܩ,676ܾ@OG ,|9w($ciE -R"xobybcҏK}9RL؇KcCZc}MeyiQ>Lbl$Lf` ܼi5XqFHi2 `qQfje_`pȸ’Uu WKOc_Sez` G9Gkoe^_W[21t,b$ݦNn UHWT -RUt VWЏU(^EEQ U U0T)&=K{\4ż}75UqQa0af<[ hFp3ԓN WV[Uk56n6غad+ -`/TT_ne/({]GjIeçC5 EbdHlN}e+nH|ګ ,2̢"bӲ’ZfAbOT*t"F k. -rYCJEQܐ Lq/c ?zpԅy) >f(u)}-sr~d+ -2pJ*+V[M/d|PIFl?0 _ ѿDyjCmeyPOK8w?N2(zį4J}1NwHIv"C>!ãR3s 6u )7~i%EU?S¼PhH?"';+St4.RUb>wz\˕a4샥vloE(SY 6'X&\ AwG[KlkfP~ROsXl_krzv^QŪ+77ïe6>G}wv0d=:ʊdzF_[vr]-y,wc n*/hF4#e0#5urv()-+xs5D[D$FoE""r4ā@"K:-=-ueȹf4~\uH8KJ}1D<v-(u2Ϟ*=.E*춭 3@}-u+L}n?U&U}y bVW/Јtǚ:{=yY?oȧ?~,댉Ο'G[cS#1 "ԇqfƥojmvN.>U !kZN4-J}OdZl Ҡ}wz`ʐ!d$FqLԟ`9OXϧoW+Ř o[S2r -**/V5w^F^߉kWw' -s&B hG>`L[ 2@}O"BM"FZz+Mͭlv{E/.T][oF^oF_BvWGkS=3̸puⅤP5yyquG}1/1^{}P)PPXTBbi~eqi -df&C}Zs6zAYUtWB (ȲnrPܑc%,y~1&>"ki$ZYQV 9 nߢcS_ߍfa7bRRMSx8//ЈCXJOjtCrوD![ ɑA=ښY(=)>:"4r %d+=?)joi_/. C ?V}2TUC[p dY]"'g#Ů:{b@/[%bGz;KK'1locjt -r2"Z.GLLd_{U }^7rr NIr}sy$2^8~Jd$g7t#kFkW``N%|%OPWH}Po\jO>]+(ՃTTlb\ةkZ:n{(-xC]o6 Qx8 R׿gJiy:-42A9@9Z1iEc28,2&!%#=2/F))ڍ``MJ -e/ -acWTabsĄw>'ބ?\UԵaכ[m߱/04P|RZVSg\Nv0[A5?'#9!&2 }W^H 7WM5# ###׭Kn^tbYyX5lrcrdh;=mL9:]V|8'{6P% ҂ JN%|%C@S?y6R2~R@hiq/,0KjZkbх`e5FE_CLX]!<|vJғyJ@WS LANf0F\~Oc#4(,^#sr(.15XaɳUyW99849I>+F$'H0' '/?S~>N6x!FuHP*`Pd_xf܁8}T!z!%1. -(ǣG}{OϕWVQ#jJwoȁ#ag5vt߾h'cCo6߀:s07",zZ*۲ Fo EhR̘zf&s+[]GbPWT^ojk2/iG׎G|48/ۡmXH[C=3ARr?Q_<3 L%Xh ,ƺj)@!dPA+2;-(9X?ҳf󼕨!l?(,2przv^Qs\ps~a0lq(/HN w ~UQ^D *D%34Gyc704":>)=YM]aP/( (i=zGu5W/VV$g#F:j˖dQG} ZP>77Րzx^vzrB𐽾^n;dX2nEKTUFLSxN>dSFQomoEbFw' &_(yE NeSovac% d0|oDiScG᪵&fvdhpQqLϰ{|R}33#v$M~t,3H1#_O:4X',FP>!_{lXGa?J: aޮVR^Acp~yeueaxfpMVb,XXFDEB^E:)"  -RH@z;ht5Isν'H1_y(t@mʊXdV.\{|g_b HHZ#%-Ye}Zzf֠!1)jn7wt{6x+D={:ZoÇj|Q c}Mur2RkWKJ,Y4'_gy_M$o+N^AaQITTVATܽO7q#zh G0[5tu27: foOmŲ%$+Y | -}/K -\[,9|r|tD)_Xhh&[7Fc/E>VlէEThkU9l7mjT\RjFv^aqYz},meL@[+\y>).*촿|7◞6mYibbsEgk2U_%kHwݯkh7042칌 -J+XSCD׃ =|%tV1?tP]4 (3Bcc%37N'8ꏕ MOT㿠)+g4 -rc./BF UDZ7R:k`zq{wS iPZk5-/8_,kj+`{@-J/HZEEf HD}&-^ -KUuC&}#bRx AcVeg%\ -JWG{[ ӐSc#C- (5Hhn>ed3 ?>K0 0/B3tWo7g{aM1J_c+?y>ZSJE̝`oUËjecz5H[M_ݽ,|+5"k}:;W'8/ZZ-ܦ(/M/ۤS -KeRZVa3m57\¢gf/_c4O<ò²0/;3U /7G榺d_~zܑؠ?`į\&GGy:#> u*I -_Ϝ9#T++kb+\{i]igu -}U|/sP}Q'!݅,+au4;#=mYqKJ,M)䪾JKѹ-QIKOHH 7kܺ.HL u4ޡ nB1LI&GQ> 9|PuAslb$S̐M}nVɖC)QV -=C3 /ȘĔ|O5rVL/t>gmus^ۻw@۸ivMb%kreTUפ' 8":!%38ԑ`pH1+H# r&̍`9"gzO97sG@V}?{ RkWa3''D9#1mkZHL->ߛQ~FO]:ԞE%fdURډ!P7wAx bx/oo*e͹|Qxm]˨^73ɥR:pyb KHZNZm=#s+N2pIkhq % a>%.IKOqw?~!*J_n -ٟ<>ZbtgO} RrY<L lyْE xQTSV3aeХc^ -]CSc.>#b_-^US׀Uf)[A]67VWeg&EA#c27n4A&Ї5{\U^ZT2=(!Y\}9;OP)p1/p1V hK20mwv m̹|zeu]CNH猰mi*v2|xrBtxp;&:;ex$XԟB'DLtPOͷ4̭pb‰G%ffUV64CM§5=ܬĘ [kK3C=-'I ѧLQ;G =S_ohav^[kSC]͍+3RQ}Xmʛ`֬$ŕ_aex#L -E*%# R;2s/0426\zVnAަ ?r|u"빏|U𸨰~^v6VfFzdgCMjV'd*}az"N| L]Sc.!dx$tGO߆MݝmtO*r6Li/70_NU^i̎LȬYcD#c -HR( EH"tHE:\EP":48dw=|߽ߥy|?8oy~{D*Ⱦvi|(Q_'?C=]m U`/1@#TۿF2`/Ie7P`n)iZڜ<) CW3ş'T}W+8/u@OK %}+5ˡtSZNФˇWM2r -{T5t1=FW$jZڹ$2|ƌgLf0ai(ё9rZj+C)62,gvL싱R>BC8ܫCz:9pVW^Hz96*<$k#Շ@ GhYMW}4D[H1T_[,Մ2&!n=yS5M3mu-勑A^nh*QͦŐ%Ԥ'8HhJnܲmU>|)9z_I̡32PPC91+3x 4df>Kb|4N;8z )1$9h>^/X? wA(/'3-)!.:|l?D`(X\YT*Pku߮G3*>U^B/kjykphxt>VEVvw5Td\ tu09ȗU H*"3KH?W\ V|֬'ꧥg`lfe. fv^QyuEFK<.Our|Thy;4GBK~VRK/P[7y֦ڪkɉ>gܜ-1V} J IͬUQIP}Aͭ0"c/'e,U6pY}-P}Q -`ldd&jc]uYQ^vzrB\TX^6UQ>Rŏw!/a&p+*QRСRoP腋.syB|B SF_b\txHYOWG *VFC?eeCo>ϟq;ښjKFz8436)VS޷k}ay7/e4>ǎp:_ zwdl!<Ϥii,-$z!4۩6ǎ9%&%ҹ +J$7nr@[O* J*j:{aG̚wA^R9Sn&|+f^ vꤍeU=CiЇwC AFuEIԫ#yS79rHWK]EqN)9gYU_L4`Dյ ͬlݽC#7s:y4=~J/};ZC'\x~KA8?'#%1>:VUsC}mYMuVN/zdNTϗXjZ*7wUV302DDRTlBrzV^QYF 6_L[_@lج*+pT\K$pJp^@- L tupZ+Jr2Sc.=`gm3T\ KȒSGl@Hxt\brF6Ŭ;wGO>Z|2?~>~}@Uiee7oe&gDP} c`229y M腘KWR3sAS;@OLUD'kB, [oTaO|Ԉ,M]t*>OFv*&m -U4tȚ;fN'ZGHIHNk;]C~rc4ד{)*)1N(}KwC,Y/'_<O@U0-L u4ԔVmٲQoͥ,ɛMx&/%yu@[\XچWXx(Cibsh=X5%c<0<Ύ㗝fH QP *M*U@@ޑޫtQADlEClQX&ugs -!=szʊRF#M=z@WSJJB;\@7<VkHtyc/e;76sD)GǧdV\RYOqu߾[0ďC} "GuEy 73%>&<)OWH>5ܝ\: >SC0@A _[SUQZt.;#%!6*,@O瀆.d-۶ -coV}\3[U[; Wyihdtlr%4lM}M4ur@OۍW+J -r2a]̌*BsH*1V塹dnOq#Wr -*|ШؤbΫo5vt8<:61Md ;GL]mTwIK6&[$F]:<}sZjϾvؙ_THf e_}A"9 QWfJT￧?BAՕp瘈@SGX6>tPviIm[avT:3yP)WPQ'wE[P -zQGw?'^,4=x}nX4lPldI7g#4D7a W<U.$>я$>CͷTJ%yɾ6Ⱦod=#+? >o>?:^W;@FCp@?˱6fhnR\T@0CA.UCP=oD~@(2ԬsEHZWoN?AYUQZt!]M=JsuA50qrM[H*3:li@mMqI9%pvF?&$_@SPd?mMa~. S݇|Q_(C5LѴN=y@/W.^(/)JO +231ӡs+!*E\$,ԟ0~ޮ;7Te!Rts?babpPknҒb"46|;Ns=$B2* -_Px44hnAiEGν6{q٧ 'zm"Y!4. -ɾ koBaBP'_$n }SF…}]m2R0HV> 'Q}GT?:>*PMO'1R}X!'a~zruEIAnFr< ΁Jn;SU8NC!M>~AV [88Sd ѱi7Yf0߀J+J s3SbPbٷ%BX- | }<K) */(=Яi=`kmnj/CFZR/ȏo0<KU[Rf(5+"6Ͼ{ *>^cPMM@?oomBzz\vZbldH6S* -_oDvSs -] ydYjpHC}AiUݧl3]ig+4$ݔJ\ʝB!BD(rD$]GDlMj.ڝg?;;óz|9Q~R_  6`{K egI9pu7is@RptN?Q}k'P}{"cR@;ŪT?9D;Jltda|<]7bLT)G?ZgS_EeXT3o)Q +-.Adp9+Yw>tCԡ=9M'&ݡX@/-);];=9ŕ}X ABR$d>[GiUZ_[ giqёa~nΛ7Q[WW%>X6՗xҪGEٌ>d&`0QҪNѩ1cZ]5񼬴=HNm271ZU(5Se -MwB}Fӛ>jxyE%Xt7dIV2#JhGW7A=D엗@4#V"WE?dO>/9:Iwp S}JOLK=E_k&> -$, s_ȯӔjm$?9҃^S}-E#IsVGMfƆ/Ԟ 5YIQ)p9?TC}FGꏛ0Iy*Ԩ:Ԩ޲kmhmkwXCG1-zy]aZŲ0a?@@>{KA_\AMHH߽uo!5Δ=}kxH6 -0!O+OR}b*~2R5u7Dϸ~ p'Mې6_ZwRa}<\AMWX3O(tH5{T#{v]wx >hu]C{vEye+C WG#ً 'PTgB -k҅K -ѧ - ou4_Y]П-8 1$E2О*@AyմwH8(l5ίt̩㹙G |olkiNT[KcLi42>ݤ0S9,xgϝOtZvϝG3rJWT^o.2Q/.mk:2(wʾ zyϣOqDlo(N/MN7ꄡoX!>J+H"~4eĠgŔG_dTGVlEME~7L9W^r"?CQQ[l61b:"yOC57hҩhsiwT1Sҳ,;+i['#~ȾȤHGXhH ُdP_B{HB 1{ "PWs2zXvƑ䤄}{C89ZZp?kW DOIK^TSc%T% -ROĴWW}PwݽuZ]e$Rc"yl01ZbKUK'*L@/KzQ_C+եxTP'*MˮDfIa)RfQSOh+I"T#NI~J?Y=gQGd[oCBT\8Svd/3 2hkeaj\ i}C#כ©|K$U b#3b - !\zU&eh|6wXK1h+4?#XI~d_U]s2J]=|vڟ J7o5Ӥ}ʾOW ?F<W'넥ջtIQAnVzĸȰ_/׭RkWDП9 -W Зㅾ@}'>շg>T+WT[LR`̩㹙G>@tv&O ̞TKjS V[\#cg,CkYw i[=FY?1Vُ&@} sU%[NX_[uY4Ec h>5*}@}$J$PUȄ X KNŪtC/lD/.7Zԃ_vx^VZJR|LĞ ?ow&FW,]CI;Vѣh6p~f;Zv-Ll;LvSKW]o}EHj뛾+e{W\}J2e7c?#:G x9T6V(Ű驇#Gz89XoXghTo61eŠ/#=b? ՗cT\UU1/N}⤍W* -psv%_1TPoJ0YW_'NUW'8jE1DM! ""**" ( RQAAD]QT jԸMۚ3;==x`יp={>gMzV^AQIyeM'\^>yCM0۴7w+}BR_N G|J/`7kw*-.,HMS4wٞL蛙L6W.%Y*3ObQq/c>H5%ScƒHm,N@*J&U(ɜQ44B5 -[63'i/S`~l)T2}[~Ԗ`I/ }LRΝn:qPꊲMgI"Â,hgmABbܓG} &H{Z yNO>L6!p3"m=x0]۶`4%ů\C@hgeNi&jGR_%;X0Fbi@k4 4bEԌ<U>~'i_DZ -VW^1qt1i;r -~=9'CoΙg;%О1J})8j%7@b(q܇ eT<@u]=- +ZZֶou+QxPS a{R+J}ږq9ԇ,߾uӆi) И33!Ik -C}<Pm؈X~O2ԿPrR}ՎgN4)t+~ƒ/ȥR ڿ| ha48,p&ܜm,̐T?/ -%UfRN8 Mm])xOTa2f߲^R϶w|yhduW؏ )73$ƾ<){JOD"HxXon.vVؗlL1"'؍bkТhQB}?L%=Roy^ʣ~=A,]homj`tڤa><]EukrRt(UVcĂc -^nOOupajDt5yMgΓѼsXPޞW|IrOKN T[J=)/?{K>~_P/,֛10m >zwR+~{Q QhDZ"'RBĔtJ -BFF}!Fe p@} n}hĸ %%(y4ȓI*-RC1M*lam#ku_в4u0 VلRJaJ}vkCIk= =yH>䦼uI1)E -"a}eO!-IP?#5 .ozwWޟz4JܓG} 4Ϊ}@&Jn-).enBh`sI"' @z 7j"BMaf \ -k`k,NľxBݽb?%!6*<&}<V+P R}aӎ:w-\CoR?7 =iI)zS<2B@Ј5eu,;??2 [7oX@V |q.\\ȫe< V VKCZWPTR^YSOk%Z9ZTo "p#CfU֦3bG]ޮOJ}>K}hofrM'B?VoߺiC6 }aH<0 1CChz~bGB_4kmI!mbٺcgU[S?~AaP䵙9[p6:[9x=bUTlw5>[j}RI}z0/١6UWǥ$ƱtDPOWG}F{RYPma#F"djamH[#Cɭ hkn6\K>(,ɆPQ_u]veꬣg85*<2 PAV"Exx>@APU# -(8,6ծVӵҴ]{s@{r3oo6oJҥgZy)t/R pE?Y&߹UOI}Oo=C_KHEi10am<Blm i; QBY~lE4P4XlF'WL|o!MKƭ/nO֣q(/+MQЭd9F#mqOÈ28ط? OOȨDmjFn2\/562?!VcRlcb*\bԉলpa߯2Xr}JKRzlGJ'%Cdoټ1R# ݞݕ7,LDO$-]7 QBRl}1B6Ui0'CUG[b^ ҇Kʒe'PTT~uWOvS cmת;wAq^_' -y5/Tu%`_Zke /FFzM58:D M _8R8XJB{H Q7P?SP\#>lO;BH%[JdYHr dԧQ'Qw CzkzU XĔTXq:wϾد氿'735E@*+/WRIR VŖSR|Sz+J w@bwDf@z*o>>DCl@Of'~ JKbYdD/ /(7KL.O}Cwa6,zԘRF 3}ڏ}VKc0j8,`Y෰axM2f&oM}$N=_ܼ!ԃV,J1_;уt؉8S }g؆$z3F&wI4^g(BW[(9K{w@)+w%9?p!V,-H};Gw>m X0?)RcFl^fZFgԚ XXa;x:޲{J>{j=*Њ7Z.|z1̝5"AFs:7J苞 ? ?a2P Ə3VK'ID_Sxyy;ϝ$:[;:2<$?=(?L/N}1{=؏]HS'?x/U(}tԞo؜d56,6#Lba`OI}>'M7| Ě gdw ~}<Ӂ?:Q" 袄0B 1>mlM:rauԌB>ZF{{ډ`j黒ܴqUD.N\©c؆J=Ї&d)ԧUϡO!{!e+[G8~$#?;|`P&!z[Ds'K!r 5ۃ=}{na[Z=2ggiŠA}B˗(qfx0nfL8N+[Ro:o0nšM7? ύ=^ȏ3Ї%E͹r^ݜ '' J{y2zr!49ЈĔ\C'Tv9}^d$'vl #ç,!$~yP,ɚcU[ǨtYE%减8}Oqk۱Ovkeu>.t]X8k`̝ ʲGeaB2nOイS_24>kWjQh=yat=OM=ңdЗ>c$ԛ !!/Y _\B/A#/'iT1Lz &`>]nM-Wv&,9߼?-Y}w BHm"6[kO+ĉmWuve7aIC}\acl_an^Dhp/4!7Q_ }g!@lA\ ?id,XLФeǨ_]`LۙBH}g?a8\H}7 "_Vԗp^ᢵE%؇wdU0~qI~%ߞ-#\8l~vp\Aq\u%GW=uJ{9>j/>.ƾ g74a-z>xp9;<$Sad€$H$ Է.D;`[S'wg _b!xE%EY$U ~*yApRtwv%_M+o°%OLI={W>"Wڪ3'LM$u%]b)]-Vs̙Vg]>S1M}b9>֍zb =A(lA7)< ssNҀAC2;GF9%R/SKk#ȳcW?N ;^zȰ @}aé,}qصj}EF`ΫЈ8d2"%oaJJ+,y}s%ٻw%y5^7L2sPt[}k+z`vB-맾mS.$hn?yH`VNc vtb=ր"v(Ǧg!?Qb3hۑ3 1vلTk9ť4MxzvQWgǗ ?X6IVE&#Jҋ ,(Q -(E(]"8 % ݸEƒdc$?;3"#p9[֎O_]QhU^VZTo'r Ưc>m;'n¦-.%I>^ݹ7}7^qdqGV89 (N ptZӧ >ѳ{iQR/v9ؼwg- {+Rp÷Ϲ_UL:Q?``߀aQ)T;*R| ^59ɧ3bQUd]v*YCtv4j/hd_􁾋2}5JcSЬ]hK?,p-[vHR?Rw{?~OuҼgG%nf''Jht~rPy5=tє*G Tq>U_"MJD,\UӰ~oʵ -īɫ~}ueup,]l--fU_x -? &fsYۃ{>dc'*4!_ ~'Gnn[E|XvP(n63 mKቤZ~|LdXw?X[ޱ:MiLDp ʞ={l9FU@wxp3Ø8J,d [տKUSz/*ڂ\@?|zsf4ÅUOEQik#(&7n#ώnkdd[vI {TeĐ[}\{HS?KAJc׭JK G?QeTqQs)&eQmhlڏ9w T Q TO߸nu~6:gdhb# {"ɂ;Sُ@D/۲ ee@ K}vcAW$Ƒr[@d zx5*\jJԗSh($6?B}|7Ok=PSI&{9H}4rz'(ȃGsY͵upY;(gu<| -UokJϫۺU"Zp:Wje_vQE⓵}m k894'y_ro݀OJdfZTBlɎ`)Sc\iVkĩKW>O"~<|ؿ E@0>wtX>T)StKGI q9D8=}= 鰃E8տ艆U4U=S(VsA9՗zzOT}w/%!1$hweo뚕wo3٧y{xWX,>&"d;GfCN7"l6mRs*x G}/}/o5uWSg,{pGotԕmꏗ>|Ӛ7!O|RjFNMU5}z+{._7o߻{u9 zT?U? U}UTbS}5=Z4"W_.h_{d;nCvԈ/c< [Ioik5v 2o%hFY){xEIb> -G}@2剨{s)A8ț p[T:dT '!w;8/p g -U4yvN`>B# wr nD?u]GTP@|ouO\wmC,LcķTLlj]?}&LN9oҠOeή̉H+7[e>ZHrP¾.9K%Q!A>@}P?R?)5CZxP{Q 큋Ǡ3 ReU?ӃJh'|qpT!ϕtshX7m2Տ\$W}iS><3_0~coJ_-^Eim״ >;ouϝ"D\Z073-Y* Z wu'oj>]o{WS:Ǜ&2WM -{gW7ꚱ YyEnZKW]ACU_x-|՗QoV6ϣ23G?[JfEל?ۻHv] ^򍐺9@x6.$v鳅r]QB@$7ž7RiHx4~~-G}eRO} -6& -/9m[$8q9q L̳sUۓʚ]{k^OjT_lAU<^?O9Ř -Cx畲o~PN WUdSڕK}ݝwQJ"# # Gw,b^mf~*!SK"C#c5Bpᨏ!n[ޙ uOpڞHJ pƐգġ9Š /08<:.1%=;Sc'ZՄE! ?_1R S}ꏕ{y&zedɕ~8/*+4nh34aQR" A"} \/. -.H WD\ "l""RV((b:1NƦuj3ts}*e>=W63ڽ nGVLd?{ww@ʺ COsn^YTٽÄ~pADJyT"s@}l.ZLRɢrc~R1_I}Ti&zfcsh&̞T}畄8fbrJLҊ&4u>#dZh~Dy&Z3X}zI쯦e_#D_zd eDX[UVRD7 &x,Ҽ.NLTŤ`'FU~sD(GGawR_$h:ԯoJPvEd樑3Q_iBLBe/v LeA4A4ohv<~O>ѩwQ6mR}AUƫ'e,o ~_oN:RJ%e{K)ه}%up,^DdAU:؟?ol }qu_o|D\Ӑ*оǏ lbXAHvW 7:gd D~=RZ8cO&ź@eE\P޶cC -6NiP?kꛫTT"5˝WbsreDr=|Daq6pvAnBnL7USKOkVTc@g}_j!W[S>ӅϴoYI\A&wn߲1>&B!Iprt_jkmv.`1 -v/A7 mm:?I0yT""U_ HCaH{,Z;PA1& W?wUПe1Ic9n`lX*SD&$mIݕfMWϣ'jǤd8aT5A;7\\?C՟;TߐSaвo9Lٿ8쏨}q蛫[UM5cs3w V -`C+ ccbޘRPRc}muxmVT(}P}@$ UFFoǍ@c~'_WU5ܘj ߚ?3 m^h>$~igKJ0Cã59Yy dMÿÔ0p`_Wm@%;{"/úѲO,:(=%IT'ۅqZks#EA!][b# ˃jeKlzAΞ9`&u i ƘW\tPӡ |}p Ł2ExDqݼbh7?ApGT\m` Qz@Ɵ%L^b4$͡ u/=MiĴ5 sV}+ϘJ?z_YٿiPBO/=έm-EYIѩ#;MC"`7'GV [~q8CT&m_YC~+R| t2bΖQuRHr}6 Di:EDtt?mlnN4ߦG>XE}O?Ӈ23gYAXYSvcZ6_,^ƫA2/HcH W fZ[i?eX(շQ}P}-l 2(N5xv Kè(-.$ @z{:/'v6 d*So,ԬE&Pxa8)6D*CeA\_(B7N= u1gI~P S6:OZf9}&rgpK52ax &`k7;.z=y̿pHFQ Z{)o-yXTH0!h,TRTT RDD cAQE@Ac6h5k]w={SGDQ2~|?w.PY/E^b<O//~3CJ8;3 }2"$Zp#Ū 0_HdgPGB՜,/-.lÃ|ܜ-@M FƦf,׎ȝeg:4ԧ>`PRK@}ΉҢ m-oZLH -OF?2E B f| V[k~!nI);r;IfD3cW.P}KU}Z Q}WP}A:_^KwH~/#(d_X3ymib J'yC XZL]mByP3i&bq~K >[_AClc"Bwx8۠웙3661jL.>+!NO͡.LBe]o$~) '.O:O#Q$bb0-&, d03.,.ȴ%Q'/RT = ?gWA@"TywA /a_14[=7_|$wBlTh h}=XC(bDe>ׇ_P'O{ gs1GG7rN;Xdhv[kK6`7EowrKťjҁ.Q(~bldP_7GxSZ%J9)1^ _G/H4GK˫jP`BZ9_)=[7e'$ReʾHĈ\a&GD=+lHPx8eibM U(ϜL?~o~uUcE l`_O7g} 6 OVۂo@D@``n1@P_?ٖz{Էdoҟ8HTU_?V]Brj7[:zF"a2X-xALI|uHPnTVP}.Q}˴I˾H8D"K=Dh4=,)"z[Cί\0Jl ?owg{m,Zź:Z˗-Z4O2M\dP 4bǭ>Yqh̴}{ (v֖ls>,s _ nurJj!-g[/M q L_]QQNDO5 eԗH(%uJ2nr`fQ xQS\RGw e f3Fp8 "&;nݦ&D(8#ϤC_bIU:TBFǠh d?`N>}.>Yn;+x~= Ms1WIPh}= ,r:O]捼S?]@k8pzޤA~> !mA<}âbrJʫjZ$&GvP_ Pd@dԗD'FIB"6CEKRŋZeTl"A:$Z V?-H^)]J—dO>ۢE1_H0qٿKd6r(Ϙ#{wvN}8j9eũ)1!>.PƦ\45ԗ.?WXS'O7P규jjlT(;v$?'+@d߁`mnfo#w@"unц. R>Cn?Jʲb~JR\ThRoJ}yrUʨ>JTLT`F&ZbBdߓɵY2:ٗ,c\n\ktqucG! fF_z4}F}ƃ H}>`ǭ9YY^z0/&Fdo܇gemwtvDMؽzީ3q{R=?PK~~M\_ K?˨?E&NY#WWRYH RKТAPʒ*yˍH".E/U$Rw`T_Rhe `*4n#K#a?E`}7uP{&јn$dDYTA:{mWr Dk9U'ʎJOMٝ -طG]='5N\5\kp2<<Կ(~!R?9>:,o -@k}Wf1yOA$ -$⓫V5@P:zDܕJ C5.QQ1L0Ee 1,QQQ9ˡwE^w7Alc[N4qs=Y3x\~e]SkKWo{ >F aUBUS}1U}'i0T+|>);[{KywrOZǘ O?}| DS{xzR\txH٘A#hA8j*P@;JaIľϣ~n~K}~{{;b~eyIaYq!DΎ}+ ྙ0֞,?ZP\^]H[d)28Pb9@oۼqP#rRO*2T#XOlҪ5*jkmج]O3261'>Q7{rlQ/Qܸz<~UT=.D_PC"ʼnҺ<eѼy)>M+ΰ¼SٙQaB>wt4ԡ.Q LVR˓" |@j>~;>FҢ39ҒőDEn|ľ9yV6v}~x4 E9e0KS?2R`>$#/'+{ @?"gCO"o$ϙTT\Re?6\E^~AaQ,mɾ$0ޝ^:Zk˱2R!>n6`<דR^@+/ͦ`b_HA_]YV|6){{\<;[k+KxV6v}PXlۻ.\ۏ5& PHW/wCE|G^f Ij-^J\~(ZV&\!;UDuOk4>9DrmV'QOEVǡ#OȾb Rw{3WȯKG*yp>dk/t77# $E{MH>z:j*kV)-ا ɱa1d49B7ԯoln!'Gٯ*/)Dُ - ";]E~T3rr ˫j[:N`DppԿ//'EI>HJ RI.,WTU[nfz{M̭]ݽC"bɽU6dl Op\c&T&;b0>IT};#TԧZ #Ʀ6ʞR? #4ntCv2q/@_S5L>Q<;+ )^V_?>'* zE}TNxDUW쟢녶stgsr};q*pL@W" OR77O=J &~ezK//7e/9$ -ByeU5uS E^~AaQqIi8 K+km deB+Iw+D&Q?{e~Gk#]\K]QO]PءC-@-ed[L'o)sS 쫿-r2Rđ!>$!Cwl޴#bVà)3Ihƽ8w77Trwx~Vb}sw8cS]^& ql ~ 5%@+¥Q547io۱ L704RslIQI2)Tqɱ>$ .׳-JSG?!edDM,lC/1Fe]Z/_q[L:Z [b/qa-߾Ej1VUVk@_2ڸn6r b$Y+ x㡾4*kjZZQWUQOMG=܅3y.|ݓB?:6!9UlIyumcK;|gmA^~7Р-1P_/@##ԟ g6o¯F*@ٸyo ?d -Dqv%"\[qYU$axSFTRЗ>ǔ3Ғ}HOY9ۀ]]N$DR{zn/ EQLb~QieM}Sky$g[cؖHK@-MJ$`A0?K%&P,WZFEUm-DW55'/(,:.)؉4$")ћ[$)/߽s~gLT?+#%!&" UrXW*?jWQEfeXXT,_Fxd[cP̯_>g29v -4sKcmuy39824і{fM Iy -ťKhNsHaiϠ~FVʚ:>@b\uEYټ'2Ӓ(|"M(}(S38/s Ϟ`F0o/)%pu!u4?fɢD%r -H(Z[ܵ-E)NU}Ӵ=9&m%`QQ {"*ޗqYL C@@,nD -䴮 ic>\/~2 -Kʫj9Pnt(}`*FGR{cuʾC3u5ՕŧsOd%'ewvrd3%CQI!~y:nu+\^x@woT -ԏⓕVE - jo34'Nc9ڍ[wB"\=}؄n5ODJCPNkWSmx9ycX޾y٪ -l*YG o{>AN~YQ^vzrm0[LA}m`ROB.Qnl@ 7H]Oa4{ޢ+VYlLwvFp1h8Ͻd)xX Y=H R5P,~\hgT9FCTT*Iɬه)_gL}u1a%R9麉d%x;G (7P=[FYT샿*zKLesR?dAq>Ɔ:`dvfzj~H tp )<3W7:nva7COѫ>~gf%~~vz -Q_*qw:b_ /5E꫱-9'Epr:p܅KAn޾,qrc - W #} (?)My~BldX!bF QٟVg6|B()&el'sirbA}M|ڙxlʲₓ'S(`ޝ[1 -z&L YikRCSXzmcⲊFE|>a0?7;xjRdW}!O%hh.[w;vB#cR27aH/p)'g4ZX?UW*em؆f 34ytuPgͰkaދՠ>KgӥŧrODÈR?_!rHo(6>'ˢǥ o:3HIPRvԇRaI}諸#ˡ?Ns$]=i $pt$1$Ee -: gg %P%@$~NGT.>1$j2cKfYN>e ZxTܟwY_ex(薫M5TYZtnVѫ/03AԩY^#X^tM}Y˗/ g"q}p?  ѱqi~AQiy~ǭ#>mU{UԿzQO%x8=hE7Dž)كQe_Ч BH!yFfΞpUfKC~29I^ai9Ӂ-"IHD|<R@_H(ay@vug*9ITxHYcjBhWqCP!nj0Q%->0ۋa䆴Pѐ}첒UBXh'ez0ĆloUTѩxZGѻmZlܙ()?Z&t_ry~SS%EɉyxL̾,4\s,>1\3Ub?7qd2%$:saNO%qc.Xy\nӶ]G7/_c) t@UTQ [,`#)1~nNޝ[7X<E֐T8.3cS䅒9l# H Kii1wCEUT4^c07USGfO%.vV{wlـifbxOכTпrgo`/B Gq I)i}BS煮 _&5HAX%wl^gԟOkǐ|8`'sPcS1`Vv"aǬ܂2ڀnH/#Fך9FJ ǰ`)(brvrGEt3gH e_dL4m [kiL4}z,G~"/]̺ov%][U4m,iW,]4oa_Wg^&__Uw?鱚ӸM1qO@Ł{m(*" 2es i54$XӾ?s;P xNjؚ P JJ}JU a?IAs/^  fO˔CJ*D[w -~Q<#eCjoCAĐ: m.hEQ*J%Đ+O?rÿ́PLZB۲&~^}b f֙}Y~Qi9ko3_su`V`V'F=~-";q.ڕK"c})5}/kϣ RGPT կb_SLCC^ GDIej藖ǭh[EGJI~kW,`7y@ݺPQ_۵'|0k~ 42f>zmںcۡ' WG'&uG.VǟȐE߬易&K\82lghmafUO\;v`?v_3:~k5߃ɰcǛ[9`RgFE((ר#Jg~<3UI9/4~g,sgXj4)6`8 oN r@:eʒb-a!ׂ 䇅GF'$R 2U?;/^M}XA1N6oCcЃKc1,l;]tڍƽ .7&R3y%8q~>B7]s|*>@l7y#r랝[7[p4?~=~떡 di k[t5ښ [ڋ>yAeLEâۧZ jjeq~n6gTgO;|` /^0g&6q/kƱ߅8/(*T~5}}U\yVFZ,)Q &'JS3յڪRCy[-d -?%RHᄄ^; />7FbG=%zLw5g'g:{C"ڨb[v$ƧFZR¼ gN=.X#՟jkez b<%~ B_&h죬s?|~rzv.KW yMg}T5$Z^NVzr":{ElMF[b쿧P_!/*Q2կaq_UQ,-.,˕3g܏`_ddG̗ed&SwA!j߹Y4>: XPG'~>[8ڨߞCkz>jǴ䌫o޶4^5^d2㵴Q9,/-S}X#ǵKrٱuڕ\'O2Q}5ߪE~}ݧ@!GA;a=q#ņ|ouZ#UIMQWSlXhf]L~qL2dwչ>#S:}Y^}"to>z -1oѲU렌]罯ei9\}|4?zHx8C!HJb"3>q~gׯ^ht{[1ק';kTMQ}}o-Lh3|5Fʵ?Grh|\rkkh7o &Z esں@MaS]{?rmٰf5Ega Lkew!`ͨ'I'ZWG+ʔ%Ls3diR"/gD'gBلKÉvwٵ` {K&~M髾}L &@3 k[s.%t| x9aM* -U5]Cz<{sgxVd%'BgOyz&c\dӦ`ˍ3bA>Gڪ22o+ 쏝0Qac99":k&I)ي^ꍦ܏=7>ZhyrY)I Dw+m6*m: ׻'Oԝ38øћ,-WU߸Q__W0/Wʳ2 24ITER>P+Tۅ>SRMʲܬ4N} /բ1AVCwE؀-~J`d2th ,د*; 'ўԨu4QDQ@D 2-"θ{ F8PCeehg؜~.ÞОB?[t%ض i -FGT-Ɯ*nG Y塾'<^˧~ueyi>[G`s簩oaf/LMONB~7vQ|P q8bQaӕƢ+)}f\3t%#EוR]fZrB +tݻ㛍V/_LMwۧWfpE8L Xb9BL*}2S~B\l ƞpD@M:|/_wDyo>B3IAW.?e{V} h`+ӗ?x08c pclW5ޛNt;aQ$cq)M#Jtܯ#|eڋ ^.<Đj,ʴ̬BB_*-y̌Ԕ ~%<1 ?gC__@|M6VoL'o۴n\}KͶL@7~>C(RtӴY;xnɴlI~QVo ǻw{h/)qQawoa.8rzZtw9?VGKSc6]oREq&V6N(mԼ6lA|lD'Sz;<~xcSxNW6r;} çyڕߤhm=]8B]Mߏ6v$?TJͣOW1~A~^.s?=-59)11!>>O!eH - -KEy!G_0hk_ W]%-Sڣ; g`tȠ8PeQ_[L;W,YƦ>mEB#m~M}G~{ki)Ι5m`_:H܋Oozgƾ+[dFں BۗJ RmӭF>(vkN5MֽEkn5|e%YH!ּV-[9:Z)đQBM9 詗n>cL2_UUOXp?'˟.<| Gi`WTU(Aͧ~sQ(VXe T[W>oaY>F"WÆXc3i9s=/_ 1v졡+84"&>)5#+7DZQE SV4~=4~Y<<QLS?-9!&^||(ܜ1mM -Y{>rdu7}JqD} -ڷPWӵ(P_ЇE$%z'm1azJb\Tx dx̉#xs\F̩'X}]tp5~u`[V6ƞԿP?GTIʪiޗϺ'  D?ۂ=>_#͢8Kghjni3iԙ.ʵ}>~KWnŻ@V^Aqiye5N}R~+Bׯ^>L`$GG`& S;l".\gOw2717_12* o4AFIfSA{YX9"Gؼ7mE#!" eZ[{WI!BU7z&wV*% <\gdol 45PHR?P췠{r}G LktTX"ҋ -{]wTTD:(b)傂(MQwtb63sDy "B~rg?I|%}eTdg<~pEȹTʥ ̘2ag{k&C"ikRIBUW-de@66i1 Azc9F``=L1&?'?Sdn#-4vc^k$m6o';$Qbֶ SC[q0@}9g},W~Q zL~Vy~&&/33++˙ -%7hwfD~d,oW#JNQaJ ɕr턅_tĨظ$+J>q?~ pQ -s)iq#ڕŮm֯^+H 3Bzʫ~S<5on;&vNtgYI|vBXTՄ$\o""G og(eǻTl9YzSlΞ>Ib-Y@ݍV9~]m^27kQL5g/H89/cK -?(/}OI|"_oZQa?̘Bԯ~3}~kjj:r -ĩ3.Xb }}OÊK|EfHXJ$ʴxuœG޽+N?z`4DbdqpbXqwh/CYobUOWVh26lspq,i߸h7[yBU7?<.MQbm݈x4肏F`'\~gٮ:7;p-gbUQ?Rx$?g˞Hɗ7˩ 8կ~s9 C>Pl]OBpjHs//1W]O&aD2+$7e,TD"?/7;#!5DPqV!ŪeΜ:UԘaoMuR%!|ߣ8 02 i <}|m##B#/'ܺ'%+( ?z&( [%V?WcÑecGpaΛM'| 0SK'q~[%7QaX)32w=TQ^W“_HC~|n+AWѠE+wU~N\Hx4HNf(,~UR&wG]Qʯ60r߿rLaJkʥ͚6cn`_~2[Io׭~_[b37l~AU#QoS~$>7|*5`UӢjXVR\L}B՗Crj[?of1ui-Z&sఏ_!Qq I)i3s -߰CQ -T(C('+{SQɉG݉vr93L?JX7XhR#tU_*VZ~w[Ou-* We߃߰iۮ30(84-K33[r¬WmX솇]88imD/+dgm5G -wUoJP5 &z3oޖ_9eee)GѯPRDSDV2!w }u-8ɕnrCtKq(8D r'fgR;׮D\֛6Ej4D9O1gJWβ<r{T$JaV+~m+G%U_N}|WՏ?U}Bja}MOt81zĩ3.Xb U}}Dh$Uq%rX(Lo^_ q%n$DZnx#쵖>s07bDU_[: r: UʾUZ{%o`8mƭ;)QlїY9$&s0ݐgI\$Gɦϯ8v9g<(ı#o[7/?Q#̉}\rJUUWt;wjpwvZ Eɩr( 8L~N{w_~@ZkC~uY7|&Ƃx56*4 {W?}ZاACM[s>a -嫉_!#x5|+_V!2%Y˪[^(|<ݾ|F;}Xj¹38XY:ZVT++-eC'kh"U!GPog_L۱()iw?L%VsťMz) oi)I qQ!K~Gռqw=Z8 CB$NH4)vnMRA* Js*JvJ Kѽ\i@,wu}rs⮵{~R!!9,sSc]mMLUd>uX/UP_ow@7#cO$fd>N}2܁q|.*;oE_BT}tƵj~*Q`ԇYh|0T/" '6!耣pp`βy ~ȑ p?]D2|eg] > Őw Z(< Ä{pzvq#PW{:YaOa1Gu`2(,8_Ec]nhR*ߴ-`#3s -.\EN#=ǛxvZiEمhd 5 7xH_/8`?c:9?9H)fO>yQkƭ{OLM+*bS<=~C/fɩÒPUV#Q8?;#5D}aU}2 -MX6Nk}6l޾ }8|&#+֐]xAv>^>Iz Goݸ~‚̳)(m}׭qX21&WUpTI6rbG+:1 ?NdañDKWĊ]~8"8 -N\oB~oEdU7mr*o|HA6֐ -7qGI3bP}5 qw/T?4"&>1%=+N:A.^Dx_7k/1}['p#/Qc>B5A}bƴa~?G2A(@>$AeB @_҆:( <w2)5=+pHOꗮ!>o] @ W+/eg!<ڷG-q Sޜ3HdMoX}!"c¥c*&gb5=+ΝX|ak?Um7eNk}Hc%!T?/nygB|QaGlRUQVG${s".(AU-}#UlGwOo?@ ܄'RfAU_ڀ_W{aHS_[@Ym-ݹx-?.)h`ZW'zڸ*&#?͌} 9s [,721c8$ u9p\N!~F[E.'4j._6' -:߱qvV-e_ 8}?L*jT}+P@Hxt\̜BxoTL}OT' 17_?_GFw|ց߹@/JO9M -_}b(T@G /K`/Yns/.AĆyE%.p<޹IAb~*$?JO[MXSUqBANVz*N#!6 {K3K/ZΙ%/㘩?z8L~c:KDӝP}Js+;G؍}|&#;Reum};<~\ڜߎ7.$[ G\أ-q2F_t1qJþ oCDo;t;uw՟>7Bp.bGOG"pKr΂!D}oO7'^7vY+j +-֬EcON -K`]@{o >LBvSC}mu奒D}qToT}:Mw;zdҙx741E1n䋘/6 -+{~IanDxȁ=W'@PO[S}Q_/#B) -r2 -X7lߵ`€{0+ -.o}p;>4 H"4A8yN >sF_pmmj2MQ/2A`cxDbd܆pʑodjƲuC!~dRj:gd{\qdsaBN~xF//-LOM:y<:ӅC;ކejk)NZ.Jrp).ZkbwӶ]"cO$:!Qln>A=ux%D էC?aFAv|چ:œ4QGQ}uk\XfRE_?MN~EAԜekqXY8 .,jaCnHk%2 !N}7"$= Y^Ru,tXTx(M~ޞӼ9'%8V|#SD?v.C~xq?θe.q}QZ${T}ChQ)EPT*EJB ƾ/u`sϹyψ99?Ͽ>MG=2:.wsiYeM&8j\Nپƌ~%)] m[ -ؒrV(`G*fdY|rz%v16SUHB#'OO9utP9yQl!_FXt{_t!dzxϞjk=vn)WGWcYwq17c_S}z+82+84>nO@hxd̊[a5$!/],˒/c[E{OsDVxKmb_}mUyI쌔X _OtùC} f8H 9ǨBAé38]x13 ߩ?T?!2+n_hS[YuSإa`י@pp^W0_ B_C=?(,<'^WPL@lS:Iv)qUU -~plϝ9yè0aMsV K-At 75FPWe H*H,xT}Y;9ZYmR62m\3K9OPxeJzV:D\^Y1ŗ|8 isY'1׼qϮٚþ"\ .=Y}-(b =ЋG#MZslS GW/`\pD&oCqIYf !V RHė̗W4+"a[Ȩ@?ٱaVZR%ᡁ>vVfsfNɩ?DPb #UƂ]F@/(lbꁩkعq?C/ M+4sU(R8U6۷wy 5Ap |=]m-)&jSG~ ;/Ctu1 -9G1[9y=lE*X9 qe5w܅|Gdw]s@9 ki&̹ -,p)e7'{k S}qjt?V`eggSҝM̭\<}G,MHN^[PنH yBAރL} KL~To^ -+HsS6LM\0$͉ 5 G1%Ey7g P}-B:J_`(gdX\}=d5Czeːp^]B)C聵U۶aQ Y1?-jlh3a<Çȳ_e;~`VǟP٧󮬪) Μn{rZfNMb'A#wD.caQ;e,̹v,d9:,et`Zt8NvtsfNbGNrM.9x(~[et 1Y;{'e/aAnI7ԗS/0͡/?d~sZQ./-ޘzы{9Z026PRT_~ߏ  - Q0bhq<70t@?%=+wqPQ]goq^o;BwWٮ]H5W{j9IQ œ9Ր*?F2 -0ݔA)[~{^(5 ϳutEC ^r^_ -+o2BEγjŌEWU^㎜Ӓ>;pu271fL2}{Ȫ? p7srY$WX k47#w;8 -˂T={&&E ;WgOk!:qdӆ쌔EpʤZcUF 胂ihvNpu@Tں&c@KWg=#9ڝ<d88dqo$Yq].:`B\tdxh *#vY`85JsA|+_U.ew{>gNu,F3f[;{Ϗj"4ia9KJ8WtmƌƎ;|{Mey梂5`I`G[Nډ^ -ʾ<&1tfZ:y/XWV󽿙划vM#+i?2yL=!_o礅LϝondX`1i޿qKY˖Fz[3uƓ ,Q/f(?:uOy5tƦVv>!#̜|X@__=y?ggƚHcm"R4c=TB*{T]PS!'FU)S.)~.S -933c\o7Tz?k3s4xh@8f*I рrlcH0C}(9D'Œy8S&nU&<(azDxF)T .\_ie븖QWZQ]sw ^%{%t<4m: .險 -{~xV~^0쬁}C=mJÎu<-;ǾťK Y.XoGmVo mY{; Kk/ _>wvQqDZn0ij5U`E~nvmCoWg{K衞9Rc`=F<[m @s *0@@Nk;ON;!p@TޏE{cQGJ۷;~GTDh7mŲFzh*( - 0?_w籯0FqBI٧M-,<}C#٬8I5\¢ʏ:1iBz 릓&QǰFQ߼U׀By2R} zط0#/^ȰFWfاdpSeQjjQ=|B·%%e+(.?I5},FN =^F|D/^p0E$q~ybyqA]1a^\W.[j=Q2qb"Q⣡CC_y*}rK;/?@L EQE p,b$Dq HPT%/Pv= H|6[C05YYj pciʫ~73)?j^.jc(m:H"ťYʺ gaƮC# v~XpJh w>Ҥe(i-Zkfm?(,"zgޔn՞g-Q)H|@?!a/["^X!Hٓ}/(&sWz?Si>#/&-A~ -/x*p{wA5+&L6XpN&a v͛]VZnnbK0]eҤ?0A_N>]q,9Xčhyoఈ(ZviY9\`}["U<,…6߳Nhx.gOGܰOh&r>r0+ A{{ IF0U%ɫdC]?a$% -ٴt  %-fWžhS縒ol/dq. xӊÎ~-֞b-ٶC0 ZICrp48E6m7۴j[@9%&  -!Z'j$k/e{+".];} `Vjrb\LdxpC uUCQ20?`Ϟ3O> ۺ=Ї2:rXII\O=s?:Vd 8zx 1w,ƛ(l,GR?0 :2<n%idrtχ)tpS}1} Rd,t D ;M,̜_?Sw/=y,񭖝rζjzliޡ5 22DzGꬿ icP(6cULi 1(/<[g /[WWtr2R$쌊 rwYcgrRC%զ(+bIԗ=B&}-]ҾV }$~0N9y>|"~bNMЗPQPw 9){hmfnbVdϲ=#FtsW=cş)wuϿ72-׮`Ґ5\E˽6T?_l>z~MueYqa>2Ǽr'UdzROؗ)R_J*fQXmo+[un}7oDٿnll1gk2/~_̗By9"APĴ}I@ߍnkmV`!䇌cp.J{om?-'+}NJka1^pLMUEGvXOA$[٦/"c19"halê>;7E+odsxL~ߤź|.w uzYQa~nNfj2I]!þ a}nYsm3iM-,mhyEF#ƔeI,oc~f9ݿc~/З8z&ՌLwDx{m,-p3ڜ Θ?8h$0M+o[}̜et9> ۉe;QcyxWTN߿'aWtdxHo=436Yh}o| T -iuQ;!B0 -})*jZzKWZM۴ /.qo*bwu 8Mh1_Mϰ{f:rCn+AJMНJ!EmE%ERvUb\;LņkGn~ص^s-e||CbUϱ]Do ěǚBѷ+REɒ֫76oGtho14<m/~XL2a˂d_ C}os%G,|Vb)WXА n3LC41'V& *}_ _> -?6>)%-t> -*>׾G"U}úbd =y>շ. 6%obU_ EDX`Z:C$Z .]\%lj/195C -Qd4_=wosS!x~h=bom2@B a[ZC{c|]X޸j*ˠ&_¿uA7G<TLukV. [1`ai8|ؐj$T~~P_ mCJs;M?&,"2jktL,>~ȡЗsx}c%Y1Ɲ|·wgAB}Zml}2DP]>fЂ7-mN1ˏb]&s=Ec'=&=[uþ Sl8GuZS#o {>#6#So(s K-:xe!Q76Eꇅ"Njg3a8P_D1Vs7MxUONMlj~u-5 }[7Zq쌴0>qCD ->;af޴4;CU_}LO ߡƿzK72k=X0a0.}=M8b:)戨IW-[iaoXC}b^ -~(W}uM~~oX}Q}+k+=^p@|/1p3 -o\]{/ĺWS>a1J} -ݙ1{ؖ,vvfe9G߃F[ 65󵞒 g{ݨt 2lŸ P\g;_/Ow$?o9 -\ola{Sfcy-_)n)s -YeW^د/6#8"~fƣ2XWbWb -9vy27n Z%M!{z٣mߵ ^^!A_e8tϞB,HrwkJ - r5:SS,q%i^"6lHI_\Q)h"ͼ&g߈a ߠL _  -]6onbcO>@oʱG/joq!n6Q)edcV7%+; }pDNpIH #h5DVH~C TBe&B -eϾ~&@'>r|/xw8}Fj2u&K}yPv6-dڛIM|ɾ@ &%7B^L ?4qɲ1I Xz'NEyqVf<~Ř>=|nT$M֮?o˰ž21Hȑ6e6hcV *󊠼c}[T7d݂>@Ǫΐ%d.oYD RD'NQmߪ跓!AI}wr- ;]_, =9«@5v CI1[6] ݽLo4Dϐ6M8ڄ$[M?%ᢧ&Y"bGFmݱ;j?HNAq)~DyuM_SYװ3֧PHKIۍ _6?ᵰnAH)7oo NVb`o7m;NK/W MzЗrDv>] "+P˟Dwm3=an %.!PZfvnBUţEtf]=+o`;Ik>آ"Q縺8b36>ʻC_->p~Bғߧ )NgXtEXcԌ\Sg@+yW'KTl}>/CU9s@;DɱSڽؗ7oͦC?J.^~KWK޾kbA)a ۅLt!W"EP("M~9.ݵ}@?u-H Qo;W|ͅ%@ߞC> -;X,8Q~{RWT( Ow#lyٙi)X`sw1m*uH\lf5:38bu0V, Hi -a5T  -R+FcA@)(Rtf{;x4g ޿myMS_Ӑa#9/7dQpYMwv5oW+ {` bR3sN\{6Jr)'E - -p~gs )} kpɶvrq)rkK+9׿U~khjl9-+KKf`= cb)[GrQw/A  m Aߚ?c|>t<CGUCѿVtVe5Aj^E_+xbGbԤxo~}?4ZE,}ɘegp\ھeZfyIU}a>-Z Bzp~qs{(}eKыwhw> /9!6*"t>*`0;zwӋ b$[17 R|O ^hu5\0m`EF͗ |U)ci 8~^vfZrblt$8X[7Iw*O@;fQƈk]\d>|C0DlãM`3]hE>/sBGp:K̙1f"T} #bVD,U'982E!Q moC &xOɲ߹]uHcG#Â|Iq04M:U> 9/4$5Gcjnek0s¥+V`@OJ΃QtfELӒ(䓝9?ѵ*w쇅!fO7' rwPs1vPPdi2 #{Bk\:l~!a6KVoRۂ>VDŕKAxX…P .;A[+s19-DX:E=mf.2UoўD20ǚYBo,cvR /~@{eeZ=vpmE#xb8(Tξr,BDɜ#.`@l\jO`1Z~էꋫ 4))Xpeџ͢.2:"]tZ}r kYIcM5«c֬r7m$+ ӱR)ҿ&Vu:*~2e_0 8a}"bIM~Hr,/+!b$[TD}ߐf8.E}ݾ\[:U? %C[G`';3`B 8t$(xO."=74JV>`?}֔,d?&*B¾'Ǿ e}=)81et:[_w[6Ok6l)FD$$fk]kͲ_-Lpk Ν an:vCdh U ÅH Uk ΰ-o CяMEC -}{N$Ct1ȇKr,vb|wEC CSįi9,8o4@OR)~ֵ>A!򂫉.0FD{^8u¥+d #ZHJ@s/qh__'Ϸ9a)~>[O b_cJ].\P[|17}`i3O/[v#,ooU\ B.6oXEfyL`g %q/1-BW7Vv}H.Z\rȖ 宙nFv5Ut Ξˆ` bMH|ݗ~4EM1Yɔ} 'Ş워3=c5f"-3s2P D맟<K/p"B97ae__Wd_d~ImnENs,Y)!ȱ_9UvKAXR| kW-[<q%HII[j2 -o@Чz]EuWf;NB]MuE9~"'3-{w~s)N(2_7Ť1ӧ! Ǿ{h 0lA n kr͜p) '\|/g&'FEҹXjsf:ZӒ8h`?/aJ \:b%~;Y&B4EA -}D?"*_WsЇ$QוOO?[7$)rnCu~ݟ^k*HQmr|OCF{ -A/`6 >Dg7wN@mX?]|T?'PC3CR> eM}_1 ƊgH;c_AĆ !0 la; o<ۊ~EbS~Z2jppLw7gI\I4oBIT(x?iq_/^5kWX2GMWPR܍0EMMr+R!KTRB>55)1q,˜3kfbq:{-V߼y>aa],nїֺAO[n~o\+?7ltqcb\LԲ,u m2Zu ]l SCǞxPhO$`[dy4;e>re>̊Vd?~؇2sA/P} ~_wVƾw 8V|86S 1ٿi? -vlݴ;"r9GDK(2/z(X%>+|u` $"0I试D8Խߺ$id!Ȇښ>Y.m&z EoOuO"_PׄnqOK.L 2!2t'z_51)%uٹyLF?@,<{u|x/8 NAc&DߍϦP؟Hnr󎊉KN9_X.,)I /7W'iShIyPt 4:k>.tGi]}?>$Iп߾Kv[~t"F_o[hϞ4a7޾jcyٙ٩)I+"]N&_7^&SEm=0%8#:p Z0R 9&%&o8-ܥoh,!B`ob7 -DO2TjObf_E8d9dsv;4fnO+c9YPA(ôohI@0YB*E_[~c,2Aʵ:>z}n,S?I߻ه۵msr"lK͟l5Ⱦn{.twΰ͝x_Rleb҆!14djfz"51zMz8wO:r 3Q lw &&FCV`6$$P[^/ľe?_ʾ6a_J.c!O 7cH yЇ| vDbdqХMy߽C_CZ>%s;p/?s --174vю}^Y{MT_w=-ybb5f=q4eO@0`@6mݱ'-棠\S[׀XJV41grb{â{I1)ʁv/{AQT+/"z/If'TL/n6~o8RwMˀ[2x诉^0:8 -f0 !\;*A瀠oC}oAK7:bC7(q1Ɇ LɂGgŶuӆu#laA>3]C{͘k -Q)щU&M[ZA50\ݼ|&_t؄$h{df>RS[v#Y'ht<#_U}'dw}8}Cʾ`O+.HnSuk>`(7mɛ)M#2tR7''Ư^p3g3a(II$^/HK$<'rQF>SkM9\,xtqa^nv1%)!v[8s{MbW1OA<1 0('˜8:p:7b񲨘8h0#'#RQU k J(ZAgcÓ?J>)yzAsc\C -}eg_5ŢsB#:1a LD  |>~1U}$CwSR= Xa֡aХUIF]䪫*.++)?}]cbK!FĶ~"{1d[B9 -`hb'OTA?3x%e{ ?'#pœD0> -gێσ.JD {$Icߑ~WL_c}S@z l4?zQ6\,p /p&ީ)I VD. KSl&5Sd6(sk:ؗE >D;i3~u Zƽ_x^u/>o"?B>[0La ϖ@9)G lj[6m4ԇWaRs&.(,U"=&FNCcS3[{g"<*6!9 VT֜or[ dpPA eǭ?q,1Q"o%1$Cݓ=Bdݗ2eDn&DyiưRrٯ g -|C_j%[^kR}b>'' L Mlσ; _Owˑ=,z`oh$T Ԥz:x6urC{DEV M8IMnms7PDtĬSeU0-ͭWڮwaȫ1~v:a؇@gf 2!p?OyVƳ?6ُ {gӭikjWR>a9e_o6طgQegYBm=E%l 0߉DϛM} M@ }40 O5%_vbsgNfq(?oG;X-:qy!Jٹ6OLQ!'`ܐbNnIIL9~khjty& `؇q}މܬXdߟdoK71쫩b]G6Qe}w+,U}~>p ր>hA&E9З&0D>}̜E_ASWUc'[?=kG)̍?7>bee8E$؏ af(} d -H>㾌T}blL{13~ p"nC+0sNInxzsП| s=uMMuՕԤx:035`d - Q\$> 58:F&-[9 %1*6!9- ^qiEU/jNfzѱל3=S``+`uW"}+(Ce@p8u_؟Ͽ #ľ(Y`o̠pҖ/}7,-͛wJ*[vF[lac q ɩwA;L4ї#?>{ -a}=7o]n(-8^gV`9T)rCsM(EJ}BKGp#rgjq(":./G;zA]S+qn6D8$q)0#KhM\N[Z);v+/(4`WPtmr86#Osh&e/"3Ra0У*p+*g%f_ݟ7 HSDgqB#*Dt1s_@fW%iS 3b  <"ճ/\q}򷷗{B}3e -!#A~d۽k6 D__Wkw+ RĞƆ(J@ 2E`7(#0@ڄ 3Kή^'f?VT54\ -yO~xFgf3>QB~bܑȰ`E];,Ru5ג +0rh U(Zܠ#.-Q3Or/ˏFxm]=# vnGva~N^Aaq)Eyj2i}C v7PW}NHM903ŋME&E\WnӞHx"iF&p*{=|B£b2 -h 5utu04LN`pN<8}pٯ>[^Z\X C]w }Beh=9_ey`>xe%_/҈pчId]}i,F4j>~?$~*-/5>VSſ+GhQ=}V z797PDt\ggK+tĶ_{g/yjt,2r] -paAB -B\Q0QPV%:8AhfZkgLyweQ,|_'O M5U̴ ,$n \$Aw@ tOJ&w_M"*>Es1aKC[ -Ͷ$h~PH&M/FE; )&Ac[8z$vlps EV>HW/:4> .FCb%o(qq,¤q `E_^UۈT8y,aLpcfxjsc~_\I0I?Zma, 0H<%l$$0s}"Ȳ?7 s IL=Xa[V"k[{G/Зv!=yVX/ohto)ߝ4o!aƮvp̴hiǁ~>.mİf&$GCw8^Ǜ}&  $(^m a?܊]N GFLޣd6wٿd_Q -])cep}j}">^7Ycư؟' }.g˦ՕSD̠aK~hT+')eU MjyI&ic#Cفӧj(-ρ(a_m0]%ˬ 9x.?5I 8C#b܂2CgWϙ>KW _ @=o75VURCQ8%>G8a@@XX:}NopkmD}ϞrKxqM}g€Y!a XybJ:ɸчK/CW/]87w`]5kAnV:DI:;֛BA3E]q񩊡v}>тG#b="j<15#;PQա4`@qĝ)ٿ@D8EonP$NOI12eGFIoan*4A@t.(WaQgꕲ VзŢO̟>}.o"B@}'g9{ ?/_]ۈw"'VLܾi_C!̞ΎD(_o7H1H>B%4O9XJ0Q p9hbfa)a/'e**k<8/^NM!Ҝe)(>>/ܛ*@щtA%d_Aôa5px.& EՌkDJW$D2~=@i3쩓?_V5R#t]#f_浫/0w=PS YiIۃ=\$b+̄ކ#(2"WߌT1\쿇%ba(qu+¤q ɻ’*ɯz)Xq+ 0I͍ude&%}=}J` 2}@Gf -l`p`u`}H*'E`D4[Q1q IY%n# -)ZA?O$菓bG47Tݓ EK>*q$a1FnOPB/.ttxz87Vo ߝ_TZQUxc'`do*`G?B?ϲPc݁}%EYP!P ?/Zdag -_ ;r}3rGdvs -/W}=e$WV"kf_@PHF_TdU ? bgqSO0kKsvJN (>tuvIb132|ד׽Б-&W0%_kA(sTgVTlim?uLexdt:a_ ͂ =݄*K -r3Ӓ @L-MNhh@|a`X,u6W>g@ ̢T}}1܂%.,R[PTR^yxwϙ>@"?LQmUܿ;I~A=; -aVWb9K,c"C}x|G';k4] S%t/_O9aJ/1Eǹ±2[Xm -7oQ;剩yeaZ;`9b:=`ԣ,=;z7 x88TB(ܕ !),y yBB}(*t2}pI -Ker5shiye E@D)'пG?'Sj_7>Qw]]2yB@@(B<p QP(@jq:- S[9vnM%sqwM gw,K)Q;')EE?NJI͠PWhpGFp Gf7 }y (?$ƿUѷI,H.)Myiaa)`Z6 - - *bTjR[9Q =듧3`4}.] ?f75ijIHSq "48sZTe_s֛PL?!7oCC_ra&p,N-lz"8e:-c]FS;z)?ѿѿkb6wq,aZffG-8~?7;3-%1!MA -9Eigkd ޔif0`=$UNRސC7G*U -PTKV{  S -* 23MĐ I U,qۮXw[xH^ -ƾvWZ1Z3sf51&yGh賓ԡoi%"LܥQ,s+DoIRgnߙWtoZͧzN } - egNQG5fVZ,=*K,c?0uOO4=3aXJ1gQLXe5[?9ާew`(N\qٿe˗>;7`77B₼tb"&*",$(oHHTX(Z-&ܟ OCGsPD[ME臄EDP9ydll6D1?(ң!>89}NX,+.۶&)c"B*,W*9Vs֡?Sбϧ*&q+/ Q!08,2:nKr*+,)xB;G/Hrڍ/t21Tu%3}cݝDEYqa~N6FRxaSmYAbX}>g3s,f7sb|&tiN?7vsCHCRqXSvNR$CQGF&$"ˬⲊ}>G;q4}z/n\cq=wXWGƃ@0o' 3wtq8WXFQ,I#C)MeiBGl8^>A!'&fl/S^C:ցj_FkBSӲԬTg8P]QVR *RST`?2Vz{2đϹ0/ڢMo~?/^:зyl|:Oo_@R5#7Sg>yM%&G+T'G -G$.YU^9=#Œ "9v#H=/yAma>XHfQ!Wxxm -7&>1%-P]M-mݽ'NF.r96$?Qy[q@ueyIaRA@_pʜ%b['A)h:38aRS()_x0@>"p.[nc+F2W)"8JA9bUVk~+%a| 6rl;tY3RfxHBNYz"?_`i16HvӦ >}ZԱ?{\ +-B)bTt(khji9qvQ"^C/ UӅdSC}mM(ðHߚ#B@̐IIhX/ajU`Ooo?7D8ώӡo%YS~v) [rp{jj~[GW@lCWFnMoAg1m@X'b- u -fVZFW Y._?SS3uNB(R!v q$@eQ\VYol=p¥aW_߹;3S~=2b?p4m-͍DFqa~NvֶĄpBbZTh/_t1ʆw%`r|3SktáϒcYPvB.ec+w8׮ܸ)<2:6!1%u[VvN~a1%Xlag$ X9lwy%,+.۶&)c#BY }(KEIk4I=-q1]Ͼ -g V qv!aq[S~^a د=xCc2{L&d SO}"۷K twFEYIa~.HMQ)Fhp/:<>Ӧ4( ^ Q ᆕ,,,뮬,B r -\r }Y(P`q4b$CqM6֐I;5ujga‑ŒˍtZ}^}? C'O ڣ?WѧW+5l&-}3 +.yzAzAQ1iٹ%Gjwt]@= u{'oa/gam#2@?+##yy&h=>C%JoO9{iz Afh4igsynY܂*pI`Mff?}~}}FɞvFEiQAnDYltK";5t &Coc6>f_k]-<4' -Q|$%782 m&C{-M41f9pF2 a u}m@U5ʵ<>5-(,\ž6&wqwyg..Ik .JTه)ɿݽCؿ6ⳡOѠ8+ˊ -3R~>R wq6榤o~WWg˗S -u[B_TG˷\QQhkYM-mɅ"'dUV T>E$on']8wbfgqA^v&izK7.fh@ ZILԵǓه)flw8 !~r`ʺF`at߿05>chũ@Gksc}MeYC9#,${N # ܗԤ٧!,?Raj+>zO-xp^4 -\vmي7g;: D;wyEKHN͐:\\VUS،=f`pMJx)_ӧNtkknCqiQ!X з40wa0ovi\jjQ?5-QVກXI=c.ml8ή;vz K*,klia;(W(:h>(ٿW痆< wwkki*/)L۟/&*<4 ]tcY[0!z` R&Y/t[LjOY[3>cY8\PG@jiY9%~SK۱ngtp4Jn^FW=XW]Cv{q۪\g -:/_Bj)+*};#cs -O/Јq ~ie5[{t Х,JP,ߟD 끦m0naHEia~n6D'8G* =<'2}<]Z5t_*aJ}*櫡?: -nF]\蛚[@`'cX" +KLI?_XZq>{EX/^'4o,24߭^À±ݘFL`P؉<>A>rB=jGpZ~``_1m_Q쏍 _m@(-*;(OOI{"7gGb&] [,. $QO4.}(w8+ؼT.{ !?WPTZQ]wtΞpqx]gF-\` FϑFH=E|&܄idfSE_ڷ%_SÂbJ :6DaОH/S2,*ih@_)%e9Of -OK aLHfد,+D bB}ibfiͲs`s]݅"O݀~hxT̾ yΡeuͭG}8[{D_ЇAtj$Pn9#[PTVUۀ._:'#w9@dhpLܗǏ67T@L۟( - HЃs%pgoZ ̺`K#`qc??XB1[чZCׂ32~8BD -YGeB*,)GDoп%bOa'@)Z迮}HOESm]5trv -9SP\ZQ][ wJl_ N@!} \8$l5~ꊒ¼,@?6 -dҭM0&T-v@ϰn<ׯO04TR`) -U} -اёl_PXTlBJ:L5u!Gc7x[}7ӈ}ۃ}]n67%Y駓`‚|9l7ӁacM056=uGuݻvʿ]>>CT. Pw ,%!#TCc3 Árqcs|aNgUBRMKW{oY!QF +";;Z3%E~J]M - 5 -(My9 &}5X!D@ -Y*Ꚙ}S ڱ'phE%`&*1~wM`O9x}->db􍛽Ȓs-2na^vFjrBlTxH;x`gK?jifbwXG[󠚊>\wγcX}E}%eHH[簞Q#W%o9AI:.b跷67A*NOIٮ'EL -If)%V;ƕD bV}C%eUuMm] 0 `|5u0}Wqܼ؟xk:pd>y4k183&0}IC]MUyIQ~NfZJb\tDh#bmenjd@TtwHd}A=~ -FE㬢C<ҥP Lͭ!!PhD4T̜򪚺(Q_?~@ -׃x([]ƺb'vqjkb`wn" 5}?}e,@7'f >TO@p8b"#NͪF( ocrW_(0{0|'}{S_'7t\q 7 a :ؐ -h yc3rɏ~Ffb/E}M-HjhlfA0,767 8,2T܂Ҋt{nCHc_NNݻR`}_p/y=[+0e9~txQK3JhvA} sI'bQEG)> =c3Kk;Gf")w >?> -?`2xB[ksRY-HM - tVlaM(:Hsnٟ&GA'Gs2UPO0_RK}mcv_`HxTl<[v^!jjnmpjWwO_ +2""G {7oo_l?X_SUV\' twqrdGt!NJxok迫'uT5dv9>ܝ>ܜ0 ~yUm}`jg͑n@GKSC]MUyIQ~NfjrB\tDhWYu~亿#=9Q$!U ?"OU$q/GƦV6Nή^>Aq i9E%U5u o흐ᑻ_LxD1b|;CD &<}]Xvi>aq3?LQO -42 -9y䄂~5 ; M0Lb"04"&>953[^]YS ܛH~qi#w21>6:<4XvP_[]QZ\x*&2,8vsap`if&zqWQ_̪/-Z3^qg#1|>3d4_KECǜE_Yz&f4-ō 9[P\ZQ][߀| G'P.!sS}$gVhZϞ,-IQ!~ޞ'+sS#*꾆Iu3ut3c߾?X}?&O(ɘ('߈fIE:4+] - -Rstr>t:#;[Vyl}csk[+]{` )pxK8Ö ~ta?.ɀ~h/d}C*EGKCMe"}YaUwf-[ewUDE`߂FGLzpB#c,>V푱>o -E'$I'z^vflMUyIQ>ܝ qA>^P k!yPmκߴIje >D"OVM9AM-_OUgǧK)3(HJ]Q: * 싀oBAQd'b&jE K8bꤝ>s K)y>{`";vSփ?qᴫ9ЈĔ/,KS{xk{uX>6f'} Uu -8 siN?KQa3xJ`f(`B吆aC#sK[Gg7O$ao`0><|rFCՕe%Ņ/dg&gG;SfGh:Oy7J۶nބ%}1d' -(?^~G#?g> KQ]R҅@蟲st> S).)ű7w]xM +`r͆ku5Uy1/'+#59!62 澑>{wܱ2$?t(c /}?}^2S/c>/OJŚ?5ES. };wPMC[OЈYo؄䴌IiyUM }2IB|詉5ީ{xf,E$hkinbdxXG -V@ͪTr0yϝG_5M?v(Ȇ\f&}Ⱦ;짝ϦW'g}>RO00j*^TT $'EGtw=MraMuUG>.(Oęho౏Uٍ1?ȏ<#/0Ik|E_c諨CS9jlbƅPhDt\b - $7NjEUmƦ xeG̝} <+~6 4. -wq2716d  φ?m -{AA"NQ Q¾a?; "~h?OƘf(RR\!;3=%)>&2LǏji"$ܗl|%$L DŽ;?>0ߙ1C_>LBWqSsKa1I限U%W .yp\p?Я* !>^.vV 7_C>,49G,/lr EdwugHNDK 7nQ$[Cه|-`HZR35%L^NVFjrBlTxV'O@hA*&t}I6'c>L_hZR~5~|.}kSY|i { 4u OZX:vu<(-!h?^-zc|c18/%gruwq05>TRd|D_S47G'2dbe_y?o[D`HD a?O6waH}dYGZlV{y2,f~.PqØ+}XSd}\ՙ¹dqa0Ҏg$}>}`> gOY;o4|AĿ }0aB1uC/ЈĔtD~A%EUmݵF,a]~}. 亊AE6DA Ofwu0=~@WK0OYQ?B?Ͼ _m]:I kwdl{O?q-nڗ 5M#eWJ !HSc"Â|Ϻ8`ir+?a/ ϸ?{6hcR}Irȧ] ~A7ߍh>9!`/V^kзwrq;c̾pJYEumMC_C{ߋA?&"$d߯LjZ/W\nS#$(R}iʾU -mۑ}Uu-=d*WP<ӽds&zZ[`7nr2ҒbCy&obLr_]4W_葕A},}I} a,?"q|D[Z>߅(>EC跶"M7_1ѧ"#h, _}e}( }Wws~!Q i` -5u;iumk/ czZ۷mSП/1<"{+ɱ ;_/^JȰG?}/04R}'wubd>|@xKE NzJ"Arr_hUܗ_dB?.ues,Os_ Gc߉ΰϲ1O$q, }eG4:k 4\K-\d+q`P 7"߫? iG~"_][K§&kk[p=Oo% -7D4kPw>ddيCE'8z]h?@bulIGF6-zJ| >4+)!51,׭Yrf?j0w}GD9}ipτ>4:7K}_w _GWV]iB~s_h|,6?=N4gH>l(yCBrͺ<0ȱxlK~U|mU3m PuM ?3gMC6uԣoW=wg.aOSWw}/XnVb?\>I3?4O}ЇJtiDu5Օkp'9Ӏ'PTdwcezܟc,T6VJKs$?cSүe;%~uM ǯ//-)?9C/>WX*lTvN-B,oׯ(:?}lb2\tWV֩ىj }&ݙzCϔQ ?yHB'CHJcCG@d*l;{Om9cC;}> c=!DbT`}4zVmuUEY.7\t<#a۷_<ljmUVJ @}}}_t}?#?p^%e} fV>tZaV;`' (߾oo=~<J*)k<п$Eou׶~8uӺ5+~!/:ɁoSK=w}crmG1'_bدձޣ-kT ƴH\LJL?})ݵZYr}7NlmȜg&ߧ]ecYz%#3;eB,{nvfƕT\g0"}\_m|1/7߬`TZ rtCk, idoqF?}؉ xe, -P;q8Օ-GstO#3{ҟtA&_~Yd>)a * g3?"#"coҖi ZLjki/&3bc!e< ?6 1cgJi<}[pŮ~Lӎ̚3+YPXKJW - ĢEw-Џ$37b0_aQ!@Oo#' -?,7oݽ(&6ݵ/Ѣ]UK'N͎g? ~a/ӣ??wv -s~;3v5N`ނEJ0D2j&/4})mw+ᚥ/(!SxWD>CAzlOo7B?HDтyBw]kξ d컸yг?l~Ec7?/>L˴AM,~N|y -"(Qsޜf͘7w;Ji7cK~S`^~{B` %7oXjywCGg>}2BiewcƎ4ew_S!7RSӻ -+}t|)%5jfv.C -HpG$G_GI=@ Cg}4`#<S~1ՌMeS1Thh6TUU~>Euq$tRq4""kCɾ4 BEI8*RE.lX1 A1%rfjj~ܾM涂m8/8<=W\FC -6+ I>^'l,/ХiO@3uvհRͭ]]pwv[qaqW0tKf0bf54,F&K,l.w{!B#Elo%GJ5п|5M=t}I3K,0 -9731{rЧ(6僿Sߣi4JS%d؟a_eg۔dlTc_rWH:r\"TW#~|aRtDromin hkRϐw*1_UT'N6b> *"ā}E}/?)rO?Q|3sKk/B?,"UqJ|"mVѰ?32l߿7xwn7oHs,L:͟8Qr?O&prVp"#7_GKSC dws,RKW/CME_Cؐ?>|l51%W,LgF1 -;H} rr 1-M 'Hrr?26:2,dE~2+%p߀X>6XYHќ|DI3M--8--Mg`> }k*?7EObRy9Gb\j|ܩ7]baev7`EHXdt,6%5 %5u'Z4/пNj4HB]L+&Ģ?HQ~5 .v#Eg?IQ)%7:b)$ZXg_:]X>}BCu/rO.]lokm>sqC1szT*.&*"48_hܷ&F tᾆ<ٳs_ -9~h(LI$1ZYM?Y4sן$Wӻ=Hv7>xIDQO.}jٌ5&0o- [%;j]FvЯ"E i}!C0tӝ蟕GRm1@_Ko/T`Kٯf?g>_6dުaWZEWK#' -M[7mHK]+  -zy fM tu55gruoS wkvSP@Hq🪯?S_ -ˎH+*س{'O}9SygBB̜o$pGbVelؔ|O -hICr·\BcegC_4[\ľr{.2pP*|[z/b?eߊ1WYW|}c;}=xṟ>߼1Q"NX"Udv_ddPyݟ:r#B!"y_/j/ua~ޗM"D@_+|Eșa͟O7Z-l.w{Y N*sq9R1g/w҅C+3"e;#_Jdc0o@_ƒ~3؟; -%(/2^e꨺a2Ą}:#bn9rJw-Y2֭YCޞ.ΎRRPsIodZ}52Q_ hE௩WU-+-9՞ܜMQ*(̟5jZ0BoDj?084< -ؐ+E rпIC-J-Hѿ+CrAqEӇrSQd0gΰDzhsE^hwrmoF$%NJ"C^n.v|+:LFT`T^rK +*+*++G$0_6|Z&ELWe|E5WN%|Kb%  - '$)7p/}>9YOC=Yc[=ĢGѿΠ.CTR_~ џˇ[Q`O JϒXRa;),䱳?/hB 69/A}g7tgYpjU+c#‚Wxy -}C}='?f?/Sh϶nIrHRr(NyyY!b~ q2 2D./Oc̟h67VKwzxYJٯ<3ӝ^ծ3ne۵ԓ(J@}W!nˣxtڝvG^ v;]wt?~"pt`];}ۙ9sgUE%JoP5MZm3,QV5 h'K`'s2Y }`ˍ;-e-`]{8`EF&㝄Qj.ѐ|C|B?&:@jTt}>Paѐ菒跷43B^nkxiW U~fѳ__?a?E?"{@ܿ4{t4iZ*0JMJ d1nv"ݷl~oӟF>ω}GY!QB.r_ܯU7(U*ZQU*eC/m6f#cC0 }sJG3oo`G[Ig"cRm$_M -Hпn.):7iL}/8; -wYU/]S1sthf;L bRSOW2M!͍ꆺD,,+)fgX1Q,_+clU:_57'?g>4:~B2;#+ܗ:/ȗIY}: П&ge[la~wu}|YQ1pufd=,d5u CB {#CaQߛчH?2C_c>j_ZD9YJ,1e?ee~ ^4wWCwN -1 -ϐ}̀Ștԩr_TY%5xU2iURzjR|LdXpA^@,``oH_毀X7AgV09^޾LȘdvzVN~/(UJkmK; -c'!ϑ cPESOc< .;-3z09l7FE5/'3s -8|AE%fـE5cǟ Rj}ľaOL'Fz:ښJE\RYQVc+!.:2,$Пߊː'tR?vFFD%2aH\Y%HaI$UbQ Ǘf;%1.:"4}ɖOgӻ滸yxy3!aѱ IiĥYZV!k 涎& -(ۨf1TQCס.ES͍*>OOrSke䯄cw٧a#Wmұkq2g=Sp?>G]=|PFreqr_$S!,/EsipcFCÕ b?'l*mnێͷw IgC#bR2`8%JV]%mm=:8||rߠBA٘ ÁfH"TD0c}4a,Ο;sS~gF_j~"e}VJkJ`ǁs/&ٿ=6~|ŒX|=:CgQ9ҤQʥrxRAr ܷ߃߾mf#QVbܟ&,sa؇_5&>1r<~I@P@PZq9`~:; @@ioMOiJئ:כ1la+=>(6/-UJJMSK[瑞c(N -1h"n4tA?X&ч?><׍W"_s~ ~FN>دV(5io07QFwcerCܿJQ}]͍E\"(+q s`q1PL_:ݕr G}<fݟvwpluf0h".ܢ* oOwg'GLijG<30O64uufߡ7ߝ3W啖U%E* }b*fTk!071֣Q* s2IV -tuIb̾bsx^9:}5&l%fxɒUc9OıFU_W- %Ŝ̴Ԥh &; #ZpdOrb̂͘ ?0~VNnÁEOܓ~ :AGiɟ2 _Cvzmu;鏞GLM+ TɪUmK{aS 0>>tw(.]ӟ$ojuRB?O}G.gΟ>dC8FLjD"FT@\( {aYu{>EQXI0Z4Ӊvy .6ϟ|?(fw?@'"F)?4:~ ؿߟA@31jOMlstxUX_SU^*s2Ғ<.'"48微[Dkac _7O~Q̾cSsKkv:gb"~n #°LgOف֖ 0;1|运|E/3A3צ\ay}~|yW>/˾~KWPTo!؟;DEEÉp!ll>2=Ai36ͱ';d ;4͋ S32sD%u -mݽC#(п uPch'Y1m~~Fa(d!*NԌZvS}?P?F(}B?ˍD3<ݜ6G~MHU¾ž >/ɍ'dd~mbop[` -g)oQWE+az:[5UqA~ns 1Qa!_hZ)=ڴP߰~}WW1곿{A3 +c)}/ӟa,/n1k+ Fz:{v ߡR2(a7|(3-`͝g=!//JWw^]=,}SSb?42:6A+K*).NL^!G2fGyU>naoӹ?:<&mj,+)*df&'y\NDXp{f ܱS>>r:JoDGlG%wqsfLJBo{T9zEknGJ|Hd36M-d>;+(84ɩ9y¢چ&i[GWo(ag`+}b +7w=4W''. WIB g1)}_n`@ƾ=f%3s~M};0<6_{|zgȫEqܟ}Vic}mUE@,9N724ޥ&> - 8-~Q-۶kj}Ww_!:9{xxzztB.e^ϴ4}&\J/| !.0ߐ6q|0ǏΉIٹ‚"IYEUm}o`h0gp)_ >dx޺yꕉq@/f'##ހ=*oQm44LVb?#,,췴wW؟!d䞷`,>׮N^4>62XWSU^*fOOM$DsC} }}{ж Iqk,~ -jÿR}SEWN;8:9`4 -MB/)eSm>(eoڵ[{/7#K|70 -dGF%Rg%U5u-ݽC#c.C@]Y/}5T=x?ٟп[Ņœ̴dA-X:}uUp_?kEL/]/(~54u9}K>'gܾ"g}v:,IP,D"mE"O_Ce>+(*,4_|BB#bSٜ,n^AqiyUM]CS |gw/ܛ? s?=|%oC+Q OL> Aܱ!@ZA0/G;}ѯ\F?a_f?r_@PHxTLBr:'; EgrzGK>}LӏBAn}]MeyiQA^N'=59!.:*<4$(0O.t_Wd -~0K,T )e)YZ.};{G'g..qq`ogØbB_B8? $S)us+(*oM? -{1GE%$sr -J+k[.wCߝցKPK>2zzhFamkms9i 1~i/G}[k D_Wї^F=bP} d_XNq/d?,*&>9-#;ap-p^do%\rߛb)d\XvGz:گ67VWde&%FGS{s۽K_ O/+x_蕒}E7BnWPRQO9bk1oae oщG}@^kwT<7RD -z' '_8̇̇wk׀?GF&$gdUV76^i߹xXp;TeЇyR)>G{: r3ҒcBxyG=<WoLrw 8U"W;{;@ 3ܧrB?[p(qUpRmuEYIQ~nNfFzJR<㾿(-) tvji8 /W2oHk ٓcggkk[1@ -}%bf)I|MT)( PSءSG>}F'l7eȋI)iٹ%eյ8h8L;T#wXoa0cLЧCt[90WZ/Tp2Ғc"Âx]h mEk`c>"R3~ͥ`opg,S>oH4sr.x|+MpxܿWUfgf$^뾍5oJݩخ?pÕ%_r6nڌ+B}#cSz/9VV@ca++n"yFG_"EG~)W0V0'櫨m`iҏ뎥H2'3eU5Z.ݽ`w'`In;KWD/>/sjFΓGSf;<=~>7|Ckk‡\UFIľ!Oط's KLegrJ vt K?#n?t0h>xH>;G'.܆0BhoCj*J}nv&;-rG!;:ءf >}JtKo_$R z _n*+Ů!o[&@.}fQUQRݗuD/ "$'>Mɇ_|||xpexrij30 _͍rD(NM t?;X!_I_%}s+{IO3C#.%3s꺆f`w`ht >n@3쿥/s~Ylcr??ae OMޟwBrp?!w3待觫k6^o`+_gBNe5t2~cSkGOB_nVmKK (?$d_A+S a1@GOesyť`~cs+70ߺso1Z^ w _xC%[}גvCa+Jr2)q#B< GM , uo,}u )W;_WXBvhdlٟ| z}M}2!_<\p#QWZJp a -J}۽Vf{Lvخ -*`oZOÿjQd]ܰQz̖mZ_,(+ x̘L[dmfADDE}_DQ%7DAwYDYL&5TfjsҷMI9/ا>o -1As|=|ҡ݊BEو`A_߮H|YI_ɇ_3_4e>|48̷oݶ}.pGh/7e+ ۞00"C"o)GIa[j+"^:s"+PZJR|Ldh./ -}S#&sGy)0 }B#bS3srkEwKWjZa)0Cãh#LG.>erԛё!؉ޞNpFTI_ܿ||>]Bߘ5٬A F(1 n_}|IFF<qI 5ԗ}e~JG>&,j˘. \VOߐ3 `bsr`~|QM]CS ޾~<#0 )63̹G/Z!1M "@nq_wqCcL}]̾`/04":>19-pVܼWb*DM-Ϻa-f -"܇@+pjk}] KAGZ[Z p~ -eK"eg& - rY<65?ccj_rCo```#P^B_>n ˱ϦŸ&ŗD>?#2 |D>?l >pzF<N+c~eR.n:"4з9>za:G|Ja[z-Ʀ;wDD%&O?|3g7nݹ_ZVQUSу=2Zžܟ}'o>׃⁗/Cn67ׂJ ܏!wv,&F\_K_ӒU~+2'r>(WP L¿YGG>::I7ZC_Y(|Պħ#IR-MLkӦo5261[XY;"=櫈&lڴI<_E>q=|;t7o-$B}wˋGwSWg|}C.Ϙo&ZXـή[͏Cɚ60Y7ual4 }vlSEAAx>zn߼e@G3ߗ` ˿UGEsG)%K)}+[g;v Mؗz0ȱ?߼}꺆VXɩw?ӻAYC^|x=toqd?ݻvl89X[ -e+I՗)%_YH%|ʰ?f>a~M--j"̇}N}ė#>3O^ O}$3ᛙ -m۶EDaSͿI y_? 5aG;42HF~R=c=591>bG)P[ WK<}ؑF;<VBG~OW$mľb7 8,2voRCG?ZQݒ啢چgݽ}aXɩ4|/Ddv;E/Ftu-M -'%ȸZ[YIL ) D~U*+)P/'˿~}cu"%ϗ?s*LU3Rĝ$"17[XY;8;v OJ6&^d246O5{>>iix`u6׊*-.V8y@jȰ_o}3>P_GIAysćy -LN}ȘI)i2sr -.엖UjZ;:)G`G޾!GO,؟lSY?>6:zP<IWgvF`p{'hogc~=,Fb$/?0_}0:|ć밚@6B3%՗>Xg%_"2_ wtvus@)km|Q 6 1z#!C_Ie}rQ@&2,k o8sGjIUY_Lj boi?(4"&>1%-pV37nݹ_Z`M`K qm2 Bg{"H~}U}P1W⪱&{͂ -`CTU:APTt)D5JUANd3!PE||)i9y%& Mw5oniu1[;Q1tw|xvW=}aFpСO |d>d؁C01vQ~ זG k*7YIQᡁ~G) t5TlK^ɋ>:Ts6 -`_r)Fܯu?1 8C?z -`H3, -T'd +$*1t!l@UtcAT|^'|~|IiY9߻5|0b~r*12^iكJb~0ɸ`(0i&Wf?& }}eT0hgO;;Z+K*VXd7߷ _O_ΠL'4kcKJ*(F{>r7 8,2&.1%=3;bq'˞TH(ЮPæPB3})dU('wHaa>ss(b#)OyQ7 -)J? ϥ~^Va>>g>/_5՟bB?d>"_JZV4?`q 2㔷?1?6.!2ac^ãxN&fSϢOO2NC vnn(+!fg rwq?~ oj/Ca>þ)1qg2s/_~NIYEUm}cs+tR7fлHT"侈B=/p|f~鐠?/Nvǎ@[B4O_~ ~l''_I'>>|+s9'7&|9HLӸ?BOϐD>!b߶/+*e3͑c8iOGF1c˞^da4lǘ;lh9fBw:n BywדƇUJܼ~r~nq}N81h(Jd_rLϡVXð/Mvqj e+ȧ, -}1ϟu_"O~߱ȗSPTRQUӠ2߄|k|wO/b٤LwKS7";:v ?*`>dOY)ute^ݝ-T=+.^8.-)LtDhIGcY0mkb?CVd_2*j:z4'} 3g(vrig9DEzpsqvGoo@_WGKS]MUC~JQ)/bGG@}OQ;ܧGbQsn>ϣB -|a mœ/ȗWTRVUS.t懆EDŜ&27ocLC#>_40z_bhkij,/{ pFPOGSMEQ^z`,J(ak~fֆq BM~ޅsɉwCoM.cC=]m- u5_/Ɂ` -D~>k? (KH=SLg%C>e>}L&\E+>7W'uguK!U5u 2ߖd粲/_*dͯo131lߡхɅj_Ϻò/J68?̸B1'FG -I🠂>=MM t55U~~"/ϫ.GYZ} ͂ -cAiB[>G}q ]p/"/@zD&^U54ut M̷?3/ (txdtl\BbX]W|a0-O&., ?gч}3 -ZI{ƇUJܼ~r~nvfzٸȰ_AUg'][2q]\X֭ {JGH{)8 *;dL2$yO瞫Htwo O -}m 5e2Ǐ oc_ /+(jhY;zG'&^kZۻzG'fP7;L |I K @OW[KC ?/.N]吟 }hg'g"G]| -}*%('K|D>="#/+*"u L-ܼ:ިPcT+_xTbh_<[Їy]joAf]docifl/?| ~>c_#_Ҳ -JZ4~!q3sJ+[ڻzFǧ]]qka` rJZ}_qG?8~WGĂP_OG[SC]UEY~<HBM~LWG?e`K>8.)}f꿕}xN|Z|BE>ȗD7653 e741͟Y`ɑ6{ - cCK?HD>FjZ:@d;##cSR3r.wt`S"̇c>O_|} -}WVx>Cӓc#}ݝm U%y9i)bΆz MuUNɟG_G_@o}mGH w싓>!wJQEMone{:(lT칤eUM}c3 nܾs6  ƾ._67 -~/7WgG;kK 3 ~]-M 5DC+.O 0mtuvb ݁'[{{3~vcF>N>[Z;:y@Ag>e~eum}c3f~2Rϙccu}lV_AѿqmanfzbtxrvFꅤsQgBNz9;Zh(;!}D_D'>CoCwob#-lw+"?Wqjz&n>Ag"c.^/.oji2wjW<]" *>H& rrs /'? `~_oOw7'G{;+Ks3cC6r<?|E?~)i]:&gL}w~='t"Goeckw:ܼ*Nd?}evO -(|>O+6%aN!=}KnPoW{Kc]MeiQ~n֥ 1gB}|' (2N_B/LON {-M u}<2Sł?ޖ_?$??3A~ .(gOO-n''gC?7m>>sA{{.Iė '"$"|Ss +k[{'gWw/_ x'㙏_SЄ5=KA]OhH_(߹}"T`Og[sc]uEiQ^Nfĸ@?oW'{K3c=m Ue2Ǐ~ B?g;?D~?d¢J+(jhR{ED%OI+,)mhn_v{'q&rnfz -:Z +}K|I#1ȷsptvu? -œ`~qiyeu-ց_@/ݹ_3/O0=deЇk 3cÃ} U%y9i)φy8Y#u4TeeH -b.~?D&e;.}1#}iYSJ*ZFv.^FŞKJIȾ\P\VYS;04:153wد4U3c 1Jhda (sMI$;GiAdPU[;;05֬{ν}{ow3j=ù/_z -تU/ZC<.I tuaWU?TDXHpm׼ȁ oD_@~5G@?a*|e"ojȷXJw聑? ($,<2:&.! f~>kjA淶wvi & mJsB_ &޾~ }sYζ憺e%E9Ԅب_o˞. scC}G4ޥWoܵ{j78c|̂bc育@M+SZoj39|0Ȫə'`޼ Xo8utq),ޞ6uW?Z -51!.&*2<4$(~g~$?~DdUQяOmT^fE该>_Lm_M|(*Ya-q/]HM0[:{i 'ff -*bxB'tX0Mj*Jeg&D޼~D$諡7hcu=t؉gΙqB#bRҳr K+k5wӘl`X$_XYs,/ Sr#e P'' <I om9 ؘ?Y~RPWүO8ȗ}}٤÷GodGW_&MLAm!^.%?,"*:6>1)95=#+'f~j7?Hg8< +_|$QᝄOׯ\Z\<6X_[}nqAnVzJR\tDhm}7 v6VM18yؑCjkj߷A 7?kEʾ=U5;~i-r-Ј̜Se%k'x|(4G#’bmckwC߄B#cS2sa̯2o`W^RwƵ+_tur15=;7`24"%+0B ߼z>zLÔbk⎰WxQSK{Wo? DPX/V^]7ur>¾BAa/.< <I vw__[Ғ‚j^q>O~u$!$1I0F:=={|=L|uB%>v \\!dɏKHgf-|:#ɩٹ'/o> Bqa~vzbL,p ZOW{Kꪊ;ycJW֌U[c( -*%""H9,H$S74MHAQwrvvkjڇwCneԧ}MJ  x:X3ӽu]횒˲ϝ=}8@_X!^/Ґe?B"b8rJ*jZڷ ,m\=}?MHJ+,)50Z;{G'f 7ϑ{qg^_*seiq~nfzrbltxzj]MUEyiqQA^NvfzZJR"8~Wg'~kK sSc#Cn!<_KO'?;/;ή7'ĵ{4‡ࣉ/ #>$|C6NېWPX\ZVQ^$AsLN/.0Wٜ'GO79,loa4PkK -3R=}p?,8EP_a.QF}Gؗ:A撜m}CcS k;Gw/Ј؇Rҳr *km}F's.n}Y جՕESXwu63hTe%Ņy9YXoO~G{;k+ s3Sc0DG?/\''O\]>D`k={>y/@|(>| -m]<<)~(ɩY9y%eյu̟[X\^a؜':5/cnWPhom_ZzXO,+.JOyhgmajd[G[SCUEQ^̅Rg!GDo7 G?*v  dUEeUu:w[:8yRC#c2sJ+M]cӳH@{rͮe݇\Ƃ|l&VWS]Y^VRT-.Nv6V׻%?_ʏD7!XϏ??=#q>_ !|yO> ->P|U\|$D[98:lGCʪ:j=ɩUy _yC- _́`oW{kVW]QZGtsv271{GW熦+(NH?&vTDC/l>h 'N9{N"`_A7u [;zxEF%$fdW-m=}CS3s Lͭ/^_vVno ܇{ \=g'60 ~,ꩵ5U%EټGx{y8;9oȏ&?*?~ ?~y,y'σ?I7l!zdޣK$>_ 'Ȅ.n^>AaӸWTRi V"G`/.0Wٜ'gϡx=>;O4~kb } ѡζF0/;#5)!_oW'{K3{z7]SVzE} ?~'@_0/|Tĉe/)(ihi746stq - ᣔ܂j}cs[Gw㡑مU6X v_?)wwl/?#z -_cVWgg@!ߍ3@VWUcՙf ~~Y~i~|GG~xyv{f=Y{^IޣKcˢ O|\;P|c3n;#Eܼٞb:Z҆d~3YlP[|oዷث} 70_^]Y|X_WSYV\alTDh-m- 5%'OH=*,t/ggB"b/UT54un52spvFD'&eVTM-]=ãS30>C}?w5{ ylomibiuey$b"#CC|)ޞDZ#F:~~XoDGbp{T|hs$)"-_?Ȩ蘸ťeƦǃC# g_f8ku{ f>06á:\^joij+Js2Ӓc"C(nVFwohkj(]p^ -/)!.&*",tX`>vv`~@K69e{)X_YZhmn*/)HKg"C\yI;kKs#} 5UeE}h}01߇ }fwA%eUڀ}}C3 k'θ{\쇄GI܂ʚ M-}cs+kT?WO? gOA?Bia~nvzjb|tdh,nvV'-59)!>"hI37240#Ou??ZhKZ{r"E==֞== -|=}C#&$EĿt=D>++" ?:>15=3O=2_k>?ӡ 1E`_wg{ ʲ,Njb\Lԭ +>^=O9;031=~D[󠆚$DO }L苇0(?r/+~PS1}CcS +[{G'/\v+*&.1%=3'NݮށщY*2s} -Br3__]Y䤧$%&Ɛ%{zSя[MMQ OO7^d 07"9 ~@c/=^{&| J|Z|O"/? D~(I)̬uL{G&&gK+3[*#oj ܷ Dj #K ܙѡޮ; +Js2ӓb#os]m,L tAUUee 84?& rI)*`_1=#Ss+{'Sg{^x#fdtlBrZFv^aI9֎ΞF?Z8e5$c$?wA33R?,l~OGۑoi??C?-5J0|&Pzz=C{T{~A-I!ߓ@0OIKπUTV 70/,-of>2w3:W'Fz:[n/&ųY!z_VgٙO%RRJZVNAQYUMu L,Ntq;s㢗Հ!,v|R*'+WM-mw{ybl/ǸN _$~" {k+ٙ>aKK -r28i$Ѭ (C~_꧳i???j?-1)zz==Ž8' ?ŊfOddeD$zvn~aqyeu A'fW2n[$_c_@oݶI$D - uv֖f&F!jʊ}i)/iTxv9e -`_Sq]}Cc3 kή=.\v+UwZ;zF'g@~GH* Svqwr ~ у͍{+ˋ VWA rsx͊" E? Og?e?߈OGOO/ [2ix#_ħ0z{D{̽= |_(AX+(,.)-"t|]X\ZY]*]z]!|{5 b}GF胻ѡ?>2X_[U^B?#-9!6:fk~>/w?hokeafl{숶A 5%Ey9ibų>t/%edTT[;8:{ߵ/.78<61=] r@o/v>12Q? -Ǐ>ؾ_[]YZ\bGᯩ,/+-.* ɟg'@wolL'6\k@ v)z(===={@/>N"tG[@?|t |:z }>3ﶃп]SYV\IMg"C\y)'{+sSc=$@їCgW}|ǹؗ+()k:|TGᤋۙs|܏KLI/*?4 -sAd/"PIP?-kQh " A"ҫiBGiREi;EШ5jv7[6lL&Y&3svel$;s_6 ~JZzFE**j!mr䏞=!ȿCEO*hOP`gI/I?akW ύ4`_OW{k~EyiQA̴vlۜnAޞ.NY͞ejbdЧCJGy $i5u V6ή =GD&`oښ'5#;' ~cK[gl߄ܿr2z?I2?1K'OxCI}) ~3~3.|$ _OQ%aA~^}Y驼ۈO~~/OLl?@t -cpW,VzISE{xzqO -_!xS32/(d_QU]S[WԂ铐?vÏK@H>dG4󿦙fs>w%g/oal蓖P!̩zv57adgINںiUc#B|y.tuvjӧ1U_?D:6׋𷷶476 -_\x ?W,."?FT~~0~f?tbo??O'lc)=_yt*G=`iO'y؇=zρ/K,~n~b!k[Zۑ޾cCb7@hӧ\?76_4$ -1oɆq jySvܾe5+D- ]f97P_OG[SC}d ڲ(oS"jZ:Fm\ܽ}B#%X.qe?\uro`%2{!r r'Te 🗅hokm%yYiIȟɟFKV|3 lppp -`=C_%S@=g=Ӟ=? z/>-|!iy ~QIiY([;' -#_/e2|Lo>o #gWO3Bפ_u ̴vlۜnإ!Aޞ.NY!F:Zj)}%G!}d>g`db:kBE>~!aѱWݰikRTe*![; [ݽsx]$uU&'} -?^T -??92|h㓿pbD$9IŒY1(8=xOO"CK/.-;X~ήcLJGNʒD|_esF>gOl>| ( ]_?FC~4nڰv舰@?E ]m,f2562Pi3J絏,GIӦkhjܷsp^7 8tITLܲkoܲ}'rz>O:3r:ܽo_3r[x#*/c}=B78$?;+ȿGG!??O & [n 3{xcǨQ39P{R49Y+?3+[*ʪ#u B:>|?䟕!2gc.QeD/>3p۟пrIG0 -r߲qF- ]f9Ɔz:ښ>>AЧ#6_N쾔*3&3}ym\=}B#&X.q3B6i_r_N#B]gY7\s߿˟ W 14?2<G^N\"8G~? #@g =}AG@`=bOGEaߣ4?/'~}CD~;> 4?_.GQ_1Q01|9ܻ٭ -?ʅюfJ9{H["!6:2<$v>CP_WGKSBG_UUe}y# -؟2o`d2sl3s +k[{Ggׅ|"c◯ZKrwJz -.I_rMrO3Mr_}ve/`s1%GG~HHAH^HNHFȟӏُcCǓ'As L7]GO,y͛:OGI9Q"!{bQ|"~Qq /~ ⷵwBBB䏜?䟗'd>%3 o2_O>~6CL$Sv܎jy|LTDXp"Ύ6Vfgjki#hB'5Q3辊 -ru\Uyp| ̴Jro{} }!; 6VhVȰT[*Kf0@LAکN9 !Ng19>7wO?iJ@`phDTl|RJzfvn~QɜKWs Jn6}vr 7WAt_ &_䯖 ߣʿ-_D9ECϣW''o_<| hU OIУDb=c,py/_S"XA "j| <zc7c7E3 O/ߍ ^ -C] m[(_^EsJs3Sc"BPX&@"CwrRw]S#j0{,>#G=5vSG%&eL+, pK)7mGU'O_[܋;Fɦ, 6~a׸]$!O`ߦ~؏[O '^| JוQI?`y+#R9s !e߳ >zMm"IZG0Q: cOU/>_|? {lm^x,]m-͍vCS迴d¼iɉq1AӦN&Gz[LF0 l} phP'gg .w$ A!aѱ IY3r fB?bWQ^)Oܯkhjxݠ/^_goI௯c#'(+0A2khR_ *?O/x ![Gyz^P3R{{%=~ Z2 -@>F /Rn⿆d\Lпtwv676Я9oP迺Bg)Y;#+=5)!6:2,B҄qcFz<=܌./~N;;; <}vw5{?єQ1)i9Eų=ROsJ76wvu:c+sS'o.c:]~*9Ar"R7d~*\>x;@(@0@={ׂk#~9_$ob|Fj][71:[[ | c?3ovqa~NvfZJb|LTDhp`ltw3J}W0PVPWWO8t-7lx.+̃Rz^W_r=s}V^]iů<mD~ (A}(V# }|{]675a׿`8^Ua[)K)/)LOIП2i¸1|^nF0 l}<ز/rȾd KLN˘WX~c'!/|z~}csK[;7,7n6~K -ח__d_Ce -q #@gr +A|>ǿ[ Az^G!KWuܯ"UG_I?A *_7X_c? 0/̛1=#-91.&2<4Ce]Ccsk[G'l8>l6wjJ[?CA;~#nW߲u (W .:x)Y`5)O$=Pom=bCܿv=p-&6w = -7Xi̿+Ϳ C[KscCݗW8ϞG~T?޹"P/ПSRT4Bx<܍W5S[oe} t>#$#\ F7O/7hb? 084"*&>1%-szN~alV;?Py%3_\ohjim=KV%7N_$U?D~I?ew9Vԟڟ/Up3wObPyf'z7ZpsvK"U׊G;kz!?~k,M'󿂧*Μ:Y]UY~BO;_B0/B?>& -B?0` -~>f/O7#D;w j;;>jps4->~cO<r?<2:.!95#kFnLN_AQg")!j4M$mڦm;j&QPS^Dbw9TiI;h2*U1GF~h& -l䟀~~a?#{ #@3;@Kn݉O{/vzKKڳ{=~ -ۈߦGE>Iɧ ?3 ,|Kɠ:Li r -LaRoB'OHN/,)@jm8שMfk?.ܿ[~Srܟ$TU ?4?& &%?߭u$2`?O/ُß?2" #@3;@K/v'>_M0 zaG#"Y3Eߓ~~_ħX#+G#̿'@ +` CɨhoVWb&'FG@  - -'xB?(N7s7K龂}t٧gsXhWFBOI<[PTZ^YSW߈r_ۣ3VH=__2^{L!H~L~_3W/g?gOs? XZvN|B,G*Q#q==x*_ Lv!~_OcCH0'|S9̟;_ ~hj3u=N -u5%Eb C!w?zuW.CB ^ }4_B_e}Mf>/rs;}`s/ 0h<_\bMr/~Dtl|BrjFVN^aqYEU o{uS~xG}`bw'/>,/b:y3kH?f?ڟHgG?X604؝O0 2{ B |'>C)ȷȿ"F>=}$ŷ!293~pj3t]d~ɦMMUEiqa^NVFjRBC-_jŲE/ - П7軸HDy3v'!]=.r._f˯[Xow41%-3;7Ds^dA(Q}|o}J; -~= #R_Z_DL~a?t? s %`'=4 939z=jq_E(V-CIȗɿ~wm2g[&{ߚ (??g (ףr#` fl/㟕3U `K@w<:Ϡ9=>#3K/%1[Q|R!&>E>?ȇ~O!'3ѧ'ϝ3o5z]̇j*K -g&?qnC5bQ -><1G }4_3776}.ܟO!a#cb&&edUTj]ݽ:b .^,LS?|CUѯ W_ZRLO/`@#+@; ρ݉蛈<*̃@=^^>'KJUCM*UP|x"0EOBȟ&oI_ 3t=]ς-'45UŅy9i Gc# 1ߡyݚU=cx{y"})99wL"}}WWyސ )rmo;p(컹{_,Ukmzpdtl|BrjFVN^AqiyUM]}#>MfK0G=u~;&?`'*NJ5Z??߆M ]?"<0$=PO֫g'k4[d;rۉ?_Am#~̟1+';o1m0 xVzjRB|ltC|m[H/~0x{B.&|5w̝]"] rߍrߗr7MB;}£b&&edUTj维=:_+6ڢT8R {5j}՛$M3l6{{^ lc4 !`?}Sw$bIyd?g??_?Yx`1Pp~ 3γ#Bqsޓ%>IE>w/|A/|@_d2Ƶ+:[+K -r3Ғ#C}]P[ -C0c-G諨O}>f循*G7nڼuێsK'4! ,<"bR3s -K+j[/\|.(vfvrKr* ~"36~߻;77;#~}=ݜYqSc @#gvnG_Ee <S`qOrO񾻧0sħO/|{9=u{bltdhC /'3-%1>&*"48@OQO>F>E>EJO>!f}CsK{GwOѱ ɩY%eյM-m) ?66>q+_K!3'/jC7]PW]Y^RTdokenjdwFq2B#?UOWV$3>bæ[m)TS?qRKGW/08,"*6>)%=3'݋COcp?YWB'?`"OOgG@&n^u<Ay`Gz\{{8) W((__.Ls?kn !; u5Uyٙ)1Qa~nv֖f$O@C w߆C#b>!E_JB}jqoظi4rC<}FPH؄Ԍ’ /_~?04BݟU3/ߕB_&?;Ef?c T??XXd -: -hocenbta{ \#UTġ+[ٓJ.׭ r/lrA#N)%=3;q -vp?/tY𿖁y/K~>T?00d(sܯ5z"=XmOq/^|^cˈϏ|1A2͟#{8j*K -3Rc"‚=ݜl,L :q\{\.C- D_y+|ϲ}Un.?C@ZX;{MHJM+,.klnDra'8gu?ş?/X0d*sܯ5zXmiO=8_(238+6ڕK¼Ԥبa!>.N6VFzgOk8zDX( kTUG_iV$}>o]?xXI-]}Cc3Kk;gWo߀踄Ԍ’zn-{|N| kBYb??(O #@fYv$IoypROa?3Oz >L4G;'M͟5<8doGde&'EGzy:;Z[h8vp@$?z~S/}kxQArБ5Oi;gdbnic[PTR^ ]x*˹g\<_y qs3˟I??Odz1Px+Q?e'sqg#L+wpu?f/=jBz("B gMf{JGDT9Rsw"If_y~Oْ8#y3z z}\^mWYs> ?r@_wg[KcCmuEYqa^vfZJb|LdxH|-[ЗЗ:aU bsL MHJM/,)S5wML;,pSEܿ 8~_-bW?؏?W??h3@->D}%==K{II"%CcNd<4mә'O?7351:<ڤ,+)JOI V*|=e.0l޴qHRL2__DrsZsuvvήnr/䴌܂zUskGWo쾃YRw_Lk_XhyOO -?O?h +@G>_prIO󵧹'yO{ -||NS$./EHߣ̿/S`Y웝hmVTfe&'EGx\@܎B:KsS#C5j;!B_D1oܴy2wo_2(4<*&>1%-3;w`hd|rzn?tOC#?v@H~!yOw??G</GY]E4&=PggkpO=7W./mqȘu1s`Sg'F{;ښk*J 3Rc"C^ wBDЗЗi:=sEk LL-m"{z)"cRӳr K*Z;F'gGx{O4@/6*"4X\E-+g羉%}ݶvήn^>A!aq ɩYE%5uΞщh!PY?ώ~uO'@ &j%z{X{{5'(w$ߡͿEq?5>:<Ҥ,/)HMN 񒻹:;ٲB RKNe:澱}+k.2wo_2(4<*&.19-#;^?8<vCyWoߡݿG ~V<$g:D4x+,G?w Wi{:6|CÃ=]ͪҢ쌴ĸ >2+2|鞶?7Xkdbfsm]vN.nrOo?E`phDTl|RJzfN^aqYEUm}cs[GWo,vIݿE/2/"ό"OO->BFzzd==^{5_kz/Bd>17f5cy`lNM{:Zk*J 3Rc"B -?oOsA蛚_-tKה/-_}37mbef@`HXDtlBRjzVN~aIYeumCcK[Gw$r'NFqkU}?#t - ~-. 2 -0K_c'3sx |a,7{l1?y86zbld0/'3=%)!6:",80K`gQ5|KC_B_`X復 Rg? ($<2&.!95#+7??x%Q#ߡ ~_:ϵ_?/d&pPO|uzl=i={_:/|_Mow -240I`@owg[KSC]ueYIa~NVzjrB\tdXHP -u( ֬^>m-?_^r՚W YX"{z*Q1iٹEU5u*~p?_}} Ob_~<1 `VZu=dQG3{/ -ENe>06d>2e93ǁ}ݝ-Mܬĸ ]߾ B+^̗B_%yzq104265ܷawvu{)"bR2 -V0pFs.^ >~~N,YcP @M%vgDzL=cҞŽ1o7˗.~E?5? -loWfg$DE+~>r7W';6;l޴q: 3Sc+AHЗn gr` :]{ -:8>yHA0IiVޫ$@HB -BH1`lO8PGmWS=ݻ2=gu~_+VEKLN/,)+kضc^8rcO~;roB}X#[KL Z`ouy4A=a==S{&<޻3;ƻ%0# ̷̄ 0`Wywl,/+.JOMNZ -Bh44*\&Pw&JXRG}D*S(`2CG^_TRVQYSaN~㑣}rא)ϑl'џZ`,&{XǑ&oJ{{>/D|;(kװ̇G ݛ&iwnk(+)HKND̛MVV*dX?q{}p>}?X"+TϞ;WG]>>)%-3;tCEU- wwp㑗׹7]VQlCQONŐ򻤟m??[zP+<w8ғs'x/|e-Xxc揎 ;6loK#CoPRT>fr(gz]ZK%b΄a?2R YspWER3s -K7lDoݾsyG;x_ n  0ϵğ?? \NͰ?8#8ړ;y/|a%?gfm,+,/]"qi`Gطg-k6n(-*LOIJYvue~XHPѠjTJL*`To{gb?@$RB &sp(?o%VQѱq ɩY9yť6!wwpKk\O-v> -kdq߅wŸҟZ -p NSS;sO{9BI$ޏw̿26[Ab6[6oX^Z\ Zlɢ&^Q+2DOB73ǣt,DbLPtzc ?s6~x䚨ɩY9e7mߺõ߀͘=AchGU|dÆE淵4p }{vmZyS5gMF.@Re1Odo{gܟrr2R p._ S2r K+7a?xEpO"o#ܷ`b?r/p~& Yi g8=`{& tAO\`{|+/ә揎 m>02+߳k:ܬ40} r C]Fˤb?2 }_2'yC;|S||PC$RBh9($lkI~vn~QIYEeum]6orLs }/2'7dR~ğ?X?=_3 - E 362daY[ 7WEi)I`|Aը -T"Ч͇w+r*ӱ%2B&sp(?o%VB%ٹE%('1~u!1e'{$3Yg|[q:'rk>;+x/aq5J -td~l4@^Q)2X'C3[o{O/He -ZLA! /]"3"侤TiNc\ -k࿏2ӟk<#ڻޭCɧ{̿3A@_d4uZJ7IEY/,'DEA|<iCߋ}~b?ÞBܟes~`HWo*,j}BRkuzCpo!؂g3 |./W, GAߡf߱Yݦ.CnW*Rd~uey)n~62?U?_\ -OIN ̇/Ct3^rrs/CB#cSa/{7 W2CqY*W5.c?084Mq}ߙ~@-ABQ0~|B҂E=~~n^A!~Mm=p_֮t: F}a?::6>~N~wOsۏ8?3̿2e~d4tUͯ_,,E#P_i31'%FGEEBd-QBߛ}~rT">LY$ !aQ16_x -A3/^*)74ZJZL P_Pc Gfb A6ϕ^O~ۙ=yh >3ߓɿ'g0ݦ.^U -_QVrf~243/<_͏   'w }|~f r?{> 88w?1iB+ oF@g:MrZRܗvCe0?K9%GsChⲜl;>6ȿ wA@_թШrisSCnӧ2X%hI6vaA}>dyM1o}_gA܏OL^p1r5'?GoE?s\ Eťf]ujO9~7wfSܮI26|D3b1 :F*67J+K.?w7!dV+H濆_̏ ̇o|ƣaߋ}}}HBq ۑGspE֪PDSG=5O+#b8Q|tO8Ok0(U+&`~MUǎ"wnGu|d`~H͇?w.2@@5ߛl>>i8C}~Yظvv=rn'Nfe/xFR"+Վ? .gK~wB?M?9i$2CwWȥM u`~Yɥy9Y'O ݍ$ _#A!χ>i<Is9vbG:>W/76KemJF# kסw݁l_ Sqpv#=o|2*e[L 2_R]Y^J5?Apw4)0?v0|rϠOʏ&ܷ/#ݟ7s?̅|i ~jZzFgΞ?E&W(iRs=]?%?`'ⳓ #|Hub3_ 3_P_ 2sgϜ>cۖM~|0(p>a> '7 G }\>}OJNYDGo۱kϾ௨545K7?7۴߇%dwGxt*cq'B| ( (NP'(O6Ё}{v#FaEE$́}OB( C1fCG;~dVvNn^AK% %mXa;SP)|l@7/PwᙯD2d>0 /7';ǎ!/֭E$C"doC6}ha>Oos6}Wn߹{/}ť0kv;aAGCYǓ --Ywn$>MG>F+Cց>D| d~ xcܿw[7ӛl~|l0C78ܧq_ 2ᄋb*NMK'kt qr ~HhX㟑?7lܴeێ]{0+(_N ে?.B?s97wGO?ɿH-!V@m2:ux_2?/7'; C8~d`.Ď  { "b 3Czf7Xn잳͋};ϝ,Iϛ=sDKU4AcQ/%C[:n_LO_/wuGKo`pxdt|9 -~Z_unj^7qɎ|94 ё!̗cOdF]b`̄259_ƛϏ9 s 4Wpobf! wt& - ܳoϏ=y,ɩxoljikF_0._/C,msOF4_ɟb#k@c#Ã=]0W`_g~r+ qϞ>}@福A_͇c/Qϣwku%"w/@}*2Tkhlnm -G )gs~Vk_o X_ -|/>{J?".FWcC}=ݝm-͍ udOIbf>|?/|{[XjG7VVB}7/Н>۽7Gǜ8uO&e}CSKk{GWwo6I?H 5ȯ!uC*B_#Q_Es@*0homnjWTWa♟Je>aQ{wkghp 4 3_" |m[dxCr)Yofo ܗ\d🏋O ? -EUum]}cSK[{gW A&.sq]{T#gFgO 45+kO#3'c20̷ -NK/澑) p  ܳoA>.Ӄ\^YUkhl&N}#S)9粟9'>R|H U??G?>:2<8PW[SɰO'2sDcGFA=ݡv&FL\_On|㇍ź)} KDj 2 B^Y]ohjnmFKɇ!ɏ_gYk==| "| >Nm$mM uʚJyEYIqaA-?zЁ0~>|WgG;Zhi2S5?D7?A{}>Oo5nd ݷ^>~;w=I  -EUu`hxd{d?!)gM7YC_]9_I|(;( 땵ՕBY~.,/}@?/7`Tlcmeiafjlp+OC/Ǐ56 6YEb`0 =agfȊJ努: vX K=gGL~t3Wٯ`W6g'>Jy(*'ɿ X_W[] -r2Ss= }==\m%bJ@`zcǏ*_&f+H,wprqu  - Â?#@'/(,.)WdHg0gO? %-C\^{{n5?G_to݄!ȯfgOd~:%$Px d ߇e~hpTbc 751od75-/J5;LL-,mR[{Gg7/o_@??.>/RR3s -dEť -?OMMϨWJ~fgگ\G@?WDt9g$>]Y E>F8A~/A~3F~u_$LOrB|y1xGa2V*Y[YZ`B7`bRG}2_v6oY"ӛ]+R22s - -Jpkq[;:q ?Fψ~~O_-/B}~={j3SS G>|!$%EkW@;2?*w`g+V 3Sc۶`_E7Ww_a-[  ,"ٕT|\W%&edeU,#xG&?>!C~TsOh -,yuiڣWy>"?ſv+8xAy'i*mKwzu{{ N&F$9s - o~}ȇ$A`oOwWg{kKSC}mueEYI|uDD̿hogceinfblˤh? q?_QWO_,1F&V6N.nxOJWPX\Z^QUS[A??_]߄߹K%?&[r'_Gg x [zzZ{>k_O0߽ɿ }0d~&V滹89Z[Y*2|G1ׂ„v?|'y/H -+~ C@GOLNMRWVԑ_ំ/ao^ߺ -"Cqe?/ y!HbOj=qfD> -@ݝ-%.m-͍u5UEy9ꬌ4 #@3HK $"}=`YG6_@_0 ekquEbTP[Z;$¢ꚺֶ. -5k !dsא7'K϶_#,Gȟ)I93GM70_zr"c\||,oݼ~$K~kscC]MueyYIQA~:;3=d~p<}==`;XY*2D, ;?AGWO_,1F&V0`{ - _X\RVQY][:+"Q+?|OٯJ 'p/Գ gGW0]/Cg"0?7';3#-%)1>d~X*|WV&F -@"_8Of`0amS}, "TPYXZ ~蘸,uN^AaqiYE/3s K+k; o.__C'I?|3s}4ϕ=={QrFD$rbI~SC]mueEYIqa~^NvVFZjrbB\LTdxhHp`+M -@"BO󵴎&<츖/utEbTPao`*4,"2:6>!)%5=3KWPĄxtlbrjfv~aqyeum$.gd渚G???X[]YZ\ ȯ(+-.,Qge&'%FGF}a02_)I%b.0|3d„qӤ/ -CF𻺹{zB#bbR3 w ONM/.-RL~L'~~~H?LqyGh< fZbi{|=L| |,q?Fu2@/NOM@{媳2SSc"CU~>^t[Й/G?I#//Lءwx!ڸTC/Eb*-A98:\r - OL&煿o`pxdt|bjzfI]<9߇?|DgD?K/h8=4zLi?,|:D.ˋ 3ӓ#Ã}Wsٙi)I1Q!A~ޞn76T*dRz ϟC23_78n>$_0_úx?p ~~P,? 򕞾ѱI"@og{:yǻ?W``:{gQؓ3' |P`ğr M~$?hog|]F4|aGpOk ~cS3sK+"1}UQ$5uM-{zGF䟇ɿ#? >,!G8 `\[p/?ǭGg=(=$0_-&y E@_oOΎ֖zXH~*80풋J\ -2_ey$1OO<1#|a~uTS?yJ[~b<`[Z;B= A!,չy Mͭm]e><8 0&l2^%R+% {8^xm mH -I(HZHCa(m4MTjJ8PUҜ~:2=3wc Q<#q`/F̿?_>Мuɯe{D{)վ# |q. s3GMu45Z Sb##vx{z|b`8]ooqO]֮o"S_U?(KHLNIsSKk{o`pxdl|bzv DӪr#oүŸ?k? ]6 -lS?.Q/g+qK ?Ԃ&,";o#<0(ɉLOC'FGE  -&6"a?|}/o)4u7@o٪YiYyeph&YASij?.)NYݿ'ɟC^ƞjr_8ٙ4Gz:;Zur-ɄА?_/u3߀2_608=".kWe -? P -'$%o[;m=CR!'ycH~Νh3g/W @'@'}O߅zn=`O۞h^{={w -?:73}dE@oOe)cc!>ވ]n:|dzl dTϑ+O#t7'?vRSWa?<:6~`VS!?~Le7oOsH @''}#c)R#1$,o~׊N9n|07θ'>_rGf}W?4+5Ʀֶ#&!g@y*IE~B'W]_\$x`#w@dԥB QϬ'sqKޓ'&Oj?4y`bltdxF~G[ksS_\ThG~4@b!_U33|jjf>!08鸿\v>GI'n=<}|B(ܼ|TVQiY!X !rS5/D闲wYg3HV@^y tO_96^^ž=s^BI_M|*<?P"ZWk6WVJ\-CC|}|%2EUR gSe:s$28;)ZSlpqIiYyeRSG7084<A_cJ?&__X2t ([ l|?g_3"S9DGD{(_%hH1$ N#b,/+-)_XggeߵG/2kX /37θ'?}5? "c#cbܽ!khwtں䟦k!Џ(E_90xC ?}'V@=X/c/k/ i#/^$>vF?@w:;ڔ/7W77@]c] 3BOY,~WgjzFfvΞy -KL4k M-mH.$?ˏɯ~Y+_%,? ^<x -@$~}&=zZϰW}/>YԊߎoj7+ۻ'';3#=U%? rE濸d毒_3Y0θ>FEk{hKHLJIMٓ_P(R[WomljnU}#K?W/-tHc =};; {={{Rc!#L.$~ZD~aA~^̌ԔĄؘȈ0;wؑ3N毱||{r}۶!IɩiY9RWTk T~߇#v@?d4?'3t @V4O_ߓ['Y/giϵg܋޳.G(U[ HjsU9YiI F=4_ߤ 3O_8@S_!Cc1 Ȩ蘸lť*omO/яy? /~ J/Ol| ,uS.z=HOcq3 ,/^8Oy/ ' Mb(3HOMINJ Gk߾uF>^0W1}ooqOÿQ;C7!/SY!l|BbRH}KJMHjU~G?JgI~gΞc˟/d)`@g'R1TzB==ŞiϹ'y<1~=gYaERJHț=Ȧ,: [ l D -HYTpDE 7tȦN:3Gϒ}0wW) {v$߹vU+ a||?G7T*)K2?/0rK55j FZCsE%eW\ƒKێ=E}YOP~Ft~_O?yC?ǿ  pl~kP~-?<Y=jok[ߋ P[<gm]IXl/"'$_2q55 3gC# +; ~"7,3~I~'j$zI[BDOOЯY+b?g`  䒯ʃy8EްW}{{^?>%&>?t04>߶Uߴq}6X"/K;3gdo':#o~xѕ_mm _-IS?CB-u鲆W -pt Uz3}_`m^OuhϺW% sggS}׬^/#|bǓ%4祥x?@'M 7ߓG/z$ȿoQ{T~D??R~Yw p Yz3}O -}zZثoKދ{B-?#U^_WŌ|#oO'AɯcS& Zؚqߓ'ȏ;:ץѯJe/_w/]OO}t0vF؃ 7|1/+YibKν -U|$~oׯ+EIȟ< -@}F=ɏoP.?&I/t5o)߲?-E՟o -`l l _o0oЫ iuKއUK;T|D~am?3?^[p0Ko -O o_ KW?s.&@ !2w?p]W!=>P5>h9wi&# O2?/-pC 5seo%ɟmGgk~vg޲sAostt8X̀-zKU?'0Ao "5HOz`ڟ=^#xo_~?9?F {17W_ ߒA_/63Ms,NV;`SA_|>PyG~}O^^}O-C5s$BJ cȏNjw u+ -5pgg+%Oe ]pҗU`%Ew^wzޱg3s܋/O˃?8=iv!EoIH~x#?ƦfI6IS-_ }Ffw*ӯg   -pt z__EOPy8SzR;iGދϣ{W~q?sFTF&7ĻDŽҠ*?!I5]s_@?3~ _SL/  -`8?/ΫP̋ -={=Z'=gP|FI B~SScCC>/?*No䟈sөw~_?ؿ_/≓?m@'G3)}Zz>c /' "=hbZ7OxQ^} -|9$s3OCOA B~ːݟQEGŻo(?Rihllj%Oz;Z59zqӟ62\@3}sV7 DzP/g7;u#={~7?'/:E~sSccCA~`ȏ/ވ~_W"d?#%#a$<$?+'ĔF~3GWpj>A埜_G?ԫ__Oُ߰q?߾cΞޠpttNIρ<^]z;=^~s&~z/_2>'?SğB{[[kK į͏Nj7ﶛ^?U*OgΚ]@?_ ~ڿfm㿥{?_ -`:m>#<G{t^wI[gw%uvhߛ㏥ğk/P񧖈DX{!͒͏o]?7ɯ/ϙ_'ٯK\oԥ[,LnF+9(?_YUW[ic $H #ت7:tݳ.{s '3ߪ@?HG{Fp_c]8oagkkLx! G45z_%Wk޸us[wv#z?h`W_?%Eנ> ?A/}gb}>hM{_x+s^O?yhoמ,L|{ "~7@>BwN~O~WIk*8PO> w_|ͷ߉?242Y~}@?Hԫ{ў{7UIM=׮_#WE|"_sȇ?俾;?w?? @@#@+@3Ci~'y~>P'½\?=>x?>>8^ ~:щ7Grqς|P};tџgwo?_ - c3}%Iyb~p^Գ9tߧoΝ۷:"~?<ϕG>G~;G_?ҿM"~I_g0 6Fgv@@WD<1?8/Ћl}kq? W 8UK$~:NRx_GSgwG 6{҇MB'y^OG& Wz#ߐf|im:'Izbſ0ihhxh-oC<1OЋB=[ϗb+wo !ԭ)'ȿL_џ_?e LHf<y~^eسms+ſL/''_ߦa_O?0,NmLyJ^c yRIz~>^w܏x_O|'R##փO_t;؟eth -ľf*Gz/{U{#{wIOxǎ|o`{_ -M̀ nAi%$_x,ʳJ/wXϗso*yo !4&'?] ]0:a b+-6:OЫrG;}ƽ>U`N9-OWgo.Om{$_hs -y__Og##zᯝm W3= ,@a }UYOe/[7HȽ>=/Bl2Us߶O'Z8<q -b#E -+=C'h_r>N~S|:%?;s0idx516RoOG5˃B ʟW'?22i v rOc<;?f' }:W#+_JgYnL@ͱܓuQ|y#H'p_~)yOYnB鯝~s HKF~O>gp>x}: }q#%[k_H  # ?"L=[i_p/=-_i~?;m_,n@43J~O{>t>G-);??7 0CA3x~^zk}[#q{gn?o7[0=r^\}C|Ђӑ?_99¿8q15| +\o:#WXO>5-?[iLʿ~K[Sc _O 7 @>Sލ߼~K}#q5П_?? Nsʾ>KW33s >G[GGa p3\||oEOew_!p7OG#8qK0}Ծx?|:սo_?O0g /7ݩe?iΕG܏x#swl*S0; qT~o˿@kЪ CzcY'ϽoBWS{n A_*^z}}=GZ_܀uo8_P_`=G5؟___N5 kܷTu0>j|&} *#|lĽ:5[!_V0=GF3YjOh`#NS |ǩsBWt!)w?!5yuE"бnޢ%BujG;shB/lt_nkBK-_!N~#!t!B!B!B!B!B!Bzm -endstream endobj 204 0 obj <>stream -((( -endstream endobj 86 0 obj <> endobj 205 0 obj <> endobj 206 0 obj [0.0 0.0 0.0] endobj 207 0 obj <>/ProcSet[/PDF/ImageB]/XObject<>>>/Subtype/Form>>stream -q -/GS0 gs -244.1599945 0 0 245.4399945 59.3429222 55.4917377 cm -/Im0 Do -Q - -endstream endobj 208 0 obj <> endobj 209 0 obj <>/Filter/FlateDecode/Height 1534/Intent/RelativeColorimetric/Length 418298/Name/X/Subtype/Image/Type/XObject/Width 1526>>stream -HgwaP@ )65@4l1!~xmS<*њ9K:zv@!B!B!B!B!BqWC"^?q Bh> iK @-ؤ4B[5>z!>P~W`Bm6kC6Bhö~?!6P¾+CBhֈ}W_ؘG~}?۴HxF?Bg%}3liCЙ؏V㾛ޯG!};3:v? -!Tw[o>1zZo#RoH}c@B -~}&%\f]U'K7i|ldCSSM?-ނ ѿ!) ~T:uO%Mw,}/' !y~)x?P`UÏ Ǡ~ -oCB۽v}VuS}z? j~ȏ@~agO~8H ##C{v! GÎu.z~ #@&3?W!}j ~f׸OOy=xc߀Oߑ~ȏG'{=!Lbs7 8kdz#6No}{K: o -XNr3NdbnoBh+(~ip;'{aO7NG)?go'b %~}g~ G؛sioj?o%0Csw?7wgiOh+6{>>0>B-|ڧ]܁o??O~ȏ2ŏo>^WCMz|`|bڜ#{' -pG.@ז~-WCgB.#?#~<3缏m/+&1>--&%?³;vb_d2&?Gn? -~}Ƚh܋Ƽ7>`}IܒR_ v OٯK/ȿ#Y_?ޗwث*}ȼ#"]ծ]O~hos΀NcF~?5{/oϨY/ʼ3޻~CZvl?p3,tfTD(~P:5R#yۼ7 {>^w;oq+mםb}I>w 7<#o:_Gɿ7+Kڨ)d#=>[= !>?'ϤG,?G(oN#$~h׿H vDdL~jn_'!7{^7I{]Fs^7*nIyK>=r/ DaGm#:_B~I|~}{bϫ^7y5x<>y~?Ďw8%+K0k?BMTqk!y7O້~}{ӞWz^WxE9akïACWn\:?`2SMmL~ -G~0Kwwq^gyE^'_T}2뫅Ia@\|0;c|uwz^UxkU/s+E=K Wn_=Aşp3gtc;LZ/#ȯ&>6|{}=YOԳ 0/+GԷoKiIWe -z - gyEÿf<~7OBi'#?PN|?3}'yWؓJB/ -< ݪQߧ~ 1}_W3!+7O;ۿŸ Y/?O;P~??;?!΍@~f?K?87?_ |+mW {^'Yz^Wԏ~DiC|W+m_ caH͛:BM~?I~_'7~DM3IOȟ!牿Lm~;V;_y^}M{[O+Ƽ /74H@\>z8џ?M]6~W{yF^Y*:V:ȟ}3g&_"]s{ C)g/eӺ_m_i˞7zޘwRsUgB$!wȅr !HJI !$FBaFtiu -hAI-! V߸og9I;#K~x|֗hÎFSx9rpP?wѿ_w\!mm"’?I{%?3qgD~D>_O/ -6~y!y㸗7{^WyA^}'?{ws)ӟ[<_@\=v/[Tq۶liMuQgժKHzIUUyS?vlRJ>_2Qՙ˳_FgQ[i}-y?0 u/8mOS+bPyQ^7h'yNɾ2Y3~o@.];_'G hGl'6_uYGI+ ?/ϊDe 4>?8{4=b/3*:/ȫji/&N/%37]>_'9a M51W@e,bV_/ςd w_pXX6M>ϑOs/] -!.{{z jޏH3=^7Uz8/̋;K>N{e٫sY_C^w̋;D{r |v#' :?e}%~~ϣ?k|W  -I??;1CMM2g|y W -x ?.~B=}{i{aY+p^W +bWkn~/snNSK&?~Tg#䯯S2/ȂA̟Je~6D~ Xώg8?SQ1~l޴WzAoCy1xg̯c7x_1䭝=rpp9oS!c4~8FR'ɟ=ÿ( ?d# ~Xt$2'82.q䧋5~Bw}%Խre/؋Nz^ ¾Eȗ -9r0?G>?zό_(s36na?7N⒒DIlKl]ߋV½=Wz^Ey&mwRg_x.vp ӟ_(?rߓ6ї?~NQ3?6-6̟#/L$gx;2w|x)3gSۓRWzރ^W'~G9C W;WIjghǏiGџ)O~I~ -8< 3|#8'ɑ/7o[[⧃ޟ%/1`/փzH/ jb?8+y#`'@'#_Wx'_PBM͐ߒ}ɟ~q fK2?W2/D~E>7|{!K{߼?w=^gzD}$8ț@'b?<+y#`@ N+sI}1M -EE!¦rJ~A&U)k7#oBoߑ!w>{OK޻O@/̛N_~)9f]<2}]w RNm իK"//#$~wowWgkoimԸ75WW1 /,\&c~/+c9A>D:"DF"v=}C?? GE(=/>sGG؋ޠ7#?>g9pgn(;wf͛./ٟIF??k~xоݝ{:$>ڲPO8/#3aa%?ә@_J_g~}=Gua$1@HcE;qBSJ]޻ PҪU[E/N@(ȀM0 1iS^)s\]|g GFE'&%_XT\ZV7oB >ރGu/r'أ S9D'x?G33@o9??*/\`ٯE?[P]UQ^VZ\T}%䤄(  _?k~GG/o)_Ag*j>$2dFi#As=ZL~HhXDdTLl\BbRJj%eՆI$>O| ) ?z{xqϵex"S_IW9g| 'isI?WD?o7k Օ%Ņ(23ޕ@] () ~}u^`f& .ɏOHLNIݕgoF־$KJ** 5 @|#?_eY߆ރ'uOgi^P/9/O=ۯ0Z ??*I_d~"M@CU%M9efݝ ï#BM_ -:u+Y۳j>!@+ _#MOgf?#P[Wjl$Q#9 W'}gyO'mgcE9£Xo-L~>n?`Sroݺym~ЏBmZCuIܜ2IEAwP[̃߆:u/ṡcmR.g>&' {O$?`^~AQ1c[;_)B_~轐,{b=B/ -a g`)DBcA/,ܹ _G@nSWG{'IqQA~2!i)"~z ;' O_-Ru_癿J4ḋ3w{kuzH~0$? -D߷?_XTRZ^Q #iB'_ -[8޽w>==cOsEg2ƿop 'GGُɫ'sǀ@nSgG$eEYiqQa~ n{{i<N~oa1ױuNg1 Ia>"_43<۶trvqs$@1"y%eU5$;:{zFF? >p#u"h3 -(eLNq `@G? U?_! ?48c$_W[S]UQ^ZBߗ?x{y]0wogݷseRԩ|l@a7l2k$;v:5>Z@`p&?Ʀf]޾ѱQ3 -!7n¿ |G0EeEE"J"K'2~,1ooEP9 @?L֖i}4n w෧/Z -}u>-|H`>|G[xA;9{h:`7ut;?.&> >|{T{=^)gNH'2B% -_cL3H@Çf&itwu[j Օe2)Iq1ёaA~zKd -'$_oF=f毁ڮ]G߰qoH}C""cRRWTU745;L=}0'g>rP3J!H?x -1={ʽ=^^ޚX֬@ O_"A,g'G?48mh3q)Q_[߸aqZ[[3WS?rͷA٭G8߂SGFb瘑?04<:6>953;wQ @ ,>?"c=^Оa/RoƼ?3g%O?q'3J!$_&>uıGh :M 5Y{!I ?_<(Uթ{{__w fV - OHJNMgAZ}C#c3Pw#/K⿋lj={νJe-PIO/?ȿ  ?HS4&'Fz:B@w&'&FGEwtognZ[[_m]wǑpHNۧ,ۢIEjャM{meyHNۤm>vPǖE@ۤ9^^(R?8< 8D##kbOy?q>8Oϴ}mâV{ 6䟟62<8KH?Ÿ pwuqr ~>~~F1 ?a>Fwrvu ONMQRo&6:>19=| M(>|%ĿOC("'^=γζ .?gc,ϐK~(?Hm"gg&'FG{{)2Rb##Bxo ~!Zas ->?~賛#q q2|SHl!R3?jPHXxdtL\BbrjZFV2/X$ph?5=;7LD|L|h98ϨC"{)3焝eߒ -?C5C =D#"?_+&X_[Y^ZF߉.U*33Rb#BS_ ~ECCΟ}}~9k|cS3Bj)e~@`PphxDTLl|bRJZFf27HU.B\ZYEF>.>h_ ޳jO^wtqhOk8~ѿϔO~ ?A򯭮,-.BǘWKTE9ٙi)I1QA0=\Aۑ/o,O?cƻϏߩEͿH1d#f"Dji%'3f~̬"UIx!!'D?)|mSgrj^ߝx(tU?F?\Ssc}ue?35IL]R\T ߇RXdEZ;Ν@O4 BBb)RX98 3?$4<2*&.!195-#+GWPT\.ohjiEȟ/-on] |X䣍gK||4ikhϴ^/uu3'G_'.?M~奅y*%Ņyʜ2]VXɤ HAkwS03̇̿b$065-2faQ R22yŪҲ: Z!nݾ#O_ ^'ֹc]k紟~M۽s΍[k775VWUŅ4Qah;(2KHhfj,0m} ϝ˼3320L$6HeVrk;{Gg7wOo,#A'%gfJ5HJ -$=@>U|"qL> ->ܳ[|ߏ#Od#O~6O~ݽ;o`PWS]Y.UdeOFR*1LMFW.cX?sT߿761|5|gW7/o_TY?9ƎwGgF_(ɿOM~/߽}&+}ݝm-͍u5U‚gm|#P ͷ[;:yxzMf~.|Uo`p(N!X?"S|jg{u[=^Oş~.5%=!ё榆J"9twsqv[YJf}#{Y}~ډGkHl.ʬֶvNή^> AGO2?fd~M]}csk{GWO_4$yuAH)Kg{=?Ot_,G?|  ?sSc#C=]m k*%0X' Za%JB3Ssj00m+FhR&W;8{z 3? -M-mݽC#cӳs cΟ88'QۭVlLbWAOOtO D]UeL䓑"B|TkWK>GOG?J<`vC6|Y^NVfzZJRb|lLTdĥCϞ0#@xV8;9Z[Zb6?A($I1SP'lǘ_P[X;:=}`o3!A懞y%:6>!)%5=3 PKDY%#%B|V^z@L?B{D_TeԔ+#.=?xoztْŴC)Ҥ1.}&E.[njniecgd<󃘙2򕨘􌬜\M~A>T _|ڋg?8Gϲ_8   - Yiɉ q /1<3z{wuqv07]l)p_|٧:ܟov]}i}=}hbϧ73spt^]?e~EQ1)iٹyrED]VQ ɿ& 7⏢G$vࣼiLJ9解GQ:}8dk_ /S@yٙi)IQ c~> k}}n+l,͠hBgkov_I{]3_ct/X%KYnfaimk_f|`~ !x_'/PRWsf}n$#s\|v*.N-?a_ ᯪ,/+-)*Tr2SS@G_aCxzp%u?㾾4iO͟*y M,m+k13Od,@槦gd¢Ҳ*H~m]} 2"1$(082erRUTRZVQyZƦ6~X?#~"+ ~ʐKG?7X_q_^VZRR*2XJ֭_o7/w&PcCF&&h?69nn/̏2__*,.UWV]765C9?z42:3޿1ԏ~g$c,!C{ f-\]Z\*ȗMC:j}Ksq!&͟J?2nN.koܴ;?x̏3?_,,*Q̯Qohjnik&`/ -7{Ɗg&GhoC;-M 5 +`T$'wnv˦;9XvLiҤ6_4`滮3|`~4;K̯546wtvo# gG[xM(Jʯ:476i$_? +ww6z&8?>hmq=Hص{w:r$n~D$0dWa_Wȿ ȿsA~E|fJOJ{^~q򣓟'c>olokmnj_}Ld<#.];w!Gݞݻtjܗr_*11!30 f݆[:z>"I)i0e ̯_u$?OG3+[={_P~>{ Am05k ?O?۶nxy }> }Ⱦ!&O!|# s0?g=ve~2#_ߘ{wH~-[]m-/-)RɂKzԉcG߰n(ܧ72rr_r_b_=z0M0gsŘ30(4칰 ""b`gfWW33f7||"|1a~^RI|IBcs' &,W*@ggqBAܟs? sĄ}}RK{1LC~?7qq) ۴%?:-߷1BϦ CHBB!`076mYdI| -mga0>0mL t]iWޕdK yfzFO"2wH? ]?WPT\Z^2_ og ,;ſ^|Qa Cحsy9(߼iO)~ -}HpAr4>h*`w1_̏OLNa77IW!߲u;p0d~3E8̷@淢wI~/A&wD/?lԳs ]'?)qmV//+)*!3طg׎۶v?>.&:/BCQ/b4 6 i}ŗ釰Y9ťe*:G ۉ?;.&&wimx_Qw_;fZW)*J ssN1Wr@>q |>6_(HQl濇_0v޻?Of+(*.-T(UjF淠?| 2d~wſ*oBG! -WsU~g2~2-Tkk* uı#_3܏@N#}Zsa~H,#"`~a ߈߶2gʪjF5@曚Dwf5A'AU~&=5?{ :F,/-)g߱i#rC.?'"##}!vOr?Q|cz#!;B/Kx0??g濆_N0?B0BQUh:fD2 >I/qC|hs= ?(iGbZꌵzF]](sϜr_s'v?"T&B'M6ce/b_g7~ť`R FSb@u.(߻g}Zzߗd\,f17F]D:Oߏߊ@wu;ܟ1mJZjJRb|lLTd\&iuˏ&[| !BX* O'36 wW]o6[mֶvh2#o!=9ӕ܄o1'? (Z6X_gj*^"_ydp? prߑ| "|2"OϞc -/WpWP̯ViZc]CcSjoi?ǖH_  OßWOy1>ߏg ~pf4756kuZJY/:EjpO<أsgϜOb"a2X -;r> _/&B!BD&KHLNgei$?F_RWkZc}l[;Pmp!o x`{/w#[}q& -N -~p_bn25k~5rp1LWEyrjIɉ q1ёT"'|{1 -?1T(HeȨx0?5fs//^b%azGhW(`o456{k[Y0+o2" YPQ|W8wgti޽\s;!Z6}^[+ʜa~5o/[d1 SScc"2X$GOv}~#kL9B?B<>*KdaQ1I)`̛`!6Zx +_zL`No#oim8{2'df[Lrkz>ByF []ʕˤlj3uRp?c/\Uq|ե8 -@!{I! ! : cE: -H !=4wvw}<{sM;qo3;s)oݼoLYXOf~)Sc#熇Μ: ? p򒢂4hrq p_U+2X$_bOpmi>=L>0x|H,ɕjNok_a^p`~|RJZfv.^8柆揎MLNM7ϚAunOC|&ϋE[?~r7B75{ɯuC?|sUM e%Yiɉ?ukmmB.5pߘe`?>G SC - y|H,)Tj  - KLN/,)ojnm?ǠCi`>533Xb߄|VQӴg;? SGො ?-oޜ)FBT/.HMN=\]vzZI"!g>>ܖ -?8|+_ KdrZٯqtGD%$gUT7.Ss#cSKTg1oCY2|'YZ(WfGSTNd%N8!i࿎?e4COa9UŅy9YI qQa!km:Z)I"r`0g _me\lloظi`phDT!!)5=3'k{o_?0yh+@=v1"nWp̿ 3<ȧbI|JSGg8O!m?,bio?F3i3?{& K1ǎA%>i? S3&??߷c{Wt 7;3-%1烹 wh*L* <,C/r3_BC_&W5:}'gW7wOo䴌ʚ--[;͜S q]ϒ/.-I>Kf)N> {(tM Q>՟J?)/,_H3bBorנ/oڲ(?7+#-91>6:2,$(^Q+2X(_e\s[z[|[YBD*W4Z[`> }h`HXDTl\BrjFVN~aIYeu]CSK[Ƕ;/Aߠ52 jS2g>FSGg~ٵ9!FIi3^y^i-wg?&>0;wtohkij(+)HMN >pFQ)R }k, Զ毶"TP6z;M=|C#b I9yeյMm]{oei`e||3@??~D~)~(eL7'zgp`ΞmmMUŅy9I @?/3pNӪ -T,sE/7|?:GB_,ɕ*NoB_@Phxd!>)%-3;g݃{c>F̿*a,f>p22OzD6>>=z*W]A-ЏR @Oo*όCzߢ}e?tC~=wtw67Teg$#C=\]AuR.ܖ̄c }k_B_Pз_>0?($,":6>19-#;qKή]g^ܷe2|[HV7bB">>=QzT㍘˸.l祐 '''>D࿍?/>wG/د6;k.oKb;vz wV{kKcRQU^ZT.MIDG }n<';oXv.;.- зc՝- -%&KeJ?8lcB#!D/I~|.kwD|6{=^4W27>C#з,,{Jyy6#ﰮs S53c}7ρϨ_sQྺMPWS]YVR#ϐ&'DE/O7gG;;o۲y'0,VXs1wPv`lJ3skmc#C#cbR2r -*kjTm>hSg~˘?}F_|R|F|=֞`Oγr?g> 'O?c5z%&7ւݨS}6USCmMUEYqa^vVzZJR|ltdX8@${`o jKs3&5~u迿x(-|]ֶNOGCOcKڤ'9hmiUTfgKS%aA~o+zk,̹_BB ߶}'}GgwO/`phD$.1Y*˔W*-]=C#cl/#o5&6%j3 }ĎZ3⣾c lY>=fw>C^Br?O׸~&ƍ~7oߺyec#C=]͍JEeyIQ~|7߸c+A>0 UfV(7mBޑEDKRҳ -*kTma`GO<}Li%$j"9j󏯾c{=^=Ih7]72 ~|h?ʏ?뷘oMvu'Ǐ= Wwwjk*J ҥ)舰 ?=m \s[HB'n;g7O/(P%KL2s J˫M-m=_`\~srvOMQk|ck!#"3Sz<#uWG[KS}(?W)&'DE>^n.Nv6 ~Q[_f*ss{S3.N @cA _ o2OntoM޸ܿp̩ǎF{{:U u5eyYi)@_3s6}}nofB_' -54wwpyxšQ1qRYfvnAQiEUMmC[?82wA[w!4⅚ϙ7 90O;ƇC{=žR'S!gN;izI|_|@S~B@~~m_0ˀcl?r{?A?EOh?`MP*/-*ȕgʤ q1Q!Їst/ZD}}n8% }>070) A;:~A!aѱ I yN~QIyBYѥ>z20ٯ種3Lf1(Ǝ_8Ę:bP{ZIZ!!*"dl ys-ۄIŠ{Wo|/?6gqWCc9IգTz<3 JSkQ {_@/zgS~|bGUGxtǃP_p?O~KBP'(eg$Dz:ZY=}ٵr|5_a}Ön/gsJkMi۶CB䩳-m]=}C"c2s $e*Ym=u =l8aHb>#}{h='=u!x'qdMl=B7}@/v~B?'Re -9 m/|&FVVV)-+)HKN tsq4?ԉcG߻{vŹ4Kr8S ǩχ>> }}o -Bwf k;g7oЈ؄Ԍ’Rieum}cs 5> `I4;4@3_| -z/gS xTWOVGW+F49|_fw #L'NxJ4?-͍5Օ%9YI QfNz}׎!$7m4%羁}0_Bq#*{4߇۶=p(PhxTL|RJzfN^aEq̿rud6e/O'Ч5G =pi#Ly&< WVkq|] WD'S)4oѣOïRtRAFj+~OŎ6eKSC]MUE /'3-%1>&*<$S'=t`۷s's oJZ#M 7W=< }Kk;Gg7O䴌܂"IYEI ` Vb,b%5Y諄>?gS='S0)LXʄ|c3orE r|g''}VVV%-fg%'EGy{9;Y[\8w$wk&k׬rȈa -*_ɇ~FwC߁G<}7 (4"*6!)5=+7TZ)o+Z;.]GON!#n/3|"WG_-||F>xS{3Qs WV3|+/y)YVg{ƾ?-?^ 6*"4(L-?P֯3Yccs%O羁}^4BC }> \o,O9?0$<2&>1%=3'EI'׎7? _#9чvYf"=psS9Tx4V'㖫ci|ާW@?Oy!6Cޜ} Le_+ >>8cp`]mʖ憺rIqA^vfZJb\LdXHGHo o,Uj̐iO'ϣv 7. -?93 k[gWoఈ踄䴌܂"IYEIlۏ]c~"~K-HGA>p641*Oo"z:Og#9l\Y& ~%[6 %7c >}vg NP`ՒH/}Ml>Ϯ^{/v)M *i 7;#59!6:"48II]c,OsWo`߰8E7^kt _0-m!|BãbRӳr KJFcbkƅ|==J [<}=|N|xzJ@U}5$7oyjCV6NQ IYE2iIl6zG'QƽϘF/S1>`gX-۔ -ysc_qh=ROGx&{,.M?ipUQBIn}GBZp@[XRA]a $!d_B6]v:6CrIز^ =?$W>/=3yg}Qs -^׀]:R~$N._pσ ->(ا=׷CF_#hWiF <~}yٻ3RSb#Bm٪~,rm7\.*}依ƾtI[ BЧoO߱~gGBǷujKk֮߸ekHXxTL|brjzfv}!a>((d&Яo8owd [\"ȠTtS~I?'sF;TΒ}Lcyq"Q}>֌p?r=ٙ黒wDoٺyW $"Bz:R'omZBC۫opvqsݗC__߰)(8tGdtΤ]iY9c'>2R#0]d9F/I}C_{ךDM|x {e=QO x;Yf% -5[7Uq - ,폈d?#3 {b#&bibFl1#-%)!.:bG趠Md:GR߷wO侏с 徽=/s_o6iS}7BG>P5zIZ迏_@o OLI؝ᣪRhQiJoli~ ܳT_m ѯDiRY|/'5y6^N/|J5?GoЫ _O'RV_c*o[Eۺ͚5MƲ %ŴIfU:/?7{wzjrb|lTxX-5%Dϖ?sӫ}7Wg'Gboggc6?<OK)BgGB{}?fSYbj;"c(3 /E \(3VT" a>g"ĸ%Ϳm淑 -ƆkBG_HqOMIf,>I{z!bK0i>EF|@CK!?ß3 gjtu/_V[@[cm G㣍?_\tVl6q̴]I;b"wlڴHiS'Oǹ?x~}wW'cgN)s ܷͣ2􁾽>Bۥ/ 6O 2R/GЏMu?9sN+L02b=~Ӎ-W[K}⢾VԠg}bB_3>.&OK='Bz</}'?,l5~ޠW5+@'@3~?$GEƳY9yj:j|Z]=-b}g5eo+侩XZr\Y_nyٻ3RSb"B!KUϓ?eF "s[_oOw7gry~ܷoGo G;]=||dϜ;Q3O:iX$JJ)/B͇Zf귑j -}*}!@0?6: -Ƈ >' {a^1KѼY jb1z׀q迌~=,>ܯǧ[iI16Z >N=ٙ黒UoFr>M{r/kdp@Kvvm}+L}e~#̿1_O;ZꃉkW/Cs8AA>ė/&큽gBxhHyA'?NsgO]O#a??˿j5ÿiKжv?!7 دJZߑߵؿ߼ɹ/ܿ|TUQ▟=r_~qD_eϚ[qGЯOݐn.G:f?6mc~;}sv@D`prvu={?pАnj8e~s.VgN KJ+La>BCͿ߬oV7L}SeyYIqQaD~2˦ ֮Y' E3D^0/迧K3GΛ;~A:t_~Xqs68Lt/(\Yye7[Yk}}~-7DQ_h(/57r#Wr?s?^wsߠܟ:e1~Ç4?r{W_/wWg'r_ܷ{Y=ImN?uyp|bT01m]oEQ[VihMhVc\"ײ˲. Uqy 5igę}3E}C#BRbck7B/08,":.B>G/^^Y]S[ vg eH?nQd}> -G tBdP >e=YOs39d$6$ !ô -`A). ;qXU5 RZ>/\O}}=tSWe҆:pW !w3-??=-9!.:",8徝D,! cA3}2?F"@Jb?C?($<*&>1B?k z! ?qEAu MrEKkJ/Ûυ3jP]J֖ƺe?;rߺ/X9}aϨgssIJio{<ɶ-П_&ϯudjzEuM]cSsK+]?}bx!:ԔƆ[7!]/& VageB'Dzy9c6+ 3Sٟ`@ױ:ZB_CCBXlbjniemkO>B/ 84":6!95B?;7B-BqI)Me[B̧{wOP}J\)2i7ʮ\Kpߞߒ6_ K=bIO39h(H6k?) -h@#~_]nFto?'r_܍ʛ2^{|ٷG?+W:;TJELXrt߼s?7{~jRBltDhpӧ Z[Y CǾny?B__BHlbfa)4yʴ]=|C"cS221WPB("A} C]F?~>K>J1[[M 5UJ5w;úPrA|?#gԓ{x!;;mʖfY&K/Y]M`Ԥب _/7g9S&CH,L"cd}?L Ӡohd,215c;8{ED%$C/\B H0LWVS+!;:nc}}dkQKGWȥ 7+o]tܙS }{@m[6_K@/Ȝ#=hs39ys_6x !A?OJf-FW۸6<.\RvfmTb#|͎^qH}} wuv[ -rz߲r?gi qa~ޞ.N3O}ط075jaGctG+oc 7Jc&f@)f̲wtv - OL d)wڍ`pЯkhl7ԝwE3>  ",pf_SU~_~cGЇ[f3!=pOFywǃf)['Q~?=cr?v[}>skU5,\?K: -ᄊ׸z/w~/߅;˗.ɂOI  puv5cڔɓl%f&b`?gc XǾn O}}} -o!"f" s]<}B#bRc\퇡>/oʚʶvuGg7>o>/dhb|CjmK1=}àcMʼe$h$=!/NҸqih`!~ @ (h~.s?z/KbK-*o<~מrc=srs2BÍS[2/7r?=5)!6*<4(qӁ_NXZE2O7V:u}>}=} ʚG/08,2:.19-#3B`{b ->пBu>ڀA` >zx~&/8F$QQGҫ{ EPHPAP)4 FF{SjVƙ59(O'a{?w~oT])+)LOI??b;T>D>GDzO}~SfVYryC]-/$sz}_oMN6VF4TB<܈ff!+9~>U\<|B"k֮SPRQܨghlfame|KB?,<2~l?1)eQ`?~[Z*Ude&%@oߊwqrDc|=Y'S3}WGř(Z8ib4LߠNƒ_r?7;3#~dxXh_o`kmaflQSMEIAr_ZR\TDHŋqV0gW}}.n^>Aa1 )-}CsK;G^>p拊K@_8=q跣CȮП?"0PltxՋ&Կt0ٴqp}twmD;Z[YH{d=-=<-<\6B_K.7B_@HXT\BjzyE5 ںFVNp}'@p(ɩ/_͌`86FNᡗݝm-$/)L?W&gdF#Dz"~];z{or2752ޠ(^Vf(f_|R/8scC/&/[苈KJSPRQܨghlfamr>CL٬ %8oM./ 3?7}G, ok~WGkܿs~nVFjҩa{-]]&F|- >xeȬg5!0V@#Q#1}GgWwO - >q*)5#+~ՍwqlrrMWU\.+Pu6L)CK+|k Sc=퍚j*J -}iIqQa!~^n`>9}|G>}.n>~A!1 @:9eUuM-}C3K{G7/m~;w;v< -ss  -6?A$#Y z1~yp[+K!ϥ%9~p֣зBA|U=[Og0OOI.G9~Dojqcut}SsKk[S~G%$/-~ǻ~7QQNy}G 1k _sbQ~s)8;zwmhgcifb n`_LDHk8sc/+Wqq  -IH]/A[֞;v :sT"~fv^aqI努B>mg13M?'Fݝm- O~}x7OI -?r0RWɹ#r}Jƹ /;3ɘA{w{[+s#}] ʊ}) 1aA>^nU4K>g 0+}^~!aQqFm=vή=>_tJ嵛Яǡ߁B>2?'<3c#C/{;ښ?}ޝO8zh^=>\x ScC}d>T>{= vw蓌ؿ\yνGOj:{_Cٻ('p͐(k yJY酢,بCVF 5E2$E1<\VXG!9s9/`gAC苈KJYNNAIU]#D6ȱȘS32s K.]Zu;w?_<=~}EE?suT@2HAYA$I9gA s9H2(QtFUuvD}SW!"Cj>&  -_96-ܿrP[]QZ\ r?JlTxhp3xsr჊{H mssr`v }*>2s9g> +;7/nq=2]WFw] ̜’J~ױП 0߼B##  3w'o ;Zj*J -r2Rb#Ax8ZhiW:r>||a>aO<p +?=@H?ʏKJIߏ?8 -:F6.0#cR2r -J*jZ:Ƚc7'f_3ߘ}ܟD?24r~a^NfZrB\tDXHP6Q"\luk1WC d9KЧu;'V?-nCG+R:w?08~JzVnAQiE -}chˡψ/>(f޾u}t8?;=)>:H}7';+sc]- 5 - $ġ|(>rYOux\MaP$.|`CH~?t_Ld_ ]c3+;'£ҳ˫;{Fߺ}wfn/?}!oDiJ_O&4VUf$D^docif|^Yxg$8 ?yyXY62g,l}n$+<|섊O@PHXD4 涎NC#c0')OW3{sw#WImMuUeEyqQa`XTWUV:/&/Ob=yzY C [w~{q5 M,P_KL+*kj#u_ߙw ^}Fi$y%?r0/;#5 -@O7g[+sCSWU9~E9Ypۅx8p3g!R_ۼEhȎbK~3ںFv.^~.^_TR^USF" eB`>R/_<{ßߛ3q`_0'#%!&"43UcAqCDd>$ǴǥSFl!|N\@#~v؉O?3gu `{F$dV6Gݜ3={}K3+rmjwIm-5U%E9i0/_ - -rwq052T?}ı#ۻVdf>nNMl 0}f)C询BOA>pA٩9{NQ`phxT앤Ԍ܂Ҋچή<'VwQ7S7Ɔ{- 5%!~05?|vP|={K_Obh_| )s m;b70$<:>9=;8}Sy?/r֦ܬtQ=\m,͌pJY;wlڲ -qL")_M@/ Utnq)i9paשih[:8yED%$eU56u{)?BzvB̧Wϑ 3S7ƆzYiqQa>0UUTF2ǸǭW:Y_T)C101eOžO@pXT\bZV~qyu}s;w`hRWN%/-rXWSYVR r?!.:",$P_GKC|P@b.ȾbcZ*3_FM\<|8bR{eªSU502stq xrdL|bJzVN~QiyUm}SK;o-S(|)`w'ǯt5Ue&F^vs4 RRamYGC1/Boŋ?f??xs^Ҳb_ľЈ؄̼ΞQ?hnܟ Ձ2(?'+=%1>&rHPٯ(49F{ADކAzC:Cw*]z )bMvHN}wf`7{y}G ^.wKΟ=suY(E>3=gΝxʵ}t\Bb4 M-m\=}Aaq)YEĪGcO@!?!g=$!+ˊr3S xJ}q!~ܨ]̇C)ܯ[0ef_o@9@ƾLNH-*DO>}_"wYGÃ}=]͍u5UҢܬĸhBh n@aA2E߸qF0g -п Ч=n^!Ptr*X'/ 8,2&>)5#;DxB%Je v vlTlLnoi,-H -vw27PQEM]mXt!|gȇ~ ?sW32sr -O-,mhi&GƐWV?6^.̿db> /;#5)>:",8`cinb(' /x oi::d9 `ٿ> S`/\Nn> 9y%U `HxTlBrZfN~aIye̓}d'A?79oBQiqnfzjblկ(-IO rs45Ū)KKs}d> >[xð8nAϜE_܁(԰n^~aQq95P>Pn]w?ܟ}N}r_wgæՕ%y9iI1!>^VF:Xu%yIq7|:qc}L0B,I>m98y1R -ʪZf]=}AĔ܂RbUM]csk{Wi`ph?ό~ {WXR`cab(+EI}v6?FMo6Оf:~?uAUT10o]PRQSG[\>Pm=)쯾yMgߣ t67TK Q }3c]- U%yY)qQ v6[7A@"/>s6 =_Сp#hп/(,*!-ghbnic KL+(.oji'ON=Frc?:<ԯ&g%Fx[[kk(Hb@߽:Q;v%>o=65~'rMjcD%eT4-\<}B#bҲKHG*(>"z;Zk*ʊ rS#‚|=\m,M 5Քd%Dy@c%I@>s>:t п}.(9~!a1Ii9Eu,@ -/,)~pɩA-,.Z~vg{;[ꪉY1 2w}Nn^!qIy%U P(!*6!9-3'XUSC?̋+oV~O?_^Cܝ,͌tjJrR‚\Gwq_Sȧ[q՞f۟H~\bWPX\JNI kdfebS;o?_0bROW{ksc]M%(?'3-9!6`keajH rowz"ofK&l@S_f|q)Y}k;'Wo_|PXDt\bJzVnAqYEUm}SK[Gwo?yhٹmBBSR -Mvw45Ū*Jax8ﲱRS3}T?'F?"<~.\zoXr`ĤdUfvN8`BtBj&Pj{rݦܟ}> stdLhki"f$EB.v͌ t4TeE0|ܜ4N>ŗCFO/gecĈJH*(ij[;z~}FEyf$kv +RAAE * #U@z  ҤKw 3''j}g&FfMr2b‚HcFT>C|.3~>[`:=(!#76hfsrB_J(Is@_OW{kSCmuEYqa䄸А@OW[vV('> '#(_!쯙쯨+ -8@_#{(}Kmw/߀a1)i9E%5umݽ# qx$iBB 3Bwtuꛚik(JK@Rf+sLy3_ ȮG^!Ҳ -*z&fX;GW/?~ -QϬ2M$q GG{:ښj*Js2R#zvvƀ#jʊraUc;+le= oFCG_R#7#[_1= +%~`8exɛ7m>J|yB~Q Qm]{G:T9sEϕ}܇#?;CISDݝm-M5U%O -r!1z8`-]`r#:j*i&o ,>7  -WRQ?vή~!Q -K+kZۻzFF8D1]|.bp>۾؇'@ugV+Os'or>yzjǽ@lomj(-.{a҃ب;~N7o3TWQG_0e!aq ɩY9E%e5um]#'I4Jc }Cs~yڿt#Y_@WSH߳ 1=30_u^/_TL -#x_qy>ܧQ)ӤI"7>ltdx0?'+=59!.:<4$ Mϝ1:qL_*`_FR ~m[6󭲿:\_;,%dU568~WYXY;v [PTR^US?[LKh>D[?-s/j/'9]y껾 @}n7~,9Å~}}ʀ!T7?xIՀǙ{AS3s -xssp?CISDζ쌴ĸ舰A>n,78|HKCUIAVF -/Ɂyoۼ{/D.X{'w/;G&_/ێ6XkW.?k|8`_[CUYANFJ>ؘ`e61_J%OPXSTV=ri ̮[޴uprWX\VQ]?8<2llGB -CC=%~a;'I=IP}>2K۶ f>gό}4uA}3sT?8 [XRY }>>A$/uY܇#?KRIDA NM)4>jk4/e`]_, ?| ԯ,-Lf&F# w .M77kk3O}um=C#S3 T?*>)-+QQԧ;kmp9b334 -4E$Lhkn,+.JOMN - puvy)Ct _v[ i__Q{gquz(t؅"Hw-9̀{Z=}gaQ|éOTJm_ѹO-@wҨOR_JFNAU omNH-*@QI}8^_/'{cGsĢQ񱑡ƺ~b\tDHKKS#=-uE'}W/gaߞ.6o>?QKBY!/"vYT5 ͬl\=}B#b!ťUM-mݽ}$ -Ч?3߫ _k}0޾0(MuUeEy 1A.@}}-U9)tR;*BfV?u/ ՗ST72{$fAZ;iՇrR}2<A!'Fhki(-*JOx:ZikBK/_d?w>,Ojt~`8F<}&o}.~AJ=|$LIUSG7 8,2&>)5#;$!tCJR3AU8)cQc=m$Rcƒ<]l̍d$oN8 -g&X]`ģO ;(ꃵ 9~ݒ| TQMoW\^]30<@a)X!>_MV>e I 91> -loij(+.HM ts276PUz&`_D  -| {?oc7C/c'\B"/^E_AYMS  k;gw/߀؄̜’ʚq -Ceϰkh#]mYi^6ϵՔ>{ڥ<$Y2Ueć>H>,D9ywy+s:!Ob(@_OW{ksC]ueYIa`?9!6*,8䅾2`ۀEX#w6niwC(@;<~ -}ndja//*)oli ?@a8@Dc'qiЧAECq> -1s4[h$Q҂@wV*Ϟ<ƕ |\@}ٽk۶jK46@t0=;w`>zYv.>!(hZt O),mhGbH]G/_>d2I, P[]QZ\OMx:Xi(ʓٿzYwهa-_I!뱓D7$$KCU5 ͭl<}"IUV54vtG(>,3١OEes~[+@4~hmf$Dz8[TUsE1!>n>t4/[`k#D0? /$vMI)9U-f.A )P֎ >a|߾UU[)1CaG!Fz[+ˊ 31a>nNVfƆzOdKJ܀ qs?|m0?Bs -]LIUCG7 8<*6!9-3' ?8<26Da8D50O;}{ا}àw6Ue&Ƅy28]?}i,59~Gksc]MeyIa~޳ɀ@?OW'{K3c}/G?q >}=w<Ҳo)QQ506?(,2_TZ^U[ DcgHWުP#>51:4T_]^\`cnzGU)qQ|L t4Tg3 CT4 LNpp?+"&!uUM=c W/'m]@ vEu|}g;oǷL>) zr|ldh~R|LDh}+3cM5;}3|ߕo3X>Z&V^"ced<Q\ZQ]Ҏ?Bcff@/'}d4U#3!C6 J4=1:<\_SQ"7IJblD} }-5eW$ rq8tRoX}$ w蟰(i2yp Ee5m}K[G7oؤ%5 ]ch(p"p_3kA8y_C#~57;3EONloi?HKyᾕuYi}}N}Z{]B^\F_o@px@?\~YEu]Csk{WOQyE}b#巆qqԟBO u4Ve&E;Zh߽}Μ>v0[ʃdfΫwBd)9Lw8IB/^v붊O@hdԌ煥 -}@I7}mj-as<> -?r2 Qa^.&Z싊 -rsr챿ޖgá/п$%-{C6@_[70$<*.~~aIYeM]csk2( @ eWk歅`qv>frlewGkcmUYgG>p63PQdgead%%'Wۭ>!ꓐԧc`dae/*kl92>7oũyGMB>>4hmn,+.~$QblTxH`_<{η9)#//s F_C[/0$":.1qz<~yeM}cK[GWo@B}0h}x ­wp; g}=?;A{:[ˋs2ӒÃ|=]l̍4U(\*%!&rljcL Tfda. SV>-Qc'8xE$PPV3qp -IHN)(.kjGagA5wL;w}HNOaГ~~[sc}Mey `Yf:`?.:<$PO[b5)}!>'m} -}>+9rG+Oq"qܧpIMŻj&Nn!I)Y/J*jۺzF'PXXw+)78?bG$:oU _!쏍{;ZkK -#B|<\l,M5T?'$>=aj*=oK32Csп72wr -ed<WT64^Q0|%(ףU񛃕_ZV_z_?؇nnjoi,-NOM qw25QW}KNEQa>NvVF:8bc6> >94t ,<|¢2rT4t ͬ=|BfdV6w B{.\HD'4 csGri ff~vf -FM k*JDx:Xpg3 tc1gJ?lՌ[k39 0( -dAr9 (H49N4(Q݇{o,Pyjnu9?I\B -A_E]K_`Hxt~fN^a @X -"4:@ }6`qJ ;:wlô;>V}O@)Ã}ݝMJBq~vzjR|Lx} EE :oϮ[h9K`~q3X]{8sO@e wU4Z:zGG}3͟c[cq7GrOQ$~owg{ksC0/'3=-8~CK3Z*} }~>`\qTԵuY9{FD%$=/*!TT1H}>z }|p߲ ~^.pvz -4P[U^R*-9!62񑵙m9I"gN<~ޱa~Jom޲mz񓧅_rMFw@HdlBW9%U ]=C$(鷨Y=wo{rcI Q|!~.v6ftU R:? ?ɂ<@_C[/(4" D?#+7PY] osKBѓcz?> 0g&ǁT@oW{Kc]uEian˔ĸ@wg -7e]8+xoy[Sk <{A쪔-{:6aQO-,kli"#ONͬ1gMce[hz>B!]mJBi`?'A~.6Vf*J -8%lQez}[{'WH&E5M-a262:s϶KC|Ӝяϸ옠_ -U=1:<n>S)a]REo@/.LMNx:AM tPeE?/vEghbam' 8,*C?O"Sitp?."賚,j>rr 'XY\_uNO3{[kK -r^HI - qwha~Oub -:o휱-WrLl1>s%R汳o`XԓĔյ-]C$鷈џC3~c8[?O}ȓciT2 د*/+.~ُ ?671+C%DQyLb<po#C=vv GOKuC$ -u>r{0yrȽAἁ|BGnwmSfjrOhm(-J,>:<@WSK_9sXfo;v2b.mUHm;w#ia2rjZ=rp OJM+*kj&Sc'f0?0_Dc6e7s9wP! uĪB&QnNY[@5U!W*E&@_ ojYJZzf@PQMg?̉,RV~g1|ckD''ތiζzb%8?;#-ilD򝛲H @bKoDTeBS3g>|Bg/]od; $26!9-#;PElhn$Qh7E^ WM}w7pObDzs,ķ]<|β?B7+J -r2RAC|ܜ!:jʊq@}}gw/hE%Z~[GWO@Ln{mG%;s\7QtG~aw6Շ#6\ٯ(4eʘTrHXeĸ'f40EEP " " -t; -H2󝯿n2:xT/ 7‚|^UyqANfjb\t WlϜ2;rpﮝ۾ߴ5+`6XN)=Ϥ4@SѲ(li#OYٝsrv[PR^%2E#t -0]Яi>-kaVwpokƆzT,"`?#59/@;Aobo o9v57'1~F/`}NFng'%s>B?_ǽp}pmW%"AmuEIa^Vzr|LdX݀[^n.?kmyF?׮ZƾuXV}qR9IFI˟Ϟ|7^HXdL|rzv^aiEumH*GC'J@곩Zs'&Z\~A?b K% Ey'!}oľ=adOgy'DOIW -R5C_|Xho|BQ~ -ǸVם}>f,UksSCL"K -r3Ӓ#Bthgmqd_Bb:}]}-UFcBO ].TH}6nۍv79z㥫nn}[PR^%zHV|W8A}% kc>=A|c s jj _[i)A}ľI3ľ1e7 -̀BߔЏz -ť}ƫhT|o= >sMވr\>߆?IW#']LÂZD¼OBricFϙ9CuG렭R{:&}>L6l~]{63?cpˍ~w=|iBJzv^QiEumH*WmUubhlY{At1$Y5r>e_,-!0BAmMUEiqa^_oO7g\ G@_oonim@A? Rҳr }dHG-37ͽAbd2T~R)Or0>GXgmʆz_SYV(8霝qӟkžON?r!Iv31=aamtvP̜P,oP6e-ߚ|L!3`q#&a9e~% eŅ9Ө0ľ;aooaM}Fz#j/9_ fO >NBϬnfX|"X,R?ȏgGGb'?<5ٿهZaB07+-)>&2_/k|ClYl ZPg3w{aS LSҝ7M RkKSi ]o޹WXR^$2 -}@s l|;O¹'uzSB(чR/RKx``鼃h74qw:o`?E"@ǯr@ݸ -փ -}|ZsCcC u'bavr~#}~GG#GmijTȥҢ쌔O?q9[S(w_pɗϟ;`uIM3v(?%͘Sul_?naew~TlbJFN~~mR]74,k~7Ml>BcۃI%~;i!z}O<r`ϫRbskl?=z@ÅKWYGFDzWb%}b,-~+K]|$@khu}m{owzlb! 73-).:"b'w_f l֧ӧM2y.wza[{?ANi' f}?-\|y6 [S_(fF}6O}nۚA/CW(b!:@N{(>=~e_"BWfe #w|'cF}^7|GԌ52u*!yx<Cwg|cU"4}HVZľfAofjå(̜? :i.3d_cQZD]-NTiΜ3oXMLOĩ_TZQ]['bR_?7Ī?_G}6Ybg\!sGH9gяypL,Lj}_AU^g'm:֚X8( D\"₂(5AE 5FF; \6bD]9y{/\Ŕ|Û9C؏ܽckDxXHp[ /ժ Y*Џ3"%bIװfYUwYjB.+*?トg*at2 rc?/;#%iABϝ5yh#C}=UXwaU@S~.чab!%=}OMXZێs삩>$_TZ^YAܯrH}8R+V2#&>{R;UIJ_Rrٿx?)'kwE]DC'{ _WުQ w(Y]E0 }5e#{V.#v"O^>hoojPTˊ r3am?a[lƚ2#cVT}vU{|,1y %(?qT7wO/kù?+n$$eU5u m peԇ}f 0< !AfPG$5c[nG#Eٿűʲ̩~K@ߟA, }9A%ug/:}¦=Q -}||XҒb<D~9ulǾ(#Bʽu%y2w!4r)Ց!޸/5_%afida&8L9{B_B֓ߏMS6y&QP_ussXAL"L `>. %=}ZF4pEȇ[~Q~nV=~PphF1W^KD JdFv.5G+1l0F1ɪ - "GaHhQqTǾ6\hxp~c?b?^E]5mVz#ɪ T;U/%шz~j:q/%˂V ؾ+2*I_p3-R R_r^t8 dIA9?P~}q5Aa~~=a_γw*aS1ǐm ]?r@?g/!ɩـ~)~=CԆ>ș -ؓ1ܹ~rbY62&c1sо=;>ߴ>d ͞93v6cL }+ξߓQ?Y742maec7~Ϧ{^typ[wLԿU[x~;\L/G[w]$nA50=@BDzH?$c4ۙ-Ae%E~"Eư ksF2&=A?M>*3QLF BZ03/$d'''+(-lk1hYؿ~$Oܵ}K5A˖,Z0w WƑ]53e@VUW r_侺)X?70263Qr2m \n#@{5U3I;LRc($b|0'Bܯh> -{,,c/3RKi 7?X ׎p[qcQ L8r0r[6 ]8othv6VMaUF?>}6{|R1o?~┩={/^|UHئϿس!ESZQ߇R_x5AT@Z4HQQHOa$'! I -E>0췱V!y<}d~Q[7dзsbqy%C_`eg -NQ/i+ ?OINɞT݇ܧp)/>A|;|˝"׮ZdтfLsq`g3b2BI rgKI~@FIΒD'i3g]hɲkօGl_ԏOJUN}E|i$N[IgTf ~b}}> -dkTO#*dRO";Uo+]+I9uRXO;r+ 0> -س -9c>YII pObRM-;؇]Ăº*}"|rؿroN=u~>^s<\';#f>**|:I( zG  ]\a|VnؼuƨM{Y{ ΫgX'BBE29!OpFQ 265j?10K,=g)o2`6EU}.Ob/WFc5k8-0OT~U\Fi'&Srriw*!Z1(".bCU']g:ka!+}tw:e8[kKs3c#Gw#K4g?א)g2)!ߥ}%;ె~W=qQyY EF?'Eg/)pO}]TkmiBښ -43upWF./(]oJIioTcۺ3KstڔXEcھy_^8πUuƪUus_>;%/7'ߓBhBb^>KZ~Ӗ -KJ yE3m^(bo{g_N5o*$+gC#lN 6!9ngT}BO"~VRd؉~)d/})Zϩ^?ϧ3̐⧧iFѦY\}d -Kx[L)9c%=lkBLT؉D[dBXY6uqWeo}*3_4Jfǻ,Bo__}q]{=…u1^Kqʫ"T@B߈ӨqyF(kJF ,o6@n؇4akɫ_ɳ?Kp)=xwxy{H.CJD+C?0Kxin? / -ƶeEh~Akԩ))줤~p+٧EcXR -?[ڕ}Xׂ߻O_ȡ?П4e,wKA?sHeJg*>UQcpJA_ ~¾,!Bj8YzGuj*L$fcwZ˔?md -I}~k?}m/Q;o 6Пg~-l~D#†Š]ˊ[21?Y'11)I k` ~iY9YVߛҡۊ;,/CRVW.-Ц$*O;o-֯Y`Lӻ*w_2zD?cOl`IJr k ctMO -է1 -ykgF:H -fFp*,+Aͭp#QK;)e2c_c:K]8dwc;â:qDMTך웠/T -)PU0Ua b, `~v V, JIhu>UM91*rtv%hʳUe&c>]J -;q]7oBZ1؟8ᯌO!PIss_ - ?]d3߫ҀAC`֬ߴe} W$$s2L/]uԷ>L&% %K}R $ Qc@ØLӘ'~ W]r r_` ?7'KT vf Nj#Nﴇ>RG m}F(4f+ѷgVa[-,S./1_JcchB}5~]NX3`n߹g?wku5Ey]ZjR22{vnU9g̩EІ 2h`~B/_ |BB~2t~O||ָq]{=W2 y0H5u0Gxke8§6RXTU -תAp c`$ʘXDU2}feeO\#J~E3*aڤd?7Gƾ}*}wɾw gCE]8 藵tT_'PQчЇajЯ/)2IW,!ďVDEFFЉRqIɩ4`?h**-؇´ܢ >16UǪo3aQ7]``[+OdehS`W#BV50כ؟!ч'}}9VNW3yЇ;c0]ɀ^޾v9p8RRV_TzE#|%m+q^K wro`ՕHh&2#MCGbQgFtrl9,\JtOO⟹}`$7c] Bdb}G:-A6|#GѢM{oǏ{)$U+*D$JY19UIaȈАаOφ%؇N}1e?|$a*JLl=jB"1X[6]{Οe0.+}rt ~~&\᯺ gFBSB%~k7,}ppH"F)CcIWb~Q?vԷ>{%>N%~Yi GguՕfIM]  -7@\\h5Z:%XЬ @v* wAt(25sι{ 8@JB??I$8c"_~V`tG~7ˇ%48Iχ~0g"f o͜>u -Mbu1GG<:&L딩ӡ!s/CS*Ĵà^JE\iI0aɉZh:*(:g -K+/bٯobƌ[Ӆô10Օgs2S50 -?y/>m}Uk%f 晚ϙm8KWu}_(?_=g2$hfa~-۶.LB$9STZ^YS{nakTT}!!bڿ@(/-.Hf-;"XDH}y݇ ^>c酔~EN?%/ױ_ޟ RǏ?g _џ@7Xl9GíC_.,G BO.(TBE(egi$?*2B'<\DC(K -0h>l"b JJ>}%D#!T_{a?>& QٟїW_C ?яO` #NhkKXkT|a!!tBBBx YiRVoI%dTjJ\:_V\ >66+`V/a-Mp>//;$>̟ 5C761;"oA@W ,dda>`gWS,E#^-Rs}A!g^K݆۸}y٧}I&B!!XEH"~5whԯ>-A?٧,9e?VG  &M: 74o{HяφЧxrBJSчNulqA~nVf:3?:*R - T RQ\_~vCS3|:R_ K*/->{:6>:"TqhoreK,͡}___w_Y'EXW;EO2," 0z QSP_| -J"D`~RG ~dbrJT@Kʄه -.~c32kˎuEw;$ׯq[ [Z`0627m?CC 3 Kg+֬A%8zL&/~9TRn^ -EBEyl$6^a!A?: p_FS3Xٿt~|sK+|{QeJ`7>L3*clQ~NfZ6Nyؑ0w9ìZ[-0uP~Q~agE xG?8?rӞJ,mb6},^D}~ljjH2F cQ@._ -*gfIk7nݾɄA'k_ }x҈0>di#oj2(<)f$M }+F}0B5_; B6iZHD>sTo\e -~!$mW*9T^ͺzN_R1{(P%e LW.g -3S5jUH`'[?`ú5WX[-]|!sfK#o'`39 sx7_djÚu>h+l -Pi2)K (eP?#]UVl:_VR}9E@?DEc" +Cu+hX/^z~&NX}{d}g>؏F}2.Mbgjy3M#y?N@7%'JПGӖmqP }wя.?q6&G˵5*!0[r/Oϓ'OO/M鱗_vV}cW Q@e_p1:٬b4yI(UH>Ubfնіoj򶱑>~?'$>5_4m]_;w1J>*u&953;Dx!J }\C~񪯯\}\ ߼g&kcՑXz˽ ^^F`(mRJ*/}y-'G>(CTNk0kDȾwsuqoF!I7O'1GC}; -'GcdD>o>o賿\cf D,ExL27Чd&n8Tݤ跷^nj))qW#+5=#>K>1>PGWߐk-,m7#^8KJgfO>D^03Ix?O>P~M`g9tcЏa.äPI)Ȏx?d&_xٲJܮ6`:5?P槱Ύ=Sڱe_ƲA!ob%e1e?pU̲-ԧ迫@O5)} I)i,e֗?~f(;wt!M G  CD"!(D* FK;Wp Xs;UtSi -v>~F~/_w#>!|`>Uk֭r-ή~RhDT>^J˙KW'0F'jn7q[vAR,Oߟ`FC!%P#;#ebȊ;xJgWwٰA>x8z؇#e?'된9z9;~ɆePOgaahߞ`-GϢklǟvPVE X#]@'xBy) %lVp¤H,~aWR2c'eg΁60UN쳱cCtU{A)U pu`os)obldkjPg'33|*>S| M4_͇7wF;{m.n~=@d0ji=fSgHP>&`DoߺAo(+)*;oo"3`MC9"\I#' JΝohΰ_C\{>ha}1;/dONJQJ_ne}-i -ߟ`砯3/^lu []=|8ad#P$;VYSpҪ;~f}.s7߬`]Ғ`BE|Ǜogqa{쿁3F܏?M(l_uВ*7A S0$wC4TVA:q,k -k(4_$n`@H؏O@p3s -J*[oQSlLOHA <=W;.e?q'T, r||{6zk|8ã *Dwo~C/+˘JNRM>&7(_(bY9e%k/%M>,ރM`Ә+`wE#owWv6Vr|C %1KF]Y -= XW]Y^zXVweba>W]ƇO'&y^._o/#jG~l`5|]=|3y;lsqu񅒰h&A.\W{g}`FQOTz|{/\8Z > lt`ryxEbwO?|$;$Y }MgKZk;8mw<c ~kBHS8+m-MkҒ"-7;0Ȇ#B*>^^?Ϙ?) 2@7Yɪ!&t_>DID?oN[I[YZ[#w ~_AQgMD5(UP. , -}((܂ B`Z'b-5ͺ7n;:I|Bqڊ@+W7nv拾ęƆ6905Tχ_ %1R=gY˙N&;|>3Y9*jM s7اaH*oZ#_BWS~{t۷mH/TSY̱??a֘?SCDij37nFmn;@?@K."׾lUwX>y<M .ܙK'<48wu;9:DD"G';-?ZG'RtR+M-Mnvsĩ?I8 @@g?!x05|w89 (6oBKY#RyHz\7_*>#3_{r2_ߴȘB_`7 xwDq~P߾C,C>w@hƺ%y9iTȇ{с#%;%PHX ؞4Ҳ* pa,6 _Or%nbdl`S&O?;Xã?i3fhO/\^onno2dWqw&E{w8ۀ*: -f"jqRC}Z:åⲵ9:9ؚ'Sҳ˔^rSnσl~=6. bRi(6vyzR-wl܇]?ɿPiGr#,uVro31aɧw77$ (T-9U}cX~HBߨ@CPY\E [풞NO;[gMFQP}Rh+k𾵴_Bgw__[Ϧ/s`dDhU,Z[kV,PS^4?cQW"6o51Įo_@?ЏM:ЯjG># m-Z] B -̴,Y -}.V9@|5-W˃6$e/,)?[lq 4>~q!=>^}5\Zիt1 ~H?k=/]Z|s >ǔO$ =OXŲX{e45\*Pt0k%şfO{NY?rјXܣsq/76.ubwGv}ܿ{k89&{I\DBV }- UEgΘ6ubm. SC%_h*c Ig@=/σ,{?&ߕڂ&pq.7ys -}?ܥ -<-Gݰ7D9W76ddU7U})F}oo݂׃_Ck1UU~X~UTZDJ|5k ͷ lE,񽕁 SaO0ROFZ\Tz>lVzJbcz;mHp@y<>N!F]B$}N>ζ &D=d۪ا[89cap  pu-L}U+}u%R?RGc1291ks}hֲV_YN.^!xb@_?^U/W̲YnNVӧd w ͷyV;hYXXZB{,N]B?}P+j@vPV }ThDa!:al ֭kjȿlG&ϑJO:ͷV̅~H؞}LHr1<#T{o(^d%:q=vB0MK*q -TܨyEep`ڤýf49+˱(]B|<\}c#ϖ2?7c`)'M$qwFk|OOAg! -QQ\Jddlj;xx{}02%=l\TB}߼x8Anvb675(+-2} PGLi[X6?hwľCG%pW5^km]ak }0|$3rS8)<,%n.N}pp#? -_[ WG?Z -$>eF~vԺIЗKجsKgcoYzg7_,+)L=HA{㦋h񀚛27߁Ӛ+P}b9V>ݼ ˾abóT@'Ɵoh'YoıddL)ΥXB  9a{`'XgC?}4O<~OC󵡮&"8|ɉ1bN̮0W^3UqfF}_'t4t4*K˾* ( ** - - - -c2fʸMYNV*V,SɏnQgtNyI<=[R1HalTJ5{JZb6(42&>)5}[.>񖶎T싷IۏnÌ}}hGFi;z -Lbj /[d??̣M)zݑ_AB7JY}f)ksԯ,-B4޺eبp¦ УJӖq?*&~u y-ɿg;'}|*Gh.7{ƴ"#G :d[o@? H!oߵWerĄfz,4S_ij,Yb"}prTbmUX?6j=I[25M,XeuCG6v]d>gzE`J -h}*Jfٟ;kTq 4 Z_G}=EgcSgїYlVz G; Kʪף7?GƝo߼C\Wg{k ō5}FX*%Ȱ` -.΂_ -KLf'->WWeﭩk8??'>qTsц5Օe|QMU)hVfRoR/^ďK8+|OVkuF 0}!a GO8km,鿼^=ϣEկس{gԤ舐@D}+5({Lx0=ƃ~Phex}'Œqؿ<E1ݜbpG.20a`V\ _cF>lD߆^_ >rG¤g͝e+M2WD<&oB*.h;~ ßc}~ _3:Oji:J0[ɯ$ֈ -}Ev*]fR *=f -#@L~AN=^sG?ƾAhU}TZ\3RRB\tTxhzrc p$FF+WX-eг/_!/H,d"v.ˋ_xYX\ZNBp=r -_ꇾn\wu?R_[]@f$Q,C_`"9= *?P:C±+>cUϣ<:O_!uホG/>] jU lRa!ϙ5}$Q"|[G?A#L5G@BT;v'âb7oQP\Vojik?ѿpBwWqH=z` -WnS"2kxH` Q||Ĕ= V*ak`HD4+#;UߗOc҅sg p]- -mʥnJL4p~b(]J&o~066cʐV|[; ̏MHܔЊֺÍNw_G_-(P*F2Q -MX*:V"^>8,2:'RZp!aYnǑt(W`KgCH},-.ȧG}/NjxE ϙ9}ʤ _}1Onj1|Xױ[w}PB}?sμ0ZXZ휀㺀@I@o%p/G:suC37]ٙH#ÂXZ?NfR*# ITwrq[R3vU?H귿4ϟ:vƆzIU{0sQ-)ɉ@ZoOw7WFm"-M|lU3U|W7wOﵾ@n~|brʖlaWuA!s }ڡw0kgot _EQ_ú mO(9O!WRIvsq#8u.Kb_h7u5`,=5)^0';?oiS&~GI_7 13ha#Ff3qʴ9sKk;'C#̜Ҋ ~Gs"?f{CzıF}eִ䍱"B~k5j3dlr)%S#cS AwuoKLMھ>|P I FgґC}//'kk䍆# ;klD?ܒgj ߘ9}kVNjIY^&ѦSm,^:O?R/~OWGk:_\99>:"d-T.5.'cofѥk<}|C£b⓰3}Iؘ`cxZw%Y[gg돗wa د(-ڕD_ٗX%cNz;sg/m*v QT= % tB0HA@lly7Wƽu=sv{Āk[q }#43#}{t_fJ+沿 y>A\J -Olu5021wtq -r#T!i\ 6>:;ï{7H'GFŰ9ɩi*KEU:yS+~.N]~}iZTVRF\IwupLi4Q :N\< dH6%/XF]z}o"7^gs~ɮy]M%~y8Yu۶|iZ/G-Wک֬]q;tv;Oзstq dFsaݲBfm>w@?PqDO(}YMLP‰ -e|=|C䘙[Ѐ}[{-/*IdVSOU]iȩ.E[KcVR)*v_0D?7x`旉*%Ɩ6EWwOੑ37Uyɉ(V0R'ibvX>} F+2&. +*~Ww>A[b.G?~6ot_C}gUUjoXY1h1@_/7;kKC ݭb -#Pzd>76FV/onTbB^rmzA[( Ғb#ØA~Nv6A555'}'W7Oo@zpXD4;[P\Z.[;{&%.0JwoN#Ãp!>?+,2x9;Z:>}`CK/y}6ldϾؾszPÞ>dBAZЌ68<:[, -ι?} XOx{2dЩ7 ToVZY\NO&@?oO }U41El쨯GI-THUg?B5,Np;ۚⲒ`6zqcVM ݵsmF`*}d\_<_A _صg᣶ǜ{CXQl@?3L,64u*{} @{pS36}2bo?>VPЗKsS9 舰`zqG-|IF#@;zxqI*P=Sا#lL} 1/sl@Ie ܯ# Ņ| ~ɏ(Lg&3NćW/,淴+'NMCgnP[*I*J >?$ClGYaaa?{gI'64hx&+o_,׫PԗJ*8aJEH} -}}r Tjjw/ŠKLedEU520ʼn}._GI`~w9ݹ5s95УT5p!ady:8>GLr{-6:,E@=; EzQzg]euiR좢(EYgԙ$we&> -Q'avo>hΞ1}I/a2{Yp<'N9 ˋVm8x~ B{C3]OsyﮦeE|iVz*fL!Yʂf>tuu=ô`!bc:_ebɒ&2$`f(}6V>Q Q0h{'W56GŊS$9yX}=vp[aחN=/طP$ - ~~E L5)`c>dS|5z 2s4uqqRjFv^aQYE b߁VK)=y9FпpSX + -eI舐@?_dSdnBOkkiijjjiiS/7wv_v^3Bq/oZ!оzޡE_f=UW T^~/آOQQBa ?5-_/)+Vq, );w{٫WNz+YdqLD -S<>6UolBŝ#JLI+Rc[={/4LإgOkm9wWc}MEiQa^6ZLiU.7}}]m 36ˉ`(>ewZBS/F3nDl5 -]}C p }6}Qt(kSVי4ZtVqTyjʞyPc/ЯZ(S2%QZl9z"MM uu M#YwrEP_:T==ai[ޟ];ڏ>4} -"ş!!xH$>xx?+'*_(*d~kBDaFȐ"迵P?-Y,6˗ Yиj RiX S,3]asZaBQB2jLZancd>K^Ⱦ]8l(UH7'M>ޫ]lVG76P?nJ?%G*G_CП.2>y; g-~C] R K28Mn%i|Ɩ:+Чg; 3WӟXWC'r -J_~}m @FA?g'&&$>=OMٹ2Aia|.pNO1I>OCPWB$0C4 ysH|DE1#дs? )пyx@obKH-L.ÔW+,7wr}B#6pʋ~]{8MQv>N}u;;NAhBfÃ}ׯ͒]nF__AQeik-٧Pnh" d$(HnFAI -s$G%6QZDA "a)ajefvi;P*S%U*Gn}4؊xOǩЗW8p_i ݧDǝxJA *0yl?쏿s|d~p1~k3] qQ?OINN~$%%',$b|ͭ`~'`ɩ陗sX7+:@o#A}&7:y8t}rbid+B(i38eBs1 țq )Y~i>!) kohKٸtjbltڻy~lW/3}; =jT!w&$df ?p߄ߌB_@h}}r -p\Y9wb_zЏON+,jlntht(?5w/w3ࠀ /7v6M t!TЗ IJJ#)ICA+MWRՃ D'r<}c]%_xjbv2OПrHO"/+D7[;8]bSPKGi1_/.ROï16Njk*گ@d -,> ?/+G澆ΉL,88 دg%4~9;_ZcO#$m %y}v6fF'U7}R4qѽ1|bӆu'RwڽWT\RjCʀ(Ξt%$<[PRQ]A?26DϝaS_Oq!Я(x3&*0 gS't55T  IH4:,<74G/"Y#>| {+nue'aXpP~X99wQ7ZZsq|ĒS#G`A )=E&$ee _9Lه'GmM 5YiI+.x\8w\ped%;wl&#-|o眿qէc -;1tiYT5u!%,ϜuvxʵțX\^UǎG0M03ެF/C@DOv}M5B?'+=9!.&24(URAʪjG742w<4":6>9-_XR~??J%x4~??;3=9[kʋd7#îAy:;0kKۅ`K*7c.s1 䯒kne%f۱^=>Ir,]+FOҗ??ލJ sҒbc"B\fzVƆGU!G拊ݻWDDDO'5J34]A`B:zUlji?, -_ܟ?#oif76P#ҒS/-++GS7465 9D >O"g[x }rQ/?~O~V?* zǏi iТK}Z5cںz\ݽ|!B#o'f{u}C8ք}jIzOu>՞[ʊs2Sb"B]lO+?lᏥI?t\ZtzI "d?+g`q)U?'}vW -s>ܪoi__KDY~Ŀq_Cr3#WRki7pܽ෇h3".$q?VM -Ѡ*/wG{LB+SKCO3465] u!2:6>)%uWfVNAգ>8E81Ѯ7_e-+.@H۞ |Vx:;RUi Rb?yR3k/?ƂCgyѼGQZ[050GJKK@S`?>O|[mwHBw }!rM ZԷu4TBϘNv -YZ:GYEMšc_>2:&>1%5=B! >`=ݝZ}XgK=/Z|LT 5>^NgtT9Y) >O? >Qd@_џl%5M5]=qs\b{a?Y -c㥺-;{AHB2D`^NV̇ AU+)PzpsTSQ&쎌,Obrp1=}|i]$x#3O?A{'~C~c3?3_8FV}gF_ɨI75;-3xdg502UwprY|/0t}DtL\brj:4Z._cqddN{nkW.XqLGf)q7n \s˒Ŷpф |}i>oCYZ>lk3+[~66?7{Ϯ-"ׇ]r9|-2Ϝ.s>M~d}¾?ϱ5#>M}}Q1qIiD_ -BU mU!#7mI3؉hn%? D( DYɉq10D~} Lu穫U #OvGJJpG/7ȄGrVѓgcJO>'-,A`?TUUMLȿݎ'? '~#US?6 -f71W^N -Nur -o8m%K<!aQH؛_A/aodǰO)aZӰ?L߱mk,nlnΎ -v¾(}ac8N}}H} )%$ey:z&f6ή0Dఈحvg9PPxsj(mt~g/."Hߑ将C||@_K?Sq4Ұ8I؇ۍ<2\nC6o&T_?y}+P}tcO55?%:?||B=|/X!|:IAgY_ o#WoAݨzL*`K+I\ST4`_M-m(^ޫoܼM?WTՌۮM7_pTт9Yiۓ`pQ=>t𝓒 D㾱gXiO KaVR5+#̐\օG'mO9p܅J2>M7ڻ],o)#~kKz~)!B}/Kq@6G3_dcԟ-]fVr-ϥWVO9sM'?ΓOjk%C_ihf>GcO׍Pq<|Q?S_yrdtezt! M9:}~G唯_cZ*G(被n.(S\tW:FAsX8[RfZޞ糿?@d?.aŲ`5am-M>,UW! - r>Fdokz -C]- r??EFZRB}¾?8}D_?ILBRzhbH !+W[npru  ܹ;)%cgΕ]ZUCoy'?RDDLD?aWLdض -n,FUysaqf0#IOcoۀ3@"T˛cXw/6~.A~-:_ԡP>F~knCP/AsE~~V}wPף.;`tѝ>2m|\Y5`_tJ`  gf?QP S>} OƆoTa⦥$i:k˕Pj*s=YJRBa_TT |%&aUQ7^nnfzG-1S3*>WzFvzG E'3L./v_p";+I_Z /7 j8HcE -=#SPхQ?1Ql̫?O6^={s}O GG 59O -10Xĸ0T75PQ\f_g+ӦΑ*ihlCgAg d}q{g𨏻:;y)ո%ŧSwDo 5pTWQdo8RlOA}D_BJCL-gkphxt\}2N^V}пV@1W? + tD?.&",$wW_ -E$Їga_pf [KܒQ?8,*_ P1,>??CA#ܣC#f>>A~w~~?UPOKՇf^_J$,?a_YMطE=BB)~}_>Y߻7^}ʥ gNegeط7!.:|{&gVPkzڰK?vRbDqG8' "})\*(-341[eecgqvCG8Yt+׿Y{Z{H! w oA8'مEP_GKCMY?g6A6b $[9{sDp>'$ '?ߍ{R-L'G{υXB_P__W 5˨OwʀE%iN+?o"`_؇]nop$dawf - -a/?{G|O|lԎm~^mmVE;<}dGf>O%b%U -]( ^~vD|#r N9LMh_24]{̰ _3SА?oDPE 3gLeCf9,/XɩW? /~W ?4 ~_ y!~&?|h|*>s$|?x~=_I:ĩ`KTWVXLKWR -ٟ: Wn.g`̲7 e(y#n=tZ}slPmLKIڽ32,$wx+ t4T`ue>wR,?>D}qZP J*:88 ܶEܝv3._ 7ё^vb~z8,X7_ΡdL\H3[3i_P%Wӄ3~!P4_ ף>}>q P4I?dAGGD||ZH>/3MwW76ߨ,/-9%'FΨ/?$/_,txٻ*eþ2*h6d;)__8atz?e wnTU\.9+&"4x'uk,͗h%g#ð8#=B'}L}-QDL-֬]gkphD̮̣9y.WT465 O22~GXC ,zښJ -}Y}&ai?A-g,9ޡ:~PhdlB2~iyeuFFec3{%O6~7G)?<䳙?c,`{ϩZ[:>'Gԇ`早1Z-Se@/U}]cS3`z֑T8oG>1N _ߪVqT^vVƁ䄸Aްvk,LA-< yt}dǶ=}>Ti8786j &fl6nw߁켓E80תבyinwtv=qcp$(%J(*]t/EH!T(*%(*S; 㲵%m! mF53f:'>|$WW͗*%+Pf=Q\qa#~QPo9HSxeswd>65t ,b ~;؇ q}'&Ef|nXꕚƥgN&}r[ ͍ Q#Kxe 22?@3LȰ06 -p#ÉhYleO@Hxdtl]:r,taqIĥwǰʠߛ=nsua! t :T\_y8G6ľAhPAQt@>Kke.n"6lښ@fvO J_°\kh"YAta( }1IWRA` t 1"4)BzҘ1"{W_kh2 -bߕ UuPPsT/>~b?џo/ =(>%KQ%~]~mWUDy >'|&ܹ:j -,zƦ3No>W ;߃ON榆:\ eO"3Ci &k;_Pܳ7-# ϞtФPAЗP*C^O }/}-}D}|ތEeOCGMQ ْ@?UP\ZQUM-Qn.KFKq_,T~ڏ柄{Sb6'IK~U1A~^n.D}jʠTy1d{ [[}\a(nSRƲ^o+ :>ns۝˗++`NHۻggׅyZh{lnb47y(nI'@/yT}>ij /u\a \6*fSRrTϕW~yr-fs˝6oz|L$Dߓ N664 'p ! nXW k@w}P3?#?~ۧ{>_|L/NoԿXG//-3RY}ܜAEOڮď e-.s+!ZںF2FEnM`[wd_>wnEٿ奟9}'SSvض9&j@_/l/436T'ia_FF/2"G&M-AYU}<]cV6V{GFmߕ#rO).-/k\Qxv[{C&샔> k4$;~(EзZ̡?GUy}RmC'/@"K[Gg7ONԌlP_xKHoS}Ÿ~,_||?H2_З~_,/)E7GG"sc ,U-Ls!5=A$s{ u(q?} WwBB7߸zt#O޵=.6:2<$e3#8u檫6~@Ѥ [>Q͛%Л>4 Kk{'7a6mMHLw 3;䧅E%e %~CagՀ_~7E2"TJBD_W[KW˱y,ݗQ @QIցo 8:ћQk~ 1'g{(9 >O||^g#WS^wH ~ǽ;D+_3pz:;uP=þA t/MٿwM d./)a?|}3LpUOClzu, -]~xHIZFy=_QUkhjnŃЇ^R׽}w}sS~OA?fâ/ðO^~UGw}9rBԿsSr0꿕"~0싺~N~/v_{>'䋘_a'SV~Yg~VT} X^?W]F؟0In2y oim_-s|[nm"GyMу675N_;q4+#m[6_jrGۥKikjRz@ٗ)CGr菃IQPW[HoQ1؝~kXNk\ٶ\H("ҁHBQ(**qqNXJ(II(C#{ fs?Z]}1}is?As9y !w+jj.@J>7!Ut2"ЧwcV@CcQɠM? t -U~#>p8;q_@~o43ܣ>_@>3;YcC=QV!x*:i -WŶ217^C>C(tcbq) Dzo'y Wn_^Kٯ[zfᵼΞI=m՞.Nh+O5TW=RIq`ñ/v:]}>\@3-.vrq_Ӻ[}w 8r<:6/_I>4Oiᐊ~)A務R@П;^SsEP)I1Cu:nΎ --fΘfh0Qw85U#o>?E>a_}N8s+82F 22q#3sn+lپsGGğNI;uJ~AQ2-% ǧ=$ /IGE Q#ȋחȲsT_YeQ&oϪ7ppxtlbrzfvn>_?Siȗw_ ~V~~b?_ڡ>+~ #M;7S+5UJn@(Tmzy8̳ u4TU -e(t@??cUDdae/~} Abc;˲Q+AD4 !Mgϝgcl -56C< <qlO>> DПO3䣯8CD+ݙto K>X+<{' GiD%ej?&~K/O.p?ϊ6©_p5ب v6VfS &hC#x忱3W4^d؇F+cߡel`aQ}ܤۯ^5Օ%r/d&':|?o^uE6PkScrZa V8ʾ_گpwAe(p''?` $DihUuMm=}ĝx,ZsMvA'%zBvNY5AN;ڍt qDԕf3/TCQ}u-S,l9E&${SIQS Srs⋑Y̗>CAPLBLdXС{tX $Tdѫ/B2 -ٷd?$<}|xC{X[SYx-/'{""4nmU.N.5c&|j`_vyWA|c_xv=Hvȇڸ'A:fZXZ/\ظw׾؄s޼}A_ @r9P@O= -V:5|RZ!onw\o~P?2& &_wp_~ wDy_`!MH_]mMUy"T?#L|Ldh Ks醓&h#wlyAf q7n&76] [O[M/QWݻ{}>=%)>&xHࡀ}|^hokmi>dڔIaͩQQ1l^~rj'>O@ { ZM?kl c_~@)2cWzʡJƨkLd8r3~`hdL T:p3 /})gg玐y_*|iTW{z嬌Ԥwnٰz"PTC;yԎnݙ(3Aʰ=~~ryz{~e:7wg_oɟ+?W++)~^HK>>v;޼a׊lϝmfl44[i8e_ ioáїSzc:@8+=V]S[O馳̳[k͆͐ G"!iYr>1 -v#=yWWON:)U[A{2a>4\r4Q}SP۪?q2>)5#ru8t//?C?;K@o_o>9QGQ;7gNF_dl8F~oF}AEs_ðFƦ,)ۡ<+y76F߼a+_] qjn (aG۶ij_Q={\s%0H$*TVE}RB!SR%[}վN%QmJ$Q!R`|{~oI9i<΄?`kefl^Cu*2b j I> wYI@2hY2\ 8 e܅4%W!Ll BנK"kWJhC(;y/ˆt AhOie?TFS+LOILܾzwybw(IIYs>,9A/sp n _ujIanFjBtA{p߲POK]YI/&*"Շ?r0'#%!GH&X}eKCOP-~~G{+<{ՕWK -r2/%GG C+wVG;  ښjJK$Ο؟$w9 :m|::iӁ9 EK +֪B( ͭtڳ``H3P"r.kmew ZA8|q[Q3P ."x/`>Sp.Чg/G/ ? ?_Lkhbp ?r脔’;-maO7mw} -~J~<={4Ljt?Q ]z0 '=%> -xg@WSm*9i@ݔɓ@ 8RFv>~5lys+b>^salw=I#8vZq,/<51phxyo676[ -X.#4 Xobax|'︪Uo~;g.\R2(*Z +[g;} #.&PV~fM=nFa> }Zݏ: F;1x?@'@rX}x/-'jsρ@~T|JzNAqYEeu}#]}JOcB}ώP%>GbF{_}N}@A;WW]Y~ ;=9.*ԱC~X}{ c fn"nC"ġʮXVm[=w/$,ldt\ҥLhWQhhjik𰫇ldg}$Dh'ЇL~0 B>1qyԟ5g.W\NGc>~qiER>4[Ks?;#П92jx yOM n\+-JKÂ|zm͍+dBL)K =xNϰsD{3ُg]o֠Uom?bÈ'=m`=]߮ZZT.).e&kscCT*),ZH|Uqf^,ٗdcߘžPHIX4(x$U<ڶ_ ={ -Ngǽ۵p񠆗 ~h!?\ľu4`d g&cउd*a'@N'ҰLN^q%eێ>~C/!%=+}rG1xE_D?D8 PcX }v'#,/eЭqj׀aaEEEE2( ( -@@@rNs$ QDtʸ8;;:Δ{nu*WD|4Xb¢R2r K+k:GOMSM^->0^~g3_2Dæ ?~@~IaNƵ(P) c:H}1HMs(/]c>>w/x\ "_7?߇.yt 7p3~%oldp{c]Md@κ9;Zh): WRBTn5:>x -~氿.ڡ> G?\ P P d4 M-m\=ãPTT56v@Od>R~0oG}R71:<؏|%Ey)|!5C=cӢODAqRR_QUS瘉é3^~TjL?F9/>0?0/vw*q%swv@Km,u4THSq_4nj,mN8aQq)yE%7nj'؇~ׯg߾ZCAob my] 7aLKz%OwW'&zrRB[6srN'']gn_AZq1l@srqo.(OZ;k`bE}QqI9PttuA#ɳT{ȓ0 -~FJR\Txpў 0>1W2W}a]R2U5t-lO{\ ON)(zؽ(<9P,->0U=E?@_/NK ?nnMPڰۮl4 ѲΈ} ,y)Ea;{GH?yVW-?>:tw|mU g\NYCVQ<(o.1|[89DNZWoH\J U7('*!we#̬lO @IWy0^7Ң|~txp ѷ23>/[6W / ,WP72?տ qO/MљO޿Xo҇N]ˋҒb#@ܜNXsH -aavjْ[f})V}hh~N~QzbZBLDsnVfF:{%%D!κ9+fJ?R@>^~d)ijwr;{ _DLµ<(Ɩ6{MN{+C!=B ܈/HMJM~YA+ZwͱFB{32>v"_\^]wԇuμl/G~{aђ>591:4TWUV|YWG;k3C]-`Sh;fP j%I8U?}5ľ1b ؿ쇄G'~]csk=I;&}`XW]QR = --oij$/'- cwfNkYWwB; -Y^VU>']PDliYyEZ&Ot0{aCtÆ c1?FqDأA, xwuu5L>(Ab}I-w gaabZ?C.khfmzϕԬⲪщ)hXP}C4RW Igw:TUG{/Ў+POg{K㍪Ң̔Ę]L t+)`W95͐}Vj }e5 m̾+SP\ZY;42NzW$1yz=|71|fÍqQaWwq9-3zF?Jb)l{ ٟmߒ;G^gZ쌔@? N739pnDz~7>Խ2X>)a^.m,LM 멫*%D֮Y -~U],p?H}QqIYyE5 -]# 6|S7C 8oL[/T᣼Oay[*#?W_{ZE)X?=9>:9p1;k 6X_Gsʶ-r2 QpUg>fOײ6S?|hW - - ؓ^cm=#|'p酆G'e+vDI?;4`[8p;WTv2gR7?LK:<$甫š4w!e6n\|1P.M9Ps_ą54h|q9ťƦ{Q'؇OWɰ?#zui0/+-)t#7++oD/['qs? W"b -Jwf~!S3s Kpͭ;qtFgdQ {=4#Cd&8Gu3j>sh/@^+a R>,l\O@ dV\YS> <%an3o4 -w@x:[41ܹ]iF1+@aSþbb_m} ,|}_s#.%fVPowqٟS>?>v7+\.!@oocifjbonuU%{Rp{+|xye<[:2Pj֭C54uAyk'aE$de׫C>7 }FIYxc~<Ѓ7/+.̈́Ǒc[YMM u<8> =?1i~X@*mߩc`r9ʁuw[ +^zԟt~cO}zn;ZnW]+ȥ'E;{帝aS}赪۶IKR`ܿMFa_@/N -541]=|GD'eU\U[OJC'? F/_@ܣViwcvl&6-r2 cn?}`6dU.WVG[!s{SgyE@-mdѢ8hN^=0&^|tDXp/x &B_a,~9Dd#PNLBZn6՝{ML[wyx֍KӒb#8y3Sc=m۶lAqkM>>O?|rj_<@ HB,}GoY]Y/!&*F˩,DS767a'ݬ]}7(}2e W߭g W9z줇7$adlRZv~7nilnDS_r 3e??QOW{ksCmu啲⼬Ę ?/wgG[K6HWk8mv%2v?9rc_ƾ~S3K' ,2j_VQf)4?rq5W/XjnV"r3Sc.zy8L 0TںYv*%u}ު?D #lI`5M\R: -ôgi2"yC=wLп"@כhJp wn -ӓb"Ar?Sn}^GSC@&˦ }㌣ieVWTQ04b-mݽB#bS&յ ]=<ރC3ԟ?Cke&Dv;`c>`WCMYATSi𭩵jʋqaE]AArjrP@%ITrA@P$QFQѱҋ=馇AڽO8~yx6nB%[XEvN~d4}@@ieM4I~t+}*3اCY`DÀ@wg[KcmeYz).&*s)> UòҒOw̋YssD}>,MZ>~غ$V<um] k{gwo`\9tw ͭ]g{܍ ۡVᝇzCΚpx>tԇoAP&s:Q#s+{ߠQ iy5 ͠QT3>u?ꓴC}~~;=meEYiI1a!>v43C=mP$D|hy@}x ؖE%HSQ:rطwrG HyAD?a˅׋=c8@ρ}``d]p -+J -rҒ`o0@ "hD鬹ρ>dȭ9$^،f /(w3s -Jʫþ NLNDƿ}%}Ƒ뮭*+rG~rs45BU Q̇y7?lwh$zf4;gwȘܢΞ;LH dݏ?K{T_H:c#CMuU9#NliZjJi%ډqTݰT}Η RLL-!yQ1~ZⲪF~STc9ǜ%L,f'thˋ1%Ğ=s*- TS@ Pa95>kv&kd\rQqU =CSKwl|bjk-7:If1-_옻f4;=[]m͍uUexI;yR][]eiKΝ9y"AgYN}qH~Ff6^K)iY9Uu-m]0_^|5/R )^ĿζFLyW2R'x8XB d% |8\쓰WmOVγYRda&VvNۥgbk7xo4;}C_媗:“b.=7>۝6H/!PC߱{Rr0KG7/c'Ϝp)5jAieݵ]O>pYZWm˩Ľ&hfb]x[EIφtu0?('vY|盗O2o{"B} m]}c3389 gWGIÉi6ݯ&N%$<G(hmn()̅wBtDXh0C';+sc]-ued@lA~ pJod_7E}oA!}WRӄngFute;w]t&;\$Z7UHaudݝ7ZUf$Ɠb'ff k*ö%E۶|=#¿bw)l-l\=O=1%J~IEmc w>e^cYW#맢->K<&s:P=43G4$w k-sD}>,{3Y^>~$eɍ34]; Vq%~f_`ku-gƖYkf]Ԟ'yqT@9lix9'ՎF#_~M\xy@RP9jlnmz:*6!9=;[}ãgD}:SL_+1Kă{[g[s}uYQnvZR|LdXH2&)$ce+}>&:z&#؇V4` O0" {,l/@hv -2| JPUYQޕKq1Q'l-L 5JKq7`+*1&>iMy/ GD ^x+;'7r#/\L^ZYyjQ𺳡q|{N:Y3^BsRy@,AW }GC}q@DpD%)kY9{E'eU7u@}01=7?B]BH_K}J8@owGkS]UiaNĸSݝliZjJe%P];վcaE>EDAWR$[:z'N29=g8׽ F!II()E}ϒ%)iOJUQ%[68Hcs3sz?߾o3s'x$" ؍C$\ hCHR
Iq1"P=6op23*y-Ⱦ#sǸ9Hcž9 U_XD~ `ME][FrN;sbBϘc}:a5 ,wtQ}uNvXz4AjS"C(AЊH}IiXB*:&l7`lbj’jVå6x#'@?!Rs%9i) xm^`cnl6++LbPwӈgg?b1}%Uľ5( 708 tnaqYE5x -3h ޅ;UΞHCDz!m-M U֮YLB\TDeOKO"ԧNK0he5-]y#=M^Xr8=s~f"N͸US)C[[r/;>=?'#-Hb,G]af7Os -JU_ڎ:yG%vhȮ,+8'c>R_ԟG/0u #b b.IP@}}C k{ <~RjzFV^aIYe k@$E@// 7o4_px4olomnNWS8ŋs&k9Ѥ1&?Gi31h!a1TYYyEU }#3+;NEG2ABi^p 3zɞk`A%8 =}\t6:r<u|П%RAC1R#_.#ԇXۻn|<#; }mHː8U}B}7 ._`Te</׎@fԔdjb"`8&ˡ>^j>I ED^ohjac_Ph3nuLxCk `o[ j8N~v&Aw!쬠 -ҒKDf`h7. ƆQ}}$gT})ka.dEFAwlyU2$ d%BQ>>_5wp$|,D `ci -k)㢓n)S0Jԟň'1$#s޴u.}qINfA%/q`v>G\iCYƩ?&?.~`@?'^lu2.k:q,9!9`kifdK/);+?p%z$2ŗH[iw/ݡ&8 Կo3[f1>=:o\>WRp` ߝ7op01PYj%xϘw.φ؟B?-R)iYyľ˦GE()(*-ؿy`ѓo8 .PCp0DC| -U5 b d_rp}ޠ'pTL4vP}yE m}Lqfs$ߊ9}l\6;f<F !'g+a5 -b3$WZc`bھ7hobJzfb5;Ӄ; ZQcS@h_x֍:|b}]UYqAvF@O76kVJ.BN4vg#P('| -g}`:`qVwTA~tҊjV}妖VX\`8bmׯyXEٙIq1]p!"}C(Sr? ǪOCJT"7IT: ^8 ޴N: -8>I@i9#W^Hb56]<}C£b⏦edUC)yaJPơŏm@6~|\߹v][YZ.oOǶM.fFzZjJ -@@yS R#`tX&:cs+;vxC#@ r K*kX˿d db.,E v/==spgA2v-R(Q*Ң}_j=)eHҢI*JT~-W#Jeg=>_ { x>5UEJٗ=fɠ`f\JT8gx9Kx -9EeUh,741x}7lFIɩG)܆fZr{!7d!;Y=~]Ԅ!WYFROc"C=\,Ly*P}~+ Pȩ?We{HhЈmBEgZ._{>BŶ#fCP 2fvuܾ 5_*/9g֨{ksC=-  -fL+HTA`<>TPQYeEpA`2l06>)`zfvwA߼} ?.>!du">;?]5 g H%2l޸!ըXm>3I/#P}}cǍ窯V_kw)e-9gِv8k<^$|Ɖj*KَHMNGGGNvƆ4ťx @_Vvď@3).P341f ںsORJZfvɒڋ͗h ut=|)8: SH~Rxdع}=:ݾ5]8_YV\MNlgeflt|9K>x.`)_ohL`pr ZOd|x>P^USBBP=Ё-p>{!{wE>ޚtPW[ h\%.㱉FSa;?J3wt;8pW6g.$l5CiǕR-=8>QMXqʵЧwUyJ6b}P1-*Cʤ -ǥ$ǝT-Yn46svU$vjxɗ[~94/?3 \wo]imɞ*8~^nV.'gN͘ - -;XS9UA &fklݼ|7l Y90۱s%JH{2NRk~'{PSYVRTuP -MaDV&Fi)aOFѨ t̾6s*]m2H1up1z=Y8WwYDu~AO/yo|`ÉCpP*/nFjs,W@'_/7g{5f,:v\}-t1G>?1r&`MɨXsUn^~A6n޾{Yp+mԋݸBԊ3L!ISXcT<Hea- ugKNM?/!v[tDhP2MX31Y&A`f GI?N|PmJ#3Kgw/2Bago9qLEu텦V ?IC|x>ca|@1/֢ O:@ =\p&3cC=e% #-$J̆y ՗PV[X9yGYyqMW]6{_YP{{v. G<{m8Ċ6_`c:_I+nU6XBC_#F -bG=*P4QXDbH?slu]CkQыB8Лo}?4?]b>}" ULKIڳkkTx:{kF:Z31$ GJa_>8q2!d_mni/0$lmӎ-(*)6<{)⣰@z-&yM4c+S ;b"C7';܉6wYRY@ړnh*jPSYV\JN۱%2,PO[ 0SQL%ˍŃ$!\e?o:蠣g'ut#)g - E\ q?CJ1+:W/aJœéI >f&:ʊ'e_gϠ'U_AIg` wF„P/,>Sq<]mkҀ"}HߤqoHENjVɳ3)T側mzz?Ч:˧@_V,ĩU(C=Z9{a%&:r,Btֽ=dSpۺ/Hd>v\SY޾yӆ nN,SQ7$죨%%%K ƦvN~Rrj-8":t>~?ge"+W>E5v#H k+b z*]m-E ()p٧3VQ}!Xu"S9pHu -pVvNn^BP~au0p"c̘HZUdiWTҾ"uRJ%]R$/e?3su8gs?}~ќk ׽%\zVnSUXsshF.;۝t >BU$#UVR|5P>"#GѭU'N10st@=bEݸmĔ܂ⲪZ vT#CD~yX`4L K$c1a8 )U5FB{'oyA!a+b]{S!E[Z93 =$&:OO(Z̴lX*:r>.XEVf: d_N})^|ߝs'}E -8Sa6ܠ%QS#ьw` J*5jf60C@~ˡI)i9yťu Mx7o㄀WvngHW@=;7.45Ԟf:L . GCciI&rXS}q;GgwZo3z74X`YYUM}(%+\4ܸ, -r{/7Y?Yܱ %-0-ngcibwbHt%G>7TeXں -[gPhgmab9UNVf4ybbJb_^AIE bjh3͋H`b$Yɲʚ3gy;lρoOv -4)n\rxHKIܻ+v7kAݝq,!d(8~X*Çu#tOHu9'SXL-XF%gG -K+a$R|iU+pƢ35eXi!HnΎ3mM t)N5%8 @`//)`%i2RFGjXX9x,Y`jF񢒊3XExm<oN~_:U_<:}Շewn;]~0/W dokefb"bRbWt[{o^PHX"vԌ -*%Q -! ݉`F`._lnŭNCS*x6fF:S&^oA`'./qQCQpWi,Lk;n%QףYylQl$|w6ʑ{mdC銒₼T֍(%!<\-L,'(s+R@[cQM%1̬lܼX~s}h*?]w|e$=SgY=r(S?'젟cyO; j;m\4$h'0fmajˎ!I󯞨Ͽ^v °C١H1ɕPrպ[!I)ixťudH|=(}/hqhAxd!"9qׯ+ ^nFt/=mȾxN -)n he «0lrk`lNs \  I>c)n]r(?73-yD/_(0n䉀lgy+&G/}BQ؟+tv̚ sBʫrR:t>(HQQCDB"%brڛI͞ٶAc֘}?oBRϟs}.b! "ge`0 qk4"'5߷߄2K/G9^$mmc"EǎdO"o4ZmT("ٗBGS} aliLghjni@ AnjcKΞzP]/rXO]r2brtB}c͝=+wf(yK|W+>Ģɔi}4]=}pHdrZ֡E+0qYE;k'bAʨ'瓩o`v%im4]>W 7'#5)nMrw733Kk `dx\\D>c_B72wv#E\ضsԌy'.6]V/hvWc_^0]D,es$$FX5I8Sk1t2G$JeUϣ*QoLs?FڛbaʛR dS_}lO;)Co7ņJN3RiEmXM”{t8^Mʠ/dXlh:4Y:.wqZf&d\RjFN.j ڎ|ǝ!yAJOGϟ1 ?p~+0V\x} ;t׭ܜ-L ̜>ux5 웯F|2D革#5VDm= "Ed'>|@joQ_SYqT8jw$z|c}](JNRlc6~Mm u7RKwEu بywJ/z$;kMjl07'3{{$-60Csi>-Qh_}Chg:sv8Z.t֝ 9VX|aDKK>A>G0{yʥ*PD᬴@,*|CphkenbiNE/ `弌?lcTǩ.}=cֶ.K7G0:4ĸtsNy"!߄ .? صq. QVZ&b@ hJ%6V(J#m&cU8.$\.WP\>d>͓B ٴUwn>A" vw>~P:0n_]\xE# -hKm5L>NafCR8PBWը*&N<201GQ.X!<*zޔ,$QTu~/VO)G>-L@c޸v⅚ғGs2ScG^`:O_Vno] 3?vv.D=i`ck$ģ'TT7(~rGO:ɾ`oTIBfhocۨ 8:Dq[l"d,ts_OU)Vٍ+HϞ;lUlhn0#{7OvkL{^H GanqgJNSoO\۲)$8"41ПhP̣Gkl϶oge>OO/,'bH]ڪӧ -gHI [PE -|Uz/^(uD `723<#)i9Ps5n޺Ï+ /qƹDx=ygGeؗ Ԁ*-4L Bem0WT~2gJOCYz\kj;'x4XkS|VYiw lTAsVC|#k}i9Z$TܴK[nxcƪ+M-p5~k7GEIH9u8nVۀut֝{|&ɨ'㓩> ߀0k/^!q2S᭑a!A6/ښ _ʣ~G.a"92J)4l*Q;b+B|NWTV7dF/N$t2f5Ԕ\wGGm%lh!CI1^!muQ} P}5t_K|Vb􃇱J"L\!l^ }&8ˆړGlK ).䝝9t}P 3c]ڔ68L,~" u9*M$Mٺ]=}B"w'fbW\xڍf^dIN}U9xn+jS#̧xnvĸ]۶_~B3y:Mg.+? L5A pEGWF`pȦ-_.N=k7صvvf-(nQDX)ݕJJJ)%(RrXvmsssfǙ}3y?w'sHYEepPPC"όql҃{bDh7a4CZQ/3Rqw56U 5n$o/v+j6_\$wXvCUah6Rr˾hI}]L!ԑt&RZYbnWACOFVbjWs_U}BAG(Zܬĸ0c>lxm->QK7~'U3cp}3Kk{G]/=}`1GX._Mm/>#j=Wv:|}9RIfMץ%3v>ߞ}"U_s m3<'l,oCX$E6vw8U5hi>-J^^-{V񤢶Ѐ$Ж]_B_bv<:K*ItSGpJoనĔ܂bԙچ Z3E'z#SI}? _opW/5לdؖ1r_ ` -)+]\2Vp)~_xIY7ƍg[41=wE@#vKt@Gj¨ʎJeT#s46 -Kcք0|q<%J>%`!*md#ߢ#Fa՟nlja-T:?x.+woQ zZUu]ܝ{XUaK{^Iޠ8F5bqS^؎!З=m %6NsPq(/w@jd*Ӈ 0ytOb`E\#mMض#3'stSG")ը߃nT&B[޹‹_p0/;#59>:<$s -WgGRVézdÁ.R>~qoZaw 6x%Gki70/:.'taL8vLm4FT^`G:-3tFGB++ʎݕ\䲈&gaj"&~n$ϻcGb΁SOC`cs4vȖqg2 kѨڑ׮\:__[]yFq E-mǪ9iӧ"F #iwՖo>5gᡚ+fԛjhb> yJ%)0$<:>95#;cUg5^nީ!ѹ+ ^+՗ԇ?ak%WWSYsS㢠\ΟC:]_w5]&\o> -[H"8z,A؟i1nXxSP|qW֟Cʬ=Ha|2x~βokefbh0e>Cuꋢ6Lu5%V.HkQvWuɬVh&uUEyAZ[fZJR\4ߛK3gLJC^˚:@˩/2#7dJԤf68zjIaQq)49H_}FaJ5\yo)?pe;8륦'KKs2؈ ?5;͵&a2y1#G@z/5o} >} -11VqLKk{DžKH}A4hg/\zM|!?SWjc @#}KqXTVz=yK F輀f7ٗÓ߿~Tz4#4 {[勒rX! ՇJz/eg0jRlODVؗ[ ^Ci6f>5܁ -s`kt!թG?v)%&դ5^~R|M=O-G ]5,S{dyo— ^78v@a^vFjr|LxHΎs$Xp]]AO6F¾1t&fV6pE.n+ a[C?>5γ5޼sOgQ!)/' "-F/5ifE@O271?ZsxTZ#mX!#cʊFK 퇟tΩre?be2r -Z%vVQ5as$ךn.6hFu'tDG/֯K55)Dՙg`hb>W-{Td\*~w -_o(+uk).J'rx{rs!p{XWaCVU52=>M!99._)9RVQY] 7+ߟ!>Mao,/=X\uKldhR-gbzz) cd?amZY~cx4ZEbgu QR3AmNԩ֊zFAP[]YQvWsǶĸM!-v7v1/+X޺ d_ P̏B3Z CfYRQrq[ BOJ-(>tSq`%8/q^5zzmUd0V|;Ty/A~@#%E9;%Fyq_?`omajɄ/%mAR2w'o:+|w\z#0_h"$=妆J!9RC֓7)v_o?Ym`l ig>(h"2WMKXz/vvlQ=KDAb)V`gmAI=w6nsZeGaݻ+N}  =O36#3B#b1̜|D&$ >_;d<=UŪ=?5$j\:DEI3mh*(RM@AEEPAvA" - -}aHu?&6N3mL} 3s7<9|?ߛtUnEF, ; ز du(M-*﯋\vMLnjV TWYs=!0ItދW:9vHꨚvt\ļ+GQc5hJys< 6B*qɾ^Z+OVA-R}O> llv6USoerW)rvG.Ӡ%Ĭ -_9wꙣ+?}`Az. 5O_>&8TJDjsUAhFDƢ)i7Qf;t E N)o5I__5zKz*vQ GV)^Rl-] Y>g|s3ZBU%fNQF\}Fƾq3Bly̞,IHI_I@ߠt;#JLo'G'zy,;(u;6?D˃:&E #HcdGGAAU?DPccY)#cSҳ hgV/p뮔Ҽ.)i[w=@!}t3Gk|tJblm׼nf}9xg 5#SnrY2شdz-]*[XlO55 ;pTDdSݫS{9O_X#qd?5[!kQx |2yJ̒MK>*8> !4yϢPǨuHіT8rW|j?jy#=U@cw)1G(4!;#b}RG}{i,^3ITIz4}\O25ҼMQH߻@ږRz%ыhj{kWѭ-M5GT7dKM[r9u3ktIT0l(jgӢ4CML)7-,}BQWZ>YZTn{DS3S{e7t%_ l]HZwc˦*b}#a1]f@},ZF26n,VZG0Gz=A O]eޝ[J4SM $dy40*K,쿋0*UӺ|bҹ-RFvUP&-Kif/nWJ/o}A:á,/݆fHK])`gcmL qLsץ~?Ur )8t0B'z,aM[v +T:f˷d{oOGX aK|*ס?쪀VEٶYkW. /3T'Y3̄ -b)oX: -;2FϚ$Y+챬@|_I? -I+?간ǡ( %7+67 6URY"}LIHXOsDpZ<53>Ǻއ[K? dx,+;XU]]b?jwL@_ޔ*oPzV:?{=Zs7N˲jP}fp+sWס!"9-xx7'm):aMzYNY&Xk$(?&xD @&smrjE>DI,T?Hd{C̅;ɪMJ]!YagYoݑUzS/?j[]XNlkKevl)*@@&FQ/[ {Ǯm)d } }=ٗSDEt4v -%'.KN.(ں#oBnqHIqouQ} BIzyYy֥BT×X(.NP>'H|ᩯ;J{dB8$AqIir7o݉{h͉Sz;ޯd0&ZBI1 -RK4Xdp%I9:$)쿠JU"O]M͛m8)j糼(0{ړz6Q=qq ӛ`")=ՠI]cKkWCWNIϲ;򤓒T0d[I!25)S eV%#KwQ=W$`O9ER)mh>.T˻R'I[ꮑaI8t)qr%ÖTp.JOIZ* v"I;/YR}UI2td_LSzb&c1GOgjLc0ٙ/ڲs79+4ίDrr/$zo﹪o\Wh@SWYRbVB~~xq|9gYvwzF!T®"b2;I{R#B]U`܆q) Ifqkͺ .{qξ?yOOϜ'|>zWCGw0R(~K#0;u!tt" EMI89V |',RFjPHٗoP"n\ )&c!d}zeJ(tT_aS+?f,O@p~rj*Xl Jǒ$VWYvts7GJ%f!a8!i#J3$Y讴o7s4&8N(8GͲSy/yDaYՂo)HM/ vm꼇(ΣD&PHĢ;ᣜyfz[_H,[€/}1Żk/Q4d@ ޠmzTZؓPTcKaKS6 -I--;~W"yGj[ fHo8)bGSP4F6v̨Cq.:p8Sm+񬳨7)QIt΃ĵfnFEx~]t6~S~>=WWh֯Y(!vnX;QUwO6j8 BJa$w4gݗx6g^|e+2r֬H?KW Ic-uxgRd'䑙+ MIdtoH27N{p%s?',#RCP}B0\:vo .Av59ysÃ(NR4[[bIfX{[qjC(Ғ}e4J>x']q\gx͍Mδf=ťekExҥe)?MUUq^H/ʏ*v8j^v%UdHϬSYQo=->PUTzJ $71O"{P;:~&(Q h @JɑcjQ|k!O?e_1=&BsMd1t& rF$'~!e~,(IvQ}2Nf^cTC5 .HΟ>X]e\.}7A:X?^=vȅLDTV }m( JT' ݖ30$2f>u6s|-?yIVc-_7ѧO  ڕK*>ZoڜIŁU^3MhT^~6Νڳr߭Z~; -L[;H)fx&LMϖLW@tƭ:|'c_+1>SJ$ *x}iĔ) NQ}wBUDt܂$YǶ쐪qFV/ 1_N_)ʘϺI GGbA^3ݦpF wlk V$YB_]ܒQBLS9y1LJfw[r-phM9k d~$oVkħ ^=T*+dCvf,]?tw8*B?q}WH(D!4`ߠw 12&PAݸyۮ@%JT%Z% bE+B&ٿ.Y~[Ӗ׬4 FH#F~_SV}7*(l:UwAN.h3<}CtIK%W.^fC_*dSmR~4sEʾCQ}2T՟>i^b%UP&_$?}5h -녾j(kwopݜ<~"y*I~ .δ;[eb=Jې2P:ye"DdAݶdh8δ^~fl¢TlERl{M_*_im 4q~LdH sq N;aJKN?3v*~,+?B&%W'.^z/rpY_U'ubX_B)Т[,RQ6CR#Cg6QVѢ';&ƪ\U}JT6StJCt;'r&Jm"ۃ#yZ,Gf؎ e }ڏV,eCZ1t'w9Ϯ}8D]&N)f~"[kOi^)VͲT_HSS{vRv5M`jM/:2q/R~2V~̻ZZC&G~ B ޢCT|._A-ZF)rrMd򣇔q.#!e_W1.A,PtTb*^aT\cϹf -f,]:iN3oD$3-V^;N*g?Iw*n nȰNIqQlWdpܳyfoگNSE{a@\{INctweJOPwHQᕟޣ Zo@C`j:9`pei3<}C#Rӳ ?T -%}[5=~(*?gq"Dknp?uTy<68TtQ "m,+VMqA "*(",Ƣ՘ FZܣڙؤ6sW,z?;y9uEN'~|Lb_ i4ьi2t}, +L- j fܬtp|nsuV97Gh,P84ol^7\Rvݲ?ڧ/޶cMP9e??T֢w~ -.Zo}4S_FR -_mKY1  oυ簐 h -{ȨNld7/`kz?\p#B`֮/* - mh7] _ޕ_/`siQ>~8bFR?Q?+ԁ# -:ԇ<֗BXZ vo-W?em -GXIq1!˽= -O& -Mn1;y8ԣ6G=âV'P2o'>kQ7¯mu BH2҈KV¼tPd(u6RWa`sy%bxI.` {/#TVP2TyT0ߵ4"y=&`#> @}8P:uq`3g9vOw*^G7_-NXKOi. }]U -1#TB#Iӳ -K+=9kv߼|yB bעR^#?|zEYR_Kg/it/0RefNA $` tfhfhS&lW%Kˌ:// keԯB+0lb}F"tLC]MNl5 ‚U1QÇY ]S%~7YUxKU(*Mg-bX-OSojǾI_tjtT>Ke \YVAO -b O!^8* Tiry+MI΃e\y#!b_mtƾ, V``XQGDǵG}boE}=|G#noX.%u #?w3:ᥣoSష.LE^H}B2˖V[{Gٮx.+*̱/ FMF7lɄ7:"Qd=VAF}O]KE}X~?l+ml%+B"c@p@/6I&Kԍ}EGYn.+l|oA}( -gEvjPUnʊ g&`{{M;yEL#_&)UZwXU"a.+̜ %do4aڣF<1g$ - DJa*(Iݤ&,JZ/( 3&-3wCI9 TS׀!|ƭ;uН2bF}L?5OCOT~9'N=QD(Fp8ZpgkX qy y<6 7pC W["ZO("w}4Iv̤fII}C؇+y7PcpxtlbʺlNK0K܆7o-[3 -m7Է|&LH^kW~[4NJxkEiQ^6^xB nfM =bPK8j@O|$>ٯc_ yKK:}?ք}cDZ_DN}w\j$׷G&CQe"0&`U8߹ !eB#qЖeh=(fN; @CXgwtM 5domP?GMWptT'F}xujsEɺCrۖ N@7Nxӎ|ZZ>a6S_}e ӷ(|yso~;Gԋ.ѯl߬I̴xN}7F}G$RXE4 ]`)ɒ^%ܽ@@cЖNSĘYː&-+ sA% uPNѧ2ghbN_sSO\S' K}Vf̱SV Z 9uƎ5|`^|=0d5o8BBudƱf]QeX0n,B)Q75t2i~71e-v*g3.c֢0h`9Z{`#c_XoS5 |yٰQ_LPqi]@0H+Mϟ;}\ZD  +t3 `?0<4~nD> GjT6*>~Aa+M6dF` NH"޽mqLZ3K3CG}0 .Uɩ,i*wwHeS5E(?n{ZGΣ>>`W>gkIl - QI_)xl'Lj6ScQ$6Z "AP:րQ@EHD@0,qM.,A1L& .ZsgȼO>tZ 6W0xyVSUTO/ohIU u޹kOiG`"Ҥ~qV;oPɗ޽Q>dD.sЈQp$iz CQӰy R8h(H7mJ'`ROagSQ5KOϮsOu5[jBlTV-y7oI;tJA7X Ջ/þj!>wt9W~&XSniT񤱤Aԏ3MBQ( rR1.bN!/Ф!ˢfth4f͚: {AݻlSQZ\m }t]A/_RNgTh3ؿz,UӺ1:lJ%aAԯRŒdN}%% ?,i(A֐a`œ3/1)%}q*AM,m\C1>d ykSP)ӆ\.6֮LO!m>3,$ԁH ktRZ-d.nU}G'3+~]:7~@,/OH/I% -RSI -ޞ`bpa^ 1P NCn~1& @MKb_>ݪ%[CU%g[/c_Jϊ"H}(]Ro2(US"m~)۪7ɕ^ nH:УKQ\9G7S',ZY'~ _ 1:lʧ$<$/צ2R4YptrvI hIZFVA{ oj{]q08Zؿo9#8ŵVSEDVeWZSPWцנv[*K~EHJ6 -'# iTߋP/;9uN1۳iE\3@&˷P̤<&i@I3(K̂ v"h܌w - - N!%=Q h7ᣍOơơıՈګ}.MQTݡ -Р~eB[j#mYI2EW #GTA}{*/ /$ دzEXtctٞUOAl8Da(}w4l(F2|ǹΘpI*2T^ cq` [ 3ҖHǰ?L\RdWR R Q & d&#]3'xO'Ua?XSwY0?FjEύwa uЧ;H}d(fwQG#FemU˗/K^K -. ,^Ry"Ȅ#/_'[n?۰?2E qDpRJ1LQ 5QYDc 7ƹyxaΘ5;:.aђ:lj8S+>,W}g8a?a$dN!@}566 o,]_]4)!.[~<`: -ō7식.F[DՍMetٞO=Ay EJ8)rI~PU dCIC' ($lf8 (qqJzf굘:[8k~~̿/\VĎg #lSƑ3DoFHD7k]Z]Jڴo9!TVR !B\vToLk,WģvCy6}]/t>rfgӧ~H0bƣ,F+ : Fr}`0f+WaWlhq8w -˝wq2D89#48bYT&~ wԏO JQXPpЕ@iS oUVF*ٳmemq#Tv>蜼^nDwٰϟ:%bԿ~sg] >CP?3̡Ça`n &L͘Ĥ+ w -?qlhnS2c+ 1xFE6K?z h95{ulbkP32'J_נMK 9}:{EzJR"ty8>7_5u#-S)Hu\: _J]% iKcN}AQ$cơXˉvY`_?a ~I}M)}<kþY eRߍܠ09r%?OisiCnІP|CqU+/K&x /emNwFb?`?5# _kщf{柚Oz%PtǶMeHŀHoX @ćO @3f͎KPơơi+4z8h [ogGpVn zo8JKoXo7g{}Y̱֯O){GTN aY]<}?CI}Etkaɕ r<3 ߜgpWAiYyth膧-XLFM5ma:Z4D~Vd$GasٌM)Z0ogS 'Ԭ"b8 -pXѴw pƱ6m07Ka}%SWEDoS/Sg%Կ_~><hۖQYaA~^Nt_7;P jW -O6 pXAQ9nZ;z@7]&lX -t5Hζ&겢ĘrmS_R<|4 {,zfVkqqH)(éޯ Aam# ۇVҦ0Xٶ,b7Foяx2eqݔqݴuݜ[ZKS>1;n8\jomn#ԯ()NO -rv@Q/QR00 /Dg Sh]DLBj&C.2M0~`')Qe/B}<~jeOAT<%wrm[XVo,B}\#.?.oq /r 9|=]6VY[0؍㶕ο*)aݍwT\rzvݲ%OYk_߽6TK7pAAXBMA*+LM rQ H3@|DΙk _*8~aQqIΝqbؿľX@Pe\E ^}IJ[5ħ,#i m A'eWd'ֱ_2TOWG+[5%9vwv،v:r˩mZǏ}r[9bpM.Ï?#$~gyw?) -7d|?"EPCEzf%Ey9#VXg#N`X?av]xtBJfna)c0`8Ev>!gY^ @onY!o}F"ɲŨLQjQ>=h}udwg[K>&/d⸕Zksbva];Q7Wcbf?@7qIiٸgk}y]F~$]_q]?]6z}N:@<9) !>m̀Aڥ$4z?{1U8^~AaIr6GY _|4,>lګh[4rpg>k +NcٚU\y'ɝŮN} ͸ju1"OCYF}~в󪧫,ڊ$37鲥~9 ]صE3+5nBP7hK+n 8j{?aU{O`)y $ ܙ;qU#<c#C<]!-V0yr)qxFV?i8ܽBvDǧd8 -%ؿİL/'277֓`?!&\a&z]0ys{͈Y)Zľz_ -SoM}ũqG/?gMUYanf -M܃9ІF. -٢]aa-/(4261-+z7Z:G. {_AИL)^ $RAA8Y{b]K3'Ot,Г"p:ns| kJO3x]&Dnn=,Z>TL+~3YBԿԿ>udVg%b^HtϚ.C`3!q/הm}iA70숊ON)(كx %.tI^H8:;TOcQ?IQR;q0Cv:g`R6G|BDt.Cݝh Y$2ؗVF"%ԟ'ɞ -KJwukP*e?xlanFJ<i]@E 0pBᗫ,ZmDԱO,GOЈ̼*&~Ex7j_S>v@#8G<,"Ln%?wშ x -Qy[qȂq޽g}KtbJ‚c#Cpnط4]ZеJL _eݍ  N)㪮ANvH}zZ=uB~uyq~VZ"ՉNJv\5''*t6;b'y'7U-70C tqhǁ i @.ǃkWru3EGBZ%\4Y삒 - {.4<6>ɺawuYQn&sG=`/,sbO`ײ. ];W'MDgPhdl]YCB(9i ?oeEFcK s2is4yЎ -]Ir=|tmS2r YLxï;"p$&ި'0/1>@/>Nm{fk iĭld {W66M"d(."֌&?E9}D1~cs[Ã0}/rFtJ3N`8aSe縐cȓ!𹫴v/cI 'au|R\TXuC0wOs3 KBHo -i q;.^ -%Ӯ'SQS'W^Z%O/0`_l{a>n,/PEeU|B߶wu3opa_ؿQ+\A i@=$ A!>H%n.*>V1ɀ}m]u!Y\^]' WVG`/"G;)C8wRǒjjذ$6\VHƖ]\CI};4A{_9{3І+h3m:iU+ HB>jp[;7]N>w}=ƾ>/z46\|bJE: rᣏ XʡqC@AV*[GyB#cS2%ARo>5riи݈}\}lTh熵}{rݚ2* n+6Vc=|cpDtBrFgjXWCA}|頭,-WeP@Zqto%ڃGOě?]W 2|5i ^&X 7[,K =F?FQ}`6Uh_Pָm2aDKW?ZS"i{k+J -;p~^Xte-Kg?F 7߈a%q⬉k7xFB] -Vhs0~RA['& gPhlo6hhW>Q}I7l\hC"Wazxun/JFc_A] kbh@lvסbw:;#%16_rNvLiSFa_>`_$ X>!1 ) -F=- -ؿ؇atx}UYQ>,k(Vذg<GMwy38g'M mHU!϶6 VAI -ץT]W>ktcwo`hd,5{sOqk0oK˱cħ 9 @t^<نΉ:囶-nkx#E6›Sx^ЀS7y:x̧Γց((lk\R J¾&?`_62t1pع@m0}\#Ը•G?ܓכNb?:Ca("&!9Z3b&b_#8> -K73%MiɎ:*s~g-Z FYq/kyM3P )+R('}#E+SlSkg6o* kW/vUm,i[dPR9.{;OߑW@[ :?yjO 8 hUh+{\߻%,J2B P oTX `s+:fN -0q샑u`"IAA%CE!ɠu?x )Nn-pjtW/KK܌Hru?6GbR'1%3ggQ<3흘9rBצ>&wt+_+ZԧvU8mL5uL,6pj; [+xw7 /} -.ܻ{B+;p sJsތzVe5w+,-8vF>u`/8ڌq'a7}O}ww]RcRPhFJBtDZP(]ML؇o@Ҝv!T`M mi -vCIzo,Eq1p+__@ԟԟ8aا[n̵R:?8Zj3mz/; ->wD۰ - ##fHu4$a߂-YfFFPR*bt谯P>U^)ZxmUCҒbB}<9Y,B(/Î_褾>)?ΙT^Э)]u#C0ZoUAPq_3AKjl6jC jך-|>!1ě{Zނ~Q8XOG?ЗĻe:܀΄ĩ()TggB:el$Q4^gK}G(HB]HzoZ}I;ښdxà V,q[ 2`lȭ)ޘ9u/N$Sѭi MOPV&&΁#Jչ 8Lj!>\̑!WtPAժJϜbt{Z~^~AěLhxz[uN.}Op>M}|:C_IqC:q NE2ʥ -B ,X+` cӗ)53g'baa})[DʊsRc#C1x]eZȉ$jנuwҔ%j'QB:ЌoNͪ.,K#? SP"Q}a0Q?)l+Q_zH_/^9ygֱkq[kgf-I0f\Emil(%M"(J=JBRIFVfvٱ׳<˙y'|>tOtjn Mģ=Xޠ Az$e7E%eje}Fwz::g} ͍ gOC阆0h ?cBbsH_= c}sK+Nl8a i^b(5Sj{߻;&24ϛ2 MQ1{WګJ4ÆfE[%vpv'@FN^!F:Z"^}!Rr򳧅k@}񗫣NroN78jGI|K?x{dL\B|C?C౏YO -_0(PHܳkGXH %$j L(EVB>?JLΤ1 -ϣ -^ !/ ,RZ}]*:Ǐ)@}Z2j~\Y7yYQK8oֺ{6N.Z4b tNk[ # 9=Ocs_"iBµzݽR(m·mް dg ef -COONA}hI;N k9#b^*17Tǎ<7.:BH%G{;[(PbzK[)(T4b,(vv cR؜9_ImrW>ꋠy9Sy̨lc꫿׌} 쟛67v+U-7WbJ/3+j5ݼ >}vE;zb_g޿<(<ަYR{BpvP?ssq_t6V|L;TO+wԷQ -Uh׷{OU7}> gubƬ9|-|Ǯ}B8 &VZLR'@5?,e ]VU?SRDJKIiXxd 6"ukT4au׌hz!bчG^UVRT)lkF7gpt\+)LLX -c_k]Ǎ6R?ltkD'V^Ë{C%_D?RkھΩoϊ'awhЊS-g|'@z֡#NJJΜoNk[;k7{b_ǞЧa#?lj/U^(;] ]fg&Yͦal@cGq`YbҿyЄ@(D -&}Oɤľ8 -0ϣ ݈{vѼ|S+ ɰ/5ְ)Kj+rv a=WXTR6*~;HNNJL)JO? s&⪝®څK sӖ{S3/>]vR-bД,_'t ` -Q3h GyՁЀ}L"Gk }+q~I"45^);=%kӪ帻Β0ZAdꭄ}mWSK?k|6u|EDťgaKP?ϩXv]Y5 P>QIQXTZ=KOͥˏZ5t9V0/ ޾}fEġώ`s(vqOki -}#-esNf$.6{y3%fBwMϔa_iRtR!)]_}NLMND,d8` ή&t_p8;-o 'cx^lJ&R_ܨBм7dpV6/\"-[ãcR3rU5 װN[uM+9'DwATXR m`Qxc0엇WӦ$MSI{R+CE[AQDAW4*{#[@*Fe -"( Z<߻x_؂oϟps?ֱbշn3ܽ p@pxT\Rj&Ҋf~>XʗFmY@3){" }8>,-? sҒ#BO?`k ǰgvM k׬\9^ {&O$_Wɾd+N}˓ǣXOKEYiIOuw63b J*#M2f ;Z6Pi"y*5;XuMd0N#bR2r ˪`;0F>B4φiEyXU W?Sb7>щߨihOwz`HDt|rZfn!$źvb -d0kg>:(>t^K7ʲbh @Opu23cRQT_($poq$xce-}&Ty$JX) ,S~^O;C…>0@eoJT`9q*t;Y;1iWTZqz0'蔯?U[7{׊P}]+՟'֪/LYϢz3WB ->"İ -/-]FfVv|OI8w >{d1e$._LcDNygv^%쌔3aA@O7'{ks{wioLAF -ȥ za9@%h|:*?wʲaO>@wu@_((NM u0DWKCmZv/Xȧt),Os%aCǺ˗ Ӝlb -YsftDT6՗wg1GYhgKWV^?][NP|U5 Z/^C GLc -ntu57V&E`L 6] -:Jz#>{J u+ 5d'GAB@gR\ >'2xmW(,AĨkTM-܎xDb,mj*s}vQ}&IGFaT~aNFqU!Wg|sRK~t7OWܶ!ðĔچf |57ςGm -~6]r3S#BOuwq45hi1ZDQ~,^@Z 64f}'}Urv~#?yd+sM}~DA$c ݌ ^TW]^Rts49wh2Da (j=G}2LW\rͺ hfzdPXT|2H%F)Uw?L)Q})ףGaz8P'3?RZ5w"tu4tZ:=~"0$":. m -7oA #biO}X]PyJor|td(^WG;+3]-0x D$>;JƑ\'ʾ)o3^KǑ>0VLa5mXD%ǝ ; a|TC( *Z䮃+3UT}P@(ݨQ&8So2=Cӏ㌔QDc&&ʩODsULgSŊKlܼE[blfeq̇`?>9- 6sb]SK[ ? iOc}WG,}7,h?5e& }<ݜA*wm -v "T =T~+M,^Cf -bʹ2*'lBtD)?/W*;oۺYUEi"Jv<49Z: S(3E_M}ͬSHҲJ+.s2 LWS}ttFOWG+ِ㫾_.DٝNXZFng@p֫A[;yz<p6=+\qYeM=5#9nS&}0@kݝ[/5T!d$ƞ :}!  چuJ/QC^cAA/ };F#xd -?ee<3" k)a%Rb#C35=w.Da) FLQK>ٙrTRZTJuL8xxrSYUmcs{gw/*/iOBQ{T91 -t\p_Ozz1؟ja+Y_]{A C·x - -;RN} siO{5{)kK -r2Rƒuwq45b&Ub@Zz%9=}Q@WȾ1g s)(Eeԕ憚 ӓQM]YfHYf*˘)na?CeÎ RJdoTIs툷`Hdl"=vtDTgѪϦ(Wy7hgsTT_3QL[-60Zk/X;& - [SK[ãR2rJ˫jݽ7 !NLg|OsDC -g|пThkn(=_x瘇#x h@ҒQ r |$ R9G<@f[B(r٧"``jhzO喦Lpӈ?oOWG[K TW-'j*It,Ť1K̝w8VIU_BZFE[p>#3k{ѓâ~y?E}q<΍w1%9 M[$D& ťTK`A@z/FP9f|5gp'('oA)1\)]H3.$Rrv>:_S|85h>P)=YI)GH7C/+Oeb -Jxv W/ %헯 B%ʛB2t L>QÂ|\+9/\sNc1%9k/(,gVT5 ݸykbq>?so6>厶e)qL('iiYH%%)!&B5FpHρ'+Oɾ%- )$y{I9|4))&95iP oz5Ա),Vg'#Ny;enBɩ*a$tO )25N'wHdlbjfna֎+}_ݚ|ߞPJ'9ͩzmNfJbldHլNTWoE'x 7^ _^Q1 k;ppx+1,uS~[Bz}tZOsC O~Nfj@?$ӕaocifb}NA ^q }V^%Ⱦ*}s$>WbNu)}bF?a=&td db*!6"C`PhNFw0/-\R#"*MjJ4u M̬iE%˫.\?2ۅU4735TÙT}_8>)8@$o߉v]!5M3+['7O̜s5 m 쏂ܞTp/s=>v[jK -sҒb#C}ܜO27=fGv$ l@1P 4gl@8eIiYyEG%4hA}M !TWWdg ~jnjI%)!e\Zďd O~)lRNQE񓖶̀HTY] :P}`k k(}tgtc[RU}E'롈aKl]WU58~704[PR^Yr8`_wxq?sAY0@҅F~ia.;lBlTX#t *H%X6 h }l@kx|VcI?%dZB/ܬz*+eEHPc#CN6'T=;oٌtTD b>S'"6V,+@u -ON/)'G90 y7S -$ ՚`'~G+Rܬ$VdhML4F#GDT9α8l]ڵGZfl ӎ~؄Y%Uށ}O`L#XWUQZNOId.g-O79pID-lX9s/D)'dP+dopi,?ª`g>y_B|~ >9Hܚbƒݜm,Q5KC*?n܁G4@rzxE -KS؟Yo8!'1o[+ʊ3Rà {K3c}j*)e+ 5 :83iV7_F: YX#}W>2PSQZ`Ű05P= ubAUʜh9KZ?*L#kO`hT\Ϫ=Cܭi@k?h0G4e%B}P|BšdkBzi>N>ƻ.*u;,;} 9&f6 px+1%Wدkl%?`>fp-A>ݦeIOW!П}{ "B_@/-v W/ߠtv>FE}?tѡ΋mMVI/離41Nv'edg"`I"* -((^.pUzK/ -ʥ (DMtMD1j}9sn!]فy?ϗ}T4XZ OT`d2' L!SYU]SДdxtBj&K祫n ݂9~U#35s@ -2 P X>RlaG -YA6{S2ro:F=C@ oh;P[UQ^f̍ t45G@?AB\ }ĔO?!T2Ͽ0 ٗ}PTؤ⃇i?2:> Qi/Qyёo}}k:nEY!'3%!:,U$f VR]X5Jr8?iV=.loT4hT fљ~"T)Fe9pT}҂xRWS޵pU˨S6j5Vqhr:Vv,Phdl"`?c+=E쿟.<ˀI \~\TX@_ :/i+A}@L)A1@ GMUpٿ70LKd_R!yPs`q^vZb,!fFzZ<\IŲ(cKW ->jF'vG E֣Qfwz\8vhmaqQ,G 42XȾz5L`dA}j@UЙ1*kY9y$fWVדw&i/:;'":=xy0F趥)Qdcbf'OW,$_"pĊ[GKv$\;miXX;zE%fWV64oؿ?8,GqcpC_#OQП gx}~`I'+-)>`cijW  !<#aПa/œ}HR39Ee\RA>Dì%XS^v6>6kƵ@S[깕eEԄ`?/,SC]MuU`OR Kj)Cddz1GPPxKJnB~.r6,O@ΜCGjc!5Do~1:''5C0nl*J -%^hO-cN`,3,Jghjacp [PBbp?cg>3f{ ~/@铭-K 9Y@_Ow[K3#}jQ %!.WXF 3> -J*TS}WШVMcˉή:?kNjC >xw`Ol?PsdXlksw*! ,Ɇ6E2;%QvnSPR [XVk}׸0MR3!Kw Th]UEY!'3%!: %30Cyt01sP} cI\Bj-_mSPܭ_[7@xt<`SPr[8_2/ ]O8ٓЇ ~FWcgc"B]m̌u4 KdH蓥}$0֑BɾԬJn=IAD O}TѲOP3 5'XT{/;}#07#9>*4іTE/7B{Z)MS?gPNrR2T32… 0-+puC3Dr?1ݗDWaץpP:A!8Ksғ"C}Z[e$DyYvV:{Tvn -(DЇg $MEм %bӲFȾШ܂CU g.ѐDYpS̚{8ͬ3Z+ˋRbƒ Q5TWU޹#kLO&^5Er8:&W3D3ߡ'I%ᱶ ߹wo4P}+(77q+ˊ8ݝ퉺>/8UP}jG>u1/)-#;,KCSG֑[M!aupo_;=/)菎|п-EyH7dgmnbE@FYi~>bB|ZΫD ;@DlbZ6Sg_?dԟ/xy||lljFTc#C|.JKDĞKbRZr#TR}$/(,:!%SX1C 7GƉܜEn -&Oؼ9prWg;ࡒ丨@ܖ,M قMpPTy[_;unߩ506sd ٜRaؿKa)+4/;?A3f?A?vuUpN^ܙ6 Yg'"F}߅} YC")I̴PdM{=Euf繟gy47}}+scC}]MuUeE9>B|<0z DCi**!-N]Ko3+{l֎GRؿyV}\pOJG eOMAMYAv Tl`!RSG8s 7/m\='-#;9ؖjꛘ:R65?~ =]8]z\b"B|<\l̩)ÙҮHI 83sѿ"D쫪ko66utubIKc>l'_7Dd@~B@?F?"4@WK@_\DHk~ПF~ _c!1Ii9EeUu-]}Ccs+;GW/@<ut{ǹNc"a'ZA{AߓdPSQY#.Z`w !c&?Z<-iy2ͭ]ܽãw:Tp)R-=c!cXz:[ 7SldKI ܾ„lUiIZsfϢ5fOMYgzM]#,yۻ`^1bjV5޺Q[G7ٕ觇Շ*mn|454b"C{9XSV!v%KqT|)~2`jq̾f704<*.!y 7-`j>#'c0P鼃[wѿƁ~|tDF@O{jU+1~3o3wRu!y7sڊ[56qϾ#%egtbHl RRnA77VW^XqXSwGrX55٠ Fb9ZWcgM,Q'*!-GLMcsWO+ڍz<4ȡoìJnJ̳'-JOM -vw6C:%9ԟļ,3=f%/f -g`hbnmُz6/) &lj>6~gOtu qFocaj _Ї}WXwK3XGΟ)abժ+U$e»q3f?$"zCJQWB4߹򸽋b>'ݝmkW~:w(?;#-yWLDH9ܒZVʘ?ȩ?OZU &hhKJI%WC3#̡GfwGu5UJs2I 7%'[KCħJ4' L8ohJ[ \-*Ag`dbam'RWaowv?}؇f}4 ƳBP[s*4}ϭ-6"*2G`.B賟} -P@KH)502scg\bJzf#%'ZmZ}Q>> "Wܿsj9؝am-L6oP]+/#)juŲ%V[3h9'&fͦ&7 M*gfef恃y'NW\ؔPǘpvYg -g܀ gEi]!xd#S^yxqSw8qf)b_PXTBJ_A[oɾߨol}N?wxeb"Gq>2D//'< -H}K?<>!Lgs>5V!-l]=}B#bdSpUV5\zb`Sjc]uK\ƒܝL P*B - * .]_5gJ`" f:u-=)mMس/#'HIYȼ #sѡ=%'=zpVS ؓΗ9/%1ngXﶭNv٩(JS ӡYOy ."#WX`d={z>' }>~ܟ`oЇ.Ы[^ >S}<3ٛҒe(gWzKյ&H{ҧA$<0:К  ŅyMܘ' 3mOb^vG`_HXF&$'+.ׁ]O?_7ǡ=ݝ# r2fʊr2; Gx_s?.d[؟c/ľ8ľ@ܫiEefcZT45M&I"%$P!RJJ*Yl!ҦM/H-w6EVss/{?}y_3s -J*k[æKX)Yl(/ûi a8XO8r޼C\EYR3gL'{GU78+[% im0 ?~b>b?VVQU`;:{M"ܧ7'sՁXЯ(?IoA_]Ue$~3iDc}^}WUi.YpV뀓Iw/߀"XJ(XZDA]]-.Vfksc]M5k.֔_/ǜv].@ʾYS1gJJV6 rՄ7T(p&Q3WYVRT|%?{уmRoN}yjr3iXcC|\UI qGُg54Lv{g>6A_%ѿ3\501P>ӦB|G|?x ±=$]k6oi PWVB '^+%k3NrZa.kW1^9fzC˖hb'-o7XG}G]p&1ڸ OO!a}Y\Z񬦮U+cW>s=Hw+%1.*<$˽v;,Lׯ#$*?x`G_<9:>ɾ..~!aq S09~%~f߇Gg{9o~omF迨(f=oFߘ@_ PKHL-V} )̷l߹gcg\ MHN #+Fz^[j^WXWS]YVRQԤ_/ܬ{[^|9Hadkޘ}䕤Psɲ,v8x~Ađĝ܆-yƿ,ٌV,+ʊR`lWB/xyiu#hm tږSyR>o/!Ⱦ$@!̾ӱ~,r`e}#`;:}ȟw8?4a>vD/$Oxyj2@-c2hh-] f9z s >լ5uͭL68^" ^i_vV[KS}rZan{:~.%fCzSw]‘8wEZKmܴzήg<}.E%ܺIv~qi3HVnZrBldXEsg\۳ssWj/V6}Fc2E?b?N %#f%:Zf켂bZyE~s+nBG?b#~gB}ݝ>UcC]gR~C@?:1HOOc}] P@(U!bjNN{s**?{U n^ 2KxW=fgj'ҷ|?K>|L|~._VQU ~DdÇ =]lЯ//-.!#BDч?]8|&M$g>_[ه_ݻ<|5Zg.G^Mq~n!b_Z*lE۩I^'9cx*=]m u_wGkFXIRZV~+ѫ`W6qv%Rvϝ}M?3ɾ`؏J$+VFoic;:QB37){:LFksS_]UQN+.~@Zlte)SR58+?N0f_2ܺcG\۪k?Ʀ~؉."]ieK-$"xB*hJ83 eևdV 2LKG;%Pǎ UK+SE`9":0ׂV^q y5M]70426>`|H<aZC?=%y~_[U^R@?%1.ߵ>ОOYc{}yGcihjsG,0 [X*V ,i!T_+}aDVˆzkia^VzR,.,"ͫϝ>q}{1 -` L}LjHW~a?۲}B:yem[;zU_\^ R7H 30̞ټAN!QJ|LD}ISLiU..y2/`烰L\e׃oa70$OHN_\VYSC$S'l.O OMϠ_}6KLE>bL ($BWGk)ёA~͕B 9z֫7nZ:yDR3r+j`Q2<ٗifB룐dKtq67ҿ {&;"i I}9_& PCVF2 MB#i%Ҧ{2₦M /K?~3ƆiNpFvRKS`՗5ŮJU¾p>>9-a.~Eu]cK[g7J}dBxzI9UE>}PFdROW{kS}MeYqA^vfzrBltDh}wXG?ݸ %VskOyEeUuMm]D2m Q_0ΥaP? '35hc3aBa_.4*em۱{}vS{fVv>KFFE`s*$;Zj*s2ݜl-L n@u{AQn)f m_` =s`¾o@Hx>>)`?K؟`8\@tvI;X$8lc#tj/N<."$R诓@# ?XL^o>xǾK,}CbqKdqNKބ>1.dlxN&t5UlgizOOeaٽc7!:a N 3)AԗE"_pDL|JFv~qyuCK{77crx $(OLaMB,40"XYQqA:2gNj<zr 10>#sIu ;yE%>yTXR^UE i}C#c &ES@!쫮oEvfJ,@txF%tw57UW>HKC}!XRCS_N` 0T?|\}侍?ُ̰ۻ 0W&'1rH_c( 8RHŏ$#67ҿ}=vk_JUa F}lSE<:#41C [G7H|b*ԓ'; ~&:Hy`JŽʒ̴بP&{!8[u4'(37GQy c?8,2&.1%~eM}SK{gLú?dqx|H ߗt_z>} S"ec#C}4 -P[@AjR<>*<$ @_@ _3 vH6K:w̭=|pIYyuMm2 1 1?A:b5%9 /7G&wo]oE v*b .U,O7.^EבO`. -E$@M2\IMu)Fϑmc-IǴdFJ|LD+W.=u\nIjRآW9_`PhdtlBJzfv^AqYeM]cK[g7BC?`|P t;X$8,&}t*T_[U^R(' @?.&*,8@gU2! -d-v~ԏ ghja넨kBjFN~IEMCKG78:>*QL~B0e3 Ȅ¼ب0Nvto\x )Ŷ~PL]-SI h}_kc46vp Ǝ#k%kɟoIcJrfJ$quJJOÅz[II-MCؖZ>b`r_a__Ph.6!9-an~QiEu]Csد(4xnAT-Hコ{waYvYww)1.JLn߻Qtst|rzv~rB;|z !XWSYVRdgmaW~9&.^)G@KJ*WghjeML/oiG>֮O=+sCc+KH2x(NKS?sԉ/}^D$8R󺮡ohfmr'lɔ²&Rgo?12>=F7ki=ӂs;}FTV;#uqd\F wcwc_7 fV.ȘT*b}Sk[gw_0 ,]?Ⱥ7? CɠS)䞮vRsC-@ 7+-9!6*,8{SA{cE;piW#k`laF -NH-*Q c ^K7+p:62D8VZboefzEWCxEC^<"R'o^ [q1q)mdl+<&!5+ ]3%赗ؑ>#klgeMKQVZR>rO`7߸xdؗUPطupv#xFD%fdW[Hݽr_( ج }=mME9i1a>.vV&w蟖@/] }|ž1 _]oīw@hd\rzNAi%L3ǀcᎽ6A67=1v5Ue&Dzv r2cc%;$OaK;&vN^Ii%ĆvtZSdG>~ħ>L}Ί\f/a0hNRwXAni 2HlZh뫿.9ƾ<}#3K{g^~!Qq)Ye5u ͤ2Jg0G'gr˳/`7"06XO*/)HM &8Z8pwϿI -/^V8f+e1:1=w|q$>xdd+,c _0_H&Fy;Z)?#uJ#z3^ymp\pIq+g8RghfȨ䌜²FRgO?mhd|zwfXBGgY-YM1dx+aFw]͌u4+RJK7,ؑ[+kBM-l\zG&$eVT7uvSa̡7 AӓLJ!tj*S#B nfwtn\vY/?}R؇z݇ի9%K4uo8|âS2r!dMdS ,dhbAs}w^{avj|d%B%y8[iPr^Ȁ$N HDED/#5MFȰ|¢R3ʫ9+rY#]4<8!ܝ,MJZ$<DRkRv?)!%sd_mCS k;GWOȘx~N~QIy<@r~"?K[}aCGsh Rz:[j+ʊ rScC}9X`_x>9|w2iYE,_M=C"cҳ J* -2,#G)NZ L,8QlbZv>6+*jie!!몏O}8*x/HUUU</ڵKJ.B6$AꯙնI|?xǾ;?(4"&>)5#;G?:sms& Bei0Bb >mTO(-LKN pu0k^+)ʜ?{?2n;p}g]I:ЯAүe q8x1x퇫+ɱa@_w{ 7`Ã<ݜl- t!ergŎ="*<a&ٻ:," 0Jn SXZU؜;*)L}ޤ`s&ŤS`R ʒ,23@`T9wn]]R[JJdj7u[:8C"Sҳr *kZ:hC#cS qso3עaʬ 'GA*Njn,/)HM pq01}K%y}1ɰ~Tՙp83L"5qQ@wޛK/r{^#6DLLVE1;;s/KFfw'RrJvnxBPxtBjfEHmJ",=`@OGK}uYbY(gca #!*ȇ X -eGPِ,.w:*/Ԭb ;1 r},/1zIGhʒl~YkIIIqI"SJh3Gf_^̾-ӛ_TZQ];04:>93wiqHٓOGyاo(/ T 9o񇕥٩ʲܬĸ舐@?}Yi Qa>y(cb| C VSXZU?<65|eا)!%`ogkcMEq~VjBLxhk?7繳dˎ}^HA|t7$qT)-gdnEI9V7^^K3#- 5yAy9Yj"W/~DRop?Y?5ܼB"2J*jz&68'W/_ȘԌ’Y%0 `AB*s3C}m uE9i Q!oO7g[+ S#}M}) Q!}ߜy/OÀ=%8rYΰsp -H@˴˜ܽ#bӲK*j@N\Z{]$A,`FG}fP;@6n^YYBI؈`ow'{+3#2f<̌_SAXF5*tA³9N'%oG_S2rʪ멮whw=U2sno*+HGQ8l.h_8(+IZ`Pp=~}l.ߐx!rf6.xЈĔ܂ʚƖ񩽹}>m#e./I۴?=162T_[U^R@puZ"+JytclC-#,E[GW;}bߥ ၾζƺʲ₼쌔ĸ _/G{K?/7?Ա~ƀb 1$%5' $2.9=ohljva[1OSDΖ.Lv6Ԕe&Daudgc}y>~#o"Q\ZNIMSE(JJ.(%inaim}s_p~ۑnx7Iqf,ǎ"tLA&:Hގ|K7aeki9>-ӛWXR^YS78<:Akoܿ>>g??>>1J -ɱ! E9Y) Q!~>xwG;fZTsg$l_|Ч)Xf0ag:u>2Y3/Ĵ|J\Z b0fO xQks֍+ Sc bk+KAy;YjBĄy8ϝe=̈4,a߱f| EpN\`Np;jchT\rFnaYU}s;Mtcڡf9UfJk`J+ sSMuU9$' D_XO'nCѿ L9UP:7419zxFD%gUT54ut myOHCkПT_SU^RB?5)>&2,8@F_UYQNZRLDx K}T/N9 b_HLJVӋaQ)Eegsobo\qeq~,xlomn,/-!"KདྷDZO(<$6v.x1i1 a y5 -no}Io0ȢGhk+vqJ\lgN1SBOGWRQփ;}C£b2sJʫjaw{ )?E? 4C:%Gz;ښ+ʊ rA'EGzy:l,Lu4++JK AecE?A#D6ʼn0"?$26)=?WTgî1UH,tEQiC.E{w)R)JA:ņA)&잳}{gs''Ox~SQswȳx?:hS&LJ;ۚʮ_JONruA,,X1g(XvDb?XP("v Q7Dq`4R݈Sڼ?;C5@52B -rs0צ."x":tw.]VϺ!6}cE%edT5t ,m\=C£b.&&fd\_QUu>>g39Dy>gV%2^nhmQWSYVr=?7JZJR|셈 O7g[+sC=}UeE3R!'yu^!Ճ{_@#!#; $261%#{b&MM ?|gt@cB5Wd<#wz:PdKǎpsFgb;?Ƴ=#D ))i"R’ֿݺ}ghé~[!1>CFؙ<7 Abomfw^FAPG@5҅Qo{h> 괰o@pXdt\¥WWh^ɇPgfqE#3km@џBчЇEZNfFjrŘ@?oW'{K3cC=mMuUe9)q T賠lk诓<;NX)YEsZz6~iyu45 wh,%U豀h8HCwPU^MMx!,PGSMY^F#$χh,X@@1K֍\"D5RL|rzVq$?AfA+}D!،#w{n77TS1*4H# 3:q6ƿnWlS/#b_HTLBYsu M̭l<}B#.']_X\ZQ]t Qb "yibu#ojNEEeL?prblNk*ˁe_M|)!.:2,8@WKC]EIAVFR\T@1^~>bٵ{7t ͬ=|.%^)(ih;2gm-sSGcÃ}ݝmMuU2ӓÃ<]{FRL4XzQOYDhH -h5ըolaODE HFHF7#Sէ#"#?6DQVzrBLD9EU/hFmb>!HHSTV=ghlfics11~^AQIyUM}cs[[=}C#PO-@ByL$,pP@FD ~b(WRc/Dx9;ZP;$/+-)&*|?an.6{X>A[ ht/ $*!#m`B#Z ڵj7{ǎ'V^JX:1+x*Y2EdPEZvFJBld4-4Y)qSǏ`;c?(CbFtS310sv6cIE=_$ˆV_GĔhB941zoVG u]s(.RRb"H1ˆڽ뛏hoK}#'E0R2r -*ZƦv.^aqgUT54BݿON? $Lo -%v@[7;ښkK -&'^ - pu431>Ni 1!*9?A]Qc)Dv B46N32vp ON+,klG" 4"p & -dƴ.ₜ+B|ܝ,M t4T%DPe4~h "}3 -cRFo5R=7!@}'LJ^lq91$dkij,/#b͡\+mL-cC\T KJ+ih[:8yF u}wóY~@$/{@2D\\agRDޝ]M ufAO rwq036TWQVLj cw~O~46G< &khjeA+95 -]wG<~ ;@ /?̙vkPj^/xԣcCw;[*K s3ӀɆ#&kef0M#Le^]~eҌ_S7m\C"bRҳ9~cB"#k"-AP[c]U`?/Ws~bC߇}}}9xpL8~]%XUeҤ "XE)RDTQz&(v:v=u.q[- 3Nߟ컟KHU5tLͭl.n޾܏K<s?#+~SK{gw}3sga07; BM=]͍0K -r`_L&Aq`gmaflHfu?Ƿi}C,5/0(8,2&!lZ]S;}ɾ&,+bXKڔ*+HPQ23TU%SdW&3P$`!9M<*u/^\CH}cC3cC%R/k1EMqh@|ܜW\Ck8?>쳰Gf_FV^AIU]SGk"ܿr?~M]cs[GW/ɛg=c> C5@OR5eF'ܟ[| ߼kW/?}0 [v|xҲgN -=r`P@?; 3Vlʮj"kQ -'khje.^-P8F1tU3}񑁾œ+GSo!{+3#=-5e,i+pKc~`x[ -۶x89'OHrč۫bwL,憺ꊲ₼l.Џ8y<ND;k 3c=mMu%^VFrN!>nN> @+ -/36Рq9eSVPXLBFNAY][ܚ[DQmvozҲoVmbAB&FkU$֒Ï="'ZVҲ)-1\LP}Nn>t 1gdfmFO$ϥyEh+8-AS-űap -6PbX}|4OѾbR꿃':oL ^loi*/-JB?0=\mM t5Ԕ x4B_}+@i+B/3?߼ NVMJV^I j٣ã.T6v ߸u#߮݋wmq~ѡ겢̴䄘_/j*bY -YCo\{I&c;>V!xx[(Bg-_RQi)0^tw_ND8 tt^JN 9B0V'B"Bp)`"x>߷ψQv2|de%5Mm=cS k[}o_aaOIMK-(*mhjm߼ٟcw&W>BW*ySm͍u5e%yٙ׮ЏBt`? }Wg;K3C}-uU%y9 ?/Bo{>N5Rn-+ $".+hX:xYKe4]o?~ϟl k'ƞ> \ۇ\3)%Ąx8Xl용p+[ Bp<2x4K[ݞ{E^t )*![p~ypa^B#K(\|tĉc|,D,t5},l;88yw풔4tḼl]=P 9rl2̜’ʚΞ, @H~]>#7WC|tx 7+jjyPzw"Z[ik(2R}>^n>+ -72FS?OѰqm0fxaJP̚[;yE$$eU5Ӻ5Lҽ J2 '=BR\ԩ__Qfw?&]][0 CQYס{PP"ޤHEĶTTDݵM41{a=gE~s~/Wsc}mu͂\6Kr>c))$%JBKJ.(t\ -;qډoq[Bl<^3VpOGKCuyQ^f* 'hcab('a Q; -7C,,t_JFNAIUMC[~`q)P KʫjZ;{zGF&Lq>U d]!?P3ӓ.?7w 7+=УPy{9;Y[hSe$%wl'xy0@; 4QfOD\S`\stw)͞p> -cY>޿{ȶ0콟~ur`og[Sm%]gqsdKmJǸ0aQЉJM]C3+{go#!)9eU%4615¹p< -[85?tcfrf\WUZBp(`H"+y ?e>Ë#B"eU(Z:&f6v.@ ݏ>u?+w`h8 2_~}H>!W/п?z~x(?'3-%1~@(NVFjJ -r2RvBIDǻ@d>WEx0^fDYdN )YEum}cskϽC#bR2rʪ`819u!UgrYQ|"MMnoGdKd -vw25դ(KKB b:,xYЉ-',2&!53!:6>fa$1Yl8X[Ao=Nvlv&,(@!q떺"ao[xxq|~A!;%$+*kjZX:8zAr<" -~ZfN~Qi~sۙC2`+FSe,?-gOп216:2:V~A!Q1(:&l!ي+j[>{泯J}Yd -({IګTmm(:{8@>6c}mu;ID>HM}vIƉ!OZFdcji7 z#wĕ l=fő.8 -s2R#BX,DP;|87УY\e!ypx>"?,$M a_V^Qghlfamt IYMosS}}(/Ӡm UE9i)q1'Î9EH_WKCMEIA>0YPHxӠ=8}D6L6.>"bR3rʪ[:ΏMLܼ}w.vm4 v5Ud%E8v8wЊ1 -K6.lFD;HZ^ v^#)h.O]2eaUXcO}q I)jںFV6N@G~2&.1% bg=[l.wt_^Rq:9TtУA@wsv036T(+"m"|x -?N>nMHd6ye5-= m~A!@hsжA -,Зx@^0?3RH}^?{3Sc;F M MLTX nI ( ;Fb~P y5 teڭ;GCODFJHI/b̍[ Q&ZgTO,1:;n\DB 7+=5)>6*xH{]jkpn-Rnr)Rwiۥ"E.@A " U"fwݘ&~n莫'@U+JK1T -Y}n>ggz\ǨN Zi9y * M,lX>!1 eG+8l6mfmpv7PZngoOdgifg3g -D> dmr &Þ, -:!-%h]`%/K 3Ã\̌ t4Ԕ֯]-˔QHb+W|+?Njy|؇?_a./&N"ShtSZv<ںF;\=AbR3 *x"pރ<}5@L~O+.PY=7c1طgĸm!A>.N֛M t/'ÔQ)$ q$"0>̟[ycmK.Y!*N`hh3hKʏWpzkGw0˓ܦ^0܄mN7$nϞ{:Z656TVfF|27υ8hd> A..Ae-Sg_w@ q0U4| -7h.{;n^LɊޙhJ"C)8lGY}1} -.)%-#z Z:z&曭m]ܽ|B#%fd"bcf[GWoѱǀ}$$S3z\7:}aXn؞%Íh6!d :B&s|o3-Ⱦ&ɔYf_PXmGng_mGp{rV׷9moW;3N;|p?["-PWky9iB]!lރ -C>p>QaQQ32C(A;S ;йʣŅriβFsќ> ?Vnb>Ed*M_t_M]S[h?pKX`?%=3'`/`l?4|ebOVgW''z r~ܬԤ^vhiࢿf$J!KyKlQ --x zҲ<|C"bS3s UTԝklvȃ8tPP=xxz ))ړ##9.*,9:y9): t[Nma0 q^IU!m=gWң'k]8߿{5{.?, EXKgg$G{9YDt ~I>!3!Id -ΐWn7465sdzx!G&$gfs7Z;{Jb!ߠt_lo@p֨Oi]؋ǘ죃y/ٍ?V}٘С%elޮ[-ךk d$FGm pe9Y[oT+JK14 -ρ"?[vuJi-m]=¢wȱ/O= ᭫woπ߄i|lyx_Anfj¶owg{k$jʄ"qۻ|pҐ :fߠؤ:zk{W6< OBOp7 \mj iYV546]miy06>*닗lu3n_n` aכy6-1624oo꿳 @p˖XP*kX0 KSTR~4Vnhb -:meO?$=?<݁Ѕڪ%Ѐ -e$+Y~*'?>}E}}q 2/-#}-=CcSsK;GȘ$Eʏ?/*, /͚AΊ(pt]ҫ4EPT+A{HQq92$}}~'gg?C/S$gh6?rTg0wn~uubl>~@ݚU>^.N+-L8T)ÐX&bX?c"qSPV341sr 3@%moCI=+EX-g:hZ>}B\gkcMEq^VZR{wDl - Z`kiY(/+-%_HY7c+@Nn:*H ¡˜[Ӏ5 ?x -;Zˋ2S!=PWX.WWU@ h9| h"sut_E 뾾 -g7o߀~$9Uu]}gσ}$ʾ Qwoݸvy|}Mu%\o tsq05fS(D!)D?l }|gNCo"/6w7:7GW/դNHJ+.ih9s~p']^ufo7pPׯ^lܹys}ۚj+K -AkH]g%8SD}ZBp W sh@eUWC(&P EPy2X0d\WUVs*Q(@۷l Y”N) ez<~A>1/AĺL2`YZwr%~‰܂ΞsH{.XO ~3?wxbV073=91!f~`}5sDI, 7oV+-TQer}Oڐ[v;%i䳯_WkaE{ൈp9@1"{;Yik)+0$̛˧ DfP4uXl {J('P|bjfnQyuCK>} شNE; IC808ݝ0ɜSV :i[0a"}I)iY9yZ:zlcS +[{'w/wwHBbJzV^aieMCs^1[wSJd'!YяF3PQa<6<8pt{sCMeia^Vz -~, }W'֖f&l.*}&%/@âOB`4?xg 8jj ݽ#w;]PRYv!b'OaFV\C8Hn yJc|dxڨCxX2)q; '"(8)tt]~*@G%eW4L.N\q=i"<)W'F.A$ 5yYiI Gi}j_/Wu(?L -ݟŔ+(k[9b쯦{0XRJFv~QYUmckGw߹ FI%x(g\o}ͣ#.hm*+HI:w~1[_OGKS$"1y?c}´V i-Ⱦ$CFg`lfw ^KW\R_޾qmb@XРUl}RkyWdTյt '7/u·F0%ɇ [C(!đt4H$Ŀ[wA>t/ u_QYt_[e`dbni~c=~2TNAIyu=XRϙ?x4do 9BW3xBF5՟8T_]^\s*bwEhgkenjlG%fGIϜG<.RK8YD8Z#ZOUkC7n{(>153`pdWO} 1-qPA -<cCu5Vd<w z֭rbkVVF+⦈<%\Hzv+mپ+)r -˪Q$às<8'AChȕa"҂G  vwGO[CMYa)!9ՇDa~!/ŐaʁtXl31vG?"9-3,% "Rς+qO娺] Hϟjoi(-LK>xpmM YTIїY@}4џ9>^ň/_/f.UTY24E\rFNAiU]S;+؂.l5[ap溪B` ̸-͍ d 1~/DH\<|ֆC<հPG&!$kP.NOڊ,G;A'p5Th̥Gا龘HL٥ -4tmGS2`_:{Iٿ}IrcZD}Tͷ(sT\wgkc]UYQ^VzJb‘1wl H ۀ/ǔaH },y?gLi3э˘Ui(7AA:RzUPĂEEQQQ EpvQgv]1&hvSI?ߟOz[ a`52Dbf]I鎪c';/]݃C3̅쫿'GP ?F@Rp'Z[]}sqAnvZbL(0[sc]27f8:|-TQD%/ڰlgMD [-:oE nw- -Ӓb#B}\Y[Ój?D&WźO`t&}*WSohlfamKc_W~ciYeumCS;GR< m t7?} ȇ? ?2#L Ual.RgG[kKsSCmueYy2SDB}3}5K> }g12=1⦈vƬs*|z6nqB`\:ią sACmA -6ﯫY_N@Γ3lԟ9KOOۏtة3t@j?FGIe0޺~<*?k+PJM fA@<Rv&e 1( H|Ov靆 ?fY(4ݽsMŅ9YiIq"? } 3C}|u5> 'NB_O|f4q -4tt Ḽ/] -IL-(޴ֶb 'M}1 2{p˝gN;TjGiɺ59qQB?/7g{ SBmܜqDXwga ׮m9y| 1֍h)QaA+Z/ZT]~&?'SIݟYsAUT<"=&}B"bӳs׮+ٲ07{OBCAV՟@q߹qPCؾd}[1}QQVbגφDGwdt5*W@BΊ\PXt|Jjv^va\X}-l1`#m4* -n:3%>M9mMu>W(7g,p?,%P@ -A e kQ~z34A>ȡǞOuW/k?q}P J]AzZLn؞RuJʪ_ŀ}w/̜MP)$=ܘWDBɾdIq"(v]pVҍ Ve$DxS_.qUU@bb4RN'dAR[_}B=CS {g7/?ahd\r-e;kCcq(l6Kcgs{݆=rp훋 rRcE>.˗.236ۊ)J*?D1c70$"6 QspyH^Aæ>yMlS8ژNKx:-671Pq|CuϾ_}O` -f%N.޾,$ -Z/\~ y${߾ ؞TIq!*9p߽;WӪ_m59Qa.NKa xUe%EZg`DZ&/%c>P_!jr|EyliE! Q* 3gꠔFr[œ1Q~q3r`KwTgvdrO=WL OzgOx>Q}N?|A\}ÂWz8#OA8&o̺2o wtvX' IHXB~Kk[y ȍyGyb0<E\`aq{B+M~%"$<<lџo~2('v[@Cs"c3Kx NH\vj@c8C"s`8#PA :Ϝ)s(LɼodfiqPXt| -=FG1^ǣ`G?2/>hgLc FTh;LHgD'<9g741[' 84, ddrWn㈐Cw("8#`]h?2|򅳧OЪ_\q%@_>ͤcQOfcW^od -spv -Gr[䶦B'CRaԀ - m;~[ o0̹وs8A}#GPycRrlQ}_W h{“/?w7|Ձ%1n>8wܦ>)Out721_%P B~9@$7f%f0@ӓI},.>3<#Awg%EzXon"}Z&EܞrS34[+ MJ+n -1ˍ;9'n鐰@'.޻u̠2R]mSqAnVjBtxpJKľ-ДaK}GW@CKGM'PQ@+ݎ7 (g:0>;LDŲH.\zA@Ă,`נ -P@ - -jFEM dژ5}{nf=?y{0}:18c%D{9[j()ȡ3 X>o ݗ؇̚- ؗ#gM-Aܽg/1mhlF2ڃ/?y}A9wԉK/E`kenbBS)Ӣ?Ix'RsgILv춬Ԃ ;<5ԧ܀?%=0i=CNYi!|'9MT #} kQo~3f,fzxAO/>c"G}AOB~ 43f'A@1$O$'qt`:}}bڋ ,m\=}h_`IYyeM)l =!!>dqx>ww߸ -niAݽR`owvl6}џO݂+)i豌ͬzD',w)Bk2Xo!!:, z%)AT#,X<;=).24@ގtb@|a,m]<}â+1J1Z1nvc'joE@З@G[KS"m Յ u~%xOKa#cb_򡮩Z`bneEd?=k٪#3@{Y$nH<1'/: sύ5Ue;l* dociflH[ HQp?I~tQԟ>tlS:( !>~ԅ n=AdX싌@#߶݇vҌ@_!@0&ܼc+ -< B?+C}ON7IO'qsv'ABvOoݳPaO 'ؗmjam~b*2­?tBynL|gJysG+.@>oްnU.>:RhkenbdHGS:RџOΜ%;w*ZF&6!IiYyXw;960긓'tL8e%;6oX2gIjBtxb;+3c pDl"Ɲ9߿m<wnL e&Ąy9[#")ɓ3c"vE1?g|9H!l%e0ԟ -QΘ/8<J%eU D]?˷>QNF 'Hp>-xqݪeYi0S!qQcԧo>tD%ݳi+w>h,nX܋)Q_1#ē'Qinٳ̞%)aA@1t?ؗB؟Ba }yE$4) 5)ھ{A j~`?}j*Jwl٘<;#9>:<؟zȋ9LFA_$%~G}!WyEe5 1ȋNqXT|ʒ+֬/چB\I BPbP'*'v@ϝ9MyI! #}]-u-D{ނrw*'04*>9{r| -޸I=C>"m%_`G[KSEu!(< =>>}e- ʪ`XA &n۵-º^tz[G[yG13̘\}xrVp(ÕGཚu DboU_GS]e"LVY_PП/%:"Ǐ:eH2y,1u>qHp؉X]ZA]`E7PeX`?|apQN^4#9.*4b:L}ϧ;eBPj.Pħ`0(,gϗs5m\1$I?Ƽ4mL^=gOsՓ '6", V/!|bu}p$ٹ.*j;yEoڲsO顊ZfIT? e*3@#ᮎW.]8{dݱཚçZJH^2ODD'MpTA^L`:yDb]n㖝ťVq|!~ -0zAyp]7ۮo_45V|h9KRÂ@PL,L}E0Nx=PhCcsk;ge".q\"޿!4x kWdy.276IRSVC$fH `_Dds."&.XbҲ &Dʫj_|&a7PQrE -#1QnV8n9J\r^ - rs@R\3/ PGrt},2_̒Cd_˾3$8"&!5 -h}T?uQs07(C\zsݝ7^n?Tյsb FNKDMPT7t{ػtAQ#F D H"B8ܹZk8&sO}D\̰W],gcu! cDϺ^,e:Nls k<|mޱQ:D]7;NPHR>rٓj*Ko^taЃL ' 9 գo4$ov|`!OsveY14&/;#9>*<8=78Y-; ,I[ -'{'h;p-5$tX -rr2 8<*T؄7!sO2ea匔`0`.W{\xv1*HӇ }Kqd'P$/c&3srqua `+npો((Ѯ$)@4pP '  -\3!Puy8s!bR/ ֶ>k6y~kЛ~~; @mAwQ_zO"{&-#a[hm * ؄ҳr0EP;4 JNfjbLd۹e/$EL u%<2K c_N'J*&|7ESh -wQaNP`aInKzܽʘ pc=>d2K˶k}WllT_R}Hy^݁?vQa#9nD}{N8*wi *$~`jl2߯Kˣ>3Ee|p8٠ϋ~pa\c6;i~&/%!}~G do?? p]""+T^Dz?@]C[h9-m`=8s9/i -EQ_XJPis9aת:Z.;kep"  _︣qu]-bu]yGOGDǧdVY:4Hy%'0 omy_,|xB$Y,A -QYGE瘚Вஷw>4N1W,sA1d.X^?g(ʴCT_NNRbe8b.;X}G%܁uDrEywռ丨 Ļ0 WXdk)ʄqcTPR!AA9@Q>H%,]\=|6/$":!ʫp.8y} -YIqÂǹ)%dI/+Ȩ/'}FA!lBk ? ,l}\|B A^tYNj,g.%g]~U nG`C]6&UӃ'*"4 PG!__W {?y0t81j'O3BԷuZ{FD}JxT\rz6JY%>$,a_}ܗ@qP٫aqn{f93M Ǩ(aէԅN?dOrd܅eF.SkdXLs9YO@ Ev(3SC])Mޝ\7h#UƨM8~_Q_F*`k{dA`S6K/ G}Rdb_LM};} o6Dt5qUE!'2KqxS{|ؤ+E5w~yY}cӫ7-mb.O,≲"\ϭ,NO -)!. ԗtRe볲svqDOHDtB%2xʫj-@>Ft {hR(_Pan~> zȺ"`#qTгl"%,$}I\YTʱ$JhwbnB񃻵%7]ιs!$Ա{wl^l t4'K2'~yGeqfadn`,M"X. *"6PޤI$%X -**)Rj4%qf7q}ygCDw;3bO((akY8,Y_~KJ-P\z>"b>$R>ޝ[M5W.gg$DE۵mӺ+ܜ,7g.'OoH}p#cL5`|SskeAkoގvp"6)53AmC3\t;x)`t bb7$k aE}gHt^=a~q XP?NꨔuGԧOs_CPq%(?'# csyƳ t"V)p>]Y *Wޙsx(6!uv?xGbQ_ -"/V8#L"Ő' -w2hhOg9|'NQ!gN'ԝ;7ه/B0s؆ȰR0| X~BkZ@+G%h'/bs/q=Yg|M|Jo Н[7dg)ސ?;.Fw߫ ʹPYG9wiZ3[ou NHI+t UֶnTY>]m-;PO[2^IA gV ; -QV0/08:|ǣTTss#@}{w߽Z à ad$ngBTT ́@5 c2s .\zO}Em?QCrK<.E$ b6߆l 6tj@*!ve7[JT<M%]!Ay>ZS&;Vvn^lڶk_xdTLbJFv>;5ͷki&FYv:[v_(mܶ3woH?t8\XXt f͙gjneDS~q5..b0 Y7ܗD}#?u&]|<\l(!D̊.2 :Te%8<deL3]yjx a%Tâ쌔Ę}mZzE՜6EU nW L|[wv.GĘᰀ{;[7e0]K (?0rCePD0EIJ/\L,]ا/Aoo8D=Tt  O(#T2<^ĒnhXDTLtn޾H~Ce .^C 9z󡧫HQǫ}Ve`#?c߽vyx m0i;TiGL}~٩@g//;=%!*;gHG$b@/] O& -P) }}1KSawuo=vVB}oeE$bntmPxXGdbK['WO[w=xxt|rzV^Œu]hǨ] ^ww7j]| 73- e7ы”DQ{4^eތs-qtYj-Nş>soJʾ}ġO//e% eI?u;lXv&F:j'3JVH? CBԂ2S K|6Dԧ>` -_ -SS8n솢4  Xj:z\{T=O+@^ST7 -pq0[0w =m uC^Jx>ۇCG' @go#}v:t^v/xkX) @J -?!2/9<` 2ԂodB'~LbjEʚzD}Ob곰a4+v}B}JQvKM=NSJJ`XQW^IYeTu3f7vX/o޾{'c2sy idQ^cwwo6U㬛Mn'鰩7Q Y͓а켢KWʉQzC M}vHbrέ/9/LJZ]JI렫''Nt^gz E}5P l GQ/*.-Q ) }}B_{y ?QoEM?%>gߑK.)Gk+#dS҃uLc~eݬZ;;tę ޾!Qq)~fNAqjc~o?;{y!7䄘Ȱ ϝ8mV[ksu/F~lX^hzL69=x^Q )gm_}XƺW9$Fz_8s}6kV=i8$D}:{^FD3ũOF7bMC7[l4$W/.cS2x"=3=e5-=k;'{WG o]!3!׊ b#Ãz?};Yo2٠zEj|5o3y#&XMK'ԣGHo(i ǔ᨟OMGO1R5ţaiެv?wY8j,Yjmn{xx:w?(V̝䴇O2򊞿,mhbԧ{rz`~ݖW/ >)qQiM.510ROSG\c ތOJ5~ָ?8ץ(/ ]:w܂KLJtm27//R%\ԗoř~=<.($TO>־_(cTƸ0R#Bh]m6RمJnOT%d'2r3f]PUCgkYmqtٹ{c' -/Hk_Ġ@_uN^rH}Ѧ]I+U4qFfL8k.($ݻ?^twtqbif~e5T.;KiR_FH㗈mԟ="ԏ/~QVQ]odKϸωc>daHn^v6."E8z{>'ܛPN __RYS߈nV8Y>'fy.@pYJ -ߴdLD=[l%\:fVԥs}dåQhPzC@g?y?4?'E_b%J}PB/]AoR> ѲyoaKW$$}^ܗvadeKOq0v&H}PVR_ I՗\qǃ<9Z1|jh6l#;~/&nzFv~o+D}, ȇonKA䄘ȰkW/;GƖ;2z -nD7dc<D1wuuu -Bs[~Bl$VcPeOt%XBԟ4y -V_nҬ hh/^rz#3-.;w?|$8Ӭ’(4uvO))ȅAjb\TDH3'locajj)=oLE"NU?a'"erZ~FhfzF^:P_ROo 㕋gO;N-fFºhkIa9yZ}?F̜|*ͭm~v,B|}T; L7upd,ɠ~X> -/f1V6X6x"LT1)rDZOȧSQIv '@1yw`8=Ro]~aF#5}9(f>SP5g>s$_Żq^![B}^R\tDHֵUuf]!iP(:cZ9_ ;q~uE %'Ā>[@}:c6i_Qޝԗ%󮚖.LCGO>rQz&Z*0Xwb眇}=x[P}^]7D^ujfއ"^<֝706u瀇'v+Nr'ٰeյ ͌xRT3RJblTxHu83G:s'FQA_gaQ\Yy EDUeqCT\PDw&F\ЀTQ@DDPp"4K7Mݸ"J'#sj&/}sV_oAcPㄏ7 2Cz~9߹qS{ Ƙ7WǓ -&ədo~GN -^b[wK8rag<Q`[9))!.6fuW, <*0`P??oeץZ˻XTRV)WZ=}>#cJ|^tZ[#k[v|(ެXR}Tn0.>Y9jfOށ>_0q67/("Sz:b`-}F=}Xú/aBq"f0ٽVkwۺC;g~A#H+39+ٕ#/޻\r[Ή.,_6ݹ}]lQQ>~\Tku#zh"j454d?'O>F6@ߢ8s|~Zh~>W&Inզ-Vխa#M1kޢ8[>v2#+'EFoտh൏>>TVUJ%Bs)IT]0H3}V{洅3=R ģƎ?6 <L6JP?Gs?~jRvbgRw֣CQE2~E^c: _V",wsgOM߷kkV.]0wbxxhڐCΡ&:{tSY9y݃xwi\O4."9sıCmY8H>h[:@ bR], EiZa ~!ȇ#*F)Gqc~3Oެ-N/b:GslRߛPߴeu5e_>>MwxcbggkP":V9MDdaNTh C^w{Bw+gٌdrrS,*EWV_WγdoQ:r;`܍δ-и;E+堾R #_g#rT2\3o}[} V_5YYetrɮ~s><ʭ`(Q7( pTpȨ%+V۸-fo\B/biZ5`@WxfBu:v9y@tuƑG^ W찋{ݿ?`ȰA!F̞P{~Hr鳹޸sX\ -Ƒ6fuW,>)49~-?ȱue۹ꗖWJ7:$+**/A~v2 >Ķ8mG酜L[շ}1c yx8rLHnغ_y1~^s"/043Dwn\{tj_@gGL4bؐ޵ mVc){1&a>wsg~_ֲX}}>t# q{wnݰoGG 320``_?/{mg$'A}qiY E||$~YTZZZBViT -Wdaߖaꗈy B}:iyzۺ,8%bEˉȻYW.(*ވԯ# t4}I-~iLG͘BQ ->sG9^~a#'lHn7 -$*ZgxioW}ÊHbH7HM>3*7ꧤgBN -@ -Y B10/"bOOq׶6 Q!տw弜3NM՟9 ߬WQ0wpl֩K==}:| S"̎:vԙn+~>֯E~\I@tjeUT"({K3Rbcm\zŒHȼ)ro;LQ'M`57hϜ.Jp:﷫hjE}{YPD8ywlU͛1e¸Cգ[Nn.qeeYzױ% ->|| / -bP$F! 3+2va_W*deΤ1&Ṉ̃]}ۖ0-[nR H}xO6s.r<[yPoi@2M<59X>oR}}/\F}Q^Oد]E߰g]"dDCdDZlܙ'O;z٣[n_8wtmV-mQVV_T"-R >⢢d (*EJf-}>dz6~GEu_q?MUYh1  --6j*(, ťj&uD}X`fMDvU{ofIsϹ^YJV?wjwu7{ y\.*>9=+7_,Wݮ -wO~?>=vvW;k׬Za[Y#S[~ǦNTBy+nЈD :PA[GWwK};>7/+=%^,-mk@ BUg"XZVI}>Jwk#B>YAQ1?yڻհ}/^66/?tq[}ρ#ǃ^r-<2%NAHohnE=!F_~VEV,xl|􉣇;TGm?ԟoYZ/ZӶ;y|հؤT&-J Mݗ8!={ -w~r~ųAei!D$? ֐kPꯥQPTZVЮQ*dB~r 1J# wWdB}d^.ZJrH}]f/9:y]?5WB|@/&F]O;M>NKmm-L@}C}]D>ml>m2h چǎh=vIj>N5ӻnnKDE̴k/ :~^ne1eN.V}MրTNqɩLV_R*>_Ws8lv.6} $0 -W VdP ŋ뫃C W[oW}G6z\=} wzC#b`x _Ԃy,W%mJ4TCc<ݜX*FmXH}Ssꉳr -eDR~cݠ¡u[Gt:_OWg~]aT? _ ԯB5(c+dR|L>a#E);P''a G+O;Z)GřP_>תRQyq'L'O՟ϙkfaecnz)͘FFvTVqUWR.Vz"̴8ؐar"N+]WxZacX+W{[yރ_|u7W/.CȮ[}XW/)oiG%X}FbLDh\8'ڷkFpX3z km Bs -"1E_^&|A|VvVVf&WffVv6+'G Oʕم&-ʰ?'W~|A>=y9@Z5Yt0+כ!eZ{4ؿoo -U 'b4:ϝꋃ{wl^r9V͜n՟3z;4'drW˯q7RֽSW4QӠ>4]!+-)eg0bn|?߹egZf -%XYEOӟ*_mDX# Pդ2TXR$㘏dfYy}e -a:: UԏDˏjfb/Z5_},O Gޠ!F'+Wݮ -uHS_`# `10=%!o1y]j Oӛ:'Q@Mﮩop#WxN +,*kCjRQ7/iqS#NѲhE5X7(Կr= >_}V" - l@~zZj*#%%WJ -#5 7{ v>!'WoX՗'EQ'շ -Jh3f665__}ρ#ǃ^|-<2.)-3SP$``@4|}t;p쭩@ys|4CU:7/1 - ,llحpZwCB#bL'*kM_HH'*AǏ Sw~p aدBA_~!ρ)ONJLL +11)9gfr7ߩHJ}<]XY:ZkiA:K]=}6m۽g._ Õ%ģG66Oz:u5Օebf11!Ο>qо][7~i^s3f0QF#'"u &fH}ܴ?45,5 O6s?]A= -JH(!l rsq\775=k.VX#w QSX}G,P_T"Ke}p}H> 9?#-+66.>g9 ȣNm]}csmݔT' .2M235)+Wc{kT$ .e`wcy}^}/`nM -9,478?zȑCUӞ:Gg7xOkaz A?;'&DGEEFF@EFFEE}&_AMi;;+j*z}^ - - -Ulm-@ I#C-Ze;$rpHwvy}%mrq?? ˭$fg0jvӴߣ - J3"j4|u48tir %28yⲪzISk{g7?SS_G{P%t?)ଙ.h%/0B'syE5BWy,UvrCK5_FeO3B_B_~SSXLf2&F%=}jeSu_ZWէ?t`=q-Ro-꿇՟WrGS?@sMHiw(J Dfz_$2~/Hjr#Ӌo5\vZ2J twsurF[Za'{oنAf,ltA7SgAfZV.oniDfT>ס'swg{kSc}mUY bТÃ.~5ޕxWPC2'ѐz'e&>%#}=Fx:ȟ3|biSKۍNrgږo2ԇ 'y3UY՟{ MWDuprus#fv.jEP,@c\8pFSŘf)Ύv6App53]}}P_q(78(<:.  rLInnCgM'GdKʰ2T(VA0?NRcPq4zr?-#+;_QU#H[;(DIW\k՚HR6՟yLsL-V^y}.GO~IOJ7HwܼG -<ͺKma$H}_?JpP}#M N'7k aWع{CN)y%@7`'>Qt,]T_*Cy" AB^.;-?_o/O8ol͢E}ZA K~|n.ɌxZ,5&:BPcF2+5/)kh\'}ȡORU7O}yjUlz֨?S@145_jݦ-;vwg01|L`Cc3"PHj\? #o<}Ľ;w /]Lf" 419OF*tZ,'<""2*ܧ'&R|9ԉҦ6epR}"/^/5W,ʦZA}gGjD`՟?gE/+'(.zD}C>%ׅ~scR ?;3|G޹c˦uO?>[ OڅΛ&FysG>i״V^\/LI/<~e]V[7͙ //֫?ťU5u>OFH#GE?M    DS}njyU^B.< iWM!|PIRwV^7?*q68c 皐lcQ"AaQqtWP\KZ;SS_5xc4[] 7_H}@0P8 TS-34slP?Ydjb[l8qESɩV_,miy[r(spݤu; -/֏յBQb'Я CGAW/ G `ܵZV;yG$/7>cron/V_&E|nV:3!vX}7Wf^z'a41be+ltΞ;LJ+kDP9@۽w`R}iWHm-R1RNMS# <ݏ8ںOp nəyc%RՍP/089/˰cX](W -M 8DZtxPksg׮Zt5u]gRꗃu"(hEu~~^HrR@@%?$,-g?+'_XRVY]G.z>_բ򍩯e5H4PJVV( $Ǚ0H}k;gW7u @~|f* |6 !9wz2Se%ө@?_o$o%9ٯ4sd TDcA1T[r&bl"" "{ ,/KG1 W, ⚙3|3iǬ.ܣiv"URUYq>5=9 Hz:ZjHJo\d|qa96\U5 fX_SUQF+ϡ{yzA{xzG'fd{58B?0O,|TӐ=ww]sFY5uUPنCO7(<&1-+?D/+]ǓG''WIn YM\r:5-ۃAR1Nz+P UkUx4VUZ/zO,;m @V\KL' -\]q~A,ťtvؿuD=( -Y}([OIlDbF&6iR}qjj RRҟSP&W=sДbE'f>L(oཞ@M#^]$VNh)nWR sZ/w@hT\r!a=}ƭ>ϦM? q9lX*fE:P混1-M u5Ғ¼Y~|LdX}o0 >:qBHD d՟<å. R/*R_5N}gy $$/]&%z-[wf>#NpԏOɼZPBofv?z Q+!Vzw_U^OHm, t4~PU"_ї_yH}hxawr5L ;z'o_7WHgO<v4Tf&Ƅz8QLVe"E"Zژ-k*hE9I(xyv66v྇i?.1%=;'wg1U'dQfNZx'$_AO D}㹢/ޝ{SE_'(տw)Q,ϟ9qUi v˖,|'4 A͝|s )94onFݹœԄ@B} gf׸UY"R_'fR -Aj> -m`>hnl,/-.ȥf%'F軻v6VVJ/械_ڏ/1 S}`8>1ʛE},#Y^IϳHd\r5PGaV ;Z\>#;A}4:H}d3745TJ -sS#Bm(,)Vֶa1 Y(WT71ڻ`?ix/xYǛ>8f'>(~ϙUX}E_~GO蝻ddnN+.mdCญ&P̉'P웉/ I -Pа/%:Y9PaYR}ߠԬ -P ԿuO,Ǧۦjm~9t#orꗔUT76L~sc}-''DNv6V s33S(33s ~HxT\b*T6(ŞE\/?ʥ>{u/e9syh6lWT8tsYٻxG&ebGf htxigq]t9R&9BCu^d eV@m]d(ڔ >}zwGkS]Uyq>5#9.2ol$kKIJ_f>~.G}F+ }+JзXA[{Fģ_эwo`'OW`gu9?Z]R@~#jJ* -ξSd_~'X:̮\<{\m* -r6#_`vFS]eYq5= `mntI_a}vUEdB®R G`45UW9Q?"4֚bafjlt#cS3 5~&{/kX'AL RHQ PP̾2r -ʄںg/R=@ԬBV& RwW382տh,-NKtG;uH*XURA>/V9|6Fְ!IԼbBk7n?&mt[՟2n]PܩG؃WQv ;G)fCf>GrDl"x9oaf_6ep7m]ܽpOHNφ7˫黉G|>oHG_<?pMPPM]0̼X;{ML-,q%Ɲ R}";bD[_by9 עRlW赿8i?Im=RB25o> -BAVڪĸP\=8|s3s>z(*aQ )yPAw \g!lA}/˲L @ˁW~ ojRm ΜM`0˫!y=pepOQv@}`֮RZDli?P__vڦm_CoaU?-+Pس;82g'9d^+Ɍ$ԯolBw`7d1sғbCPwsur|SSpطsp&~phD٤܂^k'A8k哾e9Hz9X}y%:[v=CSaOHlfQyUʼgWⲃo*N -Am3R_CШ8P?ԇrJrjyH^6ׯ\6)ˆ&F6Z+K -SqwZ1[Pl]P?~&Ϝbؽ֎ ãPn V>ī/&˲0r -X 7{4XP8ʪ}X}:8 ^X[YVGpu&W3Aϐ+Vku E"qUܟ AWJS'yqhݽkVu"9~4C4Fb귵4(+.HM8|U}{[>1op*,*6!`˳gW.qw>y#'AnWƒl'K2;O7]*ˊҒ8[jk6 (ȳ՟?'~JǑMd xQ?sUH>Vߖjj߲QE˕˗*cp6E(R髟VTWfPUZ{&<$1o\i0}K5*~'C#cӳ -K+jۻz8K}h]5HrD߿!*,FW۴ ߯}Ȁbamx:-,}Ł﯎ݺsbǏHKU~v:R?aGKC{ݹ} BRϦ>w9yE-H}zTzPGĪ/cˋ٠0TSC{ᱠ>~,GY2;PKHv~KscC]M%v*)O15|A#d qBl-VW_fDWݴ M1"IH-F߾{R__%_}S ص{)ZhP,fUcF\9>q<~ŵ/?v_ԗHN6+K -1'|TLcG;oDDk76/O!F{?zu&ρPտ?1~KC_'[޹cg}?__Pg>8On&\,X"#Q⁀5bl_Pޑ"E" HtDPbD,oxcxwIO˙L}.,BVff>Wcm@}Lc9%>zl-a?"Ѣ =B"~|LDH˴aia,aS_{3s K*w 귟oki>]_s07+3=%1>6*<$0>b}Ј lieMs6\U`B}vKMׅmjDD6t6_,! 6k0!R!5R"XS KO>,:Tzǚ(=T?ƠҢ 2o9S_U^q8qt8RIeةY]=L-MHₜiD r8|.d0 & {K8t8x|܅7H+ɡ~tJ -}h R][/^Zך=}տ5wbG[scmeIaDgm&+/SXO*+谑m+U[6rT}(NEYRwu/`ηmj,+9t`_tdO7T9l&OL6 rtq rv ԿVW3Qap]!R}].Zw( ;uVB%ˌLi, MHJ.@}{杻x+9QK£ӵ>q(@6o\gj+6[_/JN=yj– eOEEu-YzoEȁcokmu>u' ʫf"?צ~9BҢcGJ puCg`>3Xl._(vv`Jzfv~qyu2BF=߂ -C2 A}9f*0Z76[a4&OC}LPRJ%Q¯A+:J )  w 5_nbf?n&jƫ~mV]~RLCmUEɼ)Q{B}\\6Amm}::%^~A!wO<>qJdT; LP+o>?("GHBk;W&S?\H}$/UK*$0loXá?gRFw[[ȷUcP;P1V@͍5%2=\|}WZPDTLLZ%>nbb|pf`qBG7/ԣYyp{N:ŭ*; yL.Z3#Y%c_[KWoɈW/ AxtE햠)B}P_`aI5r15&EԿnomn()LKJ E<Pi;қ>UgB귶49U^\u4-Ȱ>>ԧ}(,O vv p(5#+dF~MCA 'fw4Na =$NH8_""m8υQwz\SxwH݅\# ԷFꯙN1Boڊ }dW7K*?=X|J}hGxOvd,U,ocƧ~9Rw)_ Ie3Qշc>s9z c<[XZY}ԿRo-nS}uy1/arA3__D/giuke"sH+Fz}S}KWnB?|TO<(RHg:ie@áeYﰴذpq P_7\،P@؄LPK^_ժ?ROm $T}!IF!':(G⼙ IԿ7!ˊ rg&.q:pqP\P_ߍ_C}2fDzH|6f-׭^E5gTby֕}mjHH$շg;%2spWf-te@}5W -5(#RhjlbC9ȢS͘9cykh,E~vAqEMbzJ.+K6G?~p=U77cT_{8 -PU}kT /t##c+W_m тi&.ךqсcokbjgϞ9Daӕ}-%H#,_ib_~eCg t&CɃ+SI}ž^}UB}/-ѠS6~*~nn֬klkDQlD^bfa)*1A b,A,X")"VDcGQ1Gf0#w2O%.YN>mG7_\UqWet:YukY#eݕ¨]~ -L蛚"RVF1ەc[&P?",4xƙ\=>bIJiB=p(KBP(s~M|B Txg{8+mdf3A# ȝDOu<5y*|pTQT -rҒA5+-Y8odD9~.J[P) }\ttF1yc1{ȁy3R6ZF̜ds׳;3b4OX -Xt9)B6yU&bS6U?k8ԷG4N~gs9k=~BߥSs2ӒyYYNb؉SgJgwN;7|e5BǜeHeEF}{KPr'Q_*gꛌ4M;E%KJ؝O/tWƩU_Y~/qMH9 - ;Tl FRTO6t~_/wD"!K-Q}wo9A!ظ[▟=ęѫ"`_4'y+S*}O!m?;Q+7"ϒʕN~`ȢU1~zvna'o@?T U,|PsQV8w$zZWO74&kneK~s|Rj&_rտ|MFgԯ~RodMrǩ`ke.TyP?kg4AN_z9;K@}sT݋N}h\ݩ{-9I]Caq '+=%!6&z@_t<[N2a(C'5W]he_u NmIA O9ys'g0W1{oO~] oԲ0#,`c^V}^~ɩ9EK>[^߹{UuoIkKhX#DTټ}dշsp/$od4.m4xV;}[7eꨰΚ1u#H{C싹n~Zwf4r̄)MvDK\aKBJw7Q}j QOg|f*Ӏnݚॸ:vZ{{Ma{AyKQ4Pk娚Qߛ+c6boci^5iU#GsVgj2QeeD32U?,{T?ը{׮TUq _gNg܅{9)2 xקeSTU;Uߐoapt,Ӳr -PYIxheC1?'35WAae!Tg]4G}j_ԗ6JO;v#TFFa0N}q9Z~Jfaτ,dVTӳs?\Žw?]p䏇!xYlɢ4&O3h8$n.²kc/P3 %3فw)Qk|h㮚jwMU-!_|A՟:qPNe4%GNWS6Y}M/3Y~4xM* 5 - L4\ݫPkoT/PCc>^аQ~j"Tly%UUUsԿGկdav6p9btO0DI_yv`ȢUDtP5;F_<#ݨpO퉼>JlȨÉ"]pCZ$ъˉ/W;y*} g]+Ξ" 54x.\H[?pu[:x%9v -ԿV{5è*QC гUrS_zÍF@}'NXP;,πŠ~ؘhN}'C~Ƭ%Oݸ_xӪe_C}.5շo@_,vP116Z=\ _ .0 ~ˎ ӟVdܤ$斶אX ؝G//7>7o6RWLeCP _Lwb@PZ"Ũ?vr;'w^;V}AkC sŰRp|@kyԜ?cQ\*P?4֥s5w7oWFjRf(lctuPXc'3166~O(Rgrݦn"BUOhP9;2vEK9ZT[VߛVg E?~Sɧ>5{aG#j@귿m>{EWQ9}HB\LԶ𰐠K;;XBx(/'xqcF"ʲ/Ű CvNn>!Zwܼ~BB[r"(5GR.a,z^yѮCQ-_r2~3"<,8 >P_UFt/rsoB}"Ϟ袡eg&H<' _j+}s*M(Z|,5oX:]b[C^``Hb?ˤꬾMI.y[[gCOV Oaq3O&rՇ@/2cWQC)9bXghL#J= @}3Pߪ'*kD>GlzF\4.l/dA9ȭBW,e)25*ƎA}!,"~K"h@}/Re_hHRŶ ԿDޠ|Z}ez_z66o_ ፌCf~~nVpnZ}PdCK]EQ:Pw~y~2V?jۦuX}}dsS1GgW???8[Nڥ 'cu˩o6o6}]mMu%b?sMl]0?E=dbc"nUƳ )e*n4V}yP>VǏ̜<=ZJ}gGR"R\Tp%/73 U߯Rw';WߞPɊW>h*袩"Sy.dn:+̩cGDm B}83gLhAM@XXE2ݨ?AFEo {2?㩳9=V1PWo"~BW}w'Nꋓa7K+*[/cTJַ}U > \}<-`O}VQ|Щ׶V*݂:U&~O-vDٷ23c4}d UIr2a hn,"ި?o  ع'T?Z~}F )Hs2S@C>WA6A{n{R?-3Pѓ.~#ՇbD홗CO 껃Ԟʴۓ~G~n˫(e% CeL^/-M24 }Fe# 9 3?u>j8ں>Ұw>R}\{LC>Z;8%?H_PG߻ͯ&/Ǝpg6TNP_&S[Sy5Ye?h7d9Zj*J -e'qx:? /WTQ[Q{2O7!Cx_\T@cW/Xh7d,C)ړU'0ARB8˾룖eoGGM"9-37ixie_DP Կ|^O@BU/!7iceHG`e3٧էnmnO<+r[xXȚUz;;Z̙9cXCYwGM0?JƭP??U?p9`՟BIOcƊKBxU4 g5qt\PGR%ں޳`7cT_@cm=U)QQ6 eY$}ࠕK`C'{K3c>˾f_e_DG#G170mlamU?.OBwBS?~ΈྪOI9?NP?)>oZ~}?>!U%VV.ԧ>`!Tٿe?}1Q> -M6>Uؗet$e5PoN:2WꟻSq{<UP|V:'o)LGo -b/H`Q^5R=!/QFo߼!$PߖR_UU>]nvA}t՝~sϞ>~`|ȭB֬^ڂd_GKCMEQa"bٯ(<T%kU5J6&j[( - -*\5A]edSA@A肕{fgz.kUoľ"E}]́ꇑ7^RPW|!PIifi*%@YXxM?r'T?B1/DҢӓFjO2 ) 4눱̈ - \O8:9hckɖkW-[5d2b_tl=L-P$¢bRnC1CHۑןq8y[t"_ʮ)~Y}Lu iԇ쿣'Uf[351ndXpM/KXIGYY05ټcw (5I}?ńmT'~zRRP}Kө.\ԏe0 Hۃs(:UK W?dOQWPTQR~i R{`&$ľ"Y}!TBzB}{1hnO!;O(foo kbGCK9$:@f'5uR>yҌ:nU90?~zJ½>^twsu>p䠭۷BW 5q%~zշ؎P՟W+Y}A,!$?oά_aï)|9>w0`S /;3-(|A];VXNXk*#CCk[Q*I}N),LPd釩o@ɩ߇r9T振uEWI+&P9oZrbO>zcw|c]Z\ >3%o{*` Jo"_LWu=oBzL~$ n?r[b W)5ǀcB~ -Vũp^Ɠ2dw7"$H}:K^_O76[j#.{\Tp/&2,Tvsg\N]쳲?{7ٟ ʉLg7!""_"l%C~aR )'ދ߸ ԧ^x܀znuUa^vfZrB\LDXp -? ?M/?(TYUV *I]:ڙy!5>-4m͍uܪ -viqܬ$F\tDhPMPN?vo+ ľ"EIS/1\W$}mPT('0 iԇ-O y1Oq2}fj#6:<4` Do_ȫ:\};WOaFITۯ> -݋QSG;L'?uD[(=H}z)c0yqkk*9e -s3ScCoxy\rwsطۿgξ9}uE1m45Pcc>\}=E@ T嫟꿓Z>Ox/y}ྟ67s+9Qw ހ_\O:9 _Wgd?G!|JUp@a"ӫF3>x$"KRUiAK`4 y}=q+جG3X@ޞT-MjEOoF>=ۓ>P^+Q}vi_FU_\.'^6/A}~?xOZUR{1ޞW.r0؇#ߤR2?<_l|=%R_AKbSAbwTK eg%'Dv}[=}%D!IlfJE}MJfŲEH}-R_Λ>8d |d" ?"6q5~\B*AKc}8qC~i[k3c> W o-ξ,?B74Wr?gSc?^nľ=wucꗳJ"o/2ԟ;Q64#GRr?0};;pYT?Ъ5eM-CWDk4H} eg_ǭ 9!/Kf_HƍZGw#8H}IaB_t65гvIG+-үAKR q}~UU`?>6:\2A+12A>6E&_ۋ?D8ľrGHR_2|S_Q\y/w"'tT((@AXDXY16+b![&crzKN{3fwvvv-?>o_'a}͇LrLi՗ >ag4bb3~,QK,D}y3S_}[c_K?]~2  ‡W/D} Q_%%a;?ɾsgq`M,Tw#k)&!}t/@D=D}mUE/baE}# -TonLM6R0쬵&_pKὂz>RѱC쏖e_ELXRAWBWXͺQ?"$8Wq{CW+?~w)s??Q~~O6;H7$AWjZRQQ_Bٿ%Q)eOSȾLW1F -gL3'˪+mX1_/햻D;7o`~fO$sodG(Շ5&~ϰ>PTL5R7%oA׫aWv쟓[b& bn\췒e_󇈎g+T_%cqm`~NV* oc:VF?9FaQ1RR^}X -M$YT{}R,?~w?oC+X37!i# -dW 8Ԑ+6HQ|՗X`O V[Eb?v_ _ٟBЯOxm0*D5Y?$?AgWHjf6~0?Ú@n\k|S#~:P?'!kM o 7g*QǬ|z }onv}3Sp" cOP@i_lT$~? V,q_N+ꃚY) $k3D}JXa}}~)}qkfQ+~28~(R?֜4u_ -Zz5\+ҚD}} -Q_7S쟒_i=dт™S'c;Wpd#`D~Vu=7nt_/- 72OWCN=B{9b S_35IQ_E|3AGCߝb߹sGG{[ 'ǾV*T\}#x0G0 )Y[U_iHQ_sGzDGR'a_BomeanjWZ -rliMOL_.QMDK{Ce߸bb *M}c#R?ߟR4__|3#ϟ]7PߞX>kV?]uWM gN?ZSS?wTvF*TOXOZvD}/,fEMgBES|<ݺv`g7;AoH;}%~H~P\@lRN!{RϞ;v`C#0=\o -f_\߮% Jܓ =ׯk(.*?R?N'Q_!k+z&0oR!q wٷ473)ɱ?L !PߣCpߠ;SNJgp >TkPS_PKO wwuԷ_U}rSSQ&$Nկ:xb\u ?W~][ % 7;zDVfZrB@?onr07ˏ}PRO(?x8O(x͗/PڹtZLTOkjfwvED/E;}X7'XgVMS#RT3ĸLm&@vD}m pfeɒfO;:'+#-)a}{ -ط0>9UR|CqTN=N1yr&՗_h07q ~w;Ohd/Mw7FFٿx d;+ʶlR_%gXFjR"_/w7.)dmiQ[c_׳PޱC9ۀ@oC/7kI~^SZ^+wVМ@/]8wSӠ0aO4ިg+$†A?YY-`bx%EsgMϟ2zؘȈОA"Ow׮V@VjPnP(PO5o@CZ.|?|`/C19PA6L4T^~Te?ī}:w]Zy5Bn. %*KɑH7QhNL!J٘dvp]{e{߽oN;ݵ}}O>V5a9;Y1`.4 gCYڹm:KiSSV=sǏ3>LO5=Z!!=Rn]SoPOx?b1RnEYI傜 ]ԟ1u2X1ꋙ}|67Tc S 8t`׎-n.k-LY/Z8_]Eqа? TOGϖU^|3YB6PVͫϞvbkE';3A}EU >i=~t\rZv>RV_|HBP?䠏6P?_MhRr{(f7\[V\z0/+BblݻsfwWg5Ɔ+i/֜ /#%$̻z1r cR2s aʸ՛0z٣חx -Կ}jQ~VZR?!v@Zu.&?9|q|ݑ[X"Ud~˫kFKJ܌P?<$=orْElP"6P у{̴䄘S!ccifdRW}%sp&Tobak~cHĔ>G7r߼R@C?V8KCX}hPR]}-yǮ|IiYR?(?׆տuR?,W}7g{k P6V_NT-F}1`%ڻwn,RT>*"DP>{vhgma33Y}o;p= GуIwX·X*~^VjRl!l XӰ* @U,SK[Gj@]ߣo^!kkܺ~073%_A} J}uJiCVb}m-Meo^|1?;#%):~{w{na*]%|a,} Ϩ[ bQ0GX8l䪏G/Tư'9@O`V0)Orwਯ{'#Qw ԇFR7({S5JPSԿ -=Q7DCC\'hki(u¼ ё9”Zo@!1On=LVC>"`xa(6i AD>CP҄'~oT4zeoL<.ߗƺҒW/f%DE -8t`׎-\!t-9`~oŋpZ}Ip2<ؑ~"݂D/4:ϣƍ8jbD:jQsLQ9PG,+F}qwݘ憺wn,Rw ~?߽oI}99%rBO}4#$FI;aҔCzwH|~umCKO1?|G+H -aX_SLI9U7@WW͠_|3Ύ ٱxǽgA"JA}[}y$*`#Q~9G4VWݺqra^VS!ǎ/k(/+L4aR@Rf?TO㨯BԷ섙D%eo}U /AGx{nC[[=GpP?E؎Qo<R~MKCm5V??+-).zG[+SR-M Utc$كͨQ؇y3~G[Kc}MUyiE"þl2E 4TInL -r x`"fZPY[}3+;'"㒑nL}t} _R|07#%`@Bر2ر_/T{9O9z -Ri]v$GsbR))ިI!mw۝& uQr{fSs{ߵZ7<Ϭ~[W|54@Z~qa^/?{϶d#A}Fd;;[>ynɭkWsx t> Bl` "L>;=y,ʪX}S㲅V?"K˫`!~wLPPB@ gi7[nr]|=Ab$>:)V Ys@z7nտp)&!%#ʵXGO[ ߑ<_RW0BMPhf)M#bNʌQ_C65?~x͢$#j}]j* !J4n ~VDxPR_KWoA;oHhnr:~_N]zY8$SoZǿ[@, zw-N/~|J:~P&ԇB!/Egєz o25s(20K_(q->$:AzRez@@O{:lEy9P8}ƨ?PiExM7X; #n`BRBOCZ|B~UE) ,6b5)Klt:^pҡ?}O"tR!G t`/0֒n˖jj,ǂJ3!S&MQۀE44`BBaZB[ȱC x<ր~ piov%^5їh%{ՌbaQ'e엕@ٿK ;rXPݻ'YYXMe<%I _EΟԗ8 vZqzWGos@ ݊5`S?}PE ߽g:å)ʎC2$4"̣)!EVG+"s@KΝ>vAj Rċ-;l3#9RT`\!o*ը߸^m(1.*qHF{&%H}S'N$è/T_P:7wrտIm<~۠ԇAKFm-Y&|V_1CU̗2JH}MPg^`~/߁FP?#%!&"9zi/VWlXlB}Q3[=è/M,?_SUqVQ!"-щCe%h -KQ(՗eԗ|V_Em R7 VbdlBx6y_Y~Vqaoi)Ui7S^nԟ*0Si:V߄elr& -o)귴waQP)%7_HM -Է17c} pOez^kWs3y1aCN=\A}Ԉ-Eo>C?>T>^O./\clfaL]X$l^&޼{5b6op75H8#}c;ok oԗ?}ԗ"-َ|!dãҲ -~pTPZͽ2~nfjbldw6fkVBQSACAzGb/e'Doomݯ,/}:{9o[&iՇVNĻs~ÓUwDntąsЇx{7Z!8'PXU]SGg;nr+ -p/F~֧xP^_ol,Te(>!gǒsY =}?C,ޯ{ּ귷[!~VZR\T8{&G6ohʨtEP}\A_>homj{H_\x%'3->H=>\6Xl՟0?R_& "G`GQ+M?MNa|eU )˒! >MeׂM]}T}oFWg&F^m2k*u?fzmoi'2 ^>T67C,ŵ+~| H'̓Vv_2K8B+ԇt LYVlXhn2/;/?{b㊂E1RE$1tPb @QD*(PQquhsNaf?x}z~޾ n}ۚj+@}1AX -B}:WUZ+u#*"A}:Ws!@}fFvdm흰dz&~o~}uݒ,|dޞn`cA3 #E:RRw Y @4JTB^GZǐFM_SA# W >憚ʲEyLx^.9Mt  e gIA}YB}EB}]#S.^1켂e5 ͭoWxPWPb$DG_%շjfuE> -T*>īϕP^a9x\c\$!$$GKBg$oK75F"P½nܼm;nWuݒ?^A}+zz۫^G}&{f>ԗc 7!b!zSKʿrͿҕo@%$Ϳ ?eN_CpML{}$ϖ_CԊR_zGF` >y~S}Me‚gޮ|x9xO -E~H#=B%uJjZ;vYcO^ w]h/Iߎ>vP>| X)aϞ:H} /nڠ^S%S۬׫oN g/),B:@޾/_[6oI_rjokAg&^UF[KSC &_"lP#f('(C\!K&$gNy8u"$ϠԗG=cA}PيVSVŎ]V8rgqɩ~qiyUm#xObԯJKy '~!VwlEBPo L,lv9x~T|JZV P'=h&k>4o*/-3S@gN~ȁo̍ah)<Xf~E/5y}@ |RAksR7r̤?[[ ua5eKĪ?RE}Bz 蛘[&Շsf{Uu=ƒ7|Ý߇ޝb̴+?&1?EK,V_š>n6luRKD%կ5G4K5 sTI(P3HB;75VA+0b$^ggt>'{ ]Z>_|)//PS)Ǩ1!$2/ +B#! cOxOOq8ɚ`FT&,f~E/%E>>X PX_SY~0?/;#-QDZ#:Y:;PS@}93g𖃠ZsPded^^Ec@q1,":>_Xr^u=ROIkKo;wrh O}+sc]H}5ĿODdB9R}5.}cs+{eɩ}l^TRMa~N+%>:"^ 6<?G@}~=5TQKID'ݏon(} ;x)Ow{lfmި(/]'% 'z -hC h7Oo ~EWw cP?#5)syoҺU+?¿3fΞ._z&glfeㄏ_  [voYUm#%U7AzaI+l#!:"lJ.J};>^PvpZp/)*b$^s8qD6FCHj#D% >8T^aՈvwT?<2&-(]VQS _7B}wK_ԇ3)vt3#=ZU"-/ꠄUbPZ%Z۵v|/]Mbfd[ [-{%C( nANNks} Ě\v:#!&T>G[KSC]mP"ѭ,,qN|PE/5QOFBQ~魛pDAOx;zh.0Ec -ڌ>]WPvCj=/rP;kdJ]ܽN LCW4 u"ܽA J`^v:318wMt::VcuqnP%ԗE+#8~~BJF.ЌGݎ ݻnˡOv62k@1"Bp=]hFzJnI P_4h"՟9$GE}@%tomGQ3?w.4+3c͛4Ԕ!XQcv\[}y @ .Z#-KQFSM-i>KJ/]^ 귢n}R޼zNG:ښUwKK9 ._Sܘ]}edWgE76srSk 9һU涎@WC#ߌN>.RڅlĬ,]sStuYRH}) 쎅vI?w A0ۚUwns?PPZPuU(r2kWCEcyhr՗(iSͬlݼ=u5.)=ԯe6pd~/~-Rԏ>}O޽X_GyR|gvBKS56urھAxP_Kۏc"t~qAvzR(B}hʌ Qx"՟G?2jvYozFҒ¼X>Q| -VAdBfwr9W0u5>9=nem}bs_?K "qsғc01wGN#=j=r.#ׄ=rD<sӆ(RC[Na#!oigT-YTz#ZňlE}S&uUeEVCCQ-|R)]A-# h?`,&@˘(ᷫ~!ƍ__O7G)U_[Cԗ-iO59yp6pڼV8m贡iN@=;~pw676~<>"՟QgGЇ÷V1=7+->Oԅ3!ǏDQԇ_._Wmū<EKZ|u@b፫}=!%#^RVQhhn~?0]U|)~#ޝ[EiIq1"B]hFzES.;oЯ,E 329ꇄE%eckll_Vk ̔ё;=€*PçEٞ_fHg}l F{Qwg{[s#¼ث#υ ->v)C"X{"Woq*H//"&.zz *6njsN9'd,khi_W#߂Z}u -4g݈:rp߮:XWRA}'߹/R;PUPRUߤgdbi] B_5Z3/(fO>{oi 2SG_qׁH}# BAPԬBj;\}\Ad -ϩ`c]5_{Pboca2ξ_{_앛I՟ger.rӽmȚ"՟;zq ?r};:Z[Pux>Z h-\!P_Bj,EIUCȾ>c7f;}?$ze_yPU_msn<ۆ{7m9nFmúm|}<]hFzJY5RjSƛT,߃пTϨ[v 7+-9!6&¹S'?fm 5[P+OX[!aQL}92RjjEst(8>vIiE+khze_WM ~sOLIgV-Zpɯ_j2\?YÜ_&&ν? )t>? ߳DH<֋Ĭ,]ux9ҬL:j9 -M!~>=/+=91Ȉ@2bD,s!r3x/8W -P_WѧY:::~6L ݐ- C;Y$2T%Q]J*Jb(ZƸsLs_|}mce>^.>%# -olwv#0݌ԇϺ;4ݻ}0'35!V_^yܜPK60sB ?SXZQ}ǝϐᏳVh94NoiDd_8u|=]l-L 2a^n7L՜Rhjܬ)ç9v0$hNG[+3cvM"K@5A@P4Eb9%:FA4vGs'}X}@_^9Z*O?a9FF0̡S6F3 OmXXFчwaՕ׊ sd&/s"phHpoW';ks=m-e$EYD1kAϺ1Q0ϫ׮,YgK;gwF􍎃[X2usVw9f{d}!p_. F^vuL, -Ǎ&iAͳ7MOVqM7vVzB|L_?lֿ]Ϳ|Gt17G+n_<s@ǂBH}ENP?h/GO9)9 Yvrp?}{$v_OtLAÝ[5׮e'cks#crQ!پsT͵('wn\g%Ɯ9y˾@^.Vf4]m-uU21F0E}b+('/| > ү䍛^36T~_H}dd O$UK޹o&}̭;Gt9q%qǼt޹G޹`_nkQ/'Ŝ:vp_^_/NvVzZ[Ueń7 -rsnXnTԟMd8ϋ՗٬C3qt| ,usOoB-JC72PHR_AN -ÉG<&鵧[W"9yRr -H}=C3+nF_7өͿ@n^/+ϾɈ MgP^nRHŜWQ/E9~B?h{=\-L vlQm&!A(A[FEYXǏ37/gIy%Um:4 ['WOg4u)UuwO>x. '-V6,)+ΉcQbR3r -JʫnܾBE+ g0&4ݻ}0'35!=^nv,&Y[fb˦ EC˙9%rSKngVƤ>ȖǶ|.jbA#۬:X Qd$\<Tá!{|v9;Xtk*++.*Q>l˖AR||y60_qZ) $|u|'?o8Ge8oCg qތ>tլ[ ⇮o%‘&8o 5TgY yR/xQ/6I"m-͌hڀf)q1}׭]賊RL/q^BsBRr -*jzFfV.~!#O%eVܬohjma2B৏}ϟvwӛVdg_8{P„+b‚>OɞL`P_PX Wuh&h)UuwO a^Λ/ ? 74UޞGoT^+JKs:2PH>R_QNÅ_GJE(JEi&B t4(JI pq|~-@EhWZׇSI)"AQѱbAU:@)+v IB*.JpGEI6s*y>d&|9H̕UF-_ebfe+ѓg.D&faݽHTw~?R/m qW@cBwo `mnr#}mM5P_AN/#e@}5Mm}ȼ{sݡ_|ԯmhnCփݷkݾYV{%ɣCvlrw63zڴdޘF&c |. B__GW%%fKЪ?ZG}|^iX@sk{g/, 6(b\t cEVbHWH}^0h֋ÙI!31P$Vܙ?~&\f4p4t7\ ;D"qu(;l/"ao_rXe|@_F -Gw/d> 82r י8xxm'ިx㽷&^Ai{Iΐ{/l2C=:MUEY ԗ@>_wB?i2?}$ -2aon}4hұp MKC7%9Qp߄y ?oO A})YOޏRD?ʁ. -+)@#HAB_7\iP͢b%jV1Xbz .mj?uRt|rFNA RɳNP -;[} S>R&PZfjb ȁ};0,Mt R:¨B#g!dt]}cS3UTq߇'BQ|~ueyIANFrBs@;~ڲu5+jiJ2Dho|KhQOR@?P/ .]>0WI -D'JpWP};~脔܂>!g8q=?Au̔Oltu4%˰ ->Ǩ#C#ЦDhf1 )D]}or2B/p+A׍˨ 808 7';+3PHNSd"3gL#SSGCO GDݚ˙/& mO7S񨏊yڌ"bsJ*SVQ21wrg -9_MJͺVT[?OW=/}K[KC-R8?;j\ء=ͱښ?E#{jE25RR:w5=;_҆:w;V85n׋Ӯ]`̕ZvQOG/$~;_sw@_KC})3מ[9l_oݹWFk¿qm?/wѶ^Q؅Þu4mYg](9PNk`uu¤YϚuuĬI fׅ~:Z#5m9?Q\K"fr?}?np1Ob-I.f mb?uRt|rFNA z[ڞǡ;[}ۅozXsZfjbL3'طs/t2C]*#Thg/'H}AɃ~XПƉ -}Awҫ -K/^77>ojmx y˭G7,w^CXz9b{|eoeB>tY_dJyeUtt,mw{zG'gdॷXzK/P/JK x$RcNm&kT/]4_>?Y;7CX|9?,a}mv;ًp'N3IRyV[%9)WB=]ľj -+-Y(Cg?;U {}=Ϻ~2q׏PԗSPV޸YQer,1ՇX:ښk-Qqqu67߼Q[sV6o.ԟsǹѰ -*8}#bS3sn}PS^pj\>> @_ۚA녹R#._8s!/wWG[ȭr&7|+߾yR ƪe.;/ň~PЯW]FVrqol-㦟~w^>>:68Α1 wtB\bڱ~#ln<>y>(7lg -T'Qꏉw&x}ulP ՟ -]&2]ls غlAtUĴqgW8+U5n52? 8ڸoAz/8 5EyYiIaΝ:vw.۶lٴNK}ҪHKAMR곡?~c~FA2'o0t_R ˮXZ]k-[pr{c] -_\Z^QY>Vۈ_p1H:;ZݾYR|4RszP_I'#%)4R2(z]CSK{ݠG'gdܼ}OOC {ajoiEg']E9x`vez-u"B"pz=J}A2/Ԫ?#<̕WXyЌ _\rzv>Ư?v>j+~>!I˜9ojjcBǝ=w$^ +!xx_9yșLD=J}gC_bt'QXc$ 32upq -SPƱ^yϞOxqrH՟''v9IiYy=r 9ۑ֦wn]/̹}3'rwq27ۼQ[SMEAχ#gNgO-(G7D@)G8xh*PT47n76uts h\DtBBܸ6q QVPn̴ٍĘЋgOD?J}^_P[- -}L,]JiM[ LnS.E&eWT4KoT/BbnMܺ^s-%!JHHo󆵚j -+-Y(Cꋉ0_/OFa%i2Jye5t̬l\ -Z!˿r[+#VދʊaΟ>~nN-M lZ$/ zB~5.9=;{-]z ?}[/}]MuUn,)H - - `cifa9V/_av?}DN~"?NF?M>&3^ި}GC>Oj1}qWà 3»ԟ3{/bQ3I3{'7 cx{}gNy\`9VplTSQ[t|3DsQN_FxrU+>¥o O}TXR^]v|y񼽥YЀw=]XYi۽ci 5Dvx?ևRBW o&ЇcHG+Nlf黰ɤ|xմL-&{ KNR\VU؂/0,8^Q`R0?'#9>*,wqKS#=)q2Zߝ?'E%zݖ!{|rԇL~lӪOt[PvP ;A~<jXJy'QgȪ?2~*4]~- ĸ)P/LR-2eH}n> B7InSPRV9}#' _+g1 -X>Z߽skjݥUVZ#e/9-cw?ތwNxkcvH_[]EYIANFRLDHP{eKc!<5ЇH_/;[j*"SINQ7H}7/{s|톧PxLBjfnAQiyu}RwP/]}T %8 W~sCm峧f%F<|1 ] U -Π>+xR[!1]oz<^ }d|GC;ۚ+J -Rc"}n^qjzjXJѧW{=2n-^hsm͍~YI}㺫B+T/H=l98E޲Uq^5M]C +Tw`B"ҳՒuwp 7[kr݅C*DLM qٟO5; '#)Qh?7J!"˖sY˿Ah&r -J*2;r*,Ng:3:=pSV$?;=9.*4y;+KSC=M}wl"- _f5JǯRaRv'WChϼlkif%D|ׯ3Ž{K{IEV32%o`hT\rzNⲪohѾ͡'hA%`WGkS]uyI܌ {_t'6:u@EyfMH<_޴D?rg|_t{a)9H֎miGqHO0?'#%>:,8-Czϣ_: jf(gE(ro@koi,/}$?7+=9!&24.lQhC.w {̶v@}1Iz=._v/1{=h9Qd,Mu "٦?ϛt .{vn^# -&C?MVёwh{_u?oomjB?JOI G\.9AfK&e}Q -iأ*n^>Aa1);W76;z9nxz$fVT7;@?6A!)y{KCm%0;=).24[nNl,L u5RܺEZ\ϻO| :/*.-Uq^UM]C +݈_[mC 8R\_SQZTsh[eEgӣԟ }~?5YqaA^vFJblTX$r"[YiSaRe1/.44t L̏!yVQSo5bgط@憚gO?JKA9_? 1/QSӓş1ćOOWgI #COⓟ*IN/8uam(gSꏍ*UeWg{Kc}MeYIQÜĸ({ˎؚD_C //+-I`ì?`-f_c%1?cijzV6vx\v_1]r>͗ʮ'QvO57QeW^FJ CS>^yt9@}> B"b2 -JphYN>:u~}ӛߩ:IO - tqKS#=-}wl۲YbF kyVsS/Pς>yҫT~P[U^q~nfZR|txH-()k#f&}=;(vfH_Tk_vgU)S"dC2<'B$2c(2gLD$\-n:g|{o{o{95ٺB}Gz FW䤃CPV b\G ߒ©zO}>ؾζƺ̴بWx_locajp -87(G벰qpr\Wt]H z#w:ԣ>zSdԫAKGkoej\WB}+~=V10Į޵`78 WN\˯u* -s3X~kү#.,~ٳ{qߺ©ODL0=>6']+JS@AW=ݜl,M5UEz30=glnxՠĻEeUu>z>26>vtu.<aB^noij)/NK v咇@} AcG2<Pb&Pi@{OPDBZNAY][qށaº}_qnvzO:=Wz'.2Fe/wWG[ c}-5e9iq42Q8@D}J՟T%0Ǐ4Tna17xzsq43PUЗEIR]",ܽ.ai& P[Ozdq[_PF ޿ @o^⼬;nas0&ABo]Sفg @K 4 |05!QZˋҒ=|v'S >}RHGGt47Uf&F - t|Z^@_X87Gpo1F>L1^D}fCGx1V101_R^NCu~[Eu)T>~x]AW}=/u17RS:%+%.ˆ{Nm x!yгgdn@xv"h<;ڟ/+=;%!~޿s25PQ:rPU©OZ'1A}MEiQ^VZJb\TXj}1̌ ~އCsBi0/ L[`HxLBrzNAiEmcskGwW} mm]>0Fd|l$P07#%16u:Xj*H bcO.շC{`' &` 'fDLBJFNai%@OгSh d - 0=59> -v0'#%bz`Q= \8R+1( bfGMUz -}PWK)b‚y`g%B/,Z'8B&dUBKya5?Hnļ҂䄘%53%qhPLmෳۑXd'gTo{dwjk{H3Dvʊr3&wWG c}-5e9iqacG0eFFZ r/) aB{CK s3Sb#ozysq45RWQ=F };poRCRDĥմ-l]ݽ.FI+󑱉ɷ3s2E1xkW.ys45Q?s QyL{v(Gy'X~w8ArϨkX:yE_R^ ;0L70 v>/|87;l Ӂ']mW+Js;֍˗<ܜl-M ÷ N}f@՟?9> ĸbvVfFJ -'eE0hRg.Xo#PxW\^]6- ydi[0%yy b+/JMgaEWBZtw }#»~q+*۷j÷MAԧ1;vV:*w{wbl|xp/$/>t!jtIK'D޸lomnb|Z^VZBTH!6NVAv8$eU4t ͬ]]PRQEw ۚErѝN@{EywE]twu0RS>%+-.,63bb,lܼbRTm^ -ߝĻEeUu>ߝ/8Xœ>ϻ8Xj*H >|!6pӣ>R}A0՟TZ}<~xcqLMEH)ɞ"/QZ=G,)mڑKlCT76̝{o39<9?~[6ympu]gm‚>{8~<ԟR2x,ќ &oۮ}c]H[PR^Upg/x6}㠺6U_/+*~ԁȝB|vVP` tT(̠ݖ A:Iz| 2M]M-m<"8{;B/x,wlct));1Bu6bzV^aiEuݍ֎NDg}@c)<UeУꊒܬbps0Y}}ͣ?3(B!;D5d^徙moP[U^\s N9Z5wZcC=m UeRw$Or;~1h1νH8}fN~ʚFh<vϛ4D57Tgg¢9-}6np]olJ:w Ǐ/(K>cCaiYA<}C`ra!} 7g;+ +YDvA>*= Zd&e-r=-;م\%1sU&W-]y03IEekog c OC{K#k%ӃHCǏSyd#:Kx@EᩏYAq@+J^K?}pm6Нm֙W} P}QV} -By*j:FL,iNtk .]-()m{i8ɽ W3RΜ<}`ODxtZ˖.Y$7ј_?*`kXmjic?8,UӤkzF]uEIanVqQwo fXZaɝįF|GI_U=(oT]K,fmi -U_Gsb~՟1_Qԟ4L!a%h}/gVThj>{?OJ ={`&Dҫyӡ E tsDxxk2:> ;~7d]0>bH+'w9 Ły@v Q1ُ>? aBk*f_߲ٗpsv0P[ -qƪ4FR/XBJ0*;¶]ܽ|BwD㲓VNs?8;q[rvmdНhF:j@}9@}Y| B|Zs+;GWo Bv^qY[5mӾCeiz=mu9B -Rݣ?%T38(~oJR_YAIyDSWB:um=X9{qtlbjfnai՛w[uFC0Ɇatxh;ۚkUe]H;sؑvx{8YA+i ńTp,Yf;r -XM)&eV]kjziwO{GėAϟR t#w5a)Jr"9AHl3>ЏdZg}4yOMj@}̤G>Y62*.f.Ppt!+ Pw;8S4d@} -"CbOe\S*+sdIUy -JH.8{£NKH),ro6)(=eVWks㍆:JЏH -a-f r4{S>M"-A:0.?s>9b~qj;^m'QpGP}@@}H;7Td&  ڷhZ]-5U+I!fPIUȢEXdt -܃GOAy-{_VR)'GSG:,[,)%RAY][`=D~SPRA~.#ckoi@+1=| Pua"B  O E"b.z:zl K\i^.xIeNv[6ݣ '|)$eclԎ+?Ba! _|ԗ𓎶 cԇ`/ɞCSKŠGSTۼ{Јgb2s K+޼SE Qx$A<~xRV} rRw6g{+3(kVk;8Ro?ن Db(8&# F\RZV^QYյD>2>_>~b t?1: .תʊ.@G1Gb[#14U'}HNOM 4*rP^:Pa1ё`dOXfPjk*ݺt0J\AmL}؟# ,قs'++oVzt!;]s[8L}G{EҢܬĸ3#&fEC1oPԟ:7,9X aQ rPu:61 |v1 l@'O2>Gtu171B I Ee0>E DP@7Tz0p._O7';+3cuz1-@ԟ;̟J}< -X-p-_# GWOEFǜOI۵ -=yS-X,y@n{uwn^,)LM=ov/(FQ%`rtt0F}JIMKGL}AHs )9%Ё_j|a1:24j;|96>y_NMKo| -s3PE'H_ -JAVQ;9A}1S\Yao_miZ9N?qdlIڪRSABL/r1odjni 1;{<>)bVnQYu}k=}~#c?lwn =~8rzjr‰#1ё;m1t I̡`CnUoQA6 1H_Kl8CYR N1\[ܬgN;|`_dxH&:`V+Aq03/'r@9L}9E_M vN3嶁+θ0 LM0w\uy#.f m ,R xQmyH+*ۨETAaĝN:[XVUߌOO/8#v:S#,8%TGTDH(?lR(y0 "P_4)#+[KS]U|3Sq1{"Bܜ-L t4T``W73VF~Pnr>Q8g/d5Q){ɳ/'^Mb&Zn^fv֍+UePA:ػ;4~P_OKr[>v>pn'0m]FNAiemoW d3؟< Hb^YUk+L-m\=Pxn[Gw[CVpU ;r۟n ذZJD - rB o xU4u X:>.T6s?Ļsd.'w]^nF:j H)AfAꋢ>-Dc}t}H^4Td^LMN8y}!feKL`Q>C/y!QE齔S[v? qaN}{Ɛccm./ʣ R[}m5`H,ꋉq DV)SV341 g/.?)Do3Hr38xݡ.;,L 5T) NdwyBCYQA2*+ b\_]^pOH?NaVYIBb{+ -eҲlqq6q^si9uMTQϧ^)@~^ 0דމ.?L 3LDR`"IA -X.^( [ፄ=BO0v9bX] -rt07 dSqXC;o%dn}aD#aG8R#«c`ljne+rI)rʪ뛁qtE,d(Ub$2ۈ@wgЁ?lՂԗ!n9!!}$ꚺ[Y9{A'~`nwpdlşw8/+=HL4(ն-*֮Fwc/ZGQaA^:;`HO'e?$dx6KmkVcO`}JdB;&EKqR3Ė#'q+jZ:}><!{ !(eq̖dDNM@?vWG[kcMEIK-g 'r%Q"0M}}KGܒ:1pSӳkZh#!FnȑGr$S#KF} £Cl&|1̈́y3C}AӨOVbX9(PYطo^oP3SÂ=\lo512PUٰЎKr }F !E8)YyD8U m=C3 *Q^ &*cl'(EyYShcinjRS^%"ܽo&_.Ll\=ŝNJI-,oz^l0 "K"OUiaNfڹq1,Ł/ϧ-0Qg.FK(ؐ{P" -H^ѫ%v*זIrgp9֓dfzֳTeL؛_a/bƃgL琹&_ζkزȒ}OWG[0]MJkV"d"rs)b 8vu_OvWZc GW/ >[R{22ly;p\Awp b%y܁W[ϖ(¹koTWQX%Z>^QJ -PQPV'ޙڄ s O92 #fTW]YVGn m-?K/7ǻPG S-s -zW.5ֱe?>Ug S#}-׫(ʯ\RT,sQk)*ߨkhji{#)%5}7{(tz-&Z@gNdypopMՔDWb-d;A*@*V!?hρc'NVT6u߄g?/^O&3>:~s%N8q`OP)E -h6C}^?ܩO5K_Tٯd?.&2l?/7';ksC=֩)+HI_ -_H `?GVwhfm}Rk@k#bg:CãɎGǨOpcC@}>vw4Z$?MkqxRG,Y).:L,lݼܽ?gjPU8C -s3Sa EYiIq1 /bBf:xs>UaDL*}Cwtu236݊ +/B_H>Ujr\bIS|36qp b@kO|bfܻ3~rS}Meyq~vzJ⑟޹@g UE)|r ܅ - TvTӲV5\mM@{ڮ4U-+JONTv.TU }?3R0Ub,%eܬcGG?kci@GkUb}e ؟M=nxa +ۨkhbi捬ں>7ԧ5ɷSVÏm* -j %\fq 4(\@kՉP \@㏧f>CjT`~I*N ou\yIMՔJIE,^ /!8C}.4j"wCÍd6W[k_ -r2Ӓb" rs05ٲqZi$JS؟w+ Fٴb% 52s s U䩂Ҋs ͭ;o޹pϡbPǗX[jF<#pƕK/ XzhLVf4AҨkM2/CSK;'w %: Phxl9m>P,=[/]:SJrb p 'eJ.p|c?32]^zڡȍu5ۢl舃|=ݜM UJI^) -9̐gd3nDqtUTذE/0$4,p|RQFwޚjU8AIujJ2kVY'Dx\!L4?h!2r8 [G7/tOt 4uXt,S3XN 'P];\m,L tlX$7-@c?3awٟ7wot]|BueyianVƉ];}<\̍ nްNMYQNFJRcK~#J͒ ?F 1Nˢ>DƖm]aOFƞMx9 Ϫ'|$P1P#?vnt3FtPU])B8-?崳?BPAE]s cҲrAry'rF}$L}"gg$6ܿoC;KS#=- $,( M0c=3Qwx죛_n uwܸT_ SRrp_K3c] -} -}7ҲJBj:jO@О1qNuB-@<*yʥΔp@pp23JSڥcQ6^D9s9AvNE:~Gc| $`Ο=aZv2:stTVK=!dɾo( -HF$Qķ,YB.Rv_KȒi63|Ms=~yӋ5`InٸN@r5G> as0֖kE94'Bxy:Xؗ,h2O8Q]#`2f~_టNIHI-(.k7J*KV(/Bjb|L@?ョN&zj -sFx;h -ZOZpFa1IyeUu-] LR&.![XR^SIAg/ù#h -N,Zjb)P&PHO#Wa!(/D}e5O޿7~fc}mUYIa ZjSǂ|:[[hilUQO  -o5kf٧vO v5 DťUqLxFN4ڬ -̶.1[$~O36zgLZJ?,~VUF+!O\U Ҡ$ V.`FDǞKNȹ\\6~2oѹ<{GhXWUV|9'#-\lԉРﶷ6gM&@ Qh&Hr ]i#3+{g7OCG{z GO4o$b=qk4 MtDhA/w@3 𣨿 >\8WLMhmi^WSqJAnŴQ=\m̌ v +H -;ؚ>U?Sd[# |+)ghba?83 )9DMq(AB' &z*^aڣPh=8Yܱ}EY)qM0پc'w,8< ["⛖ahcifPqAhV@4_ .& #߲ϠN%Y8@CH^W'[KSC=m6(%" N Eb!<<6:PST}y'(l5M-m~ P7clI3Sc#C憚¼ q1,4ԔY"UgD$J$dUյt -l]< OA"2s JʫAVfi3 }>>GN32tfSCmUyIQ~N& }txyqv4ݥ +%!&]F  -}T_ZV%&-oln۝-Wa/feٗwv-gP}0g r3SDGpq176RWU`['ȇ 0O:`1"QXTBZNIen/\rZFⲪk73w>LDA;hmU]|.6*"4A/w8s#1(/>ϑ߻;4vFc}mUYIaLZj|udxhpV%y)q1~@mf9}9e7Oq Q_@h=VRVAYMC[ѕg3s -luG'bH}`[ -a>ۥl'9|`n{kZ{5%DPe"y9x4Ed$v8 qG"3'i) q2!}EY)Pg=Re"SLNEE,Lj}?zwpc0RFzJcA>]M whmQ'^Qgǎ5>r-/ZfUظxxdL|bꅬ’Nz i/Tg_Oٙ鉱ѡޮ[ W/O9~4s$` 6{őυ_H%ZR= 9y*.1tF&f!,4zW[ SQZ9 9loEfW% *\z}t_CyY`F{;Z[T\-.;:}m$6lBFm=U?qPQfX\AXLBZ^IU]SGa;a[4]vbM>\{;kRc\\w4TfR͆AݿPWK]MYAFrFk0֖3ƭ?b"X+k$kh'_O176 ËE0:*J HtDeǏ,ԟ``M Vf%'/>q@}r%vXo( ٧?㨲 ݰynye5Ml.K ;՞"M"qC}jޢYQSrZBLdXpr* -{%DoiPc,ObEojEq@t q.t&":>9=ӮC\UlCWr^fjb y.d,[Z\T:e^/y4g>x_H쿆]!?2<~zc}meYQANfjRBl cnF2j -{eEnްdl31,[b*[J?k P =_TVUH O"s\ăၾƺhN$ԤġꡟUvA}d9'*Cpw -I)jzϞKJʃuA@=Bԅ XqPomj@1@_/7tQ%(C+!!d%D>/M٨?M$3稹º鼍_WSYZ~톺ZJ{`f6 Iemz9<ȑ&ʟL%) Colnep)=P.65ԟjHe{;oc-Uǎ:21PUy{&8,"!. Yۻx - [HΞ~8c " hj2r162<$5$ ]͡ 0ԟcw쳰p?4oqj]uE)ĸ舰f:U߶?hӳqY4rf KWVdg.$?x㧈i0\aNקT >^>cFu\k,e1X#EH[B{#V/~dDpDD32sv >A: 1fH{[B.tГǏyvm~e= Ex;AD#_hJ}};tfsSÕ¼dA<\l,L5ԔHvGUQGv%SdE%dHZ9y -=_TVUH8dX&`Ll_w;l}MEqAvzrBL̾ MEk";y9\FJZ됈y Z:9~"W563'w6`txGCDvVfza%#-J؍ohţ?Ge`c,f.ڪԤب̯77Qߧ$V_h'/>MШK%_Pp,,ihؑ#0HVVw)6 u4ՔwK߀=".yDz>x`W{#=[o\ZW]E~~p1O7g{C u  GMz9n^DuUK - !"χP2Ya#Ds?c wSԗ;7S bm-2Qa^,7W:h.[ ԇMxFЌXO0,f`+רkoٶ}[0E(ήA2%gop+C8{O*Ғb#BO= CF- Tef)qP3@((.\|jD<2N IL -Eeo|1$)lj$U9) a$rwv(2УuRSV$18؟R_7G)r0̝NK $π]ې7h-_@V,#8g1 -(ΛP°6.`c$R3s De`涎[#ꏂ&lkiT&SbϞ /449nzƗO˪GP&Eʎ#\69 ՗$:oש\$c# !v07:DmLq?`ZnwؿRW}H;+3!PÈE8Sq,qs3)b4u;wZ9y  MJW6\Ͱ(Na̰4fG9wmt=6 3!LRHQYm1l P=6ur WD#&_A;b`Jӓ}x{z\3Es<._3b.Y v8~ E49{>gB3׫>8#66ixR/ɲOQZgu!ޙ*#'!kT=%fop+_у!ׯ0OO ={˃ ,Tf4VWVAS(>{LRJlģFQDLb_ 1>G -ĄzG#Czz,LM&]l̍hJg$9؟R_ǰ/^aL$İ$Fpwq4E4cQ |bْ$b9g38[2byU/[edqe\ `x(K^G;Gݝ7Zj+EB?-1&ܩ,676ܾ@OG ,|9w($ciE -R"xobybcҏK}9RL؇KcCZc}MeyiQ>Lbl$Lf` ܼi5XqFHi2 `qQfje_`pȸ’Uu WKOc_Sez` G9Gkoe^_W[21t,b$ݦNn UHWT -RUt VWЏU(^EEQ U U0T)&=K{\4ż}75UqQa0af<[ hFp3ԓN WV[Uk56n6غad+ -`/TT_ne/({]GjIeçC5 EbdHlN}e+nH|ګ ,2̢"bӲ’ZfAbOT*t"F k. -rYCJEQܐ Lq/c ?zpԅy) >f(u)}-sr~d+ -2pJ*+V[M/d|PIFl?0 _ ѿDyjCmeyPOK8w?N2(zį4J}1NwHIv"C>!ãR3s 6u )7~i%EU?S¼PhH?"';+St4.RUb>wz\˕a4샥vloE(SY 6'X&\ AwG[KlkfP~ROsXl_krzv^QŪ+77ïe6>G}wv0d=:ʊdzF_[vr]-y,wc n*/hF4#e0#5urv()-+xs5D[D$FoE""r4ā@"K:-=-ueȹf4~\uH8KJ}1D<v-(u2Ϟ*=.E*춭 3@}-u+L}n?U&U}y bVW/Јtǚ:{=yY?oȧ?~,댉Ο'G[cS#1 "ԇqfƥojmvN.>U !kZN4-J}OdZl Ҡ}wz`ʐ!d$FqLԟ`9OXϧoW+Ř o[S2r -**/V5w^F^߉kWw' -s&B hG>`L[ 2@}O"BM"FZz+Mͭlv{E/.T][oF^oF_BvWGkS=3̸puⅤP5yyquG}1/1^{}P)PPXTBbi~eqi -df&C}Zs6zAYUtWB (ȲnrPܑc%,y~1&>"ki$ZYQV 9 nߢcS_ߍfa7bRRMSx8//ЈCXJOjtCrوD![ ɑA=ښY(=)>:"4r %d+=?)joi_/. C ?V}2TUC[p dY]"'g#Ů:{b@/[%bGz;KK'1locjt -r2"Z.GLLd_{U }^7rr NIr}sy$2^8~Jd$g7t#kFkW``N%|%OPWH}Po\jO>]+(ՃTTlb\ةkZ:n{(-xC]o6 Qx8 R׿gJiy:-42A9@9Z1iEc28,2&!%#=2/F))ڍ``MJ -e/ -acWTabsĄw>'ބ?\UԵaכ[m߱/04P|RZVSg\Nv0[A5?'#9!&2 }W^H 7WM5# ###׭Kn^tbYyX5lrcrdh;=mL9:]V|8'{6P% ҂ JN%|%C@S?y6R2~R@hiq/,0KjZkbх`e5FE_CLX]!<|vJғyJ@WS LANf0F\~Oc#4(,^#sr(.15XaɳUyW99849I>+F$'H0' '/?S~>N6x!FuHP*`Pd_xf܁8}T!z!%1. -(ǣG}{OϕWVQ#jJwoȁ#ag5vt߾h'cCo6߀:s07",zZ*۲ Fo EhR̘zf&s+[]GbPWT^ojk2/iG׎G|48/ۡmXH[C=3ARr?Q_<3 L%Xh ,ƺj)@!dPA+2;-(9X?ҳf󼕨!l?(,2przv^Qs\ps~a0lq(/HN w ~UQ^D *D%34Gyc704":>)=YM]aP/( (i=zGu5W/VV$g#F:j˖dQG} ZP>77Րzx^vzrB𐽾^n;dX2nEKTUFLSxN>dSFQomoEbFw' &_(yE NeSovac% d0|oDiScG᪵&fvdhpQqLϰ{|R}33#v$M~t,3H1#_O:4X',FP>!_{lXGa?J: aޮVR^Acp~yeueaxfpMVb,XXFDEB^E:)"  -RH@z;ht5Isν'H1_y(t@mʊXdV.\{|g_b HHZ#%-Ye}Zzf֠!1)jn7wt{6x+D={:ZoÇj|Q c}Mur2RkWKJ,Y4'_gy_M$o+N^AaQITTVATܽO7q#zh G0[5tu27: foOmŲ%$+Y | -}/K -\[,9|r|tD)_Xhh&[7Fc/E>VlէEThkU9l7mjT\RjFv^aqYz},meL@[+\y>).*촿|7◞6mYibbsEgk2U_%kHwݯkh7042칌 -J+XSCD׃ =|%tV1?tP]4 (3Bcc%37N'8ꏕ MOT㿠)+g4 -rc./BF UDZ7R:k`zq{wS iPZk5-/8_,kj+`{@-J/HZEEf HD}&-^ -KUuC&}#bRx AcVeg%\ -JWG{[ ӐSc#C- (5Hhn>ed3 ?>K0 0/B3tWo7g{aM1J_c+?y>ZSJE̝`oUËjecz5H[M_ݽ,|+5"k}:;W'8/ZZ-ܦ(/M/ۤS -KeRZVa3m57\¢gf/_c4O<ò²0/;3U /7G榺d_~zܑؠ?`į\&GGy:#> u*I -_Ϝ9#T++kb+\{i]igu -}U|/sP}Q'!݅,+au4;#=mYqKJ,M)䪾JKѹ-QIKOHH 7kܺ.HL u4ޡ nB1LI&GQ> 9|PuAslb$S̐M}nVɖC)QV -=C3 /ȘĔ|O5rVL/t>gmus^ۻw@۸ivMb%kreTUפ' 8":!%38ԑ`pH1+H# r&̍`9"gzO97sG@V}?{ RkWa3''D9#1mkZHL->ߛQ~FO]:ԞE%fdURډ!P7wAx bx/oo*e͹|Qxm]˨^73ɥR:pyb KHZNZm=#s+N2pIkhq % a>%.IKOqw?~!*J_n -ٟ<>ZbtgO} RrY<L lyْE xQTSV3aeХc^ -]CSc.>#b_-^US׀Uf)[A]67VWeg&EA#c27n4A&Ї5{\U^ZT2=(!Y\}9;OP)p1/p1V hK20mwv m̹|zeu]CNH猰mi*v2|xrBtxp;&:;ex$XԟB'DLtPOͷ4̭pb‰G%ffUV64CM§5=ܬĘ [kK3C=-'I ѧLQ;G =S_ohav^[kSC]͍+3RQ}Xmʛ`֬$ŕ_aex#L -E*%# R;2s/0426\zVnAަ ?r|u"빏|U𸨰~^v6VfFzdgCMjV'd*}az"N| L]Sc.!dx$tGO߆MݝmtO*r6Li/70_NU^i̎LȬYcD#c -HR( EH"tHE:\EP":48dw=|߽ߥy|?8oy~{D*Ⱦvi|(Q_'?C=]m U`/1@#TۿF2`/Ie7P`n)iZڜ<) CW3ş'T}W+8/u@OK %}+5ˡtSZNФˇWM2r -{T5t1=FW$jZڹ$2|ƌgLf0ai(ё9rZj+C)62,gvL싱R>BC8ܫCz:9pVW^Hz96*<$k#Շ@ GhYMW}4D[H1T_[,Մ2&!n=yS5M3mu-勑A^nh*QͦŐ%Ԥ'8HhJnܲmU>|)9z_I̡32PPC91+3x 4df>Kb|4N;8z )1$9h>^/X? wA(/'3-)!.:|l?D`(X\YT*Pku߮G3*>U^B/kjykphxt>VEVvw5Td\ tu09ȗU H*"3KH?W\ V|֬'ꧥg`lfe. fv^QyuEFK<.Our|Thy;4GBK~VRK/P[7y֦ڪkɉ>gܜ-1V} J IͬUQIP}Aͭ0"c/'e,U6pY}-P}Q -`ldd&jc]uYQ^vzrB\TX^6UQ>Rŏw!/a&p+*QRСRoP腋.syB|B SF_b\txHYOWG *VFC?eeCo>ϟq;ښjKFz8436)VS޷k}ay7/e4>ǎp:_ zwdl!<Ϥii,-$z!4۩6ǎ9%&%ҹ +J$7nr@[O* J*j:{aG̚wA^R9Sn&|+f^ vꤍeU=CiЇwC AFuEIԫ#yS79rHWK]EqN)9gYU_L4`Dյ ͬlݽC#7s:y4=~J/};ZC'\x~KA8?'#%1>:VUsC}mYMuVN/zdNTϗXjZ*7wUV302DDRTlBrzV^QYF 6_L[_@lج*+pT\K$pJp^@- L tupZ+Jr2Sc.=`gm3T\ KȒSGl@Hxt\brF6Ŭ;wGO>Z|2?~>~}@Uiee7oe&gDP} c`229y M腘KWR3sAS;@OLUD'kB, [oTaO|Ԉ,M]t*>OFv*&m -U4tȚ;fN'ZGHIHNk;]C~rc4ד{)*)1N(}KwC,Y/'_<O@U0-L u4ԔVmٲQoͥ,ɛMx&/%yu@[\XچWXx(Cibsh=X5%c<0<Ύ㗝fH QP *M*U@@ޑޫtQADlEClQX&ugs -!=szʊRF#M=z@WSJJB;\@7<VkHtyc/e;76sD)GǧdV\RYOqu߾[0ďC} "GuEy 73%>&<)OWH>5ܝ\: >SC0@A _[SUQZt.;#%!6*,@O瀆.d-۶ -coV}\3[U[; Wyihdtlr%4lM}M4ur@OۍW+J -r2a]̌*BsH*1V塹dnOq#Wr -*|ШؤbΫo5vt8<:61Md ;GL]mTwIK6&[$F]:<}sZjϾvؙ_THf e_}A"9 QWfJT￧?BAՕp瘈@SGX6>tPviIm[avT:3yP)WPQ'wE[P -zQGw?'^,4=x}nX4lPldI7g#4D7a W<U.$>я$>CͷTJ%yɾ6Ⱦod=#+? >o>?:^W;@FCp@?˱6fhnR\T@0CA.UCP=oD~@(2ԬsEHZWoN?AYUQZt!]M=JsuA50qrM[H*3:li@mMqI9%pvF?&$_@SPd?mMa~. S݇|Q_(C5LѴN=y@/W.^(/)JO +231ӡs+!*E\$,ԟ0~ޮ;7Te!Rts?babpPknҒb"46|;Ns=$B2* -_Px44hnAiEGν6{q٧ 'zm"Y!4. -ɾ koBaBP'_$n }SF…}]m2R0HV> 'Q}GT?:>*PMO'1R}X!'a~zruEIAnFr< ΁Jn;SU8NC!M>~AV [88Sd ѱi7Yf0߀J+J s3SbPbٷ%BX- | }<K) */(=Яi=`kmnj/CFZR/ȏo0<KU[Rf(5+"6Ͼ{ *>^cPMM@?oomBzz\vZbldH6S* -_oDvSs -] ydYjpHC}AiUݧl3]ig+4$ݔJ\ʝB!BD(rD$]GDlMj.ڝg?;;óz|9Q~R_  6`{K egI9pu7is@RptN?Q}k'P}{"cR@;ŪT?9D;Jltda|<]7bLT)G?ZgS_EeXT3o)Q +-.Adp9+Yw>tCԡ=9M'&ݡX@/-);];=9ŕ}X ABR$d>[GiUZ_[ giqёa~nΛ7Q[WW%>X6՗xҪGEٌ>d&`0QҪNѩ1cZ]5񼬴=HNm271ZU(5Se -MwB}Fӛ>jxyE%Xt7dIV2#JhGW7A=D엗@4#V"WE?dO>/9:Iwp S}JOLK=E_k&> -$, s_ȯӔjm$?9҃^S}-E#IsVGMfƆ/Ԟ 5YIQ)p9?TC}FGꏛ0Iy*Ԩ:Ԩ޲kmhmkwXCG1-zy]aZŲ0a?@@>{KA_\AMHH߽uo!5Δ=}kxH6 -0!O+OR}b*~2R5u7Dϸ~ p'Mې6_ZwRa}<\AMWX3O(tH5{T#{v]wx >hu]C{vEye+C WG#ً 'PTgB -k҅K -ѧ - ou4_Y]П-8 1$E2О*@AyմwH8(l5ίt̩㹙G |olkiNT[KcLi42>ݤ0S9,xgϝOtZvϝG3rJWT^o.2Q/.mk:2(wʾ zyϣOqDlo(N/MN7ꄡoX!>J+H"~4eĠgŔG_dTGVlEME~7L9W^r"?CQQ[l61b:"yOC57hҩhsiwT1Sҳ,;+i['#~ȾȤHGXhH ُdP_B{HB 1{ "PWs2zXvƑ䤄}{C89ZZp?kW DOIK^TSc%T% -ROĴWW}PwݽuZ]e$Rc"yl01ZbKUK'*L@/KzQ_C+եxTP'*MˮDfIa)RfQSOh+I"T#NI~J?Y=gQGd[oCBT\8Svd/3 2hkeaj\ i}C#כ©|K$U b#3b - !\zU&eh|6wXK1h+4?#XI~d_U]s2J]=|vڟ J7o5Ӥ}ʾOW ?F<W'넥ջtIQAnVzĸȰ_/׭RkWDП9 -W Зㅾ@}'>շg>T+WT[LR`̩㹙G>@tv&O ̞TKjS V[\#cg,CkYw i[=FY?1Vُ&@} sU%[NX_[uY4Ec h>5*}@}$J$PUȄ X KNŪtC/lD/.7Zԃ_vx^VZJR|LĞ ?ow&FW,]CI;Vѣh6p~f;Zv-Ll;LvSKW]o}EHj뛾+e{W\}J2e7c?#:G x9T6V(Ű驇#Gz89XoXghTo61eŠ/#=b? ՗cT\UU1/N}⤍W* -psv%_1TPoJ0YW_'NUW'8jE1DM! ""**" ( RQAAD]QT jԸMۚ3;==x`יp={>gMzV^AQIyeM'\^>yCM0۴7w+}BR_N G|J/`7kw*-.,HMS4wٞL蛙L6W.%Y*3ObQq/c>H5%ScƒHm,N@*J&U(ɜQ44B5 -[63'i/S`~l)T2}[~Ԗ`I/ }LRΝn:qPꊲMgI"Â,hgmABbܓG} &H{Z yNO>L6!p3"m=x0]۶`4%ů\C@hgeNi&jGR_%;X0Fbi@k4 4bEԌ<U>~'i_DZ -VW^1qt1i;r -~=9'CoΙg;%О1J})8j%7@b(q܇ eT<@u]=- +ZZֶou+QxPS a{R+J}ږq9ԇ,߾uӆi) И33!Ik -C}<Pm؈X~O2ԿPrR}ՎgN4)t+~ƒ/ȥR ڿ| ha48,p&ܜm,̐T?/ -%UfRN8 Mm])xOTa2f߲^R϶w|yhduW؏ )73$ƾ<){JOD"HxXon.vVؗlL1"'؍bkТhQB}?L%=Roy^ʣ~=A,]homj`tڤa><]EukrRt(UVcĂc -^nOOupajDt5yMgΓѼsXPޞW|IrOKN T[J=)/?{K>~_P/,֛10m >zwR+~{Q QhDZ"'RBĔtJ -BFF}!Fe p@} n}hĸ %%(y4ȓI*-RC1M*lam#ku_в4u0 VلRJaJ}vkCIk= =yH>䦼uI1)E -"a}eO!-IP?#5 .ozwWޟz4JܓG} 4Ϊ}@&Jn-).enBh`sI"' @z 7j"BMaf \ -k`k,NľxBݽb?%!6*<&}<V+P R}aӎ:w-\CoR?7 =iI)zS<2B@Ј5eu,;??2 [7oX@V |q.\\ȫe< V VKCZWPTR^YSOk%Z9ZTo "p#CfU֦3bG]ޮOJ}>K}hofrM'B?VoߺiC6 }aH<0 1CChz~bGB_4kmI!mbٺcgU[S?~AaP䵙9[p6:[9x=bUTlw5>[j}RI}z0/١6UWǥ$ƱtDPOWG}F{RYPma#F"djamH[#Cɭ hkn6\K>(,ɆPQ_u]veꬣg85*<2 PAV"Exx>@APU# -(8,6ծVӵҴ]{s@{r3oo6oJҥgZy)t/R pE?Y&߹UOI}Oo=C_KHEi10am<Blm i; QBY~lE4P4XlF'WL|o!MKƭ/nO֣q(/+MQЭd9F#mqOÈ28ط? OOȨDmjFn2\/562?!VcRlcb*\bԉলpa߯2Xr}JKRzlGJ'%Cdoټ1R# ݞݕ7,LDO$-]7 QBRl}1B6Ui0'CUG[b^ ҇Kʒe'PTT~uWOvS cmת;wAq^_' -y5/Tu%`_Zke /FFzM58:D M _8R8XJB{H Q7P?SP\#>lO;BH%[JdYHr dԧQ'Qw CzkzU XĔTXq:wϾد氿'735E@*+/WRIR VŖSR|Sz+J w@bwDf@z*o>>DCl@Of'~ JKbYdD/ /(7KL.O}Cwa6,zԘRF 3}ڏ}VKc0j8,`Y෰axM2f&oM}$N=_ܼ!ԃV,J1_;уt؉8S }g؆$z3F&wI4^g(BW[(9K{w@)+w%9?p!V,-H};Gw>m X0?)RcFl^fZFgԚ XXa;x:޲{J>{j=*Њ7Z.|z1̝5"AFs:7J苞 ? ?a2P Ə3VK'ID_Sxyy;ϝ$:[;:2<$?=(?L/N}1{=؏]HS'?x/U(}tԞo؜d56,6#Lba`OI}>'M7| Ě gdw ~}<Ӂ?:Q" 袄0B 1>mlM:rauԌB>ZF{{ډ`j黒ܴqUD.N\©c؆J=Ї&d)ԧUϡO!{!e+[G8~$#?;|`P&!z[Ds'K!r 5ۃ=}{na[Z=2ggiŠA}B˗(qfx0nfL8N+[Ro:o0nšM7? ύ=^ȏ3Ї%E͹r^ݜ '' J{y2zr!49ЈĔ\C'Tv9}^d$'vl #ç,!$~yP,ɚcU[ǨtYE%减8}Oqk۱Ovkeu>.t]X8k`̝ ʲGeaB2nOイS_24>kWjQh=yat=OM=ңdЗ>c$ԛ !!/Y _\B/A#/'iT1Lz &`>]nM-Wv&,9߼?-Y}w BHm"6[kO+ĉmWuve7aIC}\acl_an^Dhp/4!7Q_ }g!@lA\ ?id,XLФeǨ_]`LۙBH}g?a8\H}7 "_Vԗp^ᢵE%؇wdU0~qI~%ߞ-#\8l~vp\Aq\u%GW=uJ{9>j/>.ƾ g74a-z>xp9;<$Sad€$H$ Է.D;`[S'wg _b!xE%EY$U ~*yApRtwv%_M+o°%OLI={W>"Wڪ3'LM$u%]b)]-Vs̙Vg]>S1M}b9>֍zb =A(lA7)< ssNҀAC2;GF9%R/SKk#ȳcW?N ;^zȰ @}aé,}qصj}EF`ΫЈ8d2"%oaJJ+,y}s%ٻw%y5^7L2sPt[}k+z`vB-맾mS.$hn?yH`VNc vtb=ր"v(Ǧg!?Qb3hۑ3 1vلTk9ť4MxzvQWgǗ ?X6IVE&#Jҋ ,(Q -(E(]"8 % ݸEƒdc$?;3"#p9[֎O_]QhU^VZTo'r Ưc>m;'n¦-.%I>^ݹ7}7^qdqGV89 (N ptZӧ >ѳ{iQR/v9ؼwg- {+Rp÷Ϲ_UL:Q?``߀aQ)T;*R| ^59ɧ3bQUd]v*YCtv4j/hd_􁾋2}5JcSЬ]hK?,p-[vHR?Rw{?~OuҼgG%nf''Jht~rPy5=tє*G Tq>U_"MJD,\UӰ~oʵ -īɫ~}ueup,]l--fU_x -? &fsYۃ{>dc'*4!_ ~'Gnn[E|XvP(n63 mKቤZ~|LdXw?X[ޱ:MiLDp ʞ={l9FU@wxp3Ø8J,d [տKUSz/*ڂ\@?|zsf4ÅUOEQik#(&7n#ώnkdd[vI {TeĐ[}\{HS?KAJc׭JK G?QeTqQs)&eQmhlڏ9w T Q TO߸nu~6:gdhb# {"ɂ;Sُ@D/۲ ee@ K}vcAW$Ƒr[@d zx5*\jJԗSh($6?B}|7Ok=PSI&{9H}4rz'(ȃGsY͵upY;(gu<| -UokJϫۺU"Zp:Wje_vQE⓵}m k894'y_ro݀OJdfZTBlɎ`)Sc\iVkĩKW>O"~<|ؿ E@0>wtX>T)StKGI q9D8=}= 鰃E8տ艆U4U=S(VsA9՗zzOT}w/%!1$hweo뚕wo3٧y{xWX,>&"d;GfCN7"l6mRs*x G}/}/o5uWSg,{pGotԕmꏗ>|Ӛ7!O|RjFNMU5}z+{._7o߻{u9 zT?U? U}UTbS}5=Z4"W_.h_{d;nCvԈ/c< [Ioik5v 2o%hFY){xEIb> -G}@2剨{s)A8ț p[T:dT '!w;8/p g -U4yvN`>B# wr nD?u]GTP@|ouO\wmC,LcķTLlj]?}&LN9oҠOeή̉H+7[e>ZHrP¾.9K%Q!A>@}P?R?)5CZxP{Q 큋Ǡ3 ReU?ӃJh'|qpT!ϕtshX7m2Տ\$W}iS><3_0~coJ_-^Eim״ >;ouϝ"D\Z073-Y* Z wu'oj>]o{WS:Ǜ&2WM -{gW7ꚱ YyEnZKW]ACU_x-|՗QoV6ϣ23G?[JfEל?ۻHv] ^򍐺9@x6.$v鳅r]QB@$7ž7RiHx4~~-G}eRO} -6& -/9m[$8q9q L̳sUۓʚ]{k^OjT_lAU<^?O9Ř -Cx畲o~PN WUdSڕK}ݝwQJ"# # Gw,b^mf~*!SK"C#c5Bpᨏ!n[ޙ uOpڞHJ pƐգġ9Š /08<:.1%=;Sc'ZՄE! ?_1R S}ꏕ{y&zedɕ~8/*+4nh34aQR" A"} \/. -.H WD\ "l""RV((b:1NƦuj3ts}*e>=W63ڽ nGVLd?{ww@ʺ COsn^YTٽÄ~pADJyT"s@}l.ZLRɢrc~R1_I}Ti&zfcsh&̞T}畄8fbrJLҊ&4u>#dZh~Dy&Z3X}zI쯦e_#D_zd eDX[UVRD7 &x,Ҽ.NLTŤ`'FU~sD(GGawR_$h:ԯoJPvEd樑3Q_iBLBe/v LeA4A4ohv<~O>ѩwQ6mR}AUƫ'e,o ~_oN:RJ%e{K)ه}%up,^DdAU:؟?ol }qu_o|D\Ӑ*оǏ lbXAHvW 7:gd D~=RZ8cO&ź@eE\P޶cC -6NiP?kꛫTT"5˝WbsreDr=|Daq6pvAnBnL7USKOkVTc@g}_j!W[S>ӅϴoYI\A&wn߲1>&B!Iprt_jkmv.`1 -v/A7 mm:?I0yT""U_ HCaH{,Z;PA1& W?wUПe1Ic9n`lX*SD&$mIݕfMWϣ'jǤd8aT5A;7\\?C՟;TߐSaвo9Lٿ8쏨}q蛫[UM5cs3w V -`C+ ccbޘRPRc}muxmVT(}P}@$ UFFoǍ@c~'_WU5ܘj ߚ?3 m^h>$~igKJ0Cã59Yy dMÿÔ0p`_Wm@%;{"/úѲO,:(=%IT'ۅqZks#EA!][b# ˃jeKlzAΞ9`&u i ƘW\tPӡ |}p Ł2ExDqݼbh7?ApGT\m` Qz@Ɵ%L^b4$͡ u/=MiĴ5 sV}+ϘJ?z_YٿiPBO/=έm-EYIѩ#;MC"`7'GV [~q8CT&m_YC~+R| t2bΖQuRHr}6 Di:EDtt?mlnN4ߦG>XE}O?Ӈ23gYAXYSvcZ6_,^ƫA2/HcH W fZ[i?eX(շQ}P}-l 2(N5xv Kè(-.$ @z{:/'v6 d*So,ԬE&Pxa8)6D*CeA\_(B7N= u1gI~P S6:OZf9}&rgpK52ax &`k7;.z=y̿pHFQ Z{)o-yXTH0!h,TRTT RDD cAQE@Ac6h5k]w={SGDQ2~|?w.PY/E^b<O//~3CJ8;3 }2"$Zp#Ū 0_HdgPGB՜,/-.lÃ|ܜ-@M FƦf,׎ȝeg:4ԧ>`PRK@}ΉҢ m-oZLH -OF?2E B f| V[k~!nI);r;IfD3cW.P}KU}Z Q}WP}A:_^KwH~/#(d_X3ymib J'yC XZL]mByP3i&bq~K >[_AClc"Bwx8۠웙3661jL.>+!NO͡.LBe]o$~) '.O:O#Q$bb0-&, d03.,.ȴ%Q'/RT = ?gWA@"TywA /a_14[=7_|$wBlTh h}=XC(bDe>ׇ_P'O{ gs1GG7rN;Xdhv[kK6`7EowrKťjҁ.Q(~bldP_7GxSZ%J9)1^ _G/H4GK˫jP`BZ9_)=[7e'$ReʾHĈ\a&GD=+lHPx8eibM U(ϜL?~o~uUcE l`_O7g} 6 OVۂo@D@``n1@P_?ٖz{Էdoҟ8HTU_?V]Brj7[:zF"a2X-xALI|uHPnTVP}.Q}˴I˾H8D"K=Dh4=,)"z[Cί\0Jl ?owg{m,Zź:Z˗-Z4O2M\dP 4bǭ>Yqh̴}{ (v֖ls>,s _ nurJj!-g[/M q L_]QQNDO5 eԗH(%uJ2nr`fQ xQS\RGw e f3Fp8 "&;nݦ&D(8#ϤC_bIU:TBFǠh d?`N>}.>Yn;+x~= Ms1WIPh}= ,r:O]捼S?]@k8pzޤA~> !mA<}âbrJʫjZ$&GvP_ Pd@dԗD'FIB"6CEKRŋZeTl"A:$Z V?-H^)]J—dO>ۢE1_H0qٿKd6r(Ϙ#{wvN}8j9eũ)1!>.PƦ\45ԗ.?WXS'O7P규jjlT(;v$?'+@d߁`mnfo#w@"unц. R>Cn?Jʲb~JR\ThRoJ}yrUʨ>JTLT`F&ZbBdߓɵY2:ٗ,c\n\ktqucG! fF_z4}F}ƃ H}>`ǭ9YY^z0/&Fdo܇gemwtvDMؽzީ3q{R=?PK~~M\_ K?˨?E&NY#WWRYH RKТAPʒ*yˍH".E/U$Rw`T_Rhe `*4n#K#a?E`}7uP{&јn$dDYTA:{mWr Dk9U'ʎJOMٝ -طG]='5N\5\kp2<<Կ(~!R?9>:,o -@k}Wf1yOA$ -$⓫V5@P:zDܕJ C5.QQ1L0Ee 1,QQQ9ˡwE^w7Alc[N4qs=Y3x\~e]SkKWo{ >F aUBUS}1U}'i0T+|>);[{KywrOZǘ O?}| DS{xzR\txH٘A#hA8j*P@;JaIľϣ~n~K}~{{;b~eyIaYq!DΎ}+ ྙ0֞,?ZP\^]H[d)28Pb9@oۼqP#rRO*2T#XOlҪ5*jkmج]O3261'>Q7{rlQ/Qܸz<~UT=.D_PC"ʼnҺ<eѼy)>M+ΰ¼SٙQaB>wt4ԡ.Q LVR˓" |@j>~;>FҢ39ҒőDEn|ľ9yV6v}~x4 E9e0KS?2R`>$#/'+{ @?"gCO"o$ϙTT\Re?6\E^~AaQ,mɾ$0ޝ^:Zk˱2R!>n6`<דR^@+/ͦ`b_HA_]YV|6){{\<;[k+KxV6v}PXlۻ.\ۏ5& PHW/wCE|G^f Ij-^J\~(ZV&\!;UDuOk4>9DrmV'QOEVǡ#OȾb Rw{3WȯKG*yp>dk/t77# $E{MH>z:j*kV)-ا ɱa1d49B7ԯoln!'Gٯ*/)Dُ - ";]E~T3rr ˫j[:N`DppԿ//'EI>HJ RI.,WTU[nfz{M̭]ݽC"bɽU6dl Op\c&T&;b0>IT};#TԧZ #Ʀ6ʞR? #4ntCv2q/@_S5L>Q<;+ )^V_?>'* zE}TNxDUW쟢녶stgsr};q*pL@W" OR77O=J &~ezK//7e/9$ -ByeU5uS E^~AaQqIi8 K+km deB+Iw+D&Q?{e~Gk#]\K]QO]PءC-@-ed[L'o)sS 쫿-r2Rđ!>$!Cwl޴#bVà)3Ihƽ8w77Trwx~Vb}sw8cS]^& ql ~ 5%@+¥Q547io۱ L704RslIQI2)Tqɱ>$ .׳-JSG?!edDM,lC/1Fe]Z/_q[L:Z [b/qa-߾Ej1VUVk@_2ڸn6r b$Y+ x㡾4*kjZZQWUQOMG=܅3y.|ݓB?:6!9UlIyumcK;|gmA^~7Р-1P_/@##ԟ g6o¯F*@ٸyo ?d -Dqv%"\[qYU$axSFTRЗ>ǔ3Ғ}HOY9ۀ]]N$DR{zn/ EQLb~QieM}Sky$g[cؖHK@-MJ$`A0?K%&P,WZFEUm-DW55'/(,:.)؉4$")ћ[$)/߽s~gLT?+#%!&" UrXW*?jWQEfeXXT,_Fxd[cP̯_>g29v -4sKcmuy39824і{fM Iy -ťKhNsHaiϠ~FVʚ:>@b\uEYټ'2Ӓ(|"M(}(S38/s Ϟ`F0o/)%pu!u4?fɢD%r -H(Z[ܵ-E)NU}Ӵ=9&m%`QQ {"*ޗqYL C@@,nD -䴮 ic>\/~2 -Kʫj9Pnt(}`*FGR{cuʾC3u5ՕŧsOd%'ewvrd3%CQI!~y:nu+\^x@woT -ԏⓕVE - jo34'Nc9ڍ[wB"\=}؄n5ODJCPNkWSmx9ycX޾y٪ -l*YG o{>AN~YQ^vzrm0[LA}m`ROB.Qnl@ 7H]Oa4{ޢ+VYlLwvFp1h8Ͻd)xX Y=H R5P,~\hgT9FCTT*Iɬه)_gL}u1a%R9麉d%x;G (7P=[FYT샿*zKLesR?dAq>Ɔ:`dvfzj~H tp )<3W7:nva7COѫ>~gf%~~vz -Q_*qw:b_ /5E꫱-9'Epr:p܅KAn޾,qrc - W #} (?)My~BldX!bF QٟVg6|B()&el'sirbA}M|ڙxlʲₓ'S(`ޝ[1 -z&L YikRCSXzmcⲊFE|>a0?7;xjRdW}!O%hh.[w;vB#cR27aH/p)'g4ZX?UW*em؆f 34ytuPgͰkaދՠ>KgӥŧrODÈR?_!rHo(6>'ˢǥ o:3HIPRvԇRaI}諸#ˡ?Ns$]=i $pt$1$Ee -: gg %P%@$~NGT.>1$j2cKfYN>e ZxTܟwY_ex(薫M5TYZtnVѫ/03AԩY^#X^tM}Y˗/ g"q}p?  ѱqi~AQiy~ǭ#>mU{UԿzQO%x8=hE7Dž)كQe_Ч BH!yFfΞpUfKC~29I^ai9Ӂ-"IHD|<R@_H(ay@vug*9ITxHYcjBhWqCP!nj0Q%->0ۋa䆴Pѐ}첒UBXh'ez0ĆloUTѩxZGѻmZlܙ()?Z&t_ry~SS%EɉyxL̾,4\s,>1\3Ub?7qd2%$:saNO%qc.Xy\nӶ]G7/_c) t@UTQ [,`#)1~nNޝ[7X<E֐T8.3cS䅒9l# H Kii1wCEUT4^c07USGfO%.vV{wlـifbxOכTпrgo`/B Gq I)i}BS煮 _&5HAX%wl^gԟOkǐ|8`'sPcS1`Vv"aǬ܂2ڀnH/#Fך9FJ ǰ`)(brvrGEt3gH e_dL4m [kiL4}z,G~"/]̺ov%][U4m,iW,]4oa_Wg^&__Uw?鱚ӸM1qO@Ł{m(*" 2es i54$XӾ?s;P xNjؚ P JJ}JU a?IAs/^  fO˔CJ*D[w -~Q<#eCjoCAĐ: m.hEQ*J%Đ+O?rÿ́PLZB۲&~^}b f֙}Y~Qi9ko3_su`V`V'F=~-";q.ڕK"c})5}/kϣ RGPT կb_SLCC^ GDIej藖ǭh[EGJI~kW,`7y@ݺPQ_۵'|0k~ 42f>zmںcۡ' WG'&uG.VǟȐE߬易&K\82lghmafUO\;v`?v_3:~k5߃ɰcǛ[9`RgFE((ר#Jg~<3UI9/4~g,sgXj4)6`8 oN r@:eʒb-a!ׂ 䇅GF'$R 2U?;/^M}XA1N6oCcЃKc1,l;]tڍƽ .7&R3y%8q~>B7]s|*>@l7y#r랝[7[p4?~=~떡 di k[t5ښ [ڋ>yAeLEâۧZ jjeq~n6gTgO;|` /^0g&6q/kƱ߅8/(*T~5}}U\yVFZ,)Q &'JS3յڪRCy[-d -?%RHᄄ^; />7FbG=%zLw5g'g:{C"ڨb[v$ƧFZR¼ gN=.X#՟jkez b<%~ B_&h죬s?|~rzv.KW yMg}T5$Z^NVzr":{ElMF[b쿧P_!/*Q2կaq_UQ,-.,˕3g܏`_ddG̗ed&SwA!j߹Y4>: XPG'~>[8ڨߞCkz>jǴ䌫o޶4^5^d2㵴Q9,/-S}X#ǵKrٱuڕ\'O2Q}5ߪE~}ݧ@!GA;a=q#ņ|ouZ#UIMQWSlXhf]L~qL2dwչ>#S:}Y^}"to>z -1oѲU렌]罯ei9\}|4?zHx8C!HJb"3>q~gׯ^ht{[1ק';kTMQ}}o-Lh3|5Fʵ?Grh|\rkkh7o &Z esں@MaS]{?rmٰf5Ega Lkew!`ͨ'I'ZWG+ʔ%Ls3diR"/gD'gBلKÉvwٵ` {K&~M髾}L &@3 k[s.%t| x9aM* -U5]Cz<{sgxVd%'BgOyz&c\dӦ`ˍ3bA>Gڪ22o+ 쏝0Qac99":k&I)ي^ꍦ܏=7>ZhyrY)I Dw+m6*m: ׻'Oԝ38øћ,-WU߸Q__W0/Wʳ2 24ITER>P+Tۅ>SRMʲܬ4N} /բ1AVCwE؀-~J`d2th ,د*; 'ўԨu4QDQ@D 2-"θ{ F8PCeehg؜~.ÞОB?[t%ض i -FGT-Ɯ*nG Y塾'<^˧~ueyi>[G`s簩oaf/LMONB~7vQ|P q8bQaӕƢ+)}f\3t%#EוR]fZrB +tݻ㛍V/_LMwۧWfpE8L Xb9BL*}2S~B\l ƞpD@M:|/_wDyo>B3IAW.?e{V} h`+ӗ?x08c pclW5ޛNt;aQ$cq)M#Jtܯ#|eڋ ^.<Đj,ʴ̬BB_*-y̌Ԕ ~%<1 ?gC__@|M6VoL'o۴n\}KͶL@7~>C(RtӴY;xnɴlI~QVo ǻw{h/)qQawoa.8rzZtw9?VGKSc6]oREq&V6N(mԼ6lA|lD'Sz;<~xcSxNW6r;} çyڕߤhm=]8B]Mߏ6v$?TJͣOW1~A~^.s?=-59)11!>>O!eH - -KEy!G_0hk_ W]%-Sڣ; g`tȠ8PeQ_[L;W,YƦ>mEB#m~M}G~{ki)Ι5m`_:H܋Oozgƾ+[dFں BۗJ RmӭF>(vkN5MֽEkn5|e%YH!ּV-[9:Z)đQBM9 詗n>cL2_UUOXp?'˟.<| Gi`WTU(Aͧ~sQ(VXe T[W>oaY>F"WÆXc3i9s=/_ 1v졡+84"&>)5#+7DZQE SV4~=4~Y<<QLS?-9!&^||(ܜ1mM -Y{>rdu7}JqD} -ڷPWӵ(P_ЇE$%z'm1azJb\Tx dx̉#xs\F̩'X}]tp5~u`[V6ƞԿP?GTIʪiޗϺ'  D?ۂ=>_#͢8Kghjni3iԙ.ʵ}>~KWnŻ@V^Aqiye5N}R~+Bׯ^>L`$GG`& S;l".\gOw2717_12* o4AFIfSA{YX9"Gؼ7mE#!" eZ[{WI!BU7z&wV*% <\gdol 45PHR?P췠{r}G LktTX"ҋ -{]wTTD:(b)傂(MQwtb63sDy "B~rg?I|%}eTdg<~pEȹTʥ ̘2ag{k&C"ikRIBUW-de@66i1 Azc9F``=L1&?'?Sdn#-4vc^k$m6o';$Qbֶ SC[q0@}9g},W~Q zL~Vy~&&/33++˙ -%7hwfD~d,oW#JNQaJ ɕr턅_tĨظ$+J>q?~ pQ -s)iq#ڕŮm֯^+H 3Bzʫ~S<5on;&vNtgYI|vBXTՄ$\o""G og(eǻTl9YzSlΞ>Ib-Y@ݍV9~]m^27kQL5g/H89/cK -?(/}OI|"_oZQa?̘Bԯ~3}~kjj:r -ĩ3.Xb }}OÊK|EfHXJ$ʴxuœG޽+N?z`4DbdqpbXqwh/CYobUOWVh26lspq,i߸h7[yBU7?<.MQbm݈x4肏F`'\~gٮ:7;p-gbUQ?Rx$?g˞Hɗ7˩ 8կ~s9 C>Pl]OBpjHs//1W]O&aD2+$7e,TD"?/7;#!5DPqV!ŪeΜ:UԘaoMuR%!|ߣ8 02 i <}|m##B#/'ܺ'%+( ?z&( [%V?WcÑecGpaΛM'| 0SK'q~[%7QaX)32w=TQ^W“_HC~|n+AWѠE+wU~N\Hx4HNf(,~UR&wG]Qʯ60r߿rLaJkʥ͚6cn`_~2[Io׭~_[b37l~AU#QoS~$>7|*5`UӢjXVR\L}B՗Crj[?of1ui-Z&sఏ_!Qq I)i3s -߰CQ -T(C('+{SQɉG݉vr93L?JX7XhR#tU_*VZ~w[Ou-* We߃߰iۮ30(84-K33[r¬WmX솇]88imD/+dgm5G -wUoJP5 &z3oޖ_9eee)GѯPRDSDV2!w }u-8ɕnrCtKq(8D r'fgR;׮D\֛6Ej4D9O1gJWβ<r{T$JaV+~m+G%U_N}|WՏ?U}Bja}MOt81zĩ3.Xb U}}Dh$Uq%rX(Lo^_ q%n$DZnx#쵖>s07bDU_[: r: UʾUZ{%o`8mƭ;)QlїY9$&s0ݐgI\$Gɦϯ8v9g<(ı#o[7/?Q#̉}\rJUUWt;wjpwvZ Eɩr( 8L~N{w_~@ZkC~uY7|&Ƃx56*4 {W?}ZاACM[s>a -嫉_!#x5|+_V!2%Y˪[^(|<ݾ|F;}Xj¹38XY:ZVT++-eC'kh"U!GPog_L۱()iw?L%VsťMz) oi)I qQ!K~Gռqw=Z8 CB$NH4)vnMRA* Js*JvJ Kѽ\i@,wu}rs⮵{~R!!9,sSc]mMLUd>uX/UP_ow@7#cO$fd>N}2܁q|.*;oE_BT}tƵj~*Q`ԇYh|0T/" '6!耣pp`βy ~ȑ p?]D2|eg] > Őw Z(< Ä{pzvq#PW{:YaOa1Gu`2(,8_Ec]nhR*ߴ-`#3s -.\EN#=ǛxvZiEمhd 5 7xH_/8`?c:9?9H)fO>yQkƭ{OLM+*bS<=~C/fɩÒPUV#Q8?;#5D}aU}2 -MX6Nk}6l޾ }8|&#+֐]xAv>^>Iz Goݸ~‚̳)(m}׭qX21&WUpTI6rbG+:1 ?NdañDKWĊ]~8"8 -N\oB~oEdU7mr*o|HA6֐ -7qGI3bP}5 qw/T?4"&>1%=+N:A.^Dx_7k/1}['p#/Qc>B5A}bƴa~?G2A(@>$AeB @_҆:( <w2)5=+pHOꗮ!>o] @ W+/eg!<ڷG-q Sޜ3HdMoX}!"c¥c*&gb5=+ΝX|ak?Um7eNk}Hc%!T?/nygB|QaGlRUQVG${s".(AU-}#UlGwOo?@ ܄'RfAU_ڀ_W{aHS_[@Ym-ݹx-?.)h`ZW'zڸ*&#?͌} 9s [,721c8$ u9p\N!~F[E.'4j._6' -:߱qvV-e_ 8}?L*jT}+P@Hxt\̜BxoTL}OT' 17_?_GFw|ց߹@/JO9M -_}b(T@G /K`/Yns/.AĆyE%.p<޹IAb~*$?JO[MXSUqBANVz*N#!6 {K3K/ZΙ%/㘩?z8L~c:KDӝP}Js+;G؍}|&#;Reum};<~\ڜߎ7.$[ G\أ-q2F_t1qJþ oCDo;t;uw՟>7Bp.bGOG"pKr΂!D}oO7'^7vY+j +-֬EcON -K`]@{o >LBvSC}mu奒D}qToT}:Mw;zdҙx741E1n䋘/6 -+{~IanDxȁ=W'@PO[S}Q_/#B) -r2 -X7lߵ`€{0+ -.o}p;>4 H"4A8yN >sF_pmmj2MQ/2A`cxDbd܆pʑodjƲuC!~dRj:gd{\qdsaBN~xF//-LOM:y<:ӅC;ކejk)NZ.Jrp).ZkbwӶ]"cO$:!Qln>A=ux%D էC?aFAv|چ:œ4QGQ}uk\XfRE_?MN~EAԜekqXY8 .,jaCnHk%2 !N}7"$= Y^Ru,tXTx(M~ޞӼ9'%8V|#SD?v.C~xq?θe.q}QZ${T}ChQ)EPT*EJB ƾ/u`sϹyψ99?Ͽ>MG=2:.wsiYeM&8j\Nپƌ~%)] m[ -ؒrV(`G*fdY|rz%v16SUHB#'OO9utP9yQl!_FXt{_t!dzxϞjk=vn)WGWcYwq17c_S}z+82+84>nO@hxd̊[a5$!/],˒/c[E{OsDVxKmb_}mUyI쌔X _OtùC} f8H 9ǨBAé38]x13 ߩ?T?!2+n_hS[YuSإa`י@pp^W0_ B_C=?(,<'^WPL@lS:Iv)qUU -~plϝ9yè0aMsV K-At 75FPWe H*H,xT}Y;9ZYmR62m\3K9OPxeJzV:D\^Y1ŗ|8 isY'1׼qϮٚþ"\ .=Y}-(b =ЋG#MZslS GW/`\pD&oCqIYf !V RHė̗W4+"a[Ȩ@?ٱaVZR%ᡁ>vVfsfNɩ?DPb #UƂ]F@/(lbꁩkعq?C/ M+4sU(R8U6۷wy 5Ap |=]m-)&jSG~ ;/Ctu1 -9G1[9y=lE*X9 qe5w܅|Gdw]s@9 ki&̹ -,p)e7'{k S}qjt?V`eggSҝM̭\<}G,MHN^[PنH yBAރL} KL~To^ -+HsS6LM\0$͉ 5 G1%Ey7g P}-B:J_`(gdX\}=d5Czeːp^]B)C聵U۶aQ Y1?-jlh3a<Çȳ_e;~`VǟP٧󮬪) Μn{rZfNMb'A#wD.caQ;e,̹v,d9:,et`Zt8NvtsfNbGNrM.9x(~[et 1Y;{'e/aAnI7ԗS/0͡/?d~sZQ./-ޘzы{9Z026PRT_~ߏ  - Q0bhq<70t@?%=+wqPQ]goq^o;BwWٮ]H5W{j9IQ œ9Ր*?F2 -0ݔA)[~{^(5 ϳutEC ^r^_ -+o2BEγjŌEWU^㎜Ӓ>;pu271fL2}{Ȫ? p7srY$WX k47#w;8 -˂T={&&E ;WgOk!:qdӆ쌔EpʤZcUF 胂ihvNpu@Tں&c@KWg=#9ڝ<d88dqo$Yq].:`B\tdxh *#vY`85JsA|+_U.ew{>gNu,F3f[;{Ϗj"4ia9KJ8WtmƌƎ;|{Mey梂5`I`G[Nډ^ -ʾ<&1tfZ:y/XWV󽿙划vM#+i?2yL=!_o礅LϝondX`1i޿qKY˖Fz[3uƓ ,Q/f(?:uOy5tƦVv>!#̜|X@__=y?ggƚHcm"R4c=TB*{T]PS!'FU)S.)~.S -933c\o7Tz?k3s4xh@8f*I рrlcH0C}(9D'Œy8S&nU&<(azDxF)T .\_ie븖QWZQ]sw ^%{%t<4m: .險 -{~xV~^0쬁}C=mJÎu<-;ǾťK Y.XoGmVo mY{; Kk/ _>wvQqDZn0ij5U`E~nvmCoWg{K衞9Rc`=F<[m @s *0@@Nk;ON;!p@TޏE{cQGJ۷;~GTDh7mŲFzh*( - 0?_w籯0FqBI٧M-,<}C#٬8I5\¢ʏ:1iBz 릓&QǰFQ߼U׀By2R} zط0#/^ȰFWfاdpSeQjjQ=|B·%%e+(.?I5},FN =^F|D/^p0E$q~ybyqA]1a^\W.[j=Q2qb"Q⣡CC_y*}rK;/?@L EQE p,b$Dq HPT%/Pv= H|6[C05YYj pciʫ~73)?j^.jc(m:H"ťYʺ gaƮC# v~XpJh w>Ҥe(i-Zkfm?(,"zgޔn՞g-Q)H|@?!a/["^X!Hٓ}/(&sWz?Si>#/&-A~ -/x*p{wA5+&L6XpN&a v͛]VZnnbK0]eҤ?0A_N>]q,9Xčhyoఈ(ZviY9\`}["U<,…6߳Nhx.gOGܰOh&r>r0+ A{{ IF0U%ɫdC]?a$% -ٴt  %-fWžhS縒ol/dq. xӊÎ~-֞b-ٶC0 ZICrp48E6m7۴j[@9%&  -!Z'j$k/e{+".];} `Vjrb\LdxpC uUCQ20?`Ϟ3O> ۺ=Ї2:rXII\O=s?:Vd 8zx 1w,ƛ(l,GR?0 :2<n%idrtχ)tpS}1} Rd,t D ;M,̜_?Sw/=y,񭖝rζjzliޡ5 22DzGꬿ icP(6cULi 1(/<[g /[WWtr2R$쌊 rwYcgrRC%զ(+bIԗ=B&}-]ҾV }$~0N9y>|"~bNMЗPQPw 9){hmfnbVdϲ=#FtsW=cş)wuϿ72-׮`Ґ5\E˽6T?_l>z~MueYqa>2Ǽr'UdzROؗ)R_J*fQXmo+[un}7oDٿnll1gk2/~_̗By9"APĴ}I@ߍnkmV`!䇌cp.J{om?-'+}NJka1^pLMUEGvXOA$[٦/"c19"halê>;7E+odsxL~ߤź|.w uzYQa~nNfj2I]!þ a}nYsm3iM-,mhyEF#ƔeI,oc~f9ݿc~/З8z&ՌLwDx{m,-p3ڜ Θ?8h$0M+o[}̜et9> ۉe;QcyxWTN߿'aWtdxHo=436Yh}o| T -iuQ;!B0 -})*jZzKWZM۴ /.qo*bwu 8Mh1_Mϰ{f:rCn+AJMНJ!EmE%ERvUb\;LņkGn~ص^s-e||CbUϱ]Do ěǚBѷ+REɒ֫76oGtho14<m/~XL2a˂d_ C}os%G,|Vb)WXА n3LC41'V& *}_ _> -?6>)%-t> -*>׾G"U}úbd =y>շ. 6%obU_ EDX`Z:C$Z .]\%lj/195C -Qd4_=wosS!x~h=bom2@B a[ZC{c|]X޸j*ˠ&_¿uA7G<TLukV. [1`ai8|ؐj$T~~P_ mCJs;M?&,"2jktL,>~ȡЗsx}c%Y1Ɲ|·wgAB}Zml}2DP]>fЂ7-mN1ˏb]&s=Ec'=&=[uþ Sl8GuZS#o {>#6#So(s K-:xe!Q76Eꇅ"Njg3a8P_D1Vs7MxUONMlj~u-5 }[7Zq쌴0>qCD ->;af޴4;CU_}LO ߡƿzK72k=X0a0.}=M8b:)戨IW-[iaoXC}b^ -~(W}uM~~oX}Q}+k+=^p@|/1p3 -o\]{/ĺWS>a1J} -ݙ1{ؖ,vvfe9G߃F[ 65󵞒 g{ݨt 2lŸ P\g;_/Ow$?o9 -\ola{Sfcy-_)n)s -YeW^د/6#8"~fƣ2XWbWb -9vy27n Z%M!{z٣mߵ ^^!A_e8tϞB,HrwkJ - r5:SS,q%i^"6lHI_\Q)h"ͼ&g߈a ߠL _  -]6onbcO>@oʱG/joq!n6Q)edcV7%+; }pDNpIH #h5DVH~C TBe&B -eϾ~&@'>r|/xw8}Fj2u&K}yPv6-dڛIM|ɾ@ &%7B^L ?4qɲ1I Xz'NEyqVf<~Ř>=|nT$M֮?o˰ž21Hȑ6e6hcV *󊠼c}[T7d݂>@Ǫΐ%d.oYD RD'NQmߪ跓!AI}wr- ;]_, =9«@5v CI1[6] ݽLo4Dϐ6M8ڄ$[M?%ᢧ&Y"bGFmݱ;j?HNAq)~DyuM_SYװ3֧PHKIۍ _6?ᵰnAH)7oo NVb`o7m;NK/W MzЗrDv>] "+P˟Dwm3=an %.!PZfvnBUţEtf]=+o`;Ik>آ"Q縺8b36>ʻC_->p~Bғߧ )NgXtEXcԌ\Sg@+yW'KTl}>/CU9s@;DɱSڽؗ7oͦC?J.^~KWK޾kbA)a ۅLt!W"EP("M~9.ݵ}@?u-H Qo;W|ͅ%@ߞC> -;X,8Q~{RWT( Ow#lyٙi)X`sw1m*uH\lf5:38bu0V, Hi -a5T  -R+FcA@)(Rtf{;x4g ޿myMS_Ӑa#9/7dQpYMwv5oW+ {` bR3sN\{6Jr)'E - -p~gs )} kpɶvrq)rkK+9׿U~khjl9-+KKf`= cb)[GrQw/A  m Aߚ?c|>t<CGUCѿVtVe5Aj^E_+xbGbԤxo~}?4ZE,}ɘegp\ھeZfyIU}a>-Z Bzp~qs{(}eKыwhw> /9!6*"t>*`0;zwӋ b$[17 R|O ^hu5\0m`EF͗ |U)ci 8~^vfZrblt$8X[7Iw*O@;fQƈk]\d>|C0DlãM`3]hE>/sBGp:K̙1f"T} #bVD,U'982E!Q moC &xOɲ߹]uHcG#Â|Iq04M:U> 9/4$5Gcjnek0s¥+V`@OJ΃QtfELӒ(䓝9?ѵ*w쇅!fO7' rwPs1vPPdi2 #{Bk\:l~!a6KVoRۂ>VDŕKAxX…P .;A[+s19-DX:E=mf.2UoўD20ǚYBo,cvR /~@{eeZ=vpmE#xb8(Tξr,BDɜ#.`@l\jO`1Z~էꋫ 4))Xpeџ͢.2:"]tZ}r kYIcM5«c֬r7m$+ ӱR)ҿ&Vu:*~2e_0 8a}"bIM~Hr,/+!b$[TD}ߐf8.E}ݾ\[:U? %C[G`';3`B 8t$(xO."=74JV>`?}֔,d?&*B¾'Ǿ e}=)81et:[_w[6Ok6l)FD$$fk]kͲ_-Lpk Ν an:vCdh U ÅH Uk ΰ-o CяMEC -}{N$Ct1ȇKr,vb|wEC CSįi9,8o4@OR)~ֵ>A!򂫉.0FD{^8u¥+d #ZHJ@s/qh__'Ϸ9a)~>[O b_cJ].\P[|17}`i3O/[v#,ooU\ B.6oXEfyL`g %q/1-BW7Vv}H.Z\rȖ 宙nFv5Ut Ξˆ` bMH|ݗ~4EM1Yɔ} 'Ş워3=c5f"-3s2P D맟<K/p"B97ae__Wd_d~ImnENs,Y)!ȱ_9UvKAXR| kW-[<q%HII[j2 -o@Чz]EuWf;NB]MuE9~"'3-{w~s)N(2_7Ť1ӧ! Ǿ{h 0lA n kr͜p) '\|/g&'FEҹXjsf:ZӒ8h`?/aJ \:b%~;Y&B4EA -}D?"*_WsЇ$QוOO?[7$)rnCu~ݟ^k*HQmr|OCF{ -A/`6 >Dg7wN@mX?]|T?'PC3CR> eM}_1 ƊgH;c_AĆ !0 la; o<ۊ~EbS~Z2jppLw7gI\I4oBIT(x?iq_/^5kWX2GMWPR܍0EMMr+R!KTRB>55)1q,˜3kfbq:{-V߼y>aa],nїֺAO[n~o\+?7ltqcb\LԲ,u m2Zu ]l SCǞxPhO$`[dy4;e>re>̊Vd?~؇2sA/P} ~_wVƾw 8V|86S 1ٿi? -vlݴ;"r9GDK(2/z(X%>+|u` $"0I试D8Խߺ$id!Ȇښ>Y.m&z EoOuO"_PׄnqOK.L 2!2t'z_51)%uٹyLF?@,<{u|x/8 NAc&DߍϦP؟Hnr󎊉KN9_X.,)I /7W'iShIyPt 4:k>.tGi]}?>$Iп߾Kv[~t"F_o[hϞ4a7޾jcyٙ٩)I+"]N&_7^&SEm=0%8#:p Z0R 9&%&o8-ܥoh,!B`ob7 -DO2TjObf_E8d9dsv;4fnO+c9YPA(ôohI@0YB*E_[~c,2Aʵ:>z}n,S?I߻ه۵msr"lK͟l5Ⱦn{.twΰ͝x_Rleb҆!14djfz"51zMz8wO:r 3Q lw &&FCV`6$$P[^/ľe?_ʾ6a_J.c!O 7cH yЇ| vDbdqХMy߽C_CZ>%s;p/?s --174vю}^Y{MT_w=-ybb5f=q4eO@0`@6mݱ'-棠\S[׀XJV41grb{â{I1)ʁv/{AQT+/"z/If'TL/n6~o8RwMˀ[2x诉^0:8 -f0 !\;*A瀠oC}oAK7:bC7(q1Ɇ LɂGgŶuӆu#laA>3]C{͘k -Q)щU&M[ZA50\ݼ|&_t؄$h{df>RS[v#Y'ht<#_U}'dw}8}Cʾ`O+.HnSuk>`(7mɛ)M#2tR7''Ư^p3g3a(II$^/HK$<'rQF>SkM9\,xtqa^nv1%)!v[8s{MbW1OA<1 0('˜8:p:7b񲨘8h0#'#RQU k J(ZAgcÓ?J>)yzAsc\C -}eg_5ŢsB#:1a LD  |>~1U}$CwSR= Xa֡aХUIF]䪫*.++)?}]cbK!FĶ~"{1d[B9 -`hb'OTA?3x%e{ ?'#pœD0> -gێσ.JD {$Icߑ~WL_c}S@z l4?zQ6\,p /p&ީ)I VD. KSl&5Sd6(sk:ؗE >D;i3~u Zƽ_x^u/>o"?B>[0La ϖ@9)G lj[6m4ԇWaRs&.(,U"=&FNCcS3[{g"<*6!9 VT֜or[ dpPA eǭ?q,1Q"o%1$Cݓ=Bdݗ2eDn&DyiưRrٯ g -|C_j%[^kR}b>'' L Mlσ; _Owˑ=,z`oh$T Ԥz:x6urC{DEV M8IMnms7PDtĬSeU0-ͭWڮwaȫ1~v:a؇@gf 2!p?OyVƳ?6ُ {gӭikjWR>a9e_o6طgQegYBm=E%l 0߉DϛM} M@ }40 O5%_vbsgNfq(?oG;X-:qy!Jٹ6OLQ!'`ܐbNnIIL9~khjty& `؇q}މܬXdߟdoK71쫩b]G6Qe}w+,U}~>p ր>hA&E9З&0D>}̜E_ASWUc'[?=kG)̍?7>bee8E$؏ af(} d -H>㾌T}blL{13~ p"nC+0sNInxzsП| s=uMMuՕԤx:035`d - Q\$> 58:F&-[9 %1*6!9- ^qiEU/jNfzѱל3=S``+`uW"}+(Ce@p8u_؟Ͽ #ľ(Y`o̠pҖ/}7,-͛wJ*[vF[lac q ɩwA;L4ї#?>{ -a}=7o]n(-8^gV`9T)rCsM(EJ}BKGp#rgjq(":./G;zA]S+qn6D8$q)0#KhM\N[Z);v+/(4`WPtmr86#Osh&e/"3Ra0У*p+*g%f_ݟ7 HSDgqB#*Dt1s_@fW%iS 3b  <"ճ/\q}򷷗{B}3e -!#A~d۽k6 D__Wkw+ RĞƆ(J@ 2E`7(#0@ڄ 3Kή^'f?VT54\ -yO~xFgf3>QB~bܑȰ`E];,Ru5ג +0rh U(Zܠ#.-Q3Or/ˏFxm]=# vnGva~N^Aaq)Eyj2i}C v7PW}NHM903ŋME&E\WnӞHx"iF&p*{=|B£b2 -h 5utu04LN`pN<8}pٯ>[^Z\X C]w }Beh=9_ey`>xe%_/҈pчId]}i,F4j>~?$~*-/5>VSſ+GhQ=}V z797PDt\ggK+tĶ_{g/yjt,2r] -paAB -B\Q0QPV%:8AhfZkgLyweQ,|_'O M5U̴ ,$n \$Aw@ tOJ&w_M"*>Es1aKC[ -Ͷ$h~PH&M/FE; )&Ac[8z$vlps EV>HW/:4> .FCb%o(qq,¤q `E_^UۈT8y,aLpcfxjsc~_\I0I?Zma, 0H<%l$$0s}"Ȳ?7 s IL=Xa[V"k[{G/Зv!=yVX/ohto)ߝ4o!aƮvp̴hiǁ~>.mİf&$GCw8^Ǜ}&  $(^m a?܊]N GFLޣd6wٿd_Q -])cep}j}">^7Ycư؟' }.g˦ՕSD̠aK~hT+')eU MjyI&ic#Cفӧj(-ρ(a_m0]%ˬ 9x.?5I 8C#b܂2CgWϙ>KW _ @=o75VURCQ8%>G8a@@XX:}NopkmD}ϞrKxqM}g€Y!a XybJ:ɸчK/CW/]87w`]5kAnV:DI:;֛BA3E]q񩊡v}>тG#b="j<15#;PQա4`@qĝ)ٿ@D8EonP$NOI12eGFIoan*4A@t.(WaQgꕲ VзŢO̟>}.o"B@}'g9{ ?/_]ۈw"'VLܾi_C!̞ΎD(_o7H1H>B%4O9XJ0Q p9hbfa)a/'e**k<8/^NM!Ҝe)(>>/ܛ*@щtA%d_Aôa5px.& EՌkDJW$D2~=@i3쩓?_V5R#t]#f_浫/0w=PS YiIۃ=\$b+̄ކ#(2"WߌT1\쿇%ba(qu+¤q ɻ’*ɯz)Xq+ 0I͍ude&%}=}J` 2}@Gf -l`p`u`}H*'E`D4[Q1q IY%n# -)ZA?O$菓bG47Tݓ EK>*q$a1FnOPB/.ttxz87Vo ߝ_TZQUxc'`do*`G?B?ϲPc݁}%EYP!P ?/Zdag -_ ;r}3rGdvs -/W}=e$WV"kf_@PHF_TdU ? bgqSO0kKsvJN (>tuvIb132|ד׽Б-&W0%_kA(sTgVTlim?uLexdt:a_ ͂ =݄*K -r3Ӓ @L-MNhh@|a`X,u6W>g@ ̢T}}1܂%.,R[PTR^yxwϙ>@"?LQmUܿ;I~A=; -aVWb9K,c"C}x|G';k4] S%t/_O9aJ/1Eǹ±2[Xm -7oQ;剩yeaZ;`9b:=`ԣ,=;z7 x88TB(ܕ !),y yBB}(*t2}pI -Ker5shiye E@D)'пG?'Sj_7>Qw]]2yB@@(B<p QP(@jq:- S[9vnM%sqwM gw,K)Q;')EE?NJI͠PWhpGFp Gf7 }y (?$ƿUѷI,H.)Myiaa)`Z6 - - *bTjR[9Q =듧3`4}.] ?f75ijIHSq "48sZTe_s֛PL?!7oCC_ra&p,N-lz"8e:-c]FS;z)?ѿѿkb6wq,aZffG-8~?7;3-%1!MA -9Eigkd ޔif0`=$UNRސC7G*U -PTKV{  S -* 23MĐ I U,qۮXw[xH^ -ƾvWZ1Z3sf51&yGh賓ԡoi%"LܥQ,s+DoIRgnߙWtoZͧzN } - egNQG5fVZ,=*K,c?0uOO4=3aXJ1gQLXe5[?9ާew`(N\qٿe˗>;7`77B₼tb"&*",$(oHHTX(Z-&ܟ OCGsPD[ME臄EDP9ydll6D1?(ң!>89}NX,+.۶&)c"B*,W*9Vs֡?Sбϧ*&q+/ Q!08,2:nKr*+,)xB;G/Hrڍ/t21Tu%3}cݝDEYqa~N6FRxaSmYAbX}>g3s,f7sb|&tiN?7vsCHCRqXSvNR$CQGF&$"ˬⲊ}>G;q4}z/n\cq=wXWGƃ@0o' 3wtq8WXFQ,I#C)MeiBGl8^>A!'&fl/S^C:ցj_FkBSӲԬTg8P]QVR *RST`?2Vz{2đϹ0/ڢMo~?/^:зyl|:Oo_@R5#7Sg>yM%&G+T'G -G$.YU^9=#Œ "9v#H=/yAma>XHfQ!Wxxm -7&>1%-P]M-mݽ'NF.r96$?Qy[q@ueyIaRA@_pʜ%b['A)h:38aRS()_x0@>"p.[nc+F2W)"8JA9bUVk~+%a| 6rl;tY3RfxHBNYz"?_`i16HvӦ >}ZԱ?{\ +-B)bTt(khji9qvQ"^C/ UӅdSC}mM(ðHߚ#B@̐IIhX/ajU`Ooo?7D8ώӡo%YS~v) [rp{jj~[GW@lCWFnMoAg1m@X'b- u -fVZFW Y._?SS3uNB(R!v q$@eQ\VYol=p¥aW_߹;3S~=2b?p4m-͍DFqa~NvֶĄpBbZTh/_t1ʆw%`r|3SktáϒcYPvB.ec+w8׮ܸ)<2:6!1%u[VvN~a1%Xlag$ X9lwy%,+.۶&)c#BY }(KEIk4I=-q1]Ͼ -g V qv!aq[S~^a د=xCc2{L&d SO}"۷K twFEYIa~.HMQ)Fhp/:<>Ӧ4( ^ Q ᆕ,,,뮬,B r -\r }Y(P`q4b$CqM6֐I;5ujga‑ŒˍtZ}^}? C'O ڣ?WѧW+5l&-}3 +.yzAzAQ1iٹ%Gjwt]@= u{'oa/gam#2@?+##yy&h=>C%JoO9{iz Afh4igsynY܂*pI`Mff?}~}}FɞvFEiQAnDYltK";5t &Coc6>f_k]-<4' -Q|$%782 m&C{-M41f9pF2 a u}m@U5ʵ<>5-(,\ž6&wqwyg..Ik .JTه)ɿݽCؿ6ⳡOѠ8+ˊ -3R~>R wq6榤o~WWg˗S -u[B_TG˷\QQhkYM-mɅ"'dUV T>E$on']8wbfgqA^v&izK7.fh@ ZILԵǓه)flw8 !~r`ʺF`at߿05>chũ@Gksc}MeYC9#,${N # ܗԤ٧!,?Raj+>zO-xp^4 -\vmي7g;: D;wyEKHN͐:\\VUS،=f`pMJx)_ӧNtkknCqiQ!X з40wa0ovi\jjQ?5-QVກXI=c.ml8ή;vz K*,klia;(W(:h>(ٿW痆< wwkki*/)L۟/&*<4 ]tcY[0!z` R&Y/t[LjOY[3>cY8\PG@jiY9%~SK۱ngtp4Jn^FW=XW]Cv{q۪\g -:/_Bj)+*};#cs -O/Јq ~ie5[{t Х,JP,ߟD 끦m0naHEia~n6D'8G* =<'2}<]Z5t_*aJ}*櫡?: -nF]\蛚[@`'cX" +KLI?_XZq>{EX/^'4o,24߭^À±ݘFL`P؉<>A>rB=jGpZ~``_1m_Q쏍 _m@(-*;(OOI{"7gGb&] [,. $QO4.}(w8+ؼT.{ !?WPTZQ]wtΞpqx]gF-\` FϑFH=E|&܄idfSE_ڷ%_SÂbJ :6DaОH/S2,*ih@_)%e9Of -OK aLHfد,+D bB}ibfiͲs`s]݅"O݀~hxT̾ yΡeuͭG}8[{D_ЇAtj$Pn9#[PTVUۀ._:'#w9@dhpLܗǏ67T@L۟( - HЃs%pgoZ ̺`K#`qc??XB1[чZCׂ32~8BD -YGeB*,)GDoп%bOa'@)Z迮}HOESm]5trv -9SP\ZQ][ wJl_ N@!} \8$l5~ꊒ¼,@?6 -dҭM0&T-v@ϰn<ׯO04TR`) -U} -اёl_PXTlBJ:L5u!Gc7x[}7ӈ}ۃ}]n67%Y駓`‚|9l7ӁacM056=uGuݻvʿ]>>CT. Pw ,%!#TCc3 Árqcs|aNgUBRMKW{oY!QF +";;Z3%E~J]M - 5 -(My9 &}5X!D@ -Y*Ꚙ}S ڱ'phE%`&*1~wM`O9x}->db􍛽Ȓs-2na^vFjrBlTxH;x`gK?jifbwXG[󠚊>\wγcX}E}%eHH[簞Q#W%o9AI:.b跷67A*NOIٮ'EL -If)%V;ƕD bV}C%eUuMm] 0 `|5u0}Wqܼ؟xk:pd>y4k183&0}IC]MUyIQ~NfZJb\tDh#bmenjd@TtwHd}A=~ -FE㬢C<ҥP Lͭ!!PhD4T̜򪚺(Q_?~@ -׃x([]ƺb'vqjkb`wn" 5}?}e,@7'f >TO@p8b"#NͪF( ocrW_(0{0|'}{S_'7t\q 7 a :ؐ -h yc3rɏ~Ffb/E}M-HjhlfA0,767 8,2T܂Ҋt{nCHc_NNݻR`}_p/y=[+0e9~txQK3JhvA} sI'bQEG)> =c3Kk;Gf")w >?> -?`2xB[ksRY-HM - tVlaM(:Hsnٟ&GA'Gs2UPO0_RK}mcv_`HxTl<[v^!jjnmpjWwO_ +2""G {7oo_l?X_SUV\' twqrdGt!NJxok迫'uT5dv9>ܝ>ܜ0 ~yUm}`jg͑n@GKSC]MUyIQ~NfjrB\tDhWYu~亿#=9Q$!U ?"OU$q/GƦV6Nή^>Aq i9E%U5u o흐ᑻ_LxD1b|;CD &<}]Xvi>aq3?LQO -42 -9y䄂~5 ; M0Lb"04"&>953[^]YS ܛH~qi#w21>6:<4XvP_[]QZ\x*&2,8vsap`if&zqWQ_̪/-Z3^qg#1|>3d4_KECǜE_Yz&f4-ō 9[P\ZQ][߀| G'P.!sS}$gVhZϞ,-IQ!~ޞ'+sS#*꾆Iu3ut3c߾?X}?&O(ɘ('߈fIE:4+] - -Rstr>t:#;[Vyl}csk[+]{` )pxK8Ö ~ta?.ɀ~h/d}C*EGKCMe"}YaUwf-[ewUDE`߂FGLzpB#c,>V푱>o -E'$I'z^vflMUyIQ>ܝ qA>^P k!yPmκߴIje >D"OVM9AM-_OUgǧK)3(HJ]Q: * 싀oBAQd'b&jE K8bꤝ>s K)y>{`";vSփ?qᴫ9ЈĔ/,KS{xk{uX>6f'} Uu -8 siN?KQa3xJ`f(`B吆aC#sK[Gg7O$ao`0><|rFCՕe%Ņ/dg&gG;SfGh:Oy7J۶nބ%}1d' -(?^~G#?g> KQ]R҅@蟲st> S).)ű7w]xM +`r͆ku5Uy1/'+#59!62 澑>{wܱ2$?t(c /}?}^2S/c>/OJŚ?5ES. };wPMC[OЈYo؄䴌IiyUM }2IB|詉5ީ{xf,E$hkinbdxXG -V@ͪTr0yϝG_5M?v(Ȇ\f&}Ⱦ;짝ϦW'g}>RO00j*^TT $'EGtw=MraMuUG>.(Oęho౏Uٍ1?ȏ<#/0Ik|E_c諨CS9jlbƅPhDt\b - $7NjEUmƦ xeG̝} <+~6 4. -wq2716d  φ?m -{AA"NQ Q¾a?; "~h?OƘf(RR\!;3=%)>&2LǏji"$ܗl|%$L DŽ;?>0ߙ1C_>LBWqSsKa1I限U%W .yp\p?Я* !>^.vV 7_C>,49G,/lr EdwugHNDK 7nQ$[Cه|-`HZR35%L^NVFjrBlTxV'O@hA*&t}I6'c>L_hZR~5~|.}kSY|i { 4u OZX:vu<(-!h?^-zc|c18/%gruwq05>TRd|D_S47G'2dbe_y?o[D`HD a?O6waH}dYGZlV{y2,f~.PqØ+}XSd}\ՙ¹dqa0Ҏg$}>}`> gOY;o4|AĿ }0aB1uC/ЈĔtD~A%EUmݵF,a]~}. 亊AE6DA Ofwu0=~@WK0OYQ?B?Ͼ _m]:I kwdl{O?q-nڗ 5M#eWJ !HSc"Â|Ϻ8`ir+?a/ ϸ?{6hcR}Irȧ] ~A7ߍh>9!`/V^kзwrq;c̾pJYEumMC_C{ߋA?&"$d߯LjZ/W\nS#$(R}iʾU -mۑ}Uu-=d*WP<ӽds&zZ[`7nr2ҒbCy&obLr_]4W_葕A},}I} a,?"q|D[Z>߅(>EC跶"M7_1ѧ"#h, _}e}( }Wws~!Q i` -5u;iumk/ czZ۷mSП/1<"{+ɱ ;_/^JȰG?}/04R}'wubd>|@xKE NzJ"Arr_hUܗ_dB?.ues,Os_ Gc߉ΰϲ1O$q, }eG4:k 4\K-\d+q`P 7"߫? iG~"_][K§&kk[p=Oo% -7D4kPw>ddيCE'8z]h?@bulIGF6-zJ| >4+)!51,׭Yrf?j0w}GD9}ipτ>4:7K}_w _GWV]iB~s_h|,6?=N4gH>l(yCBrͺ<0ȱxlK~U|mU3m PuM ?3gMC6uԣoW=wg.aOSWw}/XnVb?\>I3?4O}ЇJtiDu5Օkp'9Ӏ'PTdwcezܟc,T6VJKs$?cSүe;%~uM ǯ//-)?9C/>WX*lTvN-B,oׯ(:?}lb2\tWV֩ىj }&ݙzCϔQ ?yHB'CHJcCG@d*l;{Om9cC;}> c=!DbT`}4zVmuUEY.7\t<#a۷_<ljmUVJ @}}}_t}?#?p^%e} fV>tZaV;`' (߾oo=~<J*)k<п$Eou׶~8uӺ5+~!/:ɁoSK=w}crmG1'_bدձޣ-kT ƴH\LJL?})ݵZYr}7NlmȜg&ߧ]ecYz%#3;eB,{nvfƕT\g0"}\_m|1/7߬`TZ rtCk, idoqF?}؉ xe, -P;q8Օ-GstO#3{ҟtA&_~Yd>)a * g3?"#"coҖi ZLjki/&3bc!e< ?6 1cgJi<}[pŮ~Lӎ̚3+YPXKJW - ĢEw-Џ$37b0_aQ!@Oo#' -?,7oݽ(&6ݵ/Ѣ]UK'N͎g? ~a/ӣ??wv -s~;3v5N`ނEJ0D2j&/4})mw+ᚥ/(!SxWD>CAzlOo7B?HDтyBw]kξ d컸yг?l~Ec7?/>L˴AM,~N|y -"(Qsޜf͘7w;Ji7cK~S`^~{B` %7oXjywCGg>}2BiewcƎ4ew_S!7RSӻ -+}t|)%5jfv.C -HpG$G_GI=@ Cg}4`#<S~1ՌMeS1Thh6TUU~>Euq$tRq4""kCɾ4 BEI8*RE.lX1 A1%rfjj~ܾM涂m8/8<=W\FC -6+ I>^'l,/ХiO@3uvհRͭ]]pwv[qaqW0tKf0bf54,F&K,l.w{!B#Elo%GJ5п|5M=t}I3K,0 -9731{rЧ(6僿Sߣi4JS%d؟a_eg۔dlTc_rWH:r\"TW#~|aRtDromin hkRϐw*1_UT'N6b> *"ā}E}/?)rO?Q|3sKk/B?,"UqJ|"mVѰ?32l߿7xwn7oHs,L:͟8Qr?O&prVp"#7_GKSC dws,RKW/CME_Cؐ?>|l51%W,LgF1 -;H} rr 1-M 'Hrr?26:2,dE~2+%p߀X>6XYHќ|DI3M--8--Mg`> }k*?7EObRy9Gb\j|ܩ7]baev7`EHXdt,6%5 %5u'Z4/пNj4HB]L+&Ģ?HQ~5 .v#Eg?IQ)%7:b)$ZXg_:]X>}BCu/rO.]lokm>sqC1szT*.&*"48_hܷ&F tᾆ<ٳs_ -9~h(LI$1ZYM?Y4sן$Wӻ=Hv7>xIDQO.}jٌ5&0o- [%;j]FvЯ"E i}!C0tӝ蟕GRm1@_Ko/T`Kٯf?g>_6dުaWZEWK#' -M[7mHK]+  -zy fM tu55gruoS wkvSP@Hq🪯?S_ -ˎH+*س{'O}9SygBB̜o$pGbVelؔ|O -hICr·\BcegC_4[\ľr{.2pP*|[z/b?eߊ1WYW|}c;}=xṟ>߼1Q"NX"Udv_ddPyݟ:r#B!"y_/j/ua~ޗM"D@_+|Eșa͟O7Z-l.w{Y N*sq9R1g/w҅C+3"e;#_Jdc0o@_ƒ~3؟; -%(/2^e꨺a2Ą}:#bn9rJw-Y2֭YCޞ.ΎRRPsIodZ}52Q_ hE௩WU-+-9՞ܜMQ*(̟5jZ0BoDj?084< -ؐ+E rпIC-J-Hѿ+CrAqEӇrSQd0gΰDzhsE^hwrmoF$%NJ"C^n.v|+:LFT`T^rK +*+*++G$0_6|Z&ELWe|E5WN%|Kb%  - '$)7p/}>9YOC=Yc[=ĢGѿΠ.CTR_~ џˇ[Q`O JϒXRa;),䱳?/hB 69/A}g7tgYpjU+c#‚Wxy -}C}='?f?/Sh϶nIrHRr(NyyY!b~ q2 2D./Oc̟h67VKwzxYJٯ<3ӝ^ծ3ne۵ԓ(J@}W!nˣxtڝvG^ v;]wt?~"pt`];}ۙ9sgUE%JoP5MZm3,QV5 h'K`'s2Y }`ˍ;-e-`]{8`EF&㝄Qj.ѐ|C|B?&:@jTt}>Paѐ菒跷43B^nkxiW U~fѳ__?a?E?"{@ܿ4{t4iZ*0JMJ d1nv"ݷl~oӟF>ω}GY!QB.r_ܯU7(U*ZQU*eC/m6f#cC0 }sJG3oo`G[Ig"cRm$_M -Hпn.):7iL}/8; -wYU/]S1sthf;L bRSOW2M!͍ꆺD,,+)fgX1Q,_+clU:_57'?g>4:~B2;#+ܗ:/ȗIY}: П&ge[la~wu}|YQ1pufd=,d5u CB {#CaQߛчH?2C_c>j_ZD9YJ,1e?ee~ ^4wWCwN -1 -ϐ}̀Ștԩr_TY%5xU2iURzjR|LdXpA^@,``oH_毀X7AgV09^޾LȘdvzVN~/(UJkmK; -c'!ϑ cPESOc< .;-3z09l7FE5/'3s -8|AE%fـE5cǟ Rj}ľaOL'Fz:ښJE\RYQVc+!.:2,$Пߊː'tR?vFFD%2aH\Y%HaI$UbQ Ǘf;%1.:"4}ɖOgӻ滸yxy3!aѱ IiĥYZV!k 涎& -(ۨf1TQCס.ES͍*>OOrSke䯄cw٧a#Wmұkq2g=Sp?>G]=|PFreqr_$S!,/EsipcFCÕ b?'l*mnێͷw IgC#bR2`8%JV]%mm=:8||rߠBA٘ ÁfH"TD0c}4a,Ο;sS~gF_j~"e}VJkJ`ǁs/&ٿ=6~|ŒX|=:CgQ9ҤQʥrxRAr ܷ߃߾mf#QVbܟ&,sa؇_5&>1r<~I@P@PZq9`~:; @@ioMOiJئ:כ1la+=>(6/-UJJMSK[瑞c(N -1h"n4tA?X&ч?><׍W"_s~ ~FN>دV(5io07QFwcerCܿJQ}]͍E\"(+q s`q1PL_:ݕr G}<fݟvwpluf0h".ܢ* oOwg'GLijG<30O64uufߡ7ߝ3W啖U%E* }b*fTk!071֣Q* s2IV -tuIb̾bsx^9:}5&l%fxɒUc9OıFU_W- %Ŝ̴Ԥh &; #ZpdOrb̂͘ ?0~VNnÁEOܓ~ :AGiɟ2 _Cvzmu;鏞GLM+ TɪUmK{aS 0>>tw(.]ӟ$ojuRB?O}G.gΟ>dC8FLjD"FT@\( {aYu{>EQXI0Z4Ӊvy .6ϟ|?(fw?@'"F)?4:~ ؿߟA@31jOMlstxUX_SU^*s2Ғ<.'"48微[Dkac _7O~Q̾cSsKkv:gb"~n #°LgOف֖ 0;1|运|E/3A3צ\ay}~|yW>/˾~KWPTo!؟;DEEÉp!ll>2=Ai36ͱ';d ;4͋ S32sD%u -mݽC#(п uPch'Y1m~~Fa(d!*NԌZvS}?P?F(}B?ˍD3<ݜ6G~MHU¾ž >/ɍ'dd~mbop[` -g)oQWE+az:[5UqA~ns 1Qa!_hZ)=ڴP߰~}WW1곿{A3 +c)}/ӟa,/n1k+ Fz:{v ߡR2(a7|(3-`͝g=!//JWw^]=,}SSb?42:6A+K*).NL^!G2fGyU>naoӹ?:<&mj,+)*df&'y\NDXp{f ܱS>>r:JoDGlG%wqsfLJBo{T9zEknGJ|Hd36M-d>;+(84ɩ9y¢چ&i[GWo(ag`+}b +7w=4W''. WIB g1)}_n`@ƾ=f%3s~M};0<6_{|zgȫEqܟ}Vic}mUE@,9N724ޥ&> - 8-~Q-۶kj}Ww_!:9{xxzztB.e^ϴ4}&\J/| !.0ߐ6q|0ǏΉIٹ‚"IYEUm}o`h0gp)_ >dx޺yꕉq@/f'##ހ=*oQm44LVb?#,,췴wW؟!d䞷`,>׮N^4>62XWSU^*fOOM$DsC} }}{ж Iqk,~ -jÿR}SEWN;8:9`4 -MB/)eSm>(eoڵ[{/7#K|70 -dGF%Rg%U5u-ݽC#c.C@]Y/}5T=x?ٟп[Ņœ̴dA-X:}uUp_?kEL/]/(~54u9}K>'gܾ"g}v:,IP,D"mE"O_Ce>+(*,4_|BB#bSٜ,n^AqiyUM]CS |gw/ܛ? s?=|%oC+Q OL> Aܱ!@ZA0/G;}ѯ\F?a_f?r_@PHxTLBr:'; EgrzGK>}LӏBAn}]MeyiQA^N'=59!.:*<4$(0O.t_Wd -~0K,T )e)YZ.};{G'g..qq`ogØbB_B8? $S)us+(*oM? -{1GE%$sr -J+k[.wCߝցKPK>2zzhFamkms9i 1~i/G}[k D_Wї^F=bP} d_XNq/d?,*&>9-#;ap-p^do%\rߛb)d\XvGz:گ67VWde&%FGS{s۽K_ O/+x_蕒}E7BnWPRQO9bk1oae oщG}@^kwT<7RD -z' '_8̇̇wk׀?GF&$gdUV76^i߹xXp;TeЇyR)>G{: r3ҒcBxyG=<WoLrw 8U"W;{;@ 3ܧrB?[p(qUpRmuEYIQ~nNfFzJR<㾿(-) tvji8 /W2oHk ٓcggkk[1@ -}%bf)I|MT)( PSءSG>}F'l7eȋI)iٹ%eյ8h8L;T#wXoa0cLЧCt[90WZ/Tp2Ғc"Âx]h mEk`c>"R3~ͥ`opg,S>oH4sr.x|+MpxܿWUfgf$^뾍5oJݩخ?pÕ%_r6nڌ+B}#cSz/9VV@ca++n"yFG_"EG~)W0V0'櫨m`iҏ뎥H2'3eU5Z.ݽ`w'`In;KWD/>/sjFΓGSf;<=~>7|Ckk‡\UFIľ!Oط's KLegrJ vt K?#n?t0h>xH>;G'.܆0BhoCj*J}nv&;-rG!;:ءf >}JtKo_$R z _n*+Ů!o[&@.}fQUQRݗuD/ "$'>Mɇ_|||xpexrij30 _͍rD(NM t?;X!_I_%}s+{IO3C#.%3s꺆f`w`ht >n@3쿥/s~Ylcr??ae OMޟwBrp?!w3待觫k6^o`+_gBNe5t2~cSkGOB_nVmKK (?$d_A+S a1@GOesyť`~cs+70ߺso1Z^ w _xC%[}גvCa+Jr2)q#B< GM , uo,}u )W;_WXBvhdlٟ| z}M}2!_<\p#QWZJp a -J}۽Vf{Lvخ -*`oZOÿjQd]ܰQz̖mZ_,(+ x̘L[dmfADDE}_DQ%7DAwYDYL&5TfjsҷMI9/ا>o -1As|=|ҡ݊BEو`A_߮H|YI_ɇ_3_4e>|48̷oݶ}.pGh/7e+ ۞00"C"o)GIa[j+"^:s"+PZJR|Ldh./ -}S#&sGy)0 }B#bS3srkEwKWjZa)0Cãh#LG.>erԛё!؉ޞNpFTI_ܿ||>]Bߘ5٬A F(1 n_}|IFF<qI 5ԗ}e~JG>&,j˘. \VOߐ3 `bsr`~|QM]CS ޾~<#0 )63̹G/Z!1M "@nq_wqCcL}]̾`/04":>19-pVܼWb*DM-Ϻa-f -"܇@+pjk}] KAGZ[Z p~ -eK"eg& - rY<65?ccj_rCo```#P^B_>n ˱ϦŸ&ŗD>?#2 |D>?l >pzF<N+c~eR.n:"4з9>za:G|Ja[z-Ʀ;wDD%&O?|3g7nݹ_ZVQUSу=2Zžܟ}'o>׃⁗/Cn67ׂJ ܏!wv,&F\_K_ӒU~+2'r>(WP L¿YGG>::I7ZC_Y(|Պħ#IR-MLkӦo5261[XY;"=櫈&lڴI<_E>q=|;t7o-$B}wˋGwSWg|}C.Ϙo&ZXـή[͏Cɚ60Y7ual4 }vlSEAAx>zn߼e@G3ߗ` ˿UGEsG)%K)}+[g;v Mؗz0ȱ?߼}꺆VXɩw?ӻAYC^|x=toqd?ݻvl89X[ -e+I՗)%_YH%|ʰ?f>a~M--j"̇}N}ė#>3O^ O}$3ᛙ -m۶EDaSͿI y_? 5aG;42HF~R=c=591>bG)P[ WK<}ؑF;<VBG~OW$mľb7 8,2voRCG?ZQݒ啢چgݽ}aXɩ4|/Ddv;E/Ftu-M -'%ȸZ[YIL ) D~U*+)P/'˿~}cu"%ϗ?s*LU3Rĝ$"17[XY;8;v OJ6&^d246O5{>>iix`u6׊*-.V8y@jȰ_o}3>P_GIAysćy -LN}ȘI)i2sr -.엖UjZ;:)G`G޾!GO,؟lSY?>6:zP<IWgvF`p{'hogc~=,Fb$/?0_}0:|ć밚@6B3%՗>Xg%_"2_ wtvus@)km|Q 6 1z#!C_Ie}rQ@&2,k o8sGjIUY_Lj boi?(4"&>1%-pV37nݹ_Z`M`K qm2 Bg{"H~}U}P1W⪱&{͂ -`CTU:APTt)D5JUANd3!PE||)i9y%& Mw5oniu1[;Q1tw|xvW=}aFpСO |d>d؁C01vQ~ זG k*7YIQᡁ~G) t5TlK^ɋ>:Ts6 -`_r)Fܯu?1 8C?z -`H3, -T'd +$*1t!l@UtcAT|^'|~|IiY9߻5|0b~r*12^iكJb~0ɸ`(0i&Wf?& }}eT0hgO;;Z+K*VXd7߷ _O_ΠL'4kcKJ*(F{>r7 8,2&.1%=3;bq'˞TH(ЮPæPB3})dU('wHaa>ss(b#)OyQ7 -)J? ϥ~^Va>>g>/_5՟bB?d>"_JZV4?`q 2㔷?1?6.!2ac^ãxN&fSϢOO2NC vnn(+!fg rwq?~ oj/Ca>þ)1qg2s/_~NIYEUm}cs+tR7fлHT"侈B=/p|f~鐠?/Nvǎ@[B4O_~ ~l''_I'>>|+s9'7&|9HLӸ?BOϐD>!b߶/+*e3͑c8iOGF1c˞^da4lǘ;lh9fBw:n BywדƇUJܼ~r~nq}N81h(Jd_rLϡVXð/Mvqj e+ȧ, -}1ϟu_"O~߱ȗSPTRQUӠ2߄|k|wO/b٤LwKS7";:v ?*`>dOY)ute^ݝ-T=+.^8.-)LtDhIGcY0mkb?CVd_2*j:z4'} 3g(vrig9DEzpsqvGoo@_WGKS]MUC~JQ)/bGG@}OQ;ܧGbQsn>ϣB -|a mœ/ȗWTRVUS.t懆EDŜ&27ocLC#>_40z_bhkij,/{ pFPOGSMEQ^z`,J(ak~fֆq BM~ޅsɉwCoM.cC=]m- u5_/Ɂ` -D~>k? (KH=SLg%C>e>}L&\E+>7W'uguK!U5u 2ߖd粲/_*dͯo131lߡхɅj_Ϻò/J68?̸B1'FG -I🠂>=MM t55U~~"/ϫ.GYZ} ͂ -cAiB[>G}q ]p/"/@zD&^U54ut M̷?3/ (txdtl\BbX]W|a0-O&., ?gч}3 -ZI{ƇUJܼ~r~nvfzٸȰ_AUg'][2q]\X֭ {JGH{)8 *;dL2$yO瞫Htwo O -}m 5e2Ǐ oc_ /+(jhY;zG'&^kZۻzG'fP7;L |I K @OW[KC ?/.N]吟 }hg'g"G]| -}*%('K|D>="#/+*"u L-ܼ:ިPcT+_xTbh_<[Їy]joAf]docifl/?| ~>c_#_Ҳ -JZ4~!q3sJ+[ڻzFǧ]]qka` rJZ}_qG?8~WGĂP_OG[SC]UEY~<HBM~LWG?e`K>8.)}f꿕}xN|Z|BE>ȗD7653 e741͟Y`ɑ6{ - cCK?HD>FjZ:@d;##cSR3r.wt`S"̇c>O_|} -}WVx>Cӓc#}ݝm U%y9i)bΆz MuUNɟG_G_@o}mGH w싓>!wJQEMone{:(lT칤eUM}c3 nܾs6  ƾ._67 -~/7WgG;kK 3 ~]-M 5DC+.O 0mtuvb ݁'[{{3~vcF>N>[Z;:y@Ag>e~eum}c3f~2Rϙccu}lV_AѿqmanfzbtxrvFꅤsQgBNz9;Zh(;!}D_D'>CoCwob#-lw+"?Wqjz&n>Ag"c.^/.oji2wjW<]" *>H& rrs /'? `~_oOw7'G{;+Ks3cC6r<?|E?~)i]:&gL}w~='t"Goeckw:ܼ*Nd?}evO -(|>O+6%aN!=}KnPoW{Kc]MeiQ~n֥ 1gB}|' (2N_B/LON {-M u}<2Sł?ޖ_?$??3A~ .(gOO-n''gC?7m>>sA{{.Iė '"$"|Ss +k[{'gWw/_ x'㙏_SЄ5=KA]OhH_(߹}"T`Og[sc]uEiQ^Nfĸ@?oW'{K3c=m Ue2Ǐ~ B?g;?D~?d¢J+(jhR{ED%OI+,)mhn_v{'q&rnfz -:Z +}K|I#1ȷsptvu? -œ`~qiyeu-ց_@/ݹ_3/O0=deЇk 3cÃ} U%y9i)φy8Y#u4TeeH -b.~?D&e;.}1#}iYSJ*ZFv.^FŞKJIȾ\P\VYS;04:153wد4U3c 1Jhda (sMI$;GiAdPU[;;05֬{ν}{ow3j=ù/_z -تU/ZC<.I tuaWU?TDXHpm׼ȁ oD_@~5G@?a*|e"ojȷXJw聑? ($,<2:&.! f~>kjA淶wvi & mJsB_ &޾~ }sYζ憺e%E9Ԅب_o˞. scC}G4ޥWoܵ{j78c|̂bc育@M+SZoj39|0Ȫə'`޼ Xo8utq),ޞ6uW?Z -51!.&*2<4$(~g~$?~DdUQяOmT^fE该>_Lm_M|(*Ya-q/]HM0[:{i 'ff -*bxB'tX0Mj*Jeg&D޼~D$諡7hcu=t؉gΙqB#bRҳr K+k5wӘl`X$_XYs,/ Sr#e P'' <I om9 ؘ?Y~RPWүO8ȗ}}٤÷GodGW_&MLAm!^.%?,"*:6>1)95=#+'f~j7?Hg8< +_|$QᝄOׯ\Z\<6X_[}nqAnVzJR\tDhm}7 v6VM18yؑCjkj߷A 7?kEʾ=U5;~i-r-Ј̜Se%k'x|(4G#’bmckwC߄B#cS2sa̯2o`W^RwƵ+_tur15=;7`24"%+0B ߼z>zLÔbk⎰WxQSK{Wo? DPX/V^]7ur>¾BAa/.< <I vw__[Ғ‚j^q>O~u$!$1I0F:=={|=L|uB%>v \\!dɏKHgf-|:#ɩٹ'/o> Bqa~vzbL,p ZOW{Kꪊ;ycJW֌U[c( -*%""H9,H$S74MHAQwrvvkjڇwCneԧ}MJ  x:X3ӽu]횒˲ϝ=}8@_X!^/Ґe?B"b8rJ*jZڷ ,m\=}?MHJ+,)50Z;{G'f 7ϑ{qg^_*seiq~nfzrbltxzj]MUEyiqQA^NvfzZJR"8~Wg'~kK sSc#Cn!<_KO'?;/;ή7'ĵ{4‡ࣉ/ #>$|C6NېWPX\ZVQ^$AsLN/.0Wٜ'GO79,loa4PkK -3R=}p?,8EP_a.QF}Gؗ:A撜m}CcS k;Gw/Ј؇Rҳr *km}F's.n}Y جՕESXwu63hTe%Ņy9YXoO~G{;k+ s3Sc0DG?/\''O\]>D`k={>y/@|(>| -m]<<)~(ɩY9y%eյu̟[X\^a؜':5/cnWPhom_ZzXO,+.JOyhgmajd[G[SCUEQ^̅Rg!GDo7 G?*v  dUEeUu:w[:8yRC#c2sJ+M]cӳH@{rͮe݇\Ƃ|l&VWS]Y^VRT-.Nv6V׻%?_ʏD7!XϏ??=#q>_ !|yO> ->P|U\|$D[98:lGCʪ:j=ɩUy _yC- _́`oW{kVW]QZGtsv271{GW熦+(NH?&vTDC/l>h 'N9{N"`_A7u [;zxEF%$fdW-m=}CS3s Lͭ/^_vVno ܇{ \=g'60 ~,ꩵ5U%EټGx{y8;9oȏ&?*?~ ?~y,y'σ?I7l!zdޣK$>_ 'Ȅ.n^>AaӸWTRi V"G`/.0Wٜ'gϡx=>;O4~kb } ѡζF0/;#5)!_oW'{K3{z7]SVzE} ?~'@_0/|Tĉe/)(ihi746stq - ᣔ܂j}cs[Gw㡑مU6X v_?)wwl/?#z -_cVWgg@!ߍ3@VWUcՙf ~~Y~i~|GG~xyv{f=Y{^IޣKcˢ O|\;P|c3n;#Eܼٞb:Z҆d~3YlP[|oዷث} 70_^]Y|X_WSYV\alTDh-m- 5%'OH=*,t/ggB"b/UT54un52spvFD'&eVTM-]=ãS30>C}?w5{ ylomibiuey$b"#CC|)ޞDZ#F:~~XoDGbp{T|hs$)"-_?Ȩ蘸ťeƦǃC# g_f8ku{ f>06á:\^joij+Js2Ӓc"C(nVFwohkj(]p^ -/)!.&*",tX`>vv`~@K69e{)X_YZhmn*/)HKg"C\yI;kKs#} 5UeE}h}01߇ }fwA%eUڀ}}C3 k'θ{\쇄GI܂ʚ M-}cs+kT?WO? gOA?Bia~nvzjb|tdh,nvV'-59)!>"hI37240#Ou??ZhKZ{r"E==֞== -|=}C#&$EĿt=D>++" ?:>15=3O=2_k>?ӡ 1E`_wg{ ʲ,Njb\Lԭ +>^=O9;031=~D[󠆚$DO }L苇0(?r/+~PS1}CcS +[{G'/\v+*&.1%=3'NݮށщY*2s} -Br3__]Y䤧$%&Ɛ%{zSя[MMQ OO7^d 07"9 ~@c/=^{&| J|Z|O"/? D~(I)̬uL{G&&gK+3[*#oj ܷ Dj #K ܙѡޮ; +Js2ӓb#os]m,L tAUUee 84?& rI)*`_1=#Ss+{'Sg{^x#fdtlBrZFv^aI9֎ΞF?Z8e5$c$?wA33R?,l~OGۑoi??C?-5J0|&Pzz=C{T{~A-I!ߓ@0OIKπUTV 70/,-of>2w3:W'Fz:[n/&ųY!z_VgٙO%RRJZVNAQYUMu L,Ntq;s㢗Հ!,v|R*'+WM-mw{ybl/ǸN _$~" {k+ٙ>aKK -r28i$Ѭ (C~_꧳i???j?-1)zz==Ž8' ?ŊfOddeD$zvn~aqyeu A'fW2n[$_c_@oݶI$D - uv֖f&F!jʊ}i)/iTxv9e -`_Sq]}Cc3 kή=.\v+UwZ;zF'g@~GH* Svqwr ~ у͍{+ˋ VWA rsx͊" E? Og?e?߈OGOO/ [2ix#_ħ0z{D{̽= |_(AX+(,.)-"t|]X\ZY]*]z]!|{5 b}GF胻ѡ?>2X_[U^B?#-9!6:fk~>/w?hokeafl{숶A 5%Ey9ibų>t/%edTT[;8:{ߵ/.78<61=] r@o/v>12Q? -Ǐ>ؾ_[]YZ\bGᯩ,/+-.* ɟg'@wolL'6\k@ v)z(===={@/>N"tG[@?|t |:z }>3ﶃп]SYV\IMg"C\y)'{+sSc=$@їCgW}|ǹؗ+()k:|TGᤋۙs|܏KLI/*?4 -sAd/"PIP?-kQh " A"ҫiBGiREi;EШ5jv7[6lL&Y&3svel$;s_6 ~JZzFE**j!mr䏞=!ȿCEO*hOP`gI/I?akW ύ4`_OW{k~EyiQA̴vlۜnAޞ.NY͞ejbdЧCJGy $i5u V6ή =GD&`oښ'5#;' ~cK[gl߄ܿr2z?I2?1K'OxCI}) ~3~3.|$ _OQ%aA~^}Y驼ۈO~~/OLl?@t -cpW,VzISE{xzqO -_!xS32/(d_QU]S[WԂ铐?vÏK@H>dG4󿦙fs>w%g/oal蓖P!̩zv57adgINںiUc#B|y.tuvjӧ1U_?D:6׋𷷶476 -_\x ?W,."?FT~~0~f?tbo??O'lc)=_yt*G=`iO'y؇=zρ/K,~n~b!k[Zۑ޾cCb7@hӧ\?76_4$ -1oɆq jySvܾe5+D- ]f97P_OG[SC}d ڲ(oS"jZ:Fm\ܽ}B#%X.qe?\uro`%2{!r r'Te 🗅hokm%yYiIȟɟFKV|3 lppp -`=C_%S@=g=Ӟ=? z/>-|!iy ~QIiY([;' -#_/e2|Lo>o #gWO3Bפ_u ̴vlۜnإ!Aޞ.NY!F:Zj)}%G!}d>g`db:kBE>~!aѱWݰikRTe*![; [ݽsx]$uU&'} -?^T -??92|h㓿pbD$9IŒY1(8=xOO"CK/.-;X~ήcLJGNʒD|_esF>gOl>| ( ]_?FC~4nڰv舰@?E ]m,f2562Pi3J絏,GIӦkhjܷsp^7 8tITLܲkoܲ}'rz>O:3r:ܽo_3r[x#*/c}=B78$?;+ȿGG!??O & [n 3{xcǨQ39P{R49Y+?3+[*ʪ#u B:>|?䟕!2gc.QeD/>3p۟пrIG0 -r߲qF- ]f9Ɔz:ښ>>AЧ#6_N쾔*3&3}ym\=}B#&X.q3B6i_r_N#B]gY7\s߿˟ W 14?2<G^N\"8G~? #@g =}AG@`=bOGEaߣ4?/'~}CD~;> 4?_.GQ_1Q01|9ܻ٭ -?ʅюfJ9{H["!6:2<$v>CP_WGKSBG_UUe}y# -؟2o`d2sl3s +k[{Ggׅ|"c◯ZKrwJz -.I_rMrO3Mr_}ve/`s1%GG~HHAH^HNHFȟӏُcCǓ'As L7]GO,y͛:OGI9Q"!{bQ|"~Qq /~ ⷵwBBB䏜?䟗'd>%3 o2_O>~6CL$Sv܎jy|LTDXp"Ύ6Vfgjki#hB'5Q3辊 -ru\Uyp| ̴Jro{} }!; 6VhVȰT[*Kf0@LAکN9 !Ng19>7wO?iJ@`phDTl|RJzfvn~QɜKWs Jn6}vr 7WAt_ &_䯖 ߣʿ-_D9ECϣW''o_<| hU OIУDb=c,py/_S"XA "j| <zc7c7E3 O/ߍ ^ -C] m[(_^EsJs3Sc"BPX&@"CwrRw]S#j0{,>#G=5vSG%&eL+, pK)7mGU'O_[܋;Fɦ, 6~a׸]$!O`ߦ~؏[O '^| JוQI?`y+#R9s !e߳ >zMm"IZG0Q: cOU/>_|? {lm^x,]m-͍vCS迴d¼iɉq1AӦN&Gz[LF0 l} phP'gg .w$ A!aѱ IY3r fB?bWQ^)Oܯkhjxݠ/^_goI௯c#'(+0A2khR_ *?O/x ![Gyz^P3R{{%=~ Z2 -@>F /Rn⿆d\Lпtwv676Я9oP迺Bg)Y;#+=5)!6:2,B҄qcFz<=܌./~N;;; <}vw5{?єQ1)i9Eų=ROsJ76wvu:c+sS'o.c:]~*9Ar"R7d~*\>x;@(@0@={ׂk#~9_$ob|Fj][71:[[ | c?3ovqa~NvfZJb|LTDhp`ltw3J}W0PVPWWO8t-7lx.+̃Rz^W_r=s}V^]iů<mD~ (A}(V# }|{]675a׿`8^Ua[)K)/)LOIП2i¸1|^nF0 l}<ز/rȾd KLN˘WX~c'!/|z~}csK[;7,7n6~K -ח__d_Ce -q #@gr +A|>ǿ[ Az^G!KWuܯ"UG_I?A *_7X_c? 0/̛1=#-91.&2<4Ce]Ccsk[G'l8>l6wjJ[?CA;~#nW߲u (W .:x)Y`5)O$=Pom=bCܿv=p-&6w = -7Xi̿+Ϳ C[KscCݗW8ϞG~T?޹"P/ПSRT4Bx<܍W5S[oe} t>#$#\ F7O/7hb? 084"*&>1%-szN~alV;?Py%3_\ohjim=KV%7N_$U?D~I?ew9Vԟڟ/Up3wObPyf'z7ZpsvK"U׊G;kz!?~k,M'󿂧*Μ:Y]UY~BO;_B0/B?>& -B?0` -~>f/O7#D;w j;;>jps4->~cO<r?<2:.!95#kFnLN_AQg")!j4M$mڦm;j&QPS^Dbw9TiI;h2*U1GF~h& -l䟀~~a?#{ #@3;@Kn݉O{/vzKKڳ{=~ -ۈߦGE>Iɧ ?3 ,|Kɠ:Li r -LaRoB'OHN/,)@jm8שMfk?.ܿ[~Srܟ$TU ?4?& &%?߭u$2`?O/ُß?2" #@3;@K/v'>_M0 zaG#"Y3Eߓ~~_ħX#+G#̿'@ +` CɨhoVWb&'FG@  - -'xB?(N7s7K龂}t٧gsXhWFBOI<[PTZ^YSW߈r_ۣ3VH=__2^{L!H~L~_3W/g?gOs? XZvN|B,G*Q#q==x*_ Lv!~_OcCH0'|S9̟;_ ~hj3u=N -u5%Eb C!w?zuW.CB ^ }4_B_e}Mf>/rs;}`s/ 0h<_\bMr/~Dtl|BrjFVN^aqYEU o{uS~xG}`bw'/>,/b:y3kH?f?ڟHgG?X604؝O0 2{ B |'>C)ȷȿ"F>=}$ŷ!293~pj3t]d~ɦMMUEiqa^NVFjRBC-_jŲE/ - П7軸HDy3v'!]=.r._f˯[Xow41%-3;7Ds^dA(Q}|o}J; -~= #R_Z_DL~a?t? s %`'=4 939z=jq_E(V-CIȗɿ~wm2g[&{ߚ (??g (ףr#` fl/㟕3U `K@w<:Ϡ9=>#3K/%1[Q|R!&>E>?ȇ~O!'3ѧ'ϝ3o5z]̇j*K -g&?qnC5bQ -><1G }4_3776}.ܟO!a#cb&&edUTj]ݽ:b .^,LS?|CUѯ W_ZRLO/`@#+@; ρ݉蛈<*̃@=^^>'KJUCM*UP|x"0EOBȟ&oI_ 3t=]ς-'45UŅy9i Gc# 1ߡyݚU=cx{y"})99wL"}}WWyސ )rmo;p(컹{_,Ukmzpdtl|BrjFVN^AqiyUM]}#>MfK0G=u~;&?`'*NJ5Z??߆M ]?"<0$=PO֫g'k4[d;rۉ?_Am#~̟1+';o1m0 xVzjRB|ltC|m[H/~0x{B.&|5w̝]"] rߍrߗr7MB;}£b&&edUTj维=:_+6ڢT8R {5j}՛$M3l6{{^ lc4 !`?}Sw$bIyd?g??_?Yx`1Pp~ 3γ#Bqsޓ%>IE>w/|A/|@_d2Ƶ+:[+K -r3Ғ#C}]P[ -C0c-G諨O}>f循*G7nڼuێsK'4! ,<"bR3s -K+j[/\|.(vfvrKr* ~"36~߻;77;#~}=ݜYqSc @#gvnG_Ee <S`qOrO񾻧0sħO/|{9=u{bltdhC /'3-%1>&*"48@OQO>F>E>EJO>!f}CsK{GwOѱ ɩY%eյM-m) ?66>q+_K!3'/jC7]PW]Y^RTdokenjdwFq2B#?UOWV$3>bæ[m)TS?qRKGW/08,"*6>)%=3'݋COcp?YWB'?`"OOgG@&n^u<Ay`Gz\{{8) W((__.Ls?kn !; u5Uyٙ)1Qa~nv֖f$O@C w߆C#b>!E_JB}jqoظi4rC<}FPH؄Ԍ’ /_~?04BݟU3/ߕB_&?;Ef?c T??XXd -: -hocenbta{ \#UTġ+[ٓJ.׭ r/lrA#N)%=3;q -vp?/tY𿖁y/K~>T?00d(sܯ5z"=XmOq/^|^cˈϏ|1A2͟#{8j*K -3Rc"‚=ݜl,L :q\{\.C- D_y+|ϲ}Un.?C@ZX;{MHJM+,.klnDra'8gu?ş?/X0d*sܯ5zXmiO=8_(238+6ڕK¼Ԥبa!>.N6VFzgOk8zDX( kTUG_iV$}>o]?xXI-]}Cc3Kk;gWo߀踄Ԍ’zn-{|N| kBYb??(O #@fYv$IoypROa?3Oz >L4G;'M͟5<8doGde&'EGzy:;Z[h8vp@$?z~S/}kxQArБ5Oi;gdbnic[PTR^ ]x*˹g\<_y qs3˟I??Odz1Px+Q?e'sqg#L+wpu?f/=jBz("B gMf{JGDT9Rsw"If_y~Oْ8#y3z z}\^mWYs> ?r@_wg[KcCmuEYqa^vfZJb|LdxH|-[ЗЗ:aU bsL MHJM/,)S5wML;,pSEܿ 8~_-bW?؏?W??h3@->D}%==K{II"%CcNd<4mә'O?7351:<ڤ,+)JOI V*|=e.0l޴qHRL2__DrsZsuvvήnr/䴌܂zUskGWo쾃YRw_Lk_XhyOO -?O?h +@G>_prIO󵧹'yO{ -||NS$./EHߣ̿/S`Y웝hmVTfe&'EGx\@܎B:KsS#C5j;!B_D1oܴy2wo_2(4<*&>1%-3;w`hd|rzn?tOC#?v@H~!yOw??G</GY]E4&=PggkpO=7W./mqȘu1s`Sg'F{;ښk*J 3Rc"C^ wBDЗЗi:=sEk LL-m"{z)"cRӳr K*Z;F'gGx{O4@/6*"4X\E-+g羉%}ݶvήn^>A!aq ɩYE%5uΞщh!PY?ώ~uO'@ &j%z{X{{5'(w$ߡͿEq?5>:<Ҥ,/)HMN 񒻹:;ٲB RKNe:澱}+k.2wo_2(4<*&.19-#;^?8<vCyWoߡݿG ~V<$g:D4x+,G?w Wi{:6|CÃ=]ͪҢ쌴ĸ >2+2|鞶?7Xkdbfsm]vN.nrOo?E`phDTl|RJzfN^aqYEUm}cs[GWo,vIݿE/2/"ό"OO->BFzzd==^{5_kz/Bd>17f5cy`lNM{:Zk*J 3Rc"B -?oOsA蛚_-tKה/-_}37mbef@`HXDtlBRjzVN~aIYeumCcK[Gw$r'NFqkU}?#t - ~-. 2 -0K_c'3sx |a,7{l1?y86zbld0/'3=%)!6:",80K`gQ5|KC_B_`X復 Rg? ($<2&.!95#+7??x%Q#ߡ ~_:ϵ_?/d&pPO|uzl=i={_:/|_Mow -240I`@owg[KSC]ueYIa~NVzjrB\tdXHP -u( ֬^>m-?_^r՚W YX"{z*Q1iٹEU5u*~p?_}} Ob_~<1 `VZu=dQG3{/ -ENe>06d>2e93ǁ}ݝ-Mܬĸ ]߾ B+^̗B_%yzq104265ܷawvu{)"bR2 -V0pFs.^ >~~N,YcP @M%vgDzL=cҞŽ1o7˗.~E?5? -loWfg$DE+~>r7W';6;l޴q: 3Sc+AHЗn gr` :]{ -:8>yHA0IiVޫ$@HB -BH1`lO8PGmWS=ݻ2=gu~_+VEKLN/,)+kضc^8rcO~;roB}X#[KL Z`ouy4A=a==S{&<޻3;ƻ%0# ̷̄ 0`Wywl,/+.JOMNZ -Bh44*\&Pw&JXRG}D*S(`2CG^_TRVQYSaN~㑣}rא)ϑl'џZ`,&{XǑ&oJ{{>/D|;(kװ̇G ݛ&iwnk(+)HKND̛MVV*dX?q{}p>}?X"+TϞ;WG]>>)%-3;tCEU- wwp㑗׹7]VQlCQONŐ򻤟m??[zP+<w8ғs'x/|e-Xxc揎 ;6loK#CoPRT>fr(gz]ZK%b΄a?2R YspWER3s -K7lDoݾsyG;x_ n  0ϵğ?? \NͰ?8#8ړ;y/|a%?gfm,+,/]"qi`Gطg-k6n(-*LOIJYvue~XHPѠjTJL*`To{gb?@$RB &sp(?o%VQѱq ɩY9yť6!wwpKk\O-v> -kdq߅wŸҟZ -p NSS;sO{9BI$ޏw̿26[Ab6[6oX^Z\ Zlɢ&^Q+2DOB73ǣt,DbLPtzc ?s6~x䚨ɩY9e7mߺõ߀͘=AchGU|dÆE淵4p }{vmZyS5gMF.@Re1Odo{gܟrr2R p._ S2r K+7a?xEpO"o#ܷ`b?r/p~& Yi g8=`{& tAO\`{|+/ә揎 m>02+߳k:ܬ40} r C]Fˤb?2 }_2'yC;|S||PC$RBh9($lkI~vn~QIYEeum]6orLs }/2'7dR~ğ?X?=_3 - E 362daY[ 7WEi)I`|Aը -T"Ч͇w+r*ӱ%2B&sp(?o%VB%ٹE%('1~u!1e'{$3Yg|[q:'rk>;+x/aq5J -td~l4@^Q)2X'C3[o{O/He -ZLA! /]"3"侤TiNc\ -k࿏2ӟk<#ڻޭCɧ{̿3A@_d4uZJ7IEY/,'DEA|<iCߋ}~b?ÞBܟes~`HWo*,j}BRkuzCpo!؂g3 |./W, GAߡf߱Yݦ.CnW*Rd~uey)n~62?U?_\ -OIN ̇/Ct3^rrs/CB#cSa/{7 W2CqY*W5.c?084Mq}ߙ~@-ABQ0~|B҂E=~~n^A!~Mm=p_֮t: F}a?::6>~N~wOsۏ8?3̿2e~d4tUͯ_,,E#P_i31'%FGEEBd-QBߛ}~rT">LY$ !aQ16_x -A3/^*)74ZJZL P_Pc Gfb A6ϕ^O~ۙ=yh >3ߓɿ'g0ݦ.^U -_QVrf~243/<_͏   'w }|~f r?{> 88w?1iB+ oF@g:MrZRܗvCe0?K9%GsChⲜl;>6ȿ wA@_թШrisSCnӧ2X%hI6vaA}>dyM1o}_gA܏OL^p1r5'?GoE?s\ Eťf]ujO9~7wfSܮI26|D3b1 :F*67J+K.?w7!dV+H濆_̏ ̇o|ƣaߋ}}}HBq ۑGspE֪PDSG=5O+#b8Q|tO8Ok0(U+&`~MUǎ"wnGu|d`~H͇?w.2@@5ߛl>>i8C}~Yظvv=rn'Nfe/xFR"+Վ? .gK~wB?M?9i$2CwWȥM u`~Yɥy9Y'O ݍ$ _#A!χ>i<Is9vbG:>W/76KemJF# kסw݁l_ Sqpv#=o|2*e[L 2_R]Y^J5?Apw4)0?v0|rϠOʏ&ܷ/#ݟ7s?̅|i ~jZzFgΞ?E&W(iRs=]?%?`'ⳓ #|Hub3_ 3_P_ 2sgϜ>cۖM~|0(p>a> '7 G }\>}OJNYDGo۱kϾ௨545K7?7۴߇%dwGxt*cq'B| ( (NP'(O6Ё}{v#FaEE$́}OB( C1fCG;~dVvNn^AK% %mXa;SP)|l@7/PwᙯD2d>0 /7';ǎ!/֭E$C"doC6}ha>Oos6}Wn߹{/}ť0kv;aAGCYǓ --Ywn$>MG>F+Cց>D| d~ xcܿw[7ӛl~|l0C78ܧq_ 2ᄋb*NMK'kt qr ~HhX㟑?7lܴeێ]{0+(_N ে?.B?s97wGO?ɿH-!V@m2:ux_2?/7'; C8~d`.Ď  { "b 3Czf7Xn잳͋};ϝ,Iϛ=sDKU4AcQ/%C[:n_LO_/wuGKo`pxdt|9 -~Z_unj^7qɎ|94 ё!̗cOdF]b`̄259_ƛϏ9 s 4Wpobf! wt& - ܳoϏ=y,ɩxoljikF_0._/C,msOF4_ɟb#k@c#Ã=]0W`_g~r+ qϞ>}@福A_͇c/Qϣwku%"w/@}*2Tkhlnm -G )gs~Vk_o X_ -|/>{J?".FWcC}=ݝm-͍ udOIbf>|?/|{[XjG7VVB}7/Н>۽7Gǜ8uO&e}CSKk{GWwo6I?H 5ȯ!uC*B_#Q_Es@*0homnjWTWa♟Je>aQ{wkghp 4 3_" |m[dxCr)Yofo ܗ\d🏋O ? -EUum]}cSK[{gW A&.sq]{T#gFgO 45+kO#3'c20̷ -NK/澑) p  ܳoA>.Ӄ\^YUkhl&N}#S)9粟9'>R|H U??G?>:2<8PW[SɰO'2sDcGFA=ݡv&FL\_On|㇍ź)} KDj 2 B^Y]ohjnmFKɇ!ɏ_gYk==| "| >Nm$mM uʚJyEYIqaA-?zЁ0~>|WgG;Zhi2S5?D7?A{}>Oo5nd ݷ^>~;w=I  -EUu`hxd{d?!)gM7YC_]9_I|(;( 땵ՕBY~.,/}@?/7`Tlcmeiafjlp+OC/Ǐ56 6YEb`0 =agfȊJ努: vX K=gGL~t3Wٯ`W6g'>Jy(*'ɿ X_W[] -r2Ss= }==\m%bJ@`zcǏ*_&f+H,wprqu  - Â?#@'/(,.)WdHg0gO? %-C\^{{n5?G_to݄!ȯfgOd~:%$Px d ߇e~hpTbc 751od75-/J5;LL-,mR[{Gg7/o_@??.>/RR3s -dEť -?OMMϨWJ~fgگ\G@?WDt9g$>]Y E>F8A~/A~3F~u_$LOrB|y1xGa2V*Y[YZ`B7`bRG}2_v6oY"ӛ]+R22s - -Jpkq[;:q ?Fψ~~O_-/B}~={j3SS G>|!$%EkW@;2?*w`g+V 3Sc۶`_E7Ww_a-[  ,"ٕT|\W%&edeU,#xG&?>!C~TsOh -,yuiڣWy>"?ſv+8xAy'i*mKwzu{{ N&F$9s - o~}ȇ$A`oOwWg{kKSC}mueEYI|uDD̿hogceinfblˤh? q?_QWO_,1F&V6N.nxOJWPX\Z^QUS[A??_]߄߹K%?&[r'_Gg x [zzZ{>k_O0߽ɿ }0d~&V滹89Z[Y*2|G1ׂ„v?|'y/H -+~ C@GOLNMRWVԑ_ំ/ao^ߺ -"Cqe?/ y!HbOj=qfD> -@ݝ-%.m-͍u5UEy9ꬌ4 #@3HK $"}=`YG6_@_0 ekquEbTP[Z;$¢ꚺֶ. -5k !dsא7'K϶_#,Gȟ)I93GM70_zr"c\||,oݼ~$K~kscC]MueyYIQA~:;3=d~p<}==`;XY*2D, ;?AGWO_,1F&V0`{ - _X\RVQY][:+"Q+?|OٯJ 'p/Գ gGW0]/Cg"0?7';3#-%)1>d~X*|WV&F -@"_8Of`0amS}, "TPYXZ ~蘸,uN^AaqiYE/3s K+k; o.__C'I?|3s}4ϕ=={QrFD$rbI~SC]mueEYIqa~^NvVFZjrbB\LTdxhHp`+M -@"BO󵴎&<츖/utEbTPao`*4,"2:6>!)%5=3KWPĄxtlbrjfv~aqyeum$.gd渚G???X[]YZ\ ȯ(+-.,Qge&'%FGF}a02_)I%b.0|3d„qӤ/ -CF𻺹{zB#bbR3 w ONM/.-RL~L'~~~H?LqyGh< fZbi{|=L| |,q?Fu2@/NOM@{媳2SSc"CU~>^t[Й/G?I#//Lءwx!ڸTC/Eb*-A98:\r - OL&煿o`pxdt|bjzfI]<9߇?|DgD?K/h8=4zLi?,|:D.ˋ 3ӓ#Ã}Wsٙi)I1Q!A~ޞn76T*dRz ϟC23_78n>$_0_úx?p ~~P,? 򕞾ѱI"@og{:yǻ?W``:{gQؓ3' |P`ğr M~$?hog|]F4|aGpOk ~cS3sK+"1}UQ$5uM-{zGF䟇ɿ#? >,!G8 `\[p/?ǭGg=(=$0_-&y E@_oOΎ֖zXH~*80풋J\ -2_ey$1OO<1#|a~uTS?yJ[~b<`[Z;B= A!,չy Mͭm]e><8 0&l2^%R+% {8^xm mH -I(HZHCa(m4MTjJ8PUҜ~:2=3wc Q<#q`/F̿?_>Мuɯe{D{)վ# |q. s3GMu45Z Sb##vx{z|b`8]ooqO]֮o"S_U?(KHLNIsSKk{o`pxdl|bzv DӪr#oүŸ?k? ]6 -lS?.Q/g+qK ?Ԃ&,";o#<0(ɉLOC'FGE  -&6"a?|}/o)4u7@o٪YiYyeph&YASij?.)NYݿ'ɟC^ƞjr_8ٙ4Gz:;Zur-ɄА?_/u3߀2_608=".kWe -? P -'$%o[;m=CR!'ycH~Νh3g/W @'@'}O߅zn=`O۞h^{={w -?:73}dE@oOe)cc!>ވ]n:|dzl dTϑ+O#t7'?vRSWa?<:6~`VS!?~Le7oOsH @''}#c)R#1$,o~׊N9n|07θ'>_rGf}W?4+5Ʀֶ#&!g@y*IE~B'W]_\$x`#w@dԥB QϬ'sqKޓ'&Oj?4y`bltdxF~G[ksS_\ThG~4@b!_U33|jjf>!08鸿\v>GI'n=<}|B(ܼ|TVQiY!X !rS5/D闲wYg3HV@^y tO_96^^ž=s^BI_M|*<?P"ZWk6WVJ\-CC|}|%2EUR gSe:s$28;)ZSlpqIiYyeRSG7084<A_cJ?&__X2t ([ l|?g_3"S9DGD{(_%hH1$ N#b,/+-)_XggeߵG/2kX /37θ'?}5? "c#cbܽ!khwtں䟦k!Џ(E_90xC ?}'V@=X/c/k/ i#/^$>vF?@w:;ڔ/7W77@]c] 3BOY,~WgjzFfvΞy -KL4k M-mH.$?ˏɯ~Y+_%,? ^<x -@$~}&=zZϰW}/>YԊߎoj7+ۻ'';3#=U%? rE濸d毒_3Y0θ>FEk{hKHLJIMٓ_P(R[WomljnU}#K?W/-tHc =};; {={{Rc!#L.$~ZD~aA~^̌ԔĄؘȈ0;wؑ3N毱||{r}۶!IɩiY9RWTk T~߇#v@?d4?'3t @V4O_ߓ['Y/giϵg܋޳.G(U[ HjsU9YiI F=4_ߤ 3O_8@S_!Cc1 Ȩ蘸lť*omO/яy? /~ J/Ol| ,uS.z=HOcq3 ,/^8Oy/ ' Mb(3HOMINJ Gk߾uF>^0W1}ooqOÿQ;C7!/SY!l|BbRH}KJMHjU~G?JgI~gΞc˟/d)`@g'R1TzB==ŞiϹ'y<1~=gYaERJHț=Ȧ,: [ l D -HYTpDE 7tȦN:3Gϒ}0wW) {v$߹vU+ a||?G7T*)K2?/0rK55j FZCsE%eW\ƒKێ=E}YOP~Ft~_O?yC?ǿ  pl~kP~-?<Y=jok[ߋ P[<gm]IXl/"'$_2q55 3gC# +; ~"7,3~I~'j$zI[BDOOЯY+b?g`  䒯ʃy8EްW}{{^?>%&>?t04>߶Uߴq}6X"/K;3gdo':#o~xѕ_mm _-IS?CB-u鲆W -pt Uz3}_`m^OuhϺW% sggS}׬^/#|bǓ%4祥x?@'M 7ߓG/z$ȿoQ{T~D??R~Yw p Yz3}O -}zZثoKދ{B-?#U^_WŌ|#oO'AɯcS& Zؚqߓ'ȏ;:ץѯJe/_w/]OO}t0vF؃ 7|1/+YibKν -U|$~oׯ+EIȟ< -@}F=ɏoP.?&I/t5o)߲?-E՟o -`l l _o0oЫ iuKއUK;T|D~am?3?^[p0Ko -O o_ KW?s.&@ !2w?p]W!=>P5>h9wi&# O2?/-pC 5seo%ɟmGgk~vg޲sAostt8X̀-zKU?'0Ao "5HOz`ڟ=^#xo_~?9?F {17W_ ߒA_/63Ms,NV;`SA_|>PyG~}O^^}O-C5s$BJ cȏNjw u+ -5pgg+%Oe ]pҗU`%Ew^wzޱg3s܋/O˃?8=iv!EoIH~x#?ƦfI6IS-_ }Ffw*ӯg   -pt z__EOPy8SzR;iGދϣ{W~q?sFTF&7ĻDŽҠ*?!I5]s_@?3~ _SL/  -`8?/ΫP̋ -={=Z'=gP|FI B~SScCC>/?*No䟈sөw~_?ؿ_/≓?m@'G3)}Zz>c /' "=hbZ7OxQ^} -|9$s3OCOA B~ːݟQEGŻo(?Rihllj%Oz;Z59zqӟ62\@3}sV7 DzP/g7;u#={~7?'/:E~sSccCA~`ȏ/ވ~_W"d?#%#a$<$?+'ĔF~3GWpj>A埜_G?ԫ__Oُ߰q?߾cΞޠpttNIρ<^]z;=^~s&~z/_2>'?SğB{[[kK į͏Nj7ﶛ^?U*OgΚ]@?_ ~ڿfm㿥{?_ -`:m>#<G{t^wI[gw%uvhߛ㏥ğk/P񧖈DX{!͒͏o]?7ɯ/ϙ_'ٯK\oԥ[,LnF+9(?_YUW[ic $H #ت7:tݳ.{s '3ߪ@?HG{Fp_c]8oagkkLx! G45z_%Wk޸us[wv#z?h`W_?%Eנ> ?A/}gb}>hM{_x+s^O?yhoמ,L|{ "~7@>BwN~O~WIk*8PO> w_|ͷ߉?242Y~}@?Hԫ{ў{7UIM=׮_#WE|"_sȇ?俾;?w?? @@#@+@3Ci~'y~>P'½\?=>x?>>8^ ~:щ7Grqς|P};tџgwo?_ - c3}%Iyb~p^Գ9tߧoΝ۷:"~?<ϕG>G~;G_?ҿM"~I_g0 6Fgv@@WD<1?8/Ћl}kq? W 8UK$~:NRx_GSgwG 6{҇MB'y^OG& Wz#ߐf|im:'Izbſ0ihhxh-oC<1OЋB=[ϗb+wo !ԭ)'ȿL_џ_?e LHf<y~^eسms+ſL/''_ߦa_O?0,NmLyJ^c yRIz~>^w܏x_O|'R##փO_t;؟eth -ľf*Gz/{U{#{wIOxǎ|o`{_ -M̀ nAi%$_x,ʳJ/wXϗso*yo !4&'?] ]0:a b+-6:OЫrG;}ƽ>U`N9-OWgo.Om{$_hs -y__Og##zᯝm W3= ,@a }UYOe/[7HȽ>=/Bl2Us߶O'Z8<q -b#E -+=C'h_r>N~S|:%?;s0idx516RoOG5˃B ʟW'?22i v rOc<;?f' }:W#+_JgYnL@ͱܓuQ|y#H'p_~)yOYnB鯝~s HKF~O>gp>x}: }q#%[k_H  # ?"L=[i_p/=-_i~?;m_,n@43J~O{>t>G-);??7 0CA3x~^zk}[#q{gn?o7[0=r^\}C|Ђӑ?_99¿8q15| +\o:#WXO>5-?[iLʿ~K[Sc _O 7 @>Sލ߼~K}#q5П_?? Nsʾ>KW33s >G[GGa p3\||oEOew_!p7OG#8qK0}Ծx?|:սo_?O0g /7ݩe?iΕG܏x#swl*S0; qT~o˿@kЪ CzcY'ϽoBWS{n A_*^z}}=GZ_܀uo8_P_`=G5؟___N5 kܷTu0>j|&} *#|lĽ:5[!_V0=GF3YjOh`#NS |ǩsBWt!)w?!5yuE"бnޢ%BujG;shB/lt_nkBK-_!N~#!t!B!B!B!B!B!Bzm -endstream endobj 42 0 obj <> endobj 81 0 obj <> endobj 83 0 obj <>/ExtGState<>>>/Subtype/Form>>stream -/CS0 CS 0.729 0.729 0.729 SCN -1.351 w 10 M 0 j 0 J []0 d -/GS0 gs -q 1 0 0 1 262.472 35.6399 cm -0 0 m --162.11 0 l --197.855 0 -226.833 28.977 -226.833 64.723 c --226.833 226.833 l --226.833 262.578 -197.855 291.555 -162.11 291.555 c -0 291.555 l -35.746 291.555 64.723 262.578 64.723 226.833 c -64.723 64.723 l -64.723 28.977 35.746 0 0 0 c -h -S -Q - -endstream endobj 210 0 obj <> endobj 82 0 obj <> endobj 211 0 obj <> endobj 212 0 obj [1.0] endobj 213 0 obj <>/XObject<>>>/Subtype/Form>>stream -q -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /GS0 gs -0 TL/Fm0 Do -Q - -endstream endobj 214 0 obj <> endobj 215 0 obj <>/ProcSet[/PDF/ImageB]/XObject<>>>/Subtype/Form>>stream -q -/GS0 gs -297.1199934 0 0 297.1199934 32.8574219 32.8570574 cm -/Im0 Do -Q - -endstream endobj 216 0 obj <> endobj 217 0 obj <>/Filter/FlateDecode/Height 1857/Intent/RelativeColorimetric/Length 26176/Name/X/Subtype/Image/Type/XObject/Width 1857>>stream -HKَMPHi5U$~ -j\ @ù.$ - YٶemRxch:Ey̩7MM7$I^J/'RfqwȧuiQ-XI*ٸO=]Vt|}_4Q#4E+GWcp,ci85Η)geqpܘ2pi΍K -J۞zEƜO8LFq݁;мФPefkOv=SZOǠ tiņWʼnjJ򢼬r{@h֎]e]WE:Tap8?7G* :t:4J&܍1Cjs'͡y;tk7:46qFϢ" hOSԡj҆fe},v/.D6>$v6T~RTSfDzwς K|Vinte? gFyIZ摷5f.wς[sϸkϣPRn] 6YnSW}CǢ2O5D|J&C Ъݍ>aBG*c'ύ  c&FP0k\ߛ־h;ċEx7Yl&>4|v4'%EoK -#4T7='~6eQmqI -=3or:l򅛁ù epUg4JY,#џ:* mVA(w6듓$XY QxQCB?֝=N h -,q'yXj ,1ZmSGwȒnjÅf%V(*ɍjEi7wf}|5`'#h Ȏ1^q^2&7F>>g>:~2Tsi - BocYo~rTs}qB >Xx; pa -]*طz ZzsEy(I#'k8 &8I@Wd'ҬL"ofXC5GEͬ@9v9a}/7YU73Ͷ@\1\Iɫ~!Mv ~\0!8I}j?"]ưY9eXOǚnìl0f.(/y[hKv")1v)aN nZLִY+;8E,Ismف>vi)f^mLO6'0gU]l@:D(%fz!u{s?&Ց>|ڧenf;=r(p$͎> *(p ^4ӹוbÉ0Fҽ32Tyw1Y9*뉁~s]O -hm&;I7RTzEc3s5q\cUISB k3%Ggd_h2DW)sP\?guD!Jd;Q?bNQ.PB^?MOw PBѬo՜l(sPZ=f33K~P%Tԋ ;OwS\B.zh@oKWSɚ{]ihrbU-`>rÜ~:#C~jN6uEob|6sfi3tnaud 4{;ZfzlxTaU-|#h#ݕ;pBMS^TPG45ey_4in\^RB4qoॴ*Hܲ9f%%na޿+xSf(emّ.@-+5uhjJ3SdP6)Z3$;-j#HwK+; \Lw+x&ѥg~\PG4pA5ey[XձWS4q|RZ}$t47E8aXVWvZx3$;P&&7ґ^[s^,47cDNB1)kf%tCF+BwЕ^MwIʪѱA_Na8O&; n Q 9}41L{ඵ{}*Q:Ӌ(d4TT2YO0_}? RY>]a |#ys-;̻ձWq헖&; ~:dc?Ov‚s/atyc>G?#"Dlƺ"; z[jY0|lŒr4vN$pyU,2An\eY+0: ->q}ȷu9@z}uo),L'zqJUqYޘq/h sPGgIYrK?ǂ|uu9 *duw1 ,7ؔjM%dJ|D?*w#<6vv:4thdջLC= -7W0'󴾿)7SqۿEv2ve}?+%)V'idm.1VJCS-1TM#1tO}im0jG;'gd#!tMSwD4X-S~˿j%Уcy*E~; jzQ*L#T/~y[>cL*+J)ֱ'B56tOymT=^h}f}A7t/ye&U<2tOhTغ*ӟgR8pLSwônݵo,LCM_X'wjWמ[7VoNmSeOEӈ8pzmT>^htS5M>^JӛZU1tO1 -bbl*nZġkh}qRd:jS")(=:[Rd{ ɲUu/y1:2_ t/tp*C?,d<2tOt3uOyrS20yV7"9=S^bpe}[@Gؓe^r}>нE&Dt8,u|1>q%=='/FWRV5uOtFT" g\ֽ)PL+xq'd%N7Rr|'\ J)1Y":{)]U]ŁsxYľB=Skp.kyw}b^ {kU?NP jv*r3"hJ Jg]'.رJ|n'- -"9C/ˋx=gyʋbzoh*ɥ72KKzmq&tyoCuX Bd웩Ʃ[uYQd2'XJ<#m'Rm(U嫁k 9VhDNJyuLt`<+,69&W}n8ZC*/:\Um -˹Vhǫq*ijvyV٢plr%xF`;H-h&V`9' -Rf^w~E?9:W}qXc5^t| 7 --cNJy>z]tYQdC%`+34 -D&p)i u^ \SnQ㑒xY({˵:MZtt#&ך=P\klkRϋBq(ly>^J8k(יgEq^?:R\4 v^Rlނp-. pw-U2lMNX[^@^|KYZ|ѻ3?/Xys E*н/RUX Bտ/]QX3ϋ]a'^KDw~|[J {^ ]ӫQ,e7= -R֝٪ӛW=W;}G`;/: ;P{|snUqx-/Uy_'KQgw$>Ȳw3ܫ}'v?>tjϠgrp/?dԨlMCQXN'ͺ"|~&מ>2xT^͘;˪HFv(Qu5cѱf  BCՋ2]拺+?EwqE:{Nlz[[nV*{c4FY^S/JBY:uBi+?k//eq4d,EY^;>k}_d+Q٬MX99֯qDZQخ1JTu #^jֈødU$Qs9Mu%uV~Rlֺ=ў2 pQ;-EIy^sJ7NVE28 -5FIQ}}*,[I͓>K|.|~&מΦ[wyi^s|QR%MX%Jo;y(l~b=oR_\èq_GUdq^{~.iҼukzR4m=wk|u;ΔLƿ :i+M07rxVUD%3X6$!I|GGuŻtܮmLW|sV,]Rx -Wt~uUkv~w7GmANڵ r֞dwmtKWid,oMt-|WYfߝ.Acok'd1o1-^O/~]m._l3 /ULn߾<=餳G@ŰYڼ,5I2jU_&ȽZgZ[rs$-ݫMI{%Q~ *r5l8'/^9Zf~wF7o/ޫt9??8,NG@^_GiX|{,g[~e|{Tܴ+5լ[&ȽzgHǻvxujYW=/aiW9Vv5 *qMtU r|:J0Vr|1C(7i:nU7j24v rod,&ڦ~oo~&Ƚd1l/gB&G@;gţwd(Ƚ*Z=aM{n9>-_NQ4hV r֙M6r67@U;Y~UnP˧;/_lǀ rҞϻ ӧ(r6"ճqfs^9Z{4n긟󃵣h]dtx]֍or#9Qqݦ-潽nܫ'i?]&wQM{('}ԫeu^tGڙ (|Qn>6nA@o z hyݦ֍/ -h/~ (|Vn ƀ&Z&Ƚr/\h- hO@?(|)}(7ڍ?| -} -`S@jV7@=4  -:<<n5i,PZkzwZn=][?-7?eu^mL -Wt~K! vUםoOG7Q2ewEtۋ(WEwVۋRf% jygh\X<!־(7m(K>~Lz| h_@+ -_\(CU٩hUm-L&ynyy9]W<;nqqayb~}Г5?*<;~m6_̭Wn?_\yWQ0^-F7qWkv̺dwng'i3o~m(6Nqq~vJc(76^^[I@ͺMS^^ִn׼ F}@UPuI@ h{Z7{l@? | 躀S|hn#667| cښM0NyuUunMZ<PQY\\ -(p`6 ;òدhc趧u̼ŝI@6n9ۼ}yV[y1`ƽXy3>`\Wrt]_w?3o~p8>W;êјM0[Vja9?)uf CJ 8چIZtw%rgOhX}Z=[ N(.?~q@'r@?MPq_ >u8yXh=ۧC)c5pV8{;ݗ2]&7d ao U&>.c._ƉxW03d>"YN冫VMhve Y]'~+6PGa,ty`aYu*=[q@t~.=_b{QYzr=7Wl@{?E0=3gz/^bSYr[Yo+F9c-T;'y-ӓ*ܟNޭJnzQUtr'\Mh:]%72op-/RU ݭdo~TUoڻkI9ȺM:@sɮ1Ea -g:VFgU~<*[d&gG)c$Nh}/ZM=7Ru X&YsvU|&7Z'?vdɮm= -k&W(=d -?Xw/d7Km<2^^$ѵ,/2Z{b&7c)yY;"YTm6Ld/vQhΰʷ0?Z';fН9 JM?Zmn@{=(d-/*^6#}(?y(l -4^gJOFМ1UL šytʭioJ獿@*[7~R O.?xU7L b;7 -D06t&lo3@T9ߟVyVk]=JFtˤ尭MhoRFNύT?߷ שwNt.&F[МaosU3KE-Clk3@sVk*{VKНER%y"VU V?eBYۉ(4gدy^3ٕ88g!}}Wr*yV+]o -~RUr&7XDRF^=:>#V,ç޹4um@s{~q[m@st_xV*F; K/G7^$UrIon2t/GN Tbw? -/{2p@s[._*> -Y,# -(snq_b7\{3LoK # wbLg%e|YP|ꕡ ->sO_7KjiFb< JŽuT$H*r2™mb; ]9gB7o2sgyqeq4pt:dO/wY|<"ML#LY^\jAeOL\MT2컓IbwwG)l2xeY^\*nURi`&~zQe왘P01f(eȚUb0dJc$lTZdD6Ӌ*c6 H5<gPhuoq ^'m%ӫcJ8=r\*Y3^NZu)k=ϿܦL"Hi%Zw6K|w_ڭA&dǭ{JdVhSE'yɟg7ȅ:mO6kzUCnثm()ȃ֋m2Y=@GEX(]F^MVEhj⧢*Z Pu_e}ܗu]ƞ~WquhiuP*s&(ࡸL2k>x\uy.6@|_mam&ot c/.>G ۟{^n --(ﲗ7 -uIY}_*uɞg^rEo3Pӿut<|o~H\*y|!|OwE/͂\Kq>ov ؋Z#(DKm.2f}7L7i%/hd{qYU7$e3@/j4Ts߇fAvQ}l/:w}__xJ2:MT\u~??l9m pZFR  ¿m 2ATP]I%鎧,w}{)<^-j9QQf2*4w޳{(S~|i/-o|U(PCoUޠ./{t ?e]IY"]2* ~hM\~M{Fs"]%D &;w陗Xx޳Kyyp{3U믲BӝvNc?*]#5 uv pnI.^yVM"WKqB Kw~^!|_&*]!?W92]la^Y8S_W,"mHKȽ>.5 u{út ޸Q>}gܤ,SgIu4 ]ZSOKq*]o֥u>;vik%iQ&nϖ.`rI;]S?ԇ*iInkLmgK %UviIQ&%]8zf ğvaj*z>.h%h;k]*oX.7J]Ð.-vM2YlQ3/4)]jOzOKGhVIvϤK~vֺ̽a]pj(KVto{nRʖ.-bfit-'=)=SU钧0κiHRFZ"&&[%T}Lrޟ[%OTԦL+[pˇ(uU䩌$Л"umҙJ{C:ɬ,*6:ߌ˴ -&-S:잛 %#S/SGtɳlEo?ʾZ't6ǁXD]K:pD̎E捛t3Y\l`/9UNǔNywWd~]p4jeupiK@}ReW>zXmM%$7E4Z)`v0/2!"VwNZ~0c_y8m)/dܤ(oX.Z:zK^>ԦLW/.~MN@,s𶬎E捛t+0CSNJkeZNǔNyܴܨ`:N2ҖNy%Jm6jP."xqS.y-Fs2YIu9[<~7S^qB)sK:pOdu4S^u>t! -;*V{wEQӐNe9S^YvEפKztk;iоy,T8l)lLpeALTQ"4tO;t -loU%q0NC]IǒN5ZYu_FY_I9.u87SP=UQ$nt - XAEtʛ:@:[)`v&^EÆ)Ƭe:]Rf{xyw_,e*Q?næ=7.XP*])DmMLYP lO/+tI͑6ÂL,ըaH!4t `OU>ݟeIxL zd&9uO7hy!GcZ*v-?tEدIݛǺ8z:lޱN?|VeAOcu~~~A3ӎ)[N;0<`$rd"  ~kStOڝq>WJ['rUx9H5,Ҫ? aљT2L:/hBm[/T -xUMZ"Z_ӟVx(KhP ÙR"V]wBh֥AӪԝ57?_UH-|ѝE48'}mPԝCA[ΙLyYʐ|jr/u; @e B gr_$; @ 2ۺVfggjR92e<^O:0'a?b_7.i8qqy,2nSw/fv&~"DO{0o^T5g4(әi՟ ,UFހHͶU֏mSwd:n+%nE0n6t9QFgIf`<\drtM {Ry6ufg'Bfݧ0'¼T"z~wTt;]%fРe[ڜ"50ӟ:MaNL*UO:0ȼwɆ=}n Wә,xxc!rWfV]wOQo /, i>)UˑQaPEZwYd:MaNs3O3$Ry 4wUo 0WܭlSwư(WJˡmNxG=ZƲ,EjV H6 |MgE[ui>39|" f_>zh4uh Dن4wKU'^J>g -|3ӢTY0|dMgIRy 4ngA"ٌ;좟˰H(%6tF{']ċ5OV^zL:4ٙl,4L8|q/ͶYd:MiD-cT-F6#Naa^/O;٨^B$g1B.{uKn^wj:N2 \m"doӜþ -j6S8%5;YEȓ'FЯVzM:B;;o"V[ia&<ٸP8 *J|=j/#td8]ԧOaVbOP8r52?}b~TzȢ83}/s9^z4F"d!ֿju7೚st;0BԭtgBdrܽ>"=ZƢܗ2^:P8&hfRd;kUx y]\]?̣ոk1?y3yd=QY(/H|ԝPn'0Bp>IiAV"%H5>LKડ;'Tճ<]]΃?Vkѝ̬V3lv -,To=OK.si i޾-ʪbXhO/)h>S<(]}94]:6^죜qt!?!ex77zjpUhiXB㓹 2&DUDۙjԮ>xIQy|XNm7̹<][PAFӍ<]/t{U-x8!S>?-+^ΒI)jR?}lmUr5j}Yy+EU_ ([V|scyYIXJpTMQA)/\Ӈ?~OzrńmFtGYneBNMCyIii4Z4KpBԱ>`H}{ tG>L, vkT(ɴL|YNKOV I8ܯMƆ*3|NG)zTYL~.|n:KBt - R:xI+Q03hB3.kijƴd|nO!>P}iYՏuU$kv(8{0G]'Uӭ>ʙkh3J^Uev9ʀgJge eh]We -WOe|&9D%ӱA[iMiQ(C2^JS|m]#gۣvcS]Z::z^1@V_P{ =X E9UYn{'vv|䒇&Gz2^2=6m/-mdޡ::ۓsFKsv ١:|Pt(\?ֳ`¤?N}C>6.g칔ѡ7t-Fi铅S9v[VLvz6m)ʍ6tQ6ey2)D1ph<^0zԞ.g 'p:w빉5FgyXY\=ᔞ;ԋ)D4K8gp~(=p0Ɋ,"KBZ Nj-g\Y󢴵>We%'eNM,L'١t涾JT+Fta?ux[tdraLYUix,=%)7plцFi* -ъY7h78}VQxvڋ (̓'AcΞBu]`oW47j_vavq;i҈2zyx[@)s|W" -^SwABЙ,, }ZQ(4؝cޏ8T/颢~;l~Qy8#Z̤nWPw8ew5: =ajG^]/J F#Z׵<ӊm~v=xijt)͗;zvKIJH`OOx+.Xsz!ӈD{X-fSwnN෱ih:.2b\^ŮX'V3RF8`@B$P N.ҿcT"c>_w]/S\qv RIT4^'Ѯc$L4=IM0|XF-S:xūuNΦ:;y<<>>~p6d~7I~V". g4nf~cvE+&}T Ӫhw=?z`2 -h! 5<?w/o -C)/a6u;Ϳn%6uΉRURӲVj۝geCjy!v΄> endobj 57 0 obj <> endobj 58 0 obj <> endobj 59 0 obj <> endobj 60 0 obj <> endobj 61 0 obj <> endobj 62 0 obj <> endobj 224 0 obj <> endobj 223 0 obj <> endobj 225 0 obj <> endobj 226 0 obj <> endobj 222 0 obj <> endobj 227 0 obj <> endobj 221 0 obj <> endobj 228 0 obj <> endobj 220 0 obj <> endobj 229 0 obj <> endobj 230 0 obj <> endobj 219 0 obj <> endobj 231 0 obj <> endobj 232 0 obj <> endobj 218 0 obj <> endobj 233 0 obj <> endobj 32 0 obj <> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 36 0 obj <> endobj 242 0 obj [/View/Design] endobj 243 0 obj <>>> endobj 240 0 obj [/View/Design] endobj 241 0 obj <>>> endobj 238 0 obj [/View/Design] endobj 239 0 obj <>>> endobj 236 0 obj [/View/Design] endobj 237 0 obj <>>> endobj 234 0 obj [/View/Design] endobj 235 0 obj <>>> endobj 44 0 obj <> endobj 45 0 obj <> endobj 46 0 obj <> endobj 47 0 obj <> endobj 48 0 obj <> endobj 49 0 obj <> endobj 50 0 obj <> endobj 51 0 obj <> endobj 52 0 obj <> endobj 53 0 obj <> endobj 54 0 obj <> endobj 55 0 obj <> endobj 246 0 obj <> endobj 247 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -130.2232208 0 0 -130.2232208 181.4170837 178.7505341 cm -BX /Sh0 sh EX Q - -endstream endobj 248 0 obj <> endobj 249 0 obj <> endobj 250 0 obj <> endobj 251 0 obj <> endobj 245 0 obj <> endobj 252 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -120.39328 0 0 -120.39328 180.528183 176.5283051 cm -BX /Sh0 sh EX Q - -endstream endobj 253 0 obj <> endobj 254 0 obj <> endobj 255 0 obj <> endobj 256 0 obj <> endobj 257 0 obj <> endobj 244 0 obj <> endobj 258 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -0 -0.4444444 -0.4444444 -0 170.9031067 125.0784531 cm -BX /Sh0 sh EX Q - -endstream endobj 259 0 obj <> endobj 260 0 obj <> endobj 261 0 obj <> endobj 8 0 obj <> endobj 18 0 obj <> endobj 19 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 24.0 -%%AI8_CreatorVersion: 25.0.1 -%%For: (janek) () -%%Title: (keepassxc.ai) -%%CreationDate: 12/20/2020 5:21 PM -%%Canvassize: 16383 -%%BoundingBox: -224 -228 324 320 -%%HiResBoundingBox: -223.39905511811 -227.480944881889 323.480944881891 319.399055118111 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 14.0 -%AI12_BuildNumber: 66 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 (R=0 G=0 B=0) -%%+ 0.403921574354172 0.729411780834198 0.176470592617989 (R=103 G=186 B=45) -%%+ 0.988235294818878 0.988235294818878 0.988235294818878 (R=252 G=252 B=252) -%%+ 0.192156866192818 0.450980395078659 0.16078431904316 (R=49 G=115 B=41) -%%+ 0 0 0 ([Registration]) -%AI3_Cropmarks: -131.417322834645 -131.417322834646 231.417322834646 231.417322834645 -%AI3_TemplateBox: 50.5 49.610236220502 50.5 49.610236220502 -%AI3_TileBox: -235.600006103515 -358.899993896484 335.600006103516 458.899993896484 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 1 -%AI24_LargeCanvasScale: 1 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 5 -%AI9_OpenToView: -373.888888888889 363.332458442724 2.25 1992 1274 18 0 0 78 121 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 77773 -%%PageOrigin:-247 -370.8897637795 -%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 20 0 obj <>stream -%AI24_ZStandard_Data(/Xj+@y1,q7yƺџ39297"h -! w<{^ߞnƳ|w{u眾;Οs{/^s7>k?kfo6֛W/抅,v"k=X଻==bw}rqu˳Y{eܯ߹Ýsyߎܵuu]{s.޸wW,>0̊E=}}S,:ͯ}Zo.*ыbX_bm^׿y9ouvw.wkΘ7盽;cwY0sϚ1go׽qݿ~wW|8f;=Qg/_{{=}>BOF~˟7Qy("(z؉\b8a?bCpC?`CEzsNȹbyE6W?Xsͳb ;Yk/_?EN]繻V,}'nc^C!rP>?/= =nq;}m ?O̠7?!(#xCP;a*=P oo"ߌcv|]yX"{wx=jQ:Ԡ;Zk5WYa}V,z:g,s7]8_ow{w;4w3yÞsߜY,g~_w{1=Wߏsg[{w{sʹ˹Y=ޗYkw{~9ݻEQox+|ùޱ>}/wwLnqs7wwE-nE/~?Cq84{Q,rG,;c|x^~׻owW|W0}wܻsyߜ+w[b~M}-gg],e*=޸]}_Xtf=~* rv3"yY+[0EIҢ" e+ -QV,Qyv%A0<`zZ*QzZ*H.QBc -K֌\&Ւ3MGg2eTrmIDԢ&YI<ٔqZњJеl[2`Reg)ak*CHʕ<Ljj$PSE EZU)RVesM[UY() ݨt͠f+vP>Ahf+MP(RJtfd[RpۦX>ܽ1Z-y7wo_,fPnהLf\ wJg{q\vyow֚ӝξtהR:BKU3 H,ؙe-[+9BqLY/OR%*[+A3 ۚ(i-X޽Ex P^<הc/Δ̗ߜ;/3]^YwYw91%y@Slc|>A}?afw_}|qdw?s||YA& .~:n?_1?wfn6_v2=Anf2¶PmKQ"aT,edI(ue-SX4c*㍇XoS,^*2,O٢ed(I,욞)Ȳ*]A-Zb4Xg묳=~zΔ c1i usd;gJf~-\6B{R0YPg7\qf)[2DS3bj˒jY <[smEE^%JJ@2˚ۦX`rq2JgQ{ɣ"?vz;o%++rAkZMRmRjeU+LaN=]{cݽ>78ok%Wo1n9yDe嚲/[:@:ej뻯]{MGėw5q߽טN;w)Y@*|wB&L٤̻~}1︛{ӜhAkIMT͡Jq{LN"<",qc -\0@?A ʏA<Ȍ"Évⰹ&kl*jLnTq<e"!t,B м2~ e`ϤruL*IVR%̤GDh#7^AeJQ)Zm˔2% -cdJ"*tj`KU\եJjM l-W2_k -@zt[e(9Z=LEoLAY5W/4&+J6$%3*f橪dR䙑fVS6[%Rkjj4CSb)eI7 X2+OdBM$ ͲfJf%[Ff)U2,9V򳖟ٲeH\3i0ϧI)X5*[r-2k%?0s -%[QJCP!r͠ \AJJ=婚Hs:eJU*T̔D%LIԢ)JXdQ-~t̛5.QXKELVa?)m(Hm(ܬ\RAk8iuVT~C(g0vN_ NR`_ KMKMD'5, u}r ڥ쫅rZuK#^AhV$>g^>% G> %G=DM2sZ=Ӛ'P6(@:jBSlBW1@XʤX mEœ=PK8pS,&U[`I |Hx,:Dl z<[!hDCd*TWLH0GU<  P0T/b?PpyH!hQ:%ԁE&DVxP"& "4ب\ SD0 5`d[0 -<ᨀ}awAzv -6"<U, cŲp2%2ąu3BK tLPp vx{%|)uS"7b\E~ﶃ;N;!gCBNTN}$K&mQTo% g4فSi3&'vt=ؾAsҤ4* -#L.*W9ILv)OZȤ%q ϔLO2u,H#:II&&lft1#-0Sd@6D8x<=Fk!NG *#%| Q^b~1}.ȦX`^Sz|\1 -1)l;|PS<( C:xrlTf!1r/)uǦX@<рAGo -spJsT,uE$ΔXmb3ӆu9|6ׂ+X.m݆ xsx&'6 Vm\UblkrT8 d,K ӚM\&PFD2H`a-6\`mlD'K4`VXI`4N ʁĨ@1^I$B VAA%a1'NDi0HÅَ*b4:ңelƃTƃڀ1&N$7,&R &B1( 1*$pR`(hLڦXP4 5i XI#.I۟H3Ԃ -2$hh^FsP70!jF˧M0JMshqmERhɢi5Aڊ]ht@ZY-`W;0[-BIq@J%c,L4#RN D\C p4Wߴ$h !AC<8C4mhV",0tO!cC4`h[$ڄ)!1$iZhBMЬLUihih -\>/V(K=@ e^ob"/<C -x ިVOJ祉>oS,&lXo"11XSNjܔa7n=au*/ 7Ö!wqMhW-DDLU)0ZHX`&$v؞Z8gt F"o$\F !ւPf.M+kZVD"G"$9  t erA[+J:x n @rȈ6sA -hudH|$[L}j-J 6I`e&D#8e#dT>с&2X6$U7[ZOmaHl``E__P%Ƌ%B+L(\Dlu0 %3uS,ߣ90hN5$\HE>G=&BP (Eku? Mc=:"Ta8TkAX&ԏ7{r#:V8uOĦ2:qe2M@u7‚XX1GM& r+܄ÄYW= -"7`I<'-ITѨ(#\ԓC\E"KYގ`?c8yhNc8011h1]Cv9p@ڇ ̦Xl5eb/LG iZ]{&&(ЁIMC3+Hj2.(31HQ\&V NZ%8]&"D_A*IdPN"ȦJpRA%8H$dE$L`%!pBV@Q6V -&`Ɗ86k8h N]-7CvTym!mNA `Bx 4f2kSS辑12"HA\V@h\8CeV(-ih@A4PHႎDCQ'/RIp'bA)$XRI~MKiI2$Sj$8= ΎGidD8 -DDh.Qdya L0Hl=6Fhm騑FwH0 Um$nĀ'q0&-e.ПQ c80e@kHD&2&FOǤ}MeF"H>Vw#!1 -{i2}yS,.t -XhZL4˒JS&kZ,ba&YJPdcu */b<HYeL^Ph@֝@>=S&^:_!$sȏj_ȦDNMe.AVHmy7U DdT[^±)0P@mPNLĒH`iDd(DBJpJЉYW=e.OC},I -KWED%A~LmEe52Lj -ЍGAU0, GRf1`y4נktP* Jj8qѢ]_&NAm+ cF#h+Ƭ+X*$ /Mt֧Bbfryi` -vGF@X]PBC[!3 qq$p ]M4bW-yGxCqh(6eg . 2` _.4*[ā%t*aP'E00KăŒ 4פT FWRHe :8 ]!I ./v¾ktCktГ /,)Pdy E)C --X0E'-u]h\͠ZtDV \)cu) BbW`O_t8Rv=p TlKgD\ryd bnHy@ρ%h[Qu7BS%,dwW$6/x UhTѱnS,a$m` Nf6b%j$!t,#]J^MZTv@JX%,|n1^ёa"23}3],vf`DDr9Yn-lIT,`) hY~`xB)ȦX pUMa5b)dKvaX_zoEؑcu%&ς%Js!]0؂X3/T)3hn7 $7ɖ_5Mj.#COD$6 X1դ̟Q&ùbAp; DԋC\&h-=%Duh"  :P4IADST3f-+iGs!HۖaA>D!ç̐3p|Zm:!3cZ IwMD(`n]! dLOo.B$i2dvLS Ehf` wI6,V@F02"I0, őAA)Ŕs&ҙDsu D&[xsWi)}BV5ۂ^(& `GI0p7V*xI^J6L2Wب_\͕@(,60VML,;Ѯ߱ +L\Dz8ЏVn2~;-Ґ/$l6=7 (eqB.vl^ K.þ/ RkcK_΀ğ'FUk卢~}i?V0F62䃽G-Ռ2F!X1IWCYKEFߑy(޵K4AHؔ!t.SGv/ts bpt&.~Faig5kN#&x\Q=' 2h&дƂ7ʊVca]gW$5 :v }I_hl¥ -];a3ZF]*5#~g0cc`gE|&%Nr>%8Ck?];5eHml1% 4 vgiTQ4tG8r@LhَmQ!җdj8TGhqkH)K>˄rtCܒ2"fê7dT%>lxt k z&4Zq0Xc.AdeġUJe(ih"|i)x5 -g}ɓ6~îLnb`@x!LNe p!qZ6T8N%0g2QK5R7&wuF>ĻSl/%ذSa\Ay3jNn^On`$@XL?=11 -jG3DU$N׵hOA@n=LS}i>Rٚf0N`7l"a9ݸc&^K0@˕668&y9Qm}lDCqgFr^`lp8 T='ꂸ-}=Y6X!ͼnPYSL`ht? WF4'ݞO%cU`y𞱋Vd.BPZcpi*gn<PUA1`Ɯ!Y۞{e`gJ{!$S ~:i6e-b}R8"u7ɕ)T4Ɏd*r]d.M^)807"5|CeJQR\\@8.PNDOv`=R? VEj!*RA}dzɣDf̲)'Q?N*," -Poވb'6^YOǗ%;tdz"/p:!i4Pl4LDp<Rh -WxL~ZiBly$*&bC"%$UypES7wQ`:pVE6Րq.XC_MRÍݪrB4vIUq'_3"!-bo[Gx)0JOly"6j.YmvÙY[[.j>mB_ơ#ڰP$ =0x؄jcS;!Ynt}?qOv_TdNGNct2l2PبdIH+%rg_+{=v1g9QpYuxz.r%֦,N.VƗW*DC6^|e<9Q;l٩ˀO2\36ywWըgsg`;S'}#QQǵY-U6 -;mt~ ~&ԛ4d@eC9Cޗ5J'*0taKhĜ7 BG>t>K+OO@%}zaja] aEO4 -Znt5.}U &"/%{P!U2DTm`ߩl6qJE/{ s5qWKMXv^HY*y 6;<@8UԞzd39gz|U0IH|mHa)}Y*j3vP?e8]gMύIȾϷ^߻+Af'CgBDpSC2Dn>y^wñRSqWr&(șgr{]) e@i$1Ӗ3d%ɯ ^4lQd.CNak Х0Thn1 KA)˓Z ~@[RӞcNań]E~I,55twPbեQm,٥4,llD+7 ^]rm䮉`"K0 C٩pf'3j{T[NX}8@:̕0E6%ȱ5Ԕb,>f(濟MKP)QXçN2Mj=<[q|hIj_kpx5AAI:eY_UctO\w"8O -^_CȳaeɛN˃B>xppDW5C\9M;8SZiӒPq'j@KG`e A>94Vp~]m euo %8jkC ^SZ3);m vBb.evPYݰ#Jx -p#Vb[ K]:b-ˡ# 2M_YjUfTصV4|'(wX+Ean7QzD@}SwG=:KJ@.dKuKQ;aCd>|mN8#ޠYf)..};8Rj(@L8@`"GAcYo,z?!P~=U2${%ǰe(sk s,T C8h1ZsNc켨|zʉ&f&YldjEc5a16g ?gN9P"In muc}lR@1Thv΅=*F@zbq$S) SEEh)(6eDb - 'A">fbm:5Dr3(Q]8^XtsC?q>r:ݦTcy}]V8`cJ^JR"t -)z;h_PJ|X>JR*^der!eY‹! ߳i#oDz8/)b{|\3%UKp,+xʎC`D7 mbV -i\^λZA0q~cW*HSD.oCWκ3qvx]jYRPC`SRU$-(U|8︗$Rsh{AE_]k.x1']m,T{$~qKA{;oi̾Յ@:pYGWk>Ktyf!\TSeDpMIU)KTὌn<걉3K9]n$8ep;&$StT -%盕v_Ds4UyTP -*k3B `W>*!4p :^t|P"[S;^fp}i&fU#G'N&ljVQ37Sjw8Fグ:0| -vǕJBo"WD%RIh&C -o's& -;77~+ttQ!,Op+C/21h:J+<S6x )A_ E4auAo䑴lR -SȦ`]br,BYa2T̂"E|q4BlM3Gf}k`(9X%6Ր!C,"p_#ri1~m5o}f}?N,69=ՆZ>!qxQ\gK>iι_? ~ް# -Xf=T! ȣEW%W$S!w!=aVȷ1 3 `V -P0-BH<7F'2J(Dr蹚i[iN3,umLx`J4U#fUj| QFiz`˱I8u ŪqNֻ.88"<#6IE핏l-%gf[KQ%oDx'KR8c1WڸB?͠b&,0hO)؅O@s,%㣧B:fq L3W;a!hxc5W*9>}hڇv bA"r+BpQ*LʻA *s"#~ws~Qvd]X$ 6=ݍdNì -uE,,#!6spǃao`}d -nmO4|"C6/mJEE[ҍkiȋ?_*ʊPɍ. R'%`X&JƼlD5(01+毢;NjnƭT(}P74*\'q {3@!c=L .t0˖ob-ym8-d xr*odkIE4u6K1rnԑҪ';8|\:H~ w򫅸fEi巤]ԈX5wrV.9w0P qkD5`PĆyT/_:HMi2 -Xݟƙ-KoX.pS$`zy&deVfHԢ(LnBb$MHC-o4BZA 5ne& v֫U> "-3g4z>\C -xź0@xuԀZ> -pa N?&.ų?\vǃ84Z}?w(T>A!%^E>= lA3m,zwb%aZ]zzNA9=Dc e7~@dF=a1cLE)`7N*18e/(hOFa:``և3)35nfUGoPT&nLޥ3/9ȑ Ep([Lk!!؃/. X?^[υEd*)q*L43at&dWRC)PQDZ' @!(R{ޑ)i -(_ ^$ fws dV/?jZZpDgH@]t-⒧/h5ڏwLĶ2ʬd]٦gEAWYV bhS8k8-%T+s2 tLq=>Nm0Vhsk.ҥ -xBm?Cq{'FBh%)Lh`ZQKrgƉ-z:C1a(+h+iWmf -HhgeN κͱԢ!XN'Xq%Ώh@{KT$z>rt롧fX龞;,van,9ѭ`%sVB%n:Pvx[ϤՆ0D;+ \u7 -L蛺Nro::R?_} -L-|Jg~{F3$v闅Sށ, &4oИ[s351Qg,0rEѥNA|Ϩ;YlWx l# =pr Ǵ_y|.шdaq?9s*|?'Ѿ;] v=n< =' tD7S!-Civ Hnc1V%6,Υ^ \'jT#tKQNVo d5B Qꖦl.-~'@ء]zfW\6a -V\B v@{c.2߄n >^90sYԔ&fŻm ee -*V6pqy|Ibvt)k'X%ޒ XC!_{PC6Uʻ{^=2/iF7"iaV#bZlbF:wLD5 -7' 37X}c+{W 쾺;S'_`&A}K CH'f١}6JE0@ 6G@@I_ra5FA;3TN43!sqOK -$ފG$Qpyئ'u8nM5݃pB.NMJ9 -lG!h'Xz +RH2j'SϦW7,)VĬs)1 -b'q99ّ1L漕sseb^ ->*Rn;APȝ -+W-RXL M曎?F4D`nd*(Uqtrrk -4Xt1pdQeV f.TH*׺+8(MG6smr /vz!rEuґkTLEZ>hZ hyoISDi|\QtN.6+#[ h&[:n$57!37 %.3$fbOцY|f]~Bg8w;"}8ɰ,YyuqۊCJ娭:tzRm"c3m܃>gO\^Q#sג+G K=Zm[ůY -qGd@e]c}"0yBU-v hj.9ixޖ(/{.+f_͓R -97X|+D9]{2Ճog!XS&紁5D+}޷0V+*U}>t%*kjLe1"OӚ;%3_${Ԯ;qB@]c'5*Hn>yK`uO_S8ZLx3ϲ oe\Yk" -*{s8=KR03_X9э_34Q'Rf7Ϛx%MPg/Iػd%Yz%*UL jG^jTKD#utH_ Ee#锔ԪNe+S^obdb[DV"FdQNfId23%Sz -ө]UWT4@9x=HB <`!vs0'Q9д1λ(Y;YI^,"H jDmW~z6Q8x?3<t`3ޖCyJ, AƘId43wrQySQ0>6anAݱvgSMHJh'}x 4J(*[!pTȳO5ˍGJ<zj$a5@i h,hK;4ze1*^U[g`b4lﳔu7-} &EPSI/̆ЋV! Zsޯv,Bd%ʤ߬Kg6UZ=fp|05YnCl`{^CkmN궰ǎl&S 7>?csU065Vi᭎aN4FO-t(VP@R-./! 8`^(rڥg{Efe 1^iBU.Zj1;\u ݳyUi_;UȻj%YY`/\)qgflwgD؀Lq(r ڂw$.5Z]?ZlqE;3Uit ir|\r{N2`S"V"TGR -YP/A AnWm4t@~ -92_uvC-*Sdv5wToG`7NzK O8U.Oe:o5ë^V@G^1M`!!}IL3 -P|~z DK2H==azXuDSaRȩn]^lq@OQCj G]|L_Y2m} -b L"C0AQt]  #Q 8]ъ;Τ&uC:YO9J?ꪚVHE(P@1ɉԐ}B$3E!L{#*$*C ɏ( Aycl]!{ONΆ(",Ks3[Jͥ借VnFbS@1 +ܱIr\aֲ@5ֶbnX:&k6&]~G0fRnJu>1 - $`q%,l](̷3"J0a(|#,?X%m͘ğ Rp9rpH rmW@@L#8@֥Eች\nRƇUbO& .Bq5 5$ %e$ƍĢ@'͌42oTzU0Hn[0bnݵlUMRgޠ䏦4Z-<60k<<<<<.C0!MvKE,s=nXKUOx0TFx:><7Ɂ -\lհ:'z&g|k3~m!G?ר˛PKڋP[O~bxr8ɋ@/l1mB_GC)Z vo HKtsa&g@~}6_PT_bU[g*3~BA.{-uz(R=F{x FUCxo -y||NqpȀ9%-H)'Sv<(8I b6B9t@bJl D $ؚW40TR7nH`@4MARe_r44%bx+{lz"pyoV;/CTe/0 -%B$OZXKg氹0fϬmt;gʉq[r/2EOGe8׭=/ʆX wp%B"s -r53y9 pp]v-h oh5a~TTC/|ߌpā)L!zv4|j$"z M41I#$8LQmٓ1@Q_!vo-zӻ9y娱 0i,\7 y,~/Bh%X\ -R4-ƭ0Ѭ[Yfjr##j%U -w]7nq)0*:paXN@j@ꢂ!1K8 E%DA34B)^͑޳ -6ga  s_ 0 ` .kLHnՖv&v3[a,j(Bq* - k0u~Ꙛ=Z|Ҙ5j/F'm_RKT5Y #Ë#~ ,_7Yt2Fd (99z<98ܰyu|V;\y`3|\!թDKF~.?C6);Xv^;CӓF -_xΆ/C/=T'ۑ50GɑU/D_TZ$^vT xgk@+ -zy/5X jtu4ќq |OHk02!Q5YP17 N1xw qO qo9HKJ (*M(b^"y tsLtsSm>?MiV)1Y)&B:գ q؂ՐYya?,떆+,IY!>}bM}1N`m䩓@PY3iN@`켘f va<}PZgw>|8[N^܊ !J -:gAQ!XlnA'@`ɸ<_>P$椌;NWV]ϲ1r a*F7*x_C@pw!V #=7 -hh޼83J^}#BE ,A38|# !9഍EJX1JB~ ώ/Ayu["RL+nH|w&2 yрpwȉ~JX5$M{87;/C8K-f^ZЯKwm1<`5ҜDȒ4d'ךZcYi[F[G^ ]3Bv+阼9 3R<5Fve*W]H YX72 9D|Qu18$)A7 m#yuʍ qABF5,ቛ)<X9AI4hx=8S: -vNeʸDV9ίKX㢘ۼ'*}d})(:SP$=ˠW*/Xd P}qc>Em`6'u_0+(vP^y@<p#q$@+nF#YKwOz|Ҙ:PZ,Eֶ -`qŷ)rAl y4^aCY#mbCT<`Mx̮13=LHhO0F+yDQs7ܿT`C2kq^MI !/i̥z6F -$lO*`Cٌ6 B^URoNaن󘉢AD@D   &cQeʤTb(Ad 1 A M }/hj/dO[O,/#:3{iuM<:et%ŀX z dniLt3t-(v X㒺5H i_,UZi<c#u?tJl4 Hw7 ,RA9 AR]pj2t^$FY>m{Xnp3fOaIߖIC罼ċvC^jb>K}ȫ!kNֲq$rހ^Qe@!Wuy舩{ j˒o;a!]R(:YTgyot* goir^'1fc8 sfb$ -ó@iATA[ *r弦~'7)% #s>^h)⛮'}*ۿ/8#" -ab\7 h@- -A:Uߌ#*@7pf"`h6r72O>$''c.WmߛCu}I Ɨ](?p,""q(4 A/#D3{|…^.a/6xU)x;~= Yc^7wgE)eծӴ\[Ϳ|BX3RAǿkFo5>D5128K H86ˑn\w -*?Ϩ}=SL˲Xᚰp%NbȢi4GU\6GFG.aԷ 3*ئ]x$I70ЧoC֝2-tAucAs MwlֆqY[Co&/yF#;3bg=v7^ֿſ Wpx|u{fYD&T Hx9}'mI勪0AgI%] I҇ R|OҰi1la}b|3$~U:ٜL6e:S jD4.s akQbd@fdA|{+Ar.m{o Li6dNW[0H+!"d=$<јL]M+έ@,.k)ة]>|.@-Ez09Q !qBv+[8D5^ܱ . S=h}|W2ټ4LF[25cB"S6!|p -Z_m]rpXLcMO3]DJQDr[N,(! 9Ԝ}k"i  X)#0cS{CfGk~.壖Q5= 1[bD-)A;;lk/u[DH TZ -$>XxGqteh蝻"&]2+ uFr3.X-S@E,ꆴrqۭD2z;2c:GrkL0ܾ yGn+𪼩HJǬ/\AO?zӱ3XLו2NbhSÕiq;Hs5~=w)ĥX{E`$նhi㇢ʪ[`][z.G"E3a`9{J7}3%B 0E<%1}5H'L`<@o&Zc{ֱ{4yםW`}RIbA+"NZY)\UNB KIټA)M*A? NO-J)MN2͓>eLj4dU$`fUgf>b\-]+ RSwO ) (ο= J@1($җ'`׊[cN\cZh4׹{~F-Yycjc#y Oɀ!1t_t)'1{-h.Ǫ-Ֆs>=Br -&0\1 'Q_yB'R-<Ə?W9`[Տ0>1̰%faoy3721UDChm 5FOKi硛$$7:}Kiݭů4t&a(4BޢI\1%}6?Bi5E`pVKoyA[K1W:s9k,\iƪ"\~"_ WB/T%7F('^%pR5ا'kɄ&0]}~[^J,+:,iN8+A( /2%80"kɧAϫqZ&k6{l[]5 E<^peC^*wZX\2832 -)HkߦEpi`(" aoQ÷O蒅piޅnL;h0p2G{VTtv%y8~H$9pnNI"ҜTnPֻo Q6'xd F>BTtB- ( QG~' - -X@z׌Q}I -4`(ɗq6ޚL2Gw]/)U;#GӗB,t>YKQJ~:*G皿NT ʤ4rK~Ikn~O|3ʬXqZmd 4j0%XUE -] -<@=">mflhψ$d hr9/ljHt$uĥW想bex$b;3ME#RnTr&u@^\i ó5N ̸/;kl5oI,aqYhԝw88Pb۬@k,UfnKJ@ B=Tna !8)9Fwap%Xp?)_,Pw4#Qud5XO¾՝Խ(vb|M~'!8O&8U+&U!<-ZYQIJJFkUŤTjLLKI!ǕSKc0 - }61)ҏ2ebD"ӤJ]6T-Jd [mSx-\?3LV9}g+Ԓ957K2P?'?y}MLlIoPcˌr*} -??o&7}'@ڐB6UmcH/Di\8 -\=I5'cS4N`3vP,pDO=.(ZM<:=lȔ2vd馧Ɣ$z4&:| @As62  C>j(T"0@E>("@>LSM{h$>W{ jO0G>гOaӇՇ+5Z* pt%@(`= -A'b²} kt7@(ڇ#G B>Fp(= -PC>Xp(؇#3@|z(}= -'_} Cxt@(݇`= -pA'`} 4C ut@(݇ = -1A'a} s K -5`*ԿJz!h'P;@SgS$=?H;@H75L3 Ѓ -Ѓ?8@*@=8P=􀠂8C?8@g -X@=H)Lz0R =z!Fp -WD3Bp  -?8@*@i= =B  -?8@h*@=| =d` Ѓ -ê?,@D*@= =WT4zX@}?8@*@=ȫP=  -C?,@*@=P =B Ѓ -Ѓ?,@*@<=P=d4 - -~XTP=\'@=$z`HCm?,@:*|azQA@ - -~XDTP=L聻@=(Wl4f=zWCO?,@*(az`UA Ѓ - -~X@U =`pH@d= zhAP\?,@|*(azS  C -_d4b8?,@+(azHXA - -y~XUP=@!w@=zhA\D?,@*(2azV  C - -~XUP=+|5*ZA -M~XVP=ം@=zgC.? @9+(xazYA  C - -d~XNVP=8聚@0T3a@V=dzarЃ?,@+(az8\  - -8~XVP=􀷂衏@=z0!m#?,@c+($|5@ - ~XWP=tP@&=$z`ax ?,@+(jz]A - -~XbWP=@M= Nu\4`za{ ?@+@"z _Ѓ -~@W=C0Ѓ -@+XW=`z_APC - -~XWP=8Wd4xC -&~(PW=聈 - @AP=Ю`zAw C ? @+@jz^Ѓ -~@W=Ca -,@P=dd4-+(V=P衏 -,@w=`z!pC?@+Xz8\C -2~( W=|0聋 - @YP=p`zsd4Ah C+? @E+@Zz@ZpЃ -P~@V=C@a @P=h`zl #? @c+@z0[C -C~(V=HW|5*Tzc 5?@+XzY -e~@NV=,C衘 @P=`zaf /?@9+@rzY0 -Y~PT3T!x @P=Ы`z^>?@*XzWP -w~@V=C`! @P=0`za8?@+Xa|5+@AY CI? @*@JzVô -~(U=d! -n,@=|zA\ CC? @*@z@Wpú -~(U0\4 @*@z`U0ë -~(dU= 衧Z @=P=`zaWM?@*XbzV -~@U=C=Wd4tE @gP=8`z!RCX?@*XzTå -~(4U=TЩ衪 -P,@O=zxaTS?@*Xjd4=* @=z(N _? @s*@zSЃ -~@T=Ca? @s=zAP C[? @*@z@Tpd4* @=TzK e? @[*@.zRpЃ -~@T=D! -2,@=zXLb?@j*X -z`Qd4|=zHЃl? @@*X^zRÐ -~(T=!$ @P=0z0I h? @O*@FzxR0Ѓ -d4E q? @+*@zXQpЃ -~@\T=! @P=ШzF n? @7*@vzQЃ -~@zT=|5-`!  @=dz!CCv?@*@zP0Ç -~@>T=LC ,@=zhDCs?@(*@AeuT3a @P=(z@AAz? @ -*XzhPPC -~( T=A,@=LzaBw?@*@zt5pþ -}? @* @=쫀=pЃ -}? @*,@=z!@C|? @*@z P -~@T=p7\4#*@U@zxWz]a -y@U@zWzA^衿z~@U@zWz_A|~@Up\4{\s@U@z0WazH!]!t@U@zHWzH!]! -v@U@ z`Waz]{ul5H -U@$zWz\Ap @U@$zWz\q@U@zWzxa\q(U@! -L3m @U@0zVzA[n -@U@*zVz[n -@U@*zVz[r_l5G*lpõ -Æ? @* @=\=lpõ -Æ?@* @=h=`Ѓ -? @* @=h=`D3Zak @U@6zVzZak @U@6zVzZak @U@6zVzZ^Wl5põ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpJL33ak @U@6zVzZak @U@6zVzZak @U@6zVzZa_l5}õ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Q -\4+@U@6zVzZak @U@6zVzZak @U@6zVzZak @U8\4:Zak @U@6zVzZak @U@6zVzZak @U@6zVzZAFul5*VzZak @U@6zVzZak @U@6zVzZak @U@6zVze+L3ak @U@6zVzZak @U@6zVzZak @U@6zVzZa_l5*Zak @U@6zVzZak @U@6zVzZak @U@6zVzZ(+T4%Zak @U@6zVzZak @U@6zVzZak @U@6zVzZW\4põ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lp \4^ - @U@6zVzZak @U@6zVzZak @U@6zVzZak P\43ak @U@6zVzZak @U@6zVzZak @U@6zVzZa:u\4=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\T4Zak @U@6zVzZak @U@6zVzZak @U@6zVzZ聧Wl5:põ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lp+L3iak @U@6zVzZak @U@6zVzZak @U@6zVzZa_l5õ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -+\4*@U@6zVzZak @U@6zVzZak @U@6zVzZak @U\4pZak @U@6zVzZak @U@6zVzZak @U@6zVzZul5: -U@6zVzZak @U@6zVzZak @U@6zVzZak @U@6 -L3ak @U@6zVzZak @U@6zVzZak @U@6zVzZa_l53*lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lp†D3Zak @U@6zVzZak @U@6zVzZak @U@6zVzZhWl5põ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lp^L3ak @U@6zVzZak @U@6zVzZak @U@6zVzZa(_l5iõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -e -\4+@U@6zVzZak @U@6zVzZak @U@6zVzZak @U،\4&Zak @U@6zVzZak @U@6zVzZak @U@6zVzZHul5p*VzZak @U@6zVzZak @U@6zVzZak @U@6zVzo+L3ak @U@6zVzZak @U@6zVzZak @U@6zVzZa(_l5*Zak @U@6zVzZak @U@6zVzZak @U@6zVzZ2+T41põ -Æ? @* @=\=lpõ -Æ? @* @=\=lpõ -Æ? @* @=\=lpF+<3`}v0vKa/cGCďƎ~;:?vt;%~`/cG_ǎcGď:?vnc?5@ -`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXv^3a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`"+59*,vt;zXva ?`G%~0`GK`;:=,vt;zXva ?`G3va ?`G%~0`GK`;:=,vt;zXva ?`G%~0lB5};zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~@Y]3%a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`{5oa ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`xU]4*0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXC+4,va ?`G%~0`GK`;:=,vt;zXva ?`G%~0`G@+5v*l=,vt;zXva ?`G%~0`GK`;:=,vt;zXva ?_3a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`5*Xva ?`G%~0`GK`;:=,vt;zXva ?`G%~0_3ba ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`(5;zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~S3?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,+5%a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`;:4+0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXk+4va ?`G%~0`GK`;:=,vt;zXva ?`G%~0`G - -5,|;zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~3[a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`5a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`4;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXva /4bva ?`G%~0`GK`;:=,vt;zXva ?`G%~0`G -W5, -`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXvr3a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`%+5%*,vt;zXva ?`G%~0`GK`;:=,vt;zXva ?`G3va ?`G%~0`GK`;:=,vt;zXva ?`G%~0B5};zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~Y]3a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`A~5[a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`V]4*`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt!o4va ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GT+5b*l=,vt;zXva ?`G%~0`GK`;:=,vt;zXva ?_3a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`A5*Xva ?`G%~0`GK`;:=,vt;zXva ?`G%~0 _3Na ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`ȷ5;zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~0T3?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,+5a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`;:Р^4+0`GK`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXp+4va ?`G%~0`GK`;:=,vt;zXva ?`G%~0`G -5|;zXva ?`G%~0`GK`;:=,vt;zXva ?`G%~03Ga ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`5a ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GK`h4`;:=,vt;zXva ?`G%~0`GK`;:=,vt;zXvW4Nva ?`G%~0`GK`;:=,vt;zXva ?`G%~0`GW5 -;z8;z@$~;z8;z@$~a;:=,vt;zXva _3A!~؎;z@;z(衈"~;z@;z(衈$~;z8;z@~5*vv?lG -`G?=(=vvу?`G -`G?=(P=vv Cу?`G `GB=$=v+3xa~l;zh;z~؎r;z`;z!~x;zX;za^5 у -?`G=v у -?`G=v у -?lGKZ;zXv~<=v`G0=8=vv0\+3a=lv~xvOLu#MVեau5 R@TX~A'@&Tpl!Ca&X2Tp`CAQ@JTXDP@VTp,0 H4=ܨ4=AG+ 3!JizR4=H(@,M -0NCaL`izHS4=(@,M=ANpSX8M4aOR@TXV -KC -NJiz8PA<5 izR4=l(p M! -$HÉHizQ4=(px M3 -HCaFizhQ4=(pT ME -HÒ!DizP 3"Ä -HO4=44=@Rp M1OpSX M:MizHS4= (p M -0HÃAKP`izRpC - 5KKAJINӃ -HC&8M@* MG4=4=F8M1* MizXQiz CizQizhizPiz J+% q*PMz4xꡛh_H,d\S4C4AgzX&=Mԃ\Ā؃T!KhPN6f* MFa* fp4=?>$Qp <H }'`C xJ8?0B

zGy=` 衝@z8'ɀWdn=$< <4Lp{N.H=,@@z)Ѓ6 -/= 聡@z0(CRO(+<zЃSb -CP w@<()L4(FPTc=Y@6zLڃ}pxPsʡ5P PVN=ʩ=%a@a@<`6CP t@@<ThUJ= -聙\=> &= A@z,ЃbMPW< n@zxp*CPd! w؃?BC[znAx͐5 <|!M -e=p PpA!x=VS*<@l6Q -\> ~@2Az 2,?x0>a\J<\ ~ eC+)f?tW|li0=?4/xpC"< ~ʝ1?x@ j™zH= pg@Pֆ>$@= CJ>~W!`j?"o د{v҇C | =`߃x 8ЧrW* a񒇾!C>tч"`=Zd`ه$0R:=z3zwa>l=|-Ћzdz8=XXQ:WD t6. I9 4C"bFɀ ''FV>'[d+ʷrʕRJ{XXp8 A0a!Bcpfe6C?ӲT̰6W'M kW$co'^oL -'QI^_(`Aa7 -[+R`PB _`CGv9ČqW@'8 cVf =DTۆïO$trjER=V:eq?zt{0IϵN{ovF9iV:eq?V:eq?夕N{ovF9f`* -{ov4Qu )>"i*VFwEDU%=t{3QNZ}Hʪf`V{(&j"蹶)#|͎('>P$MR=V:es"L(Z%*ʩH&b(+"PVMk Ʉ޻H&Hb `X.p< ,˲ʱPd Fp\e#H(*H(cwl8`"S -Pp /R׀P00f,+l8U4NG`]"ѕn͆hmfln;z-p:KqS̖l8sܳJ fh6oBdpl B(:9$* f\*LX.evb `.ZfyDž7#`0@f3\$IRd@0@"= ol`˰&{ 93>EMM&o!}tlX-he'Xw AVoVAY]ZZ% Swn{犂a XU>XAXw:<'@qj#[*hQՓmS/c5V'*8VKFVDunFc mJYfkhc %B6Y0)=SjVM.@ZM*O xj "q5D4&QS9uUG=Ukz:ThZTަd5wVVPXA_F7Y>BjP=V2KAYu0B ( -VU¿:nAƅXMԱrm,]G5RXUViպUG -Uo`zMj+E%jLVZ>(BM]87UMRZ{:\һW@m+֚XNjG$Ui?L:[V@q/HVz>R`vzݗrYoz$?\sAt52bV@^ÚC -5>Z6c*gX)9p(AJODub@"2b#_I\2YC:GWO 7VSqԎ9EК<\N.2zV]XS]ij@ƀxJJ[hRŎQ ;25Qa^JP6K0[[ [n~{9<㩬ԠkRzy<[g|z1ݍ@-[nzjR޸WgBg\z`N82M=eE?*ł.E5$Yv&OWJ]onon4w<kfvʃl/G؃O!|Yd$* MOВa[`f^,[eq/shE3b4SƩ1q[4FZ`Xٷ`P" H}m ~HBJփPm ^J@9Hg"T"T0_mi,H^_ԉ tpi$h‘7|]n lm% G*({('a^4q]UU}eӔ냢(D:Kͷ.K{iB<`YnD0 GYj\PG>:!z,TZ'(D*5"\/6cU=o**xq'"L|a/砓V5 -xla-FVvYUIReԨ7.Hd$aBc 1Al5>d@:Z@;pDdtY@tF_uWӤ՗=[Ŝ "5޼`@8[G߁cZ=n5 X؉w<Z(lvyڦݪ(`'YUuU9 -kY:d\a^fU4?}~+g5#m=V/K> -"6V8Ӝ֒x cW_U]I» g9D[5K} ]W8[\9-6 t!q)2fW-]%rwu`WV*Ĺ"]Jn4ޫc!+W !4;jlʏRc@czcURWy; Q,UJb JC\C[:RIyOa2 zZw(f[W[68__ NZ4S+XS2WbNY D^ s6uJ@{x'XŴsvۭNWPa@VFՄD;k&˯jwh5! -n0W[w?pZ7mn3{ЧYHՃZ7\*WZ h^4y*0t@|+ԇd'NUs!X 1NBzjծ .TW+XE+#Ꜭ rY龎ebȠ*IM6n-4&Zm}hBa*UNƒ&3OF(wwBVϾji骍*ZhaW -]H]jU!"pm%U0c5|O*aZOWM)P㮶aO^rv5\+s4fJ -h6C}8ճpgc֍u6XJ@_ȪtfiN@fjwx>Ո@urGGvU= $NW:H`e̫ ƵC/ GO#2 W@eY^.jkU@x_U hrP<y 52D4g Է -ok]0# R|x5N [" \L^_@Ǝ,7ЪFUQl Hw:fc .ުbh5~2 -Wt9Zs6¨ `= zyX̪ʒէuAZt﷕RDї@ĉpd ӾzB +=ω˯"Ae}~u)@[!ZF^UD>2RޫªCpA -[.X# N)hp]u\e5VɄ&[]pa^YHWMw.ŕ -ce[ ~:f0u): Pa!hߗAWG؊*( k%`fTyatp8Zn-Ԫ#$|E7Wac@K *HD>7P-z="CItvZݵB~ -XmV7{Z4OW*v^UuaMRuo#aYW:!@(wUBYşuƶzVjHW|J1jV/9]J] *^e1u'!U&-gUVqP@{W*b䮊T|W~aQ|SHn +{OPЭ]e!h[VRj'(wߔ̯2/WyH Zf$>ľ*r8luU1}5/*]`#6_EtO*deߋP2Au=;tz6W-xX]!L ) Pd6z$E˽D_u@;uU]V:a!V3QBO#v2rՉVUsY%-UŻ^F[BfF4ݳLXM>)5%3FaVd5, ՘Ջj{h?a +D7X O"?#:=\V41QVu|uW5Uj hX@m@h # -&984UN 7fR( LD !QdwiHQ>>,mBIlh ҖaHﱨFxPDaUi UU"RaΛo@Ҟ1sTSVvo(P$л}_P`"_ULץrǻg-M{91L9^y`"l)ceSea' `( HQ2C @D|dЀ?\[gmO WWs2 Y`q0*zڑXĀq]wp%8*WG>t̂+Φ@^@W@ -#j1^ pZGY@L'=+*"xѨaF L B@Iv>ATOҫ4nd>Jꟗ~ޖwFm@V@S -$Wngv@x@h;]@꓇: *Dm.Ad -1cuh \Nz@Vmp1  P.Z)nj@j` [)`cU,(MI {VgW,~kђ*׻^>@ギY+!ŀ;մ]A݀Pa si ->TTbݑWS`FW -pP -}:!-y7*B;Rqb0d9xEs(k1 @0^A|X.n iaګ40իUVNWh*d.6Aj-Cz ٜf'ծܛiWhdJHs - -k^!^eCP J)+a-ˬ&\mp\\'cSi=Ѐke\xoY`uu|@U8JdE"6>=gIhI'ز!3KW +$!3 -(qܲ0]UK -E+\3 }}1$֯jRz7WȲ\DN" ȥ̄6V3&X b_cOPіn AZmtY@F^૩v^%j>(x]^)u"P^2@r_CE*ܐU Yv<'hـ'8Nni,s!3+^J _IiuWlj ϩTR[Y@i#juW:jk}oU=fNqg,|xpUCJ*:@WOώ[c-|ЬJ[G$P5TZ=`7m`kruӰ朗"xuZc'&P50?yGn8苾../o"$ ahi5ňn6=,5Z,ϼ=M w؇~QuvM;ZK6eV-+Qᚽ;)l RP?&GntXrx]!\Ouc1RQip{rYEBr V<弼@ &I( -! 1b>^mMa|hnkvq|lX:u_W -)1L!YV3W@V&.<]\!=W}֥cAo):j"䪛XHtIX)MayJw;i +W/r3[BLh5Hi ְEmٿ!!L]aI_Uc" yzWC7Ȩ GPj5Z -C2}j9Wo/_hŇ]jU^%UDhhUHN:XNf%hJ-Wp?پ ~o^!0Ĵ`Vs. pZ3ޚv[`fFܫr9T1^HZ=%ϊOj7 qcB Ph:{2\NU^J =mk:ib=N~|¬wUq\>jYuH=] Es9du+ G-f&:x:AQ`ǃUAά€< -SgA-*6b-$`*Uάj-ajWSU [>$㪧,&Pgؼw DWIQrO&rա25fV`@5<*xB`W V m*}4I\H}hϭF`'&ՠQjV7{sĮ۽>N^%˂ -UB[~-ee Ha]l]H\RW5l+ `@'r;!̱s,KfWg. dFm3^Wo -'? ݲKAݪ>+\\[-=뇵I8?vA - [ `/KRMN`ԸWPLW}W\iNP4#]Iȕe!j"VRIQ\@FUx*qب 4tM[_M[|+i:aZ\\j\{T#;_ Uӱ˱D-(`P ;oB`{YXU”%$d ={,%МC};AOY%t:*wdbCUp7ă9mE uӷѵCAv>ZE 9.^;\4nRtUUo- qxCں/kw*32RX5RVUH[ZT - kI(5Lg,t$V,dz>4'.Czz;:ln`lIh2> Hqu26붞\ n & e7W}h4Xp![Cs ЦHQ[@UÇN! rջ -IqCtixu R:lPaZl!hU4:L[%B>9j.JЪ P~b-rU2"O%bۂ]\:4"Ю[}[Kx (j@ԃ+$6 Wr>0z^d bUY?%YU \匡U~ (5[≭^1vbHBīkYt_`YdZ)e*F,* )|&UWcGoHX±I7I f|ր+lbV#P5j"J^3s~ 8|Vwq]AVG"ЋWk;syф*,y@!jGJPt@l^u,|&`cp-Yj[ꃤ%5t^Dd@]]B'PD!zuN" y*sՂZeVeI 5x -ps-QΌ밂vW#[-\~^*)UG&4.lu>.j\qdnB0([*BWۓuE@L%t\4L8ح -:j <c:v.\D!׵U\W77늭pu'ٛ (ӽF^ݣ XRn-ߺUĎ,jʏ)1z{4*UUTƂ.:4E]7mɦFc# t2,PXP뺃*ݗ<jf%)dssـf7 )0Ÿy[2l's-WWLm ?l0L da  -W6qa͋o`tWlGda%>ͫu܀}`; ʾM8\UIX[ͦ:GtV)g]@rVf&!,jˆRO4Y?j ]}WyVo}Uyx*YNXZڊ,Dv",P ':[]EY;Е{UJ+7JW}6GSGʬh @jOn@TD:(,,71֬!C6Y4SHAcմdrx@U+2cʸbp48w 47o@[iKB3Upn}&kUMG"zMQ؜ՄUbM5$` -i"h`ё0 AڿV8\tr©0'P!J -kI̪2XPXh3SYW稸 ԑ?QC(h HަpaU& 0VjI T#qX$mrV϶ -y!R90u֔(s/k5i.*;$(n@+ !߮ܪDqJY=DKW6ӭFۄ1ޯ3JÎlVAb:=m@MjBRv#EUMDZUbPIqQn߀܊ 8|5D1Q -sPzd^:^UaݪD$جv\$`\wujf%d@h6WC_L JV :q~s4܀DV}U%"ת+| %`P fZ>stream -'0w[C7H#1>d78_oh$Oh^_- Jiv`B~kC솘[C!;-g%XMr\]o"OG R_?ڈI;Ie43oq8`ޝ?KYgZ@Ԃ~4[գ=^"&-lA -% Qsua}>jo0ҋQ -Э2ziK4%6+%oЖnug)@T ^;X TbU1Vp_cq8u?N3{]KN7k@[{gR?q#%JʶK^m:U>0A֛ǻzwȟŝj9cI7/Hb{GfL!i$4m"1Q,gqHݙ,<32Vw(~r-eVPxE|뇏Gk7 㜯ȱZ&6jc0T." rdxX2&NbZN,a=: NOj&(˱hw'K0$W% =ʹ3WRt@tL}u7[ܟ_hSxY&笖ت{~C2)a80%Spb<ɈT2Y.%81jGSlلn\P;#|Amt(\K.KEވ0tA.UEiźt*Lh>X31浹wFnm] |醶L̷^ kekK-W[ph羒P`IjrnrV X}m߭+ 1)` +ﰏ1c`Myu"x5)L7rH{X@L-~A+|i> Ki˦||xVh`~6!Hh/v|Ikǚ%Uڢ?r;c,~h{<3IZr%DI;,)8!ZEsSJ*_vi7*d0 _k'׼SG(\YǡsYTh<_R&(2/mbgG$ZCЋ[$YsPe*Hc'n,_E?cnQ>@H=do!:a'Lvհ3Yq|EޥcxDMj@WVdx$T-ɬWajU-w#>~?[WW6Ȗ~pH?&VrIyI3MEwЪ.OO$ +Ć߬C;S[`#-/M6e]h` %1>GaC*}M ~Ԩ~ǚRD -g [,oBh {Zjln:l:&eXwu0㸝·G5sg9m"4 |v5hI" " !{JrYܵugA*f\52cl?xVcZT%!dDSzhM?~kǺdz~GHf-?;L^ΒcCa)tӇw+ ]@[A*dw\-Yl <O;z@B|m;(H9h}7ZG/wFNl0x)߸;pnq[ -Sz@+"}AX*W"j'&ywp'LcԻYd?"!qT~]_pqH?vzq -Tb]PG;cF&΃m=#|X-Ϙ뎴~YKE-ԆZKB<«{%4{[" xН?xY ^(kg&t_O}OYqm21ec4%بdG&[|ͯzI<[PzzI65> Ѯv k)p6Pgg#sg=gtd=6p!c)~Dzn8Sftb!#US}?<.Ỳ -`g~e+sǽ4RUـV5/7=bu>>;2tvG)5c0} g<{:nE#XcOhOcz{\7Dpl{M'}pNmZ_Pˆ*]wOOrA0umC}Svu@- O>-gl}9^VWG8 -]_.V%IÚf-{_ja`|)+V7j$޷o٭ ߖ$x+▴[lJuYЊ2wGnwЍtrcܖqݖ0?u f_ -[Mi19 T&lJla;mrą!RV0.P}%Ӎ\(N5|c;\;֒Iߔzi~H_<*_D\_T˫[(%P%Yڟ瞿ĮZ/8d7ܪǹ/4/[ҏݪ0GȦz cl]0XD&R+MPIrz?Sa+@ֳP(qRAU0-€&/R'˪{prx 6;i?jM@_0hiaVjՔYvFU*?2]l+|w뷻ϝ5^io~i%.͸R9[=jg_ ?)RV(cI7N;|;ߐM/e `~ujVg=`:ʇ4`KƾC+(>mݡ;Mc>e@EXܒO]_ì̥6cS_EX>PaARU8S[z~75OUdi "u:Qi1?]43=$W nIƏ"`/h1۽IK#=naKsZqTx8 d~g ED8Wp9"Ր a2Z$YYJzKI<6]bxz{PLXĬšAJR.RIp^^2ɺ*:M/{"UV/yEb"+!זV)$-UFשP8Yy-Hݍ_UK%ItD$\cpuU'ߜH -ְ+8n+vOW0*a!! :5m$Tl ZL?DN0oTcn0K-xv1|&  -RL -! -&ܪi9ªGo N0X8hf~~mO`.aW.3z &v65 CJlcW TUZ%&N0/y¡y]kBٶ? $TQqG \,];ӕClq -j)&,&j /SΖN݀c0!рUp0E[O@5cVCL?\co.cs?Z:tne5r5[7KsV?߼dz;c|,27=?><42sygzF7wcz`(+}=4@2x%PddT+?(rbʱ^!"$ͿsBrcyTSҏo1Å SQNGm7X 4H ɿHi" -[\]^\O1پLX {+ K((!*5F6bTJ,!ƀ! 0 C71Eɇ{LLֹaJJ`D3ཿaڵ-wς/ -u>ԫ{oY?gZQ$+\^e#"Q=QwR~{>2n v`X.p]BSm.J94glt@]JȊ`.c=vx|߿ьtڇg*×f}ezol[F7ʶ眹K V -6@8fSƝQêFPq;eC|'ǻE,>v5+>R?n>H}vkW+B|21/h׳ϫon[ ~ [) ꐥTcM@6;\X+ԓ|p)ɋbK ->f+&dm?hn7~ уԐ4 -qHiG#!;XOo`Pےt/_%zn^M=EZ5YA{ ~zP:Cu7 *=Spv/Bhf]O^<,.^UL!j!/B #~x,Iqaߺg>­c j@i3΁ƞͩ82an UtZufe*$ }G?8F*꣗mt7q| `u_M{cp;Au*tZ'r 4 С{x go=?u!7;SgoIl+oEB|AoCH̥Ut!9jYMܸ:ٻ= -cccҕ>F?.7v\Kzg/7t?Q]7:e7wO"0=uGq{=|ݣ?qh5sL>mطE/"v.r&魊jqC<wE^@NsK %ͳ3&~?}De@+0qcfIN=b ps#ԿQ ?7Lj8GY)v+yST/`D2cx{N_Y?A{~Gaj -Sk˕{{K~>9[1z873Mx-kZK뿚Xi3o>jrGGS=[x4qH҃>R)_o'чic5șcw_Qg4jDjɣ#+%!:*q5lmPsd~P/>1Q緩@F?Da|I8w./6 -N{i4 ZɡSUeKZCR,lN}-B*~k:?0졧[`pߛ-gxDǙ r~ߧٞvz,yTcN/P%[OZzW688{=V+Gdh?Eľ?-웃[^Zϯ@G&(oi/Ee9BTC;hB<g:`5 -' 5.A:c((F{LEM --~}{\ȜM oUn6W8UmYN-ň66F|K>&\o4ȃPtz˺W@Zܚ$> {Qpm reA݅#q|Qܓµ!_39>pܵ0MX%?)*MZJAI㉉o8Ӛ@y4A֢p} 4`O{VS+!s -8$<}C( *kS\VORʨzh/M%|R47R&]>?y6q`\JhV>dcE_xtGި:f~Yж|D%r$&dTJpf9uIĦ6?]hgp (:T?S:#_i%9DWR`p=Q L7Dc/KF4MLRƍPή bƳ&5dnL^n4Ů=sIj-ۅQEO;;82fݿ7h>^>N_^˖]㥴\;\4 u:`b$p%yWߣS3>1:h: -4lgteN?' :e:_&G55Z$VSyƦdž3 HF?s3__ r|@ㅵDڑG:6&}aY [)L^k؇vY=IzLiᦖk'!pD>6p:3_NP zjo*Lښ#3h ۏH^ajGZi_g -h8}݋jvݼ೜}/_r[7SK~+K ds'Q -AhU̎ߏIkI%&1?D@=4huV0ueS|~jN/SiH H']6;gqZ tl X"ڝ6ZMpt'Ub`D܇ĸ&[&G]><$q%3~e Դ+}N-p8_ðaFƕD\E}jiHi+Ԓyҭ_\,yEz"7M.UVq@$-`örG՝QwQ_;Uݎ7wGYD귄I~7}+Fgq:Ss ~m[=2Ur9=iDg<$/ϣQXHJn(2+G]w&_l7+!©b[LkhǩVPK<%jN Xrd`+Tutb%Bp'5ak*1K+Mai7ғ: $6}ͻ_r}P/6 .=2UߑɷZ!KF|{(_:(/hk|0=:ebCYQ膉X(X,TXY6/3E?4t] xwN׵(k~?2/u/M֭@ -4 v; 0\pPK ŧ#$45nq>5)敦ZrPQ%g`ѫ5YM`۠2UikQ_8PG%(ʇq7NW w칀k'=Vǐ#huFuU{Rc՜h)} -6+hO<-9 @' 9[iIѯ.?}ľBB c}{h{ ݀nĈ{ -ܷ/|Mi -EcڗVevtɗ>6dţۚ`7 :< xC䏣~\Z,هy'?,7(7KD%Rɵ I6=H?$"&Mm}k㮖 :~|H7_6 Aؖ`{'2jt-T=\B`ct9alfcE'<[h1pR -_O -T6fd+BrVl BR)# Nf~ -(?>r~pZL3cid#]pf02 -2$AJ!9=l5f -IC,9踌 [z"WtA4Hlj2-#[LyO&xXK]!3Rz -Wމ`_oizVE;F4ۿafhO,HP :ExQ><(r`1 mj*K{|wT ls/5CMAWYA>m=}d! S\~e+3}e/ $X_ljˑ1|ސnf Ϧ,'ZŦsЩl\p`y\mt ()QaShk~#B5G.c5AJc}ޢZ׮|X;tc%f2G՗V~p4Y?9Vb=6,oL&)T?1ˆ};/ۘqý*ՃJgKn ,D. 1+d.5gְ%nأL{w /)b2}Ob]o0)g>YvA] Jbi=.2X~ߛRZ|ypKsPC+< -.Ǡ -Xr81< ?hB7qf /5"Rմ}3x MmZ1^ O>>u?oS˄[A@/o'u ~-:iC$-ʗ w2"7 ](5kr 7]^IHV24"@q2>NP֤?:M~7֦ Xwb qU]nߴ+ҕ/9>u9H[˥Lwتa Q/r-t8a$ -n?>So~5ܙj`ɭ%H mg8{ r |2s8|X o߆YPl ;KGw{w펾=<Ub=&ڱ:^ڻ:!QELu} 0Ç -r"L~wO"^nI`CAXo) ܁UBS2|~2X͞p+".?ג~jb 8NHW|ߜ5vxETA7x{b˷eVk;v6؁'ODFGBcE(QɐpiI%'J* ܅qBXz@V4wP% V^ǧ?F6jcX' pϟ? hK^<Fvnߛw -G=Vߊ -ő+rIptG軥^iSr8zWJ\Mq:K755DF/dEZ_r)uH8.v`C~Ti|IEZ1-ѤL̻w"C?~ZWR^}P-[fb>m|:_c3Ӿ A0 -G5;ݳ+Ԓs]Zx}b:%_+S -81>?qAty -:YH"o20&N/&jb" {kץoΌJz;Gf";{bS$F|~npO۸w6K|֡:9X]ZA(6<(0sG*U}zL<2 -~,8ڋdVT2u@qa-t񇆤DR?)k_ -'˼ y"::Q7٪EF6O:`|/>|p) iDb*O!KO^`C >Fq]?߼&#o=|$$0Պx~#GZH*䭺mWR3CBVM9r=CSu.nD͏*9^ӌ>Cg,|#㟠&R,4|}Џ2Z?3I nvtd7G;dn;ZPmF?u{%tR'3p>KE}R՟&}̶߰HSgˀX> ^SF&jt4.Xxl.d[U7?p@o$(JD%@josB#nAlsf vǤ %QD9f#CJ >e?IO׃LPURz@^ԛok/hҽC>@tmj϶ НOi|Jí|[d}4s[e'_t ~0$K,p5k@<oԍ4uS -[%?-nS6ߤTZ-!zvG`Ymg} uMFzW>*HG6 ʎ -^}b`>ο ބ+ 8/<f QɪUG?>W>oWj9RnG 7b{1rx7"GWM='b7#P)xH_U^k-wɧ2 +bpP>5m_JVvaqwQ3QlaM$#T3 0!<= *b}7]G>%JsSZig͍+w cR6u&Nnd%搯n!_kGgx=;Axec-Oݍz|k/սc;5UĴ"CjY\0nQmNT Q7@֢Hod;H(^,Nð=I1Vy\9e /1.wEނÿ dʨue?ԒۗP},eAw3  0P쬓WA|ݫ}p10a2CIx.&=\;eU",r, JvtDYotFw@(Q%?< m!"'Ѫ5 HԫvG{m%~|ς(nӃ8r-?ckBzi;ACLm 1փ[=L5'Ns-N^ yA |S}T[OA=_g9rhynA!^) ء)~ܷi -1{2K~ai?NtuGwoo;T6`<0r52e4⺆)ʷmfC~'~V=|{"UKWH;Z*4tٚ'%d MQo`P+V:M/Hcqvُodj= -ƻO.{Y Ȉ;ҔU@_.$a~;0{̝!) 6|M]:p#(L\Zl\W`0LQNc\t{Y5{W?pmx~վہP0yHBOG|BDET6eM-~z:K߼ " Rd."jg0joEv(5_?MuyU|fWm^ (D|5LP Zxi럂>G8Do׏ţXi~V[1 {;崛98?ܩއqKwVֱ|Ax'pK_̀iII U'v>!ZYc~"H.lEHߑǹfY$z Kw -GM?Zs:i/CLXџ"}?en—IeLJCWS3=SHVY ʘi:!nzű-'Uo;AXCr?KDV_Y6i"3[$JXHQ ' ĝ@$!0xF0|#>?M&Y(Xn8x[-\i&7 dWQ$4a&;Y2oLmNCOo~`ynG40P7A6u͆Npd=|M|AkQ WUGf.WzۣCڵh -8T08;QDi ;[YV'k{ݯGR -煫X{ي?\^#*fuQsrs7PDvR7ehC+t r{uKl,#e=aZC+}|<,lq[/Ja-S=3H+@,ɋo2 !K[Wկ)@{_x\>a̧ 7C .!PXi¸~ށ_' f$d F+jT+]ҟoT2 -0l:3/b~͎BE'[BjiBlf/|0~I4HfúPL?Z)7j?y:DcKWsjlz+v?'MbW8⿠˔`4e^} Z_~Ciw{3MJ$w ցyc9$?z/㨿ūOܹމggIx vmC$a`&2#7~ߟOSK}kkn>y6OۇQ{[lv%&`BYz:ꌠi͆(XIT w6SBOg+eX4P}'-y֟ohsu@4-W|@ׯw\G߱иx~@AU&F^}㟞2Oh}24VDDuuO>6Xﱃuq6?ܦ s? -tuTϯmLw_\8p/H |`è!.X~],f^e~ 9Y7ܷTja)nWO%j|H P(pG;N­mg/E諢 D"ކ;SwWJ? -3?墟ή8lÂ9Rl~Zs73oܸu+Q߮bZg.0B+=O`p'!p/ӡd:kdA}OfS{ƩB4b|@}`Lr=ФKpЫ% -i:[lT >_ZR{A>7]iW;Դ&e L?!]DP|zJoCZ I_6.db4ͶYwā P%̙/Dw=dUXsjr֗r;Vߖ>`n?[ߟiV_,F A$=Ήy;0]HK/u?2quwZW ),RCYן7*w(hafv| NiUQ Z:c-s5und1ӖjnB&c]9. (;~ ( W2JaR]Pb-߀[tt•Ћ0 'i)$j# -v^}Щ;[K<^[5ɐ_ԴTh Mk4!>{ -2yOs,8,3smڂl=<^+JJ+V%Ȑɏ!c8r+G(\"$ČʊxR7>p@[_M̎UP褁}e;` UCOM3C7Gǟw;/>'GV 9J:>VWG\_7m9]퀀>ξdj"?+x=vsMJ=fqx -]|5jo.3RQim%UgTApۖްw^}˖ }P >{; -tb!yfCtAwTN{ۇ>DkTԲ-~qINnbI]LHD\-^sj[#)O܋\mq8܆D{ì+;7pz>P9e[Yq?#gH'Cez?6m?~@c/"W1%#G@8~kVNqIIO01$ K*ʢTBj[}5t~Q-AuXN!Da$' N "aDqp8(spS9^fӦԃU牪h2i3vs|^XeP/6+#5;*Dp>uyubfɰTH<0($򰰐^;v׻W\[w_UيE}퇜CtjTj۰, 9Q"ڰP -fiY+7[+q\Kb2#1ǰZת؛m͈\TAn=wzYdž*Ljec*̶ce5=nj<Q-w7M-Q"( pxnp4K4KHKdO۷ȵUt=W^U̹J==Eg5թfeѴ~|*`/=Wow)8r8P)届tO/ki7d[6%seguSϱ )ZtWwzk\Em?}ԝ(Di*ײgJl?e_osޚvً?%u/1]\UϽ0)F̉03[fd>nvqr0ϼ&Ԛ( N)  -N(&q*QX8 - - -N eԩ<{2Ţ0   0 &L2Baip@*Pq.204  _YYYYYY,,,,hȸhp@r,.,X4Yfy$JYY,(20AM G qݺ}漟Jg?kxKdʪpQϬeR첺LV!c[W}7+͵j|\Y_x|^$(C~_#j/07lϚ=4E5=\f]kxVx|Y\[0bmsUS#1?O,kTUZڴh[+eR8hktO.̱*s{hTT*3̦Ms?jLݐIss>5ٙmlަGSϔ[M'JWj)a( D3(PTT@Q@c"uֶٗSimFgǷ>3jiLL\Bcàݥsm>_1UVVYĊH\e̋DieS4Ԗ( kļ祥m^X1J՚;pKcU+!17iwZφFҰzVfu656Z&s٪啲V3R5=DA#,) -N@^z_pey qbµ.?sIPye@{/ -7pJ;\?:I Ol= W>{Ӊjbn7 -|,aacXZ⋶2R%7XVe=XPҋBm΁¡!C!' f& UIb.dcRtj.ՙka ؂'wލDi؝[@5 ܉!7Pe=nS-$;Ef&@u0DCqӉ%C4\d! fP?]x%:8 YRX]~$] Φmit3LGIk9xփ-uo_tf -+ׇF ';@ h>24NZ#ڱ3[E5 dB$g܌ cFb($/%5/npĬZf&anC\sNτJWTL3@ R(wB+Š"!a:g6m ): vN+%"&/ i/$"V/8ݡ"呼(`0Ooȩ`IH'й˧Dc4$sED~ TCy3R(D3ˇPpZ*C> -LŽ ՁW&2+)}~@C+E@Ǧ[Oo_¥ eMQ cx_l%GqF]̀'1 aaISS0h-qPݽhQءl+l}ci<.+ֈYyOL5^X;Xя%n#-}B̔Ū07&5tg%B < GKV6ߐ ǚosQl)9ё-t&Q= )ײNp$"!@}γc45R*2Cq,\eԵbJQ0=ņJrrq =x3()!yPpsc7|Tu4xQ@b0\/Pfe.- gS/P/As@ҋGدtoZ(/ *?Vfc {H!r,no3\V14;E *"9 -OY6Ap Ƅ :3qXe/ "H?'2B·6 Wxx3-Ĉ#@ 3RRt>b ` -P&4s^8`@,-АZS:t; Mr5aiX> D/YMתt%ρpln"ͱ p`#!`ãS@יXESyLj"0E5 2WК#" R"R5*rdvd^e(J}\rh|'IvifM<%_ >6" -jMiQ0d۹M~Dj`t!ADb,4Wd˗яPm @ XjŵoXŗE_-MCRhRww:RIvfLЄ8B,X%~YWd>ǛTZ%R]v#LRbOEO7{^^J0IED2#]s3md:"Q'qHUP*&I,}dL;*Jq9!+v/ 9B -`IhnRӗg[Pt1=՞9qLZE?g(Ҷ0UL$Yw$)c+ #lMD)SgIY*|O_[GOEjD.'̊Ҋ 10 ;&wו vW"7?`3!ЫŬp"/.QzԼ&}Աۺ)&xz 7Q%4~S^ &ڦeDgxwMP9)]p. MtV?&vh's-8҄_}Α8粛.kF/qfO ZY>9Ec\vHƂ- <koiB$'Hf~KAm$,5;/?g -r@Gv4OUfP%\0`WcU.L|<2kHҼ\\d1sd,\a?blW]J|DRս+ʭ%!-e y  n˅LJ-|7= -Kd'$ҁX2 WVQ[ ;Ks'D x@3 -IjT>@PO8J#\-PwjRT!L;)0Qig)՘j:VB B@ zrDRԐ*xa/VW-YxTUU $t7PΫE=gPv?~b_I(+TJB~_lWJ P{D}BOJEEuZTajFEFarTTG|,9P*yRyS>zS~zzOӊ~zOSzuF{l{`~{SV|.{P+(57PR(9P)H3iO$/E -_K/K_K -_KݏQ܏QۏWڏWٿRWzؿ&]Z׿/]: -8Pt965ϽM6soN 4SE9]}N9tSN䴷?P<=oP{KU>Bj(c@I9POO?7{Hp'g?L$'yɟ4*$xOZRIOoI?{K+' hoID%-eȷ$ < 9PD!ˇ$=od-RXCRұ|HpC?.{H!e?U>$!ʟ=$P(t)RgO2IO?+~9P9{:͇Ď==뱇3>r$Ⱦ'|H -T "{H!!Ydic~Ϗ!İ}O\40MC|HCCr`~9P1{}O=+):&=9$žl{bo>$^{Y}O=6g4ƾg)~9P,{.Y}:w?_g=<¾|Ml -{{ra{~O1ubN=ݰ<'=þg~9P*:_:T^}lzD{_Ӈ~Ou׹N:#B_:M^'}#Ԡ3{u9P+G ?4yVG<yPGܤzJG|t{DG4|>G뼣|8G\}9P,GB?BhD􏢮?tu;]N(#mGoQ)w3}x!wQ1#~mM9P8[TD 'J>D:$'q=K#P\$RD-e'h>QG t7Pd'Ok=Qd}][OXz"G?ȮѴGs?jOmY}r[OUz"G9PN'ʮO4g=u}<뉠YO\HzD'Zȷ>QD.'Oi=k}NRZOdZ(z"DQ9P3c'ڰODc}&}$XO`?szDFg'J>ѓD'Oe=Q|}-YO^zDj59PDgj'~~DQ3tOD`}&}뉊g6XOcLD'ʰh~D-DTOTb=} ch B;A@EQDA@!!$0+װE{k_: ]NrF.vtUzyj/a]7RQ|{؛9e'NSn/ / k˙Ky~} ;KvGQF4<F>(ǻZmnm"&}nEq;gn 8tsLߍ_}@ """"&BgE"NXyu.ե|4/x7B|;ػN]MiMF\N=i2R0:}T9_x^Nws:r -\Jo#;P/ Y7I6˥dU`#8"`~(]tՃ7t1:-u :띆/`BX;=ƺ:mάN gsN7J[t[vrӮipiWdTpgx&)Pӟ&@'';]uSNVT~V4H4hRA]s tnwuX)ni*i._U: VPS+Tp"`~:`[G US*ޠ~лT܀z.ʭ~ -&\5545N\NJvC9un:U`DZ@Z0NWНd!s;yOՂA aӽ5zNm;r: 2괎A}c@MX鐄Lq= j"jʧNU`+@Ƞ)1 @}tn k @_fEjK@P~$BA LfZ jrA {P>Ӵ0Pba+A-b;T`s`~68DPoG@-nfԛiP>&;zj6A;-CPo/@-.fԛi -P&fIU` 1jsehuٍQ3-&Rhk?4Am@]cd b65j Ԭ\n7E $@M= M(rU`#4|j-̎sPP3H>L5Β:@Q!Qg2 -jFCGͱF"Y 52,PktFG}F_oPu6=U`?MYg QaQss̫mGjaԛ`YQOҨ[uZ[Q¨yTꥤF=W'%z6j]uW3U`WCY֕zF[7iF ~h;?uQGҨ](mC5~tG2J:7jQcQ1ըȍ:ʔF* RAnQ4jpGm -ąU`[5X?Q-jԜgFoԙ2>G}QSQDڨF #R/4{FԨ9%ި3.eOsR77jKgܣ4U`ϲ~:QӨ34uԾep>4^ F-O}HjAu)Q|4ꮂG SH9i]F#Qs YFU`ϲ~::^wcSЍFhS;;hԝ.zҜFͱbSKF_Ѩl_"S#~;hԝ"zRFaSKRhr1Sp*GŦXE^?K9 a:L1M'F~dQiI0enjI23qQ?Ds8,5FGQ{Ԭ^{h)mgT` g >%S٨{Ty}j0jNU L͹GwFmѨx\afYuTLm%FjQxɨlqj5䖍3MhKQCT\~᨝ӓU`"g|j~p,25J5ğLMFYIS Ө0Ydj4j<:&QӓQy⨱ԭ<9?iFNJh3;ڨ0,GU`~IѨc`jN}pԏKcL RF ȣvĨaԓH0A^9QQeԮL#eQL/Ҩy~5?#Z^hVH`CU`(Ϻ~,, j:h|\bj5d*LMjv]j:n|\bj8(LM6jvj:t|\bj;d'LqMivwj:z|\ -)U`(Ϻ~]&Nƒ5j+>j]15qFMr¦~۵Qfw5j.>j.\5?F-Vkf%SSԁk1j/jZG(ã~xSۖ_1j2nWdU`.ϲ~Dae#>jf2uM L;jƨ92%uWcU`>Mmq -zpfI6Ө34)t2u G\L£UnCejjC :XN¦&Skh!: `j{ :[v>|FSp:OgU?_힣Lp쀩q|; 4u^MEM-`Sl 0?hu~ZLoS/\Skj `jG?:15e?6zLQùlij2j0u:=ڦL]~γT`|zTs G=U`DJ tL>Ԣ`ÚL} /ijK0a&LQR@IS;bJL-@vfoШ?&Ԣ0{ o p,1U`@K'.?+njYqSSԊLS;*:j1bnS*v?ejcţ&S$uu!&#6J -`zjKdԝ3uuX8U`@K?721S35?v` 251ScjF/S3u?v`5EL-ߨ*gojF]_qScfEMmcU`HH?1un6T~ܨ1u&M=䟩7>7n!Ll3qSggG'6n|DcGM/Lmo|gjG=/? yU`4Q? 7nj@FcmML-ߨ{7jGqSk75!޸MʏQw7bjaLXSFL=/S36jD#U`2S -6単_foԩcoԹ75"FݸEMʟQc7bQ~FqS+o:oԊu#רo*?FݸG5jF?IU`LE3?^G]9?LnʏZ1M΍?S[720?~oԴ3FM-䟩ݍ4?&7jj Ll6Sp@K -ŘQ߬'ΊMoVԓF}gŦ^W?S?1fjM}ň!#S'ƘZ௩_125nd7ƣ>S_72#U`FHC jL=FMXSGSgԖDZ(1S6Ul2cjPEF=M}ب㊍V1SkjqLS_ejV7L}w,/wT`BKgY? .O$O pbS0LB>1 `MmPY@S>Ԩ4aL(xO hjڱ:L]_0SQ"U`@KڋAS 3u}MSa75u `L]IAS lEN1U`?BY!HԀ05 >5ݕjhLUbj:o6e{z3zFOւ`+&a4ݽLMASԮ>j| FU`AUk]?Ceh@q)M]'S ePq0QM]TS_r2ᅚZU0!C]X't3MD7SYE0= M^SR`} -:SkJU`TCgY?b:LSfMf-S}Kbj`m>ke:-6@S c:[n@SB05L}aS|0u[Lm|/FU`TCgY?SuPhj - -PԒc9MԶc3P M R0Q M-n6S%25M- S?mf!-S3-GU`LE#qZW3u[ K.E6s}jaj/Z~BS\4L梦.쒩YhjѮG ]؊&0L ,S7NMƃSpRCgU?`&Sc@5k:ZԦ>1SFi825mu#SLmV74MvS2&k`TL͈NhVLFeԃWU`Z`Q?M-BtS08HSS25ꨦ"S#15 S)ej 2$S/ejp0RM-Cjbj=2[SMM^w T`NFU?nNijP0MmIOfj L}΃!hy乩[>M= vUIԀJ6j|IdjMDnuBM=vCMU`HH0CnqH撩۷lj2[2S;q"S_ajYahj,3 "S7ԔV`MV%nI6zS0cZrJFs#SFX3U`JGwY? -ij0j0G-h2u;SgfkG]296XQdSLn 23QdS[ 00ڥ>%S[Vaa^2 M}U`HHwY? ɖ0jޑ%j;0uSW|ԷW059Յ1S_0jƑ1j80uSo|Էto056US_0jĮ=j5kU`DJg]?D0 a7`jMRf7Ka17`!05#MmE#a'7`jsG]tڙS9h >0uGCSʓDhj"yU`8P{ŧ2uGoF{:S;?j%5ߙzPLA~S;S50#tߨgS?kj4jL hLRGa"L- L Mz2U`,ASuwMMVlIey5Q0yQ*SkFCiћ:QQ^oAbj&LۨGԨsij$bjF-1\GU` -~PG-k!}~miSG-mk9ZԒ߶Y^C8b=!i'9r9jVuk.SJ먽¨zXU_f<RU`!x;j0j_M݈2}QG֨o4jvã&]LIt5^FF=_}_mԬGMLQ?Q{+7uAdj͎/Fݿ풩zԿbR`UCUo:jQ;vYy7j:WFmQg6kکQ_kQڑGXۨϩ[Q2jh:CQ?;sNwYeԎ( U`~,E4j>jZYAq$VCF=@QuOF^_P`~} u=}: QQԭq{Ǵ%apU`ࡆ -)EG yԢ@nAMeglԠɁF̨بAu5Q=Qv j8bm4y@}aP -u8U`ూ̦ R@}gޡ=: -f;W@Q/-0 mj9AtAAm ԥT50PQ)mI32jq1*:ܨ+Q!%MFU`[ P܄E rvJP ӠԠ.j: -B@]TPu[QڦjP~'tPMjAho~ -j @=P>]΂Z!*ЯFU`4ADq AjPNU;)~g֠hiPހaAm'C` -;RנԆ@}5P5UPB9\N4LT jBCT]PD*ADTAB D@B"^봽3[N|jj];͂t t@M_ABy/P PlN7iNEUr,n1\tZeP7P#b?T(@RJeY;D@- Nj`%؜Un scbkJGк@^ಾ+sBK v6ܸ85j|QRHV0,.}i]qUZ"M9榱tvM#,ȴ *TWhqF 8F1 C@1 ADQAC0 GbD01.V醙hL X?_lF,Q-=fbȺ$ )c!_/wz.*`.<M%w|e kuXq3WMΖ92ZYKe<.?{Ȍ@+V静~E?ZRq8A " `" (8' -i3N_I[iAo~{EEA;w80# ݗKpz3 ~t1~\Fp(߭pfpA4@;k2[2^2);8}A2>62"n0 {=2% # ;\2+?Y+(?6 qFO R6=v` ۨN@^]"lmxM]Ab>P77aU%쁺d>TCwQ\>X@-h E`783e {@ @&a{{Aa}H/`a5$ `T8k}8{جBK|P8]A@+>HKd^} ozȭr;y냼[>]r=84a|m*qmẺ -& Qwy%u=LXCV}Wu }s,ك&ՇZ}C큮>\p׀ x0U0ʵJLJ"E>hc}*U 6 !H܄48_6_4rerQ9u -p@^Yr:xMهw|X<>H|({p> {g>0b4ZLԇ||CUD%>An L;Wh/ %^Cwa;]{E0}>^GLVQdӇ(Cwa|ϒQ_t`rG|ȥ |= Uw0' E0=E}AAd|AZ2=1Uv GZB'HKz+q~-0 -ߢQt҇Q҇(R郩 -J1N0gGaA##$X$!h́ }/4ɥ۝xX=)Kz - MX -7\D nC [@{K"b06,ߚp6î NT~W,_ݾɤ0kSVhyL0u0!Z!"ьN.R!_1R|8D!@ B?0#N&%s؍o|x06p ڑ= U>&ڇEA>D|P;PT7A Q\Z`@(߂q!P]%3Zq%|*gDkۯ *c0-(hͲoClQ@X,Zq csڷ!Kͤ%-)O+6.Dr7i*@=q?[-K@qkBEP\܅"0 ÐL$A ؉6`@i(j!ɀDUHRbŻQG[}>:,HirڙyB]\jIaҊ뫰@֣P%6:%Ѵ|p'd(zX6IKx6itk7P\,*{i3xR`}yAh܍ASx4B4OsnEai/a#T=W.ӄXo;27gcf@g@@U!PN Z~L;V 0uA4 PQ@ޤlhs!^U13^y)2GJYJ7Yk会K]8{ :E@ 0 -'^tS,̄SM9![yhj1P2xr"Gzq3QT& .CQ*Jf.S@ mb -5u/!@AL#R h/0 X;aT E!O SLp!(zCt 8Ŀ#xVDdDwߑX42#7F"wcVJrIc~q3!P4.Ou?G-X() Q^}̭ x3<0@sljd^\9A8= CA} 0wy| eP -nDG`qy <٘(41[Ԅ! [Aj&B%6?Tm3m<6C?>a =?[eq C擢9 m3@SC>/ך -|GEYko㿽ї$8[ϴ|ßdw'JY^=;  tto8E9_qs YOlj GHGT- qK,)6uf?\E-]3kmzu }0j z%YJ'x+5`d5pzcⅱo[0/ c`a^ZF -]mA{ȕqsw HdгR:۶jfx}F!"VEǵ{'‽4Te)b:B{4 sn@ c$Dr~.B!:+6lFtQ~b .WsE Xόiet8:-DSqs"@$B&X8xqV bC0AUgڊ]oL|s1NWSaF3m˛љ|Fp - 6pzd"P4 N`C*3S'ʞpr(/uRzK40P-i#Hbv RzH1(" ȍpDqsEl qBDR{VI_c -~qHT۴m~߭"]vS3;ͅ:>TN+ǐ }o ɈHbK*\-(|-QߚN/ /m`O bAfpohs i6bh_Dep2%' (bDAX uʒo|b~y, }V71,l!CX^HinA~"P)timyPd?U@yTޛ 6(H]1 ؍CmjH3MxQY /a]!aB9cQSs% 4.XnH Vt" L!gbT<(H,T<)PРaIT@i!J -* )@@T?D t?.@9::\H$  :Aud] )l6'GIKx<-V(3i hItYBpI#)hņnWr0GdRԝN t}Zfy;ZkN}ߣЧl.1  -J7@##w&$Z -vMHjb͆YdBv%'=χ cq&F|> Ӂtn5 -C4(PkDhM j~|_nVgy 0->FsA,LwM -Ht}R  1Ky*H8QU5erkuߥ;ՊܬucӤ1Y|D8.l3aPkzO*†BR %xi>q+ er|9dj:{΍^,[~&;\MPMUU4<8IqݫW~}\.gr<Z4c+(ƍ&xXH!wM>}NV &.6>DH -x"PpT.T,z{1l>ernrS'MdaArhj#'+BRJuXz&[l"YJZXyޒ"B멸Dcrjn{jYsJB6pei҈Tߦ%iXD$&ZnsX4٬Q"ġ0\z<EޒMTp\"D ٙIFw5~uK P'âk9J6=}lj_2FǎDy^|6~n,VgKЧSכˤ 0bKiCD"JN.Z3\]Eֺ8ƙJDaQ!xP@!at^d&ZryY``,^j!0>J=l>_ -՗a JHG&hݡPQ.6@FNTbi3j=X]BT-MCg$*u)[w'SipYoVKbfC@Ipoz.#1]z# M@즡+gr_.oFo6"X +U ok4HNBDMPT~-d¨AB - D@ -B\=(i!@@oCBd-"~D+Wɀp0dcÓ99%bLF$NzU뮎ErhoL߅!;)ObS4(1&Pb8Iԧ+oH"!Ri r'crD!Zq8|9̼"6"KQd N*[NYAg08պk}Y!1 W*`7Hن}fLhZB%&%^e̠f-hjt G&̕+|F#( -l a w ;ݿ7[}2E8 *>Ozet>wJL -7{P$RMNj^&h6o6ehN"ȤrȒ&u6wݿu2x;C*X$z9;d6abDY#>|fjR*$GnBB p[Q?Dc^㚬u -e1IvdTv -Gpy'dT;9J("=u@ -}8A v#kj$mμ^?廽lyR@S!b8Hs5o":G(m5ݿ0, l$QTל[[B  T ƸpTx8Y+( % -35c]ͷw{G4&@.Umً>y;\3󲂀c0#^7 % -)Q!ѐMܻ.Z*#Bej9Hbu,mc> {v,sJBM׾?7OkTh$" /XpZi -2%˃JgL}W  iRZca D%ˁEfKփR0c viw]v n.S(0+}OV҃j^m^&GZ#Bp9 F}ߍq*7&v4V 9 ;׬.X]N@@1R"E`.S>w@Vm7l.V[\T1BPW ya" D`g* Ѡ&OirWYbл!D%v5R-TmJUE lUHHn@dbMwܕ.=*|an4X8VB$.5CnYtwȳ{^3w1q)#j="-m2wrX` -9mU ;F;F-"h=vWW ^'P"{Vk* gvH9UlOZ,4efj6jPr%4;MD|¸|Ɋgͷ4[k5 ?R籔^Wu -q)n>"r%Jz H.%-F=^O*[+YEe-NJk"*}ɊX ,Fs -&u}1.:N -b>dŢ;D*a -҄ Pc/CtJvdCٜ!$Jk\ -@L2)$* CXT;UJ9{<7!uZd!vW!U%{)^!M.#lw"!;3TBN -10䧫ۡ+"zDe''Z&ҊCv8UnKH^b̨qWWxJ##C!*FM!_~k "]#k{KyR8\P CIDU5?y Rwt×zG6[+8y`S"Et@Nu-HrR.!X~PU#[FsLmj;B'r!:|"(bb)ua.xGd͆-0/_65—C!2R zsPٱ33 'r^/c"Uc uZ*"M2^8kCNqvӤ톃u9H /#ʴ0;q%)1C0}6,-3`}g:|Y&mwזh`VS#Є@5m@ݬx@AͧX _M%E(j4ђ|n7`'AWҴvkaNH{^nwWҥɳ+8rnZo~BNqDg#͡H )82}6o$r3DZcVn,f;J 4L]g&a`&l񌂐 %AeKV@yvc""u#@4n$+x (6{}ƤVK|@H M;A[N6K7b5T1s>߻yj6jy*X$6R%YK0}6PLݒ|zF>Xd絕cBUl)Wl1{cT<(T5(VVK. y8G  `l~G,Ak)ր[V*D&PE+tAX@LsNq21?*[&k]hH8}6Иaa`8@;cZhh;=وD+FɥhΈar@ybks6h^u ^t&FC| -Pk6flod5ڨA TYY.ء=c3Y8'=ƶm͗)УI.oIUG1}Wa}ܕsרC)H'Cl0e R,".۲zZ#>{[S @NwH L׬>qe+ivH@aPXAiyͳ==:A&Bo4P_}󻚜}&X"hR<;*2\p:xM֕H=Xb4LG vb/hspAv!1H1h@@wP(!0!@@!\S!rx^̵]aU#a2K\bSW M7Nu >;T]I*.N)j:(V\R2>j!\UCk [Soє AtRI7YCA[XPp! |AF0]I$ÑO=p;n j7Sqw$:p.j n\/A4CH7{&6 "Z * ܧS~ [l+uDpY s:ēHm062AE~S[5odqU21,n~ -A=43q2GX :!gCQU18Uet֝;έ&c? Y X` "Zog;2 ,TKL|6A<Ԙ;oB˄ȿKZ:aԡ$#3LÒMQ !X~Ƞ/QKRf\ -Ki|u8:> -; ^Kj3uZ2&,u| n \Yp’+K<ofe|o0d*C߉*1M*YY1i0I 4 _>V9Bt([=r$W-H  C+7t3 Dt b0~C(ptJlGRLǏl+'H旑UhlASKALV9IYyg)T k%;[1z5Z{a -PkV&k3\,`}kxFeE]D&^*dkF}ߡ KN`DOu(u/5AnK|m~C_B#'21M13y_A"9АiqlҌO2;UZ,Bp0*Z"?ͬ)u\#E0Ԙju읒 s*YhhZ= ^㬂PZ6w_D(P `h8sS -\"߈Z" %d" -kuu N4 ԒZ_U6` -kY_-X5Se*16ihz&g[<~2SC`z&kY^iN|Қz^a×@WO#F5Zm?薌V$ YPP}V95-w]Rfnc6?H hrvmB%&g9?iV -\w5lЈ:}VK:,V Ʋ0jSBTX6?ԒR Ā2'-H;yp G;F[Q2xC\崚di"Br69|;pЌ4+`$ ŨQ B!Ɗ!l'@`@PiPt:2;4JaV\0*myج@hGtC'7CFdN:j:{xf^x7蒼tIah|/s ]0K?tUqDy3#rV]?k1LWvELCx #]KDz~HAw-Q7=F>ke rӍZeɛ -rӍV% >􍗜%a "-uHDsՁlJ^R*W6YuDt"o5!\I;$@[uH] }%u{G.;<ɒ>K0ٵ{W'`dOnbӱUHNAG%ߔS2[idV(Oٌp%{LN K$>tn}-I ai+HCCb9yq쒱fEힴjfK+$zz=Zc|YemIJ'²Jg$/W6 A|Nh (VuL'l=!Ky2#I@J_@0saFC+c6`@7ʃ,ְdP_ˆK]3%b_FNς:kfXt4ze1Cm>QA 0+u 8rĒ,sr:; `#7*43Z7L '(cEI׬cm -m>,u^v,:Z7p> -@I F6t*NKvgqi4 `[*LdgtZ"F|5|FuCmDH[Fѹ>z=t8d=>LtZgH^3:6{#4S'95gR^(26|ĈƬn;[2XfiCu~FcS~s[URHϜ 3 ԼD_P*W<ѡc&HE#W}p | &Pn_Q,pW6YnA86粗JB1+q~6zK JY1g259l}=|@d]?- .ԔuymnV`bd5YL;|c˖m~רaA̩AaF<@Qd ` ^  @VtA\(A jiRU cJ>|yV>>j߲Qa1cCKbA|?T'HNbuY0vZ"ѮZ٠#=+[D&xd&SШ'sV~؇yz3&͒d иJ Y7Q\gxC ifKCת>JmcYl%VA#cSAVgHp%L4듁vIó DLql .<,o#6o ϕۘ-0AݍLL$R2: -XwY|ؽ" -B0TwO~ϡP:^Xz'4"[Fuga[ Y]_7?¦}fp~bcZ1RE7_U#cëm;dT$$n/b=I}η#R݈z5IFlue|9G\*/H +`P}><1#q>Æ|6+Ee̲v|(wl>0q@vl>4*EԐ7&= -|6S`l'|&w !B5g,Қ-+x,YPHyp0'D'7ne1Ec B`y܅9 m~Q&|;ut;.^*I\[O*n&h,+n&l&ci$_(0M -l&{#`΄f8`P}pl6/H^ M[hC WȀf ph}I[>ݗKXb!@jVջp#S/N7 -ίp'yypp h+qV|`l\URHr8ⲙ쭒D_6k"`!܂9FuW/ߦF| -Á)UE&ec F^<満< -Y )70 6 e;&'6?zTbne}B$%`![%Bx  -`\/h(ȆDČb0Т mD+\&eLVV\./ ^.e2|Er]>XoƆ*ces5ƨqb)@`!aD $`a!@  !` &ݝیTlY(RQy"AƼSR"{PFU8 `! (rQV%4.`~9ȯ}xhH@@5xVh8h~۲gHGgp - 5Z=n*D^ -^ kUCaUE??MB^ Bz]vKP5lӗ@ -fzf~H 2~ -%8~|zE`}\\2Aa=dg+V‰]}3a)^&rKlp#@d3- ߊd|3`/Y!?CdɫSDww<~Oʀ<YekL%{R78`FfPYC"K0u74v ]jt>JG]-="i98Xwh6,$sHkKW-h j݊)A(d۲AGPbeTOfIý!`߼d":+J\L5}z(mG(gssqr%2[W<k[4^8}qXy>1e+J<<e:s}I'@8@M,x<c`!<5ⱸ@&A—b"6¿WzRQ#m 6 z26 +gi?-Sibf@A#Sb0Y@g07 -1$C1fTt>> ]<R"ـkoV16`i_]?i7,Wo8Q8  8 -7~D"7ChQ5x@ N51 ,odp_<\`qpȴOnX F?ROY p\F5" 8$@l'pIB>#@&W̙b ((m ‚ b&JdjbpV‰_PkbiQ!b@Dx;@ c a_  2MBJ/PW hW ~kVicR;5 |Wݞ[١2hӕ.: 6&Xд<9; \(eDDžD`jÂDP;#- WFByV U(QVv&UIV❗ bQ'LPp -pU'$y %^eߤo!6a$gDd,)2vg1a0ۈe o\+]%B"~h|-f<(Cu El -y(Edh/0TB]|H1?Jm'r`o+")~^l3@i3 \nnoiO?Dր!<7B_0xSu -7 VI?hyFK{Be$@Co=UW\apʇ_-p25w&FڌP7۲p| Ib VfM7|Do KF$PtnL zk-x |QVP] -r -iC - -LHϬB; -4^w [y>k ۥ"p}~njV~]a,; __KR~5Wf_v^mw0^ `[4t*IhUŢ6 p/i .VfNH6E3`hLz1 yz5W ilg"2Yﷆ&RH>ͺt08BZj_ݯw+M><_ry(Ù~.'2ܚ,9(6?mMv*]4[6|D5^̉nkjU%K9owY6&2\o&Ak[P2S>9Nz<cZ0>5ޚ icnޮ  H'.Yff6 PZO4` -BA;f`Ab( h p 8 y*jx|XEPD£,laSr)YQKŭb WRsFw`6-kR/@wZ2#{.A%Szړ]z"y)mJds1s0C=Y4ӿ("5LDŽN` O[cf:cPCv,h){Dn8LgU9M^H# N*m4 )s) Y=ZFϯVb/. xQb܎Cndb(:[=;}*JtWӣQȸp#xVn^"d=X7fsidV[ Qb@7 )yatT!=$N358mM7>9LO#r:_,xCrac~Cʕ[Ýa6BmM{`p]4vk1K QRv4Nmvrv ɮ:s;\>[9 վ 8FAi3dZ5]@vQ6Zh5\+0=nͶ Wm'a-MFj&wp)U {)n -YδhJ P-&4#8:_Ä؀m{mf"R-u8_e,0ЧvT,A\hڙ1?m,Vjge5DiZhG~|@3@\DQ,(AIvpvK`8m~ -7;E (vq8?FZYn2Ĺak&XA@A@  K&_: u\g%4ܲT6sIZ o`t̔Ppms}vvpTM+ :'*\8o;? c&{J[Jg hoKߊV# a\ [^ ;IHa#'@~CH|U;7gB=7O#pzֈISks暏ȓ׊标.|7N{)Ƣ)5LzP3I)[ gE+Y+Udz4 ¤FcM -R%oI۝!3i1>,#4-"Qtqzxîc©=CLzhtC~;u5Ha`g:J{&-)vJkoP'_1-<UD2 -f`:ۡҶ)%Cu=KC֑^ p({UF v"wc#,6^D|sFF (W0>gZjh٪ ;)v\DA^pE I}9|hB6D@+S^ J +ĪQ J 'i#XuAS (DAx7fgFf¤bYa y.4Uji`DTB^[6r0+dV@3Z 6-!ψ)2m |OZ -XLCD8p>t&ab(S.mXӸ`h(f3ώܴ.,tDJf,EP 8 , _BjO $ 6+rQ 1Y-6e;3ȰdDxJ pPi+ -`g^R^ Z`f4Ԓ ϟXe#G±6&T,o/32 -XiT(mh4"03Yld@H`$ ;@a hh~a@D- - y%.p R,ԐWB -M&f&i&cm1#M8nΏifDx %ffJsPq~)33cR鴀J3TS,dOcz<4 O d@SghP' Q33֙j -YGXif-`yHq?ZgS -ϿXf ufFŨ#m8233TfE Lghѐ'FdrH8΀ D4Wi`%HWK!Tbffdh[ FM?DUz.VUّpjQ[o@A= ֫ rU z2^eZ :cx\K7-23):#M' G DHdf ` @x@`Q!@ u?R^\L%R!@5)r+([zr||&gRCCYrA8jon3 -<GB7  -q4|w8ǡ_b^|)YM%sΝItu򨌆DOuo˷ - WuMSRcln2EnjkC#Y\LO6yE" =c@<ȸɲ!/yUGZv r(:FNmEgBL`f 3&6fIQ>/Jtjeg Nڅq.CלVzPD{RWiũ,w㽪&8c K LZ;õYIpiZ1%pIx F ^B'`yӐ=*gL!q7 ㄂'P(L2V*KBHM(<3t$\"c$:5FJmnFAŨ@-U IVo4V .ɋ5yK8^;1VeVo4VD|RjV2֘A %jqI>8SRO226<3 pbOdNed(DCc1PdB\b1O$10@LfOPHO o`Ƹ$})NA%MZ/8c2%0110a{81'HjP[:r&&Fʴ~4&`T@BG!#CU#/11ӕM`ļ(:*PY4hL@*XļPLU6.Sm1ԆǠ -@qx&sR3 4RB1gH%՘i@nj41(UkLc.#U3Uɰpj̔e7ui iL%A%/Uj c!0@xF`(")١k#.vߊ.~Uj`Z@P+T앂f̸wɴEn5@ag.jֆD!uZD-dK$fP*;7ֲFɺB*|^\߇r<,jZB>ɒʧ,h}Sb:S WKhO(igMҮ#n,ZjjYRoLZD J짬z4x -WǛ'x @E|H|.]B.υY>Wڄ%<pCmo5*z8L|v䐧) G /4B ᴪYPADuM'\H+qa%WUTSv:Vz1X_}*i"QUwgQAuBX2ZkU;T!W+ .* b'*e0§թcw,_h R"T0N[<LiTFUb /0U UgEZrV#PjUR~JJW -DJ}860UjT luNjTq 0VaN7i"N|Hq8b!C:T7"Jx0LT2 KTK ǀ)J[m=*О -fu@MvZ;)/=a"뿙b8} -(+@/nQ+jնswt^ꎲ-J'|zz{yQ #\TN:%P &Z2,/0' T98(Q)d4_y JPX&.R灇%*izb*"*NGnڜX@FE! }/ϒ 1L KoI|*DYyIAY", //ΑΉ KG^Y^`\p*VQ~JO*@8Xz@W0. [Da(Z+p :C|NdK4ŅaRA@|KtP)іdSdlF8CKiR!Q/.*:$qD[@8$Η) eCG?#N -4 -=K˳|F]T:Nui"{MKE 4 -Mps%,&|> -4 -e🈂$tF] 3bT(ȦKI2@(4d 2%aE @ ==3HS[F56lC1Sؙ>tXX;!Gp遙RTdMYjN2u%cphqz<Ój52qucm5ERJ>J j; y$jDg&n+A,b2mGA'D - 5- -'4. }3.@M[RjI@T`c@jbH%]X{j1EΞ%6w"q="lHg(.7{#i m0-pB[%Og%{_J?g̃Iؚ`Kw9֡{8km3/J?atj2fq(.E':ifDf @0..4װlǎNAg125 ,[,՝;kx9Kdz J;4pq-!J{Z ]popo_styB]ZBdgR(HF8ge嘛pO}>g¡AZ. -B|'Kԩ"xKiRL'3`x\V:rn -$ m&#V'4 mI0y:TPdj&ɂ6 -PԦL1 ,PV4!@tq. @ M'aXt"hq|Nh,H_t8+H_|6P xٲD")H<)OgK 'Q}H/d yPqP  U? -HtB(?Є>YB|)S'h>S8 T`*'KRIra ,Oay:S W*x:|PqNZ-%2`: -H)gs$ꔴ<[4gq:W@6#:tGhw1w=`p80@@@  X@Wf8M;sSpr(CVfR;ő,Ckvq~qR/nAR*L\z*qNKszqj\\tr&z|TUT:;YBKV(#ʽ{L ̒rqU9:CoK o!zo(9/X)qC1a|@8IS#7iRVDAȄM-,ʊg*hQAB8$,-e-CTZ0 M(hY :L@}~* '+- -ƅҒұ;mMc$Xb+aw0 -R>stream -0YVJ7n`,y, (pd -J OVVHTXp&F -K`HJkxR恠 N - -HĪKR6LTVN:8;28@YQ1AYQIQ }DEeɑ0WRT>_e夣w!IYaF8%*,̐Nr7+,(* - -0Z裰qD%%-;*)%!(*L ه$%ńeGs`)*' ?Vtu~IS)"e%B ] /B?eE$&;NVTL6r$s%EI`K!HLw@(p@ ,@ACmj0ajcVU<0AvL\ xi ULK\k=/wP{tiGѝy{Мxoyy)kYlf 䆔 -o!EVݛ_NpKc8*+0y -x+Җ.*R`qgiDO׆HwڍME4ѡS/<]+;P]>MF|#+.r~fg<Z;!a;D9#P 7%u8܊H8HNgvRNF,<;k'Mr8Ԓ p[zH ة%IP:UrPtZDI[=eYvK4ul՘dK2bULuǮizR]MiM#)LE(| W~~I -hL`{,SJ [,SʋZMR -H80$((a2K M%EbbDLA9D)*KGT %X)*'*B؀P$QT#>@nAK& -M(&L% XDIP7‘K&HE7L';fJ -ʁ g,;Rf 2@\()3 lu~Ff!AIAIR<_ 8IAa2K4J&2}> -J: Y2OD qyr@ sty 3#Aax@8#(%Dc``PT0O'! PPJ8v́IR(( 6L%dd|&>''JDYL x2'' 6N% - JPCApR␜t<8HNPJ>g꜠{) s<9riR)0DΎ` zv. z- AtIK- .rAZ9`e52xFo!{ -X#%A\y;zG3s+N/#yc}=;8Ny1 2m1>[c,8#&KJxX˥@jbrb$˥rᴙ(@ "x~ʥQ Y pK0S "{$Xa ])D"L8HɲL$; d @e#u(KL<( H1W$& B$))@$&%Ɋ#0)!P8HLJDP.MF@g f!0 o1 <=fHfC1@y8}# !>" I6AIWQ*E.p$$@$ H<:"JA5 х@)TVLϲe?dO?gw?0-Hrɔ t㢽gy`qY~TBqR{Rэz߫(`͗?j﷥{?xo^|F" eOWc ? - 5аկi~JÿUy@ǽeU -#NHmCp "xFm$xP< 48`d@,`D@QFC! !D?8B2|ym:FHF?W.t%<1B"|bŅ 2"2Ɓ$6H$η@ -"#I"Rd$Bg<:ȑb~8d  #d08##B0NI ] A bhp"F" D:""ȕp1+@DF Cd@#  p@=#"O߃x@G -`#)R0x$E#)ѐ ?"ȋ x`u@,r%IWa c+"Ebo`P D$1)Bac'""Bq$FBu@xH (CAbhiȖ&F 0iy(= t6=奕< -(VP}Wͣ4wd3/"4L;)-spmW=q/z;!{ eF;䢇x3%!ߕ=@(@7-Q%I}e4v6yy6ӽ84Iƾ <%kϯw֫W=ҍ02u92<#kҰ#{h{ro;xAq4SvՃa*9伮^(šA~1a;ʖڹގL{2ףUz Hw1S¸$yC(i I&?5!"8~'$ D 700ǁ~i@8!@ ! 8!`LpH xG&83  (@I@g Hp*n$bc- 4d BȤǰf $b>BƉ_| 1w(|GHH ;BB<ƈ<Sq:B|;B|`08Ɛ C>,t 2H`= Ϸ@4CWAz{ 8@GA̕6AGB>BF ! ic`QlHq(ȐdFb@xFG8b\/Zt㣙]:r6f;%zךz@k]sWKÓAţ$cT$x+^Tt#UxYP<)VH0M=j#嵏Zǥ3{iHyf9'_)/-W+jiki6 -Mnm#x AПe| A6 x< -m ? -<:G$3m H ^CaAz\08" -M GoթHC bA 8P!ZL7`x|`x||i(p ZFcҁKq&8>@:  Gѡrp#oq00!  *jCq$.6U6Y"\8~xlc_!x!6EUGa$*6>>9jN0a$.6GܐÀF0~F ` -.ap0q$*6Vox|/x)ǨBgT?>8 `BhFW9F`8 #h!4˷.D\g619W.]eN6x#KKnn&S.GuTitp*]:X j'\t!$ χL߶?O W[yd $$?V嶫Bf;1V thH圬4Щc0c}'+ He.cA[tS|-׉;D}I'gX%#ɨ:1<3a*]f"~'ſ$hgնZbcMx[v3$qF(F%V<$qVv!mc wzgO*[G6|F ^LvTǜpz~w hA9͚D6[ñf:pcBt\[w-;\rD9BpDžj‰n`k`.3)YmrN+C{ dКī= r΢]L$,#7ܦ\>J혃rP|pA*1.G58$ -7)/BJLKDG9HLKF8-A 8FKKH='4DJKIA,JKIA. !9GKKGIKJ(>HKKE6;GKKG:#BJKJC0 5EJKI?* -6EKKH?/BIKJC1" '=HKKF7,@IKJD43-FKKH<&)0CJKJBH?+ -7EJKH>(AIJIC2%GJJ#: .&.@HIHA0%;FIIE&*0AIIE9(=,?GIHC37DIIF=' 3CHIG?,/#:EIIE:#GIID7EIIF;&1BHIH@.*>GIIC5 !8d1FAjHa  ? 0 %iP FKhQ%8&Ч-i-yRQKDmh]o -%mibPU {)ĶH>,v5*ms:qh^ۼ[?d'Ls+.b'^V~.qf!Q $/yFP L^]+^ے&vLڭgi%t߼d]Kjhtm>rLfVnK,HԪfiVLv, @YZAyJdIi/h Q(#iĕxpfp. oxT&C_fnG='X"`~ -`LNbFaCk@@O -AXX4B -iA "!54.F8 Cs!@aQ` h : hh60462䩎A Q>7X @FF D0(A|xF[i3 P@Q@", -(ح<B.Hb !"@F -`LLB`Q""& |6`0221NqA@Fd``Xy~…T 7qA P(V`!7,f+^ ,A7&۱-M*&(u͒ ҃.fBדΪx:-K(. :-':hNOtTp 4Q[b Ì^3@o7%A%EAF6tod3ba\|~{| k'FCŀ Z``Xq'Boŀ@E[G @ - C6B> 0p(-NEs1"F $Ņp|گbbAE 0%\\Ѐ9[ŅE0w|9B1%UpG}Y#nE@xgi!e0H.8ZZIJТ;ZVroohZNVvJ\+puu4zA^ovfkwpdkJZjDzf.WI+ jdPXoGv%_WӘk"-1^ -Gg\ zpey*1]ژʺRa6[4ƬRW+kl/d,96]:Ģً5L2 nf= =;ż+{o7lIm_1]L[A+jB ;P0؛8_ `'B\G @aP!pm@P`;u>~{1NA1`pE0^P)7iہ#0HP)N.bB(< @!6J^BH! |A -!BaЁf|߄P|t""XP(F1!@IPN*n:z$I(wjTf/](dwnMSX}  -X7.Ur@gzih3!%6vdRka/ͧ2'>ZQXl3!Ȱ9+KNKS%_!9.9?]iƣcj:NnT4;QM+飝UfPX:J"մϏK4ĂjCT.l#fbKZ:zTO"g!61T6E8&J#G=h?9{3uUEAt_r::)x0 A,HJx'P;c+fӝd&Fbh1Bݭ hf K)9!` 8 x~֓Ňꞥ^hS* ѫE3T҂|ї7Vۍ9MPs"*UY#l (F#vj.yψ9F3P!zLl vs"eh\40py8jYjxl$MfA5{% R -D mf˔ɯY$r8n) }S6(%C|>f;wC7u-sL~oWyY}t%m/k,4t-):\%甸Z”Nk/.=ג!:`<>_W-)XɤӴNvekg.fZ_/[YY\ҟyEG噑`!ܩiӉ g"=Ainb1ewb|1$g*QGBZUPU|ꠚVS#z-+S⠜&qj+ꩊϴB{- 9DK4h10}5?E`4]_2K3)qʍ$0]Cb--jOkQkcZNNQ+<բVA0 ck.`!9&ȘL F91(JMT{`r xFӃԉړ=ŭSMԢewWi&jQ3(!W=EzjGr(¨ld@xHl@P a@ ~. H`IC!x>D ɀi^\3:nߗ2KH؝G*D 6B5gPs8XF5԰bˑ'h_ AOA:PA[thf$ff: _ky}LΘnL7e`K*˰6wyXRX9Wt E^M fBtcMo.?,U%ZJc?@Et(&n6 -ju!%C&ŕɔYbB6i!nx(*Hy};T@@kxXC+VbJϥ"i+CWn% {kG_꿦K/eAqW_Rv 8B(|pG}FNQT=aCF0C]!܋=3S -0E<^OhktfxhLU, d~ sna}yh.הfl"W[[ZZ<ѳ4Qt -ӅB+@ME'"gEKy) Pm@"29Q!'z`:4Q,T԰&P<͉ǘV=Ph1sN<G d/!g3j]j|H4kB+1 KēBSU 'b-Zlb 2EST7Kj22LCT [¥eX7,oP-RۙTe 1@dB,hb 40E\GӋ~ᖟ Bt*7р#/ ]&*3 "pt+S_ cD? -"uAafIfL9BXZza5{VIN9φz8J-Uzh崡WkOs4cwtGB{i:-? ܋Z 6|nB+1wV{l#OܡI^`+h bGq]5H~"w4C{! ݒ)6oˈ$-,~'IHII4s|$'0M`Dkj8!bDv0M-Hr2 @LHr´D-M=ꩊ1'N&Sq2`:>ɩT9%h!*L&.A 9A.!h:*4:Ʉa ASpG'i@8M_:VQFl0H#'Qa 'Q$,g X58: 79,(hi'>qGI0'{o,%T/>  ]cUl1I a4?r -f9!j_|HN@a,q|yM G@\* --g -LBXE&I@ z@ w p1`8@B@ڂ/(aר$5O"īX'!@KK -H!THa@ HX4U Zj驽 DL )(hiօ$k, /H(DLo^N%,_(Hf4M`<fQ"1m9!@haݦ"CIzܢ 1+@S Y @LOOmx4"\4f4uȀAmYz, -ӋV!‚S! -RTXlqJjjY$`hPMn!bk!=@SYb<<0 /!/ C`VM][A"74`0HA~w%!oET!a]2?$<ϵ%t(~|sD~,+ - kI? -wwD=MKKB<6U\}g %D.#=;1|Βi.M7+epg=j..kc[}?? -~Ϝ8q_4G= [UwYZbuPt`pLw(=n}w g|(P;ӷ|Jww-pbbcLF?wEoÒX^i`ë b0 -_ڳ4;|P |ܰ1!`Q!RvBJao >tx/ފ -.ăvD!٥Ӗ&mڤoͷ}jp9D@jV&n[3qJƝ"@/W`c2\//ވ&Y;^CP;n0x2v2}TV~ -TG6hG;c]l8 K8r*QfS@ذ͎ -Iغr2fC̞C016`Ϫf2h[@7"ccbcЄ}_'H0gʶ)Cf b+TϺ̘<\hHm +:EՈP9ꇻN6\ifloǀm`٨6ձ]"aZLS%M^l!"J5Gyz7lW~3[mrQgүkG 74v,Qz伞yf޴;6 -MAg:V oxtoYPt:O5'$u!ZպWakQjENsG\#WXXWULA<6U 6580 D" D"-#D".*-ajzdZh,Ope\sj/ -A1A%ȸFYA=po~ -|; .Y(uD`VӠgu8HRfE]-,Q/ :NIi%:,~8wVW$4kui1 ¬ԡܢQs*%zoFhx%/*d"",a;D^jdVFpG= -Z6*`,§*Bveq5hBI?=_2ydepivDz7ǟ#[us!7SZ&dk7qKib؎H֦kqYYq9)&Ϲ2o&β0f+DW \'@=9V9VR<]5 hb;Eqzqvm`(b8}n81%[>D*xH]Dcӑ_yV+$ۑбZ$,jw1w L(Lám0 N$(``H0lh8E*˴m˰`, -B,lۺi#QMԦFXd6qq&i5*xp5K+0ms,j'*A,UjV#6D5\&XE#eV СHOT ǡ @(ׁ2$C! AY Ђu1LS4H*h,p0B@Hh82-2m6: TE#6PKwmm\CS,BP0,0Yq!,*,*.ێ5$CLW7ĿgCh,vgbL)"y}YPN - 8Uᡏ;3*JP'a⊢APoY\ަÌ'av=]Dߋ9,aD% RJ=G}Y.T>i!ĔLn4yh. D -Rtb U&VCi Pyj:V_R`( np4b [k؝-+wWb_^ܦ}- 勯@#30p_2^7J{TH>>V ,\rTk\o7` ӗy>v9f04@/i{^!UpD3DFpX퐛VbTحZρ%>C vf&zW"KseEQ -/0b8|6ӛԡՕhxĤ1pa ,)/~Q$5 ӅMB l1#sqssp AOGR`QQ,Ke!&@KP$ a*p)@ O @R` -4C00WPU8TR -=MG,ĥp Ņ L E(T`4=h` %EPW*T 0@T"P Z0 u@$ P(Ua -L2ˁ8XI0p\+CXUR=NP0T`XX,˪BI $I"$ ӀD"q] -łh4 1 ŕ@  -T9M0R:됸5qqH -R!@Zj?I)T*ԍLՠ -U ,AOXŕH u]F&@Z 0J ,CU( -j0 )LEQBUYu8 *A.@B`@qAL1B   *y?WIs^ [ƣ`q \AzY>u<\-gLCsEqKP}lhLx`nPHܨlRCcuUtJ"\d:/d%q)/ X >GSUw`46u9M"%m8TpQYqC'yd^~KQPyjm5eL2G`JDX:#IdP1'=E;TKas*4AH;#u(8%JݸǙ0-D񠧿xS Ex0)x2h8=xh,p cHbnir6A9'M<&Jܩi$~Č @N46 ٰf\;5,8Wa`EfD;n@_kuT]pr6x%0Z!*3.[NLWb~χ5)"`18tTFJпO:V c֪'bk7:o^)Eto+uL8hq98rC5ܮ.yEN"UĤ\4@?)T?pWU!J @T4#|D҈Ts6 -CwAu0jP3xٰ!D Qgn<=N"*UO @F"fVD47؎(DEz& 2<=q?P*ʴ2vr~Z:LDNL"EDpUd]> .z!,rX bU/b! CLDY,W{K}aHxt e"eEV;೴ٔðÐÆÄBDݶoˬ~BeIt~9a9_ Cl-$s^[ѹE4\~2 -+iӏ昳 04ڡygCTtX T"Ćzb1RQܡ3 U!@8!2+@`6Ut8E w(C@P1gCC6Gr%I[1CIbD8-ق_s r bi$f|o%M3 ohYm};_%SWXc`WR湒ti OE1J՝VD.u_?:h+.rOj tG*IR'˷XJ 9yb -le%Fh hz.Y[UO A(kP֠hɤ`Tbc)"c$Mt{)y<|'uyq{Ѥ7R*$:E˧O+ןByQ~V))ѡEScuOq{kBjeP[L#jݧ%< bWEoR_bVƶH務lhm1  P1c!4`wwp3.{Q(tk|0 `Mh-a8Bޠ BvF%.gw0JgP.Ӂwdq_LRpp"@Jɳ5)ą=> F/al -h*B -endstream endobj 23 0 obj <>stream -1rG I{ΓֈϲDw.,WзYZ=ԉHd%Y@8<^_@ -56s^gbl I-8S -`A(Ӽ &HQr@xIbG 0A0! `@ D xRhbn` Q:Npw:2M;R5*4OO(f; J+1XϢnI 8]'@7.Mf x -ofzxhꅸE- U]5-n("g(]\K׬` 5@~uV%pYB34-߰iƧK D^ -ydWyKQ%l522ߙNQ\WK\VQ?bҪG$) ZJmj - C{o~R.3s\CflxW#yqq5q$֐WOSc8 h^ WUT;P\OoH -вհի-:يFyKbr 3H;'mRrm` Bm2Lb,URc -yV5 6WVT*v0«浝UvTڰ[-8ٲ]m5W2MDU]EoWM^oKTVqWqf8<*㮂Բv"qaG(2fj"W2q\r NEtjS KVClWY$?]uVCqK{qvI}`&P?)d4칤Aq0.}4> -Ձ0?@!& Yhs<=,ݏ̅38_`{z J'y13(Dzje0c><\PFG]^hFj&qE,C]տAރa«}YB1%@\UPeav@H1x@ Fa8(c0@ PEl 4w "1g (Bȱ P2)(p[(v"w'PZu#).۾2lS>5  PCW -0tq>HMSBV -7|(UNx-(1{w -^quNݬObc!%QFL}9\:,ڋ "j1k5y,؍1B(}ՕOHBemDF3D*NծN; pKA [=ڱ\"er,\R0i\kzSmU` mWycF|@ |ݗW LaaO[=Z9:6(ǫ`^UF9vu],29,@n.|ƐKWu6 Ej@h"_#T­"AQčǂ7}[{U-ΰZ}U4 D)_'!R>MXCeժXhwj4lAu5"x!$pUEAP(V-參M|v -{Nm쏄t\l 쎀eY_-|eZ1Ô!rhU4ɳQCh}dQ8 -Ab%; &üΔfsq@ ; 8%q 1@" P7Π@!# \ d杗XnjB&܂X(t5SXXقg &gÈ̻'ժbaflzcE,`gUXwhX@, tuZPڀ!MKYtK,=f"tr0 QjUXa#TeB ;$[i#ܒ$]M۹?]`t NښVrsXk?CH%78ZA}VV]<.h]eu"6 9]=v86-%Q^MTDI9D,-g"q,`@4ֈ*\;HR%GjMM -*I"[5J$"Yq7tW!rdK *j_TO&[jU`m5=d ECJrX6|l,|'.a佥ΉAWiz|҅Tx5rMV2DSVt͆S熃"*!49@;Z;NCNXĢ RP0h@0(ab!"4@E1M=N1YW^ߒDA9t5#6&SWυ }j#*VO|K}U}H18m > u 2,\"VnWׁ[ UJȡZu -9IP7q#*Knuu <ꀞqN$qZE"]ͷ -FWf3wUiFQap *"Џă@-1nS4 Aq.xwW$@2k H.HMru@  .*.hOdpv 0wѪ/D5ʙí~8R!eZפ9Q, ͮAUW`|7d -SXtqY:xȜ\q<0@"' [ maGTAz6TZ|pL9L9L@9L9L9L@9L9L@9L@9L9L@9L@9L9L@9L@9L9L@9L@9L9lzrL9L9L@9L9L9FPvϬQr#Z<IUS,..7[H o0c*A:\.2ՐSEmHQhnYaf_y0KN^t뇞P(@ -E @B !GT"p*SX*V -]E'8‰n9n WD+_8Æ"<I b>PZ܏nl9U%[pLO߫ڿ5(nE߭Y]+Ip䧶SCXx}:0U7Ȫ0VUc+BHpz#s#.D v"0ƅ41M9~*qRf!s[/3"gu8m ȆQժ7/=-j! 0V!O IEKn  ܕ8X#  u. J2םx>uvUZ-)jv9UAe>BNfٻ.Zm[ : l&A3o*ba+@WqVj,) UhU4jư&brw3*O^Ȋ*^YWjD}1j:s]SFd)hWqUq}cWAvu.ۮ<-Y%V GjXp ^,X" ƴuw+hM0"t#oFJ30\\ uXDa!E,D +m y@ʫxUp,6B}Ko"‚V/r -u@5]qIdo#4nt#Qt -'Gn;b6磌!e1 .9[M2k0)VV#ԚۍW [+1HAB.l)DK ȅB 1tmѪz$s_L/z 1~qaA:2|KZڢs ˘39a71D\ٰ>l.l*875UfG;4aVc>"c"8 -<vt픋)"#p.ѓv*+B*~|@sDID!tU%bU]UnCVF[W/3[mV_' D6DRaŬ衑9l0QMw'Jb9(%%P6nN:n@^l@:[=$wՕ$ڡՃ82 䀫gt -_d0$K P YȺ{mӽdXJ'dUnԲ٪uQ>SJ2{WÇ@nm0{?8`E֚NED_( H]@ujBX$@ ZZ]2n\{]tzqX HHJL{]d]' -_aJ(uӟqVa]5Tɶ}kmUfG0#7:4բ0t+2N-PikaOb j;C3FF"23C(NĥᲇA´lv,vI c -(0ejn%"} -]q ě ن3e@Ay,Lj]K+azNG -)~.7x'np1pA( "`0 $I 2!D X躤|!eiոI,T# V7S``!UnFY4h\Xr4x|B 3øWť%٬uC3b'ѐ91/*wNjihj9W aH:Yu<[ID1 -alr4&3B{MnUw=[ V8;ϸWi[u_w*;U7Xfk@0& ObsD@5HV7mBZ3q KgUʯ[}ůK $\tx,wDW{xRt%|AZl >lp >UCkVM@rU"1[M*ܭf>< @{iu"D˜cArkb8A:b,\j''fgc ƹZu]7qYUbd`gw, -c@庍0fX.B:HjЫH;]W<[x@jój%l*"T}ڃЋq՞hL B  #j.2 -gXpz5O<'8 WǏWrx2ҭ|AgJA1OpˉҖ,KpqJouQ4 -FQ.QutȯZWKWS!''mـ,L)Nԁ@\($$9gHcK($H*ZOaN HЗCj,tXy@{pM բ-g`ACbaNZpIKs`" Kj8VFT 0fDt;LWlaUIA[&BgԖ@?jL"&! uߩKWi9/ V/٪RxA^= * ͺ7 hKk)BrVFwҐ"q5$o#FY! RN[*,|#Q=bQ(drD{iO cMRco,$UGGJ2>(6@Z;\i84쳵UM/00: ڊ:ry&Y5;;,b_bStx#22i4UxdJҕ9(B8ˡL׋,yfb- C!jBR 2-Wgu[]q[ |`+D=;+鄦:;; -.SIq58vV o䣺W[1Gaܑ@5xu=jI>C 0+$*ѩg Mڲ} =*s-?\8ق[;^y9L.~`,D[͸칪xY;ίͣOH%'{{ .YeC*B`^`Z :eu@*)m54h Zīe54B\}8׽hzBK#[V/䪜^@3_ɹT d} "Ԁx_wo"5#rSm5&8Iթ@O"{`nW9\ExbdwqhDLe,x0)j$ d -j@x*_#Iz~LWV47Uapi@tZK^=V& aU2yZᲺ U`fK4u -d!]Xja{ m\gh̔,aa -Pi1&7@J; -Я Ptb3//m wRpdܶNɣ=,Z$*YpVd8piXn>[b*@b։&sv("m5 "gM` -3f{KoMdYZ@ z}3 -r@s ?EBI6:}U!ߜ `070f9( -!d 0 !|m] %#@:\5GO5| KT,h?mGALWCル;oU}ϬRVO*7,~ CWAZU-& ikViVXUs:7u`V3WkY9J=iU";_$Uגּ޲@dg!0\<:V[\ou2X>N]§*MmUƠa BЪ^X\V5 e,pV2PWjBU7u˓9xm -: -[+n$,8mtٯj@Xz5xVJ$DYnH@J\RJqq2H*%'W+h@UeUYe7LW@@-^]u{*$Nt 茷n%\/@Y`@"Z=n⣺yu#b 6z-8zuu51;j/^U>U; M܀aU2'v -yP,Q MG dv5aי۬6BJ *hVy U@- v d^gse aU]=&7x*YZPYdLW - D)H,bt+ -;1PV-X˶Y?Uモ\XY^m@}U녬4m1L@78 \}uZU_AG%ђ KQ@*phO0 dYa$Nf%N+NgYHR;ѫh-/03̪ro ȥH pU2V{!1W)#[ H$ٻgY$fjIa -~FUf.9Vs3ϫh9AZף* -sNꢆj0U#`7*c\毀/\Օށt?юxQ@4xqWw VtYH+xjbWKb(Vk7xU_wẫJkU;Q4\U˫ᨕY p޺ ՍZ`G&WvH;!Ws)jƳ=\j) Iޔ,U֪Q>ߺ:ïpVry[Փ+ FW*5KVm:[zMc\u}[3CeCIB-ٻck&UCz^Zvhζ.W\h -WswehP ^MհXն:a*ooYE0ոKQ:w+1bp7rNJJw:?e>Z ӡZdA`ł`xC@79:nPH}v[F`!D `/[ -FCVjNX-70;aX.˭s2]'ɶwOl rDn4Zfyro; l5DdM%O'cHICRq9벹wEl_"Gώ &Nw*;.#CQpN=G!Sz:2* }^o?Ng7JTu!S`GA-w  -Gy2 @@9(1P0Y}\&zd5*^Y]'A$ݴJEɺ%#=8D -7wK0ڞ0 UdJVp.UTU!Ľ -+ _]T.j`ʳ_[AI[MQ$EĺW4^.} QꝮjqN#Wfws?饕_{x %U yf ʺi\$y;J[rzF50*`_%%:ʪV}BrnHr(\e<䪋{Zj D%ef -6Ռ N*VIP-[%$rԦVd p*"ViXE1tգg~QOUW"gYp4ZVI{1jb%%ʑ ӠڪUgfW94*1o@UCKt'6BF&˼m9k-b:-\,फE;I~).~[&Val;Ö.zMմP꘮U4#szUY(h"HǫWUan2*&J YUb[D+cpwX ff$ƻ׭#Bl-) Z-duWՈa< i-)W[YpdVՊYM{FNVM$|e6)j $"`'WfZB'lS밹 8L#pyyM@ (YRh jB٫w“oR ;Z=f\{uy<8"Gꪊ aUMmV{MpՀ - VU}jqe9]V3Hu06YjVγ .dd.Kq>ealZո3 -:#3Lm\7_M EWrf TZhh5Z+PouzVK't$_%Y ?uu(-bmVQ߇eK0Mq[ݤ]AϦǻ_a W* t*%{0czF %)c HB[gn[jt tUG3kK\XU {۹4B kJW]:gY}unA]DYU&lApi -ҧV:tLZ_f,P~32UeauDH >e˭Ͳ:Y"@ڛhu\}NjрJP64L@Y}#e "Gn|9\XER&ǹZߣV9/ZU]vr|ie–[B -)׽$8#\Uh3v8'Py˂ HRiVxkv:udUhue@RxD*v"^u -U_sԏ%4 -v`:̟E:Tǭ)vtaL[#< lXoր2@pWhns+i^_X`A6qbeX]Zpr*&2g!a#]1-nÆD]dʪ]=٫ھܕFjܔcoIas<56#y|O!gC{Ig)d`ɐH=TWZh@ "u-љ Ɇ<-.Tל)]T]-8Kt- ʴM$@n 9bPmv",$;.f6J1#lh1Y,oEbѽ:UUUUBuia~/,C ^햸mKpNENeA !i(}5qc/C }^FB@FABb c5za -zA!W5UXbjC)JQ%gAWTfZ+h]5d%j@uS-y~Ps"#vT+`jNWêXuBUU`[0p> -MUWY*7dmUyQXU^ 4ǖVc:6@:B覯zڧ:QU%}70ZBJKZ,Vk2NK`7X <UjaIJUנR%ᰊ40Ye*iVE9jT2%aIF㏓lJG@ -2POV-xyUF~kY+^ ]kmUu{X}&O `UuL*.b2XUjVJ R2v yeϬfV:CV=VW˅Ry  <6"\oUk*?TOu"lJskX̚JraAʉg`u~00O[1U,̳*ª;PD#;(훰[N3Va=+#XMkVn/W^pFAwjtZoU[7oփ kjb-x+Q*1ܺߵj -maRXU%F*W/r:B*b}@BX߲FGqV#w^onULDVLYX!.V:ͫIxw/ـ.|<~jUV}(6xU1=ҫҭb'3 dr^ذZU:t.*%:6P:qfߪNЕ!Rh5VU}HVJaɪfUQt -! 0ɉV)tOv -Um"k(ɮ]U@x T9wvG@W -h6Z+W}uY{ -PUV]u`UDԬ @28YӲDXl {Xd(KtKt -@dUV -Yª$USjLUYVkC61XC{ +4y|5\rn - -#cxpVY V" -C  ^ŪUlqnL4_Y:6rJ@5괫JrU -X^5*NL݃pIy!V1Yu <*[)U U gE4Y(V`@-Ul7 ϓVuW@ ;VY=UwIfuqzk}dy5-xbU4dȾ ti\޴n\4k5ĕuYw\DOy5R%V_m -( dWsOW?m - L輂Xׂt +uE*I(ZB!T~ +ubuf*:@×ܟ6Uq [m/VuY%X_¬IAmAeK6zkbgW!UR_]8lV*@VraH@Xb+B PT)3"˛e,ui[7X`C xlg_ PWQڊz[ HkGS QV&𭿁KLQN@" DYԉ`UDx{0< ?B8o`Ñe6P!{J}+\qi H$ !Å3 -T<1#'TU|(4t(.Yٖm;OkC$c.Edrk2)K)U!DkO…e=Ua&UZTyo$C ^wUi*G'U!Y lyy7qIle/8LgdtPV:|zqz.)> HC@VA@P0@ ZUÔ)^Dz>뤬mb}šUg멑|(?YXAX8&l"$[bY @m+d,&Xqߊ]lughFsW5VICl~[؊Y3.*VV:>i2O^7$D ]3Unȫ8@1)|U[/TUnxP(5* Z+V導Zh)A t^5PZR^5\V }UcWXTa|0vVYyVYӖ55qUtU`)8!K5^jXĹ?cݏ@<>i]/# '&j*1<UCF0sdQOrQ#QI>B,?2JQyAwkr5+ B.j~ypXGGY -ձalSS* - $s8a"l2ӄ5sd -1F˗ƃv.˕.W$ӴȰkqVJIc76 6ms C4m&&p6fò91ꥷ&VNH.ci& -e2ik2&m#+OGei:iɷKODea437g HɜO}Pe9xS##!Zv2Ӗ6~|E-_eQקe#Nn!J5y05$==g?CmR=Mizݥ8<-[ZNmߒNB]Qq`r<;ak~q͆s -;BCV;jWKu/az]׽nU6..r>Ux_h8K1jlP<#$}큍%rP:NSrƹ -;NơǞ+;ȩ:֋}:f MSMkn4QU& ']ח%i =ͷk"c8P4/;V-k!i\_6 p!" 0FJ -FCn6! y,9Uͷ$ӌMr[z<#`^ EQfwo..Wz`0hlhڋs}[fQRayda7)ћ530000T uݖU -4Ӏ+۸>GT*_C.$SX8AeC.&ڛ5iPo˰ʸDo֛kͻiZol,G0kY<$B/9_@P@|-zyW;kOR$SxAmL6<X_!PJo7>0(PC7I =nӴ̢$4:ϳp`}f[;[狖bauYj!r,iz`qC0:oBY(~uܖ]x< #$e]eYV9q:(au Qޛ/"FbL'Ww(h$CrQ<$QQ__ jHԅyO\4<ºIiR0 -b$$m%9DmPi3 *Qu]FIEXH,Clh^}Z1)߆URa1J$.N$QOI,MMxèXFDa]ZNMLGX88q,0yeaZ&z?00T:㋖N˰z0{I xb2+15Kt՜k۔ (gtM -2sw(Bhbf d>WEj%w"g('0śsoW[@ WAM%jTY$Oߖ,%5ܧ琳@&-4/YS H%AKj$HhI ga"&94K%޷ ,`igI ˆ'slN(-ܸl(X d}#3M41xc3wO%-uPZ12aG("2]żA;GD>y|ْaFϛ7[90.$QyBݽ\si\{\QF|G~nE bg^+D>``XF;&X!8 -xf.55 -:l~7f2̜gtEMw J ֫SwqUh(R4 &'BQR}%\QBq{S >M{. -&3J&@h(p? /Y5ݜsIM%`%? jk;v-%f`ߵ ZPSb(K$g0呸oT"gIs%=j\ ̛K~![, 9,X2p<' f}˄ $OkR(S-iIQTƦU>i=P̨Qb@1A Z(@`@X! 0,Ze5=NgƿUV먖V4C؉D\iXpCq"JÍLEb,s{.ʰ"ArHl![K4+(OKR|jWAUf谔 "m1\zo=Ѳ3DO 4m2^Ȝ=TPǵ ->UL2e1i[ov$x3\a9P.JRWB_]O5j]؃vlW!;U[ZԌRlR }gYE74XFc*fݐeLØVϕCCd+:K4ɕKj[iEp2FAߵND+A 5ztM'/^7EF `p-tkr`:xe"Oq魶-|cv97Yy]|6u,Q~3eO)q7?VU8errh/łMlC5P61ϑQ\y>3 Azz=(:DJkbuanɾQMz'U16z)h h ҽ%ba&?9&>=0;Jd4џ:&̘؅ -Ytnܳ ?E-pҁZ]%+ Qƞ3 ~96 P+:Q |@Uqa%,Zck`OKEǾݳG쑟(~NN@ОH$ h A5Hm. .?Cl篟kKd 틨Vap|'Ec`t+N}up41ٟb凟 GyҢ%FpbDO\%Q.c04I7R|lE1sxj$GG.`[רt=m1@afkhT["J"M^fkE.ٙuF<+9yPs5Js -T.@|Z8.s2Ċ[$@4Y]2԰xVZ]ȴ+b.cgdh e2{{2:d]R$^j5́QӜ"MQҫARֽΝ%2c<(k}uyY($*i *i 028y2XQn,m$4O_;4[ 2.zvxfs$b/w1{ U,ۨHJMfAik+)3WȂ {TmӌMA6)ff\2IT.o$b \-#iu!hݿQ3<[l04jYy4OsiӔSvqA}i}b Wq1g1<ľF~O0Z C" =8= 94SoPP#NBg/P*W}%31کJ\<D/ȱBI}0s(rCEB&R4]aH`0Q.: ^D0FDh| ,Jd@و"0[@|g+VT}}CZ% һ Ǖ)u'DT&M-*wr?&w \Oڞ\D#r]rkh:|~A +p1qa>pCe *lCBpY<󕮾WX\(Jb`.pq1[@+ʬ&r>50f׻ixn3u)W]Х[:[guR KgR9q -.Yߪv.s: -s<*C$v*hMu]#>$b?DOVt ȑ}+wwl&7c mWn -uJȵč> T85.J#34j$75{&B$q,1G>_W9nrQ 9w5serدP뻲-kcy) 0QAu{L(ٟjmy$AC -꯬(в"t#PaP߱ЀuhGzYItN7K',D z+R1|X!UhEG)bZ˄WHgRhlJJd؟&z?,\L(# Au=O߼*Z۩)TbKg,S-DLce'jeԭ)p+rPmBc,f-\1#cklt}^iYx *6/2ʢ% -t&vn̥=( q:C(`ǭ#в]]ƜʳU^bț+% -$l,|`$2jH+zׅgR8uG#!@ҡ:ݷGu4c{fȩ =k/'~7M+d t)Dpw3;8ۃ4;Xf=7QDńn~gb;sj\uᑕՐ2LM^ ݺI}ֳ^jIg?MBxnScYL<ٚcBnރtܴ0AU_ǸiG9g1ÜERt<9iअ*Z,&?ƠߔJO18{֢FvN#N7!X㌲bmQo$c& ){B֢w`2q Zkv݃; ~r;E)rpH -xHY{$}nC?IF@(&p0 - @@ hrI^\}xD.Z^?t&4}/S t ݷn{nqUrBˀ#K^^Ӳg(PZWB"Mnn4q萝ef7%ef&" 5+Hj W~c=6Խ5"D>%^ڔɈD"&:Q؈p)yX[#%5'£He1.iL@QR'2a[gbh 0VW)A 3&?ȫfѓ\G$ OlA;y_f erڷSDUHO.$}YU -է[1pfז&ЧNl=7LPR+<8W$q+# 񟒏)k2vJJi0Nc.xXqn&b?hd IcT -dKљ:&RhYCC&9u_1_㻕o:E|}POSWbTھԡS<0 lH1wI `@ X!$snW9o?6W[+G9'~Ltgvy~@-69 -$Շc>&%Hd7;CdE_6upE%7WwP/\;Pl ˩NU! kl^B{s0 Q\N$(![^LthH9:j @1bFw+7Z/_+ބ!mĈ+"{M_SaM*"=lP-H_ܪwX2ğGtl -VCh7s چE_o?O.8 1"CGԊ GКB{W8yz -ڈf8>ɻ>&`8V$#zbmBcvsw8ڌS*x{3tr |md-(}ը]]ENWu/Xc$tou5‡kF6R\2ḬS,^l_a jWL9L9L9L9L9L9L9L9L9L9L9L9l^`/2W&CШ40n"QFQUޓE0sx:::?gNhZB¾!)d L% /tTm.蔀.6@"R ٫U - -PrPYwM G-*>e}$|\Gx+\}J hɮ~@xl`_R+d_qv[!A bf~7(!Kl&FQ_a[ z7_îoB=q n*)v?#D$I kђ;+aʾB }5 v.,IRNgJWʁLw*)Ik"waE`EuO"DDgk-5p{aw췔عR'/a,.,8)1?E!9 Me(41e60d *p]5 I2Z* -ކ&Y8ڌ($ŷ 3ukAVq0"Sj_,BkAz7PQ"D/zDgC<\W%'$(9oSMMz hWyZA $`8` ` @)$B') غ28Ɠ.+ -9gRҷ_'#TkKb׽BXJ/j ;]v LD@lTP~EݕΒÝQs,IoC2 _뻟[4d.y-~FJ 7FnfX54fh;P ?LbH'}U -\5`@F.Z;B?n kPYjydgWhZj#B73 /%YF -yH\0C;8M-\/C<#.oõ\"q' <%Ȅ˨uNJOAxrieUױ֡t\w&5,E[KvyK}ѣOHĒ4Jj_p͠PnD%VqNcmJdb "qg!?L-jfg90ud9) LL`un JWږ2 Z~~>p{I#f˳[Pb J`;58 SdtRd8Ca\dq_Q¹ sl=s[V΃δ7[HW/iiMe׳<碫Bޗ;P`tj%- -J5ʬWR7@!Y4JqBDչc%LG@`!Q4 #1^KeKFFt@o+1% FYS NAmUE"ʃ rY被܍`M+X}([HYNcE&WT2& 5 -DRP~FÉfA, ,c>(EUHm Eys#\n6AgleMCc꿷*YYhTYn=\xh UB Z< BZ/~_.|)#q}TXvD;NazgDD<XKs +V+NUJ}mDm#s)i#2\#KH$B+MmP"sEۦZL\F-zhQ`\HoeW\%"揸eQ2?p x < -x5BHwEK%j"֑X0Kx6&f8;?.(58( [0rajPvw鏓j ,*Nwq$ D,6055;@ A;!|[Q a%@٧f-#itsA?NܻzDycQ-pϵEA -͙RrZx ybQC\lVϲUdQvM1X'1ظ;I[+eQ~0XSFI(,4A]>hAʹdĢ9SJ,sg[9@|w,E(a&I ڼ/N΁iwo? j -N CvoKG@6Y -$) [Jc0HJ `ʫw 0ף&m^`Qw Rټw b0wՋ 0,Nt[Њ 3sM' gP|CLtw-jDԌIpt^Pxt5=?gz&rWdDzRF\[pEL7/JM2A *Tukz s`Prfa?&9sBg%;!1q5]9,W߂$̳Qβ,Rз 6 lr0ѿSp871q{콍` { -$!WAճ"QoKYg6*a69T&b%H 2f60b"@!!(C?gA=v-1Еr<̿CC!kaTzN0ȳ&С$YtvUzvi˦̸8`D?z/U -6?8-/zmw<Иʊq@Qx!oC) ˵oi0T<C(ڛY Dwv 3M5•jӉ1K:+mMy' xq $ -Ы$މ9OToWCAf4Eh6*<4 DZh|3kŞM@om~ЭF IPMYE4ʉ0pH0 Ͳ1;SN OTn4fnBGjRIOg<ǰ}桘<ޤTAqكO>2犋spP H6WITdi.b]UL`pcdT =*pE$h -0kss 1 .Iph -UV^ qY(gQe&Ѱ鐅'60(9xb/ɰW>cWEUm8y( d7('} -b # F ` -lH$+m8y t29DUW<?, XAw I-X*#)Mpө)~c+uό϶ %!?(8! -pJyQzlCK% efxq=˂:qz,:_ n"F1`f?r ^).4<4ls%<{`&DػjC~,x}J?JƛXԂ7ҔWz%`Pq$ma&cFqܙ=?$2x|lgERy+*jSQc)Q%)Ix{T^K#aQ Vs/,1Dbl룣KY tĻw(&7kl1 -&? jԫ F3 -_#iB6Q"anc@y~G)@}`R(KԍVs/>z]0uԫY`@ -Z?Ǥ7%@{}ɯj, &۟_&1J+Ib(p\ -Z{oL?JݽK=*a9P}$$WЂ -uZe -n;cP}dcM xds+bВ ,p;5%WXB4QF)0 hޘ($ D:eXb{VYhfM8֛M-!_6A -8.N2 ,"!JG'@S%׻{y6)M"ě!w6iQ wylRX$ fZHQF3wZy})hI<5EY!]ߖ~"B7!|p(KcF3=Y"X ڟFCmj0&︂W(QQ]'$wz1 Z,+}|ܖ]pY 8 -i2DZKR,h -qXͫ\ck14& A4!i9+:qw -T'}g[R0-Y?jI8`ʸ2쪞Y4,D$`M(i.,@Zy'  ,`,X -$ o,Eɴđܟ{~FN曡c4#Z.Y9s}ͲV}` ~y>(Yk$Iy3'CCCC{j!bWg2t*gkkpӪ{Ք$evJz*ζzVY Xogcq!L<$* %i]?4QKJGr/xYnpyB ț4?),jz~81\O㓗hɬt%kw0у<\lvZ:@\+l3ZocJ%PʑKRKY5jnkEהwtk ͂tȟyڒ9-sX4 k}VfQD@ukm#<龍A:w&:8ǟCХũDg@`wzy|,f&AUG0cw됳4Lr&KbjӯC"ht>E1nSϢe{m$gѰEt yw[zL!}wU\@ sh R "ŷuD~aD=*.Fu"Ipz<."ԟ)YU}vk&>vt1JSQGPGXLi,4a%Bb$]$AVT$ppd'Gb2#wBhQӚśfaP4k,q" -D"ĆH0-&xqe*Be,$9E?6/RL-xA2SF,DEEOcOc1*." m{6פokk {p7 s9;Z_bIb>gQHܲsev-7V-Ν?s6_MQAh@D(d`,Iq@A @@I4$bFyPrirօ$#4ݣZl&VYVK3+3ƴqǤ4X>fE :Vy 'hc>6;tIy r:LV3bPy [ -.y hPN#oGP7 -~bh*,P&aDe=ҢI4Mr5j8 LzρLJMH"_G.>J@KUtKG \y{Gل8ɡVV% -:ht7r7kigXn]vܮ5[Ťz㮓B`%V gOނX T8T(1)ɱR)7Wscɏi US k5?d7}(uH] x,?_.Qg}fD_-1ū>vuu؇?HbYvV7},C`W,۪>bVu؇OW\.W}CQb50Q?_.}C?b}؇d?X_.qg}+bp؇y?_.mg}LCb(#lx+׃ -?//} bWG?_.Nj}Cxb*?_.Nj}$gbG;?_.iI=T.ak Nj} x_.!s>WG -H]b+?^xNj}Lr/;>x~?^cO,,*ZUG -^(Vb*?^[Nj}xz/>V -@Yb4+?^h(Nj}0Jg<x-@cP>:Tx?^CF6QA >Tx)T?^K @S>T@ -`Tb*_#TW,,‹=~@/Ѩ6>,Uǧ -XUb*¿_WUNj}$ xi,/ᭂ">U -xW g4x-M^>?^@}$x /BS>HT G -;QA&b?*?^I}Dpx./a@>TpS]$- ؏L>b<}(؇}\(GNj}(NjNj}(GNj}()ǔNj}p)`G +K.ɿ_/}(P%x/#}lB>x>$>Nj}0 - ,/4?^샤@ ~A<`Ъ5/-^MI_SeIL>51`M>e'L~5)&ߧ|n5ԏ&_Y&QL>52Fwe,5=3v>:Ba>)e!>&bA>ɇ!e>ɇe>e>e>ea>b>ɇ eA>ɇ e>e!>e>|kP&$_<&jT(&aM>P&XÚ|HQL>ԇ50B|nAC2T -e>CS}X*ɇ&T\aM>)(baM>)(haM>)(naM>)(tM>x)(}aM>`)P];S*ɇd&U(aM>P&Ú|TL>lӇ5B|kN2pN䃛 -e>4<}Xb*ɇ|&T(aM>XP& -Ú|RL>,ԇ5B|kH1QÎ -ea -;NaM>P&Ú|WL>ч5B|kZ2pH䃳 -e>d$}X*ɇL&xU(aM>تP&JÚ|UL>҇5B|kT2pK䃧 -e>L0}X<*QA| k!FeA>ɇ&JT&fÚ|QA|ȡkCe> ɇ"& TP&|hPA|pk@e>ɇ-&U(`aM>ԫP&Ú|xWL>ч5|:aM>L>pχ54=䃝 -C|Xp*(M>L>χ5p2@?C -|X[*(aM>TM> Ї5 2@ -}XF*(M> L>`Ї5У2A<Z29ñ -|X*(aM>쪠L>·5P40:䃬 -C|X*(M>L>·502;C -|X*@aM>PL>χ5ਂ2<â -|X*(6 -;*Hkaei>ɇ&VP&Ú|W|ؚkA_e!l>zɇ&UP&Ú|XWA|k\han>qɇ&UP&Ú|VA|kaZeq>ɇfɇ;1!jeAa>ɇ&V&&Ú|ZA|Șhgec>ɇ&fV&JÚ|YA|Xheee>ɇ&BV&nÚ|XA|haceh>ɇ&V;, -C|@+(aM>M>\ˇ5ෂ2- -|Xu+(aM>M>42.C -䃼|Xc+@aM>L>4е2/ -|XQ+@aFu<& -C -䃤|X+(aM>M>l4л2) -|X+@M>ĮL>ʇ52+C -ì|@+(aM>|L>ʇ54+C -䃰|X+(aM>4@ -:W!K>ɇ/&WP&Ú|_|(ha~eM>ɇ7&W&|8_A|k!|hN>ɇ>&WP&Ú|^|hzeP>ɇF&W&_ <+@5P&LÚ|x4" ?ɇ&RL>ȇ50hF>ɇ~(8aM>t|ؑkAC|@P&Ú|4p$C?%&L>@ɇ5PhaJ>ɇ~(VaM>A;;*@M>C|kC~|@_P&Ú|2 ?ɇ&L> ȇ5haA>ɇ&~(aM>|h|XAP&4Ú|4!?&jM>L_;x&*L>LJ5h!9>ɇG~(aM>$|xh!t|X&|2C?ɇ&L>xLJ5pe<>ɇ8~@M>C|PkaC{|@kP&Ú|0Q] <B -~M>d4e3>ɇ\~@M>C|kaCi|@P&PÚ|h4C+?&NM>4pe6>ɇP~@M>C|ЍkaCo|@P&Ú|4p:gaM>|xh!\|X&|2C7?ɇ&L>Ň5ph!0>ɇk~(aM>D|8h!b|X&|X2C1?ɇ&L>XƇW<+4PD?ɇ&&L> Ň5ha)>ɇ~(NaM>|hU|X&|2>?ɇ&L>Ň5Pha,>ɇz~(faM>|Hh^;>+؈hG|X7&B|2@CL?ɇ&bL>4hA%>ɇ~@-M>C|kL|@%P&lÚ|4G?&2M>4eA(>_;eA>ɇ~@M>l|ha@|XU&|2`S?ɇ&M>$4e!>ɇ~@M>$C|kaCE|@CP&0|4CO?_;{` _?ɇl&M>d4e>ɇ~@M>C|kaC9|@s&|2C[?ɇu&L>Ç5ph!>ɇ~@M>C|k!=|]];a.|@&pÚ|4 Cg?_&.M>4ph!>ɇ~(aM>D|8h!1|@P&Ú|X4 b?h&M>@Ç5Pha>ɇ~0_];A>~@aM>|ha(|@&@Ú|40 -Cm?S&dM>‡5h!>ɇ~(M>|`k!+|@P&d|04 h?ɇZ <7*@&Ú|4Cv?A&M>‡50h>ɇ~(M>@|@k"|@P&|P4q?ɇH&L>P4@h>ɇ~@M>;*(dM>| k!|@&|2z?ɇ6&M>4e>~@paM>|h|@P&Ú|4w?ɇ<&L>_;;&M>05h >ɇ@OM>$C|h|X&|4PÀ?,&M>`5ha >ɇ~@[M>C|kC|@&|x[];&hÚ|4pC?ɇ&BL>4hA>ɇ @=M>l|ha|@&Ú|40C?ɇ!&*L>5h! >ɇ@IM>@"aM>|(haC |@3P&P|4C?ɇ&ZM>4e>@.aM>|hC |@'&b|82@J;*X2?&M>L4Pha>ɇ"@M>C|hA|X?&2|4Ï?ɇ &~L>p4h>ɇ@M>|h!_;K+5ph!>ɇ+@M>\|h|@T&|4@C?ɇ&M>4h>ɇ(( -M>8|PkaC|@K&|X4;eA䃙?@f&aM>|40hØ?ɇ@c&M>C|4hC?ɇ@]&M>t|4haC?@Z;v0h?ɇ:(&M>|4`kC?ɇ7@&M>|x4h?6@&M>Ú|H4h!?ɇ4@;!??@&M>h|4kaC?ɇ=@&M>t|4ha?<@&M>|4k?ɇ:@&}u;á?ɇ@&M>|4ph!á?ɇ@P&M>|4@h?X&M>|4hC?ɇ@&U<]*H@& M> |4k?ɇF@&M>,|h4h?ɇF@&M>,|h2hA?E@&M>8|P$u;R*@&,M>|4 kaC?ɇI@&&M>|4PhaC?ɇI@&&M>|4PhaC?ɇI(& M> |4p;v&2M>|4h!?ɇL@&2M>|4h!?K@&,M>|4 h?K@&,M>|4 h -;q&xM>p|4h?X&~M>d|4hC?ɇ@&~M>d|4hC?ɇ@&~M>d|4hhu;&8M>|4h?N@&8M>|4h?N@&8M>|4h?N@&8M>|4hD<*d|4hC?ɇ@&~M>d|4h?@&xM>p|4h?@&xM>p|4h?ɇ+;*4`hA䃥?@&M>XÚ|4hC?ɇ@&~M>d|4hC?ɇ@&~M>d|4hC?ɇ;0hä?ɇ@&M>L|(40hä?ɇ@&L>X|4`hA䃥?@&M>X|4`hA䃥?@;hA?ɇF@&M>,|h4h?ɇF@P& M> |4h?H@& M> |4h?HX@;2?B@&M>P| 4@h?BX&M>D|84hC?ɇC@P&M>8|P4hA?E@& -;?@x&M>|4hÞ?ɇ(~&M>|4hA䃟?@~&M>Ú|4hC?ɇ@&Eu<o -?@l&M>Ú|H4h!Û?ɇ(r&M>|04 h䃜?@r&M>|4Pha?@x&M>z;*ɇ(`&M>|4h?ɇ@c&M>|2`hA䃙?@f&M>Ú|x4hC?ɇ(l&M>|;&M>(4k>ɇ(@M>D|8e|@T&|5Õ?ɇ&M>2h䃖?@Z&M>hÚ|4ha(;&8|5Ï?ɇ P&M>X4 h>!@M>Ú|h|(H& |@4?&aM>44h>'@ -M>8|`_];H&TM>4ka>ɇ@+L>|@h -|@0&P|5PÌ?ɇP&lM>4`hA>XM>|e|@<&8|S <*HÚ|h|(&|4?ɇ&6M>2hA>@:M>xÚ|h! |($&h| 4@?ɇ&NM>2hAL];*؂h|(&|4?ɇ*P& M>H4`hA ->XOM>$|xe|@ &|`5Ã?ɇ$P&$M>4 h>¿; ka>ɇ~@sL>|hC|@&C|p4{?5&aM>4h >~@dM>Ú|hC|(&|4~?$; r?G&aM>,4ha>~@M>@Ú|(haC!|(&|5Cv?ɇ?P&M>4h>~XyL>|hA|;+|@&R|x4 -l?S&daM>4Pha>~@M>Ú|haC'|(&4|5p Cp?ɇKP&M>P4@k!>ɇ~(;>~@M>8Ú|8e1|@&|5 f?_&4M>4ka>~@M>Ú|haC-|(&d|05 -Cj?ɇW0 <p -Z?ɇu&M>Ç2h>~XL>|h7|@y&C|4 _?ɇlP&M>X4 h>~XL> |hC3|@p;* -C|@I&C|`4S?ɇP&M>4 ka >ɇ~@L>`|hC?|(^&|5pCX?ɇ{P&M>4@k!>~@W;0&DM>4 ka&>~@0M>Ú|heJ|@.&NC|4@M?ɇ&nM>ć2h#>~XL>|hCE|(F&$|;+X]L>|ЊhU|@&C| 4@A?ɇP&M>84ka)>~@HM>@Ú|(eP|@&~C|4G?ɇP&DM>_;v&aM>Ƈ2@h0>j~XL>h|hA^|(&|5P9?&aM>Ň2h->v~XiL>|0hAX|(&|R <*|hCl|(&\|P5,?&`aM>Ƈ2`hA4>[~XL>|hCf|(&,|502?&aM>4Ƈ2hBu;X -|5?&aM>lLJ2h;>@~XL>|hs|(&C|4`$?ɇP&0M>4k7>O~@M>xÚ|w\%`poq3|>ϣk]huF`(`>]?h~>>`c;Cf时cj߱K;!1}>YgT^ hC* -f0L h(]2@ iQ}$åz|$Czti|p$èuFa@>!A=G~pi>!ɥ)A@OՇo=HM*k=l0M- f2 |8&ÙKS1ڬ3z3a@sv3z3@y.M -cC}&Fa* Q=|>$T%zXC}b>pcO=wa>Stu@ -@]U>P衻:T -`^CQ |*{?z/!@>a=RT -p`I |]+Tz,!@>Xa=X pZaZ |+l{z-@f  -[Q}`+Cqiz@.a@-MӃ+dӀ3z*@Y>T聫=|\ Vp -|-C\z+@}>= ZD XCWl@= 0b: QA@ -=t` `RCX -|/Kz)@;>!=p^N у+7>Yaz0e3}CPMme=%>Y!z;<}郌OXW|Ā~ GCh}5zΨ>R=4iI6 `IC8 |x4Ѓ(z@%a@>!==RgTr+T>lqpBZ|7 z!A@?v=`n% E|6Ѓz#a@f>\v=y>x]zȞR|`>s=>\zH"}*+4+ q[X-!$`IzH~(i?C?@I -AzH0C[=\q<@zCx=!u>^|໘у`w=끆<XvP -= - -z0%+@F!WC?X^A?AI a}=$C - - zH+(-! `PQ;*\DF`i=C -z0 C>`d+@yVPЃ?̭¡[?lCIq =C - -!z0 C/+@[!FWC<*j,``*XaUt?`ТW?EC`0= -A)z0,Q0+@aDV5у?`XY?DChW:/= × ->z5,{q*paT? `HT?,G@PaS= C -a6zV,j0*XaxU?`$XV?ڿ<i*D*D*DÙ*D*p*TLC?PPA?H@0E"=C -Cz8CG*pT?dku:0= -0=C -p/=C -.= - .=Þ --=á --=C -@,=C -+=C - +=ê -*=í -*= -@)=C -(= -PA -<jhpA -4rz&8=CnAL?M7̦Sp]? pQӃ?0pH?`@??@3Ӄ?p'Ӄ?ب@!?@Ӄ?,`< -`&! !!6R A=àC?< -P@=NC?:}zB?O4StC@ -4xz@;=H: Sp~HUa_{TXU`4UTNUgS~HUAX{TRU4UTNNC -C -MЩW?=t*i*C -eC -BiUx,2~q;+`U{{T!XU4UV|MZ!US~`Ut{TaXUp4UTNUAS=~HU!l{TXU4UTNJUAS[~HUd{TaXU4UT*_;҃ -*xU{TAa*KUU{T]WһK -T s@ˆ -^U.UQ -å -S*U{TM*u*UASL=\WLKUCp -XU 2  -F$* S<G*Q *=*OU{XTAX *|*)U!{TaMA -C -*ԪzTaFZ:JTUw{wD lܸ\T%P,$)4Ilxw?!||y2hiD3ߦLwjd4uf  @2jBB8Ӊ("!,3YoʺL#l-|/zDUօeA˰˪η7OTe]X]VEMwugy**j38ͻUQoYo|/z|/z;:㋳|oh6ΦYmJd0$I[k x1J&BR0 Â5>H(FFD2>ij8Pd4u]J-@F*:˻[| -8yCt /qk+ !;8+2 %ԑL}_;t(j\gdN4Uq҉jN1D#Y:5Er2ATř$E#Y:E}@4"%3TzǹhD0m|@!WWX@ qtri$HwƻZҲ;pi~%<~u ٰCxG's1HumIP|9tBinY@*Sy_ # :$  -3ixtӁ-{cи&XtI -0wCƔ2W1kTIZAV~սw>gVQ xrD~94g"U8 .fkX~. fxFWn$=ȝNԸ#>6u!q]GwJFHFڊРOyx(⹒)G*ފ^0,Y5$B,H$|&4;|jBN=d}WtW&wqV4˘Jww;~5oE#̈Ӌ$iD QD3|}pvq=w>w&; ۽I;>;MW,kh`$ ϾxO\PC lkqP"RǭYmWvAu[2'cw:mQ.%tթ!}G0&Jێv fwд1'ݝ_=kQʘ)$=(2y<-ǻ'OS^μ|o >:Nc]ķ~vi;Q}Owُ;MF6w- mDCsm]x:x2ۙ}8D:h]g;vsbE]v~41w.zp} ѠE] үųƋ>'y7/+ J5a#f;`25HQ_ݨ:muerHDzXƽYpqxGf%ORGEb ;벳lG"P C9gdK|5 YZ dO4$&oyG5[Ig[uhl*EOK wi('wДT - x|,D\•.ź(vi_g.vvfhg;qxL循F)xV4ĊW1ރws Y4ȘXF@[<+BG6 -YIȶt m1$q'Iw#!ԟGYxVƻasz>et N?4h7%$Uɷ;4Y> "vp'qvGҳB˸tСӏEVAdb[u$K'QkaRŁ݉h Y#\7'+O鶪*$؄{@DU{ d䬩ʪ$腘U}ED o50I_ё帄mp dƯt$͉RDHuZ/0== -K+2cVg]a___m˙{+~> -˪5{P4U盷B@`P0b!@ٕDm6r\{-!z<%5(:a_ 阧AA[uokPЦʄAtz6AA+ՠeEb=mAAM=^galkPl[ l6A!SY{&ǡcC(^d#=$jPК{S)Iy|] -u,.Ķ`U!HlҼ FW:ukdhVPqM\_ #2lܩ -,g2]ɵ-0(x!dFAA{>Ȣ=0$z&3AA/Ft /Rl(9Lɥ`j -Z2 ΁A$p3Zs**E@EA ( d @@dDԀhu(ŒuYEΒg TP#"z8$3Vwsbp`az B=L1xHZsΞZZzPΦARϸ&`zNmwҕauϦi3T"I0 q/ ]i&`Q.o!]i{z׷!$wNUW컋]} utwLIjw9)ACvth`<6] ^jړZO:$=Ϫ;w n~l0xEexK -]QQ d>d$8R,w Z0Q-NNSb #<wŤyiت6^FCI\w>C%5zp҆2 %˰#Sq=]\UJ:o#}cjF%MR(=:,x9-3݅G:TvS td^wX}ɝ![,] wE;w=y]2RAǹ +az@J܅g`yF35v -ؔw -axcawn+t%_LK&Gj|ةW z Kb85PS:;6w_c]L[WÓ3pUiJo~`?7C>)A;ؑ]jk6t#3LWxGx#ʾc Y6W.xj85;Fw>2zz7*}'Gx?C>ȫo1]|<8ELxvϾmjg:",#(Ĩ0]J+>w5}g8Abwx&^]a+}|eH;QHzmgjq_US)-(8As7ݡ(d0 ,.'g:9 WĪ}R jlTxzj ͽȕEgI G -Kh@kN;.2p{HC]yp W#icQɤ3t Gp1hh ^ZB6dh" )ˈrl_yw13U^*GGGEf>8D)(`G^-*Y諈aCpgģM=sT -endstream endobj 24 0 obj <>stream -P -X$6Jg1"ozo&4 :D☸bk>&\CgH%AFGc1t`xl[Vi%hߙzTFgyLT]ͣq\-^0!h%g-zr |<Vs}BTlr P$VOk='\.H;g/ք+ - F`@PG9B!C1 !se~$#j<#tzx8$%5N"wUk'#Iڊx 'ъ'̘An(Ak*2g:CؐBK^9dK0 A -ZyF -~- 3dөcOeǷp_ 5տM/dtdؐwBsv5xhwXP\X=TrH$tSPʆdރif0 9 YwH.w4pxNxUe$KB@ާ3; C$ Յ,w 0̘`Nx pwe$9% a]gL1Z憝!G]ɐ(*N52 n D2<ݭkd3}軎I4)30||gD7gVHyW k0xb& s> qaS (1վ yƑ9#IBbu];Rv[(3RigP5e_F.3"]#1 vM;;glZ11}&٦:n[w0z!fXf{dLjwpws'뻺'2aQw7rɌG;\<<:=%0 .'~'w162c<4/)`ǔMw e/x)P1< 'ݽM 8gf ^jf3-%{ f`h:WUmߙ+w׈RiH#vW%3xwϨO߁U)[pG525 amHf$hpu64߻_!2 P;o3栞cQP[ǧwGp)y3AxdO|6޽ Յ`{db=^S\4&r.m.8ݕ t`^Tf>!w˸CUR<م9`;e]Aq4Tk\O8; O{w::J{`wЦ}Uj>f!ތ}hSM;x5Fa.4< /9N̡v'*F(i6.x?pF/ O`bgLq3!wމ:RݸZz)wqWϑ~wBr!X!@ػ;CEAz-'j5 / #b.Qp@ڨm" D -@XGI Dc!@03C _y(H#:3(]%F 'H_ꋜʙVUtowНBz㻪`vcZ(XE;8MC%$ ]n #lM w R%@b8CYul鲌3Cd{<{H~+H]D;@jgʹz8k;ECTgfxS_d #iKxwfHL7j-8cwdglS(Cnf3V.pU(Z=&KVsYӜ|P_hf. fwlXUB!GN!0CbnĻ| PcH55}uxWN!̌b3C1@OU{x@)wdC{gf'^D>QtH 3){Yf Yb;-rxD0\(;=%agKJtηw#;ѴU'83n:x]b4|wj]twRTXD|Aa*m:`0RT+R̙[ :$n`vHsSnucegy\ZΠF3.ûJJ23a~G.aΐNJͺA2} 6+"j8]֔_VetJh8S<([;7[&醺#0g<. ~G<[9w σjSM„% OS$+8UZ -6 + q|Nr87ӬsJfY29{Kx<ϬEia~8nɺK):*C㿀2Mp%6M (HYUO5.0ÏpC -fyw-; K5p1\{3,leGdwlȃ~"+>f?|(|k x -ivT_ PIߵ_5zGf S]X*Ԫ8i}WtV3Twݵ=5U7󇤛r gRΰ`1^_Ogw}p~xH,Uj#kxr9\Z{Y4U׿vt7[OgL$ @_MÉ'fBS5 м0{"C3̠kwR+I`]K&$f쑪׿vR3I8C쌥ӝ1$I*dUZ]1ލ'Lu[bƔ2=?Ճ gX=sN ѭ]DBn ~;ht+w-x|۔vwM0T@ڻ?8#S*wq|V iF+A59fH=`l+,x>xF`.$+[2I#h*QA9RYc8"dIh=H"M&<̆S: ƨ {YR;PښhYI3b[EzB"SSqr!Q@A(!b!q";)1n3=pw!1#%zQzeENS}-+ӫR3UbG{@VQ=Ӻz;Mc<t;OC->x+HU^HC;M kܦ1 dޕ;Md5.Mrn' e -!DzҪ^ix4[x@wC"|w[3=Mn!0ޑ,5MC$񈭨mNY==i&1tۨHmf|mGY ƛ܌Z'6 pPfU[FV'~EdF;wsl$*6=^cl&u:^F*NSA :jdSCLޭy0H5*f[~!}3/ӍH>M`6I\^!#j_3̌6UOV멀mb8ygBC,3Td -.J)kPtηf#+|'ڮ -j.'r̐; fbhoXGw%3+xs(Lp/c^a>!gBSU!U4qP]wڶ:|ٰftXA;3K߃[{=u㻏x;åwkP XFnv#aFq% <('YK1nsnTJ0i5MOkr&]<Iªﲚ!1Majsu {#ûid)"ŬK%9 ((vCv!lԬHt)@CSٗ#pV/o |a»^4=5H9g6cT=1+la -1[A@|2UWB F@V߀ie1U? C}љ9Cn^F1S+.37#gjH{ǽutSu9|*"c\^{$j{wBYTnYߐ@Pj*<]@p3ʟjv86/p -ޞU sX]WKlZ)g{W5Vc@88#1 Vuw? WZ%fF;V( Y{HTLD}gȓl*Rx&03$3~a YPiq>djN`f$:fb˄3ڤj%5Ϫ6w4B $8e)i0`n _1QC$`=͌&>8þ"]ջ9)>ĄYնh- 5ջ"sב  Ĉ{}GxYAZBa`wk8#~Ej*XAEPRYߍH?YÖ",w*13d gH]@{c ]|HfeWu>FҵH4JϼB~? - ݎNc^ͨHwݝY迆SC=I3.$99h}>Sb GΠMՂUǨz[[YGfI^&5~ N~y&b;bQIxՀwkvfH(k2ݽufw_!gR3\ -&bձtѻٌko)f@蝵МA9jD=d1T]RT.KQA28 bAUn\Pt ;lI5L iYNWF !,Xȧ e%a5MwlʅNW2$TF:w*yt'X$ڃjd빽cJ <\RCC@Q { a!E6»-:Cf|owһ]=tw^*aB ' -#+Iu]/$aB(b&$U@$!GkPп,j 6+DڃQ@gADjrA]2Q RDŞXMfh^{~,/vC9 T,RP$V -D6-CYLsݨnq0 qPQ 0d1@@q{]=Ҕת cZ= ]Zb7KT4G_kvnX4"廲Yb"S7wNӊ1w*@"SknzCST^` Ú)MD@},UӬfJFtw_@01"՟ /F] $5JO&#R Yz[4,5twijV|}JY5])K$Myhlfx@8#aQN5rfr5juQw$"#0"K+fEAcQ3_w͘I<;y;EB D^zsfsdm903#I!&Ab<⁙!{_4StzJŠf]BH0"ٽ:tJH]DmFT$UD]ʑw[@ľ4")%zϺB<5 -3wwf*jn(RjRê)mW˯"ߥ黓@qwGmq|!auv* -L"U\:`:,Lv `p u OլGN8zsլW&ԎHNkWP@hywPEB+PYçx*!J.^9d5#Z'~@U8" w5j%w9~#ZoջV[ {}djV1Ymiyכs,@VU=UG֌@Ä/1;4|aSXf\:Ҟ|W\bww#!ʊ#nLQ> T#Q+|vt#Ym.!gXw9HUՓ5#r]Y͘YU[bbk0zGDywL#,N=@E23&)3h˸3ϓTA V);"߼Cvh?eu+B"72 -;{Ǣ"r6'ub-e "o Qs\,dԒp&S$jؕ l$tz:7K,`Aģ_^yI$ah|_mG\D I#{܁EnA@-ipHʁ8A!F‚FSJ^Mk%[th/w4l>S ٝrX5WeEC;a>T-w'%Z$\DU%43]BQ>wq81ieXU{wP6c9Z]w$Uc1̲^ՌMv:w^*bz6`qCC_uLxj~슙GG3mldPQ9O`;6`_UѻI:ZJ&[5HZ^? f֑6^FXt:Jn~7hn#]1jUv6BHO6)"0)jvw7" kP:;b$5)o@/ON$y^EM BZ͈3w]I\dfjNnг05HXlTz .S^Vn1FB/TEbh 2HȤ-śisWSzQͅᦄ>KLR |hI58١$(wQ=H섣\х.Ps`zrpWZ1%UCPPx -VA i VvF3 8 -9(A`" |Pxվl*mhcVvw)R@A 3BCZだ)+X ȢG]dp|0N$6t$,/;^`0pJEfe ;;.U !k&#*mF"͈W;b8ڵE Rf$`B< "T6#g;^#вHqx.pDfDTy)L،UugDvV5e̠jyMFY' Rf^?D6b^I{)!hp/ -3b3˜pi(]mݝ^|zgj!:pflΊLkݦibs\U&g)6cHcPL$@EgS7OdgJG5@46E`K(BvfqLS !!툴1#(L "%K$l#"$Ew)R@eH[L6w)ҴW=NčZ X^WH)HCoҏHJa"10)߽DQD,P>ވ8 󡗦T>6J$Ip,*N'[Dz_"lFށW=ߎ,AFi̊K$G{7wfwvİ>HB{{T:';L8rY9=y͐E,-N0ϐvTL@pYqQQ!JP{U@8 BACBf,Z]Q'>URI$y_Rޔ}28u jFk"һ,5$R+rjvP3rYk6C~䰙=Zz2#w#J6yGyE a&݌5U?wbaSL5Cxq lR#3WJ!O6ή'􊋫h" 3~;Jg`Ȋ@ 4f^~SN%GV$*]u[N)({uQczG֮#Hm}: ).UAJhS{^h;%Jejj8J**`3$CUU:UOj$}^KeՀ* -2Zںj$A]u6&*w!։DPZzꬼUO{K(aUڞzrN +Y3uZ`:̉GSjԏ:DAfG3.u(^BPHrywdoX:lHG'Reh;L 4:{$1i8YZ[]5Pi\=3iwDVx!&w E`pZKXZDp)Xi~{ש*xH XQ?Јw0OWĻẸf c3$rVĻ"yDF˔x'wQDni6#ߥĻ1)YgBT*i@ -WHbH]{-ڒq ٗxLQYK]DjPE)$`b VEHiLbDC(Խx/,g>%0oRg;t݇4udET|haq.FRU -C&&1;.G%~F|EgXoȪ]"d^l{OJL73^H#UFz89gZWw'5d6CHYD9OrLE(}PiFyFՈD2!tMKuE=b$ T:9]p>3ljMť4c -C'51䪎VAfȍw땔ձsqO4d`5T4EhJq7ۓ𽈣dwlyğLF&p0B=3C7<;K6,/ -"2%(E+:9*D'$ !1C.5JJ%K;"B62EqGA3P - b(B!N>WEu-]BWZnq!@:,NVXQND5^_V25K]][s2; X汼:'F9!+-tx0bǘVY쑿-9R -8 o"`v Ofn9n٬,G8i;Cel ZQ8dÆTq; --]݅=^GD4rg;4" Q03H$PYL$:ތ9:9;74HFDށ~Dc7Q81#!`@#c_r+@1(KblH4CZwD$fʈsc3hgˆ (U -43s,T#"PdDZ)02:TopZdi+H]!Z:CA;Ze:,؇_@<`"watm3xdCx׊LqE$ Q@)e#<3UB;FȓXL)'7L+Tșvռ=}nn9Sd,$=z{f슐88 (6 P#w+2ȬJF8&f`O49Ga@K". -*WCa4aSzvX@C@+\7":N1D]Ҡn$>xԢv>@|bXAIir&.)Fփ;DEEe"!"m*'feo%tXA@"2&i;X-vU0^~;]<>0-T@ʊzaH@C9B!!B 'F "v2xNQ!M$-:6!Db)kH"h"T~ 0F̟H~7{dy#"QOlR^H5dɻ qVsa"V.[_qu-|D\uuy6Ȇsjwg),xh wѿ"JX5i:9+5Ú*VPoe.bjy&{GN,ݏRrwI >Bfl5ɚ@!w7Pሑ9 nݡ8 GN!f f@sl.DDIuq?zDx'(8މ: 4:'IL/H19)7D9, 6//I 16% - 8I9O1?@x@ `( EY0  @| `˻ԭUӻԸUsj -/lsDO)!Ju!@bjQ%UWQT]5!j.k -v0Up{UoPmUW0~:JV͔wq+X6X*V:Y Wk: .#k]zGQw Wl -V7ᣌjjD*Df8?ENt~^\;!]uzZʻq`u[t߹jMNn1UvdR!qiUshTٌ㢫.2<1$ -{uȊgpO-.4Cw$F%(5$*6LHUͳ?ͨX:gJP&+cPg3qt(wQ꼚x~wƅ&GQ+kV+F#bta3F:Z93ĸ<h5$O^Vqyj_,H`HHN{c^/ yqFU3z~,gwޅ&P3~W䔙\эG+5E%7 eNjiw*bED2Du]. -UCs@<kQ\͘J'd+<AHgۦ5HL$UםNDp0gbc7^^g;Cj*x "^ -xJ,j"Tf' G<06PT 7=5Hmkvra_a>7q~O -=(Q(CD@HC̪ީDDbLaȠo yER.9yY%Rf0$H`L77HvRK(C{ytU/"uHsj.H: -N+Jw3{*һFd\cDfff%ElzԌϧ'F˜ z$wn3VQ=ɠwsNw1,]IW(H|]B[G0GA vAӚJZ7 -X㮛uqJIzp4(/^IfGl -yipտ.LccL` r%'HX*9ҿdC2ߓwfI O&ʥ%\;n)0E_>k*IL^t"onw8L~O )]to$FGy ח9 w =)︥ 0ez3.g{@!ud_rQT)4K^ȢwoX3==,-uXXh%ZIl\.ii` ӒL'pm%gZ -w;T:SL'^DW&lJŏT &6Xaey߉hUN;Y&zGg MD~cg+x8Ul3IqP3cw6`{P*ghH6 "Ebtȿ#o)_ 1D6\*.F 6^Ѡ-wGdžTA+ =O$P (Gdm3$s&vUSWp9d*R 4@9T{e'8` `q*zZ;-Q+&ӓz^.q01a 9 P(,bF!0@AqHE8P)c<1e3OZS^njqnxsSá%R9]RQY5UҪf4uR|c&Im߱L ,"|z+NĬ~1> +^Y皊.1DF[aj?STFŢHR=Lj*-:X;Tw͸k -NO{8MyH>jrwd##|-/ջxA|­w_l*;o ͧw8pWbHkBPVCv{$%ӈۇ,%3S>@}WYV&^ޅmVN"fE"@;Q|gsD%2EBE/FXdklGh0Ѵ_>03miwiMq/%C$l>b$DJSuDCefQvb߭V( WNtVa 8ݢԦ(#CwxB4,7mwt35mΑF!2rfv@ IW4E;i wJ((^IHw aʻU5 )`ߕ;O$kopFv41DU)ZN8lx !U(d zHTC&KrU11RMNkU$wJQ "@U =$BWNG) wDGHVtw7^97xLErwⓒH; *${]1 2 -'AӅU(SW$o!-54*3 $b3RYHUZ3Z4 Π !8&6N4̢J:I =ҚjR[x#@#dG]5ZVm3@+UUx* tUwXeǑW -^kHHR s2VdE$&z⨱rQFbLPZ r0@@ADAYPsݦj:J Xs -Wv;i[3? Tb@{vrF=1U;D߁w:f]B"t f]b#e5d|7:[q)Ի|UŤ@YnwXr]%zk3]}4U T3+Rqv8zV#!6"r!T \ѥKKy[Yu?MQՖ2Vw뚡 ٮP[.N{*ICJJtw<9 TU!|GjNQ%|A@be"uנ<6vDHCCE+jEr^n#1\6cBon"YQaݒл A.>KVfݭLKa$g&*R[CKੱPǑh-83"d@vB02 V˜UG:`H:@gǠ+F:ӹ1@"!H[w2M~d̵4@(٘Z@!mE+`-eհi-@-ͨa!!0I("@|xObQjB$/V7cZifm3|fE-A$xY970l7CL(nB:AUSD OI$Vٳ xp1 ̞'." `5X-laZQfbTiZ׌pD$K LaLzdPZzc թdeI^f3we -ehU8%]p@* UB{ crdF*Խ xW{Eb#0gMJ9þ |gpT 1 ҽm`uCx8f̨NͨZ_V6FbPV[3%ٙ0s N>kF /4A.MH )VwHRʇH=ԅT/S\;6&>{sߌY ^\](ݬKU)f@b){}f]ZeDxP#dɃg;Q`ݜlca5C<# 沧 xfYB3d)5#Ǜqy < m5HHw\V(fx䌹$x$pA$5kFMG#pM |y;' 5t -rF,6Rwf`s FS4|=v͠ی^BV5¼;E5I[fC^3-]L[ -n=Dzw &(]݇TUN;~}0CJ&ipwJuO%L5#1'm;"AywPDV =rYu1ϜC4^aM.&YwwK B3K[fqa1AX[jamBl ڵQHVrFjWmjY ;5c#o93C\w<$A]D.W݀[@~gS+ *OJb - 0PIX Z %(u:Lŀ=(NE)0C*VD]N_8-PRjɬW.~:i%(G c% -Vcb:k0-imlI D,XMgv85e@9fJlkb1ILg݂B  ( XePiR%|[$.gV+<~̪&^0UyrϬֳw>nf 嬖|jZ8DBԯgI}2C&Ϙ)ڡ]!@!wZ$i01ڰ:m޵6spd'"*̯&ƪj!C+C\RyGnQ |w.zg:,4Vpx$pr%' 1-ӃZtK@Yݙ8Y~g qUaS.?wkF};Nn[f54C{;e_.΀ʬ7MR@;Uwppfu{Ӕ -wqV2Ӆ-xӴ6*7*?؇y`b`(L%o#6=yPk+CkEx0)C}0C%!~ I!fkUs5:aV־B(TfD;sα`ɖL̔ڌ9m$Uӏ&]qY=,CiVػHC;!V +pwxhݞ2 -!iwx̽Cf| w. ۻ HHPnQL {7B,ULM0Sf 0L;'j|'"KvvTmu {wT%Ň򺼻#nlYqw1"I.8!iLU [ːɇߠ$`u,RPE$<2ŝczK8Cs'繧.8_x"9 X .S -f`EZGPxw87 nڻ+"]Ԍe0G`XxwD$ݬ,R7YDbݽfg"b57u"6iNG4VBͳTq̽fE;(N V/M[s,"e|nA M g#j$  m!`tqnqii΃r<iLS!μLgRYW{WFЕ<zԧ_*)z_<;3ν`_ZN>]4wժ X_w+RI]K!@D9ԻilY}HsLܝĬ8߯@{GBt^#M011݀""՘Ӟ"¬o; -%aO;w|AoZe"=~Hdek!񿦀4r{Ǽ`yZ˔G~PTL1Nf`ȇD>63]S@cgķf;@dC%9]MlC:v3%C@Y5ER+Qn|H"e;EJS8cxuK@nb]oE"{}Z3w:gYh xg 'GY |ȟ#wfH YM;GՕ^vg23D4rZwUw/`3B)qͦ)S.=K$u.dF-0][7UAJt'7/Ld T! KIrAH]kknUti@PIN"XGs#*T,"CE:+}`$PvT@.y%VT -)e`Ikl݁r0i6H%9( c =^ӽ aOݝ]̳3tI -jLr:=q_kH/T7b\ASPZ-8!lfCrgwXw03̔;juޡ]89zIWv;LyRSW;XvȬN1fw2qB$ 7ErMMo^"H9dtwT9]镄\\;C}e0Dt Ō}w'wP;k9mkGo}㧎j . T pTBO{2#眪]ꖜA{p5Wzc|!` _fҙQUxR~Q5T3Z -!=PC - T;C3/v.)yz(Yv+݁ -ۿ[N>wYgxjMCTILmUyH/Rz;O;$Ҹ'UΌ]9֟⯀"Yߡ!O4 {1 }2=8کEAozv2uvl;m 41poFM!q!!'3}Êq}ϓo)yyD= ƌڙQo<±Z޽ƽkQ(!w/URӗ XhAl}7b7#_$(=]i18%US}>48`:Mwq{ 4_CxIyyHP7NE@yc;}v L3H`mm KߕN0C>{L+F%<<0W2wqm}G{N(HU(bff])1\Mwޝrwi]o: '/HQG;nf)` "eJҧC1ٝ!F"\? UVvw!C*3k -}9k!"ڧ4[o#2ݰyHXM$a8$|~E+B̰afNrgsp"@sg[>¤jݕbQ ߽juUjgeT}Xvw'; -g}Wxl8x2Sfw13$zP&ĬEªV7#gH\wDHDd6JU3h1V<ZCj2M 6-!;x|( d;K%:1MZ]dQ̯!3L *7]*ߡ ަErVw< CZ\ّTCBCA3 -<$Ayc([d4MM=P_X0i'?Kibe^D 0`ͮ0G$[`P@T j6ͯQk1`phWHc|(d0 l':";RS vX)&e.axHΔ 䔚OcjO(m8?wOqB xwcim Pg/|;ՠ]Eh`05}D&Wpӝy ]Xw#R=Kxj z1]!e杚A;#!Hwg0~ sj 3%x@&Nj#[-J. C2VFwY3|k_u\ShF-2b3jyS.D+%xW\w+youax T;+)AΪg2W] -*E W*MV>yyXǺsjkǴ{gJL:$GYӏgӚr|e]БCy.ɎFvW~.O3Œth!ܜCI3ˌKLDgwSӻ%3R9UgV,QwAhU 4Vyޑ ^I.W Vx_R`{dTۓj17wb<#mdB? }@[*#"~dy7(p`m%.~o6Q{_+2y/?!hy:y !XQ R - @UTvٽI"QSư` *;%@&*,h*4jBrfh6b&:xBDV6ct߹tEQ8Bȹ82[Uj٢^ s?7#uX$I Y j -cz gP΁ Q1 U.ޅa˝\ee;_@|e6HQ o:уFb~Fփx.ި -!20ޑe\:8E~?rN, a;Xl\`aʮ8L|> -ݙ2殙x@ɟ^gv$oWk8t-qwslS+9qWRvpKCcTH(-×n -Cd e:{!x=R0Hx=6%wa;BeD?Qh*_ -]*5,m -vOQԝW>wHHq/wsSX֟O he`x  oݭ8MO)-%h$!7L]\zbݥ"3w:Xxs:Bjn$T x!*,N}1ά)w.~*-њGq˫4)KO>b{54_.C5eQwXǵ$ަW}s|};s [_ex!ftBrGtaG==sw~'@{t2bvMO}W;=;CȒi0uÌD[FsWf/9kVcfM.Ox7?c Bquf)OBvKw 4]/2b!;{w:j~Ϙ),z; >;hajQ볉`a g b&~gӕHe]BٽBfF*FRTsDwi.C(won-bL,3~GJMiP/w5eb/cy\3 -gƑZڴW:ݤUas$ 8G{i)ɽJv&aН PM?Cn O|[ K -.G. hwWs/yg]QGAr$y$WWtFRNCr `);;|(-kDg 3ٔ]_wvT@u(w4]fpDN.2]NS(wQ)ëAO]z>;ۮw @z0Rw3 #YwYIx^g26Pg$ZUA0iĖQ]R^Hiwա;Z:sS#ǫ|ߑ=MݻmS$7xػ:^ $%2NnyGչ3-v: .0W#Z!CVW w_.CGuBr^'{[gf^~> QǗIEtC-oFuwúKEg}P%c歊 lMzuٮt.f {REp3,Igw;%Qw8g֯|exF@ {Hwd+ ;MwKK>Q31& \Xԥ0C7 ۘʂ=3@ ޫV2+ވ+z#Fͱzd̉;6.@kdO!,\28nݝS5% n f@@HOdT.gC1\) $Ϻv*fSe?͢$)uuhM[_Z爴vGPC٬'5$!mAz d,6pbZX>0)uSI;9(d;%lta!lhô7: i8v ֶH bI#QoNaDyR* & %yu YPtH|yLQn0蜽4ys&)3@֛w#iR%4Q5 \XvYRe eQ:w -€58Yw/Hhy7~߼m\}`(~[o޽BQM\sDEը:W#@! -@ Ǻ@D2B @NpVӪi(?ۡ?3y?Y* -zy,@x^$;]hK֔֒(=&Qc71=ϸU/0F[I w\ 3;MbMl^czz:gyD"yHxEwmxވA&o}*x#o-bH &&%l2MܞkygwkWgI#JV.9^Jۥܥ]]ek%.c8'{yC0͛*$snga VQk/N$uN.c]npל$xݼU pS2/Zy2XXyO@x:C2XӨ7@s4$ 7%tWI: Nd1"vCuү_*}^<5S^Cxa#A&^Lxug[54<Y‹ˇw e9 W3ҫrfĝ lg+Xo=C/=m<9:h~v;?0c=' 5<X -0{xB:t_泌C~+ݩ.vUݯ1v35Γ]@Z W@hOa^4S483<)Iቚw~ x0wە5=ey"^zÓ;ʺBBʯ -zDy-kAsq^4$X?rx I:{ wxTХ`|eܷSX| 7; ]F,sIl\Oy鄥I6j"ޣpZv Ah S审?u*MݿAN@:.R&bێ0;m?^u(LW,N2< #y+ <ޢqxԸ!%QRqc2 kU3TDF!rh xC+<oh`\xG#<Ғ|wrRoEHv"ţeyik7!xjw!«൐@e- -~ Cegk]yguhN7DC8?MRh|^6h,H }rWo9[e;Z+eCu/wBzj^2 v7qgmQ4҆ M43T3jY&Yc[r7;{-N^ز-Ni9exj~rаKxvu O]d -@ @`@PDHcfc`` dwPAbQe@Zp8~&E89 _!_!!kT5E_E7K: M~! YIU?|81ZLdX|vh'Kqȁz.)Uvy^-gN_N>8NiLIɂm0VIYe9&c lc'* EeA۰#dRTjL,2R%ge;J'SI]ċdۀD$$U! -Q-TB8[&느 -(g2ԒRgkAv\7)ɂ*UM4A.L5`͒L(I8%V -(@#})7;{QU%fX^zNJMRsHtn/Jλ8Hko*|H))u|燎5hCOR?c(?!}%udoSf-S {7[ayl$ˬ9|R!-ѨQ-Q`* @0(K`c H0@B9s6%GL[e+J2Az Y#ٚd3˰q`@ _9nWS`xٸD|~"G2<3V8lЋ}l7ikIA(!ȰMXú(BJFs'(U@#_$Yb`_sohDP` *O8^ -245(?p,h4<_ӈ" @rRP`Pd2)K4O %1[]X#(H ڋ_dt6Vӥ gPWG`ЇCLA2. X~#O#p7qvI>IkF V哠H-fO!KKqC6ܻF(컠v(rK*]H+H%=3J |`MʨT0̻h"Kzp,-3@ؼD @+@M?艂*AoTAOTT@ Tu@5 T!@T]&u9TA=Pz/="soS{o ?|obyu{U}+aUPiu/d?gݿw/R?y9ݟ#x_ѯ=@Dg[y̿d?PW_r?ʽ-ksOs}:2܏3tѽK9ݓ/u/}4P*gߞ{3'o>z~?_6a'P l}S7smO=?ۃ3nO=?nOo}DP !ϩ=!|Tj_W{3w> ->Hɵ= |~Ola{ P@كg"~ =}>|h_H{oNK>>ٴ_*|?EQDPLI#f1{'0>kwe=Z|+go:G~'{2Oϣl,P~+U~-~QG~u$~o3~"?P(7ʾ;>S_}q|ye?.{/]T.أ V/RKb//៟:PS"?Q9{_ȯZ'EUȯ~ Jz>~y05~Au?~D~G~J5~Mu?~P~SU_~V~Yզ~\~_U_z`zcգs҅BVUU5_~@ $D !H" ! `AQG-G{Xh z]h;`hPjcM@i)/+ci͜Y3i̦Mn3ZiH(RHs,ijkRjü%k|{{*VOÆUUUUUUUUUUUUUlX- -DzCC>#A;Gl(Cf P~ <0'CH'{B lQcQe Ā$P{=EM%Э-HmҲ%+W(URb<ۅCM/XXߌ4qʆ\6rc`56`i v x9rPr̡˧Û˹(~`?ah}!/1zyh!E,"]^)qoUUUUUUUUUUUXXX+k>D!)Wf S'Dy?'[U;xR-9(oKK Z -W0VE0*]pUui## -ơ.?ƻ<'/3r`^c8{iXXZj>w[uCj Z< fo1Wl0a`XO:vq yC*##,UUUUUUUUUUUXX#W5.  ߗ  S1ȀAUB< vT%4µ@J, TW…ST$ܪJPjx%V(KP -qW!eC쳸BXZX_AyEp%J wOH_A1$9wLp4pvO"j7#42`=[Qh57 )hNp2A-M ^]KJrdcUUUUUUUUUUUVX ->q#/K&|>aK_5kWM@m~nmֳ/6;g]~紟j?_;CaOn)`m'\ZUUUUUUUUUUU [X ->j.z&+LZj_IY4uT%jOTƃQ/x< ]$^Rwv,ſL՚܏({n }d["K}lѯdcjVX@|uhwW&.1*Fqoqtkǜ]|oT޺1[/O;f媣ͻ87kVAW͔HщrҺ`{FC됮hlu : UUUUUUUUUUUZX ->qONB̐o<`J}4ˡLI;?r c@n70>Oqs/cEӏc"q\QqX^ulxtKN]\9%GXXU5LE&&i<6?L隣5hv6OfwuD0zwAeSzo -B%|8;!;;!оh!ch7icUUUUUUUUUUUXXX+k>2 Zм1|-M~fihffׇi`Rlc4+~@et4Z\.6?LhZcz*?qEa\ #bM 'ӊZXXZj>iD5qOKTQ;D8SL? -'[RXz,ܤV:ArS м6c55TVVh㧇t**kz4 -Gs{l?*=@ǣVSY:TUUUUUUUUUUUXXVj>،XAKsJpY`uĘ1K -n8Ƙ_`FbZ&kt<eqG1\^:U7ѕX[ӭ:КXIĒb\EڡL)JeaUUUUUUUUUUUYXX+,Dû-lL.] C5o -#._?gиwt|Nkg\lMjb;qEf+s\f_,}^/2lI.a/nϔpG6|WG'H;k;{Sݵ )ٽm "UUUUUUUUUUU [X+|@ůTK{ \^tg5nw-zF\k9֢g]lCcek14҈CW_-jKq͚ke]UfHBmVӈkz ZE6]d5'!2lgX0 :HgAV. R//ZaVzU >^`Hp + ^"XAp`JhW|R/" .z:UUUUUUUUUUUYXXIN>!(%#|'GO-ė$STikz!5"Lq-$ST|lhn`GwKp@8LuHFPi%Vd6.b 0U25` YKU`*szԤKD|XXZ:SLhiiZX6 цQѠy8J` *5õ´f^k3,>&qS樖ic0͗, q v9*g,F-Lcв)тiS:S*Z s%SUUUUUUUUUUUUXXZ:k7@F*GFqo6njV &PϊѸ8ʬ0-qC Զ´lFk6+&hrhmku-j - ڬ *^a5D{F+FfN(iHUUUUUUUUUUUYXV|, ::)ZeShPr>T.P -Pֱ,U8 -U$cY)Rq:,KAy*AGDzT"(tX8T^e'NQ尬oMPaYV98因B -sUUUUUUUUUUWXX:=;:(A'c'{.VwtJR~rNWNII3ܱӕz:v)b]G0Lu%ľl -XѩMz< A)@qc'6ZXTX|}Wɠ@|垝:Ӂ=5o(H_ݓf Uzv>Q &N| }EOMWyFt?4(@GƳh}$VQCz?5'vJ\fN l)!p];Sb'u}jPdOA@=;;(* <UUUUUUUUUUUUUUUxX/Ӭ".6'kVTPM5K* &ɚU%Bd* -jqfqI8Y@\"CtRA 4N!:H'wTPM;{N*&ɚ=D'Bd -jwfI5;3褂Z?3UUUUUUUUUUUUUU sX  _M##JB^Mhޣ Bՠ5&\ёTfZ5HH(S1(ͬIn$өd0ҒT Zku45Qܚ)F_b uhvM #/A^Mh,Bՠ/&hїTfr;HK(S(͸IV%ө $sUUUUUUUUUUUUUUwX/Ld^D^B%C/L^P@![&/QTΐ-(N*PO{%'Dsˤ= - -eRI 2yhnԼGARzB4Ljޣ @=![&5QTE(H*POI{$'rѤ= - -rhRI||$cjvX/Ld _$%j /RwuܗpyPu5U Y+Pɚ*TsdMH - znk\7YµujZA5wMp@ݠ&_@VnP]/m Y+P7ɗ6TsKH - hj\4YSbu$ h @8@\Pzy>(3;hQW6mqra${U-\69(z 6*T)]C&Ѕ"]EnqӪZ~Ai׳Lt4XX[ iWTthZ,DuTO3h)sn73#V8Qi:O&CDd'|AcOwiѽ"XĉꨅO3h).71X$8Q p˄@Ç"NTM-jA~t "YĉZh_&4n;qjjAT mˇM@N"NTM5ՂF]1v3؀%0UOA(^\ -00O u*8+3& -9b7YA&Qvڶln"V547 ;`_ӗtlP :t`B.N/鸉BGbtqC/NnP`Zd8 IxNA}֒7EHn6 -j?HmS诤f蔁YpQq*BOYj34|"ZqSw 辀"_aS_1B{VA-pAי,ɴ<"]^UP~u&n6M+* -QA`;asy¾KIo:+=P zqn[5ɈBGة^OJCQ3)P6'Y:wyh0W(丽KIi4=JY zqR֑[^&S"6i/<߬$ ani EzdlϚQC#lV5=~t!FtYf(tUM%K]"+=D9 Z,x,m\ -)ONMg,6Aj -]m*n^Lg{桘[gRff>eΦ)ҮS1t ADpo c(܅9 3}g@q;P(,| H{ը"أڏtE=H.<^"uT[,;s3ACGT#]ƠM!"lКo+AAGFڌC[!үE|7V`i(5梀kAaGGF4 -D-(s\8*fށdW={ Ji -V@ߕOjCBGRBC)tZZR| 0c)C̅qA;W%bo2]R9ȍ"J'ds>*hs -"wwG Elh*ʝmК[pA.TZEyPtUc)ꢤ,P)ĝ"WPF/6e EypGlQюLšL+Yp.:7)~f PYIE{Cp4ܞIO52l9qdO5"".b#r,Z?t;fk͉3Ԥ֠612 Oƴw葑߿6_t Yb"ڔ"2S5OQBe^keKE6jfEb]XH)idǸ_<""/$*Tsc/Z"F$:4A D7 qf,r4ÓygKO 1Uch9 jf8/Ο ]`!3/[A `~bFLs1'uϥS ͠\OnapG1f>1ɓ#!ۨG#& UOqnUK=XigO82?  1\%}^ -kՃ=?&U䙩Iņ'w*qUi̴vfjRmݫNVA.3MU+jQ1i0]Y5jWm/vJIı~@Ԥj4)XUEܹԀ/{&xN).]U!^@4Qm.Hz^$ӉYP *eNilO'f1%NT ˩# ˞ߵčL;y*l.p㻟v,}/5 -g" -#)MA&VꜤ3SD> ӉIMwx9V:H1c=YcCsj/Y#`1'}6q_Z8,p? Z`\T>K׭1ZǦzԲup6FrU/CZRRrr].{([eJZQ^KV}1S"aF/W}%`Q>w:\5PK|׭ n --[ tOWK~n tI3U uJYdt:ntj,j̨$ z\;(nTMTM-U%v TBN փtUSKU iJՉwn if9U2C`Rxr0].{([zf:(O taKgg V -h1A<1.T-$,WU3df'8_~ -@c)E:i6lȡb(LV;9Mt]DN*&T' ln`IDٰ*%IhB<ۛڥ;vQrD1bijCY?ʴrK|:1%&VlDL)go{w/NLj( Yn` dP1NMkZ9 X2$&L)߻/Y$:`cK5xn%N0߻,h0YŲNe01Mk|}9bfVd 9ԗ.J2jgOW̸V_Z0+l(s~ -WR}ݴ&4':`CuKꕻdZt Z`%-2p:.qP')m/s7'v5 ܻGԣ:dxzĥYp:a`ET;N\jt5.*)FqIȀD3{ƥ(,rKpb86%I&D4$\;ԣdrzܽYvRI}TYNҫ pbnpWRU[*QT`Bj.aJQ\Re27=H'M,q -KL|6wbWL%U&HrSUtl.]ڍJj]dblCSMڽٻqbԗV/iMOeu o*’j$<  c)C%61+jznrY& )8ScEն,]mN(%-LVlҭmVSz -To,PUJwkm8,2Ѭꍅ*an |:ZdjmaS-ZK" M|cFdX½;[q`fUu,hPiKtemX,lzU>clE&U#@%?,͖al9TR-ZLҨ+i!Ӻ \ ;"@T{w[ͪY2gp6KKXfsbuH@wqw$ ƞ,\asY< -W5~mjsGU]{! &TKD ѦrĊ^+_5Xep3E'J^YȂUIY\ٻEVbY8"05J׼J 0@fNpJM~+5/ NTbٻEV\S8"‰'5ݭ K׹@fN"IyG+5/$ UT hڻΥVV@S8"!5۝@sNƈ\,{d1ox!1Q -t/p*0b w,]"+( )g? qƞ.t fvy Av;+RgjֻՃ81n2[0 XSҍ0ďqت! nj@\7ZP/SFT͸@s1Zp)_27hfY5çBrpO²N+U3L**'*tuz5ndaSOTaøkx&.KPVʺ;72d"U?ܓ_TcrttxmPaQȭׯ13V+z׍P㇪^p뵽nLUČ??Tz_{} /TExSh~l Pd(A wX @Pq|Er24/\4tbZװʌ66(SbւָUU5ד#ֈz -%3[pX7y?ZRCEgݝ{pVFw* `ᘾR1ݭF - TfA :Ie3:e%ڔ$źc$[ $jݖTN`[2*FGYY6XL2땩JWSV֫V ղzZ*Rx*&һ8*f5T$<ݝkآ:!/?LKVm5XP#@Gp}hW WEH \4 fzYCC]ZY!\ӇWE;LrpUU.αHZP"=/BA*V9,g qb Cy -WALD[ BGEUĢ eݿ!B/ǰUιR7y8+;}՜vA}5$^YnjTm H' մhΑ/Z l& BtA1V _8QM!W.l0P,0[P>|±ѯXVeCЕ P(8@?@ šu]?^L94( UN%;4E_thPU./||8d_+N#ӝ>DӇ9R Ӛ,VE@7%p1„R7uEU -K,-%^0=է'`4N6@!8J,3Yz~54W9b&H[2^b2Pձt'ܹN7Z "]f" , RՓbrHfեBc:VBz0[/YPEIH KLCYŪ\xGH ~ èP 8@ `hb+ǡr-򥒇?0c - UFI`K(/oV!y"␓)ކoVy/b = yyѐ4OV3zıo ҍ$+D@vdu'4@80GNV{j{b. XB K8OV1ޔ&{XMy0Ѵ\ +G| !m7# չ6G(.=6+lQ&mU}xJ0Uw$Uj߈xM3(t(xخ'"5 1M-HuiIǜT"\`>dl#4Ԟsd=z@G| y}; -Ѹ;P)f%%v"lĢO$KG7{ [LH,JJ@'&)zh$lzXWtٻR5 -wytPq1ZpIP=Z9>yt$R{>'=cp-U|V P,$`24K#-U;)d!IRF#lSof4u}'Y <[mvnZ:4X$Z3 ՛}(XLH kPi;]U5J}ݻbب| 0PALcd z ^|Fn)BV_}"(.Hmgh_Uފ QJ<HHvjU K2H -T& z_\ŃR@Q#cF (YP%c!UpT3)h,!ّl3V4@;6dz] -8n?̾$eF뺵X'{"* ]ZDO~F4x5Ѧ,,X٠ysy4 RP/+,i`]X禙Y㻿&ey^12ǶعD-#̚H0'5[^C6=9-3OwjЍ]lE\F(}dkOcqi`3/;ѪcZѪ93z:דy{F52Y96x{jAX[]{ݻ^Ɩf52Heq?< 0A .pns -ZMBn&ܦ6ԎlǿqsƩWhI..8/=g8^%hp>N{Nr3N*K6 vᬼ6\hzUTP%3o -gseX2HKf+y![s}jVAUTk2|ܼP?|Y0_ +t<3SX?9)=Qi>H feB|R#{Qix2kfy\DɢJ.>z,3EVKEG]*W -*U1ئ+O e'ZMUUrq OIjOU.*:Idh5Tr%^~^'j sMNp{O ~79!8U-'8x6 qVS98[L'8qosMYL7#W?| 0_{u7Mhi O$1'8)d&g -٦Kd\zpL%qc`3-^f2;y1 mDf 'T +PmIj=893ydYzp2Nea]&ՃJVSdH 3Yd'TS I^89Y2u+m=Nf8P0p-jLv\S DKގS^W}>?ueզq|gt/\,4N -` @?< 0?@Nd0 BAk.NBOХ衐'C{&{1*ilPg^Yҳh5dI`$ }srG(oHvRnFCߜ gH6m fCۘT!T7 $T9FCaX0 -зfYJɞ*&2ѷfYʙɛ*&[3,E%dhL|-dBere4 "Lc L2(*'ӘI)OF?JyY-#tƤRg? 0dcz\ȽD^R -ר{r(Y67j.p܊BFW8j[7=7=X}zy/ `"ĮKC %?O4*BR? cl48 v-5R еQm  -)G6d&dt%u? .q@9.GEIuմXCkF֮z~]uS*U*cRû*ӌa5,a H -&Aٚ?#J -`0[`( 0n@ -az%$"fH#7E*Ѣ) 렎s4Ez౔6ȟH8 * ź$J0yi !P\i cO00z|*E-y^&6ŵhx0;<# kUL< Ũ#L1hgƚv.Y{p _,i*UڡTpՇ Xa}B/gA6m#Z;h k/5k-g٢XEH?[ꭕ; -lm1V jA8,8h+\ I gg<:fN?\dN>+TDK]"]tfkGOFWmP粘M4SG~\LJ (W1Ԛ@fT+XY vaVh=Z!v>7P`2mLEluQWЩeZAMzn?K+OD"{C[k׫kɲ>Ua QPe8_҂s5Jk?Þkl 9֮:Z1Zި_%ST=oG!z(uޜf<@TYO5Cw|Ra[nXw;wRLT561:p}_=J+,kRI$B 76T?:*=T -^p)=` -a(=T -^P(=` -a'=T -^0'=` -a&=T -!Lz*)@TI? Q?HXpH^Z -<TTTTTT{TuUq Ul,UhDUcPU_hUYUTUV<8 -FP/ -vza:=TJ?dNU SC?)xP* *P*P$*xC**P6*+|:-z!zz%CP9!jaB=TCC?aA=TCH! -P)P6A@A?OU PC; CwB B B {`!zX~p!z~p!zP$>G=XȣÏ\ȣ,QQ.QB y|P]d<* yԃy|@ yu| yo|x yCk| yf| yԃa|@ y]| yԃX|` yT| yԃO| yK| yԃF|쁅WD:ni><f>AP12Wp@/hW z+lG=ˇ6ȣ^ -Q0Q0Qg0QR.Q=!0Q%!0Q.Q_WL:'!zȮU -6!zȫ5*x zp*0G=^ȣx郼 - -QAD QbI Q8NQSQ!XQ\Q`QdQihĿD lElq 4C"!"#3C NffH1f -) -bCrP.եR@i;p"2`9.KR(rL8;17  /c\^Ѽ LUg4Nr]Bj] ˆ4̋f\윊pYS*T.MDxx#R4%*vC#cM  !!!!"""""#""""!!!!  !!""#$$%%&''(())**+++,,,---.../....---,,,++**)))(''&&%%$##"!!    !&'())*+,-../00122344566778899::;;<<<===>===<<<;;;::9988776554432110/..-,++*)('&&%$#"  !"/0123456789:;<=>>?@ABBCDEEFGGHIIJJKKLLLMMNNNONNNMMMLLKKJJIIHHGFFEDDCBAA@ -endstream endobj 25 0 obj <>stream -?>=<;:99876543210/-, - -  *+,-/01345689:;=>?@ACDEFGHIJKLMNOPQRSTUUVWXXYZZ[\\]]^^__```aaaaba``__^^]]\\[[ZYYXWWVUTSRQQPONMLKJIGFEDCBA98764321/.-()*,-/0235679:<=?@BCEFHIJLMOPQSTUVXYZ[\]_`abcdeefghijkklmmnooppqqrssstttuuuuuvutttssrrqqpponnmllkjiihgfedcba`_^]\ZYXWVTSRPONLKJHGEDBA@><;:875421/.,+*('%$#! !"$%'(*+-.023578:<=?ABDFGIKLNPQSUVXY[\^_abdefhijlmnpqrstuvwxyz{|}~~~}|{zzyxwvusrqponlkjhgfdca`^]\ZXWUTRPOMKJHFEC976421/-,*)'&$#!  &')+-.024579;=?ACDFHJLNPRSUWY[]^`bdegiklnpqstvwyz{}~}|{yxvusrpomkjhfeca_]\ZXVTRQOMKIGECB@><:86431/-+*(&% "$%')+-/1246EGIKMPRTVXZ\^`bdfhjlnprtuwy{|~}|zxvtsqomkig[YWUSQNLJHFDB@>;975320.,!"$&(*,.0BDFHKMORTVY[]kmoqsuxz|~}{ywtrpnljgeca^\ZWUSPNLIGEC5)'%#" /1368:=?ADFIKNPSUXZ]_bdgilnpsuwz|~}{yvtromjhec`^[YVTQOLJGE420.,)' ;=@BEHJMPRUXZ]`behkmpruxz}~{yvtqnlifda^\YVSQNKIFDA><97520!!#%'),.1358;=@CEHKNPSVY\_behjmpsvy{~}zwtqolifc`]ZXUROLJG42/-+(&$" &(*-/247:;8630.+)'%&(+-0258;>ADGJMPSVYpsvy|~{xuqnkhTQNKHEB?<9641!#%(*HKNQUX[_beilosvy}ʷ~{xtqnjgd`]ZVSPLIFC@=:7$"   "%'*,/EHKORVY]`dgknruy|~zwsplieb^[WTPMJ+(&#!!$&),.147:>ADZ]adhlosw{~|yuqnjfc_\XTQMJFC?<9630-* -0369=@CGJNRUY]aeilptx{}zvrnkgc_[WTPLIEB>;841.+)&#!  #&(+.148;>BEIMQTX\`dhlptx|~zvrnjfb^ZVROKGD@=$"!#&),/269<@CGKOSW[_cgkosw{}yuqmiea]YUQM741-*(% 36:=AEIMPTX]aeimrvz~¿|xtpVRNJGC?;851.+ ),037:RVZ^bgkotx|¿zvrmie`\XTPKHD@<   36:>BFJNRW[_dhmqvz~ε|xsojfb]YUPL41.*'$!"%(+/2SW[`dinrw{ѻ~yupkgb^0-*&#!!$'*.159=AEINRW[`einsw|zuplgb^YTPKGC?;730,)&"  -048<@DIMRVsx|Ƭ]XTOKFB>:62.+($! ?CGLPUZ_dimrw|kfa\WSNJEA=851-*&#  FJOTX]bglq~ytoje`[VQMH/ -!$'+/37;?DHMRW\afkpuz¤}xsmhc^YTOKFA=951-)&""%),048=AFKOTY_dinsy~ͱ{vqlfa\WRMHD?;62.+'$*.26:?C׹ytoid_YTOJFA<840,(%! -  @EJOTY^dioty|wVQLGB>%"!$(PV[`fkqv|ytnic^XSNID?:62-*&!%(,059>]bhmsy~ÿ{vpje_ZTOJE@;72.*&#)-15:>CINSu{}xrlfa[VPKFA<73/ 6:?DIOTZ_eϦysnhb\WQLFA<83/+'# ;?EJOUZ`flrx~伷{uoic]WRLGB= - !%)-16:?EJPU[agmsy¾|voic]X - !$(,15:?DJOĿ|vpjd^XRM.*&"   $(,0tz}LGA<7 #'+049?DItz½}wLFA<72-)%! "&*/38>CINTZ`gms)# M 0`dT0,rBd@@%pGw; q;fRwlYC34u?~v؈pӤ>*wl_q*K;5&cŇPnWK,hֻ)M _ݭr eGcLFv;ݸ)";j*=#rW|rH pz9:8 [ɶM'#snN?wpi_F+WlX2^8k&!zչg7gCeCㅓM3.uՃ^fA1wkm'݁k灇ݿg0 -N:,ӹs<SM/R|Հ7c\x_?j;&ۙLFp'y2NCw wJ$<“ZA<_UUdܵ :R3z|GNmsd`w~o!N>hl<$ԴNK&;'];d HדQ2ud} H/%3M_ =lws \n2Z0LA*4"3y;8e|i} ^;Ty\ L'Dþz5IC~WቅhoHkJzC1#Dvź$kH !xn`o#fӘ]1>2Fp;sj2bwTWCo ϋ i QG[Eȱ]nNkǏiHQtD2Uy3ݴv\vݎlWƸLt9Ԛ_`cދ O xxgzq vvAyOڝn}E0 Ց<+/ACG&/yEgC8#u@;<SM)cA;ubkxg(*}<3y>%сd 묲qvv츐1g_>O QQ2⦒I3 i.kw]gX-T#ìIs}n1 \f3n^qxzy<@p:Gv&HF1 -#skϑOb_ uj;ZNu 1&yYx"3rwgg*'bxGD!D-oIc>!#攪^~^J79`Zz`En度=Egx28iWvk3] xr6~;RJ)N<ߜyw@#9#YfC x,i;b]6v\0n;.{ u½vpjc]WQKF@;61-($  .27=BHMSZ`flsyþ\VPJE?:50+'# -  $(-16;AFLRX_elryȏ|uohb[UOIC>94/*&"5:?EKQW]djqx~ѭ{tmg`ZTNHB!%*.OU\bipv}鸳ysle_XRLF@;50, $(,16CJPW]dkszľaZSMGA;"&+05;AGMTZahpw~½zsle^8-28>DJPW^elt{յ~wpib[TMG@! !&*/5:@GMT[bipxĿ{tmC=72-(# - #',17=Cmt{¼xpibZSMF@:4/*% ).49?FLSZale^VPIB<61+'" +06ELS[cks{Οwog_WPHA;4.)$-29?FMUľyqh`YQIB<@GOV^fnv𿹲rjbZRKC=60#(.4:AHPW_gpx|tkc[SL!$)/5;BIQX`iqyü}umd\TME>81,&!70*$ !'-3:AIQZclu~ypg^UME=6/)$  &,29@HQYbkt}yof]ULD<5/(#  %+18?GPXajs}xne\TKC<4.("`$@H!qQ2ca"H5p?~ :b:$S?(껃 5fHF{wfN P)wr2@Hجyf߹uBSg;gw@V4Cfax~6kJ(ݹJ߁Nʜ>-GpH~l0xG}jJ߁S*35`Ȁоت3X],HNAF;wFɠ2%4NZ3]Tc:Sf-HQ8FdNQ5eAV)%TS`wNe} ?xfwjwwx.HIDGTaReF}lM& z y+;y{<Ƙ(+]d3^ V w=*lЄ2(8)q]GX]ꏔqJ((^#4ņ*nH9V 50,wT/w"RFtfMA] -n2S܉v QHwRռN X(V\ʝ?CWq'S+:zݜ1l)r'pF*޻, rqxfHd,m7@ȝ8UL-;Tw?Ut~).trPzeNl,]8Ew_3:_Rɘs˝$v'AV8:k3!,"#t^. KuqVS 续{ xƺ E:I̖Buwp]ī Ep'Kfy3gHD }߀*)s@䎫2*vƅށqȬvI HI"*CTap&wyu -i1vUαzrz*dBF>e2 Aq&Vc:te5)=Vw2 -5iWѴ#tDcEڣVsa`ڨ&wRDNoQJ CwR1r72|w@Y 9<xBXRSaD3|dY-59c59z -H -ugbjtL36{e·OƪRONw.ipx2JSxi5gL[r ^/O涛evqWPpcry4HXL7[?ぃTP_wm 宧_'ɿvFk\"oԑ_w]!Ow3ϬZϰlqT7>FNW`ir|Ľwmd[RJB:3-'#)/6=EMV_hq{ļvlcZQIA92,"(.56/(#@HQZcmwļ|rh^ULD< "(/6>FOXakt~»yof\SJB:2+% !&-4;DLU_hr|wmcZQH?80*$%+29AJS\foyǒE=5.("#)07?GPYcmwŽKC;3!'.5FOYcmx}rh^TKB92*$ %+2:CLU_it~ۢyodZPG>  -HQ[epz䔊uj`VLC;3+NWalv{q70)" - 8r|Žw<4-&   -5=ºJA81*19BKT_is~ǿyndYOF '.5>GPZdoz翾Ļti_UKB91*#$*2:BLU`juͻ㮥zoe'!!'.6>GQ[ep{оŽuk`VLC:2*$ $V`kvù~~}}||{{zzyyyxxwwwvvrqrrrssttuv[QH?HQ[fq|Խ~|{zyxvutonmlkkjjihhhggffeeeddcccbbb_^___``ablmnoqrtuwxz|}vlaVMC:2+ MWalwⱮwutrqi[[ZYXXWWVVUUTTTSSRRRQQPPPLLLOOP^_`bcefhjwy{}ú|qf\RH? R\ub`_^\[YXWVUTRQPIHGGFFEEDDCCCBBBAAA@@@???<;<>>?MNOQRTUWY}ȿwlaWM #*ʵ|zxvQONMKJIHG@7665554443332221111000001GHJLMOQ^`qsv|qf\   &\fq|ÿurpnkigdb`^CA@?((('''&&&&%%%%$$$$5678:;=?@B|VLC:1*#1:BLV|gdb_][XVTRP=;:8765.-,'&%$$##"""#+,-.01346Nnqtwz}Ļ[QG>5-& -5>GºnkRA?=<-,! #*+-/PSUX[^adgjmpsk`VLB91)" )19BKV`kvȿ|wtA?=;975420( GILOgjmquy}뼲|qf[PF=4-% - %,4=FPZep|ɾzsnida]ZW-+ 3579<>ACF^bfkpv}сvk`UKA80("!(08AKU_jvypha\WROKHFC@ &()+-/@CFILPTY^elu{peZOE<3,$ - $+3;864$ +-/1469.ҮWF;/sTiÃ]2]~]f0ᕕlad;?6}2"ze!'7CWQnրGg+JY ;*CfO?"S瀞xxԜ -]eJm[!뎈K߂ /#*`)CCV]Q\5Ў%˥7mYnі;I$%7#ǻ^:WbKoyxhh'o,|q6uwj[\5wi@tpȈ b63(QhWkxe3YCR-[ E K49-|gETbmSށݝV5Ż9lգҊ8ލhsfDQ-y.tt(c-W h -kYnN+'Va]SSA2`橝0bD;'9n:`s0t)~-\ ⊛˴[f8)CYn2.œVI($igw&:];Jwۇx[y [j`aqy5CHg|1]+DgH>+-U - N QZBL3jcL{aɻS|KV &6.'B\"VoBHhKmv0h<\eB/ # ߧ. Y_Nt1>wI@"9 -kf=uN۶!k=DMX$6ny!1˟Œ<5gLZdN*$ȇMA3bRYҩgx&X6wq}Ͳ}vW OM%'0LgAچn~&3LZwK GZ -jggUE(ʹ a[yߞxAFǫ̇̄ -XpT3`%z cOނ$bC@bfOݎnxg<ʰzV]ªHfɜ"^;!UW"ߒXU@-UQrf#"1^ X/G vtjz[fw, 龙 @C*cuJf"(b*J(ۣ$"0uxcU" -ݳVe&m.*Rr7N"8``iMHdHu>āY_w `v&aPA",c}nYA"%m.{lyZnG &0ɥE lz4`e8YFoo§ݼ Sڧ;DSAž[mF{,l2ٹowCמ<7D!@rpJ℉'Nֱ |a ^Tܵ`QYVWV sg#4:RCXqڠ9'Sd)+K5@ R⌻GީE)x'B6igMf/}w -}+ҭE-EqbEsK;,k,>NtrQofY 2IMMYF2NU6ö"P-GKNBXʸKfPDz yV3n:@=T8"wJUi H+n"01Ha&>26CS?W]D~$-5a)z ˰B4#hF+Ԡg g2f@2[B̊f\&R@6>tsj83wsM6uK!qjh>\5\\gxG^SF:>\5]6LN<5ݭ N}5C w=$ ̝a2Kph):t'.6?IS^it˽tg\QIB<73 .159>EMVan{ĻzocXND;2Xcnyŷwh[OD<4/*&$! -  "%(,18@IUbpȿsh] - \gs~~n^PD90)$  "&-5>JWfvúxmbW "ValwɻveUG:0'  $+5@N]mǾ}r,% Zeq|ƶo]M?3(  - $-9FVfx¹vk`UJA8/(! '.6@IT_ju²{iWG9,"  '2@O`rƽ{pdYO  :CMXcnzͿvdRB4(  -"-;J[mti]SH>5-&%,4=GQ\gs˼r_N>0$  *7FWi|͐y0!(/8AKU`lxɹn\J:,!  &3BSex<3+$#*2;DOYep|ƶ~kXG7* - $0?Obuùvj_TI?6.&%-5>HS^iuĴ{hUD5(  "./#  )6FXk~Ⱦ{od -BLWbnz̽r_M<." '5DVi|¸sh~˻p]K;,  -&3CTgzż%,jvʺn[I9+  %2ASeyȿ '/8AKV䧔mZH8*  %1@Qdw¹g\P#)1:DOZeq~ȸlYG7* $0?PcvƼ-%$,4=GR]iuǷkXF7)#0>ObucWLB8/' &.7@JUamy~jWF6)/>Oatrf[OE;2*"9CMYdp}ƶ~jWE6(  "/>Natżvj^SH>4,$35,%]iuǷkXG?Pbv{ocWLA?IT`lȸlYG8*$1@PcwĺrfZND:0(! ALWco|RdxƼui]QF<!(0o\JBSeyਫ਼$"*24跬|ocWK$,4>HT`lxL<.!hĺrf' -6@KVbo{ۇt`)6FWjƽuh\PE;2)" '/8CMYer~݉vbP?0$Ylґxk_SH=4+!)1:EP\ht±xeRA2%  - ,:J[oɠ{nbUJ?6-%3IUamzŵ}i#/>N`t伱sg[OD90(Wcp} $1@QcvȾvi]QF BMYfrɺo &3BSfyyl_SH=3+#1:DP[hu̼M=."(6Eø{nbVJ? - ")2i!jL]a5#ћRp[!+#i $w[1ËTT8Zh2vU=əhAoqD⏈$[3"ALO $AB'"Ejͻb)GW@Be $x!fMFQ ݰeʐ@H!s "IP05 c*P<@Q˰]!5C -*ʰTS;S6`rzf33Q@ ػrɩe/Bj$Hۨ5Cx#Rd $c:^ s&AeI2RA@7Ui ƐƢw/"J,9+C~@H#P̀.'k1]S޵ SUZFoA;[Y4X3Y3ZH4zjoͯ2Vu]b2--6۶7vP`PV(3V] -+A텶Ie HAZ2V83F0)p#Ҿǻ}Ãx2V8/@kkTo1-@3ehf^L( -s@y/sK|"Zugbի;"58w,މc &b:ao4 (0:EQ]jw;wdRA3&!-:cWK@5,$!)1;FR_lyó|jW1?O`sȾreXLA6-$GS`mzǸo]L<.# (5DTfy厁tfZMB7. "*3>IUao|̽vcQ ,:IZluh[OC8/ - Vcp}|iWG8* -·wi\P#,5Ǹp^L=/# )6DUøx0' - LXes' ĺyl_RF;1( ftó}kYH9&2@PbtƻS%.8BNZhuȹr`N?1% +8FWi{Ǽ|naTH=2)!&/8CO[ivͿygUE6$0=M^p}obUI -/9DP\jwŵn\K< -)5DTewȾ~pcVJ>4 'kxʼ( #.;J[mqdWJ?4+#  '0:FR^ly²}kZI:-"'4BQcureXK@5, (mzȹsaPA3'"-:IYk}seXL@6,${{iX'3APastfYM )2IVcq~PA3' "-:źwj"*3>JVcq¿˾{iXI:.# (4APar஡xj]PD9/&4>JWdrľŶraQB4) $.;IYj{ƻxk"*4?Ľ̾|kZJ2' ",8FUevǼіzl^QE՘|yy{ǹwfVG9-# 3@O^oĸ~KXes~wqmklpvq`PB5) $/;IXiyztqpsw}Ƚvngb_^`fnxɼ{jZK=1&!+7DSbs{qjecdhmu}Ƚޙyof^XTRSV]frĶueUF - ?M]m~Ϳuja[XWY^emvW}si_VOJGFINVan}̿o_PA5)  $/;IWgxͿqdZRMLMPV]f !mbYPHB><=@GQ]k|Ǻz ",7DSbr`TKEBACHNV_itD 3>g\SJB;6335:BMZj{õueUG:.$ )4@N]m~}m]PF>978;AHPYcnyPD9. dlaWMD<50,*+/5>JY˾p`QC6+"&1=JYhy~l\NB93//15;BJT^hs~k^PD8)r?70*&$#%*2( [n~Ǯޥlx+$8 07&eeИbp6S{^ -8AߊHNI~w|1nTGs/B3x|#YY?B yi1v ĔY`ЗQ1J3i)7m9w%"wt ,H)Ev'!|fJ/$b^-/e"nSurLiҖg2/E3c dދQ@Hv:S^W|Gj(Wn~8rcp2vҩCbYCZ_Qn!^!2gw -Г]SF!C!l}%tFS<afXN6珢cm-Rg -ٝ" UL`p*.nmn*%pty'2Q7ءweY()nkN)0sH%+Ǝ[t{B fz_ ]qYni(ng!ëeDr4(wqB -'. -ZP@2̻;hDH@TTW])VtYH,ČRM9s|.#T]J`l(ҘN{k#%qSu7̻|@};=vvHLcDEK0vƚU -z;S]r2z-3o#ܥ;#]O5(4k;. c`c1ʌ!-i+Jay"x}ޥeNnR:nnLHJͦd}v7L!d4CURj"2<5ە!޵}7"U+*{)@ݹ1b[,Cw.^vw׊mF~muh )2L0(cr!\)˅Ϯ5]vg!]CBtUzo͋{?QTS{T}l¡wv>soZ#e{CasYAQ ~5;:C|3,AW_u)\K;w&-+ty}'ޮfޙ^!wB Lk[2XRM٩6*nheò3V~c\#3-DjMz>c\ P@NðҗÈ\Lq)wGf4HULpjn(32BjT#gtY#;TzE!w#! 3p`ʯ)  @Oժr\<5 J}^膉 f4z~/R 0c77K?L!z.^Bfu"RCCv|8у X=`2HDN_fb fhڮ)386.;a*\!0*Dr%8Xy3 f]s<ie_{_w(ƒ}i}@`d?E%d\Xi_CD|mHv׌@^x1.;!S}uP6֦J]C]wKE`X#$r;.DjFwdtGLn+€=ΧVt9GzvB$Ť Su+k`MxfB}z8GUeb^\i:!;`j0;=cOm=,.0`cfvUsOF RFTg}6 IݼSP>tdFfƫTs՝zŅ2(@Χ~ΰ " 8cM#x)>uz)r ഩn;|jz2hDH4 DjZ͌ud"K4)2jknays a~K׽ td!~7 f>f?5>Txm/Cv0ead )2=IVdr߂vk2+&!!'0;IYk~wgXJ=1'  -",7CQ`pǷn\L>3*$! "%*08@IS^hsݣC8 -crżQ"%/;JZsdUG:/%!*4@N\l|܃p^M>2(!!&,4KYhx`N?1'"(07@JS^itؼxj\OB (1Oatµyj[M@4*!%/:FTbr'JT_juǼwi[MA6,# 0;GTao~Ǿ~rg - %vgYK>3) %.9ER`o~òz %,43)$-8CP]lzЈ|q!,:K]pµ}n`SF: #+5@LYgv;DNXco{ĸsdV#,7BO\kyĻxlaV|n`RLYguοuaO>0!'/7@JT_ĸ(N[jh\0>Oau|n`S$,6AcQ@1% ,4JWet鳦?iw{l^(1ο=/ ǻtfWJ>2( 7CO]lz봩7sg[PF<4,myubƺsdVI"+6AN\jyƼvi^RHvkZep|qcU!*4~rf'4CUg{᪞{odYNE<3,%)08@JT^iudDOpaSF:/ )3?KYgv{nbWLA8(5E@80)# &-45-)6FXj~ŻncXOE=5.T0GPYdŴ|hUD\htzk\qø}p繯zod[Q  DMV`jt}iVE5NYeq}ʿxiZ$zmaU +ukaX% T]fp{KVanzɽȾvj^RG=4;K]p|rh_VME>70+%!BJR[>HS^kwȼ -"+5ANƻƽzpf^UME>7).4;BIQZblȸlY")2;ƺ !)4?LZixùs٨xof!&*06JXgv -DKRZbjs| &n{-$ HVdtܩwk^SG=4/͒xoC<72-($! - /kt|$+4>HS_Žt1$ļyqiaZSLF@:51 38=CIOV^emu} 8DŻ~qeYûskd]VPJD?:51-)&# !how (09sʾ(",6B֕|obVK@~voha[UOI/+(%# $'*-GLRʻXdp}< !*5@N\jzܟyl`T%2ARdx𘐉zsmf`ZUOJEA=952/, "47;]cjpw~˻p 5?JUaǻTG:/hwjysmga\VQMIDA/," !"#%&()+.0258;?B^djpv#+3=GS_鬝o`RE=IWfuȾtg[O_ZU@=;86+*))(('(()**DHKOSX\afkqw|;EQ]|m^PC6,";GUcrƼr&fyܘ|vqmhc_9867>@RVY]afjot;ڧzj\M@5$-8ERappcWz{wrnjWKIHGFEEDEEFGHJKMOQSVhlpty} wh,6CP^m}ṭzmaTI>4+Tf~zvsolj[VVUUVVVWXYZ\]_acfhknqtx{ǣʾuӘZbH! * b) "8R  @@wluyϽYɝ,p;xZݻSLSMtH&+\5FSf]({wO#u!]R ?6q _DX;6H{ 'e7rVQhS1 h[K`!(\޻ӌ}ĺ+yE{W`hr'Yl2ITnCIC32탚*9Pr)tHä.8w5縸 ^WVFpݿ[L"i+[LNb:moxg!XŬS ܗ7fv.b]<5Lem\CG.bP_;HS_dc_ױ(zvdf qz4Ȍ-Czt6»IDa. $E1Sli-Htw/6vV.%}-_/3e\BHeQ" Y⑦2BOo-X.ɪnEZ39&;l)iy6*nTDal82<8HFeJBܻcܑ0vw*76kYXĩoS=JT"@x4N+o E>&v!=.f tp!Yd=Xu/r;H2hȗ5<;D1<'Kv-6 ~B *^Nvi4zE)7^f~a결[w4eYNh_r++ѝsI4 Q]ۃɅdܻUNh3i C8iMLtP\Gy+71z|p[U}_* @Kx&,J;:PqNVP2{7VІPٵOݩ s=!N&mL̨վ/cD$gZC;Nm-< 3`f`5Rlii-};HW:q@fĺu`D?k+;`NlwmX0xH;-/n2CQ{cwfLCxbtAkCԹ il:mYqwEk*ɉ(DAwQkro|yo5aϫHV^뙻f`ϻ_0=1!x͋g؝>َucoLU]3Z漂]WR;~0z6q dt3:۩qKJjƒH~t01l"d|R&_{#zJ,Tc@򁷷U]sIm}I!᭣Hɇqq0*GVޙETYa]0M.#O.vGB}u꙱ 8ޥ{_, -q,m5!k\'PH%܊dٞqeC鉁8OsNEQS: %u2Os{h{@S.7jU5X۱xṭ=K"(d\Hpz1z~AK-(ᙋ8~ 42~"r.uTܣ XruIܚs7nvfO=w_MEASE f4e2/IL>5[s{䟝^Y$N:=vh@we,Ҋw7ܳ2yHղ;<U;lAbʜOj;sf"F3nPܗ*nw3PO me-C.eucL $^Ӷ]UYh6Uf/ȝԖ1ۊ{!$eDXC -]V7׌"VsjQ@-εVGq}#ӣkɌL 0>i<5aF"-C㵋kQԋ2gX@Ե5E0R3Pa(Ml;qnnZ~Yěc ݱ g7ZSc+#Lixqi#!]X5۫gx)"!MDͻʺEfѓdZȇ.;vEFp;>Iybط^]_t&Ýw_'ELIUcD* m;X+iܭKCww؏C#{wO/![%[F tbW:jPb!p=¨3!QBإcn(V?'{ޕ?&Q+_Cr绥™!A1٥P#¦9^t訂0)8.rq@[FTA&!YZs>$] K1]P ǼCK7}1̚<6`3>$e29gd;)񉰔sK};! Z IAs}7)Z\[‡y )( v2>wUDx*@NY&ZhLSMPDwk{wÒK/-Đҩ! -Y:l\R/X &3'tEa WO؍7,/r;Pc1;S sF!^C}0 HOU)J>˂zWth̹0KAJz a> ݭn)}"$fFgk>IƋa`jwBO͈LL9Ϧ!>Ѻ⾋j1Z^sWk ;`VR5q$"XCRQS^Ig7yst A!9aoEZ |+TlfD"HAj;ֳʿS*zjf%$;NfzjQHwXƳkif ֠@ݖ,朾 :q ,Uv䅗Vdxh6I2΄jNvx=/妼SCAk>u ]c&WX:!t3πAk b6j̠T@C5a` Siu^>呿/橞3syfdwP!c %NɁ8a0CѩcĘjM\kzG<3ֳ}zxusqpnmhhhiijklmoprtw>ȼi\PE:1޻}}|}~R^kxD8-$&01rvgXI<1& )4@N\k{n`TH?scTF:.'2=zm_ 랏o`QC7,/;GVetՕyl^}jWbp~Ÿ|l\N@4*#-8DRaqӢE:=M_s|hVD5'!)3=µxhYK>2!*5AO^m}rĴ{gUC ˿te (2>LZiyK]qҼqa%0;H̒vi[yS`m{ƹ}m^OA5*!#-8ESbr7+9I[nwdQ;FR_yiZL>2(BP^nøuvfWH;0?L[jz鐃ug)7GYl/'0:ER_lrbSEIWfvtfYLAWs`N=." &0:EQǺ~n^OBr^L<-!&/zķzjXL@5+ /%Нs+#%/;H?%1AȹǻA5*#,?4+" øƵu'1>KZiy㞐*rqaRD.:GVeut!²坍}m]N"+7񹬟$ꨙyhYJ)3@N]l}8H0mtdUF9 -JXhx⺭ufYK?5ͽsRɽ#-9FTdtӊƹ{k\M?3_oɺ0õwgWI2>L[j{%̿ -/:HVfvΆwh '0;ȼ4 Ƚ 򳡎{ŸyiY3@N]m}Ӿxj\N ,:K\p1;GTb081!ʪBȫ24YT̝*ΌX!^bL9}8`h2.q>)y;u9܄@=/,[Щ4*)݄>ӝ:;>3 -@anBe[A4O "4QV1FN$B\_K3|~gJvm.Ʒ܃zZ X[HxK >h)yiab%P8)P`ޔxkW2]_]:0'xŸ:$fE>w0RuxwN-*S3iwCNf('K"9ܥs jY1=p;6ݞm]8DY ɛlD=)$V1U gpX(_gw --6F]lu7xݰl}1R[yȉ:(KB=uJ]bOWw 4FXY+RN%3.oݎhv$:wn\Ump`)# SOէ"L Q[١R]ߩ6P2,3~0[ӝ?It8HSK7x~gQW/H wO8`\/ErmB:r\Av iV]Gwp1lxUP/<]E_LkzիTs᩟2BPk7`m8,2`(u𘳨z^H -(lx-{yqys([ҭҞɾZz0hГ-ʝCO>jn!SlCAo dc΅+۴w0p Ee"]uj*լ(DEENw]1mɍG`2)e=׎b#3XD$l!eJjN{`-ʑ^o͊n&Yd;~hei!:|)bh0û+%foE;o׎wldʅ zt?,C+\;@995 \Woߴ2X-v⾃3i]rлdEH^Kʝ-c\e(mnc&L8:a܋?n|z'x.}0 5*m #k0TT4Oc;FOoT5 i.\ ]+d[ևDM&g! i{x~j˰Ѕ⒚X'$Ё ;Cu@AJfğ\n DB7&Ű^; opAQlĵ@~ZYr8w4o -,ʼy4<7d?vwN =:wwxɈ'(ѦxAI.ݺOzH}-ۤO}_`ob0ս3Gj0UT $YHʾPB6*",8ETcsץzl` ([L>2' )4AO^nɦ{m^Q{)svfWH:/$&1=KZjzRE9/ey݁mZI9+XftǿUeu?PcKYguȻ}m]M@ `ppaS"*5@LZhwxgXk{qbUG;"+5sc$.謟rBO~n^N@4)!+6CQǻteWJWj} ]l{yiYJ<0?M\l|ufXɺ$.tcT$/;HWgwvhYL?4ʽn^OA7DRbr[MA5VƹziYJ=(3}B6'1KXǹ]m}ŸT!*4@udU P/=M_sl'2?M\vgXο`n~TF.:˿*7GX=/":FSbqO  *6CRar5Uh0;HUds%'2>L\l}ö%2Afutd#.:GVfwŸ~o`R3?LYhwN *5BQaqǻqbT5AM[jyǹyiXI;/$[k|ɽtdVH<0'~´s"-9Ф([I9ʽ~m]N?)4AP_pxiZL?4|iWcƹxgWH0>Kʽ}l\L>(3@N^nˀqbEVi|[jŸhydVH;0&RexkXG8*p` *6DRbs#0>pɻ2>M\-;:GUcs! #-9GVfwĸFXj}pWfv̿)4BP`qǺSexƶlYH8+yhXI; - $0?OatD5AO]l´sb!+7ETduvf; ʽ'2?yiZL?]ŸwfUF9-"#.:HW] '3BSv_OA4 *5CQarp`RD7,>󬜌&0!,:J[n˼0]m|ŦtcSD6+)6єn\J:DRap̾~m]M>2÷AR%/:GUdt$.;IXhy Ϳ'1=JXgwL)"  `AW` a 91   ҈~jrӺ0V21UG0 I sivEiرwBwcwIzQ]TO -v7Vw1&E@QX'x?w.1yvN:527݋D$b!0_@>>6j)vXO?lK& 3bW= 9U+F' z%n7a#V|t5o-vG8bkqcp7` !_lv5 -V7.8r/}3w8v#թ*QۻGNBmGF 䣺 8[y(OF 2Zj>]*4TOgGwnʰLIuQ!{z:w.u)9Js׵a4<3(T}v\1XDC=RvXo4Pd8ܽۺB޶",!(oKhEYG/RW,Ơ"8+Ԣ'1S_n\<3Lϒ8(9L:DO ? رy:Jn <Yf53>Xם;p+N`u}5N{Ly2>rP΄tS/vgE@Q9iDK! Hc!ogJP$Keh]dv!o)?gŵ(-'6.v[8gC$Iv%v u|b՗qۦ;h,mg&3M-箒n1Dqb!R' T!sAr"KS}\2ӘЃϷpCJ H׿cawmFu`֕8ʡj!xn| ݅ -i2.yZ|*$@t'k-sQnJnS -ys(R t4ÝPª:5f?&ZDN<,zGeqm =\6k0<3.dz/P,^{21~@IR]ӝ*:IҹZ^Fh*3(D2_ѳ5AK(WT;WW#:XtUfe]l -Ah5g$%)U ȱ%R!W  -'͑ePuRܽ%J3:/>6̣.1a L`WvJa˳d :&O -W2.B ֹz}&T/OGS)'ujuM#ןFP -'lr@1 R Ia@5ZЗQ5}hft2տSW^ꊓ 2&݁˘]o45kǍk掩3.LĢWe&2@H<3Pĩ6F06߿:n&TD?0cuK730<ɝB~-3)~SM,@q.\2͊fhmbNyN1ؾ 1[FP<3.f{fdOT܀:?`^}$_'P MT%Q&ZB +˰K;Ts?)2f쥈n'xSpH+aT"*>T7w@ݱ:TY t+Iٴ׏Nv63RK I=9EXĸ|5$bO}S2Z+1P}ˈ0]ql9.j佇 -&? [H*n4А=oz=y'KHTO ^F oUq>!CDŝ^r1&ox䦝D{KaX -T7 cfP=:oW'rxbhk dE҂þE!;_`'⽡D\QHcPBlNcC.WQ|tmLێgQStags_> -BG!lbpl!s; U}G%x.C6JN^EN L$B -XT)Xw<3?.8SOT0GѐFCÒjfhZ -S_ -)LS-ԼBWCv[DMs!}+h;LWTa2P(8jcSˇu] $!ھ]_D7hQS1uYD9~uǘ>qt*!𐐄Y8$vωG߯t~d_R+9IZl_ )4@M\k{z9+"+6CP_oĶ7!1@Pb5(̿'3@N^o|l]NAIxg.:HXhyƷ; )5BQar̿tdh -!+6YJ;/$%^q̽ucQA2&\ +8H؏~m\L=1%&2?M]n7ܐ}jƹF8,!"-9GWgx $0>NB3_n~o^N@3'(4AĶ9=/#cryhXHYi{|l(5H8+ Ϳm\M>1&N^nȆ&0=JY",9GVgx̿Ǹp_N OXG,WH:-" #.:IXiz?õr s9IZl~{jYI;.$/N_qʼubQA2̿}l[K=0%L\m~OA9HXj}Ŷn[J;-0&2?<0 #/N_qɺtaP@|raQ vf8GXj|lZJ:-"  !*6CQ`q|#}1'3AQbu˽weTC5sbRB5) CRctp`QB .;K[m0$'1K[lٗve6{hWF5BucSTdv&s#.9~ %0=L\m&ǹvdTD 7ETew - &3APatSCm\L%1>M]nȻ|;JZl~ĵn\LȺweTE7 fw(5CSdvʾyfŷ $/=L]oq_N>EFUfxɼ|l *7EUgyͿ{iWG:GWgo ^oaQ %1?Ǹ'2>ɻxfUF8FƸw# !,9G}kYI:-"!*6CRbro^&1?N~m\MtcQB4(;HXhxɼxgVF8N  hJ=@P$r0p IR e33.초{ǂ;v,LpHNϽ H{* S )S+6_"3c CB Lfؠtu/ÿSrp YA,޵7 . 3F)^uI +^8eThSv'2sIk -aEB*#%J)x iXfw KHXb?vZ m dGٟZ6e0K j&=\W*ƖPV>L1~BNZBzeP0F5!8aMvDYq x-bV S<7 J6u>tf --4a";w7oP"SUlB"c/K]ܶ8EK d |} sX> R { |ہw1fƸSgtGAwWH pbZmTzn 0^d"*|mo1!M5d7N)<ȼ*CTg˲:2NOarvP8cIćhDaj YbVWFaT=0֝1 xrBzPd)M.EhHj$mY\ +<XP]Ҩvn_Q k9+ -cPㄘ:^zOy*4(϶8[TćGEi.?b9LvIx|j;9^4"=x94~/{<%ܲ#ȶXL`Aon!)a_AЮk#j/֝Eu;0]w֐ȺCߐ p-Vð$88qYT b lS=ؿ b#=։;Y6'L(mHujI?0 EⴗaN~l7ї1u#_lNd11} -3¼o ^d* _a !C!%nZŁjpq' -4dp'ܵc Az!ޖˇe9a 0s+f* ?! FLMi%jty|B-QV5p2CayICِ*G<3+(;pygh!ZbT8{?g(ozTUk`X7H2Bjaޠ;Z{tHjC2sLa|e돰nÑ^0L To/+G:!b>'=< ?eY@FLn;=t)q4.RH[ΞZm:/5`n=έ_w@`FT`Œ=k.̨v@|@B!j<|掿v#&܆:ώ M+2. ABu3us.i -l;$,ljKO[;K -etl; TW+jqOVHI {f—j -nSރAYHQt5K yӃ=Aw#Ŭ - id/+%E.0-Ei` -3K~nb bR.x_qrDQq&"PE+( 4K~cÌjyHbGau>kBۯ1I,'p_q+ ƒՄVq~s ~z)d=/j -cX!2nj)aJTJY"4`FlBpǀ6Bw((LsC1_bUHo1,+dZ(S-X!MA0#sID?儭d;}\j'E+$F홾D#T!h@T4Cu.5n~5:[X!QjDg!%U?+ew?<WHO&2E1()#eFѱJtw w\%ے;gƎi(HQCB'aDfH97?!Lô=iè(nE -UqPN^9bO?_=ؘ:w!Bx;#=WEmQ5#gjGF܊S(i@ąTK/ސ,1~UfAw S{-WsHT#ܩVvg WL*$R57kR~ѥ9P>5NrwQu4 n! -/Tm3 ^H0c! @4Sb6B_-Uk -P*RlW=) XggRIew ca>s3[(6]TmJvg'o0 i8{!\OȷnkCJRdPO@T&4=Ts9!D6+!~l[J;.#3?N]n~N?ph(4BRcuɻvdSC57DSctʼ!yl³m\K1e >"-=0%n5)&2>M]m~WM^o´+6䣒n\ɻ$/uy { c*~fET7;ۊn69M4~^Nw~e]) e&^KT} k8LglZl(;0E+o方P–BBuxvsCL;[@/̂XeG_AvJX -Zy -Dڍ`1R}'^jzT? qt`S\o|,DT?3S0sRږq }ILYz4I`e A`//+TC_I Zke1& -ÖKLk.s+_Xyz%Zͯ)Y25%5fx!x|j| Uخ1 - ,u>1zP#S4/XHaL~ ˸d؉U k?(kAӋSޑbY0iSjd8 snoKǿ+^iXwu1)zs&|tU/Z=4 = =^뾌Zw5PfA)" u7&E"$427YG!TO܎ߌI -w2zJJEKAsLKMsT1HL]6R :8YP]!QYi|4"#`}w8!᎘nTn܍tCu쁍Ybq{ -et+Du_%"jFdA$a2Sv?C%.y,K૪Jq;7PuC;n,\"V$SЬ>+({{h{7'ISVL-Tr&_=yJ=.e$z"чOƓ f$؆$c]Aw㷔 .,h"/)0f`lpJϫM -&snjIF㖲MB@ʟ ed#AngDC8puns%JUA z] ;(QCIaeD,CnȈ =GģEp`soEW/F}6qwzY} -4W`RF_4EG/ zΟ>"da]cJ~Cё)Y4 4ڝE7Ls+ QpȹHCupͿ;/uE7+8҅sbQBZjhJZl~̿ )m]NɻucQAPas鷧s -#bS%0 0>N_pŷra)5AnygVE7ឍ{8evߓo]#'hyvfV$cu@Ndvk o_PB5*!L\mTF*6DSzhW)6(2?X$/=K/$M^Ĵ!}  -  (2=JWft螏q&ɺ0=M^qxfYgvź(4CSew^M>0MZh>2( K;YͿugXtbQ@2&҅vhZL@".{hW(Hȼ!-:6%1?Oasô\O -רR& 0 @8EHgIbR  qW8/ͿZfN`H:\<\;ww^q1/dp|[$,޹ j+?r2o\*XAzA0PUqv-7])e"&dh VGsw]wj:F&ܚQ}h.ךX2"k9fe[3Bo`fZ+WyU <6v;HQ}oАZNu`F6xU#EamP 6ui~l%= sUhyA4F5C=lJ 'P]ARVD͌h@K|B.6Բ ׸W7L@u&Fukt? &hY]TGiE)G( " .;٦h-&8JeQg3A}X*Ж!Eja^V* hZ@qp02c~|7x/G]AmumOb 2V!lj.Pj4'9pHėAN+@t7ȖDŽFjfF].'+ cȭx8u~99r ,0isJ2~Y-cׄbTgU#QC%& nTJ11Q+S a; -Fw ;G52@F5yuf)3!m"B3݁Zg[kAvLVw;m.5"u-CuهaKʢ@T]&1Ma*`^a_OҾa@@XՐ,;\m -BwELGfs)kռ333?Z dֶOsXrH]pUtJakA2\L]ߪ@ :gk/"h~A8$i_Mb۲(FÊA -SdV!z b㕲u3.`Nhw4I!1KZo!y0dy0Z:Y wHQ 8WpFeqAvs]eL}=l=-u̇Ca$󢕪dfzΌևmwY8(R/dS`e4;wKѓm i  9j4Dw}2)Gժdrn ûQ/gs:d-eNJ' JLVkTgzRH%ͨ+bH™92nc^Lï&rR ,EUgz &/:FR`n}ɾyk]PC8-$p^L=n$ - '0;FSao}zl^PD8.%̾vd2@PbtͿ8+'0;Gɾzl^QD9.% G8Vhzȹ1;GT{l^QE9/&lq^MK\n³ (1/#'0;FR^lyøwi\OC8+'0:EQ]kxvh[NC8.%u8)6Eu'/9DP\jwtgZNB7.%.ȹ !ŵ -&/8CO[hvɿsfYMA7-$;w1?UE%.7BNZgtȽrdXK@6,$*(5D%-7ALYerƼ}pcVJ?5+# 9ȹp^!,:I[mkYI9,! $,6@KWdq~ĺ{naUI>4*" (4̾$0?O`sS #+4?JUbo|¸yl_SG<2)" #ó|i5C "*3=HT`mzwj^QF;1)!Ǹo +9HYl !)2N_rʻtb (0:DP\huƼsfZNC8/&{hVE6'4BSex '/8BNYfrĺ}pdWLA7-%Ʒn[J;+8GXj}ċy%-6@KWcp}{naUJ?5,$ -q˼ta#.Ĵ˼ubQA3&+4=HR^jvĺth\QF<3* -ރp]L<.",9IZln ")2;EO[fr~}q( -D̾2&z LWbnzymaVK@7.& O`r²λtaP@5?IT_úui^RH>4,$!:-m#+359Hŵ8+ ŵ: EOZeq|ƽ|peYOD;2*#Sdw(8AKValw¹wl`UKA8/'!#/=Mɺr`N?0 %-5>GQ\gr~Ǿ~rg\QG=4,%|i #*2:CMWbmyºynbWMC:1)"xfTC  '.6?IS]htǾti^SI?6.'  ]>$+3;DNYcny¹zodYND;3+$ NbN)33  `Ę&  Y1@@7 6$Z$2cf{<&+re YHtwPfjw~fl{ HsCģ逝S皚YƦDzVfVG fƅmS%ԕw'&ֺâ@S2NhI3k=yu`Ʋl.=.L2|#v|7c\Kyw̲Brǝ1[{T@~J0}͹SKjig)׌_wi+5͆_)$Xs:Q-{20EMI\85O<EH>u;#Ū#V5-um(W\-ܜJ #%=:0!adfY)w?QzY|Jʨ0483Eݥ;H˺wGU=vIbTP#P,{ [uF+ <0;8#, n5V"p4x4Vz*V - tμZŢi鈰{>rVp00;^5afԇHjpYغuy2&M np;Z3SG\uVAfB$LMD! D2, !eYR(e``!}e؜aΛr7{swjV, Ji)|~ -?$?C"Q hCaJ 1- a ;Sw"7t=&^~K0xx$Oq|wf~\%ݢvL+8Ls}-cx23e.ED -^"͡sK@M tJ?3d/F꓎ QL(z˘՟>UU)SG#=9A`-3&0{%aūz wTέ,0 >e+LͽZɎ!:Ȅ-E K BLv+uAکzxŸUSc'1ئf@턵LUaˌAZT(S;}3ݪ>fF+0NG9Yѭe[S:sz_=̀{٥TCH4+v} 㘡סϬMo[_0# M2Cjy׵>Kx͞Q뻺:IŴ#&1aFʓ2d@fTh:r4Jϻ޻E;t̅fK]zÀk^7 ?>h`F :%a:z_T_g<)I20s I'L_:tl.?~]  s/ћȨfh5uqX^Y=ĕ;PaݼB[tZ$E -fSL*3wR, 5ޑ;oP&A̐SfƎQVא#w\;;2q?‚tf82XЬ4K&( 23 Ęi΍X -f]K[ޡ5" k.n jTLJ"{Œ' ̀cSBm|{c^8%@λQˮ]o]aG5dhf+mJ}ҘsTJKEw!$N=HI tmns!kSfܱ#DC,$"{kc օ %1@Pb9,! !(/7@JT^itƽui_TJ@7/(! &3AQcvG8+ - %,4FOYcmwļxndZPG>6/("Ǹ$*19AJS\fpzƾ|rg]TKB92+$3BRdv`O>!gU &-4FOXbkuwndZQH?70)# -8GXk7'4$*19@IR[dnxºzpf]SJB:2+% eȹk~ -  &,3;CKT]fpzû|ri_VMD<4-'!#/>M_̽-;K"(.5=EMV_hr{Ľ~tkaXOF>7/ $#)07>FOXajs}ǿvlcZQH@81+$%+18@HPYbkt~ڧwne\SJB:3,& ɹp]K;-"Ϳ &,3:AIQZclvȾyof]TKC<4.'" ,:Jq_ "'-4;BJS[enxƆ|rh^UME=5/(#)6EUh70)$27 5( #)/6=ENXbmyɽ}qf[%o! $*08@IS_kx|obWLC -0n\J -  %,40\n #-9GWh{|jYI;.$RB3/Rd:J\nĴ|iWE3%0%)6Ǹm[Vi|v +9I[m7 ,:JǷlYH8 .=M+9IZmƶ}jš{h%1@*8HZmŴ{hUD(5DT+DUgzlZI9+ *7GYlózfTC3&p]L]vbP?0$οuaO>/#ȹ;s`N=." ˼ͽr_M<.!wcQ.KœL)4  @=`q9"!@XUJ;CiE[Dwd>/i۝2`Z-DYzUC.).dhn* -@t_џ2RX0 .4.{ XLapT%c{? {K NE~ϵG8q wl]PTQwQ G77'b#e2?C򆶔F} b*Mjc:0 H#'?ޅveBt,Lb:v:aXA lITBSWbqجcJ{l1 ?xްcb3*O -3P~R{2#D5Иո i>w]R]Rlt;斜D,>sΠZ-M$~<+^^Z*79ϝjE~2bGjWjksQ 0e ̶hGNjYޅ;Iu+ ZeõW`w%BF .VSX9l]2>$=.}T&Kgfe:82Y8|COڜ)L(\D4CeTREd9_!C YFe%$kmE͖*:!>mFНC kc\ťbw6C3 Q/{/L>gI HlF!!Cn_dw Dk'0x\dw;A 6eӕ>|h ]⚺Lߩedaw%G'eS:0&3x@dCS(|Ta3D]RpirVؗ0%L -/HU `29bL,8H'ː"7q7$U5#Ӫw;>UB ER"QJGh[aӨggV!n*;JgӯfLƑm3g՘zŖ͡IN\7LY =MV53W1c J&ѝVG3 -$Ұn+x1dw3MVT7A)99Ę@e.x.k dIչ㐓pN -3WiFfl;/ԧ$򘚡Oƣ]j-ca9m֤Dv!JR -Kxk)#@'vrN~.wgL>80W"ZfJSwLs͉:f4̘zd,2wvw#bodNMS;6\)}Jv甒kٙԛi ZF$P[;3]5zV^:ukVxOHƒSCQb!3<R~k-Z<{: -,nf)3P#|]2ww͈n!ߙh0co(w -'9Ry`698A -0Ude"1"k -ZmA/hABT݉ʢِYf|d-#Q,CCH-e - tAփ #ZPV$,ɹnZI9+ sa\ȸdR}jXF7*ǷkXq|hVEv~jWE6(ǷlZDUgz?ŵ|iVUʒȹgUtaO>0$\oBퟍòyeSĴwubP±xdQ@1%(mɺp]Lvc*ubOM_r#²οt`N=/I[ο;s_M<."6EWhVDq̽r3BR'4CTgz˼p]K; #7FWiVE6ʻo\J:,  -s`N[nn[wd` mZH8*ó{g?PbuɺȸG1~kXG7*ӥ~kXF6)(5 +9HZlοh!,={gTC4&±yN`sȸózfS²&3yf ,6EWi}s^Lcȸ+²yfT -endstream endobj 26 0 obj <>stream - -}0,cvYlvcP,:K\=M_T| ?PbvgzVh|*7GYkubOɳ5R!-wUh{>Oat; %2ARd~dwʻ-0 بBJ H -1Y FA B XpJsEPH}AzGs;o1;)"+})G'=!(}c*Sz-8arvKo;52z=vZ]O^6 /țD| I2!iYƴGrk@Ltoyrg7@`.o~2;WrR]k asa;PMOqK^<@y˨濫4Dd/ʾ N(Ry(%ب[{jLBgcR}~w2 +:< %P!qԘ! fL2]Ѐ8`1n'u'Dy?" &1{ҡVU/$U0r|M N z7Eڬ z#h:SfE8<}ؙ-ZE9ːcfHGg?J etǔ-l)"ur qcI-bRШgɭj/nA^HVÏSyT}*X mwXRjV2ЗЂhO}s!H{h2}3\wG9qαBgIu[L!NIJ:3PAA5 ^!1;ek$x\u~n1դA/x8PjkO &OHL^y,/G(nB)=VͬAd&IBcv9C<˔K b+0+ zճh x?J"J"2${weMm| -VO8*RfIpwWTP83qw#;̫2U1XR'3`@P<dFhН2Z&2R&${/|1$9Jv9P:,r%S$'5H?lxL 0DwQ2:P 'H'Tb?(Pd(j!쓭 -TSeAwn̮)Ĵ7@Ծ Haي!}^'FYНBtl$ k^ QcRHdN9U,Q~R#4]NDFP-52!n ?,bHd|ɇSȇk 3OY͓pRp6 w4iJJRhTt's z%uF5毹jA>S2 -WC1 -o}r Pl Jj3pR:4gz -ofgDW| -CF4& Dbk;JEwvkpL~,l^wKZ^\1C򾤋tg}*ӛARYRaOUݙՋ[a b -ɰF2MTtw\/0a);TlK[@26kgñBR@ l m\ ǵ1.l89XU;0ӠU|7 I }S}=2\\*2PBT.OYT͈'iq^:N;?~Rn'f0HB"MyoGzZ&($uIۀTibr kb۳.vVQtGzaɵ^+4/ê Is]^Q,;*j-P>&Sd2`W!!;E;:w(Fa)GF&')CmA%-L2Ph6.r_^v3ΡoyuW7S'TE %Ru|n ?k Uл,/L;dOt{/7@@?4Т#XhtՅ4A$4egRw@܂/^D#7eOu9 鞬$gB6oh=뻪EVIZm8Dzzgj}wdQ@2±tw殿-½*HEVi|ƽ̽)7GXǽ~{ywvwy{~}vpkhfdcbcdfhkpv}2Ÿxnf_ZVSRQPPOPPQRSVZ_fnx#/>Nat=Mn[̿wk`WPJFCA@???>???@ACFJPW`kw;L^q(ǷkY|m`TJB<8521000/0001258,ŨNj1Mӿ z%Z+t}!,^H`ԥ0/e).~o/`%&j&?k B@kF_0x_0u/q\EU{!ikdP;uw3=^*nwLhPcE..JwU 0| -ޕ 2["Wo4/}{'ҍ:%lS Za Z.^&uMΘvկ6MpEԞL]aC =Oy"" N,~ Y&Iu Ttinu,HlZHRYO,vX*5q m{lz''aH[唄w@/Ս<dWНb0Bٕ?wL+=ttzGhiLE>.sn_ڻ[ !\tG)sQc'|p -[qD/WF߂Jw(7I lo>A(0`^}A~Kȭ:#~rW8rA@L7t'n0ҝ!wD'Lڸg$I\֊oGUvt=i^.i?g V!m͸ACj$ -!T!}l!$ȳ9r]t*RPMS&)%!1Q sHl=N'{v_6qYbEtPb(1B($-yn S|6v_0I ZcTgwf? )aO_Cu;^ˈFcuD6Ɏ j\GKH5qbO2 v@Nջze)i^aݠXTKfy8L -)6 қta*)É$1$ +9J±wdR0?ObupB:Wp\cex8G -!'4DUh < n[I jdYc+9IZnu#YI +9J[ot):ziYJ<0&BôE9ټ#*)Ķyj9̿vhYL@ۺufXK?0>Oate7Źscvĸdw÷ey÷Wbϖ&J?p{>3'4Cy -<rdWJ>3)!irdVߎrdVI=3)! -6c·rcVI=2) M -61ިHC -(!a! -KHf) !@ `raNOOԻUExF|,3xWjS߉Mz*(b$U"2:ƺx24QkȼA\Ɔ, -H{zgUKWzH<]Kdi8dk'v>|RR߭Xw[^}@Uq*nå!ި4E6]jD "DZ=J(Fss-3}.hgHPM5gbLqT@ŕ޹T,;;͠wjR5E4n'cIPr[ƳH- -cF)w$H\nm?@Y4B;B|-v,c}#օZ3X 8&}6pwPAqiQN]dT Ud=V/ Lr<|)|tZ2lAU/Um]aY.%%TYɽWn]lFi«0Kv6O5mGr{fkaf +IpHm^eUaYw\K63b.5H<;'.6e -A 7t0n k煠wnGL%a-7B7*_etQ/hPPqk_3>PS[AG*o0D]T 96jKÖ[am0҄>vhP]Sr\ NQX:Qȟ( G #E^Gs9ݑ,Mky1 hztkX=jJb~`-mjk]S;#\H*t:8*4l]?񱧑%%L $@ȹG⭊| -OTl* -~ -q<_s( ~, -jY. В b A*C>Vr;LOtq0.Y UmµA4jD ,V3dK quty`~)BTpzkٖnfcԵ?<2rcOF1F.a:\\WF`:1HYD\;ò:/ԱLJ&!6Fxy!cE[L_mɲqd;ĘC;?!Co.&@?7] tUdLZy -|л* -*v$>U.87͇:zՄE-xAd9wm b qt3 N_#6jz@&93DfE.$C *0k`7-Hk8\]r)A]IPg!{C;t̻H3QװwE V:}Ye a!Ͳb,kSHWfR(ըVf(CА}rGZ҅ۻT:_ .X3牳} nQt , qcUξtc¶qcUH=2( [n=/v¶pbUHz'C* 1a a5r<&K4c.P_cav$v/cXۤ3 ,-JXsJ@hOepqݩ}.S6\P؆N;JSm5(JAc1B0Tլe:Nc}|!{VRCir )~۰h82N]t'*pL*i] |Фw *AP5Ř܃RS"KylhYEjH)+<4:8MHм[ CwF(Yk2YC BHg_enf4C>5 וkDn烵 P٨BF}[LWN9ă;;)`P_d_OڃmT~bЃ) 햩2B"%d aJ6N.(#E42"ac`QTNn-D -V'3R)U.#; ^? -L[V2&h-ZD`Ig5*M1wy7cL\~55)e/%SFڝIYCqBi*4p^]z7ӔFTl:qTP1f!KA0l:%culwݭ&&# -Ɲ|Xz:Riu+p1M#\wIjECᅟN7c:@{o0;Ū|!j/lB_y_٤dT+IH59ыsd2֧\h!pFטz7lnX~oE\rP͜qjFu\D:;2ȒRVca`E$hJkSFWb/sKz! * -MU0ߟOxRNkļrKD!12ZWF@eDSɛ1 ia5dx+:rӘU^++gJs -bzFcCDB&7vkjG+e*Euwc9[n}+;0tM@ uaՊ0%54[}F؅U"+5Nph컆!w_F*׈ Tq1Z|kLkrVNn_`DМ!{f@ўWgwm5רjBp(4CQP,.)y  >ҥױqC|H; RSNj| CZf}B:*G|B+ q6Ќ.ޝ}BP_bފ:{S2Od@d#P;3Ly^扴׈;%dTcL"2 hax=9QZMP(~a8 LfGQ &ݝstTڎ7LH KAy]gv;- -a oQtYxW9/ה\G2>߉tMj^|V9ۀsVUPAtw(÷*&蝿 ޖzxnJ}=Q@XM푅#"O.屎M;w*8fX _j -57 O7@:wWEÜJJwOzւk_#Ј7;uثEAPo|i7''?]`N y vW/)\?`zxe= ,|7 -9yu,,%y .b)(yC*Ƙ Y ^tRU.jҽ4z7w.x`OaoKf%v M0P;Aǹǒ@Dp:FN4F.akcJ\~tG:1J9s7 Ğr/rLd;4<&s;'?|G]GYT6mFXouUU;A%T0S4LsQC'W,o[^f~fPg+ ocȻff_ 9>˵c'&.8;)3W qb=+!C%aC= t}^_@])һPjd [R|#5jwFPAB{FΓjkÞ.]|elN>($p)K֩KZG˔(Fһ5ь #F`i$FDqVEQ~ -מ*Ғ410=h8OcH$$yDVC+{֑p_&hBY"Ⱥ.A[{5dוC%bO#';4,2x\tG8Kջpz*$@{G IdjL{`M]Q] -BӍ+${V2g .һ4՘KðTzXp 9 fYh15jq3;;ufP db Xm -Rѽuw.H(ww+!6j؎ER@\}Jo AHL޹`BCl.)cjr?-ȼ ?ejM/[ia؆}H'n#`p3"fFՁur)#@k@Qh/Ì@?o%ȻmwY\ )rp슩3AE0&חkպJ2&toUMNӧ7U1e Ȼӻ {DV^% i<55OSowۧwKfD6U@ǔ>*XJwIPvP Lh7u/`u!AEE;wEvB0M>'P`8Ȣ2xwG1UXxݘVND}VU`Kҍ"s Y5?Tu4chʘo)TlE:*=!h>ɺ2"/=N_;ƺ6:)9I[r1疎vta-;L? n*7FXw-;m=r_7Fw2ó+höŸqcȼsdgXK 囋{k\NA5+UDr|(ˆVG:.$JsudSȺ˽!?1scTF9.ǺOB6_q{2$ @ p`R( -Ia@@$2Ǣ:546vDqhc3 /.2y(b$/CB%&DY!d}g'uhzo*zW|.Mm~bU*6؄tő)S -[FTwi΁tnwrpGG6+3)yRS=b J WG]Yάj|ރ,B#ĶGz]=N?i\A FWK3 -Ru1D:<{Lxކ׊w <B$!66/# -'^P!hBV%ECov[:uwS壯؝:2%(ChkJxy/J4pvŠ3*0+J$cL GuCnA3nzL쯥UpZ :&#ˆqR\{jw uO$35&! `QwdUwID*Mnj,df~b(+unJtb l;F~vg"͚J80qR)䚾z ncDWew& ;NYzQjpt#K˯"8ѭPm[ewam)9չ-flYz2ddsTP؂_ -FuD.' -cmr5rƦA X/wsӰib7&+7Sg=ެw)Ô]C!C4Rmg:t#brg]cG]"i/ 稞l&B\ry7zǥNlrcs5Be2g-U쎎$ZGq˻wV)ls%q2t?LL'[- k;)s,0W]հw$՟hLS;=˥]\W;BX lbT$p$ %M˻nwl*]괃>&3]N l{PS\c S;;P52'2zyLdZ`ȩ0r.A%k~,YT-=<:):Ǹ֑$UmYYNxL7re=6 %B Y$E4Zo*K,*D ŋlgj@quu6x;7D|YޝX]#jɔђܩ.ٖp? 2l?"屃^"F^x.֏[8y;(A2{qne#2PW XwҤ~ƣ'ay9L(LXF*4蝣\ oV@c禊QdeR+jHo]EJo;վ,CMSW ?d!Lv|TOo;];TeoV0!'h0Cx )W=)%|^O C;ElU -eʁEL2GJ8;wZ#Q5շwf+q'UV誼31z5ulU_&Mx2RYsQL{Q4T\*Q<3lJesL0q%$97Y#=)Gh(dE4ZHwhYLɺqɽteWJƺ(<18HYk~vo-;K7a%7̽,zJ+ -*c_".,Ϙx^Kߕ]^2:5G&↾NzT<Ùz:Ca~!Hd"=OD8&*;w8qĔcG XqLJfffWwVfǭ!+}5 Jz`$[`8C1Iu/2Ug[X4N.$ctl-CI#E[%(q1lH}q IBMGF;2FB/1z(qYdF"E(ߨk:NZS))wHĔSk%#+ȵ+{'yްN2#08Nһ=ſ6Au+E@r/6 &gٷGq &_]&{$3hŖBR}ǫe|0HaգwN~^ -a;*WP}=r(!dPeG -3I}Ibft@a憁oC vI^d6˜(*̀*}9z7*3V:KDeu"|ZZ1@m@wxg2#ry-qsdufK9FebBH"鼖X3{= Ϸ`點ѻM|t9?Qj~adt7lޡz!$^LTXӑ:/#Ӵr9ܡ!BE-,iJV©j#L}3uGlPfN_ !qJԿ!kK&XYM0Zѻ2GϽ{tRjcA3j޽@ȅ28DNe`)s"A pae * KꅐP%"5%B|k뼸ʠ߄J*: ZwlމAP/X -ǗF\S.ΝE¨҈ޝf^ @43]`L7Bp?eo0'RUkʌaUeC -l@%;ʊ"5 +JjwwL j>;0$KJ@gmx@TSU5Ŏ&D8 -w ],ght-VNnXHZ2`p!; 6J쎫rY֑A2ZUu}Íc.ae ~i|e9[oXjwBҜc0ZFGaD:dwۈ̱&[;;Ch!CfՆ1R,6x3OήBxn퀺1Ȩuwz'DϐM^ I{> )=C5犅 ).˟DLZл P6 -2u~Sng^LEWo.fʃU7$0ҴiƠj>P+TF$ !t31x;n;&:ts<*6EVgz]M>#p_Ocv NygV NŶvcʾrbRµyiZK=~o_Q7rcUG;/%rn]źtfźug/9!vhZdv)O6,#:M=Nz5 $0=M^)5CTJtb".;J[m ˽$kKDP-E{i!,ƺaĵ)ԨC G()d`0 9@ HjGagK!JFY~np;0o. _-FZ!x(vzr4ln0ᚺZ0:WoR X5|E bHAlC/v 5}cҁx Ra3eUkYvciJBKKӽ;GVT׏J>[.OT^? gmx]Q$ |ϊpR:PТoEJᬹ'AQ 0o0KXǻw*a bwƒz! C3M -qطKxb!{NNJ=OWI_Ga[o,h)ȓh!]x'Nұr`r&+1-R7xB?f x70l9$Z{%Of>J7Q!jy-:ﬓUNxKs][Qd"̰u3bwlfAp|(* &ͫqjG >Ӽ絃̊ Rz'!.vKs H)_C`Bx4(f8!NIeuKsݖjS{7,,s^G -ZL3m: $Cvݼ;Vz7_;kJdeӏ˄Aec "T$S*`J ;Kā#/;Ͷ<Յ5a\k2%3ڭDjW~aKj靷-bOHGL 52n 0>5N Irj[\ztHir/y~fpL[Ȳm`Fu 1 OR ^zgd2)dx񑖙&;36U-ӒZ0 ,@w4L5ZFғ@L#(J @7ŻYH8.$cI;d^r,3쇥An!{l[dzEgķ8/`!M;o+Q4A0c(m3$Nڷhgΐ0;Tӿ@Lspw^FmaN+:Q 5ʒd7"4*Ɨ!jBB$Ƒv/fE dT*%=kGpBjZr8X;CJ`<\ө |cmTAמлp{TsG0pavu Rbd뎢BBXNs  j^Y Xl:H Z<+-һ rLbTfCAQE֐PwO&7Yc~s$;K\'1 T(Q`?R*;\H+!IbN G#.םywbbf|+:-KDT^_jm_@R.C 9n& ^`t-c* - _]qJTP`Uy$Yh6\RM"#'j0HW >}V]M_qŶO?zk^+8GXi˽l^P'ĶQ,9魜 -&2@O_qDUfyhz]M>+8cw_1)6E^1+1,_G%l&2?O2 -Q"% ʼygVF8,/'3@O`q2&ķ}n`-9HX𭜋y枏paS(3AP`rKq`O@H6*7EzhXHƸxhY O`Ķrn^OA #.;IYj|hVF8{jYI:.#ɺveUF8-#)5BRbto$/M]n%yȺw'2@N_pq³?| G{~k4$  09@II @xVpxr@BH}Yf5v.ӎn{= -wk#GA(:rÈ3gzWk5^ڒV5b=nzQC:G5\ReL,hכ:n%X1Q{^lzWfXmߊ:V=of$nSi,̄kM ;:RDBLz\.G']fj ?~#qtKE%Rtt>CAdaC2I䎥A@{p({QT[oZYHdRrS+E6[˾6|F?f!ᳵٿH#lt#d|Ud zAٙN,4Ĭ727{#sMTN!5!<뽿 -hE.wWлYtQ"w/V4<.Fdja`cwR`y+w)QQ*tlڬc;~T&tAΧ& tPH. 圏5ޯ@K~Mv79 |#*:͈ Ww0G -^B.Dr] < -At˨QpG/h@B'j 2ruN%8msWD=TiF -Q{f0զ'< `ƟR5#LR De׷-%{c{pQ n@ h+K!c/ -XOĕ"гe\,iβbkayKXܷJ5tb^i5p]"\ |@߽=c`wDcw;9@Bq{סE@$%A*qԛvw wi"p3cN@&yB3!IE - $aܣ*-@!Q8VW c@w<S9ȴUo$Xť4)U} - 5 z0Ö]7?'*)Bbwz>ʳ5u^wsvӪ@tjPXt[)tC#p+;hHSZ.=m=NrT9lAwsTmP̀c9S+5WY`$TݤdsQs&SQ=1Jà].8 1'X݆v7$(tFKuZl-+[b5!XSWG];WjQa| 'BwV}xQ*ZoُfQ>H 3FjĻYuyr2cOvu=;N x'лR*2#zْqIb6M/LmGҨ6l>b/ duT?6v>;oRu ʐwLA{ "0SXeOa|CEҷu̿"_O-P<]л# Yh2zP~aEti2RKQUYÁx'D zPy'v]8&暴Fe:(Hc.pjder.NHw>)*}DI3!IXЙ1l޿ s7o -}Yski&1\ ;ipxpBacAGN?$&]j@4]eN8d"zWN(XJmV];rL&G.>7Qr2zj(Te+;Sw:j19L4C],q|Ѱ8?)\ A37 SAM{ #}nsJFCn׆n\@hxGRҲ)AwBޕ|s7Н K;4F\ uڝY\"W΀1-0rBlGhgUWЂycxAl s3[7;ߢw:e2"A2k :*mnajRzYPsv Vtшx']!Ad:ܶ&]_|09 - 8UiHA@ʝ;]s,&Al -X0 p,.9ֆ'+tmnF|k.`L:v7`NtO$[T <[ߎ-W4j;iޅnpf9]$CRbsŶl 0=L]n̿}l[K< -;7ETdv udTD"&1?M^&, xgV3AO`q㕃p´p_OAiʼzi *ĶL+bveUE8+?"}j-t #ʽ|kZmZI¨udTE7n^NǺq [v$'2?N^^/e*5C&1=L[l}M>",9墲!6jz&ɼ{jSct3̿o^O@$.;HXhy!݋ziYIM\l} ~n] -#.:GVfwxq&1>L[k|³}m\M#-9GeŸw BQ`qraRC6+!{wɼevmŷP`p duՌ0o/ +/NkzUR8\7`(o/#wkw~1$93^F+T/A6?]"ׁnm>V9&F݊;IFF}T˭1^!R}!\TYFb ]t6O &y}]eEg†0wQgmt-"z#0W ՝ ILq5: q0 -{^F=U+]A>>@]&-6*391m[cg-P} q^˸0뎘-NU`!'܇yj0ت[>?$ R13/BمU(m{IE,noluKl=-JF]eH~IQwB)}]9wbYt_B<&@e>\w[ꈙ?c-5Ô1{U#F,S2fѩ__[ ̱'CY$Nk977$\C2dە/EpulawbmQy{7?v]o;g@ESwn_̩c"fؿ5aMjDM [lk$.NY[ S?BVzf z~8جB(ȉj Jl*#r.C*PH -BjXz -M`-ޱcair:л(-hn}'UkYQ r4Ĩݥ *Z8]T -zg Se=FN@xmJ'k$NkJG2,T RG zkUWjl0M54XPv|fG&"6o+ zR]hWsבYn*k<)P[=);!'gi_YoY0jqv%R 9iu+_~=b[Cp'FyECrл$ p%^4+2@ňG])E5zb1RT9H1yyJulJx_vn9eh2=1޹!?LgZ|\B4\z+Au_ozGjb'iF1;gDYHWXܪK!S {E~ZSY?"-[@*L0R~b*kt+َfq(ͭEhn"*wCsNpćtdki[`*뭭mIo0zg6!]2Ec1֪#S//N YUUH9K=]k>.muȱ!uoϣw@6ӞR7,/mw%e['&'䃤&S j15Bz{SлCOjMaeEBh+H@=? }ZϕBjk2OCBF@LSLhk22=H1F_FռRM"+i4V] 8#S鉫E#~ 7Jd*r!zL6~QadRbzbADtc>7u>+S -)ȗ>A)faLZUhQōē0O<*cm_V_u:Uk:6t|=X(i˷qd9$f:!+6CQaqL\l|ʽziXH:-$w'3+7DRbr׊ygtcTE8-(3&o_OA5%0nueV*5BP^n~qa̿띍|l]N%/;HVfvŷĶxhYJ=1",7DRaq$)4AN]m}raQB4p`'1=KYiy\M@:GVeu3,du̿|̾~l\'2>ϦNiYXYJ=6#,8³p'3/%!*5AO^!,8ɼD7,(2>LZ̿~m%0}m]OWf+öyiZ$-9E.;IXhyufWI"+6CP_n~(3rbƹ"䝎~n_QC'2=JXgw]&0ķ{k %/;GUdtõQarhYK>2'#-8ERap˿BqbSE?M[jzŸvfĹ}n^PC =JXgvzk\sr)4BP` XH<0&&2>M\m}TF9.!*, *6DRbsƹ~o_QD7-#k}53$ @Q7PGA aA6çZrdDM:U'p8|Z`%(SFNc:X#:e~$u;7x_Tu"3H3 |h1㒲ZSO]4$0 ի]h{`zWBfR/]Su,L>}HK3,Ì$k½2☁ΝI=t 맦Gwd;zHAԵDNܠj V ^'s &[zTT 5&` ejjA>̡)|A=̑Z{iƹ6LA\; NUw@L.Jye9y;Bc_|K(io 4Z@jATђ39 2E@4d^ևn9?]-R>z_|jv S'QIaD#_ D^o߾K_A -! -mp̵\#'^ij WWT;Iꙑz纤@n}WA F[ѭRϨ3|Ӗ"foCuk@iaajAP٬%y2;z*YRG#,].8f PjisnEXdW!?(CC -űC*\󼧦;ITcDw#Z!,*"C#b:"Ѧki]yvHUk4=rY@X d -OXeZME;m'п.s!ӭ8Uq -+M~˦TH*X)W }0hLcQqnCҰJI>%5 -g}BQHaN3¯ _jO$9{H!S97T5!bxߎk0 -)+ЁM(.CfîpaV8Z$Su,fX -l=fN? V.V[C-!'uS2TV,],1ȍRB18,JÕ<{Px[s_Cʉ 'ҺFA2-:CP%m5G_ -7cT>+I7lj{?H>inABB4*b(egʱE]f(iA ;Bƌa9l5<>Lr@>8(GS֣TߢT)Rm $l4 b!p /:Ɋ[ v2(e_G"xw:LTt"Yk:2Vy{G$O,8T.Y-a>+qRӠE#e24qw?:ҩ`EtQ9=16R)XsܽVO+?.Kd1,|7K sm$#vf;ЬRva>]Q^0feXP-M!ѽY`kRco U+`njU/jTI1SQm)N[b9 zT -mXćY׫Uйc'%sm8T0u!iA(c;yA 8G6b]ؙTb ;g 2m]XƆi564wJ~C!LoP!\,'&5=8*^FR34PˠeHaz=ilл!yKN[" -H&mVdǷʰc9B -t-Fڗa#wWԺ. e%$&{+SLi%2X(z;T͛.c2љі8(jWz}|I(ȻZJ$/l]OKYhw~m]1ö'1L\l}teWI=z#-7CP_m}  *6CRaH 3BO]k{y$.:HWgw/ix˾'2?}n`Q !+6CRbr(2=JWetz -$.;HWgxzk\NA6'1JXftVfvzk1>KYhxĸ(2=IVʿ*5AN]kŹrcT(1L[j{~p#,6AN[iw˿r -!*5BP_o~MZhwwfWHTct+5@MZhvƹ?hxLYgu)3@N]"ftŨ=eu܉4?KXft}ym n~0&#+5襕LF  F1Q``EIa@? ^86q--\#6wzIg;3I_ ƨ~C^tZnOH';6.XC hWQb<$Y'`/i5 I -x\amw}׽h% :u%SH`N5=;RN7NwDHX7OCr.qKm?Wwh D:Inmûau"jEMm6U}.bMBjR*BB$\!ĻǾ" v63Zu݊jx~#NjEďARw WkLG~xWwfp +I_=cjHӸ+c8TGK! xiF|B&L R4}1K 4ЪjGն?~ypeIû#1 ;Smp3Ҽ[Ô@u=t@X'&2֫`+}2a8&5Z\ -{ Z?ٳ VVm~%c !GshT^"gTW DxǶJj9bW|1'/`O3ɩֵRExE~ 1b:B>'VG-ŻY,-y^n0EPZsrcra;±TƓҕ֎^Іc9rL](7n%N=4Ug,'NpN$w8Yچ!:#m^ m1؍6 H[if~k`n>s3R˜~Ԙ {n&s\w~5|mŌ?SZ"Y?yT?/~6ryj(a-IL,jjTY=GFW;|/;3n#d/Wyr̈cNFwټ nޣ,ՠXٲ}=;h^+2Շ0iNSX%0#ٖFp̝~S+ %/$[=#'X;CDZA&#C{wI; ž@&ShK2,Z͏:I`:F̱ vs-~A,9̓9Tb f =/S+ͱ`-<].b -29  3nGXEXm!N0*#_]?X͌0~Y;3)= 0ܽwr0S17O<:T%*SM$,) -f Sh* -ĵ]+m^ ;ƯkY`]N7KmaTM2 _0XOm3M3C @5Vp] cB:0e}N40 GA/-7ALI &5Xf+f@ 'R03Ըoeh/ǻf~?j 'ıaBj"$JpeOFY8".*n &dL\v26#-߁fc]΅\HF -j8v -32gcүaXe2W2j_ y$F{ԅ [TBK:v/ [>z@ %/[=6J0?jsiE[ X;$eF;yAբevf 3c=E-H`c6Ą )N0!ᡫa~1@1%Wt$Jܦ;35m_}m/#f -, .GHG6&K8e ڄ/YdU+ gNbغk;jvsl2;J>鞺gˎNr*+)0CFov -%bݽHo[ -199%0Xb3.jm'NIP`R1cai8n/ԉ S\Sq/C&9m5 I%ޡ$5?_& Rd U+&LLigF<>Bc<7Za_ -1π=!Qǖ4_jCEqj樏̀c$^h pAV;N39ǃhbviî(3 BZfckgvZ}lPN{&<NQy_mc-cq; L?crvBAJU-uRԯO(buPRkj̍!x~d#Rd(vl XS?0%fZ[S;]$L2mzgDkF+Qeow8אAoWp箸aNއԑB_ːw}& *Y;81V*}=kl6vz6ifJe 4AZlzTPƞpi]"U/SRq%z+ EuN^kB~2̂td8@ Lǻ}m{m_R #,5@LYr!*5B 6v-޲`SG$,6AMYgzj%0;I|n`S$-6AMZguB5*(2?L[jz򦘊|n)-7BNZh-}oaTH= [hvqʿ~pbUI=3*!8CO[iw HcVI>3*"\iw>KqcVJ>4+" &/9DP]jx篠qaRD]m}rdWK^ky˿reXK@5,$ (K>2%/:sfYLA6-$ (1;FR_lzŸ|l\N@4Yh¶tgZMB7-% !)2IUbo}vgWI<1&$.9FTbrwj]PEb5?JVcq~yj[L?3) [huƼ}pcWK@6-JWdrƹo`4@M\jzeYMB8.*s"*3IUanWI3(FTbqøK@6-_")1;EP\htyiHVdsźeYMC9+4=GS^kw{(2>JXgvߎth\P}n_Q)4wk^SH= ͫpaS+5AN\znaVJP[gsrcUG eҴJ!  %!XAa 5q+;MwM0cSc63t|G ]/C#̌۟^Pzi*>nFo-~"}1"H WqU+Q&2`[˘ Vwh2ePa] .U~(Ω!]b9Xl w @ ѻ»Uʼn]q ;w}.ۑ8W5f,]lI_Lo_5ڐwBz6\Gd̛w ;L&ifB$ɫ'w}Cft6>vdr!pWˠ.y^@-ffT"@'H"eQB@ęcRwZR!:G~jO0 1E . '`Y -,2H+pMynSV:[ûjBߍ=sϕKg&xYʰpdW}3Ie+xVFH&t;+^.Hy);.%J(r7pFBՍ2_AϬ2!YmK$w0cNdPϹ\Ur@bIE@>Il.M _neLK2 ޅ^bU3ugƘkG\.4ErDHxb:r B:85<.>$޵ |s/bUբGQiF*BfoNiVҭ-bRjS'VwV`6Lu; F-OֆvjrDu`-;dn0ۘ>uwAʻ8DPhp;ZRRu% !^)f<&2nxD>yWJ}NʼHXxfj -j:6XV3Q+5!! -$ђw!56ff$A_"dw'jmJkϰxFT`wA4MbFm⻼~\Sx)^rC ߅0)S^&:Tsh:̺!U2 m`\eT); ]d_3.GH0TfLvN1Tc3Z43da.Ȅy;{w[%ݏqSVcjk[-T3kN\GO 5W\K RwT&gL)xjkx9)Z+++<ɻeN'xdχ桟'VpwM|Fl;veцYr5T+ "UiE.tȿMkۍM8׉E4e* ق+vƍ'l.vwNT ۴+h-reqUsI .!wy`Έ%ϸ@44'&x;PD$i)w!ezDJ޸;Q}t;Ji+&|w"Ķu Nw3¾o*S*o-Ї m 3;M[G]-I$4R8mb6ּ;Admx7]>{EL ꘡w-KpRӀ5-wBKs`W3)  %/:FSbpȾwk_SH>!(09CLA7/' #*2IS_kwXg䦚ui]RGALWbn{ҶLZhwﴩylaUJ@6.&"*2;DOZfr~ĸ[|pdXMC9,5>HR^iv ĺth\QF<37AKVamysd^m|xk`T2:DNYeq}>2(n}{o4>GR]iuԋsg\QFhZLUcqƼwk`UJ@7.' #ꤖxj[IVdsɿ{odXNC:1&-5>H˿ )2>¹G=5!(08BLVb!)3?KXfużxlaUKA8$+3GQ\gr}vhZM1;GT~rg\RH1:BLValwwh[MAbq¹xla &-5>GQ[fq|ƽ}9BLV`kvxj\Nrw'.p|=ż/'!+2:yk]OC8-$VmC*ż7 -$+2:Czmb\h]SI@8#|;DMWalwQD9/%xmcXOE=4-& # -X峩~si^TKB91*,6A =EOyo.};$*29BKŽLC6>GPZdoyW{p#DMV`jurƾwlbXNE=5. #R\fq{ykJWº}sh^TKN!'.5=FOXblwƻPDǿyod[N %,3:CKU^is}ƻ ->JVdrĻ=5.'!J` `DX'AB @ R ].ψ>۝겂2`.~e  -QnhZ0hL @JlM@=V;_I}Xzi;DiF2Acqu)1;TwT`w y@+Q\-^;U+$#w)2ܝY ->w{4#b7ȩН=g~hS?.ȒyiX;_ɿ1۶e)Y`w#u 3;NT1>R,j 杈%; alRwCV0CY+",tǩW`wnzߑUc_Ի@t J;zIj.ƹ]IT02\Z/b@rDw.LVw^n~^Ӓne\,ם%+0EA -rwΫ޹S{B]+xľ|Tto3vk&;J1J3uZ}[x@QeAntWک9ɻB<0;GӇ3MB%e]k=hq< "ҝ_trve3؍%KyBYcS2"_P;Ƕ%y7n{J^Iw:$·:=MwzjT4=c<"Qr ]a I|k}]#J+"ޜA#B֛K;|Iyk 1/g8:hy5Դ~6#J3KLy=rw1=ߞFǸ^w^ߵ/ - JE -jd;O/#S5/Ih2+?{B;2nf`٭Myys8a&/Hˉ*cߘ};R6j5C;}_@2Ϊɳ}v9)2BȝzSKx|G i"Rb޾ 8Di_}WjT/؉Y#Twd8z<Ơ-CSd?"u̐|wT}rCwůQ֮?s%b,Cj%Z:DNW| As*IyHdz8.\D+L\L.Yn-2>HA uS~==v.F4MmaoM[_Wx"qr;S]f$EQ4:Jv)TgCpJlv]'QZgw-G Q3΍SL3dO'3w}hc(͚{@|`VUS5)dԌh;ZR͊;pl_Q=&`~Z»1 --~jƣww`]Wo82mB`,1{\sI\<_А;{2SөНew wBDp6D ͌(4)%Ѡz6ZвtBJ3ebit4s -4w -ʌ]չfWqy VbF -($HQ[eoyؔxj3>JVcq|rgoa"(.5=ENXakv񮡓xj\PD8.!*3>IƽyndZQH?80*# CKU^hr}i\OC8.%=IUbpú(" $*18@IR[eoy撄wi[)2=Hh^UKC;3,& #)/6>vh|Žyoe[RIA91+% !'-470) :BJS\fpz·;}si`VM %+18@HQZcmwtfYLӢ{qg]TKC;4-'!#)07>FOXakt~seXL@5,#lyûxnd270)$  &,2:AIR[dnwȾ*&/8CO[hvļ{qh^UMD=5/(#Ⱦ PYbluǽ"Zguºyof]TKC<4.("ż - $*W`js}Ǽ2)tհwnd[RJB;4-'"M$)/6=EMV_hr{Ż$,6@LXerƿvlcZQIA:3,gu|naTG#)/581 P嗉|obUI>4BŽ, $)/379::851,#(-4zm`THLXerĽ2,&! $(+-.-,)&".Q{򸬠yk_RF<5@KWcp_VNG?92,'"  "#"! - $).4;BE:1( n|WOG@93-'"  -  /5;BJ|폂uh[OCS`mzļh_WOH@:3-(# %*06ELT\dlt}𺮢|5,8CNZ敌{rjbZRJC=60+28?FMU]emu~%.7ALXƶ|skc[SLE>82,:@GNV^fnw^ݶ}uld\UMF?93-(# %*/5;BIPW_gox\P#+4=Hž~vnf^VOHA"&+17=CJRYaiqyǼC8")ſxph`XQJC<61+&"#(-28?ELS[cks{ź}pdWLA7-zrjbZ)/}aU|tld\UNG@:4/)% "'+16EKRZaiqyE;>IýxpiaYRKE>83.)$ !&+05;AGNU\sgZNC90'R^jwž{skc\UNGA;50+&"7=CJQW_fnvĹ}p1:EP[}unf_XQJD>82-( !&*/4:@FMSZbiqxz q~»yqib[TMG@  $IPV^elt{ɿ=Vbn{Ľ|tme^WPJC - "LSZahpwƼ4>HT_lx˖xpA;60+'#  $)OV]dksz~reY̨r !dH@@dr 8 @2' 0Y1 -B ! @R-`m9W?΃KkM 2e e<9-T%w=8Β+pTyx?$:'_$ jje;u|IΨԻ_c3ӻ xwZ }Rv L]s .rCX.| +jߵ ڊlWDSV/az=zo0h+|}|.;FV?RZ.8-0hvTeJ[^E܁IfΏ1&z;`bPP fJ ֩՚܁ŴR'`q#jq;5wܝ3]/gH7%6r V9n2|GfeW~W6=OD2TiױfXd*:WQY`w.XM*ws~''&JAv}媎 FE[k]CSw(P:;mCcvbwN8cPw.#ZfF_"ᅣ>5;cpWe4$P#3rxQP@ ~[nl(q^vS2ȩT14~+F/`M:suC8Pm*yXS(F_DaZ 1+AG>WEHSc%RF2" ;uDgqP#={qb ~"q黎I›Va vj'P 1]wwW=g;f4w 0.Ť -w'ƛ[ f +v7k(x,<sY;9]PG26C|Mcz>uШ](Hjvٓ$FJL D0Dݲ=&rk! `%uzDe0~ p!R|WһB$&߱ӚzD(>4V8MD~#(YJȌڝMjLNT]vu>ÍT A'y1Ύ];K u*#;MM"R].5;לj<&ip9F Zy%B5(gK2m`é8 g;[Hc[ӌ޽ck[(@~3E(N1y\"U#l8t2NTF7rܩc -h\jY")N[@NjVtM~NqD:vf0(W]W38;v:M4tYO-EޕE uJqW2&c= {ʻiƧd36"? WJB=`TDSvy7[UU:pw,54DBc{6w9z>,y0qS>UϴS廳yw NqE uoxB}h[bwtma)t -䮻Nށ#&lŦ!5Z6g#jׅ]Ol= Ni*NU;mItw.zݕQ@):mq fW@}Q'#&Vb;ǎ΋<8+Dn~!t1Rvǩy!"> 6 M$6*PeAxBP]0Y.,脝C€qKUNM`TA4æ|=Եm~8Js$@8 -oyJthҒЧp*c]f܁|'? ӌ!qZq`?d!;d5ӷjCY $ %#mw՞wL -)6,U+w2ϻ]GbţS+,);U;H_" Vޣxy%j:׾ dOQ{Or*,=1_w#V<}U6CVpnߒoq3Yķwen{qv[ wq`yD:=2dw'#rPw]MKOH$^(> `𺸫iߊx$[`'|Bz .ßS/]oN, owfrA[Q c^!MgGߩ;VA*.y,B}W{wKywl,Nw q,KL0?N]$UF}ɝ8.B|VI]{mUKw[N'&ŔwJ`[f?caqw^r&e+6} =K%}7I)?+ݢeT/"qKi*M?*w㺼[JNq.)mn ev6̳d ݑMr%wt>׫:lyN3-{m0wĿJ4`zQPqj3= 3mǒwZpU"`d293.*%!#'+05;ov~{obVK@7 NZfrľNHB<71-($ &*.39>DJPW]dlsz7ALWco|{tmf_XRKE@:594/*&" #',05:@FLRX_fmt{C#*3}vohaZ2.)%! #'+/4V]cjqx{obWKNþzsle_XRLFA;61-)%!8=Cv}xk_TI>5,$K޻xqjd]WQ1,($!27ITܸib\VPJD?:50%)-279 - "&EKPV\biov|żvj^Slľyslf:51,*.Jhou{¸rf[O½yr?:51-)%"  #'*.27ahnt{cWLB8xOID?;62.*&#  !$'+/38HS^jvysmga[VQKFB=840, 6:>CHMRX]ciou{XM*2;Eztnhb]WRMHC?:62.* "%(,/37<@EJOTY_djpv|Ż`TJ?68BLWbnĿ{uojd^YTOJE@< - !#'*-159>BGKPU[`fkqw}Q%-u쫥|wqkf`[VQLGB>:62.  37;@DINRX]bhmsy~Ǿ{oc -q}~ysnhc]XSNI-*&# "%(+.26:Z_djouzĻ/8{upjeHC?;730,)&#   !$'*.158<@EINSX]bglrw}sg[½~xsmhc^YTOKFB>:63/-048<@DHLQV[`ejouzƽzncWMC90DOYÿ{vpkfa\WSNJEA=!"$'*-047;?CGKPUY^chmrx}ùvjAKU~ytoje`[WRNIEA>:630,)'$! "%(*.148OTqv{ȿ}qf[PE,4¾}xsnid_[VRNJFB>:730-*(%" #&(+afkpuz䱧ymaVLB8"|wrnidJFB?;851.,)& - "%'*-/369PTX]afjoty~th]RH>5 .6@I¾e`\WSOKHD@=9630-+(%#! -"$&),.147;>AEIMQUY]bfkoty~{odYND;2*#qxsnjfa]YUQMI2/-*'%#!  (+.0369=@CGKNRVZ_cglpuy~k_Ualw}ytpkgc_[A>:752/,* $&);8631.,* !"$&(*-/247ILOSVZ^beinrvz~סsS^it{wsokgd`\YUROKHEB?=:7520!#$&(*,/1368;>@CFIMPSWZ^aeimquy}Ļzn2*#Ydo{hda]ZVSPMJGDA?<:753%#!  - "$%')+-:=@BEHKNQTX[_bfimqtx|䶬ui^TI@7/'AJÿ{xtpmifb_MJGDB?=:8641/-"  -  ,.02479;=@CEHKNPSWZ]`dgjnruy}{odYO%,4=FPZe|yurokheb_[XUSPMJHEC@>20.,+)! -  - (*+-/02468:=?ADFIKNQTVY\`cfilpswz~vj_ ")09BKU`kv{xurn\YWTQOLJGECA><:875310.,+*('%$#"!  - &')*,579;HKMPRUXZ]vy}Ļ&oligda^[YVTQOMKHFDB@><;975421/.-+*)('& !"#$%&'(*+3568:;=?ACEGIKNPRUWZ]_behjmvk`VK }zwtqnlifda_\ZXUSQOMKIGECB@>=;98754310/.-,$#""! !"##$%&&'()*+,-./1234679:<=?ABDFHJLNPRTVY[]`rux{~qf[QG>5-& &.6>GQ\fq|¿}zwurpmkhfca_][YWJHFECB@?><;:976543210//.-,,+**)((''&&%%%$""""!!!!! !""""###$$$%%&&&''())*++,--./0123456789:<=>@ABDEGISUWY\^`bdgilnqsvx{~VLB:12:C¿~|ywurpnligeZXVUSQPNMKJIGFEDBA@?>=<;;:988765544322111....-----,,,,,-....12233445667889:;<=>?@ABCDEGHIKLMOPRTUWYZfhjloqsuxz}|qf\QG>6. ˽}{ywusqomkigfdba_^\[YXVUTRQPONMLKJIHGGFEDDCBBA===<<<<;<<<<==>>>??@@AABBCDDEFGHIIJKLMNPQRSTVWXZ[]^`acefhjlm|~ݢVLC:vtrqonlkihfedca`_^]\[ZYXWWVUTTSRNNMMMLLLLKLMMMNNOOPPQQRRSTTUVWXXYZ[\]^`abcdfghjkmnpqsuvxz|}ú[QH>6.' !'.6>H~}{zywvutrqponmlkjiihgffeddcbbaa```___^^^^]]]]]^^^^^___``aabbccddeffghijklmnopqrstuwxy{|}Ǿvk`$*Ʒ~}|{{zyxxwwvuuttsssrrrqrrrssttuuvvwwxyyz{||}~¹{pepŽuk`VLB ֨sJ(1!)s-ΪJ%n@ Ȳ(3{Q%=>^xHFcӉw cĺ3cEUƇC _^И ɞ|N rP׮ ۙ.юzuKV)xF-ސ -Ɓ7 Dn} a٧\ӟ6LȠEh[ex%O\4W@=uڂpghk7;q!yưxQ7x7~DML`nte-ıh2Y$H%+}cv2p"wvN !O4xy%._}q;Vw{7ǦcDWHJdW!0K lԈB\vsw[nMjw{x8vΨqhnDj]3uZ8 };2b|dCw`pgxo0iXϿ#gWZ/^U=+uh%| -|jM_ Q)l#)L!u7ɵw5vqs ^,%.a*׀ـ5PD"~I⺄{j}gd9]yGF;y'51x4agw.ZmG۫K-a[P-\彲Ze{w# (#ȸHwvYb,3ߙrnΘ/; 0^|.!05is~IH^` 뫺c+iNLXZ}kf+R߮fDHEӴILx|C:n-0pOwźdж3z ߁y}p3x0Y !se5#d.gi'B:زe<SPg@ -q'vFbG*W#h\ڤ f(㙑92l-)jqE26 ܉+Ĉ NK܁Ndb -m;hxt*V&3wQw`$y`'K2^2)c&;ɰtv_UkgPfq,G͈BR^*8ntswUسv -Ӊt p㋢S?$Џwo||R\0`1ǮY8WJ]}Юӧe+ɝ[PFp' a 4wJ_0l0EZ3(wH1Nx [ JeDf6UT"9CFx:_bu;J@& -\Q%Йl|))!ts*KV rk]C=ק|B*s!|6(xGmU(5]BrP8@HOMe P829(кkzEӂ3;]𒬬^>-SQe_m G 󔑃lkQ,gV|f < 6 :S '<:S]!t{Χd;@JSTt4dVKr;5wQ~c><|#: - q^TAHmw`J1ΓNf7gftI83Ϊ<-yaLS8T3TGt5FPZdoz锊ti_U9A正yncYOF=5  &-4=EOYcmxrh^TJA81)|ꌂ<4,kvȐ{q70)" Q[eoz+%$+2:CLU_it~ƾ !'.5=FOYcm|#*18AIS˕vkaWNE< 4tŽzoe - nx}si_ULC:29AJS]g౨lbXOF !&W`jt@81*#")/7?GPZcmxǿ}L+29B("V`jt~ûxnd[QH@8 )/7>GPYcmvϙ{qg^TKC:3,R\eoyƿ~tj`W-4;CLU^hr|wmcYPG?(/6=ENWajt~e\SJA9$*08?HPZcmvL %+2:AJS޵=6/LU^gqzƾ0`is|xI $*07?GP䟖ypf9AIQϗ_V&-enx»`WOLü8#^gqzļNW_ir{ݽwm:3 ?GOX`js|Žxne\SKC;&+29akt}xof]ULD< &,Yypg^UME=6/"'RZclu~>70*$ 4;BJR[dmv%SCKS\˕`XO`2F>ezi CbCݾOӽ%"h|RXۑ'+~H*| -} -DAM@ H mn/#> N vSʳk,]A '5U7n0$J*s? 23hM@Ango&.wc"]:tȻ*9P+"!\kv&zL\О"?w-cƴis*oy7 .c;@-MO6ǻ#=L z2w<P'{uwH -F .r6~=4w.`]a~"1: 1.Hqf 6@+K;"ٻgFO)rp)>ѫHW2 -)cw>wE)?ޤ4+z%h(e8NR|zW%.ٌmDi8Bqi;Ohdn0щ_kf6cN`kE>?Ξ$-psݱ6rӨ22E:*D9].Uw{'ی5H#+]8[LL]]FyI%FWl4lbtw.hfEY9@rОNۚK/I7K>T憫(o˘XDyI ojf *coDNJϩ2О2@-pwyf?]]9kMy4m/wøXww;":֓U]w #bqaMޡ6|LE diuN]d/K;8uᙄq"(nZte3 ^FZԙO79@H|Aڢ #@Dzڪo  EKcgwmd% όῙ 5_LOE^A R7rd؈/@g̓\U6t7 -:6P8 /9*^)XE";0qdۣ>7CP"ab7b6dAADQ>Oz)_4ZzE5]㾾 - -KvmpԢhT4 wCZ - qO2*Ygh {m#94ZÛEV.0Uݐ>R3W ӂQ>N- 2w#vVmś (<ݡ1@]ix%Tޙms <O;gΎNv]"x<3`kK'C4.4:AHOD=739vƿz'\dluމy$  S[🗏wog_WOHA:6me]UN己[TLE?82ͧyq ELT[cjrzſg_50+17=DKRY`hpwý{tld%*05;BHOV^emu|xqia$).49@FMyWPJC=',28>gov~էzr!&+06CJPW]dkrҦSM&+SY`gnu|kd]VPIC=82-OU\ԶYRLF*/4:?EKQX^elsy¼[ #(,16CIOU[agmszd^ $(,05:?DJG.!$(,1yؠMGB<83.*&"!%(-16:?EJOU[`flrxǯic]XRLGB=83/*& -!%)DJOTZ`flԝoic]W+' 5:?DINTY_ekþhb\WQLFA<,15SX^z}wrlfa[VPKFA<7$(,049>BGLRW\bgmsx~Ѱ_ZTOJE@;7 +/4v|Ŀ1-)&"+/3JNTY^cintyᯪ|v=950#&*-16QW\aflqv|ic3/+%),048=AFJOsx򾹵VQ# R!43A ()0~h'Ab A2 d+ӖE;a=]x%?Gr Ĩn6[~Ď cb3<[JJt) wvtݔ)±0f%h7}wF; -WEKwb[Cq `wk -o= 0&8CjUpETF󳦂 -K2^҉t-((A@ۍ$~c޻/x=n'պ* vsr*QRBSkI*ILIpfyGFfGL衄tND PeE$c8+2TbWnj7_xr>u>mӌŃmQHca8{m;*B -TNO\^5/g(Q: 8`au)b<5ď<#XbyO~As3,=eW$}A(djQLbt9?;B+~E(FC&%w+_2Pv+;G?Dca)as:#{a .gCM)Cܩꄥ\,*C6K3%0 cZCwN>3ɘA=|yYpjS׶hc -b`Ze2j;(F!`#1eYH94h 1aMlH.{'N#ޯ5Of[m 9a#|760E+ rӭ; >-qVN^r0s,~l|@=ܙAt2$9m{Zg3[v1uw4+<|ב G2zjN]x>^~aa5E]w9H[tp])U|2Ö!6I;¨ A[zb`EG3,3\:POyq3AՓ4 -Ui/t8:1Q "ꮧxЛ=Q&>amXqFHtZTHBAPEC4DĬ03 J 3!mZrJone -F"Hu fCnx,9@X3CPc% -BƂx p7 uw;GCSeIqJ1_|8/"Ro ܍TdQ=V$ pN+/U]#.DK@`D<;_yw%=BMH4|x?@,ΓO;+V)/Ygbpry﮺YT^T/6P4,w[DjP:KK8w-w#[(#&d(U`@Pvw5R^71dDIZwx\Wn7wqlʃ,Qy)n&dp>,̻ӤR2HΥK-yrg4Uv3f 7?6 :;Ξ43Q aNi|Vc$GrzRe -_#wAzca'wXCһp$rdJ!~u`dG%a2 ;+ ZRv3qB碊.YD]@ -f_-et2 -endstream endobj 27 0 obj <>stream -Gz*D$,kaTeIj韆KMI4Wx+\P*-H <­`BW 1so-xj֪gJwyѾhF9p op-wi'S "xTեS-1_ɖ8XqYANޠ>LJr67:萫m /v@\wV8$L]Kvg]|)VH=;1+xZ34T - !$'+/26;?CHMɱwrJFA#&)-149=AEJOSȱid_Z:62$(+/GLPUZw|jfa\-)& #&<@DHMQVZ_din¿upkfa]XSOJFB>95 - 9=AEIMRV[~ytpkfb]XTOKG/,( +.26Nmrv{¾oP "%),/26:chlquz~пea841-*/3MQUZ^bgkotx|ȹ~dGC?;841.*'$" \vz~Ǥ|xtokgc_Z?;759<@CGKOSVw{ű}yuqQM %(+Bhlptx|~zvrnjfb^ZVROKG/0CGJNRUY]aehlptw{ʼ}yPLIEB>+!147:>ADHKORVY]adhlo|xuqmjfb_[WTPMIFC?<*'%" ,/258;>AEHKORUY\`cgjnqux|в~zwsplieb^@=:741.+(&#! !#%(*-0DG^beilo~{xtqmjgc`]YVSPL,)'$" !#&(+:=vy|~{wtqnkWTQN<96%(*,/247:KNPSVYo±|yvspmjXURO;8530.+ '),.0358;PSVY\_begx{~|c`]ZWGDA>/- JM`ruwz|~{yvsqnkifSQNKIFCA><97420-+),/1358:;9642.0246OQ_bdfhjwvt`^\ZWUSPNLI<97531/- 8:<>MOQSUXnprtuwy{zxvtYWTRPNLJHFDB?=;*(&$#!,.023@QSUWY[]^`bdegiklnpqstvwxz{}~}|zyxvusrpnmkjhfdca_]\ZXVTRA?><:86421/-+ "#%&()+-.01GIKLNPQSUVXY[\^_abdefhijstuvwxyz{|}}~zzyxwutsrqpomlkjhg^][ZXWUSRPA6420/-,*)'%$"!!"#35@BCEFHIJLMOPQRTUVW_ejklmmnooppqqtuvutqppoonnmledcbUTSRPONLKIHGEDBA8"!  1345689:;OZ[[\aaabaa^^]]\\[ZZYYXWVVUTSRQHGFED=<;98764320#%;EFGGHHIJJKKKNONKKJJIA@:98776542 -$))*+,,-.//012278899::;;;<<====>;;::996554332110/. !""#'(())***++,,,+++**)$##"!!  "  -   -N1Ff@ 2 0 h:`4OC "doV ʹMRѻQwnoezdQ <]GIMٜt Ji_$5 ]F]Fo:1hU-af̌v#f!t[a;2DDg#R=@)^(9%lj'e՝N2qqEonQv[бrrǠx=,Gge_+Dec[ԋkCt<)ך٦ß6VNZ5U+QgcyOfKD0mq;c,!-XaTsȐ<)~ؒ@^~p!Ux-^T;N2\팷tG{a-. M5L"{F0yfI#ؙ:/mº@ M;i61zRÝ "cIbj30PQAg/F#Rb, ih׆ ?'Α}p -JV4(e8(7*8g2eNn_oes=*}WTpʃNfvi: gX+M`A8%DFd9Jb2@69;/HŒW,[х9x?lƤ!@2 -_ $9U=p 9 -A%'ևo}( hD8ePuKxuF0Nr(VDU' - %sb"{ -Z{9xRym ]8;v<{P -\"7`fG]Lh%ʎC?!Abi (V@]ruv hVb"e26.-Hz*6X]-mg<"qG)JnjB&#9󼑑'g6e/ X~t327,SjQ DHm'2`e(]Eq(|bH'cU-l;MM, -biLT<-Pyv3 FBHc;ҕ:ZM>kX(8;o {@bs/d1~Taw;i>{M㫷c]T!%d@v={Ǩv=Si!o-ap@ĪY'Ԡӆxo.n.ĥ#_)riB|,T(#TChe81V?O^ IaB\۪lEQ C_p?7w]El2\xTgL̄u-O 4]ɾs(ʅ">F ΢Ce[x\<3r0x~7ɱ'0ͣpu5sAer,XA @h˃Lh:2P%0T&.$,MADA" !#,#kƑ8gEcB B2 BZ{'?9a6MJ?]@ - If0TȠP\ EQ\62 -!AndOx~E6'<q&ᒡ\ 8 gÒ0`Hhƙd& - ֆȝonez\ou~lղyzY,^b>}^[YrU>|T>ĵ,e2N;C7WH25ML28FFJGGInd"dG{$nsswT -! BXX(D$QBR`¢qApetPTz !=GG.U4j.;Cܯ -. -] Jz_&gbZ`r>5i8L[X9T%K ㈄ԠVU -%aE>" 3v=-ܑ1 Sc!Y@M-(ySXQJ3*6Ol)r&`x9Dk,p֏1;@h2X "8cc"[zwZj=f |t+󍥤p+mDvg,DڥM5kY:K&YOfi=]2?iX]9f:B i.%?1lb Bd.ܘ`t{ $rs"n.ɫGxq/ςzDm+-MذS;D((((((((((((((((((((((((((6qR^?,~X_ϴ>Cϲ3YX1u:LW%5Rž3?K/}@@UT ->ug(((((((((((((((((((((((((((((:PhZͷW9u| ϗ?B?_g?~+{hS?'oKA?8}wz -?俆(((((((((((((((((((((((((((((:PW׎o_>|qQO$K>|;^wʧg+X¿|qS?o2ԟg>*(((((((((((((((((((((((((((((;P!qgO $~/|K >9|x/_C|c{ħ>N|ND!7WoX|9n ->c|$yƇ>o| j(((((((((((((((((((((((((((((:PS+4S]O!_AwOr| ='i|K_ ->`.z>W|BP+_(((((((((((((((((((((((((((((:P+%/3̏70ܟ^~wtCoWo+W~ɿ|T4{5;G_/(N?|2y^#3ɏ(((((((((((((((((((((((((((((:PǞ_/=y~ GiΗ9?r?&S_go6l>?DH+o'2Yd(((((((((((((((((((((((((((((((((((((L~א?4\AO3hRzDUz{unX{m0I 7z+ՕƊSMęßҐ!J!aohpts Pu v/XAO8A -PL?P;!Bt=edkNA~JhCr->Ф]@$ A. F iǬ ˢf 4qWX9fA^7#YX0 ^g.0 |a@۳<|^P'CKvvU).;=)ss-M@Hn) (((((((((((((((((((((((((((((:P 'g[_ -?k~4oAk⧬X?b*~[|ooƯV~W?~RG'Տ7 -((((((((((((((((((((((((((((((;Pj -ɾ -~J~*~ -~J~ -þ -~J~j -~J~ʽ>ʽ -~J~u}~(((((((((((((((((((((((((((((9P/V5V;VGVMVSV_VeVkVwV}VVVVVVVV~VxVuVrVlVfVfV`VZWWW,T((((((((((((((((((((((((((((((Y>hAp!h!xv~hg@ DѠΫwQ -αQLd'Z&LW[0mL#J@0)._5n>Vnno>oF^pҾpf!f+kXD((((((((((((((((((((((((((((((?A!TPDhcD"g @K|KV3N+PQmz⏖Of-:Υ+*t'ێw:,vLc,@z 7`RCi}!PH+R5M]Ìmr9"lǟg׹6 H3|ϲ78~Ek/؀,W@MgYB2#>CJ}F7 -PҐ6uc<(8Wurk$S-=J&225Nȓ&Cc T -oiSğad(((((((((((((((((((((((((((((((((((((((((((((((((((Θ>ph A@ A@@ Fhz}0o_V \o]h/xjlkQ ԀE (RC҂H@y!\?9?vT;p1Ds恐 W6s vf- ܙqi BIL«h muN@V "w?IdZ 쉄a :Bؐhu -H.EFSRI*) ÇK^ w>-D -((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((X@n 9FFoD8$ InsCə^rXQܣԥo G6ub$>ϭ?9q[.}V[%^ χ'bl'qx8"~9^Ovw <>B<{98Ovx$hlt$`nΟ@&_a )?!ZY -((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((X~6OҌ^pZQ -?ʳaI @yL5[|'Ϟ,P>rQH(OmU6Ӽ#G\tF/Hyaˇ6yK=ϋus6d?mF7gý.W"ސ}wdq<\/|yEؖR8X#^ǯ%H]yUќ'/Eı¼ -((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((XzSyWMЌ% 'ثHHcW2[bX}`Psfa3zìh;4KXtf l=`iS^d=4lwFoXp3#l?-{$3-[7dSLsX.!(skcX0,O&ifs0nj .'%+Z HHH/Xp:^mQy;1[j;)m^TBl~tR VcHO)iaiD~b3{'!j2S:Ъa+5$tyǽJy[-TDZVL V&BEUʮPUX*TZU*Y^ -\}ʗEAE*WRfNWU9*r5)q\A -'XrgHՕY*B(>`J"X,?@8 OJz+“J[# ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((ʘ>_A @A4` pz 1b'b %rE0H+ ڒ?N T -ԝ ʜ4XbԄ0OAF -1~Ssm͟ LQl|:ϟɾ Χ,JJl|ПϘ̎*t$fdvTa5ˣJ$E)EE:8IeppzR:W[BYj /)f<{C8Λm.U]٧]bs_u9M C  ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((ʘ>8p7i&c܈58KFYzx<: q=SfzlO [l 6r<`Fn'?*T~BPy,$+GaBHp P -cJR? ,,pH'@)܏dA*J|@6㇈'=?J0(SH )ďj"BbKq}@#a@&$[BMIgoˏ A'* -NU,?.d}X~\(:bPԒb!;I كV8dWR9D ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((˘>(CP/Vn?Uh_DFي| -+ȟU4[`b <@\`,@$8]`,@$8]`,@$8]`,@$8]`b@$8]`b@$8 `b@$8 `b@$8 `b@ ] `b@Wt0R zT*AL8ԍZ` -X?}- ѣ z`ntS=O N #F  ((NF!?`oD QxnB7 ifaD!h8@@A@@ H@`[c-DFqR57^T -fj0n@exh5h܄*kGPqCP!nD[VA]85M2 op47b^$ -Yi0n@y1h5h܄j*kGq,@PmECVAAMVjGnN4p6^ t&g @{8U8sK4iȆR;"K9[L D4G6YM6!^M*mgl,7;jowVi;dcѕE)Ma vVEX~S5Jۙ&l/BQk(Jk ºJ靧mΔ@thaT=DspдjPS`~*EmдNOtY)uB~(Q8,tڊwDr\Yr6{VTd[cn: -Xq ڊ ֳ(ޕ+^sTϊuK+׭\z+D֫\[:8#_j3BVYOr9yXc5)^3j1}Ѝi֧|Eft7!JzJ 7#zϹj -,7#zs2щާoF^t2ѹݧoFtm2ݧoFuU2IAܧoF~u=2yۧoFu%2˩ڧoF>v )dOߌ=*(dM.Rf9{Tj(kɰQkWlq#ڊ%ETFe+^B#/Iwq J]sU9\;-DO6jY*?(D' j~4UVp'!Ł(Qu_ WqD>s݊8Iٜf w)Pm\Y;l~re[D<{2׭~ND_ςu+^%@$Qh7暕/!*Cq r,Zse d]> \;B.D6a[;}GDN+0׭xNp~ĨkVpŁȑj˕/wq pr݊dO8%un wD*\[-D[Y="DZ-WVNŁJu+^L@($Q; A}_G2rJb< D9geJ蔸xr]ʔ/)q7 -%kYu&.nfwM>S}gm,gu/훅Yu>+nfx>S} -m,@gu/Y훅N:}ýޞթ\Voz۳:՗JBz{V:ozչʊ X8Uu:?8-"~%~ΛNH`=*_ RXϹ|8s:r8UD -9WYbg3JUVX_ As/yiq)$,\e wpZD - k8WY!UVpeAa*_u RX<8*n;8-"u~!<( Qp($HS6c61&DA)ighp%[đ5G6i|%T734~ DA434 DCԚ#4MDj)4~ DA4Y:f!oqoPFiD-[=T5q7eVRonMDjUXݍqouk~wøK\ͷ:T5q7mVUoo DjՠT 4r*EqvoPm@][ J2˙q7 +W -Eh|C-8FrP(GcqPjoud/Q]T2HW Cv -Pq7kY -X7kYrꛈOEF9Fb|MDp|֧"#1f D(Q(BְgX$mSY 2.fq3t3˺#GѣHo< $]An6]g!3Юtƫ}j41Eg{QxLXNF>CGCgr2`3::FJ9sGjXp$;!Hn'T n2pzPB$$wG.=U'ţ"߾3p$t~HuI -h(#$r`󝁣;PF!ml;C!LDurCEhL:G1crTtˑKQFkC8q`⌎M݊2JNzg(hjP-{8BC1.b&I$!l+.θӳe ]*[9+aF ; $c:AmK-]w֞ѡK+Fش|!.@ @ @ a ?v>I5u8K;^OڇExBtr^{uYR_`S_xIN[휌i6XX<9M6 59L?25 ̻kX y6gdA879Z&q1 LyfJq5 LyJ] 59`LylR8Kpp#КoUFU[_z2|o0g'HjR}ăaqĖ/T.@$܇b)R.X[VJ*R}\bipDT¦l?m:vɪM}"QW<+i-E%'~Tp[>rBTg: U=ajL&2>ln:/t Wud(ϟk@# ,谄2Rj6Ux/вyR҈2OSڣ.EJN*踽F}%atz)USX^WAZ(  3] cQK׀I| eB07_[6!Qobgu0Ê~cgC {C`؈X aA@<@ 1n(`gvUח,>=)yr@L\:'o \>+{4&ɴmϷ~Ht]=Ya'8Zq-B%KG& hpZH -jeD?8\'I)چIq-YpK^ yQD p \)G%?jiʮFAbkT,^`€ H ߟ{|8ɕ K}J;5u֯xمgTEGB0aY1 -@F +'%ۛ7BZ^5#aX ]._--hB۶޷ux%Fzz>H`%+YV?t a x 8 X `c3b!$ @P0'WU>_ >1ױO׼ >V%Z -/}0xAq F},_#Z$Z",5-.BcDc)XZ,8;IdaY1 k=yɰSS>g=0H*,1WDI: 1xIog 􃭧{$[I3L$'%BtCFX pWV ,;i »p`R%g`n `o OL01b#8@ -#U}^?h h@#,h-4Jc^6!c!2D\ne;X7+djJ;Z -6 2fȨnkUξʋu3^)/=׊Qa&evvHߎe #/]Fu$/mz^]G4î%0wt}޳(,q${   xRL{*t);X ્$֤ T(=Z`3'B_ `(C'Aa `hP8IPP6G -jj6llJqV -<.\v]Aٸ - dpm:+d؟lj(JJQkctkV Y I+M(;=M` J0t5{x16pf*;q! '.i⎇[z*)"Cȏ<ӣۮ3Ey1s$i<_fC4&A( -a7VF.=mR`m(c09? Z֣Z,O&fhC/4SЋE*JB#Jg lȥUBc$/G0=0%&ysK5{5$2?5+$&έCL.r,Uv|{{V9j-*D Od \TbIDd )5O -+;ʡo.YI8S5QR }t]$!8"$ДXۣ%= -]ońScJRM:Z$=BX]*oÌQdJU&:L $Q (YC3G~ 3͹?$N0ش%UY-̦J(̔6bRdFfsIWz=aa}eLU&udn*T%›0wH>@Sa -#$%f훪6eJ>A,SKG(T -6bfFe)̔V%l>lQzMR %[m!)TVsGY*KV6IajT}tFȪ,ds( ITJMl¤JfN%,Y sK*Ve3=1#H"}jUcsfAIGTJ~6obxD(d᪔&%>:&Y*U 3yC,\BĄdG* WV6+af.ѷrn (Y_@@(9ɦgM I2M[1Kg$( )15z(#9~$GrSx\{ôȞ#س&,I$$IƦn$3=c>6g.Ym0OxD*$|fhIfbOԘ<3");6{FĔk,R#ŒftLڌKrm2Jf^҅T9QI- 2fԏ(*&ƛ6KF?V"E0=nF'ѫ.۳cьH+Q%6J.?&H0}l -nj+I ɦpLˏ. J6nBG_o7fYId-KPyT S&.zlB,(JfyP  ` @1Z"jQ.@E5E]/-2xήdF8tfZ}=QbiVS><-w\=q.{ -Ccކ =< P,2:G>exDvduG 1$.W/c.삣\[aYn~c|' ,dlxo<9`sJ -#d -lx@Œ!@S1XS׳%QqcboSd`?NO0Jl&GĘ'9<4_$>qyL͛17=o]rulv{~$~vIu12x#1crR=0cNvnm/͛i;{ǒ{^c@ -H'1;QbN8d3I=i*YMz zF]xӫ>XfRZK.ewS.?fZK&~{Iiml{391 &ce 2=љE^jHLFNaQ׹4mz&]iW ab]1S6{Gp}qϘ -Y@={dF-QJZdr 7ׁ6r1apo S`aP@T¼E{FV=~ې z OX(@nNJ4GsI F -|dzh'E#;>_Uҋ\hZ&Qol)LeM,HgNvm!6`l+ͷO6^\(3*VʘN㔍rL,Y0>eN)^F= -| .TecS` (%Hp @ @,@0 Egt0:T(͑\PdFY!Ϛ(. -[d؟V `õa3PwtQǚ':څ@"5e۠ i*C*ܙK-&XQF1 K;btEe$s. X6.b,6~rdH2{p 6{r'`4L2b<xrQ'`ԵzʜQo@/ϋйc NG΄<Zh M /{!'q$ҌMCO ۇcfx~|&Wt0QkF6[-U6 -IN's} $}w.xn?C39f'7M&GpzI09)6}-tLy yB sٔ/u2Cɰ3:[+e,aWoNxke(*WNe)}VF, (`a x?@ @ApCqI} ot0:+F%wICp4.: G+"bYthhXҔG"bX4Gk"bX"%i/DGFŨ"i8hD)lHD>Xд !KHtws s8JᒚX•ǫvEu$ -,MN] ]G6h} Ѷ- ԡQ5~ ,I$SJ -'*p |1oOȗA?l(s PBYgaAzJoP c6Z6.naަ*H/{NO#]]T]x7d΋׸p -PMo6$tMU2#niãA|3S*Znh)lu-J(8Aw[ȊgCh JǔƎ 0t -~ P T ošy -on3> V!"` # %# sLX0"QS \XoW4?s!S+d? o(/ /&rcfLdJϒ*"Giw~%C~|Nsvy5he w , *>//\[nް薁ϔ⃘b(s?AK\S0\OS=TPMP5AEaSSRm*ziC&t=mڇ0_.Z5#M(V/nY&Lhy. -3/KȅR֝dQbn՝fUVc<uOHhDJ%AGp3 -7 -s:,w6sr\ЎX:KүTZoG۫&b"gJbmH(x 7}ŘZId0x,y\(|I16' - 0 0̈E-h-Rnݤ%RJ?{k~޼܃QJsJ>ޛWu{0=c޼o޼o7rU]no^U]no^U]n^U]^U]U]UUML֥X`c$#|7r7`Ҝʺ l$#|7r7`ҜʺWEMS>ޛWu{0JiNTeUӔdϵU]nRUUUEMIF\{o^o(9Mh 6YD\.AǺY.BymP\0D"y P*s̏= Ʉ@W? s< D$ͺt)x@" -Ƣ>DU֥X`y8˚dϵU]nRU_]$D`4""`0 D' -D" 4`й(*.K!QHp8drxl6S 00I)@ P 0@@Ri8{OT*N},P(9+),˲,t873`73FƢ4e9 !0̈ ,gd~D.>g?^w388a&D,HO{Ay 舞|C:O|Ƚ|y`;lB|~ -͇ÿEyJ`eS6ufo}sTOgo˾z.!J_v|:v9z[i#%#xXܩ9}oKCq@hz Nz0yoUvݩy<BQ8={߽|#AGscn>)|` XuLC_yߵˀ': F-' yt9;{מ|#TkKFߧ́Ph&qoƄ -x?=_[Xa(%@р$ -M)HH+3{Bg빶7{/8 ݛR\P|Z{/2 }I ~H`^ -7\y^O 7ˍ==;i/o_׮7ֶ33vdGm5߽,ba3_'Q[ - -Z\9ntd s T#8H$EsK=o/4>X-s_c]_k/ " {g_, -myQ'iq̬;gz'|㑣s?|)G>oSžS.!2#5]3CM~ HjE`o`| Jވh^3Ѵ0_NFaT_C_,џrI{?&Gl۟Qr *#7wM0!Nqkq`{a3iJ\~:7#|7jxLoT)E @@I@`ˆ;ׯ=|F#kR6aHVB? / P9+xcL[|haD*a lv"6&َ0>&@R[><^7/G)IbiGoo„})=:\4%?7q)6rVQOk$q-_1/ -4HPdY$0LHI I&&toJt+itJ:[x9~w`-Q7(0k {a*J֧eEX9Y-]N}yIUj^@g M,iTK.7 TS2F/ћ=!Ogo/Q@˹ ty|ɝh^ `/P!ByA,Џk9v.sF B@JE#shϺD"T,jHQDauhłse -4<<''&??PPPPPQRSRQPDD))SSSSTTTTUVWXWVUTTTTMMMLL)))**2IIJJYYYYZ[\]\[ZYYYYJJII!+.1123399NNRRRUU^^^^^_____`a`_^PP==<<;::9944,, 44;;CCSS[[[bbbbcccccdddddefedcbbbb[[[SSCC5(%%%55==DDIIZZfffggggghhhhijkjihhhhgZZUUDDCBB ::@@GJJKLLMNN]]llllmmmmmnnnnnoponmllllkkkk]]QNNMLLKJJIHH--,++%--8ABBQQRSS[[\\]]ccffggppppqqqqrrrrrstutsrqqqqppppooohhggVVUUTSSRQQ/ - ',,-445>>?DDRRWW\\jjkkuuuuvvvvwwwwwxyzyxwvvvvuuuutttssskkjj__^^]\\WWVUTTNNF443))**334::FFGHHZ[[bbffnnooppzzzz{{{{|||||}~~}|{{{{zzzzyyyxxxppoonncbba``[ZZHHGFEED66** 112QQRSTT__`aabccssttww~~~}}}ttsshhgffaa`SSMMLFF988110 .2JKKLMWWX]]^_``gghiijkklmmnn||kkjiihggfee@!! &&38AOVV^^ddlluuvvwwzzyyssrqqlldd433&&%$## )?Feerrsttuvvwxx~~xxwvvuttsrrhhUE>=<)%%$$%&DEiijuu{{|}}}}|{{uummJ:-(';IJTUhijjqqww||}~~zztt_^]\[[ZYL; -;rrsyyyy  -{{qlkjicb\:  IxhgJlmzg  !I !%IabcJ,!! - -"<=>?JKhK! LMTHG "eUkïe]QPON87 !3UVWXZ[\]^kǧwvutsrd^]\[Nwʯedcb`_^][ZYX: 2@ABCNcdewkjihfedcNML?3?@AB`abdefgijkƷqponlkji^]\HGFE ^_`jklmopqκ|mlk`_^\[Z22TUVpqrtuvwwvusrqpfedKJI2OPQvwx·xwvlkjhgf93Z[wxy{|}Ȼ~}|{yxwutYXW>4. 12346789VWYZ[]^ƻ~}baO/789:\]_onmkjhgWV:98+ !""89:;DEFRS\]_`yz|}~ľts\;:9 $%&CJThituvxy˚srpomljiG@?>)*BCDFGQwxz{}~ȼ~GFDCA@?* #$CDFGHJKMNgh /9DE·XWUTRQONLK>?@KLNOQRTUWXrsƫm[M+,-.[]^f¹mXVUSR#RSUVXYefhi}~ҹld\[YXBA' [\^_acdqg_^CB@?# YZ\^_abdfgiklײonljigedba- -QZ[]_`bdegijlnoqstګwvtrqomljhgQPNM345`aceghjlmoqrtvwy{|쩡zywutrpomkjhfeWV GOPRSoprtuwyz|~յxwusrdcSR76"4;<>?STklwxz|}ފvugedb`^]B$/YZz{}􅄂}{zfeUT %&'(<=GIJLNOabop}~􍌊~}podEHIKMN[\yzjigZYIHGHJLMZ[]suvژkjhfMLJHG2FGIKLNmn쾛utrLK10 ./023@AQRι~YX0/12NPQ§yxv_^\,+*('& -쪩@?% )*+HIZ\]_a۫j - $,qsܸxFE$ Ijlx뵴(:;=?@缻|zxGED ?@BS^GF4SBAY[wyWU?=<Eü><:9 -@AƽVGE -I B鱰 -ܺ' -$򩧦nlj$ ᴳ3 !23󳲣.- %8^ʷsq`8% -'()56Am⏍`^A()+,?kxыzk?43)(+,./134v伻xv=;' 124689t껺986421 67DFH󱰉97645JLNз]%$-7PR_RP310 -TV}FD/.,+)*,-GXX-,*) 8Z]_acs+ -ߨrthF `ym,LfvZ<$qBbDNsXX;T<9=jwdV_Ǒ'3A֣/ǀ;@ l"J&#kH+!BpMNsn*=t?u~|kpG>_ܻ)ř?0N$j, -, -B Z8$?2QzG"wZS`[G>oz%RDxsL/OFzxnrCɩhsH+=9Mww=HV % -W h\ʵ70fMeCFتT59#}Jw,!wx -}[4&E}USb~(~YJh)ު!?SW/9 XAw|,rh#G)ۇ ] njȶ6Aw{{_p< Oaҍzέʩ=Я~#Μͩ=vw q {GA,<'uq^hVp} d6ubUC o6SG}!Z]5=Ŀ@:>'A@ `O]LYZb*f"Osp7 +9:tѯ1?1NYܦV(-^gM/s>aEJZv:;nRw[D8%0+#_H"x .UFdLyMػX_5?q=Ǯ~ͫ 1zJ:)r -^-y*e숀S}b> Y`qy<1>"xp:>3A(}HPVL09s{??cȼ!260j?}A~a&\Ý)wwQ;,nK&D&&*H_8J< -QNzl UΩD)FXRS;S&9 omսm&Nڱt|7k2}q+}Q2i~ܔJ"ĬZ`>Z@vZt#dn[yCnVy5v_DIgsQGHyǫwXM5ȈM)IajĿF=A |gq x$ :}G˿^TDzs{TL%)Noh.vu;[XdKÐUmN}W&],%O++9Ag+[~Gaw[~x=/ފDŽ$Q _d>ԧz>fTj盪t+5%5[?T 5nsSh!̦hٛ}}͉b&f]Q too%ܳMq7~bm{TU2O4ޏ%EdT5wYY@OgJXݎ~m;0ŝvo'~ -9ǹLMOH?Hܝ.~ fY~b6CRC -1?`-#|05h|>%zwvVWw|}KO&'>;,}}_G|sOfiѢO)88YLJ)w7): 3z`=k7se;IDn#kb?l=Oh&32%Au}"vn)0q+GNZ`B}3i:uqk\[уz:f(5?b_4M#ރoXe {< _΃CJ -[4 |Ŏ\hzFb#*6v>}k莺 Hl'~}HʣXё@$*>cAӆ\gX\'YfX;XmAH@hPڎWÁuS|f:vig?pǎE?~=f;ޭouUmȍeb bTW%>|i†FnG#|wsÒij()3FO55 W2g=z>nC\{џ)2O+Lj&~ÊdGKS>#}aUqljf%YCù&zG[Y]H_r9=4=鳙+{Wn: %z - sx{NBy}%*${er?u>0pwgE(]t;s_>_G{[I?}{H+V~{XkӽGj?-vzi)P܄:EQ.G&%f׶`~ BavfFvI5=٫Ϥw$)k &lɺ#v~p֜cwyFU3a_gZxy ؋|=$>}ꃴ#W٧}"胻.ϸ (}*/ò,k꒾ = GToG1G`)~,{+Sw}{{jL=|c < GJc -4h7j kGߎ2v2v8W}зz;lO8n; -вIøt__Q$Ջew zz`6ޝ~ʳc=µG}>OnQW&?lZiqֱ>C(/oS̥IV Z>q# ɂn;l.X^@-d}P\hAlp)){|t3HO~{mޯC1sR\Ae@߁ۭDķ}h;B՗ea=}"'CcN`]fIwG_N=$_I\Pa~F9W(D'ݪR8ņ>{7bD5pk -jwԷp|q;H;ud3 T[sR)D88ޝ {P<{-\2fV ׄ(7 Pȯ[>%vs}x{v$Cp;%}>w;\_);Tg_b?lw<;=z|?3G?%G cK+W&dIutX>4W1_qIhBI;"fG Վp*t>v5} tF"E9A1'gw#̘_,2&@2JaX̚}w:wPߢ2 kl҄['>>aU_} zGVlWq}? #~j=nG/{_G{(_5r5=@@{}տfg`|FpE"+S4Q]MM9TgtiԗI4 -b:6GS;}ȚQ"}^ݱ(;ϯ&DgܰGHlNankM?im*>`m_1C|z*e:+54ێ u}`;:nT}i䎇Eݔ1IQ7gmn܄kB1}_ɽ]?:@Ơi c!IbatA`:U&ܨnp>|}ˇ,&}:SMΛ (>{?w$Frgz9űǩ -iA!=]ѓwRӕ3`8ќ!Zb> kqLv}{|;ByCMAaLVQk{0;z4hz/ \;cg7?xEスĿ2>s^̈_*/У3B|%_m*0v=SuGY_ 9Ww45hEcݥ<=tşes([~'L<-vez]:nך0F3_ЖϖDevH¾U'%TQR}'p>zh`,yw )c~ .@~ |㯘VJ8/$UK{MڡA`@#>t|dXߩuՎz>XmG>;nGW}+F_u(H]+F@e;%?HwOF{e~f凭c!c!ԏ~#6#௄=E+}l؈^+x(DGE|X*W;,ͧoG]6 rh ;5u;,c?!l{<;4i>;}@[oo}r$C|<;šDh W+>| XܦZ3)'l殶}F_ڀt2(>8G!?/»3ͯJ?~b>h-/KV.d52&=9@vd3>:F_u=j&o -mnjpäGX#^03~m`Ǵ5Tf6W'NӟhOz~>S1+c_">kQe7iQ{̇#*;kմ 7R} -~/=T+TNkC|~1#B(7s꣠' 4PM"/dh6{#, :"u̇Ǟv,l;/1cT9$& L[tӑ͙_: ֌귦ݻ3G~irﱲCmχ_y?b pM{QR/q^?1>~{ l?_Gf{;߀&P;v|#;RM(/(7p1nA/h/V\ ~=N 7Vۏh].>{|?F% ?:Ðۂq,^*&%aӚc{Zo._zеVYo;ؗݺA4WW{s, $*@A<~^?ә%b(>ο4 -hh33ģ^7 8B|euuCk}4#µ};$xPVUA/,ONbC Io`{ah/"1}~}W¿ueYD吊}e}e7ȧG p -HG|~|te#ڇ>ݡ| y>F`&ܝ(Pn4?`E :Qm8 -ܑOe͍v|H۪Ȓϡc~H5Aê&WQ1qkn"~T{TễTW{?Uo'V?7.SH@Hozģ|^x; lQt 8`Lײ: e/PuXJ7ڑoێǷY.x"%&͒\_{ƏU6?r۬Mt*?cgV' ӄ|0rQ}V ( <Cd$b<"7^_|w47v]Ȏq&84V}GbM*>ޟQ}%BVWbV{4& 9#K\U:>BOMB_i D6`F/E8G݆7oK=C:fIO;Cq@v.(}1)ϗpPJ_'sU{_ӻo;='Y>  @ 9nfqI).1;7zJ /jěOu@0UoSFodߥ }nA}c>mCodV#>N%z~'o!;`џ8p$@PBT q> -`KꞅOo")o|qM.QVI1_ { pW=XneUQ/8Xoe(o={' S=:ޒyoGG<_@pCp Ywo@o!z_أ#2ν - -9}4yH;!۱־r#@G},?P]N~.O] Y`u󗨏#AQITĀy!LY[JzW3Ro( O@+KG*|֡ҶYИϷ:p|v49 -Ef@}bP{_ի ZuY~F9 ==o{Oz o -ÿ H+A g}yH\<۱Ɓmd>߃\ - u|LA}ߋ }n$wgpQQ_1|+ ~zR{X>uE ϟK/ -p.t+ , IJDN,Oeﴧ [k/o:K61J2RgÆsgѕ?tA4!Rp{ :8KO^)[ޟ˿[et0GJp:B?$7v8<^{j{|Bb&||須OD_j%CՇ{vy;=pG01YM}>}ֵ3?=(<>>J_ *}ijA%`fp|wMyPz;{ |>8)PQ^>~ء>Si]w!}5)̤ϪWۢ_GiUʧ~{Ti{p!=~a5RO@=ſ $ThH!j |]N٫{z{]MU=+ڳNV1"};BGއ]ݲwf~zމ|d?|3?!n@@΁/(-߅T OQj/0=Rc9-:|Б):O7L<|wek5pO'S_Kc+i˵_̕ncof?|G?;v![ HNͥ:pKɮkT1#O"glrM$B_d9r1:߭pgE~aGh7'uOB"_9b;{}6>xy~zp^ߋ -˗/6t6BiCZoRQ D_}Yƴ[&MM1_#}lӏY\@Eځ6AD Im#ȣmcpz)ߍƗE[ҷRGg}Ks/ Hc9G~(?{]B?Gso鏩 ! -.a dЗTojW@`llʧ/c|0}&ǫg?ݳaNZǾx|z=NNWJ?8/iE)c f;B$!Doe߽>k|bl">#5"5]? 8f{_oߌ?=0G:{L_OQf@Kҟf?b_ ߀ @Apvhe"yͳ,zy,_Oh|mCd|KGDM>i l|r;@هcm5IxQ ٛӾ{< $!\lґ s޶z{| +ȧHbSP>i1EvyLwd},M/o8?[k? >8uJ,Gx. -4 .Xo9`NߖP~namOH_.+~|?5` `UNpAEM'Re]P,cqA8| 0qK\L<>BӎS1Ҿ`>7Aҭ9 GÀUG탎 -? ?C2= >@@ \4ۑ_/<NoټڻY||/A&NvyIJ>}˷>W/?ņ?TOPꊿ|"k/\  $$ qMhVeC])ϧGvޝL{> {7Ti+pH>@>|n3Wm Wxү{T'}{\L@UЖ /?^DORh>,>+QlL MhGwQ>'ܿ{[_u P!B)8+1=BQܛ q@Oβ-WGu]UP_fH$ѷWO_Jk=lbo(ۏ~w\X'|o:ͿN !y*:=^BOQ*{#!&&⋌1|}u(pg驯 OaL`+8O>py>$ gr_v0 nЁH8Qǫam[ֻG|]f:7K]4ggȫoF>UJGxy-G3gaE? -nt3r4z /obDuo.`Tۚu}(;ƽ 7gN梋!ُzٟPP(c -L j _ɓC7絵,={qs{᫋/i!_)_:hT0I2N7{|rᯊO?^~O@@3Aw 'p)9̓ӛ4|f|t(s,&G}{C_j_Y|~[exTV 8P`́ADy -Is$/Cϲv*v0p>\ݩo_xEkw=nDd?}Tg M[@70'h1h T^j= |7G{UY۲a}ܞ@Z XAU~r??O}>#NiWpzP+P!)r0gXϸB)\EJϧ{[s9Z:}uppۻnLEg -@փȾǭ -@Tb|$Gp?Ra$=0$hnP<#=מpzS$}q۪|pǸ^|i]W׽FtI?T( $ .BSߎې] -@Qtoy|sԽ׉#/mUؚo,O|^*1< W> E3 @5AAB6=ZZJDի߃|X|^P qz1۷D;nfqͼmsߙO7f^]  !H/!1ɻA6=ހ{Y=]|wjO5|&ar&lI . -VXZ\_acehjl||zxueca 79Z\^acegjlnqsuҚ`^\ZM7 \^`psuwz|~Ʌpnligeb`^\YWUS-,* UWY[^`begirpnkigJ0/-+* "#$iknpruwy춫~|ywtrpmkifdbGIprtŷ{ywtrQ 1Jrtvy{}}{y^\ZXUSQO-6tvx{}¦}{ NPRT:91giknpҨ  - -𪃁 -moɡ~e񣡟n) -&MOQS}_]3񩧥mk8#+|~omjhecTȽC}뻨fd42$%\^acϬH;0FHJLIJljgE!CEGIikRPNKIGB˶VTwZXΊvHFDB &'TVY[˽֝o  >@BDGIKƼ‹vt, -=?ACnpǺȳus<,<>@BXZmoܴtr %;=?A\^adfilnqtvحд{yvsqJHF* !hjmprux{}ϯ̂}zxurom˷˵fd=$JkmԺϤecIGE)  -68:bdgjlortٱqo#Yy{ͶӶ ٽ􇅂}zwu<('%I壡fKMOmoruxzѾ굂bTR -.0=Xtvв~髩q?MORT~yz{󘖓db_E$#9;=?BDFwy|ytuv]PNKIF&Yo~topqwda@><9UX[]±ljklr򧥄USOQTWY\_a{}qhefghjns  `ce՟l`abcߚsec`]ZXURP(&$"!ιh{|~zNL&$UWhǮlkjjXY_eﶪpb_]ZWU,-«yd[UVi !s¿pnWNOPYprp&z~TLKLhjkfHFTVJGFGHNcվ~jgVTQNL0cHCBRceuwnkheb`ruxϰ`RLD?=>?@EPWɗf  - be|бn\PGC?;:׽? PRcfݼH>7NV`bdgf$ DQSVYܷdF933;Ny|ư[Y!&JZؼ}zveWU?30017FT}\ZWTQO:8641/-+[¬}zwPE7/-/1ACFH\vsokhe/.""$6^adhkorvz}PGI]ӷplieb_[EGJLORUX[^beilȳ<:8531/  -Mx{~}yuqnjfc_\YV5!#UX\_cfjmquy}اZGE7KMPݘ{wsokhd`]YVS. %*J]`dgkosw{XVSPMK6 0LNÿ}yuqmieb^[WTQMJHEJMPTWZ^beiũKI" BDWx{|xsokgc`\XURNK*EHKNQUX\`cgkosx|׷WTR&HJɡzvrnieb^ZVSOLIFC'=@CFILOSVnrvz~G}ytplhd`\XUQNJGDA>;9;>ADGJMdhlpty}- -~|wsojfb^ZWSOLHEB?<9742"+-/1469BEHLPTW[_dhlpuy~j3 $T߮xtokgb^ZVRNKGD@=: /14GKNRVZ^bgkotx}㟝/<>njMIF0. $&)+-0358:741/,* !#%'>AX\`einrw{ў0 --E~zvqmSO $&(+-0369=@DGKOSmqv{$8;=@CiȨzuqlgc_ZVRNJFC?<852 "258;741.,"$&),.147;>VZ^cglpuz~HF ~ytpkfb^YU0.+(&#!!#%(+-047:>AE^bgkpuy~ܜM{}ytokfb]YTPLHDA-*'%" ADHLPUY]bfkpty~ROLJ hkjfa]X@<962/,)'$" "$'),/269<@DHLPTY]afkoty}q:8&(=@BxOKGC@<95&$!$&),/259<@DGLPTX]afj޲u\.+)&#!!#&)+.258<@CGK|C1#&(+.1GKO~ξ -?A󭇂~OKGC?;841.+(%#   #%PkwtRO>:}۠tɊd2%q~bԧhS?bwQivyɤ?߮Vwv>m%Dft}Jdt6_D?|a ?x̗Ngzpq"i{seДf?U_u( 5gw_H-7XD+k`gIࡎӇW}XƋB5ur"Nrg#rBn?# ݃*Mixwߤ}!_?'¤$PLGxtitex~g8.%K@;b~턁:p\r֗Y;]Uq}up9o1xO-JhOen'qKGiP:7$TBswVWH`+ J%Z IǤBhgkSgTprQIv}U7]+8;=@[X[xzJ@;N4Eزw~gп5 - nɝ&ࣵTސ}F7B[`0T5\}TF%vCh&ұw|m}R|G-/VET_:! 'uRw<'mjJzvӁ&u~ϱQx6<87a-a+ |sG6?)7wk>> -0Z؜Si}4rշ([8]^^3! ЭvECT6×Me'3{,>6`PtWؖ@HyclA] $ @.ϦI{)2vѦ]alFX|ʀ²O6UY{>8H[k{cںP|Y'vrPxP` |_P7qn,+s@nXZVO" ]Ѓ/2\:6L,㾧mBxS͘jWof. w o%#ñ>Rp6N7#Lڊ7X[Kz_K ?`crgW*49&T-lNikP':q~ӕǍ[>_~VOaeNvp:W{ٴ%dt&dSɵbi[0vNe=Аެ@jZee0*ݹ -h2>MP ߀= -O;0eOv8NשMo4_xy?D?ϲlr'£@-/weR ?䯕΃u݉fRANm; -+y4ȣN8fRDsCun%ә.P;־{ZñӤ[_`}+(Xf >Yi'Ԛè`bNe/wlXMy<%[б}NJwv H~ f9'}B"Ȥ[ ,нyIHA[,*#sie{xg6]i}_J}V -*#G_jDŽg`} O_@8>AuG >DO6g['^wkYܢ~"sMy@sk&{>oIvM -䯏3a~f1:}JOkc<қ30vfYEGu1κгUoW*-?t4?> ^ˎ>B̯*>II@3C1F;fŢH^_P#XCBA"y c5r" mo}ɖ{AڴF E~9Ĕ l-v~KU=DAh@sO1Q;ܷ8G~J3rPt鋭PH_Bx =tAza9?5ՙ8LX<i-M.U!ϯyV͓g8]GcIB[+rsiLU{` -]wF 2u%zc|~H!U=ҹDuxE"ݛܗ?'$6 w'!c_){?GA]tr Tc<2;G|Zq'#XE\io֩zVr'XÃY;fOVXnѫACn!9=Q)v ~`:~v`uV C83y('$b?C1ݓD^)C tWtC{ͭ?sQ hKAL|䊞CZ˴96uU^*Ǹ#e<7}q&2f\e(ʆ~;h䵲aD_".%Koi`mKƗ+$ԈX?t<M LXɣ_fEEү1-kn =Ԡp95|孵q׽n^١hKi9]BM$vȭUѬ)T//7uRBp<fb"N٘vX!Z|b"7՗<ɫ{#CJdYș9^_n%oP|r4&35o: -\ fޛMad&PMZ_gݔ_jF~ͣ&=8Mkz?| S0BRҝ;QuQzJrAl 'lozǛށ/t]pp(̯6 -4NydRv~\'eE:`:P7);~yh7p։r+wweKn|r+уm݅8E1NӃrؽ, Oz? zAd$DRJydЛx&F1;6y,lT| jKCZ[N[ M!+gѯd4؁%FЀmj_]+ FE`Pj5ޕg;7kbHQBͿs}ni-f)?]FG4+ƾV!Bn f69_Pxr}!BT;ʺ? -vdX܃ '(ۂ<~M!H~ -8'9 $TMv-xJ !<\=k"I-=~H^ה+5]4 C%w6B(ͣN`_η=>'ahl8!w  _V=tY Y*6ٷd#4DW\J`a[O'JʽEVx~G$&a}h/:-9}?X+IfسOh9f- VbC?eN4ZT bU[st<(Gyoup1|mqZnОN=BڏFn5|IyRʢL.98k})]/ BG>--+wmefekxxQZVơ gI]|ߍq 7oZFwrUڜ~WAw%l.TZ)]tr fi!PvZz,]H݈{WA6 }]@: x!7fRbՑ{6<~ЍއK2Ҡ'StP[*?r{a_.;ZB|hhYpWeuAv*'9LVzJ}󄁜gZc$Ȯo }cfyEp@.zcs!~X9mfZ6UHȑA@~~w6c"K_;AZg%tf}qkjGuz |nzV~=!Gdc(<%WHa#z৩K7sސ:hC_,-3}R}{umtiΦlދGE2~zpfDp [hRK~x'yU5}$xiǾͪA/'!+-L~= o8TK5d~_q JG@OnZ~q'%99{c;&x{;~gf*؄*M䗧↱z{BAU 8xA2 ;w}G}i+BsH` ]aM ({fElrƦA䎡>ߑYKb\5paoB8J\vb+y%ǒ~MY"cͦfU_uZ~ Eȵ`𯆰DaL'a#ңFzH(UwWC[46Lt_lzþ5!>9śumլh}B>q:3NKbzxU}(uRXRvuDS_tǻv}Y_Ⱥ_a il"_S/tt6XIL2$ eZ`5>vKqPSb#-0MRlP9ݦ{_r}еF@p ܽ>#VҬpj㭁Ms`Enĕ=v* L~+}[=U`H#ؽ_b)qx7lu ~ 9~ڛ6enTbm#Mv }땃.AZlQݕcf:6ф ܧIT -?aZѣY9Od1侧Y+@2)V;$ -1N=n.r"T֧쮙LS$Vlyq;Ҳ<]X?6Gu~ ĽOemHJGV>6wL#N~GxXZ_ zI3 vDmu,WrjOt! ۃ_5r".`;#ugO 0rtwW^;ia~V,IQJ&qJH~/>(~&/*$rߍKuJYYgSTw&7l/-ΏĐ)G5l>OH \zx -2nGuj1Yw]?1xU?S:t^c-G-WQs쭕 f[n-kc./)}юyX D5<ZOCf&ƠRn6bbM#ɩdS-}[o+Fd`tWséok)ΌX$䎂7>W7OeӼV̤J\ wwbMnp k.ܜ -n`nJs@iM7]m x _-Wb_TFxh$!ܺm[U#%0e$yHïNIRQGO1hxy8Ew\% e0$/$r9,N`߻c e_[I-=bw_nͨ29UU&5J>']}2~qDIZ sMFR~f;+>6RfZlBif|jq'tVg_xSP(a>k>Qgօ#֬*C}oؤo6C}Ɖ|{4$}۪b ~`qrySNپP $@* ٫۹9;U*F GpWp"+fBfaNUJ`uGRI[8;6EMt^3﹫!:$c;O}Q^k\YFrg6+̦ؔTxC/~?ID YGFg=9?w`kޮxG/4GO32~"# 77xhxrz+ ޛrںMm=*="=uC+DbVZ%'$hھmƃpџ羹yԷ ǡehw&5p&=jbw -h5afe{Aܱe=Bynz% x%ԯU~2(+dP_?ᦝxؐI8[o%>*>|Kd%ɾŹ}|FhGvN:_K~ʂv_-:a/çu܌Q6AOsVOT)X'+W:BJ]^~Dn"A Ϡu;~0\̊w#\st t{!\2ZuҲO~b?Y`ϲ:X; BXˬb4ɦ @円aCB6N+rfz߶na^V'L;&쵭V3%B1Z vH-` < |z*5U,eȘMzSSA+%cV}` y`ZaR<"Q&&+٤h Ė}r^ -{[<m7"1W~4}|ٜ4Vu`"_#@yʑ"P4bX,?E冐62h~Cm>1rCƽ P;ܚljG>_K$C)&Pc!I~I!gߜQwk7;W ΋+ݑ4+8TmiHuLWb}Az1 aQCB+AkTD -$ (#ZT@Rgׯ ~_G(6s) $eԈSr`Q#Ir ˦aw ]R5MultCe,StR?H ώV|㧃zDy*+'q퇧c}- =VieR˃'pwHp,op8[-0-fWIVB$1-|`&6}^ dS(A5䮣Y54ʯ9Q=Xσj+ݵl -o<^Ig}o&2aH* -ܻk&(Qxљb ;T4$+9D|7|k \!>HW -q4pۨ t7@ԗ/:5CM#<`UuV6<Ɔ9-7c'9a -CkW6,6->F7R׸d~Q`DxH`}ЉCYc5 -l_ĕc?߶IDMЩx1>0kQ-צϲZȈƜo0î򻑓 ^~J=^hw'k~Z޺dGz25r+tm\=AJCFغ?ͨoծq}x=n1ۗxA`tኳc(nf#`tPI)DEGMnlR+?}W^S'@N|XROn9혭~jn87G|J~ [p~٣S+A{niѯ&~XU+Hr?t4i0_Fŷ%E.>6=Bv,'#o$-nض ?Vf&S_0xH.ج}a(VTS-Ϊ f.~F̏؇z4_a9"yHىSPďH<6?fK% -. -;blmkʃ֗E#7 t]w0`ށQߐ/}ghBjUn`h]7Or=[3|b͉L(?,寿xzd?O?tk_wAH4Axkn]NCjpȕ E,wæ۬펚ޱ4jmw-D)bCICYnV/l|X~Qok#~t4HD1r2xn'z˱ƌPͧK_p`mCVN[ƣ? Z:(WT -7}f 0&?;>LVn׺a.wɝXY}'J~y)lNcwyW=͏6w+aKeu'1E9.G!e@srQv[<q?QX")j_ -:ZM). ->O/euGQ4xf#aOu!"@I# CONu0zZ݊Unn'oyTGxG?;g4Lp9{ :nމwGW\kvAeF߰Y#Yq&&"ѕL(uMTRhQR<&VbߜQn*[o~i#bki=&#v!=/ry15Bhuԁ7 $;>/.+) ~,Dh/E sapRpQQ>Y#y9;HFrO}Oɏc.z?`!=nd1#< q j52y tRFTNB1*)s9T%!l!}|f/Eal6h0xi]aQnOfQPt.w<4FƐ{N}WE9akSW7:&qIڝNJ!qwн=l c2`< g:^HȉDY=rM;~{]|ڷlloUO$Q1n G}=S;@cw\>f%~_'oq[[oz39i5W 1K9_zP=./ n/Xf ș `!(v۠-IVS1-p=Ò}ס," 8k}8Fqa.E)r -K/[UWiwVztb6 ~t ~n3hd|"n/jSRV 3,w.M5w.hVjDVZ,Mb4*v(q;U'˚¦(rt<*WC}ƉU=8oRN+0)@~]s]jZEѭbrqlƫRAGiWem3QQKSDˁXg6w }*x߀B$Gflڗޯ4ԣHN+*U;%.ߎ:~nD_(>N`"S$Re|="<.ϪcCuWrփ>!hVut9LVZý}BWA?nS|Y|k`=5N}ҷHnj[<.L%~JڽJ.z/՜ApwcI}C)}Gvǟx?!gG 5;S@);9Y~}wv#"S_(}{k}ھsLIE}ZsD-MMDV"xJzdbݼ4 ¹4'gO?om% -ى<иs 54š?zhYwuky!PTd. uB_T%w?C75Av"^p Ys_$_ٝD )A~5Xqy[=5ك'G k,ڃ؈D]}@'$e ;K53Exw|;/4nuה0&{_0 UK~}aԃ ~gu\-fVm#ӸpQ#vXgC&::630,)&$!$'*-037:>BFJNSW[`einsx|>'.cfilxsoje`\WSOJFB>;730-*'$47;?CGKOSX\aejotx ;841  "14㺪ifc`"$%'*8:{~ʠ"  Qqat_!rHEC0/EARW[`diϢ{xu-̰a\XSOKFB?;74" '*-148;C@>/4̶k[*+SVY\`q~zuqlhB)ɚj*gx{旒D 37:=sx|tqmjcз[Ђ>ACFIMuxn]aeΐqnYVSP>DG狆}ytpk) "$'*Mkܧ{a!aejǑd`]Z_62/ #k¾]XTP  58;urWĠlgc-(:lq˕J)aŀ{wrnjfMJFB!UYh`[WS.;>BEIdhmquzaJ¾C(+:sxգrnkhผ~zuqmid`\XT8520-*( -ɶ}yvro0ן|;#! - -%(*-ptx}+{vr% - =A{I -WZ]y󻛗}M @CFJNI+@C8630&F[_cgkpt=»~zvrnVROKHDnrv{̾ŧ VŹ]YURNJGDA2AD}ŁLǹᔐgc_JFC-/GJNƶ`L`Ļ[WT?<( -2IMPTWL=::gɭmiea4 4FILPz~nO((On|xa]Y1HLORVZ̬nYY߰دwsokgd`\YEY]x|񽱪uu¿KNRˇR4R곰}yur[XT<+A¿ 9z~꓍Ŋ|UQNK;6imqҦ}z+Xv݉i;85JpvsЭŘ2mptxb'hŸ -=@Pl~ݵ³i !F^aeiyy™VSQc{|Ժh4~ݏ|]ad{rsspmFǽtϬYsvݗovn -endstream endobj 28 0 obj <>stream -rL?BEHKorvouD'ru{mno֯}zvrn630'>vyֱ#3lặoml֞ghiw@%!%8IK²NQUX[sadnp"=ѵmj&볰vc`a$*+6wur``bc|PMJGieA'%'AìZW=aey,2ikzZ]t^\WܥXVT70>`WRVYdSTa}/tqVwzUTPQn;4vdfroN3KgD448xu_\ZPRj&KLOFdgiwULfi2_b\GqҬrA@<<O0#5>@BWRRprzIGDCօ2/,z~KIIsqoUg}yv CEb{_D5:JGA˜d.U&? UdFpN dQ(!d0Ȁ iԌX_zuLtPϡM_ܑklޕ2#YGR[ۇiiom7T\,.t?F;uM.eiz$ŪEMmAMoNy/(UmJþs3*<2GZ#t)eG.3\!qYkYOʹ= @1g¢ϟ I az -x5 -©\VN$\s>>72/3*2h}&SÐ>[wrj=5_*%UaB7%3 `ZKG)oXB&T²w X,~92cn Zwۮ7u?dS•fE3~~oC,xPjH qV)}9|:Ҡ<:?}( rcr]x(%!}i?e-F=;=]+7x(3չnKi7qo4"igyiG -㷪&"Yi/EҼ덋 -oc0p r)%њ* (P~ڠeP -&*ܦi)dY\.r?L[}RajpXz9`?oZzQfZDP\{zz4_bA S乓;q0ry6e?^aD6)^4@^9,8wu,72"H|,c@O`z 2Q,Y -1[k$BlwyVᰔJY;/jr0xBzvR=8 3nyHjJ{FRTZӬo6ٳ⾙͝yi#Z8g -q'I|]g+ڍ8EiNTE^+p^IڗGϖH$?Y;f18v0KoZLZjQ:rI3r~ ju2X!Nuo,PhE|"s6Cx -ax@M -so}PzJ~U3`] -x:BynbBB onJUy[v59Z"y!Ψ;Y*t_JtVPGx=qBùt¢Ϭ8zi&^Ǜ 9 Y|K@>uo!8imї(Aɸ -$[: +5yfu[B ȾP˰WeX 6ݩv7I$^1_7a )hA^(緤}ȒHGO]a\G -)-@JOnN*Ģ1'Z-DgEiq%_&:pӯ[V,NN{?>VnkV Lͨ0Խ.q\DuQ½prY.0sU$.@uNDC{W;IلH:˭(n ƒ~s\72H;]uۢ˾~J?buFĜ Os 93(4ls=z~n{OJ2CA$s|ք##i OiӦ{ & [;R(N(XMt9Ն+Iǘ9~ϣW1(G#x&8tt(OHq$SG^֚A*px(~R.jq-5-V;nSH3x5K1j,V  lXS1N4h3B ь2D6E!a:-?_ko(6 q-.T&8PQ8YWr9 -8BO.SOJTң1iah]J#-?_+"Iy ҋ%~g6fd{ۇPnWr{zC-&9uZY -C0V7_5C)v: 3.8{ҀL׬ƛ,fKX:/p聋*hϠۖ)þW5ZVϾJ(ܷ4Լ&L;mjԳw0ـM!^g&9`6?7Q%oU.~2U8uZa͛uFyX"Zah183 GxPQoV߱jhM-˽чܦ& Z|cq87G=pkgvW8V6)p -Us'U-BI yo/$?.ć ,\,M.KT O㳛%B9^ -7;r?==olIT$x̪/^iiј4~I3%ՅS~Ls*1NpXAҗ:M(qd%6Ng)PP}-}0{Ju^ߘQsR[ -m  'ȺoemI54@\yYŏk>8jBxl3|kJZ)?Bj] 8)Pt <ԴZ{9m?܌z)$'1\S!l -!+GhyoNT9! -O5["C 7xPa -8"TvfGqUW27M-ևx)]wNZL/ѧ69J37)VmS{Zek]j[=5IqeS` cY!2"&sۤdq,z`Dy}}|'ɼPXsX,g^3"FżCPjG'd\?]\(=^$`j-Ey_<Ew6s۶.ݧm&q8vEǼ,&>؞-;9?f<٥4dkj< E}IvlCl"[wb  kA(HCDJlx"L9uÿ≇#s`{:}zSKLP-:ODGr ɧqXɑCH>_0pRai}~ׅ0:0;phnљӵa2[t`_ -$j`*"к6YMY6an}nboHuYeDzBI%|m{ -MDzbTK@ɕ{̕>oCNke}zI(,H֟Z8^>|b$1(:1Ve9*#drHpn@9y9<~ " G6̾Yxe 'dĵ{C3Q9,teŔv*]yTB~oy@4֩76y!fdwab*j Lv9R.ݵR"ֺ??Y/ΟgKΠbk(,:2S1 a[7EQ#(D=IJڟH9N{ZটR54DS u%^oblēyoyF&8k jb=$xJMLF>|eV[hYj!V$ 2!0MoLj5Jzt$wʶIVwLbxBjrD+ nupS\_ǀL'rP1S}l_d9"u 3u$yUC- OBS'Ce}5J|VLW11\-^=ّ!-h]0LJbI(Ժ noLlPmf}~UA!5$#aLB v{*18;G4$璐,FJq_]u2>!s^Ψev G8ncc O‚3 2b)^ba18w IND\L{\$axEA5}/twIw6=Est">T>!`VnS,w:x_r UDXWTe輏cӚ#Jp -k+[T<$5`pc1$vXH"ZЌ}hrnvJ1(Z< -/@}gD+ڤt|gCHz3Abc?8ѓGmz03x"K>խ *:ꨊ?O*'<˃r%}c}U Yh]|5yεZ)pʵF[sX3LG-ntnz8a9ylOG%U&@adjC3+,N75}Y8I~W>KC?(,ka2wx6l澓D# ^ҹU?a'jz| ?`q2an 32!?J%}=|fi/`.xt F@2b^Ɋc*~.L`AKL%lPw} 'JIeM0~A ]v4~ ߫[r+lȢXRyT\Evi~_$! NvI0p ! 0M|Д5te^:;C5:hVC̟/1݉8oߓh{ld?KGXp8yX#R+[ABo@@{2ށcFxQ[5kO4 NE+3{N#=bX %bٳ 4$~DEgp~y{We< xC$HC!kH2.PAul&Q|{!~߃r`& cʭ&#]'6f%(6rtQ{`pSLnYE. U"A%@fq5[(!bX1պlERS FǹX,#$`fc2zHIsnPj9Y~gL^Q| &H~=vS)7рx2UN̿c8CUU{:Nn8ZR߰"Z+ Q!EtYPX Ej W&6a-iLB8)0|e(}Z,#ZM` F-Dy^ kwkXZZO~gA%Rm-cGنLeTؠD -v`@u^|]ud 4L0^£> NTb~?f #vWЃT ~x[,D^D5>zp:8S3s2;eǪVL.7C]`Q -ހ;9O58UwkkPoH¡wa7! hSI7ؿC/X=>c - !jF]@9hpgy[->h\/wTGJ,Merq}p&f3>rm&_uJ1s00. $ ~+lAKgӭ3+w\ !]%2׉,X,;;$Z@B8moSc=Q.08DI '%0D3NG"8#s]\2eɨ*@*?bc`N ~F;*}Xru(grD9H -U=Ԩ+F|-.wY摈ݷUm9^PdRpadA#<^ʍ?;A8Y8 a+1u\">$ǒA37W V e'җ,X\=D$kJx_r/V"Ȇ"#d>f[Uς4#/p^Y]X ߽Kz-h7&ABi0,*\muS~ e#)Rn {dg4V*` ڜL%ae l?>30BD]ӄŇ_Cc+֞?Ԭd8ETe` -ÖZlX@ĠD>L54l%8BrsUzQcE;cR0Sx|ԷXÒW3l/ש<GwZT{bSq_5ԑ!PҾ9`QZApr5$& %qȅ%y\p)@W=odo]\V\z³1:[iy[R}DUAN25dj߹ p9QzΨY[6rh,|bjo3cb6 וBdHDz~L.B <).>8$c#0 -]u]lq7Қįϩ5Lcتd,C=ݢe%Cn#ȣd|Atcsh&4/4҄#5& Sal-לOt >}ʺqS掦ǝ%.o[Gڼ>XuvB X?k.K|0XGQfup_V)<PSM(A"̆_mҍ ٹ(V J\<5ݔJewK -ctq3T䄦. ?AMPBQ5w߹od94PFnrX0v`C-~}i%w -pٽƏo:;iR"ze+N,VH'9imK,)ċU;eM ÷w]2׽sim"TuMILn:1bmsݛo:;rH~̎YU}}IA4tai---u!hlS IR(+4vYsxjd zWJ@ ~1r٭TQc{&&k( <~z'[(b҂ -]T9ozb8Hҕ$d u@<1Ծ$M>ОFk+ˤMuqWn˜  fo~a{?ID*/VJQw; -1[ -{jbSf;due}BUo_/.9Zdٿ~6f+d+1 -X\?.}Q6<<*p%OPEpдGCM)Psj< s1HEɺf&DTpPv1X;z =ZOxLofCHLsl Em(1h *Mh YirZ&T,Spړ47뷢vl}F%$T) KǚRh]@} m:> -ܤB,ԥo3h;;;^MoKgz6m_oe!#,3&Iͬצ0o\&ધm[e% -8.0'`9ROȫ{̞k~y) Mkօ9 g%*h=0{lf83Q7QR R,/b7A s$lחa~-sK< hr v,}\4p*_3{qLq'n0Qz]BE8LߓQB}xOKReqlvcmy/.N}q%+Ύ $NEo@'A^ܚ%=VDcd~< 'hsFU !5ꨐMh>l=#2x>h&3\PT@Ka[g6ccG&Z{k_E060&>YfYŤ(65]y:￐g]ò~F_Q-utz52ͭߌF( L?')Ѻ/C04Ŗ9|$/T*HB e__+v&w*7vIJRS$Lfc*d~근f8GiIpV+0L@FYu#QTIڔXMШ&]|%žM%6-a:d(F~bNYǯPh}abV RG$ǿ=6nIn -t<$Z,R7 ͜1,sGAgXOߝ -ebwdU+,X1T<:LXgqa=fDžy;7. -#B'sXHjJY>2EVxdx0; f(,: }['w(}G>mV_l߱ ^̩va F/آBef~j"S\*%Q#ϔv#%Y7RMU*}T3.Ϭ߃+ h @u8^*~0#3BYnvSazN>&qk3>8]|}=9=@% ~<'&W}v/clЫ~OKN /~x#jB`v+ynr6KpxI\y_ 'տCQ :3Mrl-% 9`)7T y " Pm xSnGl_T*V}Ivk"˔(xlω~1j8M)D~r0 <,WppHgOB(P@a>n0x|o__^sk`@[e~&A_"nuCp5Ʉd&BяS] 6 MJ"G]`!N*Hplpӎi-*(S 2gUYMG%$5&Ql8UC:}&[:ϧgS q _4AӬ6h>~=O,~_6znv, Yk^£1pinIGOh{̯u0uG -薇]Bf`?~_%.`O!nd5,6LܟMtH/s2^y).1 xMsyPŵ+5doݓrn6ɬ6FL0 @,} [?Ǹ%_sYwRV$P ǂX(}Ger4@MpJIn -lva%WףDfol~\Mx$G4?7@9a7.DuR}qGjǝX\'HVįx@ÉWf66Ju2!2d}V|W4zC|i3?XFL)aQs,:ḧL;qtp' I,?eݵݤ4n=~xo*S(Q/K<WA"8jd;Mo^_T>6#.4[o(N#oc2Q/!Iw0x,0WDe$ J+V(V;6׼6ܰhhr -8U4DjzUL`\IܖbL#'!_. ~@x^ҟ =ɾw >k*\OgW_hM'qܰ#%#AL (B>ur# f*I]ڗ+HA8)5yG |Qd ^GoZn 'z^EL>%ow}7$?R3Qw,x50!Y*KUEUw9*"pbv$Qfu.ipN-pw" yPE 'WԆHew2Lx J1HÏ;QK3XO^NL;^?Cŏ ecV:;+~ll]<9hMUši7^+6o^ 4`!XOQӊ|*C71/(*?Zls2.D~Htߢ :M®{L*GWg -?CCݷx<+gWkUss`r~ ;MRmsQLKԲF?]޳O%_Z-hi>3ֻV\"dr~دJdg҇P"4<?-{&q"yc9&5`҃5`G E8LܡN@L_XؾMj]J6Uuu6k;wi'Jkuޕw2R\31vJ.{W73-~uP͜3>uc?5"n?Zr y„!r=, n,=`ãZ}uP02d0L@=qm<āӔ%e`?2` "CA䂫#'%N  >!ϚҢ߱2?<=b -jP"S+-; >R*867/,t?O1IGq|Od?(ѢgZY5das=斚x &1GD6:I3t>[Za57G}'~` @˓#KZmj}Xr!Cn[}XS-N4&8~& ^*n?QT \ih!'zLitE3dyx 5={ׇFv -ơnU>p%7O-癇q_|QzwϞ b[ЂE/FRjRi3F ꆶ[[9\+S.95s^wX1Lz6vΎ -97wQ,?9HMKY"<Z5^((0+o250oDwf[G_ߵjKV i,V 'p@rj\r4Y9?L^2z}ȦK> -Vwyȫ}~bQ\*B!CTSx_bo+mCwNy=GآIRGCPg6$vA tVzO>H* ) dwOlnA4zFx>r?G~o$SN>q2_ɉ\w=r7Mgb^j!Lmς9W5vWF$z -HB'&9}O_}٠)Ŵ5 gsg@X+dPqs u3ZPdL?tS6-HqN,raAs }Ϥ_O~]nx? U}G<ay^~dcG~VeH]IC.iCbqԷtw[ܖ{i$ijF ]}Yk m}qCe9,m{HF+[8a->b-M4ˍOnڮx|Vr;N ^1η~v]udz/ds[{7{?ɼiI5M@Jy7XSV{?M+YUb!nqxu dIHcp*Nn\&bI1d,)vw Gʘq r]/? TZngޘC enq4&49o5~=u/cpck]]> `<@v=Ь -a1+ HнZUG@S*|!8'fgRc߾FǖZw?MVI j OJ(wxkU,L|/q ?6y`q#OD -q5j|K舜{eݰNd2P&|;Z:Lz -sn1$5:F]joܷrcR̖ʈ,7" a7/qVP[w,N2B4lr"G7r?|%ӽm1!)]۰bOZ͛dhu>QG >==N% O[x!/;֜-E+^9ݱbce'/DS<Wr+K1SϒqΘZ,pqC cő ЍBDjf՛XdM1x|{y|l% ?[hgg[ YIlf}I6Gڤ1N c>M<(AcvIjqC/l38Ku*C -$ʼa(_^1&ݙV!s=(_­` v@jXkAF9Hx8;bD,/Pm4?k~ RX{]Z?OQ 3@{b< 4ۂ䴿Obr= hԀKȫ1~#oXkmWνRmj$ D2uPiD BצWe®M$ƯnS5[4ov4&f/ح?2! |2_+xPj9~z3mպ׈VίfTMwNZc<R7<ԗ܈00ZfrܣTK%6 v:N9[ g/ۮnfHCeyHQN}Ϙ<.BY -۹iCT߾8K~=u_cn@2ek 4rd~GAa{&%,;-x42ɄA"^b5v:X&uQnafU -쎈&b]\dǓs+ewMR~q}6$>i!$Yy!usV(yn_nD7}M;԰Xz>u+tPieMӓze}.[fw~辞}{@wLP~KZ PpUdi}k`lV M]n$awت -Y`G y$<8i݇qʗ#'niZ_Aq2~4 ?6@_@|~1ulit=pvZ޷>Rnbu~'(b]]kxXN?m7]_r1xI \қ4~dPMTq \L#8v gx闕@vNOOcp0-f㑜_Ͷ/Z2򡐖2L'fV~b@t7Q ř6.6V('@wXGM㇁%&ř͵0ҝG "o8Oˉ@NBic@KP VaVԑ}x6>ᰭBfv_akgb9>@RSiA1iefA64h|75431.:imqvzhzn9X岝5Y\xH,vmoU:76.ps\_G*xyzM4210'Ƀj+Z_yїyy[/.N}c1)(CGJpO-+H(*EHKC07:^R313O9)bDFk$&AB?;,$F&469<@῞31&PTsڡ赱x]osf`Q/SX\`ejnsx}Ͽ\A-#(8# mquߧ42/x˟¾nje`#!a5789BZ_dhŲ.+)'Z+.37DY\Î̏!ٷXC6969=ADHhlϸ*'%#ġ[X0gc^YUQL'ƍE3AVi{va]Z,㽺C1#Y]˳!W ;Ofb;$S BWS*'TX]apSK3kIG/):)`( -M 36~ytN:/lV!36:>A\`äRNJEA=: ̝~zb"AEnieCݫ&[=. -NRV͚d`[52/ "%^+.25nQMIE7ﻸWhB 1-7vsT wrmhc_Z4JM&(FW .14mc9Tcؾr-DHLPUY^gb^YTPLA" - -?CGLPTqlg1nRU!$&;g#I] 4B?<9S>1 #VS6NSW963V+;?BE\;,h W3h'$" S".5Ql#-?# /M!30-OLDwT8-⻸Y#Y{}/*9 -T74t[ Q2`Iw*IiϬ 'bfG!KGC?;N_ Fߵ*?gp*Q4pݠF*Qf<:=/RuUQNp 95=K9P(7oWsI&P&-:)EFC$& q( .dI+إu%'+kV@n)))Mu&)K:wFA>ԡjR9,/2h2B; -: fI7g*'nh&k`˴XulGn[MH;J%g:}p&WJ xcE=2˅5 iF:9򵏍_ \\Xsq{5L m+C{Gx?a/dʎBteρZ8KV~A.Gؠ5:`(}n洎AsE!m/_Jo+jWe{ܣ_hdydhR ZɻpBW2*G%y!cr=(yYnnѸ.S#4Bu@`*ﵾG^WA/@PZ"xK-7&zt@# ȏンI2$VHod*tO*Fx]Z\ErO=̾LB* ..(CC1/X qܦ#(8@s!Z؜4u#I]pLKx&=ib~(nGHV<L& }% =GjF˔ ݄=_SGŏ;}O'MfM'H7Y} [V: O>V7Dps;~!KnQa(/J΍+: 08:+&q=!^lr\eIQwX`lß&`5PUo,PɎVxГ4@Ǹ;4 -~p;Z^-trW}) .wĕ{ND ;xnu%,0I{BfXl"‚&G_J )?q@]tK J?n'Q=}x0?s]?Eo酭K9;~ITS!e)Q{tn󫺧C͢s1О'Ěda_(yx8qH$Sq}܏ٹ;dU'8a <>a)_۰lMiБ(TTCBAT#6k.Wqi.=i)A<5%:!ݱ]Hl\!nٓ} s˶iUa>|WW'束EomgF0f%|T678&o7Exܧa -1`)8B\ 27(ŗ}\deDk՝W9(|gKqGp*d $&}2'lUzGƩZ%U}BVH ѡ[\׿;j<[^z@NL1z!;?Îacދƣ>F3xkl+v}0'eN%&/EeąU -!SVeVz97[KSԁs)`LLyx0N])g=q~ \@pR& -*8;AFqtZźo*t+> 8L l@'6ۆ5fJn_!7^ù0&N]r_>-K"`pcC roWX >-!p8BdOb tct魋I_m 7t ?1Gȏ?ޘ ggyvO`y ~܅A=< s? -xTlk4Ve>R`"JK=3UXM8G|n<1nT̵Ѿ'Xn-P.YTCـS_5E  bF8Ÿ6q{)bH"΂K'xauA&*?}u$7^._#-\ D DSȈA)jc#Mw> &gA -ϾL#EVM'9D6. Cy< hMA$-.q q_S*IЌa9:w,Ps;(pha{v8u/XV4g0bDiֻ qΗJ? g1ݔNoU#˞N N=L,\88Ttp>:EXcd -$ Wok >OiÐ+HnA1$s^L]kFACT}C΄TOWM[|A=s99"Q M/6#n_p<_^\4E>< Hx&.`S#QG'2[D9E]LJO05w=oCǏ遣}? 7tyd<}ЍPyxh9}1 -~ևX6j$3dń6aJpm+ e;oU$AC̏~zy򑇂zSeuH s8.b+/zo`o;hZ& 5 9NeYC.jR3GNmȣo.,#Op >CI7w_1s3B"]a0U> 1V/M<SjLи/~rB7*%+P3;>*^;Q/X4AA.:zƾbqޜw&?}}Qt2ڍ>L'Ox?0t|B,|!StpaWAi:j -* a)(dD׵ k˨7g:-n(p!N},m]T>K6Uq"KxS,Dpwyx[tH·н}oPe`WGeY]yӜWqA<*;n~ $ =#!s8nr6t?Me=`4.?m]VyXe%eM佯an\C737j`bR?db:FPiA)?[0r6w[VU) ҝGfxpN+̞,0(V!7&u=eQa<2Iy ~-.AKQP)y=v~B/_RR&D^#WhPxtE/cW~X^Hϱ&i2yS;ڙ+J;𓼙?3GIO&JlԆ՘Ch , -: ƳpxY sv)̃ v=l#G)QEQE_n橛]ZP0t'"Bax$}y\y"9Y0Qp9(Dnjm2c e>Ir@iHA1 380tL߱FA -(X~)U~_HgLIq{A]2XEp&g!VE7נB!0wF}!btjŒ(ڏQ.M<[xw0V%{<5 CDgBD{_<n8I]4&yS͖ ؟ =b}ga,oZF6<Xzqob7?P(O-M:\$J3(9yJmSP(J6^0b&z @ǡΔ4g<SξP8BTB~?YbmQd-P -Q%Sem*Z#ʫixC~̼/nҝ@ݬ4 xa%fu2rЈYrMYvш':Ӛ }IJ"4r/FteQӍQaõRF d% -3DEc+$E&Hț~If%VĪ㦝_-J -/னFJGGPJJuq}i*8+)_rGKޅݣO`i'<Y7clܢ; 7M1>[9kӍ.>>U ѦRs%EQ*S ͑rjgk"$7 -7[XQq$doHTo~dI&yOkVdg$$i:JnEtr ;t|MGp"Zo/bi{Yϔ ɢD}$'Sp-ĩZ #[?Ȧ ~ghl+eLOƾ&$*i}mx>T.M:AMdV\K6jxѴ#COHE/(dyҶE-\s*]:k$}3r h.U֡!tTw'rM)3I?3-ȥ+B#~(S?s{L,1(eg |kn "]osy;p-/7#R,m<}vm|̴' ʏ̤Kva-(bzZZ ˰gqSg޹,{hwN^>#| -uMlaa!n+ͦJ -;GE{Jɏ5M~@^])9jxZ.2_{4QoTG"9zpIˀ#soU+"u@ąF;og FïY3鶕 kmCNBPzOim /Ѩ hgOq+ צB EthEkhs!& 8I-Tht 2znVpDH8n7TNӫs$-""~!*W3Z':c@_sSg vOب`.;@ Q)09HXmTʦGXq*H4_?f^N|2ޔ1TzF=X3"Gω-M}*<*2)|+s>PjPHtĔTFFp>, Nmƹa5H6_d#&$Zn10a32&1&&o)OLq߾9ܗawްV2! h8zR5Q.Nφd?0<qO%1/r\RGv^~P*pqI ,~dN}M~BGƯo%yI!gc5r(>e/>ֈzh>GoLLwbh1$yk/7]*a+,<Xdmh_ep/tDyd{_ ULս {!>yRiY^RdR!'Įe`uU^$QIR*MaV%\Jgu8_."|p_Kp.}Mxgl|Xr/f,gh u?.E7eLۻmO!0-;i!b ߧySC|I& mf_~U?S֨!y<v%%DI~5zُ:@άf_}҉e*ҮfR"c'0/z4f0"'h!2=Kwytъめ@[Px·)75ԃi~G }H@^VEkP -( "݇ ^} -l5(6`O>dw#KdM,ls+b{YYBQmR<LD5ӊ)Xhyt(GGQi%AMDY\4ĂOIÐxm' =jGmw8S>)[;чS7Ж>Pm{~PAh+uCBKzmOƉb򓒡షU#)5~<ёa‡A)Q q$ XY7>Yo>YA}/׺T(:X2JK/h~CV6i5z<)r~}7tnRQ]5`%Ɇ,Y"iMp*P8<^2 -ˉ\RaMdx:JhBtf wAr/F4kB @gI2I#v%3uW }a_TmCbtsUKyB ISk!فRV3L75nAkV,9͇G~ Vދ(ɬt໇#?l&.џ+Q,/QN{k>26`FC*ϱBMɩO|>uMFH~DpЧQ-sډYS% JD^ZG "77G}M:UUUf;5;~VRGb/r_qƠZru8-2vF5~&_F^Ţgd#ŵB.h7sCj~[F$DEsusQ;y0g)R V8 @~zvf}4†BI Nv/u{DɄ _sa(&kӼs2 `´O,m[ln_V]7H,.j tFQ_FWz?]'E]/s‰d% +dr8kH'c.(SGx0Ntx+{`5s#◧MǀgjRb ԫ%ͪDsBS#8B>y_ J{)x >j]qbn7= sHQ +RMlKr FZg0dVG3p@df=eP>~Ez]?>wNmsϰ-yo9j9;UX!4|"ƴ=XG~Lhͱk -rF|cGɮ$<űkHw5UsWGw 4\fՆDa'3y ?NCNO& ?[cԺ_bJi.E!rZP| .X1 <ݶ9K.@Wxc\DOc;婧eGwiJc/}}N>P$dg. @mB&Ua}\r\x-NV,k0Quk"!/ -DN?}2:$_yHui'6:'.}5=+7[ݚv-XtV+JޟyFյHȎ~],ʏmãa>uU5(뙲iW~AWbڒ`=E;Sx@VAܠjIdsN>ArߍX2y N =ЋLT )N P`ȩsgy~n$ȥSP{ V]}!#a༈FoWR W[~K4|/l&AX [|~(Mco{I#?<.2 $8g!eW Ӟ~Y.z # 6XrZt aT}˄I>.NX6XOa;0 ~}&GoIud)':pk h]6~dߧ<˯!MiUJzqi͸/dyF:\3WFÁw}^`E2(kni,ytx6!vvt#YBZYx 0h'.E ;Z3,S Ԩ>!;ZYgiʝ.՛N++ RIA',#XDg}Rʡ,c4 [φRB,b=xO.k7 ~^˼K4: -LAB0( kgF A}}֧s .oRdm5b(D[Ct`c%B1c$蟚arֽ>OLi˰\ٚFJ D~ ,mKd(jwYBJ7sONꟌ_ACPy‰L.9'd(>EuEV a<]Nw&^ɞDִ]R*YL -~Š89?/˃ 93 -!dbMe˝kO5QP<2Jn4xŊ\xgYJE盂HBUjU*qwCGb[Ա)̰]z25.:{P$ hd.Bc^7 :3!\"N\$<6굔 Up^SP BL&mi/l^ػ:g̾1>7^F27rqQ^5YnGϜMO!Qp sa9`LM^8ZǘǘlnWSp׏  Р5;p]!#cză\t>`ʏڲ6*ѐ?g'"79Rӆ'6Rv~QS)^,S Ɠ{ -*"34O%ͮ +0z2Ɓ~y>A\WLOo_zz1P3Xj@4'\}XQ=,gI{#UDLV՝DrBQK/!~t_vf0|/fYWݸy9daDm!16+C7v +ugnjQ."gB8hRL\o ,}z)^:S37t`7ǽVM?Bx%Y~,;|0\+mFi"{*U5 _ToeY_$/bs܅7'sS"3U[EQ=I+r56C'dۂ_p㿣X!ḅG.@/b; mF~J(gI%ȝS[a)wˬ>N(fu4ub_@&#;TS# 2y6t謭B$&XݞKU&eKGr&n;͡ѺqCtWLH/{+N==yӒ@Tdo" Zs*枱:QaDVy>kɡ;{pMdȩ`bd8v5OF\ 8elK_DPu?? cѹ`);wB)?ߏå8,1 g]"٧F-S!}TBFoWW%c4!Q+i7---#m8@Hyv/R]~xiA5^.'2m^Y'/rVKB3UjC/+2V-Ę&phDuѐ Soh~n-66y8d <>'U px,.CN(P*Ѐ>9@uhlA:KjxyFo@٠z@e¾K::U4P#V ZO*^֬1BJ)@kU;; /B?T^oX -j`imAQ]_xg) -Bò{aGQw}I nP5'$ -wԶ&jǑbX]ց<&pl<4HkVNCInCLyͱJ?m2E@*yn|X'u h -sBGQr.q&r0Фd2[J ZDVnS8 `PEE JD(E:6X= .8qՄ;.'LL,nL=UR #^*Ϛ٦԰O:)?+mZTO}<æYP y?W, mTy, -|ɩlϳB}W" -Ƭ<-'t>nF:Yl1Rס2TʦTGH]>Uv @ҡ!;KF{G3:;\`x- -fDv\"drTx袹3@i'9]=d<31a8!gMe'dP)Z$N2Vdȑv ]'dԅNQ{(_6%Ym4&IxM -I5DȬ 4U~@_y&ZĈAɮN$*uS'$]wФ z+DQ ^>Rä<>A.Nc#(/am!kXOɾTYR1z5%!Ol -J֢%>ŸG_;=QLsPĹlpZpnL?:(;!OקǕIzmȃpC̖;teќ!<]x!6q3 q;9fT*g 0p?|t2%]XƋV#Rt!r%}Kf|E -/3~j:>#%tnfިǂxf3=x?F+".cc^b󤼬狋Q̤Aցɟgj[_B-,y 2&p -' ILEbE5>LrmuW6KRYrԭfe?oTK,NTŚ1 V4i -LՐ)tw-Es.[t'}~`Zc}9,t$gy׾%ѯ;A@Xz wbTgcLݞ'?[r#U|Du!J~3Spa}#i C(1ggW^GB?/$P*`K1H漹V'QCel^>ۆBX\yսoD] lډ۰kʆrݟ][Z|!d qc5>I!mUGm0}z0(Ә'cW⿽RZ Z xvrʮV}EwyoIXJ$WY6rD#<1Umʫj_4V8xl,7]$J~~ѹUX^;N Tj?K]fG)} -a$)܇{9ˑ nIˑQǬ ŎSErʩan=m.7ԍa\s`!]dr&ܬ< Gܝ][Y]_ -8ӹ):1LAkPR8KLK-1U?vԖcNQ%ä'xI^1tZӌcS׼hѺB0)qm"%1 }``[GpB}5ɫ5)_ /Y!w[ -# љ6MɌu6N -JJ̣ꣳݒ ~<*f 6NާzpL7;AJۼ9KI4yG?{ooRާssr?N)DS[r|!Դd:Lzje^85wηF_Rle5PP lUild@ W@gnޱs?q5|Z$a)8!:RD*"i`ERz@,pb[;+%<?&ƚEe[P 2aVoX{`n^ Q\, M \յBcPKⱓjSyǍx+Wtuz{둩&F՛un!mvTG>WhFl`U>i1غ{-fQ g0~!<#6OBa)^d= kJ tB7Fr]HKI̙_#|d! sbxae׍C >N)]AK-vIS/aVZ0Ҥ*p+6)%mqmP%TnθPܮ-SB|4e5 -4Zl=3?ynRc=+ȇ|^ 3C LO`Xԕܽegvz,XV(a&?N.00 򝵻]WOawR,,N#oDKot6eMLzb`rx]_Z"/jmi؋xF&?\!CgHbX7ke^I>g0y0U-<.` -}2:.lI# -\Q_,~X;aUAIӼ':X7#O-({8Qؓo/u)E|81I-7Xˊ|3', 3`e9\f=l2$ol̃n`5+;}x:>ژFmo~{D -.V˃ZѪƲlzG];uΌ.WY}AO{PWdHxW8|٪6e% 0 F+Nj<)U럑r֠6pv?V_aM$꫍OkcRKꎮ d5ϮqmBqчsO$>|\;8\R=p`J* -i ĭfUsFw :?@!fSWS>곜n) 2!ڭtr'9w;M_ WR FW#R.0h20$6~Wdrjf~? ⳦f_3KMWS {QE,Hn,/R-_X=)vRJQ<͓M'F ->X0CD` -ErXU+80zTHġ aE1A@!CQ㮆s(!Jr層KzBRZc^ j0g埇!Gv}xh{4?ފ2֞mEIR -PV͠V$W6aW(^sy -8ԝ~K{S2J tQޗj]HB~q w14 -= x$ %lͲRhha tSn~`g_%p,tݷ,JV}''"O(4륃panm^$zM[Uwx?P&B)i} {jv͠HN Ȟz0#%Iؠgm 5 N5ޠ[:7zfE<8kE<&Oޖ5%VyvpA_k& ,?/?'Ys|@{HVZX7}3]˧wn-if(kna{ -rW͌E*a\ā4 R'?OS -R{opȾ -کXGg's~%?pw`k{GC9Wf_ov MPDidԯЃ -rqky| ҧBg2ȶH&0-/y|Cl"G -޿Ŧz_рU,<6^ "PQct!X;>su lI0Ͳ6O}\Z-n2x#.K?òh`LԶӥĖj獱 99u& ! r6iW= G 9S Aw6ĨG ~SOw55h'LKZxj{eB99P$Y3ˈ(.ciZ-s-EC|@M b21{Ny?HN|!Ďwa -g<02Ih~[xg8w*enS)}p2sOW"ڈs;C-zD63)/;U -,X;~C.X -6<K~v8-T!e3"qybQ@O渻Σ4L ->kBM9.?!a!g@-b,chrf搧 V̲rćb.W)JUTD#]Ԟo}1V%PD"Og%g=Z:p39}m4IPF0gzEx"!Z1Qe_`ۏRj4ћkY `(䈃m,uJhl[Iٔ5ax]pqė-` (:dtCHk~^\Giдg"5~S peI^{#Bex'0uc0KP}CMNwwo/:$aUJ`72ƴ<ߝ,#oZxsS-Rp3sZ N|]zqCp:߲GxiF_^v (BB=-`寞7[:. Aܣ9.~>zךթߩ|J8̣oV5}eț -ys_٬q<,_@% */3`x!|%}ݔ*==T@F+pKp8B4;#Nlw(t2mb1J%AMs"~']WyX'ULנN]q+enh7 P2&Gxd1tR 7 fp*JJx<ycFPIhd[3*~FQTʹVq;7=j﹀ˉEV fW&@(K[Z KOesDDFt!2G9H}Ht)sSraO>8_n0Cb?rOnZK?7L,t>5&Ps+* M1&Mfz#5TIGxfP䈊EIf网_ȉ!bs4pt^R5 -v]Zk#fBqnRިhȺOwڐ_F)ƒE5IYwagȵu<i %]pPݼPLxx)f?*PC2B }';2eGlAU襛䕆o;Iu!twk|d4i_mfbkHT8mtWT0 ̞+y5 _>}L<ޘ3Z87"%hpȔ}ҽ淊U[y̾J'F_XϝL|蚊4} 3rJ| [eU# -exTbi%f8UQ+K { 2 Gu7p+?j><&o h#?GOGuԊUd.zy`A㾢F/}|;?lazf>o"~Nv@q77edkuL7X=)'`#OTs/tO\\l ٧c")㭖O#;O`PkAg:Y`PlZHWsC+@~}d-Do)>V5?6[ حv}nbnL- SK[QpPRf -C7Wԭ2ø5+6HN5l.7 -Akk镧2ᶸ(~ڶQ]90Mؤ x+ ~ʞPɶjD+}. flQKaTKyO1[Bmx2i ,Ÿ{ע$ ;{* EBFrL^߇%*)o*}Ss7`4Ѕ}-1kCho5"eRV7Z!>yl'ttH??kFVôwT$wY?مCx<S%;YuT&x¯0:^ N j%P*BV<ĕWGtNY6B= ]=%+_dhc41©y_[@4b#&Pس* yxFC_HyX j5wIc?#d CW~>o)7?=d7:J4e&Z|w1ݺ1B$8kT,(X}3h=?7A -)=sICt'#O sfN_(hr" ~rЃEȏ9 -!:xw<2eN?Q;rN9@$Մaʂ.ZWp=%&UB1'?'7^~P{K4UcOhC -boS&! ?U$oz6#wTEk` v7Ţmbc.3}57uV -xhgK/yQrŝ2)dK#@>kZoi~m<@l̬E`Z1(e2-h3Gc<Ä~H'Q.~Ba!J4~]~}o+_ezeec6%v R8Lپطk>cA/%1= s} -Dk[pWÏ5v:6j |55.Oا5'<pP@jf>Tg"RPAhԪ-jUQ},b6BC`?޴A~3=le6`<)8jA~Wp1NZ{p\9?3WD,y$>S kx4shÅ -P*& 5+2 uh'$pb*nAycy86m$v5${C枒~W=a^.tu;e$EpK+KpUI{|nwAte9k:̼/ +N<5:VklJnɮ&Nv0'yb_Y]3Xm>&yΡX+è}R֒h;۴ }C˹ÉtRi>NI,7]J"3'ৎ*^mpի˫$4:-?dB7`]XopJkc`k<ٗtA,ԞyKEBxWߖHS{:rnb{/YmRsByb7Pك[sih"iZzy˾1ܵpTy(]ȃ y :z YQpagڑ둊K>Tu닢1wd &N'qvO1k@9ͣdԥu}GUà 2$v. ˰zY 04755AYqE=Xw!XVC%8l0cX@=αo9y)R Ğwr鐴/>/Tϝ+ئ2Z_+ER`f@׺ y,T `(?@|>MpC-GuE&T pWԄD~S๯M{m,aFCMZc낽985{3Y4 -T#x<.=ԐAP*;-|583Z?IdbA㦊$6&pZ)Aq] L[ddJTZklo)G }8[7ݭ~9յhpOϡ -E9 $ͭ07v['EO&D˶OA"hͲݺ5V7m}a'O ִ'cBzJ􅊨 -Zm$V~pie?| -+vX''e:4=:eCbb7ウk}$١(#?1ͧVK%wY󰯹e5@jTq_^[[z*W$bQGtu\[jwmg5X˃-~qy)NZ)! -*˜dϼV?8y!?a97`GEyJ*ʷW 1qNU ar:es<Vyv^u".y9~K<֊ŸϸD9u首 f9HMIo ݼH^yܩS!>A~3(M?hBn%:wLTnX6 }8|%˫C_o@Y|GFGQsi38="y˂Ż]jϳ` QHӯEqENDޗYp,[c;zaפ}NnWC@DFUy<Ye f|0 Qd( -:$T5 Ny?!yRlA\Ħk}MeM6yߐ/ўNYLd-J=}y@8LbȣZK:b֚+Q)'7!!뇭YvvDY*?kC )i:*<~ "^4j ^)`>9n|s'1{8#T|㇈oRAxTYM?qRcd%ԔmՈd_I$/G9v_r = >y l~M/)׎i&78ߺV9i>xnؐD %(.Rب_͠£Yx -B˹$x5wn#i u ;8..'b%}R$jL-Z~r!/꺺_$G/~GyVS f^LUb( xD>a{A1JԜzg`%{m:Cp[q~2.{2=4=]<~ݖ#gi3nL7PJR6X7wisdsDoJNZh42s'^y03>Ҫ:2 ^nY}HsY ce{ϽJ  A#e)\=W"<|)ܣHWͭ(y~e %fykd"ȯlI d[0vX&ԭx#wDq Wר74pęG6Ƒt܃RYi87ȣ; XD"Y4ZXQk -cRr<*֞:s߶)A]?&ˍ,p.7Md~Xr< 10eKs<֚wʇyIUAXM6b=B/GC-nsϻi`s - -kXٞ<&yīF y$\U*u}G23n6-+h.&X9Pʀ&3rlPQ?&?;c%n ܀:pJdKӿuY}geÉUlxd@wJ"-wǣaCA9 o'C -cTA qx9f`ztw@ψG#,2>Yn*!}А%~1 +cJ) WVܗ|{8u ZҘǙIz&.@Ғ m&$:{KaM߬XMn|Rʍ3w<6? -3-Nװ.M+coI+ R◉RĶT/x$v~'<<|,5UBEY-_Wrt澿622{GZr !MwŸ|4UһV7OӪ*مǛ@+"'#ZgY?yk:q]O{XISyW<'C|}O_ FvdY<^e7RaهorA@ H`UW7jC5zX vpXmjTDӸ+_2MN+_1Ry3g6y 4[/蠭 ӾKlв݄:7uNӋq -å@s<α,8ͽH!$Y~Ill s a9E,(c&gsH-&?as}J¯ڦQ0[DHwqQXː;skww ;8?~}?"Ƹ;ͽõL"huN~ʓ^* ʕZ?`9 Y/M ~WPDH ~EsK#šM$׼F'rnEd&MLi|*uPF-XVڌ nva+öSǺ[lj -a$Ǘw]g@˺-XeZ fzDܧBBk D ˍFJq݇G„I_x1sXsBm?.8x5iPΠ q(| 7`;`ly9/͏b_WScJalQV:ddHìizn*= 6OhBWe~sdȯZCQ!!k;IMruX "u: Iy3Q|Q%Jc=Tǝ<dzI2ű6._a Kz -*-abi/ҸF~}(2V G(weV:[16YH[>3Q@!S mG96-Ɍi8p@C578u<Zn_R/"KA=ohS5]VĎn(NVi' YPcdȹs<)V\BuvgEhz+"ԣxT/"73.< MtQћp_d)){OVó<»X&B9䂿&Wy,cg=;<+svnm7lJ~AwF}Md3oYG6E,aדL7T9 1FسgG(;:h^o%Պ+Edz͔E{Zm^yk:N? _"UQ}wBTcطT/9Ӭ|CiaX2'ؼwЃe1+@.cQǺ&%/('b6sF;MS7>@@ $ukCӽcw<4Ui촲Q X2HusO}@)+#8Yje.8oXKZN_$i70xI~ǽ6*YԓՆ1X ao( -n0:YR_i s-<#Ն p;Cy'cg}`ܴSզb,Yzu綑3d*_6tW@,Jw~W+re4&xd}XWZ\){?ZvC $)RcgoQ؋H͏ -U;2]*=;Z{lXm9{jm&,X - چw\oڟ> /[{9Rt%&0% oG# s|Y)=Π:}0w(/:e>|@U!Y5ws;D]=z Gk,';Z츾=cHWD>!E5Z`0_fJ֝r?YQ|{C-\˸6}!H1`=B}vZ;Pv,<ow< P?žoiVvK-#|L 4;# -rk3^~n9V'Ps#RîPj55(6ӷ ձC)G}Z -(;CObXa;,:RO۩Dh"?V wwcU#?#=e2!9/ax9'vyV_EG`x= -_6"|0KGO*u=)1X#ڥ;I迣7_RtFPFkLlr~%*Wr>Š1 -cKbb%ˆ#Q&-W̴}H=@1䙥}\xp#죒 ,+I-c913uWBaL,Rd} (6 ~`B6$aDA1c w+g1+˿~HzV,G0N_vQ~ۖ%O$M3߅)fR"㿳4g΋15*xnmwYum%b.,Ah[`R+Y>u $|G̓GsMMz7JbQ70H¹iW ibaBjgXY./Vy^~T]]hi0*UrtڶT͙0 ;<|]βQnBIW`c5c㲛#fӅ˥FBojr)$iN7;oдm=*$mo V GNxZ{0@҆041Υ%lܚ1tF㴫hN,(( 13.h]hlы~(@b0EM)qC"M5ޢf]|}nfX/..=X\E3p4wMV|0.TNm1!e_f){sLlHeM#2m^nN}%ɜLAik]yZ -tta=V E&mT[{I㏡ jӠAYM}MRvSpC&kJx]Ibuij'C ( nK'j~n9[De zsMLS׈W(dW,,PV^^է-`\;~0p5y-PO`3ڭ,X|^ -YY6v+,\ >JpҘIͩ'gJ^2 ){7(C6Scc UZy|هhj[D)H3[Sr9$Gk}#lC_Ӄ; pb)NoeOPy،Ю9I3,=)5k -c8\H6Ť> ].KJ; ݤVOjZ$UKa&SAkWWm _quF9ey뻭}8b^lF.Ke wX2Z?pݒ7QE25AV!vl2Av]('MPsnqNrCH'~wX299#ZE`ȡ^e ]o* $iDq6 % ط"?>14TQu0ly;v1ԏҫ[ OFj@wOY6 1~r7NۙzhJ՞mM~+uN|s,@gou1$6ϠD@"&(?0K}J,bv2 -SD}N2(n<֡kǛSpI*lZk7%8w Wjno~ ;xzy- /ڂ/\5VRM1$A9uE y@d~$FwуRkÉ.4<[J}LkYjM.fy;dR(7Mʁ: ml3WUi3p+)=B)<2zv$hVÉCy!I [:Ӏ)YZwBS@V{".#5x<惮;>zffa#5H(vtz68A$b8Q:tLr%rO$ZTZ_}Iuw`ؗT[35Ly,~tb!ODz7QܪɜO@:O<[~=?QD#%bHnLldb;d l̋=fX -[)Ⱥ[:ǹK䛶3s/ -xI -¾`@B~繎06o ̃tkƎA=pF(vѥxO5q >w3 ZLgA~8}0(#*_{/.#=c7?]ò|HǮq1nQm^K9Bp8zYK]d#Ycdd[0' :"lf};&:5ARjA/1%c - -yZ ܀Fa gP1q)1kFf}DMƴMf{bi!*ؗ _0dLjxWW-[+Buʐ_q?u{lF2CH;Tk'y̘JjyX -{ <!ò*`sA\_3xW9&zAwmZp誙3h˪ə p1G=?םrH 2).:'~e,F6>2+<,J -I*)\, -tz6RհX*$ f'-6:A1ͣή<$Y! -P"8V݇ j>[ 4OX]:CfPU5,sx\&=GfJ pi#"nnBcL;c}v «FBtsKXsȃUnMsde7IVNέʃdҹ{s3**X a`) mYï0B08&TTGExp!žnS8qFXzF<W@3XWpzX4$nD:&Fn#kUm(1H25ֱ5a;Rr.v"l.$iq9"Ge3JeH v+AJ)5:ӽHhN ԎL0ƁF0 ORQ#XA0 Br:8̙+e&mp$?Ё;SoqŊe=½U/0˚e2|V M) eM$6<#߇,HǨ(xXfp Yh\ν~sGGne*2u/oFf]BsN_)g)>jMy-rq<Ċ[|a 52#6<02ps P"@$6hU"ӞJ1 -y2E՛53 gs2aeof@+9沪lt=ap|c%9/fμsD ?3W#P|>6j,bbuSNT1vLoLs.!ϣ<FlMg Ca<3Y|vCҧСrR&Bu3?Cr}nQ@+ta>کyOO8ܬJylSz?iflu+nfYdjz8DօN8'n.3HuT"' XKk̕L,޸7bTu}fF󻗔?(0}C7&^4l˺Y(C *(d\mGHO| Sd(ݢd/هwdVW@õ+Uf+bBFJ'm>9GGpF,"AkA,3WM -u^%@ UC qp"cjS[FV-Vy|Hz="[c_?z$:0W>Ή5OxgZ_>R:AugkxŎ }cC>c>ЇMK7NI8;=oIt -Ѧ6 >qCIJ;!c=i@UDfBDZBiJ>4!Ok:3>lGr@!3>tRK Q MZ3F Rcg 9k 1G܊Z~,k8rc=2gMT~h8zuξ1isR6MBjծ,=r(4Eĕu= L/GHL^: Re}y@gt'm_=Gq9ݝ#|@N,e+(0 }14"H6- xp5=ZsJI? /t0ca|-x(Z^5u I~~dDEdTJ[h#IȰỊΓe{[6+BE~F~M#2EE>0-f ]9皥4ЊP5HHKn~Q-Nbg75:|+y+!@U}op".8|9B'>WaH$ oe7[5 =b%6Z:3CeSl;.0J^T:6 s!^^^?gHT O u2r}0-Q-<}-l.PNJ>W3Q#hgz)i2c*q08ֱHVy 'SqլzM䯐M:q_$.{,0OHnڰ *A5AV3 \> ^U `s;)zHER`~w/sʜ #E.%{<zA־6 5{ u3q? m6<@gDlRBBr lhf0gmlNӝDr1"&.s=qdžlCάIoZ7)D]CK:`ˏTiM~eOG16fTf[#vLw'Qp%8VNVƌn :˵|۞Gَ 'jo1gfcnn7lkCBPmKyؗ+"Tl Ex>in㉸!zb8Yw[tʩ3HϮ)SB&tEsWspx -o8(iN8ʳ+DO#['CB? G|(& C6ȫ^5y|z@?f5l&5&An8F7ƅ?enR -y&T߀NΉ|ROM[.OxlI~ (ڛ~F|+xb#閒C~΃B3Ը(Mv|XIQ$ϲ`]&jGa=tcIS/5e3LJ~9~DLH@7]? N7r@DQS^ţqi@p8y@ [R~l謹Ҕ'*sځ{$!tH{q{4 CV[G̲XU GMvіG7PbBD,Y(j*aIhXJV 'A:dQ/{~ !>u=L9T^&M7`<`լ8}ߪfGCߍs!}O+'cm>~tz*l>hσ_K)o&1>Ec>wہ8F3ؤWX)=S_%Ѿ$IqR7GUi1tI_|X?*P?h꫙>A嵶MI@:+eppC& Q%e?7ժ.HWs^힋y&mvEFp[Τs3tEmHj_SjO;P&"A">q#Q-}CZ+?֯5=ve]W))E<b0D 0JP$g#3yឹ7}zJ`PR改l~DnL7 - -54v mt, %Mf8|=ꙙaZH:恦ìUdS҄W?gr~I[V+:x|XTt#Yf,LJߺ7fOתe ?rZf =T|38'j -X\n:5Of{ b)T$"(Rj*Ŏש~ƏP桀2v.C =^>i3ĕ%c}>s?D0k9M}'JcuQlʯ1)bA:C@Mpͨopj&j!g>8[xeݍ -Cjn˘F^!'5҆fgyn$XnjUݷOCRW2'&<qC\_r%o^K -ptyNxDA "_-+vQ} ICCmZxǦ>|4&gabm=LyEU_*Z6*!}1[">GMuS镔;\#sQe}UL>^EaSEJ./6+KK0MM ̹{7ц~觘*'CKZO>#=@ЙIzVn\auІ:b ¿DcԬ>Lp`sJ3uV0`,W?j]-~| -@iT=nrno Wo-M+ݫ%J=zrMj 1f",;U~:Q|@n:TYlxd_!NOGTx8FEw%Q]ЁHc! X`oF@2ß˝Ms떶\`r~8X'ι5cD}I/ 령ɲnWM3&O~vWے&/>ZMB/~UErMwR -3]`yop<햵^$%E^ŨJ:cg:bǻA8}zT1dթHpH6\+}fYpA48%p־R}4Y)pFcd?e6_+5/y@](; Gp* 2_ÒVA6bZ 2Sƚ5/.c4dZ0JhPqK:Z7//qUfKLG#uK&pς J҃0)h73BJ[5,ΛIWvaX89Clf]~~d_ȸk%F,T|DmMŹet))U']r A<)|J G2 Q17ҔGNR^7O+{z>v[=p[$T^Խz_-%b0N R*Ϳ8ͭgV>㗌 .xpP:0H9p,b -endstream endobj 29 0 obj <>stream - YA;쪅L7)]{݇f1!܃u'eDs7\kYUs6@ :Ddu bx7<_sM9>`\)vbIZUl)ֳ ;rW`Vir}I~ :&5;K&K+z 6QWÏ%?]+8 >r&QLA6byGmc]1X!~Z Yɳיv~oLIƢOUJ.kGR@D Ue -Lb6ܫ<727ޫXp^!U$qžZ)'_{ T I8C9C!}[wGOXXy1RJ7pj̣?c 2=s\.P< UimY[MXc)[5T[RTˮVP#yYTPUSy5֌ b?z'0TV/cy - -^ (CT\ҵRt_u$AZX݈ jjT*AF&D T$Sma2ژ)*Jt=`N1 ӡ?HJb-a# Us@Ɣ3>$6@M у,T0Y#~Jppp>]GE5eDE*C?jV_x:YZHq'֊D$'g -g,q@D.ыsS{yۯ^3>4D0VC8;N M.MW>oÓ bg(_'JZzz=w<13͞vH/ꮕt<5}`UB`O>22w@~t̀tU.9S0h'Kګ. -u@Ƶz jp='XFyICyL{i O?#}ap ?:l޽FTC gل7IC5׊(,bdѾ_?z#@I(Q6Ky= 6v$ ]j= .ꂡ2b?>M@nn"Y50_qlp/uDSZB)z!n;s5%(T&ot5ۑ&m:NFpjS$%V|vւF*x ? ^18şxQaZ>#֫/^/Ⱥ/m,j -n ӜҪq;wQŹ_'pVL ?_h ҡ6磪@4<B 㾅T#t\I@ ,Kt<`DNʓGÆY YMePy(-yxί:BJ?ʛlJ'>gJ7z<`/|\͈_ -o PŐ@4dU {vOB$q6bi.@y8iuVI['2`5yGR ],W})Qe 1IFenߢs˼s>c6՜1*} -ge!vuWY ;fɃ&k. -Ex\DK V:% !{9M=?@:bž O/=^UA睢  lB4%ၿ{Pp6w(fQe}<͆%Qitu, xDGǓ*TEw0:`kz -\/Ut!qXgR|x o}ӊ܉8c7.:#V aяHIR#/izjFOOȣg(PQǃ2]…Ḧ*ɺ)j5lr3#[C_n)IdvzJHOrEdh'>YG#|bkg$AO O@()FI;;,$\gtG:1|~߇4̱<׀swe\BF=Q+ -qO;5*5JK&Dŗ,lXt -9ۯ!&rnl>Bk%twBH(Q#. tVH:Ƀ Q0cc0{Gղ3}=5)/OAE& t3ȴ5_Lt4Vѡv~GIz h]r~%1gBcF2qpz#Iay)|ŖQN?1o0# mY.^x7ar\A+0Y//wU9r*l01kxn`SkXI -kҌR% 1CǪ7b,[U2,3t -0EBܘNa=ՠt'i).YkIc;wJ^R74`fǶ&*J[҉}o墐n2Y8:J&aȍ@;tn5vP<v'U^-[ NĐ+'otɃIbT2ߨa)ׁo`:A괎K~*AeflR03QZ%@PjU=?v3WyT>?V'`"*-VZ:O]a渫ǰd_8H51-SFbWwfWcr&>),Z7c0C7]1g61v1 -"_I$'F@n[DZy\fAAU^jMAx z?D݈dTV]$ ZvsV4ԛ6FUz>ԔViٰq(7 c -+@!$K:^,6r::SbCkk Okx*Eki8oasw&ϱni~\9дUJ2o6d PP/t!;O\~Cģ$,UPՕ' /Q9%ٹ i摤{b{^voEʘENkWtw\1iy'q~0އɑh&B., -́HvYH9R/8iVD"R&kh$u4T/xHRe#۬#n2hPzA6*yny, ET|QF|OZd?mܓԯbvӅbV@^tyg(e@`>kNS37D~{ДiP`rb$87 rFw;*rhbFkRi/7q<^V<]]ncR-cd,j -Xd#h,!v5ձ`cǒ*qQ2#`m혼0ެg&>ǸNJ~h#Ec4R_5X(:Zs.d✷jZzբӼkq@Rvnp`E/߸\߻-9.3B<\C1gpE#Q<H86U奏jgkz[Zx h/2}xrpN@HGoFfխW(AɏA3ִ+ V'7M4VHKA^ *vePGO Re+hs#$Qn*G& -1Ê(vCLx熗S"4t9}ʍkb3&wl%sCqBE-@7~ ō>CAx)gy:a -[tќLXTKE6M\UNsKq@$On,2FXQKUm ,9dC氊n_߱<&"ԭs5H0̪hAEPDj:`}57"4Ȍϥ;ZH8'3/b`WyLImg GtW&꟤_ŽdJaL(OJ `EYbaϙlӀ1p>ߜমYŬlU -BDX&bA^ ~S؃&bSH"^yx2a6x_$AVBw(s*  6S܉ #~)G~gs25Ua 8 ?zAn˟xs 삨3EZc8uzKcs[y>P [fsPLӗϞ+u j͎ LnQHT0kar -H ;Nb))TP>QHbqps 4\&;Dצ'Щ -tyzyFc4W`V'U>A =U/"gi{J}T (LIYIFmɏILL*=tJ#)e4ֳ.]>>+ݨ: qj=*^"5}\?nRlp_agZ? صu$8W=,' Ry&2`䧡n -t<U-8 M -`m}0EFęˣeg}Dme'HɛO7QsR?uNC~zV BPs ~ר{ -}2s|3X^ϷB玦n12>H}?Itu`9Af7w|]jZYڂnp8>-40}\zgѯ{ٮ~\8t+%1AMW8ߤkI<|oʚ 1NiDs?Z'tl2~GPOay৙f脼ĹP1#i_U#Q -zv/9DGS[H "ئOR(vc8P~D%yL[~l% NMLIXn^OI>_>"mG Lՠۥ=]@N#˛XO$+K0]"2.{gyC;[u09Vt0R)JD;-Q&DEU?~xg c\~ -(,9b!8m#`iA\:ֲܡHpD~:0RƳ8j\jYD0@Vb#ldݏ T5Sd~!lޠ{5+j>&hWY -֋:Bl3q6،zZ+c%J*+4qj}HMwHevM1gW 9!a=Gg5g)0MwCp̯x, h{S{+w[hKA?(D_iϚyh2 Nu$ UPܒVX,)-m5# &G 해uGV#6 e&mimV^H}Jw$#y^*QI9"{]Q͑Lc51gC=o~\ ,ԊӶb(IW3zn&X/*ƃADҸwtW'9v;7k/;(:yr"-'~~*1p?]/H䚴y34u|*`zB9SM<@K@T:3Q" {oz N$VC1%[]2F -ǹiƤPx  hن >B -FR _Zt!MxsL\4fdMN:p`~FZ&,֮ګX-῿-`QdU:|)_*Df)U 3t&!ݨ< _/)KF $pOl#z~ %l@g"ܾ.4-sֺ*3U֒k\@YiP/gȟڪG#⽨p}9mM_ Mxa~ wN7?RR`*Y\6{3cQaM4PP(6#|Z#R{&FxZ[ Ia;` ]o(yZΡRBo2VBܒ:PL];jgf}7$^]L; .Ha/K:x2"l}+ G;)>!Tetlu\Vz.ܒe?%ЦyJ6mV_nSQHiiTaoU]eUжrs2 -%EٳΚ0}gĭ;/mev ÆT[>3h)og]]JNX"/+=+4(*{Mf4ޑ^s4}})T3M.UeHZrss !㱀ߤLt_A=5)@)ǀ X& ̷R{ Ud"=QMwJ.d1Qd#~X)Cr9]u&s,uxA -| jc3O "JvMÀ.>C` Gz 2:C?ޘzi>w0įQ+`!ȴzmC08K=z "¾&ehMH;:ӏ`slpM!\t;uQAGIkXVsN!)&rPx$tl^H9oQ3ȄGu0 h6ϳɫ@U*5أK{<9Qrm>h_?ШiNT^I֏TztFd<sK!%Zzq޾?SJ-&͜;1a-dmn\Qd\o3o[plLA#n7l1gSs} #Τq c6D4!-_0*Z)<ހ#1Pv,)t__M%oڹq**V^ܶ.HZ[Bȷn<%\^ldnbOxWT__澷k>< -= lz{ q( ' rE]Tʖ`{-,UL1(?S4E+w Oy4W3٧ފJՇ*"S)V#LQ`Ӿq}9bt~OE}_TyCH 2藨HYåCziPv5sP}Ʀs2*f|3=/Y1EX،us1}A&G͘V젥uuK8DKsxb"KCWsg,LEȐ"'QuSP YS~'_+!vB (hy91aG;W2so2Ajs$ 5A* C(@]ےq`϶LKHe#l֙\m9ψ`h,SӂʢF92)Sg%O )_V ЫCh 1 ARKPCXrn{MO/y R`|- )vЦFt ^+ ߴݿ -#4ȘcrЦ-,1FZdax;~ Gp֊(+Y0b*,u6`V Cۅxҏ >5v/T?<ĐHg&ڦ RjNpw|Ad䦎E\-ʯg䪀 VBTJ[1O;#J(ߎx9? -ӦoJތV6v;x]qؗBt (Cת!8CeX1TJh+s'˽L}֌qC99 1 GMѾ -6 .6 -t0)\@wpmC`H atiV76zfK~>5' H r&œk$ZZ;rx.ѨyDulޞ㬙оcHM CBu'Nd'i`l?(hSqcİ('j^!h#h5yL>b\VeJ%V=D*ѫa}Xrx.+l Bu3j.gh0'R"l6/$OZkVBn M!AHՙ|(C)ϤU[whu)m}\_&$s&S{ -jy鶂n#%N"<>ߕE54P{lV9_ToޒY=z c#7lQS/A<z:j;x8S!Wuk/y4584bKt+Җ!eMR<@G~,w )YVf4)BF^!ٳ$+m im)V 졳c+nwn2k w_p֧Y9 [O_wЭ6~p*/Eyp-m$GnSLLVpO0Ze>T:gρbL40} v]ڬ }8 q^ -flitB,dvjsr' +lx-Я|wz@%Od ެмӜۯY$jMiQGx>qZ8KWX~1+ "1æb:Rfcer7V&O<>*M{1-/!i1䔃2O`w=N[!=jnCD +[e6=56˾좠/ ,树Z%1xd*|b$Mx&!ȅU,ɃhX鳚ISNr2dv4J۬i,axLd%anEpwDT$=8)L9 Vs -b\W) -2iYط6Fй`3. ]#MqۘsR'$2]43 rbS' >ƯG+YP^*ӟ0+"̦}(;+:af`h5NqmGCHZg2!X0/P$e%8HZGi#(TO}p.ŋ]6zgҢ9f!wȑN@ۚjv+Z+t7#x ׷,?P({?@ -KM!XDWBO18رWg3[D⛸}JGaeo<+ ^zzW kt鐆(R~Q ^[ k, MېfhϮg $ 2ˬ\ۉlɈ"ݒfu=O ?[>#5V6Bd`BCOAp;Ѳ'n( -RGԖS@ڛ^I$u+ 2S1nؼBfT]"wE[9$U{є a@Qf&9 :|f$y6?&`;@G.if4fxi`T}uӚJw< {yJ7^훛״Isݐb+K. g u8nȚSOqڸ-d/ FVӅo$4i$葐l@BWʫ KGO|UbK cNN2;"B'&@l4"C6Ѐ&$}9fpG*-ǸZf$g &<˷n׾wO%IjpfSo&þ "/U^dA#q>晔BcS9LۓSR6WJf9^.hn I_r3/wͣWl8bƷ03Y=DoG /]$֌"nMG0f7g)eSm&WVr' Wb>Nfd>6%v};4bi!:aHWfOe<~DIzS -RAyXw =`Bf]ق'01S3G($Fs\p+DcJǑN3$NNMy~ea7_iWLe~SQ-.Cvpo9F猧0+I,Ow]< oDYY(ߖȚVɦBgyT2}F۽fR0q[Z"ͪ=}v0$Ha0'h9ݎѤy?9(ɄI$wPwWΛ◿~6BlaibጠSG"_6 b\J'>nh U}#6ʾFs.^M%f; ~!Hך?:kc .xK:Ƕ8hKo_G TM@1//rBMﰛ P<}Տ~N`q*D!TR~[/W$oJ?M>`?eq'8db̩ȍkLz!}E~P B0TXH2 g4lj 7 :Go.^ BSԶ̾q1~w6S\~0΃Q.!ǚJSGKHЏr5|_<N %SQic=1m}N;')F13~h40]h [mQ#*D32ĈyU9G%NF:mi[=z-pooSpoj䷖NϸL4[˜ Va63ʃf<~@h 3* `֑M " @46af7?<d#|HId .gcQwa8ZO7HۿF/Ѯy﮺sg'mԸ̧@m,8ȴn4h8 h. -6 ԲIѰÿ1 [[b 4͟ʞ˦31.Κ388˘6/ͦ7&A̝KL/˶/ Ьʒ!ɀʒ~(Ϙh¨^ x -5"MdǤ1Úzz/7a{tu-g  ኟČyvll\GĽ~jjNaji - 4¾fp_7&^)cp͚D!._  Qdlo4A¦roljh\`b1 f[bdmಛe !xecXai FvlX[]Qa &veb`^lGCevXWWs21H3HRRQV71QN,* gdaWdO[ )He8UNRSc3 @4oYMW rMX%D 7Lf]ZOJK{  acPcb_[YJ!k^_b洙g8hIIJ'ZmH{XKJI͵7&_cu -+`0HHHhQOMLZ1Md&ʌ2eM( - SHHƤ3ImfB>GGK4L,~HPFg21ٗ%l+[51\P_[Pl]HG5 '8;7&-1_c!Gd@^X@*Y6B.VB6,bHQP0 @ se :~;)RGG"j>x})~3I{=o&r -nUVB=Q^јD,[q3&jGS}J~#6Ns1┗x}B("\4΃ -q]y,uſ/NVqe]&W|[ý[i9Xי@i8{q -l}grVU4ރ:^}Vdyuz>HZ8e:NFMD~^[_9fBjD\ZZqiaŽiJ * %NC[,iX9,G+6$+/⶛D x+rhIj284o`:zThQԆsg^~HɟOae(ooN9Z>n\ee\ 6S@ti#w6=D"4~%Haw~$R=Fs*ndLӸe%}dG凙7?`KTbl#E eNW\dn'[!H2o$QcMr5]:Mv'ڐDnhF1vA~k'0uӖ}ۆ T恾@eUtMGݥx -# _gCyؑ R!y9,3:QSga˸}!q~`8C4X|$81nZD@q(4Ж,ؒQvgϣe2=i>75h፾R5EѪbe"?i>ro -YFxMTyX\W%(w!4vlǔs#E\0 P KtK9 ȏ~ɑO#=W~hHuak7)e9U+ @y~LFyّžM_'xW~Ȝ҈ƨ}}]kP}H< fB~쪈VMtAr *(Dc$f2i|'£9-Dy2LڂOY`~/dmJ\i nK_2K`uz0Kp6DHo>V׾P sxx e1|N [*SPT:IfWyMJVRgfw -;DpA%>)މ2|2@a얕wtCM 0,YnroUZUI  OeHllR~ Niz7qE=~1G R5)ov~Cm8E<;X~%͋W% R.+HAPpc%eپ=eC׳3µ<ԅeZf4tcU+yȩq ~wJ39g$a?gJ 7 !as5 ^5}BGP>?8Ue7k ZHY+Tފ|trZ^6=*O~V^b~` 19أ9rxwMl+؈Yj2II"_UB<7^&KSi R!wxݔwh0TV(8UFq/H:8FߞEpPȎQDgal[=yph7K7i,9dԘ͹Sgzʾ֌, 'T<..7p3?5KLJ"8_v=P0,%7k ~Np_PDh8u@ezn4@|nF#c!|6hC|-?u$(ZEyx}vm \WsPF5_M%x:m~%7,Xj8U/<uJ3$Pp>.w8lX%~S8a1rf{ ;:qvNt+ -L}.u^)[2&;CBI41Q -Qe/ŁQwؒW7 ?-^I4e[뺋Vfz#C9홅ae}N SI*>*{UP(`ŘA&-.6iRG-z@" 4C7 -E6QCws};{|k.$ 4{mrݾ;yEM}T; J84 WgV50]\6452eEГ%~]ZF_P@f~8%"HaVAdx&l'?a^^h~?Kn/WnӓMGޏ-UozQ!tl'1 (*E߬xIИw ܨ5 r QsgZlj/ }("9#*x;IR"iժG(8 --g)l)niU.a<\" y~,0-vRs]{9 XN2cYk\ahY$Y|hJ-A(bZxU-9q<#&D'gͨnOY;#k>lpk _ #.Dxl<0Y >9*\ⅥuS4KM+5~<) - ZevrS٢F .KiwM'Q{#]*2:,bY\'^eOE{777e&0Raܱ_ĆxA0=@3J<+e7s_kvs#ko@gKIt{_v}NH]@"=3Io:9d;!(Y,f[t>MA?]8i,W5䓔~2.'߿,)PN+k?#T"̃p[Ζ-ٱ3V ج(|dl7 pfO#ס-7clr z,QgQ|e.Q'"巣6t}Gw$EATTϛBFMS װ ]Tyh4 -}SL.ރ:ʏ>0, rmNe+f?=Z1PͭKp#݁AY7]摔$c u{`>\Kt)jIjA ;'}(, ,_dZ,Oi=?8`ybݢ;X+ב51x>2rD#0%Sہ<.07ʇn6vBTXt>~PR)3I(w/3!L5з!X EcۨUE>?R:h5׀`YMWxk7 =Diqq2$k׸)$|=Ԓ&rbGJ`"; -fMC)䯄$@Qh$W\) wQC"g@NG1.(,,=؀k-`X%~_cTRlC 9*RY+8KclhMO'",69X#{egpu55^}/s_*p^Mr/C2tFXc>_簈} Zloo͚5~o,!Ddl1f[,Cp';7 '.G}6רPO{/Td O22uiM#Zwזnڷ֧nxOc7i_$ uG|՜n) h#9Z*z%IZ5-JC_{j 1= ;Yoc. r`Zk{v^-E(vo|ypծm SY%+?omK[[p,$e4yO:uPd/ -) 3m e5!ڷċbL_e} -ɗ7?ؖQLIx9=H"N{wNq})q5RC߸ٷyN|k #өX-#ETT::,̯+JXeD^TJr>+}=CO)Uؘ29w.Ȋ;x θa^zޤӺ 7vr%IQW8S NH2y }ӵĐRVIXekJ[8b~RX6SKy&nͪ@H(n"}_8͛t+Ǥy/o2nf =(8Tť}޼XxO5^jYFnʅO a>_ bI+p__#i!u*gtGXu0S?k!#!@'$o,* -.( 1Mi_qs H$ JwM rnUݪܙim͂ksw%>؇+M( -2tj;]? --*f#ؠ* 3 Gd}:_G&F`ך >''/V;FA17 p]({yU2r qdfM G*k\ vqݠ8HۃFƾ斏uAE6IF7r'5Q'Sgժ/nĜ PQY)EauL[ͩfxQqyF_K_/]wx摮LOa -Gs^d3GSd]HuppB!buTBM=AxUoRSp(V`\efL|>jKl5~1¹8ՕܧpB 51Qҧ:NX#K%Ldf׭h#ǩ{RzP/Ocǻ͵a{H:JehN>(\E; `:gȨ}U:0l)l5v5ͅt<JH6Ѕ,7&<0t*_x"GmڬHiapT‹/jjČĈa]|o7#c);`Sݔ -8;8L.9ߣwqg6(ɛ!o@ 8KI{rvpΛPҭ<0P _e)r3Y((kE;٨YcbRi:Ѓ#<1\VD!֟$irU{ThgmVqK~OI"$D幮0&2t7lVZ'uItϙuGxׁٙ7gf sAԥ?{aqА‘Ccu8kx6b^B4!?4􊥨sw0 -nntlbnpZ -e#.{' W/CÚɑnX(ɯ<)vD@,]׹wRtC~b?2xq/kjmz\BdFLɊ C<(MͫP c[ /(I>]8fsdKU+! `#Q"~Jv,TeЭ]..JY+K#z.TN3归Tk._gn 5(*irDxHp00 -P@Drʫ9U}WQ΋l ~P~Y_ZLHqV*f͗lldM^Ow:3N]1u:H,$EpIR&{ pUd76Hbcj -zv|!ds1 YgQ=(yA$ݫ7nk2WyId-NYg_0XKZ{5Gٲ4y:e UO^ϵY*+j ufii`6c%dB-YnoOYGp?9sٔzMZbz fx>SG6UZG#ޡf\ -^J - eNTd\ -\`Eo ]Sb>a[:lI:=k >X,Od23_G3W=]"NHR+O,6k\s'F3 Ee -< `cTRbIgalp)̔T8)^0 }!$'k+]yV]L׋`& - F; -ـnO:߷YS fdI |Sj/SgBfyLa K1FkdŊmQ6'>XF2jO+NiT=WGEemKʹP aF5jeo]2Ǭ71K  bfidMF'ce0^dKGH~dDZjGlGgѭțZ Ȥ -]΂Gҡke(%@R  ,fĮQ"&]#(gK OƤ[kGڸ d1I(D*cLz'5ZdM0r 1Zbe[:ѴI\˯jc $H4R0*F>B$(B0 B`(  -0H9EtfSH>r[Cx(F )$b!?<ɯ#n J\Z}<V Zb)-!2۫Q?A܋CW -_~=%smHWx|-`"bb܍%+ޏtU>yA}@1ClŸDȵˏѵ(0HPV#h?S'K.[fRjZOyx` Mް//kQ~SXz^w.:)| ̥BDz_cucqVPa0Gg8׭؞w -v[CPkp V'-yH7Rgn-Gn쒙aBR@ 7 u !ê8:+NjY@] 8FV#GyC-xL& NP5Jf3CY`ph6-%_p [zSfs*z?5C6Z$Kua?aASZ}Lǚ"r?z*0ei+:RR!^"„#  nEs:MkϓOE>7T+̪( zoӽ,'d$_䊱-+;S@Y /?زj[Rrl賠3ݗM d3p:xϑ^yxvH~Wy~ӸL/Cpd- &- riav"e%y@oMwjc%ΙfJڡ~e11# 7=oc ߈j?N.j!FQt懱l -ѹeQ +oMt0 U qg(&-ӿe%B{_TQ - |THW.BW -ی5ƌhtڶ6«vet|O}Ώv}tƍ (!)yq'peOM~?VZf4+?rتL~*rG\!13P7巁eSoF4R4jJӐj$aNdKxq8P(y_PW%pNGe~##V~|o>N(CBljyB]k&ZɁJv=?٩޲GE.8(~ݬߤxh5iJU ]DN-/UW\fR73by$VT;ʰUg55q1FLCte2aW<%>OA*DߜN+֐Uq0y5`[wq lWoղHo&%!ѣ:'AOh;,͗T}(d0;~g 6~Pmuh5zd҂TqHV9RT1 -~lmDTj}iٲ\2SFRtĕ$MiYhZJ#$|Y#xVCUaQ3A 7W}#t̋v湶7((>/e{AmM0&m6?lo1fvOg a(4vo3d'ˉYt;]oA4̣ߓ^CrM&j8l5^VL5qe^'8~]t<^}1 s咖F =oX8P1Y:_D!Gfp(fc&kэu? YsVP]gYDք>4Gȟ;4V?@B~ vFV ŻiVxߤ,mqx0gLBzգ/J~|! rSCۇ_k'P)Ocx~1mP ք5i^{YaŇ?ŴJEuioZ'[rjI^\9ӏ@FVeƗ1ѭAt|s *׫a47jLcI&Iܗ5#DjW H79FWP aW|ܰʰpV.{7mK&8ú4}\yfJn}F!,;x*yP,%DĻ3+/Z_2+Y.Gx$E68by`խGZhڱ&F~׵[pؓKԺ {Vyw5O#QGL4B0Oӿ13nho$iCč@rtN$ t0Kv{lߧqMwAu#tnjyO!JI֦Gl"%1Z7>OgVԵr\[GuI6 ɒ-Sa\tC:7ث`Blޢyyo;u(KLYABcوR~.}+fBX(D*8}v2@t>"߾{yo Xh<8=&bP 3fb2xV=?@QW(j&X6q"Li~dtx sٍj!/,]ՒcmM7 ?< ;[mz<~MbR g篆96ML>$q<}<X&ıy{wI r')%9RiT?L -'R5,zj1C">'<ᑛK jO  -z3'L -:D2pCI`lW lXδ8MZuuΧpa~!< ^)V4Tas'=@>Wr·g(n$XL>\KLʇ(=&6u%.7P -*p,l`DJ~:+jMr3i`n8`RL!_es]0%Fs%}[^~/= ? _ 2%=A~{ J9,}&:(x%r[[iI%)@hyDP4qr5:'L\7vFN ^ -)Y*0Q.E3ͤVyMD[!Dۈ4'g8-5zDVh~ :|Dv]|!JE~JM~V+ 'B9DPu ۇ mBb),gvNb[*[4 snP-p@V5-#Oخ*m8I>e.p :EC@"r""F(BV3F9_ˬO]H#5\ mׅ*$2AM5FTJ=4rT J#%: \ezyNړ:k*uGmrgɱ K.Q - -;9U-oQf|P0ѢY R5@jhX3AƏHg̕p@[fϝ:`kg]N}iNibmF}~lTYS(OJ3$A' (L3Lv u v5xmARa/+?a3/PVa|DnHxxkf'!ZU33 - |6a -mW>hځ'Vt}UXCoww@=ˏr.xj]1QDW[{+BiUDA.$߳ לC}8>glٜR)Yii BHPuyqp/@3{6>z؁6N(G$tclI+f[t㢲OUtS =/-<#2l+`taEF *"{AIy@(᨜^ \ A -Ը2!|&PW愍[E}jXN} n i i2~b|C0#p ǭwhm9H®'iEè#]8.?Mx`^gR\秥2X/BcnA>'Ȥ&s܈R4$^` ya0-_v{-S?%4Bm j+3Z;6 w :q Ͳ 56^ $O bU PGL<{r1I\{ Ny9ѻM\GaDE$o4Iն4S+a8|{@NG B rZ< KЫ]ݗ4"Bd|Tysa*M 9K2}ǟRmXx7U\OrhUҗ1K7-SgF V&FztlA~YbV(Ox},m6&!8w˄rq2r77r3rͅzZeLyZ*ޙAP ͜ts}kO0ЊA«:XÈЃZS]C~c@[tP/-qj+fF`?ԒS]w6T4gNwT@V,ak_@fp䂢fF= Oȯ@ h換Sa٩|Gڄ'Eyz\ڕ'uF֩1.x fG^YaśV]GS bW. -έ_p0-Djuu4(f1Co\8T`72s*A6(>sE0)KvdL,!(!'yqS#}s ׿_ #[|b3XcSD\Ҹ z&/ْMndr >6j::*ɹ}V!u"&q~̙Ds I -U)렐Za.fm@ԻVAB1V  닊]6*KH rp>3'KA'1qW\nu#WaMX9gY=ո-A7WbT/ѮF@jAeX~,1Fi;:$d *֗+'_r쾕OˀkޘǠ#aEszTt7V"cFb#tdt6gurv`8:"طk%o KAٍjq9F -|xc`Y:BP:x&?qb-& @9 G*~mgow'%wT>G#`xNdez-`m&qaQM8ƌǘUD\CEԫwp$c`qv$𓍘}Mʌ{n Dp7J&|(_E~yӚ aT~ji2d[*}:w*~ S׏WOPN*-VQ$?|ok~?йf7{;tR&Hh 2';L+$HdN+P-cAn4_R>h l I] IvMEM#kF%&܆oqU iɥ_9n}!8WN&C07 aEF~<;{9[=LːBu4 (Ot`Db8с4N.,:t]_(I}$`XD̾[B .i>^jΠ@./-1<osPys+iݤ 4Z#j},}㇇c >3v;Ä́)rjL0,t&QF#?ʔ6 ׵# p2x0M/oBL70wP8JD",0 wh#&>Ѭe/}.ɔtXR,nayP6R8)KL@@nѬK;pg5<&Jyfi竤oK^4f.C65'vA?힞z0(|2ՔH},I< }cf<=ʁM[;FȘ]Uo1|1<0'{oɀ) naM$}T)14{#Æw>(=Qt*f°ُw[] 浟*(@xHZx4<;DS~]5k;?6'e,4'rP`X>Q/L1jGQsPEQ0o'#ø5t -`Hq8 >ܦSs-㦷&#_K%Ҵ/qZƏ̲/8Dޢ̀U7PhK^<4c<#S8OQA}2\M_h<|RDe)q*k/%PAZn[XEa5xdD#.|UCl_F%soJEjM VڵApMfct20 ms1aR[<_YJ~1ڴd#%uC\ex5+J8QW%;U)X6,R:?JfBHX:4L*z}"߸B[\0.sԚyU aW-s&@XoA} Im~uoHV̑84?/\oKtKDľ[ܶ^Djk* $W\EnW> 2*" pRk2*;wD #qaq0,\I~o^";F9[]n?fNqI{Ti2 z4{;XkKfT4X#9Dby䜍sY+>]0f~1io}v1:{F%U[PJ@Ҭ}~Us9+MӖ*?)'6a;Mz ݴ݋3J<Ҿ訢AYbӅ®hoNōAtR -1LpؤܴU1(٧sM7[Υ -hR_h_jJ܄NkDHw1s C1ˉM5Y ~B9 D'DyN3;^\kAO"lp_߇ &q~ςPPV0U${ $h^O7ŨZ(oզCKT8-KĪ(Ԫ3jrmi2jP (/Lmusl]ބ<5 !\,6"N@PH7%rnb3&?%s4!ޜΩe'qV/l#epyhQ Fq}mϯ:{ĪUul0+ް>B6jBK-\V;m"b -z1P 2BN -|W% _3YR5(rFF.,4c[D8ܨ)C>(VPyoP9NM;pԪM,[ԴvqЃΠRAAuIoG/? nʣNįcmdoPi =t"G,Bl'NQr>Ly4e *M+qCjpV%r!b@c._ W5T -cx> -F~W1> KV!/M`k{M+珷y=@;eMl gqsb}NR=H4tGJRB4@i(36"tŴ=ܤZ ,Z)p*jGDl.dTx~omօ_^j>Zi %0X ȑ]<e*xcU `UNjY:7 ߽$p+mWDjE-Rć@Oؼ4()BF_}~521=BD8`0STИy;7Y{}>9VGṈң;luɯz8ߕ m `hzkƒi\0җfE4*|q~0}7k2*J]3:wkWH8&mvNf46U|y'fwfYKd>{Fh++]3Z/f1"!;Cܧ~CG'ߐYQ<}$4P&vUcOaQGCscuy ,9:if8F›'f\K߹mߙ&֔9ݱzMQzD[K갎  25RoU<0-J)0P`C pA!S HzSd3@+I%P˒nh>pmtw*e'όf>(eO n5;@8[պ)ߝ}*RӜo`OʇqW8 I~./2㑣 J,A[E<7c+~'/:m=׶ i]"@&mH ?"Pqb}x L [2Y {CַNr-b"FڻtIb7K@OOk"lp8V~Fm=ac8N$#S+ܣ۪X=ElM&#<'KPox"0g7Vw49ӇJv=|#"U/9^mo_ aϤV҃ljnay=²p$[FoJ:_(YtT֢XO?PҼ[NBj'>$uʄ&Nrj -$> l\_ Ї_TgJz& PVO3Z fbY^[7=CsPf hZ@&QQ' PROTLFxAP޿G/%=>K tnZ>Juj7 Wb!A[$'btծTa~*l_a]Kxm!;J?$:j C0ӆb ؤ']ƄO۟HhZ26! qnr\g ~>,ŚXV>%xs҉v[Qv񡯠:2&07v,c&d^1U kw&BU˚;0yPF&\^qjjU9-S/Ufz/ dcvO\ΐ4}?)]2(&Lk}'D?RF۝/Ql uSli}Jñm?E]z@U kE?r|S:| tϽT93Saǫk%}6o 񠳹JEA曽<%vmiF(59F40.#إêr`s2:IlZ&^XO\z&2kT!}~_3f\Ts8@QA 0 0SF50~R7߃q_V,z`wIʹ'*WTpL:yt8L=5>%C3׷"܁ -Q*V΢}N73$&N<MD7Z55n~Ҭ6<P) .B6{RR#kK~c#6銯YE|B[jdy,O -Tx_~n$q,(9Z.6A#PpuMO~4&o] 렢VБ=&yO';?GSr$"u2n|.Wdct_{W+0$}=iU2e0OEC2;0OyPF@P-ij<")zF i6@L -vWI#"ݗ٨ š^?LG1PGdJp'3WP*4ݶcZ֭pÆčwW0JC1| -D/mAlasGP wx1=XΦYHm$%&*D$;e.FsϿ/U+ a6lo$`xpţ-mr?Y,s;&I_oZ !, I2 f*!;$n0capa-T ne\zxxJ Jjj -iP1Xy@--ku?9CߛO> 3:B{siߟs}'QO&%oK_14J" }g@Zco1$ |$U= ۗ*;}0mۧ &R n櫌yx^},6ive)qyoʀ!D!~Bd92y#PNMdSs?ppO$GIxYYu8%n<0H1q9-e2C4d2㾡w+lf -@ǐK4 Zp2Oڋ/mk:߆MO+$:\6a@F}2WZCVO, 7 *+!Ϲ39S;CUEG]#(z+?A$uF4M~ǓfͿC[- >x؜溅 5@b6_7]v~H|7nzBaBgzʴ >q2_3 g7ϹҲsig`v1YPN#ھkTID&ͬ/l8ïATNfĸE'09,Qǫ{s!gUz= -а/y+(5E"ݑS=󃕤 -KܽȲ"U&(,Ԉ -.GFbKY"Z5M/ٷ;wnN(qcvt)|.kCuXiO[+bֳ-ARi_eD&m|@@+-laT$?EbXM4gK}CeG37 k<_*-oʸ/! Vל{S; X2p6أN6{oYIJvHme#EV ,6 t .Y&D@Ň#C1 Jmbxyno W G2˥Piw}Zg*7EKDRNInC>qh!,)cZ"?{~#. EEgJcE,(+S_S1bw;n"$::MmR[E(43A`gYg8{,{ {_q \)Pd&E?lCXCoD~~IhtsFGcxC1WMHKo:uJVE ZA&1[jO4UtDfތ#0V;܈>~߶`Ib\_ӯD~*<\a;'ZfF>s[/'MބVܷCxUZMu.DF3U lTEQ*m,BRM`Zʩ*e2`Dh]9ٲrhEQx9vojXC?yK1ώrdSQ!csFYcW~,RI +%_Boawi5+m=*3]&5O~? DtcP Gdrc`s%%Z;;cw -yʡ>Vp Cgv!SG\# -'_&ӾjKP^fU`%!h_#˵@ț%JtF i8I~nZ/m p=FI:{51P)z!VQ7IT(c-`PPu̅0NS -D}EBQnAɉ~Gik|h̃MXfI $\"6nK4oWx[<+~(U)rkxap*N":S#ruA2(nju`"dQz$u'^(C8B>ShxbFD2x5֚nLk -G7%mNr&Z:1{NfN -woM213:FtN~)?(v5mxZ-'$E+g.wwG6};#haC~`y&f d[1QTmEn\' [9ɭț/ز6[H(hȊ͚"AʐmEQ*9ƒ7ײ'1(W{eIn'~7mqen>c$44Ut p9ItF8:ž~G2XK MU -{Ńd'6'Y*P/P6TA!B~m%XǠJ g>C2g9WY27CgTb4jdarؓؼ KJ%l80{*A>8w䪠$ Z>MmZ:4\p&[Q -X)X@a? b1f%Iq- S( gP*i#{o9,CN]>!|cBq~CEVA -_K,qb1|gڵB\G9.5H 0lXRGZ:=`^#8=;˴sYی0-_scŶI|j_;lkh_y 2lzCS#=45"(EŤ#pV,Ta K rT(#\ BXVBQ\KZMޚd'J5 $"!+{< ow_BXG]C{؉*Uij=Ke!n=VWK5m2& -2I#7!'w GH?As`;/v5`ŌȫXnJ W5ѱМݒsEu8hYu ZpDQ(FJ$^''P̰E]R2(Zd<tNwsF֧ GVGvo8†N,t>25?^OrpPҾ^K9G(lIg'CgԖ:CGL$>pAbr8螨]úU6V{G物*-Kik2fW핕7>~_tnB:*-y…tF݄8nh7X!Rw3[|5JhǶl5o'%1D˴D6J°ܬ@bgVXEbiyD -q)c0FƊPIdRҎ̗0ƌ䇳`E]kxV2ݏAW*VPS79ZVX7K{4DpCv"b1im[2$MTA;!|,烔S3۵k@"G/dzrޒpJI Omj:&ͽa^Pd}40~,1Kr\'u -Rl*! lSQc@=T?6Ex5i=\rlB7C7Q0>a_AA9L~Σgꖺ|70k7Ng3) lOcQ5u/ί IQ+˴|Ӷ;Wj-q+6Tht˜B^!E8̹kXј P KDQ/ w,Հ2'2Pl @ -@Q>΂˔{$AwZ,";2Ry>٬i}<Әr2HCW|Vۛs8戢_~W^QᾷwR؞r=pIwe_`1-'vF8vf:ǃX{&{[w,6@4(\X3+΂х oᥦ#f-$~# 8 - -rHՅ |<AJZd| -!z36ʹ;:v_#(F7cTSŎX׾]Y HK)t-8a3 kyx|)u;]otٔCc+|}0oX> NBzzG* -Kڀ.}lg~oȏ> en Ztq8ӊv,Pd:KegJ#?'H^mƫr= "(k}R;DFAKLо5pCÉ5sH2Bh_-NC4hF=0_rl%## Vc痣㰱C3 28ꩇ2KLyȏb9vAJ_Ka0xgΒ>pG=fW|bC<"?gh *'iqۦ?+XV x zY7͈)O//mvU? Ujuݾ$XxxĢƯHe8OZueA7i)J;cR2^@ \_('k|B6 l$^0rݐ^,K -ǎP >.˚Y#Ah,H"[w0L=;Ux^B_2P]z^R4Τ%NW;6ss#j; i^:-V-8eA7fCkay r - ՙۺJS#m4CDxVw#9~ʅj!ԉ;JmӾۺ 5[=8.ZFC"mRe={V>]\ϋ]3}7N-bjG1:L+ -ɩ!.rŘu@1NӲӑQ@ԇd Y -^F*#U߇rq -$S {:(O '8CfWu$h-|vgbmD$KzT,=rv{3o*7*VۆKBfA `:2'~ї\I%ή$j1Ϙ(IvN7M=\|B۷XsUo޳8 Y/F9UA YӇR If#:[ҷ6qơ͞H.sɢQGȹYe9Ҵؚg&֨.&]Bs7au =X[87Dk=eq - Է`'9&" pL>8@(a aAc&?h?h$(e=v8ZCۢXOtkq(1ܧ] ?:O\!/ <20a[U,hi@T"Dm_HMI7@$VZUƅ_#q4SD ea6l9dMwNn 1Iktw?y}&s_/QFNf dlBijȚ?2%m&`Mȩ" 0I -{h-#эVX-v_^i\a&͉x ^nXT}o֛-l#?ū׎ӛw)ɠ;g[p(UC=#]~>+&/ZV5_a#ju{\[+L[4)o%7}t8 j=sh)ؤmL sA~O;hT4s%c{mpQ @ k|%\O9-~?vqwe\G XQ101M@`МkJ]r-Sui!Ԁ2^@aNDJ}:SK) --a423fpqh+:A3W۽%W,5(3u (ZAx5Ƨ$Ґ#{҇0=+j d_>W^x}bG%_#B!`l՛rW2 rփb>{&Z n&"J~֏q>miׯt\)Vǣս;?}A?{^Q*xϲ`7z-GU8^Dwe}2 >*0|/YM:U 4^>?jldS &AM|})S8h1iņ|6y+[ڜ}uO0~<ojo*f@IZ]ś+-08pA5:71ѡ,AGѿ_);吮>ySm]|.YCr8跓@jƋ-8-k$309gH5}'Ȉq;NRJ:e_{I"A7]O,oKJ3XtlFZ. QHQ-̽[&~qn3tloDvCt\,s*jWqz_][F}o!싁1dcog`Z++pO7M&t -jx:,}rD4E1c2x;7U,!! -s[ kN?10hIH [_"|lenߠn.ap>tN -? jیZEr9W-TِnGd ClՍJ`_H~ŃQam|emuUmRe~MT/_8sD|wxnh!twlv~ -XŵMmF@< -G%\ߠ{eQQA] ??+NQca+)WvkU>3r]DkMJ0 81By]]W L[dA"Vǚv)ךkb("3:Dk_4@Er۴s4~W1[Fv.Qt wZa(wtkeDs;-UesxKz &`·#$`}rtnӁ^cTxj[@ebgfQoukVτ'F_E6B'F]~c#@779Xa9p <|]4VaXfi([ \d$jEV0 hh@~lQgE\ӄ?: -V"'*)8wl}J0,30QE̥j@!$iI([/:£Eg>JSI9\AZ|΅1DH;zWYB~8h+*m*^zfVK96rU))^Yui>Lytu~vS'#0,LN=cnaRL$nuJ:mq_Ls\EabaDH՛ Z _H6P3hOZ૘fm(\#6c47¾+fBhڄnj h`~M޿[i-j} w͔;Mr$$mah=<gA5>u8SQ&˦@); S%OvzP?q% K`QO!6lp}F\Vx(M#r?uҵ{,_RmoZBSgYX^]hhr}K ~H͏s#)њ1twJHg[2M@wv~&.mJ`@;o*,jV趖_kq>ӝ> -7䴼y(>9_iS(-NT<:Ps=+4sv -Ȧ ?ղ{=E\@S,k"bθ -,6Xk^(s=j8҃*l[TdO ,FCwBmz .7XG;[zW䈡q2A ƑjPmgk47O! -6LK!]Dΐ鶾Ѹiz}潾heQ}{;D N j藟aCiRoSb޴6aKklCA1(+ иz })lg -'P>#\w$q+洙MCvKZ"lrߐp,[A?DJt7p,{2t31m3;b,$}GSB%>o3g)IWYhW0(n - -/v@2<]c&15!jD@CHfXtc &LymSEaYT܌Q[̵ Kv!0H!GG!՛̚7C:Fsi%>d}D zb.~hժ/jCf@C`yU|uGW㓮A[>pHD%Nl R m5D^b3`,1ǾMu4¸?jMXvE!&?T<ꛒm\:jbڧ:pA!y pAG4r_΂D7Y?)]~$m f_g,;܏7Q&?WsKk޻ZEuYm=?~gR{оy|4՜d/Kw Ag!1 {WaشF5AS`}4Y&G!7ak$ÏړSKNn M%ͷܻs 4!rDN  ٞS)Wb {ꠑx_[m άHk]~:iy`@&`a K1zOTR囼>I-?s!(BmbsDuRܘ -N N?w|VB>k 7r4о*q3I4Nw忈<5="V…:/ `+5N_,+9&I.anK#9aZ;A~C;xwkUؗI.F+M\0Py xO3cxʺ>K;ss;xt#6*vuruiI;GCຏ MsiM+z 8ieZ,nNOܬP-Fk.G {c]HbvqbD+0@ǖؔ'|PNkZ.`4Z~H $/>0>+BĭYVjVvh1ך;>62k/K5V1 |SY.)7E'ju_VqR;ǚTvp1"Y8͸-ȣMhNIk:0iN8ړEJl 6eU>7itsW}vɐ4G{3yȹBG_N%aXPzFpNs0 ~R&rN -eӍ_ b^^{ n?_A5i$7lgݡ(2P`<}}ġJ* O5M/Up뇛9T-n4@i;I5#zmtÊ#̹3QlL[ƔH[-ɫp4E3Q ha ͸~Uj}0 6I" ?A?cpOuH80MgAh>-X2L(|7=Ua -<4tuQ;=[~ІO=w7[6;m۪>޿٪LYnU$mBNw6 ~Ynwp]T9Z܉wI[0ȃ'nn3njEw ,8?nQMTu5IgQT؆TM }%&Cq\$sz#`}e3OVGZ8ףhDm}ˋ #K{y RXZ;])pSZTNCO \Xi6'5i/ 1K7$ ȹ\5YofZ%& ӣ}UhbfDeT#B -|[~<(9a]z&B‘+>qsտn]3DQy vaݎK͵"!DZq:˥o!=xIw=B-oѶ~CQ;@r%lЉ~] 5a UUKk}b}T(x`Jl7UR)+ўphQV [+ӳ#5UgP;>NnR<(f-pE;:%':pZl_K_:~\OeßLQO\$_p[;hݫ7wmPjrߵn"̐vxdBMcf (D"*7q'BtŸ?:=l{4VT^D3»㌠Lf<\&e+gB}KR[*+J$dv[~1gyP֯@3`sL俾G`=>˸k _@GeV36WW:l!J?hGq_ep]4+mu>stream -n):TMOHB J,QzܢS(&4c/=#kAzUX43ŧnOζz>tY{}; "U+l~.(B >c=3tr OR3X}i0K]Fq 5 eWL3JqȱdU멋kM5ս~~l,P0Ln[g,%:;~ [?ux} 0Lg̪ Y [E1p"۾7wt=O'yNG/Aeڤ];9 D̢[pk*Si0x9M5YܭG1`󈅶Kv /˹L7`6Օ7R9Z2P~?b tߵͣS̝+es댹72h=Et 5.~_m4F/}{>87\ `&g¢,U.M~n[, -c0?^R#5J: b%Ю]Q-/扟qcp<Z Z\(c}G[L<.@@|~d^om/)>)L/zVm藗&Q1;0jKz%Zr4&!Q}Ke#v[qDɅR8JڿJTJZ()}_FD>=&"Oc ] -&D$0*s+>Am<<هz[@ZVe}6FD;@RUxvJΕI^$rhpV@y>~j+ IV}9 b^=|SH5`ۙ.yH>jmFUNOtYa)U$i>7qS -lTZ6 u9%_4 -p".<'~&oA ] Zy䱞D}`:k!;(80hY$|(M(J P>>YO mW#iԿܶ=M'>rO)}uxi S0whAOK|#f=Cyܳ@f?NA`PIvǽ2.rzZH^^21rۚL~B k,<ȯ2Q,LK -t wF(8t< A~ށ# KZ*E40Yp:%G9Ǧ,?F,`t}a5X4^q+ibiZXҸ7+Ok]Bkt; -4 -[,ep:xr:ov5j0NQOÈb?Wr0 K WņϰyΠdXCNWptͭsЋ>{XED,%PjuIOk! -+ @/}`ZYn4:砻;46B\E#jΌ_0+su Aj*qi\'kb3($ -(gϟDf;f449*vW \}sG` 2+ ՃJ<~r7K9[q`+,  Dm+Q"OMk66Dj=w*9/4J17= -dA8٢R`Ry-ާ=Ggcm<6h˨cP -My@paijs'T#, -I4SIf*W>0N駔R]$`'\*XD -bL…\ҫ@z -Nl\QM?89 + gTZ閭_FdvspGZxs]+ya b$q7b呏bIÞא/A>.P+y[>vFupWN];Mb8z%^9٨Iт{ل5!1q$c%-؋9lF 3{ A329!וg`5lC23ÚM|-qbUR6sx^(Y=[|2=][aco[\ttѓs.G҅mzr[n' zv&A[oHѣW07 ->1B Է+Ma7}.\|+~p˻9rGp,`[cc1`6wis3==Tqos'4@|57?f6 -^bzô̱ڱgɿ;}쎌l6hdCSJ|TjFgV>3<-iD޸Nis*\G;qK ]#qZY.ɾRaf2waZ6*#Y5}aTC6-Ѡ hs&UHy(^~䢥O*j^$ F].}HGѫWX{{lD꒐fƢOY-7=(rFgFKKf(^ >QFZc7+w G>|~;7oХn5ϻ xv^>=th^T5΢4K6[=Vİ~u:@AVDCFLnOQtlp5M=M{9Fw%o3a3%cЦN.ءUlsUWݲd쟏kb;n~/A>*\:)˂lʐFX45[˖Wo{~ `A) "\jJqbD2!D>s6&D_oHWb>lC X_*^G lj!]7];Hg(IzeG^eQGqd$ ?,wJlݭzjPFG:;ar1@Zn}Az -;G:۶4derpַujx ~\󌴺8ۦUH<3%/w1Kv,V"Nb궜?]9϶cY!bcnI䙸0~pvt{'?ZL>4Y47;}CeC -c"$3&KGv,1g4jwI ܰJ,N(n s8Ekk]bX+ l&DMT-A 1hwI~?m\Kv<  k~y"YHcd@=5 W#gus?7eMD<)€WA;p@ӍɄ D˥[%p;$lTI[NAHO.np4\H.7,)Q{uoV~0һA(3]GΆ7t[+v,_wQN8 8nNt8*Gк%6ǂ_[UO0hW ;׋W0w( 8Q*V[_6 )Qcp1Me2whFod $ dr@h{tokI1sGc_x.c겣(nG|1ne_( .L-DޤX~zY) FVMGg@|jZv( fh&\V)M}"I;x, -;bnܽfRN&4>نv5wK2 \jQ傡8뤡[݃OrAWG/Hq$ WVO7˺g[VÁu,H|QSսj -'/$IMXGr*օ{{_` a -]fDNx5wԞvMY lqߎHznxgn`nL?(^zUak/cueȴ*Tq/[c29؈um>ʫx5b3iZZBˣ#\P/@8Jl~MܫЧPbӝ]#:~\;EBiHy}^} lŷO(:}3؂|FA?Pjv " e_@(1XM7 -ܥ5mjs_Y-~UQ5cȣyGl5|Ra=#^utNbͯx 7u@;D6Zn^s_Fi(܂W/-oa_@ᘼòɗa꫰Q^f;9dT|giE։,N9䵪R<:>貈\hofʁꅬC3 kO~e:ndh&LfCW m`lc8OzAwǜc'ةp>eMs=@?p/VX<6+s'oʛ_:.pRFO򐮘,s"M .c!oSlc_w3?mPv 6&/=DXu iAI!oU]24cK:F][N@{~ nXBhe))Рf mo:&<@*ښuJѨ-nnbDAϒWb_zUSI2U>SOXC}mx3t@|/-4t _y/CYՅ}F-<,EL_Kn<7SuB'FNuA(m7+yÔ8>&򾿀r]SmċKjt,uϳ. ٚFw0ys__Mc@81.vcVZ,<'p92s}wݒw3ݏn}FaƙU-ɽb/u̟d^\4}zKA&nb%ܾI;#%S͇sKZljy2~*hn̺s˸!ύ"ʧ!]8bz;?hOK< )poKo3PT@ ]UnetpR\o K4݇:1c6XK7~'n3TEseYJ6sx ràa_'{Pp3xJJecj1Y)m@I_)@<MCM&Ss=9,@[*I=ƀ{ 4"04Ֆ1V\/U-~i Gzƞ[gHw(N VW6[sn┹UOfi`ߦ)Sc,m-lvҗ"}viLt3ծv=eܫrr5MC"b$ΐcȣ<uuK|v^@`7D9sF9H;ߤo;MhQo6A! ESHZcQV~sϭblPz:XB&+ TvpYL7;KfA=BF镶MYFAYCZ<TWnh !} -Cʌ<|>%Ƥ‡ԛo L;iN|]}~įXIš꾴<\8iΒ }]GG!~w4e@6à.?oKq8.rTqrztW>X5E#3vѸb+ -m)ƼlDy&"X 'O'JjG0Y|^ nʾ! w3>@LxdMGk-2EzqqpݗTAMOn·ބUUцKK\pb*ZdQ{SV!-gS W, cj?=n)ܗpgAbQnixZX1:{P _]D**s' A:[l$u_;ak$`sB&Kej3VJ+M&z fJ7&=1iuxe -rc)^E5+ԦyצcTU_ gu¹m@ gh ʴ. '$ +明͘$WvAWo"SAԆyq8߯I)|( L~'āO1evAFkyĻWU)+ [Q 'N'8ʂA\&ܷhۍ"5:3آ<@+86qzH/4Z:ꅔ%o4]Ĝf. ahk~q[.QY}I`[.$bQh9sS-7m}Eond"1ǩ?g \Cr~~, Ld?'UKUt]ɻcs_>Vyl)<֭WX?@^f9:XF3Af%Qx0ѧV(kyaXzRX"݅z2-Τ /dgr_JEh"px^UēvYmG N)& Ѭc/ 62jA`B ?>g[E.)ڶ -+T`/`Rp}:"=%̾q`Ն؀k="d^>2b27{-ᗳn1`#u,p_W"uBRr^zn޶~fXVE) ?p w>x00k)/ޒN"L^*%-j=spUDO~!w}LF4&e|nLwٚBb#8% -/ypQ5k*OhokOz"[2пteoZ*Zl/xMu ' +`~y< -UA^\6tҚn>1ڹ7CY \ K8Z_ś9%A7 -v1nBK FgT~l&;k42VHh'WjOUmW)vfۗp.bNS{9z }[WupUX"䨺݁R8w<1`χq`c`ℒTgQ"IV1.nE U)lWI -24k8Xu| Fl\([BtkO'FnM@4$'̠t&'2jUnYrh -To`Dk ?f?-pɉX!o(~̚kɾkcx*J݃)$fsAIo(7\ kՠW:8wf %Y+$DPŵ@0)m}"~ MxPunxdSf&,a7 -~Nu2 },u$P^}>qWW9cAGHN+!dLAsB\!yp(c7+1zKMpR.;.IzߵM 28iL~)8ed^en2 8$8dv`YZfToMhL9E[PQZPe(GQAZel+˯+bm01F#WV'eOߵ'̍G6"JY|W".,O\p+}_)iYANن fKho;_=] -p3 V':`#=pͪG֭w@ӮD #%g/^cHP[cнq(9:bHꦊ[&F5htSA7^>2aj@8BAw, KwH⌯׃aK&wO B~1⬤.=!jf4O00߿#ӅX6^S7@cJů-ǥ.AxkWXRL5R Ck9A9"P^>>[ ɺ{gjheMG-2hyK?xn{[wJT;αj%}-4weD7tFp[tQѱln }nR70ط*ٚL`?7 ՙ&C~L؎#(, v";jn-[_%^d"Ufy\ ]aĜ7/W@ uh܇%tMgYAo ux&w_WGfOR^?/m`7%+_.-lA<Ȝˈ2Woo3mk!W17C0#sk/E@;n hWNsӈlp—@a hL -UCD[FV:.{& - >Xy9 %l~.&QrVXў, hjx/^&v$ P_S]{}կIJ/O%Zx4q,@~>CfvImÆ0Pg&oSȪ>5i8*՜G[p:=&}ޢA -Q,uEl7d߅:xʋV5DVukXb נxL/>s'nZoZܲ+qA>Ѫ틖3s8Tm j)IQHZ;ϙ2n5:}чYEKQCQM'l]Cwxo֑$} ~OZ6Q 6-gH5 r3>ln3γ޷)Q80_58>"󩚳7DѨ[0zJ fZ2uF"D@㦍l iʬ(V]֩ZO\>hI>QKfv;;9? -l;($6}xߜ݊ff^OD8q UQfxn9XOxkŋ28ljlޫٹFŗmԘ}S2Tc3{ҿ靂-O>3̻/_@qQTy£~Fj#ºoVjn%]ZV]@]Ƈ:7\y }ss;aB9*eb(Ũ觛Q?JykVlf8JMm^>jF/5i݁.g\6KWKV^:ي2 %$HZ5J4zҙY߂bɯY۲2@eZeFZxףQy6*yI(jV01Qf#{Gcc%]K5 -p0㽪wXY< ~~}yEHHQo)_\6~9?0'V<~w KۃFj&ӷG19v/?8D~e2Zwۚg@-&m&ibAgCϝrt[!EK{E' ;jfxMX"p=Q`ӵ.8l`QV>Tw _L>20d6X8 (mq_hMyA~nK~l< )0˚,kQ9 A'~ҕ"?)ԣ-j`Gu;N\ycYJS:MJ~kxMDULdȥmO}8ytBCS2Sjw??[&Y /p-RF5vbgpk`GH ]+` }%ѰVDi?_:* ,p)Nlϕm3 /HtHKܷo&_)?P:11aD! "(ٛ[X6 I )kFi`+zp=Zm0#8^AlZ%DNmT ; cNS2ln-Vtf L6&o_B7LPaw>lM pG)ӓ8CsZB%a.CNt+@4M5#`+l DgrN9Kip٣p 8O >O;( J{2\<*4=JwK.253hw N&Lo;mbѥ8뻠3C8(#!-O_S{ō }ąb~j4O{DV~9)/2֚wʼnXr>V>h]Yh,NI@};\e1/foC z IzElI}5vj P*x02P a7nɒtU0CcZ0fߢ -cpREuk4od?HN~ibm )Pj[KQ#NJi |kBKam Ve~p;D:;*zY $=@1)raK̼ĭbl" *j紤L}٧MR>@ޠa,p8ӪYB8Bܷ7تK}v^*dȷ(dՓ4dxa:[^~GEszR'*GV+ݜou -'{ 6?Tt_^ ҈wJkbg*#i4%>\_lbKGP@Q m}4n[Uom#D1Ex}?^ yƆjRt -Ju3nǣ|*́-.Kuq 4XbuJ~dˈ4?hmfS/]c߫ƀrxԖ#½cuBSnA<ڀ> ?Rwp04^~s 4f'('cII|aq-.p51t1 35^Nz܈ C$ժ &CV_$FR ?X1Fk^l<ҙ'h skʹeL'5x(46>8abЦnx.Y Nk#lJ ĽCm~ @l ,TI1)E D4BL ؞q05_E!TLM8 _;2xT*֗o -@mJ٪s4AV&/W{9wmm,%񛛧f<_GyUAZJ؉JOfxly@W3叺ig!觀mxHD6mXfnRJ; acZJd>֝ -Z˘L6nCmkg?2lq7fJQv9vћ(&P@!d#Ǎ zȍt|^[ֵ$vPBH tCM+45ꟼםy!a 8 -U8^,ݷR L'C^#2y;nh"?yGz`l7V-X;= W¡$z[W\ֵk 4ʽtS"}m]Dۅ']K]bƂAU;"CJzk׾% t 8MjvӕW+-7BtCkjNInt yr6|ݢsoŔ. 3-FP5ՈIb) 8u?cu:?u{"C{4ȇOZAe/n DGnLg:!SyXuÇrҧOPQJ ]zYfXՁD_#`D9 ,&zZB8$Q@ b1 -1 2Lf;E.X~ljr+]f!^G2{Q埾)2JԄ <)Ga$Ɏtf=f4gqH}9h% |8Ԯ>MZϞJf4*F+̖/˰v'EYlð~ 2bD[=2bVW~MxA?ATsYδQ?>Q'Ev5 sg.n_ 'M~kSV3TaP-r׾ꅳI,fcC?)J.܀sO/럎+S -W|nM%ǯfP4PYPvu(tSidy`z j-F.~ -ae:U~BXTYKx@֕4N))"cGME!TnU Ɣ+Jwr˙*Uw98kW󄃳|^7t3~t?pY 4JEIj#ՈP&\NAƏgwX)U{) -T䥠Yhќv͟ u-c1~ LNט;g(H;rN6'~3IсRg:Qy ڪGяcHvGVthhUuM?=Y?f|NO~Xd{U^D/E=Q (V(gasƒhr, R -⬫ݓ8b, wp|MdQ5JF$})"-bk0\i[ zlH2r@x݇J6已pl u%_k8ĉ>ØrL2Jy~m!5h%v -J{֋:~_ͻ5DskWIrww2^/7yxZn/[lT7ۨ$n G y:O!}8ymݥ s1&{h \*8<k%\(骐7K>TX%/z(NW@؞DP&Dsht}ǓgHr-:_HJ͒K#9!0Ȓz},dȚ͠VT1_/ qeejFv@~uFU/|dmcI:~Ya3_*,&"LE9(kn.*#*ԫT(w,7+Ĵ.Sn>qWTgUX5t -5~r]6b'zTWD݄cށPQ~'&GEb7]{x>P*cZKӼŁw[ -NJ@ؚdavC8 +%IDGv-wـrǰlZ,ۿwy4<33 da%g)[?zT~{RE1z0N~]rh:ZkXޛ*O -G(&D9Snv]pzjܱ0N\nj$ -2D%m -z~3Ϻ9vL2WyN4<87I?G}C/fln: )ï%&M8'xm~8+sRjrQ}S%MQrb=ejaMK@yLb; >H_PYqe!˹j8ߓ%׍-*m*yz ,*4aZR!8zL ? G,6 T@sOO3I`_ [ 6CJB'{E:~ l\U'Zv'#z.|?o-IAT;- Ի\pR\/'uc~0c.[RZPz~<ƀ_6HyeP^WC&};ĪԋVy f8Ӂ%QnNМ&J6},} -9[&$Fk`@ R\k/V}uϺ=yjM8/KҼ976 o4(t26v@q 8 CѵQeG -I 'L}wó1c;_B;njK0B7hrUDw|Wd'Ѿ^'W꯸c-N+r -Ѓ[e -B9BSMuOoKҔh@ƝW&) WƞMʆM+K 3ed?暨~V[ξ -8Ӆֿ E! @>^2ߪ"\~_!͈ݎt7}nTS/ ` r4b$PlmR1-84逦NjqjMp p^;Xt,g=Q|2g&aݶH[!] 9B;YpX$`$JC^w>` ;RusD\VlcXJπ"pl~ )b9cAN ܔt('zۣbGήdj&MI<~r*1Uisx ߩXllZCl4{I -KS0aU#;@cQ}v#w8/{!~GLXoC$8d;㤡6*h 3g͌Sd'DV@&]0JrOF}'y^#pgR-ϟC X'> LVbgͿk6m -k~ǤN0+؊~GRirC=U~6: <&M"/6?(84ٷ5 ~NyuV##`IVہ).ꟊAٷSÏ7Sg% z i _g!|_e)ɮr{dxEXE0o<^7x}9iĻm7=!-^*^M.O+6YR>xZ}SCzxvh`}jJKi*l 糤٦:Zz^<\ qBT\݋f8MquqT.Sᷝ,ر%a -CŲ'fs8H4h?^&4Vn/@12BpN_$9_; n}]mTރE.[pP7;PT,m3hR܏pO-PtU2Z" ^g7z$b@Dz⢆]x=g} C-hШT0Cc𛣎Mt8ƾ ->Gh;0)@B r͠e!qV\` -NdX~,U\*כv'O$In v^*+1P·ɥ^}dr찘` g\ݭ)VuuwUZ>JHA77 w âGIcq,f0OOYͭ\U61`-wtdU,7\q%YZU_]|~h;Nn]YSLx͚}n.gɉ~[\#7rCyҨzN;RRk5f= <];>]90<2fHOJYmbc%B`?/c9ÙEzh%YNny9$ 5Z(sx4—W1ƺ?J~m.0u;Vՙo3ro:aL}E޴+8An\/\^{Q -cVOqMMb 5퐅9>;Dךh峜d ~y3T\fGt=ϚG"Xmr5\]t"2a2ѻwf[Nz+<),ms g&ZZfS**In|ywЪ -[p̾葴F;=8P悍p~vzȩ{]Şrp╗́9}`ưSz,k^3u&ҳFwhIqSRzb%3N 5Sne9n@uu37^rЯL0sl|]L)6yTR0P{KO:nX+Zl>髂XLFlb71XXx)A+pM΅69i$?yf^\vZ%3e]Azߞd>?Yߑ}YRR;[_e?q_j^!@qCU^/!d2r”!m '+q4ަdʶ&(JT#ĀTǿM$Xyv[фɨG p**ÕbC ܷL.A29#Xe0Ԙ| Vt Fu\jsBuc#9v@ʌ-\jӒʭ ?D'OFQ:s ض=[!U=<풬J)n$KǝB|X8r}?&+H=pm@10fmDֵ&(W'Oݐ&_xd&oAqrDJF*O+7>Œ3LzG1~srHH( ]Vҋ̦ЄGab2t=v'Z}gR4`)J!ht 0`" n Cr8@`2؊Dx8KC}F0=}S/gVqR2nfpr|QjOu5%qEnd6%&տ1D澲l .ZŬoRao>?&u8sro>Nr$ -.cf੼RtHTul{Ѡ Vw8@5QIX:2}<c&U74Q[bmYg O@Aic6k9ϻyγ&ΓŚUkhgvhq6sx?W.)zY|v@s@E[hw)+IYQz{2y7x,ޟZ\X>5f$DJHv/]#O;X<#]8*kbA1oT2!d#bdXDDgƮD7/n)=0e!7ifZR?1g08G[+_-(,O <ؗE XMs^O l JbbĺdCHߵ7[7=@dO1u[ӝ/j{4KwQt*R?=8+ }6^8M+<,ԍn-i L_n\+g -Iᇳ:EOE3>HwJ -:\nN8H0]YXV#(kj),R}x(#?+' 4G38ǼM1_s"=)S?ɹV{Vo]>_iWLxĿ{ʼBx^H T ZKډ㬊N*z2/aۄ*~0TyEe5nEM%bSF/PJBxp1Vm~;%):\ԧӷ&!ES=XIXÓsNݗ׈y={o,_Q1L0vZ^(@GHl`Xz6&o[*edbu[؉wMbqD>MBl]ħ.2"D5s[Z_42A?pD3 -?3 sFgRD~m}Tpau`b֍QU& 從h91Qtȏ7dRkZoE?-7GFYš}\~`Pv|GqR3ԧmO[OiPW:vo<Ȋ7  -8>mIHZǐ7ﶩtFDjo.sgxyE~ cl:֧XmWL(⢏󄟼>ȓRvzE6oL0i:U)ÿ9HhUfmҳ{|Ve=jP{yS6z`~g{k*+CE|Tꈱm6-bc;[|-mJ-$ ť€cntwbY! 1`WB |jkU^jIܢSb -Z( 5./q"Tsp*RD[ljJ`+bU&xh9L,Ġ~S {i] \tx"bBot!9%Gi4d.L\jGg:J<$k.pOԮ5b_VS?'-;Ch / DU{W'qmċ$uO]ؗH/*TZ0|}@ÂV7e ̀|1!>sm<4YeT1T/X,C5o0}n@+n!EQX/!; QV}&OVFIT~o@mҪ/PVT| x1f'oyF5?yT˞u-Chm|OFO! $FǕio1X7zE[Ye^u<w1_Ey(`'V1N<5ۺѧ? =^/gWU u9H#0o߇R>F"/BK2Pv"kq1^1VSNg@1z9k"7o(~QdgڃNSۃ8,O W rgYwMnN?g=T@˟0ˡxn> hO%33}e /^(oX:f늘GABy13G@={|d?u֋iolKEi$nUۗsHÇ7Yb.x9jY_ k5Ab9\L+k)t@\]ž$^å_Ņ!ڰ(u ~au[ё -&?ovamTk\MX uu:~ \.d=xI-8m;'U1Nz&(6'byZQ"tz9eVܩطM|W5Rل6~֪& -fȟM1C=~? w&%[K 2I8h0A~'[Y;6c-~1SU5I_Hsz_eh6COj vz9XÂ<& _r 3:*ZŬDh3 /Əq'y7 :!U G4_ՏVv͓~tL-~b UK ݱaG6P -2 !?q]{.&ehJӆ*oV~Ku^6D]+Nyn+-yDc)`!^ӃCQ Qh%fp]2]o%ϞLԔV4_4' ZB5/=pĴi8;,6k@h}LavXO+6H<#96_2uqNڍm xK!,:15_ cV>Iy0qyS6P/E#жttt bM&4{f(:4p9w0,-{"VQE`digl98J?AQP龞Q[c1Is|1z= W[/Ə_d};٣HO 3-CQ3Y#8O&.I1_c[Ɗv!l*GiuiO4)n¡(0~ggGz!0.Kd3(~SRzoW^Viy1Cm0 %T s[* -14 >_haήa_85*fxf\;Y ̫}4#ƹ'2Yi2y(>Zݩ<.Cp+NLlzH -"~v&:Xv X_8= C+d#a?i'yGpB< ~Alo_iu~yp'/c[ lT%3Oj vxKy|%Y=6=ZŇ@+}~^$%%u}bROv$S/Tf]$yo?3_ A\fx9xڋ[qf-C_Vg"QGA#VfD6WBܯ' ;+3>e6$ΘRNVNF}ރ}TU  r):.{rs*{1!O ;KN9`I8Jp[[sUE`=Ԇ"ԇ582i-sH,W?;?-ؤ)> Y^7%.@LKA k/)tzeĔ(Fil]*lOw0t9> RvCyɦNzfL#}+p>4N[|1o LؔR金^a 8zcAƇZ{MhM&P&ۦIBװMtaJR:R $vHV4 u -rHZ8%޸2uX}OJpI}ĦY(OŰ )aټ3Ε@B]Q0^@,L=nJ_Bo3ۗJPHP.fۤ!%k%Ԕn*f[k!ɑҰΎT vP;\ -(qGɈY 4LPޜ8C6 R@Pb_ 3&ԓweH\ s5fr4s[k]2;9F8zp']oII,%< pz[]@ɝzb(|ZQ(Qh+a?`ȷ_(7:X? jX -_?z`b9"ھF͜8A#85mՉsGDi#Cg%-IՖ (.;'YBTtL~h\pr̊?taɎ-mV2jή2_wbFl߯}*)WZ0ډQiE}r!; [^ވKu& -tpMYmK[ oRTI70" l8A{ZX --Jݲy1Nn!rh)FÊwMprBT}} wg$!L7+,K/#hI ւ}^V«v&-(T G}2H׃ApHtxbb?bX 7A6$jp1"J -Zϴޭv7I1asqm m 33٭_߅c 4nR] w0ndPN[3|8Ӏ/}gZ[@}ˤ 9| Æs?(Ȭlٛ,/cxjjE6*   \l'o[{(œ*l"%I!NwE,v2>W$aܝ՛A.-h;94d@JoM`}lKA0Mo3irx\F?Ҝ0ͫR@=x}rblAhhX [H"ТrA2vst {{^pJ8N0{a@|]غN-ֻ#%IN+B"AŠ^p>cUqgQ^(5(Tu[la~꧃l@hJPNn-QLm!"z]IZ>+qAGE]fP@y.;!Ϥ> \ 7{,DbڿaMn F;㻗5)͙`x|vw3)0V=6 -˾Ϻa<$EwPR3PwNFaLa}Z͗|@pSDmncy'3_لzPu۪6oWehJ^dLXhH ޺o`A_)K|¦XY lh7%<Rn%7"0 )HH%liFi%w?ūƒRP%WkkWC, iXo|JhYD j9+t 5N 4|ZNBa6^ -2ZONgev`"Zױ(<9+ -8\e*b9IU;To.,"0wf{PiSTlߩP|^ 9ie\/C33*3i|Ju3DxAB"G}|rÔ\"tCbhD Wd[#>_.Eǀ -KǀYc嚝O*i̩#vX?k*gϊS˸ D ArnF!@,̹/fȀ~aRX•$ZFaeAIbdi/ci Kexw`Ҿc5q>86Gߩ - \yZ*Hnw,q:~>ba>{[ujL_KNƁ!ZċĶOu =_u)?ʶ^2}+GIFSӪ?q9U%cΩRa< q3M֤Q puVt}:'VszR1` -Ys:o}s1骎Q?L%pv엓`U8h]>FY) =VMn2x} -,fČh֨ײgt|NoG"vW}v5%œE[r 'mJ*gϷ2X46{ޓ>)s1̡.tnKW<nHQ,_v$j>F?q~w1<- .u#sQx%1~ʼnZD˜SϪltcNY{T%Cşw0WQm 7-Z6w)`V|!Dk|g*Я?"ҿިNEq3'g1`-MmIŰQP+$ vQ{v &pw! -(ԧI4*]mzBd{7Fߑ#CKKX@߿ፏP>b~/ -E@84xX!@錶Z4e3*:I8Y,ydtg|Ĺ|ZZn+(T#LzpU)Nתm^L&Jc9[GvJ#u87,s*Su)fSD<Ӎ,XϦGqֵV.9*mW;'T( OGY 8|z׫?Cw&bo~VM篶d -&GG%f7}p2.> ;#Ci77O.;ϴu8tWtY5gπV*&Ux>b+AJV&54,va),෸<7DƖa%m&.۱xmlQ4:rPe\lX ,>.}ԯkF\1Ag^,{S?;P޽Uס+q9udX rZ1&Dc# aMLwq[)!weɝV*NUz轗"C[,ɵUIpwR@H S1{|ơ~dHL A٤0p -x+!g}o-Gk 7X%ԟ=Fó ay;a+³C5#H־.i!Z?eq%CH6woqa?A4#zR_ R>@CvӃ&ym4qA˟"ʋG+ރG#:k-4Dnd1ƓFcqIyzQXTAJGwG G9w(^f}/T׷!>}yT޿yیГdIn%w, \ڧ쳻.o?O#>bATJd5~8 n7Nv$x58l̈8xrb; x$a[r{o&w_5ƒĮ -?-2MF8HRv',%9&9+gh$\qvxvYNFwZyY[>_DЭ+Ӎl'tK{LyU[X1#@Gޮ|`Pr_I`#_'VIh8K3Ni -:gOHKD C]xKpKZѿ3'mϾX{M^13 E'G; =nm6*d + 0[x9Pd:ϯ{S$Gr#y=<|a&P+x:r&*pXIw>.hUd{X;1K|UQ;77ւiE0A>)KApȤI@7oXfeGVfǙ}:7wY2A{c7Usr "KHb?r~&_Fw($ $)=VT/% XBj:>1m-7|m}+I9P]a͘m[:\[n󝜆xq,NEaa߭5?0>?A}'@۰6>߻G2^@^X~ә -C!uRzE'׷ق%An'(!U:ۭ͂9M{ܐb_h4LAxأM6P*FcHWr0z3nox玮+Y3⚿ǣ:7grK>xnTןܜ1$Q y+jN pE?7o>Wc@7B'z -m]_F'GxN1k·v[h &Szx7NYɃ)`y8Dq[?*Niakt$ -~"l3 7*r] L'_hA펥c?ܕ[@Ȗfin&*ܳ7ceV'?[Nݿ^tOB>a -V#22zk:Bgڿ0g;ow^X'~/1mb/h,QAZE`(\?=3hl.7L.Ec(cσM)G |;A~96L}&*ˉ\>%!d^؊qK[Tԧw|E' r]o>lrtkq aۏG}p/GJ+_|E{Πw nz|ӭi}:Vyn~@m`s%},Q8R1ӻN;'ݑY91>5X7a+$?K -,jeCUx&C:-m -$k.lfPqZ|-bp`Lj^K!ޘP$&fg - CT VFMa@w3&U';"Z~Sa-ȇvsX2/?˒UCxx`ۓr׳PDajP "TĖc7  4v١ O~݋ޅǦ>j-c5 -RWg~=6) );>j7HO?\#_37ļea25lsRřJ?o=5;4"fxK?^wȪU~1hL%)iY5֩O0OQcˏdݭQ>.(ڰzqoۛ?u==H 6 d3V< 6ڙ$q5WAɐ9J;,gZiR  J}'8qw!l}{ub͈ESӾc-8}) Wo0yͷ'õ -AcƶdN^N477w*mj$rP6ҌiJ -5lN9Q"Y~̽2uꍲ#TbcM(FUXb;Vsdt.ՎWS\_RpCޖĬl2q'5;7&ARH߽x`s&}rqͷ_W*· crIh ܧ޿˦~aq>dH_ #{''Y78 Ttz % R>o2R6+Ax^?/UpΜO@D櫒3pE)M~+$M|!|Ciu>Y,r pp -kE1xִk+N2kP}Gu^@Z3nv N22Gƃ_"qSIz?׮`U\ߩy˿ -FOdžڃJtLy6[~Ee1Pt .lrDɭ>Dnc=trB*dCȐBկp+2&$qKDi3ca><ԷF;v[Si.֐l<1Wx -.}=[Իﱴ}h\4][}\>r3هOrY9/B~dQ%d\uأNS-^%Z!}ks*zk51qb6 1]/!anrՀ}ɮsr)KIUkz*1Qz@SkʹmsVsx=[0Eø?>Udo庖 jղi mG*qG\cɶkgo_Gn٩XB>P;%`^FA.iVlx] WD@q[ JT|HN8 bw}tm4nC_HVBVWFd\ Uݯ%H|aݐaǒyRRMx<7X#~#Ψ;x}})-=[+g!c4 7}YbW#JEHP(URCkoK,ص-Y纷ksiD뾥'QmqN7 t$=wWkrQ[_!unjȖ#<MtAbԥQд!A|vq@NׯNDҮl~N-{O w@xH ^U-% @}R_BWf+$k| 3LgZZ^ Z 2X&dx 8Lr`$cϾ 򎔷TUnJ_kZ!c5#fj̻n7_'/~DgMA1R w$ER.`b4^rGVwV? yM%|" TxcdTLG ܷ=q~.&X{u~гE~zD+D\ojul/+O4 -:EMӵ.I=O5@0ZIbQ_k9Z[}"t' !XJ֜ٗg ڴTIq ?8< -sG 0yzդ1HOoh9ͷMH,>{C"xWྕ+vK3kMR[(__ƫ@nۻKlbiz~S>Dg~)NOEvrȾ]/`QA^8O'.?}S·قkF|wwX|=>c$LbZZC@9Qs/ŒG4Nsv -kۧػlXN|# +B]|dBxhvGT-JQ}ag!6)R?۪A\ _it[p#;A{0("Lov#CW}~0npVс8Zsz(YA‚ ]wXe +ra#÷I8za+%m¸ h Z] z`~Wŋ3d7jb]kj~nlܠ ۡA1>`ZmPn7(I|k_sC -yVWPMo-P%8؛`H]YW OCJyJ>@Tu}V;HѧN!QU@~z{4;ˆ2ϽR?s6LNyi$-COTU e7h@V+J8)ܘ? 3lDѵ)O}$ @nPz% EYZʛtr%^{ Rֻm] 50-7s"퓱Hk]CMm[֥Wˁ,'Х'zRJGȷ?<{}~ǡIzsHל㾅^a(p4Og|:~O 'V¿y;\2[HGW`E ǿLJ*;/TP?1wvEEN;R3`2=ؒV[p,b!(.)pW3[~nǗ~]zJ_k Kv#lhm?ƻFb]%IA7c(BQ Z籊4~- ->of"A_G>|gOefMBTw՜Vϭk|5q[L]>\}h· 3!^ -foT4HOЫhE4LG@h~Eu*z3=z$/ݐP!~Gy]u5lR!;O*~x◁ WOc7(@Mj)h -Go(e{ -Nf1}WϾN. pe+UgQSSBq -k'îo]ݠs}65aՈG&7C]_pa8mXPgq6ҦO5`M:yl/?{2bWm1 mTJy^ =TS0{2D -pc4G 9Cf-$ǰr5Tγ# ZkPIp+ͳs/swB7ZhQA} iw>]]&Q֤~Oלd䵥 Ez5&+ /)Sϧd8 H7CԆadգwB,ΚĽ*դv9(]7.rҺ;OF NGߕ,NJ}Q1-Ӎ+gRZ*")Nu}jaX_ǘ}3 -OY &*P\]Wo"8w[27j({lC1=r&~FӛԗK'hZ|ob $5GA. Tskچuky K/ *=:u[vԯGvo 66jM4߽!2M5 K6!.63 3 1 -d9=UjZBtÿYb岾 -Ͼ?hT3jڒ?uǯ0@l_WX;s-ۡuuCMqo# ВENծ)V2Cۄ·6C u%?Xs&43Zß5=?IFoMCa,KSC7o)SO|N"`r -%FZAa6%(Sh֐9*q3Gc#Py\C16!T]v @|du0ڊMndèmV -֌1xKVZ?\Qt;rR_Z`*u\Qx) -S>}{U7ʕ6蝚ް~ 5Aa*5 #bc縔;r[?\g -?uby;)C q:Z"B 4RUjͤBq1D,[HP_zZ+8%\MzF|VS`IC {w0lG3Xnì@$~½*)O^<~MRVzH)or WoE' -r7hop7,du꫚{Z*%8[N;sTSkǪC>XKMBWUW0Vf$1?WJkb+nޔqÁ3I' ۄB #u5TR\RbV[`Q;W\370ҳ2.ÎO~OAJygWt_ӳۄzUN_pXDAY75ssօV? `X!r]ۯs%)LbS4xhᲀ/=*£/&?'gvžƏAA?`F ,Ax;Vrw?naQh -j)u}խ?RU؇P s+C2 CDăUY 0j!j?=5ۏ(ʀ N3 l{lD([3*֭__!VpW%>]5yY1} L0mivp𴏮nV;GiѰ`YٱIiQlz44 ù3RGBC T}2`+;={\ջ6Ổ g/q_15:wL2~jpGLLZ[ù"8q@B&dyjyb:gC;+^al5p8)]Fh:n+mŏT.B_EpwHa9C ]8~U]_f${'Ov[׸(B?L{BFLs)ymwS7H}͜b6ÖNqބ:3)o۝Nƒ3'mű3k)ka8$SNDcEz1$5s'NX"eryq8YAH*iLZUL廪Nk֏qXݲBnSi>9~..~rS.5RȈ -,MJL[E5)NyC0wK55#jnb:c7ɴ򃯈X~݋3MC{T8{~?ӹ*Ƽ7PO9ClE7+0|rWn?dY#{O_\LJLs k_WdhO7$HYܬH#\s^7(eq*ci nJg7pM,,Q?Cx=b/ЃXeMu$F#'|k`W ¿b2HER)vGDncėE=GI>H T VѰY4 l ~ Xxg8g-t -PxFYؙw)xNɘ z訳-}S ]B"~A@0˧\0`;Σ+`$tS!R4Voz.fk[k6K9頪XP=#p:Ia٭Yzf]7ÊlUd]?MSv>*ŝBOaZNnR*'">8ˍc>08rYy" 'ϬC,n]6e;䋫 !#sjո>c7"aM'JE v0..S-feD1Ӯ]kyG)'>bӰ4@P>Hqe'`dUӂU<͖թ_%ɺl_=ϙe!S$S:Nå؝EN*%4b7FySAEti2`屮MLGů`ǦcƔi! 𐘔 ɟtMa1:,WK R!p;޺ jUMɶj6Cбd< x:{\b+W}f4w7Ha\) wHdy@c:'jmpAeގ7H;&;pJgS`,W˙ -peIГ?uTs$J%O [xYHD5kRSom&D}p$`Iĸ[6,ɨ -Er5$j!J54]2{V[aW*m(H?@:iF~ӑ˩Me|a5Iê"#pg=^iYPr.Kjx}މiP -H3*c({Xǵn[٦-u\JikmE鮼rTa p +sN_-?ijDʳf%C|+7h1g=w?\ƿ37^us FlnH!R tF RM_[VZg9*c\Ђh$8lEKq}gԍqDŽ=S- ;OO&oo!ՠ!gpFYd"=I.1';}i ~lڜC Z?[s;iQ(!%Wlbڒ0QR't&6}ŋ>";qk4I1#g(-R2k`KVHV/W&ky^ _K%=N;S6ѴA 1,P.Sr̓]ǦmI?O VD` ܠʩMo/vAŻ3*]ZS A;.k]E)aen93Rɦض-խ֮u}#>)Icģ WBBv.ɜxDH!߇ăأr)AV?P mMkb9e2c=|Ul|zLDԓʤe"&*b%X7c!v,MIMMydU+&ׁ|hT` 0O="jˆIiKR쪺\YExr 64xxټ`y4fZw[0҆@_P%5B/E )8@rKg=S w VpώeXce3ynY>փ # TҦ -4ؕ}Ȃ=!)<X+pžNέ3 -mc62F7I7NubF@pOndolMs!vJK:7[O>E)Yؽf-@'[.4!%Hk'#dh\-_'\NIFdȑ{Tk~2Z劉6v84gіmSõ$Oe.ga3EhZBpPq0|x۪>8%\AVІ٩;7W@R,]wr5!l=69Q ԭ=5&~\Mv:-4*r6}Ɓ#VHA)Akѱ@cm9Ax0^+qOnRYk{AZc} eLLfQ#MH5c>qH557&M5/@TtcVb S]r6YםUcbd!\8gvSs5i]j0Ig:$v)$?WvO}zzłԅA~B7-79ydV h_H%(blXwVc}rfz[{fEM@qagN*^w_ 3~ -2̃HCp0ߛ]Bp5FK4 EWJ6MT"YJ,H*Ȁ1L2A<"(;P_)nh8yU}:ВGkF-KªTd͏^R$ 7 -皠a W)ebsC#'JF$ڼl`@,mJ̸,1 -~Mpg@"ϧM\ʉGDLߦpb{}Nɯ^ޝŤ]ĄG~sruv[ ^); ү#>[=Ā7 e2!EoS밂/6y՚~te\+}zArpf3M!pЫ1x;s5+Ynj!@31k 󈟳i4w-}/* 2hB0HsgDK9鵃 1Iɮd63D(q>Ra-dH -I uƧQ2;9+}h >{H-*;|Z\~H^$/ XrklI*Xmi:OG ,3드!~ޮd|Z}Hg}8qY}m*:h_Kqy)p^T>;miW7`TC#5`P~ZE(Hk0Nt{ O# #">"(Rѯշg} ؜S)sm<ϯN&@=tboW07o9sכWr*H_C*a# Fhr@~~Ԙ) o-ۘ)/w;:jaM@'uC>_`5+w0?kFӹఐɐa6=ۮˈ e+,Ae9 -Wzv6#u-1JNAkոE+4] O+?/~XK%VN'rhY̥i(t6>s"(fqkr,4P2AYTl@fˤshВV+NU -Y_;E801]y.)7~R\ID63wfo1eï*B+[>GdίL?GI]^9gzĝ@Ҫ/N)Z7vlfXXFNnWPj($]Ƃap -Z=_?]x((67Jw }gXlcue]̹])B>НD>_*Nn҇d ,h -]_mRwJФ)!tOgxebkb-7`."jT3r#3,dGMN836m$vf+ ԯhԶb~ - G`B "U -< -#MfHpdcYAŀ(:~Bh7}봸k[e.ˑ# -u6޽wWH7U+Љ 'hĝUiveů(CI˸^^_Zʔ1[`޺63ćL/%M_k! P~xyt:&wl::dM7\3!K 3Z7|'!,:zPwTG9!Z -F;:ZY 'cCGW@._Hf!##1A|,Ŏ߿sz|uxŋr.N])tpJXr)Gg$H]9B7DKU/8gt@"BPbgߞoI J/jZ=}Jtఁk'qE5 embeFz됏IܘǓZ !pxqֆRB:oQY .иd7l@Iw7bn*hQ+8evؚeҵ!SÂć \.n5l2 A~wVb:F%сr~PU";:)nһ?~ ԘtMAX#L}kW -Ho J\//鑣Epq]lla0+v'H%MwP6Owujp +AfCmkjjz>fܑ-"+>Ȕ룆lJ@$e=JL[vsS-.Qs A;;w 8ϷکSgLHQ2qmFO -RH`Ŷ snj?wֵ9Sƛm*&`I>}k [ڝ0iI?Kwd ?nU Xؙ6bhQ7O,Eoj-hևiYlP`b -246oh(PPQ.W2[4Q 5b|Zucݯ|k0G7p6!zh}.Li`D z@tuںϑFe!_RӪ5tNQ*MTuN!1E*;ï{h(Z]Rh_Y$ĒAu|T}X<+똉׵MABhq~+M6`Dwo ?뷌41sKQWwϿ2QY~WPuߜ(afɲ|0 }ndG3kSrn]NCuiw[4H: -?_jB=Dg0djϥ'ND >}ekld WhSL.aJ5zɆȃL/)_\;,%Rp^ER0lkkԫ~*ߤ4[l@sk a:~( ln9՛oR\[NU&jyj>c["4 nηB "\eX_y:ș5 -hi=~!ķ倲B'߄ݱAY.靰 cb>dPVZO0.dSP-ՑRcǴWՃrzynpj0!mj?ӐvOYW򝛮If6s 9sN w7'Bgc;Bs:L]ñ|.fs}SB .b{ :ɢb 9im4^Z\6D &!iw+߷KG%I ` ->a Hn!bhn*"cQG^9h-яwo'Wp.㷕F#yq չIjWOmiW˜.J6mV݂.zh?2?m!c.O3<&(Tnj+уx.qWet9vy|UUɾ6nB_i#C!|oy9(?6S,3`ZE_i7{۫F\_aC9ClgCs q͒cgfdl_͏vTzỹ$aF0EEse% Oȫmb{^z߆G||gLCZ#1(Qv0C/ݯ?Ôɿqa4=#̮e<6v2sLT.:j*E4ݨ>߅cor:vX͚;FSY9 }\bu|?͒ -׽;roa=9LҮ?aT('(54;^#;|M`ljo&ūޑN\Ę8!i dDX{ס >xW>x'lPA'=0mJy˸wP{mW.C87&\ [=lj2NC@,ft&Bwy i `H(aKcz_@`?ZM K;H[r0bonZW2/q:Y(\-Kǀ'.mA x?rzDUρGEe4}/ݜŢ9w|>B>W].>Oq-piv"VX;Ȩ|OLٺ_Hu o1+Y$} tnݪ,vBգY=#-F5o[mܳVI.R_,,w̽]7 JѺU߰Ê,XN\4lW#q(1l|ZX@Q&*a7;  ylJqsi 4! h0X+pyGoN3Ľ۷˷ãd +7얈F;]ױ~-Rzz_4ko9E:u AnmRȽC[[Xi+0Kja<% -׃,,B5P1`3PiOQ_mabZ{pzcݪ `Rm» - rnm`Y+b?w.@>e۝aJh GiMaw:\:یڔ~~R.gCyJC0q lVGƮ: <ωU VŰ'fǟ0{UQgo>\@# sT*H+G@h?w̐`Fńgtuofl1NV?G떋E,hrjT;dqouw볛AZ}Sʤ{/Dk5[ߋ^Z\"ʊLI){1{"L1v/̒@@kQ\WbAh5bnW?l,tfGAxv'HO 7^َՂ`{"uzX{vynzƉIּz0H]'yLoPA=RZD߯CzU?8?(N6> ϖJaTqdȵZa.xT;'gr,qC^(<;7ce؇РGgW?oS=v_b$ e$`1H23r -q֊[T\Q`q# d;Ռ -/Ksj*ܭ "+d,O:b 'F[Q?9cD: 7Y"n8_szP^]6)]G&Fg=p*7Jno,h9r6^gƶEH\<>vo,7)kn}~ذL_`M<l_K?1 Sʛ)U0Y2Se$q+ t]i% <;`&/uGe5];xw)vxcԧ^`dpɓ[a1\ȶ\n֣tZSF2? ) b:Ч:>*``[%ѝal2A춲k/>z*>7-M}W:&s}bz}v_qF{eiC9H#}xi}}Z*ɭjd/0}+2MDrS]uk40S~ff~}aR:Y̩'o1%r1+\NyQA5`HeT{q -ӬrJJQ7 _ir&2lrbd@m2`;iR1阦*,Ez.:b?Mbҵ߀ `' գB0H>WM{ē{/ѬbS7,ԹV wOTuP}pr}1O08sI5mA3É; PkZT/g ?ucij%]VL?)4?lq%Kt #C>IT|,Y M> Nc0W7ͣmۮfd9>"A=1QCH<)6"F&%aU( q _?:n۹מg?)4oOGVJʕ&X۲exYx͂$7=5؇(gugOʰeVl-{4ljw#-2$ wܸX#Bl4 P ƀ,߇G im1 ?db&S=~TvwIYJ!~|k%+i4)qRd3:hS~G->JnOhi ->TNF3u="1w4,e27\ ET7R>Y@ ۻtn.z%ve ,pQo}?)5#)^D~~or)Guh)\hPK>ɦW;M.a[eg})/wuESDm.}?NX{`=R([>r"^O|ؐ ^6V@ރX[YXHk$"Lҍq*Ma],ߏN!BNڼN=j(?^ĨB>~<1 V?x+ 㤉o"0)/ Vw Ru| sa`ԹF4LY;  Пv]FAa\w`)X 'jP*;Z$0V fZzw~5V qx p}HW76DCb2\p?XDEr:}Ϫ%]3HoK -AGgNyIdcvaP$›D$P1p:{V.%w/}⌏SY| Z===Т!jkq l+Doy>?寮0 PYqJU6%e7ӾLJrÒOVPM+BtYZGI4KNL;8,-d5osMeou#J5_#`7mKf$/|wu38p@z' 2VM-] )]ETg쯕8x4ܾbI!ܽzM%&SћQA٭E`;_ʓ|yNak4F t+*=a*.\}< -ɤ֮Q>ү>& 5{7 ^H)' N0Ti][`5!;>5a#sd$2) g<1GP -䜼lq?a3#'F>1(o毖{xj8ڞ:n@nd8,ct,&r>(HLr"f>/V&Ha;Op례c*!҈@n\|uԱ'"Ѓ$y|_h6+|,.yL(V,?`=̻Y"4*:?-('WiBWuCr}r"_ejOXZ 4香fBuۻmx/E',t(pOUmQ7H_&Щ8}:{Pf b~֓m{y729”bh]EPji[ʆTJuHg 89m}Iٖ;.NdgsluT@evda퉏Yfo|fu+nOhzÞ0fl3չfXl>P<4{Y٥'`c=״@x1ȩ -J3/5fflOF~|1UX.=Y  _qCԇ|F_V] u;W|Y} MתBN'揓6D 9P[3/r -({^ C';| R?#WR`wGn9-CG%vm.έs1־_-?GBrߋ*om wnb(} h![#Ь)R/:狷3"~zehpoP'Nˉ~5Hf򌐄]z/?"+]C?Fw=47kO^Ȳ8 W8G4~h>pjF2,CzGU\ wpV b]帩kbWOc<툖|8ƛcEfJBq?[mSypehܘr-3'BtkQ<L"Ȉ2/2`7INđbH,C6Hd֓!"r|*gLCoEb XC3&0/kHSL|}/L2<+ ώx>ʣ"-Oed'QP9ӿ;^{ Z-(/Ѡ{Bsg{[c|0zs_=&ESMl=\$PR&h Bj"Ĥi du0B! 0rCkǗ)5A:twi :`>8EBʷ}O%ȓ`E#D[8O| }7XrȜp#;85e{mL<L65LBB8㍢֗P*ÌǑ~.pZǙUWB}Eퟷ,| 1 ~׫j_ O&+°NԝT>˸,QzPL > {2Y$X-@>zk_KhV;S; ahL.7 -EuKBŭQ]cem٤۲z -$ QpV%jl@;;|>ӹ4ըWo|̗t>i*qIHgָ֒SȶKΖq'lF"F՛S!x0  _q8g+%_" /}A"'|9 /1_ 0>X\O;mÉ -I;@^vUk,qcLķ$0[+^\ f1.;xT]G=N1`KGFWPi%%[sl }$Gg7Wf*>1&"kKX6 8A,0y@@JychoE_<l^-,| -`=:zIEzR*OYQ!^ TڪMo1@GҏF%c{w> {V2Xa-(|Z0jCk B= ̩X;|,:"1/K" 7G`9`0x. > :%w?f6 }@Z-?8*F-{E=C. XLdX` zqR9bmR?\.Z~G{v죳 4Z8 \?wH76q.4%]tLwH`xl>`([=N[K~~yML]_CvOt?nfWN4cJL|'e#u4R|Y#ј`npң]kT$j t5ɔJ6<$BfIkSW}g#E&pL;c38uW'"p&?q N/s-9d%K" %'TBB1pk1?G`-N &g_^1"H~- qjRj$G}]jvs3+&k@LE^Kw]Ue  ڵpEǾG-s)[qʗ%mX`tW&yji?s^IpKaş}6OLX.!"p}'8E[HƵq?9|yw)_';8+פ6E9AF qR?o V{*IQ!$T##~pT3hsȗӅے pW5>VDkŋ OmQDl-]꾈{w9Hu7?0U3nr]ӃSw|q -!H>6CP[+r*ג_}5$aɋ8 -Vxi .) ?=aBR-/1|1X.|SVy^z:ӑuY~ZH*7闯9Y3@0ؗ'eC_)_LIPzM1UGLa"5גӁ%ebK巻.Ax0M+|7f?A[ -yk O`d{6{@$JN@Ɗ,VI*c -vOC`!PuV+Ths{ԬG45 -Ӹ]7OvPk؀W3 ]at1Rڃ 䳅S,\[].=(Ø?^kɷF}um@\8̺ J zЊ݉y[Gv`h-lze[0ݻ@ѓif vprªKJaJ2Z/1IP;cI[q)Nl ZzL?ļӏ7ہU"D}sD#7} !T0P' x2t|OMwP6Վd1cw8 u]0\{ e:2S,|O u +rג>>C>+}.}%SWN/Xx/8d?ޤi|o9ԯ/83+~;L<#v/v@KCN8Nh~p1iWK?z'Ϛ[{J+NVff2*[G|Υ֡9Ќ溉5Iп<Z"]8| -)Ҋ'~-o=w=y}Wϣ{p~T s󼝷.;0E_B[Me_PVwى%X{EZ;lq#G~d\K>!!" {H%'\8b]Ʃt޻yH2YncM>6ob-ԑ+x{70?ޫh) -!#mYX\mbLKX@߀X9!>P~?FܬOX3P֙MŅGai#6vz YkSD=k;9em< ؎@#R}1*3}7&\୛;E .\r+Aq%CD>O>n\qt -endstream endobj 78 0 obj [/ICCBased 120 0 R] endobj 37 0 obj [36 0 R 35 0 R 34 0 R 33 0 R 32 0 R] endobj 262 0 obj <> endobj xref -0 263 -0000000004 65535 f -0000000016 00000 n -0000000203 00000 n -0000019585 00000 n -0000000000 00000 f -0000019636 00000 n -0000000000 00000 f -0000000000 00000 f -0001240583 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0001240656 00000 n -0001241031 00000 n -0001242638 00000 n -0001308227 00000 n -0001373816 00000 n -0001395773 00000 n -0001461362 00000 n -0001526951 00000 n -0001592540 00000 n -0001658129 00000 n -0001723718 00000 n -0001789307 00000 n -0001854896 00000 n -0000000000 00000 f -0001235820 00000 n -0001235896 00000 n -0001235971 00000 n -0001236040 00000 n -0001236117 00000 n -0001920521 00000 n -0000020534 00000 n -0000021901 00000 n -0000090522 00000 n -0000152083 00000 n -0001204796 00000 n -0000334688 00000 n -0001236790 00000 n -0001236915 00000 n -0001237031 00000 n -0001237154 00000 n -0001237281 00000 n -0001237395 00000 n -0001237511 00000 n -0001237627 00000 n -0001237751 00000 n -0001237874 00000 n -0001237987 00000 n -0001238112 00000 n -0001232942 00000 n -0001233086 00000 n -0001233230 00000 n -0001233382 00000 n -0001233534 00000 n -0001233678 00000 n -0001233822 00000 n -0000023166 00000 n -0000023425 00000 n -0000023760 00000 n -0000024508 00000 n -0000024892 00000 n -0000026053 00000 n -0000026791 00000 n -0000027530 00000 n -0000028287 00000 n -0000029431 00000 n -0000029834 00000 n -0000030583 00000 n -0000053744 00000 n -0000072433 00000 n -0000021963 00000 n -0001920485 00000 n -0000022604 00000 n -0000022652 00000 n -0001204908 00000 n -0001205588 00000 n -0001204971 00000 n -0000347457 00000 n -0000366995 00000 n -0000785650 00000 n -0000347520 00000 n -0000346603 00000 n -0000346907 00000 n -0000346666 00000 n -0000342309 00000 n -0000346488 00000 n -0000342372 00000 n -0000343012 00000 n -0000343523 00000 n -0000341698 00000 n -0000341761 00000 n -0000337855 00000 n -0000340266 00000 n -0000340799 00000 n -0000340329 00000 n -0000339115 00000 n -0000339445 00000 n -0000339179 00000 n -0000337791 00000 n -0000338215 00000 n -0000336066 00000 n -0000336794 00000 n -0000336130 00000 n -0000334801 00000 n -0000335198 00000 n -0000334865 00000 n -0000332941 00000 n -0000333609 00000 n -0000333005 00000 n -0000259673 00000 n -0000154825 00000 n -0000090566 00000 n -0000152119 00000 n -0000152175 00000 n -0000333158 00000 n -0000333306 00000 n -0000333397 00000 n -0000333503 00000 n -0000333726 00000 n -0000333781 00000 n -0000334080 00000 n -0000334158 00000 n -0000334315 00000 n -0000334463 00000 n -0000334538 00000 n -0000334613 00000 n -0000335010 00000 n -0000335107 00000 n -0000335315 00000 n -0000335370 00000 n -0000335667 00000 n -0000335745 00000 n -0000335894 00000 n -0000335991 00000 n -0000336275 00000 n -0000336422 00000 n -0000336543 00000 n -0000336667 00000 n -0000336911 00000 n -0000336966 00000 n -0000337267 00000 n -0000337345 00000 n -0000337494 00000 n -0000337641 00000 n -0000337716 00000 n -0000337999 00000 n -0000338120 00000 n -0000338332 00000 n -0000338387 00000 n -0000338688 00000 n -0000338766 00000 n -0000338915 00000 n -0000339036 00000 n -0000339324 00000 n -0000339562 00000 n -0000339617 00000 n -0000339918 00000 n -0000339996 00000 n -0000340145 00000 n -0000340474 00000 n -0000340595 00000 n -0000340698 00000 n -0000340916 00000 n -0000340971 00000 n -0000341271 00000 n -0000341349 00000 n -0000341498 00000 n -0000341619 00000 n -0000341877 00000 n -0000341932 00000 n -0000342231 00000 n -0000345876 00000 n -0000345940 00000 n -0000343988 00000 n -0000345263 00000 n -0000345327 00000 n -0000343924 00000 n -0000344357 00000 n -0000344141 00000 n -0000344262 00000 n -0000344474 00000 n -0000344529 00000 n -0000344828 00000 n -0000344906 00000 n -0000345063 00000 n -0000345184 00000 n -0000345444 00000 n -0000345499 00000 n -0000345798 00000 n -0000346057 00000 n -0000346112 00000 n -0000346410 00000 n -0000346810 00000 n -0000347023 00000 n -0000347078 00000 n -0000347379 00000 n -0000367039 00000 n -0000785594 00000 n -0000785765 00000 n -0000785831 00000 n -0000785862 00000 n -0000786167 00000 n -0000786241 00000 n -0001205524 00000 n -0001205703 00000 n -0001205769 00000 n -0001205792 00000 n -0001206054 00000 n -0001206132 00000 n -0001206437 00000 n -0001206510 00000 n -0001235617 00000 n -0001235251 00000 n -0001234884 00000 n -0001234671 00000 n -0001234454 00000 n -0001234087 00000 n -0001233966 00000 n -0001234208 00000 n -0001234329 00000 n -0001234551 00000 n -0001234789 00000 n -0001235005 00000 n -0001235126 00000 n -0001235372 00000 n -0001235496 00000 n -0001235714 00000 n -0001236672 00000 n -0001236704 00000 n -0001236554 00000 n -0001236586 00000 n -0001236436 00000 n -0001236468 00000 n -0001236318 00000 n -0001236350 00000 n -0001236200 00000 n -0001236232 00000 n -0001239883 00000 n -0001239021 00000 n -0001238235 00000 n -0001238290 00000 n -0001238589 00000 n -0001238667 00000 n -0001238824 00000 n -0001238942 00000 n -0001239076 00000 n -0001239370 00000 n -0001239448 00000 n -0001239605 00000 n -0001239726 00000 n -0001239803 00000 n -0001239938 00000 n -0001240235 00000 n -0001240313 00000 n -0001240462 00000 n -0001920574 00000 n -trailer -<<50D55593E899F2408A07A2263CE1780D>]>> -startxref -1920762 -%%EOF diff --git a/share/macosx/keepassxc.icns b/share/macosx/keepassxc.icns index c5125d782..927efd5c0 100644 Binary files a/share/macosx/keepassxc.icns and b/share/macosx/keepassxc.icns differ diff --git a/share/macosx/keepassxc.iconset/icon_128x128.png b/share/macosx/keepassxc.iconset/icon_128x128.png old mode 100755 new mode 100644 index 7512796d4..0b36d35d1 Binary files a/share/macosx/keepassxc.iconset/icon_128x128.png and b/share/macosx/keepassxc.iconset/icon_128x128.png differ diff --git a/share/macosx/keepassxc.iconset/icon_128x128@2x.png b/share/macosx/keepassxc.iconset/icon_128x128@2x.png old mode 100755 new mode 100644 index 3c00e0e8c..71c955e2a Binary files a/share/macosx/keepassxc.iconset/icon_128x128@2x.png and b/share/macosx/keepassxc.iconset/icon_128x128@2x.png differ diff --git a/share/macosx/keepassxc.iconset/icon_16x16.png b/share/macosx/keepassxc.iconset/icon_16x16.png old mode 100755 new mode 100644 index ca6823954..5b2799217 Binary files a/share/macosx/keepassxc.iconset/icon_16x16.png and b/share/macosx/keepassxc.iconset/icon_16x16.png differ diff --git a/share/macosx/keepassxc.iconset/icon_16x16@2x.png b/share/macosx/keepassxc.iconset/icon_16x16@2x.png old mode 100755 new mode 100644 index 47af8eb1b..62c6bbb9b Binary files a/share/macosx/keepassxc.iconset/icon_16x16@2x.png and b/share/macosx/keepassxc.iconset/icon_16x16@2x.png differ diff --git a/share/macosx/keepassxc.iconset/icon_256x256.png b/share/macosx/keepassxc.iconset/icon_256x256.png old mode 100755 new mode 100644 index 3c00e0e8c..71c955e2a Binary files a/share/macosx/keepassxc.iconset/icon_256x256.png and b/share/macosx/keepassxc.iconset/icon_256x256.png differ diff --git a/share/macosx/keepassxc.iconset/icon_256x256@2x.png b/share/macosx/keepassxc.iconset/icon_256x256@2x.png old mode 100755 new mode 100644 index 1c6e2a094..e846e3090 Binary files a/share/macosx/keepassxc.iconset/icon_256x256@2x.png and b/share/macosx/keepassxc.iconset/icon_256x256@2x.png differ diff --git a/share/macosx/keepassxc.iconset/icon_32x32.png b/share/macosx/keepassxc.iconset/icon_32x32.png old mode 100755 new mode 100644 index 47af8eb1b..62c6bbb9b Binary files a/share/macosx/keepassxc.iconset/icon_32x32.png and b/share/macosx/keepassxc.iconset/icon_32x32.png differ diff --git a/share/macosx/keepassxc.iconset/icon_32x32@2x.png b/share/macosx/keepassxc.iconset/icon_32x32@2x.png old mode 100755 new mode 100644 index 63c9847c4..fd1bdb037 Binary files a/share/macosx/keepassxc.iconset/icon_32x32@2x.png and b/share/macosx/keepassxc.iconset/icon_32x32@2x.png differ diff --git a/share/macosx/keepassxc.iconset/icon_512x512.png b/share/macosx/keepassxc.iconset/icon_512x512.png old mode 100755 new mode 100644 index 1c6e2a094..e846e3090 Binary files a/share/macosx/keepassxc.iconset/icon_512x512.png and b/share/macosx/keepassxc.iconset/icon_512x512.png differ diff --git a/share/macosx/keepassxc.iconset/icon_512x512@2x.png b/share/macosx/keepassxc.iconset/icon_512x512@2x.png old mode 100755 new mode 100644 index 68e4a3dce..56bdc6726 Binary files a/share/macosx/keepassxc.iconset/icon_512x512@2x.png and b/share/macosx/keepassxc.iconset/icon_512x512@2x.png differ diff --git a/share/translations/keepassxc_ar.ts b/share/translations/keepassxc_ar.ts index 1bd56f500..741ca960c 100644 --- a/share/translations/keepassxc_ar.ts +++ b/share/translations/keepassxc_ar.ts @@ -3,11 +3,11 @@ AboutDialog About KeePassXC - حَول KeePassXC + حول KeePassXC About - حَول + حول Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> @@ -58,7 +58,7 @@ <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">٪ 1 </span>يطلب الوصول إلى الإدخالات التالية:</p></body></html> Name @@ -66,7 +66,7 @@ PID - + هوية العملية Executable @@ -76,14 +76,14 @@ Command Line سطر الأوامر - - Your decision for above entries will be remembered for the duration the requesting client is running. - سيتم تذكر قرارك للإدخالات أعلاه طوال مدة تشغيل البرنمج الطالب. - Details تفاصيل + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + سيتم حفظ خيارك طيلة مدة عمل الكلينت و + Remember تذكر @@ -93,8 +93,12 @@ السماح بالمُحدد - Deny All - منع الكل + Deny All && Future + رفض جميع الخيارات لان و مستقبل + + + Allow All && &Future + قبول جميع الخيارات لان و مستقبلا @@ -112,12 +116,16 @@ Use Pageant - + استخدم الݐاجانت Use OpenSSH استخدم OpenSSH + + Use both agents + استخدم العميلين معا + SSH_AUTH_SOCK override تجاوز SSH_AUTH_SOCK @@ -136,7 +144,7 @@ SSH_SK_PROVIDER override - + تجاوز SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. @@ -161,6 +169,10 @@ Security الأمان + + This setting cannot be enabled when minimize on unlock is enabled. + لا يمكن تمكين هذا الإعداد عندما يكون التصغير عند إلغاء القفل مفعلا. + Access error for config file %1 خطأ في الوصول إلى ملف الإعداد %1 @@ -205,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? يجب إعادة تشغيل التطبيق لتعيين اللغة الجديدة. هل تريد إعادة التشغيل الآن ؟ - - Reset Settings? - إعادة تعيّين الإعدادات؟ - - - Are you sure you want to reset all general and security settings to default? - هل أنت متأكد من رغبتك في إعادة تعيّين كافة الإعدادات العامة وإعدادات الأمن إلى وضعها الافتراضي؟ - Select backup storage directory اختر مجلد النسخ الاحتياطي + + Confirm Reset + أكّد إعادة التعيين + + + Are you sure you want to reset all settings to default? + هل أنت متأكد أنك تريد إعادة تعيين كافة الإعدادات إلى الوضع الافتراضي؟ + + + Import KeePassXC Settings + استورد إعدادات KeePassXC + + + Failed to import settings from %1, not a valid settings file. + فشل استيراد الإعدادات من %1، ملف إعدادات غير صالح. + + + Export KeePassXC Settings + صدّر إعدادات KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -248,6 +292,10 @@ Remember previously used databases تذكُر قاعدة البيانات المستخدمة أخيراً + + recent files + أحدث الملفات: + Load previously open databases on startup عند بدء التشغيل إعادة فتح قواعد البيانات التي مفتوحة سابقاً @@ -264,25 +312,6 @@ Include beta releases when checking for updates ضمّن النسخ التجريبية عند البحث عن التحديثات - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management إدارة الملفات @@ -293,11 +322,11 @@ Automatically save when locking database - + الحفظ تلقائيا عند قفل قاعدة البيانات Automatically save non-data changes when locking database - + حفظ التغييرات غير البيانيا تلقائيا عند قفل قاعدة البيانات Automatically reload the database when modified externally @@ -307,33 +336,21 @@ Backup database file before saving إحتفظ بنسخة من ملف قاعدة البيانات قبل الحفظ - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - - - Choose... - + {DB_FILENAME}.old.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - + استخدم طريقة حفظ بديلة (قد تحل مشاكل Dropbox و Google Drive و GVFS وما إلى ذلك) Temporary file moved into place - + تم نقل الملف المؤقت إلى مكانه Directly write to database file (dangerous) - + الكتابة مباشرة إلى ملف قاعدة البيانات (خطير) Entry Management @@ -400,9 +417,13 @@ Toolbar button style: نمط أزرار شريط الأدوات + + Show passwords in color + إظهار كلمات المرور بالألوان + Use monospaced font for notes - + استخدام خط أحادي المسافة للملاحظات Minimize instead of app exit @@ -414,11 +435,11 @@ Tray icon type - + نوع أيقونة الدرج Tray icon type: - + نوع أيقونة الدرج: Hide window to system tray when minimized @@ -426,7 +447,7 @@ Reset settings to default… - + إعادة تعيين الإعدادات إلى الوضع الافتراضي ... Auto-Type @@ -446,7 +467,7 @@ Hide expired entries from Auto-Type - + إخفاء الإدخالات منتهية الصلاحية من الكتابة التلقائية Re-lock previously locked database after performing Auto-Type @@ -454,11 +475,11 @@ Auto-Type start delay: - + تأخير بدء الكتابة التلقائية: Global Auto-Type shortcut: - + اختصار الكتابة التلقائية: Auto-type start delay milliseconds @@ -471,7 +492,7 @@ Auto-Type typing delay: - + تأخير الكتابة التلقائية: Global auto-type shortcut @@ -486,6 +507,73 @@ Remember last typed entry for: + + On database unlock, show entries that will expire within + عند فتح قاعدة البيانات، اعرض الإدخالات التي ستنتهي صلاحيتها خلال + + + On database unlock, show entries that will expire within + عند فتح قاعدة البيانات، اعرض الإدخالات التي ستنتهي صلاحيتها خلال + + + days + number of days warning for password expiration + لأيام + + + Destination format: + تنسيق الوجهة: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + اختر المجلد... + + + + + Show confirmation before moving entries to recycle bin + أظهِر التأكيد قبل نقل الإدخالات إلى سلة المهملات + + + Copy data on double clicking field in entry view + انسخ البيانات عند النقر المزدوج على الحقل في عرض الإدخال + + + Show toolbar + أظهِر شريط الأدوات + + + Show the menu bar by pressing the Alt key + + + + Show menubar + أظهِر شريط القائمة + + + Import settings… + استورد الإعدادات… + + + Export settings… + إعدادات التصدير… + + + Open browser on double clicking URL field in entry view + افتح المتصفح عن طريق النقر المزدوج على حقل عنوان URL في عرض الإدخال + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -529,7 +617,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + تمكين إلغاء القفل السريع لقاعدة البيانات (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed @@ -539,34 +627,18 @@ Lock databases after minimizing the window قفل قواعد البيانات عند تصغير النافذة - - Require password repeat when it is visible - يلزم تكرار كلمة المرور عندما تكون مرئية - Hide passwords when editing them إخفاء كلمات المرور عند تعديلها Use placeholder for empty password fields - + استخدام عنصر نيابة لحقول كلمة المرور الفارغة Hide passwords in the entry preview panel اخفي كلمات السر في لوحة إستعراض المدخلات - - Hide entry notes by default - إخفاء مُدخل الملاحظات إفتراضيًا - - - Move entries to recycle bin without confirmation - - - - Enable double click to copy the username/password entry columns - - Privacy الخصوصية @@ -575,16 +647,32 @@ Use DuckDuckGo service to download website icons استعمل خدمة DuckDuckGo لتنزيل أيقونات مواقع الإنترنت + + Hide TOTP in the entry preview panel + إخفاء TOTP في لوحة المعاينة + + + Lock databases when switching user + اقفل قواعد البيانات عند تبديل المستخدم + + + Lock Options + خيارات القفل + + + Hide notes in the entry preview panel + اخفِ الملاحظات في لوحة معاينة الإدخال + AutoType The requested Auto-Type sequence cannot be used due to an error: - + لا يمكن استخدام تسلسل الكتابة التلقائية المطلوب بسبب خطأ: Auto-Type Error - + خطأ في الكتابة التلقائية Permission Required @@ -597,44 +685,35 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - + KEEPASSXC يتطلب إذن إمكانية الوصول ومسجل الشاشة من أجل إجراء الكتابة التلقائية العالمية. تسجيل الشاشة ضروري لاستخدام عنوان النافذة للعثور على الإدخالات. إذا كنت قد منحت الإذن بالفعل، فقد تضطر إلى إعادة تشغيل KeePassXC. Invalid entry provided - + إدخال غير صالح Bracket imbalance detected, found extra { or } - + تم اكتشاف اختلال توازن القوس ، تم العثور على { أو } إضافي Too many repetitions detected, max is %1: %2 - + تم اكتشاف عدد كبير جدا من التكرارات ، والحد الأقصى هو ٪1: ٪2 Very slow key press detected, max is %1: %2 - + تم اكتشاف ضغط بطيء جدا على المفتاح ، والحد الأقصى هو ٪1: ٪2 Very long delay detected, max is %1: %2 - + تم اكتشاف تأخير طويل جدا ، والحد الأقصى هو ٪1: ٪2 - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + لا يحتوي الإدخال على سمة ل PICKCHARS: ٪1 Invalid placeholder: %1 - + عنصر النيابة غير صالح: ٪1 @@ -677,21 +756,21 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + تم إحباط التسلسل: Caps Lock قيد التشغيل Sequence aborted: Modifier keys held by user - + تم إحباط السلسلة: مفاتيح التعديل يحتفظ بها المستخدم Unable to get valid keycode for key: - + غير قادر على الحصول على رمز مفتاح صالح للمفتاح: + + + Trying to send invalid keyboard symbol. + محاولة إرسال رمز لوحة المفاتيح غير صالح. @@ -702,7 +781,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - + انقر نقرا مزدوجا فوق صَفٍ لإجراء الكتابة التلقائية أو البحث عن إدخال باستخدام البحث: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -711,11 +790,11 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>يمكنك استخدام استعلامات البحث المتقدم للعثور على أي إدخال في قواعد البيانات المفتوحة. الاختصارات التالية مفيدة:<br/>Ctrl + F - تبديل البحث في قاعدة البيانات<br/>Ctrl+1 - اكتب اسم المستخدم<br/>Ctrl+2 - اكتب كلمة المرور<br/>Ctrl+3 - اكتب TOTP<br/>Ctrl+4 - استخدام لوحة المفاتيح الافتراضية (Windows فقط)</p> Search all open databases - + بحث جميع قواعد البيانات المفتوحة Search… @@ -723,7 +802,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type Sequence - + سلسلة النوع Cancel @@ -731,46 +810,46 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - + كتابة {USERNAME} Type {PASSWORD} - + كتابة {PASSWORD} Type {TOTP} - + كتابة {TOTP} Copy Username - + نسخ اسم المستخدم Copy Password - + نسخ كلمة المرور Copy TOTP - + نسخ TOTP Use Virtual Keyboard - + استخدام لوحة المفاتيح الافتراضية BrowserAccessControlDialog KeePassXC - Browser Access Request - + KEEPASSXC - طلب الوصول إلى المتصفح %1 is requesting access to the following entries: - + ٪ 1 يطلب الوصول إلى الإدخالات التالية: Remember access to checked entries - + تذكر الوصول إلى الإدخالات المحددة Remember @@ -778,7 +857,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Allow access to entries - + السماح بالوصول إلى الإدخالات Allow Selected @@ -790,15 +869,15 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site - + تعطيل لهذا الموقع + + + Undo + تراجع BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - متصفح KeePassXC إحفظ المدخلات - Ok تمام @@ -813,22 +892,79 @@ Please select the correct database for saving credentials. لديك العديد من قواعد البيانات مفتوحة الرجاء إختيار قاعدة البيانات الصحيحة لحفظ المسوغات + + KeePassXC - Select Database + KeePassXC - تحديد قاعدة البيانات + + + + BrowserPasskeysConfirmationDialog + + Cancel + ألغأ + + + Update + حدّث + + + Authenticate + استَوثِق + + + Register new + سجلّ جديد + + + Register + سجّل + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + اسم المستخدم: %1 + + + KeePassXC - Passkey credentials + + + + Add to existing entry + أضِف إلى الإدخال الموجود + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - - A request for creating a new group "%1" has been received. Do you want to create this group? - - - - KeePassXC: New key association request - KeePassXC: طلب مصادقة مفتاح جديد + تم استلام طلب لإنشاء مجموعة جديدة "٪ 1". +هل تريد إنشاء هذه المجموعة؟ You have received an association request for the following database: @@ -836,83 +972,86 @@ Do you want to create this group? Give the connection a unique name or ID, for example: chrome-laptop. - + لقد تلقيت طلب اقتران لقاعدة البيانات التالية: +%1 + +أدخل اسما فريدا أو معرفا فريدا للاتصال، على سبيل المثال: +كروم لابتوب. Save and allow access حفظ والسماح بالوصول - - KeePassXC: Overwrite existing key? - KeePassXC: الكتابة على المفتاح الحالي؟ - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? مفتاح التشفير المشترك مع إسم "%1" موجود بالفعل. هل تريد الكتابة عليه؟ - - KeePassXC: Update Entry - KeePassXC: تحديث المُدخل - Do you want to update the information in %1 - %2? هل تريد تحديث المعلومات في %1 - %2؟ - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? + تم استلام طلب حذف الإدخال "٪1". +هل تريد حذف الإدخال؟ + + + %1 (Passkey) - Converting attributes to custom data… + KeePassXC - Create a new group + KeePassXC - أنشِئ مجموعة جديدة + + + Disable + تعطيل + + + KeePassXC - Overwrite existing key? - Abort - إجهاض + KeePassXC - Update Entry + KeePassXC - حدّث الإدخال - KeePassXC: Converted KeePassHTTP attributes + KeePassXC - Delete entry + KeePassXC - احذف الإدخال + + + KeePassXC - New key association request - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - - - - Successfully moved %n keys to custom data. - - - - KeePassXC: No entry with KeePassHTTP attributes found! + Passkey - The active database does not contain an entry with KeePassHTTP attributes. + KeePassXC - Passkey credentials - Don't show this warning again - لا تُظهر هذا التحذير مرة أخرى - - - KeePassXC: Legacy browser integration settings detected + Register a new passkey to this entry: - 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 - Update passkey + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + سجّل + BrowserSettingsWidget @@ -926,64 +1065,60 @@ Would you like to migrate your existing settings now? Enable browser integration - + تفعيل تكامل المتصفح General العام - - Browsers installed as snaps are currently not supported. - - Enable integration for these browsers: تفعيل التكامل لهذه المتصفحات: Vivaldi - + Vivaldi &Edge - + و Edge Firefox - + Firefox Tor Browser - + متصفح Tor Brave - + Brave Google Chrome - + Google Chrome Chromium - + Chromium Show a notification when credentials are requested Credentials mean login data requested via browser extension - + إظهار لإشعار عند طلب بيانات الاعتماد Request 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://example.com) - + طابق مخطط العنوان URL (على سبيل المثال، https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -991,24 +1126,24 @@ Would you like to migrate your existing settings now? Return only best-matching credentials - + إرجاع بيانات الاعتماد الأفضل تطابقً فقط Returns expired credentials. String [expired] is added to the title. - + إرجاع بيانات الاعتماد منتهية الصلاحية. إضافة [منتهية الصلاحية] إلى العنوان. Allow returning expired credentials - + السماح بإرجاع بيانات الاعتماد منتهية الصلاحية All databases connected to the extension will return matching credentials. - + ستعرض جميع قواعد البيانات المتصلة بالملحق بيانات اعتماد مطابقة. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - + البحث في جميع قواعد البيانات المفتوحة عن بيانات الاعتماد المطابقة Advanced @@ -1017,17 +1152,17 @@ Would you like to migrate your existing settings now? Never ask before accessing credentials Credentials mean login data requested via browser extension - + لا تسأل أبدا قبل الوصول إلى بيانات الاعتماد Never ask before updating credentials Credentials mean login data requested via browser extension - + لا تسأل أبدا قبل تحديث بيانات الاعتماد Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - + لا تطلب الإذن عندما تكون المصادقة HTTP Basic Auth Automatically creating or updating string fields is not supported. @@ -1035,15 +1170,15 @@ Would you like to migrate your existing settings now? Return advanced string fields which start with "KPH: " - + إرجاع حقول السلسلة المتقدمة التي تبدأ ب "KPH:" Don't display the popup suggesting migration of legacy KeePassHTTP settings. - + لا تعرض النافذة المنبثقة التي تقترح ترحيل إعدادات KeePassHTTP القديمة. Do not prompt for KeePassHTTP settings migration. - + لا تطالب بترحيل إعدادات KeePassHTTP. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. @@ -1051,7 +1186,7 @@ Would you like to migrate your existing settings now? Update native messaging manifest files at startup - + تحديث ملفات بيان المراسلة الأصلية عند بدء التشغيل Use a custom proxy location if you installed a proxy manually. @@ -1060,24 +1195,24 @@ Would you like to migrate your existing settings now? Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - + استخدام موقع وكيل مخصص: Custom proxy location field - + حقل موقع الوكيل المخصص Browser for custom proxy file - + متصفح لملف الوكيل المخصص Browse… Button for opening file dialog - + تصفح... Use a custom browser configuration location: - + استخدم موقع تكوين مخصص للمتصفح: Browser type: @@ -1089,43 +1224,23 @@ Would you like to migrate your existing settings now? Config Location: - + موقع التكوين: Custom browser location field - + حقل موقع المستعرض المخصص Browse for custom browser path - + استعرض بحثا عن مسار مستعرض مخصص Custom extension ID: - + هوية امتداد خاصة: Custom extension ID - - - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - - - - Please see special instructions for browser extension use below - - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - - <b>Warning:</b> The following options can be dangerous! - <b>تحذير:</b> قد تكون الخيارات التالية خطيرة! + هوية امتداد خاصة Executable Files @@ -1141,6 +1256,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location + حدد موقع مجلد لإستاضفة الأصلي للمراسلة + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>تحذير:</b> اضبط هذه الإعدادات فقط إذا لزم الأمر. + + + The custom proxy location does not exist. + موقع الوكيل المخصص غير موجود. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>خطأ:</b> موقع الوكيل المخصص غير موجود. قم بتصحيح ذلك في خانة الإعدادات المتقدمة. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>خطأ:</b> الملف التنفيذي للپروكسي المثبت مفقود من الموقع المتوقع: ٪1<br/>يرجى تعيين موقع پروكسي مخصص في الإعدادات المتقدمة أو إعادة تثبيت التطبيق. + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + يلزم وجود KeePassXC-Browser لكي يعمل تكامل المتصفح. <br />نزله لـ %1 و %2 و %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. @@ -1148,7 +1303,7 @@ Would you like to migrate your existing settings now? CloneDialog Clone Entry Options - + خيارات إستنساخ المُدخل Append ' - Clone' to title @@ -1165,21 +1320,13 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - إستيراد مُدخلات CSV - - - filename - اسم الملف - size, rows, columns الحجم، الصفوف، الأعمدة Column Association - + اقتران العمود Password @@ -1207,7 +1354,7 @@ Would you like to migrate your existing settings now? TOTP - + باسورد مؤقت Created @@ -1235,7 +1382,7 @@ Would you like to migrate your existing settings now? Text qualification - + مأهيلاة النص Fields are separated by @@ -1243,7 +1390,7 @@ Would you like to migrate your existing settings now? Field separation - + فاصلاة الحقل Comments start with @@ -1251,15 +1398,15 @@ Would you like to migrate your existing settings now? Header lines skipped - + تم تخطي خطوط الأولية Number of header lines to discard - + عدد أسطر الأولية المراد تجاهلها First line has field names - + يحتوي السطر الأول على أسماء الحقول Consider '\' an escape character @@ -1271,59 +1418,52 @@ Would you like to migrate your existing settings now? CSV import preview - + معاينة استيراد CSV Not Present - + غير موجود Column %1 - - - - Imported from CSV file - مُستورد من ملف CSV - - - Original data: - البيانات الأصلية: - - - Error(s) detected in CSV file! - + العمود ٪1 [%n more message(s) skipped] - + [تم تخطي المزيد من الرسائل ٪n][تم تخطي المزيد من الرسائل ٪n][تم تخطي المزيد من الرسائل ٪n][تم تخطي المزيد من الرسائل ٪n][تم تخطي المزيد من الرسائل ٪n][تم تخطي المزيد من الرسائل ٪n] - Error - خطأ + Failed to parse CSV file: %1 + فشل تحليل ملف CSV: %1 - CSV import: writer has errors: -%1 + Imported from CSV file: %1 + مُستورد من CSV ملف: %1 + + + No Title Selected + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + وسوم + CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - - - - %n byte(s) - - %n row(s) - + CSV row count + ٪n صف (صف)٪n صف (صف)٪n صف (صف)٪n صف (صف)٪n صف (صف)٪n صف (صفوف) %n column(s) + CSV column count %n عمود%n عمود%n عمود%n عمود%n عمود%n عمود @@ -1336,58 +1476,67 @@ Would you like to migrate your existing settings now? File %1 does not exist. - + الملف ٪1 غير موجود. Unable to open file %1. - + غير قادر على فتح الملف ٪1. Error while reading the database: %1 - + خطأ أثناء قراءة قاعدة البيانات: ٪1 Could not save, database does not point to a valid file. - + تعذر الحفظ ، لا تشير قاعدة البيانات إلى ملف صالح. Database save is already in progress. - + حفظ قاعدة البيانات قيد التقدم بالفعل. Could not save, database has not been initialized! - + تعذر الحفظ ، لم تتم تهيئة قاعدة البيانات! Database file has unmerged changes. - + يحتوي ملف قاعدة البيانات على تغييرات غير مدمجة. %1 Backup database located at %2 - + %1 +قاعدة البيانات الاحتياطية موجودة في ٪ 2 Key not transformed. This is a bug, please report it to the developers. - + لم يتم تحويل المفتاح. هذا خطأ ، يرجى إبلاغ المطورين به. Recycle Bin سلة المهملات + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog Unlock Database - KeePassXC - + افتح قاعدة البيانات - KeePassXC DatabaseOpenWidget Unlock KeePassXC Database - + افتح قاعدة بيانات KeePassXC Enter Password: @@ -1395,64 +1544,27 @@ Backup database located at %2 Password field - - - - Enter Additional Credentials (if any): - - - - Key File: - ملف المفتاح: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - + حقل كلمة المرور Hardware key slot selection - - - - Hardware Key: - - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - + اختيار فتحة مفتاح الأجهزة Key file to unlock the database - + ملف المفتاح لفتح قاعدة البيانات Browse for key file - + استعرض بحثا عن ملف المفتاح Browse… - - - - Refresh hardware tokens - - - - Refresh - تحديث + تصفح... Unlock Database - + افتح قاعدة البيانات Cancel @@ -1460,15 +1572,15 @@ Backup database located at %2 Unlock - + افتح Please present or touch your YubiKey to continue… - + يرجى تقديم أو لمس YubiKey الخاص بك للمتابعة ... Database Version Mismatch - + عدم تطابق إصدار قاعدة البيانات The database you are trying to open was most likely @@ -1478,50 +1590,51 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + كانت قاعدة البيانات التي تحاول فتحها على الأرجح +تم إنشاؤه بواسطة إصدار أحدث من KeePassXC. + +يمكنك محاولة فتحه على أي حال ، لكنه قد يكون غير مكتمل +وحفظ أي تغييرات قد يؤدي إلى فقدان البيانات. + +نوصيك بتحديث تثبيت KeePassXC الخاص بك. Open database anyway - + فتح قاعدة البيانات على أي حال Database unlock canceled. - + تم إلغاء إلغاء قفل قاعدة البيانات. Unlock failed and no password given - + فشل إلغاء القفل ولم يتم إعطاء كلمة مرور Unlocking the database failed and you did not enter a password. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - + فشل إلغاء تأمين قاعدة البيانات ولم تقم بإدخال كلمة مرور. +هل تريد إعادة المحاولة باستخدام كلمة مرور "فارغة" بدلا من ذلك؟ + +لمنع ظهور هذا الخطأ ، يجب عليك الانتقال إلى "إعدادات قاعدة البيانات / الأمان" وإعادة تعيين كلمة المرور الخاصة بك. Retry with empty password - - - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - + أعد المحاولة بكلمة مرور فارغة Failed to open key file: %1 - + فشل فتح ملف مفتاح: ٪1 Old key file format - + تنسيق ملف المفتاح قديم You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - + أنت تستخدم تنسيق ملف مفتاح قديم قد يقوم به KEEPASSXC<br>توقف عن الدعم في المستقبل.<br><br>يرجى التفكير في إنشاء ملف مفتاح جديد بالانتقال إلى:<br><strong>قاعدة البيانات &gt; أمان قاعدة البيانات &gt; تغيير ملف المفتاح.</strong><br> Don't show this warning again @@ -1541,23 +1654,71 @@ To prevent this error from appearing, you must go to "Database Settings / S Cannot use database file as key file - + لا يمكن استخدام ملف قاعدة البيانات كملف مفتاح - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - + authenticate to access the database + المصادقة للوصول إلى قاعدة البيانات - Detecting hardware keys… - + Failed to authenticate with Quick Unlock: %1 + فشل المصادقة مع Windows Hello: %1 - No hardware keys detected - + Select Key File: + حدّد ملف المفتاح: - Select hardware key… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>بالإضافة إلى كلمة المرور، يمكنك استخدام ملف سري لتعزيز أمان قاعدة بياناتك. يمكن توليد هذا الملف في إعدادات أمان قاعدة بياناتك.</p><p>هذا <strong>ليس</strong> ملف قاعدة بيانات *.kdbx الخاص بك! + + + Use hardware key [Serial: %1] + استخدم مفتاح حماية عتادي [الرقم التسلسلي: %1] + + + Use hardware key + استخدم مفتاح الأجهزة + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + ملف قاعدة البيانات الخاص بك ليس key file! +إذا لم يكن لديك ملف مفتاح أو لا تعرف ما هو، فلا داعي لتحديد واحد. + + + KeePassXC database file selected + حدّدت ملف قاعدة بيانات KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + يبدو أن الملف الذي حددته هو ملف قاعدة بيانات. + +ملف قاعدة البيانات ليس key file! + +هل أنت متأكد من أنك تريد الاستمرار بهذا الملف؟ + + + No hardware keys found. + لم يتم العثور على مفتاح حماية عتادي. + + + Refresh Hardware Keys + أنعش مفاتيح الحماية العتادي + + + Click to add a key file. + انقر لإضافة ملف مفتاح. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">لدي ملف مفتاح</a> + + + Hardware keys found, but no slots are configured. @@ -1570,10 +1731,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - - General العام @@ -1584,11 +1741,11 @@ If you do not have a key file, please leave the field empty. Database Credentials - + بيانات اعتماد قاعدة البيانات Encryption Settings - + إعدادات التشفير Browser Integration @@ -1596,6 +1753,22 @@ If you do not have a key file, please leave the field empty. Maintenance + صيانة + + + KeeShare + KeeShare + + + Secret Service Integration + + + + Remote Sync + + + + Database Settings: %1 @@ -1603,39 +1776,31 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsWidgetBrowser KeePassXC-Browser settings - - - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - + إعدادات متصفح KEEPASSXC Disconnect all browsers - + افصل جميع المتصفحات Forget all site-specific settings on entries - + نسيان جميع الإعدادات الخاصة بالموقع على الإدخالات + + + Refresh database root group ID + تحديث المجموعة الجذر لقاعدة البيانات Stored keys - + المفاتيح المخزنة Stored browser keys - + مفاتيح المتصفح المخزنة Remove selected key - + إزالة المفتاح المحدد Remove @@ -1643,12 +1808,13 @@ If you do not have a key file, please leave the field empty. Delete the selected key? - + حذف المفتاح المحدد؟ Do you really want to delete the selected key? This may prevent connection to the browser plugin. - + هل تريد حقا حذف المفتاح المحدد؟ +قد يمنع هذا الاتصال بالمكون الإضافي للمتصفح. Key @@ -1664,33 +1830,27 @@ This may prevent connection to the browser plugin. Enable Browser Integration to access these settings. - + قم بتمكين تكامل المتصفح للوصول إلى هذه الإعدادات. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - - - - KeePassXC: No keys found - KeePassXC: لم يُعثر على أية مفاتيح + هل تريد حقا فصل جميع المتصفحات؟ +قد يمنع هذا الاتصال بالمكون الإضافي للمتصفح. No shared encryption keys found in KeePassXC settings. - - - - KeePassXC: Removed keys from database - KeePassXC: حُذِفت المفاتيح من قاعدة البيانات + لم يتم العثور على مفاتيح تشفير مشتركة في إعدادات KeePassXC. Successfully removed %n encryption key(s) from KeePassXC settings. - + تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات كي باس إكس سي.تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات كي باس إكس سي.تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات كي باس إكس سي.تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات كي باس إكس سي.تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات كي باس إكس سي.تمت إزالة مفتاح (مفاتيح) التشفير ٪n بنجاح من إعدادات KeePassXC. Do you really want forget all site-specific settings on every entry? Permissions to access entries will be revoked. - + هل تريد حقا نسيان جميع الإعدادات الخاصة بالموقع في كل إدخال؟ +سيتم إبطال إذن الوصول إلى الإدخالات. Removing stored permissions… @@ -1700,38 +1860,42 @@ Permissions to access entries will be revoked. Abort إجهاض - - KeePassXC: Removed permissions - KeePassXC: حُذفت الصلاحيات - Successfully removed permissions from %n entry(s). - - - - KeePassXC: No entry with permissions found! - KeePassXC: لا يوجد مُدخل مع الصلاحيات الموجودة! + تمت إزالة الأذونات بنجاح من إدخال/إدخالات٪ n.تمت إزالة الأذونات بنجاح من إدخال/إدخالات٪ n.تمت إزالة الأذونات بنجاح من إدخال/إدخالات٪ n.تمت إزالة الأذونات بنجاح من إدخال/إدخالات٪ n.تمت إزالة الأذونات بنجاح من إدخال/إدخالات٪ n.تمت إزالة لإذن بنجاح من إدخال/إدخالات٪ n. The active database does not contain an entry with permissions. لا تحتوي قاعدة البيانات النشطة على إدخال مع صلاحيات. - - Move KeePassHTTP attributes to custom data - - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID - + تحديث معرف قاعدة البيانات Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. + هل تريد حقًا تحديث معرّف قاعدة البيانات؟ +يعد هذا ضروريًا فقط إذا كانت قاعدة بياناتك نسخة من أخرى ولا يمكن توصيل ملحق المتصفح. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + تحويل سمات KeePassHTTP القديمة إلى بيانات مخصصة متوافقة مع KeePassXC-Browser + + + No keys found + لم يتم العثور على مفاتيح + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! @@ -1739,29 +1903,31 @@ This is only necessary if your database is a copy of another and the browser ext DatabaseSettingsWidgetDatabaseKey Add additional protection… - + إضافة حماية إضافية... 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? - + تحذير! لم تقم بتعيين كلمة مرور. لا ينصح بشدة استخدام قاعدة بيانات بدون كلمة مرور! + +هل أنت متأكد من أنك تريد المتابعة بدون كلمة مرور؟ Continue without password - + المتابعة بدون كلمة مرور No encryption key added - + لم تتم إضافة مفتاح تشفير You must add at least one encryption key to secure your database! - + يجب عليك إضافة مفتاح تشفير واحد على الأقل لتأمين قاعدة البيانات الخاصة بك! Unknown error @@ -1769,46 +1935,50 @@ Are you sure you want to continue without a password? Failed to change database credentials - + فشل تغيير بيانات اعتماد قاعدة البيانات + + + Weak password + كلمة المرور ضعيفة + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + هذه كلمة مرور ضعيفة! لحماية أسرارك بشكل أفضل، يجب عليك اختيار كلمة مرور أقوى. + + + The provided password does not meet the minimum quality requirement. + كلمة المرور المقدمة لا تلبي الحد الأدنى من متطلبات الجودة. DatabaseSettingsWidgetEncryption Decryption Time: - - - - Change existing decryption time - - - - Change - + وقت فك التشفير: Decryption time in seconds - + وقت فك التشفير بالثواني Higher values offer more protection, but opening the database will take longer. - + توفر القيم الأعلى مزيدا من الحماية ، لكن فتح قاعدة البيانات سيستغرق وقتا أطول. Database format: - + صيغة قاعدة البيانات: Database format - + تنسيق قاعدة البيانات Format cannot be changed: Your database uses KDBX 4 features - + لا يمكن تغيير التنسيق: تستخدم قاعدة البيانات ميزات KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + ما لم تكن بحاجة إلى فتح قاعدة البيانات الخاصة بك مع برامج أخرى ، استخدم دائما أحدث تنسيق. Encryption Algorithm: @@ -1816,7 +1986,7 @@ Are you sure you want to continue without a password? Encryption algorithm - + خوارزمية التشفير AES: 256 Bit (default) @@ -1832,7 +2002,7 @@ Are you sure you want to continue without a password? Key derivation function - + دالة اشتقاق المفتاح Transform rounds: @@ -1840,7 +2010,7 @@ Are you sure you want to continue without a password? Transform rounds - + تحويل الجولات Memory Usage: @@ -1848,7 +2018,7 @@ Are you sure you want to continue without a password? Memory usage - + إستعمال الذاكرة لإفتراضية Parallelism: @@ -1856,20 +2026,15 @@ Are you sure you want to continue without a password? Parallelism - + التوازي KDBX 4 (recommended) - + KDBX 4 (مستحسن) KDBX 3 - - - - unchanged - Database decryption time is unchanged - + KDBX 3 Number of rounds too high @@ -1880,7 +2045,9 @@ Are you sure you want to continue without a password? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - + أنت تستخدم عددا كبيرا جدا من جولات تحويل المفاتيح مع Argon2. + +إذا احتفظت بهذا الرقم ، فقد يستغرق فتح قاعدة البيانات ساعات أو أياما أو حتى وقتا أطول. Understood, keep number @@ -1899,7 +2066,9 @@ If you keep this number, your database may take hours, days, or even longer to o You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + أنت تستخدم عددا منخفضا جدا من جولات تحويل المفاتيح مع AES-KDF. + +إذا احتفظت بهذا الرقم ، فلن تكون قاعدة البيانات الخاصة بك محمية من هجمات القوة الغاشمة. KDF unchanged @@ -1912,38 +2081,50 @@ If you keep this number, your database will not be protected from brute force at MiB Abbreviation for Mebibytes (KDF settings) - + مبيبايتمبيبايتمبيبايتمبيبايتمبيبايتمبيبايت thread(s) Threads for parallel execution (KDF settings) - + مؤشر الترابط مؤشر ترابط مؤشرات ترابط مؤشرات ترابط مؤشر الترابط مؤشرات الترابط + + + Encryption Settings: + إعدادات التعمية + + + Basic + أساسي + + + Advanced + متقدم DatabaseSettingsWidgetFdoSecrets Exposed Entries - + الإدخالات المكشوفة Don't expose this database - + لا تكشف قاعدة البيانات هذه Expose entries under this group: - + إعرض الإدخالات ضمن هذه المجموعة: Enable Secret Service to access these settings. - + قم بتمكين الخدمة السرية للوصول إلى هذه الإعدادات. DatabaseSettingsWidgetGeneral Database Metadata - + البيانات الوصفية لقاعدة البيانات Database name: @@ -1951,7 +2132,7 @@ If you keep this number, your database will not be protected from brute force at Database name field - + حقل اسم قاعدة البيانات Database description: @@ -1959,7 +2140,7 @@ If you keep this number, your database will not be protected from brute force at Database description field - + حقل الوصف في قاعدة البيانات Default username: @@ -1967,7 +2148,7 @@ If you keep this number, your database will not be protected from brute force at Default username field - + حقل اسم المستخدم الافتراضي History Settings @@ -1975,19 +2156,11 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - - - - Max. history items: - أقصى عدد للسجلات: + الحد الأقصى لعدد عناصر المحفوظات لكل إدخال Maximum size of history per entry - - - - Max. history size: - أقصى حجم للسجلات: + الحد الأقصى لحجم السجل لكل إدخال MiB @@ -2003,7 +2176,7 @@ If you keep this number, your database will not be protected from brute force at Enable compression (recommended) - + تمكين الضغط (مستحسن) Delete Recycle Bin @@ -2012,18 +2185,121 @@ If you keep this number, your database will not be protected from brute force at Do you want to delete the current recycle bin and all its contents? This action is not reversible. - + هل تريد حذف سلة المحذوفات الحالية وجميع محتوياتها؟ +هذا الإجراء لا يمكن عكسه. (old) + (قديم) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + عند حفظ هذا الإعداد أو تحرير إدخال +ستكون أقدم عناصر التاريخ في الإدخال +تمت إزالته بحيث يكون الحجم المحدد فقط +من الإدخالات تبقى على الأكثر. + + + Limit the amount of history items per entry to: + حدد مقدار عناصر المحفوظات لكل إدخال بما يلي: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + عند حفظ هذا الإعداد أو تحرير إدخال +ستكون أقدم عناصر التاريخ في الإدخال +تمت إزالته بحيث تكون عناصر المحفوظات المتبقية +أضف ما يصل إلى الحجم المحدد على الأكثر. + + + Limit the total size of history items per entry to: + حدد الحجم الإجمالي لعناصر المحفوظات لكل إدخال إلى: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + نقل الإدخالات إلى مجموعة سلة المحذوفات +بدلا من حذفها من قاعدة البيانات. +الإدخالات المحذوفة من سلة المحذوفات هي +تمت إزالته من قاعدة البيانات. + + + Autosave delay since last change + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + دقيقة + + + Autosave delay since last change checkbox + + + + Public Database Metadata + بيانات الوصفية لقاعدة البيانات العامة + + + Warning: the following settings are not encrypted. + تحذير: الإعدادات التالية غير مُعمَّاة. + + + Display name: + اسم العرض: + + + Publically visible display name used on the unlock dialog + اسم العرض المرئي للعامة المستخدم في مربع حوار إلغاء القفل + + + Database public display name + اسم العرض العام لقاعدة البيانات + + + Display color: + لون العرض: + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + أداة اختيار لون العرض العام لقاعدة البيانات + + + Clear + مسح + + + Display icon: + أيقونة العرض: + + + Select Database Icon + حدد أيقونة قاعدة البيانات + DatabaseSettingsWidgetKeeShare Sharing - + المشاركة Breadcrumb @@ -2031,15 +2307,15 @@ This action is not reversible. Type - + نوع Path - + مسار Last Signer - + آخر مُوَقّع Certificates @@ -2048,26 +2324,26 @@ This action is not reversible. > Breadcrumb separator - + > DatabaseSettingsWidgetMaintenance Manage Custom Icons - + إدارة الأيقونات المخصصة Delete selected icon(s) - + حذف الرمز (الرموز) المحددة Delete all custom icons not in use by any entry or group - + حذف جميع الأيقونات المخصصة غير المستخدمة من قبل أي مُدخل أو مجموعة Purge unused icons - + إزالة الأيقونات غير المستخدمة Confirm Deletion @@ -2075,54 +2351,178 @@ This action is not reversible. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + واحد على الأقل من الرموز المحددة قيد الاستخدام حاليا بواسطة إدخال أو مجموعة واحدة على الأقل. سيتم استبدال أيقونات جميع الإدخالات والمجموعات المتأثرة بالرمز الافتراضي. هل تريد بالتأكيد حذف الرموز المستخدمة حاليا؟ Custom Icons Are In Use - + الرموز المخصصة قيد الاستخدام All custom icons are in use by at least one entry or group. - + جميع الرموز المخصصة قيد الاستخدام بواسطة إدخال أو مجموعة واحدة على الأقل. Purged Unused Icons - + إزالة الأيقونات غير المستخدمة Purged %n icon(s) from the database. - + إزالة ٪n رمز (رموز) من قاعدة البيانات.إزالة ٪n رمز (رموز) من قاعدة البيانات.إزالة ٪n رمز (رموز) من قاعدة البيانات.إزالة ٪n رمز (رموز) من قاعدة البيانات.إزالة ٪n رمز (رموز) من قاعدة البيانات.إزالة ٪n رمز (رموز) من قاعدة البيانات. DatabaseSettingsWidgetMetaDataSimple Database Name: - + اسم قاعدة البيانات: Database name field - + حقل اسم قاعدة البيانات Description: - + الوصف: Database description field + حقل الوصف في قاعدة البيانات + + + + DatabaseSettingsWidgetRemote + + Sync Commands + + Remove + إزالة + + + Command Settings + + + + Name + الاسم + + + Save + احفظ + + + Download + نزل + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + ارفع + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + ثواني + DatabaseTabWidget 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، ترفض حفظها. +هذا خطأ بالتأكيد، يرجى إبلاغ المطورين. KeePass 2 Database @@ -2138,32 +2538,16 @@ This is definitely a bug, please report it to the developers. Failed to open %1. It either does not exist or is not accessible. - + فشل في فتح %1. إما أنه غير موجود أو لا يمكن الوصول إليه. CSV file ملف CSV - - Select CSV file - - Merge database دمج قاعدة بيانات - - KeePass 1 database - قاعدة بيانات KeePass 1 - - - Open KeePass 1 database - فتح قاعدة بيانات KeePass 1 - - - Open OPVault - - Export database to CSV file تصدير قاعدة البيانات إلى ملف CSV @@ -2174,52 +2558,60 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. - + فشلت كتابة ملف HTML. + + + Export database to XML file + تصدير قاعدة البيانات إلى ملف XML + + + XML file + ملف XML + + + Writing the XML file failed + فشلت كتابة ملف XML Export Confirmation - + تأكيد التصدير You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - - - - New Database - - - - %1 [New Database] - Database tab name modifier - + أنت على وشك تصدير قاعدة بياناتك إلى ملف غير مشفر. سيؤدي ذلك إلى ترك كلمات مرورك ومعلوماتك الحساسة عرضة للخطر! هل أنت متأكد أنك تريد الاستمرار؟ %1 [Locked] Database tab name modifier + %1 [Locked] + + + %1 [Temporary] + Database tab name modifier DatabaseWidget - Database Tags - + Searches and Tags + البحوث و الوسوم Searching… - + جاري البحث... Shared group… - + مجموعة مشتركة… Confirm Auto-Type - + تأكيد النوع التلقائي Perform Auto-Type into the previously active window? - + إجراء الكتابة التلقائية في النافذة النشطة سابقا؟ Execute command? @@ -2235,7 +2627,7 @@ This is definitely a bug, please report it to the developers. Delete group - + حذف المجموعة Do you really want to delete the group "%1" for good? @@ -2243,15 +2635,19 @@ This is definitely a bug, please report it to the developers. Move group to recycle bin? - + هل تريد نقل المجموعة إلى سلة المحذوفات؟ Do you really want to move the group "%1" to the recycle bin? - + هل تريد حقًا نقل المجموعة "%1" إلى سلة المحذوفات؟ Expired entries - + إدخالات منتهية الصلاحية + + + Entries expiring within %1 day(s) + المُدخلات التي ستنتهي صلاحيتها في %1 أيامالمُدخلات التي ستنتهي صلاحيتها في %1 يومالمُدخلات التي ستنتهي صلاحيتها في %1 أيامالمُدخلات التي ستنتهي صلاحيتها في %1 أيامالمُدخلات التي ستنتهي صلاحيتها في %1 يومالمُدخلات التي ستنتهي صلاحيتها في %1 يوم No current database. @@ -2263,11 +2659,11 @@ This is definitely a bug, please report it to the developers. Successfully merged the database files. - + تم دمج ملفات قاعدة البيانات بنجاح. Database was not modified by merge operation. - + لم يتم تعديل قاعدة البيانات من خلال عملية الدمج. Search Results (%1) @@ -2277,13 +2673,25 @@ This is definitely a bug, please report it to the developers. No Results لا يوجد نتائج + + Save + احفظ + + + Enter a unique name or overwrite an existing search from the list: + أدخل اسما فريدا أو اكتب فوق بحثا موجودا مسبقا من القائمة: + + + Save Search + حفظ البحث + Lock Database? - + تأمين قاعدة البيانات؟ You are editing an entry. Discard changes and lock anyway? - + أنت تقوم بتحرير إدخال. تجاهل التغييرات وقفل على أي حال؟ "%1" was modified. @@ -2294,7 +2702,8 @@ Save changes? Database was modified. Save changes? - + تم تعديل قاعدة البيانات. +حفظ التغييرات؟ Save changes? @@ -2304,25 +2713,6 @@ Save changes? 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? - تم تغيير ملف قاعدة البيانات ولديك تغييرات لم يتم حفظها. -هل تريد دمج التغييرات؟ - - - Could not open the new database file while attempting to autoreload. -Error: %1 - - Disable safe saves? هل تريد تعطيل الحفظ الآمن؟ @@ -2335,7 +2725,7 @@ Disable safe saves and try again? Writing the database failed: %1 - + فشلت كتابة قاعدة البيانات: %1 Passwords @@ -2351,7 +2741,7 @@ Disable safe saves and try again? Save database backup - + حفظ النسخة الاحتياطية لقاعدة البيانات Empty recycle bin? @@ -2363,11 +2753,96 @@ Disable safe saves and try again? Could not find database file: %1 + تعذر العثور على ملف قاعدة البيانات: %1 + + + New Database + قاعدة بيانات جديدة + + + %1 [New Database] + Database tab name modifier + %1 [قاعدة بيانات جديدة] + + + Remote Sync did not contain any download or upload commands. - - Entries expiring within %1 day(s) - + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + أزِل passkey من الإدخال + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2394,15 +2869,15 @@ Disable safe saves and try again? <empty URL> - + <empty URL> Confirm Removal - + تأكيد الإزالة Are you sure you want to remove this URL? - + هل أنت متاكد من إزالة هذا الرابط؟ Properties @@ -2420,10 +2895,6 @@ Disable safe saves and try again? n/a n/a - - (encrypted) - (مُعمّى) - Select private key إختر المفتاح السري @@ -2442,32 +2913,37 @@ Disable safe saves and try again? Some Browser Integration settings are overridden by group settings. - + يتم تجاوز بعض إعدادات تكامل المتصفح بواسطة إعدادات المجموعة. Invalid Entry - + إدخال غير صالح An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - + لقد أبطلت عملية دمج خارجية هذا الإدخال. +لسوء الحظ، تم فقدان أي تغييرات تم إجراؤها. Auto-Type Validation Error - + خطأ في التحقق من النوع التلقائي An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + حدث خطأ أثناء التحقق من صحة تسلسل الكتابة التلقائية المخصص: +%1 +هل ترغب في تصحيح ذلك؟ An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + حدث خطأ أثناء التحقق من صحة تسلسل الكتابة التلقائية المخصص: +%2 +هل ترغب في تصحيح ذلك؟ Entry updated successfully. @@ -2475,11 +2951,11 @@ Would you like to correct it? Unsaved Changes - + التغييرات غير المحفوظة Would you like to save changes to this entry? - + هل ترغب في حفظ التغييرات على هذا الإدخال؟ New attribute @@ -2487,7 +2963,7 @@ Would you like to correct it? New attribute %1 - + خاصية جديدة ٪1 Are you sure you want to remove this attribute? @@ -2499,15 +2975,15 @@ Would you like to correct it? [PROTECTED] Press Reveal to view or edit - + [محمية] اضغط على كشف للعرض أو التحرير Hide - + إخفاء - - Tomorrow - غدا + + %n hour(s) + ٪1 ساعةساعةساعتين٪1 ساعات٪1 ساعة٪1 ساعة %n week(s) @@ -2519,7 +2995,11 @@ Would you like to correct it? %n year(s) - + ٪n سنةسنةسنتين٪n سنوات٪n سنة٪n سنة + + + Failed to decrypt SSH key, ensure password is correct. + فشل فك تعمية مفتاح SSH، تأكد من صحة كلمة المرور. @@ -2530,15 +3010,15 @@ Would you like to correct it? Attribute selection - + اختيار الصفات Attribute value - + قيمة الصفات Add a new attribute - + إضافة صفة جديدة Add @@ -2546,7 +3026,7 @@ Would you like to correct it? Remove selected attribute - + حذف الصفة المُحددة Remove @@ -2554,7 +3034,7 @@ Would you like to correct it? Edit attribute name - + تحرير اسم الصفة Edit Name @@ -2562,7 +3042,7 @@ Would you like to correct it? Toggle attribute protection - + تبديل حماية الصفة Protect @@ -2570,7 +3050,7 @@ Would you like to correct it? Show a protected attribute - + إظهار صفة محمية Reveal @@ -2582,11 +3062,11 @@ Would you like to correct it? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + إذا تم تحديده، فلن يظهر الإدخال في تقارير مثل Health Check وHIBP حتى لو لم يكن مطابقًا لمتطلبات الجودة. Exclude from database reports - + استبعاد من تقارير قاعدة البيانات Foreground Color: @@ -2594,7 +3074,7 @@ Would you like to correct it? Foreground color selection - + اختيار اللون الأمامي Background Color: @@ -2602,7 +3082,7 @@ Would you like to correct it? Background color selection - + اختيار لون الخلفية @@ -2613,19 +3093,19 @@ Would you like to correct it? Inherit default Auto-Type sequence from the group - + ورث تسلسل الطباعة التلقائية الإفتراضي من &المجموعة Use custom Auto-Type sequence: - + استخدم تسلسل الكتابة التلقائية المخصص: Custom Auto-Type sequence - + تسلسل الكتابة التلقائية المخصص: Open Auto-Type help webpage - + افتح صفحة ويب تعليمات الكتابة التلقائية Window Associations @@ -2633,88 +3113,72 @@ Would you like to correct it? Existing window associations - + جمعيات النافذة الموجودة Add new window association - - - - Remove selected window association - - - - Window title: - عنوان النافذة: - - - You can use an asterisk (*) to match everything - - - - Set the window association title - - - - You can use an asterisk to match everything - - - - Use a specific sequence for this association: - إستخدم تسلسل محدد لهذا الإرتباط: - - - Custom Auto-Type sequence for this window - + إضافة ارتباط نافذة جديدة + Add item + + + Remove selected window association + إزالة ارتباط النافذة المحددة + - Remove item - + + Window title: + عنوان النافذة: + + + You can use an asterisk (*) to match everything + يمكنك استخدام علامة النجمة (*) لمطابقة كل شيء + + + Set the window association title + تعيين عنوان ارتباط النافذة + + + You can use an asterisk to match everything + يمكنك استخدام العلامة النجمية لمطابقة كل شيء + + + Use a specific sequence for this association: + إستخدم تسلسل محدد لهذا الإرتباط: + + + Custom Auto-Type sequence for this window + تسلسل الكتابة التلقائية المخصص لهذه النافذة + EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - - General العام Hide this entry from the browser extension - + إخفاء هذا الإدخال من امتداد المتصفح Skip Auto-Submit for this entry - - - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - + تخطي الإرسال التلقائي لهذا الإدخال Use this entry only with HTTP Basic Auth - - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - + استخدم هذا الإدخال فقط مع مصادقة HTTP البدائية Do not use this entry with HTTP Basic Auth - - - - Additional URL's - + لا تستخدم هذا الإدخال مع مصادقة HTTP البدائية Add @@ -2726,6 +3190,22 @@ Would you like to correct it? Edit + تعديل + + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + عناوين URL الإضافية + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. @@ -2733,11 +3213,11 @@ Would you like to correct it? EditEntryWidgetHistory Entry history selection - + اختيار سجل الإدخال Show entry at selected history state - + إظهار الإدخال في حالة السجل المحددة Show @@ -2745,7 +3225,7 @@ Would you like to correct it? Restore entry to selected history state - + استعادة الإدخال إلى حالة السجل المحددة Restore @@ -2753,7 +3233,7 @@ Would you like to correct it? Delete selected history state - + حذف حالة السجل المحددة Delete @@ -2761,7 +3241,7 @@ Would you like to correct it? Delete all history - + حذف كل السجل Delete all @@ -2772,91 +3252,87 @@ Would you like to correct it? EditEntryWidgetMain Edit Entry - + تعديل الإدخالالة Notes field - - - - Toggle the checkbox to reveal the notes section. - إختر مربع الإختيار لإستكشاف قسم الملاحظات. + حقل الملاحظات Username field - - - - Toggle notes visible - - - - Notes: - ملاحظات: + حقل اسم المستخدم Expiration field - + حقل انتهاء الصلاحية Expiration Presets - + خيارات انتهاء الصلاحية مُعدة مسبقا Expiration presets - + خيارات انتهاء الصلاحية مُعدة مسبقا Presets المسبقة - - Password: - كلمه السر: - - - URL: - رابط: - Url field - + حقل Url Download favicon for URL - - - - Title: - العنوان: + تحميل رمز المفضلة للرابط Title field - - - - Username: - اسم المستخدم: + حقل العنوان Password field - + حقل كلمة المرور Toggle expiration - - - - Expires: - - - - Tags: - + تفعيل انتهاء الصلاحية Tags list - + قائمة الوسوم + + + &Username: + &اسم المستخدم: + + + &Title: + &العنوان: + + + &Password: + &كلمة المرور + + + UR&L: + UR&L: + + + &Notes: + &ملاحظات: + + + Toggle notes visibility + تبديل رؤية الملاحظات + + + T&ags: + الو&سوم: + + + &Expires: + تنتهي الصلاحية: @@ -2897,26 +3373,13 @@ Would you like to correct it? Private key المفتاح السري - - External file - ملف خارجي - - - Browser for key file - - - - Browse… - Button for opening file dialog - - Attachment إرفاق External key file - + ملف المفتاح الخارجي Add to agent @@ -2926,9 +3389,26 @@ Would you like to correct it? Remove from agent حذف من الوكيل + + External file + ملف خارجي + + + Browser for key file + متصفح للملف الرئيسي + + + Browse… + Button for opening file dialog + تصفح... + + + Generate + توليد + Select attachment file - + حدد الملف المرفق Require user confirmation when this key is used @@ -2944,12 +3424,16 @@ Would you like to correct it? Remove key from agent after specified seconds - + قم بإزالة المفتاح من الوكيل بعد ثوانٍ محددة seconds ثواني + + Clear agent + + EditGroupWidget @@ -2961,10 +3445,6 @@ Would you like to correct it? Icon أيقونة - - Browser Integration - تكامل المتصفح - Properties خصائص @@ -2979,7 +3459,11 @@ Would you like to correct it? Group has unsaved changes - + تحتوي المجموعة على تغييرات غير محفوظة + + + Browser Integration + تكامل المتصفح Enable @@ -2996,44 +3480,56 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - - These settings affect to the group's behaviour with the browser extension. - + تؤثر هذه الإعدادات على سلوك المجموعة مع امتداد المتصفح. Hide entries from browser extension: - + إخفاء الإدخالات من ملحق المتصفح: Hide entries from browser extension toggle for this and sub groups - + إخفاء الإدخالات من تبديل ملحق المتصفح لهذه المجموعات الفرعية Skip Auto-Submit for entries: - + تخطي الإرسال التلقائي للإدخالات: Skip Auto-Submit toggle for this and sub groups - + تخطي تبديل الإرسال التلقائي لهذه المجموعة والمجموعات الفرعية Use entries only with HTTP Basic Auth: - + استخدم المٌدخلات فقط مع مصادقة HTTP البدائية: Only HTTP Auth toggle for this and sub groups - + فقط تبديل استيثاق HTTP لهذه المجموعة والمجموعات الفرعية Do not use entries with HTTP Basic Auth: - + لا تستخدم المُدخلات مع مصادقة HTTP البدائية: Do not use HTTP Auth toggle for this and sub groups + لا تستخدم تبديل استيثاق HTTP لهذه والمجموعات الفرعية + + + Omit WWW subdomain from matching: + حذف المجال الفرعي WWW من المطابقة: + + + Omit WWW subdomain from matching toggle for this and sub groups + إستبعد الجزء الفرعي WWW من تبديل التطابق لهذه والمجموعات الفرعية + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups @@ -3041,11 +3537,11 @@ Would you like to correct it? EditGroupWidgetKeeShare Sharing mode field - + مجال وضع المشاركة Password field - + حقل كلمة المرور Type: @@ -3057,23 +3553,23 @@ Would you like to correct it? Path: - + مسار: Path to share file field - + مسار لمشاركة حقل الملف Browse for share file - + تصفح بحثًا عن ملف المشاركة Browse… - + تصفح... Clear fields - + مسح الحقول Clear @@ -3089,100 +3585,101 @@ Would you like to correct it? Export - + تصدير Synchronize - + مزامنة Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - + إصدار KeePassXC الخاص بك لا يدعم مشاركة هذا النوع من الحاوية. +الامتداد المدعومة هي: %1. %1 is already being exported by this database. - + يتم تصدير %1 بالفعل بواسطة قاعدة البيانات هذه. %1 is already being imported by this database. - + يتم بالفعل استيراد %1 بواسطة قاعدة البيانات هذه. %1 is being imported and exported by different groups in this database. - + يتم استيراد %1 وتصديره بواسطة مجموعات مختلفة في قاعدة البيانات هذه. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - + KeeShare معطل حاليا. يمكنك تفعيل الاستيراد/التصدير في إعدادات التطبيق. Database export is currently disabled by application settings. - + تصدير قاعدة البيانات حاليًا مٌعطل من خلال إعدادات التطبيق. Database import is currently disabled by application settings. - + استيراد قاعدة البيانات حاليًا مٌعطل من خلال إعدادات التطبيق. KeeShare container - + حاوية KeeShare KeeShare signed container - + حاوية موقعة من KeeShare Select import source - + حدد مصدر الاستيراد Select export target - + حدد هدف التصدير Select import/export file - + حدد ملف الاستيراد/التصدير EditGroupWidgetMain Edit Group - + تحرير المجموعة Toggle expiration - + تفعيل انتهاء الصلاحية Expires: - + انتهاء الصلاحية Name field - + اسم الحقل Expiration field - + حقل انتهاء الصلاحية Use default Auto-Type sequence of parent group - + استخدم تسلسل الكتابة التلقائية الافتراضي للمجموعة الأصلية Auto-Type: - + الكتابة التلقائية Search: - + بحث: Auto-Type toggle for this and sub groups - + تبديل النوع التلقائي لهذه المجموعات والمجموعات الفرعية Notes: @@ -3190,50 +3687,50 @@ Supported extensions are: %1. Default auto-type sequence field - + حقل تسلسل الكتابة التلقائية الافتراضي Notes field - + حقل الملاحظات Name: - + الاسم: Set default Auto-Type sequence - + تعيين تسلسل الكتابة التلقائية الافتراضي Search toggle for this and sub groups - + تبديل البحث عن هذه والمجموعات الفرعية EditWidgetIcons Use default icon - + استخدام الأيقونة الإفتراضية Use custom icon - + استخدام أيقونة خاصة Choose icon… - + اختر أيقونة... Set the URL to use to search for a favicon - + تعيين رابط لاستخدامه للبحث عن رمز المفضلة Favicon URL - + رابط رمز المفضلة Download favicon for URL - + تحميل رمز المفضلة للرابط Download favicon @@ -3241,39 +3738,35 @@ Supported extensions are: %1. Apply selected icon to subgroups and entries - + تطبيق الأيقونة المحدد على المجموعات الفرعية والإدخالات Apply icon to… - + تطبيق الأيقونة على... Apply to this group only - + طبِّق على هذه المجموعة فقط Also apply to child groups - + تنطبق أيضًا على المجموعات الفرعية Also apply to child entries - + تنطبق أيضًا على الإدخالات الفرعية Also apply to all children - + تنطبق أيضًا على جميع الفروع Unable to fetch favicon. تعذر جلب رمز المفضلة. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - - Existing icon selected. - + تم تحديد أيقونة موجودة. Images @@ -3285,23 +3778,27 @@ Supported extensions are: %1. Select Image(s) - + حدد صورة Successfully loaded %1 of %n icon(s) - + تم تحميل ٪1 أيقونة من ٪n أيقونات بنجاحتم تحميل أيقونة من ٪n أيقونات بنجاحتم تحميل أيقونتين من ٪n أيقونات بنجاحتم تحميل %1 أيقونات من ٪n أيقونات بنجاحتم تحميل ٪1 أيقونة من ٪n أيقونات بنجاحتم تحميل ٪1 أيقونة من ٪n أيقونات بنجاح No icons were loaded - + لم يتم تحميل أي أيقونة %n icon(s) already exist in the database - + ٪ n أيقونة موجودة بالفعل في قاعدة البياناتأيقونة موجودة بالفعل في قاعدة البياناتأيقونتين موجودة بالفعل في قاعدة البيانات٪ n أيقونات موجودة بالفعل في قاعدة البيانات٪ n أيقونة موجودة بالفعل في قاعدة البيانات٪ n أيقونات موجودة بالفعل في قاعدة البيانات The following icon(s) failed: - + فشلت الأيقونات التالية:فشلت الأيقونة التالية:فشلت الأيقونات التالية:فشلت الأيقونات التالية:فشلت الأيقونات التالية:فشلت الأيقونات التالية: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + يمكنك تفعيل خدمة أيقونة موقع DuckDuckGo ضمن إعدادات التطبيق -> الأمان @@ -3312,7 +3809,7 @@ Supported extensions are: %1. Datetime created - + تاريخ الإنشاء Modified: @@ -3320,7 +3817,7 @@ Supported extensions are: %1. Datetime modified - + عدلت التاريخ والوقت Accessed: @@ -3328,7 +3825,7 @@ Supported extensions are: %1. Datetime accessed - + تاريخ الوصول Uuid: @@ -3336,7 +3833,7 @@ Supported extensions are: %1. Unique ID - + معرف فريد Plugin Data @@ -3344,11 +3841,11 @@ Supported extensions are: %1. Plugin data - + بيانات الملحق Remove selected plugin data - + إزالة بيانات الملحق المختار Remove @@ -3377,13 +3874,46 @@ This may cause the affected plugins to malfunction. Entry %1 - Clone + %1 - استنساخ + + + Passkey + + Invalid conversion type: %1 + نوع تحويل غير صالح: %1 + + + Invalid conversion syntax: %1 + هيئة التحويل غير صالحة: %1 + + + Invalid regular expression syntax %1 +%2 + هيئة التعبير غير صالحة %1 +%2 + EntryAttachments Cannot open file "%1" + لا يمكن فتح الملف "%1" + + + + EntryAttachmentsDialog + + Form + النموذج + + + File name + + + + File contents... @@ -3410,7 +3940,7 @@ This may cause the affected plugins to malfunction. Add new attachment - + إضافة مرفق جديد Add @@ -3418,23 +3948,15 @@ This may cause the affected plugins to malfunction. Remove selected attachment - + إزالة المرفق المحدد Remove إزالة - - Rename selected attachment - - - - Rename - - Open selected attachment - + فتح المرفق المحدد Open @@ -3442,7 +3964,7 @@ This may cause the affected plugins to malfunction. Save selected attachment to disk - + حفظ المرفق المحدد على القرص Save @@ -3454,7 +3976,7 @@ This may cause the affected plugins to malfunction. Confirm remove - + تأكيد الإزالة Are you sure you want to remove %n attachment(s)? @@ -3499,46 +4021,70 @@ This may cause the affected plugins to malfunction. Unable to open file(s): %1 - + تعذر فتح الملفات: +%1تعذر فتح الملفات: +%1تعذر فتح الملفات: +%1تعذر فتح الملفات: +%1تعذر فتح الملفات: +%1تعذر فتح الملفات: +%1 Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + تأكيد الكتابة فوق المرفق Confirm Attachment - + تأكيد المرفق %1 is a big file (%2 MB). Your database may get very large and reduce performance. Are you sure to add this file? - + %1 هو ملف كبير الحجم (%2 ميجابايت). +قد تصبح قاعدة البيانات الخاصة بك كبيرة جدًا وتقلل من الأداء. + +هل أنت متأكد من إضافة هذا الملف؟ Attachment modified - + عدّلت المرفق The attachment '%1' was modified. Do you want to save the changes to your database? - + تم تعديل المرفق '%1'. +هل تريد حفظ التغييرات في قاعدة بياناتك؟ Saving attachment failed - + فشل حفظ المرفق Saving updated attachment failed. Error: %1 + فشل حفظ المرفق المحدث. +الخطأ: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + المرفق "%1" موجود بالفعل. +هل ترغب في الكتابة فوق المرفق الموجود؟ + + + New + + Preview + معاينة + + + Failed to preview an attachment: Attachment not found + فشل معاينة المرفق: لم يتم العثور على المرفق + EntryAttributesModel @@ -3551,7 +4097,7 @@ Error: %1 EntryHistoryModel Current (%1) - + الحالي (%1) Last modified @@ -3559,11 +4105,11 @@ Error: %1 Age - + العمر Difference - + الفرق Size @@ -3591,7 +4137,7 @@ Error: %1 Custom Attributes - + سمات خاصة Icon @@ -3599,7 +4145,7 @@ Error: %1 Color - + اللون Expiration @@ -3607,11 +4153,11 @@ Error: %1 TOTP - + باسورد مؤقت Custom Data - + البيانات المخصصة Attachments @@ -3621,6 +4167,10 @@ Error: %1 Auto-Type نمط تلقائي + + Tags + وسوم + EntryModel @@ -3683,50 +4233,58 @@ Error: %1 Group name - + اسم المجموعة Entry title - + عنوان الإدخال Password Strength - + قوة كلمة المرور Entry notes - + ملاحظات الإدخال Entry expires at - + تنتهي صلاحية الإدخال في Creation date - + تاريخ الإنشاء Last modification date - + تاريخ آخر تعديل Last access date - + تاريخ الوصول الأخير Attached files - + الملفات المرفقة Entry size - + حجم الإدخال Has attachments - + لديه مرفقات Has TOTP + لديه TOTP + + + Background Color + + + + Group Path @@ -3734,7 +4292,7 @@ Error: %1 EntryPreviewWidget Display current TOTP value - + اظهر قيمة TOTP الحالية Close @@ -3749,8 +4307,8 @@ Error: %1 كلمه السر - Notes - ملاحظات + URL + رابط Expiration @@ -3758,19 +4316,19 @@ Error: %1 Tags - + وسوم Tags list - + قائمة الوسوم Username اسم المستخدم - URL - رابط + Notes + ملاحظات Advanced @@ -3790,7 +4348,7 @@ Error: %1 Default Sequence - + التسلسل الإفتراضي Window @@ -3806,7 +4364,7 @@ Error: %1 Share - + مشاركة Search @@ -3820,6 +4378,10 @@ Error: %1 Never أبدًا + + Double click to copy value + انقر نقرا مزدوجا لنسخ القيمة + Enabled مُفعل @@ -3828,12 +4390,20 @@ Error: %1 Disabled مُعطل + + Double click to copy to clipboard + انقر نقرا مزدوجا للنسخ إلى الحافظة + EntryURLModel Invalid URL - + URL غير صالح + + + Duplicate URL + URL مكرر @@ -3850,107 +4420,112 @@ Error: %1 Reset to defaults إعادة التعيين إلى الإعدادات الافتراضية + + + %1 entry(s)... + + %1 مُدخل+ %1 مُدخل+ %1 مُدخلات+ %1 مُدخلات+ %1 مُدخل+ %1 مُدخل + ExportDialog Export options - + خيارات التصدير Sort entries by... - + فرز الإدخالات حسب... You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + أنت على وشك تصدير قاعدة بياناتك إلى ملف غير مشفر. +سيؤدي هذا إلى ترك كلمات المرور ومعلوماتك الحساسة عرضة للخطر! database order - + ترتيب قاعدة البيانات name (ascending) - + الاسم (تصاعدياً) name (descending) - + الاسم (تنازلياً) unknown - + غير معلوم Export database to HTML file - + تصدير قاعدة البيانات إلى ملف HTML HTML file - + ملف HTML FdoSecrets::DBusMgr Failed to deliver message - + فشل تسليم الرسالة Failed to send reply on DBus - + فشل إرسال الرد على DBus Unknown Unknown PID - + مجهول Unknown Unknown executable path - + مجهول <i>PID: %1, Executable: %2</i> <i>PID: 1234, Executable: /path/to/exe</i> - + <i>PID: %1, Executable: %2</i> Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - + خدمة سرية أخرى قيد التشغيل (%1).<br/>يرجى إيقافها / إزالتها قبل إعادة تمكين تكامل الخدمة السرية. Failed to register DBus service at %1.<br/> - + فشل تسجيل خدمة DBus في %1.<br/> Failed to register service on DBus at path '%1' - + فشل تسجيل الخدمة على DBus في المسار '%1' Failed to register database on DBus under the name '%1' - + فشل تسجيل قاعدة البيانات على DBus تحت اسم '%1' Failed to register session on DBus at path '%1' - + فشل تسجيل الجلسة على DBus في المسار '%1' Failed to register item on DBus at path '%1' - + فشل تسجيل العنصر على DBus في المسار '%1' Failed to register prompt object on DBus at path '%1' - + فشل تسجيل كائن الإشعار على DBus في المسار '%1' FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - + تم استخدام الإدخال "%1" من قاعدة البيانات "%2" بواسطة %3 @@ -3958,14 +4533,14 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - + ٪n مُدخل تم استخدامه من قبل ٪1٪n مُدخل تم استخدامه من قبل ٪1٪n مُدخل تم استخدامه من قبل ٪1٪n مُدخلات تم استخدامها من قبل ٪1٪n مُدخل تم استخدامه من قبل ٪1٪n مُدخل تم استخدامه من قبل ٪1 FdoSecrets::SettingsClientModel Unknown - + مجهول Non-existing/inaccessible executable path. Please double-check the client is legit. @@ -3976,18 +4551,18 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::SettingsDatabaseModel Unlock to show - + افتح للعرض None - + لا شيء FdoSecrets::UnlockPrompt %1 (PID: %2) - + رقم(هوية) العملية @@ -4002,25 +4577,25 @@ This will leave your passwords and sensitive information vulnerable! [empty] group has no children - + [فارغ] %1 - Clone - + %1 - استنساخ HibpDownloader Online password validation failed - + فشل التحقق من صحة كلمة المرور عبر الإنترنت IconDownloaderDialog Download Favicons - + تنزيل Favicons Cancel @@ -4029,7 +4604,8 @@ This will leave your passwords and sensitive information vulnerable! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - + تواجه مشكلة في تنزيل الأيقونات؟ +يمكنك تفعيل خدمة أيقونة موقع DuckDuckGo في قسم الأمان في إعدادات التطبيق. Close @@ -4041,15 +4617,15 @@ You can enable the DuckDuckGo website icon service in the security section of th Status - + الحالة Please wait, processing entry list… - + يرجى الانتظار ، معالجة قائمة الإدخالات ... Downloading… - + يتم التحميل... Ok @@ -4057,14 +4633,201 @@ You can enable the DuckDuckGo website icon service in the security section of th Already Exists - + موجود بالفعل Download Failed - + فشل التنزيل Downloading favicons (%1/%2)… + جارِ تنزيل favicons (%1/%2)… + + + + ImportWizard + + Import Wizard + استورد المساعد + + + + ImportWizardPageReview + + WizardPage + + + + Entry count: %1 + + + + Group + المجموعة + + + Title + العنوان + + + Username + اسم المستخدم + + + Password + كلمة المرور + + + Url + عنوان Url + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + النموذج + + + Import File Selection + استيراد اختيار الملف + + + Password: + كلمة المرور: + + + Key File: + ملف مفتاح: + + + Browse… + تصفح... + + + Import Into: + استيراد إلى: + + + New Database + قاعدة بيانات جديدة + + + No unlocked databases available + لا تتوفر قواعد بيانات مفتوحة + + + Existing Database: + + + + Import File: + استورد ملف: + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + تصدير 1Password (.1pux) + + + 1Password Vault (.opvault) + 1Password مخزن (.opvault) + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + فتح OPVault + + + Select import file + حدد ملف الاستيراد + + + All files + كل الملفات + + + Key files + ملفات المفتاح + + + Select key file + إختر ملف المفتاح + + + Comma Separated Values + + + + 1Password Export + صدّر 1Password + + + Bitwarden JSON Export + تصدير JSON من Bitwarden + + + 1Password Vault + مخزن 1Password + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + تصدير JSON إلى Proton Pass + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) @@ -4083,24 +4846,25 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - + رؤوس قاعدة البيانات مفقودة Unable to calculate database key - + غير قادر على حساب مفتاح قاعدة البيانات Unable to issue challenge-response: %1 - + غير قادر على إصدار استجابة الارتياب: %1 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + تم تقديم بيانات اعتماد غير صالحة، يرجى المحاولة مرة أخرى. +في حالة تكرار ذلك، قد يكون ملف قاعدة البيانات الخاص بك تالفا. Header doesn't match hash - + الرأس لا يتطابق مع التجزئة Invalid header id size @@ -4108,11 +4872,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + طول حقل الترويسة غير صالحة: الحقل %1 Invalid header data length: field %1, %2 expected, %3 found - + طول بيانات الترويسة غير صالحة: الحقل %1، %2 متوقع، تم العثور على %3 @@ -4124,11 +4888,11 @@ If this reoccurs, then your database file may be corrupt. Unable to issue challenge-response: %1 - + غير قادر على إصدار استجابة الارتياب: %1 Unable to calculate database key - + غير قادر على حساب مفتاح قاعدة البيانات @@ -4139,7 +4903,7 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key: %1 - + غير قادر على حساب مفتاح قاعدة البيانات: %1 Invalid header checksum size @@ -4152,11 +4916,12 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + تم تقديم بيانات اعتماد غير صالحة، يرجى المحاولة مرة أخرى. +في حالة تكرار ذلك، قد يكون ملف قاعدة البيانات الخاص بك تالفا. (HMAC mismatch) - + (عدم تطابق HMAC) Unknown cipher @@ -4168,11 +4933,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + طول حقل الترويسة غير صالحة: الحقل %1 Invalid header data length: field %1, %2 expected, %3 found - + طول بيانات الترويسة غير صالحة: الحقل %1، %2 متوقع، تم العثور على %3 Failed to open buffer for KDF parameters in header @@ -4192,11 +4957,11 @@ If this reoccurs, then your database file may be corrupt. Invalid inner header field length: field %1 - + طول حقل الترويسة الداخلي غير صالح: الحقل %1 Invalid inner header data length: field %1, %2 expected, %3 found - + طول بيانات الترويسة الداخلي غير صالحة: الحقل %1، %2 متوقع، تم العثور على %3 Invalid inner header binary size @@ -4276,7 +5041,7 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key: %1 - + غير قادر على حساب مفتاح قاعدة البيانات: %1 Failed to serialize KDF parameters variant map @@ -4288,11 +5053,11 @@ If this reoccurs, then your database file may be corrupt. KdbxReader Invalid cipher uuid length: %1 (length=%2) - + طول معرف التشفير غير صالح: %1 (length=%2) Unable to parse UUID: %1 - + غير قادر على تحليل UUID: %1 Unsupported cipher @@ -4332,14 +5097,18 @@ If this reoccurs, then your database file may be corrupt. Failed to read database file. - + فشل في قراءة ملف قاعدة البيانات. The selected file is an old KeePass 1 database (.kdb). 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 القديم. Not a KeePass database. @@ -4476,15 +5245,15 @@ Line %2, column %3 KeeAgentSettings Invalid KeeAgent settings file structure. - + بنية ملف إعدادات KeeAgent غير صالحة. Private key is an attachment but no attachments provided. - + المفتاح الخاص هو مرفق ولكن لم يتم توفير أي مرفقات. Private key is empty - + المفتاح الخاص فارغ File too large to be a private key @@ -4495,17 +5264,6 @@ Line %2, column %3 تعذر فتح المفتاح السري - - KeePass1OpenWidget - - Import KeePass1 Database - - - - Unable to open the database. - فتح قاعدة البيانات غير ممكن. - - KeePass1Reader @@ -4559,16 +5317,17 @@ Line %2, column %3 Unable to calculate database key - + غير قادر على حساب مفتاح قاعدة البيانات unable to seek to content position - + غير قادر على البحث عن موضع المحتوى Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + تم تقديم بيانات اعتماد غير صالحة، يرجى المحاولة مرة أخرى. +في حالة تكرار ذلك، قد يكون ملف قاعدة البيانات الخاص بك تالفا. Key transformation failed @@ -4671,43 +5430,43 @@ If this reoccurs, then your database file may be corrupt. Inactive share %1 - + المشاركة غير نشطة %1 Imported from %1 - + تم الاستيراد من ٪1 Exported to %1 - + تم التصدير إلى ٪1 Synchronized with %1 - + متزامن مع ٪1 Import is disabled in settings - + الاستيراد معطل في الإعدادات Export is disabled in settings - + التصدير معطل في الإعدادات Inactive share - + المشاركة غير نشطة Imported from - + مستورد من Exported to - + تصدير إلى Synchronized with - + متزامن مع @@ -4733,7 +5492,7 @@ If this reoccurs, then your database file may be corrupt. KeyFileEditWidget Generate a new key file - + توليد ملف مفتاح جديد Generate @@ -4741,48 +5500,49 @@ If this reoccurs, then your database file may be corrupt. Generate a new key file or choose an existing one to protect your database. - + ولّد ملف مفتاح جديد أو اختيار ملف موجود لحماية قاعدة بياناتك. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + ملاحظة: لا تستخدم ملفًا قد يتغير، حيث سيمنعك ذلك من فتح قاعدة بياناتك. Browse for key file - + استعرض بحثا عن ملف المفتاح Browse… - + تصفح... Old key file format - + تنسيق ملف المفتاح قديم You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - + لقد قمت بتحديد ملف مفتاح بتنسيق قديم قد يتوقف KeePassXC<br> عن دعمه في المستقبل.<br><br>يُرجى التفكير في إنشاء ملف مفتاح جديد بدلاً من ذلك. Error loading the key file '%1' Message: %2 - + خطأ في تحميل ملف المفتاح '%1' +الرسالة: %2 Key File - + ملف مفتاح Add Key File - + إضافة ملف مفتاح Change Key File - + تغيير ملف المفتاح Remove Key File - + إزالة ملف المفتاح Key File set, click to change or remove @@ -4790,7 +5550,7 @@ Message: %2 <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>يجب أن تبقيه سرا ولا تفقده أبدا وإلا فستحظر نفسك.</p> Key files @@ -4802,15 +5562,15 @@ Message: %2 Create Key File… - + أنشئ ملف المفتاح... Error creating key file - + خطأ في إنشاء ملف المفتاح Unable to create key file: %1 - + غير قادر على إنشاء ملف المفتاح: %1 Select a key file @@ -4818,27 +5578,28 @@ Message: %2 Invalid Key File - + ملف المفتاح غير صالح You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - + لا يمكنك استخدام قاعدة البيانات الحالية كkeyfile خاص بها. يُرجى اختيار ملف مختلف أو إنشاء ملف مفتاح جديد. Suspicious Key File - + ملف مفتاح مشبوه The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - + يبدو ملف المفتاح المختار كملف قاعدة بيانات كلمة المرور. يجب أن يكون ملف المفتاح ملفًا ثابتًا لا يتغير أبدًا وإلا ستفقد الوصول إلى قاعدة بياناتك إلى الأبد. +هل أنت متأكد أنك تريد الاستمرار في هذا الملف؟ MacUtils Invalid key code - + رمز المفتاح غير صالح Global shortcut already registered to %1 @@ -4857,15 +5618,11 @@ Are you sure you want to continue with this file? &Recent Databases - - - - &Import - + قواعد البيانات المفتوحة مؤخرًا &Export - + &تصدير &Help @@ -4873,15 +5630,19 @@ Are you sure you want to continue with this file? &Entries - + &الإدخالات Copy Att&ribute - + نسخ الصف&ة TOTP - + باسورد مؤقت + + + Tags + وسوم &Groups @@ -4893,11 +5654,11 @@ Are you sure you want to continue with this file? View - + عرض Theme - + السِمة &Quit @@ -4909,83 +5670,63 @@ Are you sure you want to continue with this file? &Check for Updates - + &تحقق من وجود تحديثات &Open Database… - + &فتح قاعدة بيانات… &Save Database - + &حفظ قاعدة البيانات &Close Database - + إغلاق قاعدة البيانات &New Database… - - - - Create a new database - + &قاعدة بيانات جديدة… &Merge From Database… - - - - Merge from another KDBX database - + دمج من قاعدة بيانات ... &New Entry… - - - - Add a new entry - + مُدخل جديد... &Edit Entry… - - - - View or edit entry - + &تعديل الإدخالالة… &Delete Entry… - + &حذف المُدخل... &New Group… - - - - Add a new group - + &مجموعة جديدة… &Edit Group… - + &تعديل المجموعة... &Delete Group… - + &احذف المجموعة… Download All &Favicons… - + تحميل جميع أيقونات المواقع… Sort &A-Z - + فرز من الألف إلى الياء Sort &Z-A - + فرز من الياء إلى الألف Sa&ve Database As… @@ -4993,59 +5734,35 @@ Are you sure you want to continue with this file? Database &Security… - + أمن &قاعدة البيانات… Database &Reports… - - - - Statistics, health check, etc. - + قاعدة البيانات والتقارير… &Database Settings… - - - - Database settings - إعدادات قاعدة البيانات + &إعدادات قاعدة البيانات… &Clone Entry… - + &إستنساخ المُدخل... Move u&p - - Move entry one step up - - Move do&wn - - Move entry one step down - - Copy &Username - - - - Copy username to clipboard - نسخ اسم المستخدم إلى الحافظة + نسخ &اسم المستخدم Copy &Password - - - - Copy password to clipboard - نسخ كلمة المرور إلى الحافظة + نسخ كلمة المرور &Settings @@ -5053,83 +5770,59 @@ Are you sure you want to continue with this file? &Password Generator - + &مولد كلمات السر Perform &Auto-Type - + الأداء والكتابة التلقائية Download &Favicon - + نزّل &أيقونة Open &URL - + افتح &الرابط &Lock Database - + &قفل قاعدة البيانات Lock &All Databases - + قفل جميع قواعد البيانات &Title &العنوان - Copy title to clipboard - نسخ العنوان إلى الحافظة - - - &URL - &رابط - - - Copy URL to clipboard - نسخ الرابط إلى الحافظة + Copy &URL + نسخ الرابط &Notes &الملاحظات - - Copy notes to clipboard - نسخ الملاحظات إلى الحافظة - &CSV File… - + ملف CSV… &HTML File… - + ملف &HTML… KeePass 1 Database… - - Import a KeePass 1 database - - 1Password Vault… - - - - Import a 1Password Vault - + مخزن 1Password… CSV File… - - - - Import a CSV file - + ملف CSV… Show TOTP @@ -5137,99 +5830,103 @@ Are you sure you want to continue with this file? Show QR Code - + أظهِر رمز QR Set up TOTP… - + نصب TOTP… Copy &TOTP نسخ &TOTP + + Copy Password and TOTP + نسخ كلمة المرور و TOTP + E&mpty recycle bin إفراغ سلة المهملات &Donate - + &تبرَّع Report a &Bug - + الإبلاغ عن علَّة &Getting Started - + &ابدء Open Getting Started Guide - + افتح دليل البدء &Online Help - - - - Go to online documentation - + &مساعدة عبر الإنترنت &User Guide - + &دليل المستخدم Open User Guide - + افتح دليل المستخدم &Keyboard Shortcuts - + &إختصارات لوحة المفاتيح Save Database Backup… - + احفظ النسخة الاحتياطية لقاعدة البيانات... Add key to SSH Agent - + أضِف مفتاح إلى عميل SSH Remove key from SSH Agent - + أزِل المفتاح من SSH Agent Compact Mode - + الوضع المضغوط Automatic - + تلقائي Light - + فاتحة Dark - + داكنة Classic (Platform-native) + + Show Menubar + أظهِر شريط القائمة + Show Toolbar - + أظهِر شريط الأدوات Show Preview Panel - + أظهِر لوحة المعاينة Always on Top - + دائما في الأعلى Hide Usernames @@ -5241,7 +5938,11 @@ Are you sure you want to continue with this file? Clone Group... - + &إستنساخ المجموعة... + + + &XML File… + &ملف XML... Clear history @@ -5259,7 +5960,9 @@ Are you sure you want to continue with this file? 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. +هناك خطر كبير للفساد، احتفظ بنسخة احتياطية من قواعد بياناتك. +هذا الإصدار ليس مخصصًا للاستخدام الإنتاجي. NOTE: You are using a pre-release version of KeePassXC. @@ -5267,13 +5970,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - + No Tags + لا وسوم Restore Entry(s) - + استعد الإدخالاتاستعد الإدخالاتاستعد الإدخالاتاستعد الإدخالاتاستعد الإدخالاتاستعد الإدخالات Settings @@ -5281,15 +5983,15 @@ We recommend you use the AppImage available on our downloads page. 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. - + يمكنك دائمًا التحقق من التحديثات يدويًا من قائمة التطبيق. Toggle window @@ -5299,16 +6001,328 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC إغلاق KeePassXC + + %1 Entry(s) + %1 إدخالإدخالإدخالين%1 إدخالات%1 إدخال%1 إدخال + Please present or touch your YubiKey to continue… - + يرجى تقديم أو لمس YubiKey الخاص بك للمتابعة ... Restart Application? - + إعادة تشغيل التطبيق؟ You must restart the application to apply this setting. Would you like to restart now? + يجب عليك إعادة تشغيل التطبيق لتطبيق هذا الإعداد. هل ترغب في إعادة تشغيل الآن؟ + + + Allow Screen Capture + اسمح بالتقاط الشاشة + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + استورد ملف 1Password 1PUX + + + Import… + استورد… + + + Passkeys… + + + + Import Passkey + استورِد Passkey + + + Remote S&ync… + + + + Quit Application + أنهِ التطبيق + + + Open About Dialog + + + + Open Database + افتح قاعدة بيانات + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + تعديل الإدخال + + + Delete Entry + + + + Create Group + + + + Edit Group + تحرير المجموعة + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + نسخ اسم المستخدم + + + Copy Password + نسخ كلمة المرور + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + استيراد قاعدة بيانات KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + إفراغ سلة المهملات + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + بدّل إظهار شريط القائمة + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + مولد كلمة السر + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent @@ -5320,7 +6334,7 @@ We recommend you use the AppImage available on our downloads page. Edit database settings - + تعديل إعدادات قاعدة البيانات Unlock database @@ -5328,7 +6342,7 @@ We recommend you use the AppImage available on our downloads page. Unlock database to show more information - + افتح قاعدة البيانات لإظهار المزيد من المعلومات Lock database @@ -5345,6 +6359,14 @@ We recommend you use the AppImage available on our downloads page. Disconnect this application + + Reset + صفّر + + + Reset any remembered decisions for this application + صفّر أي قرارات تم تذكرها لهذا التطبيق + Merger @@ -5360,26 +6382,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] - - older entry merged from database "%1" - - - - Adding backup for older target %1 [%2] - - - - Adding backup for older source %1 [%2] - - - - Reapplying older target entry on top of newer source %1 [%2] - - - - Reapplying older source entry on top of newer target %1 [%2] - - Synchronizing from newer source %1 [%2] @@ -5390,7 +6392,7 @@ We recommend you use the AppImage available on our downloads page. Deleting child %1 [%2] - + جارِ حذف فرع %1 [%2] Deleting orphan %1 [%2] @@ -5402,7 +6404,7 @@ We recommend you use the AppImage available on our downloads page. Adding missing icon %1 - + إضافة أيقونة مفقودة ٪1 Removed custom data %1 [%2] @@ -5433,41 +6435,33 @@ We recommend you use the AppImage available on our downloads page. Encryption 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 - + يمكنك هنا ضبط إعدادات تعمية قاعدة البيانات. لا تقلق، يمكنك تغييرها لاحقًا في إعدادات قاعدة البيانات. NewDatabaseWizardPageDatabaseKey Database Credentials - + بيانات اعتماد قاعدة البيانات A set of credentials known only to you that protects your database. - + مجموعة من بيانات الاعتماد المعروفة لك فقط والتي تحمي قاعدة البيانات الخاصة بك. NewDatabaseWizardPageEncryption Encryption Settings - + إعدادات التشفير Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - + يمكنك هنا ضبط إعدادات تعمية قاعدة البيانات. لا تقلق، يمكنك تغييرها لاحقًا في إعدادات قاعدة البيانات. @@ -5478,6 +6472,25 @@ We recommend you use the AppImage available on our downloads page. Please fill in the display name and an optional description for your new database: + يُرجى ملء اسم العرض والوصف الاختياري لقاعدة البيانات الجديدة الخاصة بك: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + احفظ المرفق + + + New entry attachment @@ -5485,7 +6498,7 @@ We recommend you use the AppImage available on our downloads page. NixUtils Password Manager - + مدير كلمة المرور Global shortcut already registered to %1 @@ -5500,7 +6513,7 @@ We recommend you use the AppImage available on our downloads page. OpData01 Invalid OpData01, does not contain header - + OpData01 غير صالح، ولا يحتوي على ترويسة Unable to read all IV bytes, wanted 16 but got %1 @@ -5520,38 +6533,30 @@ We recommend you use the AppImage available on our downloads page. Unable to process clearText in place - + غير قادر على معالجة النص الواضح في مكانه Expected %1 bytes of clear-text, found %2 - - - - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - + من المتوقع وجود %1 بايت من النص العادي، وتم العثور على %2 OpVaultReader Directory .opvault must exist - + يجب أن يكون المجلد .opvault موجودا Directory .opvault must be readable - + يجب أن يكون المجلد .opvault قابل للقراءة Directory .opvault/default must exist - + يجب أن يكون المجلد .opvault/default موجودا Directory .opvault/default must be readable - + يجب أن يكون المجلد opvault/default. قابل للقراءة Unable to decode masterKey: %1 @@ -5608,6 +6613,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 تشفير غير معروف: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key عبارة المرور مطلوبة لفك تشفير المفتاح @@ -5630,7 +6639,7 @@ We recommend you use the AppImage available on our downloads page. Decryption failed: %1 - + فشل فك التعمية: %1 Decryption failed, wrong passphrase? @@ -5672,27 +6681,179 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key نهاية الملف غير معروفة عند قراءة المفتاح الخاص + + (encrypted) + (مُعمّى) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match + SSH Key Generator - Passwords match so far + Type + نوع + + + Bits - Toggle Password (%1) + Comment + تعليق + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - تصدير Passkey + + + Filenames will be generated with title and .passkey file extension. - Generate Password (%1) + Export entries + تصدير الإدخالات + + + Export Selected + تصدير المحدد + + + Cancel + ألغأ + + + Export to folder + صدّر إلى مجلد + + + Export the following passkey entries. + تصدير إدخالات passkey التالية. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: تصدير Passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + - Warning: Caps Lock enabled! + Cannot open file + لا يمكن فتح الملف + + + Cannot open file "%1" for writing. + لا يمكن فتح الملف "%1" للكتابة. + + + Cannot write to file + لا يمكن الكتابة إلى الملف + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + اسم المستخدم: %1 + + + Group + المجموعة + + + Database + + + + Import Passkey + استورِد Passkey + + + Import + إستيراد + + + Cancel + ألغأ + + + Entry + مُدخلة + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + كل الملفات + + + Cannot open file + لا يمكن فتح الملف + + + Cannot open file "%1" for reading. + لا يمكن فتح الملف "%1" للقراءة. + + + Open passkey file + فتح ملف مفتاح المرور + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. @@ -5704,15 +6865,15 @@ We recommend you use the AppImage available on our downloads page. Password field - + حقل كلمة المرور Confirm password: - + تأكيد كلمة المرور: Repeat password field - + حقل تكرار كلمة المرور Password @@ -5720,34 +6881,34 @@ We recommend you use the AppImage available on our downloads page. Add Password - + أضِف كلمة المرور Change Password - + تغيير كلمة المرور Remove Password - + إزالة كلمة المرور Password set, click to change or remove - + تم تعيين كلمة المرور، انقر للتغيير أو الإزالة <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> - + <p>كلمة المرور هي الطريقة الأساسية لتأمين قاعدة بياناتك.</p><p>كلمات المرور الجيدة طويلة وفريدة من نوعها. يمكن لـ KeePassXC إنشاء واحد لك.</p> Passwords do not match. - + كلمة المرور غير مطابقة. PasswordGeneratorWidget Generate Password - + ولّد كلمة مرور strength @@ -5760,7 +6921,7 @@ We recommend you use the AppImage available on our downloads page. Generated password - + كلمة المرور المولّدة %p% @@ -5768,7 +6929,7 @@ We recommend you use the AppImage available on our downloads page. Regenerate password - + إعادة توليد كلمة المرور Copy password @@ -5784,7 +6945,7 @@ We recommend you use the AppImage available on our downloads page. Password length - + طول كلمة المرور Switch to advanced mode @@ -5804,19 +6965,19 @@ We recommend you use the AppImage available on our downloads page. Quotes - + علامات اقتباس Punctuation - + علامات الترقيم Dashes and Slashes - + الشرطات والشرطة المائلة Upper-case letters - + أحرف الكبيرة Numbers @@ -5824,11 +6985,11 @@ We recommend you use the AppImage available on our downloads page. Lower-case letters - + أحرف صغيرة Math Symbols - + رموز الرياضيات Extended ASCII @@ -5836,35 +6997,35 @@ We recommend you use the AppImage available on our downloads page. Braces - + أقواس Do not include: - + لا تشمل: Additional characters to use for the generated password - + مِحرَفات إضافية لاستخدامها لكلمة المرور الموَلّدة Additional characters - + أحرف إضافية Add non-hex letters to "do not include" list - + إضافة الأحرف الغير سداسية عشرية إلى قائمة "لا تشمل" Hex Passwords - + كلمات المرور السداسية Hex - + أحرف سداسية عشرية Character set to exclude from generated password - + مجموعة مِحرَفات لاستبعادها من كلمة المرور الموَلّدة Excluded characters @@ -5872,11 +7033,7 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - - - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - + اختر أيضا من: Exclude look-alike characters @@ -5902,13 +7059,9 @@ We recommend you use the AppImage available on our downloads page. Word Count: عدد الكلمات: - - Character Count: - - Word Case: - + حالة أحرف الكلمات: Delete selected wordlist @@ -5916,11 +7069,7 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist - - - - character - + إضافة قائمة كلمات مخصصة Close @@ -5932,23 +7081,23 @@ We recommend you use the AppImage available on our downloads page. Apply Password - + طبّق كلمة المرور Regenerate password (%1) - + إعادة توليد كلمة المرور (%1) lower case - + صغيرة UPPER CASE - + كبيرة Title Case - + تكبير الحرف الأول (SYSTEM) @@ -5958,6 +7107,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropy: %1 bit + + Password Quality: %1 + جودة كلمة المرور: %1 + + + Poor + Password quality + ضعيف جدا + + + Weak + Password quality + ضعيفة + + + Good + Password quality + جيدة + + + Excellent + Password quality + ممتازة + Confirm Delete Wordlist @@ -6004,8 +7177,47 @@ Do you want to overwrite it? محارف خاصة - Password Quality: %1 - جودة كلمة المرور: %1 + passwordLength + طول كلمة المرور + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + كلمة المرور غير مطابقة + + + Passwords match so far + كلمات المرور متطابقة حتى الآن + + + Toggle Password (%1) + عرض كلمة المرور (٪1) + + + Generate Password (%1) + ولد + + + Warning: Caps Lock enabled! + تحذير: Caps Lock مُفعّل! + + + Quality: %1 + الجودة: %1 Poor @@ -6027,6 +7239,10 @@ Do you want to overwrite it? Password quality ممتازة + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6043,11 +7259,26 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + معاينة إدخال المرفق + + + No preview available + لا يوجد معاينة متاحة + + + Image format not supported + + + QMessageBox Overwrite - + الكتابة فوقه Delete @@ -6055,11 +7286,11 @@ Do you want to overwrite it? Move - + تحريك Empty - + تفريغ Remove @@ -6067,7 +7298,7 @@ Do you want to overwrite it? Skip - + تخطي Disable @@ -6075,11 +7306,15 @@ Do you want to overwrite it? Merge - + دمج Continue - + استمرار + + + Continue with weak password + تابع بكلمة مرور ضعيفة @@ -6106,7 +7341,7 @@ Do you want to overwrite it? Message encryption failed. - + فشل تعمية الرسالة. KeePassXC association failed, try again @@ -6138,7 +7373,7 @@ Do you want to overwrite it? Cannot create new group - + لا يمكن إنشاء مجموعة جديدة No valid UUID provided @@ -6178,7 +7413,7 @@ Do you want to overwrite it? Notes for the entry. - + ملاحظات للإدخال. Notes @@ -6202,7 +7437,7 @@ Do you want to overwrite it? Cannot generate a password and prompt at the same time. - + لا يمكن توليد كلمة مرور والمطالبة في نفس الوقت. Could not create entry with path %1. @@ -6210,7 +7445,7 @@ Do you want to overwrite it? Enter password for new entry: - + أدخل كلمة المرور للمُدخل الجديد: Writing the database failed %1. @@ -6218,11 +7453,11 @@ Do you want to overwrite it? Successfully added entry %1. - + تمت إضافة الإدخال ٪1 بنجاح. Adds a new group to a database. - + يضيف مجموعة جديدة إلى قاعدة البيانات. Path of the group to add. @@ -6230,11 +7465,11 @@ Do you want to overwrite it? Group %1 already exists! - + المجموعة ٪1 موجودة بالفعل! Group %1 not found. - + لم يتم العثور على المجموعة ٪1. Successfully added group %1. @@ -6242,7 +7477,7 @@ Do you want to overwrite it? Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - + تحقق مما إذا كان قد تم تسريب أي كلمات مرور علنًا. يجب أن يكون FILENAME هو مسار ملف يسرد تجزئات SHA-1 لكلمات المرور المسربة بتنسيق HIBP، كما هو متاح من https://haveibeenpwned.com/Passwords. FILENAME @@ -6254,23 +7489,23 @@ Do you want to overwrite it? okon-cli - + okon-cli Analyze passwords for weaknesses and problems. - + تحليل كلمات المرور بحثا عن نقاط الضعف والمشاكل. Cannot find HIBP file: %1 - + لا يمكن العثور على ملف HIBP؜: ٪1 Evaluating database entries using okon… - + تقييم إدخالات قاعدة البيانات باستخدام okon ... Failed to open HIBP file %1: %2 - + فشل فتح ملف HIBP؜ ٪1: ٪2 Evaluating database entries against HIBP file, this will take a while… @@ -6278,15 +7513,15 @@ Do you want to overwrite it? Password for '%1' has been leaked %2 time(s)! - + تم تسريب كلمة مرور لـ'%1' ٪2 مرة!تم تسريب كلمة مرور لـ'%1' مرة واحدة!تم تسريب كلمة مرور لـ'%1' مرتين!تم تسريب كلمة مرور لـ'%1' ٪2 مرات!تم تسريب كلمة مرور لـ'%1' ٪2 مرة!تم تسريب كلمة مرور لـ'%1' ٪2 مرة! Password for '%1' has been leaked! - + تم تسريب كلمة مرور لـ'%1'! Export an attachment of an entry. - + تصدير مرفق إدخال. Path of the entry with the target attachment. @@ -6294,31 +7529,31 @@ Do you want to overwrite it? Name of the attachment to be exported. - + اسم المرفق المراد تصديره. Path to which the attachment should be exported. - + المسار الذي يجب تصدير المرفق إليه. Could not find entry with path %1. - + تعذر العثور على إدخال مع المسار ٪1. Could not find attachment with name %1. - + تعذر العثور على مرفق بالاسم ٪1. No export target given. Please use '--stdout' or specify an 'export-file'. - + لم يتم إعطاء هدف للتصدير. الرجاء استخدام '--stdout' أو تحديد 'export-file'. Could not open output file %1. - + تعذر فتح ملف الإخراج ٪ 1. Successfully exported attachment %1 of entry %2 to %3. - + تم تصدير المرفق ٪1 من الإدخال ٪2 إلى ٪3 بنجاح. Overwrite existing attachments. @@ -6326,39 +7561,39 @@ Do you want to overwrite it? Imports an attachment to an entry. - + يستورد مرفق إلى إدخال. Path of the entry. - + مسار الإدخال. Name of the attachment to be added. - + اسم المرفق المراد إضافته. Path of the attachment to be imported. - + مسار المرفق المراد استيراده. Attachment %1 already exists for entry %2. - + المرفق ٪1 موجود بالفعل للإدخال ٪2. Could not open attachment file %1. - + تعذر فتح ملف المرفق ٪ 1. Successfully imported attachment %1 as %2 to entry %3. - + تم استيراد المرفق ٪1 كـ ٪2 إلى الإدخال ٪3 بنجاح. Remove an attachment of an entry. - + إزالة مرفق إدخال. Name of the attachment to be removed. - + اسم المرفق المراد إزالته. Successfully removed attachment %1 from entry %2. @@ -6367,11 +7602,11 @@ Do you want to overwrite it? Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - + انسخ الصفة المحددة إلى الحافظة. الإعدادات الافتراضية هي "كلمة المرور" إذا لم يتم تحديدها. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - + انسخ TOTP الحالي إلى الحافظة (أي ما يعادل "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. @@ -6379,7 +7614,7 @@ Do you want to overwrite it? Copy an entry's attribute to the clipboard. - + انسخ سمة الإدخال إلى الحافظة. Path of the entry to clip. @@ -6388,7 +7623,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + انتهت المهلة قبل مسح الحافظة (الافتراضي هو %1 ثانية، وتم ضبطه على 0 لعدد غير محدود). Invalid timeout value %1. @@ -6408,43 +7643,43 @@ Do you want to overwrite it? ERROR: Please specify one of --attribute or --totp, not both. - + خطأ: يُرجى تحديد أحد --attribute أو --totp، وليس كليهما. Entry with path %1 has no TOTP set up. - + الإدخال ذو المسار %1 ليس له إعداد TOTP. ERROR: attribute %1 is ambiguous, it matches %2. - + خطأ: الصفة %1 غامضة، وهي تطابق %2. Attribute "%1" not found. - + لم يتم العثور على صفة "%1". Entry's "%1" attribute copied to the clipboard! - + نسخت صفة الإدخال "%1" إلى الحافظة! Clearing the clipboard in %1 second(s)... - + مسح الحافظة في ٪1 ثانية...مسح الحافظة في ٪1 ثانية...مسح الحافظة في ٪1 ثانيتين...مسح الحافظة في ٪1 ثوان...مسح الحافظة في ٪1 ثانية...مسح الحافظة في ٪1 ثانية... Clipboard cleared! - + تم مسح الحافظة! Close the currently opened database. - + أغلق قاعدة البيانات المفتوحة حاليا. Display this help. - + عرض هذه المساعدة. Silence password prompt and other secondary outputs. - + إسكات كلمة المرور والمخرجات الثانوية الأخرى. Key file of the database. @@ -6456,7 +7691,7 @@ Do you want to overwrite it? Deactivate password key for the database. - + إلغاء تنشيط مفتاح كلمة المرور لقاعدة البيانات. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). @@ -6474,9 +7709,13 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + مسار قاعدة البيانات. + Target decryption time in MS for the database. - + وقت فك التشفير المستهدف بالميجا بايت لقاعدة البيانات. time @@ -6488,27 +7727,23 @@ Do you want to overwrite it? Set a password for the database. - + عيّن كلمة مرور لقاعدة البيانات. Create a new database. - - - - Path of the database. - مسار قاعدة البيانات. + إنشاء قاعدة بيانات جديدة. Invalid decryption time %1. - + وقت فك التعمية غير صالح ٪1. Target decryption time must be between %1 and %2. - + يجب أن يكون وقت فك التعمية المستهدف بين %1 و%2. Failed to set database password. - + فشل في تعيين كلمة مرور قاعدة البيانات. Loading the key file failed @@ -6528,7 +7763,7 @@ Do you want to overwrite it? error while setting database key derivation settings. - + خطأ أثناء تعيين إعدادات اشتقاق مفتاح قاعدة البيانات. File %1 already exists. @@ -6536,10 +7771,162 @@ Do you want to overwrite it? Failed to save the database: %1. - + فشل حفظ قاعدة البيانات: %1. Successfully created new database. + تم إنشاء قاعدة بيانات جديدة بنجاح. + + + Unset the password for the database. + ألغِ تعيين كلمة المرور لقاعدة البيانات. + + + Unset the key file for the database. + + + + Edit a database. + حرّر قاعدة بيانات. + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + تعذر تغيير مفتاح قاعدة البيانات. + + + Database was not modified. + لم يتم تعديل قاعدة البيانات. + + + Writing the database failed: %1 + فشلت كتابة قاعدة البيانات: %1 + + + Successfully edited the database. + تم تحرير قاعدة البيانات بنجاح. + + + Cannot remove password: The database does not have a password. + لا يمكن إزالة كلمة المرور: لا تحتوي قاعدة البيانات على كلمة مرور. + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + + + + UUID: + + + + Name: + الاسم: + + + Description: + الوصف: + + + Cipher: + + + + KDF: + + + + Recycle bin is enabled. + سلة المهملات مُفعّلة. + + + Recycle bin is not enabled. + سلة المهملات غير مُفعّلة. + + + Location + + + + Database created + + + + Last saved + آخر حفظ + + + Unsaved changes + التغييرات غير المحفوظة + + + yes + نعم + + + no + لا + + + Number of groups + + + + Number of entries + عدد الإدخالات + + + Number of expired entries + عدد المدخلات منتهية الصلاحية + + + Unique passwords + كلمات مرور فريدة + + + Non-unique passwords + كلمات مرور غير فريدة + + + Maximum password reuse + الحد الأقصى لإعادة استخدام كلمة المرور + + + Number of short passwords + عدد كلمات المرور القصيرة + + + Number of weak passwords + عدد كلمات المرور الضعيفة + + + Entries excluded from reports + الإدخالات المستبعدة من التقارير + + + Average password length + متوسط ​​طول كلمة المرور + + + %1 characters @@ -6563,11 +7950,7 @@ Do you want to overwrite it? Invalid word count %1 - - - - The word list is too small (< 1000 items) - + عدد كلمات غير صالح ٪1 Title for the entry. @@ -6591,15 +7974,11 @@ Do you want to overwrite it? Enter new password for entry: - - - - Writing the database failed: %1 - + أدخل كلمة مرور جديدة للمُدخل: Successfully edited entry %1. - + تم حذف تعديل الإدخالة ٪1 بنجاح. Perform advanced analysis on the password. @@ -6711,23 +8090,19 @@ Do you want to overwrite it? *** Password length (%1) != sum of length of parts (%2) *** - + *** طول كلمة المرور (%1) != مجموع طول الأجزاء (%2) *** Exit interactive mode. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - - Exports the content of a database to standard output in the specified format. - + يقوم بتصدير محتوى قاعدة البيانات إلى إخراج قياسي بالتنسيق المحدد. Unable to export database to XML: %1 - + غير قادر على تصدير قاعدة البيانات إلى XML: ‏%1 Unsupported format %1 @@ -6735,7 +8110,7 @@ Do you want to overwrite it? Length of the generated password - + طول كلمة المرور التي ولّدتها length @@ -6747,7 +8122,7 @@ Do you want to overwrite it? Use uppercase characters - + استخدام الأحرف الكبيرة Use numbers @@ -6787,15 +8162,15 @@ Do you want to overwrite it? Invalid password length %1 - + طول كلمة المرور %1 غير صالح Invalid password generator after applying all options - + مولّد كلمة المرور غير صالح بعد تطبيق جميع الخيارات Display command help. - + عرض تعليمات الأمر. Available commands: @@ -6807,11 +8182,11 @@ Do you want to overwrite it? Path of the XML database export. - + مسار تصدير قاعدة بيانات XML. Path of the new database. - + مسار قاعدة البيانات الجديدة. Unable to import XML database: %1 @@ -6821,106 +8196,6 @@ Do you want to overwrite it? Successfully imported database. - - Show a database's information. - - - - UUID: - - - - Name: - الاسم: - - - Description: - الوصف: - - - Cipher: - - - - KDF: - - - - Recycle bin is enabled. - - - - Recycle bin is not enabled. - - - - Location - - - - Database created - - - - Last saved - - - - Unsaved changes - - - - yes - - - - no - - - - Number of groups - - - - Number of entries - - - - Number of expired entries - - - - Unique passwords - - - - Non-unique passwords - - - - Maximum password reuse - - - - Number of short passwords - - - - Number of weak passwords - - - - Entries excluded from reports - - - - Average password length - - - - %1 characters - - Unknown command %1 @@ -6941,7 +8216,7 @@ Available commands: Displays debugging information. - + يعرض معلومات التصحيح. Invalid command %1. @@ -6977,7 +8252,7 @@ Available commands: Deactivate password key for the database to merge from. - + قم بإلغاء تنشيط مفتاح كلمة المرور لقاعدة البيانات المراد الدمج منها. Only print the changes detected by the merge operation. @@ -7002,11 +8277,12 @@ Available commands: Error reading merge file: %1 - + خطأ في قراءة ملف الدمج: +%1 Unable to save database to file : %1 - + غير قادر على حفظ قاعدة البيانات في الملف : %1 Successfully merged %1 into %2. @@ -7014,11 +8290,11 @@ Available commands: Database was not modified by merge operation. - + لم يتم تعديل قاعدة البيانات من خلال عملية الدمج. Moves an entry to a new group. - + ينقل مُدخل إلى مجموعة جديدة. Path of the entry to move. @@ -7042,7 +8318,7 @@ Available commands: Open a database. - + افتح قاعدة البيانات. Path of the entry to remove. @@ -7050,7 +8326,7 @@ Available commands: Unable to save database to file: %1 - + غير قادر على حفظ قاعدة البيانات في الملف: %1 Successfully recycled entry %1. @@ -7058,7 +8334,7 @@ Available commands: Successfully deleted entry %1. - + تم حذف المُدخل ٪1 بنجاح. Path of the group to remove. @@ -7066,7 +8342,7 @@ Available commands: Cannot remove root group from database. - + لا يمكن إزالة المجموعة الجذرية من قاعدة البيانات. Successfully recycled group %1. @@ -7074,7 +8350,7 @@ Available commands: Successfully deleted group %1. - + حذفت المجموعة %1 بنجاح. Find entries quickly. @@ -7086,11 +8362,15 @@ Available commands: Show the entry's current TOTP. - + أظهِر TOTP الحالي للمدخل. Show the protected attributes in clear text. - + أظهِر الصفات المحمية بنص واضح. + + + Show all the attributes of the entry. + إظهار جميع سمات الإدخال. Show the attachments of the entry. @@ -7114,7 +8394,7 @@ Available commands: ERROR: unknown attribute %1. - + خطأ: الصفة %1 غير معروفة. No attachments present. @@ -7126,19 +8406,19 @@ Available commands: Failed to open database file %1: not found - + فشل فتح ملف قاعدة البيانات %1: غير موجود Failed to open database file %1: not a plain file - + فشل فتح ملف قاعدة البيانات %1: ليس ملفًا عاديًا Failed to open database file %1: not readable - + فشل فتح ملف قاعدة البيانات %1: غير قابل للقراءة Enter password to unlock %1: - + أدخل كلمة المرور لإلغاء قفل ٪1: Failed to load key file %1: %2 @@ -7149,7 +8429,10 @@ Available commands: stop supporting in the future. Please consider generating a new key file. - + تحذير: أنت تستخدم تنسيق ملف مفتاح قديم قد يتوقف KeePassXC +عن دعمة في المستقبل. + +يُرجى النظر في إنشاء ملف مفتاح جديد. Invalid YubiKey slot %1 @@ -7160,28 +8443,28 @@ Please consider generating a new key file. - Please present or touch your YubiKey to continue… - + Please present or touch your YubiKey to continue. + يرجى تقديم أو لمس YubiKey الخاص بك للمتابعة Enter password to encrypt database (optional): - + أدخل كلمة المرور لتعمية قاعدة البيانات (اختياري): Do you want to create a database with an empty password? [y/N]: - + هل تريد إنشاء قاعدة بيانات بكلمة مرور فارغة؟ [y/N]: Repeat password: - + اعِد كلمة المرور: Error: Passwords do not match. - + خطأ: كلمات المرور غير متطابقة. No program defined for clipboard manipulation - + لم يُعرّف أي برنامج لمعالجة الحافظة All clipping programs failed. Tried %1 @@ -7190,11 +8473,11 @@ Please consider generating a new key file. Creating KeyFile %1 failed: %2 - + فشل إنشاء KeyFile %1: %2 Loading KeyFile %1 failed: %2 - + فشل تحميل KeyFile %1: %2 HIBP file, line %1: parse error @@ -7210,7 +8493,7 @@ Please consider generating a new key file. Error: okon process did not finish - + خطأ: لم تنتهي عملية okon Failed to load okon processed database: %1 @@ -7218,15 +8501,15 @@ Please consider generating a new key file. Very weak password - + كلمة المرور ضعيفة جدًا Password entropy is %1 bits - + احتمال كلمة المرور هي %1 بت Weak password - + كلمة المرور ضعيفة Used in %1/%2 @@ -7234,31 +8517,31 @@ Please consider generating a new key file. Password is used %1 time(s) - + استخدُمت كلمة المرور %1 مرةاستخدُمت كلمة المرور مرةاستخدُمت كلمة المرور مرتاناستخدُمت كلمة المرور %1 مراتاستخدُمت كلمة المرور %1 مرةاستخدُمت كلمة المرور %1 مرة Password has expired - + انتهت صلاحية كلمة المرور Password expiry was %1 - + انتهاء صلاحية كلمة المرور كان %1 Password expires on %1 - + تنتهي صلاحية كلمة المرور في ٪1 Password is about to expire - + ستنتهي صلاحية كلمة المرور Password expires in %1 day(s) - + تنتهي صلاحية كلمة المرور في ٪1 يوم (أيام)تنتهي صلاحية كلمة المرور في ٪1 يوم (أيام)تنتهي صلاحية كلمة المرور في ٪1 يوم (أيام)تنتهي صلاحية كلمة المرور في ٪1 يوم (أيام)تنتهي صلاحية كلمة المرور في ٪1 يوم (أيام)تنتهي صلاحية كلمة المرور في %1 يوم/أيام Password will expire soon - + ستنتهي صلاحية كلمة المرور قريبا Version %1 @@ -7302,15 +8585,15 @@ Kernel: %3 %4 KeeShare - + KeeShare YubiKey - + YubiKey Quick Unlock - + فتح سريع Secret Service Integration @@ -7318,7 +8601,7 @@ Kernel: %3 %4 None - + لا شيء Enabled extensions: @@ -7330,7 +8613,7 @@ Kernel: %3 %4 about %1 month(s) - + حوالي ٪1 شهرحوالي ٪1 شهر (أشهر)حوالي شهرينحوالي ٪1 أشهرحوالي ٪1 شهرحوالي ٪1 شهر %1 week(s) @@ -7342,14 +8625,14 @@ Kernel: %3 %4 %1 hour(s) - + ٪1 ساعةساعةساعتين٪1 ساعات٪1 ساعة٪1 ساعة %1 minute(s) - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7362,7 +8645,7 @@ Kernel: %3 %4 Argon2%1 (%2 rounds, %3 KB) - + Argon2%1 (%2 جولات، %3 ك.بايت) SymmetricCipher::init: Invalid cipher mode. @@ -7400,18 +8683,6 @@ Kernel: %3 %4 file empty ملف فارغ - - malformed string - سلسلة غير صحيحة - - - missing closing quote - إغلاق الإقتباس مفقود - - - %1: (row, col) %2,%3 - - AES 256-bit @@ -7426,11 +8697,11 @@ Kernel: %3 %4 Argon2d (KDBX 4 – recommended) - + Argon2d (KDBX 4 – موصى به) Argon2id (KDBX 4) - + Argon2id (KDBX 4) AES-KDF (KDBX 4) @@ -7450,7 +8721,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - + مسح الحافظة في ٪1 ثانية…مسح الحافظة في ٪1 ثانية…مسح الحافظة في ٪1 ثانيتين…مسح الحافظة في ٪1 ثوان…مسح الحافظة في ٪1 ثانية…مسح الحافظة في ٪1 ثانية… Group @@ -7470,7 +8741,7 @@ Kernel: %3 %4 TOTP - + باسورد مؤقت Icon @@ -7491,16 +8762,16 @@ Kernel: %3 %4 %1 ms milliseconds - + %1 مل.ثانية%1 مل.ثانية%1 مل.ثانية%1 مل.ثانية%1 مل.ثانية%1 مل.ثانية %1 s seconds - + %1 ثانيةثانية واحدةثانيتان%1 ثواني%1 ثانية%1 ثانية Do you really want to delete the entry "%1" for good? - + هل تريد حقًا حذف الإدخال "%1" بشكل دائم؟ Do you really want to delete %n entry(s) for good? @@ -7512,15 +8783,15 @@ Kernel: %3 %4 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 إدخالاً إلى سلة المهملات؟هل تريد حقًا نقل %n إدخالاً إلى سلة المهملات؟هل تريد حقًا نقل %n إدخالاً إلى سلة المهملات؟هل تريد حقًا نقل %n إدخالاً إلى سلة المهملات؟هل تريد حقًا نقل %n إدخالاً إلى سلة المهملات؟هل تريد حقًا نقل %n إدخالاً إلى سلة المهملات؟ Move entry(s) to recycle bin? - + انقل الإدخالات إلى سلة المهملات؟انقل الإدخال إلى سلة المهملات؟انقل الإدخالات إلى سلة المهملات؟انقل الإدخالات إلى سلة المهملات؟انقل الإدخالات إلى سلة المهملات؟انقل الإدخالات إلى سلة المهملات؟ Replace references to entry? @@ -7532,7 +8803,7 @@ Kernel: %3 %4 User name - + اسم المستخدم Browser Statistics @@ -7540,7 +8811,7 @@ Kernel: %3 %4 Health Check - + فحص الصحة HIBP @@ -7580,7 +8851,7 @@ Kernel: %3 %4 lock all open databases - + قفل جميع قواعد البيانات المفتوحة key file of the database @@ -7590,22 +8861,18 @@ Kernel: %3 %4 read password of the database from stdin قراءة كلمة سر قاعدة البيانات من الدخل القياسي "stdin" - - allow app screen recordering and screenshots - - - - Locked databases. - - Database failed to lock. - + فشل قفل قاعدة البيانات. Another instance of KeePassXC is already running. نسخة أخرى من KeePassXC قيد التشغيل. + + KeePassXC is not running. No open database to lock + KeePassXC لا يعمل. لا توجد قاعدة بيانات مفتوحة لقفلها + Fatal error while testing the cryptographic functions. خطأ فادح أثناء اختبار وظائف التشفير. @@ -7614,18 +8881,14 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - خطأ - - Warning: Failed to prevent screenshots on a top level window! - - Database password: - + كلمة مرور قاعدة البيانات: Invalid Settings TOTP - + إعدادات غير صالحة Invalid Key @@ -7640,6 +8903,313 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. + + Warning: Failed to block screenshot capture on a top-level window. + تحذير: فشل حظر التقاط لقطة الشاشة في نافذة المستوى الأعلى. + + + Invalid Cipher + + + + Invalid KDF + KDF غير صالح + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + السماح بلقطات الشاشة وتسجيل التطبيق (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + لقد قُفلت قواعد البيانات. + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + أُلغِيَ طلب Passkeys + + + Invalid user verification + + + + Empty public key + المفتاح العام فارغ + + + Invalid URL provided + عنوان URL المقدم غير صالح + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + فشل في تعمية البيانات الرئيسية. + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + فشل فك تعمية البيانات الرئيسية. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + انتظر حتى انتهاء الوقت + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + المفضلة + + + File does not exist. + + + + Cannot open file: %1 + لا يمكن فتح الملف: %1 + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + فشل فك تعمية ملف json: ‏%1 + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + كلمة مرور خاطئة + + + Invalid encrypted data field + حقل بيانات مُعمَّاة غير صالحة + + + Invalid cipher list within encrypted data field + قائمة تعمية غير صالحة ضمن حقل البيانات المُعمَّاة + + + Cannot initialize cipher + + + + Cannot decrypt data + لا يمكن فك تعمية البيانات + + + Bitwarden Import + استورد Bitwarden + + + Archived + Tag for archived entries + مؤرشف + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + تنسيق ملف 1PUX غير صالح: بيانات التصدير مفقودة + + + 1Password Import + استورد 1Password + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + تكرارات KDF غير صالحة، لا يمكن فك تشفير ملف json + + + Unsupported format, ensure your Bitwarden export is password-protected + التنسيق غير مدعوم، تأكد من أن تصدير Bitwarden الخاص بك محمي بكلمة مرور + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + يتم دعم PBKDF وArgon2 فقط، ولا يمكن فك تعمية ملف json + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + لا يتم دعم الملفات المشفرة. + + + Proton Pass Import + استورد Proton Pass + + + Delete plugin data? + حذف بيانات الإضافة؟ + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + وسوم + QtIOCompressor @@ -7675,35 +9245,54 @@ Kernel: %3 %4 خطأ zlib داخلي: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + انقر الإدخالات نقرا مزدوجا لتحريرها. List of entry URLs - + قائمة روابط URL الإدخالات Entry has no URLs set - + لم يتم تعيين روابط URL للإدخال Allowed URLs - + روابط URL المسموح بها Entry has no Browser Integration settings @@ -7711,15 +9300,15 @@ Kernel: %3 %4 Denied URLs - + روابط URL المرفوضة (Excluded) - + (مستبعد) This entry is being excluded from reports - + تم استبعاد هذا الإدخال من التقارير Please wait, browser statistics is being calculated… @@ -7727,7 +9316,7 @@ Kernel: %3 %4 No entries with a URL, or none has browser extension settings saved. - + لا توجد إدخالات تحتوي على عنوان URL، أو لم يُحفظ إعدادات امتداد المتصفح. Title @@ -7735,61 +9324,70 @@ Kernel: %3 %4 Path - + مسار URLs - + روابط URL Edit Entry… - + تعديل الإدخالة… Delete Entry(s)… - + حذف الإدخال…حذف الإدخال…حذف الإدخالان…حذف الإدخالات…حذف الإدخالات…حذف الإدخالات… Exclude from reports - + استبعاد من التقارير + + + Expire Entry(s)… + + + + Only show entries that have a URL + أظهر الإدخالات التي لها عنوان URL فقط + + + Only show entries that have been explicitly allowed or denied + أظهِر فقط الإدخالات التي تم السماح بها أو رفضها بشكل صريح + + + Show expired entries + أظهِر الإدخالات منتهية الصلاحية + + + (Expired) + (منتهي) + + + Delete plugin data from Entry(s)… + ReportsWidgetHealthcheck - Exclude expired entries from the report - + Show expired entries + أظهِر الإدخالات منتهية الصلاحية - Also show entries that have been excluded from reports - + (Expired) + (منتهي) Hover over reason to show additional details. Double-click entries to edit. - - - - Bad - Password quality - سيئ + تحوم فوق السبب لعرض تفاصيل إضافية. قم بالنقر المزدوج على الإدخالات للتعديل. Bad — password must be changed - - - - Poor - Password quality - ضعيف جدا + سيئ - يجب تغيير كلمة المرور Poor — password should be changed - - - - Weak - Password quality - ضعيفة + ضعيف - يجب تغيير كلمة المرور Weak — consider changing the password @@ -7797,11 +9395,11 @@ Kernel: %3 %4 (Excluded) - + (مستبعد) This entry is being excluded from reports - + تم استبعاد هذا الإدخال من التقارير Please wait, health data is being calculated… @@ -7817,7 +9415,7 @@ Kernel: %3 %4 Path - + مسار Score @@ -7829,22 +9427,30 @@ Kernel: %3 %4 Edit Entry… - + تعديل الإدخالة… Delete Entry(s)… - + حذف الإدخال…حذف الإدخال…حذف الإدخالان…حذف الإدخالات…حذف الإدخالات…حذف الإدخالات… Exclude from reports - + استبعاد من التقارير + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + أظهِر الإدخالات التي تم استبعادها من التقارير ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - + تنبيه: يتطلب هذا التقرير إرسال معلومات إلى خدمة Have I Been Pwned عبر الإنترنت (https://haveibeenpwned.com). إذا تابعت، فسيتم تجزئة كلمات مرور قاعدة بياناتك بطريقة مُعمَّاة وسيتم إرسال الأحرف الخمسة الأولى من هذه التجزئة بشكل آمن إلى هذه الخدمة. تظل قاعدة بياناتك آمنة ولا يمكن إعادة تشكيلها من هذه المعلومات. ومع ذلك، سيتم عرض عدد كلمات المرور التي ترسلها وعنوان IP الخاص بك لهذه الخدمة. Perform Online Analysis @@ -7852,15 +9458,15 @@ Kernel: %3 %4 Also show entries that have been excluded from reports - + أظهِر أيضًا الإدخالات التي تم استبعادها من التقارير This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - + لا يحتوي هذا الإصدار من KeePassXC على وظائف الشبكة. يلزم الاتصال بالشبكة للتحقق من كلمات مرورك في قواعد بيانات Have I Been Pwned. Congratulations, no exposed passwords! - + تهانينا، لا توجد كلمات مرور مكشوفة! Title @@ -7868,54 +9474,54 @@ Kernel: %3 %4 Path - + مسار Password exposed… - + كلمة المرور مُسرّبة… (Excluded) - + (مستبعد) This entry is being excluded from reports - + تم استبعاد هذا الإدخال من التقارير once Password exposure amount - + مرة up to 10 times Password exposure amount - + حتى 10 مرات up to 100 times Password exposure amount - + حتى 100 مرة up to 1000 times Password exposure amount - + حتى 1000 مرة up to 10,000 times Password exposure amount - + حتى 10,000 مرة up to 100,000 times Password exposure amount - + حتى 100,000 مرة up to a million times Password exposure amount - + حتى مليون مرة millions of times @@ -7924,14 +9530,85 @@ Kernel: %3 %4 Edit Entry… - + تعديل الإدخالة… Delete Entry(s)… - + حذف الإدخال…حذف الإدخال…حذف الإدخالان…حذف الإدخالات…حذف الإدخالات…حذف الإدخالات… Exclude from reports + استبعاد من التقارير + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + تصدير + + + Import + إستيراد + + + List of entry URLs + قائمة روابط URL الإدخالات + + + Title + العنوان + + + Path + مسار + + + Username + اسم المستخدم + + + URLs + روابط URL + + + Edit Entry… + تعديل الإدخال… + + + Delete Entry(s)… + حذف الإدخال…حذف الإدخال…حذف الإدخالان…حذف الإدخالات…حذف الإدخالات…حذف الإدخالات… + + + Relying Party + + + + Show expired entries + أظهِر الإدخالات منتهية الصلاحية + + + (Expired) + (منتهي) + + + Export Confirmation + تأكيد التصدير + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + الرجاء الانتظار، جارٍ تحديث قائمة الإدخالات التي تحتوي على مفاتيح المرور... + + + No entries with passkeys. @@ -7939,7 +9616,7 @@ Kernel: %3 %4 ReportsWidgetStatistics Hover over lines with error icons for further information. - + مرّر فوق الخطوط التي تحتوي على أيقونات الأخطاء للحصول على مزيد من المعلومات. Name @@ -7955,11 +9632,11 @@ Kernel: %3 %4 Database name - + اسم قاعدة البيانات Description - + الوصف Location @@ -7971,23 +9648,23 @@ Kernel: %3 %4 Last saved - + آخر حفظ Unsaved changes - + التغييرات غير المحفوظة yes - + نعم no - + لا The database was modified, but the changes have not yet been saved to disk. - + عدلّت قاعدة البيانات، ولكن لم تُحفظ التغييرات على القرص بعد. Number of groups @@ -7995,63 +9672,63 @@ Kernel: %3 %4 Number of entries - + عدد الإدخالات Number of expired entries - + عدد المدخلات منتهية الصلاحية The database contains entries that have expired. - + تحتوي قاعدة البيانات على إدخالات منتهية الصلاحية. Unique passwords - + كلمات مرور فريدة Non-unique passwords - + كلمات مرور غير فريدة More than 10% of passwords are reused. Use unique passwords when possible. - + يتم إعادة استخدام أكثر من 10% من كلمات المرور. استخدم كلمات مرور فريدة عندما يكون ذلك ممكنًا. Maximum password reuse - + الحد الأقصى لإعادة استخدام كلمة المرور Some passwords are used more than three times. Use unique passwords when possible. - + يتم استخدام بعض كلمات المرور أكثر من ثلاث مرات. استخدم كلمات مرور فريدة عندما يكون ذلك ممكنًا. Number of short passwords - + عدد كلمات المرور القصيرة Recommended minimum password length is at least 8 characters. - + الحد الأدنى الموصى به لطول كلمة المرور هو 8 أحرف على الأقل. Number of weak passwords - + عدد كلمات المرور الضعيفة Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - + نوصي باستخدام كلمات مرور طويلة وعشوائية بتقييم "جيد" أو "ممتاز". Entries excluded from reports - + الإدخالات المستبعدة من التقارير Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. - + باستثناء الإدخالات من التقارير، مثال: نظرًا لأنه من المعروف أن كلمات المرور الخاصة بهم سيئة، فهذا لا يمثل مشكلة بالضرورة ولكن يجب عليك مراقبتهم. Average password length - + متوسط ​​طول كلمة المرور %1 characters @@ -8059,22 +9736,22 @@ Kernel: %3 %4 Average password length is less than ten characters. Longer passwords provide more security. - + متوسط ​​طول كلمة المرور أقل من عشرة أحرف. توفر كلمات المرور الأطول مزيدًا من الأمان. SSHAgent Agent connection failed. - + فشل اتصال العميل. Agent protocol error. - + خطأ في بروتوكول العميل. No agent running, cannot add identity. - + لا يوجد عميل قيد التشغيل، ولا يمكن إضافة هوية. Key identity ownership conflict. Refusing to add. @@ -8082,7 +9759,7 @@ Kernel: %3 %4 Agent refused this identity. Possible reasons include: - + رفض العميل هذه الهوية. تشمل الأسباب المحتملة ما يلي: The key has already been added. @@ -8090,22 +9767,30 @@ Kernel: %3 %4 Restricted lifetime is not supported by the agent (check options). - + لا يدعم العميل مدة الحياة المقيدة (حدد الخيارات). A confirmation request is not supported by the agent (check options). - + طلب التأكيد غير مدعوم من قبل الوكيل (حدد الخيارات). Security keys are not supported by the agent or the security key provider is unavailable. - + مفاتيح الأمان غير مدعومة من قبل الوكيل أو أن موفر مفتاح الأمان غير متوفر. No agent running, cannot remove identity. - + لا يوجد عميل قيد التشغيل، ولا يمكن إزالة الهوية. No agent running, cannot list identities. + لا يوجد عميل قيد التشغيل، ولا يمكن إدراج الهويات. + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. @@ -8113,55 +9798,55 @@ Kernel: %3 %4 SearchHelpWidget Search Help - + تعليمات البحث Search terms are as follows: [modifiers][field:]["]term["] - + مصطلحات البحث هي كما يلي: [المتغيرات] [الحقل: ] ["] مصطلح ["] Every search term must match (ie, logical AND) - + يجب أن يتطابق كل مصطلح بحث (أي، AND منطقية) Modifiers - + المعدّلات exclude term from results - + استبعاد مصطلح من النتائج match term exactly - + طابق مصطلح بالضبط use regex in term - + استخدم تعبير نمطي في المصطلح Fields - + الحقول Term Wildcards - + أحرف بدل المصطلح match anything - + طابق أي شيء match one - + طابق واحد logical OR - + OR المنطقية Examples - + أمثلة @@ -8172,16 +9857,20 @@ Kernel: %3 %4 Search Help - + تعليمات البحث + + + Save Search + حفظ البحث Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + بحث (%1)... Case sensitive - + حساس لحالة الأحرف Limit search to selected group @@ -8196,7 +9885,7 @@ Kernel: %3 %4 PID - + هوية العملية DBus Address @@ -8204,14 +9893,14 @@ Kernel: %3 %4 Manage - + أدِر SettingsDatabaseModel File Name - + اسم الملف Group @@ -8219,14 +9908,14 @@ Kernel: %3 %4 Manage - + أدِر SettingsWidgetFdoSecrets Options - + خيارات Enable KeepassXC Freedesktop.org Secret Service integration @@ -8238,39 +9927,23 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - + أظهِر الإشعارات عند استرداد كلمات المرور من قبل العملاء <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p> في حالة التفعيل، يجب تأكيد أي محاولة لقراءة كلمة المرور. وبخلاف ذلك، يمكن للعملاء قراءة كلمات المرور دون تأكيد عند إلغاء قفل قاعدة البيانات.</p><p> يُغطي هذا الخيار فقط الوصول إلى كلمة المرور الخاصة بالإدخال. يمكن للعملاء دائمًا تعداد عناصر قواعد البيانات المكشوفة والاستعلام عن صفاتها. enable" dir="ltr" contenteditable="false" data-copy-tag="" data-index="5" data-position="2" data-type="end" title="</p>" data-tag="p" data-translatable="{TX-PL-TRANSLATABLE}" spellcheck="false">5enable" dir="ltr" contenteditable="false" data-copy-tag="" data-index="3" data-position="2" data-type="end" title="</body>" data-tag="body" data-translatable="{TX-PL-TRANSLATABLE}" spellcheck="false">3enable" dir="ltr" contenteditable="false" data-copy-tag="" data-index="1" data-position="2" data-type="end" title="</html>" data-tag="html" data-translatable="{TX-PL-TRANSLATABLE}" spellcheck="false">1 Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + تأكيد متى يتم استرداد كلمات المرور من قبل العملاء Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching - + المطالبة بإلغاء قفل قاعدة البيانات قبل البحث Exposed database groups: @@ -8278,7 +9951,7 @@ Kernel: %3 %4 Authorization - + التفويض These applications are currently connected: @@ -8286,18 +9959,26 @@ Kernel: %3 %4 <b>Warning:</b> - + <b>تحذير:</b> Save current changes to activate the plugin and enable editing of this section. + حفظ التغييرات الحالية لتفعيل المكوّن الإضافي وتفعيل تعديل هذا القسم. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>يؤدي ذلك إلى تحسين التوافق مع بعض التطبيقات التي تبحث عن كلمة المرور دون فتح قاعدة البيانات أولاً. </p><p> لكن تمكين هذا قد يؤدي أيضًا إلى تعطل العميل إذا تعذر إلغاء قفل قاعدة البيانات خلال مهلة معينة. (عادةً 25 ثانية، ولكن قد يتم تعيين قيمة مختلفة في التطبيقات.) </p></body></html> + SettingsWidgetKeeShare Active - + نشط Allow KeeShare imports @@ -8305,31 +9986,31 @@ Kernel: %3 %4 Allow import - + السماح بالاستيراد Allow KeeShare exports - + اسمح بتصدير KeeShare Allow export - + السماح بالتصدير Only show warnings and errors - + إظهار التحذيرات والأخطاء فقط Own certificate - + شهادة خاصة Signer: - + المُوقّع Generate new certificate - + ولّد شهادة جديدة Generate @@ -8337,11 +10018,11 @@ Kernel: %3 %4 Fingerprint: - + البصمة: Signer name field - + حقل اسم المُوقّع Fingerprint @@ -8352,14 +10033,14 @@ Kernel: %3 %4 ShareExport Could not write export container. - + لم يتمكن من كتابة حاوية التصدير. ShareImport Successful import - + نجح الاستيراد @@ -8374,7 +10055,7 @@ Kernel: %3 %4 Imported from %1 - + تم الاستيراد من ٪1 Multiple import source path to %1 in %2 @@ -8382,33 +10063,56 @@ Kernel: %3 %4 Conflicting export target path %1 in %2 - + مسار هدف التصدير المتعارض %1 في %2 Export to %1 failed (%2) - + فشل التصدير إلى %1 (%2) Export to %1 successful (%2) - + صُدّر إلى %1 بنجاح (%2) Export to %1 - + صدّر إلى %1 TagModel - All - + Clear Search + إمسح البحث + + + All Entries + كل الإدخالات Expired - + منتهية الصلاحية Weak Passwords + كلمات مرور ضعيفة + + + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? @@ -8424,7 +10128,7 @@ Kernel: %3 %4 Expires in <b>%n</b> second(s) - + تنتهي صلاحيته في <b>٪n</b> ثانية (ثوان)تنتهي صلاحيته في <b>٪n</b> ثانية (ثوان)تنتهي صلاحيته في <b>٪n</b> ثانية (ثوان)تنتهي صلاحيته في <b>٪n</b> ثانية (ثوان)تنتهي صلاحيته في <b>٪n</b> ثانية (ثوان)تنتهي صلاحيته في <b>%n</b> ثانية/ثواني @@ -8436,15 +10140,15 @@ Kernel: %3 %4 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. Closing in %1 seconds. - + الاغلاق في ٪1 ثواني. @@ -8455,7 +10159,7 @@ Kernel: %3 %4 Secret Key: - + المفتاح السري: Secret key must be in Base32 format @@ -8467,7 +10171,7 @@ Kernel: %3 %4 Default settings (RFC 6238) - + الإعدادات الافتراضية (RFC 6238) Steam® settings @@ -8508,7 +10212,7 @@ Kernel: %3 %4 Invalid TOTP Secret - + سر TOTP غير صالح You have entered an invalid secret key. The key must be in Base32 format. @@ -8517,29 +10221,29 @@ Example: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings - + أكّد إزالة إعدادات TOTP Are you sure you want to delete TOTP settings for this entry? - + هل أنت متأكد أنك تريد حذف إعدادات TOTP لهذا الإدخال؟ URLEdit Invalid URL - + URL غير صالح UpdateCheckDialog Checking for updates - + جارِ التحقق من وجود تحديثات Checking for updates… - + جارِ التحقق من وجود تحديثات… Close @@ -8547,19 +10251,19 @@ Example: JBSWY3DPEHPK3PXP Software Update - + تحديث النظام An error occurred when trying to retrieve update information, please try again later. - + حدث خطأ أثناء محاولة استرداد معلومات التحديث، يرجى المحاولة مرة أخرى لاحقًا. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>تتوفر نسخة جديدة.</strong><br/>KeePassXC %1 يمكن <a href="https://keepassxc.org/download/">تنزيلها هنا</a>. You have the latest version of KeePassXC - + لديك أحدث إصدار من KeePassXC @@ -8568,44 +10272,36 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database إبدأ بتخزين كلمات مرورك بأمان في قاعدة بيانات KeePassXC - - Create new database - أنشىء قاعدة بيانات جديدة - - - Open existing database - فتح قاعدة بيانات حالية - - - Import from KeePass 1 - استيراد من KeePass 1 - - - Import from 1Password - - - - Import from CSV - استيراد من CSV - Recent databases المفتوحة مؤخرًا Open a recent database - + فتح قاعدة بيانات مفتوحة مؤخرًا Welcome to KeePassXC %1 مرحبا بك في KeePassXC %1 + + Create Database + + + + Open Database + افتح قاعدة بيانات + + + Import File + استورد الملف + WinUtils Invalid key code - + رمز المفتاح غير صالح Global shortcut already registered to %1 @@ -8616,61 +10312,30 @@ Example: JBSWY3DPEHPK3PXP - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: - + عام: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + لم نتمكن من العثور على واجهة لمفتاح حماية عتادي بالرقم التسلسلي %1. يرجى توصيله للمتابعة. YubiKeyEditWidget - - Refresh hardware tokens - - - - Refresh - تحديث - Hardware key slot selection - + اختيار فتحة مفتاح الأجهزة Could not find any hardware keys! - + تعذر العثور على أي مفاتيح الأجهزة! Selected hardware key slot does not support challenge-response! - + فتحة مفتاح الحماية العتادية المُحددة لا تدعم ميزة التحدي والاستجابة! Challenge-Response @@ -8692,70 +10357,70 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… - + الكشف عن مفاتيح الأجهزة... No hardware keys detected + يم يتم الكشف عن أي مفتاح الأجهزة + + + Refresh hardware keys + أنعش مفاتيح الحماية العتادية + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> - - - YubiKeyInterface - %1 Invalid slot specified - %2 + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - - Could not find or access hardware key with serial number %1. Please present it to continue. - + تعذر العثور على مفتاح حماية عتادي الذي يحمل الرقم التسلسلي %1 أو الوصول إليه. يرجى تقديمه للمتابعة. Hardware key is locked or timed out. Unlock or re-present it to continue. - + مفتاح حماية عتادي مُقفل أو انتهت مهلته. قم بإلغاء قفله أو إعادة تقديمه للمتابعة. Hardware key was not found or is not configured. - + لم يتم العثور على مفتاح حماية عتادي أو لم يتم تكوينه. Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + اضغط + + + Passive + USB Challenge-Response Key no interaction required + سلبي + YubiKeyInterfaceUSB Unknown - - - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - + مجهول Press @@ -8771,25 +10436,31 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - - Could not find hardware key with serial number %1. Please plug it in to continue. - + لم نتمكن من العثور على مفتاح حماية عتادي بالرقم التسلسلي %1. يرجى توصيله للمتابعة. Hardware key timed out waiting for user interaction. - + انتهت مهلة مفتاح حماية عتادي في انتظار تفاعل المستخدم. A USB error occurred when accessing the hardware key: %1 - + حدث خطأ USB عند الوصول إلى المفتاح الحماية العتادي: %1 Failed to complete a challenge-response, the specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_bg.ts b/share/translations/keepassxc_bg.ts index 0575461b9..87173aecc 100644 --- a/share/translations/keepassxc_bg.ts +++ b/share/translations/keepassxc_bg.ts @@ -11,7 +11,7 @@ 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. @@ -23,11 +23,11 @@ Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. - Специални благодарности от екипа на KeePassXC отидете на debfx за създаването на оригиналния KeePassX. + Специални благодарности от екипа на KeePassXC към debfx за създаването на оригиналния KeePassX. Contributors - Контрибутури + Сътрудници <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> @@ -35,15 +35,15 @@ Debug Info - Информация за отстраняване на грешки + Информация за отстраняване на дефекти Include the following information whenever you report a bug: - Включвайте следната информация, когато съобщавате за грешка: + Когато съобщавате за дефект включвайте следната информация: Copy to clipboard - Копиране в клипборда + Копиране в междинната памет @@ -54,7 +54,7 @@ Non-existing/inaccessible executable path. Please double-check the client is legit. - + Несъществуващ/недостъпен път към изпълнимия файл. Уверете се, че клиентът е достоверен. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> @@ -66,7 +66,7 @@ PID - + PID Executable @@ -78,41 +78,41 @@ Details - - - - Remember - Запомни - - - Allow Selected - Разреши избраните + Подробности Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - + Решението ви ще бъде запомнено докато изискващият клиент и KeePassXC работят. + + + Remember + Запомняне + + + Allow Selected + Разрешаване избраните Deny All && Future - + &Забраняване на всички и за в бъдеще Allow All && &Future - + &Разрешаване на всички и за в бъдеще AccessControlDialog::DenyButton Deny for this program - + Забраняване за приложението AgentSettingsWidget Enable SSH Agent integration - Включване на интеграция на SSH Agent + Включване на съчетаване с агент на SSH Use Pageant @@ -122,13 +122,17 @@ Use OpenSSH Използване на OpenSSH + + Use both agents + Използване и на двата агента + SSH_AUTH_SOCK override - SSH_AUTH_SOCK презаписване + Презаписване на SSH_AUTH_SOCK SSH_AUTH_SOCK value - SSH_AUTH_SOCK стойност + Стойност на SSH_AUTH_SOCK (empty) @@ -140,19 +144,15 @@ SSH_SK_PROVIDER override - + Презаписване на SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Няма SSH Agent сокет. Уверете, че съществува променлива на средата SSH_AUTH_SOCK или я презапишете. + Не е достъпен сокет на агент на SSH. Уверете, че съществува променлива на средата SSH_AUTH_SOCK или я презапишете. SSH Agent connection is working! - SSH Agent връзката работи! - - - Use both agents - + Има връзка с агента на SSH! @@ -169,13 +169,17 @@ Security Сигурност + + This setting cannot be enabled when minimize on unlock is enabled. + Настройката не може да бъде включена докато друга настройка - скриване на прозореца при отключване е включена. + Access error for config file %1 - Грешка при достъп на конфигурационния файл %1 + Грешка при достъп до файла с настройките %1 Icon only - Само икона + Само пиктограма Text only @@ -183,11 +187,11 @@ Text beside icon - Текст до иконата + Текст до пиктограмите Text under icon - Текст под икона + Текст под пиктограмите Follow style @@ -199,31 +203,63 @@ Monochrome (light) - Монохромен(светлъл) + Едноцветен (светлъл) Monochrome (dark) - Монохромен(тъмен) + Едноцветен (тъмен) Colorful - Цветни + Цветен You must restart the application to set the new language. Would you like to restart now? - Трябва да рестартирате приложението, за да настроите нов език. Желаете ли да рестартирате сега? - - - Reset Settings? - Да се нулират настройките? - - - Are you sure you want to reset all general and security settings to default? - Наистина ли искате да нулирате стойностите по подразбиране на всички общи настройки и настройки за защита? + За да настроите нов език, приложението трябва да рестартира. Желаете ли приложението да рестартира сега? Select backup storage directory - + Изберете папка, в която да бъдат за запазвани резервните копия + + + Confirm Reset + Потвърждаване на нулиране + + + Are you sure you want to reset all settings to default? + Желаете ли всички настройки да бъдат нулирани? + + + Import KeePassXC Settings + Внасяне на настройки на KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Грешка при внасяне на настройки от %1: не е приемлив файл с настройки. + + + Export KeePassXC Settings + Изнасяне на настройки на KeePassXC + + + Small + Малък + + + Normal + Стандартен + + + Medium + Среден + + + Large + Голям + + + Custom + Потребителски @@ -238,58 +274,43 @@ Start only a single instance of KeePassXC - Започнете само една инстанция на KeePassXC + Поддържане на един екземпляр на KeePassXC Automatically launch KeePassXC at system startup - Автоматично стартиране на KeePassXC при стартиране на системата + Стартиране на KeePassXC заедно със системата Minimize window at application startup - Минимизиране на прозореца при стартиране на приложението + Скриване на прозореца при отваряне на приложението Minimize window after unlocking database - Намаляване на прозореца след отключване на базата данни + Скриване на прозореца при отключване на хранилище Remember previously used databases - Запаметяване на предишни използвани бази данни + Запомняне на последно използваните + + + recent files + хранилища Load previously open databases on startup - Зареждане на последно отворената бази данни при стартиране + Зареждане на отворените хранилища при стартиране Remember database key files and security dongles - Запомни файл-ключовете и защитните устройства + Запомняне на файловете с ключ и преносимите защитни устройства за хранилищата Check for updates at application startup once per week - Проверка за актуализации при стартиране на приложението веднъж седмично + Седмична проверка за обновяване при стартиране на приложението Include beta releases when checking for updates - Включване на бета версии при проверка за актуализации - - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - + При проверка за обновяване да се проверяват и бета изданията File Management @@ -297,51 +318,39 @@ Automatically save after every change - Автоматично записване след всяка промяна + Автоматично запазване след всяка промяна Automatically save when locking database - Запази автоматично при заключване на базата данни + Автоматично запазване при заключване на хранилището Automatically save non-data changes when locking database - При заключване на базата данни, запази автоматично промените, които не засягат данните. + Автоматично запазване на промени, които не са свързани с данни, при заключване на хранилището Automatically reload the database when modified externally - Автоматично презареждане на базата данни при външно модифициране + Автоматично презареждане на хранилището, ако е променено от друго приложение Backup database file before saving - Архивиране на файла с базата данни преди записване - - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - + Резервно копие на хранилището преди запазване {DB_FILENAME}.old.kdbx - - - - Choose... - + {DB_FILENAME}.old.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - + Използване на алтернативен метод за запазване (при проблеми с Dropbox, Google Drive, GVFS, и т.н.) Temporary file moved into place - + Временният файл е преместен на мястото си Directly write to database file (dangerous) - + Директно писане във файла на хранилището (опасно) Entry Management @@ -349,7 +358,7 @@ Use group icon on entry creation - Използване на груповата икона при създаване на запис + Новите записи получават пиктограмата на групата Minimize when opening a URL @@ -357,7 +366,7 @@ Hide window when copying to clipboard - Скриване на прозореца при копиране в клипборда + Скриване на прозореца при копиране Minimize @@ -369,16 +378,16 @@ Favicon download timeout: - Таймаут за изтегляне на фавикон: + Изчакване при изтегляне на пиктограми: Website icon download timeout in seconds - Таймаут на изтеглянето на иконата на уеб сайта в секунди + Изчакване при изтегляне на пиктограмата на страницата, в секунди sec Seconds - сек + сек User Interface @@ -390,7 +399,7 @@ Movable toolbar - Преместваща се лента с инструменти + Преместваема лента с инструменти Language selection @@ -402,15 +411,19 @@ (restart program to activate) - (рестартиране програма за активиране) + (необходим рестарт) Toolbar button style: Стил на бутоните от лентата с инструменти: + + Show passwords in color + Показване на паролите в цвят + Use monospaced font for notes - Използване на еднопространствен шрифт за бележките + Използване на равноширок шрифт за бележките Minimize instead of app exit @@ -418,15 +431,15 @@ Show a system tray icon - Показване на икона в системния панел + Показване на пиктограма в системния панел Tray icon type - Тип иконата в системната лента + Вид на пиктограмата в системния панел Tray icon type: - Тип иконата в системната лента: + Вид на пиктограмата в системния панел: Hide window to system tray when minimized @@ -434,84 +447,149 @@ Reset settings to default… - Нулиране на настройките по подразбиране... + Нулиране на настройките... Auto-Type - Auto-Type + Автоматично въвеждане 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-Type + Винаги да пита преди автоматично въвеждане Hide expired entries from Auto-Type - Скрий изтекли записи от автоматично попълване + Скриване на записите с изтекла давност при автоматично въвеждане Re-lock previously locked database after performing Auto-Type - Повторно заключване на предварително заключена база данни след извършване на Auto-Type + Повторно заключване на преди това заключено хранилище след автоматично въвеждане Auto-Type start delay: - Забавяне на Auto-Type включването: + Изчакване преди автоматично въвеждане: Global Auto-Type shortcut: - Глобален Auto-Type пряк път: + Клавишна комбинация за автоматично въвеждане: Auto-type start delay milliseconds - Забавяне на auto-type старта милисекунди + Изчакване преди автоматично въвеждане, милисекунди ms Milliseconds - ms + мс Auto-Type typing delay: - Забавяне на auto-type въвеждането: + Изчакване преди автоматично въвеждане: Global auto-type shortcut - Глобален пряк път за auto-type + Клавишна комбинация за автоматично въвеждане Auto-type character typing delay milliseconds - Забавяне на auto-type въвеждане на знаци милисекунди + Изчакване преди въвеждане на знак, милисекунди Remember last typed entry for: - + Запомняне на последния въведен запис за: + + + On database unlock, show entries that will expire within + При отключване на хранилище се показват записите, с изтичаща валидност след + + + On database unlock, show entries that will expire within + При отключване на хранилище се показват записите, с изтичаща валидност след + + + days + number of days warning for password expiration + дни + + + Destination format: + Целеви формат: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> се заменя с името на файла на хранилището, но без разширението</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> се заменя с избрания формат на датата (стандартно: dd_MM_yyyy_hh-mm-ss)</p><p>За подробности прочетете ръководството на потребителя</p></body></html> + + + Choose folder... + Избиране на папка… + + + Show confirmation before moving entries to recycle bin + Потвърждаване при преместване на записи в кошчето + + + Copy data on double clicking field in entry view + Копиране на данните при двойно щракване върху поле в изгледа за въвеждане + + + Show toolbar + Лентата с инструменти + + + Show the menu bar by pressing the Alt key + При натискане на клавиш Alt се показва лентата с менюто + + + Show menubar + Лента с менюто + + + Import settings… + Внасяне на настройки… + + + Export settings… + Изнасяне на настройки… + + + Open browser on double clicking URL field in entry view + Отваряне на мрежовия четец при двойно щракване върху интернет адрес в изгледа за въвеждане + + + Font size: + Размер на шрифта + + + Font size selection + Списък с размери на шрифта ApplicationSettingsWidgetSecurity Timeouts - Таймаути + Времена на изчакване Database lock timeout seconds - Секунди за заключване на базата данни + Изчакване преди заключване на хранилище, секунди sec Seconds - сек + сек Clear clipboard after - Изчистване на клипборда след + Изчистване междинна памет след Clear search query after @@ -520,15 +598,15 @@ min Minutes - мин + мин Clipboard clear seconds - Изчистване на клипборда секунди + Изчистване на междинна памет, секунди Lock databases after inactivity of - Заключване на бази данни след бездействие от + Заключване на хранилищата след бездействие от Convenience @@ -536,43 +614,27 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Бързо отключване на хранилище (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed - Заключване на базите данни при заключена сесия или затваряне на капака + Заключване на хранилищата при заключена сесия или затваряне на капака Lock databases after minimizing the window - Заключи базите данни след минимизиране на прозореца - - - Require password repeat when it is visible - Изискване на парола, когато е видима + Заключи на хранилищата след минимизиране на прозореца Hide passwords when editing them - Скриване на пароли при редактирането им + Скриване на паролите при променянето им Use placeholder for empty password fields - Използване на контейнер за празни полета за парола + Използване на заместител за празните полета за парола Hide passwords in the entry preview panel - Скриване на паролите в панела за преглед на записи - - - Hide entry notes by default - Скриване на бележките по подразбиране - - - Move entries to recycle bin without confirmation - Преместване на записите в кошчето без потвърждаване - - - Enable double click to copy the username/password entry columns - + Скриване на паролите в панела за преглед на запис Privacy @@ -580,67 +642,74 @@ Use DuckDuckGo service to download website icons - Използвайте DuckDuckGo за изтегляне на иконите на уебсайта + Пиктограмите да се изтеглят през услугата на DuckDuckGo + + + Hide TOTP in the entry preview panel + Скриване на TOTP в панела за преглед на запис + + + Lock databases when switching user + Заключване на хранилищата при смяна на потребител + + + Lock Options + Настройки на заключване + + + Hide notes in the entry preview panel + Скриване на бележката в панела за преглед на запис AutoType The requested Auto-Type sequence cannot be used due to an error: - + Заявената последователност за автоматично въвеждане не може да бъде използвана поради грешка: Auto-Type Error - + Грешка при автоматично въвеждане Permission Required - Нужно е разрешение + Необходими са права за достъп KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - KeePassXC изисква разрешение за достъпност, за да се извърши базово ниво на Auto-Type. Ако вече сте дали разрешение, може да се наложи да рестартирате KeePassXC. + За да извършва основно ниво на автоматично въвеждане KeePassXC изисква разрешението за достъпност. Ако вече сте го дали, може да се наложи да рестартирате KeePassXC. KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC изисква разрешението Accessibility and Screen Recorder, за да се извърши глобален Auto-Type. За да намерите записи, е необходимо да използвате заглавието на прозореца. Ако вече сте дали разрешение, може да се наложи да рестартирате KeePassXC. + За да извършва глобално автоматично въвеждане KeePassXC изисква разрешението за достъпност и записване на екрана. За да се намират записи като се използва заглавието на прозореца е необходимо записване на екрана. Ако вече сте го дали, може да се наложи да рестартирате KeePassXC. Invalid entry provided - + Недопустим запис Bracket imbalance detected, found extra { or } - + Несъответстващ брой фигурни скоби, има излишни { или } Too many repetitions detected, max is %1: %2 - + Открито е несъответстващо количество повторения, допускат се %1: %2 Very slow key press detected, max is %1: %2 - + Открито е твърде бавно натискане на клавиш, максимум %1: %2 Very long delay detected, max is %1: %2 - + Открито е продължително изчакване, максимум %1: %2 - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + Записът няма атрибут за PICKCHARS: %1 Invalid placeholder: %1 - + Неправилен заместител: %1 @@ -659,7 +728,7 @@ Default sequence - Последователност по подразбиране + Подразбирана последователност @@ -674,7 +743,7 @@ Username - Портебител + Потребител Sequence @@ -683,32 +752,32 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + Прекъсната поредица: режим Caps Lock е включен Sequence aborted: Modifier keys held by user - + Поредицата е прекъсната: задържани клавиши-модификатори от потребителя Unable to get valid keycode for key: - + Неуспешно получаване на правилен код за клавишите: + + + Trying to send invalid keyboard symbol. + Опит за изпращане на неприемлив символ от клавиатурата. AutoTypeSelectDialog Auto-Type - KeePassXC - Auto-Type - KeePassXC + Автоматично въвеждане - KeePassXC Double click a row to perform Auto-Type or find an entry using the search: - + Щракнете двукратно върху ред, за автоматично въвеждане или намерете запис, като използвате търсачката: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -717,19 +786,24 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>За да намерите определен запис в отворените хранилища, може да използвате разширени заявки за търсене. Следните клавишни комбинации ще ви бъдат полезни:<br/> +Ctrl+F - Превключва търсенето<br/> +Ctrl+1 - Въвеждане на потребителско име<br/> +Ctrl+2 - Въвеждане на парола<br/> +Ctrl+3 - Въвеждане на TOTP<br/> +Ctrl+4 - Използване на виртуална клавиатура (само за Windows)</p> Search all open databases - + Търсене във всички отворени хранилища Search… - + Търсене… Type Sequence - + Въведете последователност Cancel @@ -737,38 +811,38 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - + Въведете {USERNAME} Type {PASSWORD} - + Въведете {PASSWORD} Type {TOTP} - + Въведете {TOTP} Copy Username - + Копиране на потребителско име Copy Password - + Копиране на парола Copy TOTP - + Копиране на TOTP Use Virtual Keyboard - + Използване на виртуална клавиатура BrowserAccessControlDialog KeePassXC - Browser Access Request - KeePassXC - заявка за достъп до браузъра + KeePassXC - заявка за достъп от мрежов четец %1 is requesting access to the following entries: @@ -776,38 +850,38 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Remember access to checked entries - Запомни достъпа до избраните записи + Запомняне на достъпа до избраните записи Remember - Запомни + Запомняне Allow access to entries - Разреши достъп до записите + Разрешаване на достъп до записите Allow Selected - Разреши избраните + Разрешаване избраните Deny All - Забрани всички + Забраняване всички Disable for this site - Изключи за този сайт + Изключване за тази страница + + + Undo + Отменяне BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser запази запис - Ok - OK + Добре Cancel @@ -816,117 +890,172 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> You have multiple databases open. Please select the correct database for saving credentials. - Имате отворени няколко бази данни. -Изберете правилната база данни за записване на идентификационни данни. + Отворени са няколко хранилища. +Изберете в кое от тях да бъде запазена тази самоличност. + + + KeePassXC - Select Database + KeePassXC - Избиране на хранилище + + + + BrowserPasskeysConfirmationDialog + + Cancel + Отказ + + + Update + Обновяване + + + Authenticate + Удостоверяване + + + Register new + Регистриране на нов + + + Register + Регистриране + + + Timeout in <b>%n</b> seconds... + Изтича след <b>%n</b> секунда…Изтича след <b>%n</b> секунди… + + + Relying Party: %1 + Зависеща страна: %1 + + + Username: %1 + Потребителско име: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Самоличност на Passkey + + + Add to existing entry + Добавяне към запис + + + Existing passkey found. +Do you want to register a new passkey for: + Съществува друг passkey. +Желаете ли да регистрирате нов passkey за: + + + Select the existing passkey and press Update to replace it. + Изберете съществуващ passkey и изберете „Обновяване“, за да бъде заменен. + + + Authenticate passkey credentials for: + Удостоверяване на самоличността на passkey за: + + + Do you want to register a passkey for: + Желаете ли да регистрирате passkey за: BrowserService - - 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" е получена. -Желаете ли да създадете тази група? + Получена е заявка за създаване на групата „%1“. +Желаете ли групата да бъде създадена? - - KeePassXC: New key association request - KeePassXC: Искане за нова асоциация на ключове - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Получили сте заявка за асоцииране за следната база данни: + Получили сте заявка за свързване със следното хранилище: %1 -Дайте на връзката уникално име или ID, например: +Дайте на връзката уникално име или идентификатор, например: chrome-laptop. Save and allow access - Записване и разрешаване на достъп - - - KeePassXC: Overwrite existing key? - KeePassXC: Презаписване на съществуващ ключ? + Запазване и разрешаване на достъп A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Вече съществува споделен шифроващ ключ с име "%1". -Искате ли да го презапишете? - - - KeePassXC: Update Entry - KeePassXC: Актуализация на записа + Съществува споделен ключ за шифроване с име „%1“. +Желаете ли да бъде презаписан? Do you want to update the information in %1 - %2? - Желаете ли да актуализирате информацията в %1 -%2? - - - KeePassXC: Delete entry - + Желаете ли да информацията в %1 - %2 да бъде обновена? A request for deleting entry "%1" has been received. Do you want to delete the entry? - + Получена е заявка за премахване на записа „%1“. +Желаете ли записът да бъде премахнат? + - Converting attributes to custom data… - Конвертиране на атрибути към потребителски данни... + %1 (Passkey) + %1 (Passkey) - Abort - Отказ + KeePassXC - Create a new group + KeePassXC - Създаване на група - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Конвертиране на KeePassHTTP атрибути + Disable + Изключване - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Успешно преобразувани атрибути от %1 запис(и). -Преместени са %2 ключа в персонализираните данни. - - - Successfully moved %n keys to custom data. - Успешно преместени %n ключове в потребителски данни.Успешно преместени %n ключове в персонализираните данни. + KeePassXC - Overwrite existing key? + KeePassXC - Презаписване на ключ? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Няма записи с намерени KeePassHTTP атрибути! + KeePassXC - Update Entry + KeePassXC - Обновяване на запис - The active database does not contain an entry with KeePassHTTP attributes. - Активната база данни не съдържа запис с KeePassHTTP атрибути. + KeePassXC - Delete entry + KeePassXC - Премахване на запис - Don't show this warning again - Не показвай това предупреждение отново + KeePassXC - New key association request + KeePassXC - Заявка за обвързване с нов ключ - KeePassXC: Legacy browser integration settings detected - KeePassXC: Открити са остарели интеграционни настройки на браузъра + Passkey + Passkey - 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-Browser трябва да бъдат преместени в настройките на базата данни. -Това е необходимо, за да се поддържа текущите връзки на браузъра. -Искате ли да мигрирате съществуващите настройки сега? + KeePassXC - Passkey credentials + KeePassXC - Самоличност на Passkey + + + Register a new passkey to this entry: + Регистриране на нов passkey за този запис: + + + KeePassXC - Update passkey + KeePassXC - Обновяване на passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Записът има passkey. +Желаете ли този passkey да бъде презаписан в %1 - %2? + + + Register + Регистриране @@ -937,23 +1066,19 @@ Would you like to migrate your existing settings now? This is required for accessing your databases with KeePassXC-Browser - Това е необходимо за достъп до вашите бази данни с KeePassXC-Browser + Това е необходимо за достъп до хранилищата от KeePassXC-Browser Enable browser integration - Разрешаване на интеграцията на браузъра + Разрешаване на съчетаване с мрежови четци General Основни - - Browsers installed as snaps are currently not supported. - Браузъри инсталирани като snap пакети не са поддържани - Enable integration for these browsers: - Включване на интегрирането на тези браузъри: + Съчетаване с мрежови четци: Vivaldi @@ -969,7 +1094,7 @@ Would you like to migrate your existing settings now? Tor Browser - Tor Browser + Четецът Тор Brave @@ -986,161 +1111,141 @@ Would you like to migrate your existing settings now? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Показвай известие при поискване на идентификационни данни + Известие при заявка за самоличност Request 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://example.com) - + Проверяване за съвпадение на протоколи за адреса (https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. - Връща само най-добрите съвпадения за конкретен URL адрес вместо всички записи за целия домейн. + Връща най-добрите съвпадения за дадения адрес вместо всички записи за целия домейн. Return only best-matching credentials - Връща само идентификационните данни с най-добро съвпадение + Връща самоличността с най-доброто съвпадение Returns expired credentials. String [expired] is added to the title. - Връща невалидни идентификационни данни. Низ [изтекъл] се добавя към заглавието. + Връща самоличност с изтекла давност. Към заглавието е добавен низът „(изтекла давност)“. Allow returning expired credentials - Позволяване на връщане на изтекли идентификационни данни + Връщане и на записи с изтекла давност All databases connected to the extension will return matching credentials. - Всички бази данни, свързани с разширението, ще върнат съвпадащи идентификационни данни. + Всички хранилища, свързани към разширението, ще връщат съвпадащи самоличности. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Търсене във всички отворени бази данни за съвпадащи идентификационни данни + Търсене на съвпадащи самоличности във всички отворени хранилища Advanced - Допълнителни + Разширени Never ask before accessing credentials Credentials mean login data requested via browser extension - Никога не питай преди достъпване на идентификационни данни + Без питане преди достъп до самоличности Never ask before updating credentials Credentials mean login data requested via browser extension - Никога не питай преди актуализиране на идентификационни данни + Без питане преди променяне на самоличности Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - Не искай разрешение за HTTP Basic Auth + Без питане за разрешение за HTTP Basic Auth Automatically creating or updating string fields is not supported. - Автоматично създаване или актуализиране на низови полета не се поддържа. + Автоматичното създаване или обновяване на низови полета не се поддържа. Return advanced string fields which start with "KPH: " - + Връщане на допълнителни низови полета, започващи с "KPH:" Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Не показвайте изскачащ прозорец, който предполага миграция на остарели настройки на KeePassHTTP. + Без изскачащ прозорец, предполагащ миграция на остарели настройки на KeePassHTTP. Do not prompt for KeePassHTTP settings migration. - Не питай за миграция на KeePassHTTP настройки. + Без миграция на настройки на KeePassHTTP. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - + При стартиране обновява пътя до изпълнимия файл на KeePassXC или keepassxc-proxy с пътя до скриптовете за присъщи съобщения. Update native messaging manifest files at startup - + При стартиране обновява файловете с манифеста за присъщи съобщения Use a custom proxy location if you installed a proxy manually. - Използвайте на персоналзирана локация на проксито, ако сте инсталирали проксито ръчно. + Задайте местоположение на прокси сървър по избор, ако сте го инсталирали ръчно. Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - Използване на друго прокси местоположение: + Местоположение на прокси сървър по избор: Custom proxy location field - Поле за персонализирано прокси местоположение + Поле за местоположение на прокси сървър по избор Browser for custom proxy file - Избор на файл с персонализиран прокси + Избор на файл за прокси сървър Browse… Button for opening file dialog - + Избор… Use a custom browser configuration location: - Използване на персонализирано местоположение за конфигуриране на браузъра: + Местоположение на настройките на мрежовия четец: Browser type: - Тип на браузъра: + Вид мрежов четец: Toolbar button style - Стил на бутоните от лентата с инструменти + Стил на бутоните в лентата с инструменти Config Location: - Местоположение на конфигурацията: + Местоположение на настройките: Custom browser location field - Поле за персонализирано местоположение на браузъра + Поле за местоположение на мрежовия четец: Browse for custom browser path - Избор на персонализиран път към браузъра + Избор на местоположение на мрежовия четец Custom extension ID: - Персонализирано ID номер на разширение: + Идентификатор на разширение: Custom extension ID - Персонализирано ID номер на разширение: - - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Поради изолирането при snap пакетите, трябва да изпълните скрипт, за да разрешите интеграцията на браузъра.<br />Можете да получите този скрипт от %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser е необходим, за да работи интеграцията с браузъра.<br />Изтеглете го тук за %1 и %2 и %3. %4 - - - Please see special instructions for browser extension use below - Моля, вижте специалните инструкции за използване на разширението на браузъра по-долу - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Грешка:</b> Не може да бъде намерено потребителското местоположението на прокси сървъра!<br/>Интеграцията с браузъра НЯМА ДА РАБОТИ без прокси приложението. - - - <b>Warning:</b> The following options can be dangerous! - <b>Предупреждение:</b> Следните опции могат да бъдат опасни! + Идентификатор на разширение Executable Files @@ -1152,22 +1257,62 @@ Would you like to migrate your existing settings now? Select custom proxy location - Избор на потребитерско местоположение на прокси сървър + Избор на местоположение на прокси сървър по избор Select native messaging host folder location - + Избиране на папката на домакина на присъщите съобщения + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Разрешаване на keepassxc-proxy достъп до списъка на всички записи с тяхното заглавие, адрес и идентификатор от свързаните хранилища. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Разрешаване на ограничен достъп до всички записи от свързаните хранилища (пренебрегва ограниченията за достъп до страниците) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Внимание:</b> Променяйте тези настройки само при необходимост. + + + The custom proxy location does not exist. + Местоположението на прокси сървъра по избор не съществува. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Грешка:</b> Местоположението на прокси сървъра по избор не съществува. Направете промени в раздела за разширени настройки. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Грешка:</b> Инсталираният изпълним файл на прокси сървъра липсва на очакваното местоположение: %1<br/>Задайте местоположение на прокси сървъра по избор в разширените настройки или преинсталирайте приложението. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Позволява използване на незащитения адрес http://localhost с passkeys с цел изпитания + + + Allow using localhost with passkeys + Използване на passkeys през localhost + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Разширението KeePassXC-Browser е необходимо, за да работи съчетаването с мрежовия четец.<br />Изтеглете за %1 и %2 и %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Не се поддържат мрежови четци, инсталирани от Снап или Флатпак, с изключение на Firefox, инсталиран от Снап. CloneDialog Clone Entry Options - + Настройки за дублиране на запис Append ' - Clone' to title - Добавяне на ' - Clone' към заглавието + Добавяне на „ - копие“ към заглавието Replace username and password with references @@ -1180,21 +1325,13 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Импортиране на полета в CSV - - - filename - име - size, rows, columns размер, редове, колони Column Association - Асоциация на колоната + Свързани колони Password @@ -1202,7 +1339,7 @@ Would you like to migrate your existing settings now? Username - Портебител + Потребител Title @@ -1214,11 +1351,11 @@ Would you like to migrate your existing settings now? URL - Url + Адрес Notes - Бележки + Бележка TOTP @@ -1226,15 +1363,15 @@ Would you like to migrate your existing settings now? Created - Създаден + Създадено Last Modified - Последно променена + Последна промяна Icon - Икона + Пиктограма Encoding @@ -1246,11 +1383,11 @@ Would you like to migrate your existing settings now? Text is qualified by - + Текстът е класиран от Text qualification - + Класиране на текста Fields are separated by @@ -1266,11 +1403,11 @@ Would you like to migrate your existing settings now? Header lines skipped - Прескочени хедър редове + Прескочени са редове на заглавката Number of header lines to discard - Брой на редовете с хедъри за отхвърляне + Брой на редовете в заглавката, които да бъдат отхвърлени First line has field names @@ -1278,7 +1415,7 @@ Would you like to migrate your existing settings now? Consider '\' an escape character - Приеми за '\' символ за край + Символът „\“ е изключваща последователност Preview @@ -1286,7 +1423,7 @@ Would you like to migrate your existing settings now? CSV import preview - Визуализация на импортирането от CSV + Преглед на внесеното от файл с разделители Not Present @@ -1296,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 Колона %1 - - Imported from CSV file - Импортиран от CSV файл - - - Original data: - Оригинални данни: - - - Error(s) detected in CSV file! - Грешки, открити в CSV файл! - [%n more message(s) skipped] - [%n повече съобщения пропуснати][още %n съобщения са пропуснати] + [друго %n съобщение пропуснато][други %n съобщения пропуснати] - Error - Грешка + Failed to parse CSV file: %1 + Грешка при разбора на файл с разделители: %1 - CSV import: writer has errors: -%1 - CSV импортиране: при писане изникна грешка грешки: -%1 + Imported from CSV file: %1 + Внесено от файл с разделители: %1 + + + No Title Selected + Не е избрано заглавие + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Не е избрана колона за заглавие, следователно записите ще бъдат трудни за разграничаване. +Желаете ли внасянето да бъде извършено? + + + Tags + Етикети CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n байта(ите)%n байт(а) - %n row(s) + CSV row count %n ред(а)%n ред(а) %n column(s) + CSV column count %n колона(и)%n колона(и) @@ -1360,51 +1490,59 @@ Would you like to migrate your existing settings now? Error while reading the database: %1 - Грешка при четене на базата данни: %1 + Грешка при четене на хранилището: %1 Could not save, database does not point to a valid file. - Не може да се запише, базата данни не сочи към валиден файл. + Хранилището не може да бъде запазено. Не сочи към действителен файл. Database save is already in progress. - Записването на базата данни вече е в ход. + Хранилището в момента се запазва. Could not save, database has not been initialized! - Не може да се запише, базата данни не е инициализирана! + Хранилището не може да бъде запазено. Не е подготвено! Database file has unmerged changes. - Файлът с базата данни има неслети промени + Файлът на хранилището има неслети промени. %1 Backup database located at %2 %1 -Резервана база данни се намира на %2 +Резервно копие на хранилището се намира на %2 Key not transformed. This is a bug, please report it to the developers. - + Ключът не е трансформиран. Това е дефект, докладвайте го на разработчиците. Recycle Bin Кошче + + Database file read error. + Грешка при четене на файла на хранилището. + + + No file path was provided. + Не е зададен път до файл. + DatabaseOpenDialog Unlock Database - KeePassXC - Отключване на база данни - KeePassXC + Отключване на хранилище - KeePassXC DatabaseOpenWidget Unlock KeePassXC Database - Отключване на KeePassXC базата данни + Отключване на хранилище на KeePassXC Enter Password: @@ -1414,62 +1552,25 @@ Backup database located at %2 Password field Поле за парола - - Enter Additional Credentials (if any): - Въведете допълнителни идентификационни данни (ако има такива): - - - Key File: - Файл-ключ: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Помощ за файл-ключове - Hardware key slot selection - Избор на слот на хардуерен ключ - - - Hardware Key: - Хардуерен ключ: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Помощ за хардуерен ключ + Избор на позиция за хардуерен ключ Key file to unlock the database - Файл-ключ за отключване на базата данни + Файл с ключ за отключване на хранилището Browse for key file - Избор на файл-ключ + Избор на файл с ключ Browse… - - - - Refresh hardware tokens - Обновяване на хардуерни токени - - - Refresh - Обновяване + Избор… Unlock Database - + Отключване на хранилище Cancel @@ -1477,15 +1578,15 @@ Backup database located at %2 Unlock - + Отключване Please present or touch your YubiKey to continue… - + За да продължите добавете или докоснете своя YubiKey… Database Version Mismatch - + Несъответствие в изданието на хранилището The database you are trying to open was most likely @@ -1495,57 +1596,53 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + Хранилището, което се опитвате да отворите, най-вероятно е създадено с по-ново издание на KeePassXC. + +Може все пак да опитате да го отворите, но е възможно да бъде непълно и запазването на направените промени може да доведе до загуба на данни. + +Препоръчително е да обновите KeePassXC. Open database anyway - + Отваряне въпреки това Database unlock canceled. - + Отключването на хранилището е прекъснато. Unlock failed and no password given - Грешка при отключване и не е върната парола + Грешка при отключване и не дадена парола Unlocking the database failed and you did not enter a password. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Отключването на базата данни е неуспешно и не сте въвели парола. -Искате ли вместо това да опитате отново с "празна" парола? + Отключването на хранилището е неуспешно и не сте въвели парола. +Искате ли повторен опит с „празна“ парола? -За да предотвратите появата на тази грешка, трябва да отидете на "Настройки на базата данни / сигурност" и да нулирате паролата си. +За да предотвратите появата на тази грешка, отворете „Настройки на хранилище / Сигурност“ и нулирате паролата. Retry with empty password - Опитай отново с празна парола - - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - + Нов опит с празна парола Failed to open key file: %1 - Грешка при отваряне на файл-ключ: %1 + Грешка при отваряне на файл с ключ: %1 Old key file format - Стар файлов формат на ключа + Стар формат на файла с ключ You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - + Използвате стар формат на файла с ключ, който KeePassXC може <br>да спре да поддържа в бъдеще.<br><br>Вземете предвид възможността да създадете нов файл с ключ от:<br><strong>Хранилище &gt; Защита на данните &gt; Промяна на файл с ключ.</strong><br> Don't show this warning again - Не показвай това предупреждение отново + Спиране на това предупреждение All files @@ -1553,33 +1650,77 @@ To prevent this error from appearing, you must go to "Database Settings / S Key files - Файл-ключове + Файлове с ключ Select key file - Избор на файл-ключ + Избор на файл с ключ Cannot use database file as key file - Не може да се използва файлът с базата данни като файл-ключ + Файл на хранилище не може да бъде използван като файл с ключ. - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Не можете да използвате файла с базата данни като файл-ключ. -Ако нямате файл-ключ, оставете полето празно. + authenticate to access the database + удостоверяване за получаване достъп до хранилището - Detecting hardware keys… - Откриване на хардуерни ключове... + Failed to authenticate with Quick Unlock: %1 + Неуспешно удостоверяване чрез Quick Unlock: %1 - No hardware keys detected - Не са открити хардуерни ключове + Select Key File: + Изберете файл с ключ: - Select hardware key… - Избор на хардуерен ключ... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>В допълнение към паролата, можете да използвате таен файл за подобряване на защитата на хранилището. Този файл може да бъде създаден в настройките за защита на хранилището.</p><p>Това <strong>не</strong> е файл на *.kdbx с хранилище!</p> + + + Use hardware key [Serial: %1] + Използване на хардуерен ключ [Сериен № %1] + + + Use hardware key + Използване на хардуерен ключ + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Хранилището НЕ Е файл с ключ! +Ако не разполагате с файл с ключ или не знаете какво е това, оставете полето празно. + + + KeePassXC database file selected + Избрано е хранилище на KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Избраният файл прилича на файл на хранилище. +Хранилището НЕ Е файл с ключ! + + + No hardware keys found. + Не са открити хардуерни ключове. + + + Refresh Hardware Keys + Презареждане на хардуерните ключове + + + Click to add a key file. + За да добавите файл с ключ щракнете тук. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Имам файл с ключ</a> + + + Hardware keys found, but no slots are configured. + Открити са хардуерни ключове, но без настроени слотове. @@ -1591,10 +1732,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Разширени настройки - General Основни @@ -1605,46 +1742,54 @@ If you do not have a key file, please leave the field empty. Database Credentials - Идентификационни данни на база данни + Достъп до хранилището Encryption Settings - Настройки на шифроване + Настройки на шифроването Browser Integration - Интеграция на браузъра + Съчетаване с мрежов четец Maintenance - + Профилактика + + + KeeShare + KeeShare + + + Secret Service Integration + Съчетаване с Услуга за тайни + + + Remote Sync + Отдалечено синхронизиране + + + Database Settings: %1 + Настройки на хранилището: %1 DatabaseSettingsWidgetBrowser KeePassXC-Browser settings - KeePassXC-Browser настройки - - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Обновяване на IDна главната група на базата данни + Настройки на KeePassXC-Browser Disconnect all browsers - Разедини всички браузъри + Изключване от всички мрежови четци Forget all site-specific settings on entries - Забравете всички настройки за конкретни сайтове на записите + Премахване на специфичните за страници настройки от записите + + + Refresh database root group ID + Нов идентификатор на кореновата група Stored keys @@ -1652,7 +1797,7 @@ If you do not have a key file, please leave the field empty. Stored browser keys - Съхранените ключове на браузъра + Запазени ключове на мрежовия четец Remove selected key @@ -1669,8 +1814,8 @@ If you do not have a key file, please leave the field empty. Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Наистина ли искате да изтриете избрания ключ? -Това може да попречи на свързването с приставката на браузъра. + Желаете ли избраният ключ да бъде премахнат? +Може да попречи на свързването с разширението на мрежовия четец. Key @@ -1686,101 +1831,96 @@ This may prevent connection to the browser plugin. Enable Browser Integration to access these settings. - Разрешаване на интеграция с браузъри за достъп до тези настройки. + Съчетаване с мрежови четци за достъп до настройките. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - Наистина ли искате да разедините всички браузъри? -Това може да попречи на свързването с приставката в браузъра. - - - KeePassXC: No keys found - KeePassXC: Не са намерени ключове + Желаете ли да изключите от всички мрежови четци? +Може да попречи на свързване с разширението на четеца. No shared encryption keys found in KeePassXC settings. Не са намерени споделени ключове за криптиране в настройките на KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Премахнати ключове от базата данни - Successfully removed %n encryption key(s) from KeePassXC settings. - Успешно отстранен %n шифроващ ключ от настройките на KeePassXC.Успешно отстранен %n ключ(а) за шифроване от настройките на KeePassXC. + Успешно е отстранен %n шифроващ ключ от настройките на KeePassXC.Успешно са отстранени %n шифроващи ключа от настройките на KeePassXC. 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: Премахнати разрешения - Successfully removed permissions from %n entry(s). - Успешно премахнали разрешения от %n записа.Успешно премахнали разрешения от %n записа. - - - KeePassXC: No entry with permissions found! - KeePassXC: Няма намерени записи с разрешения! + Премахнати са правата за достъп от %n запис.Премахнати са правата за достъп от %n записа. The active database does not contain an entry with permissions. - Активната база данни не съдържа запис с разрешения. - - - Move KeePassHTTP attributes to custom data - Преместване на KeePassHTTP атрибутите към персонализирани данни - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - + Текущото хранилище не съдържа запис с права. Refresh database ID - Обновяване на ID на база данни + Обновяване на идентификатора на хранилището Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Наистина ли искате да обновите ID-то на базата данни? -Това е необходимо само, ако вашата база данни е копие на друга и разширението на браузъра не може да се свърже. + Желаете ли идентификаторът на хранилището да бъде обновен? +Това е необходимо само, ако хранилището е копие разширението на браузъра не може да се свърже. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Преобразуване на изведени от употреба атрибути на KeePassHTTP в съвместими с KeePassXC-Browser + + + No keys found + Не са намерени ключове + + + Removed keys from database + Премахнати ключове от хранилището + + + Removed permissions + Оттеглени права + + + No entry with permissions found! + Не е намерен запис с права! DatabaseSettingsWidgetDatabaseKey Add additional protection… - + Добавяне на допълнителна защита… 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? - Предупреждение! Не сте задали парола. Използването на база данни без парола е силно обезсърчено! + ВНИМАНИЕ! Не сте задали парола. Използването на хранилище без парола е силно непрепоръчително! -Наистина ли искате да продължите без парола? +Желаете ли да продължите без парола? Continue without password - Продължи без парола + Напред без парола No encryption key added @@ -1788,54 +1928,58 @@ Are you sure you want to continue without a password? You must add at least one encryption key to secure your database! - Трябва да добавите поне един шифроващ ключ, за да защитите вашата база данни! + За да защитите хранилището, трябва да добавите най-малко един шифроващ ключ! Unknown error - Неизвестна грешка + Неочаквана грешка Failed to change database credentials - Неуспешна промяна на идентификационните данни на базата данни + Грешка при промяна на данните за удостоверяване на достъп до хранилището + + + Weak password + Слаба парола + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Това е слаба парола! За по-добра защита на вашите тайни, трябва да изберете по-силна парола. + + + The provided password does not meet the minimum quality requirement. + Паролата не отговаря на минималните изисквания за качество. DatabaseSettingsWidgetEncryption Decryption Time: - Време за дешифриране: - - - Change existing decryption time - Промяна на времето за дешифриране - - - Change - Промяна + Време за разшифроване: Decryption time in seconds - Време за дешифриране в секунди + Време за разшифроване в секунди Higher values offer more protection, but opening the database will take longer. - По-високите стойности предлагат по-голяма защита, но отварянето на базата данни ще отнеме повече време. + По-големите стойности предлагат по-добра защита, но отварянето на хранилището отнема повече време. Database format: - Формат на базата данни: + Формат на хранилището: Database format - Формат на базата данни + Формат на хранилището Format cannot be changed: Your database uses KDBX 4 features - + Форматът не може да бъде променен: хранилището използва възможностите на KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + Освен ако не е необходимо да отваряте хранилището с други приложения, винаги използвайте най-новия формат. Encryption Algorithm: @@ -1855,7 +1999,7 @@ Are you sure you want to continue without a password? Key Derivation Function: - Функция за формиране на ключа + Функция за извличане на ключ: Key derivation function @@ -1863,55 +2007,52 @@ Are you sure you want to continue without a password? Transform rounds: - Рунда за трансформиране: + Брой преобразувания: Transform rounds - Трансформиционни рунда + Брой преобразувания Memory Usage: - Използване на паметта: + Използвана памет: Memory usage - Използване на паметта + Използвана памет Parallelism: - Паралелизъм: + Паралелно изпълнение: Parallelism - Паралелизъм + Паралелно изпълнение KDBX 4 (recommended) - + KDBX 4 (препоръчително) KDBX 3 - - - - unchanged - Database decryption time is unchanged - Непроменени + KDBX 3 Number of rounds too high Key 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, days, or even longer to open. - + Използвате твърде много преобразувания на ключове с Argon2. + +Ако запазите този брой, отварянето на хранилището може да отнеме часове, дни или дори по-дълго. Understood, keep number - Разбирам, остави стойнстта + Разбирам, без промяна на стойнстта Cancel @@ -1920,73 +2061,87 @@ If you keep this number, your database may take hours, days, or even longer to o Number of rounds too low Key transformation rounds - Твърде нисък брой рундове + Твърде малък брой преобразувания You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + Използвате твърде малко преобразувания на ключове с AES-KDF. + +Ако оставите този брой, хранилището няма да бъде защитено от атаки с груба сила. KDF unchanged - KDF непромен + ФИК е непроменена Failed to transform key with new KDF parameters; KDF unchanged. - Неуспешно преобразуване на ключа с новите параметри на KDF; KDF непроменен. + Неуспешно преобразуване на ключа с новите параметри на ФИК; ФИК е непроменена. MiB Abbreviation for Mebibytes (KDF settings) - МбМб + МБ МиБ thread(s) Threads for parallel execution (KDF settings) - резба(и)нишка(и) + нишка нишки + + + Encryption Settings: + Настройки на шифроването: + + + Basic + Основни + + + Advanced + Разширени DatabaseSettingsWidgetFdoSecrets Exposed Entries - Разкрити записи + Изложени записи Don't expose this database - Не разкривай тази база данни + Това хранилище да не бъде излагано Expose entries under this group: - Разкрий записите в тази група: + Излагане на записите от тази група: Enable Secret Service to access these settings. - За получаване достъп до тези настройки включвете Secret Service. + За да получите достъп до тези настройки включете Услугата за тайни. DatabaseSettingsWidgetGeneral Database Metadata - + Описателни данни на хранилището Database name: - Име на базата данни: + Име на хранилището: Database name field - Поле за име на база данни + Поле за име на хранилището Database description: - Описание на базата данни: + Описание на хранилището: Database description field - Поле за описание на базата данни + Поле за описание на хранилището Default username: @@ -2002,23 +2157,15 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - Максимален брой елементи от историята за запис - - - Max. history items: - Макс. елементи от хронологията: + Максимален брой елементи в хронологията на запис Maximum size of history per entry - Максимален размер на историята за запис - - - Max. history size: - Макс. размер на хронологията: + Максимален размер на хронологията на запис MiB - Мб + МиБ Use recycle bin @@ -2026,11 +2173,11 @@ If you keep this number, your database will not be protected from brute force at Additional Database Settings - Допълнителни настройки на базата данни + Разширени настройки на хранилището Enable compression (recommended) - Разрешаване на компресирането (препоръчително) + Компресиране (препоръчително) Delete Recycle Bin @@ -2039,13 +2186,113 @@ If you keep this number, your database will not be protected from brute force at Do you want to delete the current recycle bin and all its contents? This action is not reversible. - Искате ли да изтриете текущото кошче и цялото му съдържание? -Това действие е необратимо. + Желаете ли кошчето и цялото му съдържание да бъде премахнато? +Действието е необратимо. (old) (стар) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + При запазване на настройката или при промяна на запис +най-старите елементи от хронологията на записа ще бъдат +премахнати така, че да останат определения брой записи. + + + Limit the amount of history items per entry to: + Ограничаване на елементите от хронологията на всеки запис до: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + При запазване на настройката или при промяна на запис +най-старите елементи от хронологията на записа ще бъдат +премахнати така, че да останат определения брой записи. + + + Limit the total size of history items per entry to: + Ограничаване на елементите от хронологията на всеки запис до: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Преместване на записите в групата +на кошчето вместо да бъдат премахвани +от хранилището. Записите, премахнати от +кошчето, биват премахнати от хранилището. + + + Autosave delay since last change + Изчакване на автоматично запазване след промяна + + + Autosave delay + Изчакване на автоматично запазване + + + Autosave delay since last change in minutes + Изчакване на автоматично запазване след промяна в минути + + + min + мин + + + Autosave delay since last change checkbox + Отметка на изчакването на автоматичното запазване след промяна + + + Public Database Metadata + Публични описателни данни на хранилището + + + Warning: the following settings are not encrypted. + Внимание: следните настройки не са шифровани. + + + Display name: + Име: + + + Publically visible display name used on the unlock dialog + Общодостъпно име, използвано в диалога за отключване + + + Database public display name + Публично име на хранилището + + + Display color: + Цвят: + + + Publically visible color used on the unlock dialog + Общодостъпен цвят, използван в диалога за отключване + + + Database public display color chooser + Контрол за избор на цвят на хранилището + + + Clear + Изчистване + + + Display icon: + Пиктограма: + + + Select Database Icon + Избор на пиктограма на хранилището + DatabaseSettingsWidgetKeeShare @@ -2055,11 +2302,11 @@ This action is not reversible. Breadcrumb - + Пътека Type - Тип + Вид Path @@ -2083,54 +2330,54 @@ This action is not reversible. DatabaseSettingsWidgetMaintenance Manage Custom Icons - + Управление на потребителски пиктограми Delete selected icon(s) - + Премахване на избраните пиктограми Delete all custom icons not in use by any entry or group - + Премахва всички неизползвани потребителски пиктограми Purge unused icons - + Изчистване на неизползвани пиктограми Confirm Deletion - + Потвърждаване на изтриване At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + Най-малко една от избраните пиктограми се използва от най-малко един запис или група. Пиктограмите на всички засегнати записи или групи ще бъдат заменени с тази по подразбиране. Сигурни ли сте, че желаете пиктограмите, които в момента се използват да бъдат премахнати? Custom Icons Are In Use - + Потребителските пиктограми се използват All custom icons are in use by at least one entry or group. - + Всички потребителски пиктограми се използват от най-малко един запис или група. Purged Unused Icons - + Неизползваните пиктограми са изчистени Purged %n icon(s) from the database. - + От хранилището е изчистена %n пиктограма.От хранилището са изчистени %n пиктограми. DatabaseSettingsWidgetMetaDataSimple Database Name: - Име на базата данни: + Име на хранилището: Database name field - Поле за име на база данни + Поле за име на хранилището Description: @@ -2138,23 +2385,158 @@ This action is not reversible. Database description field - Поле за описание на базата данни + Поле за описание на хранилището + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Команди за извършване на синхронизиране + + + Remove + Премахване + + + Command Settings + Настройки на команда + + + Name + Име + + + Save + Запазване + + + Download + Изтегляне + + + Command: + Команда: + + + Download command field + Поле за командата за изтегляне + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + напр.: „sftp user@hostname“ или „scp user@hostname:отдалечено-хранилище.kdbx {TEMP_DATABASE}“ + + + Input: + Въвеждане: + + + Download input field + Поле за въвеждане при изтегляне + + + Upload + Качване + + + Upload command field + Поле за командата за качване + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + напр.: „sftp user@hostname“ или „scp {TEMP_DATABASE} user@hostname:отдалечено-хранилище.kdbx“ + + + Upload input field + Поле за въвеждане при качване + + + Name cannot be empty. + Името не трябва да бъде празно. + + + Test + Проверяване + + + Download command cannot be empty. + Командата за изтегляне не трябва да бъде празна. + + + Download failed with error: %1 + Грешка при изтегляне: %1 + + + Download finished, but file %1 could not be found. + Изтеглянето приключи, но файлът %1 не може да бъде намерен. + + + Download successful. + Изтеглянето е успешно. + + + Save Remote Settings + Запазване на отдалечени настройки + + + You have unsaved changes. Do you want to save them? + Има незапазени промени. Желаете ли да бъдат запазени? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + напр.: +get отдалечено-хранилище.kdbx {TEMP_DATABASE} +exit +--- +Низът {TEMP_DATABASE} се използва за заместител на временното местоположение на хранилището +Командата трябва да завърши. В случая на `sftp` последната изпратена команда трябва да бъде `exit` + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + напр.: +put {TEMP_DATABASE} отдалечено-хранилище.kdbx +exit +--- +Низът {TEMP_DATABASE} се използва за заместител на временното местоположение на хранилището +Командата трябва да завърши. В случая на `sftp` последната изпратена команда трябва да бъде `exit` + + + + Timeout: + Време на изчакване: + + + seconds + секунди DatabaseTabWidget 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. - + Създаденото хранилище няма ключ или ФИК и няма да бъде запазено. +Това определено е дефект, съобщете на разработчиците. KeePass 2 Database - KeePass 2 база данни + Хранилище на KeePass 2 All files @@ -2162,7 +2544,7 @@ This is definitely a bug, please report it to the developers. Open database - Отваряне на база данни + Отваряне на хранилище Failed to open %1. It either does not exist or is not accessible. @@ -2170,96 +2552,88 @@ This is definitely a bug, please report it to the developers. CSV file - CSV файл - - - Select CSV file - Изберете CSV файл + Файл с разделители Merge database - Сливане на база данни - - - KeePass 1 database - KeePass 1 база данни - - - Open KeePass 1 database - Отвораряне на KeePass 1 база данни - - - Open OPVault - Отвори OPVault + Сливане на хранилище Export database to CSV file - Експортиране на база данни в CSV файл + Изнасяне на хранилището във файл с разделители Writing the CSV file failed. - Записът на CSV файла е неуспешен. + Грешка при записване на файла с разделители. Writing the HTML file failed. - Записът на HTML файл е неуспешен. + Грешка при записване на HTML файла. + + + Export database to XML file + Изнасяне на хранилището в XML файл + + + XML file + XML файл + + + Writing the XML file failed + Грешка при записване на XML файла Export Confirmation - Потвърждение на експортирането + Потвърждаване You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Ще експортирате вашата база данни в нешифрован файл. Това ще направи вашите пароли и чувствителна информация уязвими! Наистина ли искате да продължите? - - - New Database - Нова база данни - - - %1 [New Database] - Database tab name modifier - %1 [Нова база данни] + На път сте да изнесете хранилището в нешифрован файл. Това ще направи вашите пароли и чувствителна информация уязвими! Желаете ли да продължите? %1 [Locked] Database tab name modifier - %1 [Заключен] + %1 [Заключено] + + + %1 [Temporary] + Database tab name modifier + %1 [Временно] DatabaseWidget - Database Tags - + Searches and Tags + Търсене и етикети Searching… - + Търсене… Shared group… - + Споделена група… Confirm Auto-Type - + Потвърждаване на автоматично въвеждане Perform Auto-Type into the previously active window? - + Да бъде ли изпълнено автоматично въвеждане в предишния активен прозорец? Execute command? - Да се изпълни командата? + Изпълняване на командата? Do you really want to execute the following command?<br><br>%1<br> - Наистина ли искате да изпълните следната команда?<br><br>%1<br> + Желаете ли следната команда да бъде изпълнена?<br><br>%1<br> Remember my choice - Запомни моя избор + Запомняне на избора Delete group @@ -2267,7 +2641,7 @@ This is definitely a bug, please report it to the developers. Do you really want to delete the group "%1" for good? - Наистина ли искате да изтриете групата "%1" за добро? + Желаете ли групата „%1“ да бъде безвъзвратно премахната? Move group to recycle bin? @@ -2275,27 +2649,31 @@ This is definitely a bug, please report it to the developers. Do you really want to move the group "%1" to the recycle bin? - Наистина ли искате да преместите групата "%1" в кошчето? + Желаете ли групата „%1“ да бъде преместена в кошчето? Expired entries - + Записи с изтичаща давност + + + Entries expiring within %1 day(s) + Записи с изтичаща давност след %1 денЗаписи с изтичаща давност след %1 дни No current database. - Няма текуща база данни. + Няма текущо хранилище. No source database, nothing to do. - Няма база данни източник, нищо за правене. + Няма изходно хранилище. Successfully merged the database files. - Успешно слети файловете на базата данни. + Файловете на хранилището са успешно сляти. Database was not modified by merge operation. - Базата данни не е модифицирана от операция по сливане. + Хранилището не е променяно от сливане. Search Results (%1) @@ -2305,54 +2683,46 @@ This is definitely a bug, please report it to the developers. No Results Няма резултати + + Save + Запазване + + + Enter a unique name or overwrite an existing search from the list: + Въведете друго име или презапишете съществуващо търсене от списъка: + + + Save Search + Запазване на търсенето + 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? - Да се запишат ли промените? + Да бъдат ли запазени промените? 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? - Файлът с базата данни е променен и имате незаписани промени. -Искате ли да обедините вашите промени? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Не можа да се отвори новия файл с базата данни при опит за автоматично презареждане. -Грешка: %1 - Disable safe saves? Забраняване на безопасно запазване? @@ -2360,12 +2730,12 @@ Error: %1 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 не успя да запази базата данни няколко пъти. Това вероятно се дължи на услугите за синхронизация на файлове, които заключват записа на файла. -Забраняване на безопасното запазване и опитайте отново? + KeePassXC няколко пъти не успя да запази хранилището. Вероятна причина е услугата за синхронизиране на файлове, която е заключила файла за писане. +Забраняване на безопасното запазване и повторен опит? Writing the database failed: %1 - Грешка при запис на базата данни: %1 + Грешка при писане в хранилището: %1 Passwords @@ -2373,15 +2743,15 @@ Disable safe saves and try again? Save database as - Записване на база данни като + Запазване на данните като KeePass 2 Database - KeePass 2 база данни + Хранилище на KeePass 2 Save database backup - Записване на резервно копие на базата данни + Запазване на резервно копие на данните Empty recycle bin? @@ -2389,15 +2759,100 @@ Disable safe saves and try again? Are you sure you want to permanently delete everything from your recycle bin? - Наистина ли искате да изтриете завинаги всичко от кошчето? + Желаете ли всичко от кошчето да бъде безвъзвратно премахнато? Could not find database file: %1 - Файлът с базата данни не може да бъде намерен: %1 + Файлът с хранилището не може да бъде намерен: %1 - - Entries expiring within %1 day(s) - + + New Database + Ново хранилище + + + %1 [New Database] + Database tab name modifier + %1 [Ново хранилище] + + + Remote Sync did not contain any download or upload commands. + Отдалеченото синхронизиране не съдържа команди за изтегляне или качване. + + + Remote sync '%1' completed successfully! + Отдалеченото синхронизиране „%1“ завърши! + + + Remote sync '%1' failed: %2 + Отдалеченото синхронизиране „%1“ завърши с грешка: %2 + + + Error while saving database %1: %2 + Грешка при запазване на хранилището %1: %2 + + + Downloading... + Изтегляне... + + + Uploading... + Качване… + + + Syncing... + Синхронизиране… + + + Remove passkey from entry + Премахване на passkey от запис + + + Do you want to remove the passkey from this entry? + Желаете ли този passkey да бъде премахнат от записа? + + + The database file "%1" was modified externally + Файлът на хранилището „%1“ е променен от друго приложение + + + Do you want to load the changes? + Желаете ли промените да бъдат заредени? + + + Reload database + Презареждане на хранилището + + + Reloading database… + Презареждане на хранилището… + + + Reload canceled + Презареждането е прекъснато + + + Reload successful + Успешно презаредено + + + Reload pending user action… + Презареждането изчаква действие от потребителя… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Файлът на хранилището „%1“ е променен от друго приложение<br>Как желаете да продължите?<br><br>Сливане на промените<br>Пренебрегване на промените на диска до запазване<br>Отказ от незапазените промени + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Файлът на хранилището „%1“ е променен от друго приложение<br>Как желаете да продължите?<br><br>Сливане на промените<br>Презаписване на промените на диска<br>Отказ от незапазените промени + + + Database file overwritten. + Файлът на хранилището е презаписан. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Файлът на хранилището не може да бъде отключено с текущите данни за отключване.<br>За да продължите въведете данните за отключване и/или включете хардуерен ключ. @@ -2408,19 +2863,19 @@ Disable safe saves and try again? Advanced - Допълнителни + Разширени Icon - Икона + Пиктограма Auto-Type - Auto-Type + Автоматично въвеждане Browser Integration - Интеграция на браузъра + Съчетаване с мрежови четци <empty URL> @@ -2432,7 +2887,7 @@ Disable safe saves and try again? Are you sure you want to remove this URL? - Наистина ли искате да премахнете този URL? + Желаете ли адресът да бъде премахнат? Properties @@ -2440,19 +2895,15 @@ Disable safe saves and try again? History - История + Хронология SSH Agent - SSH Agent + Агент на SSH n/a - n/a - - - (encrypted) - (шифровано) + липсва Select private key @@ -2460,7 +2911,7 @@ Disable safe saves and try again? Entry history - История на записа + Хронология на записа Add entry @@ -2468,49 +2919,53 @@ Disable safe saves and try again? Edit entry - Редактиране на запис + Променяне на запис Some Browser Integration settings are overridden by group settings. - + Някои настройки на съчетаването с мрежовия четец са презаписани от настройки на групата. Invalid Entry - Невалиден запис + Неприемлив запис An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - Външна операция за обединяване е анулирала този запис. -За съжаление, всички направени промени са загубени. + Външна операция на сливане е анулирала записа. +За съжаление, всички промени са загубени. Auto-Type Validation Error - + Грешка при потвърждаване на автоматично въвеждане An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + Грешка при потвърждаване на потребителската последователност за автоматично въвеждане: +%1 +Желаете ли грешката да бъде отстранена? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + Грешка при потвърждаване на последователността за автоматично въвеждане на „%1“: +%2 +Желаете ли грешката да бъде отстранена? Entry updated successfully. - Записът е актуализиран успешно. + Записът е обновен. Unsaved Changes - Незаписани промени + Незапазени промени Would you like to save changes to this entry? - Желаете ли да запишете промените в този запис? + Желаете ли промените на записа да бъдат запазени? New attribute @@ -2522,7 +2977,7 @@ Would you like to correct it? Are you sure you want to remove this attribute? - Наистина ли искате да премахнете този атрибут? + Желаете ли атрибутът да бъде премахнат? Reveal @@ -2530,27 +2985,31 @@ Would you like to correct it? [PROTECTED] Press Reveal to view or edit - [ЗАЩИТЕНО] Натиснете "Показане", за да видите или редактирате + [ЗАЩИТЕНО] Натиснете „Показване“, за да видите или промените Hide Скриване + + %n hour(s) + %n час%n часа + %n week(s) - %n седмица(а)%n седмица(и) + %n седмица%n седмици %n month(s) - %n месец(а)%n месец(а) + %n месец%n месеца %n year(s) - %n година(а)%n година(е) + %n година%n години - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Грешка при разшифроване на ключа на SSH, уверете се, че паролата е вярна. @@ -2569,15 +3028,15 @@ Would you like to correct it? Add a new attribute - Добавяне на нов атрибут + Добавяне на атрибут Add - Добавите + Добавяне Remove selected attribute - Премахни избрания атрибут + Премахване на избрания атрибут Remove @@ -2585,19 +3044,19 @@ Would you like to correct it? Edit attribute name - Редактиране на име на атрибут + Промяна на името на атрибут Edit Name - Редактиране на името + Променяне на името Toggle attribute protection - Превключване на защита на атрибути + Превключване на защитата на атрибут Protect - Защити + Защитен атрибут Show a protected attribute @@ -2609,27 +3068,27 @@ Would you like to correct it? Attachments - Приложения + Прикачени файлове If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + Ако е отметнато, записът няма да присъства в отчети като Проверка на състоянието и HIBP, дори и да не отговаря на изискванията за качество. Exclude from database reports - Изключване от отчетите на базата данни + Изключване от отчетите на хранилището Foreground Color: - Цвят преден план: + Цвят текста: Foreground color selection - Избор на цвят за преден план + Избор на цвят за текста Background Color: - Цвят заден план: + Цвят на фона: Background color selection @@ -2640,116 +3099,100 @@ Would you like to correct it? EditEntryWidgetAutoType Enable Auto-Type for this entry - Разреши Auto-Type за този запис + Включване на автоматичното въвеждане за записа Inherit default Auto-Type sequence from the group - Наследена последователност Auto-Type по подразбиране от групата + Наследяване на подразбираната последователност за автоматично въвеждане от групата Use custom Auto-Type sequence: - Използвана персонализирана Auto-Type последователност + Използване на следната последователност за автоматично въвеждане: Custom Auto-Type sequence - Персонализирана Auto-Type последователност + Потребителска последователност за автоматично въвеждане Open Auto-Type help webpage - Отваряне на уеб страницата за помощ за Auto-Type + Отваря страницата с помощ за автоматично въвеждане Window Associations - Асоциация на прозореца + Обвързване с прозорци Existing window associations - Съществуващи асоциации с прозорци + Съществуващи връзки с прозорци Add new window association - Добавяне на нова асоциация с прозорец - - - Remove selected window association - Премахване на избраната асоциация с прозорец - - - Window title: - Заглавие на прозорец: - - - You can use an asterisk (*) to match everything - Можете да използвате звездичка (*), за да съответства на всичко - - - Set the window association title - Задаване на заглавието на асоциацията с прозорец - - - You can use an asterisk to match everything - Можете да използвате звездичка, за да съответства на всичко - - - Use a specific sequence for this association: - Използвайте конкретна последователност за тази асоциация: - - - Custom Auto-Type sequence for this window - Персонализирана Auto-Type последователност + Добавя връзка с прозорец + Add item + + + Remove selected window association + Премахва избраната връзка с прозорец + - Remove item - + + Window title: + Заглавие на прозорец: + + + You can use an asterisk (*) to match everything + Звездичката (*) съвпада със заглавията на всички прозорци + + + Set the window association title + Задава заглавието на връзката с прозорец + + + You can use an asterisk to match everything + Звездичката съвпада със заглавията на всички прозорци + + + Use a specific sequence for this association: + Използване на следната последователност за тази връзка: + + + Custom Auto-Type sequence for this window + Потребителска последователност за автоматично въвеждане за този прозорец + EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Тези настройки порменят поведението на записа с разширението за браузър. - General Основни Hide this entry from the browser extension - Скриване на този елемент от разширението на браузъра + Скриване на елемента от разширението на мрежовия четец Skip Auto-Submit for this entry - Пропускане на автоматично подаване за този запис - - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Изпращане само на тази настройка към браузъра за HTTP Auth диалози. Ако е включено, нормалните форми за влизане няма да покажат този запис за селекция. + Без автоматично изпращане на формуляр с този запис Use this entry only with HTTP Basic Auth - Използвай този запис само с HTTP Basic Auth - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Не изпращай тази настройка към браузъра за HTTP Auth прозорци. При активиране, HTTP Auth прозорците няма да покажат този запис за избор. + Използване на записа само с HTTP Basic Auth Do not use this entry with HTTP Basic Auth - Не използвай този запис с HTTP Basic Auth - - - Additional URL's - Допълнителни URL-и + Без използване на записа с HTTP Basic Auth Add - Добавите + Добавяне Remove @@ -2757,18 +3200,34 @@ Would you like to correct it? Edit - Редактиране + Променяне + + + These settings affect the entry's behaviour with the browser extension. + Тези настройки променят поведението на записа спрямо разширението на мрежовия четец. + + + Additional URLs + Допълнителни адреси + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Изпраща към мрежовия четец този запис само при диалози за HTTP Auth. Ако е отметнато, този запис няма да е достъпен за обикновените формуляри за вход. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Не изпраща към мрежовия четец този запис при диалози за HTTP Auth. Ако е отметнато, този запис няма да е достъпен за диалозите за HTTP Auth. EditEntryWidgetHistory Entry history selection - Избор на записи от хронологията + Избиране на предишно състояние на запис Show entry at selected history state - Показване на запис в избраното състояние от хронологията + Показва записа в избраното състояние Show @@ -2776,7 +3235,7 @@ Would you like to correct it? Restore entry to selected history state - Възстановяване на записа в избраното състояние от хронологията + Възстановява записа в избраното състояние Restore @@ -2784,121 +3243,117 @@ Would you like to correct it? Delete selected history state - Изтриване на избраното състояние от хронологията + Премахва избраното състояние Delete - Триене + Премахване Delete all history - Изтриване на цялата хронология + Премахва цялата хронология Delete all - Триене на всичко + Премахване на всичко EditEntryWidgetMain Edit Entry - Редактиране на запис + Променяне на запис Notes field - Поле за бележки - - - Toggle the checkbox to reveal the notes section. - Поставете отметка в квадратчето, за да разкриете раздела за бележки. + Поле за бележка Username field Поле за потребителско име - - Toggle notes visible - Превключване на видимостта на бележките - - - Notes: - Бележки: - Expiration field - Поле за изтичане на срока + Поле за давност Expiration Presets - Предварителни настройки за изтичане на срока + Предварителни настройки за давност Expiration presets - Предварителни настройки за изтичане на срока + Предварителни настройки за давност Presets - Предваритерни настройки - - - Password: - Парола: - - - URL: - URL: + Предварителни настройки Url field - Поле за URL + Поле за адрес Download favicon for URL - Изтегляне на favicon за URL - - - Title: - Заглавие: + Изтегля пиктограма за адреса Title field Поле за заглавие - - Username: - Потребителско име: - Password field Поле за парола Toggle expiration - Превключване на изтичането на срока - - - Expires: - Изтича: - - - Tags: - + Превключва давността Tags list - + Списък с етикети + + + &Username: + &Потребител: + + + &Title: + &Заглавие: + + + &Password: + &Парола: + + + UR&L: + &Адрес: + + + &Notes: + &Бележка: + + + Toggle notes visibility + Превключва видимостта на бележката + + + T&ags: + &Етикети: + + + &Expires: + &Изтичаща давност: EditEntryWidgetSSHAgent Form - Форма + Формуляр Remove key from agent when database is closed/locked - Премахване на ключа от агента при затваряне/заключване на базата данни + Премахване на ключа от агента при затваряне/заключване на хранилището Comment @@ -2906,11 +3361,11 @@ Would you like to correct it? Add key to agent when database is opened/unlocked - Добавяне на ключ към агента при отваряне/отключване на базата данни + Добавяне на ключ към агента при отваряне/отключване на хранилището Decrypt - Заклеймявам + Разшифроване Fingerprint @@ -2918,7 +3373,7 @@ Would you like to correct it? Copy to clipboard - Копиране в клипборда + Копиране Public key @@ -2928,27 +3383,13 @@ Would you like to correct it? Private key Частен ключ - - External file - Външен файл - - - Browser for key file - Избор на файл-ключ - - - - Browse… - Button for opening file dialog - - Attachment - Приложение + Прикачен файл External key file - Външен файл-ключ + Външен файл с ключ Add to agent @@ -2958,29 +3399,50 @@ Would you like to correct it? Remove from agent Премахване от агента + + External file + Външен файл + + + Browser for key file + Избор на файл с ключ + + + Browse… + Button for opening file dialog + Избор… + + + Generate + Създаване + Select attachment file - Избор на прикачен файл + Избиране на прикачен файл Require user confirmation when this key is used - Изискване на потвърждение от потребителя при използване на този ключ + Потвърждаване от потребителя при използване на ключа n/a - n/a + липсва Remove key from agent after - Премахване на ключ след + Премахване на ключа от агента след Remove key from agent after specified seconds - Премахване на ключа от агента след указани секунди + Премахване на ключа от агента след указания брой секунди seconds - секунди + секунди + + + Clear agent + Изчистване на агента @@ -2991,11 +3453,7 @@ Would you like to correct it? Icon - Икона - - - Browser Integration - Интеграция на браузъра + Пиктограма Properties @@ -3007,73 +3465,89 @@ Would you like to correct it? Edit group - Редактиране на група + Променяне на група Group has unsaved changes - + Групата има незапазени промени + + + Browser Integration + Съчетаване с мрежов четец Enable - Включване + Включено Disable - Изключване + Изключено Inherit from parent group (%1) - Наследяване от родителската група (% 1) + Наследява се от родителската група (%1) EditGroupWidgetBrowser - - Edit Group - Редактиране на група - These settings affect to the group's behaviour with the browser extension. - + Тези настройки променят поведението на групата спрямо разширението на мрежовия четец. Hide entries from browser extension: - + Скриване на записи от разширението на четеца: Hide entries from browser extension toggle for this and sub groups - + Превключвател за скриване на записи от разширението на мрежовия четец за групата и нейните подгрупи Skip Auto-Submit for entries: - + Без автоматично изпращане на формуляри: Skip Auto-Submit toggle for this and sub groups - + Превключвател за изключване на автоматичното изпращане на формуляри за групата и нейните подгрупи Use entries only with HTTP Basic Auth: - + Използване на записите само с HTTP Basic Auth: Only HTTP Auth toggle for this and sub groups - + Превключвател за използване на записите само при HTTP Auth за групата и нейните подгрупи Do not use entries with HTTP Basic Auth: - + Без използване на записите с HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups - + Превключвател за изключване на използването на записите само при HTTP Auth за групата и нейните подгрупи + + + Omit WWW subdomain from matching: + Пропускане на WWW при търсене на съвпадение: + + + Omit WWW subdomain from matching toggle for this and sub groups + Превключвател за пропускане на поддомейна WWW при търсене на съвпадения в групата и нейните подгрупи + + + Restrict matching to given browser key: + Огранич. на съвпаден. до определен ключ на четец: + + + Restrict matching to given browser key toggle for this and sub groups + Превключвател за ограничаване на съвпаденията до определен ключ на мрежов четец в групата и нейните подгрупи EditGroupWidgetKeeShare Sharing mode field - Споделне на поле за режим + Поле за вида на споделянето Password field @@ -3081,7 +3555,7 @@ Would you like to correct it? Type: - Тип: + Вид: Password: @@ -3093,35 +3567,35 @@ Would you like to correct it? Path to share file field - Път до споделяне на общи ресурси + Поле за път за споделяне на файл Browse for share file - Избор на споделен файл + Избор на файл, който да бъде споделен Browse… - + Избор… Clear fields - Изчисти полетата + Изчистване на полетата Clear - Почисти + Изчистване Inactive - Неактивен + Изключен Import - Импортиране + Внасяне Export - Експортиране + Изнасяне Synchronize @@ -3130,68 +3604,68 @@ Would you like to correct it? Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - Вашата KeePassXC версия не поддържа споделянето на този тип контейнер. + Това издание на KeePassXC не поддържа споделяне на този вид контейнери. Поддържаните разширения са: %1. %1 is already being exported by this database. - %1 вече се експортира от тази база данни. + Пътят „%1“ вече е изнесен от това хранилище. %1 is already being imported by this database. - %1 вече е импортиран от тази база данни. + Пътят „%1“ вече е внесен в това хранилище. %1 is being imported and exported by different groups in this database. - %1 се импортира и експортира от различни групи в тази база данни. + Пътят „%1“ се внася и изнася от различни групи в това хранилище. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare е изключено в момента. Можете да разрешите импортиране/експортиране в настройките на приложението. + Работата на KeeShare в момента е изключена. Можете да включите внасяне/изнасяне от настройките на приложението. Database export is currently disabled by application settings. - Експортирането на база данни в момента е изключено от настройките на приложението. + Изнасянето на данни в момента е изключено от настройките на приложението. Database import is currently disabled by application settings. - Импортирането на база данни в момента е изключено от настройките на приложението. + Изнасянето на данни в момента е изключено от настройките на приложението. KeeShare container - + Контейнер на KeeShare KeeShare signed container - KeeShare подписан контейнер + Подписан контейнер от KeeShare Select import source - Избор на източник за импортиране + Избор на източник при внасяне Select export target - Изберете целта за експортиране + Избор на цел при изнасяне Select import/export file - Изберете файл за импортиране/експортиране + Избор на файл за внасяне/изнасяне EditGroupWidgetMain Edit Group - Редактиране на група + Променяне на група Toggle expiration - Превключване на изтичането на срока + Превключване на давността Expires: - Изтича: + Изтичаща давност: Name field @@ -3199,15 +3673,15 @@ Supported extensions are: %1. Expiration field - Поле за изтичане на срока + Поле за давност Use default Auto-Type sequence of parent group - Използвай Auto-Type последователността по подразбиране на родителската група + Използване на подразбираната последователност за автоматично въвеждане на родителската група Auto-Type: - Auto-Type: + Автоматично въвеждане: Search: @@ -3215,19 +3689,19 @@ Supported extensions are: %1. Auto-Type toggle for this and sub groups - Превключване на Auto-Type за тази и подгрупите ѝ + Превключвател за автоматичното въвеждане за групата и нейните подгрупи Notes: - Бележки: + Бележка: Default auto-type sequence field - Поле за auto-type последователност по подразбиране + Поле за последователността за автоматично въвеждане Notes field - Поле бележки + Поле бележка Name: @@ -3235,78 +3709,74 @@ Supported extensions are: %1. Set default Auto-Type sequence - Задаване на Auto-Type последователност по подразбиране + Задаване на подразбирана последователност за автоматично въвеждане Search toggle for this and sub groups - Превключване на търсенето за тази група и подгрупите ѝ + Превключвател за търсенето за групата и нейните подгрупи EditWidgetIcons Use default icon - Използване на иконата по подразбиране + Използване на подразбирана пиктограма Use custom icon - Използване на икона по избор + Използване на пиктограма по избор Choose icon… - + Избиране на пиктограма… Set the URL to use to search for a favicon - + Задава адреса, на който да бъде търсена пиктограма. Favicon URL - + Адрес на пиктограма Download favicon for URL - Изтегляне на фавикон за URL + Изтегляне на пиктограма за адрес Download favicon - Изтегляне на favicon + Изтегляне на пиктограма Apply selected icon to subgroups and entries - Прилагане на избраната икона към подгрупи и записи + Прилагане на избраната пиктограма към подгрупи и записи Apply icon to… - + Прилагане на пиктограма към… Apply to this group only - Приложи само към тази група + Прилагане само към тази група Also apply to child groups - Прилага се и за подгрупи + Прилагане и към подгрупите Also apply to child entries - + Прилагане и към дъщерните записи Also apply to all children - Прилага се и за всички деца + Прилагане и към дъщерни елементи Unable to fetch favicon. - Не може да се изтегли favicon. - - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Можете да активирате услугата за икона на DuckDuckGo в Инструменти -> Настройки -> Сигурност + Грешка при изтегляне на пиктограмата. Existing icon selected. - Избрана е съществуваща икона. + Избрана е съществуваща пиктограма. Images @@ -3322,26 +3792,30 @@ Supported extensions are: %1. Successfully loaded %1 of %n icon(s) - %1 от %n иконата(ите) е успешно заредена%1 от %n иконата(ите) е успешно заредена + %1 от %n пиктограма е успешно заредена%1 от %n пиктограми са успешно заредени No icons were loaded - Не са заредени икони + Не са заредени пиктограми %n icon(s) already exist in the database - %n иконата(ите) вече съществува в базата данни%n иконата(и) вече съществува в базата данни + %n пиктограма вече съществува в хранилището%n пиктограми вече съществуват в хранилището The following icon(s) failed: - Следната икона е проблемна:Следните икони са проблемни: + Грешка със следната пиктограма:Грешка със следните пиктограми: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Можете да включите услугата за пиктограми на DuckDuckGo от настройки на приложението -> Сигурност EditWidgetProperties Created: - Създаден: + Създаване: Datetime created @@ -3349,39 +3823,39 @@ Supported extensions are: %1. Modified: - Модифициран: + Промяна: Datetime modified - Дата и час на промяна + Дата и час на последна промяна Accessed: - Достъпeн: + Достъп: Datetime accessed - Дата и час на достъп + Дата и час на последен достъп Uuid: - Uuid: + Идентификатор: Unique ID - Уникален ID + Уникален идентификатор Plugin Data - Данни за приставката + Данни от разширението Plugin data - Данни за приставката + Данни от разширението Remove selected plugin data - Премахване на избраните данни за приставката + Премахване на избраните данни от разширението Remove @@ -3389,13 +3863,13 @@ Supported extensions are: %1. Delete plugin data? - Изтриване на данни от приставката? + Изтриване на данни от разширението? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. - Наистина ли искате да изтриете избраните данни за приставката? -Това може да доведе до неизправност на засегнатите приставки. + Желаете ли избраните данни от разширението да бъдат премахнати? +Може да доведе до неизправност на засегнатите разширения. Key @@ -3410,14 +3884,47 @@ This may cause the affected plugins to malfunction. Entry %1 - Clone - %1 - Клониране + %1 - копие + + + Passkey + Passkey + + + Invalid conversion type: %1 + Неправилен тип на преобразуване: %1 + + + Invalid conversion syntax: %1 + Неправилен синтаксис на преобразуване: %1 + + + Invalid regular expression syntax %1 +%2 + Неправилен синтаксис на регулярен израз %1 +%2 EntryAttachments Cannot open file "%1" - + Файлът „%1“ не може да бъде отворен + + + + EntryAttachmentsDialog + + Form + Формуляр + + + File name + Име на файл + + + File contents... + Съдържание… @@ -3435,19 +3942,19 @@ This may cause the affected plugins to malfunction. EntryAttachmentsWidget Form - Форма + Формуляр Attachments - Приложения + Прикачени файлове Add new attachment - Добавяне на нов прикачен файл + Добавяне на прикачен файл Add - Добавите + Добавяне Remove selected attachment @@ -3457,29 +3964,21 @@ This may cause the affected plugins to malfunction. Remove Премахване - - Rename selected attachment - Преименуване на избрания прикачен файл - - - Rename - Преименуване - Open selected attachment Отваряне на избрания прикачен файл Open - Отвори + Отваряне Save selected attachment to disk - Записване на избрания прикачен файл на диска + Запазване на избрания прикачен файл Save - Запази + Запазване Select files @@ -3487,63 +3986,58 @@ This may cause the affected plugins to malfunction. Confirm remove - Потвърдете премахването + Потвърждаване на премахване Are you sure you want to remove %n attachment(s)? - Наистина ли искате да премахнете %n прикачени файлове?Наистина ли искате да премахнете %n прикачени файлове? + Желаете ли %n прикачен фай да бъде премахнат?Желаете ли %n прикачени файла да бъдат премахнати? Save attachments - Запис на прикачени файлове + Запазване на прикачени файлове Unable to create directory: %1 - Директорията не може да бъде създадена: + Папката не може да бъде създадена: %1 Are you sure you want to overwrite the existing file "%1" with the attachment? - Наистина ли искате да заместите съществуващия файл "%1" с прикачения? + Желаете ли съществуващия файл „%1“ да бъде презаписан с прикачения? Confirm overwrite - Потвърждаване на презаписването + Потвърждаване на презаписване Unable to save attachments: %1 - Не може да се запишат прикачените файлове: + Прикачените файлове не могат да бъдат запазени: %1 Unable to open attachment: %1 - Не може да се отворят прикаченте файл: + Прикаченият файл не може да бъде отворен: %1 Unable to open attachments: %1 - Не може да се отворят прикачените файлове: + Прикачените файлове не могат да бъдат отворени: %1 Unable to open file(s): %1 - Не може да се отворят файлове: -%1Не може да се отворят файлове: + Файл не може да бъде отворен: +%1Файлове не могат да бъдат отворени: %1 Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + Потвърждаване на презаписване на прикачен файл Confirm Attachment @@ -3554,28 +4048,49 @@ Would you like to overwrite the existing attachment? Your database may get very large and reduce performance. Are you sure to add this file? - %1 е голям файл (%2 МБ). -Вашата база данни може да стане много голяма и да се намали производителността. + Файлът %1 е голям (%2 МБ). +Хранилището може да стане твърде голямо и това да повлияе неблагоприятно върху бързодействието. -Наистина ли искате да добавите файла? +Желаете ли да файлът да бъде добавен? Attachment modified - + Променен прикачен файл The attachment '%1' was modified. Do you want to save the changes to your database? - + Прикаченият файл „%1“ е променен. +Желаете ли промените да бъдат запазени в хранилището? Saving attachment failed - + Грешка при запазване на прикачен файл Saving updated attachment failed. Error: %1 - + Грешка при запазване на обновения прикачен файл. +%1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Прикаченият файл „%1“ вече съществува. +Желаете ли +Желаете ли съществуващият прикачен файл да бъде презаписан? + + + New + Добавяне + + + Preview + Преглед + + + Failed to preview an attachment: Attachment not found + Грешка: прикачен файл не е намерен @@ -3589,7 +4104,7 @@ Error: %1 EntryHistoryModel Current (%1) - + В момента (%1) Last modified @@ -3597,11 +4112,11 @@ Error: %1 Age - + Възраст Difference - + Различия Size @@ -3613,7 +4128,7 @@ Error: %1 Username - Портебител + Потребител Password @@ -3621,27 +4136,27 @@ Error: %1 URL - Url + Адрес Notes - Бележки + Бележка Custom Attributes - + Потребителски атрибути Icon - Икона + Пиктограма Color - + Цвят Expiration - Изтичане + Изтичаща давност TOTP @@ -3649,19 +4164,19 @@ Error: %1 Custom Data - + Потребителски данни Attachments - Приложения + Прикачени файлове Auto-Type - Auto-Type + Автоматично въвеждане Tags - + Етикети @@ -3685,7 +4200,7 @@ Error: %1 Username - Портебител + Потребител Password @@ -3693,31 +4208,31 @@ Error: %1 URL - Url + Адрес Notes - Бележки + Бележка Expires - Изтича + Изтичаща давност Created - Създаден + Създаване Modified - Променен + Промяна Accessed - Достъпен + Достъп Attachments - Приложения + Прикачени файлове Size @@ -3725,7 +4240,7 @@ Error: %1 Group name - Име на група + Име на групата Entry title @@ -3733,15 +4248,15 @@ Error: %1 Password Strength - + Сила на паролата Entry notes - Бележки на записа + Бележка на записа Entry expires at - Записа изтича на + Записът е с давност до Creation date @@ -3771,12 +4286,20 @@ Error: %1 Has TOTP Има TOTP + + Background Color + Цвят на фона + + + Group Path + Път на групата + EntryPreviewWidget Display current TOTP value - Показване на текущата стойност на TOTP + Показва текущата стойност на TOTP Close @@ -3791,36 +4314,36 @@ Error: %1 Парола - Notes - Бележки + URL + Адрес Expiration - Изтичане + Изтичаща давност Tags - + Етикети Tags list - + Списък с етикети Username - Портебител + Потребител - URL - Url + Notes + Бележка Advanced - Допълнителни + Разширени Attachments - Приложения + Прикачени файлове Attributes @@ -3832,7 +4355,7 @@ Error: %1 Default Sequence - Последователност по подразбиране + Подразбирана последователност Window @@ -3848,20 +4371,24 @@ Error: %1 Share - Сподели + Споделяне Search - Търси + Търсене Clear - Почисти + Изчистване Never Никога + + Double click to copy value + За да копирате стойността, щракнете два пъти + Enabled Включено @@ -3870,12 +4397,20 @@ Error: %1 Disabled Изключено + + Double click to copy to clipboard + За да копирате стойността, щракнете два пъти + EntryURLModel Invalid URL - Невалиден URL + Недействителен адрес + + + Duplicate URL + Дублиран адрес @@ -3892,57 +4427,62 @@ Error: %1 Reset to defaults Нулиране на настройките към подразбиращите се + + + %1 entry(s)... + + %1 запис…+ %1 записа… + ExportDialog Export options - + Настройки за изнасяне Sort entries by... - + Подреждане на записите по… You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + На път сте да изнесете хранилището в нешифрован файл. Това ще направи вашите пароли и чувствителна информация уязвими! + database order - + реда в базата данни name (ascending) - + име (възходящ ред) name (descending) - + име (низходящ ред) unknown - + неизвестно Export database to HTML file - Експортиране на база данни в HTML файл + Изнасяне на данни в HTML HTML file - HTML файл + Файл на HTML FdoSecrets::DBusMgr Failed to deliver message - + Съобщението не е доставено Failed to send reply on DBus - + Отговорът по DBus не е изпратен Unknown @@ -3961,38 +4501,38 @@ This will leave your passwords and sensitive information vulnerable! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Изпълнява се друг Secret Service (%1).<br/>Спрете или премахнете, преди да активирате повторно интегрирането на Secret Service. + В момента работи друга услуга за тайни (%1).<br/>Спрете я или я премахнете преди да включите отново съчетаването с Услуга за тайни. Failed to register DBus service at %1.<br/> - Неуспешно регистриране на услугата DBus на % 1.<br/> + Грешка при регистриране на услугата DBus за %1.<br/> Failed to register service on DBus at path '%1' - + Грешка при регистриране на услуга в DBus на пътя „%1“ Failed to register database on DBus under the name '%1' - + Грешка при регистриране на хранилище на DBus под името „%1“ Failed to register session on DBus at path '%1' - + Грешка при регистриране на сеанса в DBus на пътя „%1“ Failed to register item on DBus at path '%1' - + Грешка при регистриране на елемента в DBus на пътя „%1“ Failed to register prompt object on DBus at path '%1' - + Грешка при регистриране на обекта за запитване в DBus на пътя „%1“ FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - Запис "%1" от база данни "%2" е използван от %3 + Записът „%1“ от хранилището „%2“ е използван от %3 @@ -4000,7 +4540,7 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - %n Запис(и) е(са) използван(и) от %1%n Запис(а) е(са) използван(и) от %1 + %n запис е използван от %1%n записа са използвани от %1 @@ -4011,14 +4551,14 @@ This will leave your passwords and sensitive information vulnerable! Non-existing/inaccessible executable path. Please double-check the client is legit. - + Несъществуващ/недостъпен път към изпълнимия файл. Уверете се, че клиентът е достоверен. FdoSecrets::SettingsDatabaseModel Unlock to show - Отключване за показване + За да видите съдържанието отключете хранилището None @@ -4029,14 +4569,14 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::UnlockPrompt %1 (PID: %2) - + %1 (PID: %2) FdoSecretsPlugin <b>Fdo Secret Service:</b> %1 - <b>Fdo Secret Service:</b> %1 + <b>Услуга за тайни на Fdo:</b> %1 @@ -4048,21 +4588,21 @@ This will leave your passwords and sensitive information vulnerable! %1 - Clone - %1 - Клониране + %1 - копие HibpDownloader Online password validation failed - Неуспешна онлайн проверка паролата + Грешка при отдалечено потвърждаване на паролата IconDownloaderDialog Download Favicons - Изтегляне на Favicons + Изтегляне на пиктограми Cancel @@ -4071,8 +4611,8 @@ This will leave your passwords and sensitive information vulnerable! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - Имате проблеми с изтеглянето на икони? -Можете да активирате услугата за икони на duckDuckGo в раздела за защита на настройките на приложението. + Има ли трудности с изтеглянето на пиктограми? +Можете да включите услугата за пиктограми на DuckDuckGo от настройки на приложението -> Сигурност. Close @@ -4080,23 +4620,23 @@ You can enable the DuckDuckGo website icon service in the security section of th URL - Url + Адрес Status - Статут + Състояние Please wait, processing entry list… - + Изчакайте, записите се обработват… Downloading… - + Изтегляне… Ok - OK + Добре Already Exists @@ -4104,11 +4644,203 @@ You can enable the DuckDuckGo website icon service in the security section of th Download Failed - Неуспешно изтегляне + Грешка при изтегляне Downloading favicons (%1/%2)… - + Изтегляне на пиктограми (%1/%2)… + + + + ImportWizard + + Import Wizard + Помощник при внасяне + + + + ImportWizardPageReview + + WizardPage + СтраницаОтПомощника + + + Entry count: %1 + Брой записи: %1 + + + Group + Група + + + Title + Заглавие + + + Username + Потребител + + + Password + Парола + + + Url + Адрес + + + Could not load key file. + Грешка при зареждане на файл с ключ. + + + Could not open remote database. Password or key file may be incorrect. + Грешка при отваряне на отдалечено хранилище. Паролата или файлът с ключ вероятно са грешни. + + + + ImportWizardPageSelect + + Form + Формуляр + + + Import File Selection + Внасяне - избор на файл + + + Password: + Парола: + + + Key File: + Файл с ключ: + + + Browse… + Избор… + + + Import Into: + Внасяне в: + + + New Database + Ново хранилище + + + No unlocked databases available + Няма отключени хранилища + + + Existing Database: + Съществуващо хранилище: + + + Import File: + Файл: + + + Comma Separated Values (.csv) + Файл с разделители (.csv) + + + 1Password Export (.1pux) + Изнесен файл от 1Password (.1pux) + + + 1Password Vault (.opvault) + Хранилище на 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Хранилище на KeePass 1 (.kdb) + + + Open OPVault + Отваряне на OPVault + + + Select import file + Избор на файл при внасяне + + + All files + Всички файлове + + + Key files + Файлове с ключ + + + Select key file + Избор на файл с ключ + + + Comma Separated Values + Файл с разделители + + + 1Password Export + Изнесен файл от 1Password + + + Bitwarden JSON Export + Изнесен файл с JSON от Bitwarden + + + 1Password Vault + Хранилище на 1Password + + + KeePass1 Database + Хранилище на KeePass 1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Изнесен JSON от Proton Pass + + + Temporary Database + Временно хранилище + + + Command: + Команда: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + напр.: „sftp user@hostname“ или „scp user@hostname:отдалечено-хранилище.kdbx {TEMP_DATABASE}“ + + + Input: + Въвеждане: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + напр.: +get отдалечено-хранилище.kdbx {TEMP_DATABASE} +exit +--- +Низът {TEMP_DATABASE} се използва за заместител на временното местоположение на хранилището +Командата трябва да завърши. В случая на `sftp` последната изпратена команда трябва да бъде `exit` + + + Remote Database (.kdbx) + Отдалечено хранилище (.kdbx) @@ -4119,44 +4851,44 @@ You can enable the DuckDuckGo website icon service in the security section of th Close message - Съобщение при затаряне + Затваря съобщението Kdbx3Reader Missing database headers - + Липсващи заглавки на хранилище Unable to calculate database key - Не може да се изчисли ключът на базата данни + Ключът на хранилището не може да бъде изчислен Unable to issue challenge-response: %1 - Грешка при издаването на challenge-response: %1 + Грешка при създаване на предизвикване-отговор: %1 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Предоставени са невалидни идентификационни данни, опитайте отново. -Ако това се повтори вероятно базата данни е повредена. + Предоставени са неприемливи данни за удостоверяване на достъп, опитайте отново. +Ако се повтори хранилището може да е повредено. Header doesn't match hash - Хедърът не съвпада с хеша + Заглавката не съвпада с отпечатъка Invalid header id size - Невалиден размер на id хедъра + Неприемлив размер на заглавката за идентификатор Invalid header field length: field %1 - + Неприемлива дължина на полето за заглавка: поле %1 Invalid header data length: field %1, %2 expected, %3 found - + Неприемлива дължина на полето за заглавка: поле %1, очаквано %2, намерено %3 @@ -4164,180 +4896,180 @@ If this reoccurs, then your database file may be corrupt. Invalid symmetric cipher IV size. IV = Initialization Vector for symmetric cipher - Невалиден размер на IV за симетричния шифър. + Неприемлив размер на ИВ на симетричния шифър. Unable to issue challenge-response: %1 - Грешка при издаването на challenge-response: %1 + Грешка при създаване на предизвикване-отговор: %1 Unable to calculate database key - Не може да се изчисли ключът на базата данни + Ключът на хранилището не може да бъде изчислен Kdbx4Reader missing database headers - липсващи хедъри на базата данни + липсващи заглавки на хранилище Unable to calculate database key: %1 - Грешка при изчисляване на ключа на базата данни: %1 + Ключът на хранилището не може да бъде изчислен: %1 Invalid header checksum size - Невалиден размер на контролната сума на хедъра + Неприемлив размер на контролна сума на заглавка Header SHA256 mismatch - Sha256 несъответствие на хедъра + Разлики в отпечатък с SHA256 на заглавка Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Предоставени са невалидни идентификационни данни, опитайте отново. -Ако това се повтори вероятно базата данни е повредена. + Предоставени са неприемливи данни за удостоверяване на достъп, опитайте отново. +Ако се повтори хранилището може да е повредено. (HMAC mismatch) - (HMAC несъответствие) + (разлики в HMAC) Unknown cipher - Неизвестно шифър + Неизвестен шифър Invalid header id size - Невалиден размер на id хедъра + Неприемлив размер на заглавката за идентификатор Invalid header field length: field %1 - + Неприемлива дължина на поле на заглавка: поле %1 Invalid header data length: field %1, %2 expected, %3 found - + Неприемлива дължина на полето за заглавка: поле %1, очаквано %2, намерено %3 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. - Остарели полета на хедъри намерени в KDBX4 файл. + Намерени са изведени от употреба полета в заглавка на KDBX4 файл. Invalid inner header id size - Невалиден размер на вътрешния id хедъра + Неприемлив размер на идентификатор на вътрешна заглавка Invalid inner header field length: field %1 - + Неприемлива дължина на полето на вътрешна заглавка: поле %1 Invalid inner header data length: field %1, %2 expected, %3 found - + Неприемлива дължина на полето на вътрешна заглавка: поле %1, очаквано %2, намерено %3 Invalid inner header binary size - Невалиден размер на binary хедъра + Неприемлив двоичен размер на вътрешна заглавка Unsupported KeePass variant map version. Translation: variant map = data structure for storing meta data - Неподдържана версия на KeePass структурата с метаданни. + Неподдържано издание на списък с варианти на KeePass. Invalid variant map entry name length Translation: variant map = data structure for storing meta data - Невалидна дължина на името в структурата с метаданни + Неприемлива дължина на името на запис от списък с варианти Invalid variant map entry name data Translation: variant map = data structure for storing meta data - Невалидна стойност на името в структурата с метаданни + Неприемлива стойност на името на запис от списък с варианти Invalid variant map entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на стойността в структурата с метаданни + Неприемлива дължина на стойността на запис от списък с варианти Invalid variant map entry value data Translation comment: variant map = data structure for storing meta data - Невалидна стойност на стойността в структурата с метаданни + Неприемлива стойност на запис от списък с варианти Invalid variant map Bool entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на Bool стойността в структурата с метаданни + Неприемлива дължина на булева стойност на запис от списък с варианти Invalid variant map Int32 entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на Int32 в структурата с метаданни + Неприемлива дължина на стойност от вид Int32 на запис от списък с варианти Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на UInt32 в структурата с метаданни + Неприемлива дължина на стойност от вид UInt32 на запис от списък с варианти Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на Int64 в структурата с метаданни + Неприемлива дължина на стойност от вид Int64 на запис от списък с варианти Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - Невалидна дължина на UInt64 в структурата с метаданни + Неприемлива дължина на стойност от вид UInt64 на запис от списък с варианти Invalid variant map entry type Translation: variant map = data structure for storing meta data - Невалиден типа запис в структурата с метаданни + Неприемлив вид на запис от списък с варианти Invalid variant map field type size Translation: variant map = data structure for storing meta data - Невалиден размер на типа запис в структурата с метаданни + Неприемлив размер на полето за вид на запис от списък с варианти Kdbx4Writer Invalid symmetric cipher algorithm. - Невалиден алгоритъм за симетричено шифриране. + Неприемлив алгоритъм на симетричен шифър. Invalid symmetric cipher IV size. IV = Initialization Vector for symmetric cipher - Невалиден размер на IV за симетричния шифър. + Неприемлив размер на ИВ на симетричен шифър. Unable to calculate database key: %1 - Грешка при изчисляване на ключа на базата данни: %1 + Ключът на хранилището не може да бъде изчислен: %1 Failed to serialize KDF parameters variant map Translation comment: variant map = data structure for storing meta data - Неуспешно сериализиране на KDF параметърите в структурата с метаданни + Неуспешно представяне на списък с варианти на параметри на ФИК KdbxReader Invalid cipher uuid length: %1 (length=%2) - Невалидна дължина на uuid не шифъра: %1 (дължина=%2) + Неприемлива дължина на идентификатор на шифър: %1 (дължина=%2) Unable to parse UUID: %1 - Грешка при анализ на UUID: %1 + Грешка при разбор на идентификатор: %1 Unsupported cipher @@ -4345,7 +5077,7 @@ If this reoccurs, then your database file may be corrupt. Invalid compression flags length - Невалидна дължина на флаговете за компресиране + Неприемлива дължина на флагове за компресиране Unsupported compression algorithm @@ -4353,185 +5085,188 @@ If this reoccurs, then your database file may be corrupt. Invalid master seed size - Невалиден размер на главния seed + Неприемлив размер на основно семе Invalid transform seed size - Невалиден размер на seed за трансформиране + Неприемлив размер на трансформиращото семе Invalid transform rounds size - Невалиден размер на рундовете за преобразуване + Неприемлив брой преобразувания Invalid start bytes size - Невалиден размер на стартовите байтове + Неприемлив брой на началните байтове Invalid random stream id size - Невалиден произволен размер на идентификатора на случайния поток + Неприемлив размер на идентификатор на случаен поток Invalid inner random stream cipher - + Невалиден шифър на случаен вътрешен поток Failed to read database file. - Грешка при четене на файл с база данни. + Грешка при четене на файл с хранилище. The selected file is an old KeePass 1 database (.kdb). 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. Not a KeePass database. - Не е KeePass база данни. + Не е хранилище на KeePass. Unsupported KeePass 2 database version. - Неподдържана версия на KeePass 2 базата данни. + Неподдържано издание на хранилище на KeePass 2. KdbxXmlReader XML parsing failure: %1 - Грешка при xml анализ: %1 + Грешка при разбор на XML: %1 No root group - Без коренова група + Липсва коренова група XML error: %1 Line %2, column %3 - XML грешка: + Грешка в XML: %1 Ред %2, колона %3 Missing icon uuid or data - Липса на uuid или данни за иконата + Липсва идентификатор или данни за пиктограмата Missing custom data key or value - Липсващ персонализиран ключ за данни или стойност + Липсва потребителски ключ за данни или стойност Multiple group elements - Множество елементи на група + Множество елементи за група Null group uuid - + Идентификатор на група е Null Invalid group icon number - + Неприемлив идентификатор на пиктограма на групата Invalid EnableAutoType value - Невалидна EnableAutoType стойност + Неприемлива стойност на полето EnableAutoType Invalid EnableSearching value - Невалидна EnableSearching стойност + Неприемлива стойност на полето EnableSearching No group uuid found - Не е намерен uuid на групата + Не е намерен идентификатор на група Null DeleteObject uuid - + Идентификатор на DeleteObject е Null Missing DeletedObject uuid or time - Липсва DeletedObject uuid или време + Идентификатор или време на DeleteObject е Null Null entry uuid - + Идентификатор на запис е Null Invalid entry icon number - + Невалиден номер на пиктограма на запис History element in history entry - Елемент от хронологията в хронологически запис + Елемент за хронология в запис на хронология No entry uuid found - Не е намерен uuid на записа + Записът няма идентификатор History element with different uuid - Хронологически елемент с различен uuid + Елемент от хронологията с различен идентификатор Duplicate custom attribute found - Намерени повтарящи се персонализирани атрибути + Намерени повтарящи се потребителски атрибути Entry string key or value missing - Липсващ низов ключ или стойност на записа + Липсват ключ или стойност на записа като низове. Entry binary key or value missing - Липсващ двоичен ключ или стойност на запис + Липсват ключ или стойност на записа като двоични стойности. Auto-type association window or sequence missing - Липсва асоциазия с прозорец или последователност за Auto-Type + Липсва връзка с прозорец или последователност за автоматично въвеждане Invalid bool value - Невалидна бинарна стойност + Неприемлива булева стойност Invalid date time value - Невалидна стойност за дата и час + Неприемлива стойност за дата и час Invalid color value - Невалидна стойност за цвета + Неприемлива стойност на цвят Invalid color rgb part - Невалидна rgb част за цвят + RGB частта от цвета е неприемлива Invalid number value - Невалидна числова стойност + Неприемлива числова стойност Invalid uuid value - Невалидна uuid стойност + Неприемлива стойност на идентификатор Unable to decompress binary Translator meant is a binary data inside an entry - Не може да се декомпресира двоичените данни + Двоичната стойност не може да бъде разкомпресирана KeeAgentSettings Invalid KeeAgent settings file structure. - Невалидна структура на файла с KeeAgent настройки. + Неприемлива структура на файла с настройки на KeeAgent. Private key is an attachment but no attachments provided. - Личният ключ е прикачен, но няма прикачени файлове. + Частният ключ трябва да е прикачен, но прикачени файлове няма. Private key is empty - Личният ключ е празен + Частният ключ е празен File too large to be a private key @@ -4539,29 +5274,18 @@ Line %2, column %3 Failed to open private key - Неуспешно отваряне на частния ключ - - - - KeePass1OpenWidget - - Import KeePass1 Database - Импортиране на KeePass1 база данни - - - Unable to open the database. - Базата данни не може да се отвори. + Грешка при отваряне на частен ключ KeePass1Reader Unable to read keyfile. - Файл-ключа не може да бъде прочетен. + Файлът с ключ не може да бъде прочетен. Not a KeePass database. - Не е KeePass база данни. + Не е хранилище на KeePass. Unsupported encryption algorithm. @@ -4569,36 +5293,36 @@ Line %2, column %3 Unsupported KeePass database version. - Неподдържана версия на KeePass базата данни. + Неподдържано издание на хранилище на KeePass. Unable to read encryption IV IV = Initialization Vector for symmetric cipher - Не може да бъде прочетено шифровъчното IV + Грешка при четене на ИВ на шифър Invalid number of groups - Невалиден брой групи + Неприемлив брой групи Invalid number of entries - Невалиден брой записи + Неприемлив брой записи Invalid content hash size - Невалиден размер на хеш на съдържанието + Неприемлив размер на отпечатък от съдържание Invalid transform seed size - Невалиден размер на seed за трансформиране + Неприемлив размер на трансформиращото семе Invalid number of transform rounds - Невалиден брой преобразуващи рундове + Неприемлив брой преобразувания Unable to construct group tree - Не може да се изгради дърво на групите + Не може да бъде изградена дървовидна структура на групите Root @@ -4606,167 +5330,167 @@ Line %2, column %3 Unable to calculate database key - Не може да се изчисли ключът на базата данни + Ключът на хранилището не може да бъде изчислен unable to seek to content position - не може да се намери позиция за съдържанието + не може да бъде намерена определена позиция в съдържание Invalid credentials were provided, please try again. If this reoccurs, then your database file may be 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 - + Неприемлив размер на поле за идентификатор на запис 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 - + Неприемливо поле за вид на запис KeeShare Invalid sharing reference - Невалидна препратка за споделяне + Неприемливо споделяне на референция Inactive share %1 - Неактивено споделяне %1 + Неактивно споделяне %1 Imported from %1 - Импортиран от %1 + Внесено от „%1“ Exported to %1 - Експортиран в %1 + Изнесено в „%1“ Synchronized with %1 - Синхронизирано с %1 + Синхронизирано с „%1“ Import is disabled in settings - Импортирането е забранено в настройките + Внасянето е забранено от настройките Export is disabled in settings - Експортирането е забранено в настройките + Изнасянето е забранено от настройките Inactive share - Неактивено споделяне + Неактивно споделяне Imported from - Импортирани от + Внесено от Exported to - Експортирани в + Изнесено в Synchronized with - Синхронизирани с + Синхронизирано с KeyComponentWidget Key Component - Компонент на ключа + Компонент към ключа Key Component Description - Описание на компонента към ключа + Описание на компонент към ключа Cancel @@ -4781,71 +5505,69 @@ If this reoccurs, then your database file may be corrupt. KeyFileEditWidget Generate a new key file - Генериране на нов файл-ключ + Създаване на файл с ключ Generate - Генериране + Създаване Generate a new key file or choose an existing one to protect your database. - + Създайте нов или изберете съществуващ файл с ключ, който да защити хранилището. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + Забележка: НЕ използвайте файл, който може да бъде променен, защото ще бъде невъзможно да отключите хранилището! Browse for key file - Избор на файл-ключ + Избиране на файл с ключ Browse… - + Избор… Old key file format - Стар файлов формат на ключа + Стар формат на файл с ключ You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - Използвате остарял файлов формат на ключа, който KeePass XC може да спре да поддържа в бъдеще. - -Помислете за генериране на нов ключ файл. + Избрали сте файл с ключ в остарял формат, който KeePass XC <br>може да спре да поддържа в бъдеще.<br><br>Вземете предвид възможността да създадете нов файл с ключ. Error loading the key file '%1' Message: %2 - Грешка при зареждане на файл-ключа "%1" + Грешка при зареждане на файла с ключа „%1“ Съобщение: %2 Key File - Файл-ключ + Файл с ключ Add Key File - + Добавяне на файл с ключ Change Key File - + Променяне на файл с ключ Remove Key File - + Премахване на файл с ключ Key File set, click to change or remove - + Зададен е файл с ключ, щракнете за да го промените или премахнете <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>Пазете го в тайна и не го губете или ще изгубите достъпа.</p> Key files - Файл-ключове + Файлове с ключ All files @@ -4853,71 +5575,68 @@ Message: %2 Create Key File… - + Създаване на файл с ключ… Error creating key file - Грешка при създаване на файл-ключ + Грешка при създаване на файл с ключ Unable to create key file: %1 - Не може да се създаде ключ-файл: %1 + Не може да бъде създаден файл с ключ: %1 Select a key file - Избор на файл-ключ + Избиране на файл с ключ Invalid Key File - Невалиден файл-ключ + Неприемлив файл с ключ You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Не можете да използвате текущата база данни като собствен файл-ключ. Изберете друг файл или създайте нов файл-ключ. + Файлът на текущото хранилище не може да бъде използван за файл с ключ. +Изберете друг файл или създайте файл с ключ. Suspicious Key File - Подозрителен файл-ключ + Подозрителен файл с ключ The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Избраният файл-ключ изглежда като файл с база данни. Файл-ключът трябва да е статичен файл, който никога не се променя или ще загубите достъпа до вашата база данни завинаги. -Наистина ли искате да продължите с този файл? + Избраният файл прилича на хранилище. Файлът с ключ трябва да бъде статичен файл, който никога не се променя в противен случай ще загубите достъп до хранилището. +Желаете ли да използвате този файл? MacUtils Invalid key code - + Неприемлив код на клавиш Global shortcut already registered to %1 - + Тази клавишна комбинация се използва за %1 Could not register global shortcut - + Грешка при задаване на клавишна комбинация MainWindow &Database - & База данни + &Хранилища &Recent Databases - &Скорошни бази данни - - - &Import - &Импортиране + &Последно използвани хранилища &Export - &Експортиране + &Изнасяне &Help @@ -4929,12 +5648,16 @@ Are you sure you want to continue with this file? Copy Att&ribute - Копиране на атрибута + Копиране на атрибут TOTP TOTP + + Tags + Етикети + &Groups &Групи @@ -4961,75 +5684,55 @@ Are you sure you want to continue with this file? &Check for Updates - &Проверка за актуализации + П&роверка за обновяване &Open Database… - &Отваряне на база данни + &Отваряне на хранилище &Save Database - &Записване на базата данни + &Запазване на хранилището &Close Database - &Затвори базата данни + За&тваряне на хранилището &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 - Преглед или редактиране на запис + П&роменяне на запис… &Delete Entry… - &Изтриване на запис... + &Премахване на запис… &New Group… - &Нова група... - - - Add a new group - Добавяне на нова група + &Нова група… &Edit Group… - &Редактиране на група... + П&роменяне на група… &Delete Group… - &Изтриване на група... + &Премахване на група… Download All &Favicons… - Изтегляне на всички &favicons... + Изтегляне на всички &пиктограми… Sort &A-Z @@ -5041,63 +5744,39 @@ Are you sure you want to continue with this file? Sa&ve Database As… - Запазване на база данни като... + З&апазване на хранилище като… Database &Security… - База данни &Защита... + &Сигурност на хранилището… Database &Reports… - - - - Statistics, health check, etc. - Статистика, проверка на здравето и др. + &Отчети за хранилището… &Database Settings… - &Настройки на базата данни... - - - Database settings - Настройки на базата данни + &Настройки на хранилището… &Clone Entry… - &Клониране на запис... + &Дублиране на записа… Move u&p Преместване нагоре - - Move entry one step up - Преместване на записа една стъпка нагоре - Move do&wn Преместване надолу - - Move entry one step down - Преместване на запис с една стъпка надолу - Copy &Username - Копиране на &Username - - - Copy username to clipboard - Копиране на потребителско име в клипборда + Копиране на п&отребителя Copy &Password - Копиране на &Паролата - - - Copy password to clipboard - Копиране на парола в клипборда + Копиране на &паролата &Settings @@ -5105,83 +5784,59 @@ Are you sure you want to continue with this file? &Password Generator - &Генератор на парола + &Създаване на парола Perform &Auto-Type - Изпълнение на &Auto-Type + &Автоматично въвеждане Download &Favicon - Изтегляне &Фавикон + Изтегляне на &пиктограма Open &URL - Отваряне на &URL + Отваряне на &адрес &Lock Database - + &Заключване на хранилището Lock &All Databases - + Заключване на &всички хранилища &Title &Заглавие - Copy title to clipboard - Копиране на заглавие в клипборда - - - &URL - &URL - - - Copy URL to clipboard - Копиране на URL в клипборда + Copy &URL + Копиране на &адреса &Notes - &Бележки - - - Copy notes to clipboard - Копиране на бележки в клипборда + &Бележка &CSV File… - &CSV файл... + &Файл с разделители… &HTML File… - &HTML файл... + &HTML файл… KeePass 1 Database… - KeePass 1 база данни... - - - Import a KeePass 1 database - Импортиране на KeePass 1 база данни + Хранилище на KeePass 1… 1Password Vault… - 1Password Vault… - - - Import a 1Password Vault - Импортиране на 1Password Vault + Хранилище на 1Password… CSV File… - CSV файл... - - - Import a CSV file - Импортиране на CSV файл + Файл с разделители… Show TOTP @@ -5189,27 +5844,31 @@ Are you sure you want to continue with this file? Show QR Code - Показване на QR код + Показване на код за QR Set up TOTP… - Настройване на TOTP... + Настройване на TOTP… Copy &TOTP Копиране на &TOTP + + Copy Password and TOTP + Копиране на паролата и TOTP + E&mpty recycle bin Изпразване на кошчето &Donate - &Дарете + &Даряване Report a &Bug - Съобщаване на грешка + Съобщаване за &дефект &Getting Started @@ -5217,15 +5876,11 @@ Are you sure you want to continue with this file? Open Getting Started Guide - Отваряне на ръководството "Първи стъпки" + Отваря ръководството „Първи стъпки“ &Online Help - &Онлайн помощ - - - Go to online documentation - Към онлайн документацията + &Помощ &User Guide @@ -5233,7 +5888,7 @@ Are you sure you want to continue with this file? Open User Guide - Отваряне на ръководството за потребителя + Отваря ръководството за потребителя &Keyboard Shortcuts @@ -5241,15 +5896,15 @@ Are you sure you want to continue with this file? Save Database Backup… - + Резервно копие на хранилището… Add key to SSH Agent - Добавяне на ключ към SSH Agent + Добавяне на ключ към агент на SSH Remove key from SSH Agent - Премахване на ключ от SSH Agent + Премахване на ключ от агент на SSH Compact Mode @@ -5257,7 +5912,7 @@ Are you sure you want to continue with this file? Automatic - Автоматично + Автоматична Light @@ -5269,19 +5924,23 @@ Are you sure you want to continue with this file? Classic (Platform-native) - Класически (от платформата) + Класическа (от платформата) + + + Show Menubar + Лента с менюто Show Toolbar - Покажи лентата с инструменти + Лентата с инструменти Show Preview Panel - Показване на панела за визуализация + Панел за преглед Always on Top - Винаги отгоре + Винаги най-отгоре Hide Usernames @@ -5293,39 +5952,45 @@ Are you sure you want to continue with this file? Clone Group... - + Дублиране на групата… + + + &XML File… + &Файл с XML… Clear history - Изчистване на историята + Изчистване на хронология Access error for config file %1 - Грешка при достъп на конфигурационния файл %1 + Грешка при достъп до файла с настройките %1 Don't show again for this version - Не показвай повече за тази версия + Пропускане на това издание 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. +Съществува висок риск от загуба на информация, поддържайте резервни копия на хранилищата. +Изданието не е предназначено за ежедневна употреба. NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - + ЗАБЕЛЕЖКА: Използвате предварително издание на KeePassXC! +Очаквайте дефекти и несъществени проблеми, изданието е предназначено за изпитателни цели. - 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. - + No Tags + Липсват етикети Restore Entry(s) - + Възстановяване на записВъзстановяване на записи Settings @@ -5333,15 +5998,15 @@ We recommend you use the AppImage available on our downloads page. Check for updates on startup? - Проверка за актуализации при стартиране? + Проверка за обновяване при стартиране? Would you like KeePassXC to check for updates on startup? - Искате ли KeePassXC да проверите за актуализации при стартиране? + Желаете ли KeePassXC да проверява за обновяване при стартиране? You can always check for updates manually from the application menu. - Винаги можете да проверите за актуализации ръчно от менюто на приложението. + Винаги можете да направите ръчна проверка за обновяване от менюто на приложението. Toggle window @@ -5351,9 +6016,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Изход от KeePassXC + + %1 Entry(s) + %1 запис%1 записа + Please present or touch your YubiKey to continue… - + За да продължите, поставете или докоснете хардуерният ключ… Restart Application? @@ -5361,49 +6030,357 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? - Трябва да рестартирате приложението, за да приложите тази настройка. Желаете ли да рестартирате сега? + За да бъдат приложени настройките, приложението трябва да рестартира. Желаете ли да рестартира сега? + + + Allow Screen Capture + Разрешаване на екранни снимки + + + 1Password 1PUX... + 1PUX от 1Password… + + + Import a 1Password 1PUX file + Внасяне на 1PUX файл от 1Password + + + Import… + Внасяне… + + + Passkeys… + Passkeys… + + + Import Passkey + Внасяне на Passkey + + + Remote S&ync… + Отдалечено &синхронизиране… + + + Quit Application + Излиза от приложението + + + Open About Dialog + Отваря диалогът „Относно“ + + + Open Database + Отваря хранилище + + + Create Database + Създава хранилище + + + Merge From Database + Слива от хранилище + + + Create Entry + Създава запис + + + Edit Entry + Променя запис + + + Delete Entry + Премахва запис + + + Create Group + Създава група + + + Edit Group + Променя група + + + Delete Group + Премахва група + + + Download All Favicons + Изтегля всички пиктограми + + + Sort Groups A-Z + Сортира групите А–Я + + + Sort Groups Z-A + Сортира групите Я–А + + + Save Database As + Запазва хранилището като + + + Show Database Security + Показва настройките за сигурност на хранилището + + + Show Database Reports + Показва отчети за хранилището + + + Show Database Settings + Показва настройките на хранилището + + + Show Passkeys + Показва ключове за достъп + + + Clone Entry + Дублира запис + + + Move Entry Up + Премества запис нагоре + + + Move Entry Down + Премества запис надолу + + + Copy Username + Копира потребителското име + + + Copy Password + Копира паролата + + + Show Application Settings + Показва настройките на приложението + + + Show Password Generator + Показва екрана за създаване на пароли + + + Remove Passkey From Entry + Премахване на passkey от запис + + + Perform Auto-Type: {USERNAME} + Извършва автоматично въвеждане: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Извършва автоматично въвеждане: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Извършва автоматично въвеждане: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Извършва автоматично въвеждане: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Извършва автоматично въвеждане: {TOTP} + + + Copy Title + Копира заглавието + + + Copy URL + Копира адреса + + + Copy Notes + Копира бележката + + + Export to CSV + Изнася във файл с разделители + + + Export to HTML + Изнася във файл с HTML + + + Import KeePass1 Database + Внася хранилище на KeePass1. + + + Import 1Password Vault + Внася хранилище на 1Password + + + Import CSV File + Внася от файл с разделители + + + Show TOTP QR Code + Показва кода за QR + + + Set up TOTP + Настройва TOTP + + + Empty Recycle Bin + Изпразва кошчето + + + Open Donation Website + Отваря страницата за даряване + + + Open Bug Report + Отваря формуляра за съобщаване на дефект + + + Open Online Documentation + Отваря страницата с документацията + + + Open Keyboard Shortcuts Guide + Отваря ръководството за клавишни комбинации + + + Save Database Backup + Запазва резервно копие на хранилището + + + SSH Agent: Add Key + Агент на SSH: добавя ключ + + + SSH Agent: Remove Key + Агент на SSH: премахва ключ + + + Toggle Compact Mode + Превключва компактния режим + + + Set Theme: Automatic + Задава тема: автоматична + + + Set Theme: Light + Задава тема: светла + + + Set Theme: Dark + Задава тема: тъмна + + + Set Theme: Classic + Задава тема: класическа + + + Toggle Show Menubar + Превключва лентата с менюто + + + Toggle Show Toolbar + Превключва лентата с инструменти + + + Toggle Show Preview Panel + Превключва панела за преглед + + + Toggle Always on Top + Превключва състоянието "най-отгоре“ на приложението + + + Toggle Hide Usernames + Превключва скриването на потребителските имена + + + Toggle Hide Passwords + Превключва скриването на паролите + + + Export to XML + Изнася във файл с XML + + + Toggle Allow Screen Capture + Превключва разрешението за правене на екранни снимки + + + Show Group Panel + Показване на панела „Група“ + + + Toggle Show Group Panel + Превключване на панела „Група“ + + + Setup Remote Sync… + Настройка на отдалеч. синхронизиране… + + + Password Generator + Създаване на парола + + + E&xpire Entry… + Прекратяване на &давността… + + + Clear SSH Agent + Изчистване на агента на SSH + + + Clear all identities in ssh-agent + Изчистване на самоличностите в ssh-agent ManageDatabase Database settings - Настройки на базата данни + Настройки на хранилището Edit database settings - Редактиране на настройките на базата данни + Променя настройките на хранилището Unlock database - Отключване на базата данни + Отключване на хранилище Unlock database to show more information - Отключване на базата данни за показване на повече информация + За подробности отключете хранилището Lock database - Заключване на базата данни + Заключване на хранилището ManageSession Disconnect - Разедини + Прекъсване на връзката Disconnect this application - Разедини това приложение + Прекъсва връзката с това приложение Reset - + Нулиране Reset any remembered decisions for this application - + Нулира запазените разрешения в това приложение @@ -5414,55 +6391,35 @@ We recommend you use the AppImage available on our downloads page. Relocating %1 [%2] - Преместване на % 1 [%2] + Преместване на %1 [%2] Overwriting %1 [%2] Презаписване %1 [%2] - - older entry merged from database "%1" - по-стари записи, обединени от база данни "%1" - - - Adding backup for older target %1 [%2] - - - - Adding backup for older source %1 [%2] - - - - Reapplying older target entry on top of newer source %1 [%2] - - - - Reapplying older source entry on top of newer target %1 [%2] - - Synchronizing from newer source %1 [%2] Синхронизиране от по-новия източник %1 [%2] Synchronizing from older source %1 [%2] - Синхронизиране от по-стария източник %1 [% 2] + Синхронизиране от по-стария източник %1 [%2] Deleting child %1 [%2] - + Премахване на наследник %1 [%2] Deleting orphan %1 [%2] - + Премахване на сирак %1 [%2] Changed deleted objects - + Промяна на премахнати обекти Adding missing icon %1 - Добавяне на липсваща икона %1 + Добавяне на липсваща пиктограма %1 Removed custom data %1 [%2] @@ -5477,7 +6434,7 @@ We recommend you use the AppImage available on our downloads page. NewDatabaseWizard Create a new KeePassXC database… - + Създаване на хранилище на KeePassXC… Root @@ -5489,130 +6446,132 @@ We recommend you use the AppImage available on our downloads page. NewDatabaseWizardPage WizardPage - + СтраницаОтПомощника Encryption 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 - Опростени настройки + Тук можете да настроите шифроването на хранилището. Но не се притеснявайте, можете да направите промени и по-късно в настройките на хранилището. NewDatabaseWizardPageDatabaseKey Database Credentials - Идентификационни данни на база данни + Достъп до хранилището A set of credentials known only to you that protects your database. - Набор от идентификационни данни, известни само за вас, които защитават вашата база данни. + Набор от данни за идентификация известни само на вас, служещи за защита на хранилището. NewDatabaseWizardPageEncryption Encryption Settings - Настройки на шифроване + Настройки на шифроването Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Тук можете да коригирате настройките за шифроване на база данни. Не се притеснявайте, можете да ги промените по-късно в настройките на базата данни. + Тук можете да настроите шифроването на хранилището. Но не се притеснявайте, можете да направите промени и по-късно в настройките на хранилището. NewDatabaseWizardPageMetaData General Database Information - Обща информация за база данни + Обща информация за хранилището Please fill in the display name and an optional description for your new database: - Моля, попълнете име и незадължително описание за новата си база данни: + Въведете име и незадължително описание на новото хранилище: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Името на прикачения файл не може да е празно + + + Attachment with the same name already exists + Прикачен файл със същото име вече съществува + + + Save attachment + Запазване + + + New entry attachment + Прикачен файл към нов запис NixUtils Password Manager - Мениджър на пароли + Управление на пароли Global shortcut already registered to %1 - + Тази клавишна комбинация се използва за %1 Could not register global shortcut - + Грешка при задаване на клавишна комбинация OpData01 Invalid OpData01, does not contain header - Невалиден OpData01, не съдържа хедър + Неприемлив OpData01, не съдържа заглавка Unable to read all IV bytes, wanted 16 but got %1 - Не може да се прочетат всички IV байта, нужни са 16, но имам %1 + Грешка при прочитане на ИВ, необходими са 16 байта, получени %1 Unable to init cipher for opdata01: %1 - Не може да се инициализира шифъра за opdata01: %1 + Грешка при подготвяне на шифъра за opdata01: %1 Unable to read all HMAC signature bytes - Не може да се прочетат всички байтове на HMAC подписа + Грешка при прочитане на подпис с HMAC Malformed OpData01 due to a failed HMAC - Неправилно оформен OpData01 поради грешен HMAC + Неправилен OpData01 поради грешен HMAC Unable to process clearText in place - Не може да се извърши обработката на текста на място + Съдържанието на clearText не може да бъде обработено на място. Expected %1 bytes of clear-text, found %2 - Очаквано %1 байта текст, намерени %2 - - - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Четене на база данни не е генерирана инстанция -%1 + Очаквани %1 байта чист текст, получени %2 OpVaultReader Directory .opvault must exist - Директорията .opvault трябва да съществува + Папката „.opvault“ трябва да съществува Directory .opvault must be readable - Директорията .opvault трябва да бъде четима + Папката „.opvault“ трябва да е четима Directory .opvault/default must exist - Директория .opvault/default трябва да съществува + Папката „.opvault/default“ трябва да съществува Directory .opvault/default must be readable - Директория .opvault/default трябва да е четима + Папката „.opvault/default“ трябва да е четима Unable to decode masterKey: %1 @@ -5620,14 +6579,14 @@ We recommend you use the AppImage available on our downloads page. Unable to derive master key: %1 - + Грешка при извличане на основен ключ: %1 OpenSSHKey Invalid key file, expecting an OpenSSH key - Невалиден файл с ключа, очаква се openSSH ключ + Недействителен файл с ключ, очакван е ключ на OpenSSH PEM boundary mismatch @@ -5635,39 +6594,43 @@ We recommend you use the AppImage available on our downloads page. Base64 decoding failed - Base64 декодирането е неуспешно + Грешка при декодиране на Base64 Key file way too small. - Файлът с ключа е твърде малък. + Файлът с ключ е твърде малък. Key file magic header id invalid - ID-то на магическия хедър на файла-ключ е невалиден + Неприемлив идентификатор на магическа заглавка на файл с ключ Found zero keys - Намерени нула ключа + Намерени са нула ключа Failed to read public key. - Не може да се прочете публичения ключ. + Публичен ключ не може да бъде прочетен. Corrupted key file, reading private key failed - Повреден файл с ключа, четенето на частен ключ е неуспешно + Файл с ключ е повреден, грешка при прочитане на частен ключ Unsupported key type: %1 - Неподдържан тип ключ: %1 + Неподдържан вид на ключ: %1 No private key payload to decrypt - + Няма данни, които да бъдат разшифровани с частен ключ Unknown cipher: %1 - Неизвестно шифър: %1 + Неизвестен шифър: %1 + + + AES-256/GCM is currently not supported + Стандартът AES-256/GCM в момента не се поддържа Passphrase is required to decrypt this key @@ -5675,86 +6638,242 @@ We recommend you use the AppImage available on our downloads page. Key derivation failed: %1 - + Грешка при извличане на ключ: %1 Cipher IV is too short for MD5 kdf - Шифъровачното IV е твърде кратък за MD5 kdf + ИВ на шифъра е твърде кратък за ФИК с MD5 Unknown KDF: %1 - Неизвестен KDF: %1 + Неизвестна ФИК: %1 Failed to initialize cipher: %1 - + Грешка при подготовка на шифър: %1 Decryption failed: %1 - + Грешка при разшифроване: %1 Decryption failed, wrong passphrase? - Неуспешено дешифриране, грешна фраза за достъп? + Грешка при разшифроване, грешна фраза за достъп? Unexpected EOF while reading key - + Неочакван край на файл при четене на ключ Unsupported key part - + Неподдържана част с ключ Unexpected EOF while reading public key - Неочакван EOF при четене на публичения ключ + Неочакван край на файл при четене на публичен ключ Unknown key type: %1 - Неизвестен тип ключ: %1 + Неизвестен вид ключ: %1 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 при запис на частния ключ + Неочакван край на файла при записване на частен ключ + + + (encrypted) + (шифровано) - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Паролите не съвпадат + SSH Key Generator + Създаване на ключове за SSH - Passwords match so far - Паролите съвпадат досега + Type + Вид - Toggle Password (%1) - Превключване на парола (%1) + Bits + Битове - Generate Password (%1) - Генериране на парола (%1) + Comment + Коментар + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Изнасяне на Passkey - Warning: Caps Lock enabled! - Предупреждение: Caps Lock активиран! + Filenames will be generated with title and .passkey file extension. + Имената на файловете ще бъдат създадени от заглавието и .passkey като разширение. + + + Export entries + Изнасяне на записи + + + Export Selected + Изнасяне на избраните + + + Cancel + Отказ + + + Export to folder + Изнасяне в папка + + + Export the following passkey entries. + Изнасяне на следните записи на passkey. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Изнасяне на Passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Файлът „%1.passkey“ съществува. +Желаете ли да бъде презаписан? + + + + Cannot open file + Файлът не може да бъде отворен + + + Cannot open file "%1" for writing. + Файлът „%1“ не може да бъде отворен за запис. + + + Cannot write to file + Грешка при запис във файл + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Внасяне на Passkey + + + Username: %1 + Потребителско име: %1 + + + Group + Група + + + Database + Хранилище + + + Import Passkey + Внасяне на Passkey + + + Import + Внасяне + + + Cancel + Отказ + + + Entry + Запис + + + Create new entry + Създаване на запис + + + Relying Party: %1 + Зависеща страна: %1 + + + Import the following passkey: + Внасяне на следния passkey: + + + Import the following passkey to this entry: + Внасяне на следния passkey в този запис: + + + Default passkeys group (Imported Passkeys) + Подразбирана група за passkeys (Внесени passkeys) + + + + PasskeyImporter + + Passkey file + Файл с Passkey + + + All files + Всички файлове + + + Cannot open file + Файлът не може да бъде отворен + + + Cannot open file "%1" for reading. + Файлът „%1“ не може да бъде отворен за четене. + + + Open passkey file + Отваряне на файл с passkey + + + Cannot import passkey + Грешка при внасяне на passkey + + + Cannot import passkey file "%1". Data is missing. + Грешка при внасяне на файл с passkey „%1“. Липсват данни. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Грешка при внасяне на файл с passkey „%1“. +Следните данни липсват: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Грешка при внасяне на файл с passkey „%1“. Липсва / повреден частен ключ @@ -5773,7 +6892,7 @@ We recommend you use the AppImage available on our downloads page. Repeat password field - Поле повтаряне на парола + Поле повтаряне на паролата Password @@ -5781,23 +6900,23 @@ We recommend you use the AppImage available on our downloads page. Add Password - + Добавяне на парола Change Password - + Промяна на паролата Remove Password - + Премахване на паролата Password set, click to change or remove - + Зададена е парола, щракнете, за да я промените или премахнете <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> - <p>Паролата е основният метод за защита на вашата база данни.</p><p>Добрите пароли са дълги и уникални. KeePassXC може да генерира такава за вас.</p> + <p>Основният метод за защита на хранилището е паролата.</p><p>Добрите пароли са дълги и уникални. KeePassXC може да създава такива пароли.</p> Passwords do not match. @@ -5808,7 +6927,7 @@ We recommend you use the AppImage available on our downloads page. PasswordGeneratorWidget Generate Password - Генериране на парола + Създаване на парола strength @@ -5821,7 +6940,7 @@ We recommend you use the AppImage available on our downloads page. Generated password - Генерирана парола + Създадена парола %p% @@ -5829,7 +6948,7 @@ We recommend you use the AppImage available on our downloads page. Regenerate password - Регенериране на парола + Повторно създаване на парола Copy password @@ -5853,11 +6972,11 @@ We recommend you use the AppImage available on our downloads page. Advanced - Допълнителни + Разширени Character Types - Типове знаци + Групи знаци Special characters @@ -5881,7 +7000,7 @@ We recommend you use the AppImage available on our downloads page. Numbers - Числа + Цифри Lower-case letters @@ -5901,11 +7020,11 @@ We recommend you use the AppImage available on our downloads page. Do not include: - Не включвайте: + Да не се включват: Additional characters to use for the generated password - Допълнителни знаци за използване за генерираната парола + Допълнителни знаци, които да бъдат използвани при създаване на паролата Additional characters @@ -5913,19 +7032,19 @@ We recommend you use the AppImage available on our downloads page. Add non-hex letters to "do not include" list - Добавяне на не-шестнадесетични букви към списъка "не включвай" + Добавяне на не-шестнадесетични знаци към списъка "да не не включват" Hex Passwords - Шеснайсетична парола + Шестнадесетична парола Hex - Шестнадесетичен + Шестнадесетични Character set to exclude from generated password - Набор от знаци за изключване от генерираната парола + Набор от знаци, които да не присъстват в паролата Excluded characters @@ -5933,19 +7052,15 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - Също изберете от: - - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Изключени знаци: "0", "1", "l", "I", "O", "|", "﹒" + Допълнителни знаци: Exclude look-alike characters - Изключване на подобни знаци + Изключване на еднакво изглеждащите знаци Pick characters from every group - Избиране на символи от всяка група + Най-малко по един символ от всяка група Passphrase @@ -5963,25 +7078,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: Брой думи: - - Character Count: - Брой знаци: - Word Case: Регистър на думите: Delete selected wordlist - + Премахване на списъка с думи Add custom wordlist - - - - character - Знак + Добавяне на потребителски списък с думи Close @@ -5997,81 +7104,36 @@ We recommend you use the AppImage available on our downloads page. Regenerate password (%1) - Регенериране на паролата (%1) + Повторно създаване на парола (%1) lower case - мали букви + долен регистър UPPER CASE - ГЛАВНИ БУКВИ + ГОРЕН РЕГИСТЪР Title Case - Title Case + Всяка Дума (SYSTEM) - + (СИСТЕМЕН) Entropy: %1 bit Ентропия: %1 бита - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - Всички файлове - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - Логограми - - - Special Characters - Специални знаци - Password Quality: %1 - Качество на паролата : %1 + Качество на паролата: %1 Poor Password quality - Слабо + Лошо Weak @@ -6088,39 +7150,167 @@ Do you want to overwrite it? Password quality Отлично + + Confirm Delete Wordlist + Потвърждаване на премахване на списък с думи + + + Do you really want to delete the wordlist "%1"? + Желаете ли списъкът с думи „%1“ да бъде премахнат? + + + Failed to delete wordlist + Грешка при премахване на списък с думи + + + Wordlists + Списъци с думи + + + All files + Всички файлове + + + Select Custom Wordlist + Избор на потребителски списък с думи + + + Overwrite Wordlist? + Презаписване на списъка с думи? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Списъкът с думи „%1“ съществува като потребителски списък. +Желаете ли да бъде презаписан? + + + Failed to add wordlist + Грешка при добавяне на списък с думи + + + Logograms + Логограми + + + Special Characters + Специални знаци + + + passwordLength + passwordLength + + + Characters: %1 + Знаци: %1 + + + MIXED case + Смесване на регистри + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Изключени знаци: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Паролите не съвпадат + + + Passwords match so far + Паролите за момента съвпадат + + + Toggle Password (%1) + Превключване видимостта на паролата (%1) + + + Generate Password (%1) + Създаване на парола (%1) + + + Warning: Caps Lock enabled! + Внимание: Caps Lock е включен! + + + Quality: %1 + Качество: %1 + + + Poor + Password quality + Лошо + + + Weak + Password quality + Слабо + + + Good + Password quality + Добро + + + Excellent + Password quality + Отлично + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Превключете видимостта на паролата с Control + H. Създавайте пароли с Control + G. + PickcharsDialog KeePassXC - Pick Characters - + KeePassXC - Избор на знаци Select characters to type, navigate with arrow keys, Ctrl + S submits. - + Изберете знаци, които да бъдат въведени, придвижвайте се със стрелките, Ctrl+S изпраща. Press &Tab between characters - + Натиснете &Табулатор между знаците + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Преглед на прикачен файл към запис + + + No preview available + Не е възможен преглед + + + Image format not supported + Този вид изображения не се поддържат QMessageBox Overwrite - Презапиши + Презаписване Delete - Триене + Премахване Move - Премести + Преместване Empty - Изпразни + Изпразване Remove @@ -6136,22 +7326,26 @@ Do you want to overwrite it? Merge - Слей + Сливане Continue - Продължи + Напред + + + Continue with weak password + Напред със слаба парола QObject Database not opened - Базата данни не е отворена + Хранилището не е отключено Database hash not available - Няма хеш на база данни + Не е наличен отпечатък от хранилището Client public key not received @@ -6159,7 +7353,7 @@ Do you want to overwrite it? Cannot decrypt message - Съобщението не може да се дешифрира + Съобщението не може да бъде разшифровано Action cancelled or denied @@ -6171,7 +7365,7 @@ Do you want to overwrite it? KeePassXC association failed, try again - KeePassXC асоциацията е неуспешна, опитайте отново + KeePassXC не се свърза, опитайте отново. Encryption key is not recognized @@ -6187,7 +7381,7 @@ Do you want to overwrite it? No URL provided - Не е предоставен URL + Не е предоставен адрес No logins found @@ -6199,51 +7393,51 @@ Do you want to overwrite it? Cannot create new group - Не може да се създаде нова група + Нова група не може да бъде създадена No valid UUID provided - + Не е предоставен действителен идентификатор Unknown error - Неизвестна грешка + Неочаквана грешка Browser Integration - Интеграция на браузъра + Съчетаване с мрежов четец Browser Plugin Failure - Неуспех в браузърния плъгин + Грешка в разширение на мрежовия четец Could not save the native messaging script file for %1. - + Файла със скрипта за присъщите съобщения за %1 не е запазен. Username for the entry. - Потребителско име за записа. + Потребителско име на записа. username - потребитерско име + потребителско име URL for the entry. - URL за записа. + Адрес на записа. URL - Url + Адрес Notes for the entry. - Бележки за записа. + Бележка към записа. Notes - Бележки + Бележка Prompt for the entry's password. @@ -6251,23 +7445,23 @@ Do you want to overwrite it? Generate a password for the entry. - Генериране на парола за записа. + Създаване на парола за записа. Add a new entry to a database. - Добавяне на нов запис към база данни. + Добавяне на запис към хранилище. Path of the entry to add. - Път на записа за добавяне. + Път на записа, който да бъде добавен. Cannot generate a password and prompt at the same time. - + Не може да бъде създавана парола и да бъде извеждано запитване за парола едновременно. Could not create entry with path %1. - Не може да се създаде запис с път %1. + Запис с път %1 не може да бъде създаден. Enter password for new entry: @@ -6275,23 +7469,23 @@ Do you want to overwrite it? Writing the database failed %1. - Грешка при запис на базата данни: %1 + Грешка при запис на хранилището: %1 Successfully added entry %1. - Успешно добавен запис %1. + Записът %1 е добавен. Adds a new group to a database. - Добавя нова група към база данни. + Добавя нова група към хранилище. Path of the group to add. - Пътят на групата за добавяне. + Път, където да бъде добавена групата. Group %1 already exists! - Групата %1 вече съществува! + Групата %1 съществува! Group %1 not found. @@ -6299,11 +7493,11 @@ Do you want to overwrite it? Successfully added group %1. - Успешно добавена група %1. + Групата %1 е добавена. Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - Проверете дали има публичен достъп до пароли. FILENAME трябва да бъде пътя на файл, който включва SHA-1 хешове на пароли, пропускани в HIBP формат, както е налично от https://haveibeenpwned.com/Passwords. + Проверете дали има пароли, които са публично разкрити. FILENAME трябва да бъде пътят към файл, който съдържа отпечатъци с SHA-1 на разкритите пароли във формата на HIBP, както е наличен на https://haveibeenpwned.com/Passwords. FILENAME @@ -6311,157 +7505,157 @@ Do you want to overwrite it? Path to okon-cli to search a formatted HIBP file - + Път, в който okon-cli да търси за файл във формата на HIBP okon-cli - + okon-cli Analyze passwords for weaknesses and problems. - Анализирай паролите за слабости и проблеми. + Проверява пароли за слабости и проблеми. Cannot find HIBP file: %1 - + Файлът на HIBP не може да бъде намерен: %1 Evaluating database entries using okon… - + Оценяване на записите в хранилището посредством okon… Failed to open HIBP file %1: %2 - Грешка при отваряне на ФАЙЛА %1: %2 + Грешка при отваряне на файла на HIBP %1: %2 Evaluating database entries against HIBP file, this will take a while… - + Оценяване на записите в хранилището спрямо файл на HIBP. Ще отнеме известно време… Password for '%1' has been leaked %2 time(s)! - Паролата за '%1' е изтекла %2 път!Паролата за '%1' е изтекла %2 пъти! + Паролата за „%1“ е разкрита %2 път!Паролата за „%1“ е разкрита %2 пъти! Password for '%1' has been leaked! - Паролата за '%1' е изтекла! + Паролата за „%1“ е разкрита! Export an attachment of an entry. - + Изнасяне на прикачен файл към запис. Path of the entry with the target attachment. - + Път към записа с прикачен файл. Name of the attachment to be exported. - + Име на прикаченият файл, който да бъде изнесен. Path to which the attachment should be exported. - + Пътят, където прикаченият файл да бъде изнесен. Could not find entry with path %1. - Не може да се намери запис с път %1. + Запис с път %1 не може да бъде намерен. Could not find attachment with name %1. - + Прикачен файл с име %1 не може да бъде намерен. No export target given. Please use '--stdout' or specify an 'export-file'. - + Не е указана цел за изнасян. Използвайте '--stdout' или посочете 'export-file'. Could not open output file %1. - + Файлът %1 не може да бъде отворен за запис. Successfully exported attachment %1 of entry %2 to %3. - + Прикаченият файл %1 е изнесен от запис %2 в %3 Overwrite existing attachments. - + Презаписване на съществуващите прикачени файлове. Imports an attachment to an entry. - + Внася прикачен файл в избран запис. Path of the entry. - + Път към записа. Name of the attachment to be added. - + Име на прикачен файл, който да бъде добавен. Path of the attachment to be imported. - + Път към прикачен файл, който да бъде внесен. Attachment %1 already exists for entry %2. - + Прикаченият файл %1 вече е добавен в запис %2. Could not open attachment file %1. - + Прикаченият файлът %1 не може да бъде отворен. Successfully imported attachment %1 as %2 to entry %3. - + Прикаченият файл %1 е добавен успешно като %2 в запис %3. Remove an attachment of an entry. - + Премахване на прикачен файл от избран запис. Name of the attachment to be removed. - + Име на прикачен файл, който да бъде премахнат. Successfully removed attachment %1 from entry %2. - + Прикаченият файл %1 от запис %2 е премахнат успешно. Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Копирайте дадения атрибут в клипборда. По подразбиране е "password", ако не е зададен. + Копиране на даден атрибут в междинната памет. Ако не е зададен използва "password". Copy the current TOTP to the clipboard (equivalent to "-a totp"). - Копирай текущия TOTP в клипборда (еквивалентно на "-a totp"). + Копиране на текущия код за TOTP в междинната памет (същото като "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. - + Трябва да съвпада само с един запис, в противен случай се показва списък със съвпаденията. Copy an entry's attribute to the clipboard. - Копиране на атрибут на записа в клипборда. + Копиране на атрибут на записа. Path of the entry to clip. clip = copy to clipboard - + Път към записа, който да бъде копиран. Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + Изчакване преди междинната памет да бъде изчистена (по подразбиране - %1 секунди, 0 премахва ограничението). Invalid timeout value %1. - Невалидна стойност на таймаут %1. + Неприемлива стойност на изчакване %1. Multiple entries matching: - Няколко записа, които съвпадат: + Съвпада повече от един запис: Using matching entry: %1 - + Съвпадащ запис: %1 Entry %1 not found. @@ -6469,7 +7663,7 @@ Do you want to overwrite it? ERROR: Please specify one of --attribute or --totp, not both. - ГРЕШКА: Моля, посочете --attribute, --totp или и двете. + ГРЕШКА: Посочете --attribute, --totp или и двете. Entry with path %1 has no TOTP set up. @@ -6477,39 +7671,39 @@ Do you want to overwrite it? ERROR: attribute %1 is ambiguous, it matches %2. - Грешка: атрибут %1 е двусмислен, съвпада с %2. + Грешка: атрибутът %1 е двусмислен, съвпада с %2. Attribute "%1" not found. - Не е намерен атрибут "%1". + Атрибутът „%1“ не е намерен. Entry's "%1" attribute copied to the clipboard! - Атрибутът на записа "%1" е копиран в клипборда! + Атрибутът на записа „%1“ е копиран! Clearing the clipboard in %1 second(s)... - Изчистване на клипборда след %1 секунда...Изчистване на клипборда след %1 секунди... + Изчистване на междинната памет след %1 секунда…Изчистване на междинната памет след %1 секунди… Clipboard cleared! - Клипборда е изчистен! + Междинната памет е изчистена! Close the currently opened database. - Затворяне на текущо отворената база данни. + Затваряне на отвореното хранилище. Display this help. - Покажи тази помощ. + Показване на помощта. Silence password prompt and other secondary outputs. - Заглуши промпта за паролата и други воторостепенни изходи. + Без запитване за парола и други извеждания с нисък приоритет. Key file of the database. - Файл-ключа на базата данни. + Файлът с ключ на хранилището. path @@ -6517,79 +7711,79 @@ Do you want to overwrite it? Deactivate password key for the database. - Деактивиране на парола за базата данни. + Без използване на парола за хранилището. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - + Позиция на YubiKey и по желание сериен номер за достъп до хранилището (напр. 1:7370001). slot[:serial] - + позиция[:сериен-номер] Missing positional argument(s). - + Липсват подредени аргументи. Too many arguments provided. - - - - Target decryption time in MS for the database. - Целево време за дешифриране на базата в MS. - - - time - Време - - - Set the key file for the database. - Задаване на файл-ключа за базата данни. - - - Set a password for the database. - Задайте парола за базата данни. - - - Create a new database. - Създаване на нова база данни. + Подадени са твърде много аргументи. Path of the database. - Път на базата данни. + Път до хранилището. + + + Target decryption time in MS for the database. + Целево време за разшифроване на хранилището в милисекунди. + + + time + време + + + Set the key file for the database. + Задаване на файл с ключ за хранилището. + + + Set a password for the database. + Задаване на парола за хранилището. + + + Create a new database. + Създаване на ново хранилище. Invalid decryption time %1. - Невалидно време за дешифриране %1. + Неприемливо време за разшифроване %1. Target decryption time must be between %1 and %2. - Целевото реме за дешифриране трябва да бъде между %1 и %2. + Целевото време за разшифроване трябва да бъде между %1 и %2. Failed to set database password. - Неуспешно задаване на парола за базата данни. + Грешка при задаване на парола за хранилището. Loading the key file failed - Зареждането на файл-ключа е неуспешно + Грешка при зареждане на файл с ключ No key is set. Aborting database creation. - Не е зададен ключ. Прекратяване на създаването на база данни. + Не е зададен ключ. Прекратяване на създаването на хранилище. Benchmarking key derivation function for %1ms delay. - + Измерване на производителността на функцията за извличане на ключове при закъснение от %1 мс. Setting %1 rounds for key derivation function. - + Задаване на %1 извиквания за функцията за извличане на ключове. error while setting database key derivation settings. - + грешка при задаване на настройки за извличане на ключ на хранилище. File %1 already exists. @@ -6597,297 +7791,71 @@ Do you want to overwrite it? Failed to save the database: %1. - Грешка при записване на базата данни: %1. + Грешка при запазване на хранилището: %1. Successfully created new database. - Успешно създадена нова база данни. + Създадено е ново хранилище. - Word count for the diceware passphrase. - + Unset the password for the database. + Премахване на парола от хранилище. - count - CLI parameter - брой + Unset the key file for the database. + Премахване на файл с ключ от хранилище. - Wordlist for the diceware generator. -[Default: EFF English] - + Edit a database. + Променяне на хранилище. - Generate a new random diceware passphrase. - + Cannot use %1 and %2 at the same time. + „%1“ и „%2“ не могат да бъдат използвани едновременно. - Invalid word count %1 - Невалиден брой думи %1 + Could not change the database key. + Ключът за хранилището не може да бъде сменен. - The word list is too small (< 1000 items) - Списъкът с думи е твърде малък (< 1000 елемента) - - - Title for the entry. - Заглавие на записа. - - - title - заглавие - - - Edit an entry. - Редактиране на запис. - - - Path of the entry to edit. - Път към записа за редактиране. - - - Not changing any field for entry %1. - Без провени в полетата за записа %1. - - - Enter new password for entry: - Въведете нова парола за записа: + Database was not modified. + Хранилището не е променено. Writing the database failed: %1 - Грешка при запис на базата данни: %1 + Грешка при записване на хранилището: %1 - Successfully edited entry %1. - Успешно редактиран запис %1. + Successfully edited the database. + Хранилището е променено. - Perform advanced analysis on the password. - Извършване на разширен анализ на паролата. + Cannot remove password: The database does not have a password. + Паролата не може да бъде премахната: хранилището няма парола. - Password for which to estimate the entropy. - Парола за която да се оцени ентропията. + Cannot remove file key: The database does not have a file key. + Файлът с ключ не може да бъде премахнат: хранилището няма файл с ключ. - Estimate the entropy of a password. - Оцени ентропията на паролата. + Loading the new key file failed: %1 + Грешка при зареждане на новия файл с ключ: %1 - Length %1 - Дължина %1 + Found unexpected Key type %1 + Намерен е неочакван вид на ключа %1 - Entropy %1 - Ентропия %1 - - - Log10 %1 - Логаритъм10 %1 - - - Multi-word extra bits %1 - - - - Type: Bruteforce - Тип: Брутфорс - - - Type: Dictionary - Тип: Речник - - - Type: Dict+Leet - Тип: Речник+Leet - - - Type: User Words - Тип: Уличен жаргон - - - Type: User+Leet - Тип: Потребителски+Leet - - - Type: Repeated - Тип: Повтарящи се - - - Type: Sequence - Тип: Последователност - - - Type: Spatial - Тип: Пространствен - - - Type: Date - Тип: Дата - - - Type: Bruteforce(Rep) - Тип: Брутафорс(повтаряеми) - - - Type: Dictionary(Rep) - Тип: Речник (повт.) - - - Type: Dict+Leet(Rep) - Тип: Речник+Leet(повт.) - - - Type: User Words(Rep) - Тип: Потребителски думи(повт.) - - - Type: User+Leet(Rep) - Тип: Потребителски+Leet(повт.) - - - Type: Repeated(Rep) - Тип: Повтарящи се(повт.) - - - Type: Sequence(Rep) - Тип: Последователност(повт.) - - - Type: Spatial(Rep) - Тип: Пространствено(повт.) - - - Type: Date(Rep) - Тип: Дата(повт.) - - - Type: Unknown (%1) - - - - Entropy %1 (%2) - Ентропия %1 (%2) - - - *** Password length (%1) != sum of length of parts (%2) *** - Дължина на паролата (%1) != сума от дължината на частите (%2) *** - - - Exit interactive mode. - Излизане от интерактивния режим. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Формат при експортиране. Наличните възможности са "xml" и "csv". По подразбиране е "xml". - - - Exports the content of a database to standard output in the specified format. - Експортира съдържанието на база данни в стандартен изход в указания формат. - - - Unable to export database to XML: %1 - Не може да се експортира база данни в XML: %1 - - - Unsupported format %1 - Неподдържан формат %1 - - - Length of the generated password - Дължина на генерираната парола - - - length - Дължина - - - Use lowercase characters - Използване на малки букви - - - Use uppercase characters - Използване на главни букви - - - Use numbers - Използване на номера - - - Use special characters - Използване на специални знаци - - - Use extended ASCII - Използвай разширен ASCII - - - Exclude character set - Изключване на набор от знаци - - - chars - Символи - - - Use custom character set - - - - Exclude similar looking characters - Изключване на подобни знаци - - - Include characters from every selected group - Включване на знаци от всяка избрана група - - - Generate a new random password. - Генерирайте нова случайна парола. - - - Invalid password length %1 - Невалидна дължина на паролата %1 - - - Invalid password generator after applying all options - Невалиден генератор на пароли след прилагане на всички опции - - - Display command help. - Показване на помощ за командна. - - - Available commands: - Налични команди: - - - Import the contents of an XML database. - Импортиране на съдържанието на XML база данни. - - - Path of the XML database export. - Път на експортирането на XML база данни. - - - Path of the new database. - Път към новата база данни. - - - Unable to import XML database: %1 - Не може да се импортира XML база данни:% 1 - - - Successfully imported database. - Успешно импортирана база данни. + Cannot remove all the keys from a database. + Не трябва да бъдат премахвани всички ключове от хранилище. Show a database's information. - Показване на информация за базата данни. + Показване на подробности за хранилище. UUID: - UUID: + Идентификатор: Name: @@ -6903,11 +7871,11 @@ Do you want to overwrite it? KDF: - KDF: + ФИК: Recycle bin is enabled. - Кошчето е включено(. + Кошчето е включено. Recycle bin is not enabled. @@ -6919,19 +7887,19 @@ Do you want to overwrite it? Database created - + Хранилището е създадено Last saved - Последно записан + Последно запазване Unsaved changes - Незаписани промени + Незапазени промени yes - Да + да no @@ -6947,7 +7915,7 @@ Do you want to overwrite it? Number of expired entries - Брой изтекли записи + Брой записи с изтекла давност Unique passwords @@ -6959,7 +7927,7 @@ Do you want to overwrite it? Maximum password reuse - Максимална преизползване на парола + Най-преизползвана парола Number of short passwords @@ -6967,7 +7935,7 @@ Do you want to overwrite it? Number of weak passwords - Брой на слабите пароли + Брой слаби пароли Entries excluded from reports @@ -6981,6 +7949,273 @@ Do you want to overwrite it? %1 characters %1 знака + + Word count for the diceware passphrase. + Брой думи при създаване на фраза за достъп + + + count + CLI parameter + брой + + + Wordlist for the diceware generator. +[Default: EFF English] + Списък с думи при създаване на фраза за достъп +[Подразбиран: EFF English] + + + Generate a new random diceware passphrase. + Създаване на произволна фраза за достъп. + + + Invalid word count %1 + Неприемлив брой думи %1 + + + Title for the entry. + Заглавие на записа. + + + title + заглавие + + + Edit an entry. + Променяне на запис. + + + Path of the entry to edit. + Път към записа, който да бъде променян. + + + Not changing any field for entry %1. + Без променяне на полетата на записа %1. + + + Enter new password for entry: + Въведете нова парола за записа: + + + Successfully edited entry %1. + Записът %1 е променен. + + + Perform advanced analysis on the password. + Извършване на разширен анализ на паролата. + + + Password for which to estimate the entropy. + Паролата, на която да бъде оценена ентропията. + + + Estimate the entropy of a password. + Оценяване на ентропията на паролата. + + + Length %1 + Дължина %1 + + + Entropy %1 + Ентропия %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Допълнителни битове от повече думи %1 + + + Type: Bruteforce + Вид: изчерпателно изброяване + + + Type: Dictionary + Вид: речник + + + Type: Dict+Leet + Вид: речник + leet + + + Type: User Words + Вид: потребителски думи + + + Type: User+Leet + Вид: потребителски + leet + + + Type: Repeated + Вид: повторени + + + Type: Sequence + Вид: последователен + + + Type: Spatial + Вид: пространствен + + + Type: Date + Вид: дата + + + Type: Bruteforce(Rep) + Вид: изчерп. изброяване (повторения) + + + Type: Dictionary(Rep) + Вид: речник (повторения) + + + Type: Dict+Leet(Rep) + Вид: речник + leet (повторения) + + + Type: User Words(Rep) + Вид: потребителски думи (повторения) + + + Type: User+Leet(Rep) + Вид: потребителски думи + leet (повторения) + + + Type: Repeated(Rep) + Вид: повторени (повторения) + + + Type: Sequence(Rep) + Вид: последователен (повторения) + + + Type: Spatial(Rep) + Вид: пространствен (повторения) + + + Type: Date(Rep) + Вид: дата (повторения) + + + Type: Unknown (%1) + Вид: неизвестен (%1) + + + Entropy %1 (%2) + Ентропия %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Дължината на паролата (%1) != сумата от дължините на частите (%2) *** + + + Exit interactive mode. + Излизане от интерактивен режим. + + + Exports the content of a database to standard output in the specified format. + Изнася съдържанието на хранилището към стандартния изход в указания формат. + + + Unable to export database to XML: %1 + Грешка при изнасяне на хранилище в XML: %1 + + + Unsupported format %1 + Неподдържан формат %1 + + + Length of the generated password + Дължина на създаваната парола + + + length + дължина + + + Use lowercase characters + Използване на букви от долен регистър + + + Use uppercase characters + Използване на букви от горен регистър + + + Use numbers + Използване на цифри + + + Use special characters + Използване на специални знаци + + + Use extended ASCII + Използване на разширен ASCII + + + Exclude character set + Изключване на набор от знаци + + + chars + символи + + + Use custom character set + Използване на потребителски набор от символи + + + Exclude similar looking characters + Изключване на знаците, които изглеждат еднакво + + + Include characters from every selected group + Използване на символи от всяка избрана група + + + Generate a new random password. + Създаване на случайна парола. + + + Invalid password length %1 + Неприемлива дължина на паролата %1 + + + Invalid password generator after applying all options + Не може да бъде създадена парола с избраните стойности. + + + Display command help. + Показване на помощ за команда. + + + Available commands: + Налични команди: + + + Import the contents of an XML database. + Внасяне на съдържание от хранилище в XML. + + + Path of the XML database export. + Път, в който да бъде изнесено хранилище в XML. + + + Path of the new database. + Път към новото хранилище. + + + Unable to import XML database: %1 + Грешка при внасяне на хранилище в XML формат: %1 + + + Successfully imported database. + Хранилището е внесено. + Unknown command %1 Неизвестна команда %1 @@ -6990,7 +8225,10 @@ Do you want to overwrite it? Available commands: - Налични команди: + + +Налични команди: + Name of the command to execute. @@ -7002,7 +8240,7 @@ Available commands: Invalid command %1. - Невалидна команда %1. + Недействителна команда %1. Recursively list the elements of the group. @@ -7010,51 +8248,51 @@ Available commands: Flattens the output to single lines. - Изравнява изхода към единични редове. + Съкращава изхода до единични редове. List database entries. - Списък на записите в базата данни. + Изброява записите в хранилището. Path of the group to list. Default is / - Път на групата за показване. По подразбиране е / + Път до групата, която да бъде изброена. По подразбиране е / Cannot find group %1. - Не може да се намери групата %1. + Групата %1 не може да бъде намерена. Use the same credentials for both database files. - Използвайте едни и същи идентификационни данни за двата файла с бази данни. + Използване на едно удостоверяване на достъпа за двете хранилища. Key file of the database to merge from. - Файл-ключа на базата данни за сливане. + Файлът с ключ на хранилището, от което да бъде сливано. Deactivate password key for the database to merge from. - + Без използване на парола за хранилището, от което да бъде сливано. Only print the changes detected by the merge operation. - Изкарай само промените, открити от операцията за сливане. + Отпечатване само на промените, открити от действието сливане. Yubikey slot for the second database. - Yubikey слот за втората база данни. + Позиция на YubiKey за второто хранилище. slot - слот + позиция Merge two databases. - Сливане на две бази данни. + Сливане на две хранилища. Path of the database to merge from. - Път до базата данни, от която да се слее. + Път до хранилището, от което да бъде сливано. Error reading merge file: @@ -7064,7 +8302,7 @@ Available commands: Unable to save database to file : %1 - Базата данни не може да бъде записана във файл: %1 + Хранилището не може да бъде запазено във файл: %1 Successfully merged %1 into %2. @@ -7072,7 +8310,7 @@ Available commands: Database was not modified by merge operation. - Базата данни не е модифицирана от операция по сливане. + Хранилище не е променяно при сливането. Moves an entry to a new group. @@ -7080,11 +8318,11 @@ Available commands: Path of the entry to move. - Път на записа за местене. + Път към записа, който да бъде преместен. Path of the destination group. - Път на целевата група. + Път към целевата група. Could not find group with path %1. @@ -7100,39 +8338,39 @@ Available commands: Open a database. - Отворете база данни. + Отваряне на хранилище. Path of the entry to remove. - Път на записа за премахване. + Път към записа, който да бъде премахнат. Unable to save database to file: %1 - Базата данни не може да бъде записана във файл: % 1 + Хранилището не може да бъде запазено във файл: %1 Successfully recycled entry %1. - Успешно изтриване на запис%1. + Записът %1 е преместен в кошчето. Successfully deleted entry %1. - Успешно изтрит елемент %1. + Записът %1 е премахнат. Path of the group to remove. - Пътят на групата за премахване. + Път към групата, която да бъде премахната. Cannot remove root group from database. - Не може да се премахне главната група от базата данни. + Кореновата група на хранилището не може да бъде премахната. Successfully recycled group %1. - Успешно изтрита група% 1. + Групата %1 е преместена в кошчето. Successfully deleted group %1. - Успешно изтрита група %1. + Групата %1 е премахната. Find entries quickly. @@ -7150,13 +8388,17 @@ Available commands: Show the protected attributes in clear text. Показване на защитените атрибути в чист текст. + + Show all the attributes of the entry. + Показване на всички атрибути на записа. + Show the attachments of the entry. - + Показване на прикачените файлове към записа. 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 @@ -7168,7 +8410,7 @@ Available commands: Name of the entry to show. - Име на записа за показване. + Име на записа, който да бъде показан. ERROR: unknown attribute %1. @@ -7176,23 +8418,23 @@ Available commands: No attachments present. - + Няма прикачени файлове. Attachments: - + Прикачени файлове: Failed to open database file %1: not found - Грешка при отваряне на файла %1: не е намерен + Грешка при отваряне на хранилището %1: не е намерено Failed to open database file %1: not a plain file - Грешка при отваряне на файла %1 на база данни: не е текстов файл + Грешка при отваряне на хранилището %1: не е текстов файл Failed to open database file %1: not readable - Грешка при отваряне на файла %1: не е четим + Грешка при отваряне на хранилището %1: няма права за четене Enter password to unlock %1: @@ -7200,32 +8442,36 @@ Available commands: Failed to load key file %1: %2 - Грешка при зареждане на файла-ключ %1: %2 + Грешка при зареждане на файл с ключ %1: %2 WARNING: You are using an old key file format which KeePassXC may stop supporting in the future. Please consider generating a new key file. - Използвате остарял файлов формат на ключа, който KeePass XC може да спре да поддържа в бъдеще. + ВНИМАНИЕ: Използвате стар формат на файла с ключ, който KeePassXC може да спре да поддържа в бъдеще. -Помислете за генериране на нов ключ файл. +Вземете предвид възможността да създадете нов файл с ключ. Invalid YubiKey slot %1 - Невалиден YubiKey слот %1 + Неприемлива позиция %1 на YubiKey Invalid YubiKey serial %1 - Невалиден YubiKey сериен номер %1 + Неприемлив сериен номер на YubiKey %1 + + + Please present or touch your YubiKey to continue. + За да продължите, добавете или докоснете своя YubiKey. Enter password to encrypt database (optional): - Въведете парола за шифроване на база данни (незадължително): + Въведете парола, която да шифрова хранилището (по желание): Do you want to create a database with an empty password? [y/N]: - Искате ли да създадете база данни с празна парола? [y/N]: + Желаете ли хранилището да бъде създадено с празна парола? [y/N]: Repeat password: @@ -7237,40 +8483,41 @@ Please consider generating a new key file. No program defined for clipboard manipulation - Няма програма, дефинирана за манипулация на клипборда + Не е избрано приложение, което да управлява междинната памет All clipping programs failed. Tried %1 - + Грешка с всички приложения за междинна памет. Използвани са %1 + Creating KeyFile %1 failed: %2 - Грешка при създаване на KeyFile %1: %2 + Грешка при създаване на файл с ключ %1: %2 Loading KeyFile %1 failed: %2 - Грешка при зареждане на KeyFile %1: %2 + Грешка при зареждане на файл с ключ %1: %2 HIBP file, line %1: parse error - Файл HIBP, ред %1: грешка при парсване + Файл HIBP, ред %1: грешка при разбор To use okon, you must provide a post-processed file (e.g. file.okon) - + За да използвате okon, трябва да заредите съответния файл (например, file.okon) Could not start okon process: %1 - + Невъзможно стартиране на процес за търсене чрез okon: %1 Error: okon process did not finish - + Грешка: търсенето чрез okon не е завършило Failed to load okon processed database: %1 - + Грешка при зареждане на обработеното с okon хранилище: %1 Very weak password @@ -7286,43 +8533,43 @@ Please consider generating a new key file. Used in %1/%2 - Използвани в %1/%2 + Използвана в %1/%2 Password is used %1 time(s) - + Паролата е преизползвана %1 пътПаролата е преизползвана %1 пъти Password has expired - Паролата е изтекъла + Паролата е с изтекла давност Password expiry was %1 - Изтичането на паролата беше на %1 + Давността на паролата е била до %1 Password expires on %1 - Паролата изтича на %1 + Давността на паролата изтича на %1 Password is about to expire - Паролата скоро ще изтече + Давността на паролата изтича Password expires in %1 day(s) - + Давността на паролата изтича след %1 денДавността на паролата изтича след %1 дена Password will expire soon - Паролата ще изтече скоро + Давността на паролата изтича Version %1 - Версия %1 + Издание %1 Build Type: %1 - Тип на компилацията: %1 + Вид на компилацията: %1 Revision: %1 @@ -7350,11 +8597,11 @@ Kernel: %3 %4 Auto-Type - Auto-Type + Автоматично въвеждане SSH Agent - SSH Agent + Агент на SSH KeeShare @@ -7366,11 +8613,11 @@ Kernel: %3 %4 Quick Unlock - + Бързо отключване Secret Service Integration - Secret Service интеграция + Съчетаване с Услуга за тайни None @@ -7382,31 +8629,31 @@ Kernel: %3 %4 over %1 year(s) - + повече от %1 годинаповече от %1 години about %1 month(s) - + около %1 месецоколо %1 месеца %1 week(s) - + %1 седмица%1 седмици %1 day(s) - + %1 ден%1 дена %1 hour(s) - + %1 час%1 часа %1 minute(s) - + %1 минута%1 минути - Botan library must be at least 2.11.x, found %1.%2.%3 - + Botan library must be at least %1, found %2.%3.%4 + Библиотеката Botan трябва да е най-малко %1, но е намерено %2.%3.%4 Cryptographic libraries: @@ -7414,35 +8661,35 @@ Kernel: %3 %4 AES (%1 rounds) - AES (% 1 рунда) + AES (%1 преобразувания) Argon2%1 (%2 rounds, %3 KB) - + Argon2%1 (%2 преобразувания, %3 КБ) SymmetricCipher::init: Invalid cipher mode. - + SymmetricCipher::init: Неприемлив режим на шифър. SymmetricCipher::init: Invalid IV size of %1 for %2. - + SymmetricCipher::init: Неприемлив размер на ИВ от %1 за %2. Cipher not initialized prior to use. - + Шифър не е подготвен преди използване. Cannot process 0 length data. - + Данни с дължина 0 не могат да бъдат обработвани. unknown executable (DBus address %1) - + неизвестен изпълним файл (адрес по DBus %1) %1 (invalid executable path) - + %1 (неприемлив път към изпълним файл) NULL device @@ -7450,43 +8697,31 @@ Kernel: %3 %4 error reading from device - грешка при четене от устройството + грешка при четене от устройство file empty празен файл - - malformed string - неправилен низ - - - missing closing quote - липсваща затваряща кавичка - - - %1: (row, col) %2,%3 - %1: (ред, колона) %2,%3 - AES 256-bit - AES 256-битов + AES 256 разряден Twofish 256-bit - Twofish 256-битов + Twofish 256 разряден ChaCha20 256-bit - + ChaCha20 256 разряден Argon2d (KDBX 4 – recommended) - + Argon2d (KDBX 4 – препоръчано) Argon2id (KDBX 4) - + Argon2id (KDBX 4) AES-KDF (KDBX 4) @@ -7494,19 +8729,19 @@ Kernel: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. - + Съществуващият заключващ файл за единичен екземпляр е недействителен. Стартиране на нов екземпляр. The lock file could not be created. Single-instance mode disabled. - + Грешка при създаване на файл за заключване. Режимът на единичен екземпляр е изключен. Clearing the clipboard in %1 second(s)… - + Изчистване на междинната памет след %1 секунда…Изчистване на междинната памет след %1 секунди… Group @@ -7518,7 +8753,7 @@ Kernel: %3 %4 Username - Портебител + Потребител Password @@ -7530,24 +8765,24 @@ Kernel: %3 %4 Icon - Икона + Пиктограма Last Modified - Последно променена + Последна промяна Created - Създаден + Създаване Benchmark %1 delay - Бенчмарк %1 закъснение + Производителност при забавяне от %1 %1 ms milliseconds - % 1 ms%1 ms + %1 мс%1 мс %1 s @@ -7556,35 +8791,35 @@ Kernel: %3 %4 Do you really want to delete the entry "%1" for good? - Наистина ли искате да изтриете записа "%1" за добро? + Желаете ли записът „%1“ да бъде премахнат завинаги? Do you really want to delete %n entry(s) for good? - + Желаете ли %n запис да бъде премахнат завинаги?Желаете ли %n записа да бъдат премахнати завинаги? Delete entry(s)? - + Премахване на запис?Премахване на записи? Do you really want to move entry "%1" to the recycle bin? - Наистина ли искате да преместите запис "%1" в кошчето? + Желаете ли записът „%1“ да бъде преместен в кошчето? Do you really want to move %n entry(s) to the recycle bin? - + Желаете ли %n запис да бъде преместен в кошчето?Желаете ли %n записа да бъдат преместени в кошчето? Move entry(s) to recycle bin? - + Преместване на запис в кошчето?Преместване на записи в кошчето? 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 референция. Желаете ли тази референция да бъде заменена със стойност, записът да бъде пропуснат или въпреки това да бъде премахнат?Записът „%1“ има %2 референции. Желаете ли тези референции да бъдат заменени със стойности, записът да бъде пропуснат или въпреки това да бъде премахнат? User name @@ -7592,7 +8827,7 @@ Kernel: %3 %4 Browser Statistics - + Статистика от мрежовия четец Health Check @@ -7608,170 +8843,485 @@ Kernel: %3 %4 Unsupported key file version: %1 - Неподдържан тип ключ: %1 + Неподдържано издание на файл с ключ: %1 Checksum mismatch! Key file may be corrupt. - + Несъвпадаща контролна сума! Файлът с ключа навярно е повреден. Unexpected key file data! Key file may be corrupt. - + Неочаквани данни от файл с ключ! Файлът с ключа навярно е повреден. KeePassXC - cross-platform password manager - KeePassXC - крос-платформен мениджър на пароли + KeePassXC - Управление на пароли filenames of the password databases to open (*.kdbx) - файловите имена на базите данни с пароли за отваряне (*.kdbx) + файлове или хранилища за пароли (*.kdbx) path to a custom config file - път към потребителския конфигурационен файл + път към потребителски файл с настройки path to a custom local config file - + път към местен потребителски файл с настройки lock all open databases - + заключване на всички хранилища key file of the database - файл-ключа на базата данни + файл с ключ на хранилище read password of the database from stdin - прочетете паролата на базата данни от stdin - - - allow app screen recordering and screenshots - - - - Locked databases. - + вземане на паролата за хранилището от стандартния вход Database failed to lock. - + Неуспешно заключване на хранилище. Another instance of KeePassXC is already running. - Друга инстанция на KeePassXC вече работи. + Друга екземпляр на KeePassXC вече работи. + + + KeePassXC is not running. No open database to lock + KeePassXC не работи. Няма отключено хранилище, което да бъде заключено Fatal error while testing the cryptographic functions. - Фатална грешка при тестване на криптографските функции. + Фатална грешка при проверяване на криптографските функции. KeePassXC - Error KeePassXC - Грешка - - Warning: Failed to prevent screenshots on a top level window! - - Database password: - Парола за базата данни: + Парола за хранилище: Invalid Settings TOTP - Невалидни настройки + Неприемливи настройки Invalid Key TOTP - Невалиден ключ + Неприемлив ключ Failed to create Windows Hello credential. - + Грешка при създаване на самоличност с Windows Hello. Failed to sign challenge using Windows Hello. - + Грешка при подписване на предизвикателство, чрез Windows Hello. - Please present or touch your YubiKey to continue. - + Warning: Failed to block screenshot capture on a top-level window. + Внимание: Не може да бъде спряно създаването на екранна снимка в прозореца от най-високо ниво. + + + Invalid Cipher + Недействителен шифър + + + Invalid KDF + Недействителна ФИК + + + Access to all entries is denied + Достъпът до всички записи е отказан + + + allow screenshots and app recording (Windows/macOS) + разрешаване на екранни снимки и запис на приложения (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Задава файл с ключ за хранилището. +Тази настройка е изведена от употреба, вместо нея използвайте „--set-key-file“. + + + Databases have been locked. + Хранилището е заключено. + + + Attestation not supported + Не се поддържа атестация + + + Credential is excluded + Самоличността е пропусната + + + Passkeys request canceled + Заявката за Passkey е отказана + + + Invalid user verification + Неприемливо потвърждаване на потребител + + + Empty public key + Празен публичен ключ + + + Invalid URL provided + Предоставен е неприемлив адрес + + + Passkeys + Passkeys + + + AES initialization failed + Грешка при подготвяне на AES + + + AES encrypt failed + Грешка при шифроване с AES + + + Failed to store in Linux Keyring + Грешка при запазване в ключодържател на Линукс + + + Polkit returned an error: %1 + Polkit върна грешка: %1 + + + Could not locate key in keyring + Ключ не може да бъде намерен в ключодържател + + + Could not read key in keyring + Ключ не може да бъде прочетен в ключодържателя + + + AES decrypt failed + Грешка при разшифроване с AES + + + No Polkit authentication agent was available + Не е наличен удостоверяващ агент на Polkit + + + Polkit authorization failed + Грешка при удостоверяване с Polkit + + + No Quick Unlock provider is available + Не е наличен доставчик на бързо отключване + + + Failed to init KeePassXC crypto. + Грешка при подготвяне на шифър на KeePassXC. + + + Failed to encrypt key data. + Грешка при шифроване на данните на ключа. + + + Failed to get Windows Hello credential. + Грешка при получаване на самоличност от Windows Hello. + + + Failed to decrypt key data. + Неуспешно дешифриране на данните на ключа. + + + Origin is empty or not allowed + Източникът е празен или забранен + + + Effective domain is not a valid domain + Ефективният домейн не е приемлив домейн + + + Origin and RP ID do not match + Източникът и RP ID не съвпадат + + + No supported algorithms were provided + Не са предоставени поддържани алгоритми + + + Wait for timer to expire + Изчакайте отброяването да приключи + + + Challenge is shorter than required minimum length + Предизвикването е по-късо от изискваната минимална дължина + + + user.id does not match the required length + user.id не отговаря на изискваната дължина + + + Favorite + Tag for favorite entries + Избрани + + + File does not exist. + Файлът не съществува. + + + Cannot open file: %1 + Файлът не може да бъде отворен: %1 + + + Cannot parse file: %1 at position %2 + Грешка при разбор на файл: %1 на позиция %2 + + + Failed to decrypt json file: %1 + Грешка при разшифроване на файл с JSON: %1 + + + Invalid encKeyValidation field + Полето encKeyValidation е неприемливо + + + Invalid cipher list within encKeyValidation field + Полето encKeyValidation съдържа неприемлив списък с шифри. + + + Wrong password + Грешна парола + + + Invalid encrypted data field + Шифрованата стойност на полето data е неприемлива + + + Invalid cipher list within encrypted data field + Криптираните шифри в полето data са неприемливи + + + Cannot initialize cipher + Грешка при подготовка на шифър + + + Cannot decrypt data + Данните не могат да бъдат разшифровани + + + Bitwarden Import + Внасяне от Bitwarden + + + Archived + Tag for archived entries + Архивни + + + Invalid 1PUX file format: Not a valid ZIP file. + Форматът на файла 1PUX е неприемлив: недействителен ZIP. + + + Invalid 1PUX file format: Missing export.data + Форматът на файла 1PUX е неприемлив: липсва export.data + + + 1Password Import + Внасяне от 1Password + + + Enter Shortcut + Въведете клавишна комбинация + + + Action + Действие + + + Shortcuts + Клавишни комбинации + + + Unknown passkeys error + Неочаквана грешка на passkey + + + Invalid KDF iterations, cannot decrypt json file + Неподдържан брой преобразувания с ФИК, файлът с JSON не може да бъде разшифрован + + + Unsupported format, ensure your Bitwarden export is password-protected + Неподдържан формат, уверете се, че изнесеното от Bitwarden е защитено с парола + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Поддържат се само PBKDF и Argon2, файлът с JSON не може да бъде разшифрован + + + Reset Shortcuts + Нулиране на клавишни комбинации + + + Double click an action to change its shortcut + За да промените клавишната комбинация щракнете двукратно върху желаното действие. + + + Filter... + Филтър… + + + Shortcut Conflict + Конфликт на клавишни комбинации + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Комбинацията %1 е в конфликт с „%2“. Презаписване на клавишната комбинация? + + + Cannot generate valid passphrases because the wordlist is too short + Не може да бъде създадена приемлива парола, защото списъкът с думи е твърде кратък. + + + Encrypted files are not supported. + Не се поддържат шифровани файлове. + + + Proton Pass Import + Внасяне от Proton Pass + + + Delete plugin data? + Изтриване на данни от разширението? + + + Delete plugin data from Entry(s)? + Премахване на информация от добавката от запис?Премахване на информация от добавката от записи? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Формат при изнасяне. Възможностите са „xml“, „csv“ и „html“ . По подразбиране е „xml“. + + + start minimized to the system tray + стартиране скрито в областта за известия + + + malformed string, possible unescaped delimiter + не добре форматиран низ вероятно има разделител без избягващ знак + + + missing closing delimiter + липсващ затварящ разделител + + + %1, row: %2, column: %3 + %1, ред: %2, колона: %3 + + + Tags + Етикети QtIOCompressor Internal zlib error when compressing: - Вътрешна zlib грешка при компресиране: + Вътрешна грешка на zlib при компресиране: Error writing to underlying device: - + Грешка при записване на основното устройство: Error opening underlying device: - + Грешка при отваряне на основното устройство: Error reading data from underlying device: - + Грешка при прочитане на данни от основното устройство: Internal zlib error when decompressing: - Вътрешна zlib грешка при декомпресиране: + Вътрешна zlib грешка при разкомпресиране: QtIOCompressor::open The gzip format not supported in this version of zlib. - Форматът gzip не се поддържа в тази версия на zlib. + Форматът gzip не се поддържа това издание на zlib. Internal zlib error: Вътрешна грешка на zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Командата `%1` не завърши навреме. Процесът ѝ е спрян. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Грешка при качване на слятото хранилище. Командата `%1` не завърши навреме. Процесът ѝ е спрян. + + + Invalid download parameters provided. + Подадени са недействителни параметри за изтеглянето. + + + Command `%1` failed to download database. + Командата `%1` успя да изтегли хранилище. + + + Invalid database pointer or upload parameters provided. + Недействителен указател към хранилище или подадени недействителни параметри за качването. + + + Command `%1` exited with status code: %2 + Командата `%1` завърши с код на състоянието: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Грешка при качване на слятото хранилище. Командата `%1` завърши с код на състоянието: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + За да промените запис, щракнете двукратно върху него. List of entry URLs - + Списък с адресите от всички записи Entry has no URLs set - + Записът няма въведени адреси Allowed URLs - + Разрешени адреси Entry has no Browser Integration settings - + Записът няма настройка за съчетаване с мрежов четец Denied URLs - + Забранени адреси (Excluded) @@ -7779,15 +9329,15 @@ Kernel: %3 %4 This entry is being excluded from reports - Това вписване е изключено от отчетите + Записът е изключен от отчетите Please wait, browser statistics is being calculated… - + Изчакайте, изчислява се статистиката от мрежовия четец… No entries with a URL, or none has browser extension settings saved. - + Липсват записи с адрес или няма такива със запазени настройки за разширението на мрежовия четец. Title @@ -7799,57 +9349,66 @@ Kernel: %3 %4 URLs - + Адреси Edit Entry… - + Променяне на запис… Delete Entry(s)… - + Премахване на запис?Премахване на записи? Exclude from reports Изключване от отчети + + Expire Entry(s)… + Прекратяване на давносттаПрекратяване на давността + + + Only show entries that have a URL + Показване само на записи с адреси + + + Only show entries that have been explicitly allowed or denied + Показване само на записи, които изрично са разрешени или забранени + + + Show expired entries + Показване на записи с изтекла давност + + + (Expired) + (изтекла давност) + + + Delete plugin data from Entry(s)… + Премахване на информация от добавката от запис…Премахване на информация от добавката от записи… + ReportsWidgetHealthcheck - Exclude expired entries from the report - + Show expired entries + Показване на записи с изтекла давност - Also show entries that have been excluded from reports - Показване и на изключените от отетите записи + (Expired) + (изтекла давност) Hover over reason to show additional details. Double-click entries to edit. - Задръжте курсора на мишката върху причината, за да се покажат допълнителни подробности. Щракнете двукратно върху записите, за да редактирате. - - - Bad - Password quality - Лош + За подробности, задръжте показалеца на мишката върху причината. За да промените запис, щракнете двукратно върху него. Bad — password must be changed - Лош — паролата трябва да бъде променена - - - Poor - Password quality - Слабо + Много лоша — паролата трябва да бъде променена Poor — password should be changed - Лошо — паролата добре да се смени - - - Weak - Password quality - Слабо + Лоша — добре е паролата да бъде променена Weak — consider changing the password @@ -7861,15 +9420,15 @@ Kernel: %3 %4 This entry is being excluded from reports - Това вписване е изключено от отчетите + Този запис е изключен от отчетите Please wait, health data is being calculated… - + Изчакайте, извършва се проверка на състоянието… Congratulations, everything is healthy! - Поздравления, всичко е зраво! + Поздравления, всичко е наред! Title @@ -7889,38 +9448,46 @@ Kernel: %3 %4 Edit Entry… - + Променяне на запис… Delete Entry(s)… - + Премахване на запис?Премахване на записи? Exclude from reports Изключване от отчети + + Expire Entry(s)… + Прекратяване на давносттаПрекратяване на давността + + + Show entries that have been excluded from reports + Показване и на изключените от отчети записи + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - ВНИМАНИЕ: Този доклад изисква изпращане на информация до услугата Have I Been Pwned (https://haveibeenpwned.com). Ако продължите, паролите от базата данни ще бъдат хеширани по криптографски начин и първите пет знака от тези хешове ще бъдат изпратени защитено на тази услуга. Вашата база данни остава защитена и не може да бъде възстановена от тази информация. Въпреки това, броят на паролите, които изпращате, и вашият IP адрес ще бъдат пратени на тази услуга. + ВНИМАНИЕ: Докладът изисква изпращане на информация до услугата Have I Been Pwned (https://haveibeenpwned.com). Ако продължите, от криптографските отпечатъци на паролите в хранилището ще бъдат взети първите пет знака и ще бъдат изпратени защитено към услугата. Хранилището остава защитено и информацията в него не може да бъде възстановена от отпечатъците. Въпреки това, броя на паролите, които изпращате, и вашият адрес по IP ще бъдат изпратени към услугата. Perform Online Analysis - Извършване на онлайн анализ + Извършване на отдалечен анализ Also show entries that have been excluded from reports - Показване и на изключените от отетите записи + Показване и на изключените от отчети записи This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - Тази компилация на KeePassXC не разполага с мрежови функции. Те са необходими за проверка на паролите в Have I Been Pwned базата данни. + Тази компилация на KeePassXC не разполага с мрежов достъп. Той е необходим за проверка на паролите в хранилището на Have I Been Pwned. Congratulations, no exposed passwords! - Поздравления, няма разкрити пароли! + Поздравления, няма изложени пароли! Title @@ -7932,7 +9499,7 @@ Kernel: %3 %4 Password exposed… - Парола е разкрита... + Парола е изложена… (Excluded) @@ -7940,7 +9507,7 @@ Kernel: %3 %4 This entry is being excluded from reports - Това вписване е изключено от отчетите + Този запис е изключен от отчетите once @@ -7984,22 +9551,93 @@ Kernel: %3 %4 Edit Entry… - + Променяне на запис… Delete Entry(s)… - + Премахване на запис?Премахване на записи? Exclude from reports Изключване от отчети + + Expire Entry(s)… + Прекратяване на давносттаПрекратяване на давността + + + + ReportsWidgetPasskeys + + Export + Изнасяне + + + Import + Внасяне + + + List of entry URLs + Списък с адресите от всички записи + + + Title + Заглавие + + + Path + Път + + + Username + Потребител + + + URLs + Адреси + + + Edit Entry… + Променяне на запис… + + + Delete Entry(s)… + Премахване на запис?Премахване на записи? + + + Relying Party + Зависеща страна + + + Show expired entries + Показване на записи с изтекла давност + + + (Expired) + (изтекла давност) + + + Export Confirmation + Потвърждаване + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Ако остане незащитен, файлът с passkey може да стане обект на кражба или неправомерен достъп. Желаете ли да продължите? + + + Please wait, list of entries with passkeys is being updated… + Изчакайте, списъкът със записи с passkeys се обновява… + + + No entries with passkeys. + Липсват записи с passkeys. + ReportsWidgetStatistics Hover over lines with error icons for further information. - Задръжте курсора на мишката върху редове с икони за грешки за допълнителна информация. + За подробности, задръжте показалеца на мишката върху редовете с пиктограми за грешка. Name @@ -8011,11 +9649,11 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - + Изчакайте, изчислява се статистиката на хранилището… Database name - Име на базата данни + Име на хранилището Description @@ -8027,19 +9665,19 @@ Kernel: %3 %4 Database created - + Дата на създаване Last saved - Последно записан + Последно запазване Unsaved changes - Незаписани промени + Незапазени промени yes - Да + да no @@ -8047,7 +9685,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - Базата данни е променена, но промените още не са записани на диска. + Хранилището е променено, но промените още не са записани на диска. Number of groups @@ -8059,11 +9697,11 @@ Kernel: %3 %4 Number of expired entries - Брой изтекли записи + Брой записи с изтекла давност The database contains entries that have expired. - Базата данни съдържа изтекли записи. + Хранилището има записи с изтекла давност. Unique passwords @@ -8071,11 +9709,11 @@ Kernel: %3 %4 Non-unique passwords - Неуникални пароли + Преизползвани пароли More than 10% of passwords are reused. Use unique passwords when possible. - Повече от 10% от паролите се преизползват. Използвайте уникални пароли, когато е възможно. + Повече от 10% от паролите са преизползвани. По възможност, използвайте уникални пароли. Maximum password reuse @@ -8083,7 +9721,7 @@ Kernel: %3 %4 Some passwords are used more than three times. Use unique passwords when possible. - Някои пароли се преизползват от три пъти. Използвайте уникални пароли, когато е възможно. + Някои пароли се преизползват повече от три пъти. По възможност, използвайте уникални пароли. Number of short passwords @@ -8095,11 +9733,11 @@ Kernel: %3 %4 Number of weak passwords - Брой на слабите пароли + Брой слаби пароли Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - Препоръчваме използването на дълги, произволни пароли с оценка на "добро" или "отлично". + Препоръчваме ви да използвате дълги, произволни пароли с оценка „добра“ или „отлична“. Entries excluded from reports @@ -8134,11 +9772,11 @@ Kernel: %3 %4 No agent running, cannot add identity. - Не се изпълнява агент, не може да добави самоличност. + Няма работещ агент, самоличността не може да бъде добавена. Key identity ownership conflict. Refusing to add. - + Конфликт на собствеността на идентичност на ключа. Отказ за добавяне. Agent refused this identity. Possible reasons include: @@ -8158,30 +9796,38 @@ Kernel: %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + Агентът не поддържа ключове за сигурност или доставчикът на ключове за сигурност е недостъпен. No agent running, cannot remove identity. - Няма работещ агент, не може да премахне самоличността. + Няма работещ агент, самоличността не може да бъде премахната. No agent running, cannot list identities. - Няма изпълняващ се агент, не може да се покажат самоличностите. + Няма работещ агент, самоличностите не могат да бъдат изброени. + + + Failed to remove all SSH identities from agent. + Грешка при изчистване на самоличностите от ssh-agent. + + + All SSH identities removed from agent. + Самоличностите са изчистени от агента на SSH. SearchHelpWidget Search Help - Търсенете помощ + Помощ при търсене Search terms are as follows: [modifiers][field:]["]term["] - Думи за търсене са следните: [modifiers][field:]["]term["] + Заявката при търсене има следните елементи: [модификатор][поле:]["]условие["] Every search term must match (ie, logical AND) - Всеки дума за търсене трябва да съответства (т.е. логическо И) + Всички елементи трябва да съвпадат (т.е. логическо И) Modifiers @@ -8189,15 +9835,15 @@ Kernel: %3 %4 exclude term from results - изключване на термин от резултатите + изключва условието от резултатите match term exactly - точен съвпадение на думата + точно съвпадение на условието use regex in term - използвайте регулярен израз за търсене + условието е регулярен израз Fields @@ -8205,15 +9851,15 @@ Kernel: %3 %4 Term Wildcards - Шаблон + Шаблони match anything - съвпадение на всичко + съвпада с всичко match one - съвпадение един + съвпада с едно logical OR @@ -8232,20 +9878,24 @@ Kernel: %3 %4 Search Help - Търсенете помощ + Помощ при търсене + + + Save Search + Запазване на търсенето Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + Търсене (%1)… Case sensitive - Чувствитерен регистър + Съвпадение на регистъра Limit search to selected group - Ограничаване на търсенето до избрана група + Търсене само в избраната група @@ -8256,11 +9906,11 @@ Kernel: %3 %4 PID - + PID DBus Address - + Адрес на DBus Manage @@ -8286,11 +9936,11 @@ Kernel: %3 %4 SettingsWidgetFdoSecrets Options - Опции + Настройки Enable KeepassXC Freedesktop.org Secret Service integration - Включване на Freedesktop.org Secret Service интеграция + Съчетаване с Услугата за тайни на Freedesktop.org General @@ -8298,59 +9948,51 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - + Показване на известие при достъп на клиенти до паролите <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p>Ако е отметнато, всеки опит за четене на парола трябва да бъде потвърден. В противен случай, при отключено хранилище, клиентите могат да четат паролите без потвърждение.</p><p>Тази възможност включва само достъпа до паролата на записите. Клиентите винаги могат да правят заявки към достъпните хранилища и техните атрибути.</p></body></html> Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + Потвърждаване при достъп на клиенти до паролите Confirm when clients request entry deletion - - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - + Потвърждаване при заявено от клиенти премахване на запис Prompt to unlock database before searching - + Искане за отключване на хранилище преди търсене Exposed database groups: - + Изложени групи: Authorization - Разрешение + Упълномощаване These applications are currently connected: - Тези приложения са свързани в момента: + Следните приложения са свързани в момента: <b>Warning:</b> - <b>Предупреждение:</b> + <b>Внимание:</b> Save current changes to activate the plugin and enable editing of this section. - Запишете текущите промени, за да активирате приставката и да разрешите редактирането на тази секция. + За да включите разширението и да можете да променяте тази секция, запазете текущите промени. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Тази настройка не променя настройката, изключваща запитванията от кошчето </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Подобрява съвместимостта с някои приложения, които търсят парола без предварително отключване на хранилището.</p><p>Ако е отметнато обаче може да причини срив на клиента, ако хранилището не може да бъде отключено в определен интервал от време (обикновено 25 секунди, но стойността може да е различна за различните приложения).</p></body></html> @@ -8361,23 +10003,23 @@ Kernel: %3 %4 Allow KeeShare imports - Разреши KeeShare импортирането + Разрешаване на внасяне с KeeShare Allow import - Разреши импортиране + Разрешаване на внасяне Allow KeeShare exports - Разреши KeeShare експортирането + Разрешаване на изнасяне с KeeShare Allow export - Разреши експортиране + Разрешаване на изнасяне Only show warnings and errors - Показвай само предупреждения и грешки + Показване само на предупреждения и грешки Own certificate @@ -8389,15 +10031,15 @@ Kernel: %3 %4 Generate new certificate - Генериране на нов сертификат + Създаване на нов сертификат Generate - Генериране + Създаване Fingerprint: - Пръстов отпечатък: + Отпечатък: Signer name field @@ -8412,64 +10054,87 @@ Kernel: %3 %4 ShareExport Could not write export container. - + Грешка при писане в контейнер за изнасяне. ShareImport Successful import - + Внасянето е успешно ShareObserver Import from %1 failed (%2) - Импортирането от %1 е неуспешно (%2) + Внасянето в %1 е неуспешно (%2) Import from %1 successful (%2) - Импортиране от %1 успешно (%2) + Внасянето в %1 е успешно (%2) Imported from %1 - Импортиран от %1 + Внесено от %1 Multiple import source path to %1 in %2 - + Много пътища за внасяне на %1 в %2 Conflicting export target path %1 in %2 - + Конфликтна цел на пътища за изнасяне на %1 в %2 Export to %1 failed (%2) - Експортирането в %1 е неуспешно (%2) + Изнасянето в %1 е неуспешно (%2) Export to %1 successful (%2) - Експортиране в %1 успешно (%2) + Изнасянето в %1 е успешно (%2) Export to %1 - Експортиране в %1 + Изнасяне в %1 TagModel - All - + Clear Search + Изчистване на търсенето + + + All Entries + Всички записи Expired - + Изтекла давност Weak Passwords - + Слаби пароли + + + + TagView + + Remove Search + Премахване на търсенето + + + Remove Tag + Премахване на етикета + + + Confirm Remove Tag + Потвърждаване на премахване на етикет + + + Remove tag "%1" from all entries in this database? + Премахване на етикета „%1“ от всички записи в хранилището? @@ -8484,7 +10149,7 @@ Kernel: %3 %4 Expires in <b>%n</b> second(s) - Изтича след <b>%n</b> секундаИзтича след <b>%n</b> секунди + Давността изтича след <b>%n</b> секундаДавността изтича след <b>%n</b> секунди @@ -8496,11 +10161,11 @@ Kernel: %3 %4 NOTE: These TOTP settings are custom and may not work with other authenticators. TOTP QR code dialog warning - Забележка: тези TOTP настройки са по избор и може да не работи с други удостоверители. + Забележка: тези настройки на TOTP са потребителски и може да не работят с други удостоверители. There was an error creating the QR code. - Възникна грешка при създаването на QR кода. + Грешка при създаване на кода за QR. Closing in %1 seconds. @@ -8519,23 +10184,23 @@ Kernel: %3 %4 Secret key must be in Base32 format - Таен ключ трябва да е в Base32 + Тайният ключ трябва да бъде във формат Base32 Secret key field - Поле на секретен ключ + Поле на таен ключ Default settings (RFC 6238) - + Настройки по подразбиране (RFC 6238) Steam® settings - + Настройки на Steam® Custom settings: - + Потребителски настройки: Custom Settings @@ -8547,16 +10212,16 @@ Kernel: %3 %4 Time step: - Времва стъпка: + Стъпка: Time step field - Поле за времева стъпка + Поле за стъпка в секунди sec Seconds - сек + сек Code size: @@ -8564,7 +10229,7 @@ Kernel: %3 %4 digits - цифри + цифри Invalid TOTP Secret @@ -8573,34 +10238,34 @@ Kernel: %3 %4 You have entered an invalid secret key. The key must be in Base32 format. Example: JBSWY3DPEHPK3PXP - Въвели сте невалиден секретен ключ. Ключът трябва да е във формат Base32. + Въвели сте неприемлив таен ключ. Ключът трябва да е във формат Base32. Пример: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings - Потвърдете премахването на TOTP настройките + Потвърдете премахването на настройки за TOTP Are you sure you want to delete TOTP settings for this entry? - Наистина ли искате да изтриете настройките на TOTP за този запис? + Желаете ли настройките за TOTP за този запис да бъдат премахнати? URLEdit Invalid URL - Невалиден URL + Недействителен адрес UpdateCheckDialog Checking for updates - Проверка за актуализации + Проверка за обновяване Checking for updates… - + Проверка за обновяване… Close @@ -8608,119 +10273,80 @@ Example: JBSWY3DPEHPK3PXP Software Update - Софтуерно актуализиране + Обновяване на софтуер An error occurred when trying to retrieve update information, please try again later. - + Възникна грешка при получаване на информацията за обновяване, опитайте отново по-късно. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>Налично е ново издание.</strong><br/>KeePassXC %1 може да бъде <a href="https://keepassxc.org/download/">изтеглен от тук</a>. You have the latest version of KeePassXC - + Използвате последното издание на KeePassXC WelcomeWidget Start storing your passwords securely in a KeePassXC database - Започнете да съхранявате паролите си сигурно в KeePassXC базата данни - - - Create new database - Създаване на нова база данни - - - Open existing database - Отваряне на съществуващата база данни - - - Import from KeePass 1 - Внос от KeePass 1 - - - Import from 1Password - Импортиране от 1Password - - - Import from CSV - Импортиране от CSV + Дръжте паролите си защитени в хранилище на KeePassXC Recent databases - Скорошни бази данни + Последно използвани хранилища Open a recent database - Отваряне на скорошна база данни + Отваряне на последно използвано хранилище Welcome to KeePassXC %1 Добре дошли в KeePassXC %1 + + Create Database + Създава хранилище + + + Open Database + Отваря хранилище + + + Import File + Внасяне от файл + WinUtils Invalid key code - + Неприемлив код на клавиш Global shortcut already registered to %1 - + Тази клавишна комбинация се използва за %1 Could not register global shortcut - - - - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - + Грешка при задаване на клавишна комбинация YubiKey - - %1 No interface, slot %2 - - General: - + Основни: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + Не е намерен интерфейс за хардуерен ключ със сериен номер %1. За да продължите го вържете. YubiKeyEditWidget - - Refresh hardware tokens - Обновяване на хардуерни токени - - - Refresh - Обновяване - Hardware key slot selection Избор на слот на хардуерен ключ @@ -8731,31 +10357,27 @@ Example: JBSWY3DPEHPK3PXP Selected hardware key slot does not support challenge-response! - Избраният слот на хардуерния ключ не поддържа challenge-response! + Избраната позиция за хардуерен ключ не поддържа предизвикване-отговор! Challenge-Response - + Предизвикване-отговор Add Challenge-Response - + Добавяне на предизвикване-отговор Change Challenge-Response - + Променяне на предизвикване-отговор Remove Challenge-Response - + Премахване на предизвикване-отговор Challenge-Response set, click to change or remove - - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + Зададено е предизвикване-отговор, щракнете за промяна или премахване Detecting hardware keys… @@ -8765,58 +10387,45 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Не са открити хардуерни ключове - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Невалиден слот -% 2 + Refresh hardware keys + Презареждане на хардуерните ключове + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Ако разполагате със защитно устройство като <a href="https://www.yubico.com/">YubiKey</a> или <a href="https://onlykey.io">OnlyKey</a>, можете да го използвате като допълнителна защита.</p><p>За целта, една от позициите на ключа трябва да е настроена като <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Предизвикване-отговор</a>.</p> + + + Hardware keys found, but no slots are configured + Открити са хардуерни ключове, но без настроени слотове. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - - - Hardware key is currently in use. - Хардуерният ключ в момента се използва. + Интерфейсът за PCSC на YubiKey не е подготвен. Could not find or access hardware key with serial number %1. Please present it to continue. - + Не е намерен хардуерен или няма достъп до ключ със сериен № %1. За да продължите добавете ключа. Hardware key is locked or timed out. Unlock or re-present it to continue. - + Хардуерният ключ е заключен или времето за изчакване е изтекло. За да продължите го отключете или го добавете повторно. Hardware key was not found or is not configured. - + Хардуерният ключ не е намерен или не е настроен. Failed to complete a challenge-response, the PCSC error code was: %1 - - - - - YubiKeyInterfaceUSB - - Unknown - Неизвестен + Грешка при завършване на предизвикване-отговор, кодът за грешка на PCSC е: %1 - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Позиция %3, %4 Press @@ -8826,31 +10435,54 @@ Example: JBSWY3DPEHPK3PXP Passive USB Challenge-Response Key no interaction required - Пасивни + Пасивно + + + + YubiKeyInterfaceUSB + + Unknown + Неизвестен + + + Press + USB Challenge-Response Key interaction request + Натиснете + + + Passive + USB Challenge-Response Key no interaction required + Пасивно The YubiKey USB interface has not been initialized. - - - - Hardware key is currently in use. - Хардуерният ключ в момента се използва. + Интерфейсът за USB на YubiKey не е подготвен. Could not find hardware key with serial number %1. Please plug it in to continue. - Не може да се намери хардуерен ключ със сериен номер %1. Включете го, за да продължите. + Хардуерен ключ със сериен № %1 не е намерен. За да продължите добавете ключа. Hardware key timed out waiting for user interaction. - Времето за изчакване на потребителя с хардуерния ключ изтече. + Времето за изчакване на потребителско действие с хардуерен ключ е изтекло. A USB error occurred when accessing the hardware key: %1 - + Грешка с USB при достъпване на хардуерен ключ: %1 Failed to complete a challenge-response, the specific error was: %1 - + Грешка при завършване на предизвикване-отговор, точната грешка е: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Позиция %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Позиция %3, %4 \ No newline at end of file diff --git a/share/translations/keepassxc_cs.ts b/share/translations/keepassxc_cs.ts index 059e43dc9..a594c8eb2 100644 --- a/share/translations/keepassxc_cs.ts +++ b/share/translations/keepassxc_cs.ts @@ -80,6 +80,10 @@ Details Podrobnosti + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Vaše rozhodnutí bude zapamatováno po dobu chodu jak požadujícího klienta A KeePassXC. + Remember Zapamatovat @@ -88,10 +92,6 @@ Allow Selected Povolit vybrané - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Vaše rozhodnutí bude zapamatováno po dobu chodu jak požadujícího klienta A KeePassXC. - Deny All && Future Zamítnout vše a jakékoli budoucí @@ -122,6 +122,10 @@ Use OpenSSH Použít OpenSSH + + Use both agents + Použít oba agenty + SSH_AUTH_SOCK override přepsání SSH_AUTH_SOCK @@ -150,10 +154,6 @@ SSH Agent connection is working! Spojení s SSH agentem funguje! - - Use both agents - Použít oba agenty - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Zabezpečení + + This setting cannot be enabled when minimize on unlock is enabled. + Nastavení nemůže být povoleno, pokud je povoleno minimalizování okna při odemčení databáze. + Access error for config file %1 Chyba přístupu k souboru s nastaveními %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Aby se změna jazyka projevila, je třeba aplikaci restartovat. Chcete to provést nyní? - - Reset Settings? - Vrátit nastavení do výchozích hodnot? - - - Are you sure you want to reset all general and security settings to default? - Opravdu chcete vrátit veškerá obecná nastavení a nastavení zabezpečení do výchozích hodnot? - Select backup storage directory Vybrat složku pro ukládání záloh + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Pamatovat si minule použité databáze + + recent files + nedávné soubory + Load previously open databases on startup Při spuštění načíst minule otevřené databáze @@ -272,25 +312,6 @@ Include beta releases when checking for updates Při zjišťování případných aktualizací brát v potaz i vývojové testovací verze - - On database unlock, show entries that - Při odemknutí databáze zobrazovat položky kterým - - - have expired - On database unlock, show entries that... - platnost skončila - - - days - On database unlock, show entries that will expire within %1 days - dnů - - - will expire within - On database unlock, show entries that... - skončí platnost za - File Management Správa souboru @@ -315,25 +336,13 @@ Backup database file before saving Před uložením zazálohovat databázový soubor - - Backup destination - Cíl zálohy - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx {NAZEV_SOUBOR_S_DB}.stare.kdbx - - Choose... - Zvolit - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - + Použít alternativní metodu ukládání (může vyřešit problémy s se službami Dropbox, Google Drive, vrstvami typu GVFS, atp.) Temporary file moved into place @@ -408,6 +417,10 @@ Toolbar button style: Styl tlačítek na liště nástrojů: + + Show passwords in color + Zobrazit hesla barevně + Use monospaced font for notes Pro poznámky použít písmo se všemi znaky stejně širokými @@ -491,6 +504,71 @@ Remember last typed entry for: + Pamatovat si naposledy zadanou položku po dobu: + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + dnů + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + Zobrazovat lištu nástrojů + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection @@ -536,7 +614,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Zapnout rychlé odemykání (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed @@ -546,10 +624,6 @@ Lock databases after minimizing the window Při minimalizaci okna uzamknout databáze - - Require password repeat when it is visible - Vyžadovat zopakování zadání hesla, i když je viditelné, - Hide passwords when editing them Skrývat hesla při jejich upravování @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Skrýt hesla v panelu náhledu položky - - Hide entry notes by default - Skrývat ve výchozím stavu poznámky k položkám - - - Move entries to recycle bin without confirmation - Přesunout záznamy do Koše? - - - Enable double click to copy the username/password entry columns - - Privacy Soukromí @@ -582,12 +644,28 @@ Use DuckDuckGo service to download website icons Pro stahování ikon webů použít službu DuckDuckGo + + Hide TOTP in the entry preview panel + Skrýt TOTP v panelu náhledu položky + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType The requested Auto-Type sequence cannot be used due to an error: - + Požadovanou posloupnost automatického vyplňování není možné použít kvůli chybě: Auto-Type Error @@ -611,7 +689,7 @@ Bracket imbalance detected, found extra { or } - + Zjištěna neuzavřená složená závorka – nalezen znak „{ “nebo „} navíc Too many repetitions detected, max is %1: %2 @@ -626,18 +704,8 @@ Zjištěna velmi dlouhá prodleva, nejdelší umožněná je %1: %2 - Invalid conversion type: %1 - Neplatný typ převodu: %1 - - - Invalid conversion syntax: %1 - Neplatná syntaxe převodu: %1 - - - Invalid regular expression syntax %1 -%2 - Neplatná forma zápisu regulárního výrahu %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Záznam nemá atribut pro PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Pokus o odeslání neplatného symbolu klávesy. - Sequence aborted: Caps Lock is on Posloupnost přerušena: je zapnutý Caps Lock @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Nedaří se získat platný kód klávesy pro klávesu: + + Trying to send invalid keyboard symbol. + Pokus o odeslání neplatného symbolu. + AutoTypeSelectDialog @@ -799,13 +867,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Vypnout pro tuto stránku + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Uložit položku - Ok Ok @@ -820,13 +888,74 @@ Please select the correct database for saving credentials. Máte otevřeno vícero databází. Vyberte databázi, do které chcete přihlašovací údaje uložit. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Zrušit + + + Update + + + + Authenticate + Ověřit + + + Register new + Zaregistrovat nové + + + Register + Registrovat + + + Timeout in <b>%n</b> seconds... + Časový limit v <b>%n</b> sekundách...Časový limit v <b>%n</b> sekundách...Časový limit v <b>%n</b> sekundách...Časový limit vyprší za <b>%n</b> sekundy... + + + Relying Party: %1 + + + + Username: %1 + Uživatelské jméno: %1 + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + Byl nalezen existující přístupový klíč. +Chcete uložit nový přístupový klíč pro: + + + Select the existing passkey and press Update to replace it. + Vyberte existující přístupový klíč a stisknutím Aktualizovat jej nahraďte. + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + Chcete uložit přístupový klíč pro: + BrowserService - - KeePassXC: Create a new group - KeePassXC: vytvořit novou skupinu - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -835,10 +964,6 @@ Do you want to create this group? Chcete tuto skupinu vytvořit? - - KeePassXC: New key association request - KeePassXC: Nový požadavek na přiřazení klíče - You have received an association request for the following database: %1 @@ -855,28 +980,16 @@ chrome-laptop. Save and allow access Uložit a umožnit přístup - - KeePassXC: Overwrite existing key? - KeePassXC: Přepsat stávající klíč? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Sdílený šifrovací klíč nazvaný „%1“ už existuje. Přejete si ho přepsat? - - KeePassXC: Update Entry - KeePassXC: Aktualizovat záznam - Do you want to update the information in %1 - %2? Chcete aktualizovat údaj v %1 – %2? - - KeePassXC: Delete entry - KeePassXC: Smazat položku - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -886,50 +999,58 @@ Opravdu chcete tuto položku smazat? - Converting attributes to custom data… - Převádění atributů na uživatelsky určená data… + %1 (Passkey) + - Abort - Přerušit + KeePassXC - Create a new group + KeePassXC - Vytvořit novou skupinu + - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Převedené KeePassHTTP atributy + Disable + Vypnout - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Úspěšně převedeny atributy z %1 položek. -Přesunuto %2 klíčů do uživatelsky určených dat. - - - Successfully moved %n keys to custom data. - %n klíč úspěšně přesunut do uživatelsky určených dat.%n klíče úspěšně přesunuty do uživatelsky určených dat.%n klíčů úspěšně přesunuto do uživatelsky určených dat.%n klíčy úspěšně přesunuty do uživatelsky určených dat. + KeePassXC - Overwrite existing key? + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nenalezena žádná položka, která má KeePassHTTP atributy! + KeePassXC - Update Entry + - The active database does not contain an entry with KeePassHTTP attributes. - Právě otevřená databáze neobsahuje žádnou položku s atributy KeePassHTTP. + KeePassXC - Delete entry + - Don't show this warning again - Toto varování znovu nezobrazovat + KeePassXC - New key association request + - KeePassXC: Legacy browser integration settings detected - KeePassXC: zjištěna nastavení starého napojení na webový prohlížeč + Passkey + - 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? - Vaše nastavení KeePassXC-Browser je třeba přesunout do nastavení databáze. -Toto je nezbytné pro zachování vašich stávajících spojení prohlížeče. -Chcete přenést vaše stávající nastavení nyní? + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + Registrovat @@ -950,10 +1071,6 @@ Chcete přenést vaše stávající nastavení nyní? General Obecné - - Browsers installed as snaps are currently not supported. - Prohlížeče, nainstalované formou snap balíčků, zatím nejsou podporované. - Enable integration for these browsers: Zapnout propojení pro tyto prohlížeče: @@ -997,11 +1114,11 @@ Chcete přenést vaše stávající nastavení nyní? Only entries with the same scheme (http://, https://, …) are returned. - + Je odpovězeno pouze položkami stejného schématu (http://, https://, …). Match URL scheme (e.g., https://example.com) - + Hledat shodu ve schématu URL (např., https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -1125,26 +1242,6 @@ Chcete přenést vaše stávající nastavení nyní? Custom extension ID Identif. uživatelsky určeného rozšíření - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Z důvodu, že software ze Snap balíčku je provozován v ohraničeném prostředí, je třeba spustit skript, který zapíná napojení na webový prohlížeč. <br />Tento skript je možné získat z %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Aby fungovalo napojení na prohlížeč, je třeba KeePassXC. <br /> Stáhnete ho pro %1 a %2 a %3. %4 - - - Please see special instructions for browser extension use below - Níže si přečtěte konkrétní pokyny pro rozšíření do webového prohlížeče - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Chyba:</b> Uživatelsky určené umístění proxy nenalezeno! <br/>Napojení na prohlížeč NEBUDE bez proxy FUNGOVAT. - - - <b>Warning:</b> The following options can be dangerous! - <b>Varování:</b> Následující předvolby mohou být nebezpečné! - Executable Files Spustitelné soubory @@ -1161,6 +1258,46 @@ Chcete přenést vaše stávající nastavení nyní? Select native messaging host folder location Vyberte umístění složky hostitele nativních zpráv + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1183,14 +1320,6 @@ Chcete přenést vaše stávající nastavení nyní? CsvImportWidget - - Import CSV fields - Importovat CSV kolonky - - - filename - název souboru - size, rows, columns velikost, řádky, sloupce @@ -1299,50 +1428,42 @@ Chcete přenést vaše stávající nastavení nyní? Column %1 Sloupec %1 - - Imported from CSV file - Importováno z CSV souboru - - - Original data: - Původní data: - - - Error(s) detected in CSV file! - V CSV soubory byly zjištěny chyby! - [%n more message(s) skipped] [%n další zpráva přeskočena][%n další zprávy přeskočeny][%n dalších zpráv přeskočeno][%n další zprávy přeskočeny] - Error - Chyba + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - CSV import: chyby zápisu: -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Štítky CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bajt%n bajty%n bajtů%n bajty - %n row(s) + CSV row count %n řádek%n řádky%n řádků%n řádky %n column(s) + CSV column count %n sloupec%n sloupce%n sloupců%n sloupce @@ -1389,12 +1510,20 @@ Záložní databáze se nachází v %2 Key not transformed. This is a bug, please report it to the developers. - + Klíč nebyl přeměněn. Toto je chyba – prosím nahlaste to vývojářům. Recycle Bin Koš + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1417,39 +1546,10 @@ Záložní databáze se nachází v %2 Password field Kolonka pro heslo - - Enter Additional Credentials (if any): - Zadejte další přihlašovací údaje (pokud jsou): - - - Key File: - Soubor s klíčem: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Nápověda k souboru s klíčem - Hardware key slot selection Výběr slotu v hardwarovém klíči - - Hardware Key: - Hardwarový klíč: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Nápověda k hardwarovému klíči - Key file to unlock the database Soubor s klíčem k odemknutí databáze @@ -1462,14 +1562,6 @@ Záložní databáze se nachází v %2 Browse… Procházet… - - Refresh hardware tokens - Znovu načíst hardwarová bezpečnostní zařízení - - - Refresh - Načíst znovu - Unlock Database Odemknout databázi @@ -1498,7 +1590,11 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + Databáze kterou se pokoušíte otevřít byla nejspíš vytvořena v novější verzi KeePassXC. + +Je možné se pokusit se ji otevřít i tak, ale může být neúplná a uložení jakýchkoli změn může vést ke ztrátě dat. + +Doporučujeme aktualizovat vaši instalaci KeePassXC. Open database anyway @@ -1526,14 +1622,6 @@ Abyste tomu, aby se tato chyba objevovala, je třeba přejít do „Nastavení d Retry with empty password Zkusit znovu bez hesla - - Failed to authenticate with Windows Hello - Nepodařilo se ověřit se prostřednictvím Windows Hello - - - Failed to authenticate with Touch ID - Nepodařilo se ověřit se prostřednictvím Touch ID - Failed to open key file: %1 Nepodařilo se otevřít soubor s klíčem: %1 @@ -1544,7 +1632,7 @@ Abyste tomu, aby se tato chyba objevovala, je třeba přejít do „Nastavení d You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - + Používáte starý formát souboru s klíčem, který může KeePassXC<br>přestat v budoucnu podporovat.<br><br>Zvažte prosím vytvoření nového souboru s klíčem v nabídce:<br><strong>Databáze &gt; Zabezpečení databáze &gt; Změnit soubor s klíčem.</strong><br> Don't show this warning again @@ -1567,22 +1655,68 @@ Abyste tomu, aby se tato chyba objevovala, je třeba přejít do „Nastavení d Soubor s databází není možné použít pro účely souboru s klíčem (mění se) - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Soubor s databází není možné použít pro účely souboru s klíčem (bude se měnit). -Pokud nemáte žádný soubor, který by se zaručeně neměnil (a byl tedy vhodný jako klíč), tuto kolonku nevyplňujte. + authenticate to access the database + pro přístup k databázi se autentizujte - Detecting hardware keys… - Zjišťování hardwarových klíčů… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - Nenalezeny žádné hardwarové klíče + Select Key File: + Vyberte soubor klíče: - Select hardware key… - Vyberte hardwarový klíč… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + Použít hardwarový klíč [Serial: %1] + + + Use hardware key + Použít hardwarový klíč + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Váš databázový soubor NENÍ klíčový soubor! +Pokud nemáte klíčový soubor nebo nevíte, co to je, nemusíte ho vybrat. + + + KeePassXC database file selected + Vybraný databázový soubor KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Soubor, který jste vybrali, vypadá jako databázový soubor. +Databázový soubor NENÍ klíčový soubor! + +Opravdu chcete pokračovat s tímto souborem?. + + + No hardware keys found. + Nebyly nalezeny žádné hardwarové klíče. + + + Refresh Hardware Keys + Aktualizace hardwarových klíčů + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Mám klíčový soubor</a> + + + Hardware keys found, but no slots are configured. + @@ -1594,10 +1728,6 @@ Pokud nemáte žádný soubor, který by se zaručeně neměnil (a byl tedy vhod DatabaseSettingsDialog - - Advanced Settings - Pokročilá nastavení - General Obecné @@ -1622,6 +1752,22 @@ Pokud nemáte žádný soubor, který by se zaručeně neměnil (a byl tedy vhod Maintenance Údržba + + KeeShare + KeeShare + + + Secret Service Integration + Zapnout napojení na Secret Service + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1629,18 +1775,6 @@ Pokud nemáte žádný soubor, který by se zaručeně neměnil (a byl tedy vhod KeePassXC-Browser settings Nastavení pro KeePassXC-Browser - - Convert KeePassHTTP data - Převést KeePassHTTP data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Znovu vytvořit identifikátor kořenové skupiny databáze - Disconnect all browsers Odpojit veškeré prohlížeče @@ -1649,6 +1783,10 @@ Pokud nemáte žádný soubor, který by se zaručeně neměnil (a byl tedy vhod Forget all site-specific settings on entries Zapomenout v položkách veškerá nastavení specifická pro daný web + + Refresh database root group ID + Znovu vytvořit identifikátor kořenové skupiny databáze + Stored keys Uložené klíče @@ -1697,18 +1835,10 @@ This may prevent connection to the browser plugin. Opravdu chcete odpojit všechny prohlížeče? To může zabránit spojení se zásuvným modulem prohlížeče. - - KeePassXC: No keys found - KeePassXC: Nebyly nalezeny žádné klíče - No shared encryption keys found in KeePassXC settings. V nastavení KeePassXC nenalezeny žádné sdílené šifrovací klíče. - - KeePassXC: Removed keys from database - KeePassXC: Klíče odebrány z databáze - Successfully removed %n encryption key(s) from KeePassXC settings. Z nastavení KeePassXC úspěšně odebrán %n šifrovací klíč.Z nastavení KeePassXC úspěšně odebrány %n šifrovací klíče.Z nastavení KeePassXC úspěšně odebráno %n šifrovacích klíčů.Z nastavení KeePassXC úspěšně odebrány %n šifrovací klíče. @@ -1727,31 +1857,14 @@ Oprávnění pro přístup k položkám budou odvolána. Abort Přerušit - - KeePassXC: Removed permissions - KeePassXC: Odebraná oprávnění - Successfully removed permissions from %n entry(s). Z %n položky úspěšně odebrána oprávnění.Ze %n položek úspěšně odebrána oprávnění.Z %n položek úspěšně odebrána oprávnění.Ze %n položek úspěšně odebrána oprávnění. - - KeePassXC: No entry with permissions found! - KeePassXC: Nebyl nalezen žádný záznam s oprávněními! - The active database does not contain an entry with permissions. Právě otevřená databáze neobsahuje záznam s oprávněními. - - Move KeePassHTTP attributes to custom data - Přesunout KeePassHTTP atributy do uživatelsky určených dat - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID Znovu vytvořit identifikátor databáze @@ -1762,6 +1875,26 @@ This is only necessary if your database is a copy of another and the browser ext Opravdu chcete znovu vytvořit identifikátor databáze? Toto je nutné pouze v případě, že vaše databáze je kopií jiné a nefunguje propojení s rozšířením prohlížeče. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Převést původní KeePassHTTP atributy do kompatibilních uživatelsky určených dat v KeePassXC-Browser + + + No keys found + Nebyly nalezeny žádné klíče + + + Removed keys from database + Odstraněné klíče z databáze + + + Removed permissions + + + + No entry with permissions found! + Nebyl nalezen žádný záznam s oprávnění! + DatabaseSettingsWidgetDatabaseKey @@ -1801,6 +1934,18 @@ Opravdu chcete pokračovat bez hesla? Failed to change database credentials Nepodařilo se změnit přihlašovací údaje do databáze + + Weak password + Slabé heslo + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1808,14 +1953,6 @@ Opravdu chcete pokračovat bez hesla? Decryption Time: Doba, kterou rozšifrování trvalo: - - Change existing decryption time - Změnit existující čas rozšifrování - - - Change - Změnit - Decryption time in seconds Doba rozšifrování (v sekundách) @@ -1834,11 +1971,11 @@ Opravdu chcete pokračovat bez hesla? Format cannot be changed: Your database uses KDBX 4 features - + Formát není možné změnit: Vaše databáze používá funkce KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + Pokud neplánujete otevírat svou databázi i jinými programy, vždy používejte nejnovější formát. Encryption Algorithm: @@ -1896,11 +2033,6 @@ Opravdu chcete pokračovat bez hesla? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - nezměněno - Number of rounds too high Key transformation rounds @@ -1910,7 +2042,9 @@ Opravdu chcete pokračovat bez hesla? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - + Používáte velmi vysoký počet průchodů transformace klíče s Argnon2. + +Pokud tento počet ponecháte, otevírání databáze může trvat hodiny, dny, nebo dokonce déle! Understood, keep number @@ -1929,7 +2063,9 @@ If you keep this number, your database may take hours, days, or even longer to o You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + Používáte velmi nízký počet průchodů transformace funkcí pro odvození klíče (KDF) a šifrou AES. + +Pokud tento počet ponecháte, vaše databáze nebude chráněna před útoky zkoušením hesel. KDF unchanged @@ -1949,6 +2085,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) vláknovláknavlákenvlákna + + Encryption Settings: + + + + Basic + Základní + + + Advanced + Pokročilé + DatabaseSettingsWidgetFdoSecrets @@ -2005,20 +2153,12 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - Nejvyšší umožněný počet historických záznamů pro jednotlivé záznamy - - - Max. history items: - Omezit počet uchovávaných předchozích verzí záznamů na: + Nejvyšší umožněný počet položek historie pro jednotlivé záznamy Maximum size of history per entry Nejvyšší umožněná velikost historických záznamů pro jednotlivé záznamy - - Max. history size: - Omezit datový objem uchovávaných předchozích verzí záznamů na: - MiB MiB @@ -2049,6 +2189,99 @@ Tuto akci nelze vzít zpět. (old) (staré) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + Omezit počet historických položek záznamu na: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + Omezit celkovou velikost historických položek záznamu na: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Vyčistit + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2094,7 +2327,7 @@ Tuto akci nelze vzít zpět. Delete all custom icons not in use by any entry or group - + Smazat veškeré uživatelsky určené ikony nepoužívané pro žádnou položku či skupinu Purge unused icons @@ -2106,7 +2339,7 @@ Tuto akci nelze vzít zpět. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + Přinejmenším jedna z vybraných ikon je v tuto chvíli používána přinejmenším jedním záznamem nebo skupinou. Ikony všech dotčených záznamů a skupin budou nahrazeny výchozí ikonou. Opravdu chcete smazat ikony, kterou jsou používány? Custom Icons Are In Use @@ -2144,6 +2377,129 @@ Tuto akci nelze vzít zpět. Kolonka popis databáze + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Odebrat + + + Command Settings + + + + Name + Název + + + Save + Uložit + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + sekund + + DatabaseTabWidget @@ -2176,26 +2532,10 @@ Toto je nepochybně chyba, nahlaste ji prosím vývojářům. CSV file CSV soubor - - Select CSV file - Vyberte CSV soubor - Merge database Sloučit databáze - - KeePass 1 database - Databáze ve formátu KeePass verze 1 - - - Open KeePass 1 database - Otevřít databázi ve formátu KeePass verze 1 - - - Open OPVault - Otevřít OPVault - Export database to CSV file Exportovat databázi do CSV souboru @@ -2208,6 +2548,18 @@ Toto je nepochybně chyba, nahlaste ji prosím vývojářům. Writing the HTML file failed. Zápis do HTML souboru se nezdařil. + + Export database to XML file + Exportovat databázi do XML souboru + + + XML file + XML soubor + + + Writing the XML file failed + Zápis do XML souboru se nezdařil. + Export Confirmation Potvrzení exportu @@ -2216,26 +2568,22 @@ Toto je nepochybně chyba, nahlaste ji prosím vývojářům. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Chystáte se exportovat svou databázi do nešifrovaného souboru. To zanechá vaše hesla a citlivé informace zranitelné. Opravdu to chcete? - - New Database - Nová databáze - - - %1 [New Database] - Database tab name modifier - %1 [nová databáze] - %1 [Locked] Database tab name modifier %1 [uzamčeno] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - Štítky databáze + Searches and Tags + Hledání a štítky Searching… @@ -2285,6 +2633,10 @@ Toto je nepochybně chyba, nahlaste ji prosím vývojářům. Expired entries Položky kterým skončila platnost + + Entries expiring within %1 day(s) + Záznamy, kterým platnost skončí v rámci %1 dneZáznamy, kterým platnost skončí v rámci %1 dnůZáznamy, kterým platnost skončí v rámci %1 dníZáznamy, kterým platnost skončí v rámci %1 dne/í + No current database. Žádná nedávná databáze. @@ -2309,6 +2661,18 @@ Toto je nepochybně chyba, nahlaste ji prosím vývojářům. No Results Nic nenalezeno + + Save + Uložit + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + Uložit hledání + Lock Database? Uzamknout databázi? @@ -2337,26 +2701,6 @@ Uložit změny? File has changed Soubor byl změněn - - The database file has changed. Do you want to load the changes? - Soubor s databází byl změněn. Načíst změny? - - - Merge Request - Požadavek na sloučení - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Databázový soubor byl změněn a máte neuložené změny. -Přejete si je zahrnout? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Nepodařilo se otevřít nový soubor s databází během pokusu o její opětovné načtení. -Chyba: %1 - Disable safe saves? Vypnout bezpečná ukládání? @@ -2399,9 +2743,94 @@ Vypnout bezpečné ukládání a zkusit to znovu? Could not find database file: %1 Nedaří se nalézt soubor s databází: %1 - - Entries expiring within %1 day(s) - + + New Database + Nová databáze + + + %1 [New Database] + Database tab name modifier + %1 [nová databáze] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Stahování… + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2454,10 +2883,6 @@ Vypnout bezpečné ukládání a zkusit to znovu? n/a neaplikovatelné - - (encrypted) - (šifrováno) - Select private key Vybrat soukromou část klíče @@ -2476,7 +2901,7 @@ Vypnout bezpečné ukládání a zkusit to znovu? Some Browser Integration settings are overridden by group settings. - + Některá z nastavení napojení na prohlížeč jsou přebita nastavením skupiny. Invalid Entry @@ -2496,13 +2921,17 @@ Všechny provedené změny byly bohužel ztraceny. An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + Došlo k chybě při ověřování uživatelsky určené posloupnosti automatického vyplňování: +%1 +Chcete to opravit? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + Došlo k chybě při ověřování posloupnosti automatického vyplňování pro "%1": +%2 +Chcete ji opravit? Entry updated successfully. @@ -2540,6 +2969,10 @@ Would you like to correct it? Hide Skrýt + + %n hour(s) + %n hodina%n hodiny%n hodin%n hodiny + %n week(s) %n týden%n týdny%n týdnů%n týdny @@ -2552,9 +2985,9 @@ Would you like to correct it? %n year(s) %n rok%n roky%n let%n roky - - %n hour(s) - %n hodina%n hodiny%n hodin%n hodiny + + Failed to decrypt SSH key, ensure password is correct. + @@ -2617,7 +3050,7 @@ Would you like to correct it? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + Pokud zaškrtnuto, záznam se neobjeví ve výkazech jako jsou Kontrola zdraví a HIBP, i když nesplňují požadavky na kvalitu. Exclude from database reports @@ -2674,10 +3107,20 @@ Would you like to correct it? Add new window association Přidat nové přiřazení k oknu + + + + Add item + + + Remove selected window association Odebrat označené přiřazení k oknu + + - + Remove item + - + Window title: Titulek okna: @@ -2702,23 +3145,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Uživatelsky určená posloupnost automatického vyplňování pro toto okno - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Tato nastavení ovlivní chování záznamu pro rozšíření pro webový prohlížeč. - General Obecné @@ -2731,26 +3160,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Přeskočit automatické odeslání pro tento záznam - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Toto nastavení posílat do prohlížeče pouze pro dialogy HTTP Auth. Pokud je zapnuto, běžné přihlašovací formuláře nezobrazí tuto položku pro výběr. - Use this entry only with HTTP Basic Auth Tuto položku použít pouze ve spojení se základním HTTP ověřováním se - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - - Do not use this entry with HTTP Basic Auth Tuto položku nepoužívat ve spojení se základním HTTP ověřováním se - - Additional URL's - Další URL adresy - Add Přidat @@ -2763,6 +3180,22 @@ Would you like to correct it? Edit Upravit + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2813,22 +3246,10 @@ Would you like to correct it? Notes field Kolonka pro poznámky - - Toggle the checkbox to reveal the notes section. - Od/zaškrtnutím této kolonky odkryjete sekci poznámek. - Username field Kolonka pro uživatelské jméno - - Toggle notes visible - Zobraz./nezobrazovat poznámky - - - Notes: - Poznámky: - Expiration field Kolonka data a času konce platnosti @@ -2845,14 +3266,6 @@ Would you like to correct it? Presets Předpřipravené - - Password: - Heslo: - - - URL: - URL adresa: - Url field Kolonka pro URL @@ -2861,18 +3274,10 @@ Would you like to correct it? Download favicon for URL Stáhnout ikonu webu pro URL - - Title: - Titulek: - Title field Kolonka pro název - - Username: - Uživatelské jméno: - Password field Kolonka pro heslo @@ -2881,18 +3286,42 @@ Would you like to correct it? Toggle expiration Vyp/zap. skončení platnosti - - Expires: - Platnost skončí: - - - Tags: - Štítky: - Tags list Seznam štítků + + &Username: + &Uživatelské jméno: + + + &Title: + &Titulek: + + + &Password: + &Heslo: + + + UR&L: + UR&L adresa: + + + &Notes: + &Poznámky: + + + Toggle notes visibility + Zobraz./nezobrazovat poznámky + + + T&ags: + Š&títky: + + + &Expires: + &Platnost skončí: + EditEntryWidgetSSHAgent @@ -2932,19 +3361,6 @@ Would you like to correct it? Private key Soukromá část klíče - - External file - Vnější soubor - - - Browser for key file - Nalistovat soubor s klíčem - - - Browse… - Button for opening file dialog - Procházet… - Attachment Příloha @@ -2961,6 +3377,23 @@ Would you like to correct it? Remove from agent Odebrat z agenta + + External file + Vnější soubor + + + Browser for key file + Nalistovat soubor s klíčem + + + Browse… + Button for opening file dialog + Procházet… + + + Generate + Tvoř + Select attachment file Vybrat soubor, který přiložit @@ -2985,6 +3418,10 @@ Would you like to correct it? seconds sekund + + Clear agent + + EditGroupWidget @@ -2996,10 +3433,6 @@ Would you like to correct it? Icon Ikona - - Browser Integration - Napojení na webový prohlížeč - Properties Vlastnosti @@ -3016,6 +3449,10 @@ Would you like to correct it? Group has unsaved changes Ve skupině jsou neuložené změny + + Browser Integration + Napojení na webový prohlížeč + Enable Zapnout @@ -3031,13 +3468,9 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Upravit skupinu - These settings affect to the group's behaviour with the browser extension. - + Tato nastavení ovlivní chování skupiny pro rozšíření pro webový prohlížeč. Hide entries from browser extension: @@ -3045,7 +3478,7 @@ Would you like to correct it? Hide entries from browser extension toggle for this and sub groups - + Vyp/zap. „Skrýt položky z rozšíření pro prohlížeč“ pro tuto a podřízené skupiny Skip Auto-Submit for entries: @@ -3057,7 +3490,7 @@ Would you like to correct it? Use entries only with HTTP Basic Auth: - + Používat položky pouze se základním HTTP ověřováním se: Only HTTP Auth toggle for this and sub groups @@ -3065,12 +3498,28 @@ Would you like to correct it? Do not use entries with HTTP Basic Auth: - + Nepoužívat položky se základním HTTP ověřováním se: Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + Při hledání shody vynechat dílčí doménu WWW: + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3303,10 +3752,6 @@ Podporovaná rozšíření jsou: %1. Unable to fetch favicon. Ikonu webu (favicon) se nedaří stáhnout. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Používání služby DuckDuckGo pro stahování ikon webových stránek je možné zapnout v Nástroje → Nastavení → Zabezpečení - Existing icon selected. Vybrána existující ikona. @@ -3339,6 +3784,10 @@ Podporovaná rozšíření jsou: %1. The following icon(s) failed: Následující ikona se nezdařila:Následující ikony se nezdařily:Následující ikony se nezdařily:Následující ikony se nezdařily: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3415,6 +3864,24 @@ Dotčený zásuvný modul to může rozbít. %1 - Clone %1 – klon + + Passkey + + + + Invalid conversion type: %1 + Neplatný typ převodu: %1 + + + Invalid conversion syntax: %1 + Neplatná syntaxe převodu: %1 + + + Invalid regular expression syntax %1 +%2 + Neplatná forma zápisu regulárního výrahu %1 +%2 + EntryAttachments @@ -3423,6 +3890,21 @@ Dotčený zásuvný modul to může rozbít. Soubor „%1 se nedaří otevřít. + + EntryAttachmentsDialog + + Form + Formulář + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3460,14 +3942,6 @@ Dotčený zásuvný modul to může rozbít. Remove Odebrat - - Rename selected attachment - Přejmenovat označenou přílohu - - - Rename - Přejmenovat - Open selected attachment Otevřít označenou přílohu @@ -3545,12 +4019,6 @@ Dotčený zásuvný modul to může rozbít. Confirm Overwrite Attachment Potvrdit přepsání přílohy - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Příloha „%1“ už existuje. -Chcete stávající přílohu přepsat? - Confirm Attachment Potvrdit přílohu @@ -3572,7 +4040,8 @@ Opravdu chcete tento soubor přidat? The attachment '%1' was modified. Do you want to save the changes to your database? - + Příloha „%1“ byla změněna. +Opravdu chcete změny ve své databázi uložit? Saving attachment failed @@ -3581,6 +4050,25 @@ Do you want to save the changes to your database? Saving updated attachment failed. Error: %1 + Ukládání aktualizované přílohy se nezdařilo. +Chyba: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Příloha „%1“ už existuje. +Chcete stávající přílohu přepsat? + + + New + + + + Preview + Náhled + + + Failed to preview an attachment: Attachment not found @@ -3777,6 +4265,14 @@ Error: %1 Has TOTP Má TOTP heslo + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3797,8 +4293,8 @@ Error: %1 Heslo - Notes - Poznámky + URL + URL adresa Expiration @@ -3817,8 +4313,8 @@ Error: %1 Uživatelské jméno - URL - URL adresa + Notes + Poznámky Advanced @@ -3868,6 +4364,10 @@ Error: %1 Never Nikdy + + Double click to copy value + Hodnotu zkopírujete dvojklikem + Enabled Zapnuto @@ -3876,6 +4376,10 @@ Error: %1 Disabled Vypnuto + + Double click to copy to clipboard + + EntryURLModel @@ -3883,6 +4387,10 @@ Error: %1 Invalid URL Neplatné URL + + Duplicate URL + + EntryView @@ -3898,6 +4406,10 @@ Error: %1 Reset to defaults Vrátit na výchozí + + + %1 entry(s)... + + ExportDialog @@ -3913,7 +4425,9 @@ Error: %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + Chystáte se exportovat vaši databázi do nešifrovaného souboru. +Vaše hesla a citlivé údaje tak budou zranitelné! + database order @@ -3983,15 +4497,15 @@ This will leave your passwords and sensitive information vulnerable! Failed to register session on DBus at path '%1' - + Nepodařilo se zaregistrovat relaci na DBus v umístění „%1 Failed to register item on DBus at path '%1' - + Nepodařilo se zaregistrovat položku na DBus v umístění „%1 Failed to register prompt object on DBus at path '%1' - + Nepodařilo se zaregistrovat objekt výzvy na DBus v umístění „%1“ @@ -4094,7 +4608,7 @@ Můžete zapnout službu pro stahování ikon z DuckDuckGo v sekci zabezpečení Please wait, processing entry list… - + Čekejte, zpracovává se seznam položek… Downloading… @@ -4117,6 +4631,193 @@ Můžete zapnout službu pro stahování ikon z DuckDuckGo v sekci zabezpečení Stahování ikon webů (%1/%2)… + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + Stránka průvodce + + + Entry count: %1 + + + + Group + Skupina + + + Title + Titulek + + + Username + Uživatelské jméno + + + Password + Heslo + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Formulář + + + Import File Selection + + + + Password: + Heslo: + + + Key File: + Soubor s klíčem: + + + Browse… + Procházet… + + + Import Into: + + + + New Database + Nová databáze + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Otevřít OPVault + + + Select import file + + + + All files + Veškeré soubory + + + Key files + Soubory s klíči + + + Select key file + Vyberte soubor s klíčem + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4132,7 +4833,7 @@ Můžete zapnout službu pro stahování ikon z DuckDuckGo v sekci zabezpečení Kdbx3Reader Missing database headers - + Chybí databázové hlavičky Unable to calculate database key @@ -4158,7 +4859,7 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Invalid header field length: field %1 - + Neplatná délka kolonky hlavičky: kolonka %1 Invalid header data length: field %1, %2 expected, %3 found @@ -4219,7 +4920,7 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Invalid header field length: field %1 - + Neplatná délka kolonky hlavičky: kolonka %1 Invalid header data length: field %1, %2 expected, %3 found @@ -4261,17 +4962,17 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Invalid variant map entry name length Translation: variant map = data structure for storing meta data - Neplatná délka názvu položky mapy varianty + Neplatná délka názvu záznamu mapy varianty Invalid variant map entry name data Translation: variant map = data structure for storing meta data - Neplatná data názvu položky mapy varianty + Neplatná data názvu záznamu mapy varianty Invalid variant map entry value length Translation: variant map = data structure for storing meta data - Neplatná délka hodnoty položky mapy varianty + Neplatná délka hodnoty záznamu mapy varianty Invalid variant map entry value data @@ -4291,22 +4992,22 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - Neplatná délka 32 bitové kladné celočíselné hodnoty položky varianty + Neplatná délka 32 bitové kladné celočíselné hodnoty záznamu varianty Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - Neplatná délka 64 bitové celočíselné hodnoty položky varianty + Neplatná délka 64 bitové celočíselné hodnoty záznamu varianty Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - Neplatná délka 64 bitové kladné celočíselné hodnoty položky varianty + Neplatná délka 64 bitové kladné celočíselné hodnoty záznamu varianty Invalid variant map entry type Translation: variant map = data structure for storing meta data - Neplatný typ položky mapy varianty + Neplatný typ záznamu mapy varianty Invalid variant map field type size @@ -4390,7 +5091,10 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze 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. - + Zvolený soubor je databáze ve starém formátu KeePass 1 (.kdb). + +Můžete ho importovat kliknutím na Databáze > 'Importovat databázi ve formátu KeePass 1…'. +Jedná se o jednosměrný převod. Databázi, vzniklou z importu, nepůjde otevřít ve staré verzi KeePassX 0.4. Not a KeePass database. @@ -4461,7 +5165,7 @@ Line %2, column %3 Null entry uuid - Prázdný neopakující se identifikátor + Prázdný neopakující se identifikátor záznamu Invalid entry icon number @@ -4473,7 +5177,7 @@ Line %2, column %3 No entry uuid found - Nebyl nalezen žádný neopakující se identifikátor položky + Nenalezen žádný neopakující se identifikátor záznamu History element with different uuid @@ -4485,11 +5189,11 @@ Line %2, column %3 Entry string key or value missing - Chybí klíč nebo hodnota řetězce položky + Chybí klíč nebo hodnota řetězce záznamu Entry binary key or value missing - Chybí binární klíč nebo hodnota položky + Chybí binární klíč nebo hodnota daného záznamu Auto-type association window or sequence missing @@ -4548,17 +5252,6 @@ Line %2, column %3 Nepodařilo se otevřít soukromou část klíče - - KeePass1OpenWidget - - Import KeePass1 Database - Importovat databázi ve formátu KeePass1 - - - Unable to open the database. - Databázi se nedaří otevřít. - - KeePass1Reader @@ -4690,7 +5383,7 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Invalid entry UUID field size - + Neplatná velikost kolonky UUID položky Invalid entry group id field size @@ -4795,11 +5488,11 @@ Pokud se toto opakuje, pak je možné, že je váš soubor s databází poškoze Generate a new key file or choose an existing one to protect your database. - + Vytvořte nový klíč nebo zvolte existující pro ochranu databáze. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + Pozn.: NEpoužívejte soubor, který se může změnit, protože by to znemožnilo odemčení databáze! Browse for key file @@ -4845,7 +5538,7 @@ Zpráva: %2 <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>Jako další úroveň zabezpečení je možné přidat soubor s klíčem obsahujícím náhodné bajty.</p><p>Je třeba ho uchovávat v bezpečí a nikdy ho neztratit, jinak budete uzamčeni.</p> Key files @@ -4915,10 +5608,6 @@ Opravdu chcete tento soubor použít? &Recent Databases &Nedávno otevřené databáze - - &Import - &Importovat - &Export &Export @@ -4939,6 +5628,10 @@ Opravdu chcete tento soubor použít? TOTP TOTP + + Tags + Štítky + &Groups Skupiny @@ -4983,34 +5676,18 @@ Opravdu chcete tento soubor použít? &New Database… &Nová databáze… - - Create a new database - Vytvořit novou databázi - &Merge From Database… &Sloučit z databáze… - - Merge from another KDBX database - Sloučit z jiné KDBX databáze - &New Entry… &Nový záznam… - - Add a new entry - Přidat nový záznam - &Edit Entry… &Upravit záznam… - - View or edit entry - Zobrazit nebo upravit položku - &Delete Entry… Smazat záznam… @@ -5019,10 +5696,6 @@ Opravdu chcete tento soubor použít? &New Group… &Nová skupina… - - Add a new group - Přidat novou skupinu - &Edit Group… Upravit skupinu… @@ -5055,18 +5728,10 @@ Opravdu chcete tento soubor použít? Database &Reports… Hlášení o &databázi… - - Statistics, health check, etc. - Statistiky, kontrola stavu atd. - &Database Settings… Nastavení &databáze… - - Database settings - Nastavení databáze - &Clone Entry… Klonovat záznam… @@ -5075,34 +5740,18 @@ Opravdu chcete tento soubor použít? Move u&p &Přesunout nahoru - - Move entry one step up - Přesunout položku o pozici výše - Move do&wn Přesunout dolů - - Move entry one step down - Přesunout položku o pozici níže - Copy &Username Zkopírovat &uživatelské jméno - - Copy username to clipboard - Zkopírovat uživatelské jméno do schránky - Copy &Password Zko&pírovat heslo - - Copy password to clipboard - Zkopírovat heslo do schránky - &Settings Na&stavení @@ -5136,25 +5785,13 @@ Opravdu chcete tento soubor použít? &Titulek - Copy title to clipboard - Zkopírovat titulek do schránky - - - &URL - &URL adresa - - - Copy URL to clipboard - Zkopírovat URL adresu do schránky + Copy &URL + Zkopírovat &URL adresu &Notes Poz&námky - - Copy notes to clipboard - Zkopírovat poznámky do schránky - &CSV File… &CSV soubor… @@ -5167,26 +5804,14 @@ Opravdu chcete tento soubor použít? KeePass 1 Database… Databáze ve formátu KeePass verze 1… - - Import a KeePass 1 database - Importovat databázi aplikace KeePass verze 1 - 1Password Vault… 1Password trezor… - - Import a 1Password Vault - Importovat 1Password trezor - CSV File… CSV soubor… - - Import a CSV file - Importovat CSV soubor - Show TOTP Zobrazit na času založené jednorázové heslo (TOTP) @@ -5203,6 +5828,10 @@ Opravdu chcete tento soubor použít? Copy &TOTP Zkopírovat &TOTP + + Copy Password and TOTP + Zkopírovat heslo a TOTP + E&mpty recycle bin &Vysypat koš @@ -5227,10 +5856,6 @@ Opravdu chcete tento soubor použít? &Online Help Náp&ověda na webu - - Go to online documentation - Přejít na dokumentaci na webu - &User Guide &Uživatelská příručka @@ -5275,6 +5900,10 @@ Opravdu chcete tento soubor použít? Classic (Platform-native) Klasické (nativní pro danou platformu) + + Show Menubar + + Show Toolbar Zobrazovat lištu nástrojů @@ -5299,6 +5928,10 @@ Opravdu chcete tento soubor použít? Clone Group... Klonovat skupinu + + &XML File… + &XML soubor… + Clear history Vyčistit historii @@ -5315,21 +5948,23 @@ Opravdu chcete tento soubor použít? 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. - + VAROVÁNÍ: Používáte vývojové sestavení KeePassXC. +Je zde vysoké riziko poškození dat, proto udržujte zálohu svých databází. +Tato verze není určena pro produkční použití. NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - + UPOZORNĚNÍ: Používáte vývojové sestavení KeePassXC.0 +Očekávejte chyby a drobné problémy, tato verze je určena pouze pro účely testování. - 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. - + No Tags + Bez štítků Restore Entry(s) - + Obnovit záznamObnovit záznamyObnovit záznamyObnovit záznamy Settings @@ -5355,6 +5990,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Ukončit KeePassXC + + %1 Entry(s) + %1 záznam%1 záznamy%1 záznamů%1 záznam(ů) + Please present or touch your YubiKey to continue… Pokud chcete pokračovat, připojte váš YubiKey nebo dotkněte se tlačítka na něm… @@ -5367,6 +6006,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Chcete-li toto nastavení použít, musíte restartovat aplikaci. Chcete nyní restartovat? + + Allow Screen Capture + Povolit snímky obrazovky + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + Otevřít databázi + + + Create Database + Vytvořit databázi + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Upravit položku + + + Delete Entry + + + + Create Group + + + + Edit Group + Upravit skupinu + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Zkopírovat uživatelské jméno + + + Copy Password + Zkopírovat heslo + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Importovat databázi ve formátu KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + Nastavit TOTP + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Vytváření hesel + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5403,11 +6350,11 @@ We recommend you use the AppImage available on our downloads page. Reset - + Reset Reset any remembered decisions for this application - + Vrátit jakákoli zapamatovaná rozhodnutí pro tuto aplikaci na výchozí hodnoty @@ -5424,26 +6371,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Přepisování %1 [%2] - - older entry merged from database "%1" - starší položka sloučena z databáze „%1“ - - - Adding backup for older target %1 [%2] - Přidávání zálohy pro starší cíl %1 [%2] - - - Adding backup for older source %1 [%2] - Přidávání zálohy pro starší zdroj %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Znovu se uplatňují původní zdrojové položky nad novějším zdrojem %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Znovu se uplatňují původní zdrojové položky nad novějším cílem %1 [%2] - Synchronizing from newer source %1 [%2] Synchronizace z novějšího zdroje %1 [%2] @@ -5503,14 +6430,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Zde je možné přizpůsobit nastavení šifrování databáze. Nemějte obavy, kdykoli je možné je později změnit v nastavení databáze. - - Advanced Settings - Pokročilá nastavení - - - Simple Settings - Základní nastavení - NewDatabaseWizardPageDatabaseKey @@ -5545,6 +6464,25 @@ We recommend you use the AppImage available on our downloads page. Vyplňte zobrazovaný název a volitelný popis nové databáze: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Uložit přílohu + + + New entry attachment + + + NixUtils @@ -5591,15 +6529,6 @@ We recommend you use the AppImage available on our downloads page. Očekáváno %1 bajtů v neformátovaném textu, nalezeno %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Čtení databáze nevytvořilo instanci -%1 - - OpVaultReader @@ -5673,6 +6602,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Neznámá šifra: %1 + + AES-256/GCM is currently not supported + AES-256/GCM není v současné době podporován + Passphrase is required to decrypt this key Pro rozšifrování tohoto klíče je třeba zadat heslovou frázi @@ -5737,28 +6670,180 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Neočekávaný konec souboru při zápisu soukromé části klíče + + (encrypted) + (šifrováno) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Zadání hesla se neshodují + SSH Key Generator + Generátor SSH klíče - Passwords match so far - Zadání hesla jsou zatím shodná + Type + Typ - Toggle Password (%1) - Zobrazit/skrýt heslo (%1) + Bits + - Generate Password (%1) - Vytvořit heslo (%1) + Comment + Komentář + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - Varování: je zapnutý Caps Lock! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Zrušit + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + Uživatelské jméno: %1 + + + Group + Skupina + + + Database + Databáze + + + Import Passkey + + + + Import + Importovat + + + Cancel + Zrušit + + + Entry + Záznam + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Veškeré soubory + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5939,10 +7024,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Také zvolte z: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Vynechané znaky: „0“, „1“, „l“, „I“, „O“, „|“, „ . “ - Exclude look-alike characters Vynechat podobně vypadající znaky (předejití záměně) @@ -5967,10 +7048,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Počet slov: - - Character Count: - Počet znaků: - Word Case: Velikost písmen: @@ -5983,10 +7060,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist Přidat uživatelsky určený seznam slov - - character - znak - Close Zavřít @@ -6023,6 +7096,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Nahodilost: %1 bitů + + Password Quality: %1 + Kvalita hesla: %1 + + + Poor + Password quality + Velmi slabá + + + Weak + Password quality + Slabá + + + Good + Password quality + Dobrá + + + Excellent + Password quality + Výborná + Confirm Delete Wordlist Potvrdit smazání seznamu slov @@ -6054,7 +7151,8 @@ We recommend you use the AppImage available on our downloads page. Wordlist "%1" already exists as a custom wordlist. Do you want to overwrite it? - + Slovník „%1“ už existuje jako uživatelsky určený. +Chcete ho přepsat? Failed to add wordlist @@ -6069,8 +7167,47 @@ Do you want to overwrite it? Zvláštní znaky - Password Quality: %1 - Kvalita hesla: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Zadání hesla se neshodují + + + Passwords match so far + Zadání hesla jsou zatím shodná + + + Toggle Password (%1) + Zobrazit/skrýt heslo (%1) + + + Generate Password (%1) + Vytvořit heslo (%1) + + + Warning: Caps Lock enabled! + Varování: je zapnutý Caps Lock! + + + Quality: %1 + Kvalita: %1 Poor @@ -6092,6 +7229,10 @@ Do you want to overwrite it? Password quality Výborná + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6101,13 +7242,28 @@ Do you want to overwrite it? Select characters to type, navigate with arrow keys, Ctrl + S submits. - + Vyberte znaky, které napsat, pro pohyb použijte šipky na klávesnici, Ctrl+S odešlete. Press &Tab between characters Mezi znaky stisknout &tabulátor + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6146,6 +7302,10 @@ Do you want to overwrite it? Continue Pokračovat + + Continue with weak password + + QObject @@ -6235,7 +7395,7 @@ Do you want to overwrite it? URL for the entry. - URL adresa pro položku. + URL adresa pro záznam. URL @@ -6267,7 +7427,7 @@ Do you want to overwrite it? Cannot generate a password and prompt at the same time. - + Není možné vytvořit a dotázat se na heslo naráz. Could not create entry with path %1. @@ -6315,7 +7475,7 @@ Do you want to overwrite it? Path to okon-cli to search a formatted HIBP file - + Popis umístění nástroje okon-cli pro prohledávání formátovaného HIBP souboru okon-cli @@ -6339,7 +7499,7 @@ Do you want to overwrite it? Evaluating database entries against HIBP file, this will take a while… - + Vyhodnocování databázových záznamů vůči HIBP souboru – chvíli potrvá… Password for '%1' has been leaked %2 time(s)! @@ -6347,7 +7507,7 @@ Do you want to overwrite it? Password for '%1' has been leaked! - + Otisk z hesla pro „%1“ je znám! Export an attachment of an entry. @@ -6375,7 +7535,7 @@ Do you want to overwrite it? No export target given. Please use '--stdout' or specify an 'export-file'. - + Nezadán žádný cíl pro export. Buď použijte „--stdout“ nebo zadejte „export-file“. Could not open output file %1. @@ -6440,7 +7600,7 @@ Do you want to overwrite it? Must match only one entry, otherwise a list of possible matches is shown. - + Je třeba, aby se shodovalo pouze s jedním záznamem – jinak je zobrazen seznam možných shod. Copy an entry's attribute to the clipboard. @@ -6453,7 +7613,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + Časový limit, po kterém dojde k vyčištění schránky (výchozí je %1 sekund, pokud nemá být mazáno, nastavte na 0 (nula)). Invalid timeout value %1. @@ -6539,6 +7699,10 @@ Do you want to overwrite it? Too many arguments provided. Zadáno příliš mnoho argumentů. + + Path of the database. + Umístění databáze. + Target decryption time in MS for the database. Cílový čas rozšifrování (v ms) pro databázi. @@ -6559,10 +7723,6 @@ Do you want to overwrite it? Create a new database. Vytvořit novou databázi. - - Path of the database. - Umístění databáze. - Invalid decryption time %1. Neplatný čas rozšifrování %1. @@ -6607,6 +7767,158 @@ Do you want to overwrite it? Successfully created new database. Nová databáze úspěšně vytvořena. + + Unset the password for the database. + Zrušit heslo databáze. + + + Unset the key file for the database. + Zrušit soubor s klíčem pro databázi. + + + Edit a database. + Upravit databázi. + + + Cannot use %1 and %2 at the same time. + Není možné použít %1 a %2 najednou. + + + Could not change the database key. + Nepodařilo se změnit klíč databáze. + + + Database was not modified. + Databáze nebyla upravena. + + + Writing the database failed: %1 + Zápis do databáze se nezdařil: %1 + + + Successfully edited the database. + Databáze úspěšně upravena. + + + Cannot remove password: The database does not have a password. + Není možné odstranit heslo: databáze nemá heslo nastaveno. + + + Cannot remove file key: The database does not have a file key. + Není možné odstranit soubor s klíčem: databáze nemá soubor s klíčem nastaven. + + + Loading the new key file failed: %1 + Načítání nového souboru s klíčem se nezdařilo: %1 + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + Z databáze není možné odebrat všechny klíče. + + + Show a database's information. + Zobrazit informace o databázi. + + + UUID: + UUID: + + + Name: + Název: + + + Description: + Popis: + + + Cipher: + Šifra: + + + KDF: + KDF: + + + Recycle bin is enabled. + Koš je zapnutý. + + + Recycle bin is not enabled. + Koš není zapnut. + + + Location + Umístění + + + Database created + Databáze vytvořena + + + Last saved + Naposledy uloženo + + + Unsaved changes + Neuložené změny + + + yes + ano + + + no + ne + + + Number of groups + Počet skupin + + + Number of entries + Počet položek + + + Number of expired entries + Počet záznamů, kterým skončila platnost + + + Unique passwords + Hesel, která se neopakují + + + Non-unique passwords + Hesel, které se opakují + + + Maximum password reuse + Kolikrát nejvýše je možné opakovat použití hesla + + + Number of short passwords + Počet krátkých hesel + + + Number of weak passwords + Počet slabých hesel + + + Entries excluded from reports + Položky vynechané z přehledů + + + Average password length + Průměrná délka hesla + + + %1 characters + %1 znaků + Word count for the diceware passphrase. Počet slov pro diceware heslovou frázi. @@ -6630,13 +7942,9 @@ Do you want to overwrite it? Invalid word count %1 Neplatný počet slov %1 - - The word list is too small (< 1000 items) - Seznam slov je příliš malý (< 1000 položek) - Title for the entry. - Titulek pro položku. + Titulek pro záznam. title @@ -6644,11 +7952,11 @@ Do you want to overwrite it? Edit an entry. - Upravit položku. + Upravit záznam. Path of the entry to edit. - Popis umístění položky kterou upravit. + Popis umístění záznamu, který upravit. Not changing any field for entry %1. @@ -6658,10 +7966,6 @@ Do you want to overwrite it? Enter new password for entry: Zadejte nové heslo pro položku: - - Writing the database failed: %1 - Zápis do databáze se nezdařil: %1 - Successfully edited entry %1. Položka %1 úspěšně upravena. @@ -6782,10 +8086,6 @@ Do you want to overwrite it? Exit interactive mode. Opustit interaktivní režim. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formát který použít pro export. Možnosti jsou „xml“ nebo „csv“. Výchozí je „xml“. - Exports the content of a database to standard output in the specified format. Exportuje obsah databáze na standardní výstup v zadaném formátu. @@ -6886,106 +8186,6 @@ Do you want to overwrite it? Successfully imported database. Úspěšně naimportovaná databáze. - - Show a database's information. - Zobrazit informace o databázi. - - - UUID: - UUID: - - - Name: - Název: - - - Description: - Popis: - - - Cipher: - Šifra: - - - KDF: - KDF: - - - Recycle bin is enabled. - Koš je zapnutý. - - - Recycle bin is not enabled. - Koš není zapnut. - - - Location - Umístění - - - Database created - Databáze vytvořena - - - Last saved - Naposledy uloženo - - - Unsaved changes - Neuložené změny - - - yes - ano - - - no - ne - - - Number of groups - Počet skupin - - - Number of entries - Počet položek - - - Number of expired entries - Počet záznamů, kterým skončila platnost - - - Unique passwords - Hesel, která se neopakují - - - Non-unique passwords - Hesel, které se opakují - - - Maximum password reuse - Kolikrát nejvýše je možné opakovat použití hesla - - - Number of short passwords - Počet krátkých hesel - - - Number of weak passwords - Počet slabých hesel - - - Entries excluded from reports - Položky vynechané z přehledů - - - Average password length - Průměrná délka hesla - - - %1 characters - %1 znaků - Unknown command %1 Neznámý příkaz %1 @@ -7158,6 +8358,10 @@ Příkazy k dispozici: Show the protected attributes in clear text. Zobrazit chráněné atributy v čitelném textu. + + Show all the attributes of the entry. + Zobrazit všechny atributy záznamu. + Show the attachments of the entry. Zobrazit přílohy položky. @@ -7172,7 +8376,7 @@ Příkazy k dispozici: Show an entry's information. - Zobrazit informace o položce. + Zobrazit informace o záznamu. Name of the entry to show. @@ -7228,6 +8432,10 @@ Zvažte prosím vytvoření nového souboru s klíčem. Invalid YubiKey serial %1 Neplatné sériové číslo %1 YubiKey + + Please present or touch your YubiKey to continue. + Pokud chcete pokračovat, připojte váš YubiKey nebo dotkněte se tlačítka na něm. + Enter password to encrypt database (optional): Zadejte heslo pro zašifrování databáze (volitelné): @@ -7267,19 +8475,19 @@ Zvažte prosím vytvoření nového souboru s klíčem. To use okon, you must provide a post-processed file (e.g. file.okon) - + Aby bylo možné použít okon, je třeba poskytnout poté zpracovaný soubor (např. soubor.okon) Could not start okon process: %1 - + Nepodařilo se spustit okon proces: %1 Error: okon process did not finish - + Chyba: proces okon nedokončen Failed to load okon processed database: %1 - + Nepodařilo se načíst okon zpracovanou databázi: %1 Very weak password @@ -7299,7 +8507,7 @@ Zvažte prosím vytvoření nového souboru s klíčem. Password is used %1 time(s) - + Heslo je použito %1 krátHeslo je použito %1 krátHeslo je použito %1 krátHeslo je použito %1 krát Password has expired @@ -7319,7 +8527,7 @@ Zvažte prosím vytvoření nového souboru s klíčem. Password expires in %1 day(s) - + Platnost hesla skončí za %1 denPlatnost hesla skončí za %1 dnyPlatnost hesla skončí za %1 dníPlatnost hesla skončí za %1 den/dní Password will expire soon @@ -7377,7 +8585,7 @@ Jádro systému: %3 %4 Quick Unlock - + Rychlé odemykání Secret Service Integration @@ -7393,31 +8601,31 @@ Jádro systému: %3 %4 over %1 year(s) - + přes %1 rokpřes %1 rokypřes %1 letpřes %1 roky/let about %1 month(s) - + přibližně %1 měsícpřibližně %1 měsícepřibližně %1 měsícůpřibližně %1 měsíce/ů %1 week(s) - + %1 týden%1 týdny%n týdnů%1 týdny %1 day(s) - + %1 den%1 dny%1 dnů%1 dny %1 hour(s) - + %1 hodina%1 hodiny%1 hodin%1 hodiny %1 minute(s) - + %1 minuta%1 minuty%1 minut%1 minuty - Botan library must be at least 2.11.x, found %1.%2.%3 - + Botan library must be at least %1, found %2.%3.%4 + Je třeba, aby knihovna botan byla alespoň ve verzi %1, byla nalezena verze %2.%3.%4 Cryptographic libraries: @@ -7433,11 +8641,11 @@ Jádro systému: %3 %4 SymmetricCipher::init: Invalid cipher mode. - + SymmetricCipher::init: Neplatný režim šifry. SymmetricCipher::init: Invalid IV size of %1 for %2. - + SymmetricCipher::init: Neplatná IV velikost %1 pro %2. Cipher not initialized prior to use. @@ -7449,7 +8657,7 @@ Jádro systému: %3 %4 unknown executable (DBus address %1) - + neznámý spustitelný soubor (DBus adresa %1) %1 (invalid executable path) @@ -7467,18 +8675,6 @@ Jádro systému: %3 %4 file empty soubor je prázdný - - malformed string - špatně formovaný řetězec - - - missing closing quote - chybějící uzavírací uvozovka - - - %1: (row, col) %2,%3 - %1: (řádek, sloupec) %2,%3 - AES 256-bit AES 256-bit @@ -7489,7 +8685,7 @@ Jádro systému: %3 %4 ChaCha20 256-bit - + ChaCha20 256-bit Argon2d (KDBX 4 – recommended) @@ -7505,7 +8701,7 @@ Jádro systému: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7517,7 +8713,7 @@ Jádro systému: %3 %4 Clearing the clipboard in %1 second(s)… - + Vyčištění schránky za %1 sekundu...Vyčištění schránky za %1 sekundy...Vyčištění schránky za %1 sekund...Vyčištění schránky za %1 sekund(u/y)… Group @@ -7571,7 +8767,7 @@ Jádro systému: %3 %4 Do you really want to delete %n entry(s) for good? - + Opravdu chcete %n položku nevratně smazat?Opravdu chcete %n položky nevratně smazat?Opravdu chcete %n položek nevratně smazat?Opravdu chcete %n položek nevratně smazat? Delete entry(s)? @@ -7583,11 +8779,11 @@ Jádro systému: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - + Opravdu chcete přesunout %n záznam do Koše?Opravdu chcete přesunout %n záznamy do Koše?Opravdu chcete přesunout %n záznamů do Koše?Opravdu chcete přesunout %n záznam(y) do Koše? Move entry(s) to recycle bin? - + Přesunout záznam do Koše?Přesunout záznamy do Koše?Přesunout záznamy do Koše?Přesunout záznamy do Koše? Replace references to entry? @@ -7595,7 +8791,7 @@ Jádro systému: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - + Záznam "%1" má %2 odkaz. Chcete odkaz přepsat, přeskočit záznam, nebo smazat i tak?Záznam "%1" má %2 odkazy. Chcete odkazy přepsat, přeskočit záznam, nebo smazat i tak?Záznam "%1" má %2 odkazů. Chcete odkazy přepsat, přeskočit záznam, nebo smazat i tak?Záznam "%1" má %2 odkaz(y). Chcete odkaz(y) přepsat, přeskočit záznam, nebo smazat i tak? User name @@ -7657,14 +8853,6 @@ Jádro systému: %3 %4 read password of the database from stdin načíst heslo k databázi ze standardního vstupu - - allow app screen recordering and screenshots - umožnit přeskupování obrazovky aplikace a pořizování snímků obrazovky - - - Locked databases. - Uzamčené databáze. - Database failed to lock. Databázi se nepodařilo uzamknout. @@ -7673,6 +8861,10 @@ Jádro systému: %3 %4 Another instance of KeePassXC is already running. Již je spuštěná jiná instance KeePassXC. + + KeePassXC is not running. No open database to lock + KeePassXC není spuštěn. Není k dispozici otevřená databáze k uzamčení + Fatal error while testing the cryptographic functions. Při zkoušení šifrovacích funkcí byl zjištěn fatální nedostatek. @@ -7681,10 +8873,6 @@ Jádro systému: %3 %4 KeePassXC - Error KeePassXC – chyba - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Heslo databáze: @@ -7701,16 +8889,319 @@ Jádro systému: %3 %4 Failed to create Windows Hello credential. - + Nepodařilo se vytvořit Windows Hello přihlašovací údaje Failed to sign challenge using Windows Hello. + Nepodařilo se podepsat výzvu prostřednictvím Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Varování: Nepodařilo se zablokovat snímky obrazovky na nejvrchnějším okně. + + + Invalid Cipher + Neplatná šifra + + + Invalid KDF + Neplatná funkce pro odvození klíče + + + Access to all entries is denied - Please present or touch your YubiKey to continue. + allow screenshots and app recording (Windows/macOS) + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + Nepodařilo se inicializovat KeePassXC kryptografii + + + Failed to encrypt key data. + Nepodařilo se zašifrovat data klíče. + + + Failed to get Windows Hello credential. + Nepodařilo se získat Windows Hello přihlašovací údaje. + + + Failed to decrypt key data. + Nepodařilo se rozšifrovat data klíče. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Smazat data zásuvného modulu? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Štítky + QtIOCompressor @@ -7747,19 +9238,38 @@ Jádro systému: %3 %4 - ReportsWidgetBrowserStatistics + RemoteHandler - Exclude expired entries from the report - Vynechat z výkazu položky, kterým skončila platnost - - - Show only entries which have URL set - Zobrazit pouze položky, které mají vyplněnou URL - - - Show only entries which have browser settings in custom data + Command `%1` did not finish in time. Process was killed. + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + + + ReportsWidgetBrowserStatistics Double-click entries to edit. Položky upravíte dvojklikem na ně. @@ -7794,7 +9304,7 @@ Jádro systému: %3 %4 Please wait, browser statistics is being calculated… - + Čekejte, probíhá výpočet statistik o prohlížeči… No entries with a URL, or none has browser extension settings saved. @@ -7818,50 +9328,59 @@ Jádro systému: %3 %4 Delete Entry(s)… - + Smazat záznam…Smazat záznamy…Smazat záznamy…Smazat záznamy… Exclude from reports Vynechat z přehledů + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + (Platnost vypršela) + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - Vynechat z výkazu položky, kterým skončila platnost + Show expired entries + - Also show entries that have been excluded from reports - Také zobrazit položky, které byly vynechány z přehledů + (Expired) + (Platnost vypršela) Hover over reason to show additional details. Double-click entries to edit. Najeďte ukazatelem myši a zobrazí se další podrobnosti. Položky upravíte dvojklikem. - - Bad - Password quality - Špatné - Bad — password must be changed Špatné — heslo je nutné změnit - - Poor - Password quality - Velmi slabá - Poor — password should be changed Slabé — heslo by se mělo změnit - - Weak - Password quality - Slabá - Weak — consider changing the password Slabé — zvažte změnu hesla @@ -7876,7 +9395,7 @@ Jádro systému: %3 %4 Please wait, health data is being calculated… - + Čekejte, probíhá výpočet pro kontrolu stavu… Congratulations, everything is healthy! @@ -7900,16 +9419,24 @@ Jádro systému: %3 %4 Edit Entry… - Upravit položku… + Upravit záznam… Delete Entry(s)… - + Smazat záznam…Smazat záznamy…Smazat záznamy…Smazat záznamy… Exclude from reports Vynechat z přehledů + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -7995,16 +9522,87 @@ Jádro systému: %3 %4 Edit Entry… - Upravit položku… + Upravit záznam… Delete Entry(s)… - + Smazat záznam…Smazat záznamy…Smazat záznamy…Smazat záznamy… Exclude from reports Vynechat z přehledů + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Export + + + Import + Importovat + + + List of entry URLs + Seznam URL adres položky + + + Title + Titulek + + + Path + Popis umístění + + + Username + Uživatelské jméno + + + URLs + URL adresy + + + Edit Entry… + Upravit záznam… + + + Delete Entry(s)… + Smazat záznam…Smazat záznamy…Smazat záznamy…Smazat záznamy… + + + Relying Party + Předávající strana + + + Show expired entries + + + + (Expired) + (Platnost vypršela) + + + Export Confirmation + Potvrzení exportu + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Soubor přístupového klíče bude zranitelný vůči krádeži a neoprávněnému použití, pokud zůstane nezabezpečený. Jste si jistý, že chcete pokračovat? + + + Please wait, list of entries with passkeys is being updated… + Čekejte prosím, seznam záznamů s přístupovými klíči se aktualizuje... + + + No entries with passkeys. + Žádné záznamy s přístupovými klíči. + ReportsWidgetStatistics @@ -8022,7 +9620,7 @@ Jádro systému: %3 %4 Please wait, database statistics are being calculated… - + Čekejte, probíhá výpočet statistik o databázi… Database name @@ -8169,7 +9767,7 @@ Jádro systému: %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + Klíče zabezpečení nejsou podporovány agentem nebo není poskytovatel klíčů zabezpečení k dispozici. No agent running, cannot remove identity. @@ -8179,6 +9777,14 @@ Jádro systému: %3 %4 No agent running, cannot list identities. Není spuštěný žádný agent, není proto možné vypsat identity + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8245,6 +9851,10 @@ Jádro systému: %3 %4 Search Help Nápověda ke hledání + + Save Search + Uložit hledání + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8309,39 +9919,23 @@ Jádro systému: %3 %4 Show notification when passwords are retrieved by clients - + Když jsou hesla použita klienty, zobrazit upozornění <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p>Pokud zapnuto, jakýkoli pokus o čtení hesla je třeba potvrdit. V opačném případě, když je databáze odemčená, klienti mohou hesla číst bez potvrzování.</p><p>Tato volba pokrývá pouze přístup heslu záznamu. Klienti vždy mohou vyčíslit položky vystavené databáze a dotazovat se na jejich atributy.</p></body></html> Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + Potvrzovat když mají být hesla použita klienty Confirm when clients request entry deletion - - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - + Potvrzovat, když si klienti vyžádají smazání položky Prompt to unlock database before searching - + Před zahájením hledání se dotázat na odemknutí databáze Exposed database groups: @@ -8363,6 +9957,14 @@ Jádro systému: %3 %4 Save current changes to activate the plugin and enable editing of this section. Aby byl zásuvný modul aktivován a zapnuto upravování této sekce, uložte stávající změny. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Toto nastavení nezmění deaktivace výzev koše </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Toto zlepšuje kompatibilitu s určitými aplikacemi, které hledají heslo bez předchozího odemknutí databáze.</p><p> Povolením může také dojít k chybě klienta, pokud databázi nelze odemknout během určitého časového limitu. (Obvykle 25s, ale hodnota může být jinak nastavená v aplikacích.) </p></body></html> + SettingsWidgetKeeShare @@ -8423,14 +10025,14 @@ Jádro systému: %3 %4 ShareExport Could not write export container. - + Nedaří se zapsat do exportního kontejneru. ShareImport Successful import - + Import úspěšný @@ -8471,8 +10073,12 @@ Jádro systému: %3 %4 TagModel - All - Vše + Clear Search + Vyčistit hledání + + + All Entries + Všechny záznamy Expired @@ -8483,6 +10089,25 @@ Jádro systému: %3 %4 Slabá hesla + + TagView + + Remove Search + Odebrat hledání + + + Remove Tag + Smazat štítek + + + Confirm Remove Tag + Potvrdit odebrání štítku + + + Remove tag "%1" from all entries in this database? + Smazat štítek "%1" ze všech záznamů v databázi? + + TotpDialog @@ -8538,7 +10163,7 @@ Jádro systému: %3 %4 Default settings (RFC 6238) - + Výchozí nastavení (norma RFC 6238) Steam® settings @@ -8623,11 +10248,11 @@ Příklad: JBSWY3DPEHPK3PXP An error occurred when trying to retrieve update information, please try again later. - + Při pokusu o získání informací o aktualizaci došlo k chybě – zkuste to znovu později. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>Je k dispozici nová verze.</strong><br/>KeePassXC %1 je možné si <a href="https://keepassxc.org/download/">stáhnout zde</a>. You have the latest version of KeePassXC @@ -8640,26 +10265,6 @@ Příklad: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Začněte uchovávat svá hesla bezpečně v KeePassXC databázi - - Create new database - Vytvořit novou databázi - - - Open existing database - Otevřít existující databázi - - - Import from KeePass 1 - Importovat z KeePass 1 - - - Import from 1Password - Importovat z 1Password - - - Import from CSV - Importovat z CSV - Recent databases Nedávno otevřené databáze @@ -8672,6 +10277,18 @@ Příklad: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Vítejte v KeePassXC %1 + + Create Database + Vytvořit databázi + + + Open Database + Otevřít databázi + + + Import File + Importovat soubor + WinUtils @@ -8688,31 +10305,8 @@ Příklad: JBSWY3DPEHPK3PXP Nedaří se zaregistrovat globální zkratku - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - %1 žádné rozhraní, slot %2 - General: Obecné: @@ -8724,14 +10318,6 @@ Příklad: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Znovu načíst hardwarová bezpečnostní zařízení - - - Refresh - Načíst znovu - Hardware key slot selection Výběr slotu v hardwarovém klíči @@ -8764,10 +10350,6 @@ Příklad: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Výzva-odpověď nastavena, kliknutím změníte či odeberete - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… Zjišťování hardwarových klíčů… @@ -8776,31 +10358,28 @@ Příklad: JBSWY3DPEHPK3PXP No hardware keys detected Nenalezeny žádné hardwarové klíče - - - YubiKeyInterface - %1 Invalid slot specified - %2 - zadán neplatný %1 slot – %2 + Refresh hardware keys + Znovu načíst hardwarové klíče + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - - - Hardware key is currently in use. - Hardwarový klíč je nyní využíván něčím jiným. + PSCS rozhraní YubiKey nebylo inicializováno. Could not find or access hardware key with serial number %1. Please present it to continue. - + Nepodařilo se nalézt nebo přistoupit k hardwarovému klíči se sériovým číslem %1. Připojte ho, aby bylo možné pokračovat. Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8814,6 +10393,21 @@ Příklad: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Nepodařilo se dokončit výzvu-odpověď – PCSC chyba byla: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Stisknout + + + Passive + USB Challenge-Response Key no interaction required + Pasivní + YubiKeyInterfaceUSB @@ -8821,14 +10415,6 @@ Příklad: JBSWY3DPEHPK3PXP Unknown Neznámý - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Nastavených slotů – %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Výzva-odpověď – Slot %3 – %4 - Press USB Challenge-Response Key interaction request @@ -8843,10 +10429,6 @@ Příklad: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. USB rozhraní YubiKey nebylo inicializováno. - - Hardware key is currently in use. - Hardwarový klíč je nyní využíván něčím jiným. - Could not find hardware key with serial number %1. Please plug it in to continue. Nepodařilo se nalézt hardwarový klíč se sériovým číslem %1. Připojte ho, aby bylo možné pokračovat. @@ -8863,5 +10445,15 @@ Příklad: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Nepodařilo se dokončit výzvu-odpověď – konkrétní chyba byla: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_da.ts b/share/translations/keepassxc_da.ts index c0def1094..49728c468 100644 --- a/share/translations/keepassxc_da.ts +++ b/share/translations/keepassxc_da.ts @@ -80,6 +80,10 @@ Details Detaljer + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Din beslutning vil blive husket, så længe både den anmodende klient OG KeePassXC kører. + Remember Husk @@ -88,17 +92,13 @@ Allow Selected Tillad valgte - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + Afvis alle && Fremtid Allow All && &Future - + Tillad Alle && &Fremtid @@ -122,6 +122,10 @@ Use OpenSSH Brug OpenSSH + + Use both agents + Brug begge agenter + SSH_AUTH_SOCK override SSH_AUTH_SOCK-overstyring @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH-agent-forbindelsen virker! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Sikkerhed + + This setting cannot be enabled when minimize on unlock is enabled. + Denne indstilling kan ikke aktiveres, når minimere ved oplåsning er aktiveret. + Access error for config file %1 Adgangsfejl for konfigurationsfil %1 @@ -256,6 +260,10 @@ Remember previously used databases Husk tidligere anvendte databaser + + recent files + seneste filer + Load previously open databases on startup Indlæs tidligere anvendte databaser ved opstart @@ -274,22 +282,22 @@ On database unlock, show entries that - + Ved åbning af database, vis punkter der have expired On database unlock, show entries that... - + er udløbet days On database unlock, show entries that will expire within %1 days - + dage will expire within On database unlock, show entries that... - + vil udløbe inden for File Management @@ -321,7 +329,7 @@ Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - + Angiver placeringen af databasens sikkerhedskopi. Forekomster af "{DB_FILENAME}"  erstattes med filnavnet på den gemte database uden udvidelse. {TIME:<format>} erstattes med backuptidspunktet, se https://doc.qt.io/qt-5/qdatetime.html#toString.<format> angives til formatstrengen "dd_MM_yyyy_hh-mm-ss". {DB_FILENAME}.old.kdbx @@ -408,6 +416,10 @@ Toolbar button style: Knapstil på værktøjslinje: + + Show passwords in color + Vis farvede adgangskoder + Use monospaced font for notes Brug monospatieret skrifttype til noter @@ -491,7 +503,7 @@ Remember last typed entry for: - + Gem sidste indtastede post for: @@ -536,7 +548,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Aktiver hurtigoplåsning af database (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed @@ -582,6 +594,10 @@ Use DuckDuckGo service to download website icons Brug DuckDuckGo til download af webstedsikoner + + Hide TOTP in the entry preview panel + + AutoType @@ -625,6 +641,10 @@ Very long delay detected, max is %1: %2 Meget lang forsinkelse registreret, maks. er %1: %2 + + Entry does not have attribute for PICKCHARS: %1 + + Invalid conversion type: %1 Ugyldig konverteringstype: %1 @@ -636,11 +656,12 @@ Invalid regular expression syntax %1 %2 - + Ugyldig syntaks for regulært udtryk %1 +%2 Invalid placeholder: %1 - + Ugyldig pladsholder: %1 @@ -717,7 +738,12 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>Du kan bruge avancerede søgeforespørgsler til at finde en hvilken som helst post i dine åbne databaser. Følgende genveje er nyttige:<br/> +Ctrl+F - Skift søgning i databasen<br/> +Ctrl+1 - Indtast brugernavn<br/> +Ctrl+2 - Indtast adgangskode<br/> +Ctrl+3 - Indtast TOTP<br/> +Ctrl+4 - Brug virtuelt tastatur (kun Windows)</p> Search all open databases @@ -745,7 +771,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {TOTP} - + Indtast {TOTP} Copy Username @@ -761,7 +787,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Use Virtual Keyboard - + Brug virtuelt tastatur @@ -798,13 +824,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Deaktiver for dette websted + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser gem post - Ok Ok @@ -819,6 +845,62 @@ Please select the correct database for saving credentials. Du har flere databaser åbne. Venligst vælg den korrekte database for at gemme loginoplysninger. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + KeePassXC: Passkey credentials + + + + Cancel + Annuller + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Do you want to register Passkey for: + + + + %1 (%2) + + + + Existing Passkey found. +Do you want to register a new Passkey for: + + + + Select the existing Passkey and press Update to replace it. + + + + Authenticate Passkey credentials for: + + BrowserService @@ -883,50 +965,8 @@ Do you want to delete the entry? - Converting attributes to custom data… - Konverterer attributter til tilpasset data … - - - Abort - Afbryd - - - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Konverterede KeePassHTTP-attributter - - - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Det lykkedes at konvertere attributter fra %1 post(er). -Flyttede %2 nøgler til tilpasset data. - - - Successfully moved %n keys to custom data. - Det lykkedes at flytte %n nøgle til tilpasset data.Det lykkedes at flytte %n nøgler til tilpasset data. - - - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Fandt ingen post med KeePassHTTP-attributter! - - - The active database does not contain an entry with KeePassHTTP attributes. - Den aktive database indeholder ikke en post med KeePassHTTP-attributter. - - - Don't show this warning again - Vis ikke denne advarsel igen - - - KeePassXC: Legacy browser integration settings detected - KeePassXC: Registreret udgået browserintegritetindstillinger - - - 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? - Dine indstillinger for KeePassXC-Browser skal flyttes ind i databaseindstillingerne. -Det er nødvendigt for at vedligeholde dine nuværende browserforbindelser. -Vil du migrere dine eksisterende indstillinger nu? + %1 (Passkey) + @@ -986,7 +1026,7 @@ Vil du migrere dine eksisterende indstillinger nu? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Vis en notifikation når der anmodes om legitimationsoplysninger + Vis en notifikation når der anmodes om loginoplysninger Request to unlock the database if it is locked @@ -1006,15 +1046,15 @@ Vil du migrere dine eksisterende indstillinger nu? Return only best-matching credentials - Returnér kun de bedst matchende legitimationsoplysninger + Returnér kun de bedst matchende loginoplysninger Returns expired credentials. String [expired] is added to the title. - Returnerer udløbne legitimationsoplysninger. Strengen [expired] tilføjes til titlen. + Returnerer udløbne loginoplysninger. Strengen [expired] tilføjes til titlen. Allow returning expired credentials - Tillad returnering af udløbne legitimationsoplysninger + Tillad returnering af udløbne loginoplysninger All databases connected to the extension will return matching credentials. @@ -1023,7 +1063,7 @@ Vil du migrere dine eksisterende indstillinger nu? Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - + Søg i alle åbne databaser for matchende loginoplysninger Advanced @@ -1042,7 +1082,7 @@ Vil du migrere dine eksisterende indstillinger nu? Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - + Spørg ikke om tilladelse til HTTP Basic Auth Automatically creating or updating string fields is not supported. @@ -1050,7 +1090,7 @@ Vil du migrere dine eksisterende indstillinger nu? Return advanced string fields which start with "KPH: " - + Returnér avancerede string-felter, som begynder med "KPH: " Don't display the popup suggesting migration of legacy KeePassHTTP settings. @@ -1058,7 +1098,7 @@ Vil du migrere dine eksisterende indstillinger nu? Do not prompt for KeePassHTTP settings migration. - + Anmod ikke om migrering af KeePassHTTP-indstillinger. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. @@ -1088,7 +1128,7 @@ Vil du migrere dine eksisterende indstillinger nu? Browse… Button for opening file dialog - + Gennemse… Use a custom browser configuration location: @@ -1124,24 +1164,16 @@ Vil du migrere dine eksisterende indstillinger nu? Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Grundet Snap-sandkasse, er du nødsaget til at køre et script for at aktivere browserintegritet.<br />Du kan hente scriptet fra %1 + Grundet Snap-sandkasse, er du nødsaget til at køre et script for at aktivere browser-integration.<br />Du kan hente scriptet fra %1 KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - + KeePassXC-Browser er nødvendig for at browser-integrationen kan fungere. <br />Download den til %1 og %2 og %3. %4 Please see special instructions for browser extension use below Venligst se vigtige instruktioner for brug af browser tilføjelsen nedenfor - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - - <b>Warning:</b> The following options can be dangerous! - <b>Advarsel:</b> Følgende indstillinger kan være farlige! - Executable Files Eksekverbare filer @@ -1158,6 +1190,30 @@ Vil du migrere dine eksisterende indstillinger nu? Select native messaging host folder location + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + CloneDialog @@ -1415,7 +1471,7 @@ Backup database located at %2 Enter Additional Credentials (if any): - Indtast yderligere legitimationsoplysninger (hvis nogen): + Angiv yderligere loginoplysninger (hvis de findes): Key File: @@ -1423,7 +1479,7 @@ Backup database located at %2 <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - + <p>Ud over en adgangskode kan du bruge en hemmelig fil til at øge din databases sikkerhed. Denne fil kan genereres i din databases sikkerhedsindstillinger.</p><p>Dette er <strong>ikke</strong> din *.kdbx databasefil!<br>Hvis du ikke har en nøglefil, skal du lade dette felt være tomt.</p><p>Klik for flere oplysninger…</p> Key file help @@ -1431,7 +1487,7 @@ Backup database located at %2 Hardware key slot selection - + Valg af slot til sikkerhedsnøgle Hardware Key: @@ -1440,7 +1496,8 @@ Backup database located at %2 <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> <p>Click for more information…</p> - + <p>Du kan bruge en hardware-sikkerhedsnøgle, f.eks. en <strong>YubiKey</strong> eller <strong>OnlyKey</strong> med slots, der er konfigureret til HMAC-SHA1.</p> +<p>Klik for yderligere oplysninger…</p> Hardware key help @@ -1452,15 +1509,15 @@ Backup database located at %2 Browse for key file - + Find nøglefil Browse… - + Gennemse… Refresh hardware tokens - + Genopfrisk hardware-tokens Refresh @@ -1468,7 +1525,7 @@ Backup database located at %2 Unlock Database - + Lås database op Cancel @@ -1476,7 +1533,7 @@ Backup database located at %2 Unlock - + Lås op Please present or touch your YubiKey to continue… @@ -1502,7 +1559,7 @@ We recommend you update your KeePassXC installation. Database unlock canceled. - + Oplåsning af database annulleret Unlock failed and no password given @@ -1522,14 +1579,6 @@ For at forhindre, at denne fejl vises, skal du gå til "Databaseindstilling Retry with empty password Prøv igen med tom adgangskode - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Kunne ikke åbne nøglefil: %1 @@ -1574,12 +1623,20 @@ Hvis du ikke har en nøglefil, bedes du lade feltet være tomt. No hardware keys detected - Ingen sikkerhedsnøgle registreret + Ingen sikkerhedsnøgler registreret Select hardware key… Vælg sikkerhedsnøgle... + + authenticate to access the database + + + + Failed to authenticate with Quick Unlock: %1 + + DatabaseSettingWidgetMetaData @@ -1590,10 +1647,6 @@ Hvis du ikke har en nøglefil, bedes du lade feltet være tomt. DatabaseSettingsDialog - - Advanced Settings - Avancerede indstillinger - General Generelt @@ -1612,7 +1665,7 @@ Hvis du ikke har en nøglefil, bedes du lade feltet være tomt. Browser Integration - Browserintegritet + Browser-integration Maintenance @@ -1625,18 +1678,6 @@ Hvis du ikke har en nøglefil, bedes du lade feltet være tomt. KeePassXC-Browser settings KeePassXC-Browserindstillinger - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - - Disconnect all browsers Afbryd forbindelse til alle browsere @@ -1645,6 +1686,10 @@ Hvis du ikke har en nøglefil, bedes du lade feltet være tomt. Forget all site-specific settings on entries Glem alle stedspecifikke indstillinger på posterne + + Refresh database root group ID + + Stored keys Gemte nøgler @@ -1685,7 +1730,7 @@ Det kan forhindre forbindelse til browserpluginet. Enable Browser Integration to access these settings. - Aktivér browserintegritet for at tilgå indstillingerne. + Aktivér Browser-integration for at tilgå disse indstillinger. Do you really want to disconnect all browsers? @@ -1739,18 +1784,9 @@ Tilladelser til at tilgå poster tilbagekaldes. The active database does not contain an entry with permissions. Den aktive database indholder ikke en post med tilladelser. - - Move KeePassHTTP attributes to custom data - Flyt KeePassHTTP-attributter til tilpasset data - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID - + Genopfrisk database-ID Do you really want refresh the database ID? @@ -1803,14 +1839,6 @@ Er du sikker på, du vil fortsætte uden en adgangskode? Decryption Time: Krypteringstid: - - Change existing decryption time - - - - Change - Skift - Decryption time in seconds @@ -1829,7 +1857,7 @@ Er du sikker på, du vil fortsætte uden en adgangskode? Format cannot be changed: Your database uses KDBX 4 features - + Formatet kan ikke ændres: Din database bruger KDBX 4-funktioner Unless you need to open your database with other programs, always use the latest format. @@ -1873,7 +1901,7 @@ Er du sikker på, du vil fortsætte uden en adgangskode? Memory usage - + Hukommelsesforbrug Parallelism: @@ -1891,11 +1919,6 @@ Er du sikker på, du vil fortsætte uden en adgangskode? KDBX 3 - - unchanged - Database decryption time is unchanged - uændret - Number of rounds too high Key transformation rounds @@ -1944,6 +1967,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) tråd tråde + + Encryption Settings: + + + + Basic + + + + Advanced + Avanceret + DatabaseSettingsWidgetFdoSecrets @@ -2002,18 +2037,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - - Max. history items: - Maks. posthistorik: - Maximum size of history per entry - - Max. history size: - Maks. historikstørrelse: - MiB MiB @@ -2028,7 +2055,7 @@ If you keep this number, your database will not be protected from brute force at Enable compression (recommended) - + Aktiver komprimering (anbefales) Delete Recycle Bin @@ -2043,6 +2070,55 @@ This action is not reversible. (old) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min + + + Autosave delay since last change checkbox + + DatabaseSettingsWidgetKeeShare @@ -2202,6 +2278,18 @@ Det er helt sikkert en fejl. Rapportér det venligst til udviklerne.Writing the HTML file failed. + + Export database to XML file + Eksporter database til XML-fil + + + XML file + XML-fil + + + Writing the XML file failed + Skrivning af XML-filen mislykkedes + Export Confirmation @@ -2228,12 +2316,12 @@ Det er helt sikkert en fejl. Rapportér det venligst til udviklerne. DatabaseWidget - Database Tags - + Searches and Tags + Søgninger og etiketter Searching… - + Søger… Shared group… @@ -2277,7 +2365,11 @@ Det er helt sikkert en fejl. Rapportér det venligst til udviklerne. Expired entries - + Udløbne poster + + + Entries expiring within %1 day(s) + No current database. @@ -2303,6 +2395,18 @@ Det er helt sikkert en fejl. Rapportér det venligst til udviklerne.No Results Ingen resultater + + Save + Gem + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + Gem søgning + Lock Database? Lås database? @@ -2393,10 +2497,6 @@ Så sikre gem fra og prøv igen? Could not find database file: %1 Kunne ikke finde databasefil: %1 - - Entries expiring within %1 day(s) - - EditEntryWidget @@ -2418,7 +2518,7 @@ Så sikre gem fra og prøv igen? Browser Integration - Browserintegritet + Browser-integration <empty URL> @@ -2533,6 +2633,10 @@ Would you like to correct it? Hide + + %n hour(s) + %n time%n timer + %n week(s) %n uge%n uger @@ -2545,10 +2649,6 @@ Would you like to correct it? %n year(s) %n år%n år - - %n hour(s) - - EditEntryWidgetAdvanced @@ -2667,17 +2767,27 @@ Would you like to correct it? Add new window association + + + + Add item + + + Remove selected window association + + - + Remove item + - + Window title: Vinduestitel: You can use an asterisk (*) to match everything - + Du kan bruge en asterisk (*) til at matche alt Set the window association title @@ -2685,7 +2795,7 @@ Would you like to correct it? You can use an asterisk to match everything - + Du kan bruge en asterisk til at matche alt Use a specific sequence for this association: @@ -2695,16 +2805,6 @@ Would you like to correct it? Custom Auto-Type sequence for this window - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser @@ -2789,7 +2889,7 @@ Would you like to correct it? Delete all history - + Slet al historik Delete all @@ -2806,29 +2906,17 @@ Would you like to correct it? Notes field - - Toggle the checkbox to reveal the notes section. - Klik på afkrydsningsfeltet for at vise bemærkninger-afsnittet. - Username field Brugernavnfelt - - Toggle notes visible - - - - Notes: - Noter: - Expiration field - + Udløbsfelt Expiration Presets - + Forudindstillinger for udløb Expiration presets @@ -2838,33 +2926,17 @@ Would you like to correct it? Presets Forudindstillinger - - Password: - Adgangskode: - - - URL: - URL: - Url field Download favicon for URL - - - - Title: - Titel: + Download favicon for URL Title field - - - - Username: - Brugernavn: + Titelfelt Password field @@ -2875,15 +2947,39 @@ Would you like to correct it? - Expires: - Udløber: + Tags list + Etiketteliste - Tags: + &Username: - Tags list + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2925,26 +3021,13 @@ Would you like to correct it? Private key Privat nøgle - - External file - Ekstern fil - - - Browser for key file - - - - Browse… - Button for opening file dialog - - Attachment Vedhæftning External key file - + Ekstern nøglefil Add to agent @@ -2954,6 +3037,23 @@ Would you like to correct it? Remove from agent Fjern fra agent + + External file + Ekstern fil + + + Browser for key file + Find nøglefil + + + Browse… + Button for opening file dialog + Gennemse… + + + Generate + Generér + Select attachment file Vælg vedhæftningsfil @@ -2989,10 +3089,6 @@ Would you like to correct it? Icon Ikon - - Browser Integration - Browserintegritet - Properties Egenskaber @@ -3009,6 +3105,10 @@ Would you like to correct it? Group has unsaved changes Gruppe har ændringer, som ikke er gemt + + Browser Integration + Browser-integration + Enable Aktivér @@ -3024,10 +3124,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Rediger gruppe - These settings affect to the group's behaviour with the browser extension. @@ -3064,6 +3160,14 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + + + + Omit WWW subdomain from matching toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3097,11 +3201,11 @@ Would you like to correct it? Browse… - + Gennemse… Clear fields - + Ryd felter Clear @@ -3194,7 +3298,7 @@ Supported extensions are: %1. Expiration field - + Udløbsfelt Use default Auto-Type sequence of parent group @@ -3249,19 +3353,19 @@ Supported extensions are: %1. Choose icon… - + Vælg ikon… Set the URL to use to search for a favicon - + Angiv den URL, der skal bruges til at søge efter et favicon Favicon URL - + Favicon-URL Download favicon for URL - + Download favicon for URL Download favicon @@ -3281,7 +3385,7 @@ Supported extensions are: %1. Also apply to child groups - + Anvend også på undergrupper Also apply to child entries @@ -3368,7 +3472,7 @@ Supported extensions are: %1. Plugin Data - Plugindata + Plugin-data Plugin data @@ -3446,7 +3550,7 @@ Det kan få de påvirkede plugins til at svigte. Remove selected attachment - + Fjern valgte vedhæftning Remove @@ -3454,11 +3558,11 @@ Det kan få de påvirkede plugins til at svigte. Rename selected attachment - + Omdøb valgte vedhæftning Rename - + Omdøb Open selected attachment @@ -3590,11 +3694,11 @@ Error: %1 Age - + Alder Difference - + Forskel Size @@ -3654,7 +3758,7 @@ Error: %1 Tags - + Etiketter @@ -3762,6 +3866,10 @@ Error: %1 Has TOTP + Har TOTP + + + Background Color @@ -3769,7 +3877,7 @@ Error: %1 EntryPreviewWidget Display current TOTP value - + Vis nuværende TOTP-værdi Close @@ -3784,8 +3892,8 @@ Error: %1 Adgangskode - Notes - Bemærkninger + URL + URL Expiration @@ -3793,19 +3901,19 @@ Error: %1 Tags - + Etiketter Tags list - + Etiketteliste Username Brugernavn - URL - URL + Notes + Bemærkninger Advanced @@ -3825,7 +3933,7 @@ Error: %1 Default Sequence - + Standardsekvens Window @@ -3855,6 +3963,10 @@ Error: %1 Never Aldrig + + Double click to copy value + Dobbeltklik for at kopiere værdi + Enabled Aktiveret @@ -3863,6 +3975,10 @@ Error: %1 Disabled Deaktiveret + + Double click to copy to clipboard + + EntryURLModel @@ -3870,6 +3986,10 @@ Error: %1 Invalid URL + + Duplicate URL + + EntryView @@ -3885,6 +4005,10 @@ Error: %1 Reset to defaults Nulstil til standardindstillinger + + + %1 entry(s)... + + ExportDialog @@ -3924,7 +4048,7 @@ This will leave your passwords and sensitive information vulnerable! HTML file - + HTML-fil @@ -4131,7 +4255,8 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + Der blev angivet ugyldige loginoplysninger, prøv igen. +Hvis dette gentager sig, kan din databasefil være beskadiget. Header doesn't match hash @@ -4187,7 +4312,8 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + Der blev angivet ugyldige loginoplysninger, prøv igen. +Hvis dette gentager sig, kan din databasefil være beskadiget. (HMAC mismatch) @@ -4524,7 +4650,7 @@ Linje %2, kolonne %3 Private key is empty - + Privat nøgle er tom File too large to be a private key @@ -4539,7 +4665,7 @@ Linje %2, kolonne %3 KeePass1OpenWidget Import KeePass1 Database - + Importér KeePass1-database Unable to open the database. @@ -4608,7 +4734,8 @@ Linje %2, kolonne %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + Der blev angivet ugyldige loginoplysninger, prøv igen. +Hvis dette gentager sig, kan din databasefil være beskadiget. Key transformation failed @@ -4743,7 +4870,7 @@ If this reoccurs, then your database file may be corrupt. Exported to - + Eksporteret til Synchronized with @@ -4789,11 +4916,11 @@ If this reoccurs, then your database file may be corrupt. Browse for key file - + Find nøglefil Browse… - + Gennemse… Old key file format @@ -4819,11 +4946,11 @@ Meddelelse: %2 Change Key File - + Skift nøglefil Remove Key File - + Fjern nøglefil Key File set, click to change or remove @@ -4843,7 +4970,7 @@ Meddelelse: %2 Create Key File… - + Opret nøglefil… Error creating key file @@ -4859,15 +4986,15 @@ Meddelelse: %2 Invalid Key File - + Ugyldig nøglefil You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - + Du kan ikke bruge den aktuelle database som sin egen nøglefil. Vælg venligst en anden fil eller generer en ny nøglefil. Suspicious Key File - + Mistænkelig nøglefil The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. @@ -4918,12 +5045,16 @@ Are you sure you want to continue with this file? Copy Att&ribute - + Kopiér att&ribut TOTP TOTP + + Tags + Etiketter + &Groups &Grupper @@ -5018,7 +5149,7 @@ Are you sure you want to continue with this file? Download All &Favicons… - Download alle &Favicons... + Download alle &favicons... Sort &A-Z @@ -5030,7 +5161,7 @@ Are you sure you want to continue with this file? Sa&ve Database As… - + Gem database som... Database &Security… @@ -5102,7 +5233,7 @@ Are you sure you want to continue with this file? Download &Favicon - + Download &favicon Open &URL @@ -5110,11 +5241,11 @@ Are you sure you want to continue with this file? &Lock Database - + &Lås database Lock &All Databases - + Lås &Alle databaser &Title @@ -5125,8 +5256,8 @@ Are you sure you want to continue with this file? Kopiér titel til udklipsholder - &URL - &URL + Copy &URL + Copy URL to clipboard @@ -5142,11 +5273,11 @@ Are you sure you want to continue with this file? &CSV File… - + &CSV-fil… &HTML File… - + &HTML-fil… KeePass 1 Database… @@ -5166,7 +5297,7 @@ Are you sure you want to continue with this file? CSV File… - + CSV-fil… Import a CSV file @@ -5182,12 +5313,16 @@ Are you sure you want to continue with this file? Set up TOTP… - + Indstil TOTP… Copy &TOTP Kopiér &TOTP + + Copy Password and TOTP + Kopier adgangskode og TOTP + E&mpty recycle bin &Tøm papirkurven @@ -5282,7 +5417,15 @@ Are you sure you want to continue with this file? Clone Group... - + Klon gruppe... + + + &XML File… + &XML-fil… + + + XML File… + XML-fil… Clear history @@ -5312,6 +5455,10 @@ Expect some bugs and minor issues, this version is meant for testing purposes. + + No Tags + Ingen etiketter + Restore Entry(s) @@ -5340,6 +5487,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Luk KeePassXC + + %1 Entry(s) + %1 post%1 poster + Please present or touch your YubiKey to continue… @@ -5352,6 +5503,22 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? + + Allow Screen Capture + + + + Passkeys… + + + + Passkeys + + + + Import Passkey + + ManageDatabase @@ -5388,11 +5555,11 @@ We recommend you use the AppImage available on our downloads page. Reset - + Nulstil Reset any remembered decisions for this application - + Nulstil alle huskede beslutninger vedrørende denne anmodning @@ -5488,14 +5655,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Her kan du justere databasens krypteringsindstillinger. Bare rolig, du kan ændre dem senere i databaseindstillingerne. - - Advanced Settings - Avancerede indstillinger - - - Simple Settings - Simple indstillinger - NewDatabaseWizardPageDatabaseKey @@ -5657,6 +5816,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Ukendt ciffer: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key Adgangssætning er nødvendig for at dekryptere denne nøgle @@ -5723,26 +5886,168 @@ We recommend you use the AppImage available on our downloads page. - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Adgangskoder matcher ikke - - - Passwords match so far - Adgangskoderne matcher indtil videre - - - Toggle Password (%1) + SSH Key Generator - Generate Password (%1) + Type + Type + + + Bits - Warning: Caps Lock enabled! - Advarsel: Caps Lock aktiveret! + Comment + Kommentar + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + + + + Export the following Passkey entries. + + + + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Annuller + + + Export to folder + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Do you want to import the Passkey? + + + + URL: %1 + + + + Username: %1 + + + + Use default group (Imported Passkeys) + + + + Group + Gruppe + + + Database + Database + + + Select Database + + + + Import Passkey + + + + Import + Importér + + + Cancel + Annuller + + + Database: %1 + + + + Group: + + + + + PasskeyImporter + + Passkey file + + + + All files + Alle filer + + + Open Passkey file + + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Cannot import Passkey + + + + Cannot import Passkey file "%1". Data is missing. + + + + Cannot import Passkey file "%1". Private key is missing or malformed. + @@ -5865,7 +6170,7 @@ We recommend you use the AppImage available on our downloads page. Upper-case letters - + Store bogstaver Numbers @@ -5921,7 +6226,7 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - + Vælg også fra: Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" @@ -5981,7 +6286,7 @@ We recommend you use the AppImage available on our downloads page. Apply Password - + Anvend adgangskode Regenerate password (%1) @@ -6007,6 +6312,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropi: %1 bit + + Password Quality: %1 + Kvaliteten af adgangskoden: %1 + + + Poor + Password quality + Dårlig + + + Weak + Password quality + Svag + + + Good + Password quality + God + + + Excellent + Password quality + Fremragende + Confirm Delete Wordlist @@ -6052,9 +6381,32 @@ Do you want to overwrite it? Special Characters Specialtegn + + + PasswordWidget - Password Quality: %1 - Kvaliteten af adgangskoden: %1 + Passwords do not match + Adgangskoder matcher ikke + + + Passwords match so far + Adgangskoderne matcher indtil videre + + + Toggle Password (%1) + + + + Generate Password (%1) + Generer adgangskode (%1) + + + Warning: Caps Lock enabled! + Advarsel: Caps Lock aktiveret! + + + Quality: %1 + Kvalitet: %1 Poor @@ -6076,6 +6428,10 @@ Do you want to overwrite it? Password quality Fremragende + + Toggle password visibilty using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6199,7 +6555,7 @@ Do you want to overwrite it? Browser Integration - Browserintegritet + Browser-integration Browser Plugin Failure @@ -6227,7 +6583,7 @@ Do you want to overwrite it? Notes for the entry. - + Noter til posten. Notes @@ -6307,7 +6663,7 @@ Do you want to overwrite it? Analyze passwords for weaknesses and problems. - + Analyser adgangskoder for svagheder og problemer. Cannot find HIBP file: %1 @@ -6416,11 +6772,11 @@ Do you want to overwrite it? Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - + Kopierer den angivne attribut til udklipsholderen. Standardværdien er "adgangskode", hvis den ikke er angivet. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - + Kopiér den aktuelle TOTP til udklipsholderen (svarende til "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. @@ -6457,7 +6813,7 @@ Do you want to overwrite it? ERROR: Please specify one of --attribute or --totp, not both. - + FEJL: Angiv en af følgende --attribute eller --totp, ikke begge. Entry with path %1 has no TOTP set up. @@ -6505,7 +6861,7 @@ Do you want to overwrite it? Deactivate password key for the database. - + Deaktiver adgangsnøglen til databasen. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). @@ -6523,6 +6879,10 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + Sti til databasen. + Target decryption time in MS for the database. @@ -6531,22 +6891,24 @@ Do you want to overwrite it? time + + Set the key file for the database. +This options is deprecated, use --set-key-file instead. + Indstil nøglefilen for databasen. +Denne indstilling er forældet, brug i stedet --set-key-file. + Set the key file for the database. Set a password for the database. - + Angiv en adgangskode for databasen. Create a new database. Opret en ny database. - - Path of the database. - Sti til databasen. - Invalid decryption time %1. @@ -6591,6 +6953,158 @@ Do you want to overwrite it? Successfully created new database. Oprettelse af ny database lykkedes. + + Unset the password for the database. + Fjern adgangskoden til databasen. + + + Unset the key file for the database. + Fjern nøglefilen for databasen. + + + Edit a database. + Redigér en database. + + + Cannot use %1 and %2 at the same time. + Kan ikke bruge %1 og %2 på samme tid. + + + Could not change the database key. + Kunne ikke ændre databasenøglen. + + + Database was not modified. + Databasen blev ikke ændret. + + + Writing the database failed: %1 + Skrivning af databasen mislykkedes: %1 + + + Successfully edited the database. + Databasen blev redigeret. + + + Cannot remove password: The database does not have a password. + Kan ikke fjerne adgangskode: Databasen har ikke en adgangskode. + + + Cannot remove file key: The database does not have a file key. + Kan ikke fjerne filnøgle: Databasen har ikke en filnøgle. + + + Loading the new key file failed: %1 + Indlæsning af den nye nøglefil mislykkedes: %1 + + + Found unexpected Key type %1 + Der er fundet en uventet nøgletype %1 + + + Cannot remove all the keys from a database. + Kan ikke fjerne alle nøgler fra en database. + + + Show a database's information. + + + + UUID: + + + + Name: + + + + Description: + Beskrivelse: + + + Cipher: + + + + KDF: + + + + Recycle bin is enabled. + Papirkurv er aktiveret. + + + Recycle bin is not enabled. + + + + Location + + + + Database created + + + + Last saved + Sidst gemt + + + Unsaved changes + Ikke-gemte ændringer + + + yes + + + + no + nej + + + Number of groups + + + + Number of entries + + + + Number of expired entries + Antal udløbne poster + + + Unique passwords + + + + Non-unique passwords + + + + Maximum password reuse + Maksimalt genbrug af adgangskoder + + + Number of short passwords + + + + Number of weak passwords + Antal svage adgangskoder + + + Entries excluded from reports + + + + Average password length + + + + %1 characters + + Word count for the diceware passphrase. Ordtælling for diceware-adgangssætning. @@ -6642,10 +7156,6 @@ Do you want to overwrite it? Enter new password for entry: Indtast ny adgangskode for posten: - - Writing the database failed: %1 - Skrivning af databasen mislykkedes: %1 - Successfully edited entry %1. Det lykkedes at redigere posten %1. @@ -6780,7 +7290,7 @@ Do you want to overwrite it? Unsupported format %1 - + Ikke-understøttet format %1 Length of the generated password @@ -6860,7 +7370,7 @@ Do you want to overwrite it? Path of the new database. - + Sti til den nye database. Unable to import XML database: %1 @@ -6870,106 +7380,6 @@ Do you want to overwrite it? Successfully imported database. - - Show a database's information. - - - - UUID: - - - - Name: - - - - Description: - - - - Cipher: - - - - KDF: - - - - Recycle bin is enabled. - - - - Recycle bin is not enabled. - - - - Location - - - - Database created - - - - Last saved - Sidst gemt - - - Unsaved changes - Ikke-gemte ændringer - - - yes - - - - no - - - - Number of groups - - - - Number of entries - - - - Number of expired entries - - - - Unique passwords - - - - Non-unique passwords - - - - Maximum password reuse - - - - Number of short passwords - - - - Number of weak passwords - - - - Entries excluded from reports - - - - Average password length - - - - %1 characters - - Unknown command %1 @@ -7084,7 +7494,7 @@ Tilgængelige kommandoer: Entry is already in group %1. - + Posten er allerede i gruppe %1. Successfully moved entry %1 to group %2. @@ -7142,6 +7552,10 @@ Tilgængelige kommandoer: Show the protected attributes in clear text. + + Show all the attributes of the entry. + Vis alle attributterne for posten. + Show the attachments of the entry. @@ -7209,6 +7623,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 + + Please present or touch your YubiKey to continue. + Præsenter eller rør din YubiKey for at fortsætte. + Enter password to encrypt database (optional): Indtast adgangskode for at kryptere database (valgfrit): @@ -7264,7 +7682,7 @@ Please consider generating a new key file. Very weak password - + Meget svag adgangskode Password entropy is %1 bits @@ -7272,7 +7690,7 @@ Please consider generating a new key file. Weak password - + Svag adgangskode Used in %1/%2 @@ -7284,7 +7702,7 @@ Please consider generating a new key file. Password has expired - + Adgangskode er udløbet Password expiry was %1 @@ -7324,7 +7742,7 @@ Please consider generating a new key file. Debugging mode is disabled. - + Fejlsøgningstilstand er deaktiveret. Debugging mode is enabled. @@ -7356,7 +7774,7 @@ Kerne: %3 %4 Quick Unlock - + Hurtig oplåsning Secret Service Integration @@ -7395,7 +7813,7 @@ Kerne: %3 %4 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7636,10 +8054,6 @@ Kerne: %3 %4 read password of the database from stdin læs adgangskode til databasen fra stdin - - allow app screen recordering and screenshots - - Locked databases. Låste databaser. @@ -7652,6 +8066,10 @@ Kerne: %3 %4 Another instance of KeePassXC is already running. En anden instans af KeePassXC kører allerede. + + KeePassXC is not running. No open database to lock + + Fatal error while testing the cryptographic functions. Fatal fejl ved test af kryptografiske funktioner. @@ -7660,10 +8078,6 @@ Kerne: %3 %4 KeePassXC - Error KeePassXC - Fejl - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Adgangskode for database: @@ -7687,7 +8101,83 @@ Kerne: %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Polkit returned an error: %1 + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Passkeys @@ -7727,18 +8217,6 @@ Kerne: %3 %4 ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. @@ -7757,7 +8235,7 @@ Kerne: %3 %4 Entry has no Browser Integration settings - + Post har ingen indstillinger for browser-integration Denied URLs @@ -7793,7 +8271,7 @@ Kerne: %3 %4 Edit Entry… - + Rediger post… Delete Entry(s)… @@ -7803,17 +8281,25 @@ Kerne: %3 %4 Exclude from reports + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + ReportsWidgetHealthcheck - - Exclude expired entries from the report - - - - Also show entries that have been excluded from reports - - Hover over reason to show additional details. Double-click entries to edit. @@ -7843,7 +8329,7 @@ Kerne: %3 %4 Weak — consider changing the password - + Svag — overvej at ændre adgangskoden (Excluded) @@ -7879,7 +8365,7 @@ Kerne: %3 %4 Edit Entry… - + Rediger post… Delete Entry(s)… @@ -7889,6 +8375,18 @@ Kerne: %3 %4 Exclude from reports + + Show expired entries + + + + Show entries that have been excluded from reports + + + + (Expired) + + ReportsWidgetHibp @@ -7974,7 +8472,7 @@ Kerne: %3 %4 Edit Entry… - + Rediger post… Delete Entry(s)… @@ -7985,6 +8483,65 @@ Kerne: %3 %4 + + ReportsWidgetPasskeys + + Export + Eksportér + + + Import + Importér + + + List of entry URLs + + + + Please wait, list of entries with Passkeys is being updated… + + + + No entries with Passkeys. + + + + Title + Titel + + + Path + Sti + + + Username + Brugernavn + + + URLs + + + + Edit Entry… + Rediger post… + + + Delete Entry(s)… + Slet post…Slet poster… + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + ReportsWidgetStatistics @@ -8033,7 +8590,7 @@ Kerne: %3 %4 no - + nej The database was modified, but the changes have not yet been saved to disk. @@ -8049,7 +8606,7 @@ Kerne: %3 %4 Number of expired entries - + Antal udløbne poster The database contains entries that have expired. @@ -8069,7 +8626,7 @@ Kerne: %3 %4 Maximum password reuse - + Maksimalt genbrug af adgangskoder Some passwords are used more than three times. Use unique passwords when possible. @@ -8085,7 +8642,7 @@ Kerne: %3 %4 Number of weak passwords - + Antal svage adgangskoder Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. @@ -8224,10 +8781,14 @@ Kerne: %3 %4 Search Help Søg i hjælp + + Save Search + Gem søgning + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + Søg (%1)… Case sensitive @@ -8261,7 +8822,7 @@ Kerne: %3 %4 SettingsDatabaseModel File Name - + Filnavn Group @@ -8304,7 +8865,11 @@ Kerne: %3 %4 Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does not override disabling recycle bin prompts</span></p></body></html> - + <html><head/><body><p><span style=" + font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color + Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Denne indstilling + tilsidesætter ikke deaktivering af papirkurvs-prompter</span></p></body></html> + Confirm when clients request entry deletion @@ -8351,7 +8916,7 @@ Kerne: %3 %4 Allow KeeShare imports - + Tillad KeeShare-importer Allow import @@ -8367,7 +8932,7 @@ Kerne: %3 %4 Only show warnings and errors - + Vis kun advarsler og fejl Own certificate @@ -8450,16 +9015,39 @@ Kerne: %3 %4 TagModel - All - + Clear Search + Ryd søgning + + + All Entries + Alle poster Expired - + Udløbet Weak Passwords - + Svage adgangskoder + + + + TagView + + Remove Search + Fjern søgning + + + Remove Tag + Fjern etikette + + + Confirm Remove Tag + Bekræft fjernelse af etikette + + + Remove tag "%1" from all entries in this database? + Fjern etiketten "%1" fra alle poster i denne database? @@ -8501,7 +9089,7 @@ Kerne: %3 %4 TotpSetupDialog Setup TOTP - Opsæt TOTP + Indstil TOTP Secret Key: @@ -8558,7 +9146,7 @@ Kerne: %3 %4 Invalid TOTP Secret - + Ugyldig TOTP-hemmelighed You have entered an invalid secret key. The key must be in Base32 format. @@ -8567,11 +9155,11 @@ Example: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings - + Bekræft fjernelse af TOTP-indstillinger Are you sure you want to delete TOTP settings for this entry? - + Er du sikker på, at du vil slette TOTP-indstillingerne for denne post? @@ -8609,7 +9197,7 @@ Example: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - + Du har den seneste version af KeePassXC @@ -8666,25 +9254,6 @@ Example: JBSWY3DPEHPK3PXP - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey @@ -8697,14 +9266,14 @@ Example: JBSWY3DPEHPK3PXP Could not find interface for hardware key with serial number %1. Please connect it to continue. - + Kunne ikke finde kontaktflade til sikkerhedsnøglen med serienummer %1. Tilslut den for at fortsætte. YubiKeyEditWidget Refresh hardware tokens - + Genopfrisk hardware-tokens Refresh @@ -8712,15 +9281,15 @@ Example: JBSWY3DPEHPK3PXP Hardware key slot selection - + Valg af slot til sikkerhedsnøgle Could not find any hardware keys! - + Kunne ikke finde nogen sikkerhedsnøgler! Selected hardware key slot does not support challenge-response! - + Den valgte slot til sikkerhedsnøgle understøtter ikke udfordringssvar! Challenge-Response @@ -8744,15 +9313,15 @@ Example: JBSWY3DPEHPK3PXP <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + <p>Hvis du ejer en <a href="https://www.yubico.com/">YubiKey</a> eller <a href="https://onlykey.io">OnlyKey</a>, kan du bruge den som ekstra sikkerhed.</p><p>Nøglen kræver, at et af dens slots er programmeret som <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 udfordrings-svar</a>.</p> Detecting hardware keys… - Registrerer sikkerhedsnøgler... + Registrerer sikkerhedsnøgler… No hardware keys detected - Ingen sikkerhedsnøgle registreret + Ingen sikkerhedsnøgler registreret @@ -8778,15 +9347,15 @@ Example: JBSWY3DPEHPK3PXP Could not find or access hardware key with serial number %1. Please present it to continue. - + Kunne ikke finde eller få adgang til sikkerhedsnøglen med serienummer %1. Præsenter den for at fortsætte. Hardware key is locked or timed out. Unlock or re-present it to continue. - + Sikkerhedsnøglen er låst eller er udløbet. Lås op eller præsentér den igen for at fortsætte. Hardware key was not found or is not configured. - + Sikkerhedsnøglen blev ikke fundet eller er ikke konfigureret. Failed to complete a challenge-response, the PCSC error code was: %1 @@ -8823,19 +9392,19 @@ Example: JBSWY3DPEHPK3PXP Hardware key is currently in use. - Sikkerhedsnøgle er i øjeblikket i brug + Sikkerhedsnøgle er i øjeblikket i brug. Could not find hardware key with serial number %1. Please plug it in to continue. - + Kunne ikke finde sikkerhedsnøglen med serienummer %1. Sæt den i for at fortsætte. Hardware key timed out waiting for user interaction. - + Sikkerhedsnøglen er udløbet og venter på brugerinteraktion. A USB error occurred when accessing the hardware key: %1 - + Der opstod en USB-fejl ved adgang til sikkerhedsnøglen: %1 Failed to complete a challenge-response, the specific error was: %1 diff --git a/share/translations/keepassxc_de.ts b/share/translations/keepassxc_de.ts index 3cf2e5ea4..6e31310e3 100644 --- a/share/translations/keepassxc_de.ts +++ b/share/translations/keepassxc_de.ts @@ -58,8 +58,7 @@ <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">%1 </span>fordert Zugriff auf die folgenden Einträge an: -</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>fordert Zugriff auf die folgenden Einträge: </p></body></html> @@ -82,6 +81,10 @@ Details Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Ihre Entscheidung wird so lange gespeichert, wie sowohl der anfragende Client als auch KeePassXC ausgeführt werden. + Remember Merken @@ -90,17 +93,13 @@ Allow Selected Auswahl erlauben - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Ihre Entscheidung wird so lange gemerkt, wie sowohl der anfragende Client als auch KeePassXC laufen. - Deny All && Future Alle verweigern && Zukünftige Allow All && &Future - Alle erlauben && Zukünftige + Alle erlauben && &Zukünftige @@ -124,6 +123,10 @@ Use OpenSSH OpenSSH verwenden + + Use both agents + Beide Agents verwenden + SSH_AUTH_SOCK override SSH_AUTH_SOCK-Überschreibung @@ -138,24 +141,20 @@ SSH_SK_PROVIDER value - SSH_SK_PROVIDER Wert + SSH_SK_PROVIDER-Wert SSH_SK_PROVIDER override - SSH_SK_PROVIDER Überschreibung + SSH_SK_PROVIDER-Überschreibung No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Kein SSH-Agent-Socket verfügbar. Stellen Sie sicher, dass die SSH_AUTH_SOCK-Umgebungsvariable existiert, oder setzen Sie einen Überschreibungswert. + Kein SSH-Agent-Socket verfügbar. Stellen Sie sicher, dass die Umgebungsvariable SSH_AUTH_SOCK existiert, oder setzen Sie einen Überschreibungswert. SSH Agent connection is working! SSH-Agent-Verbindung funktioniert! - - Use both agents - Beide Agents verwenden - ApplicationSettingsWidget @@ -171,6 +170,10 @@ Security Sicherheit + + This setting cannot be enabled when minimize on unlock is enabled. + Diese Einstellung kann nicht aktiviert werden, wenn Minimieren beim Entsperren aktiviert ist. + Access error for config file %1 Zugriffsfehler bei Konfigurationsdatei %1 @@ -215,18 +218,50 @@ You must restart the application to set the new language. Would you like to restart now? Zum Ändern der Sprache müssen Sie die Anwendung neu starten. Möchten Sie jetzt neu starten? - - Reset Settings? - Einstellungen zurücksetzen? - - - Are you sure you want to reset all general and security settings to default? - Wollen Sie alle allgemeinen und Sicherheitseinstellungen auf die Voreinstellung zurücksetzen? - Select backup storage directory Verzeichnis für die Datensicherung auswählen + + Confirm Reset + Zurücksetzen bestätigen + + + Are you sure you want to reset all settings to default? + Sind Sie sicher, dass Sie alle Einstellungen auf die Standardwerte zurücksetzen wollen? + + + Import KeePassXC Settings + KeePassXC-Einstellungen importieren + + + Failed to import settings from %1, not a valid settings file. + Fehler beim Importieren von Einstellungen aus %1, keine gültige Einstellungsdatei. + + + Export KeePassXC Settings + KeePassXC-Einstellungen exportieren + + + Small + Klein + + + Normal + Normal + + + Medium + Medium + + + Large + Groß + + + Custom + Benutzerdefiniert + ApplicationSettingsWidgetGeneral @@ -252,11 +287,15 @@ Minimize window after unlocking database - Nach Entsperren der Datenbank Fenster minimieren + Fenster nach Entsperren der Datenbank minimieren Remember previously used databases - Zuletzt verwendete Datenbanken merken + Zuletzt verwendete Datenbanken merken: + + + recent files + aktuelle Dateien Load previously open databases on startup @@ -268,30 +307,11 @@ Check for updates at application startup once per week - Bei Programmstart wöchentlich auf Updates prüfen + Beim Programmstart wöchentlich auf Updates prüfen Include beta releases when checking for updates - Bei Update-Prüfung Beta-Versionen einbeziehen - - - On database unlock, show entries that - Beim Entsperren der Datenbank Einträge anzeigen, die - - - have expired - On database unlock, show entries that... - abgelaufen sind - - - days - On database unlock, show entries that will expire within %1 days - Tage - - - will expire within - On database unlock, show entries that... - werden innerhalb von + Betaversionen bei Update-Prüfung einbeziehen File Management @@ -303,11 +323,11 @@ Automatically save when locking database - Automatisch speichern beim Sperren der Datenbank + Beim Sperren der Datenbank automatisch speichern Automatically save non-data changes when locking database - Metadaten automatisch speichern beim Sperren der Datenbank + Metadaten beim Sperren der Datenbank automatisch speichern Automatically reload the database when modified externally @@ -317,29 +337,17 @@ Backup database file before saving Vor dem Speichern Backup der Datenbank erstellen - - Backup destination - Sicherungsziel - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Gibt den Speicherort der Datenbank-Sicherungsdatei an. Das Vorkommen von "{DB_FILENAME}" wird durch den Dateinamen der gesicherten Datenbank ohne Erweiterung ersetzt. {TIME:<format>} wird durch die Sicherungszeit ersetzt, siehe https://doc.qt.io/qt-5/qdatetime.html#toString. <format>Standardmäßig wird die Formatzeichenfolge "dd_MM_yyyy_hh-mm-ss" verwendet. - {DB_FILENAME}.old.kdbx {DB_FILENAME}.alt.kdbx - - Choose... - Auswählen … - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - Nutze eine andere Speichermethode (könnte Probleme von Dropbox, Google Drive, GVFS, etc. lösen) + Alternative Speichermethode verwenden (kann Probleme mit Dropbox, Google Drive, GVFS usw. lösen) Temporary file moved into place - Temporäre Datei an den Ort bewegt + Temporäre Datei an ihren Platz verschieben Directly write to database file (dangerous) @@ -355,11 +363,11 @@ Minimize when opening a URL - Nach Öffnen einer URL Fenster minimieren + Fenster nach Öffnen einer URL minimieren Hide window when copying to clipboard - Nach Kopieren in Zwischenablage Fenster verstecken + Fenster nach Kopieren in Zwischenablage verstecken Minimize @@ -388,7 +396,7 @@ Toolbar button style - Schaltflächenstil der Werkzeugleiste + Design der Symbolleistenschaltflächen Movable toolbar @@ -408,11 +416,15 @@ Toolbar button style: - Design der Symbolleisten-Buttons: + Design der Symbolleistenschaltflächen: + + + Show passwords in color + Passwörter farbig anzeigen Use monospaced font for notes - Nutze eine monospaced Schriftart für Notizen + Monospace-Schriftart für Notizen verwenden Minimize instead of app exit @@ -424,11 +436,11 @@ Tray icon type - Trayicon-Typ + Taskleistensymbol-Typ Tray icon type: - Tray Icon Typ: + Taskleistensymbol-Typ: Hide window to system tray when minimized @@ -456,7 +468,7 @@ Hide expired entries from Auto-Type - Abgelaufene Einträge bei Auto-Type ausblenden + Abgelaufene Einträge bei Auto-Type verstecken Re-lock previously locked database after performing Auto-Type @@ -493,7 +505,72 @@ Remember last typed entry for: - Merke den zuletzt eingegebenen Eintrag für: + Zuletzt eingegebenen Eintrag merken für: + + + On database unlock, show entries that will expire within + Beim Entsperren der Datenbank Einträge anzeigen, die ablaufen in: + + + On database unlock, show entries that will expire within + Beim Entsperren der Datenbank Einträge anzeigen, die ablaufen in: + + + days + number of days warning for password expiration + Tagen + + + Destination format: + Zielformat: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> wird durch den Dateinamen der gespeicherten Datenbank ohne Erweiterung ersetzt</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> wird durch das angegebene Zeitformat ersetzt (Standard: dd_MM_yyyy_hh-mm-ss)</p><p>Weitere Einzelheiten finden Sie im Benutzerhandbuch</p></body></html> + + + Choose folder... + Ordner auswählen… + + + Show confirmation before moving entries to recycle bin + Bestätigung vor dem Verschieben von Einträgen in den Papierkorb anzeigen + + + Copy data on double clicking field in entry view + Daten beim Doppelklick auf ein Feld in der Eintragsansicht kopieren + + + Show toolbar + Symbolleiste anzeigen + + + Show the menu bar by pressing the Alt key + Menüleiste durch Drücken der Alt-Taste anzeigen + + + Show menubar + Menüleiste anzeigen + + + Import settings… + Einstellungen importieren… + + + Export settings… + Einstellungen exportieren… + + + Open browser on double clicking URL field in entry view + Browser bei Doppelklick auf das URL-Feld in der Eintragsansicht öffnen + + + Font size: + Schriftgröße: + + + Font size selection + Auswahl der Schriftgröße @@ -526,7 +603,7 @@ Clipboard clear seconds - Zwischenablage löschen nach ... Sekunden + Zwischenablage löschen nach … Sekunden Lock databases after inactivity of @@ -548,10 +625,6 @@ Lock databases after minimizing the window Datenbanken sperren beim Minimieren des Fensters - - Require password repeat when it is visible - Passwort-Wiederholung erfordern, wenn das Passwort sichtbar ist - Hide passwords when editing them Passwörter beim Bearbeiten verstecken @@ -564,25 +637,29 @@ Hide passwords in the entry preview panel Passwörter im Eintrags-Vorschau-Panel verstecken - - Hide entry notes by default - Eintrags-Notizen standardmäßig verstecken - - - Move entries to recycle bin without confirmation - Einträge ohne Bestätigung in den Papierkorb verschieben - - - Enable double click to copy the username/password entry columns - Benutzername/Passwort per Doppelklick kopieren - Privacy Datenschutz Use DuckDuckGo service to download website icons - DuckDuckGo zum Herunterladen von Webseiten-Symbolen verwenden + DuckDuckGo zum Herunterladen von Webseitensymbolen verwenden + + + Hide TOTP in the entry preview panel + TOTP in der Eintragsvorschau verstecken + + + Lock databases when switching user + Datenbanken beim Benutzerwechsel sperren + + + Lock Options + Optionen sperren + + + Hide notes in the entry preview panel + Notizen in der Eintragsvorschau verstecken @@ -605,7 +682,7 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC benötigt die Berechtigungen für Barrierefreiheit und Bildschirmaufzeichnung, um globalen Auto-Type durchzuführen. Die Bildschirmaufzeichnung ist notwendig, um Einträge über den Fenstertitel zu finden. Falls Sie die Berechtigung bereits erteilt haben, starten Sie KeePasXC bitte neu. + KeePassXC benötigt die Berechtigungen für Barrierefreiheit und Bildschirmaufzeichnung, um globales Auto-Type durchzuführen. Die Bildschirmaufzeichnung ist notwendig, um Einträge über den Fenstertitel zu finden. Falls Sie die Berechtigung bereits erteilt haben, starten Sie KeePasXC bitte neu. Invalid entry provided @@ -628,18 +705,8 @@ Sehr lange Verzögerung, max. %1: %2 - Invalid conversion type: %1 - Ungültiger Konvertierungstyp: %1 - - - Invalid conversion syntax: %1 - Ungültige Konvertierungs-Syntax: %1 - - - Invalid regular expression syntax %1 -%2 - Ungültige Syntax des regulären Ausdrucks %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Eintrag hat kein Attribut für PICKCHARS: %1 Invalid placeholder: %1 @@ -686,10 +753,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Versuche, ungültiges Tastensymbol zu senden. - Sequence aborted: Caps Lock is on Sequenz wird abgebrochen: Die Feststelltaste ist eingeschaltet @@ -702,6 +765,10 @@ Unable to get valid keycode for key: Kein gültiger Tastencode für Taste: + + Trying to send invalid keyboard symbol. + Es wurde versucht, ein ungültiges Tastatursymbol zu senden. + AutoTypeSelectDialog @@ -722,7 +789,7 @@ Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> <p>Sie können erweiterte Suchbegriffe verwenden, um Einträge in Ihrer Datenbank zu finden. Die folgenden Tastenkürzel können hilfreich sein:<br/> Strg+F - Datenbanksuche aktivieren/deaktivieren<br/> -Strg+1 - Benutzername tippen<br/> +Strg+1 - Benutzernamen tippen<br/> Strg+2 - Passwort tippen<br/> Strg+3 - TOTP tippen<br/> Strg+4 - Virtuelle Tastatur verwenden (nur Windows)</p> @@ -733,7 +800,7 @@ Strg+4 - Virtuelle Tastatur verwenden (nur Windows)</p> Search… - Suchen … + Suchen… Type Sequence @@ -745,19 +812,19 @@ Strg+4 - Virtuelle Tastatur verwenden (nur Windows)</p> Type {USERNAME} - Tippe {USERNAME} + {USERNAME} tippen Type {PASSWORD} - Tippe {PASSWORD} + {PASSWORD} tippen Type {TOTP} - Tippe {TOTP} + {TOTP} tippen Copy Username - Benutzername kopieren + Benutzernamen kopieren Copy Password @@ -806,13 +873,13 @@ Strg+4 - Virtuelle Tastatur verwenden (nur Windows)</p> Disable for this site Für diese Seite deaktivieren + + Undo + Rückgängig + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Eintrag speichern - Ok Ok @@ -827,13 +894,74 @@ Please select the correct database for saving credentials. Sie haben mehrere Datenbanken geöffnet. Bitte wählen Sie die richtige Datenbank zum Speichern der Anmeldedaten. + + KeePassXC - Select Database + KeePassXC - Datenbank auswählen + + + + BrowserPasskeysConfirmationDialog + + Cancel + Abbrechen + + + Update + Update + + + Authenticate + Authentifizieren + + + Register new + Neu registrieren + + + Register + Registrieren + + + Timeout in <b>%n</b> seconds... + Timeout in <b>%n</b> Sekunde…Timeout in <b>%n</b> Sekunden… + + + Relying Party: %1 + Verlässliche Gegenseite: %1 + + + Username: %1 + Benutzername: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Passkey-Anmeldedaten + + + Add to existing entry + Einem bestehenden Eintrag hinzufügen + + + Existing passkey found. +Do you want to register a new passkey for: + Vorhandenen Passkey gefunden. +Möchten Sie einen neuen Passkey registrieren für: + + + Select the existing passkey and press Update to replace it. + Wählen Sie den vorhandenen Passkey aus und drücken Sie Update, um ihn zu ersetzen. + + + Authenticate passkey credentials for: + Passkey-Anmeldedaten authentifizieren für: + + + Do you want to register a passkey for: + Möchten Sie ein Passkey registrieren für: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Neue Gruppe erstellen - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -842,10 +970,6 @@ Do you want to create this group? Möchten Sie diese Gruppe erstellen? - - KeePassXC: New key association request - KeePassXC: Neue Schlüsselverbindungsanfrage - You have received an association request for the following database: %1 @@ -855,87 +979,83 @@ chrome-laptop. Verbindungsanfrage erhalten für folgende Datenbank: %1 -Geben Sie der Verbindung einen eindeutigen Namen, z. B. "chrome-laptop". +Geben Sie der Verbindung einen eindeutigen Namen, z. B. „chrome-laptop“. Save and allow access Speichern und Zugriff erlauben - - KeePassXC: Overwrite existing key? - KeePassXC: Bestehenden Schlüssel überschreiben? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Ein geteilter Schlüssel mit dem Namen „%1“ existiert bereits. Möchten Sie ihn überschreiben? - - KeePassXC: Update Entry - KeePassXC: Eintrag aktualisiert - Do you want to update the information in %1 - %2? Möchten Sie die Informationen in %1 - %2 aktualisieren? - - KeePassXC: Delete entry - KeePassXC: Eintrag löschen - A request for deleting entry "%1" has been received. Do you want to delete the entry? - Anfrage zum Löschen des Eintrags "%1" erhalten. + Anfrage zum Löschen des Eintrags „%1“ erhalten. Möchten Sie den Eintrag löschen? - Converting attributes to custom data… - Eigenschaften werden in Plugin-Daten umgewandelt ... + %1 (Passkey) + %1 (Passkey) - Abort - Abbrechen + KeePassXC - Create a new group + KeePassXC - Neue Gruppe erstellen - KeePassXC: Converted KeePassHTTP attributes - KeepassXC: KeePassHTTP-Eigenschaften wurden umgewandelt + Disable + Deaktivieren - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Eigenschaften von %1 Einträgen wurden erfolgreich umgewandelt. -%2 Schlüssel in die Plugin-Daten verschoben. - - - Successfully moved %n keys to custom data. - %1 Einträge wurden erfolgreich umgewandelt%n Schlüssel wurden erfolgreich in die Plugin-Daten verschoben. + KeePassXC - Overwrite existing key? + KeePassXC - Bestehenden Schlüssel überschreiben? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Kein Eintrag mit KeePassHTTP-Eigenschaften gefunden! + KeePassXC - Update Entry + KeePassXC - Eintrag aktualisieren - The active database does not contain an entry with KeePassHTTP attributes. - Die aktive Datenbank enthält keinen Eintrag mit KeePassHTTP-Eigenschaften. + KeePassXC - Delete entry + KeePassXC - Eintrag löschen - Don't show this warning again - Diese Warnung nicht wieder anzeigen + KeePassXC - New key association request + KeePassXC - Neue Anforderung einer Schlüsselzuordnung - KeePassXC: Legacy browser integration settings detected - KeePassXC: Veraltete Einstellungen für Browser-Integration gefunden + Passkey + Passkey - 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? - Ihre KeePassXC-Browser-Einstellungen müssen in die Datenbankeinstellungen verschoben werden. -Dies ist notwendig, um Ihre aktuellen Browserverbindungen aufrechtzuerhalten. -Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? + KeePassXC - Passkey credentials + KeePassXC - Passkey-Anmeldedaten + + + Register a new passkey to this entry: + Registrieren Sie einen neuen Passkey für diesen Eintrag: + + + KeePassXC - Update passkey + KeePassXC - Passkey aktualisieren + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Eintrag hat bereits einen Passkey. +Möchten Sie den Passkey in %1 - %2 überschreiben? + + + Register + Registrieren @@ -956,10 +1076,6 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? General Allgemein - - Browsers installed as snaps are currently not supported. - Browser, die als Snaps installiert sind, werden derzeit nicht unterstützt. - Enable integration for these browsers: Integration für diese Browser aktivieren: @@ -1003,7 +1119,7 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Only entries with the same scheme (http://, https://, …) are returned. - Es werden nur Einträge mit dem gleichen Schema (http://, https://, …) zurückgegeben. + Es werden nur Einträge mit dem gleichen Schema (http://, https:// …) zurückgegeben. Match URL scheme (e.g., https://example.com) @@ -1011,7 +1127,7 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Only returns the best matches for a specific URL instead of all entries for the whole domain. - Nur die am besten passenden Einträge für eine URL anzeigen statt aller Einträge der ganzen Domain + Nur die am besten passenden Einträge für eine URL anzeigen, statt alle Einträge der ganzen Domain. Return only best-matching credentials @@ -1019,7 +1135,7 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Returns expired credentials. String [expired] is added to the title. - Abgelaufene Anmeldedaten zurückgeben. "Abgelaufen" wird an den Titel angehängt. + Abgelaufene Anmeldedaten zurückgeben. An den Titel wird [abgelaufen] angehängt. Allow returning expired credentials @@ -1041,17 +1157,17 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Never ask before accessing credentials Credentials mean login data requested via browser extension - Niemals fragen, bevor auf Anmeldedaten zugegriffen wird + Niemals vor dem Zugriff auf Anmeldeinformationen fragen Never ask before updating credentials Credentials mean login data requested via browser extension - Niemals fragen, bevor Anmeldedaten aktualisiert werden + Niemals vor der Aktualisierung der Anmeldedaten fragen Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - Nicht nach Berechtigung für "HTTP Basic Auth" fragen + Nicht nach Berechtigung für HTTP-Basisauthentifizierung fragen Automatically creating or updating string fields is not supported. @@ -1059,11 +1175,11 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Return advanced string fields which start with "KPH: " - Auch erweiterte Attribute anzeigen, die mit "KPH: " beginnen + Auch erweiterte Attribute anzeigen, die mit „KPH: “ beginnen Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Kein Popup zeigen, das die Migration von älteren KeePassHTTP-Einstellungen vorschlägt. + Kein Pop-up-Fenster anzeigen, das die Migration der alten KeePassHTTP-Einstellungen vorschlägt. Do not prompt for KeePassHTTP settings migration. @@ -1088,20 +1204,20 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Custom proxy location field - Benutzerdefiniertes Proxy-Pfad-Feld + Feld für benutzerdefinierten Proxy-Pfad Browser for custom proxy file - Browser für benutzerdefinierte Proxydatei + Browser für benutzerdefinierte Proxy-Datei Browse… Button for opening file dialog - Durchsuchen ... + Durchsuchen… Use a custom browser configuration location: - Benutzerdefinierten Browser-Konfigurations-Pfad verwenden: + Benutzerdefinierten Browser-Konfigurationspfad verwenden: Browser type: @@ -1109,11 +1225,11 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Toolbar button style - Schaltflächenstil der Werkzeugleiste + Design der Symbolleistenschaltflächen Config Location: - Konfigurations-Pfad. + Konfigurationspfad: Custom browser location field @@ -1131,26 +1247,6 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Custom extension ID Benutzerdefinierte Erweiterungs-ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Aufgrund von Snap Sandboxing müssen Sie ein Skript ausführen, um die Browser-Integration zu aktivieren.<br />Sie können dieses Skript erhalten unter %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser wird für die Browserintegration benötigt. <br />Laden Sie es für %1 und %2 und %3 herunter. %4 - - - Please see special instructions for browser extension use below - Bitte beachten Sie die untenstehenden speziellen Anweisungen für die Verwendung der Browser-Erweiterung - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Fehler:</b> Der benutzerdefinierte Proxy-Pfad kann nicht gefunden werden!<br/>Browser-Integration WIRD NICHT FUNKTIONIEREN ohne die Proxy-Anwendung. - - - <b>Warning:</b> The following options can be dangerous! - <b>Warnung:</b> Die folgenden Einstellungen können gefährlich sein! - Executable Files Ausführbare Dateien @@ -1165,7 +1261,47 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Select native messaging host folder location - Ordner-Pfad für Native-Messaging-Host auswählen + Ordnerpfad für Native-Messaging-Host auswählen + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Erlauben Sie KeePassXC-Proxy, alle Einträge mit Titel, URL und UUID in verbundenen Datenbanken aufzulisten. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Eingeschränkten Zugriff auf alle Einträge in verbundenen Datenbanken zulassen (ignoriert Zugriffsbeschränkungen für Internetseiten) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Warnung:</b> Diese Einstellungen sollten nur bei Bedarf angepasst werden. + + + The custom proxy location does not exist. + Der benutzerdefinierte Proxy-Pfad ist nicht vorhanden. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Fehler:</b> Der benutzerdefinierte Proxy-Pfad ist nicht vorhanden. Korrigieren Sie dies auf dem Tab „Fortgeschritten“. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Fehler:</b> Die installierte ausführbare Proxy-Datei fehlt am erwarteten Speicherort: %1<br/>Bitte legen Sie in den erweiterten Einstellungen einen benutzerdefinierten Proxy-Pfad fest oder installieren Sie die Anwendung neu. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Nutzung von unsicheren http://localhost mit Passkeys zu Testzwecken zulassen. + + + Allow using localhost with passkeys + Nutzung von localhost mit Passkeys zulassen + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser wird für die Browserintegration benötigt. <br />Laden Sie ihn für %1 und %2 und %3 herunter. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Mit Snap oder Flatpak installierte Browser werden nicht unterstützt, mit Ausnahme von Firefox, der mit Snap installiert wurde. @@ -1189,21 +1325,13 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? CsvImportWidget - - Import CSV fields - CSV-Felder importieren - - - filename - Dateiname - size, rows, columns Größe, Zeilen, Spalten Column Association - Spalten-Zuordnung + Spaltenzuordnung Password @@ -1287,7 +1415,7 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Consider '\' an escape character - „\“ als Maskierungs-Zeichen behandeln + „\“ als Maskierungszeichen behandeln Preview @@ -1305,50 +1433,44 @@ Möchten Sie Ihre bestehenden Einstellungen jetzt migrieren? Column %1 Spalte %1 - - Imported from CSV file - Aus CSV-Datei importiert - - - Original data: - Original-Daten: - - - Error(s) detected in CSV file! - Fehler in CSV-Datei gefunden! - [%n more message(s) skipped] [zusätzlich %n Nachricht(en) übersprungen][%n weitere Nachricht(en) übersprungen] - Error - Fehler + Failed to parse CSV file: %1 + CSV-Datei konnte nicht verarbeitet werden: %1 - CSV import: writer has errors: -%1 - CSV-Import: Fehler beim Schreiben: %1 + Imported from CSV file: %1 + Aus CSV-Datei: %1 importiert + + + No Title Selected + Kein Titel ausgewählt + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Es wurde keine Titelspalte ausgewählt, sodass die Einträge schwer zu unterscheiden sind. +Sind Sie sicher, dass Sie importieren möchten? + + + Tags + Tags CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n Byte(s)%n Byte(s) - %n row(s) - %n Zeile(n)%n Zeile(n) + CSV row count + %n Zeile%n Zeilen %n column(s) - %n Spalte%n Spalte(n) + CSV column count + %n Spalte%n Spalten @@ -1400,6 +1522,14 @@ Sicherungskopie der Datenbank ist in %2 Recycle Bin Papierkorb + + Database file read error. + Fehler beim Lesen der Datenbankdatei. + + + No file path was provided. + Es wurde kein Dateipfad angegeben. + DatabaseOpenDialog @@ -1420,42 +1550,12 @@ Sicherungskopie der Datenbank ist in %2 Password field - Passwort-Feld - - - Enter Additional Credentials (if any): - Zusätzliche Anmeldedaten eingeben (falls vorhanden): - - - Key File: - Schlüsseldatei: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Zusätzlich zu einem Passwort können Sie eine geheime Datei verwenden, um die Sicherheit Ihrer Datenbank zu erhöhen. Diese Datei kann in den Sicherheitseinstellungen Ihrer Datenbank erzeugt werden.</p></p>Dies ist <strong>nicht</strong> Ihre *.kdbx-Datenbankdatei!<br>Wenn Sie keine Schlüsseldatei haben, lassen Sie dieses Feld leer.</p><p>Klicken Sie für weitere Informationen…</p> - - - Key file help - Schlüsseldatei-Hilfe + Passwortfeld Hardware key slot selection Auswahl des Hardwareschlüssel-Slots - - Hardware Key: - Hardwareschlüssel: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Sie können einen Hardware-Sicherheitsschlüssel wie z. B. einen <strong>YubiKey</strong> oder <strong>OnlyKey</strong> mit für HMAC-SHA1 konfigurierten Steckplätzen verwenden.</p> -<p>Klicken Sie für weitere Informationen...</p> - - - Hardware key help - Hilfe zu Hardwareschlüsseln - Key file to unlock the database Schlüsseldatei zum Entsperren der Datenbank @@ -1468,14 +1568,6 @@ Sicherungskopie der Datenbank ist in %2 Browse… Durchsuchen… - - Refresh hardware tokens - Hardware-Token aktualisieren - - - Refresh - Neu laden - Unlock Database Datenbank entsperren @@ -1529,23 +1621,15 @@ Wir empfehlen Ihnen, Ihre KeePassXC-Installation zu aktualisieren. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Das Entsperren der Datenbank ist fehlgeschlagen, und Sie haben kein Passwort eingegeben. -Möchten Sie es stattdessen mit einem "leeren" Passwort versuchen? + Das Entsperren der Datenbank ist fehlgeschlagen und Sie haben kein Passwort eingegeben. +Möchten Sie es stattdessen mit einem „leeren“ Passwort versuchen? -Um zu verhindern, dass dieser Fehler auftritt, müssen Sie zu "Datenbankeinstellungen -> Sicherheit" gehen und Ihr Passwort zurücksetzen. +Um diesen Fehler zu vermeiden, müssen Sie zu „Datenbankeinstellungen → Sicherheit“ gehen und Ihr Passwort zurücksetzen. Retry with empty password Mit leerem Passwort wiederholen - - Failed to authenticate with Windows Hello - Authentifizierung mit Windows Hello fehlgeschlagen - - - Failed to authenticate with Touch ID - Authentifizierung mit Touch ID fehlgeschlagen - Failed to open key file: %1 Fehler beim Öffnen der Schlüsseldatei: %1 @@ -1556,7 +1640,7 @@ Um zu verhindern, dass dieser Fehler auftritt, müssen Sie zu "Datenbankein You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Sie verwenden ein altes Schlüsseldateiformat, das KeePassXC in Zukunft möglicherweise<br> nicht mehr unterstützen wird.<br><br>Bitte überlegen Sie, eine neue Schlüsseldatei zu erzeugen, indem Sie zu:<br><strong>Datenbank &gt; Datenbank-Sicherheit &gt; Schlüsseldatei ändern gehen.</strong><br> + Sie verwenden ein altes Schlüsseldateiformat, das KeePassXC in Zukunft<br>möglicherweise nicht mehr unterstützen wird.<br><br>Bitte überlegen Sie, eine neue Schlüsseldatei zu erzeugen, indem Sie zu<br><strong>Datenbank &gt; Datenbanksicherheit &gt; Schlüsseldatei ändern</strong><br> gehen. Don't show this warning again @@ -1579,22 +1663,68 @@ Um zu verhindern, dass dieser Fehler auftritt, müssen Sie zu "Datenbankein Datenbankdatei kann nicht als Schlüsseldatei verwendet werden - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Sie können nicht Ihre Datenbank als Schlüsseldatei verwenden. -Wenn Sie keine Schlüsseldatei haben, lassen Sie das Feld bitte leer. + authenticate to access the database + zum Zugriff auf die Datenbank authentifizieren - Detecting hardware keys… - Hardwareschlüssel werden erkannt… + Failed to authenticate with Quick Unlock: %1 + Authentifizierung mit Quick Unlock fehlgeschlagen: %1 - No hardware keys detected - Keine Hardwareschlüssel erkannt + Select Key File: + Schlüsseldatei auswählen: - Select hardware key… - Hardwareschlüssel auswählen… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Zusätzlich zu einem Passwort können Sie eine geheime Datei verwenden, um die Sicherheit Ihrer Datenbank zu erhöhen. Diese Datei kann in den Sicherheitseinstellungen Ihrer Datenbank erzeugt werden.</p><p>Dies ist <strong>nicht</strong> Ihre *.kdbx-Datenbankdatei!</p> + + + Use hardware key [Serial: %1] + Hardwareschlüssel verwenden [Seriennummer: %1] + + + Use hardware key + Hardwareschlüssel verwenden + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Ihre Datenbankdatei ist KEINE Schlüsseldatei! +Wenn Sie keine Schlüsseldatei haben oder nicht wissen, was das ist, müssen Sie keine auswählen. + + + KeePassXC database file selected + KeePassXC-Datenbankdatei ausgewählt + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Die von Ihnen ausgewählte Datei sieht aus wie eine Datenbankdatei. +Eine Datenbankdatei ist KEINE Schlüsseldatei! + +Sind Sie sicher, dass Sie mit dieser Datei fortfahren wollen? + + + No hardware keys found. + Keine Hardwareschlüssel gefunden. + + + Refresh Hardware Keys + Hardwareschlüssel aktualisieren + + + Click to add a key file. + Durch Anklicken können Sie eine Schlüsseldatei hinzufügen. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Ich habe eine Schlüsseldatei</a> + + + Hardware keys found, but no slots are configured. + Hardwareschlüssel gefunden, es sind aber keine Slots konfiguriert. @@ -1606,10 +1736,6 @@ Wenn Sie keine Schlüsseldatei haben, lassen Sie das Feld bitte leer. DatabaseSettingsDialog - - Advanced Settings - Fortgeschrittene Einstellungen - General Allgemein @@ -1634,6 +1760,22 @@ Wenn Sie keine Schlüsseldatei haben, lassen Sie das Feld bitte leer.Maintenance Wartung + + KeeShare + KeeShare + + + Secret Service Integration + Secret-Service-Integration + + + Remote Sync + Fernsynchronisierung + + + Database Settings: %1 + Datenbankeinstellungen: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ Wenn Sie keine Schlüsseldatei haben, lassen Sie das Feld bitte leer.KeePassXC-Browser settings KeePassXC-Browser-Einstellungen - - Convert KeePassHTTP data - KeePassHTTP-Daten konvertieren - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Veraltete KeePassHTTP-Eigenschaften in KeePassXC-Browser-kompatible Plugin-Daten konvertieren - - - Refresh database root group ID - ID der Datenbank-Root-Gruppe erneuern - Disconnect all browsers Alle Browserverbindungen entfernen @@ -1661,13 +1791,17 @@ Wenn Sie keine Schlüsseldatei haben, lassen Sie das Feld bitte leer.Forget all site-specific settings on entries Alle auf Internetseiten bezogenen Einstellungen löschen + + Refresh database root group ID + ID der Datenbank-Root-Gruppe erneuern + Stored keys Gespeicherte Schlüssel Stored browser keys - Gespeicherte Browser-Schlüssel + Gespeicherte Browserschlüssel Remove selected key @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. Möchten Sie wirklich alle Browserverbindungen entfernen? Das wird die Verbindung zum Browser-Plugin verhindern. - - KeePassXC: No keys found - KeePassXC: Keine Schlüssel gefunden - No shared encryption keys found in KeePassXC settings. Keine geteilten Schlüssel in den KeePassXC-Einstellungen gefunden. - - KeePassXC: Removed keys from database - KeePassXC: Schlüssel aus der Datenbank entfernt - Successfully removed %n encryption key(s) from KeePassXC settings. %n Schlüssel erfolgreich aus KeePassXC-Einstellungen entfernt.%n Schlüssel erfolgreich aus KeePassXC-Einstellungen entfernt. @@ -1739,32 +1865,14 @@ Zugriffserlaubnisse zu allen Einträgen werden gelöscht. Abort Abbrechen - - KeePassXC: Removed permissions - KeePassXC: Zugangsdaten entfernt - Successfully removed permissions from %n entry(s). Zugriffsberechtigungen für %n Eintrag/Einträge erfolgreich gelöscht.Berechtigungen aus %n Einträgen erfolgreich entfernt. - - KeePassXC: No entry with permissions found! - KeePassXC: Kein Eintrag mit Zugangsdaten gefunden! - The active database does not contain an entry with permissions. Die aktive Datenbank enthält keinen Eintrag mit Zugangsdaten. - - Move KeePassHTTP attributes to custom data - KeePassHTTP-Eigenschaften in die Plugin-Daten verschieben - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Wollen Sie wirklich alle alten Daten der Browser-Integration auf den neuesten Standard umstellen? -Das ist notwendig, um die Kompatibilität mit dem Browser-Plugin zu erhalten. - Refresh database ID Datenbank-ID erneuern @@ -1775,12 +1883,32 @@ This is only necessary if your database is a copy of another and the browser ext Wollen Sie wirklich die Datenbank-ID erneuern? Dies ist nur nötig, wenn Ihre Datenbank eine Kopie einer anderen ist und die Browser-Erweiterung sich nicht verbinden kann. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Veraltete KeePassHTTP-Eigenschaften in KeePassXC-Browser-kompatible Plugin-Daten konvertieren + + + No keys found + Keine Schlüssel gefunden + + + Removed keys from database + Schlüssel aus der Datenbank entfernt + + + Removed permissions + Berechtigungen entfernt + + + No entry with permissions found! + Kein Eintrag mit Berechtigungen gefunden! + DatabaseSettingsWidgetDatabaseKey Add additional protection… - Zusätzlichen Schutz hinzufügen ... + Zusätzlichen Schutz hinzufügen… No password set @@ -1790,7 +1918,7 @@ Dies ist nur nötig, wenn Ihre Datenbank eine Kopie einer anderen ist und die Br 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? - WARNUNG! Sie haben kein Passwort festgelegt. Es wird streng davon abgeraten, eine Datenbank ohne Passwort zu benutzen! + WARNUNG! Sie haben kein Passwort festgelegt. Es wird dringend davon abgeraten, eine Datenbank ohne Passwort zu benutzen! Wollen Sie wirklich ohne Passwort fortfahren? @@ -1814,6 +1942,18 @@ Wollen Sie wirklich ohne Passwort fortfahren? Failed to change database credentials Fehler beim Ändern der Datenbank-Anmeldedaten + + Weak password + Schwaches Passwort + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Dies ist ein schwaches Passwort! Um Ihre Geheimnisse besser zu schützen, sollten Sie ein stärkeres Passwort wählen. + + + The provided password does not meet the minimum quality requirement. + Das übermittelte Passwort entspricht nicht den Mindestanforderungen. + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Wollen Sie wirklich ohne Passwort fortfahren? Decryption Time: Zeit zum Entschlüsseln: - - Change existing decryption time - Vorhandene Entschlüsselungszeit ändern - - - Change - Ändern - Decryption time in seconds Entschlüsselungszeit in Sekunden @@ -1891,7 +2023,7 @@ Wollen Sie wirklich ohne Passwort fortfahren? Memory usage - Speicherbelegung + Speicherverbrauch Parallelism: @@ -1909,11 +2041,6 @@ Wollen Sie wirklich ohne Passwort fortfahren? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - unverändert - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ Wenn Sie diese Zahl beibehalten, ist Ihre Datenbank nicht vor Brute-Force-Angrif Threads for parallel execution (KDF settings) Thread(s)Thread(s) + + Encryption Settings: + Verschlüsselungseinstellungen: + + + Basic + Allgemein + + + Advanced + Fortgeschritten + DatabaseSettingsWidgetFdoSecrets @@ -2014,7 +2153,7 @@ Wenn Sie diese Zahl beibehalten, ist Ihre Datenbank nicht vor Brute-Force-Angrif Default username field - Standard-Benutzernamen-Feld + Standard-Benutzernamensfeld History Settings @@ -2022,20 +2161,12 @@ Wenn Sie diese Zahl beibehalten, ist Ihre Datenbank nicht vor Brute-Force-Angrif Maximum number of history items per entry - Maximale Anzahl von Verlaufs-Elementen pro Eintrag - - - Max. history items: - Max. Einträge im Verlauf: + Maximale Anzahl von Verlaufselementen pro Eintrag Maximum size of history per entry Maximale Größe des Verlaufs pro Eintrag - - Max. history size: - Max. Verlaufsgröße: - MiB MiB @@ -2064,7 +2195,109 @@ Das kann nicht rückgängig gemacht werden. (old) - (alt) + (alt) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Wenn Sie diese Einstellung speichern oder einen Eintrag bearbeiten, +werden die ältesten Elemente der Historie eines Eintrags +entfernt, sodass nur die angegebene Anzahl +von Einträgen übrig bleibt. + + + Limit the amount of history items per entry to: + Anzahl der Verlaufselemente pro Eintrag begrenzen auf: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Wenn Sie diese Einstellung speichern oder einen Eintrag bearbeiten, +werden die ältesten Elemente des Verlaufs eines Eintrags +entfernt, sodass die verbleibenden Verlaufselemente +maximal der angegebenen Anzahl entspricht. + + + Limit the total size of history items per entry to: + Gesamtgröße der Verlaufselemente pro Eintrag begrenzen auf: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Verschieben Sie Einträge in den Papierkorb +anstatt sie aus der Datenbank zu löschen. +Aus dem Papierkorb gelöschte Einträge werden +aus der Datenbank entfernt. + + + Autosave delay since last change + Verzögerung beim automatischen Speichern seit der letzten Änderung + + + Autosave delay + Verzögerung beim automatischen Speichern + + + Autosave delay since last change in minutes + Verzögerung beim automatischen Speichern seit der letzten Änderung in Minuten + + + min + min + + + Autosave delay since last change checkbox + Verzögerung beim automatischen Speichern seit der letzten Änderung (Checkbox) + + + Public Database Metadata + Öffentliche Datenbank-Metadaten + + + Warning: the following settings are not encrypted. + Warnung: Die folgenden Einstellungen sind nicht verschlüsselt. + + + Display name: + Anzeigename: + + + Publically visible display name used on the unlock dialog + Öffentlich sichtbarer Anzeigename, der im Entsperrdialog verwendet wird + + + Database public display name + Öffentlicher Anzeigename der Datenbank + + + Display color: + Anzeigefarbe: + + + Publically visible color used on the unlock dialog + Öffentlich sichtbare Farbe, die im Entsperrdialog verwendet wird + + + Database public display color chooser + Öffentliche Anzeigefarbwahl der Datenbank + + + Clear + Löschen + + + Display icon: + Anzeigesymbol: + + + Select Database Icon + Datenbanksymbol auswählen @@ -2103,19 +2336,19 @@ Das kann nicht rückgängig gemacht werden. DatabaseSettingsWidgetMaintenance Manage Custom Icons - Benutzerdefinierte Icons verwalten + Benutzerdefinierte Symbole verwalten Delete selected icon(s) - Ausgewählte Icons löschen + Ausgewählte Symbole löschen Delete all custom icons not in use by any entry or group - Alle benutzerdefinierten Icons löschen, die nirgendwo verwendet werden + Alle benutzerdefinierten Symbole löschen, die nicht von einem Eintrag oder einer Gruppe verwendet werden Purge unused icons - Unbenutzte Icons löschen + Unbenutzte Symbole löschen Confirm Deletion @@ -2123,23 +2356,23 @@ Das kann nicht rückgängig gemacht werden. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - Mindestens eines der ausgewählten Icons wird derzeit von mindestens einem Eintrag oder einer Gruppe verwendet. Die Icons aller betroffenen Einträge und Gruppen werden durch das Standard-Icon ersetzt. Sind Sie sicher, dass Sie Icons löschen möchten, die noch in Verwendung sind? + Mindestens eines der ausgewählten Symbole wird derzeit von mindestens einem Eintrag oder einer Gruppe verwendet. Die Symbole aller betroffenen Einträge und Gruppen werden durch das Standardsymbol ersetzt. Sind Sie sicher, dass Sie die derzeit verwendeten Symbole löschen möchten? Custom Icons Are In Use - Benutzerdefinierte Icons sind in Verwendung + Benutzerdefinierte Symbole sind in Verwendung All custom icons are in use by at least one entry or group. - Alle benutzerdefinierten Icons werden von mindestens einem Eintrag oder einer Gruppe verwendet. + Alle benutzerdefinierten Symbole werden von mindestens einem Eintrag oder einer Gruppe verwendet. Purged Unused Icons - Unbenutzte Icons löschen + Unbenutzte Symbole löschen Purged %n icon(s) from the database. - Es wurde %n Symbol aus der Datenbank gelöscht.%n Icon(s) gelöscht. + Es wurde %n Symbol aus der Datenbank gelöscht.Es wurden %n Symbole aus der Datenbank gelöscht. @@ -2161,6 +2394,141 @@ Das kann nicht rückgängig gemacht werden. Beschreibungsfeld der Datenbank + + DatabaseSettingsWidgetRemote + + Sync Commands + Synchronisierungsbefehle + + + Remove + Entfernen + + + Command Settings + Befehlseinstellungen + + + Name + Name + + + Save + Speichern + + + Download + Herunterladen + + + Command: + Befehl: + + + Download command field + Feld für den Download-Befehl + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + z. B.: „sftp user@hostname“ or „scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}“ + + + Input: + Eingabe: + + + Download input field + Eingabefeld für den Download + + + Upload + Hochladen + + + Upload command field + Feld für den Upload-Befehl + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + z. B.: „sftp user@hostname“ oder „scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx“ + + + Upload input field + Eingabefeld für den Upload + + + Name cannot be empty. + Der Name darf nicht leer sein. + + + Test + Test + + + Download command cannot be empty. + Der Download-Befehl darf nicht leer sein. + + + Download failed with error: %1 + Herunterladen fehlgeschlagen mit Fehler: %1 + + + Download finished, but file %1 could not be found. + Herunterladen beendet, aber Datei %1 konnte nicht gefunden werden. + + + Download successful. + Herunterladen erfolgreich. + + + Save Remote Settings + Ferneinstellungen speichern + + + You have unsaved changes. Do you want to save them? + Sie haben ungespeicherte Änderungen. Möchten Sie sie speichern? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + z. B.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} wird als Platzhalter verwendet, um die Datenbank an einem temporären Ort zu speichern +Der Befehl muss beendet werden. Im Falle von `sftp` muss als letzter Befehl `exit` gesendet werden + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + z. B.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} wird als Platzhalter verwendet, um die Datenbank an einem temporären Ort zu speichern +Der Befehl muss beendet werden. Im Falle von `sftp` muss als letzter Befehl `exit` gesendet werden + + + + Timeout: + Timeout: + + + seconds + Sekunden + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ Das ist definitiv ein Programmfehler, bitte benachrichtigen Sie die Entwickler.< CSV file CSV-Datei - - Select CSV file - CSV-Datei auswählen - Merge database Datenbank zusammenführen - - KeePass 1 database - KeePass 1-Datenbank - - - Open KeePass 1 database - KeePass 1-Datenbank öffnen - - - Open OPVault - OPVault öffnen - Export database to CSV file Datenbank als CSV-Datei exportieren @@ -2225,6 +2577,18 @@ Das ist definitiv ein Programmfehler, bitte benachrichtigen Sie die Entwickler.< Writing the HTML file failed. Fehler beim Schreiben der HTML-Datei. + + Export database to XML file + Datenbank als XML-Datei exportieren + + + XML file + XML-Datei + + + Writing the XML file failed + Fehler beim Schreiben der XML-Datei. + Export Confirmation Export bestätigen @@ -2233,34 +2597,30 @@ Das ist definitiv ein Programmfehler, bitte benachrichtigen Sie die Entwickler.< You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Ihre Datenbank wird in eine unverschlüsselte Datei exportiert. Dadurch werden Ihre Passwörter und anderen Daten anfällig! Wollen Sie wirklich fortfahren? - - New Database - Neue Datenbank - - - %1 [New Database] - Database tab name modifier - %1 [Neue Datenbank] - %1 [Locked] Database tab name modifier %1 [Gesperrt] + + %1 [Temporary] + Database tab name modifier + %1 [Temporär] + DatabaseWidget - Database Tags - Datenbank-Tags + Searches and Tags + Suchen und Tags Searching… - Suche … + Suche… Shared group… - Gemeinsam genutzte Gruppe ... + Gemeinsam genutzte Gruppe… Confirm Auto-Type @@ -2302,6 +2662,10 @@ Das ist definitiv ein Programmfehler, bitte benachrichtigen Sie die Entwickler.< Expired entries Abgelaufene Einträge + + Entries expiring within %1 day(s) + Einträge, die innerhalb von %1 Tag ablaufenEinträge, die innerhalb von %1 Tagen ablaufen + No current database. Keine aktuelle Datenbank. @@ -2326,6 +2690,18 @@ Das ist definitiv ein Programmfehler, bitte benachrichtigen Sie die Entwickler.< No Results Keine Ergebnisse + + Save + Speichern + + + Enter a unique name or overwrite an existing search from the list: + Geben Sie einen eindeutigen Namen ein oder überschreiben Sie eine bestehende Suche aus der Liste: + + + Save Search + Suche speichern + Lock Database? Datenbank sperren? @@ -2355,26 +2731,6 @@ Save changes? File has changed Datei hat sich geändert - - The database file has changed. Do you want to load the changes? - Die Datenbank wurde verändert. Änderungen laden? - - - Merge Request - Anfrage zum Zusammenführen - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Die Datenbank wurde verändert, und Sie haben nicht gespeicherte Änderungen. -Möchten Sie Ihre Änderungen zusammenführen? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Datenbank konnte während der automatischen Aktualisierung nicht geöffnet werden. -Fehler: %1 - Disable safe saves? Sicheres Speichern deaktivieren? @@ -2403,7 +2759,7 @@ Sicheres Speichern deaktivieren und erneut versuchen? Save database backup - Datenbank-Backup speichern + Sicherungskopie der Datenbank speichern Empty recycle bin? @@ -2415,11 +2771,96 @@ Sicheres Speichern deaktivieren und erneut versuchen? Could not find database file: %1 - Datenbank-Datei konnte nicht gefunden werden: %1 + Datenbankdatei konnte nicht gefunden werden: %1 - - Entries expiring within %1 day(s) - Einträge, die innerhalb von %1 Tag ablaufenEinträge, die innerhalb von %1 Tagen ablaufen + + New Database + Neue Datenbank + + + %1 [New Database] + Database tab name modifier + %1 [Neue Datenbank] + + + Remote Sync did not contain any download or upload commands. + Fernsynchronisierung enthielt keine Download- oder Upload-Befehle. + + + Remote sync '%1' completed successfully! + Fernsynchronisierung '%1' erfolgreich abgeschlossen! + + + Remote sync '%1' failed: %2 + Fernsynchronisierung '%1' fehlgeschlagen: %2 + + + Error while saving database %1: %2 + Fehler beim Speichern der Datenbank %1: %2 + + + Downloading... + Herunterladen… + + + Uploading... + Hochladen… + + + Syncing... + Synchronisieren… + + + Remove passkey from entry + Passkey aus Eintrag entfernen + + + Do you want to remove the passkey from this entry? + Möchten Sie den Passkey aus diesem Eintrag entfernen? + + + The database file "%1" was modified externally + Die Datenbankdatei „%1“ wurde extern geändert + + + Do you want to load the changes? + Möchten Sie die Änderungen laden? + + + Reload database + Datenbank neu laden + + + Reloading database… + Datenbank wird neu geladen… + + + Reload canceled + Neuladen abgebrochen + + + Reload successful + Neuladen erfolgreich abgeschlossen + + + Reload pending user action… + Anstehende Benutzeraktion neu laden… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Die Datenbankdatei „%1“ wurde extern geändert.<br>Wie möchten Sie vorgehen?<br><br>Alle Änderungen zusammenführen<br>Änderungen auf der Festplatte bis zum Speichern ignorieren<br>Nicht gespeicherte Änderungen verwerfen + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Die Datenbankdatei „%1“ wurde extern geändert.<br>Wie möchten Sie vorgehen?<br><br>Alle Änderungen zusammenführen und dann speichern<br>Änderungen auf der Festplatte überschreiben<br>Nicht gespeicherte Änderungen verwerfen + + + Database file overwritten. + Datenbankdatei überschrieben. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Die Datenbankdatei auf der Festplatte kann mit den aktuellen Anmeldedaten nicht entsperrt werden. Geben Sie neue Zugangsdaten ein und/oder benutzen Sie den Hardwareschlüssel, um fortzufahren. @@ -2472,10 +2913,6 @@ Sicheres Speichern deaktivieren und erneut versuchen? n/a - - - (encrypted) - (verschlüsselt) - Select private key Privaten Schlüssel auswählen @@ -2494,7 +2931,7 @@ Sicheres Speichern deaktivieren und erneut versuchen? Some Browser Integration settings are overridden by group settings. - Manche Browser-Integrations-Einstellungen werden von den Gruppen-Einstellungen überschrieben. + Einige Einstellungen der Browser-Integration werden von den Gruppeneinstellungen überschrieben. Invalid Entry @@ -2522,7 +2959,7 @@ Korrigieren? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - Bei der Validierung der Auto-Type-Sequenz für "%1" ist ein Fehler aufgetreten: + Bei der Validierung der Auto-Type-Sequenz für „%1“ ist ein Fehler aufgetreten: %2 Korrigieren? @@ -2562,6 +2999,10 @@ Korrigieren? Hide Verstecken + + %n hour(s) + %n Stunde%n Stunden + %n week(s) %n Woche%n Woche(n) @@ -2574,9 +3015,9 @@ Korrigieren? %n year(s) %n Jahre%n Jahr(e) - - %n hour(s) - %n Stunde%n Stunden + + Failed to decrypt SSH key, ensure password is correct. + Entschlüsselung des SSH-Schlüssels fehlgeschlagen. Stellen Sie sicher, dass das Passwort korrekt ist. @@ -2643,7 +3084,7 @@ Korrigieren? Exclude from database reports - Von Datenbank-Berichten ausschließen + Von Datenbankberichten ausschließen Foreground Color: @@ -2690,15 +3131,25 @@ Korrigieren? Existing window associations - Bestehende Fenster-Zuordnungen + Bestehende Fensterzuordnungen Add new window association - Neue Fenster-Zuordnung hinzufügen + Neue Fensterzuordnung hinzufügen + + + + + Add item + + Remove selected window association - Ausgewählte Fenster-Zuordnung entfernen + Ausgewählte Fensterzuordnung entfernen + + + - + Remove item + - Window title: @@ -2710,7 +3161,7 @@ Korrigieren? Set the window association title - Titel der Fenster-Zuordnung festlegen + Titel der Fensterzuordnung festlegen You can use an asterisk to match everything @@ -2724,23 +3175,9 @@ Korrigieren? Custom Auto-Type sequence for this window Benutzerdefinierte Auto-Type-Sequenz für dieses Fenster - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Diese Einstellungen beeinflussen das Verhalten des Eintrags mit der Browser-Erweiterung. - General Allgemein @@ -2753,25 +3190,13 @@ Korrigieren? Skip Auto-Submit for this entry Auto-Submit für diesen Eintrag überspringen - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Diese Einstellung nur zum Browser für HTTP-Auth-Dialoge senden. Wenn aktiv, werden normale Login-Formulare diesen Eintrag nicht zur Auswahl anbieten. - Use this entry only with HTTP Basic Auth - Diesen Eintrag nur mit "HTTP Basic Auth" verwenden - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Diese Einstellung nicht an den Browser für HTTP-Auth-Dialoge senden. Wenn aktiviert, wird dieser Eintrag in HTTP-Auth-Dialogen nicht zur Auswahl angezeigt. + Diesen Eintrag nur mit HTTP-Basisauthentifizierung verwenden Do not use this entry with HTTP Basic Auth - Diesen Eintrag nicht mit HTTP-Basic-Auth verwenden - - - Additional URL's - Zusätzliche URLs + Diesen Eintrag nicht mit HTTP-Basisauthentifizierung verwenden Add @@ -2785,16 +3210,32 @@ Korrigieren? Edit Bearbeiten + + These settings affect the entry's behaviour with the browser extension. + Diese Einstellungen beeinflussen das Verhalten des Eintrags mit der Browser-Erweiterung. + + + Additional URLs + Zusätzliche URLs + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Sendet diesen Eintrag nur bei HTTP-Auth-Dialogen an den Browser. Wenn aktiviert, wird dieser Eintrag in normalen Anmeldeformularen nicht zur Auswahl angezeigt. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Diesen Eintrag nicht an den Browser für HTTP-Auth-Dialoge senden. Wenn aktiviert, zeigen HTTP-Auth-Dialoge diesen Eintrag nicht zur Auswahl an. + EditEntryWidgetHistory Entry history selection - Auswahl des Eintrags-Verlaufs + Auswahl des Eintragsverlaufs Show entry at selected history state - Eintrag zum ausgewählten Verlaufszustand anzeigen + Eintrag im ausgewählten Verlaufsstatus anzeigen Show @@ -2802,7 +3243,7 @@ Korrigieren? Restore entry to selected history state - Eintrag aus ausgewähltem Verlaufszustand wiederherstellen + Eintrag auf ausgewählten Verlaufsstatus zurücksetzen Restore @@ -2810,7 +3251,7 @@ Korrigieren? Delete selected history state - Ausgewählten Verlaufszustand löschen + Ausgewählten Verlaufsstatus löschen Delete @@ -2833,23 +3274,11 @@ Korrigieren? Notes field - Notizen-Feld - - - Toggle the checkbox to reveal the notes section. - Setzen Sie das Häkchen, um die Notizen anzuzeigen. + Notizfeld Username field - Benutzernamen-Feld - - - Toggle notes visible - Sichtbarkeit der Notizen umschalten - - - Notes: - Notizen: + Benutzernamensfeld Expiration field @@ -2867,14 +3296,6 @@ Korrigieren? Presets Vorgaben - - Password: - Passwort: - - - URL: - URL: - Url field URL-Feld @@ -2883,38 +3304,54 @@ Korrigieren? Download favicon for URL Favicon für URL herunterladen - - Title: - Titel: - Title field Titelfeld - - Username: - Benutzername: - Password field - Passwort-Feld + Passwortfeld Toggle expiration Ablaufdatum umschalten - - Expires: - Läuft ab: - - - Tags: - Tags: - Tags list Tag-Liste + + &Username: + &Benutzername: + + + &Title: + &Titel: + + + &Password: + &Passwort: + + + UR&L: + UR&L: + + + &Notes: + &Notizen: + + + Toggle notes visibility + Sichtbarkeit der Notizen umschalten + + + T&ags: + T&ags: + + + &Expires: + &Läuft ab: + EditEntryWidgetSSHAgent @@ -2954,19 +3391,6 @@ Korrigieren? Private key Privater Schlüssel - - External file - Externe Datei - - - Browser for key file - Browser für die Schlüsseldatei - - - Browse… - Button for opening file dialog - Durchsuchen ... - Attachment Anhang @@ -2983,6 +3407,23 @@ Korrigieren? Remove from agent Vom Agenten entfernen + + External file + Externe Datei + + + Browser for key file + Browser für die Schlüsseldatei + + + Browse… + Button for opening file dialog + Durchsuchen… + + + Generate + Erzeugen + Select attachment file Anhang auswählen @@ -3007,6 +3448,10 @@ Korrigieren? seconds Sekunden + + Clear agent + Agent löschen + EditGroupWidget @@ -3018,10 +3463,6 @@ Korrigieren? Icon Symbol - - Browser Integration - Browser-Integration - Properties Eigenschaften @@ -3038,6 +3479,10 @@ Korrigieren? Group has unsaved changes Gruppe enthält ungespeicherte Änderungen + + Browser Integration + Browser-Integration + Enable Aktivieren @@ -3053,21 +3498,17 @@ Korrigieren? EditGroupWidgetBrowser - - Edit Group - Gruppe bearbeiten - These settings affect to the group's behaviour with the browser extension. Diese Einstellungen beeinflussen das Verhalten der Gruppe in der Browser-Erweiterung. Hide entries from browser extension: - Einträge aus Browser-Erweiterung ausblenden: + Einträge der Browser-Erweiterung verstecken: Hide entries from browser extension toggle for this and sub groups - Einträge vor dem Browser-Erweiterungs-Schalter für diese und Untergruppen verstecken + Einträge der Browser-Erweiterung für diese und Untergruppen umschalten Skip Auto-Submit for entries: @@ -3075,11 +3516,11 @@ Korrigieren? Skip Auto-Submit toggle for this and sub groups - Auto-Submit-Schalter für diese und Untergruppen überspringen + Auto-Submit für diese Gruppe und Untergruppen überspringen Use entries only with HTTP Basic Auth: - Diese Einträge nur mit "HTTP Basic Auth" verwenden: + Diese Einträge nur mit HTTP-Basisauthentifizierung verwenden: Only HTTP Auth toggle for this and sub groups @@ -3087,22 +3528,38 @@ Korrigieren? Do not use entries with HTTP Basic Auth: - Diese Einträge nicht mit HTTP-Basic-Auth verwenden: + Diese Einträge nicht mit HTTP-Basisauthentifizierung verwenden: Do not use HTTP Auth toggle for this and sub groups - Den HTTP-Authentifizierungs-Schalter nicht für diese und Untergruppen verwenden + HTTP-Authentifizierungs-Schalter nicht für diese und Untergruppen verwenden + + + Omit WWW subdomain from matching: + WWW-Subdomain beim Abgleich weglassen: + + + Omit WWW subdomain from matching toggle for this and sub groups + WWW-Subdomain aus dem entsprechenden Abgleich für diese und die Untergruppen weglassen + + + Restrict matching to given browser key: + Einschränkung des Abgleichs auf den angegebenen Browserschlüssel: + + + Restrict matching to given browser key toggle for this and sub groups + Einschränkung des Abgleichs auf bestimmte Browserschlüssel-Schalter für diese und Untergruppen EditGroupWidgetKeeShare Sharing mode field - Freigabemodus-Feld + Feld für Freigabemodus Password field - Passwort-Feld + Passwortfeld Type: @@ -3118,15 +3575,15 @@ Korrigieren? Path to share file field - Feld für Pfad der Freigabe-Datei + Feld für Pfad der Freigabedatei Browse for share file - Nach Freigabe-Datei durchsuchen + Nach Freigabedatei durchsuchen Browse… - Durchsuchen ... + Durchsuchen… Clear fields @@ -3173,7 +3630,7 @@ Unterstützte Erweiterungen sind: %1. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare is derzeit deaktiviert. Sie können den Import/Export in den Anwendungseinstellungen aktivieren. + KeeShare ist derzeit deaktiviert. Sie können den Import/Export in den Anwendungseinstellungen aktivieren. Database export is currently disabled by application settings. @@ -3224,7 +3681,7 @@ Unterstützte Erweiterungen sind: %1. Expiration field - Ablaufdatums-Feld + Feld für Ablaufdatum Use default Auto-Type sequence of parent group @@ -3248,11 +3705,11 @@ Unterstützte Erweiterungen sind: %1. Default auto-type sequence field - Standard-Auto-Type-Sequenz-Feld + Feld für Standard-Auto-Type-Sequenz Notes field - Notizen-Feld + Notizfeld Name: @@ -3279,7 +3736,7 @@ Unterstützte Erweiterungen sind: %1. Choose icon… - Icon auswählen… + Symbol auswählen… Set the URL to use to search for a favicon @@ -3303,7 +3760,7 @@ Unterstützte Erweiterungen sind: %1. Apply icon to… - Icon verwenden für ... + Symbol verwenden für… Apply to this group only @@ -3325,10 +3782,6 @@ Unterstützte Erweiterungen sind: %1. Unable to fetch favicon. Kann Favicon nicht herunterladen. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Sie können den DuckDuckGo-Webseitensymbol-Dienst unter Werkzeuge -> Einstellungen -> Sicherheit aktivieren - Existing icon selected. Bestehendes Symbol ausgewählt. @@ -3361,6 +3814,10 @@ Unterstützte Erweiterungen sind: %1. The following icon(s) failed: Das Laden der folgenden Symbole ist fehlgeschlagen:Das Laden der folgenden Symbole ist fehlgeschlagen: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Sie können den DuckDuckGo-Webseitensymbol-Dienst unter „Anwendungseinstellungen → Sicherheit“ aktivieren + EditWidgetProperties @@ -3370,7 +3827,7 @@ Unterstützte Erweiterungen sind: %1. Datetime created - Erstellungs-Zeitpunkt + Erstellungszeitpunkt Modified: @@ -3378,7 +3835,7 @@ Unterstützte Erweiterungen sind: %1. Datetime modified - Änderungs-Zeitpunkt + Änderungszeitpunkt Accessed: @@ -3386,7 +3843,7 @@ Unterstützte Erweiterungen sind: %1. Datetime accessed - Zugriffs-Zeitpunkt + Zugriffszeitpunkt Uuid: @@ -3437,12 +3894,45 @@ Das kann dazu führen, dass die betroffenen Plugins nicht mehr richtig funktioni %1 - Clone %1 - Klon + + Passkey + Passkey + + + Invalid conversion type: %1 + Ungültiger Konvertierungstyp: %1 + + + Invalid conversion syntax: %1 + Ungültige Konvertierungssyntax: %1 + + + Invalid regular expression syntax %1 +%2 + Ungültige Syntax des regulären Ausdrucks %1 +%2 + EntryAttachments Cannot open file "%1" - Kann Datei "%1" nicht öffnen + Datei „%1“ kann nicht geöffnet werden + + + + EntryAttachmentsDialog + + Form + Formular + + + File name + Dateiname + + + File contents... + Dateiinhalt… @@ -3482,14 +3972,6 @@ Das kann dazu führen, dass die betroffenen Plugins nicht mehr richtig funktioni Remove Entfernen - - Rename selected attachment - Ausgewählten Anhang umbenennen - - - Rename - Umbenennen - Open selected attachment Ausgewählten Anhang öffnen @@ -3565,12 +4047,6 @@ Das kann dazu führen, dass die betroffenen Plugins nicht mehr richtig funktioni Confirm Overwrite Attachment Anhang überschreiben? - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Anhang "%1" existiert bereits. -Existierenden Anhang überschreiben? - Confirm Attachment Anhang bestätigen @@ -3605,6 +4081,24 @@ Error: %1 Speichern des aktualisierten Anhangs ist fehlgeschlagen. Fehler: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Anhang „%1“ existiert bereits. +Existierenden Anhang überschreiben? + + + New + Neu + + + Preview + Vorschau + + + Failed to preview an attachment: Attachment not found + Vorschau eines Anhangs konnte nicht angezeigt werden: Anhang nicht gefunden + EntryAttributesModel @@ -3799,6 +4293,14 @@ Fehler: %1 Has TOTP Hat TOTP + + Background Color + Hintergrundfarbe + + + Group Path + Gruppenpfad + EntryPreviewWidget @@ -3819,8 +4321,8 @@ Fehler: %1 Passwort - Notes - Notizen + URL + URL Expiration @@ -3839,8 +4341,8 @@ Fehler: %1 Benutzername - URL - URL + Notes + Notizen Advanced @@ -3890,6 +4392,10 @@ Fehler: %1 Never Nie + + Double click to copy value + Zum Kopieren des Wertes doppelklicken + Enabled Aktiviert @@ -3898,6 +4404,10 @@ Fehler: %1 Disabled Deaktiviert + + Double click to copy to clipboard + Zum Kopieren in die Zwischenablage doppelklicken + EntryURLModel @@ -3905,6 +4415,10 @@ Fehler: %1 Invalid URL Ungültige URL + + Duplicate URL + URL duplizieren + EntryView @@ -3920,6 +4434,10 @@ Fehler: %1 Reset to defaults Auf Voreinstellung zurücksetzen + + + %1 entry(s)... + + %1 Eintrag…+ %1 Einträge… + ExportDialog @@ -3929,7 +4447,7 @@ Fehler: %1 Sort entries by... - Einträge sortieren nach ... + Einträge sortieren nach… You are about to export your database to an unencrypted file. @@ -3956,7 +4474,7 @@ Dadurch sind Ihre Kennwörter und sensiblen Informationen ungeschützt! Export database to HTML file - Datenbank in HTML-Datei exportieren + Datenbank als HTML-Datei exportieren HTML file @@ -4021,7 +4539,7 @@ Dadurch sind Ihre Kennwörter und sensiblen Informationen ungeschützt!FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - Eintrag "%1" aus Datenbank "%2" wurde von %3 verwendet + Eintrag „%1“ aus Datenbank „%2“ wurde von %3 verwendet @@ -4101,7 +4619,7 @@ Dadurch sind Ihre Kennwörter und sensiblen Informationen ungeschützt!Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. Probleme beim Herunterladen der Symbole? -Sie können den DuckDuckGo-Dienst im Abschnitt "Sicherheit" der Anwendungseinstellungen aktivieren. +Sie können den DuckDuckGo-Dienst unter „Anwendungseinstellungen → Sicherheit“ aktivieren. Close @@ -4117,11 +4635,11 @@ Sie können den DuckDuckGo-Dienst im Abschnitt "Sicherheit" der Anwend Please wait, processing entry list… - Bitte warten, Eintragsliste wird verarbeitet ... + Bitte warten Sie, Eintragsliste wird verarbeitet… Downloading… - Herunterladen ... + Herunterladen… Ok @@ -4137,7 +4655,200 @@ Sie können den DuckDuckGo-Dienst im Abschnitt "Sicherheit" der Anwend Downloading favicons (%1/%2)… - Favicons (%1/%2) werden heruntergeladen ... + Favicons (%1/%2) werden heruntergeladen… + + + + ImportWizard + + Import Wizard + Assistent für den Import + + + + ImportWizardPageReview + + WizardPage + Assistent + + + Entry count: %1 + Anzahl der Einträge: %1 + + + Group + Gruppe + + + Title + Titel + + + Username + Benutzername + + + Password + Passwort + + + Url + URL + + + Could not load key file. + Schlüsseldatei konnte nicht geladen werden. + + + Could not open remote database. Password or key file may be incorrect. + Ferndatenbank konnte nicht geöffnet werden. Das Passwort oder die Schlüsseldatei ist möglicherweise falsch. + + + + ImportWizardPageSelect + + Form + Formular + + + Import File Selection + Auswahl der Importdatei + + + Password: + Passwort: + + + Key File: + Schlüsseldatei: + + + Browse… + Durchsuchen… + + + Import Into: + Importieren in: + + + New Database + Neue Datenbank + + + No unlocked databases available + Keine entsperrten Datenbanken verfügbar + + + Existing Database: + Existierende Datenbank: + + + Import File: + Importdatei: + + + Comma Separated Values (.csv) + Kommagetrennte Werte (.csv) + + + 1Password Export (.1pux) + 1Password exportieren (.1pux) + + + 1Password Vault (.opvault) + 1Password-Tresor (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1-Datenbank (.kdb) + + + Open OPVault + OPVault öffnen + + + Select import file + Importdatei auswählen + + + All files + Alle Dateien + + + Key files + Schlüsseldateien + + + Select key file + Schlüsseldatei auswählen + + + Comma Separated Values + Kommagetrennte Werte + + + 1Password Export + 1Password exportieren + + + Bitwarden JSON Export + Bitwarden JSON exportieren + + + 1Password Vault + 1Password-Tresor + + + KeePass1 Database + KeePass 1-Datenbank + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON exportieren + + + Temporary Database + Temporäre Datenbank + + + Command: + Befehl: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + z. B.: „sftp user@hostname“ oder „scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}“ + + + Input: + Eingabe: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + z. B.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} wird als Platzhalter verwendet, um die Datenbank an einem temporären Ort zu speichern +Der Befehl muss beendet werden. Im Falle von `sftp` muss als letzter Befehl `exit` gesendet werden + + + + Remote Database (.kdbx) + Ferndatenbank (.kdbx) @@ -4155,7 +4866,7 @@ Sie können den DuckDuckGo-Dienst im Abschnitt "Sicherheit" der Anwend Kdbx3Reader Missing database headers - Fehlenden Datenbankheader + Fehlende Datenbankheader Unable to calculate database key @@ -4266,11 +4977,11 @@ Falls dies wiederholt passiert, dann könnte Ihre Datenbank beschädigt sein. Invalid inner header field length: field %1 - Ungültige Inner-Headerfeld-Länge: Feld %1 + Ungültige Inner-Headerfeldlänge: Feld %1 Invalid inner header data length: field %1, %2 expected, %3 found - Ungültige Inner-Headerfeld-Länge: Feld %1, %2 gefunden, %3 erwartet + Ungültige Inner-Headerfeldlänge: Feld %1, %2 gefunden, %3 erwartet Invalid inner header binary size @@ -4415,7 +5126,7 @@ 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. Die ausgewählte Datei ist eine alte KeePass 1-Datenbank (.kdb). -Sie können sie importieren, indem Sie auf "Datenbank -> KeePass 1-Datenbank" klicken. +Sie können sie importieren, indem Sie auf „Datenbank → Importieren → KeePass 1-Datenbank“ klicken. Diese Migration ist nur in eine Richtung möglich. Sie werden die importierte Datenbank nicht mit der alten KeePassX 0.4-Version öffnen können. @@ -4555,7 +5266,7 @@ Zeile %2, Spalte %3 KeeAgentSettings Invalid KeeAgent settings file structure. - Ungültige KeeAgent-Einstellungs-Dateistruktur. + Ungültige Struktur der KeeAgent-Einstellungsdatei. Private key is an attachment but no attachments provided. @@ -4574,17 +5285,6 @@ Zeile %2, Spalte %3 Fehler beim Öffnen des privaten Schlüssels - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass1-Datenbank importieren - - - Unable to open the database. - Fehler beim Öffnen der Datenbank. - - KeePass1Reader @@ -4747,7 +5447,7 @@ Falls dies wiederholt passiert, dann könnte Ihre Datenbank beschädigt sein.KeeShare Invalid sharing reference - Ungültige Freigabe-Referenz + Ungültige Freigabereferenz Inactive share %1 @@ -4825,7 +5525,7 @@ Falls dies wiederholt passiert, dann könnte Ihre Datenbank beschädigt sein. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Hinweis: Verwenden Sie NICHT eine Datei, die sich ändern kann, da Sie dann Ihre Datenbank nicht mehr freischalten können. + Hinweis: Verwenden Sie KEINE Datei, die sich ändern kann, da Sie dann Ihre Datenbank nicht mehr freischalten können. Browse for key file @@ -4833,7 +5533,7 @@ Falls dies wiederholt passiert, dann könnte Ihre Datenbank beschädigt sein. Browse… - Durchsuchen... + Durchsuchen… Old key file format @@ -4859,7 +5559,7 @@ Message: %2 Change Key File - Schlüsseldatei bearbeiten + Schlüsseldatei ändern Remove Key File @@ -4867,7 +5567,7 @@ Message: %2 Key File set, click to change or remove - Schlüsseldatei festgelegt, klicken zum Ändern oder Entfernen + Schlüsseldatei festgelegt, zum Ändern oder Entfernen anklicken <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> @@ -4883,7 +5583,7 @@ Message: %2 Create Key File… - Schlüsseldatei erzeugen + Schlüsseldatei erzeugen… Error creating key file @@ -4912,7 +5612,7 @@ Message: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Die gewählte Schlüsseldatei sieht aus wie eine Passwort-Datenbank. Eine Schlüsseldatei darf sich niemals ändern, sonst verlieren Sie für immer den Zugriff auf Ihre Datenbank. + Die gewählte Schlüsseldatei sieht aus wie eine Passwortdatenbank. Eine Schlüsseldatei darf sich niemals ändern, sonst verlieren Sie für immer den Zugriff auf Ihre Datenbank. Wollen Sie wirklich mit dieser Datei fortfahren? @@ -4928,7 +5628,7 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Could not register global shortcut - Globales Tastaturkürzel konnte nicht registriert werden + Globales Tastenkürzel konnte nicht registriert werden @@ -4941,13 +5641,9 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &Recent Databases &Zuletzt verwendete Datenbanken - - &Import - Importieren - &Export - &Export + &Exportieren &Help @@ -4965,6 +5661,10 @@ Wollen Sie wirklich mit dieser Datei fortfahren? TOTP TOTP + + Tags + Tags + &Groups &Gruppen @@ -5009,34 +5709,18 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &New Database… &Neue Datenbank… - - Create a new database - Neue Datenbank erstellen - &Merge From Database… Mit Datenbank &zusammenführen… - - Merge from another KDBX database - Mit einer anderen KDBX-Datenbank zusammenführen - &New Entry… &Neuer Eintrag… - - Add a new entry - Neuen Eintrag hinzufügen - &Edit Entry… Eintrag &bearbeiten… - - View or edit entry - Eintrag anzeigen oder bearbeiten - &Delete Entry… Eintrag &löschen… @@ -5045,10 +5729,6 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &New Group… &Neue Gruppe… - - Add a new group - Neue Gruppe hinzufügen - &Edit Group… Gruppe &bearbeiten… @@ -5075,23 +5755,15 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Database &Security… - Datenbank-&Sicherheit… + Datenbank&sicherheit… Database &Reports… - Datenbank-&Berichte … - - - Statistics, health check, etc. - Statistiken, Gesundheitscheck usw. + Datenbank&berichte… &Database Settings… - &Datenbank-Einstellungen… - - - Database settings - Datenbank-Einstellungen + &Datenbankeinstellungen… &Clone Entry… @@ -5101,34 +5773,18 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Move u&p Nach &oben verschieben - - Move entry one step up - Eintrag einen Schritt nach oben verschieben - Move do&wn Nach &unten verschieben - - Move entry one step down - Eintrag einen Schritt nach unten verschieben - Copy &Username - &Benutzername kopieren - - - Copy username to clipboard - Benutzername in Zwischenablage kopieren + &Benutzernamen kopieren Copy &Password Passwort kopieren - - Copy password to clipboard - Passwort in die Zwischenablage kopieren - &Settings &Einstellungen @@ -5162,25 +5818,13 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &Titel - Copy title to clipboard - Titel in Zwischenablage kopieren - - - &URL - &URL - - - Copy URL to clipboard - URL in Zwischenablage kopieren + Copy &URL + &URL kopieren &Notes &Notizen - - Copy notes to clipboard - Notizen in Zwischenablage kopieren - &CSV File… &CSV-Datei… @@ -5193,26 +5837,14 @@ Wollen Sie wirklich mit dieser Datei fortfahren? KeePass 1 Database… KeePass 1-Datenbank… - - Import a KeePass 1 database - KeePass 1-Datenbank importieren - 1Password Vault… 1Password-Tresor… - - Import a 1Password Vault - 1Password-Tresor importieren - CSV File… CSV-Datei… - - Import a CSV file - CSV-Datei importieren - Show TOTP TOTP anzeigen @@ -5229,6 +5861,10 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Copy &TOTP &TOTP kopieren + + Copy Password and TOTP + Passwort und TOTP kopieren + E&mpty recycle bin Papierkorb l&eeren @@ -5253,10 +5889,6 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &Online Help &Online-Hilfe - - Go to online documentation - Online-Dokumentation aufrufen - &User Guide &Benutzerhandbuch @@ -5267,11 +5899,11 @@ Wollen Sie wirklich mit dieser Datei fortfahren? &Keyboard Shortcuts - &Tastenkombinationen + &Tastenkürzel Save Database Backup… - Datenbank-Backup speichern + Sicherungskopie der Datenbank speichern… Add key to SSH Agent @@ -5283,7 +5915,7 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Compact Mode - Kompakter Modus + Kompaktmodus Automatic @@ -5301,6 +5933,10 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Classic (Platform-native) Klassisch (Plattform-nativ) + + Show Menubar + Menüleiste anzeigen + Show Toolbar Symbolleiste anzeigen @@ -5315,15 +5951,19 @@ Wollen Sie wirklich mit dieser Datei fortfahren? Hide Usernames - Benutzernamen ausblenden + Benutzernamen verstecken Hide Passwords - Passwörter ausblenden + Passwörter verstecken Clone Group... - Gruppe klonen … + Gruppe klonen… + + + &XML File… + &XML-Datei… Clear history @@ -5352,10 +5992,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - WARNUNG: Ihre Qt-Version kann zum Absturz von KeePassXC mit einer Bildschirmtastatur führen. -Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite verfügbar ist. + No Tags + Keine Tags Restore Entry(s) @@ -5385,17 +6023,329 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Quit KeePassXC KeePassXC beenden + + %1 Entry(s) + %1 Eintrag%1 Einträge + Please present or touch your YubiKey to continue… Bitte halten oder berühren Sie Ihren YubiKey, um fortzufahren… Restart Application? - Anwendung neustarten? + Anwendung neu starten? You must restart the application to apply this setting. Would you like to restart now? - Sie müssen die Anwendung neustarten, um diese Einstellung anzuwenden. Möchten Sie jetzt neustarten? + Sie müssen die Anwendung neu starten, um diese Einstellung anzuwenden. Möchten Sie jetzt neu starten? + + + Allow Screen Capture + Bildschirmaufnahmen erlauben + + + 1Password 1PUX... + 1Password 1PUX… + + + Import a 1Password 1PUX file + Importieren einer 1Password 1PUX-Datei + + + Import… + Importieren… + + + Passkeys… + Passkeys… + + + Import Passkey + Passkey importieren + + + Remote S&ync… + Ferns&ynchronisierung… + + + Quit Application + Anwendung beenden + + + Open About Dialog + Über-Dialog öffnen + + + Open Database + Datenbank öffnen + + + Create Database + Datenbank erstellen + + + Merge From Database + Mit Datenbank zusammenführen + + + Create Entry + Eintrag erstellen + + + Edit Entry + Eintrag bearbeiten + + + Delete Entry + Eintrag löschen + + + Create Group + Gruppe erstellen + + + Edit Group + Gruppe bearbeiten + + + Delete Group + Gruppe löschen + + + Download All Favicons + Alle Favicons herunterladen + + + Sort Groups A-Z + Gruppen sortieren A-Z + + + Sort Groups Z-A + Gruppen sortieren Z-A + + + Save Database As + Datenbank speichern als + + + Show Database Security + Datenbanksicherheit anzeigen + + + Show Database Reports + Datenbankberichte anzeigen + + + Show Database Settings + Datenbankeinstellungen anzeigen + + + Show Passkeys + Passkeys anzeigen + + + Clone Entry + Eintrag klonen + + + Move Entry Up + Eintrag nach oben verschieben + + + Move Entry Down + Eintrag nach unten verschieben + + + Copy Username + Benutzernamen kopieren + + + Copy Password + Passwort kopieren + + + Show Application Settings + Anwendungseinstellungen anzeigen + + + Show Password Generator + Passwortgenerator anzeigen + + + Remove Passkey From Entry + Passkey aus Eintrag entfernen + + + Perform Auto-Type: {USERNAME} + Auto-Type ausführen: {BENUTZERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Auto-Type ausführen: {BENUTZERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Auto-Type ausführen: {PASSWORT} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Auto-Type ausführen: {PASSWORT}{ENTER} + + + Perform Auto-Type: {TOTP} + Auto-Type ausführen: {TOTP} + + + Copy Title + Titel kopieren + + + Copy URL + URL kopieren + + + Copy Notes + Notizen kopieren + + + Export to CSV + Als CSV exportieren + + + Export to HTML + Als HTML exportieren + + + Import KeePass1 Database + KeePass1-Datenbank importieren + + + Import 1Password Vault + 1Passwort-Tresor importieren + + + Import CSV File + CSV-Datei importieren + + + Show TOTP QR Code + TOTP-QR-Code anzeigen + + + Set up TOTP + TOTP einrichten + + + Empty Recycle Bin + Papierkorb leeren + + + Open Donation Website + Spenden-Webseite öffnen + + + Open Bug Report + Fehlerbericht erstellen + + + Open Online Documentation + Online-Dokumentation öffnen + + + Open Keyboard Shortcuts Guide + Anleitung für Tastaturkürzel öffnen + + + Save Database Backup + Sicherungskopie der Datenbank speichern + + + SSH Agent: Add Key + SSH-Agent: Schlüssel hinzufügen + + + SSH Agent: Remove Key + SSH-Agent: Schlüssel entfernen + + + Toggle Compact Mode + Kompaktmodus umschalten + + + Set Theme: Automatic + Design festlegen: automatisch + + + Set Theme: Light + Design festlegen: hell + + + Set Theme: Dark + Design festlegen: dunkel + + + Set Theme: Classic + Design festlegen: klassisch + + + Toggle Show Menubar + 'Menüleiste anzeigen' umschalten + + + Toggle Show Toolbar + 'Symbolleiste anzeigen' umschalten + + + Toggle Show Preview Panel + 'Vorschaupanel anzeigen' umschalten + + + Toggle Always on Top + 'Immer im Vordergrund' umschalten + + + Toggle Hide Usernames + 'Benutzernamen verstecken' umschalten + + + Toggle Hide Passwords + 'Passwörter verstecken' umschalten + + + Export to XML + Als XML exportieren + + + Toggle Allow Screen Capture + 'Bildschirmaufnahme zulassen' umschalten + + + Show Group Panel + Gruppenpanel anzeigen + + + Toggle Show Group Panel + 'Gruppenpanel anzeigen' umschalten + + + Setup Remote Sync… + Fernsynchronisierung einrichten… + + + Password Generator + Passwortgenerator + + + E&xpire Entry… + Abge&laufener Eintrag… + + + Clear SSH Agent + SSH-Agent löschen + + + Clear all identities in ssh-agent + Alle Identitäten im SSH-Agent löschen @@ -5406,7 +6356,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Edit database settings - Datenbank-Einstellungen bearbeiten + Datenbankeinstellungen bearbeiten Unlock database @@ -5454,26 +6404,6 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Overwriting %1 [%2] Überschreibe %1 [%2] - - older entry merged from database "%1" - älterer Eintrag aus Datenbank "%1" zusammengeführt - - - Adding backup for older target %1 [%2] - Backup für älteres Ziel %1 wird hinzugefügt [%2] - - - Adding backup for older source %1 [%2] - Backup für ältere Quelle %1 wird hinzugefügt [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Älterer Zieleintrag wird auf neueren Quelleintrag angewendet %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Älterer Quelleintrag wird auf neueren Zieleintrag angewendet %1 [%2] - Synchronizing from newer source %1 [%2] Synchronisiere von neuerer Quelle %1 [%2] @@ -5511,7 +6441,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v NewDatabaseWizard Create a new KeePassXC database… - Neue KeePassXC-Datenbank erstellen … + Neue KeePassXC-Datenbank erstellen… Root @@ -5533,14 +6463,6 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Hier werden die Details der Verschlüsselung eingestellt. Sie können diese Details auch später in den Datenbank-Einstellungen ändern. - - Advanced Settings - Fortgeschrittene Einstellungen - - - Simple Settings - Grundeinstellungen - NewDatabaseWizardPageDatabaseKey @@ -5575,6 +6497,25 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Bitte geben Sie den Namen und (optional) eine Beschreibung der neuen Datenbank ein: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Name des Anhangs darf nicht leer sein + + + Attachment with the same name already exists + Anhang mit demselben Namen existiert bereits + + + Save attachment + Anhang speichern + + + New entry attachment + Neuer Eintragsanhang + + NixUtils @@ -5587,7 +6528,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Could not register global shortcut - Globales Tastaturkürzel konnte nicht registriert werden + Globales Tastenkürzel konnte nicht registriert werden @@ -5602,7 +6543,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Unable to init cipher for opdata01: %1 - Kann Cipher für opdata01 nicht initialisieren: %1 + Kann Verschlüsselung für opdata01 nicht initialisieren: %1 Unable to read all HMAC signature bytes @@ -5621,15 +6562,6 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v %1 Bytes Klartext erwartet, %2 gefunden - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Gelesene Datenbank ergab keine Instanz -%1 - - OpVaultReader @@ -5703,6 +6635,10 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Unknown cipher: %1 Unbekannter Verschlüsselungsalgorithmus: %1 + + AES-256/GCM is currently not supported + AES-256/GCM wird momentan nicht unterstützt + Passphrase is required to decrypt this key Passphrase zum Entschlüsseln des Schlüssels benötigt @@ -5721,7 +6657,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Failed to initialize cipher: %1 - Initialisierung der Chiffre fehlgeschlagen: %1 + Initialisierung der Verschlüsselung fehlgeschlagen: %1 Decryption failed: %1 @@ -5767,28 +6703,184 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Unexpected EOF when writing private key Unerwartetes Dateiende beim Schreiben des privaten Schlüssels + + (encrypted) + (verschlüsselt) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Passwörter stimmen nicht überein + SSH Key Generator + SSH-Schlüsselgenerator - Passwords match so far - Passwörter stimmen überein + Type + Typ - Toggle Password (%1) - Passwort umschalten (%1) + Bits + Bits - Generate Password (%1) - Passwort erzeugen (%1) + Comment + Kommentar + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Passkey-Export - Warning: Caps Lock enabled! - Warnung: Feststelltaste aktiviert! + Filenames will be generated with title and .passkey file extension. + Dateinamen werden mit dem Titel und der Dateierweiterung .passkey generiert. + + + Export entries + Einträge exportieren + + + Export Selected + Auswahl exportieren + + + Cancel + Abbrechen + + + Export to folder + In Ordner exportieren + + + Export the following passkey entries. + Die folgenden Passkey-Einträge exportieren. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Passkey-Export + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Datei „%1.passkey“ existiert bereits. +Möchten Sie sie überschreiben? + + + + Cannot open file + Datei kann nicht geöffnet werden + + + Cannot open file "%1" for writing. + Datei „%1“ kann nicht zum Schreiben geöffnet werden. + + + Cannot write to file + Datei kann nicht geschrieben werden + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passkey-Import + + + Username: %1 + Benutzername: %1 + + + Group + Gruppe + + + Database + Datenbank + + + Import Passkey + Passkey importieren + + + Import + Importieren + + + Cancel + Abbrechen + + + Entry + Eintrag + + + Create new entry + Neuen Eintrag erstellen + + + Relying Party: %1 + Verlässliche Gegenseite: %1 + + + Import the following passkey: + Den folgenden Passkey importieren: + + + Import the following passkey to this entry: + Den folgenden Passkey in diesen Eintrag importieren: + + + Default passkeys group (Imported Passkeys) + Standard-Passkeys-Gruppe (importierte Passkeys) + + + + PasskeyImporter + + Passkey file + Passkey-Datei + + + All files + Alle Dateien + + + Cannot open file + Datei kann nicht geöffnet werden + + + Cannot open file "%1" for reading. + Datei „%1“ kann nicht zum Lesen geöffnet werden. + + + Open passkey file + Passkey-Datei öffnen + + + Cannot import passkey + Passkey kann nicht importiert werden + + + Cannot import passkey file "%1". Data is missing. + Passkey-Datei „%1“ kann nicht importiert werden. Es fehlen Daten. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Passkey-Datei „%1“ kann nicht importiert werden. +Die folgenden Daten fehlen: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Passkey-Datei „%1“ kann nicht importiert werden. Privater Schlüssel fehlt oder ist beschädigt. @@ -5799,7 +6891,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Password field - Passwort-Feld + Passwortfeld Confirm password: @@ -5819,7 +6911,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Change Password - Passwort bearbeiten + Passwort ändern Remove Password @@ -5907,7 +6999,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Dashes and Slashes - Bindezeichen und Schrägstriche + Bindestriche und Schrägstriche Upper-case letters @@ -5969,10 +7061,6 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Also choose from: Auch wählen aus: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Ausgeschlossene Zeichen: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Gleichaussehende Zeichen ausschließen @@ -5995,11 +7083,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Word Count: - Wort-Anzahl - - - Character Count: - Zeichenanzahl: + Wortanzahl: Word Case: @@ -6013,10 +7097,6 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Add custom wordlist Benutzerdefinierte Wortliste hinzufügen - - character - Zeichen - Close Schließen @@ -6053,13 +7133,37 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Entropy: %1 bit Entropie: %1 bit + + Password Quality: %1 + Passwort-Qualität: %1 + + + Poor + Password quality + Schlecht + + + Weak + Password quality + Schwach + + + Good + Password quality + Gut + + + Excellent + Password quality + Ausgezeichnet + Confirm Delete Wordlist Löschen der Wortliste bestätigen Do you really want to delete the wordlist "%1"? - Wollen Sie die Wortliste "%1" wirklich löschen? + Wollen Sie die Wortliste „%1“ wirklich löschen? Failed to delete wordlist @@ -6084,7 +7188,7 @@ Wir empfehlen Ihnen, das AppImage zu verwenden, das auf unserer Download-Seite v Wordlist "%1" already exists as a custom wordlist. Do you want to overwrite it? - Die Wortliste "%1" existiert bereits als benutzerdefinierte Wortliste. + Die Wortliste „%1“ existiert bereits als benutzerdefinierte Wortliste. Möchten Sie diese überschreiben? @@ -6100,8 +7204,47 @@ Möchten Sie diese überschreiben? Sonderzeichen - Password Quality: %1 - Passwort-Qualität: %1 + passwordLength + Passwortlänge + + + Characters: %1 + Zeichen: %1 + + + MIXED case + Groß- und Kleinbuchstaben + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Ausgeschlossene Zeichen: „0“, „1“, „l“, „I“, „O“, „|“, „﹒“, „B“, „8“, „G“, „6“ + + + + PasswordWidget + + Passwords do not match + Passwörter stimmen nicht überein + + + Passwords match so far + Passwörter stimmen bisher überein + + + Toggle Password (%1) + Passwort umschalten (%1) + + + Generate Password (%1) + Passwort erzeugen (%1) + + + Warning: Caps Lock enabled! + Warnung: Feststelltaste aktiviert! + + + Quality: %1 + Qualität: %1 Poor @@ -6123,6 +7266,10 @@ Möchten Sie diese überschreiben? Password quality Ausgezeichnet + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Sichtbarkeit des Passworts mit Strg+H umschalten. Passwortgenerator mit Strg+G öffnen. + PickcharsDialog @@ -6132,13 +7279,28 @@ Möchten Sie diese überschreiben? Select characters to type, navigate with arrow keys, Ctrl + S submits. - Zu tippende Zeichen auswählen, mit Pfeiltasten navigieren, Strg + S sendet. + Zu tippende Zeichen auswählen, mit Pfeiltasten navigieren, Strg+S bestätigt die Eingabe. Press &Tab between characters Taste &Tab zwischen Zeichen drücken + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Vorschau des Eintragsanhangs + + + No preview available + Keine Vorschau verfügbar + + + Image format not supported + Bildformat wird nicht unterstützt + + QMessageBox @@ -6177,6 +7339,10 @@ Möchten Sie diese überschreiben? Continue Fortsetzen + + Continue with weak password + Weiter mit schwachem Passwort + QObject @@ -6338,7 +7504,7 @@ Möchten Sie diese überschreiben? Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - Überprüfen, ob irgenwelche Passwörter in öffentlichen Datenlecks vorkommen. FILENAME muss der der Pfad der Datei sein, die SHA-1-Hashes der Passwörter im HIBP-Format enthält, wie zu finden unter https://haveibeenpwned.com/Passwords. + Überprüfen Sie, ob Passwörter öffentlich bekannt geworden sind. FILENAME muss der Pfad zu der Datei sein, die SHA-1-Hashes der Passwörter im HIBP-Format enthält, wie sie unter https://haveibeenpwned.com/Passwords zu finden sind. FILENAME @@ -6354,7 +7520,7 @@ Möchten Sie diese überschreiben? Analyze passwords for weaknesses and problems. - Passw‭örter auf Schwächen und Probleme prüfen. + Passwörter auf Schwächen und Probleme prüfen. Cannot find HIBP file: %1 @@ -6362,7 +7528,7 @@ Möchten Sie diese überschreiben? Evaluating database entries using okon… - Auswerten von Datenbankeinträgen mit okon ... + Auswerten von Datenbankeinträgen mit okon… Failed to open HIBP file %1: %2 @@ -6370,15 +7536,15 @@ Möchten Sie diese überschreiben? Evaluating database entries against HIBP file, this will take a while… - Datenbankeinträge gegen HIBP-Datei auswerten, das dauert eine Weile ... + Datenbankeinträge gegen HIBP-Datei auswerten, das dauert eine Weile… Password for '%1' has been leaked %2 time(s)! - Passwort für '%1' wurde %2 Mal in Datenlecks gefunden!Passwort für '%1' wurde %2 Mal in Datenlecks gefunden! + Passwort für '%1' wurde einmal in Datenlecks gefunden!Passwort für '%1' wurde %2-mal in Datenlecks gefunden! Password for '%1' has been leaked! - Passwörter für '%1' wurde in Datenlecks gefunden! + Passwort für '%1' wurde in Datenlecks gefunden! Export an attachment of an entry. @@ -6463,11 +7629,11 @@ Möchten Sie diese überschreiben? Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Angegebene Eigenschaft in die Zwischenablage kopieren. Voreinstellung ist "Passwort". + Angegebene Eigenschaft in die Zwischenablage kopieren. Voreinstellung ist „Passwort“. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - Aktuelles TOTP in die Zwischenablage kopieren (äquivalent zu "-a totp"). + Aktuelles TOTP in die Zwischenablage kopieren (äquivalent zu „-a totp“). Must match only one entry, otherwise a list of possible matches is shown. @@ -6516,11 +7682,11 @@ Möchten Sie diese überschreiben? Attribute "%1" not found. - Eigenschaft "%1" nicht gefunden. + Eigenschaft „%1“ nicht gefunden. Entry's "%1" attribute copied to the clipboard! - Eigenschaft "%1" des Eintrags wurde in die Zwischenablage kopiert! + Eigenschaft „%1“ des Eintrags wurde in die Zwischenablage kopiert! Clearing the clipboard in %1 second(s)... @@ -6552,11 +7718,11 @@ Möchten Sie diese überschreiben? Deactivate password key for the database. - Passwort-Schlüssel für die Datenbank deaktivieren. + Passwortschlüssel für die Datenbank deaktivieren. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Yubikey-Slot und optional Seriennummer zum Zugriff auf die Datenbank (z.B. 1:7370001). + YubiKey-Slot und optional Seriennummer zum Zugriff auf die Datenbank (z. B. 1:7370001). slot[:serial] @@ -6570,6 +7736,10 @@ Möchten Sie diese überschreiben? Too many arguments provided. Zu viele Argumente angegeben. + + Path of the database. + Pfad der Datenbank. + Target decryption time in MS for the database. Ziel-Entschlüsselungszeit in ms für die Datenbank. @@ -6590,10 +7760,6 @@ Möchten Sie diese überschreiben? Create a new database. Neue Datenbank erstellen. - - Path of the database. - Pfad der Datenbank. - Invalid decryption time %1. Ungültige Entschlüsselungszeit %1. @@ -6616,7 +7782,7 @@ Möchten Sie diese überschreiben? Benchmarking key derivation function for %1ms delay. - Messe Schlüssel-Ableitungsfunktion für %1ms Verzögerung. + Schlüssel-Ableitungsfunktion für %1 ms Verzögerung messen. Setting %1 rounds for key derivation function. @@ -6638,6 +7804,158 @@ Möchten Sie diese überschreiben? Successfully created new database. Datenbank erfolgreich erstellt. + + Unset the password for the database. + Löscht das Passwort für die Datenbank. + + + Unset the key file for the database. + Löscht die Schlüsseldatei für die Datenbank. + + + Edit a database. + Eine Datenbank bearbeiten. + + + Cannot use %1 and %2 at the same time. + %1 und %2 können nicht gleichzeitig verwendet werden. + + + Could not change the database key. + Datenbankschlüssel konnte nicht geändert werden. + + + Database was not modified. + Datenbank wurde nicht geändert. + + + Writing the database failed: %1 + Schreiben der Datenbank fehlgeschlagen: %1 + + + Successfully edited the database. + Datenbank wurde erfolgreich bearbeitet. + + + Cannot remove password: The database does not have a password. + Passwort kann nicht entfernt werden: Die Datenbank hat kein Passwort. + + + Cannot remove file key: The database does not have a file key. + Der Dateischlüssel kann nicht entfernt werden: Die Datenbank hat keinen Dateischlüssel. + + + Loading the new key file failed: %1 + Laden der neuen Schlüsseldatei fehlgeschlagen: %1 + + + Found unexpected Key type %1 + Unerwarteter Schlüsseltyp %1 gefunden + + + Cannot remove all the keys from a database. + Es können nicht alle Schlüssel aus einer Datenbank entfernt werden. + + + Show a database's information. + Datenbankinformationen anzeigen. + + + UUID: + UUID: + + + Name: + Name: + + + Description: + Beschreibung: + + + Cipher: + Verschlüsselungsalgorithmus: + + + KDF: + KDF: + + + Recycle bin is enabled. + Papierkorb ist aktiviert. + + + Recycle bin is not enabled. + Papierkorb ist nicht aktiviert. + + + Location + Speicherort + + + Database created + Datenbank erstellt + + + Last saved + Zuletzt gespeichert + + + Unsaved changes + Ungespeicherte Änderungen + + + yes + ja + + + no + nein + + + Number of groups + Anzahl der Gruppen + + + Number of entries + Anzahl der Einträge + + + Number of expired entries + Anzahl der abgelaufenen Einträge + + + Unique passwords + Eindeutige Passwörter + + + Non-unique passwords + Nicht eindeutige Passwörter + + + Maximum password reuse + Maximale Wiederverwendung eines Passworts + + + Number of short passwords + Anzahl der kurzen Passwörter + + + Number of weak passwords + Anzahl der schwachen Passwörter + + + Entries excluded from reports + Von Berichten ausgeschlossene Einträge + + + Average password length + Durchschnittliche Passwortlänge + + + %1 characters + %1 Zeichen + Word count for the diceware passphrase. Wortanzahl für die Diceware-Passphrase. @@ -6661,10 +7979,6 @@ Möchten Sie diese überschreiben? Invalid word count %1 Ungültige Wortanzahl %1 - - The word list is too small (< 1000 items) - Die Wortliste ist zu kurz (< 1000 Einträge) - Title for the entry. Titel für diesen Eintrag. @@ -6689,10 +8003,6 @@ Möchten Sie diese überschreiben? Enter new password for entry: Neues Passwort für Eintrag eingeben: - - Writing the database failed: %1 - Schreiben der Datenbank fehlgeschlagen: %1 - Successfully edited entry %1. Eintrag %1 erfolgreich bearbeitet. @@ -6799,7 +8109,7 @@ Möchten Sie diese überschreiben? Type: Unknown (%1) - Typ: Unbekannt (%1) + Typ: unbekannt (%1) Entropy %1 (%2) @@ -6811,11 +8121,7 @@ Möchten Sie diese überschreiben? Exit interactive mode. - Verlasse interaktiven Modus. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Zu benutzendes Format für den Export. Verfügbare Optionen sind 'xml' oder 'csv'. Standard ist 'xml'. + Interaktiven Modus beenden. Exports the content of a database to standard output in the specified format. @@ -6823,7 +8129,7 @@ Möchten Sie diese überschreiben? Unable to export database to XML: %1 - Fehler beim Exportieren der Datenbank nach XML: %1 + Fehler beim Exportieren der Datenbank als XML: %1 Unsupported format %1 @@ -6903,7 +8209,7 @@ Möchten Sie diese überschreiben? Path of the XML database export. - Pfad des XML-Datenbank-Exports. + Pfad des XML-Datenbankexports. Path of the new database. @@ -6917,106 +8223,6 @@ Möchten Sie diese überschreiben? Successfully imported database. Datenbank erfolgreich importiert. - - Show a database's information. - Datenbankinformationen anzeigen. - - - UUID: - UUID: - - - Name: - Name: - - - Description: - Beschreibung: - - - Cipher: - Verschlüsselungsalgorithmus: - - - KDF: - KDF: - - - Recycle bin is enabled. - Papierkorb ist aktiviert. - - - Recycle bin is not enabled. - Papierkorb ist nicht aktiviert. - - - Location - Speicherort - - - Database created - Datenbank erstellt - - - Last saved - Zuletzt gespeichert - - - Unsaved changes - Ungespeicherte Änderungen - - - yes - ja - - - no - nein - - - Number of groups - Anzahl der Gruppen - - - Number of entries - Anzahl der Einträge - - - Number of expired entries - Anzahl der abgelaufenen Einträge - - - Unique passwords - Eindeutige Passwörter - - - Non-unique passwords - Nicht eindeutige Passwörter - - - Maximum password reuse - Maximale Wiederverwendung eines Passworts - - - Number of short passwords - Anzahl der kurzen Passwörter - - - Number of weak passwords - Anzahl der schwachen Passwörter - - - Entries excluded from reports - Von Berichten ausgeschlossene Einträge - - - Average password length - Durchschnittliche Passwortlänge - - - %1 characters - %1 Zeichen - Unknown command %1 Unbekannter Befehl %1 @@ -7073,7 +8279,7 @@ Verfügbare Kommandos: Deactivate password key for the database to merge from. - Passwort-Schlüssel für die Quell-Datenbank der Zusammenführung deaktivieren. + Passwortschlüssel für die Quelldatenbank der Zusammenführung deaktivieren. Only print the changes detected by the merge operation. @@ -7081,7 +8287,7 @@ Verfügbare Kommandos: Yubikey slot for the second database. - Yubikey-Slot für die zweite Datenbank. + YubiKey-Slot für die zweite Datenbank. slot @@ -7189,6 +8395,10 @@ Verfügbare Kommandos: Show the protected attributes in clear text. Geschützte Eigenschaften im Klartext anzeigen. + + Show all the attributes of the entry. + Alle Eigenschaften des Eintrags anzeigen. + Show the attachments of the entry. Anhänge des Eintrags anzeigen. @@ -7223,15 +8433,15 @@ Verfügbare Kommandos: Failed to open database file %1: not found - Fehler beim Öffnen der Datenbank-Datei %1: Nicht gefunden + Fehler beim Öffnen der Datenbankdatei %1: Nicht gefunden Failed to open database file %1: not a plain file - Fehler beim Öffnen der Datenbank-Datei %1: Keine normale Datei + Fehler beim Öffnen der Datenbankdatei %1: Keine normale Datei Failed to open database file %1: not readable - Fehler beim Öffnen der Datenbank-Datei %1: Nicht lesbar + Fehler beim Öffnen der Datenbankdatei %1: Nicht lesbar Enter password to unlock %1: @@ -7259,6 +8469,10 @@ Bitte erwägen Sie, eine neue Schlüsseldatei zu erzeugen. Invalid YubiKey serial %1 Ungültige YubiKey-Seriennummer %1 + + Please present or touch your YubiKey to continue. + Bitte halten oder berühren Sie Ihren YubiKey, um fortzufahren. + Enter password to encrypt database (optional): Passwort eingeben, um Datenbank zu verschlüsseln (optional): @@ -7339,7 +8553,7 @@ Bitte erwägen Sie, eine neue Schlüsseldatei zu erzeugen. Password expiry was %1 - Passwort-Ablauf war %1 + Passwortablauf war %1 Password expires on %1 @@ -7363,7 +8577,7 @@ Bitte erwägen Sie, eine neue Schlüsseldatei zu erzeugen. Build Type: %1 - Build Typ: %1 + Build-Typ: %1 Revision: %1 @@ -7443,11 +8657,11 @@ Kernel: %3 %4 %1 minute(s) - %1 Minute%1 Minute(n) + %1 Minute%1 Minuten - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan-Bibliothek muss mindestens 2.11.x sein, es wurde %1.%2.%3 gefunden + Botan library must be at least %1, found %2.%3.%4 + Botan-Bibliothek muss mindestens %1 sein, gefunden %2.%3.%4 Cryptographic libraries: @@ -7497,29 +8711,17 @@ Kernel: %3 %4 file empty Datei leer - - malformed string - Ungültige Zeichenfolge - - - missing closing quote - Schließendes Anführungszeichen fehlt - - - %1: (row, col) %2,%3 - %1: (Zeile, Spalte) %2,%3 - AES 256-bit - AES 256-bit + AES 256-Bit Twofish 256-bit - Twofish 256-bit + Twofish 256-Bit ChaCha20 256-bit - ChaCha20 256-bit + ChaCha20 256-Bit Argon2d (KDBX 4 – recommended) @@ -7547,7 +8749,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - Zwischenablage wird in %1 Sekunde(n) gelöscht...Zwischenablage wird in %1 Sekunde(n) gelöscht ... + Zwischenablage wird in %1 Sekunde gelöscht…Zwischenablage wird in %1 Sekunden gelöscht… Group @@ -7609,7 +8811,7 @@ Kernel: %3 %4 Do you really want to move entry "%1" to the recycle bin? - Wollen Sie den Eintrag "%1" wirklich in den Papierkorb verschieben? + Wollen Sie den Eintrag „%1“ wirklich in den Papierkorb verschieben? Do you really want to move %n entry(s) to the recycle bin? @@ -7625,7 +8827,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - Eintrag "%1" hat %2 Referenz. Möchten Sie die Referenz mit Werten überschreiben, diesen Eintrag überspringen oder trotzdem löschen?Eintrag "%1" hat %2 Referenzen. Möchten Sie die Referenzen mit Werten überschreiben, diesen Eintrag überspringen oder trotzdem löschen? + Eintrag „%1“ hat %2 Referenz. Möchten Sie die Referenz mit Werten überschreiben, diesen Eintrag überspringen oder trotzdem löschen?Eintrag „%1“ hat %2 Referenzen. Möchten Sie die Referenzen mit Werten überschreiben, diesen Eintrag überspringen oder trotzdem löschen? User name @@ -7687,14 +8889,6 @@ Kernel: %3 %4 read password of the database from stdin Passwort der Datenbank von stdin lesen - - allow app screen recordering and screenshots - Bildschirmaufnahmen und Screenshots zulassen. - - - Locked databases. - Gesperrte Datenbanken. - Database failed to lock. Datenbank kann nicht gesperrt werden. @@ -7703,6 +8897,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Eine andere KeePassXC-Instanz läuft bereits. + + KeePassXC is not running. No open database to lock + KeePassXC läuft im Moment nicht. Keine offene Datenbank zum Sperren + Fatal error while testing the cryptographic functions. Kritischer Fehler beim Testen der kryptografischen Funktionen. @@ -7711,10 +8909,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Fehler - - Warning: Failed to prevent screenshots on a top level window! - Warnung: Es ist nicht gelungen, Screenshots auf einem Fenster der obersten Ebene zu verhindern! - Database password: Datenbank-Passwort: @@ -7738,8 +8932,312 @@ Kernel: %3 %4 Anmeldung mit Windows Hello fehlgeschlagen. - Please present or touch your YubiKey to continue. - Bitte halten oder berühren Sie Ihren YubiKey, um fortzufahren. + Warning: Failed to block screenshot capture on a top-level window. + Warnung: Die Bildschirmaufnahme in einem Fenster der obersten Ebene konnte nicht blockiert werden. + + + Invalid Cipher + Ungültige Verschlüsselung + + + Invalid KDF + Ungültige KDF + + + Access to all entries is denied + Zugriff auf alle Einträge wird verweigert + + + allow screenshots and app recording (Windows/macOS) + Bildschirmfotos und App-Aufnahmen erlauben (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Legt die Schlüsseldatei für die Datenbank fest. +Diese Option ist veraltet, verwenden Sie stattdessen --set-key-file. + + + Databases have been locked. + Datenbanken wurden gesperrt. + + + Attestation not supported + Beglaubigung nicht unterstützt + + + Credential is excluded + Anmeldedaten sind ausgeschlossen + + + Passkeys request canceled + Anfrage für Passkeys abgebrochen + + + Invalid user verification + Ungültige Benutzerverifikation + + + Empty public key + Leerer öffentlicher Schlüssel + + + Invalid URL provided + Ungültige URL angegeben + + + Passkeys + Passkeys + + + AES initialization failed + AES-Initialisierung fehlgeschlagen + + + AES encrypt failed + AES-Verschlüsselung fehlgeschlagen + + + Failed to store in Linux Keyring + Speichern im Linux-Schlüsselbund fehlgeschlagen + + + Polkit returned an error: %1 + Polkit hat einen Fehler zurückgegeben: %1 + + + Could not locate key in keyring + Schlüssel im Schlüsselbund konnte nicht gefunden werden + + + Could not read key in keyring + Schlüssel im Schlüsselbund konnte nicht gelesen werden + + + AES decrypt failed + AES-Entschlüsselung fehlgeschlagen + + + No Polkit authentication agent was available + Es war kein Polkit-Authentifizierungsagent verfügbar + + + Polkit authorization failed + Polkit-Autorisierung fehlgeschlagen + + + No Quick Unlock provider is available + Es ist kein Quick Unlock-Anbieter verfügbar + + + Failed to init KeePassXC crypto. + KeePassXC-Krypto konnte nicht gestartet werden. + + + Failed to encrypt key data. + Verschlüsselung der Schlüsseldaten fehlgeschlagen. + + + Failed to get Windows Hello credential. + Windows Hello-Anmeldedaten konnten nicht abgerufen werden. + + + Failed to decrypt key data. + Entschlüsselung der Schlüsseldaten fehlgeschlagen. + + + Origin is empty or not allowed + Ursprung ist leer oder nicht erlaubt + + + Effective domain is not a valid domain + Tatsächliche Domain ist keine gültige Domain + + + Origin and RP ID do not match + Ursprung und RP-ID stimmen nicht überein + + + No supported algorithms were provided + Keine unterstützten Algorithmen wurden bereitgestellt + + + Wait for timer to expire + Warten, bis der Timer abgelaufen ist + + + Challenge is shorter than required minimum length + Challenge ist kürzer als die erforderliche Mindestlänge + + + user.id does not match the required length + user.id entspricht nicht der erforderlichen Länge + + + Favorite + Tag for favorite entries + Favorit + + + File does not exist. + Datei existiert nicht. + + + Cannot open file: %1 + Datei kann nicht geöffnet werden: %1 + + + Cannot parse file: %1 at position %2 + Datei kann nicht verarbeitet werden: %1 an Position %2 + + + Failed to decrypt json file: %1 + JSON-Datei konnte nicht entschlüsselt werden: %1 + + + Invalid encKeyValidation field + Ungültiges encKeyValidation-Feld + + + Invalid cipher list within encKeyValidation field + Ungültige Verschlüsselungsliste im Feld encKeyValidation + + + Wrong password + Falsches Passwort + + + Invalid encrypted data field + Ungültiges verschlüsseltes Datenfeld + + + Invalid cipher list within encrypted data field + Ungültige Verschlüsselungsliste im verschlüsselten Datenfeld + + + Cannot initialize cipher + Kann Verschlüsselungsalgorithmus nicht initialisieren + + + Cannot decrypt data + Daten können nicht entschlüsselt werden + + + Bitwarden Import + Bitwarden importieren + + + Archived + Tag for archived entries + Archiviert + + + Invalid 1PUX file format: Not a valid ZIP file. + Ungültiges 1PUX-Dateiformat: keine gültige ZIP-Datei. + + + Invalid 1PUX file format: Missing export.data + Ungültiges 1PUX-Dateiformat: fehlende export.data + + + 1Password Import + 1Password importieren + + + Enter Shortcut + Tastenkürzel eingeben + + + Action + Aktion + + + Shortcuts + Tastenkürzel + + + Unknown passkeys error + Unbekannter Passkey-Fehler + + + Invalid KDF iterations, cannot decrypt json file + Ungültige KDF-Iterationen, JSON-Datei kann nicht entschlüsselt werden. + + + Unsupported format, ensure your Bitwarden export is password-protected + Nicht unterstütztes Format, stellen Sie sicher, dass Ihr Bitwarden-Export passwortgeschützt ist. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Nur PBKDF und Argon2 werden unterstützt, JSON-Datei kann nicht entschlüsselt werden. + + + Reset Shortcuts + Tastenkürzel zurücksetzen + + + Double click an action to change its shortcut + Doppelklick auf eine Aktion, um das Tastenkürzel zu ändern + + + Filter... + Filtern… + + + Shortcut Conflict + Tastenkürzelkonflikt + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Tastenkürzel %1 steht im Konflikt mit '%2'. Tastenkürzel überschreiben? + + + Cannot generate valid passphrases because the wordlist is too short + Es können keine gültigen Passphrasen erzeugt werden, da die Wortliste zu kurz ist + + + Encrypted files are not supported. + Verschlüsselte Dateien werden nicht unterstützt. + + + Proton Pass Import + Proton Pass importieren + + + Delete plugin data? + Plugin-Daten löschen? + + + Delete plugin data from Entry(s)? + Plugin-Daten aus Eintrag löschen?Plugin-Daten aus Einträgen löschen? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Für den Export zu verwendendes Format. Zur Auswahl stehen „xml“, „csv“ oder „html“. Standard ist „xml“. + + + start minimized to the system tray + Minimiert in der Taskleiste starten + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tags @@ -7776,20 +9274,39 @@ Kernel: %3 %4 Interner Fehler in zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Der Befehl `%1` wurde nicht rechtzeitig beendet. Der Prozess wurde beendet. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Das Hochladen der zusammengeführten Datenbank ist fehlgeschlagen. Der Befehl `%1` wurde nicht rechtzeitig beendet. Prozess wurde beendet. + + + Invalid download parameters provided. + Ungültige Download-Parameter angegeben. + + + Command `%1` failed to download database. + Der Befehl `%1` ist beim Herunterladen der Datenbank fehlgeschlagen. + + + Invalid database pointer or upload parameters provided. + Ungültiger Datenbankzeiger oder ungültige Upload-Parameter angegeben. + + + Command `%1` exited with status code: %2 + Der Befehl `%1` wurde mit Statuscode beendet: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Das Hochladen der zusammengeführten Datenbank ist fehlgeschlagen. Der Befehl `%1` wurde mit Statuscode beendet: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Abgelaufene Einträge aus dem Bericht ausschließen - - - Show only entries which have URL set - Nur Einträge anzeigen, für die eine URL festgelegt wurde - - - Show only entries which have browser settings in custom data - Nur Einträge anzeigen, die Browsereinstellungen in den benutzerdefinierten Daten haben - Double-click entries to edit. Einträge zum Bearbeiten doppelklicken @@ -7824,7 +9341,7 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - Bitte warten Sie, die Browser-Statistik wird gerade berechnet … + Bitte warten Sie, die Browserstatistik wird berechnet… No entries with a URL, or none has browser extension settings saved. @@ -7844,57 +9361,66 @@ Kernel: %3 %4 Edit Entry… - Eintrag bearbeiten ... + Eintrag bearbeiten… Delete Entry(s)… - Eintrag löschen...Einträge löschen ... + Eintrag löschen…Einträge löschen… Exclude from reports Von Berichten ausschließen + + Expire Entry(s)… + Abgelaufener Eintrag…Abgelaufene Einträge… + + + Only show entries that have a URL + Nur Einträge anzeigen, die eine URL enthalten + + + Only show entries that have been explicitly allowed or denied + Nur Einträge anzeigen, die explizit erlaubt oder verweigert wurden + + + Show expired entries + Abgelaufene Einträge anzeigen + + + (Expired) + (abgelaufen) + + + Delete plugin data from Entry(s)… + Plugin-Daten aus Eintrag löschen…Plugin-Daten aus Einträgen löschen… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Abgelaufene Einträge aus dem Bericht ausschließen + Show expired entries + Abgelaufene Einträge anzeigen - Also show entries that have been excluded from reports - Auch Einträge zeigen, die von Berichten ausgeschlossen wurden + (Expired) + (abgelaufen) Hover over reason to show additional details. Double-click entries to edit. Für weitere Informationen mit der Maus über den Grund fahren. Doppelklick auf Einträge zum Bearbeiten. - - Bad - Password quality - Sehr schlecht - Bad — password must be changed - Sehr schlecht —Passwort muss geändert werden - - - Poor - Password quality - Schlecht + Sehr schlecht — Passwort muss geändert werden Poor — password should be changed Schlecht — Passwort sollte geändert werden - - Weak - Password quality - Schwach - Weak — consider changing the password - Schwach — Passwortänderung sollte erwägt werden + Schwach — Passwortänderung sollte erwogen werden (Excluded) @@ -7906,7 +9432,7 @@ Kernel: %3 %4 Please wait, health data is being calculated… - Bitte warten, der Gesundheitszustand wird berechnet ... + Bitte warten Sie, der Gesundheitszustand wird berechnet… Congratulations, everything is healthy! @@ -7930,22 +9456,30 @@ Kernel: %3 %4 Edit Entry… - Eintrag bearbeiten ... + Eintrag bearbeiten… Delete Entry(s)… - Eintrag löschen...Einträge löschen ... + Eintrag löschen…Einträge löschen… Exclude from reports Von Berichten ausschließen + + Expire Entry(s)… + Abgelaufener Eintrag…Abgelaufene Einträge… + + + Show entries that have been excluded from reports + Einträge anzeigen, die von Berichten ausgeschlossen wurden + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - ACHTUNG: Dieser Bericht erfordert, dass Informationen an den "Have I Been Pwned"-Onlinedienst (https://haveibeenpwned.com) gesendet werden. Wenn Sie fortfahren, werden Ihre Datenbank-Passwörter kryptografisch gehasht, und die ersten fünf Zeichen dieser Hashes werden sicher an diesen Dienst übertragen. Ihre Datenbank bleibt sicher und kann nicht aus diesen Informationen rekonstruiert werden. Jedoch werden die Anzahl der gesendeten Passwörter und Ihre IP-Adresse dem Dienst offengelegt. + ACHTUNG: Dieser Bericht erfordert das Senden von Informationen an den Onlinedienst „Have I Been Pwned“ (https://haveibeenpwned.com). Wenn Sie fortfahren, werden Ihre Datenbank-Passwörter kryptografisch gehasht, und die ersten fünf Zeichen dieser Hashes werden sicher an diesen Dienst gesendet. Ihre Datenbank bleibt sicher und kann nicht aus diesen Informationen rekonstruiert werden. Die Anzahl der von Ihnen gesendeten Passwörter und Ihre IP-Adresse werden jedoch an diesen Dienst weitergegeben. Perform Online Analysis @@ -8025,16 +9559,87 @@ Kernel: %3 %4 Edit Entry… - Eintrag bearbeiten ... + Eintrag bearbeiten… Delete Entry(s)… - Eintrag löschen...Einträge löschen ... + Eintrag löschen…Einträge löschen… Exclude from reports Von Berichten ausschließen + + Expire Entry(s)… + Abgelaufener Eintrag…Abgelaufene Einträge… + + + + ReportsWidgetPasskeys + + Export + Exportieren… + + + Import + Importieren… + + + List of entry URLs + Liste der Eintrags-URLs + + + Title + Titel + + + Path + Pfad + + + Username + Benutzername + + + URLs + URLs + + + Edit Entry… + Eintrag bearbeiten… + + + Delete Entry(s)… + Eintrag löschen…Einträge löschen… + + + Relying Party + Verlässliche Gegenseite + + + Show expired entries + Abgelaufene Einträge anzeigen + + + (Expired) + (abgelaufen) + + + Export Confirmation + Export bestätigen + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Die Passkey-Datei ist anfällig für Diebstahl und unbefugte Nutzung, wenn sie nicht gesichert ist. Sind Sie sicher, dass Sie fortfahren möchten? + + + Please wait, list of entries with passkeys is being updated… + Bitte warten Sie, die Liste der Einträge mit Passkeys wird gerade aktualisiert… + + + No entries with passkeys. + Keine Einträge mit Passkeys. + ReportsWidgetStatistics @@ -8052,7 +9657,7 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - Bitte warten Sie, die Datenbankstatistik wird berechnet ... + Bitte warten Sie, die Datenbankstatistik wird berechnet… Database name @@ -8140,7 +9745,7 @@ Kernel: %3 %4 Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - Die Verwendung langer, zufällig erzeugter Passwörter mit der Bewertung "gut" oder "hervorragend" wird empfohlen. + Die Verwendung langer, zufällig erzeugter Passwörter mit der Bewertung „gut“ oder „hervorragend“ wird empfohlen. Entries excluded from reports @@ -8148,7 +9753,7 @@ Kernel: %3 %4 Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. - Das Ausschließen von Einträgen aus Berichten, z.B. weil sie bekannterweise schlechte Passwörter haben, ist nicht unbedingt ein Problem, aber Sie sollten ein Auge auf sie haben. + Das Ausschließen von Einträgen aus Berichten, z. B., weil sie bekannterweise schlechte Passwörter haben, ist nicht unbedingt ein Problem, aber Sie sollten ein Auge auf sie haben. Average password length @@ -8179,7 +9784,7 @@ Kernel: %3 %4 Key identity ownership conflict. Refusing to add. - Konflikt beim Schlüssel-Identitäts-Besitz. Füge nicht hinzu. + Konflikt bei der Schlüsselidentität. Hinzufügen verweigern. Agent refused this identity. Possible reasons include: @@ -8209,6 +9814,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Kein Agent ausgeführt, kann keine Identitäten auflisten. + + Failed to remove all SSH identities from agent. + Das Entfernen aller SSH-Identitäten vom Agent ist fehlgeschlagen. + + + All SSH identities removed from agent. + Alle SSH-Identitäten wurden vom Agent entfernt. + SearchHelpWidget @@ -8250,7 +9863,7 @@ Kernel: %3 %4 match anything - Entspreche irgendwas + zu allem passen match one @@ -8275,10 +9888,14 @@ Kernel: %3 %4 Search Help Hilfe durchsuchen + + Save Search + Suche speichern + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - Suchen (%1) … + Suchen (%1)… Case sensitive @@ -8343,40 +9960,16 @@ Kernel: %3 %4 <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - <html><head/><body><p>Wenn aktiviert, muss jeder Versuch, ein Passwort zu lesen, bestätigt werden. Andernfalls können Clients Passwörter ohne Bestätigung lesen, wenn die Datenbank entsperrt ist.</p><p>Diese Option deckt nur den Zugriff auf das Passwort eines Eintrags ab. Clients können immer die Einträge der freigegebenen Datenbanken und deren Attribute abfragen.</p></body></html> + <html><head/><body><p>Wenn aktiviert, muss jeder Versuch, ein Passwort zu lesen, bestätigt werden. Anderenfalls können Clients Passwörter ohne Bestätigung lesen, wenn die Datenbank entsperrt ist.</p><p>Diese Option deckt nur den Zugriff auf das Passwort eines Eintrags ab. Clients können immer die Einträge der freigegebenen Datenbanken und deren Attribute abfragen.</p></body></html> Confirm when passwords are retrieved by clients Bestätigen, wenn Passwörter abgerufen werden - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Diese Einstellung - überschreibt nicht die Deaktivierung der Papierkorb-Hinweise</span></p></body></html> - - Confirm when clients request entry deletion Bestätigen, wenn Clients das Löschen von Einträgen anfordern - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Dies verbessert Kompatibilität mit bestimmten Anwendungen, - die nach einem Passwort suchen, ohne vorher die Datenbank zu entsperren.Dabei - kann allerdings der Client abstürzen, wenn die Datenbank nach einer bestimmten Zeit nicht entsperrt wurde (normalerweise 25 Sekunden, - aber ein anderer Wert kann in den Anwendungen gesetzt sein).</p></body></html> - - Prompt to unlock database before searching Entsperrung der Datenbank vor der Suche anfordern @@ -8401,6 +9994,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Speichern Sie die aktuellen Änderungen, um das Plugin und das Anpassen dieses Abschnitts zu aktivieren. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Diese Einstellung hat keinen Einfluss auf die Deaktivierung der Hinweise für den Papierkorb </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Dies verbessert die Kompatibilität mit bestimmten Anwendungen, die nach dem Passwort suchen, ohne die Datenbank vorher zu entsperren.</p><p>Die Aktivierung dieser Option kann jedoch auch zum Absturz des Clients führen, wenn die Datenbank nicht innerhalb einer bestimmten Zeitspanne entsperrt werden kann. (In der Regel 25 s, kann aber auch ein anderer Wert sein, der in den Anwendungen eingestellt ist.) </p></body></html> + SettingsWidgetKeeShare @@ -8450,7 +10051,7 @@ Kernel: %3 %4 Signer name field - Unterzeichner-Namensfeld + Feld für Unterzeichnernamen Fingerprint @@ -8509,8 +10110,12 @@ Kernel: %3 %4 TagModel - All - Alle + Clear Search + Suche löschen + + + All Entries + Alle Einträge Expired @@ -8521,6 +10126,25 @@ Kernel: %3 %4 Schwache Passwörter + + TagView + + Remove Search + Suche entfernen + + + Remove Tag + Tag entfernen + + + Confirm Remove Tag + Tag entfernen bestätigen + + + Remove tag "%1" from all entries in this database? + Tag „%1“ aus allen Einträgen in dieser Datenbank entfernen? + + TotpDialog @@ -8613,7 +10237,7 @@ Kernel: %3 %4 digits - Ziffern + Ziffern Invalid TOTP Secret @@ -8622,7 +10246,8 @@ Kernel: %3 %4 You have entered an invalid secret key. The key must be in Base32 format. Example: JBSWY3DPEHPK3PXP - Sie haben einen ungültigen geheimen Schlüssel angegeben. Der Schlüssel muss im Base32-Format sein. Beispiel: JBSWY3DPEHPK3PXP + Sie haben einen ungültigen geheimen Schlüssel angegeben. Der Schlüssel muss im Base32-Format sein. +Beispiel: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings @@ -8648,7 +10273,7 @@ Example: JBSWY3DPEHPK3PXP Checking for updates… - Nach Updates suchen ... + Nach Updates suchen… Close @@ -8664,11 +10289,11 @@ Example: JBSWY3DPEHPK3PXP <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - <strong>Eine neue Version ist verfügbar.</strong><br/>KeePassXC %1 kann <a href="https://keepassxc.org/download/">hier heruntergeladen werden</a>. + <strong>Eine neue Version ist verfügbar.</strong><br/>KeePassXC %1 kann <a href="https://keepassxc.org/download/">hier heruntergeladen</a> werden. You have the latest version of KeePassXC - Sie haben die neueste Version von KeePassXC + Sie haben die neueste Version von KeePassXC. @@ -8677,26 +10302,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Speichern Sie Ihre Passwörter sicher in einer KeePassXC-Datenbank - - Create new database - Neue Datenbank erstellen - - - Open existing database - Existierende Datenbank öffnen - - - Import from KeePass 1 - Aus KeePass 1 importieren - - - Import from 1Password - Von 1Password importieren - - - Import from CSV - Aus CSV importieren - Recent databases Zuletzt verwendete Datenbanken @@ -8709,6 +10314,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Willkommen bei KeePassXC %1 + + Create Database + Datenbank erstellen + + + Open Database + Datenbank öffnen + + + Import File + Datei importieren + WinUtils @@ -8722,34 +10339,11 @@ Example: JBSWY3DPEHPK3PXP Could not register global shortcut - Globales Tastaturkürzel konnte nicht registriert werden - - - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC-Krypto konnte nicht gestartet werden. - - - Failed to encrypt key data. - Verschlüsselung der Schlüsseldaten fehlgeschlagen. - - - Failed to get Windows Hello credential. - Windows Hello-Anmeldedaten konnten nicht abgerufen werden. - - - Failed to decrypt key data. - Entschlüsselung der Schlüsseldaten fehlgeschlagen. + Globales Tastenkürzel konnte nicht registriert werden YubiKey - - %1 No interface, slot %2 - %1 Keine Schnitstelle, Slot %2 - General: Allgemein: @@ -8761,14 +10355,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Hardware-Token aktualisieren - - - Refresh - Neu laden - Hardware key slot selection Auswahl des Hardwareschlüssel-Slots @@ -8799,11 +10385,7 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - Challenge-Response eingestellt, zum Ändern oder Entfernen anklicken - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Wenn Sie einen <a href="https://www.yubico.com/">YubiKey</a> oder <a href="https://onlykey.io">OnlyKey</a> besitzen, können verwenden, um die Sicherheit zu verbessern.</p><p>Dazu muss einer seiner Slots als <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a> programmiert sein.</p> + Challenge-Response festgelegt, zum Ändern oder Entfernen anklicken Detecting hardware keys… @@ -8813,28 +10395,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Keine Hardwareschlüssel erkannt - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Ungültiger Slot angegeben - %2 + Refresh hardware keys + Hardwareschlüssel aktualisieren + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Wenn Sie einen <a href="https://www.yubico.com/">YubiKey</a> oder <a href="https://onlykey.io">OnlyKey</a> besitzen, können Sie ihn für zusätzliche Sicherheit verwenden.</p><p>Dazu muss einer seiner Slots als <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a> programmiert sein.</p> + + + Hardware keys found, but no slots are configured + Hardwareschlüssel gefunden, es sind aber keine Slots konfiguriert YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - Slot %3 - The YubiKey PCSC interface has not been initialized. Die YubiKey PCSC-Schnittstelle ist nicht initialisiert worden. - - Hardware key is currently in use. - Der Hardwareschlüssel wird gerade verwendet. - Could not find or access hardware key with serial number %1. Please present it to continue. Konnte den Hardwareschlüssel mit Seriennummer %1 nicht finden oder darauf zugreifen. Zum Fortfahren bitte vorzeigen. @@ -8851,6 +10430,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Challenge-Response konnte nicht abgeschlossen werden, der PCSC-Fehlercode war: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Slot %3, %4 + + + Press + USB Challenge-Response Key interaction request + Drücken + + + Passive + USB Challenge-Response Key no interaction required + Passiv + YubiKeyInterfaceUSB @@ -8858,14 +10452,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Unbekannt - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Konfigurierter Slot - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8880,10 +10466,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. Die YubiKey USB-Schnittstelle ist nicht initialisiert worden. - - Hardware key is currently in use. - Der Hardwareschlüssel wird gerade verwendet. - Could not find hardware key with serial number %1. Please plug it in to continue. Hardwareschlüssel mit Seriennummer %1 konnte nicht gefunden werden. Bitte schließen Sie ihn an, um fortzufahren. @@ -8900,5 +10482,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Abschluss von Challenge-Response ist fehlgeschlagen, der spezifische Fehler war: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Slot %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Slot %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_el.ts b/share/translations/keepassxc_el.ts index a1c454e62..bc7e202a5 100644 --- a/share/translations/keepassxc_el.ts +++ b/share/translations/keepassxc_el.ts @@ -80,6 +80,10 @@ Details Λεπτομέριες + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Η απόφασή σας θα απομνημονευθεί για όσο διάστημα εκτελείται ο αιτών πελάτης ΚΑΙ το KeePassXC. + Remember Θυμηθείτε @@ -88,10 +92,6 @@ Allow Selected Επιτρέπονται τα Επιλεγμένα - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Η απόφασή σας θα απομνημονευθεί για όσο διάστημα εκτελείται ο αιτών πελάτης ΚΑΙ το KeePassXC. - Deny All && Future Άρνηση Όλων && Μελλοντικά @@ -122,6 +122,10 @@ Use OpenSSH Χρησιμοποιήστε OpenSSH + + Use both agents + Χρησιμοποιήστε και τους δύο agents + SSH_AUTH_SOCK override SSH_AUTH_SOCK υπερισχύουσα @@ -150,10 +154,6 @@ SSH Agent connection is working! Η σύνδεση SSH Agent λειτουργεί! - - Use both agents - Χρησιμοποιήστε και τους δύο agents - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Ασφάλεια + + This setting cannot be enabled when minimize on unlock is enabled. + Αυτή η ρύθμιση δεν μπορεί να ενεργοποιηθεί όταν είναι ενεργοποιημένη η ελαχιστοποίηση κατά το ξεκλείδωμα + Access error for config file %1 Σφάλμα πρόσβασης για το αρχείο config %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Πρέπει να επανεκκινήσετε την εφαρμογή για να οριστεί η νέα γλώσσα. Θέλετε να κάνετε επανεκκίνηση τώρα; - - Reset Settings? - Επαναφορά Ρυθμίσεων; - - - Are you sure you want to reset all general and security settings to default? - Είστε βέβαιοι ότι θέλετε να επαναφέρετε όλες τις γενικές και ασφαλείας ρυθμίσεις στις προεπιλογές; - Select backup storage directory Επιλογή καταλόγου αποθήκευσης αντιγράφων ασφαλείας + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Θυμηθείτε προηγούμενες χρησιμοποιημένες βάσεις δεδομένων + + recent files + πρόσφατα αρχεία + Load previously open databases on startup Φόρτωση προηγούμενων ανοιχτών βάσεων δεδομένων κατά την εκκίνηση @@ -272,25 +312,6 @@ Include beta releases when checking for updates Συμπεριλάβετε εκδόσεις beta κατά τον έλεγχο για ενημερώσεις - - On database unlock, show entries that - Στο ξεκλείδωμα της βάσης δεδομένων, εμφανίστε τις καταχωρήσεις που - - - have expired - On database unlock, show entries that... - έχουν λήξει - - - days - On database unlock, show entries that will expire within %1 days - ημέρες - - - will expire within - On database unlock, show entries that... - θα λήξουν εντός - File Management Διαχείριση αρχείων @@ -315,22 +336,10 @@ Backup database file before saving Δημιουργία αντίγραφου ασφαλείας του αρχείου της βάσης δεδομένων πριν την αποθήκευση - - Backup destination - Προορισμός αντιγράφων ασφαλείας - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Καθορίζει τη θέση του αρχείου αντιγράφων ασφαλείας της βάσης δεδομένων. Οι εμφανίσεις του "{ΒΔ_ΟΝΟΜΑ ΑΡΧΕΙΟΥ}" αντικαθίστανται με το όνομα αρχείου της αποθηκευμένης βάσης δεδομένων χωρίς επέκταση. {ΩΡΑ:<format>} αντικαθίσταται με το χρόνο δημιουργίας αντιγράφων ασφαλείας, ανατρέξτε https://doc.qt.io/qt-5/qdatetime.html#toString. <format> Προεπιλογές για τη μορφοποίηση συμβολοσειράς "dd_MM_yyyy_hh mm-ss". - {DB_FILENAME}.old.kdbx {ΒΔ_ΟΝΟΜΑ ΑΡΧΕΙΟΥ}.old.kdbx - - Choose... - Επιλογή... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Χρήση εναλλακτικής μεθόδου αποθήκευσης (μπορεί να επιλύσει προβλήματα με το Dropbox, το Google Drive, GVFS κ.λπ.) @@ -408,6 +417,10 @@ Toolbar button style: Στυλ κουμπιών γραμμής εργαλείων: + + Show passwords in color + Εμφάνιση κωδικών πρόσβασης με χρώμα + Use monospaced font for notes Χρησιμοποιήστε τη monospaced γραμματοσειρά για σημειώσεις @@ -493,6 +506,71 @@ Remember last typed entry for: Να θυμάστε την τελευταία πληκτρολογημένη καταχώρηση για: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + ημέρες + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + Εμφάνιση γραμμής εργαλείων + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Κλείδωμα βάσεων δεδομένων μετά την ελαχιστοποίηση του παραθύρου - - Require password repeat when it is visible - Απαιτείται επανάληψη κωδικού πρόσβασης όταν είναι ορατός - Hide passwords when editing them Απόκρυψη κωδικών πρόσβασης κατά την επεξεργασία τους @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Απόκρυψη κωδικών πρόσβασης στο πάνελ προεπισκόπησης καταχώρησης - - Hide entry notes by default - Να αποκρύπτονται εξ ορισμού οι σημειώσεις καταχωρήσεων - - - Move entries to recycle bin without confirmation - Μετακίνηση καταχωρήσεων στον Κάδο Ανακύκλωσης χωρίς επιβεβαίωση - - - Enable double click to copy the username/password entry columns - Ενεργοποίηση διπλού κλικ για αντιγραφή των στηλών εισαγωγής ονόματος χρήστη/κωδικού πρόσβασης - Privacy Ιδιωτικότητα @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Χρησιμοποιήστε την υπηρεσία DuckDuckGo για λήψη εικονιδίων ιστότοπων + + Hide TOTP in the entry preview panel + Απόκρυψη TOTP στον πίνακα προεπισκόπησης καταχώρησης + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ Εντοπίστηκε πολύ μεγάλη καθυστέρηση, το μέγιστο είναι %1: %2 - Invalid conversion type: %1 - Μη έγκυρος τύπος μετατροπής: %1 - - - Invalid conversion syntax: %1 - Μη έγκυρη σύνταξη μετατροπής: %1 - - - Invalid regular expression syntax %1 -%2 - Μη έγκυρη σύνταξη κανονικής έκφρασης % 1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Η καταχώρηση δεν έχει χαρακτηριστικό για PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Προσπάθεια αποστολής μη έγκυρων keysym. - Sequence aborted: Caps Lock is on Η ακολουθία ματαιώθηκε: Το Caps Lock είναι ενεργοποιμένο @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Δεν είναι δυνατή η λήψη έγκυρου κωδικού για το κλειδί: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - Χρήση εικονικού πληκτρολογίου (μόνο γι Disable for this site Απενεργοποίηση για αυτόν τον ιστότοπο + + Undo + Αναίρεση + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Αποθήκευση Καταχώρησης - Ok Ok @@ -825,13 +893,73 @@ Please select the correct database for saving credentials. Έχετε ανοιχτές πολλές βάσεις δεδομένων Παρακαλώ επιλέξτε την σωστή βάση δεδομένων για την αποθήκευση διαπιστευτηρίων. + + KeePassXC - Select Database + KeePassXC - Επιλέξτε Βάση δεδομένων + + + + BrowserPasskeysConfirmationDialog + + Cancel + Άκυρο + + + Update + Ενημέρωση + + + Authenticate + Επαλήθευση + + + Register new + Καταχώρηση νέου + + + Register + Καταχώρηση + + + Timeout in <b>%n</b> seconds... + Λήξη χρονικού ορίου σε <b>%n</b> δευτερόλεπτο...Λήξη χρονικού ορίου σε <b>%n</b> δευτερόλεπτα... + + + Relying Party: %1 + Στηριζόμενο Party: %1 + + + Username: %1 + Όνομα χρήστη: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Διαπιστευτήρια Passkey + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC: Δημιουργήστε μια νέα ομάδα - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +968,6 @@ Do you want to create this group? Θέλετε να δημιουργήσετε αυτήν την ομάδα; - - KeePassXC: New key association request - KeePassXC: Νέο αίτημα συσχέτισης κλειδιού - You have received an association request for the following database: %1 @@ -860,28 +984,16 @@ chrome-laptop. Save and allow access Αποθήκευση και παραχώρηση πρόσβασης - - KeePassXC: Overwrite existing key? - KeePassXC: Αντικατάσταση υπάρχοντος κλειδιού; - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Υπάρχει ήδη κοινόχρηστο κλειδί κρυπτογράφησης με το όνομα "% 1". Θέλετε να το αντικαταστήσετε; - - KeePassXC: Update Entry - KeePassXC: Ενημέρωση Καταχώρησης - Do you want to update the information in %1 - %2? Θέλετε να ενημερώσετε τις πληροφορίες στο %1 - %2; - - KeePassXC: Delete entry - KeePassXC: Διαγραφή καταχώρησης - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1003,57 @@ Do you want to delete the entry? - Converting attributes to custom data… - Μετατροπή χαρακτηριστικών σε προσαρμοσμένα δεδομένα… + %1 (Passkey) + %1 (Passkey) - Abort - Ματαίωση + KeePassXC - Create a new group + KeePassXC - Δημιουργήστε μια νέα ομάδα - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Μετατράπηκαν χαρακτηρηστηκά από το KeePassHTTP + Disable + Απενεργοποίηση - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Τα χαρακτηριστικά μετατράπηκαν με επιτυχία από% 1 καταχώρηση(εις). -Μετακινήθηκαν %2 πλήκτρα στα προσαρμοσμένα δεδομένα. - - - Successfully moved %n keys to custom data. - Μετακινήθηκε με επιτυχία %n πλήκτρο στα προσαρμοσμένα δεδομένα.Μετακινήθηκε με επιτυχία %n πλήκτρα στα προσαρμοσμένα δεδομένα. + KeePassXC - Overwrite existing key? + KeePassXC - Αντικατάσταση υπάρχοντος κλειδιού; - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Δεν βρέθηκε καταχώριση με χαρακτηριστικά KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - Ενημέρωση Καταχώρησης - The active database does not contain an entry with KeePassHTTP attributes. - Η ενεργή βάση δεδομένων δεν περιέχει μια καταχώριση με χαρακτηριστικά KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Διαγραφή καταχώρησης - Don't show this warning again - Να μην εμφανιστεί ξανά αυτή η προειδοποίηση + KeePassXC - New key association request + KeePassXC - Αίτημα συσχέτισης νέου κλειδιού - KeePassXC: Legacy browser integration settings detected - KeePassXC: Εντοπίστηκαν ρυθμίσεις ενσωμάτωσης παλαιού προγράμματος περιήγησης + Passkey + Passkey - 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-Browser πρέπει να μεταφερθούν στις ρυθμίσεις της βάσης δεδομένων. -Αυτό είναι απαραίτητο για τη διατήρηση των τρεχουσών συνδέσεών σας στο πρόγραμμα περιήγησης. -Θέλετε να μετεγκαταστήσετε τις υπάρχουσες ρυθμίσεις σας τώρα; + KeePassXC - Passkey credentials + KeePassXC - Διαπιστευτήρια Passkey + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + Καταχώρηση @@ -955,10 +1074,6 @@ Would you like to migrate your existing settings now? General Γενικά - - Browsers installed as snaps are currently not supported. - Προς το παρόν δεν υποστηρίζονται προγράμματα περιήγησης που έχουν εγκατασταθεί ως snaps. - Enable integration for these browsers: Ενεργοποίηση της ενσωμάτωσης για αυτά τα προγράμματα περιήγησης: @@ -1130,26 +1245,6 @@ Would you like to migrate your existing settings now? Custom extension ID Αναγνωριστικό προσαρμοσμένης επέκτασης - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Λόγω του Snap sandboxing, πρέπει να εκτελέσετε ένα σενάριο για να ενεργοποιήσετε την ενσωμάτωση του προγράμματος περιήγησης.<br />Μπορείτε να αποκτήσετε αυτό το σενάριο από το %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Απαιτείται το KeePassXC-Browser για να λειτουργήσει η ενσωμάτωση του προγράμματος περιήγησης. <br />Κατεβάστε το για %1 και %2 και %3. %4 - - - Please see special instructions for browser extension use below - Δείτε παρακάτω ειδικές οδηγίες για τη χρήση της επέκτασης προγράμματος περιήγησης - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Σφάλμα:</b> Δεν είναι δυνατή η εύρεση της προσαρμοσμένης τοποθεσίας διακομιστή μεσολάβησης!<br/>Η ενσωμάτωση του προγράμματος περιήγησης ΔΕΝ θα λειτουργήσει χωρίς την εφαρμογή διακομιστή μεσολάβησης. - - - <b>Warning:</b> The following options can be dangerous! - <b>Προειδοποίηση:</b> Οι ακόλουθες επιλογές μπορεί να είναι επικίνδυνες! - Executable Files Εκτελέσιμα Αρχεία @@ -1166,6 +1261,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location Επιλέξτε τοποθεσία φακέλου φιλοξενίας έμφυτων μηνυμάτων + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Επιτρέψτε στο keepassxc-proxy να παραθέτει όλες τις καταχωρήσεις με τον τίτλο, τη διεύθυνση URL και το UUID σε συνδεδεμένες βάσεις δεδομένων. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Να επιτρέπεται περιορισμένη πρόσβαση σε όλες τις καταχωρήσεις σε συνδεδεμένες βάσεις δεδομένων (αγνοεί τους περιορισμούς πρόσβασης στον ιστότοπο) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Προειδοποίηση:</b> Προσαρμόστε αυτές τις ρυθμίσεις μόνο εάν είναι απαραίτητο. + + + The custom proxy location does not exist. + Η προσαρμοσμένη τοποθεσία διακομιστή μεσολάβησης δεν υπάρχει. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Σφάλμα:</b> Η προσαρμοσμένη τοποθεσία διακομιστή μεσολάβησης δεν υπάρχει. Διορθώστε το στην καρτέλα ρυθμίσεων για προχωρημένους. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Σφάλμα:</b> Το εγκατεστημένο εκτελέσιμο αρχείο διακομιστή μεσολάβησης λείπει από την αναμενόμενη τοποθεσία: %1<br/>Ορίστε μια προσαρμοσμένη τοποθεσία διακομιστή μεσολάβησης στις ρυθμίσεις για προχωρημένους ή εγκαταστήστε ξανά την εφαρμογή. + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1188,14 +1323,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Εισαγωγή πεδίων CSV - - - filename - όνομα αρχείου - size, rows, columns μέγεθος, γραμμές, στήλες @@ -1304,51 +1431,43 @@ Would you like to migrate your existing settings now? Column %1 Στήλη %1 - - Imported from CSV file - Εισήχθη από αρχείο CSV - - - Original data: - Αρχικά δεδομένα: - - - Error(s) detected in CSV file! - Εντοπίστηκαν σφάλμα(τα) στο αρχείο CSV! - [%n more message(s) skipped] [%n ακόμη μήνυμα(τα) παραλείφθηκε][%n ακόμη μηνύμα(τα) παραλείφθηκαν] - Error - Σφάλμα + Failed to parse CSV file: %1 + Απέτυχε η ανάλυση του αρχείου CSV: %1 - CSV import: writer has errors: -%1 - Εισαγωγή CSV: ο γραφέας έχει λάθη: -%1 + Imported from CSV file: %1 + Εισήχθη από αρχείο CSV: %1 + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Ετικέτες CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n bytes - %n row(s) - %n γραμμή%n γραμμές + CSV row count + %n σειρά(ες)%n σειρά(ες) %n column(s) - %n στήλη%n στήλες + CSV column count + %n στήλη(ες)%n στήλη(ες) @@ -1400,6 +1519,14 @@ Backup database located at %2 Recycle Bin Κάδος Ανακύκλωσης + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1422,40 +1549,10 @@ Backup database located at %2 Password field Πεδίο κωδικού πρόσβασης - - Enter Additional Credentials (if any): - Εισαγάγετε Πρόσθετα Διαπιστευτήρια (εάν υπάρχουν): - - - Key File: - Αρχείο Κλειδί: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Εκτός από έναν κωδικό πρόσβασης, μπορείτε να χρησιμοποιήσετε ένα μυστικό αρχείο για να βελτιώσετε την ασφάλεια της βάσης δεδομένων σας. Αυτό το αρχείο μπορεί να δημιουργηθεί στις ρυθμίσεις ασφαλείας της βάσης δεδομένων σας.</p><p>Αυτό <strong>δεν</strong> είναι το αρχείο βάσης δεδομένων σας *.kdbx!<br>Εάν δεν έχετε αρχείο κλειδί, αφήστε αυτό το πεδίο κενό.</p><p>Κάντε κλικ για περισσότερες πληροφορίες...</p> - - - Key file help - Βοήθεια για το αρχείο κλειδί - Hardware key slot selection Επιλογή υποδοχής hardware κλειδιού - - Hardware Key: - Hardware Κλειδί: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Μπορείτε να χρησιμοποιήσετε ένα hardware κλειδί ασφαλείας, όπως ένα <strong>YubiKey</strong> ή <strong>OnlyKey</strong> με υποδοχές που έχουν ρυθμιστεί για HMAC-SHA1.</p> -<p>Κάντε κλικ για περισσότερες πληροφορίες...</p> - - - Hardware key help - Βοήθεια hardware κλειδιού - Key file to unlock the database Αρχείο κλειδί για ξεκλείδωμα της βάσης δεδομένων @@ -1468,14 +1565,6 @@ Backup database located at %2 Browse… Αναζήτηση... - - Refresh hardware tokens - Ανανέωση hardware tokens - - - Refresh - Ανανέωση - Unlock Database Ξεκλείδωμα Βάσης δεδομένων @@ -1538,14 +1627,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password Ξαναδοκιμάστε με κενό κωδικό πρόσβασης - - Failed to authenticate with Windows Hello - Απέτυχε ο έλεγχος ταυτότητας με το Windows Hello - - - Failed to authenticate with Touch ID - Απέτυχε ο έλεγχος ταυτότητας με το Touch ID - Failed to open key file: %1 Αποτυχία ανοίγματος αρχείου κλειδιού: %1 @@ -1579,22 +1660,68 @@ To prevent this error from appearing, you must go to "Database Settings / S Δεν είναι δυνατή η χρήση του αρχείου βάσης δεδομένων ως αρχείο κλειδί - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Δεν μπορείτε να χρησιμοποιήσετε το αρχείο βάσης δεδομένων ως αρχείο κλειδί. -Εάν δεν έχετε ένα αρχείο κλειδί, αφήστε το πεδίο κενό. + authenticate to access the database + έλεγχος ταυτότητας για πρόσβαση στη βάση δεδομένων - Detecting hardware keys… - Εντοπισμός hardware κλειδιών... + Failed to authenticate with Quick Unlock: %1 + Αποτυχία ελέγχου ταυτότητας με το Γρήγορο Ξεκλείδωμα: %1 - No hardware keys detected - Δεν εντοπίστηκαν hardware κλειδιά + Select Key File: + Επιλέξτε Κλειδί Αρχείου: - Select hardware key… - Επιλογή hardware κλειδιού... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Εκτός από έναν κωδικό πρόσβασης, μπορείτε να χρησιμοποιήσετε ένα μυστικό αρχείο για να βελτιώσετε την ασφάλεια της βάσης δεδομένων σας. Αυτό το αρχείο μπορεί να δημιουργηθεί στις ρυθμίσεις ασφαλείας της βάσης δεδομένων σας.</p> <p>Αυτό <strong>δεν</strong> είναι το αρχείο βάσης δεδομένων *.kdbx!</p> + + + Use hardware key [Serial: %1] + Χρησιμοποιήστε κλειδί υλικού [Serial: %1] + + + Use hardware key + Χρησιμοποιήστε κλειδί υλικού + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Το αρχείο της βάσης δεδομένων σας ΔΕΝ είναι αρχείο κλειδί! +Εάν δεν έχετε αρχείο κλειδί ή δεν ξέρετε τι είναι, δεν χρειάζεται να επιλέξετε ένα. + + + KeePassXC database file selected + Επιλέχθηκε το αρχείο βάσης δεδομένων KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Το αρχείο που επιλέξατε μοιάζει με αρχείο βάσης δεδομένων. +Ένα αρχείο βάσης δεδομένων ΔΕΝ είναι αρχείο κλειδί! + +Είστε βέβαιοι ότι θέλετε να συνεχίσετε με αυτό το αρχείο;. + + + No hardware keys found. + Δεν βρέθηκαν κλειδιά υλικού. + + + Refresh Hardware Keys + Ανανέωση Κλειδιών Υλικού + + + Click to add a key file. + Κάντε κλικ για να προσθέσετε ένα κλειδί αρχείου. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Έχω ένα αρχείο κλειδί</a> + + + Hardware keys found, but no slots are configured. + @@ -1606,10 +1733,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Ρυθμίσεις για Προχωρημένους - General Γενικά @@ -1634,6 +1757,22 @@ If you do not have a key file, please leave the field empty. Maintenance Συντήρηση + + KeeShare + KeeShare + + + Secret Service Integration + Ενσωμάτωση Secret Service + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1641,18 +1780,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings Ρυθμίσεις KeePassXC-Browser - - Convert KeePassHTTP data - Μετατροπή δεδομένων KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Μετατροπή παλαιού τύπου χαρακτηριστικά KeePassHTTP σε προσαρμοσμένα δεδομένα συμβατά με KeePassXC-Browser - - - Refresh database root group ID - Ανανέωση του ριζικού ID ομάδας της βάσης δεδομένων - Disconnect all browsers Αποσύνδεση όλων των προγραμμάτων περιήγησης @@ -1661,6 +1788,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries Ξεχάστε όλες τις ρυθμίσεις που αφορούν τον ιστότοπο στις καταχωρήσεις + + Refresh database root group ID + Ανανέωση του ριζικού ID ομάδας της βάσης δεδομένων + Stored keys Αποθηκευμένα κλειδιά @@ -1709,18 +1840,10 @@ This may prevent connection to the browser plugin. Θέλετε πραγματικά να αποσυνδέσετε όλα τα προγράμματα περιήγησης; Αυτό μπορεί να εμποδίσει τη σύνδεση με το πρόσθετο του προγράμματος περιήγησης. - - KeePassXC: No keys found - KeePassXC: Δεν βρέθηκαν κλειδιά - No shared encryption keys found in KeePassXC settings. Δεν βρέθηκαν κοινόχρηστα κλειδιά κρυπτογράφησης στις ρυθμίσεις KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Καταργήθηκαν κλειδιά από τη βάση δεδομένων - Successfully removed %n encryption key(s) from KeePassXC settings. Καταργήθηκε με επιτυχία %n κλειδί κρυπτογράφησης από τις ρυθμίσεις KeePassXC.Καταργήθηκαν με επιτυχία %n κλειδιά κρυπτογράφησης από τις ρυθμίσεις KeePassXC. @@ -1739,32 +1862,14 @@ Permissions to access entries will be revoked. Abort Ματαίωση - - KeePassXC: Removed permissions - KeePassXC: Καταργήθηκαν τα δικαιώματα - Successfully removed permissions from %n entry(s). Επιτυχής κατάργηση δικαιωμάτων από %n καταχώρηση.Επιτυχής κατάργηση δικαιωμάτων από %n καταχωρήσεις. - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Θέλετε πραγματικά να μετατρέψετε όλα τα δεδομένα ενοποίησης του προγράμματος περιήγησης παλαιού τύπου στα πιο πρόσφατα πρότυπα; -Αυτό είναι απαραίτητο για τη διατήρηση της συμβατότητας με το πρόσθετο του προγράμματος περιήγησης. - Refresh database ID Ανανέωση ID βάσης δεδομένων @@ -1775,6 +1880,26 @@ This is only necessary if your database is a copy of another and the browser ext Θέλετε πραγματικά να ανανεώσετε το ID βάσης δεδομένων; Αυτό είναι απαραίτητο μόνο εάν η βάση δεδομένων σας είναι αντίγραφο ενός άλλου και το πρόσθετο του προγράμματος περιήγησης δεν μπορεί να συνδεθεί. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Μετατροπή παλαιού τύπου χαρακτηριστικά KeePassHTTP σε προσαρμοσμένα δεδομένα συμβατά με KeePassXC-Browser + + + No keys found + Δεν βρέθηκαν κλειδιά + + + Removed keys from database + Αφαιρέθηκαν τα κλειδιά από τη βάση δεδομένων + + + Removed permissions + Αφαιρέθηκαν άδειες + + + No entry with permissions found! + Δεν βρέθηκε καμία καταχώρηση με δικαιώματα! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1939,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Η αλλαγή των διαπιστευτηρίων βάσης δεδομένων απέτυχε + + Weak password + Αδύναμος κωδικός πρόσβασης + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Αυτός είναι ένας αδύναμος κωδικός πρόσβασης! Για καλύτερη προστασία των μυστικών σας, θα πρέπει να επιλέξετε έναν ισχυρότερο κωδικό πρόσβασης. + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1821,14 +1958,6 @@ Are you sure you want to continue without a password? Decryption Time: Χρόνος Αποκρυπτογράφησης: - - Change existing decryption time - Αλλαγή του υπάρχοντος χρόνου αποκρυπτογράφησης - - - Change - Αλλαγή - Decryption time in seconds Χρόνος αποκρυπτογράφησης σε δευτερόλεπτα @@ -1909,11 +2038,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - Αμετάβλητο - Number of rounds too high Key transformation rounds @@ -1966,6 +2090,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) νήμα νήματα + + Encryption Settings: + Ρυθμίσεις Κρυπτογράφησης: + + + Basic + Βασικές + + + Advanced + Για προχωρημένους + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2160,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Μέγιστος αριθμός στοιχείων ιστορικού ανά καταχώρηση - - Max. history items: - Μέγιστος αριθμός στοιχείων ιστορικού: - Maximum size of history per entry Μέγιστο μέγεθος ιστορικού ανά καταχώρηση - - Max. history size: - Μέγιστο μέγεθος ιστορικού: - MiB MiB @@ -2066,6 +2194,108 @@ This action is not reversible. (old) (παλιό) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Κατά την αποθήκευση αυτής της ρύθμισης ή την επεξεργασία μιας καταχώρησης +τα παλαιότερα στοιχεία ιστορικού μιας καταχώρησης θα έχουν +αφαιρεθεί έτσι ώστε μόνο το καθορισμένο ποσό +των καταχωρήσεων να παραμείνει το πολύ. + + + Limit the amount of history items per entry to: + Περιορίστε τον αριθμό των στοιχείων ιστορικού ανά καταχώρηση σε: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Κατά την αποθήκευση αυτής της ρύθμισης ή την επεξεργασία μιας καταχώρησης +τα παλαιότερα στοιχεία ιστορικού μιας καταχώρησης θα έχουν +καταργηθεί έτσι ώστε τα υπόλοιπα στοιχεία ιστορικού +προστεθούν στο καθορισμένο ποσό το πολύ. + + + Limit the total size of history items per entry to: + Περιορίστε το συνολικό μέγεθος των στοιχείων ιστορικού ανά καταχώρηση σε: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Μετακινήστε τις καταχωρήσεις σε μια ομάδα κάδου ανακύκλωσης +αντί να τις διαγράψετε από τη βάση δεδομένων. +Οι καταχωρήσεις που έχουν διαγραφεί από τον κάδο ανακύκλωσης θα έχουν +αφαιρεθεί από τη βάση δεδομένων. + + + Autosave delay since last change + Καθυστέρηση αυτόματης αποθήκευσης από την τελευταία αλλαγή + + + Autosave delay + Καθυστέρηση αυτόματης αποθήκευσης + + + Autosave delay since last change in minutes + Καθυστέρηση αυτόματης αποθήκευσης από την τελευταία αλλαγή σε λεπτά + + + min + min + + + Autosave delay since last change checkbox + Καθυστέρηση αυτόματης αποθήκευσης από την τελευταία αλλαγή του checkbox + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Καθαρισμός + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2391,129 @@ This action is not reversible. Πεδίο περιγραφής βάσης δεδομένων + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Αφαίρεση + + + Command Settings + + + + Name + Όνομα + + + Save + Αποθήκευση + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + δευτερόλεπτα + + DatabaseTabWidget @@ -2193,26 +2546,10 @@ This is definitely a bug, please report it to the developers. CSV file Αρχείο CSV - - Select CSV file - Επιλογή αρχείου CSV - Merge database Συγχώνευση βάσης δεδομένων - - KeePass 1 database - Βάση δεδομένων KeePass 1 - - - Open KeePass 1 database - Άνοιγμα βάσης δεδομένων KeePass 1 - - - Open OPVault - Άνοιγμα OPVault - Export database to CSV file Εξαγωγή βάσης δεδομένων σε αρχείο CSV @@ -2225,6 +2562,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. Η εγγραφή του αρχείου HTML απέτυχε. + + Export database to XML file + Εξαγωγή βάσης δεδομένων σε αρχείο XML + + + XML file + Αρχείο XML + + + Writing the XML file failed + Η εγγραφή του αρχείου XML απέτυχε + Export Confirmation Επιβεβαίωση Εξαγωγής @@ -2233,26 +2582,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Πρόκειται να εξαγάγετε τη βάση δεδομένων σας σε ένα μη κρυπτογραφημένο αρχείο. Αυτό θα αφήσει τους κωδικούς πρόσβασης και τις ευαίσθητες πληροφορίες σας ευάλωτα! Είστε βέβαιοι ότι θέλετε να συνεχίσετε; - - New Database - Νέα Βάση Δεδομένων - - - %1 [New Database] - Database tab name modifier - %1 [Νέα Βάση Δεδομένων] - %1 [Locked] Database tab name modifier %1 [Κλειδωμένη] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - Ετικέτες Βάσης δεδομένων + Searches and Tags + Αναζητήσεις και Ετικέτες Searching… @@ -2302,6 +2647,10 @@ This is definitely a bug, please report it to the developers. Expired entries Ληγμένες καταχωρήσεις + + Entries expiring within %1 day(s) + Καταχωρήσεις που λήγουν εντός %1 ημεράς(ών)Καταχωρήσεις που λήγουν εντός %1 ημεράς(ών) + No current database. Δεν υπάρχει τρέχουσα βάση δεδομένων. @@ -2326,6 +2675,18 @@ This is definitely a bug, please report it to the developers. No Results Δεν υπάρχουν Αποτελέσματα + + Save + Αποθήκευση + + + Enter a unique name or overwrite an existing search from the list: + Εισαγάγετε ένα μοναδικό όνομα ή αντικαταστήστε μια υπάρχουσα αναζήτηση από τη λίστα: + + + Save Search + Αποθήκευση Αναζήτησης + Lock Database? Κλείδωμα Βάσης Δεδομένων; @@ -2354,26 +2715,6 @@ Save changes? 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? - Το αρχείο βάσης δεδομένων έχει αλλάξει και έχετε μη αποθηκευμένες αλλαγές. -Θέλετε να συγχωνεύσετε τις αλλαγές σας; - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Δεν ήταν δυνατό το άνοιγμα του νέου αρχείου βάσης δεδομένων κατά την προσπάθεια αυτόματης φόρτωσης. -Σφάλμα: %1 - Disable safe saves? Απενεργοποίηση ασφαλών αποθηκεύσεων; @@ -2416,9 +2757,94 @@ Disable safe saves and try again? Could not find database file: %1 Δεν ήταν δυνατή η εύρεση του αρχείου βάσης δεδομένων: %1 - - Entries expiring within %1 day(s) - Καταχωρήσεις που λήγουν εντός %1 ημεράς(ών)Καταχωρήσεις που λήγουν εντός %1 ημεράς(ών) + + New Database + Νέα Βάση Δεδομένων + + + %1 [New Database] + Database tab name modifier + %1 [Νέα Βάση Δεδομένων] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Λήψη... + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2471,10 +2897,6 @@ Disable safe saves and try again? n/a n/a - - (encrypted) - (κρυπτογραφημένο) - Select private key Επιλέξτε ιδιωτικό κλειδί @@ -2561,6 +2983,10 @@ Would you like to correct it? Hide Απόκρυψη + + %n hour(s) + %n ώρα(-ες)%n ώρα(-ες) + %n week(s) %n εβδομάδα%n εβδομάδες @@ -2573,9 +2999,9 @@ Would you like to correct it? %n year(s) %n χρόνος%n χρόνια - - %n hour(s) - %n ώρα(-ες)%n ώρα(-ες) + + Failed to decrypt SSH key, ensure password is correct. + @@ -2695,10 +3121,20 @@ Would you like to correct it? Add new window association Προσθήκη νέας συσχέτισης παραθύρου + + + + Add item + + + Remove selected window association Κατάργηση επιλεγμένης συσχέτισης παραθύρου + + - + Remove item + - + Window title: Τίτλος Παραθύρου: @@ -2723,23 +3159,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Προσαρμοσμένη ακολουθία Αυτόματης Πληκτρολόγησης για αυτό το παράθυρο - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Αυτές οι ρυθμίσεις επηρεάζουν τη συμπεριφορά της καταχώρησης με την επέκταση του προγράμματος περιήγησης. - General Γενικά @@ -2752,26 +3174,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Παράλειψη Αυτόματης Υποβολής για αυτήν την καταχώρηση - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Μόνο αποστολή αυτής της ρύθμισης στο πρόγραμμα περιήγησης για παράθυρα διαλόγου HTTP Auth. Εάν ενεργοποιηθεί, οι κανονικές φόρμες σύνδεσης δεν θα εμφανίζουν αυτήν την καταχώρηση για επιλογή. - Use this entry only with HTTP Basic Auth Χρήση αυτής της καταχώρησης μόνο με HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Μην στέλνετε αυτήν τη ρύθμιση στο πρόγραμμα περιήγησης για παράθυρα διαλόγου HTTP Auth. Εάν είναι ενεργοποιημένο, τα παράθυρα διαλόγου HTTP Auth δεν θα εμφανίζουν αυτήν την καταχώρηση για επιλογή. - Do not use this entry with HTTP Basic Auth Μην χρησιμοποιείτε αυτήν την καταχώρηση με το HTTP Basic Auth - - Additional URL's - Πρόσθετες διευθύνσεις URL - Add Προσθήκη @@ -2784,6 +3194,22 @@ Would you like to correct it? Edit Επεξεργασία + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2834,22 +3260,10 @@ Would you like to correct it? Notes field Πεδίο σημειώσεων - - Toggle the checkbox to reveal the notes section. - Εναλλαγή του πλαισίου ελέγχου για να εμφανιστεί η ενότητα σημειώσεων. - Username field Πεδίο ονόματος χρήστη - - Toggle notes visible - Εναλλαγή ορατών σημειώσεων - - - Notes: - Σημειώσεις: - Expiration field Πεδίο λήξης @@ -2866,14 +3280,6 @@ Would you like to correct it? Presets Προεπιλογές - - Password: - Κωδικό πρόσβασης: - - - URL: - URL: - Url field Πεδίο URL @@ -2882,18 +3288,10 @@ Would you like to correct it? Download favicon for URL Λήψη favicon για διεύθυνση URL - - Title: - Τίτλος: - Title field Πεδίο τίτλου - - Username: - Όνομα χρήστη: - Password field Πεδίο κωδικού πρόσβασης @@ -2902,18 +3300,42 @@ Would you like to correct it? Toggle expiration Εναλλαγή λήξης - - Expires: - Λήγει: - - - Tags: - Ετικέτες: - Tags list Λίστα ετικετών + + &Username: + &Όνομα χρήστη: + + + &Title: + &Τίτλος: + + + &Password: + &Κωδικός πρόσβασης: + + + UR&L: + UR&L: + + + &Notes: + &Σημειώσεις: + + + Toggle notes visibility + Εναλλαγή ορατότητας σημειώσεων + + + T&ags: + T &ags: + + + &Expires: + &Λήγει: + EditEntryWidgetSSHAgent @@ -2953,19 +3375,6 @@ Would you like to correct it? Private key Ιδιωτικό κλειδί - - External file - Εξωτερικό αρχείο - - - Browser for key file - Πρόγραμμα περιήγησης για αρχείο κλειδί - - - Browse… - Button for opening file dialog - Αναζήτηση... - Attachment Συνημμένο @@ -2982,6 +3391,23 @@ Would you like to correct it? Remove from agent Κατάργηση από agent + + External file + Εξωτερικό αρχείο + + + Browser for key file + Πρόγραμμα περιήγησης για αρχείο κλειδί + + + Browse… + Button for opening file dialog + Αναζήτηση... + + + Generate + Παραγωγή + Select attachment file Επιλέξτε αρχείο συνημμένου @@ -3006,6 +3432,10 @@ Would you like to correct it? seconds δευτερόλεπτα + + Clear agent + + EditGroupWidget @@ -3017,10 +3447,6 @@ Would you like to correct it? Icon Εικονίδιο - - Browser Integration - Ενσωμάτωση Προγράμματος Περιήγησης - Properties Ιδιότητες @@ -3037,6 +3463,10 @@ Would you like to correct it? Group has unsaved changes Η ομάδα έχει μη αποθηκευμένες αλλαγές + + Browser Integration + Ενσωμάτωση Προγράμματος Περιήγησης + Enable Ενεργοποίηση @@ -3052,10 +3482,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Επεξεργασία Ομάδας - These settings affect to the group's behaviour with the browser extension. Αυτές οι ρυθμίσεις επηρεάζουν τη συμπεριφορά της ομάδας με την επέκταση του προγράμματος περιήγησης. @@ -3092,6 +3518,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups Μην χρησιμοποιείτε εναλλαγή HTTP Auth για αυτήν και υποομάδες + + Omit WWW subdomain from matching: + Παράλειψη του υποτομέα WWW από την αντιστοίχιση: + + + Omit WWW subdomain from matching toggle for this and sub groups + Παραλείψτε τον υποτομέα WWW από την αντιστοίχιση εναλλαγής για αυτήν και τις υποομάδες + + + Restrict matching to given browser key: + Περιορίστε την αντιστοίχιση στον δοσμένο κλειδί προγράμματος περιήγησης. + + + Restrict matching to given browser key toggle for this and sub groups + Περιορίστε την αντιστοίχιση στην εναλλαγή του δοσμένου κλειδιού προγράμματος περιήγησης για αυτό και τις υποομάδες. + EditGroupWidgetKeeShare @@ -3324,10 +3766,6 @@ Supported extensions are: %1. Unable to fetch favicon. Αδυναμία λήψης favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Μπορείτε να ενεργοποιήσετε την υπηρεσία εικονιδίου ιστότοπου DuckDuckGo στην περιοχή Εργαλεία -> Ρυθμίσεις -> Ασφάλεια - Existing icon selected. Επιλέχθηκε το υπάρχον εικονίδιο. @@ -3360,6 +3798,10 @@ Supported extensions are: %1. The following icon(s) failed: Το ακόλουθο εικονίδιο απέτυχε:Τα ακόλουθα εικονίδια απέτυχαν: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Μπορείτε να ενεργοποιήσετε την υπηρεσία εικονιδίων ιστότοπου DuckDuckGo στην περιοχή Ρυθμίσεις εφαρμογής -> Ασφάλεια + EditWidgetProperties @@ -3436,6 +3878,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Κλώνος + + Passkey + Passkey + + + Invalid conversion type: %1 + Μη έγκυρος τύπος μετατροπής: %1 + + + Invalid conversion syntax: %1 + Μη έγκυρη σύνταξη μετατροπής: %1 + + + Invalid regular expression syntax %1 +%2 + Μη έγκυρη σύνταξη κανονικής έκφρασης % 1 +%2 + EntryAttachments @@ -3444,6 +3904,21 @@ This may cause the affected plugins to malfunction. Δεν είναι δυνατό το άνοιγμα του αρχείου "%1" + + EntryAttachmentsDialog + + Form + Μορφή + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3481,14 +3956,6 @@ This may cause the affected plugins to malfunction. Remove Κατάργηση - - Rename selected attachment - Μετονομασία επιλεγμένου συνημμένου - - - Rename - Μετονομασία - Open selected attachment Άνοιγμα επιλεγμένου συνημμένου @@ -3564,12 +4031,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment Επιβεβαίωση Αντικατάστασης Συνημμένου - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Το συνημμένο "%1" υπάρχει ήδη. -Θέλετε να αντικαταστήσετε το υπάρχον συνημμένο; - Confirm Attachment Επιβεβαίωση Συνημμένου @@ -3604,6 +4065,24 @@ Error: %1 Η αποθήκευση του ενημερωμένου συνημμένου απέτυχε. Σφάλμα: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Το συνημμένο "%1" υπάρχει ήδη. +Θέλετε να αντικαταστήσετε το υπάρχον συνημμένο; + + + New + + + + Preview + Προεπισκόπηση + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3798,6 +4277,14 @@ Error: %1 Has TOTP Έχει TOTP + + Background Color + Χρώμα Φόντου + + + Group Path + + EntryPreviewWidget @@ -3818,8 +4305,8 @@ Error: %1 Κωδικό πρόσβασης - Notes - Σημειώσεις + URL + URL Expiration @@ -3838,8 +4325,8 @@ Error: %1 Όνομα χρήστη - URL - URL + Notes + Σημειώσεις Advanced @@ -3889,6 +4376,10 @@ Error: %1 Never Ποτέ + + Double click to copy value + Κάντε διπλό κλικ για να αντιγράψετε την τιμή + Enabled Ενεργοποιημένη @@ -3897,6 +4388,10 @@ Error: %1 Disabled Απενεργοποιημένη + + Double click to copy to clipboard + Κάντε διπλό κλικ για αντιγραφή στο πρόχειρο + EntryURLModel @@ -3904,6 +4399,10 @@ Error: %1 Invalid URL Μη έγκυρη διεύθυνση URL + + Duplicate URL + Διπλότυπο URL + EntryView @@ -3919,6 +4418,10 @@ Error: %1 Reset to defaults Επαναφορά στις προεπιλογές + + + %1 entry(s)... + + %1 καταχώριση(εις)...+ %1 καταχώριση(εις)... + ExportDialog @@ -4139,6 +4642,193 @@ You can enable the DuckDuckGo website icon service in the security section of th Λήψη favicons (%1/%2)... + + ImportWizard + + Import Wizard + Οδηγός Εισαγωγής + + + + ImportWizardPageReview + + WizardPage + Οδηγός Σελίδας + + + Entry count: %1 + + + + Group + Όμαδα + + + Title + Τίτλος + + + Username + Όνομα χρήστη + + + Password + Κωδικός + + + Url + Url + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Μορφή + + + Import File Selection + + + + Password: + Κωδικός: + + + Key File: + Αρχείο κλειδί: + + + Browse… + Αναζήτηση... + + + Import Into: + + + + New Database + Νέα Βάση Δεδομένων + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Άνοιγμα OPVault + + + Select import file + + + + All files + Όλα τα αρχεία + + + Key files + Αρχεία κλειδιά + + + Select key file + Επιλέξτε αρχείο κλειδί + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4573,17 +5263,6 @@ Line %2, column %3 Απέτυχε το άνοιγμα ιδιωτικού κλειδιού - - KeePass1OpenWidget - - Import KeePass1 Database - Εισαγωγή Βάσης Δεδομένων KeePass1 - - - Unable to open the database. - Δεν είναι δυνατό να ανοίξει τη βάση δεδομένων. - - KeePass1Reader @@ -4940,10 +5619,6 @@ Are you sure you want to continue with this file? &Recent Databases &Πρόσφατες Βάσεις Δεδομένων - - &Import - &Εισαγωγή - &Export &Εξαγωγή @@ -4964,6 +5639,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + Ετικέτες + &Groups &Ομάδες @@ -5008,34 +5687,18 @@ Are you sure you want to continue with this file? &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 - Προβολή ή επεξεργασία καταχώρησης - &Delete Entry… &Διαγραφή Καταχώρησης... @@ -5044,10 +5707,6 @@ Are you sure you want to continue with this file? &New Group… &Νέα Ομάδα... - - Add a new group - Προσθήκη νέας ομάδας - &Edit Group… &Επεξεργασία Ομάδας... @@ -5080,18 +5739,10 @@ Are you sure you want to continue with this file? Database &Reports… Αναφορές Βάσης Δεδομένων... - - Statistics, health check, etc. - Στατιστικά, έλεγχος υγείας κ.λπ. - &Database Settings… &Ρυθμίσεις Βάσης Δεδομένων... - - Database settings - Ρυθμίσεις βάσης δεδομένων - &Clone Entry… &Κλωνοποίηση Καταχώρησης... @@ -5100,34 +5751,18 @@ Are you sure you want to continue with this file? Move u&p Μετακίνηση επ&άνω - - Move entry one step up - Μετακίνηση καταχώρησης ένα βήμα προς τα επάνω - Move do&wn Μετακίνηση κά&τω - - Move entry one step down - Μετακίνηση καταχώρησης ένα βήμα προς τα κάτω - Copy &Username Αντιγραφή &Ονόματος χρήστη - - Copy username to clipboard - Αντιγραφή ονόματος χρήστη στο πρόχειρο - Copy &Password Αντιγραφή &Κωδικού πρόσβασης - - Copy password to clipboard - Αντιγραφή κωδικού πρόσβασης στο πρόχειρο - &Settings &Ρυθμίσεις @@ -5161,25 +5796,13 @@ Are you sure you want to continue with this file? &Τίτλος - Copy title to clipboard - Αντιγραφή τίτλου στο πρόχειρο - - - &URL - &URL - - - Copy URL to clipboard - Αντιγραφή URL στο πρόχειρο + Copy &URL + Αντιγραφή &URL &Notes &Σημειώσεις - - Copy notes to clipboard - Αντιγραφή σημειώσεων στο πρόχειρο - &CSV File… &Αρχείο CSV... @@ -5192,26 +5815,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… Βάση δεδομένων KeePass 1... - - Import a KeePass 1 database - Εισαγωγή βάσης δεδομένων KeePass 1 - 1Password Vault… Κρύπτη 1Password... - - Import a 1Password Vault - Εισαγωγή Κρύπτης 1Password - CSV File… Αρχείο CSV... - - Import a CSV file - Εισαγωγή αρχείου CSV - Show TOTP Εμφάνιση TOTP @@ -5228,6 +5839,10 @@ Are you sure you want to continue with this file? Copy &TOTP Αντιγραφή &TOTP + + Copy Password and TOTP + Αντιγραφή Κωδικού πρόσβασης και TOTP + E&mpty recycle bin Ά&δειασμα κάδου ανακύκλωσης @@ -5252,10 +5867,6 @@ Are you sure you want to continue with this file? &Online Help &Διαδικτυακή Βοήθεια - - Go to online documentation - Μεταβείτε στο διαδικτυακό εγχειρίδιο - &User Guide &Οδηγός Χρήσης @@ -5300,6 +5911,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Κλασικό (εγγενής-Πλατφόρμα) + + Show Menubar + + Show Toolbar Εμφάνιση Γραμμής Εργαλείων @@ -5324,6 +5939,10 @@ Are you sure you want to continue with this file? Clone Group... Κλωνοποίηση Ομάδας... + + &XML File… + &XML Αρχείο… + Clear history Εκκαθάριση ιστορικού @@ -5351,10 +5970,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 με Πληκτρολόγιο Οθόνης. -Σας συνιστούμε να χρησιμοποιήσετε το AppImage που είναι διαθέσιμο στη σελίδα λήψεων. + No Tags + Χωρίς Ετικέτες Restore Entry(s) @@ -5384,6 +6001,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Κλείσιμο KeePassXC + + %1 Entry(s) + % 1 Καταχώρηση(εις)% 1 Καταχώρηση(εις) + Please present or touch your YubiKey to continue… Παρακαλώ παρουσιάστε ή αγγίξτε το YubiKey για να συνεχίσετε… @@ -5396,6 +6017,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Πρέπει να επανεκκινήσετε την εφαρμογή για να εφαρμόσετε αυτήν τη ρύθμιση. Θέλετε να κάνετε επανεκκίνηση τώρα; + + Allow Screen Capture + Να επιτρέπεται η Καταγραφή Οθόνης + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + Passkeys… + + + Import Passkey + Εισαγωγή Passkey + + + Remote S&ync… + + + + Quit Application + Έξοδος Εφαρμογής + + + Open About Dialog + Ανοίξτε το πλαίσιο διαλόγου Σχετικά με + + + Open Database + Άνοιγμα Βάσης Δεδομένων + + + Create Database + Δημιουργία Βάσης Δεδομένων + + + Merge From Database + Συγχώνευση από Βάση Δεδομένων + + + Create Entry + Δημιουργία Καταχώρησης + + + Edit Entry + Επεξεργασία καταχώρησης + + + Delete Entry + Διαγραφή Καταχώρησης + + + Create Group + Δημιουργία Ομάδας + + + Edit Group + Επεξεργασία Ομάδας + + + Delete Group + Διαγραφή Ομάδας + + + Download All Favicons + Λήψη όλων των Favicons + + + Sort Groups A-Z + Ταξινόμηση Ομάδων Α-Ω + + + Sort Groups Z-A + Ταξινόμηση Ομάδων Ω-Α + + + Save Database As + Αποθήκευση Βάσης Δεδομένων ως + + + Show Database Security + Εμφάνιση Ασφάλειας Βάσης Δεδομένων + + + Show Database Reports + Εμφάνιση Αναφορών Βάσης Δεδομένων + + + Show Database Settings + Εμφάνιση Ρυθμίσεων Βάσης Δεδομένων + + + Show Passkeys + Εμφάνιση Passkeys + + + Clone Entry + Κλωνοποίηση Καταχώρησης + + + Move Entry Up + Μετακίνηση Καταχώρησης Πάνω + + + Move Entry Down + Μετακίνηση Καταχώρησης Κάτω + + + Copy Username + Αντιγραφή Ονόματος χρήστη + + + Copy Password + Αντιγραφή Κωδικού πρόσβασης + + + Show Application Settings + Εμφάνιση Ρυθμίσεων Εφαρμογής + + + Show Password Generator + Εμφάνιση Γεννήτριας Κωδικών Πρόσβασης + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + Εκτέλεση Αυτόματης-Πληκτρολόγησης: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Εκτέλεση Αυτόματης-Πληκτρολόγησης: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Εκτέλεση Αυτόματης-Πληκτρολόγησης: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Εκτέλεση Αυτόματης-Πληκτρολόγησης: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Εκτέλεση Αυτόματης-Πληκτρολόγησης: {TOTP} + + + Copy Title + Αντιγραφή Τίτλου + + + Copy URL + Αντιγραφή URL + + + Copy Notes + Αντιγραφή Σημειώσεων + + + Export to CSV + Εξαγωγή σε CSV + + + Export to HTML + Εξαγωγή σε HTML + + + Import KeePass1 Database + Εισαγωγή Βάσης Δεδομένων KeePass1 + + + Import 1Password Vault + Εισαγωγή Κρύπτης 1Password + + + Import CSV File + Εισαγωγή Αρχείου CSV + + + Show TOTP QR Code + Εμφάνιση TOTP QR Code + + + Set up TOTP + Ρύθμιση TOTP + + + Empty Recycle Bin + Άδειασμα Κάδου Ανακύκλωσης + + + Open Donation Website + Ανοίξτε την Ιστοσελίδα Δωρεάς. + + + Open Bug Report + Ανοίξτε την Αναφορά Σφαλμάτων + + + Open Online Documentation + Ανοίξτε την Online Τεκμηρίωση. + + + Open Keyboard Shortcuts Guide + Ανοίξτε τον Οδηγό Συντομεύσεων Πληκτρολογίου + + + Save Database Backup + Αποθήκευση Αντιγράφου Ασφαλείας Βάσης Δεδομένων + + + SSH Agent: Add Key + SSH Agent: Προσθήκη Κλειδιού + + + SSH Agent: Remove Key + SSH Agent: Αφαίρεση Κλειδιού + + + Toggle Compact Mode + Εναλλαγή σε Λειτουργία Συμπαγούς Προβολής + + + Set Theme: Automatic + Εφαρμογή Θέματος: Αυτόματο + + + Set Theme: Light + Ορισμός Θέματος: Φωτεινό + + + Set Theme: Dark + Ορισμός Θέματος: Σκοτεινό + + + Set Theme: Classic + Ορίσμος Θέματος: Κλασικό + + + Toggle Show Menubar + + + + Toggle Show Toolbar + Εναλλαγή Εμφάνισης Εργαλειοθήκης + + + Toggle Show Preview Panel + Εναλλαγή Εμφάνισης Πίνακα Προεπισκόπησης + + + Toggle Always on Top + Εναλλαγή Πάντα σε Πρώτο Πλάνο + + + Toggle Hide Usernames + Εναλλαγή Απόκρυψη Ονομάτων Χρηστών + + + Toggle Hide Passwords + Εναλλαγή Απόκρυψης Κωδικών + + + Export to XML + Εξαγωγή σε XML + + + Toggle Allow Screen Capture + Εναλλαγή Επιτρεπόμενης Καταγραφής Οθόνης + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Γεννήτρια Κωδικών + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5453,26 +6382,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5532,14 +6441,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Εδώ μπορείτε να προσαρμόσετε τις ρυθμίσεις κρυπτογράφησης βάσης δεδομένων. Μην ανησυχείτε, μπορείτε να τις αλλάξετε αργότερα στις ρυθμίσεις της βάσης δεδομένων. - - Advanced Settings - Ρυθμίσεις για Προχωρημένους - - - Simple Settings - Απλές Ρυθμίσεις - NewDatabaseWizardPageDatabaseKey @@ -5574,6 +6475,25 @@ We recommend you use the AppImage available on our downloads page. Συμπληρώστε το εμφανιζόμενο όνομα και μια προαιρετική περιγραφή για τη νέα σας βάση δεδομένων: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Αποθήκευση συνημμένου + + + New entry attachment + + + NixUtils @@ -5620,15 +6540,6 @@ We recommend you use the AppImage available on our downloads page. Αναμενόταν %1 bytes καθαρού κειμένου, βρέθηκαν %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Η ανάγνωση της βάσης δεδομένων δεν παρήγαγε μια διεργασία -%1 - - OpVaultReader @@ -5702,6 +6613,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Άγνωστο κρυπτογράφημα: %1 + + AES-256/GCM is currently not supported + Το AES-256/GCM δεν υποστηρίζεται αυτήν τη στιγμή + Passphrase is required to decrypt this key Απαιτείται φράση πρόσβασης για την αποκρυπτογράφηση αυτού του κλειδιού @@ -5766,28 +6681,182 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Μη αναμενόμενο EOF κατά τη σύνταξη ιδιωτικού κλειδιού + + (encrypted) + (κρυπτογραφημένο) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Οι κωδικοί πρόσβασης δεν ταιριάζουν + SSH Key Generator + Γεννήτρια Κλειδιών SSH - Passwords match so far - Οι κωδικοί πρόσβασης ταιριάζουν μέχρι στιγμής + Type + Τύπος - Toggle Password (%1) - Εναλλαγή Κωδικού Πρόσβασης (%1) + Bits + Bits - Generate Password (%1) - Δημιουργία Κωδικού Πρόσβασης (%1) + Comment + Σχόλιο + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Εξαγωγή Passkey - Warning: Caps Lock enabled! - Προειδοποίηση: Το Caps Lock είναι ενεργοποιημένο! + Filenames will be generated with title and .passkey file extension. + Τα ονόματα αρχείων θα δημιουργηθούν με τίτλο και επέκταση αρχείου .passkey. + + + Export entries + Εξαγωγή καταχωρήσεων + + + Export Selected + Εξαγωγή Επιλεγμένων + + + Cancel + Άκυρο + + + Export to folder + Εξαγωγή σε φάκελο + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Εξαγωγή Passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Το αρχείο "%1.passkey" υπάρχει ήδη. +Θέλετε να το αντικαταστήσετε; + + + + Cannot open file + Δεν είναι δυνατό το άνοιγμα του αρχείου + + + Cannot open file "%1" for writing. + Δεν είναι δυνατό το άνοιγμα του αρχείου "%1" για εγγραφή. + + + Cannot write to file + Δεν είναι δυνατή η εγγραφή στο αρχείο + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Εισαγωγή Passkey + + + Username: %1 + Όνομα χρήστη: %1 + + + Group + Όμαδα + + + Database + Βάση Δεδομένων + + + Import Passkey + Εισαγωγή Passkey + + + Import + Εισαγωγή + + + Cancel + Άκυρο + + + Entry + Καταχώρηση + + + Create new entry + Δημιουργία νέας καταχώρησης + + + Relying Party: %1 + Στηριζόμενο Party: %1 + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + Αρχείο Passkey + + + All files + Όλα τα αρχεία + + + Cannot open file + Δεν είναι δυνατό το άνοιγμα του αρχείου + + + Cannot open file "%1" for reading. + Δεν είναι δυνατό το άνοιγμα του αρχείου "%1" για ανάγνωση. + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5968,10 +7037,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Επιλέξτε επίσης από: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Εξαιρούμενοι χαρακτήρες: "0", "1", "l", "I", "O", "|", ".". - Exclude look-alike characters Εξαίρεση παρόμοιων χαρακτήρων @@ -5996,10 +7061,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Αριθμός Λέξεων: - - Character Count: - Αριθμός Χαρακτήρων: - Word Case: Κουτί Λέξεων: @@ -6012,10 +7073,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist Προσθήκη προσαρμοσμένης λίστας λέξεων - - character - χαρακτήρας - Close Κλείσιμο @@ -6052,6 +7109,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Εντροπία: %1 bit + + Password Quality: %1 + Ποιότητα Κωδικού Πρόσβασης: %1 + + + Poor + Password quality + Φτωχός + + + Weak + Password quality + Αδύναμη + + + Good + Password quality + Καλή + + + Excellent + Password quality + Εξαιρετική + Confirm Delete Wordlist Επιβεβαίωση διαγραφής λίστας λέξεων @@ -6099,13 +7180,52 @@ Do you want to overwrite it? Ειδικοί χαρακτήρες - Password Quality: %1 - Ποιότητα Κωδικού Πρόσβασης: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Οι κωδικοί πρόσβασης δεν ταιριάζουν + + + Passwords match so far + Οι κωδικοί πρόσβασης ταιριάζουν μέχρι στιγμής + + + Toggle Password (%1) + Εναλλαγή κωδικού πρόσβασης (%1) + + + Generate Password (%1) + Δημιουργία Κωδικού Πρόσβασης (%1) + + + Warning: Caps Lock enabled! + Προειδοποίηση: Το Caps Lock είναι ενεργοποιημένο! + + + Quality: %1 + Ποιότητα: %1 Poor Password quality - Φτωχός + Φτωχή Weak @@ -6122,6 +7242,10 @@ Do you want to overwrite it? Password quality Εξαιρετική + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Ενεργοποίηση ορατότητας κωδικού πρόσβασης χρησιμοποιώντας τον συνδυασμό πλήκτρων Control + H. Άνοιγμα της γεννήτριας κωδικών πρόσβασης χρησιμοποιώντας τον συνδυασμό πλήκτρων Control + G. + PickcharsDialog @@ -6138,6 +7262,21 @@ Do you want to overwrite it? Πατήστε το πλήκτρο &Τab μεταξύ χαρακτήρων + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6176,6 +7315,10 @@ Do you want to overwrite it? Continue Συνέχεια + + Continue with weak password + Συνέχεια με αδύναμο κωδικό πρόσβασης + QObject @@ -6569,6 +7712,10 @@ Do you want to overwrite it? Too many arguments provided. Παρέχονται πάρα πολλά επιχειρήματα. + + Path of the database. + Διαδρομή της βάσης δεδομένων. + Target decryption time in MS for the database. Χρόνος αποκρυπτογράφησης προορισμού σε MS για τη βάση δεδομένων. @@ -6589,10 +7736,6 @@ Do you want to overwrite it? Create a new database. Δημιουργία νέας βάσης δεδομένων. - - Path of the database. - Διαδρομή της βάσης δεδομένων. - Invalid decryption time %1. Μη έγκυρος χρόνος αποκρυπτογράφησης %1. @@ -6637,6 +7780,158 @@ Do you want to overwrite it? Successfully created new database. Επιτυχής δημιουργία βάσης δεδομένων. + + Unset the password for the database. + Καταργήστε τον κωδικό πρόσβασης για τη βάση δεδομένων. + + + Unset the key file for the database. + Καταργήστε τη ρύθμιση του αρχείου κλειδιού για τη βάση δεδομένων. + + + Edit a database. + Επεξεργαστείτε μια βάση δεδομένων. + + + Cannot use %1 and %2 at the same time. + Δεν είναι δυνατή η ταυτόχρονη χρήση %1 και %2. + + + Could not change the database key. + Δεν ήταν δυνατή η αλλαγή του κλειδιού βάσης δεδομένων. + + + Database was not modified. + Η βάση δεδομένων δεν τροποποιήθηκε. + + + Writing the database failed: %1 + Η εγγραφή της βάσης δεδομένων απέτυχε: %1 + + + Successfully edited the database. + Έγινε επιτυχής επεξεργασία της βάσης δεδομένων. + + + Cannot remove password: The database does not have a password. + Δεν είναι δυνατή η αφαίρεση κωδικού πρόσβασης: Η βάση δεδομένων δεν έχει κωδικό πρόσβασης. + + + Cannot remove file key: The database does not have a file key. + Δεν είναι δυνατή η αφαίρεση του κλειδιού αρχείου: Η βάση δεδομένων δεν διαθέτει κλειδί αρχείου. + + + Loading the new key file failed: %1 + Η φόρτωση του νέου αρχείου κλειδιού απέτυχε: %1 + + + Found unexpected Key type %1 + Βρέθηκε μη αναμενόμενος τύπος κλειδιού %1 + + + Cannot remove all the keys from a database. + Δεν είναι δυνατή η κατάργηση όλων των κλειδιών από μια βάση δεδομένων. + + + Show a database's information. + Εμφάνιση των πληροφοριών μιας βάσης δεδομένων. + + + UUID: + UUID: + + + Name: + Όνομα: + + + Description: + Περιγραφή: + + + Cipher: + Κρυπτογράφημα: + + + KDF: + KDF: + + + Recycle bin is enabled. + Ο Κάδος Ανακύκλωσης είναι ενεργοποιημένος. + + + Recycle bin is not enabled. + Ο Κάδος Ανακύκλωσης δεν είναι ενεργοποιημένος. + + + Location + Τοποθεσία + + + Database created + Δημιουργήθηκε βάση δεδομένων + + + Last saved + Τελευταία αποθήκευση + + + Unsaved changes + Μη αποθηκευμένες αλλαγές + + + yes + ναι + + + no + όχι + + + Number of groups + Αριθμός ομάδων + + + Number of entries + Αριθμός καταχωρήσεων + + + Number of expired entries + Αριθμός καταχωρήσεων που έχουν λήξει + + + Unique passwords + Μοναδικοί κωδικοί πρόσβασης + + + Non-unique passwords + Μη μοναδικοί κωδικοί πρόσβασης + + + Maximum password reuse + Μέγιστη επαναχρησιμοποίηση κωδικού πρόσβασης + + + Number of short passwords + Αριθμός μικρών κωδικών πρόσβασης + + + Number of weak passwords + Αριθμός αδύναμων κωδικών πρόσβασης + + + Entries excluded from reports + Καταχωρήσεις που εξαιρούνται από τις αναφορές + + + Average password length + Μέσο μήκος κωδικού πρόσβασης + + + %1 characters + %1 χαρακτήρες + Word count for the diceware passphrase. Πλήθος λέξεων για τη φράση πρόσβασης diceware. @@ -6660,10 +7955,6 @@ Do you want to overwrite it? Invalid word count %1 Μη έγκυρος αριθμός λέξεων %1 - - The word list is too small (< 1000 items) - Η λίστα λέξεων είναι πολύ μικρή (< 1000 στοιχεία) - Title for the entry. Τίτλος για την καταχώρηση. @@ -6688,10 +7979,6 @@ Do you want to overwrite it? Enter new password for entry: Εισαγάγετε νέο κωδικό πρόσβασης για καταχώρηση: - - Writing the database failed: %1 - Η εγγραφή της βάσης δεδομένων απέτυχε: %1 - Successfully edited entry %1. Η καταχώριση %1 επεξεργάστηκε με επιτυχία. @@ -6812,10 +8099,6 @@ Do you want to overwrite it? Exit interactive mode. Έξοδος από διαδραστική λειτουργία. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Μορφή για χρήση κατά την εξαγωγή. Οι διαθέσιμες επιλογές είναι «xml» ή «csv». Προεπιλογή σε "xml". - Exports the content of a database to standard output in the specified format. Εξάγει το περιεχόμενο μιας βάσης δεδομένων σε τυπική έξοδο στην καθορισμένη μορφή. @@ -6916,106 +8199,6 @@ Do you want to overwrite it? Successfully imported database. Επιτυχής εισαγωγή βάσης δεδομένων. - - Show a database's information. - Εμφάνιση των πληροφοριών μιας βάσης δεδομένων. - - - UUID: - UUID: - - - Name: - Όνομα: - - - Description: - Περιγραφή: - - - Cipher: - Κρυπτογράφημα: - - - KDF: - KDF: - - - Recycle bin is enabled. - Ο Κάδος Ανακύκλωσης είναι ενεργοποιημένος. - - - Recycle bin is not enabled. - Ο Κάδος Ανακύκλωσης δεν είναι ενεργοποιημένος. - - - Location - Τοποθεσία - - - Database created - Δημιουργήθηκε βάση δεδομένων - - - Last saved - Τελευταία αποθήκευση - - - Unsaved changes - Μη αποθηκευμένες αλλαγές - - - yes - ναι - - - no - όχι - - - Number of groups - Αριθμός ομάδων - - - Number of entries - Αριθμός καταχωρήσεων - - - Number of expired entries - Αριθμός καταχωρήσεων που έχουν λήξει - - - Unique passwords - Μοναδικοί κωδικοί πρόσβασης - - - Non-unique passwords - Μη μοναδικοί κωδικοί πρόσβασης - - - Maximum password reuse - Μέγιστη επαναχρησιμοποίηση κωδικού πρόσβασης - - - Number of short passwords - Αριθμός μικρών κωδικών πρόσβασης - - - Number of weak passwords - Αριθμός αδύναμων κωδικών πρόσβασης - - - Entries excluded from reports - Καταχωρήσεις που εξαιρούνται από τις αναφορές - - - Average password length - Μέσο μήκος κωδικού πρόσβασης - - - %1 characters - %1 χαρακτήρες - Unknown command %1 Άγνωστη εντολή %1 @@ -7188,6 +8371,10 @@ Available commands: Show the protected attributes in clear text. Εμφάνιση των προστατευμένων χαρακτηριστικών σε καθαρό κείμενο. + + Show all the attributes of the entry. + Εμφάνιση όλων των χαρακτηριστικών της καταχώρησης. + Show the attachments of the entry. Εμφάνιση των συνημμένων της καταχώρησης. @@ -7258,6 +8445,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Μη έγκυρος σειριακός αριθμός YubiKey %1 + + Please present or touch your YubiKey to continue. + Παρακαλώ παρουσιάστε ή αγγίξτε το YubiKey για να συνεχίσετε. + Enter password to encrypt database (optional): Εισαγάγετε κωδικό πρόσβασης για την κρυπτογράφηση της βάσης δεδομένων (προαιρετικά): @@ -7445,8 +8636,8 @@ Kernel: %3 %4 %1 λεπτό%1 λεπτά - Botan library must be at least 2.11.x, found %1.%2.%3 - Η Botan βιβλιοθήκη πρέπει να είναι τουλάχιστον 2.11.x, βρέθηκε %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Η βιβλιοθήκη Botan πρέπει να είναι τουλάχιστον %1, βρέθηκε %2.%3.%4 Cryptographic libraries: @@ -7496,18 +8687,6 @@ Kernel: %3 %4 file empty κενό αρχείο - - malformed string - παραμορφωμένο string - - - missing closing quote - Λείπει το τελείωμα αποσπάσματος - - - %1: (row, col) %2,%3 - %1: (γραμμή, στήλη) %2,%3 - AES 256-bit AES 256-bit @@ -7686,14 +8865,6 @@ Kernel: %3 %4 read password of the database from stdin διαβάστε τον κωδικό πρόσβασης της βάσης δεδομένων από το stdin - - allow app screen recordering and screenshots - Να επιτρέπεται η εγγραφή οθόνης εφαρμογών και τα στιγμιότυπα οθόνης - - - Locked databases. - Κλειδωμένες βάσεις δεδομένων. - Database failed to lock. Απέτυχε το κλείδωμα της βάσης δεδομένων. @@ -7702,6 +8873,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Μία άλλη διεργασία του KeePassXC εκτελείται ήδη. + + KeePassXC is not running. No open database to lock + Το KeePassXC δεν εκτελείται. Δεν υπάρχει ανοιχτή βάση δεδομένων για κλείδωμα + Fatal error while testing the cryptographic functions. Ανεπανόρθωτο σφάλμα κατά τον έλεγχο των κρυπτογραφικών συναρτήσεων. @@ -7710,10 +8885,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Σφάλμα - - Warning: Failed to prevent screenshots on a top level window! - Προειδοποίηση: Απέτυχε η αποτροπή στιγμιότυπων οθόνης σε ένα παράθυρο ανώτατου επιπέδου! - Database password: Κωδικός πρόσβασης βάσης δεδομένων: @@ -7737,8 +8908,311 @@ Kernel: %3 %4 Απέτυχε η υπογραφή πρόκλησης χρησιμοποιώντας το Windows Hello. - Please present or touch your YubiKey to continue. - Παρακαλώ παρουσιάστε ή αγγίξτε το YubiKey για να συνεχίσετε. + Warning: Failed to block screenshot capture on a top-level window. + Προειδοποίηση: Αποτυχία αποκλεισμού λήψης στιγμιότυπου οθόνης σε παράθυρο ανώτατου επιπέδου. + + + Invalid Cipher + Μη έγκυρη Κρυπτογράφηση + + + Invalid KDF + Μη έγκυρο KDF + + + Access to all entries is denied + Η πρόσβαση σε όλες τις καταχωρήσεις απαγορεύεται + + + allow screenshots and app recording (Windows/macOS) + να επιτρέπονται στιγμιότυπα οθόνης και εφαρμογές εγγραφής (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + Η πιστοποίηση δεν υποστηρίζεται + + + Credential is excluded + Τα διαπιστευτήρια εξαιρούνται + + + Passkeys request canceled + Το αίτημα Passkeys ακυρώθηκε + + + Invalid user verification + Μη έγκυρη επαλήθευση χρήστη + + + Empty public key + Κενό δημόσιο κλειδί + + + Invalid URL provided + Παρέχεται μη έγκυρη διεύθυνση URL + + + Passkeys + Passkeys + + + AES initialization failed + Η προετοιμασία του AES απέτυχε + + + AES encrypt failed + Η κρυπτογράφηση AES απέτυχε + + + Failed to store in Linux Keyring + Αποτυχία αποθήκευσης στο Linux Keyring + + + Polkit returned an error: %1 + Το Polkit επέστρεψε σφάλμα: %1 + + + Could not locate key in keyring + Δεν ήταν δυνατός ο εντοπισμός κλειδιού στο keyring + + + Could not read key in keyring + Δεν ήταν δυνατή η ανάγνωση του κλειδιού στο keyring + + + AES decrypt failed + Η αποκρυπτογράφηση AES απέτυχε + + + No Polkit authentication agent was available + Δεν υπήρχε διαθέσιμος παράγοντας ελέγχου ταυτότητας Polkit + + + Polkit authorization failed + Η εξουσιοδότηση Polkit απέτυχε + + + No Quick Unlock provider is available + Δεν υπάρχει διαθέσιμη υπηρεσία παροχής Γρήγορου Ξεκλειδώματος + + + Failed to init KeePassXC crypto. + Αποτυχία εκκίνησης κρυπτογράφησης KeePassXC. + + + Failed to encrypt key data. + Αποτυχία κρυπτογράφησης βασικών δεδομένων. + + + Failed to get Windows Hello credential. + Αποτυχία λήψης διαπιστευτηρίων Windows Hello. + + + Failed to decrypt key data. + Αποτυχία αποκρυπτογράφηση βασικών δεδομένων. + + + Origin is empty or not allowed + Η προέλευση είναι κενή ή δεν επιτρέπεται + + + Effective domain is not a valid domain + Ο αποτελεσματικός τομέας δεν είναι έγκυρος τομέας + + + Origin and RP ID do not match + Η προέλευση και το RP ID δεν ταιριάζουν + + + No supported algorithms were provided + Δεν παρέχονται υποστηριζόμενοι αλγόριθμοι + + + Wait for timer to expire + Περιμένετε να λήξει ο χρονοδιακόπτης + + + Challenge is shorter than required minimum length + Η πρόκληση είναι μικρότερη από το απαιτούμενο ελάχιστο μήκος + + + user.id does not match the required length + ο αριθμός ταυτότητας του χρήστη δεν αντιστοιχεί στο απαιτούμενο μήκος + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + Εισάγετε Συντόμευση + + + Action + Ενέργεια + + + Shortcuts + Συντομεύσεις + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + Επαναφορά Συντομεύσεων + + + Double click an action to change its shortcut + Κάντε διπλό κλικ σε μια ενέργεια για να αλλάξετε τη συντόμευσή της. + + + Filter... + Φίλτρο... + + + Shortcut Conflict + Διένεξη Συντομεύσεων + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Η συντόμευση %1 έρχεται σε διένεξη με την '%2'. Να αντικατασταθεί η συντόμευση; + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Διαγραφή δεδομένων πρόσθετου; + + + Delete plugin data from Entry(s)? + + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Ετικέτες @@ -7775,20 +9249,39 @@ Kernel: %3 %4 Εσωτερικό σφάλμα zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Εξαίρεση ληγμένων καταχωρήσεων από την αναφορά - - - Show only entries which have URL set - Εμφάνιση μόνο καταχωρήσεων που έχουν οριστεί URL - - - Show only entries which have browser settings in custom data - Εμφάνιση μόνο καταχωρήσεων που έχουν ρυθμίσεις προγράμματος περιήγησης σε προσαρμοσμένα δεδομένα - Double-click entries to edit. Κάντε διπλό κλικ στις καταχωρήσεις για επεξεργασία. @@ -7853,44 +9346,53 @@ Kernel: %3 %4 Exclude from reports Εξαίρεση από αναφορές + + Expire Entry(s)… + + + + Only show entries that have a URL + Εμφάνιση μόνο καταχωρίσεων που έχουν διεύθυνση URL + + + Only show entries that have been explicitly allowed or denied + Εμφάνιση μόνο καταχωρήσεων που έχουν επιτραπεί ή απορριφθεί ρητά + + + Show expired entries + Εμφάνιση καταχωρήσεων που έχουν λήξει + + + (Expired) + (Εχει λήξει) + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - Εξαίρεση ληγμένων καταχωρήσεων από την αναφορά + Show expired entries + Εμφάνιση καταχωρήσεων που έχουν λήξει - Also show entries that have been excluded from reports - Εμφάνιση επίσης καταχωρήσεων που έχουν εξαιρεθεί από αναφορές + (Expired) + (Εχει λήξει) Hover over reason to show additional details. Double-click entries to edit. Τοποθετήστε το δείκτη του ποντικιού για να εμφανίσετε επιπλέον λεπτομέρειες. Κάντε διπλό κλικ στις καταχωρήσεις για επεξεργασία. - - Bad - Password quality - Κακός - Bad — password must be changed κακός — ο κωδικός πρόσβασης πρέπει να αλλάξει - - Poor - Password quality - Φτωχός - Poor — password should be changed Φτωχός — ο κωδικός πρόσβασης πρέπει να αλλάξει - - Weak - Password quality - Αδύναμος - Weak — consider changing the password Αδύναμος — εξετάστε το ενδεχόμενο αλλαγής του κωδικού πρόσβασης @@ -7939,6 +9441,14 @@ Kernel: %3 %4 Exclude from reports Εξαίρεση από αναφορές + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Εμφάνιση καταχωρήσεων που έχουν εξαιρεθεί από τις αναφορές + ReportsWidgetHibp @@ -8034,6 +9544,77 @@ Kernel: %3 %4 Exclude from reports Εξαίρεση από αναφορές + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Εξαγωγή + + + Import + Εισαγωγή + + + List of entry URLs + Λίστα διευθύνσεων URL καταχώρησης + + + Title + Τίτλος + + + Path + Διαδρομή + + + Username + Όνομα χρήστη + + + URLs + Διευθύνσεις URL + + + Edit Entry… + Επεξεργασία Καταχώρησης... + + + Delete Entry(s)… + Διαγραφή καταχώρησης;Διαγραφή καταχωρήσεων; + + + Relying Party + Στηριζόμενο Party + + + Show expired entries + Εμφάνιση καταχωρήσεων που έχουν λήξει + + + (Expired) + (Εχει λήξει) + + + Export Confirmation + Επιβεβαίωση Εξαγωγής + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8208,6 +9789,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Κανένας agent δεν εκτελείται, δεν μπορεί να αναφέρει τις ταυτότητες. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8274,6 +9863,10 @@ Kernel: %3 %4 Search Help Βοήθεια αναζήτησης + + Save Search + Αποθήκευση Αναζήτησης + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8348,34 +9941,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Επιβεβαίωση κατά την ανάκτηση κωδικών πρόσβασης από προγράμματα-πελάτες - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Αυτή η ρύθμιση δεν - παρακάμπτει την απενεργοποίηση των προτροπών του Κάδου Ανακύκλωσης</span></p></body></html> - - Confirm when clients request entry deletion Επιβεβαίωση όταν τα προγρμμάτα-πελάτες ζητούν διαγραφή καταχώρησης - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Αυτό βελτιώνει τη συμβατότητα με ορισμένες εφαρμογές - που αναζητούν πρώτα κωδικό πρόσβασης χωρίς να ξεκλειδώσουν τη βάση δεδομένων.</p><p>Αλλά η ενεργοποίηση αυτού μπορεί επίσης να - crasharει τον client, εάν η βάση δεδομένων δεν μπορεί να ξεκλειδωθεί μέσα σε ένα συγκεκριμένο χρονικό διάστημα. (Συνήθως 25s, αλλά μπορεί να είναι - διαφορετική τιμή που έχει οριστεί σε εφαρμογές.)</p></body></html> - - Prompt to unlock database before searching Προτροπή για ξεκλείδωμα βάσης δεδομένων πριν από την αναζήτηση @@ -8400,6 +9969,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Αποθηκεύστε τις τρέχουσες αλλαγές για να ενεργοποιήσετε το πρόσθετο και να ενεργοποιήσετε την επεξεργασία αυτής της ενότητας. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8508,8 +10085,12 @@ Kernel: %3 %4 TagModel - All - Όλες + Clear Search + Εκκαθάριση Αναζήτησης + + + All Entries + Όλες οι Καταχωρήσεις Expired @@ -8520,6 +10101,25 @@ Kernel: %3 %4 Αδύναμοι Κωδικοί πρόσβασης + + TagView + + Remove Search + Κατάργηση Αναζήτησης + + + Remove Tag + Κατάργηση Ετικέτας + + + Confirm Remove Tag + Επιβεβαιώστε την Κατάργηση Ετικέτας + + + Remove tag "%1" from all entries in this database? + Να καταργηθεί η ετικέτα "%1" από όλες τις καταχωρήσεις σε αυτήν τη βάση δεδομένων; + + TotpDialog @@ -8677,26 +10277,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Ξεκινήστε να αποθηκεύετε τους κωδικούς σας με ασφάλεια σε μία βάση δεδομένων KeePassXC - - Create new database - Δημιουργία νέας βάσης δεδομένων - - - Open existing database - Άνοιγμα υπάρχουσας βάσης δεδομένων - - - Import from KeePass 1 - Εισαγωγή από KeePass 1 - - - Import from 1Password - Εισαγωγή από 1Password - - - Import from CSV - Εισαγωγή από CSV - Recent databases Πρόσφατες βάσεις δεδομένων @@ -8709,6 +10289,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Καλώς ορίσατε στο KeePassXC %1 + + Create Database + Δημιουργία Βάσης Δεδομένων + + + Open Database + Άνοιγμα Βάσης Δεδομένων + + + Import File + + WinUtils @@ -8725,31 +10317,8 @@ Example: JBSWY3DPEHPK3PXP Δεν ήταν δυνατή η καταχώρηση καθολικής συντόμευσης - - WindowsHello - - Failed to init KeePassXC crypto. - Αποτυχία εκκίνησης κρυπτογράφησης KeePassXC. - - - Failed to encrypt key data. - Αποτυχία κρυπτογράφησης βασικών δεδομένων. - - - Failed to get Windows Hello credential. - Αποτυχία λήψης διαπιστευτηρίων Windows Hello. - - - Failed to decrypt key data. - Αποτυχία αποκρυπτογράφηση βασικών δεδομένων. - - YubiKey - - %1 No interface, slot %2 - %1 Χωρίς διεπαφή, υποδοχή %2 - General: Γενικά: @@ -8761,14 +10330,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Ανανέωση hardware tokens - - - Refresh - Ανανέωση - Hardware key slot selection Επιλογή υποδοχής υλικού κλειδιού @@ -8801,10 +10362,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Η Πρόκληση-Απόκριση ορίστηκε, κάντε κλικ για να την αλλάξετε ή να την καταργήσετε - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Εάν είστε ιδιοκτήτης ενός <a href="https://www.yubico.com/">YubiKey</a> ή <a href="https://onlykey.io">OnlyKey</a>, μπορείτε να το χρησιμοποιήσετε για πρόσθετη ασφάλεια.</p><p>Το κλειδί απαιτεί μία από τις υποδοχές του να προγραμματιστεί ως <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Πρόκληση-Απόκριση</a>.</p> - Detecting hardware keys… Εντοπισμός hardware κλειδιών... @@ -8813,28 +10370,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Δεν εντοπίστηκαν hardware κλειδιά - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Καθορίστηκε μη έγκυρη υποδοχή - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Πρόκληση-Απόκριση - Slot %3 - The YubiKey PCSC interface has not been initialized. Η διεπαφή YubiKey PCSC δεν έχει αρχικοποιηθεί. - - Hardware key is currently in use. - Το hardware κλειδί χρησιμοποιείται αυτήν τη στιγμή. - Could not find or access hardware key with serial number %1. Please present it to continue. Δεν ήταν δυνατή η εύρεση ή η πρόσβαση στο κλειδί υλικού με τον σειριακό αριθμό %1. Παρακαλώ παρουσιάστε το για να συνεχίσετε. @@ -8851,6 +10405,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Αποτυχία ολοκλήρωσης μιας πρόκλησης-απάντησης, ο κωδικός σφάλματος PCSC ήταν: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Πατήστε + + + Passive + USB Challenge-Response Key no interaction required + Παθητικό + YubiKeyInterfaceUSB @@ -8858,14 +10427,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Άγνωστο - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Διαμορφωμένη Yποδοχή - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Πρόκληση-Απόκριση - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8880,10 +10441,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. Η διεπαφή USB YubiKey δεν έχει αρχικοποιηθεί. - - Hardware key is currently in use. - Το hardware κλειδί χρησιμοποιείται αυτήν τη στιγμή. - Could not find hardware key with serial number %1. Please plug it in to continue. Δεν ήταν δυνατή η εύρεση hardware κλειδιού με σειριακό αριθμό %1. Παρακαλώ συνδέστε το για να συνεχίσετε. @@ -8900,5 +10457,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Απέτυχε η ολοκλήρωση ενός challange-response, το συγκεκριμένο σφάλμα ήταν: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 5fa8e7542..183837fae 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -82,6 +82,10 @@ Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + + Remember @@ -90,10 +94,6 @@ Allow Selected - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future @@ -124,6 +124,10 @@ Use OpenSSH + + Use both agents + + SSH_AUTH_SOCK override @@ -152,10 +156,6 @@ SSH Agent connection is working! - - Use both agents - - ApplicationSettingsWidget @@ -171,6 +171,10 @@ Security + + This setting cannot be enabled when minimize on unlock is enabled. + + Access error for config file %1 @@ -215,18 +219,50 @@ You must restart the application to set the new language. Would you like to restart now? - - Reset Settings? - - - - Are you sure you want to reset all general and security settings to default? - - Select backup storage directory + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -258,6 +294,10 @@ Remember previously used databases + + recent files + + Load previously open databases on startup @@ -274,25 +314,6 @@ Include beta releases when checking for updates - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management @@ -317,22 +338,10 @@ Backup database file before saving - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - Choose... - - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -410,6 +419,10 @@ Toolbar button style: + + Show passwords in color + + Use monospaced font for notes @@ -495,6 +508,71 @@ Remember last typed entry for: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -548,10 +626,6 @@ Lock databases after minimizing the window - - Require password repeat when it is visible - - Hide passwords when editing them @@ -564,18 +638,6 @@ Hide passwords in the entry preview panel - - Hide entry notes by default - - - - Move entries to recycle bin without confirmation - - - - Enable double click to copy the username/password entry columns - - Privacy @@ -584,6 +646,22 @@ Use DuckDuckGo service to download website icons + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -628,16 +706,7 @@ - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 + Entry does not have attribute for PICKCHARS: %1 @@ -685,10 +754,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on @@ -701,6 +766,10 @@ Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -800,13 +869,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - - Ok @@ -820,23 +889,82 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Please select the correct database for saving credentials. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - - A request for creating a new group "%1" has been received. Do you want to create this group? - - KeePassXC: New key association request - - You have received an association request for the following database: %1 @@ -849,27 +977,15 @@ chrome-laptop. Save and allow access - - KeePassXC: Overwrite existing key? - - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - - KeePassXC: Update Entry - - Do you want to update the information in %1 - %2? - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -877,49 +993,56 @@ Do you want to delete the entry? - Converting attributes to custom data… + %1 (Passkey) - Abort + KeePassXC - Create a new group - KeePassXC: Converted KeePassHTTP attributes + Disable - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - - - - Successfully moved %n keys to custom data. - - - - - - - KeePassXC: No entry with KeePassHTTP attributes found! + KeePassXC - Overwrite existing key? - The active database does not contain an entry with KeePassHTTP attributes. + KeePassXC - Update Entry - Don't show this warning again + KeePassXC - Delete entry - KeePassXC: Legacy browser integration settings detected + KeePassXC - New key association request - 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? + Passkey + + + + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register @@ -941,10 +1064,6 @@ Would you like to migrate your existing settings now? General - - Browsers installed as snaps are currently not supported. - - Enable integration for these browsers: @@ -1116,26 +1235,6 @@ Would you like to migrate your existing settings now? Custom extension ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - - - - Please see special instructions for browser extension use below - - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - - <b>Warning:</b> The following options can be dangerous! - - Executable Files @@ -1152,6 +1251,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1174,14 +1313,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - - - - filename - - size, rows, columns @@ -1290,18 +1421,6 @@ Would you like to migrate your existing settings now? Column %1 - - Imported from CSV file - - - - Original data: - - - - Error(s) detected in CSV file! - - [%n more message(s) skipped] @@ -1310,31 +1429,32 @@ Would you like to migrate your existing settings now? - Error + Failed to parse CSV file: %1 - CSV import: writer has errors: -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - - - - %n byte(s) - - - - - %n row(s) + CSV row count @@ -1342,6 +1462,7 @@ Would you like to migrate your existing settings now? %n column(s) + CSV column count @@ -1396,6 +1517,14 @@ Backup database located at %2 Recycle Bin + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1418,39 +1547,10 @@ Backup database located at %2 Password field - - Enter Additional Credentials (if any): - - - - Key File: - - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - - Hardware key slot selection - - Hardware Key: - - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - - Key file to unlock the database @@ -1463,14 +1563,6 @@ Backup database located at %2 Browse… - - Refresh hardware tokens - - - - Refresh - - Unlock Database @@ -1524,14 +1616,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 @@ -1565,20 +1649,67 @@ To prevent this error from appearing, you must go to "Database Settings / S - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. + authenticate to access the database - Detecting hardware keys… + Failed to authenticate with Quick Unlock: %1 - No hardware keys detected + Select Key File: - Select hardware key… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + + + + Press ESC again to close this database @@ -1591,10 +1722,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - - General @@ -1619,6 +1746,22 @@ If you do not have a key file, please leave the field empty. Maintenance + + KeeShare + + + + Secret Service Integration + + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1626,18 +1769,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - - Disconnect all browsers @@ -1646,6 +1777,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries + + Refresh database root group ID + + Stored keys @@ -1692,18 +1827,10 @@ This may prevent connection to the browser plugin. This may prevent connection to the browser plugin. - - KeePassXC: No keys found - - No shared encryption keys found in KeePassXC settings. - - KeePassXC: Removed keys from database - - Successfully removed %n encryption key(s) from KeePassXC settings. @@ -1724,10 +1851,6 @@ Permissions to access entries will be revoked. Abort - - KeePassXC: Removed permissions - - Successfully removed permissions from %n entry(s). @@ -1735,23 +1858,10 @@ Permissions to access entries will be revoked. - - KeePassXC: No entry with permissions found! - - The active database does not contain an entry with permissions. - - Move KeePassHTTP attributes to custom data - - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID @@ -1761,6 +1871,26 @@ This is necessary to maintain compatibility with the browser plugin. This is only necessary if your database is a copy of another and the browser extension cannot connect. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + DatabaseSettingsWidgetDatabaseKey @@ -1798,6 +1928,18 @@ Are you sure you want to continue without a password? Failed to change database credentials + + Weak password + + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1805,14 +1947,6 @@ Are you sure you want to continue without a password? Decryption Time: - - Change existing decryption time - - - - Change - - Decryption time in seconds @@ -1893,11 +2027,6 @@ Are you sure you want to continue without a password? KDBX 3 - - unchanged - Database decryption time is unchanged - - Number of rounds too high Key transformation rounds @@ -1952,6 +2081,18 @@ If you keep this number, your database will not be protected from brute force at + + Encryption Settings: + + + + Basic + + + + Advanced + + DatabaseSettingsWidgetFdoSecrets @@ -2010,18 +2151,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - - Max. history items: - - Maximum size of history per entry - - Max. history size: - - MiB @@ -2051,6 +2184,99 @@ This action is not reversible. (old) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2149,6 +2375,129 @@ This action is not reversible. + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + + + + Command Settings + + + + Name + + + + Save + + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + + + DatabaseTabWidget @@ -2180,26 +2529,10 @@ This is definitely a bug, please report it to the developers. CSV file - - Select CSV file - - Merge database - - KeePass 1 database - - - - Open KeePass 1 database - - - - Open OPVault - - Export database to CSV file @@ -2212,6 +2545,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. + + Export database to XML file + + + + XML file + + + + Writing the XML file failed + + Export Confirmation @@ -2221,16 +2566,12 @@ This is definitely a bug, please report it to the developers. - New Database - - - - %1 [New Database] + %1 [Locked] Database tab name modifier - %1 [Locked] + %1 [Temporary] Database tab name modifier @@ -2238,7 +2579,7 @@ This is definitely a bug, please report it to the developers. DatabaseWidget - Database Tags + Searches and Tags @@ -2289,6 +2630,13 @@ This is definitely a bug, please report it to the developers. Expired entries + + Entries expiring within %1 day(s) + + + + + No current database. @@ -2313,6 +2661,18 @@ This is definitely a bug, please report it to the developers. No Results + + Save + + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + + Lock Database? @@ -2339,24 +2699,6 @@ Save changes? 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? - - - - Could not open the new database file while attempting to autoreload. -Error: %1 - - Disable safe saves? @@ -2398,12 +2740,98 @@ Disable safe saves and try again? Could not find database file: %1 - - Entries expiring within %1 day(s) - - - - + + New Database + + + + %1 [New Database] + Database tab name modifier + + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + Failed to save backup database: %1 + @@ -2456,10 +2884,6 @@ Disable safe saves and try again? n/a - - (encrypted) - - Select private key @@ -2541,6 +2965,13 @@ Would you like to correct it? Hide + + %n hour(s) + + + + + %n week(s) @@ -2562,12 +2993,9 @@ Would you like to correct it? - - %n hour(s) - - - - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2687,10 +3115,20 @@ Would you like to correct it? Add new window association + + + + Add item + + Remove selected window association + + - + Remove item + + Window title: @@ -2715,23 +3153,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window - - + - Add item - - - - - - Remove item - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - - General @@ -2744,26 +3168,14 @@ Would you like to correct it? Skip Auto-Submit for this entry - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - - Use this entry only with HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - - Do not use this entry with HTTP Basic Auth - - Additional URL's - - Add @@ -2776,6 +3188,22 @@ Would you like to correct it? Edit + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2826,22 +3254,10 @@ Would you like to correct it? Notes field - - Toggle the checkbox to reveal the notes section. - - Username field - - Toggle notes visible - - - - Notes: - - Expiration field @@ -2858,14 +3274,6 @@ Would you like to correct it? Presets - - Password: - - - - URL: - - Url field @@ -2874,18 +3282,10 @@ Would you like to correct it? Download favicon for URL - - Title: - - Title field - - Username: - - Password field @@ -2894,18 +3294,42 @@ Would you like to correct it? Toggle expiration - - Expires: - - - - Tags: - - Tags list + + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: + + EditEntryWidgetSSHAgent @@ -2945,19 +3369,6 @@ Would you like to correct it? Private key - - External file - - - - Browser for key file - - - - Browse… - Button for opening file dialog - - Attachment @@ -2974,6 +3385,23 @@ Would you like to correct it? Remove from agent + + External file + + + + Browser for key file + + + + Browse… + Button for opening file dialog + + + + Generate + + Select attachment file @@ -2998,6 +3426,10 @@ Would you like to correct it? seconds + + Clear agent + + EditGroupWidget @@ -3009,10 +3441,6 @@ Would you like to correct it? Icon - - Browser Integration - - Properties @@ -3029,6 +3457,10 @@ Would you like to correct it? Group has unsaved changes + + Browser Integration + + Enable @@ -3044,10 +3476,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - - These settings affect to the group's behaviour with the browser extension. @@ -3084,6 +3512,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3315,10 +3759,6 @@ Supported extensions are: %1. Unable to fetch favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - - Existing icon selected. @@ -3360,6 +3800,10 @@ Supported extensions are: %1. + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3435,6 +3879,23 @@ This may cause the affected plugins to malfunction. %1 - Clone + + Passkey + + + + Invalid conversion type: %1 + + + + Invalid conversion syntax: %1 + + + + Invalid regular expression syntax %1 +%2 + + EntryAttachments @@ -3443,6 +3904,21 @@ This may cause the affected plugins to malfunction. + + EntryAttachmentsDialog + + Form + + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3480,14 +3956,6 @@ This may cause the affected plugins to malfunction. Remove - - Rename selected attachment - - - - Rename - - Open selected attachment @@ -3563,11 +4031,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - - Confirm Attachment @@ -3597,6 +4060,23 @@ Do you want to save the changes to your database? Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + + New + + + + Preview + + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3791,6 +4271,14 @@ Error: %1 Has TOTP + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3811,7 +4299,7 @@ Error: %1 - Notes + URL @@ -3831,7 +4319,7 @@ Error: %1 - URL + Notes @@ -3882,6 +4370,10 @@ Error: %1 Never + + Double click to copy value + + Enabled @@ -3890,6 +4382,10 @@ Error: %1 Disabled + + Double click to copy to clipboard + + EntryURLModel @@ -3897,6 +4393,10 @@ Error: %1 Invalid URL + + Duplicate URL + + EntryView @@ -3912,6 +4412,13 @@ Error: %1 Reset to defaults + + + %1 entry(s)... + + + + + ExportDialog @@ -4133,6 +4640,193 @@ You can enable the DuckDuckGo website icon service in the security section of th + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + + + + Entry count: %1 + + + + Group + + + + Title + + + + Username + + + + Password + + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + + + + Import File Selection + + + + Password: + + + + Key File: + + + + Browse… + + + + Import Into: + + + + New Database + + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + + + + Select import file + + + + All files + + + + Key files + + + + Select key file + + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4560,17 +5254,6 @@ Line %2, column %3 - - KeePass1OpenWidget - - Import KeePass1 Database - - - - Unable to open the database. - - - KeePass1Reader @@ -4924,10 +5607,6 @@ Are you sure you want to continue with this file? &Recent Databases - - &Import - - &Export @@ -4948,6 +5627,10 @@ Are you sure you want to continue with this file? TOTP + + Tags + + &Groups @@ -4992,34 +5675,18 @@ Are you sure you want to continue with this file? &New Database… - - Create a new database - - &Merge From Database… - - Merge from another KDBX database - - &New Entry… - - Add a new entry - - &Edit Entry… - - View or edit entry - - &Delete Entry… @@ -5028,10 +5695,6 @@ Are you sure you want to continue with this file? &New Group… - - Add a new group - - &Edit Group… @@ -5064,18 +5727,10 @@ Are you sure you want to continue with this file? Database &Reports… - - Statistics, health check, etc. - - &Database Settings… - - Database settings - - &Clone Entry… @@ -5084,34 +5739,18 @@ Are you sure you want to continue with this file? Move u&p - - Move entry one step up - - Move do&wn - - Move entry one step down - - Copy &Username - - Copy username to clipboard - - Copy &Password - - Copy password to clipboard - - &Settings @@ -5145,25 +5784,13 @@ Are you sure you want to continue with this file? - Copy title to clipboard - - - - &URL - - - - Copy URL to clipboard + Copy &URL &Notes - - Copy notes to clipboard - - &CSV File… @@ -5176,26 +5803,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… - - Import a KeePass 1 database - - 1Password Vault… - - Import a 1Password Vault - - CSV File… - - Import a CSV file - - Show TOTP @@ -5212,6 +5827,10 @@ Are you sure you want to continue with this file? Copy &TOTP + + Copy Password and TOTP + + E&mpty recycle bin @@ -5236,10 +5855,6 @@ Are you sure you want to continue with this file? &Online Help - - Go to online documentation - - &User Guide @@ -5284,6 +5899,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) + + Show Menubar + + Show Toolbar @@ -5308,6 +5927,10 @@ Are you sure you want to continue with this file? Clone Group... + + &XML File… + + Clear history @@ -5332,8 +5955,7 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. + No Tags @@ -5367,6 +5989,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC + + %1 Entry(s) + + + + + Please present or touch your YubiKey to continue… @@ -5379,6 +6008,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + + + + Delete Entry + + + + Create Group + + + + Edit Group + + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + + + + Copy Password + + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5436,26 +6373,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] - - older entry merged from database "%1" - - - - Adding backup for older target %1 [%2] - - - - Adding backup for older source %1 [%2] - - - - Reapplying older target entry on top of newer source %1 [%2] - - - - Reapplying older source entry on top of newer target %1 [%2] - - Synchronizing from newer source %1 [%2] @@ -5515,14 +6432,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - - Advanced Settings - - - - Simple Settings - - NewDatabaseWizardPageDatabaseKey @@ -5557,6 +6466,25 @@ We recommend you use the AppImage available on our downloads page. + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5603,14 +6531,6 @@ We recommend you use the AppImage available on our downloads page. - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - - - OpVaultReader @@ -5684,6 +6604,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key @@ -5748,27 +6672,179 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key + + (encrypted) + + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match + SSH Key Generator - Passwords match so far + Type - Toggle Password (%1) + Bits - Generate Password (%1) + Comment + + + + + PasskeyExportDialog + + KeePassXC - Passkey Export - Warning: Caps Lock enabled! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + + + + Database + + + + Import Passkey + + + + Import + + + + Cancel + + + + Entry + + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. @@ -5950,10 +7026,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - - Exclude look-alike characters @@ -5978,10 +7050,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: - - Character Count: - - Word Case: @@ -5994,10 +7062,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist - - character - - Close @@ -6034,6 +7098,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit + + Password Quality: %1 + + + + Poor + Password quality + + + + Weak + Password quality + + + + Good + Password quality + + + + Excellent + Password quality + + Confirm Delete Wordlist @@ -6080,7 +7168,46 @@ Do you want to overwrite it? - Password Quality: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + + + + Passwords match so far + + + + Toggle Password (%1) + + + + Generate Password (%1) + + + + Warning: Caps Lock enabled! + + + + Quality: %1 @@ -6103,6 +7230,10 @@ Do you want to overwrite it? Password quality + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6119,6 +7250,21 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6157,6 +7303,10 @@ Do you want to overwrite it? Continue + + Continue with weak password + + QObject @@ -6556,6 +7706,10 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + + Target decryption time in MS for the database. @@ -6576,10 +7730,6 @@ Do you want to overwrite it? Create a new database. - - Path of the database. - - Invalid decryption time %1. @@ -6624,6 +7774,158 @@ Do you want to overwrite it? Successfully created new database. + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + + + + Database was not modified. + + + + Writing the database failed: %1 + + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + + + + UUID: + + + + Name: + + + + Description: + + + + Cipher: + + + + KDF: + + + + Recycle bin is enabled. + + + + Recycle bin is not enabled. + + + + Location + + + + Database created + + + + Last saved + + + + Unsaved changes + + + + yes + + + + no + + + + Number of groups + + + + Number of entries + + + + Number of expired entries + + + + Unique passwords + + + + Non-unique passwords + + + + Maximum password reuse + + + + Number of short passwords + + + + Number of weak passwords + + + + Entries excluded from reports + + + + Average password length + + + + %1 characters + + Word count for the diceware passphrase. @@ -6646,10 +7948,6 @@ Do you want to overwrite it? Invalid word count %1 - - The word list is too small (< 1000 items) - - Title for the entry. @@ -6674,10 +7972,6 @@ Do you want to overwrite it? Enter new password for entry: - - Writing the database failed: %1 - - Successfully edited entry %1. @@ -6798,10 +8092,6 @@ Do you want to overwrite it? Exit interactive mode. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - - Exports the content of a database to standard output in the specified format. @@ -6902,106 +8192,6 @@ Do you want to overwrite it? Successfully imported database. - - Show a database's information. - - - - UUID: - - - - Name: - - - - Description: - - - - Cipher: - - - - KDF: - - - - Recycle bin is enabled. - - - - Recycle bin is not enabled. - - - - Location - - - - Database created - - - - Last saved - - - - Unsaved changes - - - - yes - - - - no - - - - Number of groups - - - - Number of entries - - - - Number of expired entries - - - - Unique passwords - - - - Non-unique passwords - - - - Maximum password reuse - - - - Number of short passwords - - - - Number of weak passwords - - - - Entries excluded from reports - - - - Average password length - - - - %1 characters - - Unknown command %1 @@ -7170,6 +8360,10 @@ Available commands: Show the protected attributes in clear text. + + Show all the attributes of the entry. + + Show the attachments of the entry. @@ -7237,6 +8431,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 + + Please present or touch your YubiKey to continue. + + Enter password to encrypt database (optional): @@ -7445,7 +8643,7 @@ Kernel: %3 %4 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7496,18 +8694,6 @@ Kernel: %3 %4 file empty - - malformed string - - - - missing closing quote - - - - %1: (row, col) %2,%3 - - AES 256-bit @@ -7710,14 +8896,6 @@ Kernel: %3 %4 read password of the database from stdin - - allow app screen recordering and screenshots - - - - Locked databases. - - Database failed to lock. @@ -7726,6 +8904,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. + + KeePassXC is not running. No open database to lock + + Fatal error while testing the cryptographic functions. @@ -7734,10 +8916,6 @@ Kernel: %3 %4 KeePassXC - Error - - Warning: Failed to prevent screenshots on a top level window! - - Database password: @@ -7761,7 +8939,313 @@ Kernel: %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + + + + Delete plugin data from Entry(s)? + + + + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags @@ -7799,20 +9283,39 @@ Kernel: %3 %4 + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. @@ -7880,44 +9383,59 @@ Kernel: %3 %4 Exclude from reports + + Expire Entry(s)… + + + + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + + + + ReportsWidgetHealthcheck - Exclude expired entries from the report + Show expired entries - Also show entries that have been excluded from reports + (Expired) Hover over reason to show additional details. Double-click entries to edit. - - Bad - Password quality - - Bad — password must be changed - - Poor - Password quality - - Poor — password should be changed - - Weak - Password quality - - Weak — consider changing the password @@ -7969,6 +9487,17 @@ Kernel: %3 %4 Exclude from reports + + Expire Entry(s)… + + + + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -8067,6 +9596,83 @@ Kernel: %3 %4 Exclude from reports + + Expire Entry(s)… + + + + + + + + ReportsWidgetPasskeys + + Export + + + + Import + + + + List of entry URLs + + + + Title + + + + Path + + + + Username + + + + URLs + + + + Edit Entry… + + + + Delete Entry(s)… + + + + + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8241,6 +9847,14 @@ Kernel: %3 %4 No agent running, cannot list identities. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8307,6 +9921,10 @@ Kernel: %3 %4 Search Help + + Save Search + + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8381,26 +9999,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching @@ -8425,6 +10027,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8533,7 +10143,11 @@ Kernel: %3 %4 TagModel - All + Clear Search + + + + All Entries @@ -8545,6 +10159,25 @@ Kernel: %3 %4 + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? + + + TotpDialog @@ -8704,26 +10337,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database - - Create new database - - - - Open existing database - - - - Import from KeePass 1 - - - - Import from 1Password - - - - Import from CSV - - Recent databases @@ -8736,6 +10349,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 + + Create Database + + + + Open Database + + + + Import File + + WinUtils @@ -8752,31 +10377,8 @@ Example: JBSWY3DPEHPK3PXP - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: @@ -8788,14 +10390,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - - - - Refresh - - Hardware key slot selection @@ -8828,10 +10422,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… @@ -8840,28 +10430,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected - - - YubiKeyInterface - %1 Invalid slot specified - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - - Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8878,6 +10465,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + + + + Passive + USB Challenge-Response Key no interaction required + + YubiKeyInterfaceUSB @@ -8885,14 +10487,6 @@ Example: JBSWY3DPEHPK3PXP Unknown - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8907,10 +10501,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - - Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8927,5 +10517,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + diff --git a/share/translations/keepassxc_en_GB.ts b/share/translations/keepassxc_en_GB.ts index f9edf4585..1bc6cbad6 100644 --- a/share/translations/keepassxc_en_GB.ts +++ b/share/translations/keepassxc_en_GB.ts @@ -80,6 +80,10 @@ Details Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Remember Remember @@ -88,10 +92,6 @@ Allow Selected Allow Selected - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Deny All && Future Deny All && Future @@ -122,6 +122,10 @@ Use OpenSSH Use OpenSSH + + Use both agents + Use both agents + SSH_AUTH_SOCK override SSH_AUTH_SOCK override @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH Agent connection is working! - - Use both agents - Use both agents - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Security + + This setting cannot be enabled when minimize on unlock is enabled. + This setting cannot be enabled when minimise on unlock is enabled. + Access error for config file %1 Access error for config file %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? You must restart the application to set the new language. Would you like to restart now? - - Reset Settings? - Reset Settings? - - - Are you sure you want to reset all general and security settings to default? - Are you sure you want to reset all general and security settings to default? - Select backup storage directory Select backup storage directory + + Confirm Reset + Confirm Reset + + + Are you sure you want to reset all settings to default? + Are you sure you want to reset all settings to default? + + + Import KeePassXC Settings + Import KeePassXC Settings + + + Failed to import settings from %1, not a valid settings file. + Failed to import settings from %1, not a valid settings file. + + + Export KeePassXC Settings + Export KeePassXC Settings + + + Small + Small + + + Normal + Normal + + + Medium + Medium + + + Large + Large + + + Custom + Custom + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Remember previously used databases + + recent files + recent files + Load previously open databases on startup Load previously open databases on startup @@ -272,25 +312,6 @@ Include beta releases when checking for updates Include beta releases when checking for updates - - On database unlock, show entries that - On database unlock, show entries that - - - have expired - On database unlock, show entries that... - have expired - - - days - On database unlock, show entries that will expire within %1 days - days - - - will expire within - On database unlock, show entries that... - will expire within - File Management File Management @@ -315,22 +336,10 @@ Backup database file before saving Backup database file before saving - - Backup destination - Backup destination - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Choose... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Toolbar button style: + + Show passwords in color + Show passwords in colour + Use monospaced font for notes Use monospaced font for notes @@ -493,6 +506,71 @@ Remember last typed entry for: Remember last typed entry for: + + On database unlock, show entries that will expire within + On database unlock, show entries that will expire within + + + On database unlock, show entries that will expire within + On database unlock, show entries that will expire within + + + days + number of days warning for password expiration + days + + + Destination format: + Destination format: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + Choose folder... + Choose folder... + + + Show confirmation before moving entries to recycle bin + Show confirmation before moving entries to recycle bin + + + Copy data on double clicking field in entry view + Copy data on double clicking field in entry view + + + Show toolbar + Show toolbar + + + Show the menu bar by pressing the Alt key + Show the menu bar by pressing the Alt key + + + Show menubar + Show menubar + + + Import settings… + Import settings… + + + Export settings… + Export settings… + + + Open browser on double clicking URL field in entry view + Open browser on double clicking URL field in entry view + + + Font size: + Font size: + + + Font size selection + Font size selection + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Lock databases after minimising the window - - Require password repeat when it is visible - Require password repeat when it is visible - Hide passwords when editing them Hide passwords when editing them @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Hide passwords in the entry preview panel - - Hide entry notes by default - Hide entry notes by default - - - Move entries to recycle bin without confirmation - Move entries to recycle bin without confirmation - - - Enable double click to copy the username/password entry columns - Enable double-click to copy the username/password entry columns - Privacy Privacy @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Use DuckDuckGo service to download website icons + + Hide TOTP in the entry preview panel + Hide TOTP in the entry preview panel + + + Lock databases when switching user + Lock databases when switching user + + + Lock Options + Lock Options + + + Hide notes in the entry preview panel + Hide notes in the entry preview panel + AutoType @@ -626,18 +704,8 @@ Very long delay detected, max is %1: %2 - Invalid conversion type: %1 - Invalid conversion type: %1 - - - Invalid conversion syntax: %1 - Invalid conversion syntax: %1 - - - Invalid regular expression syntax %1 -%2 - Invalid regular expression syntax %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Entry does not have attribute for PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Trying to send invalid keysym. - Sequence aborted: Caps Lock is on Sequence aborted: Caps Lock is on @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + Trying to send invalid keyboard symbol. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Disable for this site + + Undo + Undo + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Save Entry - Ok Ok @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. You have multiple databases open. Please select the correct database for saving credentials. + + KeePassXC - Select Database + KeePassXC - Select Database + + + + BrowserPasskeysConfirmationDialog + + Cancel + Cancel + + + Update + Update + + + Authenticate + Authenticate + + + Register new + Register new + + + Register + Register + + + Timeout in <b>%n</b> seconds... + Timeout in <b>%n</b> seconds...Timeout in <b>%n</b> seconds... + + + Relying Party: %1 + Relying Party: %1 + + + Username: %1 + Username: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Passkey credentials + + + Add to existing entry + Add to existing entry + + + Existing passkey found. +Do you want to register a new passkey for: + Existing passkey found. +Do you want to register a new passkey for: + + + Select the existing passkey and press Update to replace it. + Select the existing passkey and press Update to replace it. + + + Authenticate passkey credentials for: + Authenticate passkey credentials for: + + + Do you want to register a passkey for: + Do you want to register a passkey for: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Create a new group - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? Do you want to create this group? - - KeePassXC: New key association request - KeePassXC: New key association request - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access Save and allow access - - KeePassXC: Overwrite existing key? - KeePassXC: Overwrite existing key? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - - KeePassXC: Update Entry - KeePassXC: Update Entry - Do you want to update the information in %1 - %2? Do you want to update the information in %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Delete entry - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - Converting attributes to custom data… + %1 (Passkey) + %1 (Passkey) - Abort - Abort + KeePassXC - Create a new group + KeePassXC - Create a new group - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Converted KeePassHTTP attributes + Disable + Disable - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - - - Successfully moved %n keys to custom data. - Successfully moved %n key to custom data.Successfully moved %n keys to custom data. + KeePassXC - Overwrite existing key? + KeePassXC - Overwrite existing key? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: No entry with KeePassHTTP attributes found! + KeePassXC - Update Entry + KeePassXC - Update Entry - The active database does not contain an entry with KeePassHTTP attributes. - The active database does not contain an entry with KeePassHTTP attributes. + KeePassXC - Delete entry + KeePassXC - Delete entry - Don't show this warning again - Don't show this warning again + KeePassXC - New key association request + KeePassXC - New key association request - KeePassXC: Legacy browser integration settings detected - KeePassXC: Legacy browser integration settings detected + Passkey + Passkey - 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? - 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 - Passkey credentials + KeePassXC - Passkey credentials + + + Register a new passkey to this entry: + Register a new passkey to this entry: + + + KeePassXC - Update passkey + KeePassXC - Update passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + Register + Register @@ -955,10 +1076,6 @@ Would you like to migrate your existing settings now? General General - - Browsers installed as snaps are currently not supported. - Browsers installed as snaps are currently not supported. - Enable integration for these browsers: Enable integration for these browsers: @@ -1130,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID Custom extension ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - - - Please see special instructions for browser extension use below - Please see special instructions for browser extension use below - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - <b>Warning:</b> The following options can be dangerous! - <b>Warning:</b> The following options can be dangerous! - Executable Files Executable Files @@ -1166,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location Select native messaging host folder location + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Warning:</b> Only adjust these settings if necessary. + + + The custom proxy location does not exist. + The custom proxy location does not exist. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Allows using insecure http://localhost with passkeys for testing purposes. + + + Allow using localhost with passkeys + Allow using localhost with passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1188,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Import CSV fields - - - filename - filename - size, rows, columns size, rows, columns @@ -1304,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 Column %1 - - Imported from CSV file - Imported from CSV file - - - Original data: - Original data: - - - Error(s) detected in CSV file! - Error(s) detected in CSV file! - [%n more message(s) skipped] [%n more message skipped][%n more messages skipped] - Error - Error + Failed to parse CSV file: %1 + Failed to parse CSV file: %1 - CSV import: writer has errors: -%1 - CSV import: writer has errors: -%1 + Imported from CSV file: %1 + Imported from CSV file: %1 + + + No Title Selected + No Title Selected + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + Tags + Tags CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n bytes - %n row(s) + CSV row count %n row%n rows %n column(s) + CSV column count %n column%n columns @@ -1400,6 +1522,14 @@ Backup database located at %2 Recycle Bin Recycle Bin + + Database file read error. + Database file read error. + + + No file path was provided. + + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup database located at %2 Password field Password field - - Enter Additional Credentials (if any): - Enter Additional Credentials (if any): - - - Key File: - Key File: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - Key file help - Key file help - Hardware key slot selection Hardware key slot selection - - Hardware Key: - Hardware Key: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - Hardware key help - Hardware key help - Key file to unlock the database Key file to unlock the database @@ -1468,14 +1568,6 @@ Backup database located at %2 Browse… Browse… - - Refresh hardware tokens - Refresh hardware tokens - - - Refresh - Refresh - Unlock Database Unlock Database @@ -1538,14 +1630,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password Retry with empty password - - Failed to authenticate with Windows Hello - Failed to authenticate with Windows Hello - - - Failed to authenticate with Touch ID - Failed to authenticate with Touch ID - Failed to open key file: %1 Failed to open key file: %1 @@ -1579,22 +1663,68 @@ To prevent this error from appearing, you must go to "Database Settings / S Cannot use database file as key file - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. + authenticate to access the database + authenticate to access the database - Detecting hardware keys… - Detecting hardware keys… + Failed to authenticate with Quick Unlock: %1 + Failed to authenticate with Quick Unlock: %1 - No hardware keys detected - No hardware keys detected + Select Key File: + Select Key File: - Select hardware key… - Select hardware key… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + Use hardware key [Serial: %1] + Use hardware key [Serial: %1] + + + Use hardware key + Use hardware key + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + KeePassXC database file selected + KeePassXC database file selected + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + No hardware keys found. + No hardware keys found. + + + Refresh Hardware Keys + Refresh Hardware Keys + + + Click to add a key file. + Click to add a key file. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">I have a key file</a> + + + Hardware keys found, but no slots are configured. + Hardware keys found, but no slots are configured. @@ -1606,10 +1736,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Advanced Settings - General General @@ -1634,6 +1760,22 @@ If you do not have a key file, please leave the field empty. Maintenance Maintenance + + KeeShare + KeeShare + + + Secret Service Integration + Secret Service Integration + + + Remote Sync + Remote Sync + + + Database Settings: %1 + Database Settings: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-Browser settings - - Convert KeePassHTTP data - Convert KeePassHTTP data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - Refresh database root group ID - Refresh database root group ID - Disconnect all browsers Disconnect all browsers @@ -1661,6 +1791,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries Forget all site-specific settings on entries + + Refresh database root group ID + Refresh database root group ID + Stored keys Stored keys @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - - KeePassXC: No keys found - KeePassXC: No keys found - No shared encryption keys found in KeePassXC settings. No shared encryption keys found in KeePassXC settings. - - KeePassXC: Removed keys from database - KeePassXC: Removed keys from database - Successfully removed %n encryption key(s) from KeePassXC settings. Successfully removed %n encryption key from KeePassXC settings.Successfully removed %n encryption keys from KeePassXC settings. @@ -1739,32 +1865,14 @@ Permissions to access entries will be revoked. Abort Abort - - KeePassXC: Removed permissions - KeePassXC: Removed permissions - Successfully removed permissions from %n entry(s). Successfully removed permissions from %n entry.Successfully removed permissions from %n entries. - - KeePassXC: No entry with permissions found! - KeePassXC: No entry with permissions found! - The active database does not contain an entry with permissions. The active database does not contain an entry with permissions. - - Move KeePassHTTP attributes to custom data - Move KeePassHTTP attributes to custom data - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Refresh database ID Refresh database ID @@ -1775,6 +1883,26 @@ This is only necessary if your database is a copy of another and the browser ext Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + No keys found + No keys found + + + Removed keys from database + Removed keys from database + + + Removed permissions + Removed permissions + + + No entry with permissions found! + No entry with permissions found! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Failed to change database credentials + + Weak password + Weak password + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + The provided password does not meet the minimum quality requirement. + The provided password does not meet the minimum quality requirement. + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: Decryption Time: - - Change existing decryption time - Change existing decryption time - - - Change - Change - Decryption time in seconds Decryption time in seconds @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - unchanged - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) thread threads + + Encryption Settings: + Encryption Settings: + + + Basic + Basic + + + Advanced + Advanced + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Maximum number of history items per entry - - Max. history items: - Max. history items: - Maximum size of history per entry Maximum size of history per entry - - Max. history size: - Max. history size: - MiB MiB @@ -2066,6 +2197,108 @@ This action is not reversible. (old) (old) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + Limit the amount of history items per entry to: + Limit the amount of history items per entry to: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + Limit the total size of history items per entry to: + Limit the total size of history items per entry to: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + Autosave delay since last change + Autosave delay since last change + + + Autosave delay + Autosave delay + + + Autosave delay since last change in minutes + Autosave delay since last change in minutes + + + min + min + + + Autosave delay since last change checkbox + Autosave delay since last change checkbox + + + Public Database Metadata + Public Database Metadata + + + Warning: the following settings are not encrypted. + Warning: the following settings are not encrypted. + + + Display name: + Display name: + + + Publically visible display name used on the unlock dialog + Publically visible display name used on the unlock dialogue + + + Database public display name + Database public display name + + + Display color: + Display colour: + + + Publically visible color used on the unlock dialog + Publically visible colour used on the unlock dialogue + + + Database public display color chooser + Database public display colour chooser + + + Clear + Clear + + + Display icon: + Display icon: + + + Select Database Icon + Select Database Icon + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,141 @@ This action is not reversible. Database description field + + DatabaseSettingsWidgetRemote + + Sync Commands + Sync Commands + + + Remove + Remove + + + Command Settings + Command Settings + + + Name + Name + + + Save + Save + + + Download + Download + + + Command: + Command: + + + Download command field + Download command field + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + Download input field + Download input field + + + Upload + Upload + + + Upload command field + Upload command field + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Upload input field + + + Name cannot be empty. + Name cannot be empty. + + + Test + Test + + + Download command cannot be empty. + Download command cannot be empty. + + + Download failed with error: %1 + Download failed with error: %1 + + + Download finished, but file %1 could not be found. + Download finished, but file %1 could not be found. + + + Download successful. + Download successful. + + + Save Remote Settings + Save Remote Settings + + + You have unsaved changes. Do you want to save them? + You have unsaved changes. Do you want to save them? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + Timeout: + Timeout: + + + seconds + seconds + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV file - - Select CSV file - Select CSV file - Merge database Merge database - - KeePass 1 database - KeePass 1 database - - - Open KeePass 1 database - Open KeePass 1 database - - - Open OPVault - Open OPVault - Export database to CSV file Export database to CSV file @@ -2225,6 +2577,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. Writing the HTML file failed. + + Export database to XML file + Export database to XML file + + + XML file + XML file + + + Writing the XML file failed + Writing the XML file failed + Export Confirmation Export Confirmation @@ -2233,26 +2597,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - - New Database - New Database - - - %1 [New Database] - Database tab name modifier - %1 [New Database] - %1 [Locked] Database tab name modifier %1 [Locked] + + %1 [Temporary] + Database tab name modifier + %1 [Temporary] + DatabaseWidget - Database Tags - Database Tags + Searches and Tags + Searches and Tags Searching… @@ -2302,6 +2662,10 @@ This is definitely a bug, please report it to the developers. Expired entries Expired entries + + Entries expiring within %1 day(s) + Entries expiring within %1 dayEntries expiring within %1 days + No current database. No current database. @@ -2326,6 +2690,18 @@ This is definitely a bug, please report it to the developers. No Results No Results + + Save + Save + + + Enter a unique name or overwrite an existing search from the list: + Enter a unique name or overwrite an existing search from the list: + + + Save Search + Save Search + Lock Database? Lock Database? @@ -2354,26 +2730,6 @@ Save changes? File has changed File has changed - - The database file has changed. Do you want to load the changes? - The database file has changed. Do you want to load the changes? - - - Merge Request - Merge Request - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Could not open the new database file while attempting to autoreload. -Error: %1 - Disable safe saves? Disable safe saves? @@ -2416,9 +2772,94 @@ Disable safe saves and try again? Could not find database file: %1 Could not find database file: %1 - - Entries expiring within %1 day(s) - Entries expiring within %1 dayEntries expiring within %1 days + + New Database + New Database + + + %1 [New Database] + Database tab name modifier + %1 [New Database] + + + Remote Sync did not contain any download or upload commands. + Remote Sync did not contain any download or upload commands. + + + Remote sync '%1' completed successfully! + Remote sync '%1' completed successfully! + + + Remote sync '%1' failed: %2 + Remote sync '%1' failed: %2 + + + Error while saving database %1: %2 + Error while saving database %1: %2 + + + Downloading... + Downloading... + + + Uploading... + Uploading... + + + Syncing... + Syncing... + + + Remove passkey from entry + Remove passkey from entry + + + Do you want to remove the passkey from this entry? + Do you want to remove the passkey from this entry? + + + The database file "%1" was modified externally + The database file "%1" was modified externally + + + Do you want to load the changes? + Do you want to load the changes? + + + Reload database + Reload database + + + Reloading database… + Reloading database… + + + Reload canceled + Reload cancelled + + + Reload successful + Reload successful + + + Reload pending user action… + Reload pending user action… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + Database file overwritten. + Database file overwritten. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. @@ -2471,10 +2912,6 @@ Disable safe saves and try again? n/a n/a - - (encrypted) - (encrypted) - Select private key Select private key @@ -2561,6 +2998,10 @@ Would you like to correct it? Hide Hide + + %n hour(s) + %n hour%n hours + %n week(s) %n week%n weeks @@ -2573,9 +3014,9 @@ Would you like to correct it? %n year(s) %n year%n years - - %n hour(s) - %n hour%n hours + + Failed to decrypt SSH key, ensure password is correct. + Failed to decrypt SSH key, ensure password is correct. @@ -2695,10 +3136,20 @@ Would you like to correct it? Add new window association Add new window association + + + + Add item + + + Remove selected window association Remove selected window association + + - + Remove item + - + Window title: Window title: @@ -2723,23 +3174,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Custom Auto-Type sequence for this window - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - These settings affect the entry's behaviour with the browser extension. - General General @@ -2752,26 +3189,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Skip Auto-Submit for this entry - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Only send this setting to the browser for HTTP Auth dialogues. If enabled, normal login forms will not show this entry for selection. - Use this entry only with HTTP Basic Auth Use this entry only with HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Do not send this setting to the browser for HTTP Auth dialogues. If enabled, HTTP Auth dialogues will not show this entry for selection. - Do not use this entry with HTTP Basic Auth Do not use this entry with HTTP Basic Auth - - Additional URL's - Additional URLs - Add Add @@ -2784,6 +3209,22 @@ Would you like to correct it? Edit Edit + + These settings affect the entry's behaviour with the browser extension. + These settings affect the entry's behaviour with the browser extension. + + + Additional URLs + Additional URLs + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Only send this entry to the browser for HTTP Auth dialogues. If enabled, normal login forms will not show this entry for selection. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Do not send this entry to the browser for HTTP Auth dialogues. If enabled, HTTP Auth dialogues will not show this entry for selection. + EditEntryWidgetHistory @@ -2834,22 +3275,10 @@ Would you like to correct it? Notes field Notes field - - Toggle the checkbox to reveal the notes section. - Toggle the checkbox to reveal the notes section. - Username field Username field - - Toggle notes visible - Toggle notes visible - - - Notes: - Notes: - Expiration field Expiry field @@ -2866,14 +3295,6 @@ Would you like to correct it? Presets Presets - - Password: - Password: - - - URL: - URL: - Url field URL field @@ -2882,18 +3303,10 @@ Would you like to correct it? Download favicon for URL Download favicon for URL - - Title: - Title: - Title field Title field - - Username: - Username: - Password field Password field @@ -2902,18 +3315,42 @@ Would you like to correct it? Toggle expiration Toggle expiry - - Expires: - Expires: - - - Tags: - Tags: - Tags list Tags list + + &Username: + &Username: + + + &Title: + &Title: + + + &Password: + &Password: + + + UR&L: + UR&L: + + + &Notes: + &Notes: + + + Toggle notes visibility + Toggle notes visibility + + + T&ags: + T&ags: + + + &Expires: + &Expires: + EditEntryWidgetSSHAgent @@ -2953,19 +3390,6 @@ Would you like to correct it? Private key Private key - - External file - External file - - - Browser for key file - Browser for key file - - - Browse… - Button for opening file dialog - Browse… - Attachment Attachment @@ -2982,6 +3406,23 @@ Would you like to correct it? Remove from agent Remove from agent + + External file + External file + + + Browser for key file + Browser for key file + + + Browse… + Button for opening file dialog + Browse… + + + Generate + Generate + Select attachment file Select attachment file @@ -3006,6 +3447,10 @@ Would you like to correct it? seconds seconds + + Clear agent + Clear agent + EditGroupWidget @@ -3017,10 +3462,6 @@ Would you like to correct it? Icon Icon - - Browser Integration - Browser Integration - Properties Properties @@ -3037,6 +3478,10 @@ Would you like to correct it? Group has unsaved changes Group has unsaved changes + + Browser Integration + Browser Integration + Enable Enable @@ -3052,10 +3497,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Edit Group - These settings affect to the group's behaviour with the browser extension. These settings affect the group's behaviour with the browser extension. @@ -3092,6 +3533,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups Do not use HTTP Auth toggle for this group and subgroups + + Omit WWW subdomain from matching: + Omit WWW subdomain from matching: + + + Omit WWW subdomain from matching toggle for this and sub groups + Omit WWW subdomain from matching toggle for this and sub groups + + + Restrict matching to given browser key: + Restrict matching to given browser key: + + + Restrict matching to given browser key toggle for this and sub groups + Restrict matching to given browser key toggle for this and sub groups + EditGroupWidgetKeeShare @@ -3324,10 +3781,6 @@ Supported extensions are: %1. Unable to fetch favicon. Unable to fetch favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Existing icon selected. Existing icon selected. @@ -3360,6 +3813,10 @@ Supported extensions are: %1. The following icon(s) failed: The following icon failed:The following icons failed: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + You can enable the DuckDuckGo website icon service under Application Settings -> Security + EditWidgetProperties @@ -3436,6 +3893,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Clone + + Passkey + Passkey + + + Invalid conversion type: %1 + Invalid conversion type: %1 + + + Invalid conversion syntax: %1 + Invalid conversion syntax: %1 + + + Invalid regular expression syntax %1 +%2 + Invalid regular expression syntax %1 +%2 + EntryAttachments @@ -3444,6 +3919,21 @@ This may cause the affected plugins to malfunction. Cannot open file "%1" + + EntryAttachmentsDialog + + Form + Form + + + File name + File name + + + File contents... + File contents... + + EntryAttachmentsModel @@ -3481,14 +3971,6 @@ This may cause the affected plugins to malfunction. Remove Remove - - Rename selected attachment - Rename selected attachment - - - Rename - Rename - Open selected attachment Open selected attachment @@ -3564,12 +4046,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment Confirm Overwrite Attachment - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Confirm Attachment Confirm Attachment @@ -3604,6 +4080,24 @@ Error: %1 Saving updated attachment failed. Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + New + New + + + Preview + Preview + + + Failed to preview an attachment: Attachment not found + Failed to preview an attachment: Attachment not found + EntryAttributesModel @@ -3798,6 +4292,14 @@ Error: %1 Has TOTP Has TOTP + + Background Color + Background Colour + + + Group Path + Group Path + EntryPreviewWidget @@ -3818,8 +4320,8 @@ Error: %1 Password - Notes - Notes + URL + URL Expiration @@ -3838,8 +4340,8 @@ Error: %1 Username - URL - URL + Notes + Notes Advanced @@ -3889,6 +4391,10 @@ Error: %1 Never Never + + Double click to copy value + Double click to copy value + Enabled Enabled @@ -3897,6 +4403,10 @@ Error: %1 Disabled Disabled + + Double click to copy to clipboard + Double click to copy to clipboard + EntryURLModel @@ -3904,6 +4414,10 @@ Error: %1 Invalid URL Invalid URL + + Duplicate URL + Duplicate URL + EntryView @@ -3919,6 +4433,10 @@ Error: %1 Reset to defaults Reset to defaults + + + %1 entry(s)... + + %1 entry...+ %1 entries... + ExportDialog @@ -4140,6 +4658,199 @@ You can enable the DuckDuckGo website icon service in the security section of th Downloading favicons (%1/%2)… + + ImportWizard + + Import Wizard + Import Wizard + + + + ImportWizardPageReview + + WizardPage + WizardPage + + + Entry count: %1 + Entry count: %1 + + + Group + Group + + + Title + Title + + + Username + Username + + + Password + Password + + + Url + URL + + + Could not load key file. + Could not load key file. + + + Could not open remote database. Password or key file may be incorrect. + Could not open remote database. Password or key file may be incorrect. + + + + ImportWizardPageSelect + + Form + Form + + + Import File Selection + Import File Selection + + + Password: + Password: + + + Key File: + Key File: + + + Browse… + Browse… + + + Import Into: + Import Into: + + + New Database + New Database + + + No unlocked databases available + No unlocked databases available + + + Existing Database: + Existing Database: + + + Import File: + Import File: + + + Comma Separated Values (.csv) + Comma Separated Values (.csv) + + + 1Password Export (.1pux) + 1Password Export (.1pux) + + + 1Password Vault (.opvault) + 1Password Vault (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 Database (.kdb) + + + Open OPVault + Open OPVault + + + Select import file + Select import file + + + All files + All files + + + Key files + Key files + + + Select key file + Select key file + + + Comma Separated Values + Comma Separated Values + + + 1Password Export + 1Password Export + + + Bitwarden JSON Export + Bitwarden JSON Export + + + 1Password Vault + 1Password Vault + + + KeePass1 Database + KeePass1 Database + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON Export + + + Temporary Database + Temporary Database + + + Command: + Command: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + Remote Database (.kdbx) + Remote Database (.kdbx) + + KMessageWidget @@ -4574,17 +5285,6 @@ Line %2, column %3 Failed to open private key - - KeePass1OpenWidget - - Import KeePass1 Database - Import KeePass1 Database - - - Unable to open the database. - Unable to open the database. - - KeePass1Reader @@ -4941,10 +5641,6 @@ Are you sure you want to continue with this file? &Recent Databases &Recent Databases - - &Import - &Import - &Export &Export @@ -4965,6 +5661,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + Tags + &Groups &Groups @@ -5009,34 +5709,18 @@ Are you sure you want to continue with this file? &New Database… &New Database… - - Create a new database - Create a new database - &Merge From Database… &Merge From Database… - - Merge from another KDBX database - Merge from another KDBX database - &New Entry… &New Entry… - - Add a new entry - Add a new entry - &Edit Entry… &Edit Entry… - - View or edit entry - View or edit entry - &Delete Entry… &Delete Entry… @@ -5045,10 +5729,6 @@ Are you sure you want to continue with this file? &New Group… &New Group… - - Add a new group - Add a new group - &Edit Group… &Edit Group… @@ -5081,18 +5761,10 @@ Are you sure you want to continue with this file? Database &Reports… Database &Reports… - - Statistics, health check, etc. - Statistics, health check, etc. - &Database Settings… &Database Settings… - - Database settings - Database settings - &Clone Entry… &Clone Entry… @@ -5101,34 +5773,18 @@ Are you sure you want to continue with this file? Move u&p Move u&p - - Move entry one step up - Move entry one step up - Move do&wn Move do&wn - - Move entry one step down - Move entry one step down - Copy &Username Copy &Username - - Copy username to clipboard - Copy username to clipboard - Copy &Password Copy &Password - - Copy password to clipboard - Copy password to clipboard - &Settings &Settings @@ -5162,25 +5818,13 @@ Are you sure you want to continue with this file? &Title - Copy title to clipboard - Copy title to clipboard - - - &URL - &URL - - - Copy URL to clipboard - Copy URL to clipboard + Copy &URL + Copy &URL &Notes &Notes - - Copy notes to clipboard - Copy notes to clipboard - &CSV File… &CSV File… @@ -5193,26 +5837,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 Database… - - Import a KeePass 1 database - Import a KeePass 1 database - 1Password Vault… 1Password Vault… - - Import a 1Password Vault - Import a 1Password Vault - CSV File… CSV File… - - Import a CSV file - Import a CSV file - Show TOTP Show TOTP @@ -5229,6 +5861,10 @@ Are you sure you want to continue with this file? Copy &TOTP Copy &TOTP + + Copy Password and TOTP + Copy Password and TOTP + E&mpty recycle bin E&mpty recycle bin @@ -5253,10 +5889,6 @@ Are you sure you want to continue with this file? &Online Help &Online Help - - Go to online documentation - Go to online documentation - &User Guide &User Guide @@ -5301,6 +5933,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Classic (Platform-native) + + Show Menubar + Show Menubar + Show Toolbar Show Toolbar @@ -5325,6 +5961,10 @@ Are you sure you want to continue with this file? Clone Group... Clone Group... + + &XML File… + &XML File… + Clear history Clear history @@ -5352,10 +5992,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - 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. + No Tags + No Tags Restore Entry(s) @@ -5385,6 +6023,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Quit KeePassXC + + %1 Entry(s) + %1 Entry%1 Entries + Please present or touch your YubiKey to continue… Please present or touch your YubiKey to continue… @@ -5397,6 +6039,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? You must restart the application to apply this setting. Would you like to restart now? + + Allow Screen Capture + Allow Screen Capture + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Import a 1Password 1PUX file + + + Import… + Import… + + + Passkeys… + Passkeys… + + + Import Passkey + Import Passkey + + + Remote S&ync… + Remote S&ync… + + + Quit Application + Quit Application + + + Open About Dialog + Open About Dialogue + + + Open Database + Open Database + + + Create Database + Create Database + + + Merge From Database + Merge From Database + + + Create Entry + Create Entry + + + Edit Entry + Edit Entry + + + Delete Entry + Delete Entry + + + Create Group + Create Group + + + Edit Group + Edit Group + + + Delete Group + Delete Group + + + Download All Favicons + Download All Favicons + + + Sort Groups A-Z + Sort Groups A-Z + + + Sort Groups Z-A + Sort Groups Z-A + + + Save Database As + Save Database As + + + Show Database Security + Show Database Security + + + Show Database Reports + Show Database Reports + + + Show Database Settings + Show Database Settings + + + Show Passkeys + Show Passkeys + + + Clone Entry + Clone Entry + + + Move Entry Up + Move Entry Up + + + Move Entry Down + Move Entry Down + + + Copy Username + Copy Username + + + Copy Password + Copy Password + + + Show Application Settings + Show Application Settings + + + Show Password Generator + Show Password Generator + + + Remove Passkey From Entry + Remove Passkey From Entry + + + Perform Auto-Type: {USERNAME} + Perform Auto-Type: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Perform Auto-Type: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Perform Auto-Type: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Perform Auto-Type: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Perform Auto-Type: {TOTP} + + + Copy Title + Copy Title + + + Copy URL + Copy URL + + + Copy Notes + Copy Notes + + + Export to CSV + Export to CSV + + + Export to HTML + Export to HTML + + + Import KeePass1 Database + Import KeePass1 Database + + + Import 1Password Vault + Import 1Password Vault + + + Import CSV File + Import CSV File + + + Show TOTP QR Code + Show TOTP QR Code + + + Set up TOTP + Set up TOTP + + + Empty Recycle Bin + Empty Recycle Bin + + + Open Donation Website + Open Donation Website + + + Open Bug Report + Open Bug Report + + + Open Online Documentation + Open Online Documentation + + + Open Keyboard Shortcuts Guide + Open Keyboard Shortcuts Guide + + + Save Database Backup + Save Database Backup + + + SSH Agent: Add Key + SSH Agent: Add Key + + + SSH Agent: Remove Key + SSH Agent: Remove Key + + + Toggle Compact Mode + Toggle Compact Mode + + + Set Theme: Automatic + Set Theme: Automatic + + + Set Theme: Light + Set Theme: Light + + + Set Theme: Dark + Set Theme: Dark + + + Set Theme: Classic + Set Theme: Classic + + + Toggle Show Menubar + Toggle Show Menubar + + + Toggle Show Toolbar + Toggle Show Toolbar + + + Toggle Show Preview Panel + Toggle Show Preview Panel + + + Toggle Always on Top + Toggle Always on Top + + + Toggle Hide Usernames + Toggle Hide Usernames + + + Toggle Hide Passwords + Toggle Hide Passwords + + + Export to XML + Export to XML + + + Toggle Allow Screen Capture + Toggle Allow Screen Capture + + + Show Group Panel + Show Group Panel + + + Toggle Show Group Panel + Toggle Show Group Panel + + + Setup Remote Sync… + Setup Remote Sync… + + + Password Generator + Password Generator + + + E&xpire Entry… + E&xpire Entry… + + + Clear SSH Agent + Clear SSH Agent + + + Clear all identities in ssh-agent + Clear all identities in ssh-agent + ManageDatabase @@ -5454,26 +6404,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Overwriting %1 [%2] - - older entry merged from database "%1" - older entry merged from database "%1" - - - Adding backup for older target %1 [%2] - Adding backup for older target %1 [%2] - - - Adding backup for older source %1 [%2] - Adding backup for older source %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Reapplying older target entry on top of newer source %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Reapplying older source entry on top of newer target %1 [%2] - Synchronizing from newer source %1 [%2] Synchronising from newer source %1 [%2] @@ -5533,14 +6463,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Here you can adjust the database encryption settings. Don't worry; you can change them later in the database settings. - - Advanced Settings - Advanced Settings - - - Simple Settings - Simple Settings - NewDatabaseWizardPageDatabaseKey @@ -5575,6 +6497,25 @@ We recommend you use the AppImage available on our downloads page. Please fill in the display name and an optional description for your new database: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Attachment name cannot be empty + + + Attachment with the same name already exists + Attachment with the same name already exists + + + Save attachment + Save attachment + + + New entry attachment + New entry attachment + + NixUtils @@ -5621,15 +6562,6 @@ We recommend you use the AppImage available on our downloads page. Expected %1 bytes of clear-text, found %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Read Database did not produce an instance -%1 - - OpVaultReader @@ -5703,6 +6635,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Unknown cipher: %1 + + AES-256/GCM is currently not supported + AES-256/GCM is currently not supported + Passphrase is required to decrypt this key Passphrase is required to decrypt this key @@ -5767,28 +6703,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Unexpected EOF when writing private key + + (encrypted) + (encrypted) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Passwords do not match + SSH Key Generator + SSH Key Generator - Passwords match so far - Passwords match so far + Type + Type - Toggle Password (%1) - Toggle Password (%1) + Bits + Bits - Generate Password (%1) - Generate Password (%1) + Comment + Comment + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Passkey Export - Warning: Caps Lock enabled! - Warning: Caps Lock enabled! + Filenames will be generated with title and .passkey file extension. + Filenames will be generated with title and .passkey file extension. + + + Export entries + Export entries + + + Export Selected + Export Selected + + + Cancel + Cancel + + + Export to folder + Export to folder + + + Export the following passkey entries. + Export the following passkey entries. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Passkey Export + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + Cannot open file + Cannot open file + + + Cannot open file "%1" for writing. + Cannot open file "%1" for writing. + + + Cannot write to file + Cannot write to file + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passkey Import + + + Username: %1 + Username: %1 + + + Group + Group + + + Database + Database + + + Import Passkey + Import Passkey + + + Import + Import + + + Cancel + Cancel + + + Entry + Entry + + + Create new entry + Create new entry + + + Relying Party: %1 + Relying Party: %1 + + + Import the following passkey: + Import the following passkey: + + + Import the following passkey to this entry: + Import the following passkey to this entry: + + + Default passkeys group (Imported Passkeys) + Default passkeys group (Imported Passkeys) + + + + PasskeyImporter + + Passkey file + Passkey file + + + All files + All files + + + Cannot open file + Cannot open file + + + Cannot open file "%1" for reading. + Cannot open file "%1" for reading. + + + Open passkey file + Open passkey file + + + Cannot import passkey + Cannot import passkey + + + Cannot import passkey file "%1". Data is missing. + Cannot import passkey file "%1". Data is missing. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Cannot import passkey file "%1". +The following data is missing: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Cannot import passkey file "%1". Private key is missing or malformed. @@ -5969,10 +7061,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Also choose from: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Exclude look-alike characters @@ -5997,10 +7085,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Word Count: - - Character Count: - Character Count: - Word Case: Word Case: @@ -6013,10 +7097,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist Add custom wordlist - - character - character - Close Close @@ -6053,6 +7133,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropy: %1 bit + + Password Quality: %1 + Password Quality: %1 + + + Poor + Password quality + Poor + + + Weak + Password quality + Weak + + + Good + Password quality + Good + + + Excellent + Password quality + Excellent + Confirm Delete Wordlist Confirm Delete Wordlist @@ -6100,8 +7204,47 @@ Do you want to overwrite it? Special Characters - Password Quality: %1 - Password Quality: %1 + passwordLength + passwordLength + + + Characters: %1 + Characters: %1 + + + MIXED case + MIXED case + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Passwords do not match + + + Passwords match so far + Passwords match so far + + + Toggle Password (%1) + Toggle Password (%1) + + + Generate Password (%1) + Generate Password (%1) + + + Warning: Caps Lock enabled! + Warning: Caps Lock enabled! + + + Quality: %1 + Quality: %1 Poor @@ -6123,6 +7266,10 @@ Do you want to overwrite it? Password quality Excellent + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Toggle password visibility using Control + H. Open the password generator using Control + G. + PickcharsDialog @@ -6139,6 +7286,21 @@ Do you want to overwrite it? Press &Tab between characters + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Preview entry attachment + + + No preview available + No preview available + + + Image format not supported + Image format not supported + + QMessageBox @@ -6177,6 +7339,10 @@ Do you want to overwrite it? Continue Continue + + Continue with weak password + Continue with weak password + QObject @@ -6570,6 +7736,10 @@ Do you want to overwrite it? Too many arguments provided. Too many arguments provided. + + Path of the database. + Path of the database. + Target decryption time in MS for the database. Target decryption time in MS for the database. @@ -6590,10 +7760,6 @@ Do you want to overwrite it? Create a new database. Create a new database. - - Path of the database. - Path of the database. - Invalid decryption time %1. Invalid decryption time %1. @@ -6638,6 +7804,158 @@ Do you want to overwrite it? Successfully created new database. Successfully created new database. + + Unset the password for the database. + Unset the password for the database. + + + Unset the key file for the database. + Unset the key file for the database. + + + Edit a database. + Edit a database. + + + Cannot use %1 and %2 at the same time. + Cannot use %1 and %2 at the same time. + + + Could not change the database key. + Could not change the database key. + + + Database was not modified. + Database was not modified. + + + Writing the database failed: %1 + Writing the database failed: %1 + + + Successfully edited the database. + Successfully edited the database. + + + Cannot remove password: The database does not have a password. + Cannot remove password: The database does not have a password. + + + Cannot remove file key: The database does not have a file key. + Cannot remove file key: The database does not have a file key. + + + Loading the new key file failed: %1 + Loading the new key file failed: %1 + + + Found unexpected Key type %1 + Found unexpected Key type %1 + + + Cannot remove all the keys from a database. + Cannot remove all the keys from a database. + + + Show a database's information. + Show a database's information. + + + UUID: + UUID: + + + Name: + Name: + + + Description: + Description: + + + Cipher: + Cipher: + + + KDF: + KDF: + + + Recycle bin is enabled. + Recycle bin is enabled. + + + Recycle bin is not enabled. + Recycle bin is not enabled. + + + Location + Location + + + Database created + Database created + + + Last saved + Last saved + + + Unsaved changes + Unsaved changes + + + yes + yes + + + no + no + + + Number of groups + Number of groups + + + Number of entries + Number of entries + + + Number of expired entries + Number of expired entries + + + Unique passwords + Unique passwords + + + Non-unique passwords + Non-unique passwords + + + Maximum password reuse + Maximum password reuse + + + Number of short passwords + Number of short passwords + + + Number of weak passwords + Number of weak passwords + + + Entries excluded from reports + Entries excluded from reports + + + Average password length + Average password length + + + %1 characters + %1 character(s) + Word count for the diceware passphrase. Word count for the diceware passphrase. @@ -6661,10 +7979,6 @@ Do you want to overwrite it? Invalid word count %1 Invalid word count %1 - - The word list is too small (< 1000 items) - The word list is too small (< 1000 items) - Title for the entry. Title for the entry. @@ -6689,10 +8003,6 @@ Do you want to overwrite it? Enter new password for entry: Enter new password for entry: - - Writing the database failed: %1 - Writing the database failed: %1 - Successfully edited entry %1. Successfully edited entry %1. @@ -6813,10 +8123,6 @@ Do you want to overwrite it? Exit interactive mode. Exit interactive mode. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Exports the content of a database to standard output in the specified format. Exports the content of a database to standard output in the specified format. @@ -6917,106 +8223,6 @@ Do you want to overwrite it? Successfully imported database. Successfully imported database. - - Show a database's information. - Show a database's information. - - - UUID: - UUID: - - - Name: - Name: - - - Description: - Description: - - - Cipher: - Cipher: - - - KDF: - KDF: - - - Recycle bin is enabled. - Recycle bin is enabled. - - - Recycle bin is not enabled. - Recycle bin is not enabled. - - - Location - Location - - - Database created - Database created - - - Last saved - Last saved - - - Unsaved changes - Unsaved changes - - - yes - yes - - - no - no - - - Number of groups - Number of groups - - - Number of entries - Number of entries - - - Number of expired entries - Number of expired entries - - - Unique passwords - Unique passwords - - - Non-unique passwords - Non-unique passwords - - - Maximum password reuse - Maximum password reuse - - - Number of short passwords - Number of short passwords - - - Number of weak passwords - Number of weak passwords - - - Entries excluded from reports - Entries excluded from reports - - - Average password length - Average password length - - - %1 characters - %1 character(s) - Unknown command %1 Unknown command %1 @@ -7189,6 +8395,10 @@ Available commands: Show the protected attributes in clear text. Show the protected attributes in clear text. + + Show all the attributes of the entry. + Show all the attributes of the entry. + Show the attachments of the entry. Show the attachments of the entry. @@ -7259,6 +8469,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Invalid YubiKey serial %1 + + Please present or touch your YubiKey to continue. + Please present or touch your YubiKey to continue. + Enter password to encrypt database (optional): Enter password to encrypt database (optional): @@ -7446,8 +8660,8 @@ Kernel: %3 %4 %1 minute%1 minutes - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan library must be at least %1, found %2.%3.%4 Cryptographic libraries: @@ -7497,18 +8711,6 @@ Kernel: %3 %4 file empty file empty - - malformed string - malformed string - - - missing closing quote - missing closing quote - - - %1: (row, col) %2,%3 - %1: (row, col) %2,%3 - AES 256-bit AES 256-bit @@ -7687,14 +8889,6 @@ Kernel: %3 %4 read password of the database from stdin read password of the database from stdin - - allow app screen recordering and screenshots - allow app screen recordering and screenshots - - - Locked databases. - Locked databases. - Database failed to lock. Database failed to lock. @@ -7703,6 +8897,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Another instance of KeePassXC is already running. + + KeePassXC is not running. No open database to lock + KeePassXC is not running. No open database to lock + Fatal error while testing the cryptographic functions. Fatal error while testing the cryptographic functions. @@ -7711,10 +8909,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Error - - Warning: Failed to prevent screenshots on a top level window! - Warning: Failed to prevent screenshots on a top level window! - Database password: Database password: @@ -7738,9 +8932,313 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Warning: Failed to block screenshot capture on a top-level window. + + + Invalid Cipher + Invalid Cipher + + + Invalid KDF + Invalid KDF + + + Access to all entries is denied + Access to all entries is denied + + + allow screenshots and app recording (Windows/macOS) + allow screenshots and app recording (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + Databases have been locked. + Databases have been locked. + + + Attestation not supported + Attestation not supported + + + Credential is excluded + Credential is excluded + + + Passkeys request canceled + Passkeys request canceled + + + Invalid user verification + Invalid user verification + + + Empty public key + Empty public key + + + Invalid URL provided + Invalid URL provided + + + Passkeys + Passkeys + + + AES initialization failed + AES initialisation failed + + + AES encrypt failed + AES encrypt failed + + + Failed to store in Linux Keyring + Failed to store in Linux Keyring + + + Polkit returned an error: %1 + Polkit returned an error: %1 + + + Could not locate key in keyring + Could not locate key in keyring + + + Could not read key in keyring + Could not read key in keyring + + + AES decrypt failed + AES decrypt failed + + + No Polkit authentication agent was available + No Polkit authentication agent was available + + + Polkit authorization failed + Polkit authorisation failed + + + No Quick Unlock provider is available + No Quick Unlock provider is available + + + Failed to init KeePassXC crypto. + Failed to init KeePassXC crypto. + + + Failed to encrypt key data. + Failed to encrypt key data. + + + Failed to get Windows Hello credential. + Failed to get Windows Hello credential. + + + Failed to decrypt key data. + Failed to decrypt key data. + + + Origin is empty or not allowed + Origin is empty or not allowed + + + Effective domain is not a valid domain + Effective domain is not a valid domain + + + Origin and RP ID do not match + Origin and RP ID do not match + + + No supported algorithms were provided + No supported algorithms were provided + + + Wait for timer to expire + Wait for timer to expire + + + Challenge is shorter than required minimum length + Challenge is shorter than required minimum length + + + user.id does not match the required length + user.id does not match the required length + + + Favorite + Tag for favorite entries + Favourite + + + File does not exist. + File does not exist. + + + Cannot open file: %1 + Cannot open file: %1 + + + Cannot parse file: %1 at position %2 + Cannot parse file: %1 at position %2 + + + Failed to decrypt json file: %1 + Failed to decrypt json file: %1 + + + Invalid encKeyValidation field + Invalid encKeyValidation field + + + Invalid cipher list within encKeyValidation field + Invalid cipher list within encKeyValidation field + + + Wrong password + Wrong password + + + Invalid encrypted data field + Invalid encrypted data field + + + Invalid cipher list within encrypted data field + Invalid cipher list within encrypted data field + + + Cannot initialize cipher + Cannot initialise cipher + + + Cannot decrypt data + Cannot decrypt data + + + Bitwarden Import + Bitwarden Import + + + Archived + Tag for archived entries + Archived + + + Invalid 1PUX file format: Not a valid ZIP file. + Invalid 1PUX file format: Not a valid ZIP file. + + + Invalid 1PUX file format: Missing export.data + Invalid 1PUX file format: Missing export.data + + + 1Password Import + 1Password Import + + + Enter Shortcut + Enter Shortcut + + + Action + Action + + + Shortcuts + Shortcuts + + + Unknown passkeys error + Unknown passkeys error + + + Invalid KDF iterations, cannot decrypt json file + Invalid KDF iterations, cannot decrypt json file + + + Unsupported format, ensure your Bitwarden export is password-protected + Unsupported format, ensure your Bitwarden export is password-protected + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + Reset Shortcuts + Reset Shortcuts + + + Double click an action to change its shortcut + Double click an action to change its shortcut + + + Filter... + Filter... + + + Shortcut Conflict + Shortcut Conflict + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + Cannot generate valid passphrases because the wordlist is too short + Cannot generate valid passphrases because the wordlist is too short + + + Encrypted files are not supported. + Encrypted files are not supported. + + + Proton Pass Import + Proton Pass Import + + + Delete plugin data? + Delete plugin data? + + + Delete plugin data from Entry(s)? + Delete plugin data from Entry(s)?Delete plugin data from Entry(s)? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tags + QtIOCompressor @@ -7776,20 +9274,39 @@ Kernel: %3 %4 Internal zlib error: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Command `%1` did not finish in time. Process was killed. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + Invalid download parameters provided. + Invalid download parameters provided. + + + Command `%1` failed to download database. + Command `%1` failed to download database. + + + Invalid database pointer or upload parameters provided. + Invalid database pointer or upload parameters provided. + + + Command `%1` exited with status code: %2 + Command `%1` exited with status code: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Failed to upload merged database. Command `%1` exited with status code: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Exclude expired entries from the report - - - Show only entries which have URL set - Show only entries which have URL set - - - Show only entries which have browser settings in custom data - Show only entries which have browser settings in custom data - Double-click entries to edit. Double-click entries to edit. @@ -7854,44 +9371,53 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry(s)…Expire Entry(s)… + + + Only show entries that have a URL + Only show entries that have a URL + + + Only show entries that have been explicitly allowed or denied + Only show entries that have been explicitly allowed or denied + + + Show expired entries + Show expired entries + + + (Expired) + (Expired) + + + Delete plugin data from Entry(s)… + Delete plugin data from Entry(s)…Delete plugin data from Entry(s)… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Exclude expired entries from the report + Show expired entries + Show expired entries - Also show entries that have been excluded from reports - Also show entries that have been excluded from reports + (Expired) + (Expired) Hover over reason to show additional details. Double-click entries to edit. Hover over reason to show additional details. Double-click entries to edit. - - Bad - Password quality - Bad - Bad — password must be changed Bad — password must be changed - - Poor - Password quality - Poor - Poor — password should be changed Poor — password should be changed - - Weak - Password quality - Weak - Weak — consider changing the password Weak — consider changing the password @@ -7940,6 +9466,14 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry(s)…Expire Entry(s)… + + + Show entries that have been excluded from reports + Show entries that have been excluded from reports + ReportsWidgetHibp @@ -8035,6 +9569,77 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry(s)…Expire Entry(s)… + + + + ReportsWidgetPasskeys + + Export + Export + + + Import + Import + + + List of entry URLs + List of entry URLs + + + Title + Title + + + Path + Path + + + Username + Username + + + URLs + URLs + + + Edit Entry… + Edit Entry… + + + Delete Entry(s)… + Delete Entry…Delete Entries… + + + Relying Party + Relying Party + + + Show expired entries + Show expired entries + + + (Expired) + (Expired) + + + Export Confirmation + Export Confirmation + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + Please wait, list of entries with passkeys is being updated… + Please wait, list of entries with passkeys is being updated… + + + No entries with passkeys. + No entries with passkeys. + ReportsWidgetStatistics @@ -8209,6 +9814,14 @@ Kernel: %3 %4 No agent running, cannot list identities. No agent running. Cannot list identities. + + Failed to remove all SSH identities from agent. + Failed to remove all SSH identities from agent. + + + All SSH identities removed from agent. + All SSH identities removed from agent. + SearchHelpWidget @@ -8275,6 +9888,10 @@ Kernel: %3 %4 Search Help Search Help + + Save Search + Save Search + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8349,34 +9966,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - Confirm when clients request entry deletion Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database cannot be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - Prompt to unlock database before searching Prompt to unlock database before searching @@ -8401,6 +9994,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Save current changes to activate the plugin and enable editing of this section. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + SettingsWidgetKeeShare @@ -8509,8 +10110,12 @@ Kernel: %3 %4 TagModel - All - All + Clear Search + Clear Search + + + All Entries + All Entries Expired @@ -8521,6 +10126,25 @@ Kernel: %3 %4 Weak Passwords + + TagView + + Remove Search + Remove Search + + + Remove Tag + Remove Tag + + + Confirm Remove Tag + Confirm Remove Tag + + + Remove tag "%1" from all entries in this database? + Remove tag "%1" from all entries in this database? + + TotpDialog @@ -8678,26 +10302,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Start storing your passwords securely in a KeePassXC database - - Create new database - Create new database - - - Open existing database - Open existing database - - - Import from KeePass 1 - Import from KeePass 1 - - - Import from 1Password - Import from 1Password - - - Import from CSV - Import from CSV - Recent databases Recent databases @@ -8710,6 +10314,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Welcome to KeePassXC %1 + + Create Database + Create Database + + + Open Database + Open Database + + + Import File + Import File + WinUtils @@ -8726,31 +10342,8 @@ Example: JBSWY3DPEHPK3PXP Could not register global shortcut - - WindowsHello - - Failed to init KeePassXC crypto. - Failed to init KeePassXC crypto. - - - Failed to encrypt key data. - Failed to encrypt key data. - - - Failed to get Windows Hello credential. - Failed to get Windows Hello credential. - - - Failed to decrypt key data. - Failed to decrypt key data. - - YubiKey - - %1 No interface, slot %2 - %1 No interface, slot %2 - General: General: @@ -8762,14 +10355,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Refresh hardware tokens - - - Refresh - Refresh - Hardware key slot selection Hardware key slot selection @@ -8802,10 +10387,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… Detecting hardware keys… @@ -8814,28 +10395,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected No hardware keys detected - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Invalid slot specified - %2 + Refresh hardware keys + Refresh hardware keys + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - Slot %3 - The YubiKey PCSC interface has not been initialized. The YubiKey PCSC interface has not been initialised. - - Hardware key is currently in use. - Hardware key is currently in use. - Could not find or access hardware key with serial number %1. Please present it to continue. Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8852,6 +10430,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Failed to complete a challenge-response. The PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Slot %3, %4 + + + Press + USB Challenge-Response Key interaction request + Press + + + Passive + USB Challenge-Response Key no interaction required + Passive + YubiKeyInterfaceUSB @@ -8859,14 +10452,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Unknown - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Configured Slot - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8881,10 +10466,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. The YubiKey USB interface has not been initialised. - - Hardware key is currently in use. - Hardware key is currently in use. - Could not find hardware key with serial number %1. Please plug it in to continue. Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8901,5 +10482,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Failed to complete a challenge-response. The specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Slot %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Slot %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_en_US.ts b/share/translations/keepassxc_en_US.ts index 2d0919bf9..334f79c29 100644 --- a/share/translations/keepassxc_en_US.ts +++ b/share/translations/keepassxc_en_US.ts @@ -80,6 +80,10 @@ Details Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Remember Remember @@ -88,10 +92,6 @@ Allow Selected Allow Selected - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Deny All && Future Deny All && Future @@ -122,6 +122,10 @@ Use OpenSSH Use OpenSSH + + Use both agents + Use both agents + SSH_AUTH_SOCK override SSH_AUTH_SOCK override @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH Agent connection is working! - - Use both agents - Use both agents - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Security + + This setting cannot be enabled when minimize on unlock is enabled. + This setting cannot be enabled when minimize on unlock is enabled. + Access error for config file %1 Access error for config file %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? You must restart the application to set the new language. Would you like to restart now? - - Reset Settings? - Reset Settings? - - - Are you sure you want to reset all general and security settings to default? - Are you sure you want to reset all general and security settings to default? - Select backup storage directory Select backup storage directory + + Confirm Reset + Confirm Reset + + + Are you sure you want to reset all settings to default? + Are you sure you want to reset all settings to default? + + + Import KeePassXC Settings + Import KeePassXC Settings + + + Failed to import settings from %1, not a valid settings file. + Failed to import settings from %1, not a valid settings file. + + + Export KeePassXC Settings + Export KeePassXC Settings + + + Small + Small + + + Normal + Normal + + + Medium + Medium + + + Large + Large + + + Custom + Custom + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Remember previously used databases + + recent files + recent files + Load previously open databases on startup Load previously open databases on startup @@ -272,25 +312,6 @@ Include beta releases when checking for updates Include beta releases when checking for updates - - On database unlock, show entries that - On database unlock, show entries that - - - have expired - On database unlock, show entries that... - have expired - - - days - On database unlock, show entries that will expire within %1 days - days - - - will expire within - On database unlock, show entries that... - will expire within - File Management File Management @@ -315,22 +336,10 @@ Backup database file before saving Backup database file before saving - - Backup destination - Backup destination - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Choose... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Toolbar button style: + + Show passwords in color + Show passwords in color + Use monospaced font for notes Use monospaced font for notes @@ -493,6 +506,71 @@ Remember last typed entry for: Remember last typed entry for: + + On database unlock, show entries that will expire within + On database unlock, show entries that will expire within + + + On database unlock, show entries that will expire within + On database unlock, show entries that will expire within + + + days + number of days warning for password expiration + days + + + Destination format: + Destination format: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + Choose folder... + Choose folder... + + + Show confirmation before moving entries to recycle bin + Show confirmation before moving entries to recycle bin + + + Copy data on double clicking field in entry view + Copy data on double clicking field in entry view + + + Show toolbar + Show toolbar + + + Show the menu bar by pressing the Alt key + Show the menu bar by pressing the Alt key + + + Show menubar + Show menubar + + + Import settings… + Import settings… + + + Export settings… + Export settings… + + + Open browser on double clicking URL field in entry view + Open browser on double clicking URL field in entry view + + + Font size: + Font size: + + + Font size selection + Font size selection + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Lock databases after minimizing the window - - Require password repeat when it is visible - Require password repeat when it is visible - Hide passwords when editing them Hide passwords when editing them @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Hide passwords in the entry preview panel - - Hide entry notes by default - Hide entry notes by default - - - Move entries to recycle bin without confirmation - Move entries to recycle bin without confirmation - - - Enable double click to copy the username/password entry columns - Enable double click to copy the username/password entry columns - Privacy Privacy @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Use DuckDuckGo service to download website icons + + Hide TOTP in the entry preview panel + Hide TOTP in the entry preview panel + + + Lock databases when switching user + Lock databases when switching user + + + Lock Options + Lock Options + + + Hide notes in the entry preview panel + Hide notes in the entry preview panel + AutoType @@ -626,18 +704,8 @@ Very long delay detected, max is %1: %2 - Invalid conversion type: %1 - Invalid conversion type: %1 - - - Invalid conversion syntax: %1 - Invalid conversion syntax: %1 - - - Invalid regular expression syntax %1 -%2 - Invalid regular expression syntax %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Entry does not have attribute for PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Trying to send invalid keysym. - Sequence aborted: Caps Lock is on Sequence aborted: Caps Lock is on @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + Trying to send invalid keyboard symbol. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Disable for this site + + Undo + Undo + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Save Entry - Ok Ok @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. You have multiple databases open. Please select the correct database for saving credentials. + + KeePassXC - Select Database + KeePassXC - Select Database + + + + BrowserPasskeysConfirmationDialog + + Cancel + Cancel + + + Update + Update + + + Authenticate + Authenticate + + + Register new + Register new + + + Register + Register + + + Timeout in <b>%n</b> seconds... + Timeout in <b>%n</b> second...Timeout in <b>%n</b> seconds... + + + Relying Party: %1 + Relying Party: %1 + + + Username: %1 + Username: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Passkey credentials + + + Add to existing entry + Add to existing entry + + + Existing passkey found. +Do you want to register a new passkey for: + Existing passkey found. +Do you want to register a new passkey for: + + + Select the existing passkey and press Update to replace it. + Select the existing passkey and press Update to replace it. + + + Authenticate passkey credentials for: + Authenticate passkey credentials for: + + + Do you want to register a passkey for: + Do you want to register a passkey for: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Create a new group - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? Do you want to create this group? - - KeePassXC: New key association request - KeePassXC: New key association request - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access Save and allow access - - KeePassXC: Overwrite existing key? - KeePassXC: Overwrite existing key? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - - KeePassXC: Update Entry - KeePassXC: Update Entry - Do you want to update the information in %1 - %2? Do you want to update the information in %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Delete entry - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - Converting attributes to custom data… + %1 (Passkey) + %1 (Passkey) - Abort - Abort + KeePassXC - Create a new group + KeePassXC - Create a new group - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Converted KeePassHTTP attributes + Disable + Disable - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - - - Successfully moved %n keys to custom data. - Successfully moved %n keys to custom data.Successfully moved %n keys to custom data. + KeePassXC - Overwrite existing key? + KeePassXC - Overwrite existing key? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: No entry with KeePassHTTP attributes found! + KeePassXC - Update Entry + KeePassXC - Update Entry - The active database does not contain an entry with KeePassHTTP attributes. - The active database does not contain an entry with KeePassHTTP attributes. + KeePassXC - Delete entry + KeePassXC - Delete entry - Don't show this warning again - Don't show this warning again + KeePassXC - New key association request + KeePassXC - New key association request - KeePassXC: Legacy browser integration settings detected - KeePassXC: Legacy browser integration settings detected + Passkey + Passkey - 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? - 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 - Passkey credentials + KeePassXC - Passkey credentials + + + Register a new passkey to this entry: + Register a new passkey to this entry: + + + KeePassXC - Update passkey + KeePassXC - Update passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + Register + Register @@ -955,10 +1076,6 @@ Would you like to migrate your existing settings now? General General - - Browsers installed as snaps are currently not supported. - Browsers installed as snaps are currently not supported. - Enable integration for these browsers: Enable integration for these browsers: @@ -1130,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID Custom extension ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - - - Please see special instructions for browser extension use below - Please see special instructions for browser extension use below - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - <b>Warning:</b> The following options can be dangerous! - <b>Warning:</b> The following options can be dangerous! - Executable Files Executable Files @@ -1166,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location Select native messaging host folder location + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Warning:</b> Only adjust these settings if necessary. + + + The custom proxy location does not exist. + The custom proxy location does not exist. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Allows using insecure http://localhost with passkeys for testing purposes. + + + Allow using localhost with passkeys + Allow using localhost with passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + CloneDialog @@ -1188,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Import CSV fields - - - filename - filename - size, rows, columns size, rows, columns @@ -1304,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 Column %1 - - Imported from CSV file - Imported from CSV file - - - Original data: - Original data: - - - Error(s) detected in CSV file! - Error(s) detected in CSV file! - [%n more message(s) skipped] [%n more message skipped][%n more messages skipped] - Error - Error + Failed to parse CSV file: %1 + Failed to parse CSV file: %1 - CSV import: writer has errors: -%1 - CSV import: writer has errors: -%1 + Imported from CSV file: %1 + Imported from CSV file: %1 + + + No Title Selected + No Title Selected + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + Tags + Tags CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n bytes - %n row(s) + CSV row count %n row%n rows %n column(s) + CSV column count %n column%n columns @@ -1400,6 +1522,14 @@ Backup database located at %2 Recycle Bin Recycle Bin + + Database file read error. + Database file read error. + + + No file path was provided. + No file path was provided. + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup database located at %2 Password field Password field - - Enter Additional Credentials (if any): - Enter Additional Credentials (if any): - - - Key File: - Key File: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - Key file help - Key file help - Hardware key slot selection Hardware key slot selection - - Hardware Key: - Hardware Key: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - Hardware key help - Hardware key help - Key file to unlock the database Key file to unlock the database @@ -1468,14 +1568,6 @@ Backup database located at %2 Browse… Browse… - - Refresh hardware tokens - Refresh hardware tokens - - - Refresh - Refresh - Unlock Database Unlock Database @@ -1538,14 +1630,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password Retry with empty password - - Failed to authenticate with Windows Hello - Failed to authenticate with Windows Hello - - - Failed to authenticate with Touch ID - Failed to authenticate with Touch ID - Failed to open key file: %1 Failed to open key file: %1 @@ -1579,22 +1663,68 @@ To prevent this error from appearing, you must go to "Database Settings / S Cannot use database file as key file - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. + authenticate to access the database + authenticate to access the database - Detecting hardware keys… - Detecting hardware keys… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - No hardware keys detected + Select Key File: + Select Key File: - Select hardware key… - Select hardware key… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + Use hardware key [Serial: %1] + Use hardware key [Serial: %1] + + + Use hardware key + Use hardware key + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + KeePassXC database file selected + KeePassXC database file selected + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file? + + + No hardware keys found. + No hardware keys found. + + + Refresh Hardware Keys + Refresh Hardware Keys + + + Click to add a key file. + Click to add a key file. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">I have a key file</a> + + + Hardware keys found, but no slots are configured. + Hardware keys found, but no slots are configured. @@ -1606,10 +1736,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Advanced Settings - General General @@ -1634,6 +1760,22 @@ If you do not have a key file, please leave the field empty. Maintenance Maintenance + + KeeShare + KeeShare + + + Secret Service Integration + Secret Service Integration + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-Browser settings - - Convert KeePassHTTP data - Convert KeePassHTTP data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - Refresh database root group ID - Refresh database root group ID - Disconnect all browsers Disconnect all browsers @@ -1661,6 +1791,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries Forget all site-specific settings on entries + + Refresh database root group ID + Refresh database root group ID + Stored keys Stored keys @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - - KeePassXC: No keys found - KeePassXC: No keys found - No shared encryption keys found in KeePassXC settings. No shared encryption keys found in KeePassXC settings. - - KeePassXC: Removed keys from database - KeePassXC: Removed keys from database - Successfully removed %n encryption key(s) from KeePassXC settings. Successfully removed %n encryption key from KeePassXC settings.Successfully removed %n encryption keys from KeePassXC settings. @@ -1739,32 +1865,14 @@ Permissions to access entries will be revoked. Abort Abort - - KeePassXC: Removed permissions - KeePassXC: Removed permissions - Successfully removed permissions from %n entry(s). Successfully removed permissions from %n entry.Successfully removed permissions from %n entries. - - KeePassXC: No entry with permissions found! - KeePassXC: No entry with permissions found! - The active database does not contain an entry with permissions. The active database does not contain an entry with permissions. - - Move KeePassHTTP attributes to custom data - Move KeePassHTTP attributes to custom data - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Refresh database ID Refresh database ID @@ -1775,6 +1883,26 @@ This is only necessary if your database is a copy of another and the browser ext Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + No keys found + No keys found + + + Removed keys from database + Removed keys from database + + + Removed permissions + Removed permissions + + + No entry with permissions found! + No entry with permissions found! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Failed to change database credentials + + Weak password + Weak password + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + The provided password does not meet the minimum quality requirement. + The provided password does not meet the minimum quality requirement. + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: Decryption Time: - - Change existing decryption time - Change existing decryption time - - - Change - Change - Decryption time in seconds Decryption time in seconds @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - unchanged - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) thread threads + + Encryption Settings: + Encryption Settings: + + + Basic + Basic + + + Advanced + Advanced + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Maximum number of history items per entry - - Max. history items: - Max. history items: - Maximum size of history per entry Maximum size of history per entry - - Max. history size: - Max. history size: - MiB MiB @@ -2066,6 +2197,108 @@ This action is not reversible. (old) (old) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + Limit the amount of history items per entry to: + Limit the amount of history items per entry to: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + Limit the total size of history items per entry to: + Limit the total size of history items per entry to: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + Autosave delay since last change + Autosave delay since last change + + + Autosave delay + Autosave delay + + + Autosave delay since last change in minutes + Autosave delay since last change in minutes + + + min + min + + + Autosave delay since last change checkbox + Autosave delay since last change checkbox + + + Public Database Metadata + Public Database Metadata + + + Warning: the following settings are not encrypted. + Warning: the following settings are not encrypted. + + + Display name: + Display name: + + + Publically visible display name used on the unlock dialog + Publically visible display name used on the unlock dialog + + + Database public display name + Database public display name + + + Display color: + Display color: + + + Publically visible color used on the unlock dialog + Publically visible color used on the unlock dialog + + + Database public display color chooser + Database public display color chooser + + + Clear + Clear + + + Display icon: + Display icon: + + + Select Database Icon + Select Database Icon + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,129 @@ This action is not reversible. Database description field + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Remove + + + Command Settings + + + + Name + Name + + + Save + Save + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + seconds + + DatabaseTabWidget @@ -2193,26 +2549,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV file - - Select CSV file - Select CSV file - Merge database Merge database - - KeePass 1 database - KeePass 1 database - - - Open KeePass 1 database - Open KeePass 1 database - - - Open OPVault - Open OPVault - Export database to CSV file Export database to CSV file @@ -2225,6 +2565,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. Writing the HTML file failed. + + Export database to XML file + Export database to XML file + + + XML file + XML file + + + Writing the XML file failed + Writing the XML file failed + Export Confirmation Export Confirmation @@ -2233,26 +2585,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - - New Database - New Database - - - %1 [New Database] - Database tab name modifier - %1 [New Database] - %1 [Locked] Database tab name modifier %1 [Locked] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - Database Tags + Searches and Tags + Searches and Tags Searching… @@ -2302,6 +2650,10 @@ This is definitely a bug, please report it to the developers. Expired entries Expired entries + + Entries expiring within %1 day(s) + Entries expiring within %1 dayEntries expiring within %1 days + No current database. No current database. @@ -2326,6 +2678,18 @@ This is definitely a bug, please report it to the developers. No Results No Results + + Save + Save + + + Enter a unique name or overwrite an existing search from the list: + Enter a unique name or overwrite an existing search from the list: + + + Save Search + Save Search + Lock Database? Lock Database? @@ -2354,26 +2718,6 @@ Save changes? File has changed File has changed - - The database file has changed. Do you want to load the changes? - The database file has changed. Do you want to load the changes? - - - Merge Request - Merge Request - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Could not open the new database file while attempting to autoreload. -Error: %1 - Disable safe saves? Disable safe saves? @@ -2416,9 +2760,94 @@ Disable safe saves and try again? Could not find database file: %1 Could not find database file: %1 - - Entries expiring within %1 day(s) - Entries expiring within %1 dayEntries expiring within %1 days + + New Database + New Database + + + %1 [New Database] + Database tab name modifier + %1 [New Database] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Downloading... + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + Remove passkey from entry + + + Do you want to remove the passkey from this entry? + Do you want to remove the passkey from this entry? + + + The database file "%1" was modified externally + The database file "%1" was modified externally + + + Do you want to load the changes? + Do you want to load the changes? + + + Reload database + Reload database + + + Reloading database… + Reloading database… + + + Reload canceled + Reload canceled + + + Reload successful + Reload successful + + + Reload pending user action… + Reload pending user action… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + Database file overwritten. + Database file overwritten. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. @@ -2471,10 +2900,6 @@ Disable safe saves and try again? n/a n/a - - (encrypted) - (encrypted) - Select private key Select private key @@ -2561,6 +2986,10 @@ Would you like to correct it? Hide Hide + + %n hour(s) + %n hour%n hours + %n week(s) %n week%n weeks @@ -2573,9 +3002,9 @@ Would you like to correct it? %n year(s) %n year%n years - - %n hour(s) - %n hour%n hours + + Failed to decrypt SSH key, ensure password is correct. + Failed to decrypt SSH key, ensure password is correct. @@ -2695,10 +3124,20 @@ Would you like to correct it? Add new window association Add new window association + + + + Add item + + + Remove selected window association Remove selected window association + + - + Remove item + - + Window title: Window title: @@ -2723,23 +3162,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Custom Auto-Type sequence for this window - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - These settings affect the browser extension’s behavior with regard to this database entry. - General General @@ -2752,26 +3177,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Skip Auto-Submit for this entry - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Use this entry only with HTTP Basic Auth Use this entry only with HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Do not use this entry with HTTP Basic Auth Do not use this entry with HTTP Basic Auth - - Additional URL's - Additional URLs - Add Add @@ -2784,6 +3197,22 @@ Would you like to correct it? Edit Edit + + These settings affect the entry's behaviour with the browser extension. + These settings affect the entry's behaviour with the browser extension. + + + Additional URLs + Additional URLs + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + EditEntryWidgetHistory @@ -2834,22 +3263,10 @@ Would you like to correct it? Notes field Notes field - - Toggle the checkbox to reveal the notes section. - Toggle the checkbox to reveal the notes section. - Username field Username field - - Toggle notes visible - Toggle notes visible - - - Notes: - Notes: - Expiration field Expiration field @@ -2866,14 +3283,6 @@ Would you like to correct it? Presets Presets - - Password: - Password: - - - URL: - URL: - Url field Url field @@ -2882,18 +3291,10 @@ Would you like to correct it? Download favicon for URL Download favicon for URL - - Title: - Title: - Title field Title field - - Username: - Username: - Password field Password field @@ -2902,18 +3303,42 @@ Would you like to correct it? Toggle expiration Toggle expiration - - Expires: - Expires: - - - Tags: - Tags: - Tags list Tags list + + &Username: + &Username: + + + &Title: + &Title: + + + &Password: + &Password: + + + UR&L: + UR&L: + + + &Notes: + &Notes: + + + Toggle notes visibility + Toggle notes visibility + + + T&ags: + T&ags: + + + &Expires: + &Expires: + EditEntryWidgetSSHAgent @@ -2953,19 +3378,6 @@ Would you like to correct it? Private key Private key - - External file - External file - - - Browser for key file - Browser for key file - - - Browse… - Button for opening file dialog - Browse… - Attachment Attachment @@ -2982,6 +3394,23 @@ Would you like to correct it? Remove from agent Remove from agent + + External file + External file + + + Browser for key file + Browse filesystem for key file + + + Browse… + Button for opening file dialog + Browse… + + + Generate + Generate + Select attachment file Select attachment file @@ -3006,6 +3435,10 @@ Would you like to correct it? seconds seconds + + Clear agent + Clear agent + EditGroupWidget @@ -3017,10 +3450,6 @@ Would you like to correct it? Icon Icon - - Browser Integration - Browser Integration - Properties Properties @@ -3037,6 +3466,10 @@ Would you like to correct it? Group has unsaved changes Group has unsaved changes + + Browser Integration + Browser Integration + Enable Enable @@ -3052,10 +3485,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Edit Group - These settings affect to the group's behaviour with the browser extension. These settings affect to the group's behaviour with the browser extension. @@ -3092,6 +3521,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + Omit WWW subdomain from matching: + + + Omit WWW subdomain from matching toggle for this and sub groups + Omit WWW subdomain from matching toggle for this and sub groups + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3324,10 +3769,6 @@ Supported extensions are: %1. Unable to fetch favicon. Unable to fetch favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Existing icon selected. Existing icon selected. @@ -3360,6 +3801,10 @@ Supported extensions are: %1. The following icon(s) failed: The following icon failed:The following icons failed: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + You can enable the DuckDuckGo website icon service under Application Settings -> Security + EditWidgetProperties @@ -3436,6 +3881,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Clone + + Passkey + Passkey + + + Invalid conversion type: %1 + Invalid conversion type: %1 + + + Invalid conversion syntax: %1 + Invalid conversion syntax: %1 + + + Invalid regular expression syntax %1 +%2 + Invalid regular expression syntax %1 +%2 + EntryAttachments @@ -3444,6 +3907,21 @@ This may cause the affected plugins to malfunction. Cannot open file "%1" + + EntryAttachmentsDialog + + Form + Form + + + File name + File name + + + File contents... + File contents... + + EntryAttachmentsModel @@ -3481,14 +3959,6 @@ This may cause the affected plugins to malfunction. Remove Remove - - Rename selected attachment - Rename selected attachment - - - Rename - Rename - Open selected attachment Open selected attachment @@ -3564,12 +4034,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment Confirm Overwrite Attachment - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Confirm Attachment Confirm Attachment @@ -3604,6 +4068,24 @@ Error: %1 Saving updated attachment failed. Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + New + New + + + Preview + Preview + + + Failed to preview an attachment: Attachment not found + Failed to preview an attachment: Attachment not found + EntryAttributesModel @@ -3798,6 +4280,14 @@ Error: %1 Has TOTP Has TOTP + + Background Color + Background Color + + + Group Path + Group Path + EntryPreviewWidget @@ -3818,8 +4308,8 @@ Error: %1 Password - Notes - Notes + URL + URL Expiration @@ -3838,8 +4328,8 @@ Error: %1 Username - URL - URL + Notes + Notes Advanced @@ -3889,6 +4379,10 @@ Error: %1 Never Never + + Double click to copy value + Double click to copy value + Enabled Enabled @@ -3897,6 +4391,10 @@ Error: %1 Disabled Disabled + + Double click to copy to clipboard + Double click to copy to clipboard + EntryURLModel @@ -3904,6 +4402,10 @@ Error: %1 Invalid URL Invalid URL + + Duplicate URL + Duplicate URL + EntryView @@ -3919,6 +4421,10 @@ Error: %1 Reset to defaults Reset to defaults + + + %1 entry(s)... + + %1 entry...+ %1 entries... + ExportDialog @@ -4140,6 +4646,193 @@ You can enable the DuckDuckGo website icon service in the security section of th Downloading favicons (%1/%2)… + + ImportWizard + + Import Wizard + Import Wizard + + + + ImportWizardPageReview + + WizardPage + WizardPage + + + Entry count: %1 + Entry count: %1 + + + Group + Group + + + Title + Title + + + Username + Username + + + Password + Password + + + Url + Url + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Form + + + Import File Selection + Import File Selection + + + Password: + Password: + + + Key File: + Key File: + + + Browse… + Browse… + + + Import Into: + Import Into: + + + New Database + New Database + + + No unlocked databases available + No unlocked databases available + + + Existing Database: + Existing Database: + + + Import File: + Import File: + + + Comma Separated Values (.csv) + Comma Separated Values (.csv) + + + 1Password Export (.1pux) + 1Password Export (.1pux) + + + 1Password Vault (.opvault) + 1Password Vault (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 Database (.kdb) + + + Open OPVault + Open OPVault + + + Select import file + Select import file + + + All files + All files + + + Key files + Key files + + + Select key file + Select key file + + + Comma Separated Values + Comma Separated Values + + + 1Password Export + 1Password Export + + + Bitwarden JSON Export + Bitwarden JSON Export + + + 1Password Vault + 1Password Vault + + + KeePass1 Database + KeePass1 Database + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON Export + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + Remote Database (.kdbx) + + KMessageWidget @@ -4574,17 +5267,6 @@ Line %2, column %3 Failed to open private key - - KeePass1OpenWidget - - Import KeePass1 Database - Import KeePass1 Database - - - Unable to open the database. - Unable to open the database. - - KeePass1Reader @@ -4941,10 +5623,6 @@ Are you sure you want to continue with this file? &Recent Databases &Recent Databases - - &Import - &Import - &Export &Export @@ -4965,6 +5643,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + Tags + &Groups &Groups @@ -5009,34 +5691,18 @@ Are you sure you want to continue with this file? &New Database… &New Database… - - Create a new database - Create a new database - &Merge From Database… &Merge From Database… - - Merge from another KDBX database - Merge from another KDBX database - &New Entry… &New Entry… - - Add a new entry - Add a new entry - &Edit Entry… &Edit Entry… - - View or edit entry - View or edit entry - &Delete Entry… &Delete Entry… @@ -5045,10 +5711,6 @@ Are you sure you want to continue with this file? &New Group… &New Group… - - Add a new group - Add a new group - &Edit Group… &Edit Group… @@ -5081,18 +5743,10 @@ Are you sure you want to continue with this file? Database &Reports… Database &Reports… - - Statistics, health check, etc. - Statistics, health check, etc. - &Database Settings… &Database Settings… - - Database settings - Database settings - &Clone Entry… &Clone Entry… @@ -5101,34 +5755,18 @@ Are you sure you want to continue with this file? Move u&p Move u&p - - Move entry one step up - Move entry one step up - Move do&wn Move do&wn - - Move entry one step down - Move entry one step down - Copy &Username Copy &Username - - Copy username to clipboard - Copy username to clipboard - Copy &Password Copy &Password - - Copy password to clipboard - Copy password to clipboard - &Settings &Settings @@ -5162,25 +5800,13 @@ Are you sure you want to continue with this file? &Title - Copy title to clipboard - Copy title to clipboard - - - &URL - &URL - - - Copy URL to clipboard - Copy URL to clipboard + Copy &URL + Copy &URL &Notes &Notes - - Copy notes to clipboard - Copy notes to clipboard - &CSV File… &CSV File… @@ -5193,26 +5819,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 Database… - - Import a KeePass 1 database - Import a KeePass 1 database - 1Password Vault… 1Password Vault… - - Import a 1Password Vault - Import a 1Password Vault - CSV File… CSV File… - - Import a CSV file - Import a CSV file - Show TOTP Show TOTP @@ -5229,6 +5843,10 @@ Are you sure you want to continue with this file? Copy &TOTP Copy &TOTP + + Copy Password and TOTP + Copy Password and TOTP + E&mpty recycle bin E&mpty recycle bin @@ -5253,10 +5871,6 @@ Are you sure you want to continue with this file? &Online Help &Online Help - - Go to online documentation - Go to online documentation - &User Guide &User Guide @@ -5301,6 +5915,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Classic (Platform-native) + + Show Menubar + Show Menubar + Show Toolbar Show Toolbar @@ -5325,6 +5943,10 @@ Are you sure you want to continue with this file? Clone Group... Clone Group... + + &XML File… + &XML File… + Clear history Clear history @@ -5352,10 +5974,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - 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. + No Tags + No Tags Restore Entry(s) @@ -5385,6 +6005,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Quit KeePassXC + + %1 Entry(s) + %1 Entry%1 Entries + Please present or touch your YubiKey to continue… Please present or touch your YubiKey to continue… @@ -5397,6 +6021,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? You must restart the application to apply this setting. Would you like to restart now? + + Allow Screen Capture + Allow Screen Capture + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Import a 1Password 1PUX file + + + Import… + Import… + + + Passkeys… + Passkeys… + + + Import Passkey + Import Passkey + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + Open Database + + + Create Database + Create Database + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Edit Entry + + + Delete Entry + + + + Create Group + + + + Edit Group + Edit Group + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Copy Username + + + Copy Password + Copy Password + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + Remove Passkey From Entry + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Import KeePass1 Database + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + Empty Recycle Bin + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + Toggle Show Menubar + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + Show Group Panel + + + Toggle Show Group Panel + Toggle Show Group Panel + + + Setup Remote Sync… + + + + Password Generator + Password Generator + + + E&xpire Entry… + E&xpire Entry… + + + Clear SSH Agent + Clear SSH Agent + + + Clear all identities in ssh-agent + Clear all identities in ssh-agent + ManageDatabase @@ -5454,26 +6386,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Overwriting %1 [%2] - - older entry merged from database "%1" - older entry merged from database "%1" - - - Adding backup for older target %1 [%2] - Adding backup for older target %1 [%2] - - - Adding backup for older source %1 [%2] - Adding backup for older source %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Reapplying older target entry on top of newer source %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Reapplying older source entry on top of newer target %1 [%2] - Synchronizing from newer source %1 [%2] Synchronizing from newer source %1 [%2] @@ -5533,14 +6445,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - - Advanced Settings - Advanced Settings - - - Simple Settings - Simple Settings - NewDatabaseWizardPageDatabaseKey @@ -5575,6 +6479,25 @@ We recommend you use the AppImage available on our downloads page. Please fill in the display name and an optional description for your new database: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Attachment name cannot be empty + + + Attachment with the same name already exists + Attachment with the same name already exists + + + Save attachment + Save attachment + + + New entry attachment + New entry attachment + + NixUtils @@ -5621,15 +6544,6 @@ We recommend you use the AppImage available on our downloads page. Expected %1 bytes of clear-text, found %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Read Database did not produce an instance -%1 - - OpVaultReader @@ -5703,6 +6617,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Unknown cipher: %1 + + AES-256/GCM is currently not supported + AES-256/GCM is currently not supported + Passphrase is required to decrypt this key Passphrase is required to decrypt this key @@ -5767,28 +6685,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Unexpected EOF when writing private key + + (encrypted) + (encrypted) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Passwords do not match + SSH Key Generator + - Passwords match so far - Passwords match so far + Type + Type - Toggle Password (%1) - Toggle Password (%1) + Bits + - Generate Password (%1) - Generate Password (%1) + Comment + Comment + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Passkey Export - Warning: Caps Lock enabled! - Warning: Caps Lock enabled! + Filenames will be generated with title and .passkey file extension. + Filenames will be generated with title and .passkey file extension. + + + Export entries + Export entries + + + Export Selected + Export Selected + + + Cancel + Cancel + + + Export to folder + Export to folder + + + Export the following passkey entries. + Export the following passkey entries. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Passkey Export + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + Cannot open file + Cannot open file + + + Cannot open file "%1" for writing. + Cannot open file "%1" for writing. + + + Cannot write to file + Cannot write to file + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passkey Import + + + Username: %1 + Username: %1 + + + Group + Group + + + Database + Database + + + Import Passkey + Import Passkey + + + Import + Import + + + Cancel + Cancel + + + Entry + Entry + + + Create new entry + Create new entry + + + Relying Party: %1 + Relying Party: %1 + + + Import the following passkey: + Import the following passkey: + + + Import the following passkey to this entry: + Import the following passkey to this entry: + + + Default passkeys group (Imported Passkeys) + Default passkeys group (Imported Passkeys) + + + + PasskeyImporter + + Passkey file + Passkey file + + + All files + All files + + + Cannot open file + Cannot open file + + + Cannot open file "%1" for reading. + Cannot open file "%1" for reading. + + + Open passkey file + Open passkey file + + + Cannot import passkey + Cannot import passkey + + + Cannot import passkey file "%1". Data is missing. + Cannot import passkey file "%1". Data is missing. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Cannot import passkey file "%1". +The following data is missing: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Cannot import passkey file "%1". Private key is missing or malformed. @@ -5969,10 +7043,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Also choose from: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Exclude look-alike characters @@ -5997,10 +7067,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Word Count: - - Character Count: - Character Count: - Word Case: Word Case: @@ -6013,10 +7079,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist Add custom wordlist - - character - character - Close Close @@ -6053,6 +7115,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropy: %1 bit + + Password Quality: %1 + Password Quality: %1 + + + Poor + Password quality + Poor + + + Weak + Password quality + Weak + + + Good + Password quality + Good + + + Excellent + Password quality + Excellent + Confirm Delete Wordlist Confirm Delete Wordlist @@ -6100,8 +7186,47 @@ Do you want to overwrite it? Special Characters - Password Quality: %1 - Password Quality: %1 + passwordLength + passwordLength + + + Characters: %1 + Characters: %1 + + + MIXED case + MIXED case + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Passwords do not match + + + Passwords match so far + Passwords match so far + + + Toggle Password (%1) + Toggle Password (%1) + + + Generate Password (%1) + Generate Password (%1) + + + Warning: Caps Lock enabled! + Warning: Caps Lock enabled! + + + Quality: %1 + Quality: %1 Poor @@ -6123,6 +7248,10 @@ Do you want to overwrite it? Password quality Excellent + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6139,6 +7268,21 @@ Do you want to overwrite it? Press &Tab between characters + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Preview entry attachment + + + No preview available + No preview available + + + Image format not supported + Image format not supported + + QMessageBox @@ -6177,6 +7321,10 @@ Do you want to overwrite it? Continue Continue + + Continue with weak password + Continue with weak password + QObject @@ -6570,6 +7718,10 @@ Do you want to overwrite it? Too many arguments provided. Too many arguments provided. + + Path of the database. + Path of the database. + Target decryption time in MS for the database. Target decryption time in MS for the database. @@ -6590,10 +7742,6 @@ Do you want to overwrite it? Create a new database. Create a new database. - - Path of the database. - Path of the database. - Invalid decryption time %1. Invalid decryption time %1. @@ -6638,6 +7786,158 @@ Do you want to overwrite it? Successfully created new database. Successfully created new database. + + Unset the password for the database. + Unset the password for the database. + + + Unset the key file for the database. + Unset the key file for the database. + + + Edit a database. + Edit a database. + + + Cannot use %1 and %2 at the same time. + Cannot use %1 and %2 at the same time. + + + Could not change the database key. + Could not change the database key. + + + Database was not modified. + Database was not modified. + + + Writing the database failed: %1 + Writing the database failed: %1 + + + Successfully edited the database. + Successfully edited the database. + + + Cannot remove password: The database does not have a password. + Cannot remove password: The database does not have a password. + + + Cannot remove file key: The database does not have a file key. + Cannot remove file key: The database does not have a file key. + + + Loading the new key file failed: %1 + Loading the new key file failed: %1 + + + Found unexpected Key type %1 + Found unexpected Key type %1 + + + Cannot remove all the keys from a database. + Cannot remove all the keys from a database. + + + Show a database's information. + Show a database's information. + + + UUID: + UUID: + + + Name: + Name: + + + Description: + Description: + + + Cipher: + Cipher: + + + KDF: + KDF: + + + Recycle bin is enabled. + Recycle bin is enabled. + + + Recycle bin is not enabled. + Recycle bin is not enabled. + + + Location + Location + + + Database created + Database created + + + Last saved + Last saved + + + Unsaved changes + Unsaved changes + + + yes + yes + + + no + no + + + Number of groups + Number of groups + + + Number of entries + Number of entries + + + Number of expired entries + Number of expired entries + + + Unique passwords + Unique passwords + + + Non-unique passwords + Non-unique passwords + + + Maximum password reuse + Maximum password reuse + + + Number of short passwords + Number of short passwords + + + Number of weak passwords + Number of weak passwords + + + Entries excluded from reports + Entries excluded from reports + + + Average password length + Average password length + + + %1 characters + %1 characters + Word count for the diceware passphrase. Word count for the diceware passphrase. @@ -6661,10 +7961,6 @@ Do you want to overwrite it? Invalid word count %1 Invalid word count %1 - - The word list is too small (< 1000 items) - The word list is too small (< 1000 items) - Title for the entry. Title for the entry. @@ -6689,10 +7985,6 @@ Do you want to overwrite it? Enter new password for entry: Enter new password for entry: - - Writing the database failed: %1 - Writing the database failed: %1 - Successfully edited entry %1. Successfully edited entry %1. @@ -6813,10 +8105,6 @@ Do you want to overwrite it? Exit interactive mode. Exit interactive mode. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Exports the content of a database to standard output in the specified format. Exports the content of a database to standard output in the specified format. @@ -6917,106 +8205,6 @@ Do you want to overwrite it? Successfully imported database. Successfully imported database. - - Show a database's information. - Show a database's information. - - - UUID: - UUID: - - - Name: - Name: - - - Description: - Description: - - - Cipher: - Cipher: - - - KDF: - KDF: - - - Recycle bin is enabled. - Recycle bin is enabled. - - - Recycle bin is not enabled. - Recycle bin is not enabled. - - - Location - Location - - - Database created - Database created - - - Last saved - Last saved - - - Unsaved changes - Unsaved changes - - - yes - yes - - - no - no - - - Number of groups - Number of groups - - - Number of entries - Number of entries - - - Number of expired entries - Number of expired entries - - - Unique passwords - Unique passwords - - - Non-unique passwords - Non-unique passwords - - - Maximum password reuse - Maximum password reuse - - - Number of short passwords - Number of short passwords - - - Number of weak passwords - Number of weak passwords - - - Entries excluded from reports - Entries excluded from reports - - - Average password length - Average password length - - - %1 characters - %1 characters - Unknown command %1 Unknown command %1 @@ -7189,6 +8377,10 @@ Available commands: Show the protected attributes in clear text. Show the protected attributes in clear text. + + Show all the attributes of the entry. + Show all the attributes of the entry. + Show the attachments of the entry. Show the attachments of the entry. @@ -7259,6 +8451,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Invalid YubiKey serial %1 + + Please present or touch your YubiKey to continue. + Please present or touch your YubiKey to continue. + Enter password to encrypt database (optional): Enter password to encrypt database (optional): @@ -7446,8 +8642,8 @@ Kernel: %3 %4 %1 minute%1 minutes - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan library must be at least %1, found %2.%3.%4 Cryptographic libraries: @@ -7497,18 +8693,6 @@ Kernel: %3 %4 file empty file empty - - malformed string - malformed string - - - missing closing quote - missing closing quote - - - %1: (row, col) %2,%3 - %1: (row, col) %2,%3 - AES 256-bit AES 256-bit @@ -7687,14 +8871,6 @@ Kernel: %3 %4 read password of the database from stdin read password of the database from stdin - - allow app screen recordering and screenshots - allow app screen recordering and screenshots - - - Locked databases. - Databases have been locked. - Database failed to lock. Database failed to lock. @@ -7703,6 +8879,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Another instance of KeePassXC is already running. + + KeePassXC is not running. No open database to lock + KeePassXC is not running. No open database to lock + Fatal error while testing the cryptographic functions. Fatal error while testing the cryptographic functions. @@ -7711,10 +8891,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Error - - Warning: Failed to prevent screenshots on a top level window! - Warning: Failed to prevent screenshots on a top level window! - Database password: Database password: @@ -7738,8 +8914,312 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. - Please present or touch your YubiKey to continue. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Warning: Failed to block screenshot capture on a top-level window. + + + Invalid Cipher + Invalid Cipher + + + Invalid KDF + Invalid KDF + + + Access to all entries is denied + Access to all entries is denied + + + allow screenshots and app recording (Windows/macOS) + allow screenshots and app recording (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + Databases have been locked. + Databases have been locked. + + + Attestation not supported + Attestation not supported + + + Credential is excluded + Credential is excluded + + + Passkeys request canceled + Passkeys request canceled + + + Invalid user verification + Invalid user verification + + + Empty public key + Empty public key + + + Invalid URL provided + Invalid URL provided + + + Passkeys + Passkeys + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + Failed to init KeePassXC crypto. + + + Failed to encrypt key data. + Failed to encrypt key data. + + + Failed to get Windows Hello credential. + Failed to get Windows Hello credential. + + + Failed to decrypt key data. + Failed to decrypt key data. + + + Origin is empty or not allowed + Origin is empty or not allowed + + + Effective domain is not a valid domain + Effective domain is not a valid domain + + + Origin and RP ID do not match + Origin and RP ID do not match + + + No supported algorithms were provided + No supported algorithms were provided + + + Wait for timer to expire + Wait for timer to expire + + + Challenge is shorter than required minimum length + Challenge is shorter than required minimum length + + + user.id does not match the required length + user.id does not match the required length + + + Favorite + Tag for favorite entries + Favorite + + + File does not exist. + File does not exist. + + + Cannot open file: %1 + Cannot open file: %1 + + + Cannot parse file: %1 at position %2 + Cannot parse file: %1 at position %2 + + + Failed to decrypt json file: %1 + Failed to decrypt json file: %1 + + + Invalid encKeyValidation field + Invalid encKeyValidation field + + + Invalid cipher list within encKeyValidation field + Invalid cipher list within encKeyValidation field + + + Wrong password + Wrong password + + + Invalid encrypted data field + Invalid encrypted data field + + + Invalid cipher list within encrypted data field + Invalid cipher list within encrypted data field + + + Cannot initialize cipher + Cannot initialize cipher + + + Cannot decrypt data + Cannot decrypt data + + + Bitwarden Import + Bitwarden Import + + + Archived + Tag for archived entries + Archived + + + Invalid 1PUX file format: Not a valid ZIP file. + Invalid 1PUX file format: Not a valid ZIP file. + + + Invalid 1PUX file format: Missing export.data + Invalid 1PUX file format: Missing export.data + + + 1Password Import + 1Password Import + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + Unknown passkeys error + + + Invalid KDF iterations, cannot decrypt json file + Invalid KDF iterations, cannot decrypt json file + + + Unsupported format, ensure your Bitwarden export is password-protected + Unsupported format, ensure your Bitwarden export is password-protected + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + Cannot generate valid passphrases because the wordlist is too short + + + Encrypted files are not supported. + Encrypted files are not supported. + + + Proton Pass Import + Proton Pass Import + + + Delete plugin data? + Delete plugin data? + + + Delete plugin data from Entry(s)? + Delete plugin data from Entry?Delete plugin data from Entries? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + start minimized to the system tray + start minimized to the system tray + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tags @@ -7776,20 +9256,39 @@ Kernel: %3 %4 Internal zlib error: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Exclude expired entries from the report - - - Show only entries which have URL set - Show only entries which have URL set - - - Show only entries which have browser settings in custom data - Show only entries which have browser settings in custom data - Double-click entries to edit. Double-click entries to edit. @@ -7854,44 +9353,53 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry…Expire Entries… + + + Only show entries that have a URL + Only show entries that have a URL + + + Only show entries that have been explicitly allowed or denied + Only show entries that have been explicitly allowed or denied + + + Show expired entries + Show expired entries + + + (Expired) + (Expired) + + + Delete plugin data from Entry(s)… + Delete plugin data from Entry…Delete plugin data from Entries… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Exclude expired entries from the report + Show expired entries + Show expired entries - Also show entries that have been excluded from reports - Also show entries that have been excluded from reports + (Expired) + (Expired) Hover over reason to show additional details. Double-click entries to edit. Hover over reason to show additional details. Double-click entries to edit. - - Bad - Password quality - Bad - Bad — password must be changed Bad — password must be changed - - Poor - Password quality - Poor - Poor — password should be changed Poor — password should be changed - - Weak - Password quality - Weak - Weak — consider changing the password Weak — consider changing the password @@ -7940,6 +9448,14 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry…Expire Entries… + + + Show entries that have been excluded from reports + Show entries that have been excluded from reports + ReportsWidgetHibp @@ -8035,6 +9551,77 @@ Kernel: %3 %4 Exclude from reports Exclude from reports + + Expire Entry(s)… + Expire Entry…Expire Entries… + + + + ReportsWidgetPasskeys + + Export + Export + + + Import + Import + + + List of entry URLs + List of entry URLs + + + Title + Title + + + Path + Path + + + Username + Username + + + URLs + URLs + + + Edit Entry… + Edit Entry… + + + Delete Entry(s)… + Delete Entry…Delete Entries… + + + Relying Party + Relying Party + + + Show expired entries + Show expired entries + + + (Expired) + (Expired) + + + Export Confirmation + Export Confirmation + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + Please wait, list of entries with passkeys is being updated… + Please wait, list of entries with passkeys is being updated… + + + No entries with passkeys. + No entries with passkeys. + ReportsWidgetStatistics @@ -8209,6 +9796,14 @@ Kernel: %3 %4 No agent running, cannot list identities. No agent running, cannot list identities. + + Failed to remove all SSH identities from agent. + Failed to remove all SSH identities from agent. + + + All SSH identities removed from agent. + All SSH identities removed from agent. + SearchHelpWidget @@ -8275,6 +9870,10 @@ Kernel: %3 %4 Search Help Search Help + + Save Search + Save Search + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8349,34 +9948,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - Confirm when clients request entry deletion Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - Prompt to unlock database before searching Prompt to unlock database before searching @@ -8401,6 +9976,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Save current changes to activate the plugin and enable editing of this section. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + SettingsWidgetKeeShare @@ -8509,8 +10092,12 @@ Kernel: %3 %4 TagModel - All - All + Clear Search + Clear Search + + + All Entries + All Entries Expired @@ -8521,6 +10108,25 @@ Kernel: %3 %4 Weak Passwords + + TagView + + Remove Search + Remove Search + + + Remove Tag + Remove Tag + + + Confirm Remove Tag + Confirm Remove Tag + + + Remove tag "%1" from all entries in this database? + Remove tag "%1" from all entries in this database? + + TotpDialog @@ -8678,26 +10284,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Start storing your passwords securely in a KeePassXC database - - Create new database - Create new database - - - Open existing database - Open existing database - - - Import from KeePass 1 - Import from KeePass 1 - - - Import from 1Password - Import from 1Password - - - Import from CSV - Import from CSV - Recent databases Recent databases @@ -8710,6 +10296,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Welcome to KeePassXC %1 + + Create Database + Create Database + + + Open Database + Open Database + + + Import File + Import File + WinUtils @@ -8726,31 +10324,8 @@ Example: JBSWY3DPEHPK3PXP Could not register global shortcut - - WindowsHello - - Failed to init KeePassXC crypto. - Failed to init KeePassXC crypto. - - - Failed to encrypt key data. - Failed to encrypt key data. - - - Failed to get Windows Hello credential. - Failed to get Windows Hello credential. - - - Failed to decrypt key data. - Failed to decrypt key data. - - YubiKey - - %1 No interface, slot %2 - %1 No interface, slot %2 - General: General: @@ -8762,14 +10337,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Refresh hardware tokens - - - Refresh - Refresh - Hardware key slot selection Hardware key slot selection @@ -8802,10 +10369,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… Detecting hardware keys… @@ -8814,28 +10377,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected No hardware keys detected - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Invalid slot specified - %2 + Refresh hardware keys + Refresh hardware keys + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - Slot %3 - The YubiKey PCSC interface has not been initialized. The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - Hardware key is currently in use. - Could not find or access hardware key with serial number %1. Please present it to continue. Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8852,6 +10412,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Slot %3, %4 + + + Press + USB Challenge-Response Key interaction request + Press + + + Passive + USB Challenge-Response Key no interaction required + Passive + YubiKeyInterfaceUSB @@ -8859,14 +10434,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Unknown - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Configured Slot - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8881,10 +10448,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - Hardware key is currently in use. - Could not find hardware key with serial number %1. Please plug it in to continue. Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8901,5 +10464,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Failed to complete a challenge-response, the specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Slot %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Slot %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_es.ts b/share/translations/keepassxc_es.ts index 7d3c2689f..502575fa3 100644 --- a/share/translations/keepassxc_es.ts +++ b/share/translations/keepassxc_es.ts @@ -11,11 +11,11 @@ Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> - Informe errores en: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> + Informar de errores en: <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 se distribuye bajo la Licencia Pública General de GNU (GPL) versión 2 o versión 3 (si así lo prefiere). + KeePassXC se distribuye bajo los términos de la Licencia Pública General de GNU (GPL) versión 2 o (a tu elección) versión 3. Project Maintainers: @@ -80,6 +80,10 @@ Details Detalles + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Su decisión será recordada mientras el cliente solicitante y KeePassXC están en ejecución ambos. + Remember Recordar @@ -88,10 +92,6 @@ Allow Selected Permitir seleccionado - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Su decisión será recordada mientras el cliente solicitante y KeePassXC están en ejecución ambos. - Deny All && Future Denegar todo y futuro @@ -112,7 +112,7 @@ AgentSettingsWidget Enable SSH Agent integration - Habilitar integración del agente SSH + Habilitar integración del agente de SSH Use Pageant @@ -122,6 +122,10 @@ Use OpenSSH Usar OpenSSH + + Use both agents + Usar ambos agentes + SSH_AUTH_SOCK override Anulación de SSH_AUTH_SOCK @@ -144,22 +148,18 @@ No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - No hay ningún socket de agente SSH disponible. Asegúrese que exista la variable de entorno  SSH_AUTH_SOCK o fije una sustitución. + No hay ningún socket de Agente de SSH disponible. Asegúrese que exista la variable de entorno SSH_AUTH_SOCK o fije una sustitución. SSH Agent connection is working! ¡La conexión del agente de SSH está funcionando! - - Use both agents - - ApplicationSettingsWidget Application Settings - Parámetros de la aplicación + Configuración de la aplicación General @@ -169,6 +169,10 @@ Security Seguridad + + This setting cannot be enabled when minimize on unlock is enabled. + Esta preferencia no puede ser habilitada cuando está habilitado minimizar al desbloquear. + Access error for config file %1 Error de acceso al archivo de configuración %1 @@ -213,24 +217,56 @@ You must restart the application to set the new language. Would you like to restart now? Debe reiniciar la aplicación para establecer el nuevo lenguage. ¿Desea reiniciar ahora? - - Reset Settings? - ¿Restablecer parámetros? - - - Are you sure you want to reset all general and security settings to default? - ¿Desea restablecer los parámetros generales y seguridad a sus valores por defecto? - Select backup storage directory Seleccionar la carpeta de copia de seguridad + + Confirm Reset + Confirmar Reinicio + + + Are you sure you want to reset all settings to default? + ¿Estás seguro de que quieres restablecer todos los ajustes por defecto? + + + Import KeePassXC Settings + Importar la configuración de KeePassXC + + + Failed to import settings from %1, not a valid settings file. + No se pudo importar la configuración de %1, no es un archivo de configuración válido. + + + Export KeePassXC Settings + Exportar la configuración de KeePassXC + + + Small + Pequeño + + + Normal + normal + + + Medium + mediano + + + Large + largo + + + Custom + Personalizado + ApplicationSettingsWidgetGeneral Basic Settings - Parámetros básicos + Configuración básica Startup @@ -242,7 +278,7 @@ Automatically launch KeePassXC at system startup - Inicie automáticamente KeePassXC al arrancar el sistema + Iniciar automáticamente KeePassXC al arrancar el sistema Minimize window at application startup @@ -250,12 +286,16 @@ Minimize window after unlocking database - Minimizar ventana tras desbloquear base de datos. + Minimizar la ventana tras desbloquear base de datos. Remember previously used databases Recordar bases de datos usadas anteriormente + + recent files + archivos recientes + Load previously open databases on startup Cargar bases de datos abiertas anteriormente al inicio @@ -272,32 +312,13 @@ Include beta releases when checking for updates Incluir versiones beta al comprobar actualizaciones - - On database unlock, show entries that - Al desbloquear la base de datos, mostrar apuntes que - - - have expired - On database unlock, show entries that... - ha expirado - - - days - On database unlock, show entries that will expire within %1 days - días - - - will expire within - On database unlock, show entries that... - expirarán en - File Management - Gestión de ficheros + Gestión de archivos Automatically save after every change - Guardar automáticamente después de cada cambio + Guardar automáticamente tras cada cambio Automatically save when locking database @@ -305,7 +326,7 @@ Automatically save non-data changes when locking database - Auto-guardado de modificaciones distintas a los datos al bloquear la base de datos + Guardar automaticamente cambios sin datos al bloquear la base de datos Automatically reload the database when modified externally @@ -315,22 +336,10 @@ Backup database file before saving Hacer una copia de seguridad de la base de datos antes de guardar - - Backup destination - Destino de la copia de seguridad - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Especifica la localización del archivo de la copia de seguridad de la base de datos. Las ocurrencias de «{DB_FILENAME}» son reemplazadas con el nombre de archivo de la base de datos guardada sin la extensión. {TIME:<format>} es reemplazado con la hora de la copia de seguridad, ver https://doc.qt.io/qt-5/qdatetime.html#toString. <format> su cadena de formato por defecto es «dd_MM_yyyy_hh-mm-ss». - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Seleccionar... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Usar método alternativo de guardado (puede resolver problemas con Dropbox, Google Drive, GVFS, etc.) @@ -369,11 +378,11 @@ Favicon download timeout: - Tiempo de espera de descarga de icono: + Tiempo agotado en la espera de descarga del icono: Website icon download timeout in seconds - Tiempo de espera en segundos de descarga de icono de sitio web + Tiempo de espera en segundos para descarga del icono del sitio web sec @@ -408,9 +417,13 @@ Toolbar button style: Estilo de la barra de botones: + + Show passwords in color + Mostrar contraseñas en color + Use monospaced font for notes - Utilizar tipografía mono espaciadas para notas + Utilizar tipografía mono-espaciadas para notas Minimize instead of app exit @@ -434,7 +447,7 @@ Reset settings to default… - Restaurar parámetros por defecto… + Restablecer configuración por defecto… Auto-Type @@ -458,11 +471,11 @@ Re-lock previously locked database after performing Auto-Type - Volver a bloquear la base de datos tras realizar una autoescritura + Volver a bloquear la base de datos tras realizar un autotecleo Auto-Type start delay: - Retardo del inicio del autoescritura: + Retardo del inicio de autoescritura: Global Auto-Type shortcut: @@ -479,7 +492,7 @@ Auto-Type typing delay: - Retardo de tecleo del autoescritura: + Retardo de tecleo de autoescritura Global auto-type shortcut @@ -493,6 +506,71 @@ Remember last typed entry for: Recordar último apunte para: + + On database unlock, show entries that will expire within + Al desbloquear la base de datos, mostrar las entradas que caducarán en un plazo de + + + On database unlock, show entries that will expire within + Al desbloquear la base de datos, mostrar las entradas que caducarán en un plazo de + + + days + number of days warning for password expiration + días + + + Destination format: + Formato de destino: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> se sustituye por el nombre de archivo de la base de datos guardada sin extensión</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> se sustituye por el formato de hora especificado (por defecto: dd_MM_yyyy_hh-mm-ss)</p><p>Para más información, consulte la Guía del usuario</p></body></html> + + + Choose folder... + Elegir carpeta... + + + Show confirmation before moving entries to recycle bin + Mostrar confirmación antes de mover entradas a papelera + + + Copy data on double clicking field in entry view + Copiar datos al hacer doble clic en un campo de la vista de entrada + + + Show toolbar + Mostrar barra de herramientas + + + Show the menu bar by pressing the Alt key + Mostrar la barra de menús pulsando la tecla Alt + + + Show menubar + Mostrar barra de menú + + + Import settings… + Importar ajustes.... + + + Export settings… + Exportar ajustes... + + + Open browser on double clicking URL field in entry view + Abrir el navegador al hacer doble clic en el campo URL en la vista de entrada + + + Font size: + Tamaño fuente: + + + Font size selection + Selección de tamaño de fuente + ApplicationSettingsWidgetSecurity @@ -502,7 +580,7 @@ Database lock timeout seconds - Tiempo de espera de bloqueo de base de datos en segundos + Tiempo de espera de cierre de la base de datos sec @@ -511,11 +589,11 @@ Clear clipboard after - Purga del portapapeles tras + Purgar el portapapeles tras Clear search query after - Purgar consulta de búsqueda tras + Purgar la consulta de búsqueda tras min @@ -524,7 +602,7 @@ Clipboard clear seconds - Segundos para purga del portapapeles + Segundos para purgar el portapapeles Lock databases after inactivity of @@ -540,16 +618,12 @@ Lock databases when session is locked or lid is closed - Bloquear bases de datos cuando la sesión esté bloqueada o la pantalla cerrada + Bloquear bases de datos cuando la sesión se bloquee o se cierre el monitor Lock databases after minimizing the window Bloquear bases de datos al minimizar la ventana - - Require password repeat when it is visible - Solicitar repetición de la contraseña cuando esté visible - Hide passwords when editing them Ocultar las contraseñas cuando las edite @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Ocultar contraseñas en el apunte del panel de vista previa - - Hide entry notes by default - Ocultar notas del apunte por defecto - - - Move entries to recycle bin without confirmation - Mover apuntes a la papelera de reciclaje sin confirmación - - - Enable double click to copy the username/password entry columns - Activar doble clic para copiar las columnas de apunte de usuario/contraseña - Privacy Privacidad @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Utilizar el servicio DuckDuckGo para descargar iconos de sitio web + + Hide TOTP in the entry preview panel + Ocultar TOTP en el panel de vista previa de apunte + + + Lock databases when switching user + Bloquear bases de datos al cambiar de usuario + + + Lock Options + Opciones de bloqueo + + + Hide notes in the entry preview panel + Ocultar notas en el panel de vista previa de apunte + AutoType @@ -591,11 +669,11 @@ Auto-Type Error - Error de Autoescritura + Error de autoescritura Permission Required - Permiso Requerido + Permiso requerido KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. @@ -603,7 +681,7 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC requiere el permiso accesibilidad y grabación de pantalla para realizar la autoescritura global. La grabación de pantalla es necesario para usar el título de la ventana al encontrar apuntes. Si ya ha concedido este permiso, quizá deba reiniciar KeePassXC. + KeePassXC requiere el permiso accesibilidad y grabación de pantalla para realizar la autotecleo global. La grabación de pantalla es necesario para usar el título de la ventana al encontrar apuntes. Si ya ha concedido este permiso, quizá deba reiniciar KeePassXC. Invalid entry provided @@ -626,18 +704,8 @@ Retraso muy largo detectado, máx es %1: %2 - Invalid conversion type: %1 - Tipo de conversión no válido: %1 - - - Invalid conversion syntax: %1 - Sintaxis de conversión no válida: %1 - - - Invalid regular expression syntax %1 -%2 - Sintaxis de expresión regular no válida %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + El apunte no tiene atributo para PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Intentando enviar keysym no válido. - Sequence aborted: Caps Lock is on Secuencia abortada: Bloqueo Mayúsculas está activo @@ -700,6 +764,10 @@ Unable to get valid keycode for key: No se puede obtener clave de código válida para la clave: + + Trying to send invalid keyboard symbol. + Intentando enviar símbolos de teclado incorrectos. + AutoTypeSelectDialog @@ -719,7 +787,7 @@ Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> <p>Puede usar búsquedas de consultas avanzadas para encontrar cualquier apunte en su base de datos abierta. Los siguientes atajos de teclado son útiles:<br/> -Ctrl+F - Intercambiar búsqueda de base de datos<br/> +Ctrl+F - Conmutar búsqueda de base de datos<br/> Ctrl+1 - Escribir nombre de usuario<br/> Ctrl+2 - Escribir contraseña<br/> Ctrl+3 - Escribir TOTP<br/> @@ -804,13 +872,13 @@ Ctrl+4 - Usar teclado virtual (solo Windows)</p> Disable for this site Deshabilitar para este sitio + + Undo + Deshacer + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - Guardar apunte KeePassXC-Browser - Ok Aceptar @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Tiene múltiples bases de datos abiertas. Seleccione la base de datos correcta para guardar las credenciales. + + KeePassXC - Select Database + KeePassXC - Seleccionar base de datos + + + + BrowserPasskeysConfirmationDialog + + Cancel + Cancelar + + + Update + Actualizar + + + Authenticate + Autenticar + + + Register new + Registrar ahora + + + Register + Registrar + + + Timeout in <b>%n</b> seconds... + Caduca en <b>%n</b> segundo...Caduca en <b>%n</b> segundos...Caduca en <b>%n</b> segundos... + + + Relying Party: %1 + Parte que confía: %1 + + + Username: %1 + Usuario: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Credenciales passkey + + + Add to existing entry + Añadir a apunte existente + + + Existing passkey found. +Do you want to register a new passkey for: + Passkey existente encontrada. +Desea registrar una nueva passkey para: + + + Select the existing passkey and press Update to replace it. + Seleccione una clave existente y presione Actualiza" para reemplazarla. + + + Authenticate passkey credentials for: + Autenticar credenciales de passkey de acceso para: + + + Do you want to register a passkey for: + Desa registrar una passkey para: + BrowserService - - KeePassXC: Create a new group - KeePassXC: crear un grupo nuevo - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? ¿Desea crear este grupo? - - KeePassXC: New key association request - KeePassXC: solicitud de asociación de clave nueva - You have received an association request for the following database: %1 @@ -860,81 +985,77 @@ portatil-chrome. Save and allow access Guardar y permitir acceso - - KeePassXC: Overwrite existing key? - KeePassXC: ¿Sobrescribir clave existente? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Ya existe una clave compartida con el nombre «%1». ¿Desea sobrescribirlo? - - KeePassXC: Update Entry - KeePassXC: actualizar apunte - Do you want to update the information in %1 - %2? ¿Desea actualizar la información en %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Borrar apunte - A request for deleting entry "%1" has been received. Do you want to delete the entry? - Se ha recibido una solicitud para borrar el apunte "%1". + Se ha recibido una solicitud para borrar el apunte «%1». ¿Desea borrar este apunte? - Converting attributes to custom data… - Convirtiendo atributos a datos personalizados… + %1 (Passkey) + %1 (Passkey) - Abort - Abortar + KeePassXC - Create a new group + KeePassXC - Crear un nuevo grupo - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: atributos de KeePassHTTP convertidos + Disable + Deshabilitar - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Atributos correctamente convertidos desde %1 apunte(s). -Movidas %2 claves a datos personalizados. - - - Successfully moved %n keys to custom data. - %n claves(s) movida(s) a datos propios correctamente.%n clave(s) movida(s) a datos propios correctamente. + KeePassXC - Overwrite existing key? + KeePassXC - ¿Sobreescribir clave existente? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: ¡No se encontró ningún apunte con los atributos KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - Actualizar apunte - The active database does not contain an entry with KeePassHTTP attributes. - La base de datos activa no contiene un apunte con atributos de KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Eliminar apunte - Don't show this warning again - No mostrar esta advertencia de nuevo + KeePassXC - New key association request + KeePassXC - Petición de nueva asociación de clave - KeePassXC: Legacy browser integration settings detected - KeePassXC: parámetros heredados de integración detectados con el navegador + Passkey + Passkey - 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? - Sus configuraciones de KeePassXC-Browser necesitan moverse a los parámetros de la base de datos. -Esto es necesario para conservar sus conexiones presentes del navegador. -¿Desea migrar sus parámetros existentes ahora? + KeePassXC - Passkey credentials + KeePassXC - Credenciales passkey + + + Register a new passkey to this entry: + Añadir una nueva passkey de acceso para esta entrada: + + + KeePassXC - Update passkey + KeePassXC - Actualizar passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + El apunte ya tiene un passkey. +¿Desea sobreescribirlo con el passkey en %1 - %2? + + + Register + Registrar @@ -949,16 +1070,12 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Enable browser integration - Habilitar integración con navegador + Activar integración con navegadores General General - - Browsers installed as snaps are currently not supported. - Los navegadores instalados como snaps no son admitidos. - Enable integration for these browsers: Habilitar integración a estos navegadores: @@ -1006,7 +1123,7 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Match URL scheme (e.g., https://example.com) - Coincidir con el esquema de URL (ej., https://example.com) + Coincidir con el esquema de URL (ej., https://ejemplo.es) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -1050,23 +1167,23 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - No solicitar permiso para Autenticación Básica HTTP + No solicitar permiso para Autenticación básica HTTP Automatically creating or updating string fields is not supported. - No se permite crear o actualizar campos de caracteres automáticamente. + No se permite crear o actualizar automáticamente campos de caracteres. Return advanced string fields which start with "KPH: " - Devuelve campos de texto avanzados que comienzan por "KPH: " + Devuelve campos de texto avanzados que comienzan por «KPH: » Don't display the popup suggesting migration of legacy KeePassHTTP settings. - No desplegar la ventana emergente sugiriendo migración de parámetros de KeePassHTTP heredados. + No desplegar la ventana emergente sugiriendo migración de configuraciones de KeePassHTTP heredados. Do not prompt for KeePassHTTP settings migration. - No solicitar parámetros de migración de KeePassHTTP. + No solicitar configuraciones de migración de KeePassHTTP. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. @@ -1130,26 +1247,6 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Custom extension ID ID de extensión personalizado - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Debido al modo aislado de Snap, debe ejecutar un guion para habilitar la integración con el navegador. Puede obtener este guion desde %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser es necesario para que la integración del navegador funcione.<br />Descárgalo desde %1 y %2 y %3. %4 - - - Please see special instructions for browser extension use below - Vea las instrucciones especiales para el uso de extensión de navegador debajo. - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Error:</b> ¡No se puede encontrar la ubicación de proxy personalizada!<br/>La integración del navegador NO funcionará sin la aplicación proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Advertencia:</b> las siguientes opciones pueden ser peligrosas. - Executable Files Ficheros ejecutables @@ -1166,6 +1263,46 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Select native messaging host folder location Seleccione la ubicación de la carpeta de hospedaje de mensajería nativa + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Permitir a keepassxc-proxy listar todos los apuntes con su título, URL y UUID en las bases de datos conectadas. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Permitir acceso limitado a todos los apuntes en las bases de datos conectadas (ignorar restricciones de acceso de sitio) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Advertencia:</b> Solo ajustar estas configuraciones si es necesario. + + + The custom proxy location does not exist. + La localización de proxy personalizada no existe. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Error:</b> La localización de proxy personalizada no existe. Corrija esto en la pestaña de configuración avanzada. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Error:</b> El ejecutable de proxy instalado falta en la localización esperada: %1<br/> Establezca una localización de proxy personalizada en la configuración avanzada o reinstale la aplicación. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Permite usar el iseguro http://localhost con passkeys para propósitos de pruebas. + + + Allow using localhost with passkeys + Permitir usar localhost con passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser es necesario para el funcionamiento de la integración con el navegador. Descargalo por %1 y %2 y %3 + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Los navegadores instalados mediante Snap o Flatpak no son compatibles, a excepción de Firefox instalado mediante Snap. + CloneDialog @@ -1175,7 +1312,7 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Append ' - Clone' to title - Agregar «- Clon» al título + Agregar « - Clon» al título Replace username and password with references @@ -1188,14 +1325,6 @@ Esto es necesario para conservar sus conexiones presentes del navegador. CsvImportWidget - - Import CSV fields - Importar campos de CSV - - - filename - nombre del fichero - size, rows, columns tamaño, filas, columnas @@ -1304,51 +1433,44 @@ Esto es necesario para conservar sus conexiones presentes del navegador. Column %1 Columna %1 - - Imported from CSV file - Importado de un fichero CSV - - - Original data: - Datos originales: - - - Error(s) detected in CSV file! - ¡Error(es) detectado(s) en el fichero CSV! - [%n more message(s) skipped] - [%n más mensaje(s) omitidos][%n más mensaje(s) descartado(s)] + [%n mensaje omitido][%n mensajes omitidos][%n mensajes omitidos] - Error - Error + Failed to parse CSV file: %1 + Fallo al procesar archivo CSV: %1 - CSV import: writer has errors: -%1 - Importación CSV: la escritura tiene errores: -% 1 + Imported from CSV file: %1 + Importar desde archivo CSV: %1 + + + No Title Selected + Sin titulo seleccinado + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + No se ha seleccionado un título para la columna, será difícil asignar los registros correctamente. +¿Desea continuar con la importación? + + + Tags + Etiquetas CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte(s)%n byte(s) - %n row(s) - %n fila(s)%n fila(s) + CSV row count + %n fila%n fila(s)%n filas %n column(s) - %n columna(s)%n columna(s) + CSV column count + %n columna%n columna(s) %n columnas @@ -1400,6 +1522,14 @@ Respaldo de base de datos ubicado en %2 Recycle Bin Papelera + + Database file read error. + Error de lectura del archivo de base de datos. + + + No file path was provided. + No se ha proporcionado ninguna ruta de archivo. + DatabaseOpenDialog @@ -1422,60 +1552,22 @@ Respaldo de base de datos ubicado en %2 Password field Campo de contraseña - - Enter Additional Credentials (if any): - Introducir credenciales adicionales (si hay alguna): - - - Key File: - Cerrojo: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Adicionalmente a la contraseña, puede usar un archivo secreto para mejorar la seguridad de su base de datos. Este archivo puede ser generado en su configuración de base de datos.</p><p>¡Este <strong>no</strong> es su archivo de base de datos *.kdbx! <br>Si no tiene un fichero clave, deje este campo vacío.</p><p>Haga clic para más información...</p> - - - Key file help - Ayuda del cerrojo - Hardware key slot selection - Selección de ranura de llave por hardware - - - Hardware Key: - Llave por hardware: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Puede usar una llave de seguridad por hardware como <strong>YubiKey</strong> o <strong>OnlyKey</strong> con ranuras configuradas para HMAC-SHA1.</p> -<p>Haga clic para más información...</p> - - - Hardware key help - Ayuda de la llave por hardware + Selección de ranura de clave hardware Key file to unlock the database - Cerrojo para desbloquear la base de datos + Fichero clave para desbloquear la base de datos Browse for key file - Solicitar cerrojo + Navegar para fichero clave Browse… Examinar... - - Refresh hardware tokens - Recargar billetes por hardware - - - Refresh - Recargar - Unlock Database Desbloquear base de datos @@ -1507,8 +1599,8 @@ We recommend you update your KeePassXC installation. La base de datos que está intentando abrir seguramente fue creada por una nueva versión de KeePassXC. -Puede intentar abrirla de todas formas, pero puede estar incompleta -y guardar cualquier cambio puede ocasionar pérdida de datos. +Puede intentar abrirla de todas formas, pero puede estar incompleta y +guardar cualquier cambio puede ocasionar pérdida de datos. Le recomendamos actualizar su instalación de KeePassXC. @@ -1532,31 +1624,23 @@ To prevent this error from appearing, you must go to "Database Settings / S Desbloqueo de base de datos erróneo y no se introdujo una contraseña. ¿Desea reintentar con una contraseña vacía? -Para prevenir que aparezca este error, debe ir a «Parámetros de base de datos / Seguridad» y restablezca su contraseña. +Para prevenir que aparezca este error, debe ir a «Configuraciones de base de datos / Seguridad» y restablezca su contraseña. Retry with empty password Reintentar con contraseña vacía - - Failed to authenticate with Windows Hello - Fallo al autenticar con Windows Hello - - - Failed to authenticate with Touch ID - Fallo al autenticar con Touch ID - Failed to open key file: %1 - Apertura del cerrojo errónea: %1 + Fallo al abrir cerrojo: %1 Old key file format - Formato de fichero clave antiguo + Formato de cerrojo antiguo You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Está usando un fichero clave con un formato antiguo que KeePassXC puede<br>dejar de soportar en el futuro.<br><br>Considere generar un nuevo fichero clave yendo a:<br><strong>Base de Datos &gt; Seguridad de Base de Datos &gt; Cambiar Fichero Clave.</strong><br> + Está usando un cerrojo con un formato antiguo que KeePassXC puede<br>dejar de mantener en el futuro.<br><br>Considere generar un cerrojo nuevo yendo a:<br><strong>Base de Datos &gt; Seguridad de base de datos &gt; Cambiar cerrojo.</strong><br> Don't show this warning again @@ -1579,22 +1663,68 @@ Para prevenir que aparezca este error, debe ir a «Parámetros de base de datos No se puede usar una base de datos como cerrojo - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - No puede usar una base de datos como cerrojo. -Si no tiene un cerrojo, deje el campo vacío. + authenticate to access the database + identifiquese para acceder a la base de datos - Detecting hardware keys… - Detectando llaves por hardware… + Failed to authenticate with Quick Unlock: %1 + Fallo al autenticar con Quick Unlock: %1 - No hardware keys detected - Ninguna llave por hardware detectada + Select Key File: + Seleccionar archivo clave: - Select hardware key… - Seleccione llave por hardware… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Adicionalmente a una contraseña, puede usar un archivo secreto para mejorar la seguridad de su base de datos. Este archivo puede ser generado en sus preferencia de seguridad de base de datos.</p><p>Esto <strong>no</strong> es su archivo de base de datos *.kdbx.</p> + + + Use hardware key [Serial: %1] + Usar clave hardware [Serial: %1] + + + Use hardware key + Usar clave hardware + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Su archivo de base de datos no es un archivo clave. +Si no tiene un archivo clave o no conoce que es, no tiene que seleccionar uno. + + + KeePassXC database file selected + Archivo de base de datos KeePassXC seleccionado + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + El archivo que ha seleccionado parece como un archivo de base de datos. +Un archivo de base de datos no es un archivo clave. + +¿Desea continuar con este archivo? + + + No hardware keys found. + No se han encontrado claves hardware. + + + Refresh Hardware Keys + Actualizando claves hardware + + + Click to add a key file. + Clic para añadir un archivo clave. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Tengo un archivo clave</a> + + + Hardware keys found, but no slots are configured. + Se han encontrado claves de hardware, pero no se han configurado ranuras. @@ -1606,10 +1736,6 @@ Si no tiene un cerrojo, deje el campo vacío. DatabaseSettingsDialog - - Advanced Settings - Parámetros avanzados - General General @@ -1634,6 +1760,22 @@ Si no tiene un cerrojo, deje el campo vacío. Maintenance Mantenimiento + + KeeShare + KeeShare + + + Secret Service Integration + Integración con servicio de secretos + + + Remote Sync + Sincronización remota + + + Database Settings: %1 + Configuraciones de la base de datos: 1% + DatabaseSettingsWidgetBrowser @@ -1641,25 +1783,17 @@ Si no tiene un cerrojo, deje el campo vacío. KeePassXC-Browser settings Configuraciones del KeePassXC-Browser - - Convert KeePassHTTP data - Convertir datos KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Convertir atributos heredados KeePassHTTP a datos persalizados compatibles con KeePassXC-Browser - - - Refresh database root group ID - Recargar la ID del grupo raíz de la base de datos - Disconnect all browsers Desconectar todos los navegadores Forget all site-specific settings on entries - Olvidar todas las opciones del sitio específico en los apuntes + Olvidar todos los configuración del sitio específico en los apuntes + + + Refresh database root group ID + Actualizar el ID del grupo raíz de la base de datos Stored keys @@ -1667,7 +1801,7 @@ Si no tiene un cerrojo, deje el campo vacío. Stored browser keys - Claves de navegador almacenadas + Claves del navegador almacenadas Remove selected key @@ -1679,7 +1813,7 @@ Si no tiene un cerrojo, deje el campo vacío. Delete the selected key? - ¿Borro la clave seleccionada? + ¿Eliminar la clave seleccionada? Do you really want to delete the selected key? @@ -1701,29 +1835,21 @@ Esto puede impedir la conexión con el complemento del navegador. Enable Browser Integration to access these settings. - Habilitar la integración del navegador para acceder a estos parámetros. + Activar integración del navegador para acceder a estas configuraciones. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - ¿Desea desconectar todos los naveggadores? + ¿Desea desconectar todos los navegadores? Esto puede impedir la conexión con el complemento de navegador. - - KeePassXC: No keys found - KeePassXC: No se encontró ninguna clave - No shared encryption keys found in KeePassXC settings. No se encontraron claves de cifrado compartidas en la configuración de KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Las claves se eliminaron de la base de datos - Successfully removed %n encryption key(s) from KeePassXC settings. - Correctamente borrada %n clave de cifrado de la configuración KeePassXC.Correctamente borrada %n claves de cifrado de los parámetros de KeePassXC. + Correctamente borrada %n clave de cifrado de la configuración KeePassXC.Correctamente borrada %n claves de cifrado de los parámetros de KeePassXC.Correctamente borrada %n claves de cifrado de las configuraciones de KeePassXC. Do you really want forget all site-specific settings on every entry? @@ -1739,32 +1865,14 @@ Los permisos para acceder a los apunte serán revocados. Abort Abortar - - KeePassXC: Removed permissions - KeePassXC: permisos eliminados - Successfully removed permissions from %n entry(s). - Permisos eliminados correctamente desde %n apunte.Permisos eliminados correctamente desde %n apuntes. - - - KeePassXC: No entry with permissions found! - KeePassXC: ¡No se encontró ningún apunte con permisos! + Permisos eliminados correctamente desde %n apunte.Permisos eliminados correctamente desde %n apuntes.Permisos eliminados correctamente desde %n apuntes. The active database does not contain an entry with permissions. La base de datos activa no contiene un apunte con permisos. - - Move KeePassHTTP attributes to custom data - Mover los atributos KeePassHTTP a datos personalizados - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - ¿Realmente desea convertir todos los datos de integración del navegador heredado al último estándar? -Esto es necesario para mantener la compatibilidad con el complemento del navegador. - Refresh database ID Actualizar la ID de la base de datos @@ -1773,14 +1881,34 @@ Esto es necesario para mantener la compatibilidad con el complemento del navegad Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. ¿Desea actualizar el ID de la base de datos? -Esto solo es necesario si su base de datos es una copia de otra y la extensión del navegador se no puede conectar. +Esto solo es necesario si su base de datos es una copia de otra y la extensión del navegador no se puede conectar. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Convertir atributos heredados KeePassHTTP a datos persalizados compatibles con KeePassXC-Browser + + + No keys found + No se han encontrado claves + + + Removed keys from database + Claves eliminadas de la base de datos + + + Removed permissions + Permisos eliminados + + + No entry with permissions found! + ¡No se ha encontrado apunte con permisos! DatabaseSettingsWidgetDatabaseKey Add additional protection… - Añadir protección adicional... + Añadir protección adicional… No password set @@ -1814,6 +1942,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Cambio de credenciales de base de datos errónea + + Weak password + Contraseña débil + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + ¡Esta es una contraseña débil! Para una mejor protección de sus secretos, debe elegir una contraseña más fuerte. + + + The provided password does not meet the minimum quality requirement. + La contraseña entregada no cumple con los requisitos de calidad minimos + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: Tiempo de descifrado: - - Change existing decryption time - Modificar el tiempo de descifrado - - - Change - Modificar - Decryption time in seconds Tiempo de descifrado en segundos @@ -1863,19 +1995,19 @@ Are you sure you want to continue without a password? AES: 256 Bit (default) - AES: 256-Bit (por defecto) + AES: 256-bit (por defecto) Twofish: 256 Bit - Twofish: 256 Bit + Twofish: 256-bit Key Derivation Function: - Función de derivación de clave: + Función de derivación de llave: Key derivation function - Función de derivación de la clave + Función de derivación de llave Transform rounds: @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - sin cambios - Number of rounds too high Key transformation rounds @@ -1946,7 +2073,7 @@ Si guarda este número, su base de datos puede llevar horas, días o incluso má If you keep this number, your database will not be protected from brute force attacks. Está utilizando un número muy bajo de rondas de transformación de clave con AES-KDF. -Si mantiene este número, su base de datos no estará protegida de los ataques de fuerza bruta. +Si mantiene este número, su base de datos no estará protegida de los ataques por fuerza bruta. KDF unchanged @@ -1954,17 +2081,29 @@ Si mantiene este número, su base de datos no estará protegida de los ataques d Failed to transform key with new KDF parameters; KDF unchanged. - Error al transformar la clave con nuevos parámetros KDF; KDF sin cambios. + Error al transformar la clave con nuevas configuraciones KDF; KDF sin cambios. MiB Abbreviation for Mebibytes (KDF settings) - MiB MiB + MiB MiB MiB thread(s) Threads for parallel execution (KDF settings) - hilohilo(s) + hilohilo(s)hilos + + + Encryption Settings: + Configuración de cifrado: + + + Basic + Básico + + + Advanced + Avanzado @@ -1983,14 +2122,14 @@ Si mantiene este número, su base de datos no estará protegida de los ataques d Enable Secret Service to access these settings. - Habilite el Servicio Secreto para acceder a estos parámetros. + Active el Servicio Secreto para acceder a estas configuraciones. DatabaseSettingsWidgetGeneral Database Metadata - Metadatos de la Base de datos + Metadatos de la base de datos Database name: @@ -2018,24 +2157,16 @@ Si mantiene este número, su base de datos no estará protegida de los ataques d History Settings - Parámetros del historial + Configuraciones del historial Maximum number of history items per entry Número máximo de elementos de historial por apunte - - Max. history items: - Elementos máximos del historial: - Maximum size of history per entry Tamaño máximo de historial por apunte - - Max. history size: - Tamaño máximo del historial: - MiB MiB @@ -2046,11 +2177,11 @@ Si mantiene este número, su base de datos no estará protegida de los ataques d Additional Database Settings - Parámetros adicionales de la base de datos + Configuraciones adicionales de base de datos Enable compression (recommended) - Habilitar compresión (recomendado) + Activar compresión (recomendado) Delete Recycle Bin @@ -2066,6 +2197,108 @@ Esta acción no es reversible. (old) (anterior) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Al guardar esta preferencia o editar una entrada +los elementos más anteriores del historial serán +eliminados de modo que solo se conserve la +cantidad especificada. + + + Limit the amount of history items per entry to: + Limitar la cantidad de elementos de historial por entrada a: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Al guardar esta preferencia o editar un apunte los +elementos más viejos del historial serán eliminados +de modo que los elementos restantes del historial +se añadirán como mucho hasta la cantidad especificada. + + + Limit the total size of history items per entry to: + Limitar el número total de elementos del historial por entrada a: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Mover apuntes a un grupo de papeleras +en lugar de borrarlos desde la base de +datos. Los apuntes borrados desde la +papelera son eliminados de la BdD. + + + Autosave delay since last change + Retardo de autoguardado desde úlimo cambio + + + Autosave delay + Retardo de autoguardado + + + Autosave delay since last change in minutes + Retardo de autoguardado desde úlimo cambio en minutos + + + min + min + + + Autosave delay since last change checkbox + Retardo de autoguardado desde úlimo cambio de caja de seleección + + + Public Database Metadata + Metadatos de bases de datos públicas + + + Warning: the following settings are not encrypted. + Advertencia: los siguientes ajustes no están encriptados. + + + Display name: + Mostrar nombre: + + + Publically visible display name used on the unlock dialog + Nombre visible públicamente utilizado en el cuadro de diálogo de desbloqueo + + + Database public display name + Nombre público de la base de datos + + + Display color: + Mostrar color: + + + Publically visible color used on the unlock dialog + Color visible públicamente utilizado en el cuadro de diálogo de desbloqueo + + + Database public display color chooser + Selector de color de la base de datos pública + + + Clear + Limpiar + + + Display icon: + Mostrar icono: + + + Select Database Icon + Seleccionar icono de base de datos + DatabaseSettingsWidgetKeeShare @@ -2107,11 +2340,11 @@ Esta acción no es reversible. Delete selected icon(s) - Eliminar ícono(s) seleccionado(s) + Borra ícono(s) seleccionado(s) Delete all custom icons not in use by any entry or group - Eliminar todos los íconos personalizados que no están en uso por cualquier apunte o grupo + Borra todos los íconos personalizados que no están en uso por cualquier apunte o grupo Purge unused icons @@ -2123,11 +2356,11 @@ Esta acción no es reversible. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - Al menos uno de los íconos seleccionados está actualmente en uso por al menos un apunte o grupo. Los íconos de todas los apuntes y grupos afectados serán reemplazados por el ícono predeterminado. ¿Está seguro de que desea eliminar los íconos que están actualmente en uso? + Al menos uno de los íconos seleccionados está actualmente en uso por al menos un apunte o grupo. Los iconos de todos los apuntes y grupos afectados serán reemplazados por el icono predeterminado. ¿Está seguro que desea eliminar los iconos que están actualmente en uso? Custom Icons Are In Use - Los Íconos Personalizados Están En Uso + Iconos personalizados en uso All custom icons are in use by at least one entry or group. @@ -2135,11 +2368,11 @@ Esta acción no es reversible. Purged Unused Icons - Purgar Íconos no Utilizados + Iconos purgados no utilizados Purged %n icon(s) from the database. - Purgado %n icono de la base de datos.Purgados %n íconos de la base de datos. + Se ha purgado %n icono de la base de datos.Purgados %n íconos de la base de datos.Se han purgado %n iconos de la base de datos. @@ -2161,6 +2394,139 @@ Esta acción no es reversible. Campo descripción de base de datos + + DatabaseSettingsWidgetRemote + + Sync Commands + Comandos de sincronización + + + Remove + Retirar + + + Command Settings + Configuración de comandos + + + Name + Nombre + + + Save + Guardar + + + Download + Descarga + + + Command: + Comando: + + + Download command field + Fallo en el comando de descarga + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Entrada: + + + Download input field + Campo de entrada de descarga + + + Upload + Subida + + + Upload command field + Campo de entrada de subida + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Campo de entrada de subida + + + Name cannot be empty. + Nombre no puede ser vacío. + + + Test + Probar + + + Download command cannot be empty. + Comando de descarga no puede ser vacío. + + + Download failed with error: %1 + Descarga falló con el error: %1 + + + Download finished, but file %1 could not be found. + Descarga finalizada, pero el archivo %1 no se puede encontrar. + + + Download successful. + Descarga exitosa. + + + Save Remote Settings + Configuración de guardado remoto + + + You have unsaved changes. Do you want to save them? + Tiene cambios sin guardar. ¿Desea guardarlos? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} es usado como marcador para guardar la base de datos en una localización temporal +El comando tiene que finalizar. En caso de «sftp» como último comando ha de ser enviado «exit» + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} es usado como marcador para guardar la base de datos en una localización temporal +El comando tiene que finalizar. En caso de «sftp» como último comando ha de ser enviado «exit» + + + Timeout: + Intervalos + + + seconds + segundos + + DatabaseTabWidget @@ -2170,7 +2536,7 @@ Esta acción no es reversible. The created database has no key or KDF, refusing to save it. This is definitely a bug, please report it to the developers. - La base de datos creada no tiene clave o KDF, negándose a guardarla. + La base de datos creada no tiene clave o *.kdf, negándose a guardarla. Esto es definitivamente un error, por favor infórmeselo a los desarrolladores. @@ -2191,28 +2557,12 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< CSV file - Fichero CSV - - - Select CSV file - Seleccionar fichero CSV + Archivo *.csv Merge database Combinar base de datos - - KeePass 1 database - Base de datos KeePass 1 - - - Open KeePass 1 database - Abrir base de datos KeePass 1 - - - Open OPVault - Abrir OPVault - Export database to CSV file Exportar base de datos a un fichero CSV @@ -2225,34 +2575,42 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< Writing the HTML file failed. Escritura al fichero HTML errónea. + + Export database to XML file + Exportar base de datos a archivo XML + + + XML file + Archivo *.xml + + + Writing the XML file failed + Escritura de archivo XML ha fallado + Export Confirmation Confirmación de exportación You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Está a punto de exportar su base de datos a un archivo sin cifrar. Esto dejará sus contraseñas e información sensible vulnerable. ¿Desea continuar? - - - New Database - Crear base de datos - - - %1 [New Database] - Database tab name modifier - %1 [Crear base de datos] + Está a punto de exportar su base de datos a un archivo sin cifrar. Esto dejará vulnerable a sus contraseñas e información sensible. ¿Desea continuar? %1 [Locked] Database tab name modifier %1 [Bloqueada] + + %1 [Temporary] + Database tab name modifier + %1 [Temporal] + DatabaseWidget - Database Tags - Base de datos de etiquetas + Searches and Tags + Búsquedas y etiquetas Searching… @@ -2264,7 +2622,7 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< Confirm Auto-Type - Confirmar Autoescritura + Confirmar Auto-tecleo Perform Auto-Type into the previously active window? @@ -2276,7 +2634,7 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< Do you really want to execute the following command?<br><br>%1<br> - ¿Desea ejecutar el siguiente mandato?<br><br>%1<br> + ¿Desea ejecutar el siguiente comando?<br><br>%1<br> Remember my choice @@ -2300,7 +2658,11 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< Expired entries - Apuntes expirados + Apuntes caducados + + + Entries expiring within %1 day(s) + Apuntes caducando en %1 díaApuntes expirando en %1 díasApuntes caducando en %1 días No current database. @@ -2326,6 +2688,18 @@ Esto es definitivamente un error, por favor infórmeselo a los desarrolladores.< No Results No hay resultados + + Save + Guardar + + + Enter a unique name or overwrite an existing search from the list: + Introduzca un nombre único o sobrescriba una búsqueda existente de la lista: + + + Save Search + Guardar búsqueda + Lock Database? ¿Bloquear la base de datos? @@ -2354,25 +2728,6 @@ Save changes? File has changed El archivo ha cambiado - - The database file has changed. Do you want to load the changes? - El archivo de la base de datos ha cambiado. ¿Desea cargar los cambios? - - - Merge Request - Solicitud de combinación - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - El archivo de la base de datos ha cambiado y tiene modificaciones sin guardar. ¿Desea combinar sus modificaciones? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - No se pudo abrir el nuevo fichero de base de datos al intentar cargar automáticamente. -Error: %1 - Disable safe saves? ¿Desactivar almacenajes seguros? @@ -2381,7 +2736,7 @@ Error: %1 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 no ha podido guardar la base de datos varias veces. Esto es probablemente causado por los servicios de sincronización de ficheros manteniendo un bloqueo del fichero. -¿Desactivar almacenaje seguro y volver a intentarlo? +¿Quiere desactivar el almacenaje seguro y volver a intentarlo? Writing the database failed: %1 @@ -2405,19 +2760,104 @@ Disable safe saves and try again? Empty recycle bin? - ¿Vaciar papelera de reciclaje? + ¿Vaciar papelera? Are you sure you want to permanently delete everything from your recycle bin? - ¿Desea eliminar permanentemente todo de su papelera de reciclaje? + ¿Desea eliminar permanentemente todo de su papelera? Could not find database file: %1 No se ha encontrado el archivo de base de datos: %1 - - Entries expiring within %1 day(s) - + + New Database + Nueva base de datos + + + %1 [New Database] + Database tab name modifier + %1 [Nueva base de datos] + + + Remote Sync did not contain any download or upload commands. + La sincronización remota no contiene ningún comando de descarga o subida. + + + Remote sync '%1' completed successfully! + ¡Sincronización remota de «%1» completada con éxito! + + + Remote sync '%1' failed: %2 + Fallo de incronización remota «%1»: %2 + + + Error while saving database %1: %2 + Error al guardar base de datos %1: %2 + + + Downloading... + Descargando... + + + Uploading... + Subiendo... + + + Syncing... + Sincronizando... + + + Remove passkey from entry + Eliminar passkey de apunte + + + Do you want to remove the passkey from this entry? + ¿Desea eliminar el passkey de este apunte? + + + The database file "%1" was modified externally + El archivo de base de datos "%1" ha sido modificado externamente + + + Do you want to load the changes? + ¿Quieres cargar los cambios? + + + Reload database + Recargar base de datos + + + Reloading database… + Recargando base de datos... + + + Reload canceled + Recarga cancelada + + + Reload successful + Recarga correcta + + + Reload pending user action… + Recargar acción pendiente del usuario... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + El archivo de base de datos "%1" ha sido modificado externamente.<br>¿Cómo le gustaría proceder?<br><br>Combinar todos los cambios<br>Ignorar los cambios en disco hasta guardar<br>Descartar los cambios no guardados + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + El archivo de base de datos "%1" ha sido modificado externamente.<br>¿Cómo le gustaría proceder?<br><br>Combinar todos los cambios y guardar<br>Sobrescribir los cambios en el disco<br>Descartar los cambios no guardados + + + Database file overwritten. + archivo de base de datos sobreescrito + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + El archivo de base de datos en disco no se puede desbloquear con las credenciales actuales.<br>Introduzca nuevas credenciales y/o presente la llave hardware para continuar. @@ -2470,10 +2910,6 @@ Disable safe saves and try again? n/a n/d - - (encrypted) - (cifrado) - Select private key Seleccionar la clave privada @@ -2560,21 +2996,25 @@ Would you like to correct it? Hide Ocultar + + %n hour(s) + %n hora%n horas%n horas + %n week(s) - %n semana%n semanas + %n semana%n semanas%n semanas %n month(s) - %n mes%n meses + %n mes%n meses%n meses %n year(s) - %n año%n años + %n año%n años%n años - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Fallo al descifrar clave SSH, asegúrese que la contraseña es correcta. @@ -2593,7 +3033,7 @@ Would you like to correct it? Add a new attribute - Añadir nuevo atributo + Añadir un atributo nuevo Add @@ -2617,7 +3057,7 @@ Would you like to correct it? Toggle attribute protection - Intercambiar atributo protección + Conmutar atributo protección Protect @@ -2676,11 +3116,11 @@ Would you like to correct it? Custom Auto-Type sequence - Secuencia personalizada autoescritura + Secuencia personalizada de autoescritura Open Auto-Type help webpage - Abrir página de ayuda autoescritura + Abrir página de ayuda de autoescritura Window Associations @@ -2694,10 +3134,20 @@ Would you like to correct it? Add new window association Añadir nueva ventana asociada + + + + Add item + + + Remove selected window association Eliminar ventana asociada + + - + Remove item + + Window title: Título de la ventana: @@ -2708,37 +3158,23 @@ Would you like to correct it? Set the window association title - Establecer título de ventana asociada + Fijar título de ventana asociada You can use an asterisk to match everything - Puede usar un asterisco par coincidir todo. + Puede usar un asterisco para coincidir todo. Use a specific sequence for this association: - Utilizar una secuencia específica para esta asociación: + Utilice una secuencia específica para esta asociación: Custom Auto-Type sequence for this window Secuencia personalizada de autoescritura para esta ventana - - + - Add item - + - - - - - Remove item - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Esta configuración afecta al comportamiento de este apunte con la extensión de navegador. - General General @@ -2751,26 +3187,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Descartar autoenvío para este apunte - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Solo enviar esta configuración al navegador para los diálogos de autenticación HTTP. Habilitada, los formularios de autenticación no mostrarán este apunte para su selección. - Use this entry only with HTTP Basic Auth Usar este apunte solo con autenticación básica HTTP - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - No enviar esta configuración al navegador para los diálogos de autenticación HTTP. Habilitada, los formularios de autenticación no mostrarán este apunte para su selección. - Do not use this entry with HTTP Basic Auth No usar este apunte con autenticación básica HTTP - - Additional URL's - URLs adicionales - Add Añadir @@ -2783,6 +3207,22 @@ Would you like to correct it? Edit Editar + + These settings affect the entry's behaviour with the browser extension. + Estas configuraciones afectan al comportamiento de los apuntes con la extensión de naveador. + + + Additional URLs + URLs adiccionales + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Sólo mandar este registro al navegador para los diálogos de Autenticación HTTP. Si está activo, los formularios de registro normales no mostrarán la selección de este registro. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + No enviar este registro al navegador para los diálogos de Autenticación HTTP. Si está activo, los diálogos de Autenticación HTTP no mostrarán la selección de este registro. + EditEntryWidgetHistory @@ -2833,45 +3273,25 @@ Would you like to correct it? Notes field Campo notas - - Toggle the checkbox to reveal the notes section. - Cambie la casilla de verificación para mostrar la sección de notas. - Username field Campo usuario - - Toggle notes visible - Intercambiar notas visibles - - - Notes: - Notas: - Expiration field - Campo expiración + Campo caducidad Expiration Presets - Predeterminados expiración + Caducidad predeterminada Expiration presets - Predeterminados expiración + Configuraciones de caducidad Presets - Programar - - - Password: - Contraseña: - - - URL: - URL: + Preselección Url field @@ -2881,44 +3301,60 @@ Would you like to correct it? Download favicon for URL Descargar icono para la URL - - Title: - Título: - Title field Campo título - - Username: - Usuario: - Password field - Campo de contraseña + Campo contraseña Toggle expiration - Intercambiar expiración - - - Expires: - Expira: - - - Tags: - Etiquetas: + Conmutar caducidad Tags list Lista de etiquetas + + &Username: + &Usuario: + + + &Title: + &Título: + + + &Password: + &Contraseña: + + + UR&L: + UR&L: + + + &Notes: + &Notas: + + + Toggle notes visibility + Conmutar visibilidad de notas + + + T&ags: + Etiquet&as: + + + &Expires: + &Caducidad: + EditEntryWidgetSSHAgent Form - Forma + Formulario Remove key from agent when database is closed/locked @@ -2930,7 +3366,7 @@ Would you like to correct it? Add key to agent when database is opened/unlocked - Añadir clave al agente cuando la base de datos se abre/desbloquea + Añadir clave al agente cuando la base de datos se abra/desbloquea Decrypt @@ -2952,26 +3388,13 @@ Would you like to correct it? Private key Clave privada - - External file - Archivo externo - - - Browser for key file - Explorar para fichero clave - - - Browse… - Button for opening file dialog - Examinar... - Attachment Adjunto External key file - Fichero clave externo + Cerrojo externo Add to agent @@ -2979,7 +3402,24 @@ Would you like to correct it? Remove from agent - Eliminar del agente + Retirar del agente + + + External file + Archivo externo + + + Browser for key file + Buscar cerrojo + + + Browse… + Button for opening file dialog + Examinar... + + + Generate + Generar Select attachment file @@ -3005,6 +3445,10 @@ Would you like to correct it? seconds segundos + + Clear agent + Vaciar campos + EditGroupWidget @@ -3016,10 +3460,6 @@ Would you like to correct it? Icon Icono - - Browser Integration - Integración con navegadores - Properties Propiedades @@ -3036,6 +3476,10 @@ Would you like to correct it? Group has unsaved changes El grupo tiene cambios no guardados + + Browser Integration + Integración con navegadores + Enable Activar @@ -3051,13 +3495,9 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Editar Grupo - These settings affect to the group's behaviour with the browser extension. - Estas configurciones afectan al comportamiento del grupo con la extensión del navegador. + Estas configuraciones afectan al comportamiento del grupo con la extensión del navegador. Hide entries from browser extension: @@ -3091,12 +3531,28 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups Interruptor para no usar Autenticación HTTP para éste y los subgrupos + + Omit WWW subdomain from matching: + Omitir el dominio www de la coincidencia: + + + Omit WWW subdomain from matching toggle for this and sub groups + Omitir el dominio www de la coincidencia conmutar para este y los subgrupos + + + Restrict matching to given browser key: + Restringir coincidiencia a la siguiente clave de navegador: + + + Restrict matching to given browser key toggle for this and sub groups + Restringir coincidiencia a la siguiente clave de navegador cambie para esto y subgrupos + EditGroupWidgetKeeShare Sharing mode field - Campo modo comapartir + Campo modo compartido Password field @@ -3116,7 +3572,7 @@ Would you like to correct it? Path to share file field - Ruta para campo de archivo compartir + Ruta para campo de archivo compartido Browse for share file @@ -3153,8 +3609,8 @@ Would you like to correct it? Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - Su versión de KeePassXC no soporta este tipo de contenedor de compartición. -Las extensiones soportadas son: %1. + Su versión de KeePassXC no mantiene este tipo de contenedor de compartición. +Las extensiones mantenidas son: %1. %1 is already being exported by this database. @@ -3171,15 +3627,15 @@ Las extensiones soportadas son: %1. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare actualmente está deshabilitada. Puede habilitar importar/exportar en la configuración de aplicación + KeeShare actualmente está desactivada. Puede activar importar/exportar en la configuración de aplicación Database export is currently disabled by application settings. - La exportación de la base de datos actualmente está deshabilitada en la configuración de aplicación. + La exportación de la base de datos actualmente está desactivada en la configuración de aplicación. Database import is currently disabled by application settings. - La importación de base de datos actualmente está deshabilitada por la configuración de aplicación + La importación de base de datos actualmente está desactivada por la configuración de aplicación KeeShare container @@ -3210,11 +3666,11 @@ Las extensiones soportadas son: %1. Toggle expiration - Intercambiar expiración + Conmutar caducidad Expires: - Expira: + Caducidad: Name field @@ -3222,11 +3678,11 @@ Las extensiones soportadas son: %1. Expiration field - Campo expiración + Campo caducidad Use default Auto-Type sequence of parent group - Usar secuencia de autoescritura por defecto del grupo padre + Emplear secuencia de Auto-Tecleo por defecto del grupo antecesor Auto-Type: @@ -3238,7 +3694,7 @@ Las extensiones soportadas son: %1. Auto-Type toggle for this and sub groups - Intercambiar autoescritura para este y subgrupos + Conmutar autoescritura para éste y subgrupos Notes: @@ -3258,11 +3714,11 @@ Las extensiones soportadas son: %1. Set default Auto-Type sequence - Establecer secuencia de autoescritura por defecto + Fijar secuencia de autoescritura por defecto Search toggle for this and sub groups - Intercambiar de búsqueda para este y subgrupos + Conmutar búsqueda para éste y subgrupos @@ -3277,23 +3733,23 @@ Las extensiones soportadas son: %1. Choose icon… - Seleccionar ícono... + Elegir ícono... Set the URL to use to search for a favicon - Configurar la URL a usar para buscar un ícono + Fije la URL a usar para buscar un ícono Favicon URL - URL de ícono + URL de Favicon Download favicon for URL - Descargar icono para la URL + Descargar favicon para la URL Download favicon - Descargar icono + Descargar favicon Apply selected icon to subgroups and entries @@ -3309,23 +3765,19 @@ Las extensiones soportadas son: %1. Also apply to child groups - Aplicar a los grupos descendientes + Aplicar a los grupos herederos Also apply to child entries - Aplicar también a los apuntes hijos + Aplicar también a los apuntes heredados Also apply to all children - Aplicar a todos los descendientes + Aplicar a todos los herederos Unable to fetch favicon. - No se pudo descargar el icono. - - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Puede habilitar el servicio de icono del sitio web DuckDuckGo bajo «Herramientas -> Configuración -> Seguridad» + No se pudo descargar el favicon. Existing icon selected. @@ -3345,7 +3797,7 @@ Las extensiones soportadas son: %1. Successfully loaded %1 of %n icon(s) - Cargado %1 de %n icono correctamenteCargado %1 de %n iconos correctamente + Cargado %1 de %n icono correctamenteCargado %1 de %n iconos correctamenteCargado %1 de %n iconos correctamente No icons were loaded @@ -3353,11 +3805,15 @@ Las extensiones soportadas son: %1. %n icon(s) already exist in the database - %n icono ya existe en la base de datos%n iconos ya existen en la base de datos + Ya existe %n icono en la base de datos%n iconos ya existen en la base de datosYa existen %n iconos en la base de datos The following icon(s) failed: - El siguiente icono falló:Los siguientes iconos fallaron: + El siguiente icono falló:Los siguientes iconos fallaron:Los siguientes iconos fallaron: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Puede habilitar el servicio de iconos de DuckDuckGo en Configuración de la aplicación -> Seguridad. @@ -3400,15 +3856,15 @@ Las extensiones soportadas son: %1. Plugin data - Complemente de datos + Datos del complemento Remove selected plugin data - Eliminar complemento de datos seleccionado + Quitar complemento de datos seleccionados Remove - Eliminar + Quitar Delete plugin data? @@ -3435,12 +3891,45 @@ Esto puede causar un mal funcionamiento de los complementos afectados.%1 - Clone %1 - Clonado + + Passkey + Passkey + + + Invalid conversion type: %1 + Tipo de conversión no válido: %1 + + + Invalid conversion syntax: %1 + Sintaxis de conversión no válida: %1 + + + Invalid regular expression syntax %1 +%2 + Sintaxis de expresión regular no válida %1 +%2 + EntryAttachments Cannot open file "%1" - No se puede abrir el archivo "%1" + No se puede abrir el archivo «%1» + + + + EntryAttachmentsDialog + + Form + Formulario + + + File name + Nombre de archivo + + + File contents... + Contenido del archivo... @@ -3480,14 +3969,6 @@ Esto puede causar un mal funcionamiento de los complementos afectados.Remove Eliminar - - Rename selected attachment - Renombrar adjunto seleccionado - - - Rename - Renombrar - Open selected attachment Abrir adjunto seleccionado @@ -3510,11 +3991,11 @@ Esto puede causar un mal funcionamiento de los complementos afectados. Confirm remove - Confirmar retirada + Confirmar eliminar Are you sure you want to remove %n attachment(s)? - ¿Desea eliminar %n dato adjunto?¿Desea eliminar %n datos adjuntos? + ¿Desea eliminar %n dato adjunto?¿Desea eliminar %n datos adjuntos?¿Desea eliminar %n datos adjuntos? Save attachments @@ -3557,18 +4038,13 @@ Esto puede causar un mal funcionamiento de los complementos afectados. No se puede abrir el fichero: %1No se pueden abrir los ficheros: +%1No se pueden abrir los ficheros: %1 Confirm Overwrite Attachment Confirmar Sobrescribir adjunto - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - El adjunto «%1» ya existe. -¿Desea sobrescribir el adjunto existente? - Confirm Attachment Confirmar adjunto @@ -3579,7 +4055,7 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 es un fichero grande (%2 MB). -Su base de datos puede vovlerse muy grande y reducir el rendimiento. +Su base de datos puede volverse muy grande y reducir el rendimiento. ¿Está seguro de añadir este fichero? @@ -3595,14 +4071,32 @@ Do you want to save the changes to your database? Saving attachment failed - Falló el guardado del adjunto + Guardado del adjunto erróneo Saving updated attachment failed. Error: %1 - Falló el guardado del adjunto + Guardado del adjunto erróneo Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + El adjunto «%1» ya existe. +¿Desea sobrescribir el adjunto existente? + + + New + Nuevo + + + Preview + Vista previa + + + Failed to preview an attachment: Attachment not found + Error al previsualizar un archivo adjunto: Archivo adjunto no encontrado + EntryAttributesModel @@ -3727,7 +4221,7 @@ Error: %1 Expires - Expira + Caducidad Created @@ -3759,7 +4253,7 @@ Error: %1 Password Strength - Fortaleza de la Contraseña + Fortaleza de contraseña Entry notes @@ -3767,7 +4261,7 @@ Error: %1 Entry expires at - Apunte expira el + Apunte caduca el Creation date @@ -3797,6 +4291,14 @@ Error: %1 Has TOTP Tiene TOTP + + Background Color + Color del fondo + + + Group Path + Ruta de grupo + EntryPreviewWidget @@ -3817,8 +4319,8 @@ Error: %1 Contraseña - Notes - Notas + URL + URL Expiration @@ -3837,8 +4339,8 @@ Error: %1 Usuario - URL - URL + Notes + Notas Advanced @@ -3870,7 +4372,7 @@ Error: %1 Searching - Buscando… + Búsqueda Share @@ -3888,6 +4390,10 @@ Error: %1 Never Nunca + + Double click to copy value + Doble clic para copiar valor + Enabled Activado @@ -3896,6 +4402,10 @@ Error: %1 Disabled Desactivado + + Double click to copy to clipboard + Doble clic para copiar el portapapeles + EntryURLModel @@ -3903,6 +4413,10 @@ Error: %1 Invalid URL URL inválida + + Duplicate URL + Duplicar URL + EntryView @@ -3918,6 +4432,10 @@ Error: %1 Reset to defaults Restablecer ajustes por defecto + + + %1 entry(s)... + + %1 apunte...+ %1 apuntes...+ %1 apuntes... + ExportDialog @@ -3939,7 +4457,7 @@ This will leave your passwords and sensitive information vulnerable! database order - orden de base de datos + ordenación de base de datos name (ascending) @@ -3989,7 +4507,7 @@ This will leave your passwords and sensitive information vulnerable! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Otro servicio de secretos está en ejecución (%1). <br/> Deténgalo o elimínelo rehabilitando la Integración del Servicio Secreto. + Otro servicio de secretos está en ejecución (%1). <br/> Deténgalo o retírelo antes de reactivar la Integración del Servicio Secreto. Failed to register DBus service at %1.<br/> @@ -4028,7 +4546,7 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - %n apunte es usado por %1%n apuntes es usado por %1 + %n apunte es utilizado por %1%n apuntes es usado por %1%n apuntes son utilizados %1 @@ -4139,6 +4657,199 @@ Puede habilitar el servicio de iconos del sitio web DuckDuckGo en la sección se Descargando íconos (%1%2)... + + ImportWizard + + Import Wizard + Asistente de importación + + + + ImportWizardPageReview + + WizardPage + Asistente + + + Entry count: %1 + Número de apuntes: %1 + + + Group + Grupo + + + Title + Título + + + Username + Usuario + + + Password + Contraseña + + + Url + Url + + + Could not load key file. + No se puede leer clave en llavero + + + Could not open remote database. Password or key file may be incorrect. + No se ha podido abrir la base de datos remota. La contraseña o el archivo de claves pueden ser incorrectos. + + + + ImportWizardPageSelect + + Form + Formulario + + + Import File Selection + Selección de archivo a importar + + + Password: + Contraseña: + + + Key File: + Archivo clave: + + + Browse… + Examinar... + + + Import Into: + Importar a: + + + New Database + Nueva base de datos + + + No unlocked databases available + No hay bases de datos desbloqueadas disponibles + + + Existing Database: + Base de datos existente: + + + Import File: + Importar archivo: + + + Comma Separated Values (.csv) + Valores separados por comas (.csv) + + + 1Password Export (.1pux) + Exportaación 1Password (.1pux) + + + 1Password Vault (.opvault) + Bóveda 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Base de datos KeePass 1 (.kdb) + + + Open OPVault + Abrir OPVault + + + Select import file + Seleccionar archivo a importar + + + All files + Todos los archivos + + + Key files + Cerrojos + + + Select key file + Seleccionar cerrojo + + + Comma Separated Values + Valores separados por comas + + + 1Password Export + Exportar 1Password + + + Bitwarden JSON Export + Exportar Bitwarden JSON + + + 1Password Vault + Bóveda 1Password + + + KeePass1 Database + Base de datos KeePass1 + + + Proton Pass (.json) + Exportación JSON de Proton Pass + + + Proton Pass JSON Export + Exportación JSON de Proton Pass + + + Temporary Database + Base de datos temporal + + + Command: + Comando: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Entrada: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + p. ej.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} se utiliza como marcador de posición para almacenar la base de datos en una ubicación temporal +El comando tiene que salir. En el caso de `sftp` como último comando `exit` tiene que ser enviado + + + + Remote Database (.kdbx) + Base de datos remota (.kdbx) + + KMessageWidget @@ -4180,11 +4891,11 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Invalid header field length: field %1 - Longitud de campo de cabecera inválido %1 + Longitud de campo de cabecera no válido %1 Invalid header data length: field %1, %2 expected, %3 found - Longitud de campo de cabecera inválido: campo %1, %2 experado, %3 encontrado + Longitud de campo de cabecera no válido: campo %1, %2 esperado, %3 encontrado @@ -4249,11 +4960,11 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Failed to open buffer for KDF parameters in header - Error al abrir el búfer para los parámetros KDF en la cabecera + Error al abrir el búfer para las configuraciones KDF en la cabecera Unsupported key derivation function (KDF) or invalid parameters - Función de derivación de clave no admitida (KDF) o parámetros no válidos + Función de derivación de clave no admitida (KDF) o configuraciones no válidas Legacy header fields found in KDBX4 file. @@ -4283,69 +4994,69 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Invalid variant map entry name length Translation: variant map = data structure for storing meta data - Longitud del nombre del apunte de asociación variante inválida + Longitud del nombre del apunte de asociación variante no válida Invalid variant map entry name data Translation: variant map = data structure for storing meta data - Datos del nombre del apunte asociado variante inválido + Datos del nombre del apunte asociado variante no válido Invalid variant map entry value length Translation: variant map = data structure for storing meta data - Longitud del valor del apunte asociado variante inválido + Longitud del valor del apunte asociado variante no válido Invalid variant map entry value data Translation comment: variant map = data structure for storing meta data - Datos del valor de apunte asociado variante inválido + Datos del valor de apunte asociado variante no válido Invalid variant map Bool entry value length Translation: variant map = data structure for storing meta data - Longitud del valor del apunte asociado booleano de variante inválida + Longitud del valor del apunte asociado booleano de variante no válida Invalid variant map Int32 entry value length Translation: variant map = data structure for storing meta data - Longitud del valor del apunte asociado Int32 de variante inválida + Longitud del valor del apunte asociado Int32 de variante no válida Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - Longitud del valor del apunte asociado UInt32 de variante inválida + Longitud del valor del apunte asociado UInt32 de variante no válida Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - Longitud del valor del apunte asociado Int64 de variante inválida + Longitud del valor del apunte asociado Int64 de variante no válida Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - Longitud del valor de la entrada asociado UInt64 de variante inválida + Longitud del valor de la entrada asociado UInt64 de variante no válida Invalid variant map entry type Translation: variant map = data structure for storing meta data - Tipo de apunte asociado variante inválido + Tipo de apunte asociado variante no válido Invalid variant map field type size Translation: variant map = data structure for storing meta data - Tamaño de tipo de campo asociado variante inválido + Tamaño de tipo de campo asociado variante no válido Kdbx4Writer Invalid symmetric cipher algorithm. - Algoritmo de cifrado simétrico inválido. + Algoritmo de cifrado simétrico no válido. Invalid symmetric cipher IV size. IV = Initialization Vector for symmetric cipher - Tamaño de cifrado simétrico IV inválido + Tamaño de cifrado simétrico IV no válido Unable to calculate database key: %1 @@ -4354,14 +5065,14 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Failed to serialize KDF parameters variant map Translation comment: variant map = data structure for storing meta data - Ha fallado al serializar parámetros KDF en variante asociada + Ha fallado al serializar configuraciones KDF en variante asociada KdbxReader Invalid cipher uuid length: %1 (length=%2) - Longitud de UUID de cifrado no válida: %1 (longitud =%2) + Longitud de UUID de cifrado no válida: %1 (longitud=%2) Unable to parse UUID: %1 @@ -4414,7 +5125,7 @@ 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. El archivo seleccionado es una base de datos antigua de KeePass 1 (.kdb). -Puede importarla haciendo clic en 'Base de datos' > 'Importar base de datos de KeePass 1'. +Puede importarla pulsando en «Base de datos → Importar base de datos de KeePass 1». Esta migración es en un único sentido. No podrá abrir la base de datos importada con la versión antigua 0.4 de KeePassX. @@ -4442,7 +5153,7 @@ Esta migración es en un único sentido. No podrá abrir la base de datos import Line %2, column %3 Error XML: %1 -Linea %2, columna %3 +Línea %2, columna %3 Missing icon uuid or data @@ -4486,7 +5197,7 @@ Linea %2, columna %3 Null entry uuid - Uuid de apunte nulo + UUID de apunte nulo Invalid entry icon number @@ -4510,7 +5221,7 @@ Linea %2, columna %3 Entry string key or value missing - Falta clave de apunte de texto o valor + Falta clave de apunte textual o valor Entry binary key or value missing @@ -4554,7 +5265,7 @@ Linea %2, columna %3 KeeAgentSettings Invalid KeeAgent settings file structure. - Estructura de archivo de preferencias KeeAgent inválido. + Estructura de archivo de preferencias KeeAgent no válido. Private key is an attachment but no attachments provided. @@ -4573,17 +5284,6 @@ Linea %2, columna %3 Error al abrir la clave privada - - KeePass1OpenWidget - - Import KeePass1 Database - Importar base de datos KeePass1 - - - Unable to open the database. - No se pudo abrir la base de datos. - - KeePass1Reader @@ -4695,7 +5395,7 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Invalid group field type - Tipo de campo de grupo inválido + Tipo de campo de grupo no válido Missing group id or level @@ -4703,11 +5403,11 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Missing entry field type number - Entrada de tipo número en campo faltante + Apunte de tipo número en campo ausente Invalid entry field size - Tamaño del apunte para el campo inválido + Tamaño del apunte para el campo no válido Read entry field data doesn't match size @@ -4719,11 +5419,11 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Invalid entry group id field size - Tamaño del apunte para el campo identificador de grupo inválido + Tamaño del apunte para el campo identificador de grupo no válido Invalid entry icon field size - Tamaño del apunte para el campo icono inválido + Tamaño del apunte para el campo icono no válido Invalid entry creation time field size @@ -4735,18 +5435,18 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< Invalid entry expiry time field size - Tamaño del apunte para el campo tiempo de expiración inválido + Tamaño del apunte para el campo tiempo de caducidad no válido Invalid entry field type - Tipo del apunte para el campo inválido + Tipo del apunte para el campo no válido KeeShare Invalid sharing reference - Referencia de compartición inválida + Referencia de compartición no válida Inactive share %1 @@ -4840,7 +5540,7 @@ Si ocurre nuevamente entonces su archivo de base de datos puede estar corrupto.< You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - Ha seleccionado un fichero clave con un formato que KeePassXC<br>puede dejar de soportar en el futuro.<br><br>Considere generar un nuevo fichero clave en su lugar. + Ha seleccionado un fichero clave con un formato que KeePassXC<br>puede dejar de mantener en el futuro.<br><br>Considere generar un nuevo fichero clave en su lugar. Error loading the key file '%1' @@ -4940,10 +5640,6 @@ Are you sure you want to continue with this file? &Recent Databases Bases de datos &recientes - - &Import - &Importar - &Export &Exportar @@ -4964,6 +5660,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + Etiquetas + &Groups &Grupos @@ -4974,7 +5674,7 @@ Are you sure you want to continue with this file? View - Ver + Vista Theme @@ -5008,53 +5708,33 @@ Are you sure you want to continue with this file? &New Database… &Nueva base de datos - - Create a new database - Crear una base de datos nueva - &Merge From Database… - Com&binar desde base de datos... - - - Merge from another KDBX database - Combinar desde otra base de datos KDBX + Co&mbinar desde base de datos... &New Entry… - &Nuevo apunte... - - - Add a new entry - Añadir un nuevo apunte + &Nuevo apunte… &Edit Entry… - &Editar apunte... - - - View or edit entry - Ver o editar apunte + &Editar apunte… &Delete Entry… - E&liminar apunte + Eliminar &apunte &New Group… &Nuevo grupo... - - Add a new group - Añadir un nuevo grupo - &Edit Group… &Editar grupo... &Delete Group… - &E&liminar grupo + Eliminar &grupo Download All &Favicons… @@ -5070,67 +5750,43 @@ Are you sure you want to continue with this file? Sa&ve Database As… - Guar&dar base de datos como... + Guardar base de datos como... Database &Security… - &Seguridad de base de datos... + &Seguridad de base de datos… Database &Reports… - Info&rmes de Base de Datos... - - - Statistics, health check, etc. - Estadísticas, salud, etc. + Info&rmes de base de datos... &Database Settings… - &Configuración de base de datos... - - - Database settings - Configuración de la base de datos + &Configuraciones de base de datos… &Clone Entry… - &Duplicar apunte... + &Duplicar apunte… Move u&p - Mover &arriba - - - Move entry one step up - Mover el apunte una posición arriba + &Subir Move do&wn - Mover abajo - - - Move entry one step down - Mover el apunte una posición abajo + &Bajar Copy &Username Copiar &usuario - - Copy username to clipboard - Copiar usuario al portapapeles - Copy &Password Copiar &contraseña - - Copy password to clipboard - Copiar contraseña al portapapeles - &Settings - &Configuración + &Configuraciones &Password Generator @@ -5161,57 +5817,33 @@ Are you sure you want to continue with this file? &Título - Copy title to clipboard - Copiar título al portapapeles - - - &URL - &URL - - - Copy URL to clipboard - Copiar URL al portapapeles + Copy &URL + Copiar &URL &Notes &Notas - - Copy notes to clipboard - Copiar notas al portapapeles - &CSV File… - Archivo &CSV... + Archivo &CSV… &HTML File… - Archivo &HTML... + Archivo &HTML… KeePass 1 Database… - Base de datos KeePass 1... - - - Import a KeePass 1 database - Importar una base de datos KeePass 1 + Base de datos KeePass 1… 1Password Vault… 1Password Vault… - - Import a 1Password Vault - Importar un 1Password Vault - CSV File… Archivo CSV... - - Import a CSV file - Importar un archivo CSV - Show TOTP Mostrar TOTP @@ -5222,15 +5854,19 @@ Are you sure you want to continue with this file? Set up TOTP… - Configurar TOTP... + Configurar TOTP… Copy &TOTP Copiar &TOTP + + Copy Password and TOTP + Copiar contraseña y TOTP + E&mpty recycle bin - &Vaciar papelera de reciclaje + &Vaciar papelera &Donate @@ -5252,10 +5888,6 @@ Are you sure you want to continue with this file? &Online Help Ayuda en &línea - - Go to online documentation - Ir a la documentación en línea - &User Guide Guía de &usuario @@ -5270,7 +5902,7 @@ Are you sure you want to continue with this file? Save Database Backup… - Guardar Copia de Seguridad de la Base de Datos... + Guardar copia de seguridad de la base de datos... Add key to SSH Agent @@ -5300,6 +5932,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Clásico (Plataforma-nativo) + + Show Menubar + Mostrar barra del menu + Show Toolbar Mostrar barra de herramientas @@ -5322,7 +5958,11 @@ Are you sure you want to continue with this file? Clone Group... - Clonar Grupo... + Clonar Grupo… + + + &XML File… + Archivo &XML… Clear history @@ -5351,14 +5991,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - ADVERTENCIA: Su versión de Qt puede hacer que KeePassXC se bloquee con un teclado virtual. -Le recomendamos que utilice la AppImage disponible en nuestra página de descargas. + No Tags + Sin etiquetas Restore Entry(s) - + Restaurar apunteRestaurar apuntesRestaurar apuntes Settings @@ -5384,6 +6022,10 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Quit KeePassXC Salir de KeePassXC + + %1 Entry(s) + %1 apunte%1 apuntes%1 apuntes + Please present or touch your YubiKey to continue… Presente o toque su YubiKey para continuar... @@ -5396,6 +6038,314 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg You must restart the application to apply this setting. Would you like to restart now? Debe reiniciar la aplicación para aplicar esta configuración. ¿Desea reiniciar ahora? + + Allow Screen Capture + Permitir captura de pantalla + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importar un archivo 1Password 1PUX + + + Import… + Importar... + + + Passkeys… + Passkeys... + + + Import Passkey + Importar passkey + + + Remote S&ync… + &Sincronización remota... + + + Quit Application + Salir + + + Open About Dialog + Abrir diálogo Acerca de + + + Open Database + Abrir base de datos + + + Create Database + Crear base de datos + + + Merge From Database + Combinar desde bases de datos + + + Create Entry + Crear apunte + + + Edit Entry + Editar Apunte + + + Delete Entry + Eliminar apunte + + + Create Group + Crear grupo + + + Edit Group + Editar Grupo + + + Delete Group + Eliminar grupo + + + Download All Favicons + Descargar todos los favicons + + + Sort Groups A-Z + Ordenar grupos A-Z + + + Sort Groups Z-A + Ordenar grupos Z-A + + + Save Database As + Guardar base de datos como + + + Show Database Security + Mostrar seguridad de base de datos + + + Show Database Reports + Mostrar informes de base de datos + + + Show Database Settings + Mostrar preferencias de base de datos + + + Show Passkeys + Mostrar Passkeys + + + Clone Entry + Duplicar apunte + + + Move Entry Up + Mover apunte arriba + + + Move Entry Down + Mover apunte abajo + + + Copy Username + Copiar Usuario + + + Copy Password + Copiar Contraseña + + + Show Application Settings + Mostrar preferencias de aplicación + + + Show Password Generator + Mostrar generador de contraseñas + + + Remove Passkey From Entry + Eliminar passkey de apunte + + + Perform Auto-Type: {USERNAME} + Realizar escritura automatica: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Realizar escritura automática: {Nombre de usuario}{Enter} + + + Perform Auto-Type: {PASSWORD} + Realizar escritura automática: {CONTRASEÑA} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Realizar escritura automática: {CONTRASEÑA}{ENTER} + + + Perform Auto-Type: {TOTP} + Realizar escritura automática: {TOTP} + + + Copy Title + Copiar título + + + Copy URL + Copiar URL + + + Copy Notes + Copiar notas + + + Export to CSV + Exportar a CSV + + + Export to HTML + Exportar a HTML + + + Import KeePass1 Database + Importar base de datos KeePass1 + + + Import 1Password Vault + Importar bóveda 1Password + + + Import CSV File + Importar archivo CSV + + + Show TOTP QR Code + Mostrar código QR TOTP + + + Set up TOTP + Configurar TOTP + + + Empty Recycle Bin + Vaciar papelera de reciclaje + + + Open Donation Website + Abrir sitio web de donación + + + Open Bug Report + Abrir informe de error + + + Open Online Documentation + Abrir documentación en linea + + + Open Keyboard Shortcuts Guide + Abrir guía de atajos de teclado + + + Save Database Backup + Guardar copia de seguridad de base de datos + + + SSH Agent: Add Key + Agente de SSH: añadir llave + + + SSH Agent: Remove Key + Agente de SSH: Elimina la llave + + + Toggle Compact Mode + Alternar modo compacto + + + Set Theme: Automatic + Establecer tema: Automatico + + + Set Theme: Light + Establecer tema: Claro + + + Set Theme: Dark + Establecer tema: Oscuro + + + Set Theme: Classic + Establecer tema: Clasico + + + Toggle Show Menubar + Alternar mostrar barra de herramientas + + + Toggle Show Toolbar + Alternar mostrar barra de herramientas + + + Toggle Show Preview Panel + Alternar mostrar panel de vista previa + + + Toggle Always on Top + Alternar siempre encima + + + Toggle Hide Usernames + Alternar ocultar nombres de usuario + + + Toggle Hide Passwords + Alternar ocultar contraseñas + + + Export to XML + Exportar a XML + + + Toggle Allow Screen Capture + Alternar permitir captura de pantalla + + + Show Group Panel + Mostrar panel de grupo + + + Toggle Show Group Panel + Alternar Mostrar panel de grupo + + + Setup Remote Sync… + Configurar sincronización remota... + + + Password Generator + Generador de contraseñas + + + E&xpire Entry… + Ca&ducar entrada... + + + Clear SSH Agent + Borrar agente SSH + + + Clear all identities in ssh-agent + Borrar todas las identidades en ssh-agent + ManageDatabase @@ -5453,37 +6403,17 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Overwriting %1 [%2] Sobrescribiendo %1 [%2] - - older entry merged from database "%1" - el apunte más antiguo se combinó a la base de datos «%1» - - - Adding backup for older target %1 [%2] - Añadiendo copia de seguridad para el destino más antiguo %1 [%2] - - - Adding backup for older source %1 [%2] - Añadiendo copia de seguridad para la fuente mas antigua %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Volver a aplicar un apunte de destino más antiguo sobre la fuente más nueva %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Volver a aplicar un apunte de origen anterior sobre el objetivo más nuevo %1 [%2] - Synchronizing from newer source %1 [%2] - Sincronización desde una fuente más nueva %1 [%2] + Sincronización desde un origen más nuevo %1 [%2] Synchronizing from older source %1 [%2] - Sincronización desde una fuente anterior %1 [%2] + Sincronización desde un origen anterior %1 [%2] Deleting child %1 [%2] - Eliminando hijo %1[%2] + Eliminando heredero %1[%2] Deleting orphan %1 [%2] @@ -5491,11 +6421,11 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Changed deleted objects - cambiado objetos eliminados + Objetos cambiados eliminados Adding missing icon %1 - Añadiendo el icono faltante %1 + Añadiendo el icono %1 ausente Removed custom data %1 [%2] @@ -5532,14 +6462,6 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Aquí puede ajustar la configuración de cifrado de la base de datos. No se preocupe, puede cambiarlos más adelante en la configuración de la base de datos. - - Advanced Settings - Configuraciones avanzadas - - - Simple Settings - Ajustes simples - NewDatabaseWizardPageDatabaseKey @@ -5574,6 +6496,25 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Por favor complete el nombre, y agregue una descripción opcional, para su nueva base de datos: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + El nombre del archivo adjunto no puede estar vacío + + + Attachment with the same name already exists + Ya existe un archivo adjunto con el mismo nombre + + + Save attachment + Guardar adjunto + + + New entry attachment + Nuevo archivo adjunto de entrada + + NixUtils @@ -5620,15 +6561,6 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Se esperaban %1 bytes de texto plano, se encontraron %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Leer la base de datos no produce una instancia -%1 - - OpVaultReader @@ -5664,7 +6596,7 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg PEM boundary mismatch - Desajuste de límite PEM + Desajuste de acotación PEM Base64 decoding failed @@ -5672,11 +6604,11 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Key file way too small. - Fichero clave demasiado pequeño. + Cerrojo demasiado pequeño. Key file magic header id invalid - Id de encabezado mágico del fichero clave inválido + Id de encabezado mágico del cerrojo no válido Found zero keys @@ -5702,6 +6634,10 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Unknown cipher: %1 Cifrado desconocido: %1 + + AES-256/GCM is currently not supported + AES-256/GCM no está soportado actualmente + Passphrase is required to decrypt this key Frase de contraseña necesaria para descrifrar esta clave @@ -5736,7 +6672,7 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Unsupported key part - Parte de llave no soportado + Parte de llave no mantenida Unexpected EOF while reading public key @@ -5766,28 +6702,183 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Unexpected EOF when writing private key EOF inesperado al escribir la clave privada + + (encrypted) + (cifrado) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Contraseñas que no coinciden + SSH Key Generator + Generador de clave SSH - Passwords match so far - Contraseñas coincidentes hasta el momento + Type + Tipo - Toggle Password (%1) - Intercambiar contraseña (%1) + Bits + Bits - Generate Password (%1) - Generar contraseña (%1) + Comment + Comentario + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Exportar passkey - Warning: Caps Lock enabled! - Advertencia: ¡las mayúsculas están activadas! + Filenames will be generated with title and .passkey file extension. + Los nombres de archivos serán generados con título y extensión de archivo .passkey. + + + Export entries + Exportar apuntes + + + Export Selected + Exportar seleccionado + + + Cancel + Cancelar + + + Export to folder + Exportar a carpeta + + + Export the following passkey entries. + Exportar los siguientes passkey de apuntes. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Exportar passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + El archivo «%1.passkey» ya existe. +¿Desea sobreescribirlo? + + + Cannot open file + No se puede abrir archivo + + + Cannot open file "%1" for writing. + No se puede abrir archivo «%1» para escritura. + + + Cannot write to file + No se puede escribir a archivo + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Importar passkey + + + Username: %1 + Usuario: %1 + + + Group + Grupo + + + Database + Base de datos + + + Import Passkey + Importar Passkey + + + Import + Importar + + + Cancel + Cancelar + + + Entry + Apunte + + + Create new entry + Crear nuevo apunte + + + Relying Party: %1 + Parte que confía: %1 + + + Import the following passkey: + Importar las siguiete passkey + + + Import the following passkey to this entry: + Importar los siguientes passkey en este apunte: + + + Default passkeys group (Imported Passkeys) + Grupo por defecto de passkeys (Passkeys importadas) + + + + PasskeyImporter + + Passkey file + Archivo passkey + + + All files + Todos los archivos + + + Cannot open file + No se puede abrir archivo + + + Cannot open file "%1" for reading. + No se puede abrir archivo «%1» para lectura. + + + Open passkey file + Abrir el archivo de passkey + + + Cannot import passkey + No se pudo importar la passkey + + + Cannot import passkey file "%1". Data is missing. + No se pudo importar archivo clave «%1». Faltan datos. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + No se pudo importar passkey «%1». +Falta los siguientes datos: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + No se pudo importar archivo passkey «%1». la clave privada esta corrupta o desaparecida @@ -5966,11 +7057,7 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Also choose from: - También seleccionar de: - - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Caracteres excluidos: «0», «1», «l», «I», «O», «|», «﹒» + Seleccionar también de: Exclude look-alike characters @@ -5996,10 +7083,6 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Word Count: Cantidad de palabras: - - Character Count: - Número de caracteres: - Word Case: Capitalización de palabra: @@ -6012,10 +7095,6 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Add custom wordlist Añadir lista de palabras personalizada - - character - caracter - Close Cerrar @@ -6052,6 +7131,30 @@ Le recomendamos que utilice la AppImage disponible en nuestra página de descarg Entropy: %1 bit Entropía: %1 bit + + Password Quality: %1 + Calidad de la contraseña: %1 + + + Poor + Password quality + Pobre + + + Weak + Password quality + Débil + + + Good + Password quality + Buena + + + Excellent + Password quality + Excelente + Confirm Delete Wordlist Confirmar eliminar lista de palabras @@ -6099,8 +7202,47 @@ Do you want to overwrite it? Caracteres especiales - Password Quality: %1 - Calidad de la contraseña: %1 + passwordLength + Longitud de la contraseña + + + Characters: %1 + caracteres: %1 + + + MIXED case + MEZCLAR Mayús/minús + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Carácteres excluidos: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Contraseñas que no coinciden + + + Passwords match so far + Contraseñas coincidentes hasta el momento + + + Toggle Password (%1) + Conmutar contraseña (%1) + + + Generate Password (%1) + Generar contraseña (%1) + + + Warning: Caps Lock enabled! + Advertencia: ¡las mayúsculas están activadas! + + + Quality: %1 + Calidad: %1 Poor @@ -6122,6 +7264,10 @@ Do you want to overwrite it? Password quality Excelente + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Cambiar visibilidad de clave usando Control + H. Abrir el generador de contraseñas usando Control + G. + PickcharsDialog @@ -6138,6 +7284,21 @@ Do you want to overwrite it? Pulse la tecla &Tab entre caracteres + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Vista previa del archivo adjunto + + + No preview available + No hay vista previa disponible + + + Image format not supported + Formato de imagen no compatible + + QMessageBox @@ -6176,6 +7337,10 @@ Do you want to overwrite it? Continue Continuar + + Continue with weak password + Continuar con una clave débil + QObject @@ -6373,7 +7538,7 @@ Do you want to overwrite it? Password for '%1' has been leaked %2 time(s)! - ¡Contraseña para «%1» ha sido filtrada %2 vez!¡Contraseña para «%1» ha sido filtrada %2 veces! + ¡Contraseña para «%1» ha sido filtrada %2 vez!¡Contraseña para «%1» ha sido filtrada %2 veces!¡Contraseña para «%1» ha sido filtrada %2 veces! Password for '%1' has been leaked! @@ -6523,7 +7688,7 @@ Do you want to overwrite it? Clearing the clipboard in %1 second(s)... - Limpiar el portapapeles en %1 segundo(s)...Limpiar el portapapeles en %1 segundo(s)... + Limpiar el portapapeles en %1 segundo(s)...Limpiar el portapapeles en %1 segundo(s)...Limpiar el portapapeles en %1 segundo(s)... Clipboard cleared! @@ -6569,6 +7734,10 @@ Do you want to overwrite it? Too many arguments provided. Demasiados argumentos proporcionados. + + Path of the database. + Ruta a la base de datos. + Target decryption time in MS for the database. Tiempo de descifrado objetivo en ms para la base de datos. @@ -6589,10 +7758,6 @@ Do you want to overwrite it? Create a new database. Crear una base de datos nueva. - - Path of the database. - Ruta a la base de datos. - Invalid decryption time %1. Tiempo de descifrado inválido %1. @@ -6637,6 +7802,158 @@ Do you want to overwrite it? Successfully created new database. Nueva base de datos creada correctamente. + + Unset the password for the database. + Se ha quitado la contraseña de la base de datos. + + + Unset the key file for the database. + Se ha quitado el archivo clave de la base de datos. + + + Edit a database. + Editar una base de datos. + + + Cannot use %1 and %2 at the same time. + No se puede usar %1 y %2 al mismo tiempo. + + + Could not change the database key. + No se pudo cambiar la clave de la base de datos. + + + Database was not modified. + La base de datos no ha sido modificada. + + + Writing the database failed: %1 + Fallo al escribir la base de datos: %1 + + + Successfully edited the database. + Se ha editado correctamente la base de datos. + + + Cannot remove password: The database does not have a password. + No se puede eliminar la contraseña: la base de datos no tiene contraseña. + + + Cannot remove file key: The database does not have a file key. + No se puede eliminar el archivo clave: la base de datos no tiene archivo clave. + + + Loading the new key file failed: %1 + Carga de un nuevo archivo clave ha fallado: %1 + + + Found unexpected Key type %1 + Encontrado tipo de clave inesperado %1 + + + Cannot remove all the keys from a database. + No se puede eliminar todas las claves de la base de datos. + + + Show a database's information. + Mostrar información de una base de datos. + + + UUID: + UUID: + + + Name: + Nombre: + + + Description: + Descripción: + + + Cipher: + Cifrado: + + + KDF: + KDF: + + + Recycle bin is enabled. + La papelera de reciclaje está habilitada. + + + Recycle bin is not enabled. + La papelera de reciclaje no está habilitada. + + + Location + Localización + + + Database created + Base de datos creada + + + Last saved + Última guardada + + + Unsaved changes + Cambios no guardados + + + yes + + + + no + no + + + Number of groups + Número de grupos + + + Number of entries + Número de apuntes + + + Number of expired entries + Número de apuntes expirados + + + Unique passwords + Contraseñas únicas + + + Non-unique passwords + Contraseñas no únicas + + + Maximum password reuse + Reuso máximo de contraseña + + + Number of short passwords + Número de contraseñas cortas + + + Number of weak passwords + Número de contraseñas débiles + + + Entries excluded from reports + Apuntes excluidos de los informes + + + Average password length + Longitud media de contraseña + + + %1 characters + %1 caracteres + Word count for the diceware passphrase. Número de palabras para la frase de contraseña de diceware. @@ -6660,10 +7977,6 @@ Do you want to overwrite it? Invalid word count %1 Número de palabras inválido %1 - - The word list is too small (< 1000 items) - El listado de palabras es demasiado pequeña (< 1000 elementos) - Title for the entry. Título para el apunte. @@ -6688,10 +8001,6 @@ Do you want to overwrite it? Enter new password for entry: Introduzca una nueva contraseña para el apunte: - - Writing the database failed: %1 - Fallo al escribir la base de datos: %1 - Successfully edited entry %1. Apunte %1 editado correctamente. @@ -6812,10 +8121,6 @@ Do you want to overwrite it? Exit interactive mode. Salir de modo interactivo. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formato a usar al exportar. Las opciones disponibles son «xml» o «csv». Por defecto «xml». - Exports the content of a database to standard output in the specified format. Exporta el contenido de la base de datos en la salida estándar en el formato especificado. @@ -6916,106 +8221,6 @@ Do you want to overwrite it? Successfully imported database. Base de datos importada correctamente. - - Show a database's information. - Mostrar información de una base de datos. - - - UUID: - UUID: - - - Name: - Nombre: - - - Description: - Descripción: - - - Cipher: - Cifrado: - - - KDF: - KDF: - - - Recycle bin is enabled. - La papelera de reciclaje está habilitada. - - - Recycle bin is not enabled. - La papelera de reciclaje no está habilitada. - - - Location - Localización - - - Database created - Base de datos creada - - - Last saved - Última guardada - - - Unsaved changes - Cambios no guardados - - - yes - - - - no - no - - - Number of groups - Número de grupos - - - Number of entries - Número de apuntes - - - Number of expired entries - Número de apuntes expirados - - - Unique passwords - Contraseñas únicas - - - Non-unique passwords - Contraseñas no únicas - - - Maximum password reuse - Reuso máximo de contraseña - - - Number of short passwords - Número de contraseñas cortas - - - Number of weak passwords - Número de contraseñas débiles - - - Entries excluded from reports - Apuntes excluidos de los informes - - - Average password length - Longitud media de contraseña - - - %1 characters - %1 caracteres - Unknown command %1 Mandato %1 desconocido @@ -7188,6 +8393,10 @@ Comandos disponibles: Show the protected attributes in clear text. Mostrar los atributos protegidos en texto legible + + Show all the attributes of the entry. + Mostrar todos los atributos del apunte. + Show the attachments of the entry. Mostrar los adjuntos del apunte. @@ -7258,6 +8467,10 @@ Considere generar un nuevo fichero clave. Invalid YubiKey serial %1 Serie de YubiKey inválido %1 + + Please present or touch your YubiKey to continue. + Conecte o toque su YubiKey para continuar. + Enter password to encrypt database (optional): Introduzca la contraseña para cifrar la base de datos (opcional): @@ -7330,7 +8543,7 @@ Considere generar un nuevo fichero clave. Password is used %1 time(s) - La contraseña es usada %1 vezLa contraseña es usada %1 veces + La contraseña es usada %1 vezLa contraseña es usada %1 vecesLa contraseña es usada %1 veces Password has expired @@ -7350,7 +8563,7 @@ Considere generar un nuevo fichero clave. Password expires in %1 day(s) - La contraseña expira en %1 díaLa contraseña expira en %1 días + La contraseña expira en %1 díaLa contraseña expira en %1 díasLa contraseña expira en %1 días Password will expire soon @@ -7422,31 +8635,31 @@ Núcleo: %3 %4 over %1 year(s) - más de %1 añomás de %1 años + más de %1 añomás de %1 añosmás de %1 años about %1 month(s) - casi %1 mescasi %1 meses + casi %1 mescasi %1 mesescasi %1 meses %1 week(s) - %1 semana%1 semanas + %1 semana%1 semanas%1 semanas %1 day(s) - %1 día%1 días + %1 día%1 días%1 días %1 hour(s) - %1 hora%1 horas + %1 hora%1 horas%1 horas %1 minute(s) - %1 minuto%1 minutos + %1 minuto%1 minutos%1 minutos - Botan library must be at least 2.11.x, found %1.%2.%3 - La biblioteca de Botan debe ser al menos 2.11.x, encontrada %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Librería Botan debe ser al menos %1, encontrado %2.%3.%4 Cryptographic libraries: @@ -7496,18 +8709,6 @@ Núcleo: %3 %4 file empty archivo vacío - - malformed string - cadena de caracteres mal formada - - - missing closing quote - comilla de cierre faltante - - - %1: (row, col) %2,%3 - %1: (fila, col) %2,%3 - AES 256-bit AES 256-bit @@ -7546,7 +8747,7 @@ Núcleo: %3 %4 Clearing the clipboard in %1 second(s)… - Limpiando el portapapeles en %1 segundo...Limpiando el portapapeles en %1 segundos... + Limpiando el portapapeles en %1 segundo...Limpiando el portapapeles en %1 segundos...Limpiando el portapapeles en %1 segundos... Group @@ -7587,12 +8788,12 @@ Núcleo: %3 %4 %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? @@ -7600,11 +8801,11 @@ Núcleo: %3 %4 Do you really want to delete %n entry(s) for good? - ¿Desea eliminar para siempre %n apunte?¿Desea eliminar para siempre %n apuntes? + ¿Desea eliminar para siempre %n apunte?¿Desea eliminar para siempre %n apuntes?¿Desea eliminar para siempre %n apuntes? Delete entry(s)? - ¿Eliminar apunte?¿Eliminar apuntes? + ¿Eliminar apunte?¿Eliminar apuntes?¿Eliminar apuntes? Do you really want to move entry "%1" to the recycle bin? @@ -7612,11 +8813,11 @@ Núcleo: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - ¿Desea mover %n apunte a la papelera de reciclaje?¿Desea mover %n apuntes a la papelera de reciclaje? + ¿Desea mover %n apunte a la papelera de reciclaje?¿Desea mover %n apuntes a la papelera de reciclaje?¿Desea mover %n apuntes a la papelera de reciclaje? Move entry(s) to recycle bin? - ¿Mover el(los) apunte(s) a la papelera de reciclaje?¿Mover el(los) apunte(s) a la papelera de reciclaje? + ¿Mover el(los) apunte(s) a la papelera de reciclaje?¿Mover el(los) apunte(s) a la papelera de reciclaje?¿Mover el(los) apunte(s) a la papelera de reciclaje? Replace references to entry? @@ -7624,7 +8825,7 @@ Núcleo: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - El apunte «%1» tiene %2 referencia. ¿Desea sobreescribir las referencia con valores, omitir este apunte o eliminar de todos modos?El apunte «%1» tiene %2 referencias. ¿Desea sobreescribir las referencias con valores, omitir este apunte o eliminar de todos modos? + El apunte «%1» tiene %2 referencia. ¿Desea sobreescribir las referencia con valores, omitir este apunte o eliminar de todos modos?El apunte «%1» tiene %2 referencias. ¿Desea sobreescribir las referencias con valores, omitir este apunte o eliminar de todos modos?El apunte «%1» tiene %2 referencias. ¿Desea sobreescribir las referencias con valores, omitir este apunte o eliminar de todos modos? User name @@ -7686,14 +8887,6 @@ Núcleo: %3 %4 read password of the database from stdin leer contraseña de la base de datos desde la entrada estándar - - allow app screen recordering and screenshots - Permitir la grabación de la pantalla de la aplicación y las capturas de pantalla - - - Locked databases. - Bases de datos bloqueadas. - Database failed to lock. Fallo al bloquear base de datos. @@ -7702,6 +8895,10 @@ Núcleo: %3 %4 Another instance of KeePassXC is already running. Otra instancia de KeePassXC ya se está ejecutando. + + KeePassXC is not running. No open database to lock + KeePassXC no está en ejecución. No hay base de datos abierta a cerrar + Fatal error while testing the cryptographic functions. Error fatal comprobando las funciones criptográficas. @@ -7710,10 +8907,6 @@ Núcleo: %3 %4 KeePassXC - Error KeePassXC - Error - - Warning: Failed to prevent screenshots on a top level window! - Advertencia: ¡Error al prevenir las capturas de pantalla en una ventana de nivel superior! - Database password: Contraseña de la base de datos: @@ -7737,9 +8930,313 @@ Núcleo: %3 %4 Fallo al completar reto usando Windows Hello. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Advertencia: Fallo al bloquear la captura de pantalla en la ventana de nivel superior. + + + Invalid Cipher + Algoritmo de cifrado inválido + + + Invalid KDF + KDF inválido + + + Access to all entries is denied + acceso a todos los apuntes denegado + + + allow screenshots and app recording (Windows/macOS) + permitir aplicación de capturas de pantalla y granación (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Establecer el archivo clave para la base de datos. +Esta opción está obsoleta, use --set-key-file. + + + Databases have been locked. + Las bases de datos han sido bloqueadas. + + + Attestation not supported + Atestación no soportada + + + Credential is excluded + Credencia excluida + + + Passkeys request canceled + Petición passkey cancelada + + + Invalid user verification + Verificación de usuario inválido + + + Empty public key + Vaciar clave pública + + + Invalid URL provided + URL inválida proporcionada + + + Passkeys + Passkeys + + + AES initialization failed + Fallo inicialización AES + + + AES encrypt failed + Fallo cifrado AES + + + Failed to store in Linux Keyring + Fallo al almacenar en llavero de Linux + + + Polkit returned an error: %1 + Polkit devolvió un error: %1 + + + Could not locate key in keyring + No se puede localizar en llavero + + + Could not read key in keyring + No se puede leer clave en llavero + + + AES decrypt failed + Fallo descrifrado AES + + + No Polkit authentication agent was available + No hay agente de autenticación Polkit disponible + + + Polkit authorization failed + Fallo de autorización de Polkit + + + No Quick Unlock provider is available + No hay proveedor de Quick Unlock + + + Failed to init KeePassXC crypto. + Fallo al inicializar criptografía de KeePassXC. + + + Failed to encrypt key data. + Fallo al cifrar clave de datos. + + + Failed to get Windows Hello credential. + Fallo al obtener credencial Windows Hello. + + + Failed to decrypt key data. + Fallo al descifrar clave de datos. + + + Origin is empty or not allowed + El origen está vacío o no está permitido + + + Effective domain is not a valid domain + El dominio efectivo no es un dominio válido + + + Origin and RP ID do not match + El origen y RP ID no coinciden + + + No supported algorithms were provided + Se han proporcionado algoritmos no soportados + + + Wait for timer to expire + Esperar a que el temporizador expire + + + Challenge is shorter than required minimum length + El desafío es más corto que la longitud mínima requerida + + + user.id does not match the required length + user.id no coincide con la longitud requerida + + + Favorite + Tag for favorite entries + Favorito + + + File does not exist. + Archivo no existe. + + + Cannot open file: %1 + No s puede abrir archivo: %1 + + + Cannot parse file: %1 at position %2 + No se puede procesar archivo: %1 en posición %2 + + + Failed to decrypt json file: %1 + Fallo a descifrar archivo json: %1 + + + Invalid encKeyValidation field + Campo encKeyValidation inválido + + + Invalid cipher list within encKeyValidation field + Lista de cifrado inválida dentro del campo encKeyValidation + + + Wrong password + Contraseña incorrecta + + + Invalid encrypted data field + Campo de datos cifrado inválido + + + Invalid cipher list within encrypted data field + Lista de cifrado inválida dentro del campo encKeyValidation + + + Cannot initialize cipher + No se puede inicializar cifrado + + + Cannot decrypt data + No se puede descifrar datos + + + Bitwarden Import + Importar Bitwarden + + + Archived + Tag for archived entries + Archivado + + + Invalid 1PUX file format: Not a valid ZIP file. + Formato de archivo 1PUX inválido: no es un archivo ZIP válido. + + + Invalid 1PUX file format: Missing export.data + Formato de archivo 1PUX inválido: datos de exportación faltantes. + + + 1Password Import + Importar 1Password + + + Enter Shortcut + Añadir atajo + + + Action + Acción + + + Shortcuts + Atajos + + + Unknown passkeys error + Error de passkey desconocido + + + Invalid KDF iterations, cannot decrypt json file + Iteracion KDF invalida, no se pudo desencriptar el archivo json + + + Unsupported format, ensure your Bitwarden export is password-protected + Formato no soportado, asegurate de que tu exportacion Bitwarden esta protegido con contraseña + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Solo se soportan PBKDF y Argon2, no se uedo desencriptar archivo json + + + Reset Shortcuts + Restablecer atajos + + + Double click an action to change its shortcut + Doble clic a una accion para cambiar el atajo + + + Filter... + Filtrar... + + + Shortcut Conflict + Conflicto de atajos + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Atajo %1 está en conflicto con «%2». ¿Sobreescribir atajo? + + + Cannot generate valid passphrases because the wordlist is too short + No se puede generar una frase de contraseña válida porque la lista de palabras es demasiado corta + + + Encrypted files are not supported. + Los archivos cifrados no son compatibles. + + + Proton Pass Import + Importación de Proton Pass + + + Delete plugin data? + ¿Eliminar los datos del complemento? + + + Delete plugin data from Entry(s)? + ¿Eliminar los datos del complemento del apunte?¿Eliminar los datos del complemento de los apuntes?¿Eliminar los datos del complemento de los apuntes? + + + Passkey + Cerrojo + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Formato que se utilizará al exportar. Las opciones disponibles son 'xml', 'csv' o 'html'. Por defecto es 'xml'. + + + start minimized to the system tray + iniciar minimizado en la bandeja del sistema + + + malformed string, possible unescaped delimiter + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Etiquetas + QtIOCompressor @@ -7775,20 +9272,39 @@ Núcleo: %3 %4 Error interno de zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + El comando «%1» no ha finalizado en tiempo. El proceso se ha finalizado. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Fallo al subir base de datos mezclada. El comando «%1» no ha finalizado en tiempo. El proceso se ha finalizado. + + + Invalid download parameters provided. + Parámetros de descarga inválidos proporcionados. + + + Command `%1` failed to download database. + El comando «%1» falló al descargar base de datos. + + + Invalid database pointer or upload parameters provided. + Puntero de base de datos o parámetros de subida inválidos proporcionados. + + + Command `%1` exited with status code: %2 + El comando «%1» terminó con código de estado: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Fallo al subir base de datos mezclada. El comando «%1» finalizó con código de estado: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Excluir apuntes caducados del informe - - - Show only entries which have URL set - Mostar solo apuntes con URL - - - Show only entries which have browser settings in custom data - Mostrar solo apuntes que tienen preferencias de navegador en datos personalizados - Double-click entries to edit. Doble clic para editar apuntes. @@ -7847,50 +9363,59 @@ Núcleo: %3 %4 Delete Entry(s)… - Eliminar apunte(s)...Eliminar apunte(s)... + Eliminar apunte(s)...Eliminar apunte(s)...Eliminar apunte(s)... Exclude from reports Excluir de los informes + + Expire Entry(s)… + Caducar apunte(s)...Caducar apunte(s)...Caducar entrada(s)... + + + Only show entries that have a URL + Mostrar solo apuntes que tienen una URL + + + Only show entries that have been explicitly allowed or denied + Mostrar solo apuntes que han sido permitidos o denegados explícitamente + + + Show expired entries + Mostrar apuntes expirados + + + (Expired) + (Expirado) + + + Delete plugin data from Entry(s)… + Eliminando los datos del complemento del apunte...Eliminando los datos del complemento de los apuntes...Eliminando los datos del complemento de los apuntes... + ReportsWidgetHealthcheck - Exclude expired entries from the report - Excluir apuntes caducados del informe + Show expired entries + Mostrar apuntes expirados - Also show entries that have been excluded from reports - Mostrar también que ha sido excluido de los informes + (Expired) + (Expirado) Hover over reason to show additional details. Double-click entries to edit. Pasar por encima del motivo para mostrar detalles adicionales. Doble clic para editar. - - Bad - Password quality - Mal - Bad — password must be changed Mal — la contraseña debe ser cambiada - - Poor - Password quality - Pobre - Poor — password should be changed Pobre — la contraseña debería ser cambiada - - Weak - Password quality - Débil - Weak — consider changing the password Débil — considere cambiar la contraseña @@ -7933,12 +9458,20 @@ Núcleo: %3 %4 Delete Entry(s)… - Eliminar apunte(s)...Eliminar apunte(s)... + Eliminar apunte(s)...Eliminar apunte(s)...Eliminar apunte(s)... Exclude from reports Excluir de los informes + + Expire Entry(s)… + Caducar apunte(s)...Caducar apunte(s)...Caducar entrada(s)... + + + Show entries that have been excluded from reports + Mostrar apuntes que han sido excluidos de los informes + ReportsWidgetHibp @@ -8028,12 +9561,83 @@ Núcleo: %3 %4 Delete Entry(s)… - Eliminar apunte(s)...Eliminar apunte(s)... + Eliminar apunte(s)...Eliminar apunte(s)...Eliminar apunte(s)... Exclude from reports Excluir de los informes + + Expire Entry(s)… + Caducar apunte(s)...Caducar apunte(s)...Caducar entrada(s)... + + + + ReportsWidgetPasskeys + + Export + Exportar + + + Import + Importar + + + List of entry URLs + Lista de URLs de apuntes + + + Title + Título + + + Path + Ruta + + + Username + Usuario + + + URLs + URLs + + + Edit Entry… + Editar Apunte... + + + Delete Entry(s)… + Eliminar apunte...Eliminar apunte(s)...Eliminar apuntes... + + + Relying Party + Parte que confía + + + Show expired entries + Mostrar apuntes expirados + + + (Expired) + (Expirado) + + + Export Confirmation + Confirmación de exportación + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + El archivo passkey será vunerable a robos y usos no autorizados si lo deja desprotegido. ¿Desea continuar? + + + Please wait, list of entries with passkeys is being updated… + Espere, la lista de entradas con passkeys está siendo actualizada... + + + No entries with passkeys. + No hay apuntes con passkeys. + ReportsWidgetStatistics @@ -8208,6 +9812,14 @@ Núcleo: %3 %4 No agent running, cannot list identities. No hay ningún agente ejecutándose, no se pueden listar identidades. + + Failed to remove all SSH identities from agent. + Error al eliminar todas las identidades SSH del agente. + + + All SSH identities removed from agent. + Todas las identidades SSH eliminadas del agente. + SearchHelpWidget @@ -8274,6 +9886,10 @@ Núcleo: %3 %4 Search Help Buscar Ayuda + + Save Search + Guardar búsqueda + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8348,34 +9964,10 @@ Núcleo: %3 %4 Confirm when passwords are retrieved by clients Confirmar cuándo las contraseñas son recuperadas por los clientes. - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Esta configuración - no sobreescribe deshabilitar las confirmaciones de la papelera</span></p></body></html> - - Confirm when clients request entry deletion Confirmar cuándo los clientes solicitan la eliminación del apunte. - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Esto mejora la compatibilidad con ciertas aplicaciones - que buscan contraseñas sin bloquear la base de datos primero.</p><p>Pero habilitar esto puede también - terminar el cliente si la base de datos no puede ser desblqueada dentro de cierto tiempo de espera. (Normalmente 25s, pero puede ser - un valor diferente establecido en las aplicaciones)</p></body></html> - - Prompt to unlock database before searching Confirmar para desbloquear la base de datos antes de buscar @@ -8400,6 +9992,14 @@ Núcleo: %3 %4 Save current changes to activate the plugin and enable editing of this section. Guardar los cambios para activar el complemento y habilitar la edición de esta sección. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Esta configuración no sobreescribe la deshabilitación de indicaciones de la papelera de reciclaje</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Esto mejora la compatibilidad con ciertas aplicaciones que buscan constraseñas sin desbloquear la base de datos primero.</p><p>Pero habilitar esto puede también hacer fallar el cliente si la base de datos no puede ser desbloqueda en cierto tiempo. (Usualmente 25s, peoro puede ser un valor diferente en las aplicaciones). </p></body></html> + SettingsWidgetKeeShare @@ -8508,8 +10108,12 @@ Núcleo: %3 %4 TagModel - All - Todos + Clear Search + Limpiar búsqueda + + + All Entries + Todos los apuntes Expired @@ -8520,6 +10124,25 @@ Núcleo: %3 %4 Contraseñas débiles + + TagView + + Remove Search + Eliminar búsqueda + + + Remove Tag + Eliminar etiqueta + + + Confirm Remove Tag + Confirmar eliminar etiqueta + + + Remove tag "%1" from all entries in this database? + ¿Eliminar etiqueta «%1» de todos los apuntes en esta base de datos? + + TotpDialog @@ -8532,7 +10155,7 @@ Núcleo: %3 %4 Expires in <b>%n</b> second(s) - Caduca en <b>%n</b> segundoCaduca en <b>%n</b> segundos + Caduca en <b>%n</b> segundoCaduca en <b>%n</b> segundosCaduca en <b>%n</b> segundos @@ -8677,26 +10300,6 @@ Ejemplo: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Empiece a guardar sus contraseñas con seguridad en una base de datos de KeePassXC - - Create new database - Crear una base de datos nueva - - - Open existing database - Abrir una base de datos existente - - - Import from KeePass 1 - Importar de KeePass 1 - - - Import from 1Password - Importar de 1Password - - - Import from CSV - Importar de CSV - Recent databases Bases de datos recientes @@ -8709,6 +10312,18 @@ Ejemplo: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bienvenido a KeePassXC %1 + + Create Database + Crear base de datos + + + Open Database + Abrir base de datos + + + Import File + Importar archivo + WinUtils @@ -8725,61 +10340,30 @@ Ejemplo: JBSWY3DPEHPK3PXP No se puedo registrar acceso directo global - - WindowsHello - - Failed to init KeePassXC crypto. - Fallo al inicializar criptografía de KeePassXC. - - - Failed to encrypt key data. - Fallo al cifrar clave de datos. - - - Failed to get Windows Hello credential. - Fallo al obtener credencial Windows Hello. - - - Failed to decrypt key data. - Fallo al descifrar clave de datos. - - YubiKey - - %1 No interface, slot %2 - %1 sin interfaz, ranura %2 - General: General: Could not find interface for hardware key with serial number %1. Please connect it to continue. - No se puede encontrar la interfaz para la llave hardware con número de serie %1. Conéctela para continuar. + No se puede encontrar la interfaz para la clave hardware con número de serie %1. Conéctela para continuar. YubiKeyEditWidget - - Refresh hardware tokens - Actualizar «tokens» hardware - - - Refresh - Actualizar - Hardware key slot selection - Selección de ranura de llave por hardware + Selección de ranura de clave hardware Could not find any hardware keys! - ¡No se puede encontrar ninguna llave por hardware! + ¡No se puede encontrar ninguna clave hardware! Selected hardware key slot does not support challenge-response! - ¡La ranura de la llave por hardware seleccionada no soporta reto-respuesta! + ¡La ranura de la clave hardware seleccionada no soporta reto-respuesta! Challenge-Response @@ -8801,56 +10385,64 @@ Ejemplo: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Conjunto de Desafío/Respuesta, haga clic para cambiar o eliminar - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Si posee una <a href="https://www.yubico.com/">YubiKey</a> u <a href="https://onlykey.io">OnlyKey</a>, puede usarla para seguridad adicional.</p><p>La llave requiere que una de sus ranuras esté programada como <a href="https://www.yubico.com/products/services-software/challenge-response/">Desafío/respuesta HMAC-SHA1</a>.</p> - Detecting hardware keys… - Detectando llaves por hardware... + Detectando claves hardware... No hardware keys detected - No se detectaron llaves por hardware + No se detectaron claves hardware - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Especificado una ranura inválida - %2 + Refresh hardware keys + Actualizar claves hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Si posee un <a href="https://www.yubico.com/">YubiKey</a> o <a href="https://onlykey.io">OnlyKey</a>, puede utilizarlo para mayor seguridad.</p><p>La llave requiere que una de sus ranuras esté programada con <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Se han encontrado llaves hardware, pero no hay ranuras configuradas YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Desfío-Respuesta - Ranura %3 - The YubiKey PCSC interface has not been initialized. La interfaz YubiKey PCSC no ha sido inicializada. - - Hardware key is currently in use. - La llave por hardware está actualmente en uso. - Could not find or access hardware key with serial number %1. Please present it to continue. - No se puede encontrar la interfaz para la llave hardware con número de serie %1. Conéctela para continuar. + No se puede encontrar la interfaz para la clave hardware con número de serie %1. Conéctela para continuar. Hardware key is locked or timed out. Unlock or re-present it to continue. - La llave hardware está bloqueada o expiró. Desbloque o vuelva a presentar para continuar. + La clave hardware está bloqueada o expiró. Desbloque o vuelva a presentar para continuar. Hardware key was not found or is not configured. - Llave hardware no encontrada o no configurada. + Clave hardware no encontrada o no configurada. Failed to complete a challenge-response, the PCSC error code was: %1 Fallo al completar el desafio-respuesta, el error PCSC fue: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Ranura %3, %4 + + + Press + USB Challenge-Response Key interaction request + Presione + + + Passive + USB Challenge-Response Key no interaction required + Pasivo + YubiKeyInterfaceUSB @@ -8858,14 +10450,6 @@ Ejemplo: JBSWY3DPEHPK3PXP Unknown Desconocido - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Ranura configurada - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Desafío-Respuesta - Ranura %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8880,25 +10464,31 @@ Ejemplo: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. La interfaz YubiKey USB no ha sido inicializada. - - Hardware key is currently in use. - La llave por hardware está actualmente en uso. - Could not find hardware key with serial number %1. Please plug it in to continue. - No se puede encontrar llave por hardware con número de serie %1. Conéctelo para continuar. + No se puede encontrar clave hardware con número de serie %1. Conéctelo para continuar. Hardware key timed out waiting for user interaction. - La llave por hardware expiró esperando interacción del usuario. + La clave hardware expiró esperando interacción del usuario. A USB error occurred when accessing the hardware key: %1 - Ha ocurrido un error USB al acceder a la llave por hardware: %1 + Ha ocurrido un error USB al acceder a la clave hardware: %1 Failed to complete a challenge-response, the specific error was: %1 Fallo al completar el reto-respuesta, el error fue: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Ranura %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Ranura %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_et.ts b/share/translations/keepassxc_et.ts index a151b4859..6628d47cc 100644 --- a/share/translations/keepassxc_et.ts +++ b/share/translations/keepassxc_et.ts @@ -80,6 +80,10 @@ Details Üksikasjad + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Otsust mäletatakse seni, kuni nii taotluse esitanud klient kui ka KeePassXC töötavad. + Remember Jäetakse meelde @@ -88,10 +92,6 @@ Allow Selected Luba valituile - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Otsust mäletatakse seni, kuni nii taotluse esitanud klient kui ka KeePassXC töötavad. - Deny All && Future Keela kõik ka edaspidi @@ -122,6 +122,10 @@ Use OpenSSH OpenSSH kasutamine + + Use both agents + Mõlema agendi kasutamine + SSH_AUTH_SOCK override SSH_AUTH_SOCK-i alistus: @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH agendi ühendus toimib! - - Use both agents - Mõlema agendi kasutamine - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Turvalisus + + This setting cannot be enabled when minimize on unlock is enabled. + Kuna valitud on luku avamise järel akna minimeerimine, ei saa seda valikut sisse lülitada. + Access error for config file %1 Juurdepääsuviga seadistusfailil „%1” @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Keele vahetamiseks tuleb KeePassXC uuesti käivitada. Kas teha seda kohe? - - Reset Settings? - Seadete lähtestamise kinnitus - - - Are you sure you want to reset all general and security settings to default? - Kas oled kindel, et tahad kõik üld- ja turvaseaded lähtestada? - Select backup storage directory Varundamise sihtkataloogi valimine + + Confirm Reset + Lähtestamise kinnitus + + + Are you sure you want to reset all settings to default? + Kas oled kindel, et tahad kõik seaded lähtestada? + + + Import KeePassXC Settings + KeePassXC seadete importimine + + + Failed to import settings from %1, not a valid settings file. + Failist „%1” seadete importimine ei õnnestunud, tegemist pole korrektse seadete failiga. + + + Export KeePassXC Settings + KeePassXC seadete eksportimine + + + Small + väike + + + Normal + tavaline + + + Medium + keskmine + + + Large + suur + + + Custom + kohandatud + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Mäletatakse viimati kasutatud andmebaase + + recent files + hiljutise faili piires + Load previously open databases on startup Käivitumisel laaditakse viimati avatud olnud andmebaasid @@ -272,25 +312,6 @@ Include beta releases when checking for updates Sobivad ka beetaversioonid - - On database unlock, show entries that - Andmebaasi avamisel näidatakse kirjeid, mis - - - have expired - On database unlock, show entries that... - on aegunud - - - days - On database unlock, show entries that will expire within %1 days - päeva jooksul - - - will expire within - On database unlock, show entries that... - aeguvad - File Management Failihaldus @@ -315,22 +336,10 @@ Backup database file before saving Enne salvestamist tehakse andmebaasifailist varukoopia - - Backup destination - Varundamise sihtkoht: - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Määrab andmebaasi varukoopia salvestuskoha. „{DB_FILENAME}” asendatakse salvestatud andmebaasi failinimega (ilma laiendita). {TIME:<vorming>} asendatakse varundamisajaga, vaata https://doc.qt.io/qt-5/qdatetime.html#toString. Vaikimisi on <vorming> „dd_MM_yyyy_hh-mm-ss” (s.t nt 15_04_2022_13-25-46). - {DB_FILENAME}.old.kdbx {DB_FILENAME}.vana.kdbx - - Choose... - Vali... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Alternatiivse salvestusmeetodi kasutamine (võib lahendada probleemid Dropboxi, Google Drive’i, GVFS-i jms-ga) @@ -369,11 +378,11 @@ Favicon download timeout: - Saidiikoonide allalaadimise ajalõpp: + Saidiikoonide allalaadimise ajalimiit: Website icon download timeout in seconds - Saidiikoonide allalaadimiskatsete aegumine sekundites + Saidiikoonide allalaadimiskatsete ajalimiit sekundites sec @@ -408,6 +417,10 @@ Toolbar button style: Tööriistariba nuppude stiil: + + Show passwords in color + Paroole näidatakse värviliselt + Use monospaced font for notes Märkmete jaoks kasutatakse fikseeritud laiusega fonti @@ -493,16 +506,81 @@ Remember last typed entry for: Viimati sisestatud kirjet mäletatakse: + + On database unlock, show entries that will expire within + Andmebaasi avamisel näidatakse kirjeid, mis aeguvad + + + On database unlock, show entries that will expire within + Andmebaasi avamisel näidatakse kirjeid, mis aeguvad + + + days + number of days warning for password expiration + päeva jooksul + + + Destination format: + Sihtfaili nimevorming: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> tähistab salvestatud andmebaasi failinime ilma laiendita.</p><p><span style=" font-weight:600;">{TIME:&lt;vorming&gt;}</span> tähistab määratud vormingus ajaväärtust (vaikimisi: dd_MM_yyyy_hh-mm-ss).</p><p>Lisateavet leiad käsiraamatust.</p></body></html> + + + Choose folder... + Vali kaust… + + + Show confirmation before moving entries to recycle bin + Kirjete prügikasti viskamisel küsitakse kinnitust + + + Copy data on double clicking field in entry view + Kirjevaates kopeerib topeltklõps väljal selle sisu lõikepuhvrisse + + + Show toolbar + Tööriistariba nähtaval + + + Show the menu bar by pressing the Alt key + Peidetud menüüriba puhul saab menüü avada Alt-klahviga + + + Show menubar + Menüüriba nähtaval + + + Import settings… + Impordi seaded… + + + Export settings… + Ekspordi seaded… + + + Open browser on double clicking URL field in entry view + Kirjevaates avab topeltklõps URL-il selle brauseris + + + Font size: + Fondi suurus: + + + Font size selection + Fondisuuruse valik + ApplicationSettingsWidgetSecurity Timeouts - Aegumine + Ajalimiidid Database lock timeout seconds - Andmebaasi lukustamise ajalõpp sekundites + Andmebaasi lukustamise ajalimiit sekundites sec @@ -546,10 +624,6 @@ Lock databases after minimizing the window Andmebaasid lukustatakse akna minimeerimisel - - Require password repeat when it is visible - Ka nähtava paroolivälja korral nõutakse parooli kordamist - Hide passwords when editing them Paroolid on muutmise ajal peidetud @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Kirjete eelvaatepaneelil varjatakse paroolid täppidega - - Hide entry notes by default - Vaikimisi peidetakse kirjete märkmed - - - Move entries to recycle bin without confirmation - Kirjete prügikasti viskamisel kinnitust ei küsita - - - Enable double click to copy the username/password entry columns - Topeltklõps kasutajanime/parooli veerus kopeerib selle lõikepuhvrisse - Privacy Privaatsus @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Saidiikoonide allalaadimiseks kasutatakse DuckDuckGo teenust + + Hide TOTP in the entry preview panel + Kirjete eelvaatepaneelil varjatakse TOTP kood + + + Lock databases when switching user + Andmebaasid lukustatakse kasutaja vahetamisel + + + Lock Options + Lukustamise seaded + + + Hide notes in the entry preview panel + Kirjete eelvaatepaneelil varjatakse märkmed + AutoType @@ -626,18 +704,8 @@ Leiti väga pikk viivitus, lubatud maksimum on %1: %2 - Invalid conversion type: %1 - Vigane teisendustüüp: %1 - - - Invalid conversion syntax: %1 - Vigane teisendussüntaks: %1 - - - Invalid regular expression syntax %1 -%2 - Vigane regulaaravaldise süntaks %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + PICKCHARS-automaatsisestuseks määratud atribuuti „%1” kirjes ei leidu. Invalid placeholder: %1 @@ -684,13 +752,9 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Prooviti saata vigast klahvisümbolit. - Sequence aborted: Caps Lock is on - Jada sisestamine katkestati: Caps Lock on sisse lülitatud + Jada sisestamine katkestati: suurtähelukk on sisse lülitatud Sequence aborted: Modifier keys held by user @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Ei leitud korrektset klahvikoodi klahvile + + Trying to send invalid keyboard symbol. + Prooviti saata vigast klahvisümbolit. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 – lülitab sisse ekraaniklaviatuuri (ainult Windowsis)</p>Disable for this site Keela selle saidi jaoks + + Undo + Võta tagasi + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browseri kirje salvestamine - Ok OK @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Sul on avatud mitu andmebaasi. Vali, millisesse neist tunnused salvestada tuleks. + + KeePassXC - Select Database + Andmebaasi valimine – KeePassXC + + + + BrowserPasskeysConfirmationDialog + + Cancel + Loobu + + + Update + Uuenda + + + Authenticate + Autendi + + + Register new + Registreeri uus + + + Register + Registreeri + + + Timeout in <b>%n</b> seconds... + Oodatakse veel <b>%n</b> sekund...Oodatakse veel <b>%n</b> sekundit... + + + Relying Party: %1 + Sõltlane: %1 + + + Username: %1 + Kasutajanimi: %1 + + + KeePassXC - Passkey credentials + Pääsuvõtme tunnused – KeePassXC + + + Add to existing entry + Lisa olemasolevale kirjele + + + Existing passkey found. +Do you want to register a new passkey for: + Leiti olemasolev pääsuvõti. +Vali kirje, millele uus pääsuvõti registreerida: + + + Select the existing passkey and press Update to replace it. + Vali olemasolev pääsuvõti ja klõpsa selle asendamiseks „Uuenda”. + + + Authenticate passkey credentials for: + Pääsuvõtme tunnuste autentimine: + + + Do you want to register a passkey for: + Kirje, millele uus pääsuvõti registreerida: + BrowserService - - KeePassXC: Create a new group - Uue grupi loomine – KeePassXC - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? Kas lubad selle grupi luua? - - KeePassXC: New key association request - Uus ühendumistaotlus – KeePassXC - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access Salvesta ja luba juurdepääs - - KeePassXC: Overwrite existing key? - Kirje ülekirjutamise kinnitus – KeePassXC - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Jagatud krüptimisvõti nimega „%1” on juba olemas. Kas soovid selle üle kirjutada? - - KeePassXC: Update Entry - Kirje uuendamine – KeePassXC - Do you want to update the information in %1 - %2? Kas soovid uuendada teavet kirjes %1 – %2? - - KeePassXC: Delete entry - Kirje kustutamine – KeePassXC - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Kas lubad selle kirje kustutada? - Converting attributes to custom data… - Atribuutide teisendamine kohandatud andmeteks… + %1 (Passkey) + %1 (pääsuvõti) - Abort - Katkesta + KeePassXC - Create a new group + Uue grupi loomine – KeePassXC - KeePassXC: Converted KeePassHTTP attributes - Teisendatud KeePassHTTP atribuudid – KeePassXC + Disable + keelatud - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - %1 kirje atribuudid edukalt teisendatud. -Kohandatud andmetesse teisaldati %2 võtit. - - - Successfully moved %n keys to custom data. - %n võti edukalt kohandatud andmetesse teisaldatud.%n võtit edukalt kohandatud andmetesse teisaldatud. + KeePassXC - Overwrite existing key? + Kirje ülekirjutamise kinnitus – KeePassXC - KeePassXC: No entry with KeePassHTTP attributes found! - Ühtegi KeePassHTTP atribuutidega kirjet ei leitud – KeePassXC + KeePassXC - Update Entry + Kirje uuendamine – KeePassXC - The active database does not contain an entry with KeePassHTTP attributes. - Aktiivne andmebaas ei sisalda ühtegi kirjet, millel oleks KeePassHTTP atribuute. + KeePassXC - Delete entry + Kirje kustutamine – KeePassXC - Don't show this warning again - Seda hoiatust rohkem ei näidata + KeePassXC - New key association request + Uus ühendumistaotlus – KeePassXC - KeePassXC: Legacy browser integration settings detected - Tuvastati brauserilõimingu pärandseadistus – KeePassXC + Passkey + Pääsuvõti - 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? - Sinu KeePassXC-Browseri seadistus tuleb teisaldada andmebaasi seadistusse. -See on vajalik praeguste brauseriühenduste säilitamiseks. -Kas tahad oma olemasoleva seadistuse kohe üle kolida? + KeePassXC - Passkey credentials + Pääsuvõtme tunnused – KeePassXC + + + Register a new passkey to this entry: + Registreeri uus pääsuvõti sellesse kirjesse: + + + KeePassXC - Update passkey + Pääsuvõtme uuendamine – KeePassXC + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Kirjel „%1” on juba pääsuvõti. +Kas soovid selle uue pääsuvõtmega (%2) üle kirjutada? + + + Register + Registreeri @@ -955,10 +1076,6 @@ Kas tahad oma olemasoleva seadistuse kohe üle kolida? General Üldine - - Browsers installed as snaps are currently not supported. - <i>Snap</i>’ina paigaldatud brausereid praegu ei toetata. - Enable integration for these browsers: Lubatakse lõimimine järgmiste brauseritega: @@ -1130,26 +1247,6 @@ Kas tahad oma olemasoleva seadistuse kohe üle kolida? Custom extension ID Kohandatud laienduse-ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - <i>Snap</i>’ide isoleerituse tõttu tuleb brauserilõimingu võimaldamiseks esmalt teatud skript käivitada.<br />Vajaliku skripti saab aadressilt %1. - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Lõimingu toimimiseks peab brauserile olema paigaldatud laiendus KeePassXC-Browser. <br />See on saadaval %1i, %2’i ja %3’i jaoks. %4 - - - Please see special instructions for browser extension use below - Vaata allpool brauserilaienduse kasutamise erijuhiseid. - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Viga:</b> kohandatud puhverrakenduse asukohta ei leitud!<br/>Ilma puhverrakenduseta brauserilõiming EI TÖÖTA. - - - <b>Warning:</b> The following options can be dangerous! - <b>Hoiatus:</b> nende seadete muutmine võib olla ohtlik! - Executable Files Rakendusfailid @@ -1166,6 +1263,46 @@ Kas tahad oma olemasoleva seadistuse kohe üle kolida? Select native messaging host folder location Programmiomase teatevahetuse hosti kausta valimine + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Märkimisel lubatakse keepassxc-proxy’l loetleda kirjeid koos pealkirja, URL-i ja ühendatud andmebaasides oleva UUID-ga. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Lubatakse piiratud juurdepääs kõigile kirjetele ühendatud andmebaasides (eirates saitide juurdepääsupiiranguid) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Hoiatus:</b> neid seadeid ei tohiks muuta ilma otsese vajaduseta. + + + The custom proxy location does not exist. + Kohandatud puhverrakenduse asukohta pole olemas. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Viga:</b> kohandatud puhverrakenduse asukohta pole olemas. Vali lisaseadete kaardil õige asukoht. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Viga:</b> paigaldatud puhverrakendust ei leitud ootuspärasest asukohast: %1<br/>Palun määra lisaseadete all kohandatud puhverrakenduse asukoht või paigalda puhverrakendus uuesti. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Märkimisel lubatakse pääsuvõtmete testimiseks kasutada ebaturvalist aadressi http://localhost. + + + Allow using localhost with passkeys + Lubatakse localhosti kasutamine pääsuvõtmetega + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Lõimingu toimimiseks peab brauserile olema paigaldatud laiendus KeePassXC-Browser. <br />See on saadaval %1i, %2’i ja %3’i jaoks. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Kui paigaldatud veebibrauser on pakendatud Snapina või Flatpakina, siis KeepassXC tugi puudub, välja arvatud Snapina paigaldatud Firefoxi puhul. + CloneDialog @@ -1188,14 +1325,6 @@ Kas tahad oma olemasoleva seadistuse kohe üle kolida? CsvImportWidget - - Import CSV fields - CSV väljade importimine - - - filename - failinimi - size, rows, columns maht, ridade arv, veergude arv @@ -1304,50 +1433,43 @@ Kas tahad oma olemasoleva seadistuse kohe üle kolida? Column %1 %1. veerg - - Imported from CSV file - Imporditud CSV-failist - - - Original data: - Algsed andmed: - - - Error(s) detected in CSV file! - CSV-failis leiti vigu: - [%n more message(s) skipped] [ja veel %n teade, mis jäeti vahele][ja veel %n teadet, mis jäeti vahele] - Error - Viga + Failed to parse CSV file: %1 + CSV-faili parsimine ebaõnnestus: %1 - CSV import: writer has errors: -%1 - CSV importimine: kirjutamisel ilmnes vigu: -%1 + Imported from CSV file: %1 + Imporditud CSV-failist: %1 + + + No Title Selected + Pealkirja pole valitud + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Pealkirjaveergu ei määratud, seega saab olema raske kirjeid eristada. +Kas oled kindel, et soovid importida? + + + Tags + Sildid CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bait%n baiti - %n row(s) + CSV row count %n rida%n rida %n column(s) + CSV column count %n veerg%n veergu @@ -1400,6 +1522,14 @@ Varuandmebaasi asukoht: %2 Recycle Bin Prügikast + + Database file read error. + Viga andmebaasifaili lugemisel. + + + No file path was provided. + Faili askukohta ei antud. + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Varuandmebaasi asukoht: %2 Password field Parooli väli - - Enter Additional Credentials (if any): - Lisatunnused (kui vaja): - - - Key File: - Võtmefail: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Lisaks paroolile saab andmebaasi turvalisuse suurendamiseks kasutada võtmefaili. Selle saab genereerida andmebaasi turvaseadetes.</p><p>See <strong>ei ole</strong> sinu *.kdbx andmebaasifail!<br>Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks.</p><p>Lisateabe saamiseks klõpsa.</p> - - - Key file help - Abi võtmefailide kohta - Hardware key slot selection Riistvaralise võtme pesa valimine - - Hardware Key: - Riistvaraline võti: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Kasutada saab riistvaralist võtit nagu <strong>YubiKey</strong> või <strong>OnlyKey</strong>, millel on HMAC-SHA1 jaoks seadistatud pesa.</p> -<p>Lisateabe saamiseks klõpsa.</p> - - - Hardware key help - Riistvaralise võtme abi - Key file to unlock the database Võtmefail andmebaasi luku avamiseks @@ -1468,14 +1568,6 @@ Varuandmebaasi asukoht: %2 Browse… Sirvi… - - Refresh hardware tokens - Värskenda riistvaraliste võtmete loendit - - - Refresh - Värskenda - Unlock Database Ava andmebaasi lukk @@ -1538,14 +1630,6 @@ Selle veateate ilmumise vältimiseks peaksid avama andmebaasi seadetes turvalisu Retry with empty password Proovi uuesti tühja parooliga - - Failed to authenticate with Windows Hello - Windows Helloga autentimine ebaõnnestus - - - Failed to authenticate with Touch ID - Touch ID-ga autentimine ebaõnnestus - Failed to open key file: %1 Võtmefaili avamine ebaõnnestus: %1 @@ -1579,22 +1663,68 @@ Selle veateate ilmumise vältimiseks peaksid avama andmebaasi seadetes turvalisu Andmebaasifail ei sobi võtmefailiks - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Andmebaasifaili ennast ei saa võtmefailina kasutada. -Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks. + authenticate to access the database + andmebaasi avamiseks on tarvis autentida - Detecting hardware keys… - riistvaraliste võtmete tuvastamine… + Failed to authenticate with Quick Unlock: %1 + Kiiresti luku avamise teenusega autentimine ebaõnnestus: %1 - No hardware keys detected - riistvaralisi võtmeid ei tuvastatud + Select Key File: + Võtmefaili valimine: - Select hardware key… - vali riistvaraline võti… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Lisaks paroolile saab andmebaasi turvalisuse suurendamiseks kasutada võtmefaili. Selle saab genereerida andmebaasi turvaseadetes.</p><p>See <strong>ei ole</strong> sinu *.kdbx andmebaasifail!</p> + + + Use hardware key [Serial: %1] + Riistvaralise võtme kasutamine (seerianumber: %1) + + + Use hardware key + Riistvaralise võtme kasutamine + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Andmebaasifail ise EI OLE võtmefail! +Kui andmebaasi avamiseks pole võtmefaili vaja, ära vali seda. + + + KeePassXC database file selected + Valitud on KeePassXC andmebaasifail + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Valitud fail näeb välja nagu andmebaasifail. +Andmebaasifail EI OLE võtmefail! + +Kas oled kindel, et soovid selle failiga jätkata? + + + No hardware keys found. + Riistvaralisi võtmeid ei leitud. + + + Refresh Hardware Keys + Värskenda riistvaraliste võtmete loendit + + + Click to add a key file. + Klõpsa võtmefaili lisamiseks. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Mul on võtmefail</a> + + + Hardware keys found, but no slots are configured. + Leiti riistvaraline võti, kuid ühtki pesa pole seadistatud. @@ -1606,10 +1736,6 @@ Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks. DatabaseSettingsDialog - - Advanced Settings - Täpsemad seaded - General Üldine @@ -1634,6 +1760,22 @@ Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks.Maintenance Hooldus + + KeeShare + KeeShare + + + Secret Service Integration + Saladuste teenuse lõiming + + + Remote Sync + Sünkimine + + + Database Settings: %1 + Andmebaasi seaded: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks.KeePassXC-Browser settings KeePassXC-Browseri seaded - - Convert KeePassHTTP data - Teisenda KeePassHTTP andmed - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Teisenda KeePassHTTP pärandatribuudid KeePassXC-Browseriga ühilduvateks kohandatud andmeteks - - - Refresh database root group ID - Värskenda andmebaasi juurgrupi ID-d - Disconnect all browsers Kõigi brauseritega ühenduse katkestamise kinnitus @@ -1661,6 +1791,10 @@ Kui andmebaasi avamiseks pole võtmefaili vaja, jäta see väli tühjaks.Forget all site-specific settings on entries Kirjete kõigi saidiomaste seadete kustutamine + + Refresh database root group ID + Värskenda andmebaasi juurgrupi ID-d + Stored keys Salvestatud võtmed @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. Kas oled kindel, et soovid katkestada ühenduse kõigi brauseritega? See võib tõkestada ühendumise brauseripluginaga. - - KeePassXC: No keys found - Võtmeid ei leitud – KeePassXC - No shared encryption keys found in KeePassXC settings. KeePassXC seadetest ei leitud ühtki jagatud krüptimisvõtit. - - KeePassXC: Removed keys from database - Võtmed andmebaasist eemaldatud – KeePassXC - Successfully removed %n encryption key(s) from KeePassXC settings. %n krüptimisvõti edukalt KeePassXC seadetest eemaldatud.%n krüptimisvõtit edukalt KeePassXC seadetest eemaldatud. @@ -1739,32 +1865,14 @@ See tühistab ka juurdepääsuload kirjetele. Abort Katkesta - - KeePassXC: Removed permissions - Juurdepääsuload eemaldatud – KeePassXC - Successfully removed permissions from %n entry(s). %n kirje juurdepääsuload edukalt eemaldatud.%n kirje juurdepääsuload edukalt eemaldatud. - - KeePassXC: No entry with permissions found! - Juurdepääsulubadega kirjeid ei leitud – KeePassXC - The active database does not contain an entry with permissions. Aktiivne andmebaas ei sisalda ühtki juurdepääsulubadega kirjet. - - Move KeePassHTTP attributes to custom data - KeePassHTTP atribuutide kohandatud andmetesse teisaldamine - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Kas oled kindel, et tahad kõik brauserilõimingu pärandandmed uusimale standardile üle viia? -Need võivad olla vajalikud brauseripluginaga ühilduvuse säilitamiseks. - Refresh database ID Andmebaasi ID värskendamine @@ -1775,6 +1883,26 @@ This is only necessary if your database is a copy of another and the browser ext Kas oled kindel, et tahad andmebaasi ID-d värskendada? See on vajalik vaid juhul, kui sinu andmebaas on teise andmebaasi koopia ning brauserilaiendus ei saa sellega ühendust. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Teisenda KeePassHTTP pärandatribuudid KeePassXC-Browseriga ühilduvateks kohandatud andmeteks + + + No keys found + Võtmeid ei leitud + + + Removed keys from database + Võtmed andmebaasist eemaldatud + + + Removed permissions + Juurdepääsuload eemaldatud + + + No entry with permissions found! + Juurdepääsulubadega kirjeid ei leitud + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Kas oled kindel, et soovid jätkata ilma paroolita? Failed to change database credentials Andmebaasi tunnuste vahetamine ebaõnnestus. + + Weak password + Nõrk parool + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + See on liiga nõrk parool! Oma saladuste paremaks kaitsmiseks peaksid valima tugevama parooli. + + + The provided password does not meet the minimum quality requirement. + Sisestatud parool ei vasta kvaliteedinõuetele. + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Kas oled kindel, et soovid jätkata ilma paroolita? Decryption Time: Lahtikrüptimise aeg: - - Change existing decryption time - Muuda juba määratud lahtikrüptimise aega - - - Change - Muuda - Decryption time in seconds Lahtikrüptimise aeg sekundites @@ -1909,11 +2041,6 @@ Kas oled kindel, et soovid jätkata ilma paroolita? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - muutmata - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ Kui jätad selle suuremaks muutmata, on andmebaas jõhkra jõuga rünnete ees ka Threads for parallel execution (KDF settings) lõim lõime + + Encryption Settings: + Krüptimisseaded: + + + Basic + Põhiline + + + Advanced + Lisaseaded + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ Kui jätad selle suuremaks muutmata, on andmebaas jõhkra jõuga rünnete ees ka Maximum number of history items per entry Ajalooelementide maksimaalne arv kirje kohta - - Max. history items: - Ajalooelementide maksimumarv kirje kohta: - Maximum size of history per entry Ajaloo maksimaalne maht kirje kohta - - Max. history size: - Ajaloo maksimummaht kirje kohta: - MiB MiB @@ -2066,6 +2197,108 @@ Seda toimingut ei saa tagasi võtta. (old) (vana) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Selle valiku salvestamisel või kirjete muutmisel +eemaldatakse kirjete vanimaid ajalooelemente, +nii et allesjäävate elementide arv ei oleks suurem +kui siin määratud. + + + Limit the amount of history items per entry to: + Ajalooelementide suurim lubatud arv kirje kohta: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Selle valiku salvestamisel või kirjete muutmisel +eemaldatakse kirjete vanimaid ajalooelemente, +nii et allesjäävate elementide kogumaht ei oleks +suurem kui siin määratud. + + + Limit the total size of history items per entry to: + Ajaloo suurim lubatud maht kirje kohta: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Kirje kustutamisel ei eemaldata seda andmebaasist, +vaid teisaldatakse see prügikastigruppi. +Alles prügikastist kustutamise korral +eemaldatakse kirje andmebaasist. + + + Autosave delay since last change + Märkimisel viivitatakse muudatuste järel automaatsalvestusega. + + + Autosave delay + Automaatsalvestusega viivitatakse + + + Autosave delay since last change in minutes + Määrab automaatsalvestuse viivituse minutites. + + + min + min + + + Autosave delay since last change checkbox + Automaatsalvestusega viivitamise märkeruut + + + Public Database Metadata + Andmebaasi avalikud metaandmed + + + Warning: the following settings are not encrypted. + <b>Hoiatus:</b> need seaded pole krüptitud. + + + Display name: + Kuvatav nimi: + + + Publically visible display name used on the unlock dialog + Luku avamise dialoogis näidatav nimi + + + Database public display name + Andmebaasi avalikult kuvatav nimi + + + Display color: + Kuvatav värv: + + + Publically visible color used on the unlock dialog + Luku avamise dialoogis näidatav värv + + + Database public display color chooser + Andmebaasi avalikult kuvatava värvi valimine + + + Clear + Puhasta + + + Display icon: + Kuvatav ikoon: + + + Select Database Icon + Andmebaasi ikooni valimine + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,141 @@ Seda toimingut ei saa tagasi võtta. Andmebaasi kirjelduse väli + + DatabaseSettingsWidgetRemote + + Sync Commands + Sünkimiskäsud + + + Remove + Eemalda + + + Command Settings + Käsuseaded + + + Name + Nimi + + + Save + Salvesta + + + Download + Allalaadimine + + + Command: + Käsk: + + + Download command field + Allalaadimiskäsu väli + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + nt „sftp kasutaja@masinanimi” või „scp kasutaja@masinanimi:Andmebaas_kaugarvutis.kdbx {TEMP_DATABASE}” + + + Input: + Sisend: + + + Download input field + Allalaadimise sisendiväli + + + Upload + Üleslaadimine + + + Upload command field + Üleslaadimiskäsu väli + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + nt „sftp kasutaja@masinanimi” või „scp {TEMP_DATABASE} kasutaja@masinanimi:Andmebaas_kaugarvutis.kdbx” + + + Upload input field + Üleslaadimise sisendiväli + + + Name cannot be empty. + Nimi ei saa olla tühi. + + + Test + Testi + + + Download command cannot be empty. + Allalaadimiskäsk ei saa olla tühi. + + + Download failed with error: %1 + Allalaadimine ebaõnnestus, veateade: %1 + + + Download finished, but file %1 could not be found. + Allalaadimine lõpetati, aga faili „%1” ei leitud. + + + Download successful. + Allalaadimine valmis. + + + Save Remote Settings + Salvesta sünkimisseadistus + + + You have unsaved changes. Do you want to save them? + Sul on salvestamata muudatusi. Kas tahad need salvestada? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + nt: +get Andmebaas_kaugarvutis.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} on kohahoidja, mis tähistab ajutisse asukohta salvestatud andmebaasi. +Käsk peab oma töö lõpetama, nt „sftp” puhul peab viimane saadetav käsk olema „exit”. + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + nt: +put {TEMP_DATABASE} Andmebaas_kaugarvutis.kdbx +exit +--- +{TEMP_DATABASE} on kohahoidja, mis tähistab ajutisse asukohta salvestatud andmebaasi. +Käsk peab oma töö lõpetama, nt „sftp” puhul peab viimane saadetav käsk olema „exit”. + + + + Timeout: + Ajalimiit: + + + seconds + sekundit + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ See on kahtlemata programmiviga – palun anna sellest arendajatele teada!CSV file CSV-fail - - Select CSV file - CSV-faili valimine - Merge database Andmebaasi mestimine - - KeePass 1 database - KeePass 1 andmebaas - - - Open KeePass 1 database - KeePass 1 andmebaasi avamine - - - Open OPVault - OPVaulti avamine - Export database to CSV file Andmebaasi eksportimine CSV-failiks @@ -2225,6 +2577,18 @@ See on kahtlemata programmiviga – palun anna sellest arendajatele teada!Writing the HTML file failed. HTML-faili kirjutamine ebaõnnestus. + + Export database to XML file + Andmebaasi eksportimine XML-failiks + + + XML file + XML-fail + + + Writing the XML file failed + XML-faili kirjutamine ebaõnnestus. + Export Confirmation Eksportimise kinnitus @@ -2233,26 +2597,22 @@ See on kahtlemata programmiviga – palun anna sellest arendajatele teada!You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Asusid andmebaasi eksportima krüptimata failivormingusse. See jätab su paroolid jm tundliku teabe kaitseta! Kas oled kindel, et soovid jätkata? - - New Database - Uus andmebaas - - - %1 [New Database] - Database tab name modifier - %1 [uus andmebaas] - %1 [Locked] Database tab name modifier %1 [lukus] + + %1 [Temporary] + Database tab name modifier + %1 [ajutine] + DatabaseWidget - Database Tags - Andmebaasi sildid + Searches and Tags + Otsingud ja sildid Searching… @@ -2302,6 +2662,10 @@ See on kahtlemata programmiviga – palun anna sellest arendajatele teada!Expired entries Aegunud kirjed + + Entries expiring within %1 day(s) + %1 päeva jooksul aeguvad kirjed%1 päeva jooksul aeguvad kirjed + No current database. Aktiivne andmebaas puudub. @@ -2326,6 +2690,18 @@ See on kahtlemata programmiviga – palun anna sellest arendajatele teada!No Results Tulemusi pole + + Save + Salvesta + + + Enter a unique name or overwrite an existing search from the list: + Sisesta ainukordne nimi või vali loendist ülekirjutatav otsing: + + + Save Search + Otsingu salvestamine + Lock Database? Andmebaasi lukustamise kinnitus @@ -2354,26 +2730,6 @@ Kas salvestada muudatused? File has changed Faili on muudetud - - The database file has changed. Do you want to load the changes? - Andmebaasifaili on muudetud. Kas tahad selle uuesti avada? - - - Merge Request - Mestimistaotlus - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Andmebaasifaili on muudetud, aga sinul on salvestamata muudatusi. -Kas tahad oma muudatused mestida? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Automaatse taaslaadimise käigus polnud uut andmebaasifaili võimalik avada. -Veateade: %1 - Disable safe saves? Turvalise salvestamise keelamine @@ -2416,9 +2772,94 @@ Kas keelata turvaline salvestamine ja proovida seejärel uuesti? Could not find database file: %1 Andmebaasifaili ei leitud: %1 - - Entries expiring within %1 day(s) - %1 päeva jooksul aeguvad kirjed%1 päeva jooksul aeguvad kirjed + + New Database + Uus andmebaas + + + %1 [New Database] + Database tab name modifier + %1 [uus andmebaas] + + + Remote Sync did not contain any download or upload commands. + Sünkimisseadistus ei sisalda alla- ega üleslaadimiskäske. + + + Remote sync '%1' completed successfully! + Sünkimine „%1” kenasti lõpetatud! + + + Remote sync '%1' failed: %2 + Sünkimine „%1” ebaõnnestus: %2 + + + Error while saving database %1: %2 + Andmebaasi „%1” salvestamisel tekkis tõrge: %2 + + + Downloading... + Allalaadimine... + + + Uploading... + Üleslaadimine... + + + Syncing... + Sünkimine... + + + Remove passkey from entry + Kirjelt pääsuvõtme eemaldamine + + + Do you want to remove the passkey from this entry? + Kas soovid sellelt kirjelt pääsuvõtme eemaldada? + + + The database file "%1" was modified externally + Andmebaasifaili „%1” on väljastpoolt muudetud + + + Do you want to load the changes? + Kas tahad muudatused laadida? + + + Reload database + Laadi andmebaas uuesti + + + Reloading database… + Andmebaasi uuestilaadimine… + + + Reload canceled + Uuestilaadimine tühistati + + + Reload successful + Uuestilaadimine valmis + + + Reload pending user action… + Uuestilaadimine ootab kasutaja tegevust… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Andmebaasifaili „%1” on väljastpoolt muudetud.<br>Kuidas soovid jätkata?<br><br>Mesti kõik muudatused<br>Eira muudatusi kuni salvestamiseni<br>Loobu salvestamata muudatustest + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Andmebaasifaili „%1” on väljastpoolt muudetud.<br>Kuidas soovid jätkata?<br><br>Mesti kõik muudatused ja seejärel salvesta andmebaas<br>Kirjuta muudetud fail üle<br>Loobu salvestamata muudatustest + + + Database file overwritten. + Andmebaasifail ülekirjutatud. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Praegu kehtivate tunnustega ei õnnestunud andmebaasifaili lukku avada.<br>Jätkamiseks sisesta uued tunnused ja/või ühenda riistvaraline võti. @@ -2471,10 +2912,6 @@ Kas keelata turvaline salvestamine ja proovida seejärel uuesti? n/a - - (encrypted) - (krüptitud) - Select private key Privaatvõtme valimine @@ -2561,6 +2998,10 @@ Kas soovid vea parandada? Hide Peida + + %n hour(s) + %n tunni pärast%n tunni pärast + %n week(s) %n nädala pärast%n nädala pärast @@ -2573,9 +3014,9 @@ Kas soovid vea parandada? %n year(s) %n aasta pärast%n aasta pärast - - %n hour(s) - %n tunni pärast%n tunni pärast + + Failed to decrypt SSH key, ensure password is correct. + SSH-võtme lahtikrüptimine ebaõnnestus. Vaata, et parool oleks õige. @@ -2697,10 +3138,20 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Add new window association Lisa uus aknaseos + + + + Add item + Lisa + Remove selected window association Eemalda valitud aknaseos + + - + Remove item + Eemalda + Window title: Akna tiitel: @@ -2725,23 +3176,9 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Custom Auto-Type sequence for this window Omamääratud automaatsisestuse jada selle akna jaoks - - + - Add item - Lisa - - - - - Remove item - Eemalda - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Need seaded mõjutavad kirje käitumist brauserilaiendusega. - General Üldine @@ -2754,26 +3191,14 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Skip Auto-Submit for this entry Automaatsisestus jäetakse selle kirje puhul vahele - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Märkimisel saadetakse see kirje brauserile ainult HTTP autentimisdialoogide puhul ning tavaliste sisselogimisvormide korral seda kirjet valida ei saa. - Use this entry only with HTTP Basic Auth Seda kirjet kasutatakse vaid HTTP lihtautentimisel - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Märkimisel seda kirjet HTTP autentimisdialoogide puhul brauserile ei saadeta ning HTTP autentimisdialoogides seda kirjet valida ei saa. - Do not use this entry with HTTP Basic Auth Seda kirjet HTTP lihtautentimisel ei kasutata - - Additional URL's - Lisa-URL-id - Add Lisa @@ -2786,6 +3211,22 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Edit Muuda + + These settings affect the entry's behaviour with the browser extension. + Need seaded mõjutavad kirje käitumist brauserilaiendusega. + + + Additional URLs + Lisa-URL-id + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Märkimisel saadetakse see kirje brauserile ainult HTTP autentimisdialoogide puhul ning tavaliste sisselogimisvormide korral seda kirjet valida ei saa. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Märkimisel seda kirjet HTTP autentimisdialoogide puhul brauserile ei saadeta ning HTTP autentimisdialoogides seda kirjet valida ei saa. + EditEntryWidgetHistory @@ -2836,22 +3277,10 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Notes field Märkmete väli - - Toggle the checkbox to reveal the notes section. - Märkmete nägemiseks või muutmiseks märgi kõrvalolev ruut. - Username field Kasutajanime väli - - Toggle notes visible - Lülita märkmete nähtavust - - - Notes: - Märkmed: - Expiration field Aegumise väli @@ -2868,14 +3297,6 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Presets Valmisseaded - - Password: - Parool: - - - URL: - URL: - Url field URL-i väli @@ -2884,18 +3305,10 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Download favicon for URL Laadi alla saidiikoon selle URL-i jaoks - - Title: - Pealkiri: - Title field Pealkirja väli - - Username: - Kasutajanimi: - Password field Parooli väli @@ -2904,18 +3317,42 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Toggle expiration Lülita aegumist - - Expires: - Aegub: - - - Tags: - Sildid: - Tags list Siltide loend + + &Username: + &Kasutajanimi: + + + &Title: + P&ealkiri: + + + &Password: + &Parool: + + + UR&L: + UR&L: + + + &Notes: + &Märkmed: + + + Toggle notes visibility + Lülita märkmete nähtavust + + + T&ags: + &Sildid: + + + &Expires: + &Aegub: + EditEntryWidgetSSHAgent @@ -2955,19 +3392,6 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Private key Privaatvõti - - External file - Väline fail: - - - Browser for key file - Vali võtmefail - - - Browse… - Button for opening file dialog - Sirvi… - Attachment Kaasatud fail: @@ -2984,6 +3408,23 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Remove from agent Eemalda agendilt + + External file + Väline fail: + + + Browser for key file + Vali võtmefail + + + Browse… + Button for opening file dialog + Sirvi… + + + Generate + Genereeri + Select attachment file Kaasatud faili valimine @@ -3008,6 +3449,10 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku seconds sekundit + + Clear agent + Tühjenda agent + EditGroupWidget @@ -3019,10 +3464,6 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Icon Ikoon - - Browser Integration - Brauserilõiming - Properties Omadused @@ -3039,6 +3480,10 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Group has unsaved changes Kas salvestada grupile tehtud muudatused? + + Browser Integration + Brauserilõiming + Enable lubatud @@ -3054,10 +3499,6 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku EditGroupWidgetBrowser - - Edit Group - Grupi muutmine - These settings affect to the group's behaviour with the browser extension. Need seaded mõjutavad grupi käitumist brauserilaiendusega. @@ -3094,6 +3535,22 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Do not use HTTP Auth toggle for this and sub groups Lülitab HTTP lihtautentimise keelamist selle grupi ja alamgruppide jaoks. + + Omit WWW subdomain from matching: + Vastendamisel eiratakse www-alamdomeeni: + + + Omit WWW subdomain from matching toggle for this and sub groups + Lülitab vastendamisel www-alamdomeeni eiramist selle grupi ja alamgruppide jaoks. + + + Restrict matching to given browser key: + Vastendamine lubatakse vaid ühe brauserivõtmega: + + + Restrict matching to given browser key toggle for this and sub groups + Lülitab vastendamise lubamist vaid ühe brauserivõtmega selle grupi ja alamgruppide jaoks. + EditGroupWidgetKeeShare @@ -3151,7 +3608,7 @@ isegi kui see ei vasta kvaliteedinõuetele. Märgi see ruut, kui parooli keeruku Synchronize - sünkroonimine + sünkimine Your KeePassXC version does not support sharing this container type. @@ -3241,7 +3698,7 @@ Toetatud faililaiendid: %1 Auto-Type toggle for this and sub groups - Automaatsisestusfunktsiooni lülitamine selle grupi ja alamgruppide jaoks + Lülitab automaatsisestusfunktsiooni selle grupi ja alamgruppide jaoks. Notes: @@ -3265,7 +3722,7 @@ Toetatud faililaiendid: %1 Search toggle for this and sub groups - Otsingufunktsiooni lülitamine selle grupi ja alamgruppide jaoks + Lülitab otsingufunktsiooni selle grupi ja alamgruppide jaoks. @@ -3326,10 +3783,6 @@ Toetatud faililaiendid: %1 Unable to fetch favicon. Saidiikooni allalaadimine polnud võimalik. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Võid sisse lülitada DuckDuckGo veebisaidiikoonide teenuse, valides menüüst Tööriistad > Seaded > Turvalisus. - Existing icon selected. Valiti olemasolev ikoon. @@ -3362,6 +3815,10 @@ Toetatud faililaiendid: %1 The following icon(s) failed: Järgmise ikooni laadimine ebaõnnestus:Järgmiste ikoonide laadimine ebaõnnestus: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + KeePassXC seadete turvalisuse jaotises võid sisse lülitada DuckDuckGo veebisaidiikoonide teenuse. + EditWidgetProperties @@ -3438,6 +3895,24 @@ See võib põhjustada asjaomaste pluginate töös tõrkeid. %1 - Clone %1 – koopia + + Passkey + Pääsuvõti + + + Invalid conversion type: %1 + Vigane teisendustüüp: %1 + + + Invalid conversion syntax: %1 + Vigane teisendussüntaks: %1 + + + Invalid regular expression syntax %1 +%2 + Vigane regulaaravaldise süntaks %1 +%2 + EntryAttachments @@ -3446,6 +3921,21 @@ See võib põhjustada asjaomaste pluginate töös tõrkeid. Faili „%1” avamine pole võimalik + + EntryAttachmentsDialog + + Form + Vorm + + + File name + Faili nimi + + + File contents... + Faili sisu… + + EntryAttachmentsModel @@ -3483,14 +3973,6 @@ See võib põhjustada asjaomaste pluginate töös tõrkeid. Remove Eemalda - - Rename selected attachment - Muuda valitud kaasatud faili nime - - - Rename - Muuda nime - Open selected attachment Ava valitud kaasatud fail @@ -3566,12 +4048,6 @@ See võib põhjustada asjaomaste pluginate töös tõrkeid. Confirm Overwrite Attachment Kaasatud faili ülekirjutamise kinnitus - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Kaasatud fail nimega „%1” on juba olemas. -Kas soovid selle faili uuega üle kirjutada? - Confirm Attachment Faili kaasamise kinnitus @@ -3606,6 +4082,24 @@ Error: %1 Kaasatud faili uuendamine ebaõnnestus. Viga: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Kaasatud fail nimega „%1” on juba olemas. +Kas soovid selle faili uuega üle kirjutada? + + + New + Uus + + + Preview + Eelvaade + + + Failed to preview an attachment: Attachment not found + Kaasatud faili eelvaate loomine ebaõnnestus: kaasatud faili ei leitud + EntryAttributesModel @@ -3690,7 +4184,7 @@ Viga: %1 Tags - Sildid: + Sildid @@ -3800,6 +4294,14 @@ Viga: %1 Has TOTP TOTP olemasolu + + Background Color + Taustavärv + + + Group Path + Grupi asukoht + EntryPreviewWidget @@ -3820,8 +4322,8 @@ Viga: %1 Parool: - Notes - Märkmed: + URL + URL: Expiration @@ -3840,8 +4342,8 @@ Viga: %1 Kasutajanimi: - URL - URL: + Notes + Märkmed: Advanced @@ -3891,6 +4393,10 @@ Viga: %1 Never mitte kunagi + + Double click to copy value + Väärtuse kopeerimiseks tee topeltklõps + Enabled lubatud @@ -3899,6 +4405,10 @@ Viga: %1 Disabled keelatud + + Double click to copy to clipboard + Lõikepuhvrisse kopeerimiseks tee topeltklõps + EntryURLModel @@ -3906,6 +4416,10 @@ Viga: %1 Invalid URL Sobimatu URL + + Duplicate URL + Duplitseeritud URL + EntryView @@ -3921,6 +4435,10 @@ Viga: %1 Reset to defaults Taasta vaikeväärtused + + + %1 entry(s)... + + %1 kirje...+ %1 kirjet... + ExportDialog @@ -3954,7 +4472,7 @@ See jätab su paroolid jm tundliku teabe kaitseta! unknown - teadmata + teadmata alusel Export database to HTML file @@ -4141,6 +4659,199 @@ You can enable the DuckDuckGo website icon service in the security section of th Saidiikoonide allalaadimine (%1/%2)… + + ImportWizard + + Import Wizard + Impordinõustaja + + + + ImportWizardPageReview + + WizardPage + Nõustaja + + + Entry count: %1 + Kirjete arv: %1 + + + Group + Grupp + + + Title + Pealkiri + + + Username + Kasutajanimi + + + Password + Parool + + + Url + URL + + + Could not load key file. + Võtmefaili ei õnnestunud laadida. + + + Could not open remote database. Password or key file may be incorrect. + Võrguandmebaasi ei õnnestunud avada. Küllap oli parool või võtmefail vale. + + + + ImportWizardPageSelect + + Form + Vorm + + + Import File Selection + Imporditava faili valimine + + + Password: + Parool: + + + Key File: + Võtmefail: + + + Browse… + Sirvi… + + + Import Into: + Imporditakse: + + + New Database + Uude andmebaasi + + + No unlocked databases available + Ühtegi avatud lukuga andmebaasi pole saadaval. + + + Existing Database: + Olemasolevasse andmebaasi: + + + Import File: + Imporditav fail: + + + Comma Separated Values (.csv) + Komaga eraldatud väärtused (.csv) + + + 1Password Export (.1pux) + 1Passwordi eksport (.1pux) + + + 1Password Vault (.opvault) + 1Passwordi turvalaegas (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 andmebaas (.kdb) + + + Open OPVault + OPVaulti avamine + + + Select import file + Imporditava faili valimine + + + All files + Kõik failid + + + Key files + Võtmefailid + + + Select key file + Võtmefaili valimine + + + Comma Separated Values + Komaga eraldatud väärtused + + + 1Password Export + 1Passwordi eksport + + + Bitwarden JSON Export + Bitwardeni JSON-eksport + + + 1Password Vault + 1Passwordi turvalaegas + + + KeePass1 Database + KeePass 1 andmebaas + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Passi JSON-eksport + + + Temporary Database + Ajutisse andmebaasi + + + Command: + Käsk: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + nt „sftp kasutaja@masinanimi” või „scp kasutaja@masinanimi:Andmebaas_kaugarvutis.kdbx {TEMP_DATABASE}” + + + Input: + Sisend: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + nt: +get Andmebaas_kaugarvutis.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} on kohahoidja, mis tähistab ajutisse asukohta salvestatud andmebaasi. +Käsk peab oma töö lõpetama, nt „sftp” puhul peab viimane saadetav käsk olema „exit”. + + + + Remote Database (.kdbx) + Andmebaas võrgus (.kdbx) + + KMessageWidget @@ -4575,17 +5286,6 @@ Rida %2, veerg %3 Privaatvõtme avamine ebaõnnestus. - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass 1 andmebaasi importimine - - - Unable to open the database. - Andmebaasi avamine pole võimalik. - - KeePass1Reader @@ -4764,7 +5464,7 @@ Kui probleem püsib, võib andmebaasifail olla rikutud. Synchronized with %1 - Sünkroonitud asukohaga „%1” + Süngitud asukohaga „%1” Import is disabled in settings @@ -4788,7 +5488,7 @@ Kui probleem püsib, võib andmebaasifail olla rikutud. Synchronized with - Sünkroonitud asukohaga + Süngitud asukohaga @@ -4942,10 +5642,6 @@ Kas oled kindel, et soovid selle failiga jätkata? &Recent Databases Viimatised andme&baasid - - &Import - &Impordi - &Export &Ekspordi @@ -4966,6 +5662,10 @@ Kas oled kindel, et soovid selle failiga jätkata? TOTP &TOTP + + Tags + Sildid + &Groups &Grupid @@ -5010,34 +5710,18 @@ Kas oled kindel, et soovid selle failiga jätkata? &New Database… &Uus andmebaas… - - Create a new database - Loo uus andmebaas - &Merge From Database… &Mesti andmebaas… - - Merge from another KDBX database - Mesti mõne teise KDBX-andmebaasiga - &New Entry… &Uus kirje… - - Add a new entry - Lisa uus kirje - &Edit Entry… &Muuda kirjet… - - View or edit entry - Vaata või muuda kirjet - &Delete Entry… Kustuta kirj&e… @@ -5046,10 +5730,6 @@ Kas oled kindel, et soovid selle failiga jätkata? &New Group… &Uus grupp… - - Add a new group - Lisa uus grupp - &Edit Group… &Muuda gruppi… @@ -5082,18 +5762,10 @@ Kas oled kindel, et soovid selle failiga jätkata? Database &Reports… Andmebaasi a&ruanded… - - Statistics, health check, etc. - Statistika, tervisekontroll jm - &Database Settings… An&dmebaasi seaded… - - Database settings - Andmebaasi seaded - &Clone Entry… K&looni kirje… @@ -5102,34 +5774,18 @@ Kas oled kindel, et soovid selle failiga jätkata? Move u&p Lii&guta ülespoole - - Move entry one step up - Liiguta kirje sammu võrra ülespoole - Move do&wn Liiguta allap&oole - - Move entry one step down - Liiguta kirje sammu võrra allapoole - Copy &Username Kopeeri &kasutajanimi - - Copy username to clipboard - Kopeeri kasutajanimi lõikepuhvrisse - Copy &Password Kopeeri &parool - - Copy password to clipboard - Kopeeri parool lõikepuhvrisse - &Settings &Seaded @@ -5163,25 +5819,13 @@ Kas oled kindel, et soovid selle failiga jätkata? &Pealkiri - Copy title to clipboard - Kopeeri pealkiri lõikepuhvrisse - - - &URL - &URL - - - Copy URL to clipboard - Kopeeri URL lõikepuhvrisse + Copy &URL + K&opeeri URL &Notes &Märkmed - - Copy notes to clipboard - Kopeeri märkmed lõikepuhvrisse - &CSV File… &CSV-failiks… @@ -5194,33 +5838,21 @@ Kas oled kindel, et soovid selle failiga jätkata? KeePass 1 Database… KeePass 1 andmebaas… - - Import a KeePass 1 database - Impordi KeePass 1 andmebaas - 1Password Vault… 1Passwordi turvalaegas… - - Import a 1Password Vault - Impordi 1Passwordi turvalaegas - CSV File… CSV-fail… - - Import a CSV file - Impordi CSV-fail - Show TOTP Kuva TOTP Show QR Code - Kuva QR-kood + Kuva ruutkood Set up TOTP… @@ -5230,6 +5862,10 @@ Kas oled kindel, et soovid selle failiga jätkata? Copy &TOTP Kopeeri &TOTP + + Copy Password and TOTP + Kopeeri parool ja TOTP + E&mpty recycle bin &Tühjenda prügikast @@ -5254,10 +5890,6 @@ Kas oled kindel, et soovid selle failiga jätkata? &Online Help Abi &võrgus - - Go to online documentation - Ava dokumentatsioon võrgus - &User Guide Käsi&raamat… @@ -5302,6 +5934,10 @@ Kas oled kindel, et soovid selle failiga jätkata? Classic (Platform-native) Klassikaline (platvormiomane) + + Show Menubar + &Menüüriba nähtaval + Show Toolbar &Tööriistariba nähtaval @@ -5326,6 +5962,10 @@ Kas oled kindel, et soovid selle failiga jätkata? Clone Group... K&looni grupp… + + &XML File… + &XML-failiks… + Clear history Puhasta ajalugu @@ -5354,10 +5994,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - HOIATUS: sinu Qt versioon võib põhjustada KeePassXC kokkujooksmist ekraaniklaviatuuri kasutamisel. -Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist. + No Tags + Silte pole Restore Entry(s) @@ -5387,6 +6025,10 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Quit KeePassXC Välju KeePassXC-st + + %1 Entry(s) + %1 kirje%1 kirjet + Please present or touch your YubiKey to continue… Jätkamiseks viipa või puuduta oma YubiKey’d… @@ -5399,6 +6041,314 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.You must restart the application to apply this setting. Would you like to restart now? Selle muudatuse rakendamiseks tuleb KeePassXC uuesti käivitada. Kas teha seda kohe? + + Allow Screen Capture + Akna pildistamise lubamine + + + 1Password 1PUX... + 1Passwordi 1PUX... + + + Import a 1Password 1PUX file + Impordi 1Passwordi 1PUX-fail + + + Import… + Impordi… + + + Passkeys… + Pääsuvõtmed... + + + Import Passkey + Impordi pääsuvõti + + + Remote S&ync… + Sünkimine... + + + Quit Application + Välju rakendusest + + + Open About Dialog + Ava rakenduse teabedialoog + + + Open Database + Ava andmebaas + + + Create Database + Loo andmebaas + + + Merge From Database + Mesti andmebaas + + + Create Entry + Loo kirje + + + Edit Entry + Muuda kirjet + + + Delete Entry + Kustuta kirje + + + Create Group + Loo grupp + + + Edit Group + Muuda gruppi + + + Delete Group + Kustuta grupp + + + Download All Favicons + Laadi alla kõigi saitide ikoonid + + + Sort Groups A-Z + Sordi grupid A-st Y-ni + + + Sort Groups Z-A + Sordi grupid Y-st A-ni + + + Save Database As + Salvesta andmebaas kui + + + Show Database Security + Kuva andmebaasi turvalisus + + + Show Database Reports + Kuva andmebaasi aruanded + + + Show Database Settings + Kuva andmebaasi seaded + + + Show Passkeys + Kuva pääsuvõtmed + + + Clone Entry + Klooni kirje + + + Move Entry Up + Liiguta kirje ülespoole + + + Move Entry Down + Liiguta kirje allapoole + + + Copy Username + Kopeeri kasutajanimi + + + Copy Password + Kopeeri parool + + + Show Application Settings + Kuva rakenduse seaded + + + Show Password Generator + Kuva parooligeneraator + + + Remove Passkey From Entry + Eemalda kirjelt pääsuvõti + + + Perform Auto-Type: {USERNAME} + Soorita automaatsisestus: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Soorita automaatsisestus: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Soorita automaatsisestus: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Soorita automaatsisestus: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Soorita automaatsisestus: {TOTP} + + + Copy Title + Kopeeri pealkiri + + + Copy URL + Kopeeri URL + + + Copy Notes + Kopeeri märkmed + + + Export to CSV + Ekspordi CSV-failiks + + + Export to HTML + Ekspordi HTML-failiks + + + Import KeePass1 Database + Impordi KeePass 1 andmebaas + + + Import 1Password Vault + Impordi 1Passwordi turvalaegas + + + Import CSV File + Impordi CSV-fail + + + Show TOTP QR Code + Kuva TOTP ruutkood + + + Set up TOTP + Seadista TOTP + + + Empty Recycle Bin + Tühjenda prügikast + + + Open Donation Website + Ava annetusveebileht + + + Open Bug Report + Teata veast + + + Open Online Documentation + Ava dokumentatsioon võrgus + + + Open Keyboard Shortcuts Guide + Ava kiirklahvide juhis + + + Save Database Backup + Salvesta andmebaasi varukoopia + + + SSH Agent: Add Key + SSH agent: lisa võti + + + SSH Agent: Remove Key + SSH agent: eemalda võti + + + Toggle Compact Mode + Lülita kompaktset režiimi + + + Set Theme: Automatic + Rakenda kujundus: automaatne + + + Set Theme: Light + Rakenda kujundus: hele + + + Set Theme: Dark + Rakenda kujundus: tume + + + Set Theme: Classic + Rakenda kujundus: klassikaline + + + Toggle Show Menubar + Lülita menüüriba nähtavust + + + Toggle Show Toolbar + Lülita tööriistariba nähtavust + + + Toggle Show Preview Panel + Lülita eelvaatluse paneeli nähtavust + + + Toggle Always on Top + Lülita alati pealmisena hoidmist + + + Toggle Hide Usernames + Lülita kasutajanimede varjamist + + + Toggle Hide Passwords + Lülita paroolide varjamist + + + Export to XML + Ekspordi XML-failiks + + + Toggle Allow Screen Capture + Lülita akna pildistamise lubamist + + + Show Group Panel + Gruppide paneel nähtaval + + + Toggle Show Group Panel + Lülita gruppide paneeli nähtavust + + + Setup Remote Sync… + Seadista sünkimine... + + + Password Generator + Parooligeneraator + + + E&xpire Entry… + Märgi kirje &aegunuks… + + + Clear SSH Agent + Tühjenda SSH agent + + + Clear all identities in ssh-agent + Eemalda SSH agendilt kõik identiteedid + ManageDatabase @@ -5456,33 +6406,13 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Overwriting %1 [%2] Kirje „%1” [%2] ülekirjutamine - - older entry merged from database "%1" - andmebaasist „%1” mestitud vanem kirje - - - Adding backup for older target %1 [%2] - Vanemale sihtmärgile „%1” [%2] varukoopia lisamine - - - Adding backup for older source %1 [%2] - Vanemale allikale „%1” [%2] varukoopia lisamine - - - Reapplying older target entry on top of newer source %1 [%2] - Uuema lähtekirje „%1” [%2] peale vanema sihtkirje taasrakendamine - - - Reapplying older source entry on top of newer target %1 [%2] - Uuema sihtkirje „%1” [%2] peale vanema lähtekirje taasrakendamine - Synchronizing from newer source %1 [%2] - Sünkroonimine uuema allikaga „%1” [%2] + Sünkimine uuema allikaga „%1” [%2] Synchronizing from older source %1 [%2] - Sünkroonimine vanema allikaga „%1” [%2] + Sünkimine vanema allikaga „%1” [%2] Deleting child %1 [%2] @@ -5535,14 +6465,6 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Siin saab määrata andmebaasi krüptimisseaded. Hiljem saab neid muuta andmebaasi seadetes. - - Advanced Settings - Täpsemad seaded - - - Simple Settings - Lihtsad seaded - NewDatabaseWizardPageDatabaseKey @@ -5577,6 +6499,25 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Sisesta oma uuele andmebaasile kuvanimi ja soovi korral kirjeldus: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Kaasatud faili nimi ei saa olla tühi. + + + Attachment with the same name already exists + Sellise nimega kaasatud fail on juba olemas. + + + Save attachment + Kaasatud faili salvestamine + + + New entry attachment + Uus kaasatud fail + + NixUtils @@ -5623,15 +6564,6 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.oodati %1 baiti lihtteksti, aga leiti %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Andmebaasi lugemine ei loonud protsessi -%1 - - OpVaultReader @@ -5705,6 +6637,10 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Unknown cipher: %1 Tundmatu šiffer: %1 + + AES-256/GCM is currently not supported + AES-256/GCM-i praegu ei toetata + Passphrase is required to decrypt this key Selle võtme lahtikrüptimiseks on vaja paroolifraasi @@ -5769,28 +6705,183 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Unexpected EOF when writing private key Ootamatu faililõpp privaatvõtme kirjutamisel + + (encrypted) + (krüptitud) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Paroolid ei kattu + SSH Key Generator + SSH-võtmegeneraator - Passwords match so far - Paroolid kattuvad + Type + Tüüp: - Toggle Password (%1) - Lülita parooli nähtavust (%1) + Bits + Bittide arv: - Generate Password (%1) - Genereeri parool (%1) + Comment + Kommentaar: + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + Pääsuvõtme eksportimine – KeePassXC - Warning: Caps Lock enabled! - Hoiatus: suurtähelukk on sisse lülitatud! + Filenames will be generated with title and .passkey file extension. + Failinimed luuakse pealkirja järgi ja faililaiendiga „.passkey”. + + + Export entries + Ekspordi valitud kirjed + + + Export Selected + Ekspordi valitud + + + Cancel + Loobu + + + Export to folder + Eksportimiskaust + + + Export the following passkey entries. + Eksportimisel on järgnevad pääsuvõtmekirjed. + + + + PasskeyExporter + + KeePassXC: Passkey Export + Pääsuvõtme eksportimine – KeePassXC + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Fail „%1.passkey” on juba olemas. +Kas soovid selle üle kirjutada? + + + Cannot open file + Faili pole võimalik avada + + + Cannot open file "%1" for writing. + Faili „%1” pole võimalik kirjutamiseks avada. + + + Cannot write to file + Faili pole võimalik kirjutada + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + Pääsuvõtme importimine – KeePassXC + + + Username: %1 + Kasutajanimi: %1 + + + Group + Grupp: + + + Database + Andmebaas: + + + Import Passkey + Impordi pääsuvõti + + + Import + Impordi + + + Cancel + Loobu + + + Entry + Kirje: + + + Create new entry + Luuakse uus kirje + + + Relying Party: %1 + Sõltlane: %1 + + + Import the following passkey: + Importimisel on järgnev pääsuvõti: + + + Import the following passkey to this entry: + Importimisel on järgnev pääsuvõti sellesse kirjesse: + + + Default passkeys group (Imported Passkeys) + Vaikimisi pääsuvõtmete grupp („Imporditud pääsuvõtmed”) + + + + PasskeyImporter + + Passkey file + Pääsuvõtmefailid + + + All files + Kõik failid + + + Cannot open file + Faili avamine pole võimalik + + + Cannot open file "%1" for reading. + Faili „%1” lugemiseks avamine pole võimalik. + + + Open passkey file + Pääsuvõtmefaili avamine + + + Cannot import passkey + Pääsuvõtme importimine pole võimalik + + + Cannot import passkey file "%1". Data is missing. + Pääsuvõtmefaili „%1” importimine pole võimalik. Andmed on puudu. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Pääsuvõtmefaili „%1” importimine pole võimalik. +Järgmised andmed on puudu: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Pääsuvõtmefaili „%1” importimine pole võimalik. Privaatvõti on puudu või vigane. @@ -5971,10 +7062,6 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Also choose from: Lisamärgid: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Määrab, kas välistada märgid nagu „0”, „O”, „1”, „l”, „I”, „|”, „﹒” - Exclude look-alike characters Sarnase välimusega märgid jäetakse välja @@ -5999,10 +7086,6 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Word Count: Sõnade arv: - - Character Count: - Märkide arv: - Word Case: Täheregister: @@ -6015,10 +7098,6 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Add custom wordlist Lisa kohandatud sõnaloend - - character - märki - Close Sulge @@ -6055,6 +7134,30 @@ Võiksid kaaluda KeePassXC allalaadimislehel oleva AppImage’i kasutamist.Entropy: %1 bit Entroopia: %1 bitti + + Password Quality: %1 + Parooli kvaliteet: %1 + + + Poor + Password quality + kehv + + + Weak + Password quality + nõrk + + + Good + Password quality + hea + + + Excellent + Password quality + suurepärane + Confirm Delete Wordlist Sõnaloendi kustutamise kinnitus @@ -6102,8 +7205,47 @@ Kas soovid selle üle kirjutada? Erimärgid - Password Quality: %1 - Parooli kvaliteet: %1 + passwordLength + parooli_pikkus + + + Characters: %1 + Märkide arv: %1 + + + MIXED case + MÕLEMAD vaheldumisi + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Määrab, kas välistada märgid nagu „0”, „O”, „1”, „l”, „I”, „|”, „﹒”, „B”, „8”, „G”, „6” + + + + PasswordWidget + + Passwords do not match + Paroolid ei kattu + + + Passwords match so far + Paroolid kattuvad + + + Toggle Password (%1) + Lülita parooli nähtavust (%1) + + + Generate Password (%1) + Genereeri parool (%1) + + + Warning: Caps Lock enabled! + Hoiatus: suurtähelukk on sisse lülitatud! + + + Quality: %1 + Kvaliteet: %1 Poor @@ -6125,6 +7267,10 @@ Kas soovid selle üle kirjutada? Password quality suurepärane + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Parooli nähtavust lülitab Control + H, parooligeneraatori avab Control + G. + PickcharsDialog @@ -6134,11 +7280,26 @@ Kas soovid selle üle kirjutada? Select characters to type, navigate with arrow keys, Ctrl + S submits. - Vali sisestatavad märgid. Liikuda saab nooleklahvidega, Ctrl+S sisestab. + Vali vajalikud märgid. Liikuda saab nooleklahvidega, Ctrl+S sisestab. Press &Tab between characters - Märkide vahele sisestatakse &Tab + Märkide vahel „vajutatakse” &tabeldusklahvi + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Kaasatud faili eelvaade + + + No preview available + Eelvaade pole saadaval + + + Image format not supported + Toetamata pildivorming @@ -6179,6 +7340,10 @@ Kas soovid selle üle kirjutada? Continue &Jätka + + Continue with weak password + Jätka nõrga parooliga + QObject @@ -6572,6 +7737,10 @@ Kas soovid selle üle kirjutada? Too many arguments provided. Anti liiga palju argumente. + + Path of the database. + Andmebaasi asukoht. + Target decryption time in MS for the database. Andmebaasi soovitav lahtikrüptimisaeg millisekundites. @@ -6592,10 +7761,6 @@ Kas soovid selle üle kirjutada? Create a new database. Uue andmebaasi loomine. - - Path of the database. - Andmebaasi asukoht. - Invalid decryption time %1. Sobimatu lahtikrüptimise aeg %1 @@ -6618,15 +7783,15 @@ Kas soovid selle üle kirjutada? Benchmarking key derivation function for %1ms delay. - + Võtmetuletusfunktsiooni võrdlustesti läbiviimine %1 ms viivitusega. Setting %1 rounds for key derivation function. - + Võtmetuletusfunktsioonile määrati %1 teisendusraundi. error while setting database key derivation settings. - + viga andmebaasi võtmetuletusseadete määramisel. File %1 already exists. @@ -6640,6 +7805,158 @@ Kas soovid selle üle kirjutada? Successfully created new database. Uus andmebaas edukalt loodud. + + Unset the password for the database. + Andmebaasi parooli eemaldamine. + + + Unset the key file for the database. + Andmebaasi võtmefaili eemaldamine. + + + Edit a database. + Andmebaasi muutmine. + + + Cannot use %1 and %2 at the same time. + Argumente "%1" ja "%2" ei saa korraga kasutada. + + + Could not change the database key. + Andmebaasi võtme muutmine pole võimalik. + + + Database was not modified. + Andmebaasi ei muudetud. + + + Writing the database failed: %1 + Andmebaasi kirjutamine ebaõnnestus: %1 + + + Successfully edited the database. + Andmebaas edukalt muudetud. + + + Cannot remove password: The database does not have a password. + Parooli pole võimalik eemaldada, kuna andmebaasile pole parooli määratud. + + + Cannot remove file key: The database does not have a file key. + Võtmefaili pole võimalik eemaldada, kuna andmebaasile pole võtmefaili määratud. + + + Loading the new key file failed: %1 + Uue võtmefaili laadimine ebaõnnestus: %1 + + + Found unexpected Key type %1 + Leiti ootamatu võtmetüüp: %1 + + + Cannot remove all the keys from a database. + Andmebaasi kõiki võtmeid pole võimalik eemaldada. + + + Show a database's information. + Andmebaasi teabe näitamine. + + + UUID: + UUID: + + + Name: + Nimi: + + + Description: + Kirjeldus: + + + Cipher: + Šiffer: + + + KDF: + KDF: + + + Recycle bin is enabled. + Prügikast on lubatud + + + Recycle bin is not enabled. + Prügikast on keelatud. + + + Location + Asukoht + + + Database created + Andmebaas loodud + + + Last saved + Viimati salvestatud + + + Unsaved changes + Salvestamata muudatusi + + + yes + on + + + no + pole + + + Number of groups + Gruppide arv + + + Number of entries + Kirjete arv + + + Number of expired entries + Aegunud kirjete arv + + + Unique passwords + Unikaalsete paroolide arv + + + Non-unique passwords + Korduvate paroolide arv + + + Maximum password reuse + Sagedasima parooli kasutuskordade arv + + + Number of short passwords + Lühikeste paroolide arv + + + Number of weak passwords + Nõrkade paroolide arv + + + Entries excluded from reports + Aruannetest väljajäetavate kirjete arv + + + Average password length + Paroolide keskmine pikkus + + + %1 characters + %1 märki + Word count for the diceware passphrase. Sõnade arv Diceware'i paroolifraasis. @@ -6663,10 +7980,6 @@ Kas soovid selle üle kirjutada? Invalid word count %1 Sobimatu sõnade arv %1 - - The word list is too small (< 1000 items) - Sõnaloend on liiga väike (< 1000 elementi) - Title for the entry. Kirje pealkiri @@ -6691,10 +8004,6 @@ Kas soovid selle üle kirjutada? Enter new password for entry: Sisesta kirje uus parool: - - Writing the database failed: %1 - Andmebaasi kirjutamine ebaõnnestus: %1 - Successfully edited entry %1. Kirje "%1" edukalt muudetud. @@ -6815,10 +8124,6 @@ Kas soovid selle üle kirjutada? Exit interactive mode. Väljumine interaktiivsest režiimist. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Eksportimisel kasutatav vorming. Valida on "xml" ja "csv". Vaikimisi "xml". - Exports the content of a database to standard output in the specified format. Andmebaasi sisu määratavas vormingus standardväljundisse eksportimine. @@ -6919,106 +8224,6 @@ Kas soovid selle üle kirjutada? Successfully imported database. Andmebaas edukalt imporditud. - - Show a database's information. - Andmebaasi teabe näitamine. - - - UUID: - UUID: - - - Name: - Nimi: - - - Description: - Kirjeldus: - - - Cipher: - Šiffer: - - - KDF: - KDF: - - - Recycle bin is enabled. - Prügikast on lubatud - - - Recycle bin is not enabled. - Prügikast on keelatud. - - - Location - Asukoht - - - Database created - Andmebaas loodud - - - Last saved - Viimati salvestatud - - - Unsaved changes - Salvestamata muudatusi - - - yes - on - - - no - pole - - - Number of groups - Gruppide arv - - - Number of entries - Kirjete arv - - - Number of expired entries - Aegunud kirjete arv - - - Unique passwords - Unikaalsete paroolide arv - - - Non-unique passwords - Korduvate paroolide arv - - - Maximum password reuse - Sagedasima parooli kasutuskordade arv - - - Number of short passwords - Lühikeste paroolide arv - - - Number of weak passwords - Nõrkade paroolide arv - - - Entries excluded from reports - Aruannetest väljajäetavate kirjete arv - - - Average password length - Paroolide keskmine pikkus - - - %1 characters - %1 märki - Unknown command %1 Tundmatu käsk %1 @@ -7191,6 +8396,10 @@ Võimalikud käsud: Show the protected attributes in clear text. Kaitstud atribuutide näitamine tavatekstina. + + Show all the attributes of the entry. + Kirje kõigi atribuutide näitamine. + Show the attachments of the entry. Kirjesse kaasatud faili näitamine. @@ -7261,6 +8470,10 @@ Palun genereeri selle asemele uus võtmefail. Invalid YubiKey serial %1 Sobimatu YubiKey seerianumber %1 + + Please present or touch your YubiKey to continue. + Jätkamiseks viipa või puuduta oma YubiKey’d. + Enter password to encrypt database (optional): Sisesta parool andmebaasi krüptimiseks (pole kohustuslik): @@ -7448,8 +8661,8 @@ Kernel: %3 %4 %1 minut%1 minutit - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan'i teek peab olema 2.11.x või uuem, leiti aga %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan'i teek peab olema %1 või uuem, leiti aga %2.%3.%4 Cryptographic libraries: @@ -7499,18 +8712,6 @@ Kernel: %3 %4 file empty fail on tühi - - malformed string - vigane string - - - missing closing quote - puuduv lõpujutumärk - - - %1: (row, col) %2,%3 - %1: (rida, veerg) %2,%3 - AES 256-bit AES: 256-bitine @@ -7689,14 +8890,6 @@ Kernel: %3 %4 read password of the database from stdin Andmebaasi parooli lugemine standardsisendist (stdin). - - allow app screen recordering and screenshots - Rakendusest ekraanipiltide ja -videote tegemise lubamine. - - - Locked databases. - Andmebaasid lukustatud. - Database failed to lock. Andmebaasi lukustamine ebaõnnestus. @@ -7705,6 +8898,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Teine KeePassXC protsess juba töötab. + + KeePassXC is not running. No open database to lock + KeePassXC ei tööta, seega pole ühtki avatud andmebaasi, mida lukustada. + Fatal error while testing the cryptographic functions. Parandamatu tõrge krüptograafiafunktsioonide testimisel. @@ -7713,10 +8910,6 @@ Kernel: %3 %4 KeePassXC - Error Viga – KeePassXC - - Warning: Failed to prevent screenshots on a top level window! - Hoiatus: ülemise taseme aknast ekraanipiltide tegemise ennetamine ebaõnnestus! - Database password: Andmebaasi parool: @@ -7740,8 +8933,312 @@ Kernel: %3 %4 Windows Hello abil pretensiooni allkirjastamine ebaõnnestus. - Please present or touch your YubiKey to continue. - + Warning: Failed to block screenshot capture on a top-level window. + Hoiatus: ülemise taseme aknast ekraanipiltide tegemise blokeerimine ebaõnnestus! + + + Invalid Cipher + Sobimatu šiffer + + + Invalid KDF + Sobimatu KDF + + + Access to all entries is denied + Juurdepääs kõigile kirjetele on keelatud + + + allow screenshots and app recording (Windows/macOS) + Rakendusest ekraanipiltide ja -videote tegemise lubamine (Windowsis/macOS-is). + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Andmebaasile võtmefaili määramine. +See argument on iganenud, kasuta parem "--set-key-file". + + + Databases have been locked. + Andmebaasid on lukustatud. + + + Attestation not supported + Atesteerimist ei toetata + + + Credential is excluded + Tunnus on välistatud + + + Passkeys request canceled + Pääsuvõtmetaotlus tühistati + + + Invalid user verification + Sobimatu kasutaja verifitseerimine + + + Empty public key + Tühi avalik võti + + + Invalid URL provided + Anti sobimatu URL + + + Passkeys + Pääsuvõtmed + + + AES initialization failed + AES-i initsialiseerimine ebaõnnestus + + + AES encrypt failed + AES-i krüptimine ebaõnnestus + + + Failed to store in Linux Keyring + Salvestamine Linuxi võtmerõngasse ebaõnnestus + + + Polkit returned an error: %1 + Polkit andis veateate: %1 + + + Could not locate key in keyring + Võtmerõngast ei leitud võtit + + + Could not read key in keyring + Võtmerõngast polnud võimalik võtit lugeda + + + AES decrypt failed + AES-i lahtikrüptimine ebaõnnestus + + + No Polkit authentication agent was available + Ühtegi Polkiti autentimisagenti polnud saadaval. + + + Polkit authorization failed + Polkiti autentimine ebaõnnestus + + + No Quick Unlock provider is available + Ühtegi kiiresti luku avamise teenust pole saadaval. + + + Failed to init KeePassXC crypto. + KeePassXC krüptograafia initsialiseerimine ebaõnnestus. + + + Failed to encrypt key data. + Võtme andmete krüptimine ebaõnnestus. + + + Failed to get Windows Hello credential. + Windows Hello tunnuse hankimine ebaõnnestus. + + + Failed to decrypt key data. + Võtme andmete lahtikrüptimine ebaõnnestus. + + + Origin is empty or not allowed + Lähtedomeen on tühi või lubamatu + + + Effective domain is not a valid domain + Kehtiv domeen pole korrektne domeen + + + Origin and RP ID do not match + Lähtedomeeni ja sõltlase ID ei klapi + + + No supported algorithms were provided + Toetatud algoritme ei antud + + + Wait for timer to expire + Oota taimeri aegumist + + + Challenge is shorter than required minimum length + Pretensioon on lühem kui nõutav miinimumpikkus + + + user.id does not match the required length + „user.id” ei vasta nõutavale pikkusele + + + Favorite + Tag for favorite entries + Lemmik + + + File does not exist. + Faili pole olemas. + + + Cannot open file: %1 + Faili pole võimalik avada: %1 + + + Cannot parse file: %1 at position %2 + Faili pole võimalik parsida: %1 asukohas %2 + + + Failed to decrypt json file: %1 + JSON-faili lahtikrüptimine ebaõnnestus: %1 + + + Invalid encKeyValidation field + sobimatu väli „encKeyValidation” + + + Invalid cipher list within encKeyValidation field + sobimatu šifriloend väljal „encKeyValidation” + + + Wrong password + vale parool + + + Invalid encrypted data field + sobimatu krüptitud andmeväli + + + Invalid cipher list within encrypted data field + sobimatu šifriloend krüptitud andmeväljal + + + Cannot initialize cipher + šifri initsialiseerimine ebaõnnestus + + + Cannot decrypt data + andmete lahtikrüptimine pole võimalik + + + Bitwarden Import + Bitwardenist imporditud + + + Archived + Tag for archived entries + Arhiivitud + + + Invalid 1PUX file format: Not a valid ZIP file. + Sobimatu 1PUX-faili vorming: pole korrektne ZIP-fail. + + + Invalid 1PUX file format: Missing export.data + Sobimatu 1PUX-faili vorming: „export.data” puudub. + + + 1Password Import + 1Passwordist imporditud + + + Enter Shortcut + Sisesta kiirklahv: + + + Action + Toiming + + + Shortcuts + Kiirklahvid + + + Unknown passkeys error + Tundmatu tõrge pääsuvõtmega + + + Invalid KDF iterations, cannot decrypt json file + Sobimatu KDF-i iteratsioonide arv, JSON-faili lahtikrüptimine pole võimalik + + + Unsupported format, ensure your Bitwarden export is password-protected + Toetamata vorming, vaata, et Bitwardeni eksport oleks parooliga kaitstud + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Toetatud on ainult PBKDF ja Argon2, JSON-faili lahtikrüptimine pole võimalik + + + Reset Shortcuts + Lähtesta kiirklahvid + + + Double click an action to change its shortcut + Kiirklahvi muutmiseks tee vastaval real topeltklõps. + + + Filter... + Filter… + + + Shortcut Conflict + Kiirklahvide konflikt + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Kiirklahviga %1 on juba seotud toiming „%2”. Kas soovid selle üle kirjutada? + + + Cannot generate valid passphrases because the wordlist is too short + Sobivaid paroolifraase pole võimalik genereerida, kuna sõnaloend on liiga lühike + + + Encrypted files are not supported. + Krüptitud faile ei toetata + + + Proton Pass Import + Proton Passist imporditud + + + Delete plugin data? + Plugina andmete kustutamise kinnitus + + + Delete plugin data from Entry(s)? + Kas kustutada kirjest plugina andmed?Kas kustutada kirjetest plugina andmed? + + + Passkey + Pääsuvõti + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Eksportimisel kasutatav vorming. Valikus on „xml“, „csv“ ja „html“. Vaikimisi vorming on „xml“. + + + start minimized to the system tray + Käivitamine süsteemisalve minimeerituna. + + + malformed string, possible unescaped delimiter + vigases vormis sõne, võimalik mitteeemaldatud eraldaja + + + missing closing delimiter + lõpetav eraldaja on puudu + + + %1, row: %2, column: %3 + %1, rida: %2, veerg: %3 + + + Tags + Sildid @@ -7778,20 +9275,39 @@ Kernel: %3 %4 Sisemine zlib-i tõrge: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Käsk „%1” ei lõpetanud tööd mõistliku aja jooksul. Protsess lõpetati sunniviisiliselt. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Mestitud andmebaasi üleslaadmine ebaõnnestus. Käsk „%1” ei lõpetanud tööd mõistliku aja jooksul. Protsess lõpetati sunniviisiliselt. + + + Invalid download parameters provided. + Anti sobimatud allalaadimisparameetrid. + + + Command `%1` failed to download database. + Käsul „%1” ei õnnestunud andmebaasi alla laadida. + + + Invalid database pointer or upload parameters provided. + Anti sobimatu adnmebaasiviide või sobimatud üleslaadimisparameetrid. + + + Command `%1` exited with status code: %2 + Käsk „%1” lõpetas töö olekukoodiga %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Mestitud andmebaasi üleslaadmine ebaõnnestus. Käsk „%1” lõpetas töö olekukoodiga %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Aegunud kirjed jäetakse aruandest välja - - - Show only entries which have URL set - Näidatakse ainult kirjeid, millel on URL määratud - - - Show only entries which have browser settings in custom data - Näidatakse ainult kirjeid, millel on kohandatud andmetes brauseri seadistusi - Double-click entries to edit. Kirje muutmiseks tee sellel topeltklõps. @@ -7856,44 +9372,53 @@ Kernel: %3 %4 Exclude from reports Jäetakse aruannetest välja + + Expire Entry(s)… + Märgi kirje aegunuks…Märgi kirjed aegunuks… + + + Only show entries that have a URL + Näidatakse ainult kirjeid, millel on URL määratud + + + Only show entries that have been explicitly allowed or denied + Näidatakse ainult kirjeid, millel on lubatud või keelatud URL + + + Show expired entries + Näidatakse ka aegunud kirjeid + + + (Expired) + (aegunud) + + + Delete plugin data from Entry(s)… + Kustuta kirjest plugina andmed…Kustuta kirjetest plugina andmed… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Aegunud kirjed jäetakse aruandest välja + Show expired entries + Näidatakse ka aegunud kirjeid - Also show entries that have been excluded from reports - Kuvatakse ka muidu aruannetest välja jäetavad kirjed + (Expired) + (aegunud) Hover over reason to show additional details. Double-click entries to edit. Põhjuse kohta täpsema teabe saamiseks hoia hiirekursorit selle kohal. Kirje muutmiseks tee topeltklõps. - - Bad - Password quality - Kohutav - Bad — password must be changed Kohutav – palun muuda parooli - - Poor - Password quality - Kehv - Poor — password should be changed Kehv – parooli tuleks muuta - - Weak - Password quality - Nõrk - Weak — consider changing the password Nõrk – kaalu parooli muutmist @@ -7942,6 +9467,14 @@ Kernel: %3 %4 Exclude from reports Jäetakse aruannetest välja + + Expire Entry(s)… + Märgi kirje aegunuks…Märgi kirjed aegunuks… + + + Show entries that have been excluded from reports + Näidatakse ka muidu aruannetest välja jäetavaid kirjeid + ReportsWidgetHibp @@ -7955,7 +9488,7 @@ Kernel: %3 %4 Also show entries that have been excluded from reports - Kuvatakse ka muidu aruannetest välja jäetavad kirjed + Näidatakse ka muidu aruannetest välja jäetavaid kirjeid This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. @@ -8037,6 +9570,77 @@ Kernel: %3 %4 Exclude from reports Jäetakse aruannetest välja + + Expire Entry(s)… + Märgi kirje aegunuks…Märgi kirjed aegunuks… + + + + ReportsWidgetPasskeys + + Export + Ekspordi + + + Import + Impordi + + + List of entry URLs + Kirje URL-ide loend + + + Title + Pealkiri + + + Path + Asukoht + + + Username + Kasutajanimi + + + URLs + URL-id + + + Edit Entry… + Muuda kirjet… + + + Delete Entry(s)… + Kustuta kirje…Kustuta kirjed… + + + Relying Party + Sõltlane + + + Show expired entries + Näidatakse ka aegunud kirjeid + + + (Expired) + (aegunud) + + + Export Confirmation + Eksportimise kinnitus + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Kui jätad pääsuvõtmetega faili turvamata, võidakse see varastada või seda ilma loata kasutada. Kas oled kindel, et soovid jätkata? + + + Please wait, list of entries with passkeys is being updated… + Palun oota, pääsuvõtmega kirjete nimekirja uuendatakse… + + + No entries with passkeys. + Ühtegi pääsuvõtmega kirjet pole. + ReportsWidgetStatistics @@ -8211,6 +9815,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Ükski agent ei tööta, identiteete pole võimalik loetleda. + + Failed to remove all SSH identities from agent. + Kõigi identiteetide eemaldamine SSH agendilt ebaõnnestus. + + + All SSH identities removed from agent. + Kõik identiteedid SSH agendilt eemaldatud. + SearchHelpWidget @@ -8277,6 +9889,10 @@ Kernel: %3 %4 Search Help Otsinguabi + + Save Search + Salvesta otsing + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8345,32 +9961,16 @@ Kernel: %3 %4 <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p>Märkimisel küsitakse paroolide lugemiseks alati luba. Muul juhul pääsevad kliendid paroolidele ilma kinnituseta ligi, eeldusel, et andmebaasi lukk on avatud.</p><p>See valik puudutab üksnes ligipääsu kirjete parooliväljale ja ei piira klientide ligipääsu neile nähtavaks tehtud andmebaasides kirjete loendamiseks või kirjete muude atribuutide uurimiseks.</p></body></html> Confirm when passwords are retrieved by clients Küsitakse kinnitust, kui klient paroolile juurdepääsu soovib - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion Küsitakse kinnitust, kui klient soovib kirjet kustutada - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching Enne otsimist küsitakse andmebaasi luku avamist @@ -8395,6 +9995,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Plugina aktiveerimiseks ja selle jaotise muutmise võimaldamiseks salvesta esmalt tehtud muudatused. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Selle ruudu märkimisel pole mõju, kui prügikasti viskamisel kinnituse küsimine on välja lülitatud.</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Märkimine parandab ühilduvust teatud rakendustega, mis otsivad parooli ilma esmalt andmebaasi lukku avamata.</p><p>Samas võib see põhjustada kliendi kokkujooksmise, kui andmebaasi lukku piisavalt kiiresti ei avata. (Tavaline ajalimiit on 25 s, aga see võib eri rakenduste puhul erineda.)</p></body></html> + SettingsWidgetKeeShare @@ -8462,7 +10070,7 @@ Kernel: %3 %4 ShareImport Successful import - Importimine oli edukas + Importimine õnnestus @@ -8473,7 +10081,7 @@ Kernel: %3 %4 Import from %1 successful (%2) - Importimine asukohast %1 kenasti lõpetatud (%2) + Importimine asukohast „%1” kenasti lõpetatud (%2) Imported from %1 @@ -8481,11 +10089,11 @@ Kernel: %3 %4 Multiple import source path to %1 in %2 - + importimise lähtekoht „%1” on määratud mitmes grupis: %2 Conflicting export target path %1 in %2 - + eksportimise sihtkoht „%1” on määratud mitmes grupis: %2 Export to %1 failed (%2) @@ -8503,8 +10111,12 @@ Kernel: %3 %4 TagModel - All - Kõik + Clear Search + Puhasta otsing + + + All Entries + Kõik kirjed Expired @@ -8515,6 +10127,25 @@ Kernel: %3 %4 Nõrgad paroolid + + TagView + + Remove Search + Eemalda otsing + + + Remove Tag + Eemalda silt + + + Confirm Remove Tag + Sildi eemaldamise kinnitus + + + Remove tag "%1" from all entries in this database? + Kas oled kindel, et tahad sildi „%1” kõigilt selle andmebaasi kirjetelt eemaldada? + + TotpDialog @@ -8543,7 +10174,7 @@ Kernel: %3 %4 There was an error creating the QR code. - QR-koodi loomisel ilmnes tõrge. + Ruutkoodi loomisel ilmnes tõrge. Closing in %1 seconds. @@ -8672,26 +10303,6 @@ Näide: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Hakka oma paroole turvaliselt KeePassXC andmebaasis hoidma - - Create new database - Loo uus andmebaas - - - Open existing database - Ava olemasolev andmebaas - - - Import from KeePass 1 - Impordi KeePass 1-st - - - Import from 1Password - Impordi 1Passwordist - - - Import from CSV - Impordi CSV-failist - Recent databases Viimatised andmebaasid @@ -8704,6 +10315,18 @@ Näide: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Tere tulemast KeePassXC %1 kasutama! + + Create Database + Loo andmebaas + + + Open Database + Ava andmebaas + + + Import File + Impordi fail + WinUtils @@ -8720,31 +10343,8 @@ Näide: JBSWY3DPEHPK3PXP Globaalse kiirklahvi registreerimine polnud võimalik - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC krüptograafia initsialiseerimine ebaõnnestus. - - - Failed to encrypt key data. - Võtme andmete krüptimine ebaõnnestus. - - - Failed to get Windows Hello credential. - Windows Hello tunnuse hankimine ebaõnnestus. - - - Failed to decrypt key data. - Võtme andmete lahtikrüptimine ebaõnnestus. - - YubiKey - - %1 No interface, slot %2 - %1: liidest pole, pesa %2 - General: Üldine: @@ -8756,14 +10356,6 @@ Näide: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Värskenda riistvaraliste võtmete loendit - - - Refresh - Värskenda - Hardware key slot selection Riistvaralise võtme pesa valimine @@ -8796,10 +10388,6 @@ Näide: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Pretensioon-vastus on määratud, muutmiseks või eemaldamiseks klõpsa vastavat nuppu. - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Kui sul on <a href="https://www.yubico.com/">YubiKey</a> või <a href="https://onlykey.io">OnlyKey</a> turvavõti, võid lisaturvalisuse nimel seda kasutada.</p><p>Võtme ühe pesa peab programmeerima <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 pretensiooni ja vastusena</a>.</p> - Detecting hardware keys… riistvaraliste võtmete tuvastamine… @@ -8808,28 +10396,25 @@ Näide: JBSWY3DPEHPK3PXP No hardware keys detected riistvaralisi võtmeid ei tuvastatud - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1: määrati sobimatu pesa – %2 + Refresh hardware keys + Värskenda riistvaraliste võtmete loendit + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Kui sul on <a href="https://www.yubico.com/">YubiKey</a> või <a href="https://onlykey.io">OnlyKey</a> turvavõti, võid lisaturvalisuse nimel seda kasutada.</p><p>Võtme ühe pesa peab programmeerima <a href="https://keepassxc.org/docs/#faq-yubikey-howto">pretensiooni ja vastusena</a>.</p> + + + Hardware keys found, but no slots are configured + Leiti riistvaraline võti, kuid ühtki pesa pole seadistatud YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] pretensioon-vastus – pesa %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC-liides pole initsialiseeritud. - - Hardware key is currently in use. - Riistvaraline võti on hetkel kasutuses. - Could not find or access hardware key with serial number %1. Please present it to continue. Riistvaralist võtit seerianumbriga %1 kas ei leitud või ei pääsetud sellele juurde. Jätkamiseks viipa võtit. @@ -8846,6 +10431,21 @@ Näide: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Pretensiooni-vastuse lõpetamine ebaõnnestus. PCSC veakood: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] – pesa %3, %4 + + + Press + USB Challenge-Response Key interaction request + ootab vajutust + + + Passive + USB Challenge-Response Key no interaction required + passiivne + YubiKeyInterfaceUSB @@ -8853,14 +10453,6 @@ Näide: JBSWY3DPEHPK3PXP Unknown teadmata - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] seadistatud – pesa %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] pretensioon-vastus – pesa %3 – %4 - Press USB Challenge-Response Key interaction request @@ -8875,10 +10467,6 @@ Näide: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB-liides pole initsialiseeritud. - - Hardware key is currently in use. - Riistvaraline võti on hetkel kasutuses. - Could not find hardware key with serial number %1. Please plug it in to continue. Riistvaralist võtit seerianumbriga %1 ei leitud. Jätkamiseks tuleb see arvutiga ühendada. @@ -8895,5 +10483,15 @@ Näide: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Pretensiooni-vastuse lõpetamine ebaõnnestus. Konkreetne viga: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] – pesa %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] – pesa %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_fi.ts b/share/translations/keepassxc_fi.ts index 181d32044..57a12471c 100644 --- a/share/translations/keepassxc_fi.ts +++ b/share/translations/keepassxc_fi.ts @@ -80,6 +80,10 @@ Details Yksityiskohdat + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Valintasi muistetaan pyynnön esittäneen päätteen JA KeePassXC käyntiajan. + Remember Muista @@ -88,17 +92,13 @@ Allow Selected Salli valitut - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + Estä kaikki && tulevat Allow All && &Future - + Salli kaikki && &tulevat @@ -122,6 +122,10 @@ Use OpenSSH Käytä OpenSSH:ta + + Use both agents + Käytä molempia agentteja + SSH_AUTH_SOCK override SSH_AUTH_SOCK-ylikirjoitus @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH Agent -yhteys toimii! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Turvallisuus + + This setting cannot be enabled when minimize on unlock is enabled. + Tätä asetusta ei voi ottaa käyttöön, kun ohjelman pienennys lukituksen avauksen jälkeen on otettu käyttöön. + Access error for config file %1 Pääsyvirhe asetustiedostoon %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Ohjelma täytyy käynnistää uudelleen, jotta uusi kieli voidaan ottaa käyttöön. Haluatko käynnistää uudelleen nyt? - - Reset Settings? - Palauta asetukset? - - - Are you sure you want to reset all general and security settings to default? - Haluatko varmasti palauttaa kaikki yleiset ja turvallisuusasetukset oletuksiin? - Select backup storage directory Valitse varmuuskopion hakemistopolku + + Confirm Reset + Vahvista palauttaminen + + + Are you sure you want to reset all settings to default? + Haluatko varmasti palauttaa kaikki asetukset oletuksiinsa? + + + Import KeePassXC Settings + Tuo KeePassXC-asetukset + + + Failed to import settings from %1, not a valid settings file. + Ei voitu tuoda asetuksia tiedostosta %1: ei ole kelvollinen asetustiedosto. + + + Export KeePassXC Settings + Vie KeePassXC-asetukset + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Muista aiemmin käytetyt tietokannat + + recent files + viimeisimmät tiedostot + Load previously open databases on startup Lataa aiemmin avoinna olleet tietokannat käynnistyksen yhteydessä @@ -272,25 +312,6 @@ Include beta releases when checking for updates Sisällytä betajulkaisut päivityksiä tarkistaessa - - On database unlock, show entries that - Tietokannan avauksen yhteydessä, näytä tietueet jotka - - - have expired - On database unlock, show entries that... - ovat vanhentuneet - - - days - On database unlock, show entries that will expire within %1 days - päivää - - - will expire within - On database unlock, show entries that... - vanhentuvat ajan sisällä - File Management Tiedostohallinta @@ -315,22 +336,10 @@ Backup database file before saving Ota tietokannasta varmuuskopio ennen tallentamista - - Backup destination - Varmuuskopion sijainti - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Määrittää tietokannan varmuuskopion sijainnin. "{DB_FILENAME}" -merkkijonot korvataan tietokannan tiedostonimellä ilman tiedostopäätettä. {TIME:<format>} korvataan varmuuskopion aikaleimalla (https://doc.qt.io/qt-5/qdatetime.html#toString).<format>Aikaleiman vakiomuoto on "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Valitse... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Käytä vaihtoehtoista tallennusmetodia (voi ratkaista ongelmia Dropboxin, Google Driven GVFS:n, ymv. kanssa) @@ -408,6 +417,10 @@ Toolbar button style: Työkalupalkin nappien tyyli: + + Show passwords in color + Näytä salasanat värillisinä + Use monospaced font for notes Käytä tasalevyistä fonttia muistiinpanoille @@ -493,6 +506,71 @@ Remember last typed entry for: Muista edellinen syötetty tietue: + + On database unlock, show entries that will expire within + Tietokannan lukitusta avattaessa näytä tietueet, jotka vanhenevat + + + On database unlock, show entries that will expire within + Tietokannan lukitusta avattaessa näytä tietueet, jotka vanhenevat + + + days + number of days warning for password expiration + päivää + + + Destination format: + Kohdemuoto: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> korvataan tallennettavan tietokannan päätteettömällä tiedostonimellä</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> korvataan määrityksen mukaisella aikaleimalla (oletus: pp_KK_vvvv_tt-mm-ss)</p><p>Lisätietoa löytyy käyttöoppaasta</p></body></html> + + + Choose folder... + Valitse kansio… + + + Show confirmation before moving entries to recycle bin + Pyydä vahvistus ennen tietueiden siirtämistä roskakoriin + + + Copy data on double clicking field in entry view + Kopioi tiedot kaksoisnapsautettaessa kenttää tietuenäkymässä + + + Show toolbar + Näytä työkalupalkki + + + Show the menu bar by pressing the Alt key + Näytä valikko painettaessa Alt-näppäintä + + + Show menubar + Näytä valikkorivi + + + Import settings… + Tuo asetukset… + + + Export settings… + Vie asetukset… + + + Open browser on double clicking URL field in entry view + Avaa selain kaksoisnapsautettaessa verkko-osoitekenttää tietuenäkymässä + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -536,7 +614,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - Määritä tietokannan nopea lukituksen avaus (Touch ID / Windows Hello) + Määritä tietokannan Pika-avaus (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed @@ -546,10 +624,6 @@ Lock databases after minimizing the window Lukitse tietokanta ikkunan pienennyksen jälkeen - - Require password repeat when it is visible - Vaadi salasanan toistamista, mikäli se on näkyvillä - Hide passwords when editing them Piilota salasanat muokkauksen aikana @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Piilota salasanat tietueiden esikatselupaneelissa - - Hide entry notes by default - Piilota tietueiden muistiinpanot - - - Move entries to recycle bin without confirmation - Siirrä tietueet roskakoriin ilman varmistusta - - - Enable double click to copy the username/password entry columns - Ota tuplaklikkaus käyttöön kopioidaksesi käyttäjätunnuksen/salasanan sarakkeita - Privacy Yksityisyys @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Käytä DuckDuckGo:ta sivustojen ikonien lataukseen + + Hide TOTP in the entry preview panel + Piilota TOTP merkinnän esikatselupaneelista + + + Lock databases when switching user + Lukitse tietokanta, jos käyttäjää vaihdetaan + + + Lock Options + Lukitse valinnat + + + Hide notes in the entry preview panel + Piilota muistiinpanot tietueen esikatselupaneelista + AutoType @@ -626,18 +704,8 @@ Erittäin pitkä viive havaittu, maksimi on %1: %2 - Invalid conversion type: %1 - Virheellinen muunnoksen tyyppi: %1 - - - Invalid conversion syntax: %1 - Virheellinen muutoksen syntaksi: %1 - - - Invalid regular expression syntax %1 -%2 - Virheellinen Regex-syntaksi %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Merkintä ei sisällä attribuuttia PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Yritetään lähettää virheellistä keysym:iä - Sequence aborted: Caps Lock is on Sekvenssi peruutettu: Caps Lock on päällä @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Avainkoodia ei voitu saada avaimelle: + + Trying to send invalid keyboard symbol. + Yritettiin lähettää virheellistä näppäimistösymbolia. + AutoTypeSelectDialog @@ -718,9 +786,9 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>Voit käyttää haun lisäasetuksia löytääksesi tietueita avoimesta tietokannasta. Seuraavat pikanäppäimet ovat hyödyllisiä:<br/> + <p>Voit etsiä minkä tahansa tietueen avoimista tietokannoistasi käyttämällä haun lisäasetuksia. Seuraavat pikanäppäimet ovat hyödyllisiä:<br/> Ctrl+F - Etsi tietokannasta<br/> -Ctrl+1 - Kirjoita käyttäjänimi<br/> +Ctrl+1 - Kirjoita käyttäjätunnus<br/> Ctrl+2 - Kirjoita salasana<br/> Ctrl+3 - Kirjoita TOTP<br/> Ctrl+4 - Käytä virtuaalista näppäimistöä (vain Windows)</p> @@ -804,13 +872,13 @@ Ctrl+4 - Käytä virtuaalista näppäimistöä (vain Windows)</p>Disable for this site Ota pois käytöstä tällä sivustolla + + Undo + Kumoa + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser - Tallenna tietue - Ok Ok @@ -823,15 +891,76 @@ Ctrl+4 - Käytä virtuaalista näppäimistöä (vain Windows)</p>You have multiple databases open. Please select the correct database for saving credentials. Useita tietokantoja on auki -Valitse oikea tietokanta tietueen tallentamiseksi +Valitse tietokanta, johon tiedot tallennetaan. + + + KeePassXC - Select Database + KeePassXC - Valitse tietokanta + + + + BrowserPasskeysConfirmationDialog + + Cancel + Peruuta + + + Update + Päivitä + + + Authenticate + Todenna + + + Register new + Rekisteröi uusi + + + Register + Rekisteröi + + + Timeout in <b>%n</b> seconds... + Aikakatkaisu <b>%n</b> sekunnin kuluttua...Aikakatkaisu <b>%n</b> sekunnin kuluttua... + + + Relying Party: %1 + Välittävä osapuoli: %1 + + + Username: %1 + Käyttäjätunnus: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Pääsyavaimen tunnistetiedot + + + Add to existing entry + Lisää olemassa olevaan tietueeseen + + + Existing passkey found. +Do you want to register a new passkey for: + Olemassa oleva pääsyavain löytyi +Haluatko rekisteröidä uuden pääsyavaimen sivustolle: + + + Select the existing passkey and press Update to replace it. + Valitse olemassa oleva pääsyavain ja klikkaa Päivitä korvataksesi se. + + + Authenticate passkey credentials for: + Kirjaudu pääsyavaimella sivustolle: + + + Do you want to register a passkey for: + Haluatko rekisteröidä pääsyavaimen sivustolle: BrowserService - - KeePassXC: Create a new group - KeePassXC: Luo uusi ryhmä - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -839,10 +968,6 @@ Do you want to create this group? Vastaanotettiin pyyntö luoda uusi ryhmä "%1". Haluatko varmasti luoda tämän ryhmän? - - KeePassXC: New key association request - KeePassXC: Uusi avaimenliittämispyyntö - You have received an association request for the following database: %1 @@ -859,28 +984,16 @@ chrome-läppäri. Save and allow access Tallenna ja salli pääsy - - KeePassXC: Overwrite existing key? - KeePassXC: Korvataanko olemassa oleva avain? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Jaettu salausavain samalla nimellä "%1" on jo olemassa. Haluatko korvata sen? - - KeePassXC: Update Entry - KeePassXC: Päivitä tietue - Do you want to update the information in %1 - %2? Haluatko päivittää tiedot osoitteesta %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Poista tietue - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -890,50 +1003,58 @@ Haluatko poistaa tietueen? - Converting attributes to custom data… - Muutetaan attribuutteja mukautetuiksi tiedoiksi... + %1 (Passkey) + %1 (pääsyavain) - Abort - Keskeytä + KeePassXC - Create a new group + KeePassXC - Luo uusi ryhmä - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Muutetut KeePassHTTP-attribuutit + Disable + Kytke pois päältä - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Mukautettiin attribuutit onnistuneesti %1 tietueesta. -Siirrettiin %2 avainta mukautettuihin tietoihin. - - - Successfully moved %n keys to custom data. - Siirrettiin onnistuneesti %n avainta mukautettuihin tietoihin.Siirrettiin onnistuneesti %n avainta mukautettuihin tietoihin. + KeePassXC - Overwrite existing key? + KeePassXC - Korvataanko olemassa oleva avain? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Tietueita KeePassHTTP-attribuuteilla ei löytynyt! + KeePassXC - Update Entry + KeePassXC - Päivitä tietue - The active database does not contain an entry with KeePassHTTP attributes. - Aktiivinen tietokanta ei sisällä tietueita KeePassHTTP-attribuuteilla. + KeePassXC - Delete entry + KeePassXC - Poista tietue - Don't show this warning again - Älä näytä tätä varoitusta uudelleen + KeePassXC - New key association request + KeePassXC - Uus avaimen liitospyyntö - KeePassXC: Legacy browser integration settings detected - KeePassXC: Vanhoja selainintegraatioasetuksia havaittu + Passkey + Pääsyavain - 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-Browser:in asetukset täytyy siirtää tietokannan asetuksiin. -Tämä on välttämätöntä, jotta yhteys selainlaajennukseen säilyy muuttumattomana. -Haluat siirtää asetukset nyt? + KeePassXC - Passkey credentials + KeePassXC - Pääsyavaimen tunnistetiedot + + + Register a new passkey to this entry: + Rekisteröi uusi pääsyavain tähän tietueeseen: + + + KeePassXC - Update passkey + KeePassXC - Päivitä pääsyavain + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Tietueella on jo pääsyavain. +Haluatko ylikirjoittaa pääsyavaimen %1 - %2? + + + Register + Rekisteröi @@ -954,10 +1075,6 @@ Haluat siirtää asetukset nyt? General Yleistä - - Browsers installed as snaps are currently not supported. - Snapin kautta asennetut selaimet eivät ole tällä hetkellä tuettuja. - Enable integration for these browsers: Käytä integraatiota seuraaville selaimille: @@ -993,7 +1110,7 @@ Haluat siirtää asetukset nyt? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Näytä ilmoitus, kun tietueita pyydetään tietokannasta + Näytä ilmoitus, kun tietueita pyydetään Request to unlock the database if it is locked @@ -1013,24 +1130,24 @@ Haluat siirtää asetukset nyt? Return only best-matching credentials - Palauta vain parhaat osumat tietystä osoitteesta verkkotunnuksen kaikkien osumien sijasta + Näytä vain sopivimmat tietueet Returns expired credentials. String [expired] is added to the title. - Salli vanhentuneiden tietueiden noutaminen. Teksti [vanhentunut] lisätään tietueen otsikkoon. + Näytä vanhentuneet tietueet. Niiden nimiin lisätään teksti [vanhentunut]. Allow returning expired credentials - Salli vanhentuneiden tietueiden noutaminen + Salli vanhentuneiden tietueiden näyttö All databases connected to the extension will return matching credentials. - Sallitaan tietueiden nouto kaikista tietokannoista jotka ovat yhdistetty selainlaajennukseen. + Salli tietueiden näyttö kaikista selainlaajennukseen yhdistetyistä tietokannoista. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Etsi osumia kaikista avoimista tietokannoista + Etsi sopivia tietueita kaikista avoimista tietokannoista Advanced @@ -1039,12 +1156,12 @@ Haluat siirtää asetukset nyt? Never ask before accessing credentials Credentials mean login data requested via browser extension - Älä koskaan varmista pääsyä tietueisiin + Älä koskaan vahvista tietueiden käyttöä Never ask before updating credentials Credentials mean login data requested via browser extension - Älä koskaan varmista tietueiden päivitystä + Älä koskaan vahvista tietueiden päivitystä Do not ask permission for HTTP Basic Auth @@ -1129,26 +1246,6 @@ Haluat siirtää asetukset nyt? Custom extension ID Mukautetun selainlaajennuksen ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Snap:in hiekkalaatikon takia sinun täytyy suorittaa komentosarja jotta voit aktivoida selainintegraation.<br />Voit ladata komentosarjan osoitteesta %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser tarvitaan selainintegraation toimimista varten.<br />Lataa se seuraaville selaimille: %1, %2 ja %3. %4 - - - Please see special instructions for browser extension use below - Katso yksityiskohtaisemmat ohjeet selainlaajennuksen käyttöön alta - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Virhe:</b> Mukautetun välitysohjelman sijaintia ei löydy!<br/>Selainintegraatio EI TOIMI ilman välitysohjelmaa. - - - <b>Warning:</b> The following options can be dangerous! - <b>Varoitus:</b> Seuraavat valinnat voivat olla vaarallisia! - Executable Files Suoritettavat tiedostot @@ -1165,6 +1262,46 @@ Haluat siirtää asetukset nyt? Select native messaging host folder location Valitse native messaging -isännän hakemiston sijainti + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Salli keepassxc-proxyn listata kaikki yhdistettyjen tietokantojen merkinnät niiden otsikoilla, URL-osoitteilla ja UUID-tunnisteilla. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Myönnä rajoitettu käyttöoikeus kaikkiin yhdistettyjen tietokantojen merkintöihin (ohittaa sivustokohtaiset rajoitukset) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Varoitus:</b> Muuta näitä asetuksia vain tarvittaessa. + + + The custom proxy location does not exist. + Mukautetun välityspalvelimen sijaintia ei ole olemassa. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Virhe:</b> Mukautetun välityspalvelimen sijaintia ei ole olemassa. Korjaa tämä lisäasetukset-välilehdeltä. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Virhe:</b> Asennetun välityspalvelimen sovellustiedostoa ei löydy odotetusta sijainnista: %1<br/>Määritä mukautetun välityspalvelimen sijainti lisäasetuksista tai asenna sovellus uudelleen. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Sallii turvattoman http://localhost:in käyttämisen pääsyavainten kanssa testaamistarkoituksessa. + + + Allow using localhost with passkeys + Salli localhostin käyttö pääsyavainten kanssa + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser tarvitaan selainintegraation toimimista varten.<br />Lataa se seuraaville selaimille: %1, %2 ja %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1178,7 +1315,7 @@ Haluat siirtää asetukset nyt? Replace username and password with references - Korvaa käyttäjänimi ja salasana viittauksilla + Korvaa käyttäjätunnus ja salasana viittauksilla Copy history @@ -1187,14 +1324,6 @@ Haluat siirtää asetukset nyt? CsvImportWidget - - Import CSV fields - Tuo CSV-kentät - - - filename - tiedostonimi - size, rows, columns koko, rivit, sarakkeet @@ -1303,50 +1432,43 @@ Haluat siirtää asetukset nyt? Column %1 Sarake %1 - - Imported from CSV file - Tuotu CSV-tiedostosta - - - Original data: - Alkuperäiset tiedot: - - - Error(s) detected in CSV file! - CSV-tiedostossa havaittiin virhe/virheitä! - [%n more message(s) skipped] [%n more message(s) skipped][%n kappaletta viestejä ohitettiin] - Error - Virhe + Failed to parse CSV file: %1 + CSV-tiedoston jäsennys epäonnistui: %1 - CSV import: writer has errors: -%1 - CSV-tuonti: kirjoituksessa on virheitä: -%1 + Imported from CSV file: %1 + Tuotu CSV-tiedostosta: %1 + + + No Title Selected + Otsikkoa ei ole valittu + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Tietueet voi olla hankala erottaa toisistaan, sillä otsikkosaraketta ei ole valittu. +Oletko varma, että haluat jatkaa tuontia? + + + Tags + Tagit CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n tavu%n tavua - %n row(s) + CSV row count %n rivi%n riviä %n column(s) + CSV column count %n sarake.%n saraketta @@ -1399,6 +1521,14 @@ Tietokannan varmuuskopio paikannettu: %2 Recycle Bin Roskakori + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1421,40 +1551,10 @@ Tietokannan varmuuskopio paikannettu: %2 Password field Salasanakenttä - - Enter Additional Credentials (if any): - Syötä lisätietueita (mikäli niitä on): - - - Key File: - Avaintiedosto: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Pääsalasanan lisäksi voit käyttää salaista tiedostoa tietokantasi tietoturvan vahvistamiseksi. Tämä tiedosto voidaan tarvittaessa luoda tietokantasi turvallisuusasetuksista.</p><p>Tämä salainen tiedosto <strong>ei</strong> ole *.kdbx -tietokantatiedosto!<br>Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi.</p><p>Lisätietoja tästä...</p> - - - Key file help - Avaintiedoston ohje - Hardware key slot selection Laiteavaimen paikan valinta - - Hardware Key: - Laiteavain: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Voit käyttää laiteavainta, kuten <strong>Yubikey:tä</strong> tai <strong>Onlykey:tä</strong> HMAC-SHA1 -asetuksella olevan paikan kanssa.</p> -<p>Lisätietoja tästä...</p> - - - Hardware key help - Laiteavaimen apu - Key file to unlock the database Avaintiedosto tietokannan avaukseen @@ -1467,14 +1567,6 @@ Tietokannan varmuuskopio paikannettu: %2 Browse… Selaa... - - Refresh hardware tokens - Uudista laitetunnisteet - - - Refresh - Päivitä - Unlock Database Avaa tietokannan lukitus @@ -1537,14 +1629,6 @@ Jos et halua nähdä tätä virhettä uudestaan, mene "Tietokannan asetukse Retry with empty password Yritä uudelleen tyhjällä salasanalla - - Failed to authenticate with Windows Hello - Autentikaatio Windows Hellon kautta ei onnistunut - - - Failed to authenticate with Touch ID - Autentikaatio Touch ID:n kautta ei onnistunut - Failed to open key file: %1 Avaintiedoston avaus epäonnistui: %1 @@ -1578,22 +1662,68 @@ Jos et halua nähdä tätä virhettä uudestaan, mene "Tietokannan asetukse Tietokantaa ei voida käyttää avaintiedostona - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Et voi käyttää tietokantaasi avaintiedostona. -Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. + authenticate to access the database + käytä tietokantaa tunnistautumalla - Detecting hardware keys… - Etsitään laiteavaimia... + Failed to authenticate with Quick Unlock: %1 + Pika-avauksella tunnistautuminen epäonnistui: %1 - No hardware keys detected - Laiteavaimia ei havaittu + Select Key File: + Valitse avaintiedosto: - Select hardware key… - Valitse laiteavain... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Pääsalasanan lisäksi voit käyttää salaista tiedostoa tietokantasi tietoturvan vahvistamiseksi. Tämä tiedosto voidaan tarvittaessa luoda tietokantasi turvallisuusasetuksista.</p><p>Tämä salainen tiedosto <strong>ei</strong> ole *.kdbx -tietokantatiedosto!</p> + + + Use hardware key [Serial: %1] + Käytä laiteavainta [Sarjanumero: %1] + + + Use hardware key + Käytä laiteavainta + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Tietokantatiedostosi EI ole avaintiedosto! +Jos sinulla ei ole avaintiedostoa, tai et tiedä mikä se on, sinun ei tarvitse valita sellaista. + + + KeePassXC database file selected + KeePassXC-tietokantatiedosto valittu + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Valitsemasi tiedosto näyttää tietokantatiedostolta. +Tietokantatiedosto EI ole avaintiedosto! + +Oletko varma, että haluat jatkaa tämän tiedoston käyttämistä? + + + No hardware keys found. + Laiteavaimia ei havaittu. + + + Refresh Hardware Keys + Uudista laiteavaimet + + + Click to add a key file. + Klikkaa asettaaksesi avaintiedosto + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Minulla on avaintiedosto</a> + + + Hardware keys found, but no slots are configured. + @@ -1605,10 +1735,6 @@ Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. DatabaseSettingsDialog - - Advanced Settings - Lisäasetukset - General Yleistä @@ -1619,7 +1745,7 @@ Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. Database Credentials - Tietokannan tietueet + Tietokannan tunnistetiedot Encryption Settings @@ -1633,6 +1759,22 @@ Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. Maintenance Ylläpito + + KeeShare + KeeShare + + + Secret Service Integration + Secret Service -integraatio + + + Remote Sync + Etäsynkronointi + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1640,18 +1782,6 @@ Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. KeePassXC-Browser settings KeePassXC-Browser -asetukset - - Convert KeePassHTTP data - Muuta KeePassHTTP:n tiedot - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Siirrä vanhat KeePassHTTP-attribuutit KeePassXC-Browser:in mukautettuihin tietoihin - - - Refresh database root group ID - Uudista tietokannan juuriryhmän ID - Disconnect all browsers Unohda kaikki selaimet @@ -1660,6 +1790,10 @@ Jos sinulla ei ole avaintiedostoa, jätä kenttä tyhjäksi. Forget all site-specific settings on entries Unohda kaikki sivustokohtaiset asetukset tietueilta + + Refresh database root group ID + Uudista tietokannan juuriryhmän ID + Stored keys Tallennetut avaimet @@ -1708,18 +1842,10 @@ This may prevent connection to the browser plugin. Haluatko todella unohtaa kaikki selaimet? Tämä voi estää yhteyden selainlaajennukseen. - - KeePassXC: No keys found - KeePassXC: Avaimia ei löytynyt - No shared encryption keys found in KeePassXC settings. Jaettuja salausavaimia ei löytynyt KeePassXC:n asetuksista. - - KeePassXC: Removed keys from database - KeePassXC: Poistettiin avaimet tietokannasta - Successfully removed %n encryption key(s) from KeePassXC settings. %n salausavain poistettiin onnistuneesti KeePassXC:n asetuksista.%n salausavainta poistettiin onnistuneesti KeePassXC:n asetuksista. @@ -1738,32 +1864,14 @@ Pääsy tietueisiin evätään. Abort Keskeytä - - KeePassXC: Removed permissions - KeePassXC: Poistetut käyttöoikeudet - Successfully removed permissions from %n entry(s). Poistettiin lupa %n tietueelta.Poistettiin lupa %n tietueelta. - - KeePassXC: No entry with permissions found! - KeePassXC: Tietuetta käyttöoikeuksilla ei löytynyt! - The active database does not contain an entry with permissions. Aktiivinen tietokanta ei sisällä yhtään tietuetta käyttöoikeuksien kanssa. - - Move KeePassHTTP attributes to custom data - Siirrä KeePassHTTP-attribuutit mukautettuihin tietoihin. - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Haluatko todella siirtää vanhat selainlaajennustiedot uuteen muotoon? -Tämä on välttämätöntä selainintegraation yhteensopivuuden takaamiseksi. - Refresh database ID Uudista tietokannan ID @@ -1774,6 +1882,26 @@ This is only necessary if your database is a copy of another and the browser ext Haluatko todella uudistaa tietokannan ID:n? Tämä on tarpeellista vain, jos tietokantasi on kloonattu toisesta ja selainintegraatio ei pysty yhdistämään siihen. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Siirrä vanhat KeePassHTTP-attribuutit KeePassXC-Browser:in mukautettuihin tietoihin + + + No keys found + Avaimia ei löytynyt + + + Removed keys from database + Avaimet poistettiin tietokannasta + + + Removed permissions + Käyttöoikeudet poistettiin + + + No entry with permissions found! + Tietuetta käyttöoikeuksilla ei löytynyt! + DatabaseSettingsWidgetDatabaseKey @@ -1811,7 +1939,19 @@ Oletko varma, että haluat jatkaa ilman salasanaa? Failed to change database credentials - Tietokannan tietueiden muuttaminen ei onnistu + Tietokannan tunnistetietojen vaihto ei onnistu + + + Weak password + Heikko salasana + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Tämä on heikko salsana! SInun tulisi valita vahvempi salsana tietojesi parempaa suojausta varten. + + + The provided password does not meet the minimum quality requirement. + Annettu salasana ei täytä laadullisia minimivaatimuksia. @@ -1820,14 +1960,6 @@ Oletko varma, että haluat jatkaa ilman salasanaa? Decryption Time: Salauksen purkuun kulunut aika: - - Change existing decryption time - Muuta olemassa olevaa salauksen purkuun vaadittavaa aikaa - - - Change - Muuta - Decryption time in seconds Salauksen purkuun vaadittava aika sekunneissa @@ -1908,11 +2040,6 @@ Oletko varma, että haluat jatkaa ilman salasanaa? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - muuttamaton - Number of rounds too high Key transformation rounds @@ -1965,6 +2092,18 @@ Jos pidät tämän arvon, tietokanta ei ole välttämättä turvattu brute force Threads for parallel execution (KDF settings) säiesäiettä + + Encryption Settings: + Salausasetukset: + + + Basic + Perus + + + Advanced + Lisäasetukset + DatabaseSettingsWidgetFdoSecrets @@ -2009,11 +2148,11 @@ Jos pidät tämän arvon, tietokanta ei ole välttämättä turvattu brute force Default username: - Oletuskäyttäjänimi: + Oletusarvoinen käyttäjätunnus: Default username field - Oletuskäyttäjänimen kenttä + Oletusarvoisen käyttäjätunnuksen kenttä History Settings @@ -2023,18 +2162,10 @@ Jos pidät tämän arvon, tietokanta ei ole välttämättä turvattu brute force Maximum number of history items per entry Historiamerkintöjen maksimimäärä per tietue - - Max. history items: - Maks. historia-kohteiden lukumäärä: - Maximum size of history per entry Historian koon maksimimäärä per tietue - - Max. history size: - Maks. historian koko: - MiB Mt @@ -2064,6 +2195,99 @@ This action is not reversible. (old) (vanha) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Kun tämä asetus tallennetaan tai tietuetta muokataan, poistetaan tietueen historian vanhimmat merkinnät, jolloin niitä säilytetään vain määritetty määrä. + + + Limit the amount of history items per entry to: + Rajoita tietueiden historiamerkintöjen määrää: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Kun tämä asetus tallennetaan tai tietuetta muokataan, poistetaan tietueen historian vanhimmat merkinnät, jolloin niitä säilytetään vain määritetty määrä. + + + Limit the total size of history items per entry to: + Rajoita tietueiden historiamerkintöjen määrää: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Siirrä tietueet roskakoriryhmään pysyvän poiston sijaan. Roskakorista poistetut tietueet poistetaan tietokannasta pysyvästi. + + + Autosave delay since last change + Muutosta seuraavan automaattitallennuksen viive + + + Autosave delay + Automaattitallennuksen viive + + + Autosave delay since last change in minutes + Muutosta seuraavan automaattitallennuksen minuuttiviive + + + min + minuuttia + + + Autosave delay since last change checkbox + Muutosta seuraavan automaattitallennuksen viiveen valintalaatikko + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + Varoitus: seuraavia asetuksia ei ole salattu. + + + Display name: + Näyttönimi: + + + Publically visible display name used on the unlock dialog + Lukituksen avausikkunassa julkisesti näkyvä näyttönimi + + + Database public display name + Tietokannan julkinen näyttönimi + + + Display color: + Näyttöväri: + + + Publically visible color used on the unlock dialog + Lukituksen avausikkunassa julkisesti näkyvä väri + + + Database public display color chooser + Tietokannan julkisen näyttövärin valitsin + + + Clear + Tyhjennä + + + Display icon: + Näyttökuvake: + + + Select Database Icon + Valitse tietokantakuvake + DatabaseSettingsWidgetKeeShare @@ -2159,6 +2383,141 @@ This action is not reversible. Tietokannan kuvauskenttä + + DatabaseSettingsWidgetRemote + + Sync Commands + Synkronoinnin komennot + + + Remove + Poista + + + Command Settings + Komentoasetukset + + + Name + Nimi + + + Save + Tallenna + + + Download + Lataa + + + Command: + Komento: + + + Download command field + Latauskomento epäonnistui + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Esim. "sftp user@hostname" tai "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Syöte: + + + Download input field + Lataa syöte + + + Upload + Lähetä + + + Upload command field + Lähetä-komento epäonnistui + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + Esim. "sftp user@hostname" tai "scp {TEMP_DATABASE user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Lähetyksen syöte + + + Name cannot be empty. + Nimi ei voi olla tyhjä. + + + Test + Testaa + + + Download command cannot be empty. + Latauskomento ei voi olla tyhjä. + + + Download failed with error: %1 + Lataus epäonnistui virheellä: + + + Download finished, but file %1 could not be found. + Lataus päättyi, mutta tiedostoa %1 ei löydy. + + + Download successful. + Lataus onnistui. + + + Save Remote Settings + Tallenna asetukset + + + You have unsaved changes. Do you want to save them? + Sinulla on tallentamattomia asetuksia. Haluatko tallettaa ne? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Esim. +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} -muuttujaa käytetään paikkamerkkinä tietokannan välikaikaisena sijaintina. +Komennon täytyy suoriutua. `sftp` -komennon ollessa viimeinen komento, `exit` täytyy lähettää. + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Esim. +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} -muuttujaa käytetään paikkamerkkinä tietokannan välikaikaisena sijaintina. +Komennon täytyy suoriutua. `sftp` -komennon ollessa viimeinen komento, `exit` täytyy lähettää. + + + + Timeout: + + + + seconds + sekuntia + + DatabaseTabWidget @@ -2191,26 +2550,10 @@ Tämä on selkeä virhe, joten ota yhteyttä kehittäjätiimiin. CSV file CSV-tiedosto - - Select CSV file - Valitse CSV-tiedosto - Merge database Yhdistä tietokanta - - KeePass 1 database - KeePass 1 -tietokanta - - - Open KeePass 1 database - Avaa KeePass 1 -tietokanta - - - Open OPVault - Avaa OPVault - Export database to CSV file Vie tietokanta CSV-tiedostoon @@ -2223,6 +2566,18 @@ Tämä on selkeä virhe, joten ota yhteyttä kehittäjätiimiin. Writing the HTML file failed. HTML-tiedoston kirjoittaminen epäonnistui. + + Export database to XML file + Vie tietokanta XML-tiedostoon + + + XML file + XML-tiedosto + + + Writing the XML file failed + XML-tiedoston tallennus epäonnistui + Export Confirmation Viennin vahvistus @@ -2231,26 +2586,22 @@ Tämä on selkeä virhe, joten ota yhteyttä kehittäjätiimiin. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Olet viemässä tietokantaasi salaamattomaan tiedostoon. Tämä jättää salasanasi ja minkä tahansa arkaluontoisen tiedon haavoittuvaksi! Oletko varma, että haluat jatkaa? - - New Database - Uusi tietokanta - - - %1 [New Database] - Database tab name modifier - %1 [Uusi tietokanta] - %1 [Locked] Database tab name modifier %1 [Lukittu] + + %1 [Temporary] + Database tab name modifier + %1 [Väliaikainen] + DatabaseWidget - Database Tags - Tietokannan tagit + Searches and Tags + Haut ja tunnisteet Searching… @@ -2300,6 +2651,10 @@ Tämä on selkeä virhe, joten ota yhteyttä kehittäjätiimiin. Expired entries Vanhentuneet tietueet + + Entries expiring within %1 day(s) + %1 päivän kuluttua vanhentuva tietue%1 päivän kuluttua vanhentuva tietue + No current database. Ei nykyistä tietokantaa. @@ -2324,6 +2679,18 @@ Tämä on selkeä virhe, joten ota yhteyttä kehittäjätiimiin. No Results Ei tuloksia. + + Save + Tallenna + + + Enter a unique name or overwrite an existing search from the list: + Syötä yksilöllinen nimi tai korvaa listalla oleva aiempi haku: + + + Save Search + Tallenna haku + Lock Database? Lukitse tietokanta? @@ -2352,26 +2719,6 @@ Tallenna muutokset? File has changed Tiedosto on muuttunut - - The database file has changed. Do you want to load the changes? - Tietokantatiedosto on muuttunut. Haluatko ladata muutokset? - - - Merge Request - Yhdistämispyyntö - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Tietokantatiedosto on muuttunut, ja sinulla on tallentamattomia muutoksia. -Haluatko yhdistää muutoksesi? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Uutta tietokantaa ei voitu avata automaattisen uudelleenlatauksen yhteydessä. -Virhe: %1 - Disable safe saves? Ota turvallinen tallennus pois käytöstä? @@ -2414,9 +2761,94 @@ Ota turvallinen tallennus pois käytöstä ja yritä uudelleen? Could not find database file: %1 Tietokantatiedostoa ei löydy: %1 - - Entries expiring within %1 day(s) - + + New Database + Uusi tietokanta + + + %1 [New Database] + Database tab name modifier + %1 [Uusi tietokanta] + + + Remote Sync did not contain any download or upload commands. + Etäsynkronointi ei sisältänyt yhtään lataus- tai lähetyskomentoa. + + + Remote sync '%1' completed successfully! + Etäsynkronointi '%1' suoritettiin onnistuneesti! + + + Remote sync '%1' failed: %2 + Etäsynkronointi '%1' epäonnistui: %2 + + + Error while saving database %1: %2 + Tietokannan %1 tallennus epäonnistui: %2 + + + Downloading... + Ladataan... + + + Uploading... + Lähetetään... + + + Syncing... + Synkronoidaan... + + + Remove passkey from entry + Poista pääsyavain tietueesta + + + Do you want to remove the passkey from this entry? + Haluatko poistaa pääsyavaimen tästä tietueesta? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2469,10 +2901,6 @@ Ota turvallinen tallennus pois käytöstä ja yritä uudelleen? n/a ei saatavilla - - (encrypted) - (salattu) - Select private key Valitse yksityinen avain @@ -2559,6 +2987,10 @@ Haluatko korjata sen? Hide Piilota + + %n hour(s) + %n tunti%n tuntia + %n week(s) %n viikko%n viikkoa @@ -2571,9 +3003,9 @@ Haluatko korjata sen? %n year(s) %n vuosi%n vuotta - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + SSH-avaimen purku epäonnistui. Varmista, että salasana on oikein. @@ -2693,10 +3125,20 @@ Haluatko korjata sen? Add new window association Lisää uusi ikkunan liitos + + + + Add item + + + Remove selected window association Poista valittu ikkunaliitos + + - + Remove item + - + Window title: Ikkunan otsikko: @@ -2721,23 +3163,9 @@ Haluatko korjata sen? Custom Auto-Type sequence for this window Mukautettu automaattisyötön sekvenssi tälle ikkunalle - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Tämä asetukset vaikuttavat tietueen toimintaan selainlaajennuksen kanssa. - General Yleistä @@ -2750,26 +3178,14 @@ Haluatko korjata sen? Skip Auto-Submit for this entry Älä salli automaattisyöttöä tälle tietueelle - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Lähetä tämä tietue vain HTTP-autentikaatiodialogeihin. Jos asetus on päällä, tavalliset kirjautumiskentät eivät näytä tätä tietuetta listassa. - Use this entry only with HTTP Basic Auth Käytä tietuetta vain HTTP Basic -autentikaatioon - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Älä lähetä tätä tietuetta HTTP-autentikaatiodialogeihin. Jos asetus on päällä, tämä tietue näkyy vain tavallisissa kirjautumiskentissä. - Do not use this entry with HTTP Basic Auth Älä käytä tätä tietuetta HTTP Basic -autentikaatioon - - Additional URL's - Lisäosoitteet - Add Lisää @@ -2782,6 +3198,22 @@ Haluatko korjata sen? Edit Muokkaa + + These settings affect the entry's behaviour with the browser extension. + Nämä asetukset vaikuttavat tietueen käytökseen selainlaajennuksen kanssa. + + + Additional URLs + Lisäosoitteet + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Lähetä tämä tietue vain HTTP-autentikaatiodialogeihin. Jos asetus on päällä, tavalliset kirjautumiskentät eivät näytä tätä tietuetta listassa. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Älä lähetä tätä tietuetta HTTP-autentikaatiodialogeihin. Jos asetus on päällä, tämä tietue näkyy vain tavallisissa kirjautumiskentissä. + EditEntryWidgetHistory @@ -2830,24 +3262,12 @@ Haluatko korjata sen? Notes field - Muistiinpanojen kenttä - - - Toggle the checkbox to reveal the notes section. - Ruksi valintaruutu näyttääksesi muistiinpano-osio. + Muistiinpanokenttä Username field Käyttäjätunnuksen kenttä - - Toggle notes visible - Vaihda muistiinpanojen näkyvyyttä - - - Notes: - Muistiinpanot: - Expiration field Vanhentumisajan kenttä @@ -2864,14 +3284,6 @@ Haluatko korjata sen? Presets Esiasetukset - - Password: - Salasana - - - URL: - URL: - Url field Osoitekenttä @@ -2880,18 +3292,10 @@ Haluatko korjata sen? Download favicon for URL Lataa favicon tälle URL:lle - - Title: - Otsikko: - Title field Otsikkokenttä - - Username: - Käyttäjänimi - Password field Salasanakenttä @@ -2900,18 +3304,42 @@ Haluatko korjata sen? Toggle expiration Ota vanhentumisaika käyttöön - - Expires: - Vanhentuu: - - - Tags: - Tagit: - Tags list Tagilista + + &Username: + &Käyttäjätunnus: + + + &Title: + &Nimi: + + + &Password: + &Salasana: + + + UR&L: + UR&L-osoite: + + + &Notes: + &Muistiinpanot: + + + Toggle notes visibility + Kytke muistiinpanojen näyttö + + + T&ags: + T&unnisteet: + + + &Expires: + &Erääntyy: + EditEntryWidgetSSHAgent @@ -2951,19 +3379,6 @@ Haluatko korjata sen? Private key Yksityinen avain - - External file - Ulkoinen tiedosto - - - Browser for key file - Selaa avaintiedostoa - - - Browse… - Button for opening file dialog - Selaa... - Attachment Liite @@ -2980,6 +3395,23 @@ Haluatko korjata sen? Remove from agent Poista agentista + + External file + Ulkoinen tiedosto + + + Browser for key file + Selaa avaintiedostoa + + + Browse… + Button for opening file dialog + Selaa... + + + Generate + Luo + Select attachment file Valitse liitetiedosto @@ -3004,6 +3436,10 @@ Haluatko korjata sen? seconds sekuntia + + Clear agent + + EditGroupWidget @@ -3015,10 +3451,6 @@ Haluatko korjata sen? Icon Kuvake - - Browser Integration - Selainintegraatio - Properties Ominaisuudet @@ -3035,6 +3467,10 @@ Haluatko korjata sen? Group has unsaved changes Ryhmällä on tallentamattomia muutoksia + + Browser Integration + Selainintegraatio + Enable Kytke päälle @@ -3050,10 +3486,6 @@ Haluatko korjata sen? EditGroupWidgetBrowser - - Edit Group - Muokkaa ryhmää - These settings affect to the group's behaviour with the browser extension. Nämä asetukset vaikuttavat ryhmän toimintaan selainlaajennuksen kanssa. @@ -3090,6 +3522,22 @@ Haluatko korjata sen? Do not use HTTP Auth toggle for this and sub groups Älä käytä HTTP Basic -autentikaatiota tälle ryhmälle ja aliryhmille + + Omit WWW subdomain from matching: + Älä huomioi WWW-aliverkkotunnusta tunnistuksessa: + + + Omit WWW subdomain from matching toggle for this and sub groups + WWW-aliverkkotunnuksen tunnistuskäytön kytkentä tälle ja aliryhmille + + + Restrict matching to given browser key: + Rajoita tunnistus annettuun selainavaimeen: + + + Restrict matching to given browser key toggle for this and sub groups + Tunnistuksen annettuun selainavaimeen rajoituksen kytkentä tälle ja aliryhmille + EditGroupWidgetKeeShare @@ -3170,15 +3618,15 @@ Tuetut tyypit ovat: %1. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare ei ole tällä hetkellä käytössä. Voit ottaa tuonnin/viennin käyttöön ohjelmiston asetuksista. + KeeShare ei ole tällä hetkellä käytössä. Voit ottaa tuonnin/viennin käyttöön sovelluksen asetuksista. Database export is currently disabled by application settings. - Tietokannan vienti on poistettu käytöstä ohjelmiston asetuksissa. + Tietokannan vienti ei ole sovelluksen asetuksissa käytössä. Database import is currently disabled by application settings. - Tietokannan tuonti on poistettu käytöstä ohjelmiston asetuksista. + Tietokannan tuonti ei ole sovelluksen asetuksissa käytössä. KeeShare container @@ -3249,7 +3697,7 @@ Tuetut tyypit ovat: %1. Notes field - Muistiinpanojen kenttä + Muistiinpanokenttä Name: @@ -3322,10 +3770,6 @@ Tuetut tyypit ovat: %1. Unable to fetch favicon. Faviconin noutaminen ei onnistu - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Voit asettaa DuckDuckGo:n ikonien lataukseen asetuksen Työkalut>Asetukset>Turvallisuus alta - Existing icon selected. Jo olemassa oleva ikoni valittu. @@ -3358,6 +3802,10 @@ Tuetut tyypit ovat: %1. The following icon(s) failed: Seuraava ikoni epäonnistui:Seuraavat ikonit epäonnistuivat: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Voit ottaa DuckDuckGon sivustokuvakepalvelun käyttöön sovelluksen suojausasetuksista + EditWidgetProperties @@ -3434,6 +3882,24 @@ Tämä voi vikaannuttaa tietoa käyttävän liitännäisen. %1 - Clone %1 - Klooni + + Passkey + Pääsyavain + + + Invalid conversion type: %1 + Virheellinen muunnoksen tyyppi: %1 + + + Invalid conversion syntax: %1 + Virheellinen muutoksen syntaksi: %1 + + + Invalid regular expression syntax %1 +%2 + Virheellinen Regex-syntaksi %1 +%2 + EntryAttachments @@ -3442,6 +3908,21 @@ Tämä voi vikaannuttaa tietoa käyttävän liitännäisen. Tiedostoa "%1" ei voitu avata + + EntryAttachmentsDialog + + Form + Lomake + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3479,14 +3960,6 @@ Tämä voi vikaannuttaa tietoa käyttävän liitännäisen. Remove Poista - - Rename selected attachment - Nimeä valittu liite uudelleen - - - Rename - Nimeä uudelleen - Open selected attachment Avaa valittu liite @@ -3562,12 +4035,6 @@ Tämä voi vikaannuttaa tietoa käyttävän liitännäisen. Confirm Overwrite Attachment Varmista liitetiedoston ylikirjoitus - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Liitetiedosto "%1" on jo olemassa. -Haluatko ylikirjoittaa sen? - Confirm Attachment Varmista liitetiedosto @@ -3602,6 +4069,24 @@ Error: %1 Päivitetyn liitetiedoston tallennus epäonnistui. Virhe: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Liitetiedosto "%1" on jo olemassa. +Haluatko ylikirjoittaa sen? + + + New + + + + Preview + Esikatselu + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3796,6 +4281,14 @@ Virhe: %1 Has TOTP Sisältää TOTP:n + + Background Color + Taustaväri + + + Group Path + + EntryPreviewWidget @@ -3816,8 +4309,8 @@ Virhe: %1 Salasana - Notes - Muistiinpanot + URL + URL Expiration @@ -3836,8 +4329,8 @@ Virhe: %1 Käyttäjätunnus - URL - URL + Notes + Muistiinpanot Advanced @@ -3887,6 +4380,10 @@ Virhe: %1 Never Ei koskaan + + Double click to copy value + Tuplaklikkaa kopioidaksesi arvo + Enabled Käytössä @@ -3895,6 +4392,10 @@ Virhe: %1 Disabled Pois käytöstä + + Double click to copy to clipboard + Kopioi leikepöydälle kaksoisklikkauksella + EntryURLModel @@ -3902,6 +4403,10 @@ Virhe: %1 Invalid URL Virheellinen URL + + Duplicate URL + Monista URL-osoite + EntryView @@ -3917,6 +4422,10 @@ Virhe: %1 Reset to defaults Palauta oletusasetukset + + + %1 entry(s)... + + %1 tietuetta...+ %1 tietue... + ExportDialog @@ -4098,8 +4607,8 @@ Tämä jättää salasanasi ja minkä tahansa arkaluontoisen tiedon haavoittuvak Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - Onko ikonien latauksessa ongelmia? -Voit käyttää DuckDuckGo:ta ikonien lataukseen ohjelmiston turvallisuusasetuksia muokkaamalla. + Onko kuvakkeiden latauksessa ongelmia? +Voit aktivoida DuckDuckGon kuvakepalvelun sovelluksen suojausasetuksista. Close @@ -4138,6 +4647,193 @@ Voit käyttää DuckDuckGo:ta ikonien lataukseen ohjelmiston turvallisuusasetuks Ladataan faviconeja (%1/%2)... + + ImportWizard + + Import Wizard + Ohjattu tuonti + + + + ImportWizardPageReview + + WizardPage + Ohjattu sivu + + + Entry count: %1 + Tietueiden määrä: %1 + + + Group + Ryhmä + + + Title + Otsikko + + + Username + Käyttäjätunnus + + + Password + Salasana + + + Url + Osoite + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Lomake + + + Import File Selection + Tuontitiedoston valinta + + + Password: + Salasana: + + + Key File: + Avaintiedosto: + + + Browse… + Selaa... + + + Import Into: + Tuo kohteeseen: + + + New Database + Uusi tietokanta + + + No unlocked databases available + Ei auki olevia tietokantoja + + + Existing Database: + Olemassa oleva tietokanta: + + + Import File: + Tuontitiedosto: + + + Comma Separated Values (.csv) + Comma Separated Values (.csv) + + + 1Password Export (.1pux) + 1Password-vientitiedosto (.1pux) + + + 1Password Vault (.opvault) + 1Password-holvi (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 -tietokanta (.kdb) + + + Open OPVault + Avaa OPVault + + + Select import file + Valitse tuontitiedosto + + + All files + Kaikki tiedostot + + + Key files + Avaintiedostot + + + Select key file + Valitse avaintiedosto + + + Comma Separated Values + Comma Separated Values + + + 1Password Export + 1Password-vienti + + + Bitwarden JSON Export + Bitwarden JSON-vienti + + + 1Password Vault + 1Password-holvi + + + KeePass1 Database + KeePass1-tietokanta + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass -JSON-vienti + + + Temporary Database + + + + Command: + Komento: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Esim. "sftp user@hostname" tai "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Syöte: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + Etätietokanta (.kdbx) + + KMessageWidget @@ -4166,8 +4862,8 @@ Voit käyttää DuckDuckGo:ta ikonien lataukseen ohjelmiston turvallisuusasetuks Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Väärät tilitiedot, ole hyvä ja koita uudestaan. -Jos tämä toistuu, tietokantasi voi olla viallinen. + Virheelliset tunnistetiedot. Yritä uudelleen. +Jos tämä toistuu, tietokantasi on saattanut vioittuna. Header doesn't match hash @@ -4223,8 +4919,8 @@ Jos tämä toistuu, tietokantasi voi olla viallinen. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Väärät tilitiedot, ole hyvä ja koita uudestaan. -Jos tämä toistuu, tietokantasi voi olla viallinen. + Virheelliset tunnistetiedot. Yritä uudelleen. +Jos tämä toistuu, tietokantasi on saattanut vioittuna. (HMAC mismatch) @@ -4572,17 +5268,6 @@ Rivi %2, sarake %3 Yksityisen avaimen avaaminen epäonnistui - - KeePass1OpenWidget - - Import KeePass1 Database - Tuo KeePass1-tietokanta - - - Unable to open the database. - Tietokannan avaaminen epäonnistui. - - KeePass1Reader @@ -4645,8 +5330,8 @@ Rivi %2, sarake %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Väärät tilitiedot, ole hyvä ja koita uudestaan. -Jos tämä toistuu, tietokantasi voi olla viallinen. + Virheelliset tunnistetiedot. Yritä uudelleen. +Jos tämä toistuu, tietokantasi on saattanut vioittuna. Key transformation failed @@ -4939,10 +5624,6 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? &Recent Databases &Viimeisimmät tietokannat - - &Import - &Tuo - &Export &Vie @@ -4963,6 +5644,10 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? TOTP TOTP + + Tags + Tagit + &Groups Ryhmät @@ -5007,34 +5692,18 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? &New Database… &Uusi tietokanta… - - Create a new database - Luo uusi tietokanta - &Merge From Database… &Yhdistä tietokannasta… - - Merge from another KDBX database - Yhdistä toisesta KDBX-tietokannasta - &New Entry… &Uusi tietue… - - Add a new entry - Lisää uusi tietue - &Edit Entry… &Muokkaa tietuetta… - - View or edit entry - Katso tai muokkaa tietuetta - &Delete Entry… &Poista tietue… @@ -5043,10 +5712,6 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? &New Group… &Uusi ryhmä… - - Add a new group - Lisää uusi ryhmä - &Edit Group… &Muokkaa ryhmää… @@ -5079,18 +5744,10 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Database &Reports… Tietokannan &raportit... - - Statistics, health check, etc. - Tilastot, kelvollisuuden tarkastus jne. - &Database Settings… &Tietokannan asetukset… - - Database settings - Tietokannan asetukset - &Clone Entry… &Kloonaa tietue… @@ -5099,34 +5756,18 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Move u&p Siirrä &ylös - - Move entry one step up - Siirrä tietue yksi rivi ylemmäs - Move do&wn Siirrä &alas - - Move entry one step down - Siirrä tietue yksi rivi alemmas - Copy &Username Kopioi &käyttäjätunnus - - Copy username to clipboard - Kopioi käyttäjätunnus leikepöydälle - Copy &Password Kopioi &salasana - - Copy password to clipboard - Kopioi salasana leikepöydälle - &Settings &Asetukset @@ -5160,25 +5801,13 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? &Otsikko - Copy title to clipboard - Kopioi nimi leikepöydälle - - - &URL - &URL - - - Copy URL to clipboard - Kopioi osoite leikepöydälle + Copy &URL + Kopioi &URL-osoite &Notes &Muistiinpanot - - Copy notes to clipboard - Kopioi muistiinpanot leikepöydälle - &CSV File… &CSV-tiedosto… @@ -5191,26 +5820,14 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? KeePass 1 Database… KeePass 1 -tietokanta - - Import a KeePass 1 database - Tuo KeePass 1 -tietokanta - 1Password Vault… !Password-holvi... - - Import a 1Password Vault - Tuo 1Password-holvi - CSV File… CSV-tiedosto... - - Import a CSV file - Tuo CSV-tiedosto - Show TOTP Näytä TOTP @@ -5227,6 +5844,10 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Copy &TOTP Kopioi &TOTP + + Copy Password and TOTP + Kopioi salasana ja TOTP + E&mpty recycle bin &Tyhjennä roskakori @@ -5251,10 +5872,6 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? &Online Help &Verkko-ohje - - Go to online documentation - Siirry online-dokumentaatioon - &User Guide &Käyttäjäopas @@ -5299,6 +5916,10 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Classic (Platform-native) Klassinen (käyttöjärjestelmän oma) + + Show Menubar + Näytä työkalupalkki + Show Toolbar Näytä työkalupalkki @@ -5313,7 +5934,7 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Hide Usernames - Piilota käyttäjänimet + Piilota käyttäjätunnukset Hide Passwords @@ -5323,6 +5944,10 @@ Haluatko jatkaa käyttämällä tätä tiedostoa? Clone Group... Kloonaa ryhmä + + &XML File… + &XML-tiedosto… + Clear history Tyhjennä historia @@ -5350,14 +5975,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - VAROITUS: Qt-versiosi voi aiheuttaa KeePassXC:n kaatumisen näytöllä näkyvällä näppäimistöllä! -Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme. + No Tags + Tunnisteita ei ole Restore Entry(s) - + Palauta tietuePalauta tietueet Settings @@ -5383,6 +6006,10 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Quit KeePassXC Sulje KeePassXC + + %1 Entry(s) + %1 tietue%1 tietuetta + Please present or touch your YubiKey to continue… Ole hyvä ja käytä Yubikeyssä jatkaaksesi... @@ -5395,6 +6022,314 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.You must restart the application to apply this setting. Would you like to restart now? Ohjelma täytyy käynnistää uudelleen, jotta asetus voidaan ottaa käyttöön. Haluatko käynnistää uudelleen nyt? + + Allow Screen Capture + Salli kuvankaappaus + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Tuo 1Passwordin 1PUX-tiedosto + + + Import… + Tuo... + + + Passkeys… + Pääsyavaimet... + + + Import Passkey + Tuo pääsyavain + + + Remote S&ync… + Etäs&ynkronointi... + + + Quit Application + Sammuta sovellus + + + Open About Dialog + Avaa tietoja ohjelmasta -dialogi + + + Open Database + Avaa tietokanta + + + Create Database + Luo tietokanta + + + Merge From Database + Yhdistä tietokannasta + + + Create Entry + Luo tietue + + + Edit Entry + Muokkaa tietuetta + + + Delete Entry + Poista tietue + + + Create Group + Luo ryhmä + + + Edit Group + Muokkaa ryhmää + + + Delete Group + Poista ryhmä + + + Download All Favicons + Lataa kaikki faviconit + + + Sort Groups A-Z + Järjestä ryhmät A-Ö + + + Sort Groups Z-A + Järjestä ryhmät Ö-A + + + Save Database As + Tallenna tietokanta nimellä + + + Show Database Security + Näytä tietokannan turvallisuus + + + Show Database Reports + Näytä tietokannan raportit + + + Show Database Settings + Näytä tietokannan asetukset + + + Show Passkeys + pääsyavaimet + + + Clone Entry + Kloonaa tietue + + + Move Entry Up + Siirrä tietue ylös + + + Move Entry Down + Siirrä tietue alas + + + Copy Username + Kopioi käyttäjätunnus + + + Copy Password + Kopioi salasana + + + Show Application Settings + Näytä sovelluksen asetukset + + + Show Password Generator + Näytä salasanageneraattori + + + Remove Passkey From Entry + Poista pääsyavain tietueesta + + + Perform Auto-Type: {USERNAME} + Suorita automaattisyöttö: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Suorita automaattisyöttö: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Suorita automaattisyöttö: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Suorita automaattisyöttö: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Suorita automaattisyöttö: {TOTP} + + + Copy Title + Kopioi otsikko + + + Copy URL + Kopioi URL-osoite + + + Copy Notes + Kopioi muistiinpanot + + + Export to CSV + Vie CSV-tiedostoon + + + Export to HTML + Vie HTML-tiedostoon + + + Import KeePass1 Database + Tuo KeePass1-tietokanta + + + Import 1Password Vault + Tuo 1Password-holvi + + + Import CSV File + Tuo CSV-tiedosto + + + Show TOTP QR Code + Näytä TOTP QR-koodi + + + Set up TOTP + Aseta TOTP + + + Empty Recycle Bin + Tyhjennä roskakori + + + Open Donation Website + Avaa lahjoitussivusto + + + Open Bug Report + Avaa bugiraporttisivusto + + + Open Online Documentation + Avaa online-dokumentaatio + + + Open Keyboard Shortcuts Guide + Avaa pikanäppäinten ohjesivu + + + Save Database Backup + Tallenna tietokannan varmuuskopio + + + SSH Agent: Add Key + SSH-agentti: Lisää avain + + + SSH Agent: Remove Key + SSH-agentti: Poista avain + + + Toggle Compact Mode + Aseta kompakti tila + + + Set Theme: Automatic + Aseta teema: automaattinen + + + Set Theme: Light + Aseta teema: vaalea + + + Set Theme: Dark + Aseta teema: tumma + + + Set Theme: Classic + Aseta teema: klassinen + + + Toggle Show Menubar + Aseta: näytä työkalupalkki + + + Toggle Show Toolbar + Aseta: näytä työkalupalkki + + + Toggle Show Preview Panel + Aseta: näytä esikatselupaneeli + + + Toggle Always on Top + Aseta: aina päällimmäisenä + + + Toggle Hide Usernames + Aseta: piilota käyttäjätunnukset + + + Toggle Hide Passwords + Aseta: piilota salasanat + + + Export to XML + Vie XML-tiedostoon + + + Toggle Allow Screen Capture + Aseta: salli kuvankaappaus + + + Show Group Panel + Näytä ryhmäpaneeli + + + Toggle Show Group Panel + Näytä tai piilota ryhmäpaneeli + + + Setup Remote Sync… + Määritä etäsynkronointi + + + Password Generator + Salasanageneraattori + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5431,11 +6366,11 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme. Reset - + Nollaa Reset any remembered decisions for this application - + Nollaa tälle sovellukselle tallennetut valinnat @@ -5452,26 +6387,6 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Overwriting %1 [%2] Ylikirjoitetaan %1 [%2] - - older entry merged from database "%1" - vanhempi tietue yhdistetty tietokannasta "%1" - - - Adding backup for older target %1 [%2] - Lisätään varmuuskopio vanhemmalle kohteelle %1 [%2] - - - Adding backup for older source %1 [%2] - Lisätään varmuuskopio vanhemmalle lähteelle %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Uudelleensijoitetaan vanhempi kohdetietue uuden lähteen päälle %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Uudelleensijoitetaan vanhempi lähdetietue uuden kohteen päälle %1 [%2] - Synchronizing from newer source %1 [%2] Synkronoidaan uudemmasta lähteestä %1 [%2] @@ -5531,24 +6446,16 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Täällä voit säätää tietokannan salausasetuksia. Voit muokata niitä myöhemmin uudelleen. - - Advanced Settings - Lisäasetukset - - - Simple Settings - Yksinkertaiset asetukset - NewDatabaseWizardPageDatabaseKey Database Credentials - Tietokannan tietueet + Tietokannan tunnistetiedot A set of credentials known only to you that protects your database. - Tietokannan suojelemiseksi tarkoitettu tietueiden ryhmä + Tietokannan suojaukseen määrittämäsi tietueryhmä @@ -5573,6 +6480,25 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Ole hyvä ja täytä tietokantasi nimi ja vapaaehtoinen kuvaus: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Tallenna liite + + + New entry attachment + + + NixUtils @@ -5619,15 +6545,6 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Odotettiin %1 tavua selkotekstiä, löydettiin %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Tietokannan lukeminen ei luonut instanssia -%1 - - OpVaultReader @@ -5701,6 +6618,10 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Unknown cipher: %1 Tuntematon salausalgoritmi: %1 + + AES-256/GCM is currently not supported + AES-256/GCM-salausta ei tällä hetkellä tueta + Passphrase is required to decrypt this key Avaimen purkuun vaaditaan salalause @@ -5765,28 +6686,184 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Unexpected EOF when writing private key Odottamaton EOF yksityistä avainta kirjoittaessa + + (encrypted) + (salattu) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Salasanat eivät täsmää + SSH Key Generator + SSH-avaingeneraattori - Passwords match so far - Salasanat jotka ovat tähän mennessä samoja + Type + Tyyppi - Toggle Password (%1) - Ota salasana käyttöön (%1) + Bits + Bitit - Generate Password (%1) - Luo salasana (%1) + Comment + Kommentti + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Pääsyavaimen vienti - Warning: Caps Lock enabled! - Varoitus: Caps Lock on päällä! + Filenames will be generated with title and .passkey file extension. + Tiedostot luodaan tietueiden nimillä ja .passkey-päätteellä. + + + Export entries + Vie tietueet + + + Export Selected + Vie valitut + + + Cancel + Peruuta + + + Export to folder + Vie kansioon + + + Export the following passkey entries. + Vie seuraavat pääsyavaintietueet. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Pääsyavaimen vienti + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Tiedosto "%1.passkey" on jo olemassa. +haluatko korvata sen? + + + + Cannot open file + Tiedoston avaus ei onnistu + + + Cannot open file "%1" for writing. + Tiedoston "%1" avaus muokattavaksi ei onnistu. + + + Cannot write to file + Tiedostoa ei voida tallentaa + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Pääsyavaimen vienti + + + Username: %1 + Käyttäjätunnus: %1 + + + Group + Ryhmä + + + Database + Tietokanta + + + Import Passkey + Tuo pääsyavain + + + Import + Tuo + + + Cancel + Peruuta + + + Entry + Tietue + + + Create new entry + Luo uusi tietue + + + Relying Party: %1 + Välittävä osapuoli: %1 + + + Import the following passkey: + Tuo seuraava pääsyavain: + + + Import the following passkey to this entry: + Tuo seuraava pääsyavain tähän tietueeseen: + + + Default passkeys group (Imported Passkeys) + Pääsyavainten oletusryhmä (Tuodut pääsyavaimet) + + + + PasskeyImporter + + Passkey file + Pääsyavaintiedosto + + + All files + Kaikki tiedostot + + + Cannot open file + Tiedoston avaus ei onnistu + + + Cannot open file "%1" for reading. + Tiedoston "%1" luku ei onnistu. + + + Open passkey file + Avaa pääsyavaintiedosto + + + Cannot import passkey + Pääsyavainta ei voitu tuoda + + + Cannot import passkey file "%1". Data is missing. + Pääsyavaintiedostoa "%1" ei voitu tuoda. Tietoja puuttuu. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Pääsyavaintiedostoa ei voida tuoda "%1". +Seuraavat tiedot puuttuvat: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Pääsyavaintiedostoa ei voida tuoda "%1". Yksityinen avain puuttuu tai on virheellinen. @@ -5967,10 +7044,6 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Also choose from: Valitse myös: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Poissuljetut kirjaimet: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Poissulje samannäköiset merkit @@ -5995,10 +7068,6 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Word Count: Sanamäärä: - - Character Count: - Merkkien lukumäärä: - Word Case: Aakkoslaji: @@ -6011,10 +7080,6 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Add custom wordlist Lisää mukautettu sanalista - - character - merkki - Close Sulje @@ -6051,6 +7116,30 @@ Suosittelemme, että käytät AppImagea, jonka voit hakea lataussivustoltamme.Entropy: %1 bit Entropia: %1 bit + + Password Quality: %1 + Salasanan laatu: %1 + + + Poor + Password quality + Huono + + + Weak + Password quality + Heikko + + + Good + Password quality + Hyvä + + + Excellent + Password quality + Erinomainen + Confirm Delete Wordlist Vahvista sanalistan poisto @@ -6098,8 +7187,47 @@ Haluatko ylikirjoittaa sen? Erikoismerkit - Password Quality: %1 - Salasanan laatu: %1 + passwordLength + salasanan pituus + + + Characters: %1 + Krijaimia: %1 + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Pois suljetut merkit: ”0”, ”1”, ”l”, ”I”, ”O”, ”|”, ”﹒”, ”B”, ”8”, ”G”, ”6” + + + + PasswordWidget + + Passwords do not match + Salasanat eivät täsmää + + + Passwords match so far + Salasanat jotka ovat tähän mennessä samoja + + + Toggle Password (%1) + Ota salasana käyttöön (%1) + + + Generate Password (%1) + Luo salasana (%1) + + + Warning: Caps Lock enabled! + Varoitus: Caps Lock on päällä! + + + Quality: %1 + Laatu: %1 Poor @@ -6121,6 +7249,10 @@ Haluatko ylikirjoittaa sen? Password quality Erinomainen + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Kytke salasanan näyttö Ctrl+H-näppäinyhdistelmällä. Avaa salasanageneraattori painamalla Ctrl+G. + PickcharsDialog @@ -6137,6 +7269,21 @@ Haluatko ylikirjoittaa sen? Paina &Tab merkkien välillä + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6175,6 +7322,10 @@ Haluatko ylikirjoittaa sen? Continue Jatka + + Continue with weak password + Jatka heikolla salasalanalla + QObject @@ -6256,7 +7407,7 @@ Haluatko ylikirjoittaa sen? Username for the entry. - Tietueen käyttäjänimi. + Tietueen käyttäjätunnus. username @@ -6568,6 +7719,10 @@ Haluatko ylikirjoittaa sen? Too many arguments provided. Liian monta argumenttia annettu + + Path of the database. + Tietokannan polku. + Target decryption time in MS for the database. Kohteen salauksen purkuun kuluva aika millisekunneissa tietokannalle. @@ -6588,10 +7743,6 @@ Haluatko ylikirjoittaa sen? Create a new database. Luo uusi tietokanta. - - Path of the database. - Tietokannan polku. - Invalid decryption time %1. Virheellinen salauksen purun aika %1. @@ -6636,6 +7787,158 @@ Haluatko ylikirjoittaa sen? Successfully created new database. Luotiin onnistuneesti uusi tietokanta. + + Unset the password for the database. + Poista tietokannan salasanamääritys. + + + Unset the key file for the database. + Poista tietokannan avaintiedostomääritys. + + + Edit a database. + Muokkaa tietokantaa. + + + Cannot use %1 and %2 at the same time. + Näitä ei voida käyttää samanaikaisesti: %1 ja %2. + + + Could not change the database key. + Tietokannan avaintiedostoa ei voitu vaihtaa. + + + Database was not modified. + Tietokantaa ei muokattu. + + + Writing the database failed: %1 + Tietokannan kirjoittaminen epäonnistui: %1 + + + Successfully edited the database. + Tietokantaa muokattiin. + + + Cannot remove password: The database does not have a password. + Salasanamääritystä ei voida poistaa: tietokannalla ei ole salasanaa. + + + Cannot remove file key: The database does not have a file key. + Avaintiedostomääritystä ei voida poistaa: tietokannalla ei ole avaintiedostoa. + + + Loading the new key file failed: %1 + Uuden avaintiedoston lataus epäonnistui: %1 + + + Found unexpected Key type %1 + Löytyi odottamaton avaintyyppi %1 + + + Cannot remove all the keys from a database. + Tietokannan kaikkia avaimia ei voida poistaa. + + + Show a database's information. + Näytä tietokannan tiedot. + + + UUID: + UUID: + + + Name: + Nimi: + + + Description: + Kuvaus: + + + Cipher: + Salaus: + + + KDF: + KDF: + + + Recycle bin is enabled. + Roskakori on otettu käyttöön. + + + Recycle bin is not enabled. + Roskakori ei ole käytössä. + + + Location + Sijainti + + + Database created + Tietokanta luotu + + + Last saved + Viimeksi tallennettu + + + Unsaved changes + Tallentamattomia muutoksia + + + yes + kyllä + + + no + ei + + + Number of groups + Ryhmien määrä + + + Number of entries + Tietueiden lukumäärä + + + Number of expired entries + Vanhentuneiden tietueiden lukumäärä + + + Unique passwords + Yksilöllisiä salasanoja + + + Non-unique passwords + Ei-yksilöllisiä salasanoja + + + Maximum password reuse + Maksimimäärä samoja salasanoja + + + Number of short passwords + Lyhyiden salasanojen määrä + + + Number of weak passwords + Heikkojen salasanojen määrä + + + Entries excluded from reports + Tietueet jotka on poissuljettu raporteista + + + Average password length + Salasanan keskimääräinen pituus + + + %1 characters + %1 merkkiä + Word count for the diceware passphrase. Sanamäärä noppaware-salalauseelle. @@ -6659,10 +7962,6 @@ Haluatko ylikirjoittaa sen? Invalid word count %1 Väärä sanamäärä %1 - - The word list is too small (< 1000 items) - Sanalista on liian pieni (< 1000 sanaa) - Title for the entry. Tietueen nimi @@ -6687,10 +7986,6 @@ Haluatko ylikirjoittaa sen? Enter new password for entry: Anna tietueelle uusi salasana: - - Writing the database failed: %1 - Tietokannan kirjoittaminen epäonnistui: %1 - Successfully edited entry %1. Tietuetta %1 muokattiin onnistuneesti. @@ -6811,10 +8106,6 @@ Haluatko ylikirjoittaa sen? Exit interactive mode. Poistu interaktiivisesta tilasta. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Viennissä käytettävä formaatti. Mahdolliset vaihtoehdot ovat 'xml' tai 'csv'. Oletus on 'xml'. - Exports the content of a database to standard output in the specified format. Vie tietokannan sisällön standardiin tulosteeseen (stdout) halutussa formaatissa. @@ -6915,106 +8206,6 @@ Haluatko ylikirjoittaa sen? Successfully imported database. Tietokanta tuotiin onnistuneesti. - - Show a database's information. - Näytä tietokannan tiedot. - - - UUID: - UUID: - - - Name: - Nimi: - - - Description: - Kuvaus: - - - Cipher: - Salaus: - - - KDF: - KDF: - - - Recycle bin is enabled. - Roskakori on otettu käyttöön. - - - Recycle bin is not enabled. - Roskakori ei ole käytössä. - - - Location - Sijainti - - - Database created - Tietokanta luotu - - - Last saved - Viimeksi tallennettu - - - Unsaved changes - Tallentamattomia muutoksia - - - yes - kyllä - - - no - ei - - - Number of groups - Ryhmien määrä - - - Number of entries - Tietueiden lukumäärä - - - Number of expired entries - Vanhentuneiden tietueiden lukumäärä - - - Unique passwords - Yksilöllisiä salasanoja - - - Non-unique passwords - Ei-yksilöllisiä salasanoja - - - Maximum password reuse - Maksimimäärä samoja salasanoja - - - Number of short passwords - Lyhyiden salasanojen määrä - - - Number of weak passwords - Heikkojen salasanojen määrä - - - Entries excluded from reports - Tietueet jotka on poissuljettu raporteista - - - Average password length - Salasanan keskimääräinen pituus - - - %1 characters - %1 merkkiä - Unknown command %1 Tuntematon komento %1 @@ -7063,7 +8254,7 @@ Käytettävissä olevat komennot: Use the same credentials for both database files. - Käytä samoja tilitietoja molemmille tietokantatiedostoille. + Käytä samoja tunnistetietoja molemmille tietokantatiedostoille. Key file of the database to merge from. @@ -7187,6 +8378,10 @@ Käytettävissä olevat komennot: Show the protected attributes in clear text. Näytä suojatut attribuutit selkotekstinä. + + Show all the attributes of the entry. + Näytä tietueen kaikki attribuutit. + Show the attachments of the entry. Näytä tietueen liitteet. @@ -7257,6 +8452,10 @@ Ole hyvä ja harkitse uuden avaintiedoston luomista. Invalid YubiKey serial %1 Virheellinen Yubikeyn serial %1 + + Please present or touch your YubiKey to continue. + Jatka kytkemällä YubiKey-avaimesi tai koskettamalla sitä. + Enter password to encrypt database (optional): Syötä salasana salataksesi tietokannan (valinnainen): @@ -7405,7 +8604,7 @@ Ydin: %3 %4 Quick Unlock - Nopea lukituksen avaus + Pika-avaus Secret Service Integration @@ -7444,8 +8643,8 @@ Ydin: %3 %4 %1 minuutti%1 minuuttia - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan-kirjaston täytyy olla vähintään versio 2.11.x. Löydettiin versio %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan-kirjaston tulee olla ainakin %1, löytyi %2.%3.%4 Cryptographic libraries: @@ -7495,18 +8694,6 @@ Ydin: %3 %4 file empty tyhjä tiedosto - - malformed string - Viallinen merkkijono - - - missing closing quote - lainausmerkki puuttuu lopusta - - - %1: (row, col) %2,%3 - %1: (rivi, sarake) %2,%3 - AES 256-bit AES 256-bit @@ -7685,14 +8872,6 @@ Ydin: %3 %4 read password of the database from stdin lue tietokannan salasana stdin:istä - - allow app screen recordering and screenshots - salli sovelluksen näytön tallentaminen ja ruudunkaappaukset - - - Locked databases. - Lukitut tietokannat. - Database failed to lock. Tietokannan lukitus ei onnistunut. @@ -7701,6 +8880,10 @@ Ydin: %3 %4 Another instance of KeePassXC is already running. Toinen KeePassXC-instanssi on jo käynnissä. + + KeePassXC is not running. No open database to lock + KeePassXC ei ole käynnissä. Avoimia, lukittavia tietokantoja ei ole. + Fatal error while testing the cryptographic functions. Vakava virhe kryptografisia toimintoa testattaessa. @@ -7709,10 +8892,6 @@ Ydin: %3 %4 KeePassXC - Error KeePassXC - Virhe - - Warning: Failed to prevent screenshots on a top level window! - Varoitus: Ruudunkaappauksia ylimmän tason ikkunalla ei voitu estää! - Database password: Tietokannan salasana: @@ -7736,9 +8915,313 @@ Ydin: %3 %4 Vastauksen allekirjoitus Windows Hellolle epäonnistui - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Varoitus: Kuvankaappauksen esto ylätason ikkunasta epäonnistui. + + + Invalid Cipher + Virheellinen salakirjoitus + + + Invalid KDF + Virheellinen KDF + + + Access to all entries is denied + Kaikkien tiedoeiden käyttö on estetty + + + allow screenshots and app recording (Windows/macOS) + salli kuvankaappaukset ja sovelluksen tallennus (Windows/macOS). + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Aseta tietokannan avaintiedosto. +Asetus on vanhentunut, käytä sen sijaan "--set-key-file" -määritystä. + + + Databases have been locked. + Tietokannat on lukittu. + + + Attestation not supported + Todennusta ei tueta + + + Credential is excluded + Tietuetta on rajoitettu + + + Passkeys request canceled + Pääsyavainpyyntö peruttiin + + + Invalid user verification + Virheellinen käyttäjävahvistus + + + Empty public key + Tyhjä julkinen avain + + + Invalid URL provided + Ilmoitettu URL-osoite ei kelpaa + + + Passkeys + Pääsyavaimet + + + AES initialization failed + AES-alustus epäonnistui + + + AES encrypt failed + AES-salaus epäonnistui + + + Failed to store in Linux Keyring + Tallennus Linux-avainrenkaaseen epäonnistui + + + Polkit returned an error: %1 + Polkit palautti virheen: %1 + + + Could not locate key in keyring + Avainta ei löytynyt avainrenkaasta + + + Could not read key in keyring + Avainta ei voitu lukea avainrenkaasta + + + AES decrypt failed + AES-salauksen purku epäonnistui + + + No Polkit authentication agent was available + Polkit-todennusagenttia ei ollut käytettävissä + + + Polkit authorization failed + Polkit-todennus epäonnistui + + + No Quick Unlock provider is available + Pika-avaustapoja ei ole käytettävissä + + + Failed to init KeePassXC crypto. + KeePassXC-kryptauksen alustus epäonnistui + + + Failed to encrypt key data. + Avaindatan salaus epäonnistui + + + Failed to get Windows Hello credential. + Windows Hello -valtuutuksen hakeminen epäonnistui + + + Failed to decrypt key data. + Avaindatan salauksen avaus epäonnistui. + + + Origin is empty or not allowed + Alkuperä on tyhjä tai ei sallittu + + + Effective domain is not a valid domain + Verkkotunnus ei ole validi + + + Origin and RP ID do not match + Alkuperä tai RP ID eivät ole samat + + + No supported algorithms were provided + Tuettuja algoritmeja ei annettu + + + Wait for timer to expire + Odotetaan ajastimen loppumista + + + Challenge is shorter than required minimum length + Challenge on lyhyempi kuin vaadittu pituus + + + user.id does not match the required length + user.id:n pituus ei täytä vaatimuksia + + + Favorite + Tag for favorite entries + Suosikki + + + File does not exist. + Tiedostoa ei ole. + + + Cannot open file: %1 + Tiedostoa ei voitu avata: %1 + + + Cannot parse file: %1 at position %2 + Tiedostoa: %1 ei voitu jäsentää kohdassa %2 + + + Failed to decrypt json file: %1 + JSON-tiedoston salauksen purkaminen epäonnistui: %1 + + + Invalid encKeyValidation field + Virheellinen encKeyValidation-kenttä + + + Invalid cipher list within encKeyValidation field + Virheellinen salauslista encKeyValidation-kentän sisällä + + + Wrong password + Väärä salasana + + + Invalid encrypted data field + Virheellisesti salattu tietokenttä + + + Invalid cipher list within encrypted data field + Virheellinen salauslista salatun tietokentän sisällä + + + Cannot initialize cipher + Salauksen initialisointi epäonnistui + + + Cannot decrypt data + Salauksen purku epäonnistui + + + Bitwarden Import + Bitwarden-tuonti + + + Archived + Tag for archived entries + Arkistoitu + + + Invalid 1PUX file format: Not a valid ZIP file. + Virheellinen 1PUX-tiedostomuoto: virheellinen ZIP-tiedosto. + + + Invalid 1PUX file format: Missing export.data + Virheellinen 1PUX-tiedosto: export.data puuttuu + + + 1Password Import + 1Password-tuonti + + + Enter Shortcut + Lisää pikanäppäin + + + Action + Toiminto + + + Shortcuts + Pikanäppäimet + + + Unknown passkeys error + Tuntematon pääsyavainvirhe + + + Invalid KDF iterations, cannot decrypt json file + Virheellinen KDF-iteraation. JSON-tiedostoa ei voitu purkaa. + + + Unsupported format, ensure your Bitwarden export is password-protected + Tiedostomuoto ei ole tuettu. Varmista, että Bitwarden-tiedostosi on salasanasuojattu. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Vain PBKDF ja Argon2 ovat tuettuja. JSON-tiedostoa ei voitu purkaa. + + + Reset Shortcuts + Nollaa pikanäppäimet + + + Double click an action to change its shortcut + Tuplaklikkaa toimintoa vaihtaaksesi sen pikanäppäintä + + + Filter... + Suodata... + + + Shortcut Conflict + Pikanäppäimen ristiriita + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Pikanäppäin %1 on ristiriidassa '%2' kanssa. Ylikirjoita pikanäppäin? + + + Cannot generate valid passphrases because the wordlist is too short + Salalausetta ei voitu luoda, sillä sanalista on liian lyhyt. + + + Encrypted files are not supported. + Salattuja tiedostoja ei tueta. + + + Proton Pass Import + Proton Pass -tuonti + + + Delete plugin data? + Poista liitännäistiedot? + + + Delete plugin data from Entry(s)? + Poista liitännäistiedot tietueesta?Poista liitännäistiedot tietueista? + + + Passkey + Pääsyavain + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tagit + QtIOCompressor @@ -7774,20 +9257,39 @@ Ydin: %3 %4 Sisäinen zlib-virhe: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Komento '%1' ei suoritutunut määritetyssä ajassa. Prosessi tuhottiin. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Yhdistetyn tietokannan lähetys epäonnistui. Komento '%1' ei suoriutunut määritetyssä ajassa. Prosessi tuhottin. + + + Invalid download parameters provided. + Väärät latausparametrit. + + + Command `%1` failed to download database. + Komento '%1' epäonnistui tietokannan lataamisessa. + + + Invalid database pointer or upload parameters provided. + Virheellinen tietokannan osoitin, tai lähetyksen parametrit. + + + Command `%1` exited with status code: %2 + Komento '%1' suoriutui paluuarvolla: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Yhdistetyn tietokannan lähetys epäonnistui. Komento '%1' loppui paluuarvolla: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Piilota vanhentuneet tietueet raportista - - - Show only entries which have URL set - Näytä vain tietueet joilla on URL - - - Show only entries which have browser settings in custom data - Näytä vain tietueet joilla on selaimen tallentamia asetuksia - Double-click entries to edit. Tuplaklikkaa tietuetta muokataksesi @@ -7852,44 +9354,53 @@ Ydin: %3 %4 Exclude from reports Poissulje raporteista + + Expire Entry(s)… + + + + Only show entries that have a URL + Näytä vain URL-osoitteen sisältävät tietueet + + + Only show entries that have been explicitly allowed or denied + Näytä vain tietueet, jotka on erikseen sallittu tai estetty + + + Show expired entries + Näytä erääntyneet tietueet + + + (Expired) + (erääntynyt) + + + Delete plugin data from Entry(s)… + Poista liitännäistiedot tietueesta…Poista liitännäistiedot tietueista… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Piilota vanhentuneet tietueet raportista + Show expired entries + Näytä erääntyneet tietueet - Also show entries that have been excluded from reports - Näytä myös ne tietueet jotka on poissuljettu raporteista + (Expired) + (erääntynyt) Hover over reason to show additional details. Double-click entries to edit. Siirrä kursori syyn päälle nähdäksesi lisätietoja. Tuplaklikkaa tietueita muokataksesi niitä. - - Bad - Password quality - Paha - Bad — password must be changed Paha - salasana on vaihdettava - - Poor - Password quality - Huono - Poor — password should be changed Heikko - salasana on vaihdettava - - Weak - Password quality - Heikko - Weak — consider changing the password Heikohko - salasana on vaihdettava @@ -7938,6 +9449,14 @@ Ydin: %3 %4 Exclude from reports Poissulje raporteista + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Näytä tietueet, joita ei sisällytetä raportteihin. + ReportsWidgetHibp @@ -8033,6 +9552,77 @@ Ydin: %3 %4 Exclude from reports Poissulje raporteista + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Vie + + + Import + Tuo + + + List of entry URLs + Lista tietueen URL:istä + + + Title + Otsikko + + + Path + Polku + + + Username + Käyttäjätunnus + + + URLs + URL:t + + + Edit Entry… + Muokkaa tietuetta... + + + Delete Entry(s)… + Poista tietue...Poista tietueet... + + + Relying Party + Välittävät taho + + + Show expired entries + Näytä erääntyneet tietueet + + + (Expired) + (erääntynyt) + + + Export Confirmation + Viennin vahvistus + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Pääsyavaintiedosto on altis varkauksille ja väärinkäyttöön, jos sitä ei suojata. Oletko varma, että haluat jatkaa? + + + Please wait, list of entries with passkeys is being updated… + Odota kun pääsyavaintietueiden lista päivittyy... + + + No entries with passkeys. + Pääsyavaimia sisältäviä tietueita ei ole. + ReportsWidgetStatistics @@ -8207,6 +9797,14 @@ Ydin: %3 %4 No agent running, cannot list identities. Agentti ei ole päällä, tunnisteita ei voi listata. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8273,6 +9871,10 @@ Ydin: %3 %4 Search Help Etsi apua + + Save Search + Tallenna haku + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8347,34 +9949,10 @@ Ydin: %3 %4 Confirm when passwords are retrieved by clients Näytä ilmoitus, kun salasanat ovat vastaanotettu asiakkaan toimesta - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Tämä asetus -ei ylikirjoita roskakorin pois asettamisen kyselyä</span></p></body></html> - - Confirm when clients request entry deletion Näytä varmistus, kun asiakkaat pyytävät tietueen poistoa - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Tämä parantaa yhteensopivuutta joidenkin ohjelmien kanssa, -jotka etsivät salasanoja ilman tietokannan avaamista etukäteen.</p><p>Tämän päälle laittaminen saattaa myös -kaataa asiakkaan, mikäli tietokantaa ei voitu avata tiettyyn aikaan mennessä. (Yleensä 25 sekuntia, -mutta arvo voi vaihdella ohjelmasta riippuen.)</p></body></html> - - Prompt to unlock database before searching Kehota avaamaan tietokannan lukitus ennen hakua @@ -8399,6 +9977,14 @@ mutta arvo voi vaihdella ohjelmasta riippuen.)</p></body></html&g Save current changes to activate the plugin and enable editing of this section. Tallenna tämän hetkiset muutokset aktivoidaksesi laajennus ja salliaksesi tämä osa-alueen muokkaamisen. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Tämä asetus ei ylikirjoita roskakorin ilmoitusten poistamista</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Tämä parantaa yhteensopivuutta joidenkin ohjelmien kanssa, jotka etsivät salasanoja ilman tietokannan avaamista etukäteen.</p><p>Tämän päälle laittaminen saattaa myös kaataa asiakkaan, mikäli tietokantaa ei voitu avata tiettyyn aikaan mennessä. (Yleensä 25 sekuntia, mutta arvo voi vaihdella ohjelmasta riippuen.)</p></body></html> + SettingsWidgetKeeShare @@ -8507,8 +10093,12 @@ mutta arvo voi vaihdella ohjelmasta riippuen.)</p></body></html&g TagModel - All - Kaikki + Clear Search + Tyhjennä haku + + + All Entries + Kaikki tietueet Expired @@ -8519,6 +10109,25 @@ mutta arvo voi vaihdella ohjelmasta riippuen.)</p></body></html&g Heikot salasanat + + TagView + + Remove Search + Poista haku + + + Remove Tag + Poista tunniste + + + Confirm Remove Tag + Vahvista tunnisteen poisto + + + Remove tag "%1" from all entries in this database? + Poistetaanko tunniste "%1" tietokannan kaikilta tietueilta? + + TotpDialog @@ -8676,26 +10285,6 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Aloita salasanojesi turvallinen tallentaminen KeePassXC-tietokantaan - - Create new database - Luo uusi tietokanta - - - Open existing database - Avaa tietokanta - - - Import from KeePass 1 - Tuo KeePass 1 -tietokanta - - - Import from 1Password - Tuo 1Passwordista - - - Import from CSV - Tuo CSV-tiedostosta - Recent databases Viimeisimmät tietokannat @@ -8708,6 +10297,18 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Tervetuloa KeePassXC:n versioon %1 + + Create Database + Luo tietokanta + + + Open Database + Avaa tietokanta + + + Import File + Tuo tiedosto + WinUtils @@ -8724,31 +10325,8 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Yleistä pikanäppäintä ei voitu rekisteröidä - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC-kryptauksen alustus epäonnistui - - - Failed to encrypt key data. - Avaindatan salaus epäonnistui - - - Failed to get Windows Hello credential. - Windows Hello -valtuutuksen hakeminen epäonnistui - - - Failed to decrypt key data. - Avaindatan salauksen avaus epäonnistui. - - YubiKey - - %1 No interface, slot %2 - %1 Ei liitäntää, paikka %2 - General: Yleiset: @@ -8760,14 +10338,6 @@ Esimerkiksi: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Uudista laitetunnisteet - - - Refresh - Päivitä - Hardware key slot selection Laiteavaimen paikan valinta @@ -8800,10 +10370,6 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Haaste-vastaus asetettu, klikkaa muuttaaksesi tai poistaaksesi - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Jos omistat <a href="https://www.yubico.com/">YubiKey:n</a> tai <a href="https://onlykey.io">OnlyKey:n</a>, voit käyttää sitä lisäturvakeinona.</p><p>Avain vaatii yhden paikan asettamista <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 haaste-vastaukseksi</a>.</p> - Detecting hardware keys… Etsitään laiteavaimia... @@ -8812,28 +10378,25 @@ Esimerkiksi: JBSWY3DPEHPK3PXP No hardware keys detected Laiteavaimia ei havaittu - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Virheellinen paikka määritetty - %2 + Refresh hardware keys + Uudista laiteavaimet + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Jos sinulla on <a href="https://www.yubico.com/">YubiKey</a> tai <a href="https://onlykey.io">OnlyKey</a>, sitä voi käyttää lisäturvaksi</p><p>Avain vaatii, että yksi sen kentistä ohjelmoidaan <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>-ohjelmalla.</p> + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Haaste-vastaus - Paikka %3 - The YubiKey PCSC interface has not been initialized. Yubikey:n PCSC-käyttöliittymää ei ole alustettu. - - Hardware key is currently in use. - Laiteavain on käytössä. - Could not find or access hardware key with serial number %1. Please present it to continue. Laiteavainta sarjanumerolla %1 ei löydetty. Ole hyvä ja liitä se jatkaaksesi. @@ -8850,6 +10413,21 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Haaste-vastauksen valmistuminen epäonnistui PCSC:n virheellä: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Paikka %3, %4 + + + Press + USB Challenge-Response Key interaction request + Paina + + + Passive + USB Challenge-Response Key no interaction required + Passiivi + YubiKeyInterfaceUSB @@ -8857,14 +10435,6 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Unknown Tuntematon - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Asetettu paikka - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Haaste-vastaus - Paikka %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8879,10 +10449,6 @@ Esimerkiksi: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. Yubikey:n USB-käyttöliittymää ei ole alustettu. - - Hardware key is currently in use. - Laiteavain on käytössä. - Could not find hardware key with serial number %1. Please plug it in to continue. Laiteavainta sarjanumerolla %1 ei löydetty. Ole hyvä ja liitä se jatkaaksesi. @@ -8899,5 +10465,15 @@ Esimerkiksi: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Haaste-vastauksen valmistuminen epäonnistui virheellä: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Paikka %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Paikka %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_fil.ts b/share/translations/keepassxc_fil.ts new file mode 100644 index 000000000..e88a55c8d --- /dev/null +++ b/share/translations/keepassxc_fil.ts @@ -0,0 +1,10467 @@ + + + AboutDialog + + About KeePassXC + Tungkol sa KeePassXC + + + About + Tungkol + + + Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> + Mag-ulat ng mga bug sa: <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. + Ang KeePassXC ay ipinamamahagi sa ilalim ng mga tuntunin ng GNU General Public License (GPL) na bersyon 2 o (sa iyong opsyon) na bersyon 3. + + + Project Maintainers: + Mga Tagapanatili ng Proyekto: + + + Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. + Espesyal na pasasalamat mula sa team ng KeePassXC pumunta sa debfx para sa paglikha ng orihinal na KeePassX. + + + Contributors + Mga contributor + + + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Tingnan ang Mga Kontribusyon sa GitHub</a> + + + Debug Info + Debug Info + + + Include the following information whenever you report a bug: + Isama ang sumusunod na impormasyon sa tuwing mag-uulat ka ng bug: + + + Copy to clipboard + Kopyahin sa clipboard + + + + AccessControlDialog + + KeePassXC - Access Request + KeePassXC - Kahilingan sa Pag-access + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Hindi umiiral/hindi ma-access na maipapatupad na landas. Pakitingnan muli kung legit ang kliyente. + + + <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>ay humihiling ng access sa mga sumusunod na entry:</p></body></html> + + + Name + Pangalan + + + PID + PID + + + Executable + Executable + + + Command Line + Command Line + + + Details + Mga Detalye + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Ang desisyon mo ay tatandaan sa tagal habang ang humihiling na client AT KeePassXC ay tumatakbo. + + + Remember + Tandaan + + + Allow Selected + Payagan ang Napili + + + Deny All && Future + I-deny Lahat && Future + + + Allow All && &Future + Payagan Lahat && &Future + + + + AccessControlDialog::DenyButton + + Deny for this program + Tanggihan para sa programang ito + + + + AgentSettingsWidget + + Enable SSH Agent integration + I-enable ang pagsasama ng SSH Agent + + + Use Pageant + Gamitin ang Pageant + + + Use OpenSSH + Gamitin ang OpenSSH + + + Use both agents + Gamitin ang parehong mga agent + + + SSH_AUTH_SOCK override + Override ng SSH_AUTH_SOCK + + + SSH_AUTH_SOCK value + Value ng SSH_AUTH_SOCK + + + (empty) + (walang laman) + + + SSH_SK_PROVIDER value + Value ng SSH_SK_PROVIDER + + + SSH_SK_PROVIDER override + I-override ang SSH_SK_PROVIDER + + + No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. + Walang available na socket ng SSH Agent. Alinman ay tiyaking may SSH_AUTH_SOCK environment variable o magtakda ng override. + + + SSH Agent connection is working! + Gumagana ang koneksyon ng SSH Agent! + + + + ApplicationSettingsWidget + + Application Settings + Mga Application Setting + + + General + Pangkalahatan + + + Security + Security + + + This setting cannot be enabled when minimize on unlock is enabled. + Hindi maaaring i-enable ang setting na ito kapag na-enable ang pag-minimize ng pag-unlock. + + + Access error for config file %1 + Error sa pag-access para sa config file na %1 + + + Icon only + Icon lamang + + + Text only + Text lamang + + + Text beside icon + Text sa tabi ng icon + + + Text under icon + Text sa ilalim ng icon + + + Follow style + Sundin ang istilo + + + Monochrome + Monochrome + + + Monochrome (light) + Monochrome (light) + + + Monochrome (dark) + Monochrome (dark) + + + Colorful + Makulay + + + You must restart the application to set the new language. Would you like to restart now? + You must restart the application to set the new language. Would you like to restart now? + + + Select backup storage directory + Piliin ang direktoryo ng backup na storage + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + + + + ApplicationSettingsWidgetGeneral + + Basic Settings + Mga Pangunahing Setting + + + Startup + Magsimula + + + Start only a single instance of KeePassXC + Magsimula lamang ng isang halimbawa ng KeePassXC + + + Automatically launch KeePassXC at system startup + Awtomatikong i-launch ang KeePassXC sa pagsisimula ng system + + + Minimize window at application startup + I-minimize ang window sa pagsisimula ng application + + + Minimize window after unlocking database + I-minimize ang window pagkatapos i-unlock ang database + + + Remember previously used databases + Tandaan ang mga dating ginamit na database + + + recent files + kamakailang mga file + + + Load previously open databases on startup + Mag-load ng mga dating bukas na database sa pagsisimula + + + Remember database key files and security dongles + Tandaan ang mga key file at security dongle ng database + + + Check for updates at application startup once per week + Tingnan para sa mga update sa startup ng application isang beses bawat linggo + + + Include beta releases when checking for updates + Isama ang mga nilabas na beta kapag tumitingin ng mga update + + + File Management + Pamamahala ng File + + + Automatically save after every change + Awtomatikong i-save pagkatapos ng bawat pagbabago + + + Automatically save when locking database + Awtomatikong maisi-save kapag nag-lock ng database + + + Automatically save non-data changes when locking database + Awtomatikong maisi-save ang non-data na mga pagbabago kapag nag-lock ng database + + + Automatically reload the database when modified externally + Awtomatikong i-reload ang database kapag binago sa panlabas + + + Backup database file before saving + I-backup ang database file bago i-save + + + {DB_FILENAME}.old.kdbx + {DB_FILENAME}.old.kdbx + + + Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) + Gumamit ng alternatibong paraan ng pag-save (maaaring malutas ang mga problema sa Dropbox, Google Drive, GVFS, atbp.) + + + Temporary file moved into place + Naisalugar ang pansamantalang file + + + Directly write to database file (dangerous) + Direktang sumulat sa database file (mapanganib) + + + Entry Management + Pamamahala ng Entry + + + Use group icon on entry creation + Gumamit ng icon ng grupo sa paggawa ng entry + + + Minimize when opening a URL + I-minimize kapag nagbubukas ng URL + + + Hide window when copying to clipboard + Itago ang window kapag kumukopya sa clipboard + + + Minimize + I-minimize + + + Drop to background + I-drop sa background + + + Favicon download timeout: + Timeout sa pag-download ng Favicon: + + + Website icon download timeout in seconds + Nag-timeout sa pag-download ng icon ng website sa ilang segundo + + + sec + Seconds + seg + + + User Interface + User Interface + + + Toolbar button style + Estilo ng button ng toolbar + + + Movable toolbar + Naigagalaw na toolbar + + + Language selection + Pagpili ng wika + + + Language: + Wika: + + + (restart program to activate) + (i-restart ang program para i-activate) + + + Toolbar button style: + Estilo ng button ng toolbar: + + + Show passwords in color + Ipakita ang mga password sa kulay + + + Use monospaced font for notes + Gumamit ng monospaced na font para sa mga tala + + + Minimize instead of app exit + I-minimize sa halip na i-exit ang app + + + Show a system tray icon + Ipakita ang system tray icon + + + Tray icon type + Uri ng tray icon + + + Tray icon type: + Uri ng tray icon: + + + Hide window to system tray when minimized + Itago ang window sa system tray kapag pinaliit + + + Reset settings to default… + I-reset ang mga setting sa default… + + + Auto-Type + Auto-Type + + + Use entry title to match windows for global Auto-Type + Gumamit ng pamagat ng entry para tumugma sa mga window para sa pandaigdigang Auto-Type + + + Use entry URL to match windows for global Auto-Type + Gumamit ng entry URL para tumugma sa mga window para sa pandaigdigang Auto-Type + + + Always ask before performing Auto-Type + Palaging magtanong bago isagawa ang Auto-Type + + + Hide expired entries from Auto-Type + Itago ang mga nag-expire na entry mula sa Auto-Type + + + Re-lock previously locked database after performing Auto-Type + Muling i-lock ang dating naka-lock na database pagkatapos magsagawa ng Auto-Type + + + Auto-Type start delay: + Auto-Type simulan ang pagkaantala: + + + Global Auto-Type shortcut: + Global Auto-Type na shortcut: + + + Auto-type start delay milliseconds + Auto-type na simulan ang pagkaantala ng millisecond + + + ms + Milliseconds + ms + + + Auto-Type typing delay: + Auto-Type na pagkaantala sa pag-type: + + + Global auto-type shortcut + Global auto-type na shortcut + + + Auto-type character typing delay milliseconds + Auto-type na pagkaantala ng pag-type ng character sa millisecond + + + Remember last typed entry for: + Tandaan ang huling na-type na entry para sa: + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + araw + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + + + + ApplicationSettingsWidgetSecurity + + Timeouts + Mga timeout + + + Database lock timeout seconds + Mga segundo ng lock timeout ng database + + + sec + Seconds + seg + + + Clear clipboard after + I-clear ang clipboard pagkatapos + + + Clear search query after + I-clear ang query sa paghahanap pagkatapos + + + min + Minutes + min + + + Clipboard clear seconds + I-clear ang clipboard ng segundo + + + Lock databases after inactivity of + I-lock ang mga database matapos hindi maging aktibo ng + + + Convenience + Convenience + + + Enable database quick unlock (Touch ID / Windows Hello) + I-enable ang mabilisang pag-unlock ng database (Touch ID / Windows Hello) + + + Lock databases when session is locked or lid is closed + I-lock ang mga database kapag naka-lock ang session o nakasara ang lid + + + Lock databases after minimizing the window + I-lock ang mga database matapos i-minimize ang window + + + Hide passwords when editing them + Itago ang mga password kapag ine-edit ang mga ito + + + Use placeholder for empty password fields + Gumamit ng placeholder para sa mga walang laman na patlang ng password + + + Hide passwords in the entry preview panel + Itago ang mga password sa panel ng preview ng entry + + + Privacy + Privacy + + + Use DuckDuckGo service to download website icons + Gamitin ang serbisyo ng DuckDuckGo para i-download ang mga icon ng website + + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + + + + AutoType + + The requested Auto-Type sequence cannot be used due to an error: + Ang hiniling na Auto-Type sequence ay hindi magagamit dahil sa isang error: + + + Auto-Type Error + Auto-Type Error + + + Permission Required + Kinakailangan ang Pahintulot + + + KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. + Ang KeePassXC ay nangangailangan ng pahintulot sa Accessibility upang maisagawa ang entry-level na Auto-Type. Kung nagbigay ka na ng pahintulot, maaaring kailanganin mong i-restart ang KeePassXC. + + + KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. + Kinakailangan ng KeePassXC ang pahintulot sa Accessibility at Screen Recorder para maisagawa ang global Auto-Type. Kinakailangan ang Pagre-record ng Screen upang magamit ang pamagat ng window upang maghanap ng mga entry. Kung nagbigay ka na ng pahintulot, maaaring kailanganin mong i-restart ang KeePassXC. + + + Invalid entry provided + Invalid na ibinigay na entry + + + Bracket imbalance detected, found extra { or } + Na-detect ang imbalance ng bracket, may nakitang sobra { or } + + + Too many repetitions detected, max is %1: %2 + Masyadong maraming pag-uulit ang natukoy, ang max ay %1: %2 + + + Very slow key press detected, max is %1: %2 + Natukoy ang nagpabagal sa key press, ang max ay %1: %2 + + + Very long delay detected, max is %1: %2 + Natukoy ang mahabang pagkaantala, ang max ay %1: %2 + + + Entry does not have attribute for PICKCHARS: %1 + Ang entry ay walang attribute para sa PICKCHARS: %1 + + + Invalid placeholder: %1 + Invalid na placeholder: %1 + + + + AutoTypeAssociationsModel + + Window + Window + + + Sequence + Pagkakasunod-sunod + + + (empty) + (walang laman) + + + Default sequence + Default na sequence + + + + AutoTypeMatchModel + + Group + Group + + + Title + Pamagat + + + Username + Username + + + Sequence + Pagkakasunod-sunod + + + + AutoTypePlatformX11 + + Sequence aborted: Caps Lock is on + Na-abort ang sequence: Naka-on ang Caps Lock + + + Sequence aborted: Modifier keys held by user + Na-abort ang sequence: Mga modifier key na hawak ng user + + + Unable to get valid keycode for key: + Hindi makakuha ng valid keycode para sa key: + + + Trying to send invalid keyboard symbol. + + + + + AutoTypeSelectDialog + + Auto-Type - KeePassXC + Auto-Type - KeePassXC + + + Double click a row to perform Auto-Type or find an entry using the search: + I-double click ang isang row para magsagawa ng Auto-Type o maghanap ng entry gamit ang search: + + + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> + <p>Maaari kang gumamit ng mga advanced na query sa paghahanap para mahanap ang anumang entry sa iyong mga bukas na database. Ang mga sumusunod na shortcut ay kapaki-pakinabang:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Sa Windows Lang)</p> + + + Search all open databases + Maghanap sa lahat ng bukas na database + + + Search… + Maghanap… + + + Type Sequence + Uri ng Sequence + + + Cancel + Kanselahin + + + Type {USERNAME} + Uri ng {USERNAME} + + + Type {PASSWORD} + Uri ng {PASSWORD} + + + Type {TOTP} + Uri ng {TOTP} + + + Copy Username + kopyahin ang Username + + + Copy Password + Kopyahin ang Password + + + Copy TOTP + Kopyahin ang TOTP + + + Use Virtual Keyboard + Gamitin ang Virtual na Keyboard + + + + BrowserAccessControlDialog + + KeePassXC - Browser Access Request + KeePassXC - Kahilingan sa Pag-access sa Browser + + + %1 is requesting access to the following entries: + %1 ay humihiling ng access sa mga sumusunod na entry: + + + Remember access to checked entries + Tandaan ang access sa mga naka-check na entry + + + Remember + Tandaan + + + Allow access to entries + Payagan ang access sa mga entry + + + Allow Selected + Payagan ang Napili + + + Deny All + I-deny Lahat + + + Disable for this site + I-disable para sa site na ito + + + Undo + + + + + BrowserEntrySaveDialog + + Ok + Ok + + + Cancel + Kanselahin + + + You have multiple databases open. +Please select the correct database for saving credentials. + Marami kang nakabukas na database. +Mangyaring piliin ang tamang database para sa pag-save ng mga kredensyal. + + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Kanselahin + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + + + + BrowserService + + A request for creating a new group "%1" has been received. +Do you want to create this group? + + Isang kahilingan para sa paglikha ng bagong pangkat na "%1" ay natanggap. +Gusto mo bang likhain ang pangkat na ito? + + + + You have received an association request for the following database: +%1 + +Give the connection a unique name or ID, for example: +chrome-laptop. + Nakatanggap ka ng kahilingan sa pag-uugnay para sa sumusunod na database: +%1 + +Bigyan ang koneksyon ng isang natatanging pangalan o ID, halimbawa: +chrome-laptop. + + + Save and allow access + I-save at payagan ang access + + + A shared encryption key with the name "%1" already exists. +Do you want to overwrite it? + May umiiral nang nakabahaging encryption key na may pangalang "%1". +Gusto mo bang i-overwrite ito? + + + Do you want to update the information in %1 - %2? + Gusto mo bang i-update ang impormasyon sa %1 - %2? + + + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + + Isang kahilingan para sa pag-delete ng entry na "%1" ay natanggap. +Gusto mo bang i-delete ang entry? + + + + %1 (Passkey) + + + + KeePassXC - Create a new group + + + + Disable + I-disable + + + KeePassXC - Overwrite existing key? + + + + KeePassXC - Update Entry + + + + KeePassXC - Delete entry + + + + KeePassXC - New key association request + + + + Passkey + + + + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + + + + + BrowserSettingsWidget + + Dialog + Dialog + + + This is required for accessing your databases with KeePassXC-Browser + Ito ay kinakailangan para sa pag-access sa mga database mo gamit ang KeePassXC-Browser + + + Enable browser integration + I-enable ang browser integration + + + General + Pangkalahatan + + + Enable integration for these browsers: + I-enable ang integration para sa mga browser na ito: + + + Vivaldi + Vivaldi + + + &Edge + &Edge + + + Firefox + Firefox + + + Tor Browser + Tor Browser + + + Brave + Brave + + + Google Chrome + Google Chrome + + + Chromium + Chromium + + + Show a notification when credentials are requested + Credentials mean login data requested via browser extension + Ipakita ang notification kapag hiniling ang mga kredensyal + + + Request to unlock the database if it is locked + Hilingin na i-unlock ang database kung ito ay naka-lock + + + Only entries with the same scheme (http://, https://, …) are returned. + Tanging ang mga entry lamang na may parehong scheme (http://, https://, …) ang ibinabalik. + + + Match URL scheme (e.g., https://example.com) + Itugma ang scheme ng URL (hal., https://example.com) + + + Only returns the best matches for a specific URL instead of all entries for the whole domain. + Tanging ang pinakamahusay na mga tugma para sa isang partikular na URL sa halip na ang lahat ng mga entry para sa buong domain ang ibinabalik. + + + Return only best-matching credentials + Ibalik lamang ang pinakamahusay na tumutugmang mga kredensyal + + + Returns expired credentials. String [expired] is added to the title. + Ibinabalik ang mga nag-expire na kredensyal. Ang string na [expired] ay idinagdag sa pamagat. + + + Allow returning expired credentials + Payagan ang pagbabalik ng mga nag-expire na kredensyal + + + All databases connected to the extension will return matching credentials. + Ang lahat ng database na konektado sa extension ay magbabalik ng tumutugmang mga kredensyal. + + + Search in all opened databases for matching credentials + Credentials mean login data requested via browser extension + Maghanap sa lahat ng nakabukas na database para sa pagtutugma ng mga kredensyal + + + Advanced + Advanced + + + Never ask before accessing credentials + Credentials mean login data requested via browser extension + Huwag kailanman itanong bago i-access ang mga kredensyal + + + Never ask before updating credentials + Credentials mean login data requested via browser extension + Huwag kailanman itanong bago mag-update ng mga kredensyal + + + Do not ask permission for HTTP Basic Auth + An extra HTTP Basic Auth setting + Huwag humingi ng pahintulot para sa HTTP Basic Auth + + + Automatically creating or updating string fields is not supported. + Hindi sinusuportahan ang awtomatikong paggawa o pag-update ng mga string field. + + + Return advanced string fields which start with "KPH: " + Ibalik ang mga advanced na field ng string na nagsisimula sa "KPH: " + + + Don't display the popup suggesting migration of legacy KeePassHTTP settings. + Huwag ipakita ang popup na nagmumungkahi ng paglipat ng mga legacy na setting ng KeePassHTTP. + + + Do not prompt for KeePassHTTP settings migration. + Huwag i-prompt para sa paglipat ng mga setting ng KeePassHTTP. + + + Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. + Awtomatikong ina-update ang KeePassXC o keepassxc-proxy binary path sa mga native na script ng pagmemensahe sa startup. + + + Update native messaging manifest files at startup + I-update ang mga manifest file ng native messaging sa startup + + + Use a custom proxy location if you installed a proxy manually. + Gumamit ng custom na lokasyon ng proxy kung manwal kang nag-install ng proxy. + + + Use a custom proxy location: + Meant is the proxy for KeePassXC-Browser + Gumamit ng custom na lokasyon ng proxy: + + + Custom proxy location field + Lokasyon ng field ng custom na proxy + + + Browser for custom proxy file + Browser para sa custom na proxy file + + + Browse… + Button for opening file dialog + Mag-browse… + + + Use a custom browser configuration location: + Gumamit ng custom na lokasyon ng browser configuration: + + + Browser type: + Uri ng browser: + + + Toolbar button style + Estilo ng button ng toolbar + + + Config Location: + Lokasyon ng Config: + + + Custom browser location field + Lokasyon ng field ng custom na browser + + + Browse for custom browser path + Mag-browse para sa isang custom na browser path + + + Custom extension ID: + Custom na extension ID: + + + Custom extension ID + Custom na extension ID + + + Executable Files + Mga Executable na File + + + All Files + Lahat ng Mga File + + + Select custom proxy location + Pumili ng custom na lokasyon ng proxy + + + Select native messaging host folder location + Piliin ang lokasyon ng folder ng host ng native na pagmemensahe + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + + + + CloneDialog + + Clone Entry Options + I-clone ang Mga Opsyon ng Entry + + + Append ' - Clone' to title + Idugtong ' - Clone' sa pamagat + + + Replace username and password with references + Palitan ang username at password ng mga sanggunian + + + Copy history + Kopyahin ang history + + + + CsvImportWidget + + size, rows, columns + sukat, hilera, hanay + + + Column Association + Column Association + + + Password + Password + + + Username + Username + + + Title + Pamagat + + + Group + Group + + + URL + URL + + + Notes + Mga tala + + + TOTP + TOTP + + + Created + Nilikha na + + + Last Modified + Huling Binago + + + Icon + Icon + + + Encoding + Ini-encode + + + Codec + Codec + + + Text is qualified by + Ang text ay kwalipikado ng + + + Text qualification + Kwalipikasyon sa text + + + Fields are separated by + Ang mga field ay pinaghihiwalay ng + + + Field separation + Paghihiwalay ng field + + + Comments start with + Nagsisimula ang mga comment sa + + + Header lines skipped + Nilaktawan ang mga linya ng header + + + Number of header lines to discard + Bilang ng mga linya ng header na tatanggihan + + + First line has field names + Ang unang linya ay may mga pangalan ng field + + + Consider '\' an escape character + Isaalang-alang ang '\' na isang escape character + + + Preview + Preview + + + CSV import preview + Preview ng pag-import ng CSV + + + Not Present + Hindi Naroroon + + + Column %1 + Column na %1 + + + [%n more message(s) skipped] + [%n higit pang mensahe ang nilaktawan][%n higit pang (mga) mensahe ang nilaktawan] + + + Failed to parse CSV file: %1 + + + + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Mga tag + + + + CsvParserModel + + %n row(s) + CSV row count + %n row%n (mga)row + + + %n column(s) + CSV column count + %n ng column%n ng (mga)column + + + + Database + + Passwords + Root group name + Passwords + + + File %1 does not exist. + Ang file na %1 ay wala. + + + Unable to open file %1. + Hindi mabuksan ang file na %1. + + + Error while reading the database: %1 + Error habang binabasa ang database: %1 + + + Could not save, database does not point to a valid file. + Hindi mai-save, hindi tumutugma ang database sa isang valid file. + + + Database save is already in progress. + Nasa progreso na ang pag-save ng database. + + + Could not save, database has not been initialized! + Hindi mai-save, hindi makapagsimula ang database! + + + Database file has unmerged changes. + Ang database file ay may mga hindi naisama sa pagbabago. + + + %1 +Backup database located at %2 + %1 +Backup database na matatagpuan sa %2 + + + Key not transformed. This is a bug, please report it to the developers. + Hindi nabago ang key. Ito ay isang bug, mangyaring iulat ito sa mga developer. + + + Recycle Bin + Recycle Bin + + + Database file read error. + + + + No file path was provided. + + + + + DatabaseOpenDialog + + Unlock Database - KeePassXC + I-unlock ang Database -KeePassXC + + + + DatabaseOpenWidget + + Unlock KeePassXC Database + I-unlock ang Database ng KeePassXC + + + Enter Password: + Ilagay ang Password: + + + Password field + Field ng password + + + Hardware key slot selection + Pagpili ng hardware key slot + + + Key file to unlock the database + Key file upang i-unlock ang database + + + Browse for key file + Mag-browse para sa key file + + + Browse… + Mag-browse… + + + Unlock Database + I-unlock ang Database + + + Cancel + Kanselahin + + + Unlock + I-unlock + + + Please present or touch your YubiKey to continue… + Mangyaring ipakita o pindutin ang iyong YubiKey para magpatuloy… + + + Database Version Mismatch + Hindi Tugma sa Bersyon ng Database + + + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. + Ang database na sinusubukan mong buksan ay malamang na +nilikha ng isang mas bagong bersyon ng KeePassXC. + +Maaari mo pa ring subukang buksan ito, ngunit maaaring hindi ito kumpleto +at ang pag-save ng anumang mga pagbabago ay maaaring magkaroon ng pagkawala ng data. + +Inirerekomenda namin na i-update mo ang pag-install mo ng KeePassXC. + + + Open database anyway + Buksan pa rin ang database + + + Database unlock canceled. + Kinansela ang pag-unlock ng database. + + + Unlock failed and no password given + Nabigo ang pag-unlock at walang ibinigay na password + + + Unlocking the database failed and you did not enter a password. +Do you want to retry with an "empty" password instead? + +To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. + Nabigo ang pag-unlock sa database at hindi ka naglagay ng password. +Gusto mo bang subukang muli gamit ang "walang laman" na password sa halip? + +Para maiwasan ang paglabas ng error na ito, dapat kang pumunta sa "Settings ng Database / Seguridad" at i-reset ang iyong password. + + + Retry with empty password + Subukang muli gamit ang walang laman na password + + + Failed to open key file: %1 + Nabigong buksan ang key file: %1 + + + Old key file format + File format ng dating key + + + You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> + Gumagamit ka ng lumang format ng key file na maaaring<br>magpahinto sa suporta ng KeePassXC sa hinaharap.<br><br>Mangyaring isaalang-alang ang pagbuo ng bagong key file sa pamamagitan ng pagpunta sa:<br><strong>Database &gt; Seguridad ng Database &gt; Baguhin ang Key File.</strong><br> + + + Don't show this warning again + Huwag ipakitang muli ang babalang ito + + + All files + Lahat ng mga file + + + Key files + Mga key file + + + Select key file + Piliin ang key file + + + Cannot use database file as key file + Hindi magagamit ang database file bilang key file + + + authenticate to access the database + patotohanan para ma-access ang database + + + Failed to authenticate with Quick Unlock: %1 + + + + Select Key File: + + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + + + + + DatabaseSettingWidgetMetaData + + Passwords + Passwords + + + + DatabaseSettingsDialog + + General + Pangkalahatan + + + Security + Security + + + Database Credentials + Mga Kredensyal sa Database + + + Encryption Settings + Mga Setting ng Pag-encrypt + + + Browser Integration + Pagsasama ng Browser + + + Maintenance + Maintenance + + + KeeShare + KeeShare + + + Secret Service Integration + Secret Service Integration + + + Remote Sync + + + + Database Settings: %1 + + + + + DatabaseSettingsWidgetBrowser + + KeePassXC-Browser settings + KeePassXC-Mga Browser setting + + + Disconnect all browsers + Idiskonekta ang lahat ng browser + + + Forget all site-specific settings on entries + Kalimutan ang lahat ng mga setting na partikular sa site sa mga entry + + + Refresh database root group ID + I-refresh ang database root group ID + + + Stored keys + Naka-store na mga key + + + Stored browser keys + Naka-store na mga key ng browser + + + Remove selected key + Alisin ang napiling key + + + Remove + Alisin + + + Delete the selected key? + I-delete ang napiling key? + + + Do you really want to delete the selected key? +This may prevent connection to the browser plugin. + Gusto mo bang i-delete ang napiling key? +Maaaring pigilan nito ang koneksyon sa browser plugin. + + + Key + Key + + + Value + Value + + + Created + Nalikha na + + + Enable Browser Integration to access these settings. + I-enable ang Browser Integration para ma-access ang mga setting na ito. + + + Do you really want to disconnect all browsers? +This may prevent connection to the browser plugin. + Gusto mo bang idiskonekta ang lahat ng browser? +Maaaring pigilan nito ang koneksyon sa browser plugin. + + + No shared encryption keys found in KeePassXC settings. + Walang nahanap na nakabahaging encryption key sa settings ng KeePassXC. + + + Successfully removed %n encryption key(s) from KeePassXC settings. + Matagumpay na na-remove ang %n encryption key mula sa mga setting ng KeePassXC.Matagumpay na na-remove ang %n (mga) encryption key mula sa mga setting ng KeePassXC. + + + Do you really want forget all site-specific settings on every entry? +Permissions to access entries will be revoked. + Gusto mo bang kalimutan ang lahat ng setting na partikular sa site sa bawat entry? +Ang pahintulot na ma-access ang mga entry ay babawiin. + + + Removing stored permissions… + Inaalis ang mga naka-store na pahintulot… + + + Abort + I-abort + + + Successfully removed permissions from %n entry(s). + Matagumpay na na-remove ang mga permission mula sa %n na entry.Matagumpay na na-remove ang mga permission mula sa %n na (mga) entry. + + + The active database does not contain an entry with permissions. + Ang aktibong database ay hindi naglalaman ng entry na may mga permission. + + + Refresh database ID + I-refresh ang database ID + + + Do you really want refresh the database ID? +This is only necessary if your database is a copy of another and the browser extension cannot connect. + Gusto mo bang i-refresh ang database ID? +Ito ay kinakailangan lamang kung ang iyong database ay isang kopya ng isa pa at ang extension ng browser ay hindi makakonekta. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + I-convert ang mga legacy na attribute ng KeePassHTTP -Browser na tugma sa custom data + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + + + + DatabaseSettingsWidgetDatabaseKey + + Add additional protection… + Magdagdag ng karagdagang proteksyon… + + + No password set + Walang na-set na password + + + 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? + BABALA! Hindi ka nagtakda ng password. Ang paggamit ng database na walang password ay mahigpit na hindi hinihikayat! + +Sigurado ka bang gusto mong magpatuloy nang walang password? + + + Continue without password + Magpatuloy nang walang password + + + No encryption key added + Walang idinagdag na encryption key + + + You must add at least one encryption key to secure your database! + Dapat kang magdagdag ng kahit isang encryption key para maprotektahan ang database mo! + + + Unknown error + Hindi kilalang error + + + Failed to change database credentials + Nabigong baguhin ang mga kredensyal ng database + + + Weak password + Mahinang password + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + + + + DatabaseSettingsWidgetEncryption + + Decryption Time: + Oras ng Pag-decrypt: + + + Decryption time in seconds + Segundo na oras ng pag-decrypt + + + Higher values offer more protection, but opening the database will take longer. + Ang mas mataas na value ay nag-aalok ng higit na proteksyon, ngunit ang pagbubukas ng database ay mas babagal. + + + Database format: + Format ng database + + + Database format + Format ng database + + + Format cannot be changed: Your database uses KDBX 4 features + Hindi mababago ang format: Gumagamit ang database mo ng mga feature ng KDBX 4 + + + Unless you need to open your database with other programs, always use the latest format. + Maliban kung kailangan mong buksan ang iyong database sa iba pang mga programa, palaging gamitin ang pinakabagong format. + + + Encryption Algorithm: + Pag-encrypt ng Algorithm: + + + Encryption algorithm + Pag-encrypth ng algorithm + + + AES: 256 Bit (default) + AES: 256 Bit (default) + + + Twofish: 256 Bit + Twofish: 256 Bit + + + Key Derivation Function: + Key Derivation na Function: + + + Key derivation function + Key derivation na function + + + Transform rounds: + Baguhin ang mga round: + + + Transform rounds + Baguhin ang mga round + + + Memory Usage: + Paggamit ng Memory: + + + Memory usage + Paggamit ng Memory + + + Parallelism: + Parallelism: + + + Parallelism + Parallelism + + + KDBX 4 (recommended) + KDBX 4 (inirerekomenda) + + + KDBX 3 + KDBX 3 + + + Number of rounds too high + Key transformation rounds + Masyadong mataas ang bilang ng mga round + + + You are using a very high number of key transform rounds with Argon2. + +If you keep this number, your database may take hours, days, or even longer to open. + Gumagamit ka ng napakataas na bilang ng mga key transform round sa Argon2. + +Kung pananatilihin mo ang numerong ito, maaaring tumagal ng oras, araw, o mas matagal pa bago mabuksan ang database mo. + + + Understood, keep number + Naintindihan, panatilihin ang bilang + + + Cancel + Kanselahin + + + Number of rounds too low + Key transformation rounds + Masyadong mababa ang bilang ng mga round + + + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. + Gumagamit ka ng napakababang bilang ng mga key transform round sa AES-KDF. + +Kung pananatilihin mo ang numerong ito, hindi mapoprotektahan ang database mo mula sa mga brute-force na pag-atake. + + + KDF unchanged + Hindi nabago ang KDF + + + Failed to transform key with new KDF parameters; KDF unchanged. + Nabigong i-transform ang key gamit ang mga bagong parameter ng KDF; Ang KDF ay hindi nabago. + + + MiB + Abbreviation for Mebibytes (KDF settings) + MiB MiB + + + thread(s) + Threads for parallel execution (KDF settings) + thread (mga)thread + + + Encryption Settings: + + + + Basic + + + + Advanced + Advanced + + + + DatabaseSettingsWidgetFdoSecrets + + Exposed Entries + Mga Expose na Entry + + + Don't expose this database + Huwag i-expose ang database na ito + + + Expose entries under this group: + Ipakita ang mga entry sa ilalim ng group na ito: + + + Enable Secret Service to access these settings. + I-enable ang Secret Service para ma-access ang mga setting na ito. + + + + DatabaseSettingsWidgetGeneral + + Database Metadata + Metadata ng Database + + + Database name: + Pangalan ng database: + + + Database name field + Field ng pangalan ng database + + + Database description: + Field ng paglalarawan ng database + + + Database description field + Field ng paglalarawan ng database + + + Default username: + Default na username: + + + Default username field + Default na field ng username + + + History Settings + Mga History Setting + + + Maximum number of history items per entry + Maximum na bilang ng mga item sa history bawat entry + + + Maximum size of history per entry + Pinakamataas na sukat ng history sa bawat entry + + + MiB + MiB + + + Use recycle bin + Gumamit ng recycle bin + + + Additional Database Settings + Karagdagang Mga Database Setting + + + Enable compression (recommended) + I-enable ang compression (inirerekomenda) + + + Delete Recycle Bin + I-delete ang Recycle Bin + + + Do you want to delete the current recycle bin and all its contents? +This action is not reversible. + Gusto mo bang i-delete ang kasalukuyang recycle bin at lahat ng nilalaman nito? +Ang aksyon na ito ay hindi na maaarin mabawi. + + + (old) + (luma) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Kapag sine-save ang setting na ito o nag-e-edit ng entry +ang pinakamatandang mga item sa history ng isang entry ay magiging +inalis tulad na lamang ang tinukoy na halaga +ng mga entry ay nananatili sa karamihan. + + + Limit the amount of history items per entry to: + Limitahan ang dami ng mga item sa history ng bawat entry sa: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Kapag sine-save ang setting na ito o nag-e-edit ng entry +ang pinakamatandang mga item sa kasaysayan ng isang entry ay ire-remove +para ang natitirang mga item sa history na +magdaragdag ng hanggang sa tinukoy na halaga sa pinakamaraming. + + + Limit the total size of history items per entry to: + Limitahan ang kabuuang sukat ng mga item sa history ng bawat entry sa: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Ilipat ang mga entry sa isang recycle bin group +sa halip na tanggalin ang mga ito mula sa database. +Ang mga entry na na-delete mula sa recycle bin ay +na-delete mula sa database. + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + I-clear + + + Display icon: + + + + Select Database Icon + + + + + DatabaseSettingsWidgetKeeShare + + Sharing + Pagbabahagi + + + Breadcrumb + Breadcrumb + + + Type + Uri + + + Path + Path + + + Last Signer + Huling Signer + + + Certificates + Certificates + + + > + Breadcrumb separator + > + + + + DatabaseSettingsWidgetMaintenance + + Manage Custom Icons + Pamahalaan ang Mga Custom Icon + + + Delete selected icon(s) + I-delete ang (mga) napiling icon + + + Delete all custom icons not in use by any entry or group + I-delete ang lahat ng custom na icon na hindi ginagamit ng anumang entry o group + + + Purge unused icons + I-purge ang mga hindi nagamit na icon + + + Confirm Deletion + Kumpirmahin ang Pag-delete + + + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? + Hindi bababa sa isa sa mga napiling icon ang kasalukuyang ginagamit ng hindi bababa sa isang entry o pangkat. Ang mga icon ng lahat ng apektadong entry at pangkat ay papalitan ng default na icon. Sigurado ka bang nais mong i-delete ang mga icon na kasalukuyang ginagamit? + + + Custom Icons Are In Use + Ginagamit na ang Mga Custom na Icon + + + All custom icons are in use by at least one entry or group. + Ang lahat ng mga custom na icon ay ginagamit ng hindi bababa sa isang entry o pangkat. + + + Purged Unused Icons + Na-purge na Hindi Nagamit na Mga Icon + + + Purged %n icon(s) from the database. + Na-purge na ang (mga) icon ng %n mula sa database.Na-purge na ang icon ng %n mula sa database. + + + + DatabaseSettingsWidgetMetaDataSimple + + Database Name: + Pangalan ng Database: + + + Database name field + Field ng pangalan ng database + + + Description: + Paglalarawan: + + + Database description field + Field ng paglalarawan ng database + + + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Alisin + + + Command Settings + + + + Name + Pangalan + + + Save + I-save + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + segundo + + + + DatabaseTabWidget + + Database creation error + Error sa paglikha ng database + + + The created database has no key or KDF, refusing to save it. +This is definitely a bug, please report it to the developers. + Ang nilikhang database ay walang key o KDF, hindi ito mai-save. +Tiyak na bug ito, mangyaring i-ulat sa mga developer. + + + KeePass 2 Database + KeePass 2 Database + + + All files + Lahat ng mga file + + + Open database + Buksan ang database + + + Failed to open %1. It either does not exist or is not accessible. + Nabigong buksan ang %1. Maaaring hindi umiiral ito o hindi naa-access. + + + CSV file + CSV file + + + Merge database + Pagsamahin ang dabatase + + + Export database to CSV file + I-export ang database sa CSV file + + + Writing the CSV file failed. + Nabigo ang pagsulat ng CSV file. + + + Writing the HTML file failed. + Nabigo ang pagsulat ng HTML file. + + + Export database to XML file + I-export ang database sa XML file + + + XML file + XML file + + + Writing the XML file failed + Nabigo ang pagsulat ng XML file + + + Export Confirmation + I-export ang Kumpirmasyon + + + You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? + Ie-export mo na ang database mo sa isang hindi naka-encrypt na file. Iiwan nitong mahina ang iyong mga password at sensitibong impormasyon! Sigurado ka bang gusto mong magpatuloy? + + + %1 [Locked] + Database tab name modifier + %1 [Naka-lock] + + + %1 [Temporary] + Database tab name modifier + + + + + DatabaseWidget + + Searches and Tags + Mga Paghahanap at Tag + + + Searching… + Naghahanap… + + + Shared group… + Nakabahaging group… + + + Confirm Auto-Type + Kumpirmahin ang Auto-Type + + + Perform Auto-Type into the previously active window? + Isagawa ang Auto-Type sa dating aktibong window? + + + Execute command? + Ipatupad ang command? + + + Do you really want to execute the following command?<br><br>%1<br> + Nais mo bang isagawa ang sumusunod na command?<br><br>%1<br> + + + Remember my choice + Tandaan ang aking pinili + + + Delete group + I-delete ang group + + + Do you really want to delete the group "%1" for good? + Gusto mo bang i-delete ang group na "%1" nang tuluyan? + + + Move group to recycle bin? + Ilipat ang grupo sa recycle bin? + + + Do you really want to move the group "%1" to the recycle bin? + Gusto mo bang ilipat ang group na "%1" sa recycle bin? + + + Expired entries + Mga nag-expire na entry + + + Entries expiring within %1 day(s) + Mag-e-expire ang mga entry sa loob ng %1 na arawMag-e-expire ang mga entry sa loob ng %1 na (mga) araw + + + No current database. + Walang kasalukuyang database. + + + No source database, nothing to do. + Walang source database, walang magawa. + + + Successfully merged the database files. + Matagumpay na pinagsama ang mga file ng database. + + + Database was not modified by merge operation. + Ang database ay hindi binago ng operasyon ng pagsasama. + + + Search Results (%1) + Mga Resulta ng Paghahanap (%1) + + + No Results + Walang Mga Resulta + + + Save + I-save + + + Enter a unique name or overwrite an existing search from the list: + Maglagay ng natatanging pangalan o i-overwrite ang isang umiiral na nahanap mula sa listahan: + + + Save Search + I-save ang Search + + + Lock Database? + I-lock ang Database? + + + You are editing an entry. Discard changes and lock anyway? + Nag-e-edit ka ng entry. I-discard ang mga pagbabago at i-lock pa rin? + + + "%1" was modified. +Save changes? + "%1" ay binago. +I-save ang mga pagbabago? + + + Database was modified. +Save changes? + Binago ang database. +I-save ang mga pagbabago? + + + Save changes? + I-save ang mga pagbabago? + + + File has changed + Nagbago ang file + + + Disable safe saves? + I-disable ang ligtas na pag-save? + + + 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? + Nabigo ang KeePassXC na i-save ang database nang maraming beses. Ito ay malamang na sanhi ng mga serbisyo sa pag-sync ng file na may hawak na lock sa save file. +I-disable ang safe save at subukang muli? + + + Writing the database failed: %1 + Nabigo ang pagsulat ng database: %1 + + + Passwords + Passwords + + + Save database as + I-save ang database bilang + + + KeePass 2 Database + KeePass 2 Database + + + Save database backup + I-save ang backup ng database + + + Empty recycle bin? + Walang laman ang recycle bin? + + + Are you sure you want to permanently delete everything from your recycle bin? + Sigurado ka bang nais mong permanenteng i-delete ang lahat sa recycle bin mo? + + + Could not find database file: %1 + Hindi mahanap ang database file: %1 + + + New Database + Bagong Database + + + %1 [New Database] + Database tab name modifier + %1 [Bagong Database] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + + EditEntryWidget + + Entry + Entry + + + Advanced + Advanced + + + Icon + Icon + + + Auto-Type + Auto-Type + + + Browser Integration + Pagsasama ng Browser + + + <empty URL> + <empty URL> + + + Confirm Removal + Kumpirmahin ang Pag-remove + + + Are you sure you want to remove this URL? + Sigurado ka bang nais mong alisin ang URL na ito? + + + Properties + Mga pag-aari + + + History + History + + + SSH Agent + SSH Agent + + + n/a + n/a + + + Select private key + Pumili ng private key + + + Entry history + History ng entry + + + Add entry + Magdagdag ng entry + + + Edit entry + I-edit ang entry + + + Some Browser Integration settings are overridden by group settings. + Ang ilang mga setting ng Browser Integration ay na-override ng mga group setting. + + + Invalid Entry + Invalid na Entry + + + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. + Ang isang external merge operation ay nagpawalang-bisa sa entry na ito. +Sa kasamaang palad, nawala ang anumang mga pagbabagong ginawa. + + + Auto-Type Validation Error + Auto-Type Validation Error + + + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? + Nagkaroon ng error habang kinukumpirma ang custom na Auto-Type sequence: +%1 +Gusto mo bang itama ito? + + + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? + Nagkaroon ng error habang kinukumpirma ang Auto-Type sequence para sa "%1": +%2 +Gusto mo bang itama ito? + + + Entry updated successfully. + Matagumpay na na-update ang entry. + + + Unsaved Changes + Mga Hindi Na-save na Pagbabago + + + Would you like to save changes to this entry? + Gusto mo bang i-save ang mga pagbabago sa entry na ito? + + + New attribute + Bagong katangian + + + New attribute %1 + Bagong katangian %1 + + + Are you sure you want to remove this attribute? + Sigurado ka bang nais mong alisin ang attribute ito? + + + Reveal + Ipakita + + + [PROTECTED] Press Reveal to view or edit + [PROTECTED] Pindutin ang Reveal para tingnan o i-edit + + + Hide + Itago + + + %n hour(s) + %n oras%n (mga)oras + + + %n week(s) + %n linggo%n (mga)linggo + + + %n month(s) + %n buwan%n (mga)buwan + + + %n year(s) + %n taon%n (mga)taon + + + Failed to decrypt SSH key, ensure password is correct. + + + + + EditEntryWidgetAdvanced + + Additional attributes + Karagdagang attributes + + + Attribute selection + Pagpili ng attribute + + + Attribute value + Value ng attribute + + + Add a new attribute + Magdagdag ng isang bagong attribute + + + Add + Magdagdag + + + Remove selected attribute + Alisin ang napiling katangian + + + Remove + Alisin + + + Edit attribute name + I-edit ang pangalan ng attribute + + + Edit Name + I-edit ang Pangalan + + + Toggle attribute protection + I-toggle ang proteksyon ng attribute + + + Protect + Protektahan + + + Show a protected attribute + Ipakita ang protektadong attribute + + + Reveal + Ipakita + + + Attachments + Mga attachment + + + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. + Kung nilagyan ng check, hindi lalabas ang entry sa mga ulat tulad ng Health Check at HIBP kahit na hindi ito tumutugma sa mga kinakailangan sa kalidad. + + + Exclude from database reports + Ibukod mula sa mga ulat sa database + + + Foreground Color: + Kulay ng Foreground: + + + Foreground color selection + Pagpili ng kulay sa foreground + + + Background Color: + Kulay ng Background: + + + Background color selection + Pagpili ng kulay ng background + + + + EditEntryWidgetAutoType + + Enable Auto-Type for this entry + I-enable ang Auto-Type para sa entry na ito + + + Inherit default Auto-Type sequence from the group + Kunin bilang default na Auto-Type na sequence mula sa group + + + Use custom Auto-Type sequence: + Gumamit ng custom na pagkakasunod-sunod ng Auto-Type: + + + Custom Auto-Type sequence + Custom na Auto-Type sequence + + + Open Auto-Type help webpage + Buksan ang Auto-Type help webpage + + + Window Associations + Mga Window Association + + + Existing window associations + Mga umiiral na window association + + + Add new window association + Magdagdag ng bagong window association + + + + + Add item + + + + + Remove selected window association + Alisin ang napiling pagkakaugnay ng window + + + - + Remove item + - + + + Window title: + Pamagat ng Window: + + + You can use an asterisk (*) to match everything + Maaari kang gumamit ng asterisk (*) upang itugma sa lahat + + + Set the window association title + Itakda ang pamagat ng pagkakaugnay ng window + + + You can use an asterisk to match everything + Maaari kang gumamit ng asterisk upang itugma sa lahat + + + Use a specific sequence for this association: + Gumamit ng isang partikular na pagkakasunud-sunod para sa kaugnayang ito: + + + Custom Auto-Type sequence for this window + Custom na Auto-Type sequence para sa window na ito + + + + EditEntryWidgetBrowser + + General + Pangkalahatan + + + Hide this entry from the browser extension + Itago ang entry na ito mula sa extension ng browser + + + Skip Auto-Submit for this entry + Laktawan ang Auto-Submit para sa entry na ito: + + + Use this entry only with HTTP Basic Auth + Gamitin lamang ang entry na ito sa HTTP Basic Auth + + + Do not use this entry with HTTP Basic Auth + Huwag gamitin ang entry na ito sa HTTP Basic Auth + + + Add + Magdagdag + + + Remove + Alisin + + + Edit + I-edit + + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + + + + EditEntryWidgetHistory + + Entry history selection + History ng pagpili ng entry + + + Show entry at selected history state + Ipakita ang entry sa napiling kundisyon ng history + + + Show + Ipakita + + + Restore entry to selected history state + Ibalik ang entry sa napiling estado ng history + + + Restore + Ibalik + + + Delete selected history state + I-delete ang napiling history state + + + Delete + I-delete + + + Delete all history + I-delete lahat ng history + + + Delete all + I-delete lahat + + + + EditEntryWidgetMain + + Edit Entry + I-edit ang Entry + + + Notes field + Patlang ng mga tala + + + Username field + Field ng username + + + Expiration field + Field ng expiration + + + Expiration Presets + Mga Preset ng Expiration + + + Expiration presets + Mga preset ng expiration + + + Presets + Mga preset + + + Url field + Patlang ng URL + + + Download favicon for URL + Mag-download ng favicon para sa URL + + + Title field + Pamagat ng field + + + Password field + Field ng password + + + Toggle expiration + I-toggle ang pag-expire + + + Tags list + Listahan ng mga tag + + + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: + + + + + EditEntryWidgetSSHAgent + + Form + Form + + + Remove key from agent when database is closed/locked + Alisin ang key mula sa agent kapag nakasara/naka-lock ang database + + + Comment + Comment + + + Add key to agent when database is opened/unlocked + Magdagdag ng key sa agent kapag naka-bukas/naka-unlock ang database + + + Decrypt + I-decrypt + + + Fingerprint + Fingerprint + + + Copy to clipboard + Kopyahin sa clipboard + + + Public key + Public key + + + Private key + Pribadong key + + + Attachment + Attachment + + + External key file + Panlabas na key file + + + Add to agent + Magdagdag sa agent + + + Remove from agent + Alisin mula sa agent + + + External file + Panlabas na file + + + Browser for key file + Browser para sa key file + + + Browse… + Button for opening file dialog + Mag-browse… + + + Generate + Bumuo + + + Select attachment file + Piliin ang attachment file + + + Require user confirmation when this key is used + Nangangailangan ng kumpirmasyon ng user kapag ginamit ang key na ito + + + n/a + n/a + + + Remove key from agent after + Alisin ang key sa agent pagkatapos + + + Remove key from agent after specified seconds + Alisin ang key mula sa agent pagkatapos ng tinukoy na segundo + + + seconds + segundo + + + Clear agent + + + + + EditGroupWidget + + Group + Group + + + Icon + Icon + + + Properties + Mga pag-aari + + + Add group + Magdagdag ng pangkat + + + Edit group + I-edit ang group + + + Group has unsaved changes + May mga hindi na-save na pagbabago ng group + + + Browser Integration + Pagsasama ng Browser + + + Enable + I-enable + + + Disable + I-disable + + + Inherit from parent group (%1) + Kunin mula sa parent group na (%1) + + + + EditGroupWidgetBrowser + + These settings affect to the group's behaviour with the browser extension. + Ang mga setting na ito ay nakakaapekto sa gawi ng group sa extension ng browser. + + + Hide entries from browser extension: + Itago ang mga entry mula sa extension ng browser: + + + Hide entries from browser extension toggle for this and sub groups + Itago ang mga entry mula sa browser extension toggle para dito at sa mga sub group + + + Skip Auto-Submit for entries: + Laktawan ang Auto-Submit para sa mga entry: + + + Skip Auto-Submit toggle for this and sub groups + Laktawan ang Auto-Submit para sa dito at sa mga sub group + + + Use entries only with HTTP Basic Auth: + Gumamit lamang ng mga entry sa HTTP Basic Auth: + + + Only HTTP Auth toggle for this and sub groups + Tanging ang HTTP Auth toggle para dito at sa mga sub group + + + Do not use entries with HTTP Basic Auth: + Huwag gumamit ng mga entry na may HTTP Basic Auth: + + + Do not use HTTP Auth toggle for this and sub groups + Huwag gumamit ng HTTP Auth toggle para dito at sa mga sub group + + + Omit WWW subdomain from matching: + Alisin ang WWW subdomain mula sa pagtutugma: + + + Omit WWW subdomain from matching toggle for this and sub groups + Alisin ang WWW subdomain sa pagtutugma ng toggle para dito at sa mga sub group + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + EditGroupWidgetKeeShare + + Sharing mode field + Field ng mode ng pagbabahagi + + + Password field + Field ng password + + + Type: + Uri: + + + Password: + Password: + + + Path: + Path: + + + Path to share file field + Path para ibahagi ang patlang ng file + + + Browse for share file + Mag-browse para sa pagbabahagi ng file + + + Browse… + Mag-browse… + + + Clear fields + I-clear ang mga field + + + Clear + I-clear + + + Inactive + Hindi aktibo + + + Import + Mag-import + + + Export + I-export + + + Synchronize + I-synchronize + + + Your KeePassXC version does not support sharing this container type. +Supported extensions are: %1. + Hindi sinusuportahan ng bersyon ng KeePassXC mo ang pagbabahagi ng ganitong uri ng container. +Ang mga sinusuportahang extension ay: %1. + + + %1 is already being exported by this database. + %1 ay na-export na sa database na ito. + + + %1 is already being imported by this database. + %1 ay na-import na sa database na ito. + + + %1 is being imported and exported by different groups in this database. + %1 ay na-import at na-export sa iba't ibang grupo sa database na ito. + + + KeeShare is currently disabled. You can enable import/export in the application settings. + KeeShare is a proper noun + Kasalukuyang naka-disable ang KeeShare. Maaari mong i-enable ang pag-import/pag-export sa mga setting ng application. + + + Database export is currently disabled by application settings. + Ang pag-export ng database ay kasalukuyang ni-disable ng mga setting ng application. + + + Database import is currently disabled by application settings. + Ang pag-import ng database ay kasalukuyang na-disable ng mga setting ng application. + + + KeeShare container + KeeShare container + + + KeeShare signed container + KeeShare na naka-sign na container + + + Select import source + Piliin ang source ng pag-import + + + Select export target + Pumili ng target sa pag-export + + + Select import/export file + Piliin ang import/export na file + + + + EditGroupWidgetMain + + Edit Group + I-edit ang Group + + + Toggle expiration + I-toggle ang pag-expire + + + Expires: + Mag-e-expire: + + + Name field + Field ng pangalan + + + Expiration field + Field ng expiration + + + Use default Auto-Type sequence of parent group + Gumamit ng default na pagkakasunod-sunod ng Auto-Type ng parent group + + + Auto-Type: + Auto-Type: + + + Search: + Maghanap: + + + Auto-Type toggle for this and sub groups + Auto-Type toggle para dito at sa mga subgroup + + + Notes: + Mga tala: + + + Default auto-type sequence field + Default na field ng sequence ng auto-type + + + Notes field + Patlang ng mga tala + + + Name: + Pangalan: + + + Set default Auto-Type sequence + Itakda ang default na Auto-Type sequence + + + Search toggle for this and sub groups + Naka-toggle na paghahanap para dito at sa mga sub group + + + + EditWidgetIcons + + Use default icon + Gamitin ang default na icon + + + Use custom icon + Gumamit ng custom na icon + + + Choose icon… + Pumili ng icon… + + + Set the URL to use to search for a favicon + Itakda ang URL na gagamitin para maghanap ng favicon + + + Favicon URL + URL ng Favicon + + + Download favicon for URL + Mag-download ng favicon para sa URL + + + Download favicon + Mag-download ng favicon + + + Apply selected icon to subgroups and entries + Ilapat ang napiling icon sa mga subgroup at entry + + + Apply icon to… + Ilapat ang icon sa… + + + Apply to this group only + Ilapat lamang sa pangkat na ito + + + Also apply to child groups + Puwede din sa mga pangkat ng bata + + + Also apply to child entries + Puwede din sa mga entry ng bata + + + Also apply to all children + Puwede din sa lahat ng bata + + + Unable to fetch favicon. + Hindi makuha ang favicon. + + + Existing icon selected. + Pinili ang kasalukuyang icon. + + + Images + Mga Imahe + + + All files + Lahat ng mga file + + + Select Image(s) + Piliin ang (mga) Larawan + + + Successfully loaded %1 of %n icon(s) + Matagumpay na na-load ang %1 ng %n iconMatagumpay na na-load ang %1 ng %n (mga) icon + + + No icons were loaded + Walang na-load na mga icon + + + %n icon(s) already exist in the database + %n ng icon ay umiiral na sa database%n ng (mga)icon ay umiiral na sa database + + + The following icon(s) failed: + Nabigo ang sumusunod na icon:Nabigo ang sumusunod na (mga) icon: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + + + + EditWidgetProperties + + Created: + Nalikha na: + + + Datetime created + Nalikha na angdatetime + + + Modified: + Nabago: + + + Datetime modified + Binago ang datetime + + + Accessed: + Na-access: + + + Datetime accessed + Na-access na Datetime + + + Uuid: + Uuid: + + + Unique ID + Natatanging ID + + + Plugin Data + Plugin Data + + + Plugin data + Plugin data + + + Remove selected plugin data + Alisin ang napiling plugin data + + + Remove + Alisin + + + Delete plugin data? + I-delete ang data ng plugin? + + + Do you really want to delete the selected plugin data? +This may cause the affected plugins to malfunction. + Gusto mo bang i-delete ang napiling data ng plugin? +Maaari itong maging sanhi ng hindi paggana ng mga apektadong plugin. + + + Key + Key + + + Value + Value + + + + Entry + + %1 - Clone + %1 - Clone + + + Passkey + + + + Invalid conversion type: %1 + Invalid na uri ng conversion: %1 + + + Invalid conversion syntax: %1 + Invalid na conversion syntax: %1 + + + Invalid regular expression syntax %1 +%2 + Invalid na syntax ng regular na expression na %1 +%2 + + + + EntryAttachments + + Cannot open file "%1" + Hindi mabuksan ang file na "%1" + + + + EntryAttachmentsDialog + + Form + Form + + + File name + + + + File contents... + + + + + EntryAttachmentsModel + + Name + Pangalan + + + Size + Sukat + + + + EntryAttachmentsWidget + + Form + Form + + + Attachments + Mga attachment + + + Add new attachment + Magdagdag ng bagong attachment + + + Add + Magdagdag + + + Remove selected attachment + Alisin ang napiling attachment + + + Remove + Alisin + + + Open selected attachment + Buksan ang napiling attachment + + + Open + Buksan + + + Save selected attachment to disk + I-save ang napiling attachment sa disk + + + Save + I-save + + + Select files + Pumili ng mga file + + + Confirm remove + Kumpirmahin ang pag-remove + + + Are you sure you want to remove %n attachment(s)? + Sigurado ka bang nais mong alisin ang %n na attachment?Sigurado ka bang nais mong alisin ang %n na (mga) attachment? + + + Save attachments + I-save ang mga attachment + + + Unable to create directory: +%1 + Hindi malikha ng directory: +%1 + + + Are you sure you want to overwrite the existing file "%1" with the attachment? + Sigurado ka bang nais mong i-overwrite ang umiiral na file na "%1" gamit ang attachment? + + + Confirm overwrite + Kumpirmahin ang overwrite + + + Unable to save attachments: +%1 + Hindi mai-save ang mga attachment: +%1 + + + Unable to open attachment: +%1 + Hindi mabuksan ang attachment: +%1 + + + Unable to open attachments: +%1 + Hindi mabuksan ang mga attachment: +%1 + + + Unable to open file(s): +%1 + Hindi mabuksan ang file: +%1Hindi mabuksan ang (mga) file: +%1 + + + Confirm Overwrite Attachment + Kumpirmahin ang Overwrite Attachment + + + Confirm Attachment + Kumpirmahin ang Attachment + + + %1 is a big file (%2 MB). +Your database may get very large and reduce performance. + +Are you sure to add this file? + %1 ay malaking file (%2 MB). +Ang database mo maaaring maging malaki at mababawasan ang performance + +Sigurado ka bang gusto mong idagdag ang file na ito? + + + Attachment modified + Binago ang attachment + + + The attachment '%1' was modified. +Do you want to save the changes to your database? + Ang attachment na '%1' ay binago. +Gusto mo bang i-save ang mga pagbabago sa database mo? + + + Saving attachment failed + Nabigo ang pag-save ng attachment + + + Saving updated attachment failed. +Error: %1 + Nabigo ang pag-save ng na-update na attachment. +Error: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Umiiral na ang attachment na "%1". +Gusto mo bang i-overwrite ang kasalukuyang attachment? + + + New + + + + Preview + Preview + + + Failed to preview an attachment: Attachment not found + + + + + EntryAttributesModel + + Name + Pangalan + + + + EntryHistoryModel + + Current (%1) + Kasalukuyang (%1) + + + Last modified + Huling binago + + + Age + Edad + + + Difference + Pagkakaiba + + + Size + Sukat + + + Title + Pamagat + + + Username + Username + + + Password + Password + + + URL + URL + + + Notes + Mga tala + + + Custom Attributes + Mga Custom na Attribute + + + Icon + Icon + + + Color + Kulay + + + Expiration + Expiration + + + TOTP + TOTP + + + Custom Data + Custom na Data + + + Attachments + Mga attachment + + + Auto-Type + Auto-Type + + + Tags + Mga tag + + + + EntryModel + + Ref: + Reference abbreviation + Ref: + + + Never + Huwag kailanman + + + Group + Group + + + Title + Pamagat + + + Username + Username + + + Password + Password + + + URL + URL + + + Notes + Mga tala + + + Expires + Nag-expire na + + + Created + Nalikha na + + + Modified + Binago + + + Accessed + Na-access + + + Attachments + Mga attachment + + + Size + Sukat + + + Group name + Pangalan ng group + + + Entry title + Pamagat ng entry + + + Password Strength + Lakas ng Password + + + Entry notes + Mga entry note + + + Entry expires at + Mag-e-expire ang entry sa + + + Creation date + Petsa ng paglikha + + + Last modification date + Petsa ng huling pagbabago + + + Last access date + Petsa ng huling pag-access + + + Attached files + Naka-attach na mga file + + + Entry size + Sukat ng entry + + + Has attachments + May mga attachment + + + Has TOTP + May TOTP + + + Background Color + + + + Group Path + + + + + EntryPreviewWidget + + Display current TOTP value + Ipakita ang kasalukuyang TOTP value + + + Close + I-close + + + General + Pangkalahatan + + + Password + Password + + + URL + URL + + + Expiration + Expiration + + + Tags + Mga tag + + + Tags list + Listahan ng mga tag + + + Username + Username + + + Notes + Mga tala + + + Advanced + Advanced + + + Attachments + Mga attachment + + + Attributes + Mga attribute + + + Autotype + Autotype + + + Default Sequence + Default na Sequence + + + Window + Window + + + Sequence + Pagkakasunod-sunod + + + Searching + Naghahanap + + + Share + Ibahagi + + + Search + Maghanap + + + Clear + I-clear + + + Never + Huwag kailanman + + + Double click to copy value + I-double click para kopyahin ang value + + + Enabled + Na-enable na + + + Disabled + Naka-disable + + + Double click to copy to clipboard + + + + + EntryURLModel + + Invalid URL + Invalid na URL + + + Duplicate URL + + + + + EntryView + + Fit to window + Akma sa window + + + Fit to contents + Akma sa mga content + + + Reset to defaults + I-reset sa mga default + + + + %1 entry(s)... + + + + + ExportDialog + + Export options + Mga opsyon sa pag-export + + + Sort entries by... + I-sort ang mga entry ayon sa... + + + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + + Ie-export mo na ang database mo sa isang hindi naka-encrypt na file. +Iiwan nitong mahina ang mga mo password at sensitibong impormasyon! + + + + database order + pagkakasunud-sunod ng database + + + name (ascending) + pangalan (ascending) + + + name (descending) + pangalan (descending) + + + unknown + unknown + + + Export database to HTML file + I-export ang database sa HTML file + + + HTML file + HTML file + + + + FdoSecrets::DBusMgr + + Failed to deliver message + Nabigong ihatid ang mensahe + + + Failed to send reply on DBus + Nabigong magpadala ng reply sa DBus + + + Unknown + Unknown PID + Unknown + + + Unknown + Unknown executable path + Unknown + + + <i>PID: %1, Executable: %2</i> + <i>PID: 1234, Executable: /path/to/exe</i> + <i>PID: %1, Executable: %2</i> + + + Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. + Ang isa pang secret service ay tumatakbo na (%1).<br/>Pakihinto/i-remove ito bago muling i-enable ang Secret Service Integration. + + + Failed to register DBus service at %1.<br/> + Nabigong irehistro ang serbisyo ng DBus sa %1.<br/> + + + Failed to register service on DBus at path '%1' + Nabigong irehistro ang serbisyo sa DBus sa path na '%1' + + + Failed to register database on DBus under the name '%1' + Nabigong irehistro ang database sa DBus sa ilalim ng pangalan na '%1' + + + Failed to register session on DBus at path '%1' + Nabigong irehistro ang session sa DBus sa path na '%1' + + + Failed to register item on DBus at path '%1' + Nabigong irehistro ang item sa DBus sa path na '%1' + + + Failed to register prompt object on DBus at path '%1' + Nabigong irehistro ang prompt object sa DBus sa path na '%1' + + + + FdoSecrets::Item + + Entry "%1" from database "%2" was used by %3 + Ang entry na "%1" mula sa database na "%2" ay ginamit ng %3 + + + + FdoSecrets::Service + + %n Entry(s) was used by %1 + %1 is the name of an application + %n ng Entry ay ginamit ng %1%n ng (mga)Entry ay ginamit ng %1 + + + + FdoSecrets::SettingsClientModel + + Unknown + Hindi kilala + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Hindi umiiral/hindi ma-access na maipapatupad na landas. Pakitingnan muli kung legit ang kliyente. + + + + FdoSecrets::SettingsDatabaseModel + + Unlock to show + I-unlock para ipakita + + + None + Wala + + + + FdoSecrets::UnlockPrompt + + %1 (PID: %2) + %1 (PID: %2) + + + + FdoSecretsPlugin + + <b>Fdo Secret Service:</b> %1 + <b>Fdo Secret Service:</b> %1 + + + + Group + + [empty] + group has no children + [empty] + + + %1 - Clone + %1 - Clone + + + + HibpDownloader + + Online password validation failed + Nabigo ang online na pagpapatunay ng password + + + + IconDownloaderDialog + + Download Favicons + I-download ang mga Favicon + + + Cancel + Kanselahin + + + Having trouble downloading icons? +You can enable the DuckDuckGo website icon service in the security section of the application settings. + Nagkakaproblema sa pag-download ng mga icon? +Puwede mong i-enable ang icon service ng website ng DuckDuckGo sa seksyon ng seguridad ng mga setting ng application. + + + Close + I-close + + + URL + URL + + + Status + Status + + + Please wait, processing entry list… + Pakihintay, pinoproseso ang listahan ng entry… + + + Downloading… + Nagda-download… + + + Ok + Ok + + + Already Exists + Umiiral na + + + Download Failed + Nabigo ang Pag-download + + + Downloading favicons (%1/%2)… + Dina-download ang mga favicon na (%1/%2)… + + + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + WizardPage + + + Entry count: %1 + + + + Group + Group + + + Title + Pamagat + + + Username + Username + + + Password + Password + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Form + + + Import File Selection + + + + Password: + Password: + + + Key File: + Key File: + + + Browse… + Mag-browse… + + + Import Into: + + + + New Database + Bagong Database + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Buksan ang OPVault + + + Select import file + + + + All files + Lahat ng mga file + + + Key files + Mga key file + + + Select key file + Piliin ang key file + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + + + KMessageWidget + + &Close + &Close + + + Close message + I-close ang mensahe + + + + Kdbx3Reader + + Missing database headers + Nawawalang mga header ng database + + + Unable to calculate database key + Hindi makalkula ang database key + + + Unable to issue challenge-response: %1 + Hindi makapagbigay ng challenge-response: %1 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Ang mga invalid na kredensyal ay ibinigay, pakisubukang muli. +Kung maulit ito, maaaring sira ang database file mo. + + + Header doesn't match hash + Ang header ay hindi tumutugma sa hash + + + Invalid header id size + Invalid na sukat ng header id + + + Invalid header field length: field %1 + Invalid na haba ng field ng header: field na %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Invalid na haba ng data ng header: field na %1, %2 ang inaasahan, %3 ang nakita + + + + Kdbx3Writer + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Invalid na sukat ng symmetric cipher IV. + + + Unable to issue challenge-response: %1 + Hindi makapagbigay ng challenge-response: %1 + + + Unable to calculate database key + Hindi makalkula ang database key + + + + Kdbx4Reader + + missing database headers + nawawalang mga header ng database + + + Unable to calculate database key: %1 + Hindi makalkula ang database key: %1 + + + Invalid header checksum size + Invalid na sukat ng header checksum + + + Header SHA256 mismatch + Hindi tugma ang header na SHA256 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Ang mga invalid na kredensyal ay ibinigay, pakisubukang muli. +Kung maulit ito, maaaring sira ang database file mo. + + + (HMAC mismatch) + (HMAC mismatch) + + + Unknown cipher + Hindi kilalang cipher + + + Invalid header id size + Invalid na sukat ng header id + + + Invalid header field length: field %1 + Invalid na haba ng field ng header: field na %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Invalid na haba ng data ng header: field na %1, %2 ang inaasahan, %3 ang nakita + + + Failed to open buffer for KDF parameters in header + Nabigong buksan ang buffer para sa mga parameter ng KDF sa header + + + Unsupported key derivation function (KDF) or invalid parameters + Hindi suportadong key derivation function (KDF) o hindi valid na mga parametro + + + Legacy header fields found in KDBX4 file. + Ang mga legacy na field ng header ay natagpuan sa KDBX4 file. + + + Invalid inner header id size + Invalid na sukat ng panloob na header id + + + Invalid inner header field length: field %1 + Invalid na haba ng field ng panloob na header: field na %1 + + + Invalid inner header data length: field %1, %2 expected, %3 found + Invalid na haba ng data ng panloob na header: field na %1, %2 ang inaasahan, %3 ang natagpuan + + + Invalid inner header binary size + Invalid na sukat ng inner header binary + + + Unsupported KeePass variant map version. + Translation: variant map = data structure for storing meta data + Hindi suportadong bersyon ng mapa ng variant ng KeePass. + + + Invalid variant map entry name length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry na pangalan ng variant map + + + Invalid variant map entry name data + Translation: variant map = data structure for storing meta data + Invalid na data ng entry na pangalan ng variant map + + + Invalid variant map entry value length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry value ng variant map + + + Invalid variant map entry value data + Translation comment: variant map = data structure for storing meta data + Invalid na data entry value ng variant map + + + Invalid variant map Bool entry value length + Translation: variant map = data structure for storing meta data + Invalid ang haba ng value ng entry sa Bool ng variant map + + + Invalid variant map Int32 entry value length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry value ng variant map Int32 + + + Invalid variant map UInt32 entry value length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry value ng variant map UInt32 + + + Invalid variant map Int64 entry value length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry value ng variant map Int64 + + + Invalid variant map UInt64 entry value length + Translation: variant map = data structure for storing meta data + Invalid na haba ng entry value ng variant map UInt64 + + + Invalid variant map entry type + Translation: variant map = data structure for storing meta data + Invalid na uri ng entry ng variant map + + + Invalid variant map field type size + Translation: variant map = data structure for storing meta data + Invalid na sukat ng uri ng field ng variant map + + + + Kdbx4Writer + + Invalid symmetric cipher algorithm. + Invalid na algorithm ng symmetric cipher. + + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Invalid na sukat ng symmetric cipher IV. + + + Unable to calculate database key: %1 + Hindi makalkula ang database key: %1 + + + Failed to serialize KDF parameters variant map + Translation comment: variant map = data structure for storing meta data + Nabigong i-serialize ang mga KDF parameter variant map + + + + KdbxReader + + Invalid cipher uuid length: %1 (length=%2) + Invalid na haba ng cipher uuid: %1 (length=%2) + + + Unable to parse UUID: %1 + Hindi ma-parse ang UUID: %1 + + + Unsupported cipher + Hindi suportadong cipher + + + Invalid compression flags length + Invalid na haba ng mga compression flag + + + Unsupported compression algorithm + Hindi suportadong algorithm ng compression + + + Invalid master seed size + Invalid na sukat ng master seed + + + Invalid transform seed size + Invalid na sukat ng transform seed + + + Invalid transform rounds size + Invalid na sukat ng mga transform round + + + Invalid start bytes size + Invalid na sukat ng mga byte na panimula + + + Invalid random stream id size + Invalid na sukat ng random stream id + + + Invalid inner random stream cipher + Invalid na inner random stream cipher + + + Failed to read database file. + Nabigong basahin ang file ng database. + + + The selected file is an old KeePass 1 database (.kdb). + +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. + Ang napiling file ay isang lumang database ng KeePass 1 (.kdb). + +Maaari mong i-import ito sa pamamagitan ng pag-click sa Database > 'Import KeePass 1 database…'. +Isa itong one-way na paglipat. Hindi mo mabubuksan ang na-import na database gamit ang lumang bersyon ng KeePassX 0.4. + + + Not a KeePass database. + Hindi isang database ng KeePass. + + + Unsupported KeePass 2 database version. + Hindi suportadong bersyon ng database ng KeePass 2. + + + + KdbxXmlReader + + XML parsing failure: %1 + Nabigo ang pag-parse ng XML: %1 + + + No root group + Walang ugat na grupo + + + XML error: +%1 +Line %2, column %3 + XML error: +%1 +Linya na %2, column na %3 + + + Missing icon uuid or data + Nawawalang icon uuid o data + + + Missing custom data key or value + Nawawala ang custom na data key o value + + + Multiple group elements + Maramihang mga elemento ng grupo + + + Null group uuid + Walang saysay ang uuid ng grupo + + + Invalid group icon number + Invalid na numero ng group icon + + + Invalid EnableAutoType value + Invalid na value ng EnableAutoType + + + Invalid EnableSearching value + Invalid na value ng EnableSearching + + + No group uuid found + Walang nahanap na grupo uuid + + + Null DeleteObject uuid + Walang saysay ang uuid ng DeleteObject + + + Missing DeletedObject uuid or time + Nawawala ang DeletedObject uuid o oras + + + Null entry uuid + Walang saysay ang uuid ng entry + + + Invalid entry icon number + Invalid na bilang ng entry icon + + + History element in history entry + Elemento ng history sa entry ng history + + + No entry uuid found + Walang nahanap na entry uuid + + + History element with different uuid + Elemento ng history na may iba't ibang uuid + + + Duplicate custom attribute found + May nakitang duplicate na custom na attribute + + + Entry string key or value missing + Nawawala ang string key o value ng entry + + + Entry binary key or value missing + Nawawala ang binary key o value ng entry + + + Auto-type association window or sequence missing + Auto-type na association window o nawawala ang sequence + + + Invalid bool value + Invalide na bool value + + + Invalid date time value + Invalid na date time value + + + Invalid color value + Invalid na color value + + + Invalid color rgb part + Invalid na bahagi ng kulay na rgb + + + Invalid number value + Invalid na value ng numero + + + Invalid uuid value + Invalid na uuid value + + + Unable to decompress binary + Translator meant is a binary data inside an entry + Hindi ma-decompress ang binary + + + + KeeAgentSettings + + Invalid KeeAgent settings file structure. + Invalid na istraktura ng file ng mga setting ng KeeAgent. + + + Private key is an attachment but no attachments provided. + Ang pribadong key ay isang attachment pero walang ibinigay na mga attachment. + + + Private key is empty + Walang laman ang pribadong key + + + File too large to be a private key + Masyadong malaki ang file para maging private key + + + Failed to open private key + Nabigong buksan ang private key + + + + KeePass1Reader + + Unable to read keyfile. + Hindi mabasa ang keyfile. + + + Not a KeePass database. + Hindi isang database ng KeePass. + + + Unsupported encryption algorithm. + Hindi suportadong algorithm ng encryption. + + + Unsupported KeePass database version. + Hindi suportadong bersyon ng database ng KeePass. + + + Unable to read encryption IV + IV = Initialization Vector for symmetric cipher + Hindi mabasa ang encryption IV + + + Invalid number of groups + Invalid na bilang ng mga group + + + Invalid number of entries + Invalid na bilang ng mga entry + + + Invalid content hash size + Invalid na sukat ng content hash + + + Invalid transform seed size + Invalid na sukat ng transform seed + + + Invalid number of transform rounds + Invalid na bilang ng mga transform round + + + Unable to construct group tree + Hindi makagawa ng group tree + + + Root + Root + + + Unable to calculate database key + Hindi makalkula ang database key + + + unable to seek to content position + hindi makapaghanap sa posisyon ng content + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Ang mga invalid na kredensyal ay ibinigay, pakisubukang muli. +Kung maulit ito, maaaring sira ang database file mo. + + + Key transformation failed + Nabigo ang pagbabagong-anyo ng key + + + Invalid group field type number + Invalid na uri ng numero ng group field + + + Invalid group field size + Invalid na sukat ng group field + + + Read group field data doesn't match size + Basahin ang data ng field ng group ay hindi tumutugma sa sukat + + + Incorrect group id field size + Maling sukat ng group id field + + + Incorrect group creation time field size + Maling sukat ng group creation time field + + + Incorrect group modification time field size + Maling sukat ng group modification time field + + + Incorrect group access time field size + Maling sukat ng group access time field + + + Incorrect group expiry time field size + Maling sukat ng group expiry time field + + + Incorrect group icon field size + Maling sukat ng group icon field + + + Incorrect group level field size + Maling sukat ng group level field + + + Invalid group field type + Invalid na uri ng group field + + + Missing group id or level + Nawawalang group id o level + + + Missing entry field type number + Nawawalang numero ng entry field type + + + Invalid entry field size + Invalid na sukat ng entry field + + + Read entry field data doesn't match size + Basahin ang data ng field ng entry ay hindi tumutugma sa laki + + + Invalid entry UUID field size + Invalid na sukat ng entry ng UUID field + + + Invalid entry group id field size + Invalid na sukat ng field ng entry group + + + Invalid entry icon field size + Invalid na sukat ng entry ng field icon + + + Invalid entry creation time field size + Invalid na sukat ng field ng oras ng paglikha ng entry + + + Invalid entry modification time field size + Invalid na sukat ng entry ng pagbabago ng oras + + + Invalid entry expiry time field size + Invalid na sukat ng field ng entry ng oras ng pag-expire + + + Invalid entry field type + Invalid na uri ng entry field + + + + KeeShare + + Invalid sharing reference + Invalid na sharing reference + + + Inactive share %1 + Hindi aktibong bahagi na %1 + + + Imported from %1 + Na-import mula sa %1 + + + Exported to %1 + Na-export sa %1 + + + Synchronized with %1 + Na-synchronize sa %1 + + + Import is disabled in settings + Ang pag-import ay naka-disable sa mga setting + + + Export is disabled in settings + Naka-disable ang pag-export sa mga setting + + + Inactive share + Hindi aktibong bahagi + + + Imported from + Na-import mula sa + + + Exported to + Na-export sa + + + Synchronized with + Naka-synchronize sa + + + + KeyComponentWidget + + Key Component + Key Component + + + Key Component Description + Paglalarawan ng Key Component + + + Cancel + Kanselahin + + + Key Component set, click to change or remove + Itakda ang Key Component, i-click para baguhin o i-remove + + + + KeyFileEditWidget + + Generate a new key file + Bumuo ng bagong key file + + + Generate + Bumuo + + + Generate a new key file or choose an existing one to protect your database. + Bumuo ng bagong key file o pumili ng meron na para protektahan ang database mo. + + + Note: Do NOT use a file that may change as that will prevent you from unlocking your database. + Tandaan: HUWAG gumamit ng file na maaaring magbago dahil pumipigil ito mula sa pag-unlock ng iyong database. + + + Browse for key file + Mag-browse para sa key file + + + Browse… + Mag-browse… + + + Old key file format + File format ng dating key + + + You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. + Pumili ka ng key file sa lumang format na maaaring hindi suporatahan ng KeePassXC<br>sa hinaharap.<br><br>Mangyaring isaalang-alang ang pagbuo ng bagong key file sa halip. + + + Error loading the key file '%1' +Message: %2 + Error sa paglo-load ng key file na '%1' +Mensahe: %2 + + + Key File + Key File + + + Add Key File + Magdagdag ng Key File + + + Change Key File + Palitan ang Key File + + + Remove Key File + Alisin ang Key File + + + Key File set, click to change or remove + Key File set, i-click upang baguhin o i-remove + + + <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>Maaari kang magdagdag ng key file na naglalaman ng mga random na byte para sa karagdagang seguridad.</p><p>Dapat lihim mo itong panatilihin at huwag kailanman walain kung hindi ay mai-lock out ka.</p> + + + Key files + Mga key file + + + All files + Lahat ng mga file + + + Create Key File… + Gumawa ng Key File… + + + Error creating key file + Error sa paglikha ng key file + + + Unable to create key file: %1 + Hindi makalikha ng key file: %1 + + + Select a key file + Pumili ng key file + + + Invalid Key File + Invalid na Key File + + + You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. + Hindi mo magagamit ang kasalukuyang database bilang key file nito. Mangyaring pumili ng ibang file o bumuo ng bagong key file. + + + Suspicious Key File + Kahina-hinalang Key File + + + The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. +Are you sure you want to continue with this file? + Ang napiling key file ay mukhang isang password database file. Ang isang key file ay dapat na isang static na file na hindi nagbabago o mawawalan ka ng access sa iyong database magpakailanman. +Sigurado ka bang gusto mong magpatuloy sa file na ito? + + + + MacUtils + + Invalid key code + Invalid na key code + + + Global shortcut already registered to %1 + Nakarehistro na ang global shortcut sa %1 + + + Could not register global shortcut + Hindi mairehistro ang global shortcut + + + + MainWindow + + &Database + &Database + + + &Recent Databases + &Recent Databases + + + &Export + &Export + + + &Help + &Help + + + &Entries + &Entries + + + Copy Att&ribute + Kopyahin ang Att&ribute + + + TOTP + TOTP + + + Tags + Mga tag + + + &Groups + &Groups + + + &Tools + &Tools + + + View + Tingan + + + Theme + Tema + + + &Quit + &Quit + + + &About + &About + + + &Check for Updates + &Check for Updates + + + &Open Database… + &Open Database… + + + &Save Database + &Save Database + + + &Close Database + &Close Database + + + &New Database… + &New Database… + + + &Merge From Database… + &Merge From Database… + + + &New Entry… + &New Entry… + + + &Edit Entry… + &Edit Entry… + + + &Delete Entry… + &Delete Entry… + + + &New Group… + &New Group… + + + &Edit Group… + &Edit Group… + + + &Delete Group… + &Delete Group… + + + Download All &Favicons… + I-download ang Lahat ng &Favicon… + + + Sort &A-Z + I-sort ang &A-Z + + + Sort &Z-A + I-sort ang &A-Z + + + Sa&ve Database As… + I-sa&ve ang Database Bilang… + + + Database &Security… + Database &Security… + + + Database &Reports… + Database &Reports… + + + &Database Settings… + &Database Settings… + + + &Clone Entry… + &Clone Entry… + + + Move u&p + Ilipat ang u&p + + + Move do&wn + Ilipat sa do&wn + + + Copy &Username + Kopyahin ang &Username + + + Copy &Password + Kopyahin ang &Password + + + &Settings + &Settings + + + &Password Generator + &Password Generator + + + Perform &Auto-Type + Isagawa ang &Auto-Type + + + Download &Favicon + I-download ang &Favicon + + + Open &URL + Buksan ang &URL + + + &Lock Database + &Lock Database + + + Lock &All Databases + I-lock ang &All Databases + + + &Title + &Title + + + Copy &URL + Kopyahin ang &URL + + + &Notes + &Notes + + + &CSV File… + &CSV File… + + + &HTML File… + &HTML File… + + + KeePass 1 Database… + KeePass 1 Database… + + + 1Password Vault… + 1Password Vault… + + + CSV File… + CSV File… + + + Show TOTP + Ipakita ang TOTP + + + Show QR Code + Ipakit ang QR Code + + + Set up TOTP… + I-set up ang TOTP… + + + Copy &TOTP + Kopyahin ang &TOTP + + + Copy Password and TOTP + Kopyahin ang Password at TOTP + + + E&mpty recycle bin + E&mpty na recycle bin + + + &Donate + &Donate + + + Report a &Bug + Mag-ulat ng isang &Bug + + + &Getting Started + &Getting Started + + + Open Getting Started Guide + Buksan ang Gabay sa Pagsisimula + + + &Online Help + &Online Help + + + &User Guide + &User Guide + + + Open User Guide + Buksan ang Gabay sa User + + + &Keyboard Shortcuts + &Keyboard Shortcuts + + + Save Database Backup… + I-save ang Backup ng Database… + + + Add key to SSH Agent + Magdagdag ng key sa SSH Agent + + + Remove key from SSH Agent + Alisin ang key mula sa SSH Agent + + + Compact Mode + Compact Mode + + + Automatic + Awtomatiko + + + Light + Magaan + + + Dark + Dark + + + Classic (Platform-native) + Classic (Platform-native) + + + Show Menubar + + + + Show Toolbar + Ipakita ang Toolbar + + + Show Preview Panel + Ipakita ang Preview Panel + + + Always on Top + Laging nasa Itaas + + + Hide Usernames + Itago ang Mga Username + + + Hide Passwords + Itago ang Mga Password + + + Clone Group... + I-clond ang Group... + + + &XML File… + &XML File… + + + Clear history + I-clear ang history + + + Access error for config file %1 + Error sa pag-access para sa config file na %1 + + + Don't show again for this version + Huwag ipakitang muli para sa bersyong ito + + + 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. + BABALA: Gumagamit ka ng hindi matatag na uri ng KeePassXC. +Mayroong mataas na panganib ng katiwalian, panatilihin ang isang backup ng iyong mga database. +Ang bersyon na ito ay hindi para sa paggamit ng produksyon. + + + NOTE: You are using a pre-release version of KeePassXC. +Expect some bugs and minor issues, this version is meant for testing purposes. + TANDAAN: Gumagamit ka ng paunang labas na bersyon ng KeePassXC. +Asahan ang ilang mga bug at maliliit na isyu, ang bersyon na ito ay para sa mga pagsubok na layunin. + + + No Tags + Walang Mga Tag + + + Restore Entry(s) + Ibalik ang EntryIbalik ang (mga) Entry + + + Settings + Mga setting + + + Check for updates on startup? + Tingnan kung may mga update sa startup? + + + Would you like KeePassXC to check for updates on startup? + Gusto mo bang tingnan ng KeePassXC ang mga update sa startup? + + + You can always check for updates manually from the application menu. + Maaari mong suriin nang manu-mano ang mga update anumang oras mula sa menu ng application. + + + Toggle window + I-toggle ang window + + + Quit KeePassXC + Ihinto ang KeePassXC + + + %1 Entry(s) + %1 Entry%1 (mga)Entry + + + Please present or touch your YubiKey to continue… + Mangyaring ipakita o pindutin ang iyong YubiKey upang magpatuloy… + + + Restart Application? + I-restart ang Application? + + + You must restart the application to apply this setting. Would you like to restart now? + Dapat mong i-restart ang application upang mailapat ang setting na ito. Gusto mo bang i-restart ngayon? + + + Allow Screen Capture + Payagan ang Screen Capture + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + I-edit ang Entry + + + Delete Entry + + + + Create Group + + + + Edit Group + I-edit ang Group + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + kopyahin ang Username + + + Copy Password + Kopyahin ang Password + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Mag-import ng KeePass1 Database + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + + + + ManageDatabase + + Database settings + Mga database setting + + + Edit database settings + I-edit ang mga database setting + + + Unlock database + I-unlock ang Database + + + Unlock database to show more information + I-unlock ang database para magpakita ng higit pang impormasyon + + + Lock database + I-lock ang database + + + + ManageSession + + Disconnect + Idiskonekta + + + Disconnect this application + Idiskonekta ang application na ito + + + Reset + I-reset + + + Reset any remembered decisions for this application + I-reset ang anumang mga naaalalang desisyon para sa application na ito + + + + Merger + + Creating missing %1 [%2] + Lumilikha ng nawawalang %1 [%2] + + + Relocating %1 [%2] + Inililipat ang %1 [%2] + + + Overwriting %1 [%2] + Ino-overwrite na ang %1 [%2] + + + Synchronizing from newer source %1 [%2] + Sini-synchronize mula sa mas bagong source na %1 [%2] + + + Synchronizing from older source %1 [%2] + Sini-synchronize mula sa mas lumang source na %1 [%2] + + + Deleting child %1 [%2] + Dini-delete ang child na %1 [%2] + + + Deleting orphan %1 [%2] + Dini-delete ang orphan na %1 [%2] + + + Changed deleted objects + Binago na ang mga na-delete na object + + + Adding missing icon %1 + Pagdaragdag ng nawawalang icon %1 + + + Removed custom data %1 [%2] + Inalis ang custom data na %1 [%2] + + + Adding custom data %1 [%2] + Pagdaragdag ng custom data %1 [%2] + + + + NewDatabaseWizard + + Create a new KeePassXC database… + Lumikha ng bagong database ng KeePassXC… + + + Root + Root group + Root + + + + NewDatabaseWizardPage + + WizardPage + WizardPage + + + Encryption Settings + Mga Setting ng Pag-encrypt + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Dito puwede mong ayusin ang mga setting ng pag-encrypt ng database. Huwag mag-alala, puwede mong baguhin ang mga ito sa ibang pagkakataon sa mga setting ng database. + + + + NewDatabaseWizardPageDatabaseKey + + Database Credentials + Mga Kredensyal sa Database + + + A set of credentials known only to you that protects your database. + Isang hanay ng mga kredensyal na mismong alam mong nagpoprotekta sa database mo. + + + + NewDatabaseWizardPageEncryption + + Encryption Settings + Mga Setting ng Pag-encrypt + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Dito puwede mong ayusin ang mga setting ng pag-encrypt ng database. Huwag mag-alala, puwede mong baguhin ang mga ito sa ibang pagkakataon sa mga setting ng database. + + + + NewDatabaseWizardPageMetaData + + General Database Information + Pangkalahatang Impormasyon sa Database + + + Please fill in the display name and an optional description for your new database: + Pakipunan ang display name at isang opsyonal na paglalarawan para sa iyong bagong database: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + + + NixUtils + + Password Manager + Password Manager + + + Global shortcut already registered to %1 + Nakarehistro na ang global shortcut sa %1 + + + Could not register global shortcut + Hindi mairehistro ang global shortcut + + + + OpData01 + + Invalid OpData01, does not contain header + Invalid na OpData01, hindi naglalaman ng header + + + Unable to read all IV bytes, wanted 16 but got %1 + Hindi mabasa ang lahat ng IV bytes, ginusto ng 16 ngunit nakakuha ng %1 + + + Unable to init cipher for opdata01: %1 + Hindi ma-init ang cipher para sa opdata01: %1 + + + Unable to read all HMAC signature bytes + Hindi mabasa ang lahat ng HMAC signature bytes + + + Malformed OpData01 due to a failed HMAC + Hindi nabuo ang OpData01 dahil sa nabigo ang HMAC + + + Unable to process clearText in place + Hindi maproseso ang clearText sa lugar + + + Expected %1 bytes of clear-text, found %2 + Inaasahan na %1 byte ng may malinaw na teksto, natagpuan ang %2 + + + + OpVaultReader + + Directory .opvault must exist + Dapat umiral ang Directory .opvault + + + Directory .opvault must be readable + Dapat na nababasa ang Directory .opvault + + + Directory .opvault/default must exist + Dapat umiral ang Directory .opvault/default + + + Directory .opvault/default must be readable + Dapat na nababasa ang directory .opvault/default + + + Unable to decode masterKey: %1 + Hindi ma-decode ang masterKey: %1 + + + Unable to derive master key: %1 + Hindi makuha ang master key: %1 + + + + OpenSSHKey + + Invalid key file, expecting an OpenSSH key + Invalid na key file, asahan ang OpenSSH key + + + PEM boundary mismatch + Hindi tugma sa PEM boundary + + + Base64 decoding failed + Nabigo ang pag-decode ng Base64 + + + Key file way too small. + Napakaliit ng key file. + + + Key file magic header id invalid + Invalid ang magic header id ng key file + + + Found zero keys + May nakitang mga zero key + + + Failed to read public key. + Nabigong basahin ang public key. + + + Corrupted key file, reading private key failed + Sirang key file, hindi nabasa ang private key + + + Unsupported key type: %1 + Hindi suportadong uri ng key: %1 + + + No private key payload to decrypt + Walang pribadong key payload para ma-decrypt + + + Unknown cipher: %1 + Hindi kilalang cipher: %1 + + + AES-256/GCM is currently not supported + AES-256/GCM ay kasalukuyang hindi sinusuportahan + + + Passphrase is required to decrypt this key + Kinakailangan ang passphrase para i-decrypt ang key na ito + + + Key derivation failed: %1 + Nabigo ang pag-derivate ng key: %1 + + + Cipher IV is too short for MD5 kdf + Masyadong maikli ang Cipher IV para sa MD5 kdf + + + Unknown KDF: %1 + Hindi kilalang KDF: %1 + + + Failed to initialize cipher: %1 + Nabigong simulan ang cipher: %1 + + + Decryption failed: %1 + Nabigo ang pag-decrypt: %1 + + + Decryption failed, wrong passphrase? + Nabigo ang pag-decrypt, maling passphrase? + + + Unexpected EOF while reading key + Hindi inaasahang EOF habang nagsusulat ng key + + + Unsupported key part + Hindi suportadong bahagi ng key + + + Unexpected EOF while reading public key + Hindi inaasahang EOF habang nagsusulat ng public key + + + Unknown key type: %1 + Hindi kilalang uri ng key: %1 + + + Unexpected EOF while reading private key + Hindi inaasahang EOF habang nagbabasa ng private key + + + Can't write public key as it is empty + Hindi makasulat ng public key dahil ito ay walang laman + + + Unexpected EOF when writing public key + Hindi inaasahang EOF kapag nagsusulat ng public key + + + Can't write private key as it is empty + Hindi makasulat ng private key dahil ito ay walang laman + + + Unexpected EOF when writing private key + Hindi inaasahang EOF kapag nagsusulat ng private key + + + (encrypted) + (naka-encrypt) + + + + OpenSSHKeyGenDialog + + SSH Key Generator + + + + Type + Uri + + + Bits + + + + Comment + Comment + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + + + + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Kanselahin + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + Group + + + Database + + + + Import Passkey + + + + Import + Mag-import + + + Cancel + Kanselahin + + + Entry + Entry + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Lahat ng mga file + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + + + + + PasswordEditWidget + + Enter password: + Ilagay ang password: + + + Password field + Field ng password + + + Confirm password: + Kumpirmahin ang password: + + + Repeat password field + Ulitin ang patlang ng password + + + Password + Password + + + Add Password + Magdagdag ng Password + + + Change Password + Palitan ang Password + + + Remove Password + Alisin ang Password + + + Password set, click to change or remove + Itakda ang password, i-click para baguhin o i-remove + + + <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> + <p>Ang isang password ay isang pangunahing paraan para sa pagprotekta ng database mo.</p><p>Ang magagandang password ay mahaba at natatangi. Ang KeePassXC ay maaaring bumuo ng isa nito para sa iyo.</p> + + + Passwords do not match. + Hindi tugma ang mga password. + + + + PasswordGeneratorWidget + + Generate Password + Bumuo ng Password + + + strength + Password strength + lakas + + + entropy + entropy + + + Generated password + Nabuong password + + + %p% + %p% + + + Regenerate password + Muling bumuo ng password + + + Copy password + kopyahin ang password + + + Password + Password + + + &Length: + &Length: + + + Password length + Haba ng password + + + Switch to advanced mode + Lumipat sa advanced na mode + + + Advanced + Advanced + + + Character Types + Mga Uri ng Character + + + Special characters + Mga espesyal na character + + + Quotes + Mga quote + + + Punctuation + Bantas + + + Dashes and Slashes + Dashes at Slashes + + + Upper-case letters + Malalaking titik + + + Numbers + Mga numero + + + Lower-case letters + Mga maliliit na titik + + + Math Symbols + Mga Math Symbol + + + Extended ASCII + Pinalawak na ASCII + + + Braces + Braces + + + Do not include: + Huwag isama ang: + + + Additional characters to use for the generated password + Mga karagdagang character na gagamitin para sa nabuong password + + + Additional characters + Mga karagdagang character + + + Add non-hex letters to "do not include" list + Magdagdag ng mga non-hex na titik sa listahan ng "huwag isama". + + + Hex Passwords + Mga Hex na Password + + + Hex + Hex + + + Character set to exclude from generated password + I-set ang character na bukod mula sa nabuong password + + + Excluded characters + Mga ibinukod na character + + + Also choose from: + Gayundin, pumili mula sa: + + + Exclude look-alike characters + Ibukod ang mga halos katulad na karakter + + + Pick characters from every group + Pumili ng mga character mula sa bawat grupo + + + Passphrase + Passphrase + + + Word Separator: + Word Separator: + + + Wordlist: + Wordlist: + + + Word Count: + Bilang ng Salita: + + + Word Case: + Word Case: + + + Delete selected wordlist + I-delete ang napiling wordlist + + + Add custom wordlist + Magdagdag ng custom wordlist + + + Close + I-close + + + Esc + Esc + + + Apply Password + Ilapat ang Password + + + Regenerate password (%1) + Muling bumuo ng password (%1) + + + lower case + maliit na titik + + + UPPER CASE + MALALAKING LETRA + + + Title Case + Pamagat ng Case + + + (SYSTEM) + (SYSTEM) + + + Entropy: %1 bit + Entropy: %1 bit + + + Password Quality: %1 + Kalidad ng Password: %1 + + + Poor + Password quality + Mahina + + + Weak + Password quality + Mahina + + + Good + Password quality + Mabuti + + + Excellent + Password quality + Magaling + + + Confirm Delete Wordlist + Kumpirmahin ang Delete Wordlist + + + Do you really want to delete the wordlist "%1"? + Gusto mo bang i-delete ang wordlist na "%1"? + + + Failed to delete wordlist + Nabigong i-delete ang wordlist + + + Wordlists + Mga Wordlist + + + All files + Lahat ng mga file + + + Select Custom Wordlist + Piliin ang Custom na Wordlist + + + Overwrite Wordlist? + I-overwrite ang Wordlist? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Umiiral na ang Wordlist na "%1" bilang custom na wordlist. +Gusto mo bang i-overwrite ito? + + + Failed to add wordlist + Nabigong magdagdag ng wordlist + + + Logograms + Logograms + + + Special Characters + Mga Espesyal na Character + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Hindi tugma ang mga password + + + Passwords match so far + Ang mga password ay tugma sa ngayon + + + Toggle Password (%1) + I-toggle ang Password na (%1) + + + Generate Password (%1) + Bumuo ng Password na (%1) + + + Warning: Caps Lock enabled! + Babala: Naka-enable ang Caps Lock! + + + Quality: %1 + Kalidad: %1 + + + Poor + Password quality + Mahina + + + Weak + Password quality + Mahina + + + Good + Password quality + Mabuti + + + Excellent + Password quality + Magaling + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + + + + PickcharsDialog + + KeePassXC - Pick Characters + KeePassXC - Mga Pick Character + + + Select characters to type, navigate with arrow keys, Ctrl + S submits. + Pumili ng mga character na ita-type, mag-navigate gamit ang mga arrow key, Ctrl + S isinumite. + + + Press &Tab between characters + Pindutin ang &Tab sa pagitan ng mga character + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + + + QMessageBox + + Overwrite + I-overwrite + + + Delete + I-delete + + + Move + Ilipat + + + Empty + Walang laman + + + Remove + Alisin + + + Skip + Laktawan + + + Disable + I-disable + + + Merge + Pagsamahin + + + Continue + Magpatuloy + + + Continue with weak password + + + + + QObject + + Database not opened + Hindi nabuksan ang database + + + Database hash not available + Hindi available ang hash ng database + + + Client public key not received + Hindi natanggap ang public key ng client + + + Cannot decrypt message + Hindi ma-decrypt ang mensahe + + + Action cancelled or denied + Kinansela o tinanggihan ang aksyon + + + Message encryption failed. + Nabigo ang pag-encrypt ng mensahe. + + + KeePassXC association failed, try again + Nabigo ang pagkakaugnay ng KeePassXC, subukang muli + + + Encryption key is not recognized + Ang key sa pag-encrypt ay hindi nakikilala + + + Incorrect action + Maling aksyon + + + Empty message received + Walang laman ang natanggap na mensahe + + + No URL provided + Walang ibinigay na URL + + + No logins found + Walang nahanap na mga login + + + No groups found + Walang nakitang group + + + Cannot create new group + Hindi makagawa ng bagong pangkat + + + No valid UUID provided + Walang valid na UUID ang ibinigay + + + Unknown error + Unknown na error + + + Browser Integration + Pagsasama ng Browser + + + Browser Plugin Failure + Nabigo ang Plugin ng Browser + + + Could not save the native messaging script file for %1. + Hindi mai-save ang native messaging script file para sa %1. + + + Username for the entry. + Username para sa entry. + + + username + username + + + URL for the entry. + URL para sa entry. + + + URL + URL + + + Notes for the entry. + Mag tala para sa entry. + + + Notes + Mga tala + + + Prompt for the entry's password. + I-prompt para sa password ng entry. + + + Generate a password for the entry. + Bumuo ng isang password para sa entry. + + + Add a new entry to a database. + Magdagdag ng bagong entry sa isang database. + + + Path of the entry to add. + Path ng entry na idadagdag. + + + Cannot generate a password and prompt at the same time. + Hindi makabuo ng password at prompt sa magkaparehong oras. + + + Could not create entry with path %1. + Hindi makalikha ng entry na may path na %1. + + + Enter password for new entry: + Maglagay ng password para sa bagong entry: + + + Writing the database failed %1. + Nabigo ang pagsulat ng database na %1. + + + Successfully added entry %1. + Matagumpay na naidagdag ang entry na %1. + + + Adds a new group to a database. + Magdagdag ng bagong pangkat sa isang database. + + + Path of the group to add. + Path ng group na idaragdag. + + + Group %1 already exists! + Umiiral na ang group na %1! + + + Group %1 not found. + Hindi nahanap ang group na %1. + + + Successfully added group %1. + Matagumpay na naidagdag ang group na %1. + + + Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. + Suriin kung ang anumang mga password ay na-leak sa publiko. Ang FILENAME ay dapat na path ng file na naglilista ng mga SHA-1 na hash ng mga na-leak na password sa HIBP na format, bilang available mula sa https://haveibeenpwned.com/Passwords. + + + FILENAME + FILENAME + + + Path to okon-cli to search a formatted HIBP file + Path sa okon-cli para maghanap ng na-format na HIBP file + + + okon-cli + okon-cli + + + Analyze passwords for weaknesses and problems. + Suriin ang mga password para sa mga kahinaan at problema. + + + Cannot find HIBP file: %1 + Hindi mahanap ang HIBP file: %1 + + + Evaluating database entries using okon… + Sinusuri ang mga entry sa database gamit ang okon… + + + Failed to open HIBP file %1: %2 + Nabigong buksan ang HIBP file na %1: %2 + + + Evaluating database entries against HIBP file, this will take a while… + Sinusuri ang mga entry sa database sa HIBP file, ito ay medyo magtatagal… + + + Password for '%1' has been leaked %2 time(s)! + Ang password para kay '%1' ay na-leak ng %2 (na) beses!Ang password para kay '%1' ay na-leak ng %2 (na) beses! + + + Password for '%1' has been leaked! + Ang password para kay '%1' ay na-leak! + + + Export an attachment of an entry. + Mag-export ng attachment ng isang entry. + + + Path of the entry with the target attachment. + Path ng entry na may target na attachment. + + + Name of the attachment to be exported. + Pangalan ng attachment na ie-export. + + + Path to which the attachment should be exported. + Path kung saan dapat i-export ang attachment. + + + Could not find entry with path %1. + Hindi mahanap ang entry na may path na %1. + + + Could not find attachment with name %1. + Hindi mahanap ang attachment na may pangalan na %1. + + + No export target given. Please use '--stdout' or specify an 'export-file'. + Walang ibinigay na target sa pag-export. Pakigamit ang '--stdout' o tukuyin ang 'export-file'. + + + Could not open output file %1. + Hindi mabuksan ang output file na %1. + + + Successfully exported attachment %1 of entry %2 to %3. + Matagumpay na na-export ang attachment na %1 ng entry na %2 hanggang sa %3. + + + Overwrite existing attachments. + I-overwrite ang mga kasalukuyang attachment. + + + Imports an attachment to an entry. + Mag-import ng attachment sa isang entry. + + + Path of the entry. + Path ng entry. + + + Name of the attachment to be added. + Pangalan ng attachment na idadagdag. + + + Path of the attachment to be imported. + Path ng attachment na ii-import. + + + Attachment %1 already exists for entry %2. + Umiiral na ang attachment na %1 para sa entry na %2. + + + Could not open attachment file %1. + Hindi mabuksan ang attachment file na %1. + + + Successfully imported attachment %1 as %2 to entry %3. + Matagumpay na na-import ang attachment na %1 bilang %2 sa entry na %3. + + + Remove an attachment of an entry. + Alisin ang isang attachment ng isang entry. + + + Name of the attachment to be removed. + Pangalan ng attachment na aalisin. + + + Successfully removed attachment %1 from entry %2. + Matagumpay na na-remove ang attachment na %1 mula sa entry na %2. + + + Copy the given attribute to the clipboard. Defaults to "password" if not specified. + Don't translate "password", it refers to the attribute. + Kopyahin ang ibinigay na attribute sa clipboard. Default sa "password" kung hindi tinukoy. + + + Copy the current TOTP to the clipboard (equivalent to "-a totp"). + Kopyahin ang kasalukuyang TOTP sa clipboard (katumbas ng "-isang totp"). + + + Must match only one entry, otherwise a list of possible matches is shown. + Dapat tumugma sa isang entry lamang, kung hindi, isang listahan ng mga posibleng tugma ay ipapakita. + + + Copy an entry's attribute to the clipboard. + Kopyahin ang attribute ng isang entry sa clipboard. + + + Path of the entry to clip. + clip = copy to clipboard + Path ng entry sa clip. + + + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). + Patigilin bago i-clear ang clipboard (default ay %1 segundo, nakatakda sa 0 para sa unlimited). + + + Invalid timeout value %1. + Invalid na value ng timeout na %1. + + + Multiple entries matching: + Maramihang mga entry na tumutugma: + + + Using matching entry: %1 + Gamit ang katugmang entry: %1 + + + Entry %1 not found. + Hindi nahanap ang entry na %1. + + + ERROR: Please specify one of --attribute or --totp, not both. + ERROR: Pakitukoy ang isa sa --attribute o --totp, hindi pareho. + + + Entry with path %1 has no TOTP set up. + Ang entry na may path na %1 ay walang TOTP set up. + + + ERROR: attribute %1 is ambiguous, it matches %2. + ERROR: ang attribute na %1 ay hindi tiyak, tumutugma ito sa %2. + + + Attribute "%1" not found. + Hindi nakita ang attribute na "%1". + + + Entry's "%1" attribute copied to the clipboard! + Nakopya sa clipboard ang entry na attribute na "%1"! + + + Clearing the clipboard in %1 second(s)... + Kini-clear ang clipboard sa %1 segundo...Kini-clear ang clipboard sa %1 (mga) segundo... + + + Clipboard cleared! + Na-clear ang clipboard! + + + Close the currently opened database. + I-close ang kasalukuyang nakabukas na database. + + + Display this help. + Ipakita ang tulong na ito. + + + Silence password prompt and other secondary outputs. + Patigilin ang prompt ng password at iba pang pangalawang output. + + + Key file of the database. + Key file ng database. + + + path + path + + + Deactivate password key for the database. + I-deactivate ang password key para sa database. + + + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). + Ang Yubikey slot at opsyonal na serial na ginagamit para ma-access ang database (hal., 1:7370001). + + + slot[:serial] + slot[:serial] + + + Missing positional argument(s). + Nawawala (mga) positional na argument. + + + Too many arguments provided. + Masyadong maraming argument ang ibinigay. + + + Path of the database. + Path ng database + + + Target decryption time in MS for the database. + Target na oras ng pag-decrypt sa MS para sa database. + + + time + oras + + + Set the key file for the database. + Itakda ang key file para sa database. + + + Set a password for the database. + Magtakda ng password para sa database. + + + Create a new database. + Lumikha ng bagong database + + + Invalid decryption time %1. + Invalid na oras ng pag-decrypt na %1. + + + Target decryption time must be between %1 and %2. + Ang target na oras ng pag-decrypt ay dapat nasa pagitan ng %1 at %2. + + + Failed to set database password. + Nabigong i-set ang password ng database. + + + Loading the key file failed + Nabigo ang paglo-load ng key file + + + No key is set. Aborting database creation. + Walang na-set na key. Pinapatigil ang paglikha ng database. + + + Benchmarking key derivation function for %1ms delay. + Pag-benchmark ng key derivation function para sa %1ms na pagkaantala. + + + Setting %1 rounds for key derivation function. + Pagtatakda ng %1 round para sa key derivation function. + + + error while setting database key derivation settings. + error habang nagtatakda ng mga setting ng derivation ng database key. + + + File %1 already exists. + Umiiral na ang file na %1. + + + Failed to save the database: %1. + Nabigong i-save ang database: %1. + + + Successfully created new database. + Matagumpay na nakagawa ng bagong database. + + + Unset the password for the database. + I-unset ang password para sa database. + + + Unset the key file for the database. + I-unset ang key file para sa database + + + Edit a database. + I-edit ang database + + + Cannot use %1 and %2 at the same time. + Hindi magagamit ang %1 at %2 nang magkasabay. + + + Could not change the database key. + Hindi mabago ang database key. + + + Database was not modified. + Hindi binago ang database. + + + Writing the database failed: %1 + Nabigo ang pagsulat ng database: %1 + + + Successfully edited the database. + Matagumpay na na-edit ang database. + + + Cannot remove password: The database does not have a password. + Hindi maalis ang password: Walang password ang database. + + + Cannot remove file key: The database does not have a file key. + Hindi maalis ang file key: Ang database ay walang file key. + + + Loading the new key file failed: %1 + Nabigo ang pag-load ng bagong key file: %1 + + + Found unexpected Key type %1 + May nakitang hindi inaasahang uri ng Key %1 + + + Cannot remove all the keys from a database. + Hindi maalis ang lahat ng mga key mula sa database. + + + Show a database's information. + Ipakita ang impormasyon ng database + + + UUID: + UUID: + + + Name: + Pangalan: + + + Description: + Paglalarawan: + + + Cipher: + Cipher: + + + KDF: + KDF: + + + Recycle bin is enabled. + Naka-enable ang recycle bin + + + Recycle bin is not enabled. + Ang recycle bin ay hindi naka-enable. + + + Location + Lokasyon + + + Database created + Nalikha na ang database + + + Last saved + Huling na-save + + + Unsaved changes + Mga hindi na-save na pagbabago + + + yes + oo + + + no + wala + + + Number of groups + Bilang ng mga grupo + + + Number of entries + Bilang ng mga entry + + + Number of expired entries + Bilang ng mga nag-expire na entry + + + Unique passwords + Natatanging password + + + Non-unique passwords + Hindi natatanging mga password + + + Maximum password reuse + Maximum na muling paggamit ng password + + + Number of short passwords + Bilang ng mabababang password + + + Number of weak passwords + Bilang ng mahihinang password + + + Entries excluded from reports + Ang mga entry ay hindi kasama sa mga ulat + + + Average password length + Average na haba ng password + + + %1 characters + %1 character + + + Word count for the diceware passphrase. + Bilang ng salita para sa diceware passphrase. + + + count + CLI parameter + bilang + + + Wordlist for the diceware generator. +[Default: EFF English] + Wordlist para sa diceware generator. +[Default: EFF English] + + + Generate a new random diceware passphrase. + Bumuo ng bagong random na diceware passphrase. + + + Invalid word count %1 + Invalid na word count na %1 + + + Title for the entry. + Pamagat para sa entry + + + title + pamagat + + + Edit an entry. + I-edit ang entry. + + + Path of the entry to edit. + Path ng entry para i-edit. + + + Not changing any field for entry %1. + Hindi binabago ang anumang field para sa entry %1. + + + Enter new password for entry: + Maglagay ng bagong password para sa entry: + + + Successfully edited entry %1. + Matagumpay na na-edit ang entry na %1. + + + Perform advanced analysis on the password. + Magsagawa ng advanced na pagsusuri sa password. + + + Password for which to estimate the entropy. + Password para kung saan tatantyahin ang entropy. + + + Estimate the entropy of a password. + Tantyahin ang entropy ng isang password. + + + Length %1 + Haba na %1 + + + Entropy %1 + Entropy %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Dagdag na piraso ng maramihang salita %1 + + + Type: Bruteforce + Uri: Bruteforce + + + Type: Dictionary + Uri: Dictionary + + + Type: Dict+Leet + Uri: Dict+Leet + + + Type: User Words + Uri: User Words + + + Type: User+Leet + Uri: User+Leet + + + Type: Repeated + Uri: Paulit-ulit + + + Type: Sequence + Uri: Sequence + + + Type: Spatial + Uri: Spatial + + + Type: Date + Uri: Petsa + + + Type: Bruteforce(Rep) + Uri: Bruteforce(Rep) + + + Type: Dictionary(Rep) + Uri: Dictionary(Rep) + + + Type: Dict+Leet(Rep) + Uri: Dict+Leet(Rep) + + + Type: User Words(Rep) + Uri: User Words(Rep) + + + Type: User+Leet(Rep) + Uri: User+Leet(Rep) + + + Type: Repeated(Rep) + Uri: Paulit-ulit na(Rep) + + + Type: Sequence(Rep) + Uri: Sequence(Rep) + + + Type: Spatial(Rep) + Uri: Spatial(Rep) + + + Type: Date(Rep) + Type: Petsa ng(Rep) + + + Type: Unknown (%1) + Uri: Unknown na (%1) + + + Entropy %1 (%2) + Entropy %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Password length (%1) != sum of length of parts (%2) *** + + + Exit interactive mode. + Lumabas sa interactive mode. + + + Exports the content of a database to standard output in the specified format. + Nai-export na ang nilalaman ng isang database sa karaniwang output sa tinukoy na format. + + + Unable to export database to XML: %1 + Hindi ma-export ang database sa XML: %1 + + + Unsupported format %1 + Hindi suportadong format %1 + + + Length of the generated password + Ang haba ng nabuong password + + + length + Haba + + + Use lowercase characters + Gumamit ng maliliit na character + + + Use uppercase characters + Gumamit ng malalaking character + + + Use numbers + Gumamit ng mga numero + + + Use special characters + Gumamit ng mga espesyal na character + + + Use extended ASCII + Gumamit ng pinahabang ASCII + + + Exclude character set + Ibukod ang set ng character + + + chars + chars + + + Use custom character set + Gumamit ng custom na set ng character + + + Exclude similar looking characters + Ibukod ang magkatulad na hitsura ng mga character + + + Include characters from every selected group + Isama ang mga character mula sa bawat napiling group + + + Generate a new random password. + Bumuo ng bagong random na password. + + + Invalid password length %1 + Invalid na haba ng password na %1 + + + Invalid password generator after applying all options + Invalid na generator ng password pagkatapos ilapat ang lahat ng mga opsyon + + + Display command help. + Ipakita ang tulong na command. + + + Available commands: + Mga available na command: + + + Import the contents of an XML database. + Mag-import ng mga content ng isang XML database. + + + Path of the XML database export. + Path ng pag-export ng XML database + + + Path of the new database. + Path ng bagong database. + + + Unable to import XML database: %1 + Hindi makapag-import ng XML database: %1 + + + Successfully imported database. + Matagumpay na na-import ang database. + + + Unknown command %1 + Hindi kilalang utos %1 + + + + +Available commands: + + + +Mga available command: + + + + Name of the command to execute. + Pangalan ng utos na isasagawa. + + + Displays debugging information. + Nagpapakita ng impormasyon sa pag-debug. + + + Invalid command %1. + Invalid na command na %1. + + + Recursively list the elements of the group. + Paulit-ulit na ilista ang mga elemento ng group. + + + Flattens the output to single lines. + Pina-flatten ang output sa iisang linya. + + + List database entries. + Listahan ng mga entry sa database. + + + Path of the group to list. Default is / + Path ng group para sa listahan. Default ay / + + + Cannot find group %1. + Hindi mahanap ang pangkat na %1. + + + Use the same credentials for both database files. + Gamitin ang parehong mga kredensyal para sa parehong mga file ng database. + + + Key file of the database to merge from. + Key file ng database na pagsasamahin. + + + Deactivate password key for the database to merge from. + I-deactivate ang password key para sa database na pagsasamahin. + + + Only print the changes detected by the merge operation. + I-print lamang ang mga pagbabagong nakita ng merge operation. + + + Yubikey slot for the second database. + Yubikey slot para sa pangalawang database. + + + slot + slot + + + Merge two databases. + Pagsamahin ang dalawang database. + + + Path of the database to merge from. + Path ng database kung saan pagsasamahin. + + + Error reading merge file: +%1 + Error sa pagbabasa ng merge file: +%1 + + + Unable to save database to file : %1 + Hindi mai-save ang databasa sa file na: %1 + + + Successfully merged %1 into %2. + Matagumpay na pinagsama ang %1 sa %2. + + + Database was not modified by merge operation. + Ang database ay hindi binago ng operasyon ng pagsasama. + + + Moves an entry to a new group. + Inilipat ang isang entry sa isang bagong group. + + + Path of the entry to move. + Path ng entry para ilipat. + + + Path of the destination group. + Path ng distinasyon ng group. + + + Could not find group with path %1. + Hindi mahanap ang group na may path na %1. + + + Entry is already in group %1. + Ang entry ay nasa group na %1. + + + Successfully moved entry %1 to group %2. + Matagumpay na nailipat ang entry %1 sa group na %2. + + + Open a database. + Magbukas ng database. + + + Path of the entry to remove. + Path ng entry para i-remove. + + + Unable to save database to file: %1 + Hindi mai-save ang database sa file na: %1 + + + Successfully recycled entry %1. + Matagumpay na na-recycle ang entry na %1. + + + Successfully deleted entry %1. + Matagumpay na na-delete ang entry na %1. + + + Path of the group to remove. + Path ng group na ire-remove. + + + Cannot remove root group from database. + Hindi maalis ang root group mula sa database. + + + Successfully recycled group %1. + Matagumpay na na-recycle ang group na %1. + + + Successfully deleted group %1. + Matagumpay na na-delete ang group na %1. + + + Find entries quickly. + Maghanap ng mga entry nang mabilis. + + + Search term. + Termino sa paghahanap. + + + Show the entry's current TOTP. + Ipakita ang kasalukuyang TOTP ng entry. + + + Show the protected attributes in clear text. + Ipakita ang mga protektadong attribute sa malinaw na teksto. + + + Show all the attributes of the entry. + Ipakita ang lahat ng mga attribute ng entry. + + + Show the attachments of the entry. + Ipakita ang mga attachment ng entry. + + + 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. + Mga pangalan ng ipapakitang katangian. Maaaring tukuyin ang opsyon na ito nang higit sa isang beses, na ang bawat katangian ay ipinapakita nang isa-bawat-linya sa ibinigay na pagkakasunud-sunod. Kung walang tinukoy na mga katangian, ibibigay ang buod ng mga default na katangian. + + + attribute + attribute + + + Show an entry's information. + Ipakita ang impormasyon ng entry. + + + Name of the entry to show. + Pangalan ng entry na ipapakita. + + + ERROR: unknown attribute %1. + ERROR: hindi alam na attribute %1. + + + No attachments present. + Walang mga attachment ang naroroon. + + + Attachments: + Mga attachment: + + + Failed to open database file %1: not found + Nabigong buksan ang file ng database na %1: hindi nahanap + + + Failed to open database file %1: not a plain file + Nabigong buksan ang database file na %1: hindi isang simpleng file + + + Failed to open database file %1: not readable + Nabigong buksan ang database file na %1: hindi nababasa + + + Enter password to unlock %1: + Maglagay ng password para i-unlock ang %1: + + + Failed to load key file %1: %2 + Nabigong i-load ang key file %1: %2 + + + WARNING: You are using an old key file format which KeePassXC may +stop supporting in the future. + +Please consider generating a new key file. + BABALA: Gumagamit ka ng lumang key file format na maaaring magpatigil sa +KeePassXC ng pagsuporta sa hinaharap. + +Mangyaring isaalang-alang ang pagbuo ng bagong key file. + + + Invalid YubiKey slot %1 + Invalid na YubiKey slot na %1 + + + Invalid YubiKey serial %1 + Invalid na YubiKey serial na %1 + + + Please present or touch your YubiKey to continue. + Mangyaring ipakita o pindutin ang iyong YubiKey para magpatuloy. + + + Enter password to encrypt database (optional): + Maglagay ng password para i-encrypt ang database (opsyonal): + + + Do you want to create a database with an empty password? [y/N]: + Gusto mo bang lumikha ng isang database na walang password? [y/N]: + + + Repeat password: + Ulitin ang password: + + + Error: Passwords do not match. + Error: Hindi tugma ang mga password. + + + No program defined for clipboard manipulation + Walang tinukoy na program para sa pagmamanipula ng clipboard + + + All clipping programs failed. Tried %1 + + Nabigo ang lahat ng clipping program. Sinubukan ang %1 + + + + Creating KeyFile %1 failed: %2 + Nabigo ang paglikha ng KeyFile na %1: %2 + + + Loading KeyFile %1 failed: %2 + Nabigo ang paglo-load ng KeyFile na %1: %2 + + + HIBP file, line %1: parse error + HIBP file, linya na %1: error sa pag-parse + + + To use okon, you must provide a post-processed file (e.g. file.okon) + Para magamit ang okon, dapat kang magbigay ng post-processed na file (hal. file.okon) + + + Could not start okon process: %1 + Hindi masimulan ang proseso ng okon: %1 + + + Error: okon process did not finish + Error: hindi natapos ang proseso ng okon + + + Failed to load okon processed database: %1 + Nabigong i-load ang okon sa naprosesong database: %1 + + + Very weak password + Napakahina ng password + + + Password entropy is %1 bits + Ang entropy ng password ay %1 bits + + + Weak password + Mahinang password + + + Used in %1/%2 + Ginamit sa %1%2 + + + Password is used %1 time(s) + Ginagamit ang password ng %1 besesGinagamit ang password ng %1 (mga) beses + + + Password has expired + Nag-expire na ang password + + + Password expiry was %1 + Ang pag-expire ng password ay sa %1 + + + Password expires on %1 + Mag-e-expire ang password sa %1 + + + Password is about to expire + Malapit nang mag-expire ang password + + + Password expires in %1 day(s) + Mag-e-expire ang password sa loob ng %1 na arawMag-e-expire ang password sa loob ng %1 na (mga) araw + + + Password will expire soon + Malapit nang mag-expire ang password + + + Version %1 + Bersyon na %1 + + + Build Type: %1 + Uri ng Build: %1 + + + Revision: %1 + Pagbabago: %1 + + + Distribution: %1 + Pamamahagi: %1 + + + Debugging mode is disabled. + Naka-disable ang mode ng pag-debug. + + + Debugging mode is enabled. + Naka-enable ang mode ng pag-debug. + + + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 + Operating system: %1 +Arkitektura ng CPU: %2 +Kernel: %3 %4 + + + Auto-Type + Auto-Type + + + SSH Agent + SSH Agent + + + KeeShare + KeeShare + + + YubiKey + YubiKey + + + Quick Unlock + Mabilis na I-unlock + + + Secret Service Integration + Secret Service Integration + + + None + Wala + + + Enabled extensions: + Mga na-enable na extension: + + + over %1 year(s) + mahigit sa %1 taonmahigit sa %1 (mga) taon + + + about %1 month(s) + humigit-kumulang na %1 buwanhumigit-kumulang na %1 (mga) buwan + + + %1 week(s) + %1 linggo%1 (mga)linggo + + + %1 day(s) + %1 araw%1 (mga)araw + + + %1 hour(s) + %1 oras%1 (mga)oras + + + %1 minute(s) + %1 minuto%1 (mga)minuto + + + Botan library must be at least %1, found %2.%3.%4 + + + + Cryptographic libraries: + Mga Cryptographic na library: + + + AES (%1 rounds) + AES (%1 round) + + + Argon2%1 (%2 rounds, %3 KB) + Argon2%1 (%2 rounds, %3 KB) + + + SymmetricCipher::init: Invalid cipher mode. + SymmetricCipher::init: Invalid na cipher mode. + + + SymmetricCipher::init: Invalid IV size of %1 for %2. + SymmetricCipher::init: Invalid IV na sukat ng %1 para sa %2. + + + Cipher not initialized prior to use. + Hindi nasimulan ang cipher bago gamitin. + + + Cannot process 0 length data. + Hindi maproseso ang 0 haba ng data. + + + unknown executable (DBus address %1) + unknown na executable (DBus address na %1) + + + %1 (invalid executable path) + %1 (hindi wastong executable path) + + + NULL device + NULL na device + + + error reading from device + error sa pagbabasa mula sa device + + + file empty + walang lamang file + + + AES 256-bit + AES 256-bit + + + Twofish 256-bit + Twofish 256-bit + + + ChaCha20 256-bit + ChaCha20 256-bit + + + Argon2d (KDBX 4 – recommended) + Argon2d (KDBX 4 – inirerekomenda) + + + Argon2id (KDBX 4) + Argon2id (KDBX 4) + + + AES-KDF (KDBX 4) + AES-KDF (KDBX 4) + + + AES-KDF (KDBX 3) + AES-KDF (KDBX 3) + + + Existing single-instance lock file is invalid. Launching new instance. + Ang umiiral na single-instance lock file ay di-wasto. Maglunsad ng bagong instance. + + + The lock file could not be created. Single-instance mode disabled. + Hindi malikha ang lock file. Naka-disable ang single-instance mode. + + + Clearing the clipboard in %1 second(s)… + Kini-clear ang clipboard sa %1 segundo…Kini-clear ang clipboard sa %1 (mga) segundo… + + + Group + Group + + + Title + Pamagat + + + Username + Username + + + Password + Password + + + TOTP + TOTP + + + Icon + Icon + + + Last Modified + Huling Binago + + + Created + Nalikha na + + + Benchmark %1 delay + Benchmark %1 na pagkaantala + + + %1 ms + milliseconds + %1 ms%1 ms + + + %1 s + seconds + %1 s%1 s + + + Do you really want to delete the entry "%1" for good? + Gusto mo bang i-delete ang entry na "%1" nang tuluyan? + + + Do you really want to delete %n entry(s) for good? + Gusto mo bang i-delete ang %n na entry nang tuluyan?Gusto mo bang i-delete ang %n (mga) na entry nang tuluyan? + + + Delete entry(s)? + I-delete ang entry?I-delete ang (mga) entry? + + + Do you really want to move entry "%1" to the recycle bin? + Gusto mo bang ilipat ang entry na "%1" sa recycle bin? + + + Do you really want to move %n entry(s) to the recycle bin? + Gusto mo bang ilipat ang %n na entry sa recycle bin?Gusto mo bang ilipat ang %n na (mga) entry sa recycle bin? + + + Move entry(s) to recycle bin? + Ilipat ang entry sa recycle bin?Ilipat ang (mga) entry sa recycle bin? + + + Replace references to entry? + Palitan ang mga sanggunian sa entry? + + + Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? + Ang entry na "%1" ay mayroong %2 na reference. Gusto mo bang i-overwrite ang mga reference na may mga value, laktawan ang entry na ito, o i-delete ang mga ito?Ang entry na "%1" ay mayroong %2 na (mga) reference. Gusto mo bang i-overwrite ang mga reference na may mga value, laktawan ang entry na ito, o i-delete ang mga ito? + + + User name + Pangalan ng user + + + Browser Statistics + Mga Browser Statistic + + + Health Check + Pagsuri sa Health + + + HIBP + HIBP + + + Statistics + Statistics + + + Unsupported key file version: %1 + Hindi suportadong bersyon ng key file: %1 + + + Checksum mismatch! Key file may be corrupt. + Hindi tugma ang checksum! Maaaring sira ang key file. + + + Unexpected key file data! Key file may be corrupt. + Hindi inaasahang data ng key file! Maaaring corrupt ang key file. + + + KeePassXC - cross-platform password manager + KeePassXC - cross-platform na password manager + + + filenames of the password databases to open (*.kdbx) + mga filename ng mga database ng password na bubuksan (*.kdbx) + + + path to a custom config file + path sa isang custom na config file + + + path to a custom local config file + path sa isang custom local config file + + + lock all open databases + i-lock ang lahat ng bukas na database + + + key file of the database + key file ng database + + + read password of the database from stdin + basahin ang password ng database mula sa stdin + + + Database failed to lock. + Nabigong i-lock ang database. + + + Another instance of KeePassXC is already running. + Ang isa pang halimbawa ng KeePassXC ay tumatakbo na. + + + KeePassXC is not running. No open database to lock + Ang KeePassXC ay hindi tumatakbo. Walang bukas na database upang i-lock + + + Fatal error while testing the cryptographic functions. + Fatal na error habang sinusubukan ang mga cryptographic function. + + + KeePassXC - Error + KeePassXC - Error + + + Database password: + Password ng database: + + + Invalid Settings + TOTP + Mga Invalid Setting + + + Invalid Key + TOTP + Invalid na Key + + + Failed to create Windows Hello credential. + Nabigong gumawa ng kredensyal ng Windows Hello. + + + Failed to sign challenge using Windows Hello. + Nabigong lagdaan ang challenge gamit ang Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Babala: Nabigong harangan ang pagkuha ng screenshot sa isang top-level na window. + + + Invalid Cipher + Invalid na Cipher + + + Invalid KDF + Invalid na KDF + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + Nabigong simulan ang KeePassXC crypto. + + + Failed to encrypt key data. + Nabigong i-encrypt ang key data. + + + Failed to get Windows Hello credential. + Nabigong makuha ang kredensyal ng Windows Hello. + + + Failed to decrypt key data. + Nabigong i-decrypt ang key data. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + I-delete ang data ng plugin? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Mga tag + + + + QtIOCompressor + + Internal zlib error when compressing: + Panloob na zlib error kapag nag-compress: + + + Error writing to underlying device: + Error sa pagsulat sa pinagbabatayang device: + + + Error opening underlying device: + Error sa pagbubukas ng pinagbabatayang device: + + + Error reading data from underlying device: + Error sa pagbabasa ng data mula sa pinagbabatayang device: + + + Internal zlib error when decompressing: + Panloob na zlib error kapag nagde-decompress: + + + + QtIOCompressor::open + + The gzip format not supported in this version of zlib. + Ang gzip na format ay hindi suportado sa bersyong ng zlib na ito. + + + Internal zlib error: + Panloob na zlib na error: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + + + ReportsWidgetBrowserStatistics + + Double-click entries to edit. + I-double click ang mga entry para i-edit. + + + List of entry URLs + Listahan ng mga URL entry + + + Entry has no URLs set + Walang nakatakdang mga URL ang entry + + + Allowed URLs + Mga pinapayagang URL + + + Entry has no Browser Integration settings + Ang entry ay walang mga setting ng Browser Integration + + + Denied URLs + Mga URL na tinanggihan + + + (Excluded) + (Hindi kasama) + + + This entry is being excluded from reports + Ang entry na ito ay hindi kasama sa mga ulat + + + Please wait, browser statistics is being calculated… + Pakihintay, ang mga istatistika ng browser ay kinakalkula… + + + No entries with a URL, or none has browser extension settings saved. + Walang mga entry na may URL, o walang naka-save na settings ng extension ng browser. + + + Title + Pamagat + + + Path + Path + + + URLs + URLs + + + Edit Entry… + I-edit ang Entry… + + + Delete Entry(s)… + I-delete ang Entry…I-delete ang (mga)Entry… + + + Exclude from reports + Ibukod mula sa mga ulat + + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + + + + ReportsWidgetHealthcheck + + Show expired entries + + + + (Expired) + + + + Hover over reason to show additional details. Double-click entries to edit. + Mag-hover sa itaas para makita ng mga karagdagang detalye. I-double click ang mga entry para i-edit. + + + Bad — password must be changed + Hindi maganda — dapat palitan ang password + + + Poor — password should be changed + Mahina — dapat palitan ang password + + + Weak — consider changing the password + Mahina — isaalang-alang ang pagpapalit ng password + + + (Excluded) + (Hindi kasama) + + + This entry is being excluded from reports + Ang entry na ito ay hindi kasama sa mga ulat + + + Please wait, health data is being calculated… + Pakihintay, ang data ng kalusugan ay kinakalkula… + + + Congratulations, everything is healthy! + Congratulations, lahat ay ok! + + + Title + Pamagat + + + Path + Path + + + Score + Score + + + Reason + Dahilan + + + Edit Entry… + I-edit ang Entry… + + + Delete Entry(s)… + I-delete ang Entry…I-delete ang (mga)Entry… + + + Exclude from reports + Ibukod mula sa mga ulat + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + + + + ReportsWidgetHibp + + CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. + BABALA: Ang ulat na ito ay nangangailangan ng pagpapadala ng impormasyon sa online na serbisyong Have I Been Pwned (https://haveibeenpwned.com). Kung magpapatuloy ka, ang iyong mga password sa database ay iha-hash sa cryptographic at ang unang limang character ng mga hash na iyon ay ligtas na ipapadala sa serbisyong ito. Ang database mo ay nananatiling ligtas at hindi mawawala ang impormasyon nito. Gayunpaman, ang bilang ng mga password na iyong ipapadala at ang iyong IP address ay malalantad sa serbisyong ito. + + + Perform Online Analysis + Magsagawa ng Online na Pagsusuri + + + Also show entries that have been excluded from reports + Gayundin, ipakita ang mga entry na hindi kasama sa mga ulat + + + This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. + Ang build na ito ng KeePassXC ay walang mga function sa network. Kinakailangan ang networking upang suriin ang mga password mo laban sa mga database ng Have I Been Pwned. + + + Congratulations, no exposed passwords! + Congratulations, walang na-expose na mga password! + + + Title + Pamagat + + + Path + Path + + + Password exposed… + Na-expose ang password… + + + (Excluded) + (Hindi kasama) + + + This entry is being excluded from reports + Ang entry na ito ay hindi kasama sa mga ulat + + + once + Password exposure amount + minsan + + + up to 10 times + Password exposure amount + hanggang 10 beses + + + up to 100 times + Password exposure amount + hanggang 100 beses + + + up to 1000 times + Password exposure amount + hanggang 1000 beses + + + up to 10,000 times + Password exposure amount + hanggang 10,000 beses + + + up to 100,000 times + Password exposure amount + hanggang 100,000 beses + + + up to a million times + Password exposure amount + hanggang sa isang milyong beses + + + millions of times + Password exposure amount + milyon-milyong beses + + + Edit Entry… + I-edit ang Entry… + + + Delete Entry(s)… + I-delete ang Entry…I-delete ang (mga)Entry… + + + Exclude from reports + Ibukod mula sa mga ulat + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + I-export + + + Import + Mag-import + + + List of entry URLs + Listahan ng mga URL entry + + + Title + Pamagat + + + Path + Path + + + Username + Username + + + URLs + URLs + + + Edit Entry… + I-edit ang Entry… + + + Delete Entry(s)… + I-delete ang Entry…I-delete ang (mga)Entry… + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + I-export ang Kumpirmasyon + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + + + + ReportsWidgetStatistics + + Hover over lines with error icons for further information. + Mag-hover sa mga linyang may mga icon ng error para sa karagdagang impormasyon. + + + Name + Pangalan + + + Value + Value + + + Please wait, database statistics are being calculated… + Pakihintay, ang mga istatistika ng database ay kinakalkula… + + + Database name + Pangalan ng database + + + Description + Paglalarawan + + + Location + Lokasyon + + + Database created + Nalikha na ang database + + + Last saved + Huling na-save + + + Unsaved changes + Mga hindi na-save na pagbabago + + + yes + oo + + + no + wala + + + The database was modified, but the changes have not yet been saved to disk. + Ang database ay binago, ngunit ang mga pagbabago ay hindi pa nai-save sa disk. + + + Number of groups + Bilang ng mga grupo + + + Number of entries + Bilang ng mga entry + + + Number of expired entries + Bilang ng mga nag-expire na entry + + + The database contains entries that have expired. + Naglalaman ang database ng mga entry na nag-expire. + + + Unique passwords + Natatanging mga password + + + Non-unique passwords + Hindi natatanging mga password + + + More than 10% of passwords are reused. Use unique passwords when possible. + Higit sa 10% ng mga password ang muling ginagamit. Gumamit ng mga natatanging password kung maaari. + + + Maximum password reuse + Maximum na muling paggamit ng password + + + Some passwords are used more than three times. Use unique passwords when possible. + Ang ilang mga password ay ginagamit nang higit sa tatlong beses. Gumamit ng mga natatanging password kung maaari. + + + Number of short passwords + Bilang ng mabababang password + + + Recommended minimum password length is at least 8 characters. + Ang inirerekomendang minimum na haba ng password ay hindi bababa sa 8 character. + + + Number of weak passwords + Bilang ng mahihinang password + + + Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. + Irekomenda ang paggamit ng mahaba, naka-random na mga password na may rating na 'mabuti' o 'mahusay'. + + + Entries excluded from reports + Ang mga entry ay hindi kasama sa mga ulat + + + Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. + Hindi kasama ang mga entry mula sa mga ulat, ibig sabihin dahil sila ay kilala na may mahinang password, ay hindi nangangahulugang isang problema, ngunit dapat mong bantayan sila. + + + Average password length + Average na haba ng password + + + %1 characters + %1 character + + + Average password length is less than ten characters. Longer passwords provide more security. + Ang average na haba ng password ay hindi baba sa sampung character. Ang mas mahahabang password ay nagbibigay ng higit na seguridad. + + + + SSHAgent + + Agent connection failed. + Hindi makakonekta ang agent + + + Agent protocol error. + Error sa protocol ng agent. + + + No agent running, cannot add identity. + Walang gumaganang ahente, hindi makakapagdagdag ng pagkakakilanlan. + + + Key identity ownership conflict. Refusing to add. + Salungatan sa pagmamay-ari ng key identity. Tumangging magdagdag. + + + Agent refused this identity. Possible reasons include: + Itinanggi ng agent ang pagkakakilanlan na ito. Kabilang sa mga posibleng dahilan ang: + + + The key has already been added. + Naidagdag na ang key. + + + Restricted lifetime is not supported by the agent (check options). + Ang pinaghihigpitang lifetime ay hindi sinusuportahan ng agent (tingnan ang mga opsyon). + + + A confirmation request is not supported by the agent (check options). + Ang isang kahilingan sa pagkumpirma ay hindi sinusuportahan ng ahente (tingnan ang mga opsyon). + + + Security keys are not supported by the agent or the security key provider is unavailable. + Ang mga security key ay hindi sinusuportahan ng agent o ang security key provider ay hindi available. + + + No agent running, cannot remove identity. + Walang tumatakbong ahente, hindi maalis ang pagkakakilanlan. + + + No agent running, cannot list identities. + Walang gumaganang ahente, hindi makakapaglista ng mga pagkakakilanlan. + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + + + + SearchHelpWidget + + Search Help + Maghanap ng Tulong + + + Search terms are as follows: [modifiers][field:]["]term["] + Ang mga termino para sa paghahanap ay ang mga sumusunod: [modifiers][field:]["]term["] + + + Every search term must match (ie, logical AND) + Dapat tumugma ang bawat termino para sa paghahanap (ibig sabihin, logical AT) + + + Modifiers + Mga modifier + + + exclude term from results + ibukod ang termino mula sa mga resulta + + + match term exactly + eksaktong kataga + + + use regex in term + gumamit ng regex sa termino + + + Fields + Mga Field + + + Term Wildcards + Terminong Wildcards + + + match anything + tumugma sa kahit ano + + + match one + tumugma sa isa + + + logical OR + logical OR + + + Examples + Mga halimbawa + + + + SearchWidget + + Search + Maghanap + + + Search Help + Maghanap ng Tulong + + + Save Search + I-save ang Search + + + Search (%1)… + Search placeholder text, %1 is the keyboard shortcut + Maghanap ng (%1)… + + + Case sensitive + Case sensitive + + + Limit search to selected group + Limitahan ang paghahanap sa napiling group + + + + SettingsClientModel + + Application + Application + + + PID + PID + + + DBus Address + DBus Address + + + Manage + Pamahalaan + + + + SettingsDatabaseModel + + File Name + Pangalan ng File + + + Group + Group + + + Manage + Pamahalaan + + + + SettingsWidgetFdoSecrets + + Options + Mga Opsyon + + + Enable KeepassXC Freedesktop.org Secret Service integration + I-enable ang Secret Service na pagsasama ng KeepassXC Freedesktop.org + + + General + Pangkalahatan + + + Show notification when passwords are retrieved by clients + Ipakita ang abiso kapag ang mga password ay nakuha ng mga client + + + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> + <html><head/><body><p>Kung naka-enable, anumang pagtatangka na basahin ang isang password ay dapat kumpirmahin. Kung hindi, maaarin mabasa ng mga kliyente ang mga password nang walang kumpirmasyon kapag na-unlock ang database.</p><p>Saklaw lang ng opsyong ito ang access sa password ng isang entry. Maaaring palaging isa-isahin ng mga kliyente ang mga item ng database na naka-expose at i-query ang kanilang mga attribute.</p></body></html> + + + Confirm when passwords are retrieved by clients + Kumpirmahin kapag ang mga password ay nabawi na ng mga client + + + Confirm when clients request entry deletion + Kumpirmahin kapag humiling ang mga client ng pag-delete ng entry + + + Prompt to unlock database before searching + I-prompt para i-unlock ang database bago mag-search + + + Exposed database groups: + Na-expose na mga group ng database: + + + Authorization + Awtorisasyon + + + These applications are currently connected: + Ang mga application na ito ay kasalukuyang konektado: + + + <b>Warning:</b> + <b>Babala:</b> + + + Save current changes to activate the plugin and enable editing of this section. + I-save ang mga kasalukuyang pagbabago para i-activate ang plugin at i-enable ang pag-edit ng seksyong ito. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + + + + SettingsWidgetKeeShare + + Active + Aktibo + + + Allow KeeShare imports + Payagan ang mga pag-import ng KeeShare + + + Allow import + Payagan ang pag-import + + + Allow KeeShare exports + Payagan ang mga pag-export ng KeeShare + + + Allow export + Payagan ang pag-export + + + Only show warnings and errors + Magpakita lamang ng mga babala at error + + + Own certificate + Sariling certificate + + + Signer: + Signer: + + + Generate new certificate + Bumuo ng bagong certificate + + + Generate + Bumuo + + + Fingerprint: + Fingerprint: + + + Signer name field + Field ng pangalan ng signer + + + Fingerprint + Fingerprint + + + + ShareExport + + Could not write export container. + Hindi maisulat ang export container. + + + + ShareImport + + Successful import + Matagumpay na pag-import + + + + ShareObserver + + Import from %1 failed (%2) + Nabigo ang pag-import mula sa %1 (%2) + + + Import from %1 successful (%2) + Matagumpay ang (%2) na nai-import mula sa %1 + + + Imported from %1 + Na-import mula sa %1 + + + Multiple import source path to %1 in %2 + Maramihang landas ng pag-import sa %1 sa %2 + + + Conflicting export target path %1 in %2 + Magkasalungat na path ng target na pag-export na %1 sa %2 + + + Export to %1 failed (%2) + Nabigo ang pag-export sa %1 (%2) + + + Export to %1 successful (%2) + Matagumpay na na-export sa %1 ang (%2) + + + Export to %1 + I-export sa %1 + + + + TagModel + + Clear Search + I-clear ang Paghahanap + + + All Entries + Lahat ng Entry + + + Expired + Nag-expire na + + + Weak Passwords + Mga Mahinang Password + + + + TagView + + Remove Search + Alisin ang Search + + + Remove Tag + Alisin ang Tag + + + Confirm Remove Tag + Kumpirmahin ang Remove Tag + + + Remove tag "%1" from all entries in this database? + Alisin ang tag na "%1" sa lahat ng mga entry sa database na ito? + + + + TotpDialog + + Timed Password + Naka-time na Password + + + Copy + kopyahin + + + Expires in <b>%n</b> second(s) + Mag-e-expire sa loob ng <b>%n</b> segundoMag-e-expire sa loob ng <b>%n</b> (mga)segundo + + + + TotpExportSettingsDialog + + Copy + Kopyahin + + + NOTE: These TOTP settings are custom and may not work with other authenticators. + TOTP QR code dialog warning + TANDAAN: Ang settings ng TOTP na ito ay custom +at maaaring hindi gumana sa ibang mga authenticator. + + + There was an error creating the QR code. + Nagkaroon ng error sa paglikha ng QR code. + + + Closing in %1 seconds. + Magsasara sa loob ng %1 segundo. + + + + TotpSetupDialog + + Setup TOTP + I-setup ang TOTP + + + Secret Key: + Secret Key: + + + Secret key must be in Base32 format + Ang secret key ay dapat nasa Base32 na format + + + Secret key field + Secret key field + + + Default settings (RFC 6238) + Mga default setting (RFC 6238) + + + Steam® settings + Mga setting ng Steam® + + + Custom settings: + Mga custom setting: + + + Custom Settings + Mga Custom Setting + + + Algorithm: + Algorithm: + + + Time step: + Time step: + + + Time step field + Field ng time step + + + sec + Seconds + seg + + + Code size: + Sukat ng code: + + + digits + mga digit + + + Invalid TOTP Secret + Invalid na TOTP Secret + + + You have entered an invalid secret key. The key must be in Base32 format. +Example: JBSWY3DPEHPK3PXP + Naglagay ka ng invalid secret key. Ang key ay dapat nasa Base32 na format. +Halimbawa: JBSWY3DPEHPK3PXP + + + Confirm Remove TOTP Settings + Kumpirmahin ang Mga Romove TOTP Setting + + + Are you sure you want to delete TOTP settings for this entry? + Sigurado ka bang gusto mong i-delete ang mga setting ng TOTP para sa entry na ito? + + + + URLEdit + + Invalid URL + Invalid na URL + + + + UpdateCheckDialog + + Checking for updates + Tinitingnan ang mga update + + + Checking for updates… + Tinitingnan ang mga update… + + + Close + I-close + + + Software Update + Update ng Software + + + An error occurred when trying to retrieve update information, please try again later. + Nagkaroon ng error noong sinusubukang ibalik ang na-update na impormasyon, pakisubukang muli sa ibang pagkakataon. + + + <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. + <strong>Available ang bagong bersyon.</strong><br/>KeePassXC %1 ay maaaring <a href="https://keepassxc.org/download/">i-download dito</a>. + + + You have the latest version of KeePassXC + Mayroon kang pinakabagong bersyon ng KeePassXC + + + + WelcomeWidget + + Start storing your passwords securely in a KeePassXC database + Simulan ang pag-store ng iyong mga password nang ligtas sa isang database ng KeePassXC + + + Recent databases + Mga kamakailang database + + + Open a recent database + Magbukas ng kamakailang database + + + Welcome to KeePassXC %1 + Welcome sa KeePassXC %1 + + + Create Database + + + + Open Database + + + + Import File + + + + + WinUtils + + Invalid key code + Invalid na key code + + + Global shortcut already registered to %1 + Nakarehistro na ang global shortcut sa %1 + + + Could not register global shortcut + Hindi mairehistro ang global shortcut + + + + YubiKey + + General: + Pangkalahatan: + + + Could not find interface for hardware key with serial number %1. Please connect it to continue. + Hindi mahanap ang interface para sa hardware key na may serial number na %1. Mangyaring ikonekta ito para magpatuloy. + + + + YubiKeyEditWidget + + Hardware key slot selection + Pagpili ng hardware key slot + + + Could not find any hardware keys! + Hindi makahanap ng anumang mga hardware key! + + + Selected hardware key slot does not support challenge-response! + Ang napiling hardware key slot ay hindi sumusuporta sa challenge-response! + + + Challenge-Response + Challenge-Response + + + Add Challenge-Response + Magdagdag ng Challenge-Response + + + Change Challenge-Response + Palitan ang Challenge-Response + + + Remove Challenge-Response + Alisin ang Hamon-Tugon + + + Challenge-Response set, click to change or remove + Challenge-Response set, i-click upang baguhin o alisin + + + Detecting hardware keys… + Dini-detect ang mga hardware key… + + + No hardware keys detected + Walang nakitang hardware key + + + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + + + + + YubiKeyInterfacePCSC + + The YubiKey PCSC interface has not been initialized. + Ang interface ng YubiKey PCSC ay hindi pa nasimulan. + + + Could not find or access hardware key with serial number %1. Please present it to continue. + Hindi mahanap o ma-access ang hardware key na may serial number na %1. Mangyaring ipakita ito para magpatuloy. + + + Hardware key is locked or timed out. Unlock or re-present it to continue. + Naka-lock o nag-time out ang hardware key. I-unlock o muling ipakita ito para makapagpatuloy. + + + Hardware key was not found or is not configured. + Hindi nahanap o hindi na-configure ang hardware key. + + + Failed to complete a challenge-response, the PCSC error code was: %1 + Nabigong makumpleto ang isang challenge-response, ang PCSC error code ay: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Pindutin + + + Passive + USB Challenge-Response Key no interaction required + Passive + + + + YubiKeyInterfaceUSB + + Unknown + Hindi kilala + + + Press + USB Challenge-Response Key interaction request + Pindutin + + + Passive + USB Challenge-Response Key no interaction required + Passive + + + The YubiKey USB interface has not been initialized. + Ang YubiKey USB interface ay hindi pa nasimulan. + + + Could not find hardware key with serial number %1. Please plug it in to continue. + Hindi mahanap ang hardware key na may serial number na %1. Paki-plug ito upang magpatuloy. + + + Hardware key timed out waiting for user interaction. + Nag-time out ang hardware key habang naghihintay para sa pakikipag-ugnayan sa user. + + + A USB error occurred when accessing the hardware key: %1 + Isang USB error ang nangyare noong ina-access ang hardware key: %1 + + + Failed to complete a challenge-response, the specific error was: %1 + Nabigong makumpleto ang isang challenge-response, ang partikular na error ay: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + \ No newline at end of file diff --git a/share/translations/keepassxc_fr.ts b/share/translations/keepassxc_fr.ts index ee37ee653..d809f8d39 100644 --- a/share/translations/keepassxc_fr.ts +++ b/share/translations/keepassxc_fr.ts @@ -31,7 +31,7 @@ <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> - <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Voir Contributions sur GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Voir les contributions sur GitHub</a> Debug Info @@ -80,6 +80,10 @@ Details Détails + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Votre décision sera mémorisée pour la durée tant que le client qui effectue la demande et KeePassXC fonctionnent tous deux. + Remember Mémoriser @@ -88,17 +92,13 @@ Allow Selected Autoriser les éléments sélectionnés - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Votre décision sera mémorisée pour la durée tant que le client qui effectue la demande et KeePassXC fonctionnent tous deux. - Deny All && Future - Tout refuser et dans le future + Tout refuser et dans le futur Allow All && &Future - Tout accepter et dans le futur + Tout accepter et dans le &futur @@ -122,6 +122,10 @@ Use OpenSSH Utiliser OpenSSH + + Use both agents + Utiliser les deux agents + SSH_AUTH_SOCK override Valeur de remplacement SSH_AUTH_SOCK @@ -150,10 +154,6 @@ SSH Agent connection is working! La connexion de l’agent SSH fonctionne. - - Use both agents - Utiliser les deux agents - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Sécurité + + This setting cannot be enabled when minimize on unlock is enabled. + Ce paramètre ne peut pas être activé si l’option Réduire au déverrouillage est activée. + Access error for config file %1 Erreur d’accès pour le fichier de configuration %1 @@ -211,20 +215,52 @@ You must restart the application to set the new language. Would you like to restart now? - Pour appliquer la nouvelle langue, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant ? - - - Reset Settings? - Réinitialiser les paramètres ? - - - Are you sure you want to reset all general and security settings to default? - Voulez-vous vraiment réinitialiser tous les paramètres généraux et de sécurité à leur valeur par défaut ? + Pour appliquer la nouvelle langue, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant ? Select backup storage directory Sélectionner le dossier de sauvegarde + + Confirm Reset + Confirmez la remise à zéro + + + Are you sure you want to reset all settings to default? + Etes-vous sûr que vous voulez rétablir la valeur par défault de tous les réglages? + + + Import KeePassXC Settings + Importation des réglages de KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Impossible d'importer les réglages, %1 n'est pas fichier de réglages valide. + + + Export KeePassXC Settings + Exporter les réglages de KeePassXC + + + Small + Petite + + + Normal + Normale + + + Medium + Moyenne + + + Large + Grande + + + Custom + Personnalisée + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Mémoriser les bases de données utilisées précédemment + + recent files + fichiers récents + Load previously open databases on startup Lors du démarrage, charger les bases de données ouvertes précédemment @@ -272,25 +312,6 @@ Include beta releases when checking for updates Inclure les versions bêta lors de la vérification de la présence de mises à jour - - On database unlock, show entries that - Lors du déverrouillage d’une base de données, montrer les entrées qui - - - have expired - On database unlock, show entries that... - ont expiré - - - days - On database unlock, show entries that will expire within %1 days - jours - - - will expire within - On database unlock, show entries that... - expireront dans - File Management Gestion des fichiers @@ -315,22 +336,10 @@ Backup database file before saving Sauvegarder le fichier de la base de données avant d’enregistrer - - Backup destination - Destination de sauvegarde - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Spécifie l’emplacement du fichier de sauvegarde de la base de données. Les occurrences de « {DB_FILENAME} » sont remplacées par le nom de fichier de la base de données sauvegardée sans extension. {TIME:<format>} est remplacé par l’heure de sauvegarde (consulter https://doc.qt.io/qt-5/qdatetime.html#toString). Par défaut, <format>utilise par défaut le format « dd_MM_yyyy_hh-mm-ss ». - {DB_FILENAME}.old.kdbx {DB_FILENAME}.ancienne.kdbx - - Choose... - Choisir… - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Utiliser une méthode d’enregistrement de remplacement (peut résoudre des problèmes avec Dropbox, Google Drive, GVFS, etc.). @@ -408,6 +417,10 @@ Toolbar button style: Style des boutons de la barre d’outils : + + Show passwords in color + Afficher les mots de passe en couleur + Use monospaced font for notes Utiliser une police à espacement constant pour les notes @@ -493,6 +506,71 @@ Remember last typed entry for: Mémoriser la dernière entrée saisie pendant : + + On database unlock, show entries that will expire within + Lors du déverrouillage d’une base de données, montrer les entrées qui vont expirer dans + + + On database unlock, show entries that will expire within + Lors du déverrouillage d’une base de données, montrer les entrées qui vont expirer dans + + + days + number of days warning for password expiration + jours + + + Destination format: + Format de destination : + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> est remplacé par le nom de fichier de la base de données sauvegardée sans extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> est remplacé par le format de temps spécifié (default: dd_MM_yyyy_hh-mm-ss)</p><p>Voir le Guide Utilisateur pour plus de détails</p></body></html> + + + Choose folder... + Choisissez le répertoire... + + + Show confirmation before moving entries to recycle bin + Afficher une confirmation avant de déplacer les entrées dans la corbeille + + + Copy data on double clicking field in entry view + Copier les données en double-cliquant sur le champ de l'entrée affichée + + + Show toolbar + Afficher la barre d'outils + + + Show the menu bar by pressing the Alt key + Afficher la barre des menus en pressant la touche Alt + + + Show menubar + Afficher la barre de menus + + + Import settings… + Importer les réglages... + + + Export settings… + Exporter les réglages... + + + Open browser on double clicking URL field in entry view + Ouvrir le navigateur en double-cliquant sur le champ URL de l'entrée affichée + + + Font size: + Taille de la police : + + + Font size selection + Sélection de la taille de police + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Verrouiller les bases de données après avoir réduit la fenêtre - - Require password repeat when it is visible - Exiger de répéter le mot de passe s’il est visible - Hide passwords when editing them Cacher les mots de passe lors de leur modification @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Cacher les mots de passe dans le panneau de prévisualisation des entrées - - Hide entry notes by default - Par défaut, cacher les notes des entrées - - - Move entries to recycle bin without confirmation - Déplacer les entrées vers la corbeille sans confirmation - - - Enable double click to copy the username/password entry columns - Activer le double-clic pour copier le nom d’utilisateur et le mot de passe des colonnes d’entrées - Privacy Confidentialité @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Utiliser le service DuckDuckGo pour télécharger les icônes de sites Web + + Hide TOTP in the entry preview panel + Cacher le TOTP dans le panneau d’aperçu des entrées + + + Lock databases when switching user + Verrouiller les bases de données lors d’un changement d’utilisateur + + + Lock Options + Options de Verrouillage + + + Hide notes in the entry preview panel + Cacher les notes dans le panneau d'aperçu des entrées + AutoType @@ -626,18 +704,8 @@ Un pause très longue a été détectée. Le maximum est %1 : %2 - Invalid conversion type: %1 - Le type de conversion est invalide : %1 - - - Invalid conversion syntax: %1 - La syntaxe de conversion est invalide : %1 - - - Invalid regular expression syntax %1 -%2 - La syntaxe de l’expression rationnelle est invalide %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + L'entrée n'a pas d'attribut pour PICKCHARS : %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Tentative d'envoi d'un keysym invalide. - Sequence aborted: Caps Lock is on Séquence interrompue: le verrouillage majuscule est activé @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Impossible d'obtenir un code d'identification valide pour la clé : + + Trying to send invalid keyboard symbol. + Tentative d'envoi d'un caractère de clavier non reconnu. + AutoTypeSelectDialog @@ -805,13 +873,13 @@ Ctrl+4 - Utiliser le clavier virtuel (Windows seulement)</p> Disable for this site Désactiver pour ce site + + Undo + Annuler + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Enregistrer l’entrée - Ok Valider @@ -826,25 +894,82 @@ Please select the correct database for saving credentials. Plusieurs bases de données sont ouvertes. Veuillez sélectionner la base de données souhaitée pour enregistrer les identifiants. + + KeePassXC - Select Database + KeePassXC - Sélectionner une base + + + + BrowserPasskeysConfirmationDialog + + Cancel + Annuler + + + Update + Mettre à jour + + + Authenticate + Identification + + + Register new + Enregistrer comme nouveau + + + Register + Enregistrer + + + Timeout in <b>%n</b> seconds... + délai d'expiration in <b>%n</b> seconds...délai d'expiration in <b>%n</b> seconds...Expire dans<b>%n</b> secondes... + + + Relying Party: %1 + Tiers de confiance : %1 + + + Username: %1 + Nom d’utilisateur : %1 + + + KeePassXC - Passkey credentials + KeePassXC - Identifiants de clé d'accès + + + Add to existing entry + Ajout d'une entrée existante + + + Existing passkey found. +Do you want to register a new passkey for: + Clé d'accès existante trouvée. +Voulez-vous enregistrer la nouvelle clé pour : + + + Select the existing passkey and press Update to replace it. + Sélectionnez la clé d'accès existante puis cliquez sur Mettre à jour pour la remplacer. + + + Authenticate passkey credentials for: + Authentifier les identifiants de la clé d'accès pour : + + + Do you want to register a passkey for: + Voulez-vous enregistrer la clé d'accès pour : + BrowserService - - KeePassXC: Create a new group - KeePassXC : Créer un nouveau groupe - A request for creating a new group "%1" has been received. Do you want to create this group? Une demande de création d’un nouveau groupe « %1 » a été reçue. -Voulez-vous créer ce groupe ? +Voulez-vous créer ce groupe ? - - KeePassXC: New key association request - KeePassXC : Nouvelle demande d’association de clé - You have received an association request for the following database: %1 @@ -861,81 +986,76 @@ chrome-laptop Save and allow access Enregistrer et permettre l’accès - - KeePassXC: Overwrite existing key? - KeePassXC : Remplacer la clé existante ? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Une clé de chiffrement partagée nommée « %1 » existe déjà. -Voulez-vous la remplacer ? - - - KeePassXC: Update Entry - KeePassXC : Mettre l’entrée à jour +Voulez-vous la remplacer ? Do you want to update the information in %1 - %2? - Voulez-vous mettre à jour les renseignements dans %1 - %2 ? - - - KeePassXC: Delete entry - KeePassXC: Supprimer l'entrée + Voulez-vous mettre à jour les renseignements dans %1 - %2 ? A request for deleting entry "%1" has been received. Do you want to delete the entry? Une requête pour supprimer l'entrée « %1 » a été reçue. -Voulez-vous la supprimer ? +Voulez-vous la supprimer ? - Converting attributes to custom data… - Conversion des attributs en données personnalisées… + %1 (Passkey) + %1 (clé d'accès) - Abort - Abandonner + KeePassXC - Create a new group + KeePassXC - Créer un nouveau groupe - KeePassXC: Converted KeePassHTTP attributes - KeePassXC : Attributs KeePassHTTP convertis + Disable + Désactiver - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Les attributs de %1 entrée(s) ont été convertis avec succès. -%2 clés ont été déplacées vers les données personnalisées. - - - Successfully moved %n keys to custom data. - %n clé a été déplacée avec succès vers les données personnalisées.%n clés ont été déplacées avec succès vers les données personnalisées. + KeePassXC - Overwrite existing key? + KeePassXC - Remplacer la clé existante ? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC : Aucune entrée avec des attributs KeePassHTTP n’a été trouvée + KeePassXC - Update Entry + KeePassXC - Mise à jour de l'entrée - The active database does not contain an entry with KeePassHTTP attributes. - La base de données active ne comprend aucune entrée avec des attributs KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Suppression de l'entrée - Don't show this warning again - Ne plus afficher cet avertissement + KeePassXC - New key association request + KeePassXC - Demande de nouvelle association de clé - KeePassXC: Legacy browser integration settings detected - KeePassXC : Des paramètres hérités d’intégration aux navigateurs ont été détectés + Passkey + Clé d'accès - 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? - Vos paramètres KeePassXC-Browser doivent être intégrés aux paramètres de la base de données. -Cela est nécessaire pour conserver les connexions actuelles de votre navigateur. -Voulez-vous migrer vos paramètres maintenant ? + KeePassXC - Passkey credentials + KeePassXC - Identifiants de clé d'accès + + + Register a new passkey to this entry: + Enregistrer la nouvelle clé d'accès pour cette entrée : + + + KeePassXC - Update passkey + KeePassXC - Mise à jour de la clé d'accès + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Cette entrée a déjà une clé d'accès. Remplacer la clé dans %1 - %2 ? + + + Register + Enregistrer @@ -956,10 +1076,6 @@ Voulez-vous migrer vos paramètres maintenant ? General Général - - Browsers installed as snaps are currently not supported. - Les navigateurs installés en tant que snap ne sont pas pris en charge actuellement. - Enable integration for these browsers: Activer l’intégration pour ces navigateurs : @@ -1131,26 +1247,6 @@ Voulez-vous migrer vos paramètres maintenant ? Custom extension ID ID d’extension personnalisé - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - En raison du bac à sable de Snap, vous devez exécuter un script afin d’activer l’intégration aux navigateurs.<br />Vous pouvez obtenir ce script sur %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser est nécessaire pour que l’intégration aux navigateurs fonctionne. <br />Téléchargez-la pour %1, %2 et %3. %4 - - - Please see special instructions for browser extension use below - Veuillez consulter ci-dessous les instructions spéciales de l’extension pour navigateurs - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Erreur :</b> L’emplacement de mandataire personnalisé est introuvable. <br/>L’intégration aux navigateurs NE FONCTIONNERA PAS sans l’application mandataire. - - - <b>Warning:</b> The following options can be dangerous! - <b>Avertissement:</b> Les options suivantes peuvent être dangereuses - Executable Files Fichiers exécutables @@ -1167,6 +1263,46 @@ Voulez-vous migrer vos paramètres maintenant ? Select native messaging host folder location Sélectionner l’emplacement du dossier de l’hôte de messagerie native + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Autoriser keepassxc-proxy à afficher toutes les entrées avec leur titre, URL et identifiant unique des bases connectées. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Limiter l'accès à toutes les entrées des bases connectées (ignore les restrictions d'accès aux sites) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Avertissement :</b> modifiez ces réglages seulement si nécessaire. + + + The custom proxy location does not exist. + L'emplacement de proxy personnalisé n'existe pas. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Erreur :</b> L'emplacement de proxy personnalisé n'existe pas. Corrigez-le dans l'onglet des paramètres avancés. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Erreur :</b> L'exécutable du proxy installé n'existe pas à l'emplacement prévu : %1<br/>Définissez un emplacement de proxy personnalisé dans les paramètres avancés ou réinstallez l'application. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Autoriser l'utilisation peu sûre de http://localhost avec les clés d'accès à des fins de test ? + + + Allow using localhost with passkeys + Autoriser l'utilisation de localhost avec les clés d'accès + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser est nécessaire pour que l'intégration avec le navigateur fonctionne. <br />Téléchargez le pour %1 et %2 et %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Les navigateurs installés à l'aide de Snap ou de Flatpak ne sont pas pris en charge, à l'exception de Firefox installé à l'aide de Snap. + CloneDialog @@ -1176,7 +1312,7 @@ Voulez-vous migrer vos paramètres maintenant ? Append ' - Clone' to title - Ajouter ’ – Clone’ au titre + Ajouter « – Clone » au titre Replace username and password with references @@ -1189,14 +1325,6 @@ Voulez-vous migrer vos paramètres maintenant ? CsvImportWidget - - Import CSV fields - Importer les champs CSV - - - filename - nom de fichier - size, rows, columns taille, lignes, colonnes @@ -1305,51 +1433,43 @@ Voulez-vous migrer vos paramètres maintenant ? Column %1 Colonne %1 - - Imported from CSV file - Importé d’un fichier CSV - - - Original data: - Données originales : - - - Error(s) detected in CSV file! - Des erreurs ont été détectées dans le fichier CSV - [%n more message(s) skipped] - [%n autre message a été ignoré][%n autres messages ont été ignorés] + [%n autre message a été ignoré][%n autres messages ont été ignorés][%n autres messages ont été ignorés] - Error - Erreur + Failed to parse CSV file: %1 + Échec de l'analyse du fichier CSV: $1 - CSV import: writer has errors: -%1 - Importation CSV : le scripteur comporte des erreurs : -%1 + Imported from CSV file: %1 + Importé du fichier CSV : %1 + + + No Title Selected + Aucun titre séléctionné + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Les entrées seront difficiles à distinguer, car aucune titre de colonne n'a été sélectionné. Êtes-vous sûr de vouloir importer ? + + + Tags + Étiquettes CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n octet%n octets - %n row(s) - %n ligne%n lignes + CSV row count + %n ligne%n lignes%n lignes %n column(s) - %n colonne%n colonnes + CSV column count + %n colonne%n colonnes%n colonnes @@ -1401,6 +1521,14 @@ La base de données de sauvegarde est située sur %2 Recycle Bin Corbeille + + Database file read error. + Erreur de lecture du fichier de base de données. + + + No file path was provided. + Aucun chemin d’accès de fichier n’a été fourni. + DatabaseOpenDialog @@ -1423,40 +1551,10 @@ La base de données de sauvegarde est située sur %2 Password field Champ de mot de passe - - Enter Additional Credentials (if any): - Saisissez des identifiants supplémentaires (si définis) : - - - Key File: - Fichier clé : - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>En plus du mot de passe, vous pouvez utiliser un fichier secret pour améliorer la sécurité de votre base de données. Ce fichier peut être généré dans les paramètres de sécurité de votre base de données.</p><p>Il s'agit de <strong>et non</strong> de votre fichier de base de données *.kdbx !<br>Si vous n'avez pas de fichier clé, laissez ce champ vide.</p><p>Cliquez pour plus d'information…</p> - - - Key file help - Aide fichier clé - Hardware key slot selection Sélection de l’emplacement de la clé matérielle - - Hardware Key: - Clé matérielle : - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Vous pouvez utiliser une clé de sécurité matérielle telle que <strong>YubiKey</strong> ou <strong>OnlyKey</strong> avec des emplacements configurés pour HMAC-SHA1.</p> -<p>Cliquez pour plus information…</p> - - - Hardware key help - Aide sur les clés matérielles - Key file to unlock the database Fichier clé pour déverrouiller la base de données @@ -1469,14 +1567,6 @@ La base de données de sauvegarde est située sur %2 Browse… Parcourir… - - Refresh hardware tokens - Actualiser les jetons matériels - - - Refresh - Actualiser - Unlock Database Déverrouiller la base de données @@ -1529,7 +1619,7 @@ Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. Le déverrouillage de la base de données a échoué et vous n’avez pas saisi de mot de passe. -Voulez-vous plutôt réessayer sans mot de passe ? +Voulez-vous plutôt réessayer sans mot de passe ? Afin d’empêcher que cette erreur survienne, vous devez accéder à « Paramètres de la base de données » et réinitialiser votre mot de passe. @@ -1537,14 +1627,6 @@ Afin d’empêcher que cette erreur survienne, vous devez accéder à « Param Retry with empty password Réessayer sans mot de passe - - Failed to authenticate with Windows Hello - Échec d’authentification avec Windows Hello - - - Failed to authenticate with Touch ID - Échec d’authentification avec Touch ID - Failed to open key file: %1 Échec d’ouverture du fichier clé : %1 @@ -1555,7 +1637,7 @@ Afin d’empêcher que cette erreur survienne, vous devez accéder à « Param You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Vous utilisez un ancien format de fichier clé que KeePassXC pourrait<br>ne plus prendre en charge à l'avenir.<br><br>Il vous est recommandé de générer un nouveau fichier clé en allant dans :<br><strong>Base de données &gt; Sécurité de la base de données &gt; Changer le fichier clé.</strong><br> + Vous utilisez un ancien format de fichier clé que KeePassXC pourrait<br>ne plus prendre en charge à l'avenir.<br><br>Veuillez envisager de générer un nouveau fichier clé en allant dans :<br><strong>Base de données &gt; Sécurité de la base de données &gt; Changer le fichier clé.</strong><br> Don't show this warning again @@ -1578,22 +1660,67 @@ Afin d’empêcher que cette erreur survienne, vous devez accéder à « Param Impossible d’utiliser une base de données comme fichier clé - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Vous ne pouvez pas utiliser la base de données actuelle comme fichier clé. -Si vous n’avez pas de fichier clé, laissez le champ vide. + authenticate to access the database + Autentifiez vous pour accéder à la base de données - Detecting hardware keys… - Détection des clés matérielles… + Failed to authenticate with Quick Unlock: %1 + Échec d'authentification Quick Unlock : %1 - No hardware keys detected - Aucune clé matérielle n’a été détectée + Select Key File: + Sélectionner le fichier clé : - Select hardware key… - Sélectionner une clé matérielle… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Vous pouvez utiliser un fichier secret en plus du mot de passe pour renforcer la sécurité de votre base de données. Ce fichier peut être généré à partir des paramètres de sécurité de votre base.</p><p>Il ne s'agit <strong>pas</strong> de votre fichier de base de données *.kdbx !</p> + + + Use hardware key [Serial: %1] + Utiliser une clé matérielle [N° de série : %1] + + + Use hardware key + Utiliser une clé logicielle + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Votre fichier de base de données n'est PAS un fichier clé ! +Si vous ne disposez pas de fichier clé ou ne savez pas de quoi il s'agit, n'en sélectionnez pas. + + + KeePassXC database file selected + Fichier de base de données KeePassXC sélectionné + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Le fichier sélectionné ne semble pas être une base de données. +Un fichier de base de données n'est pas un fichier clé ! +Voulez-vous poursuivre avec ce fichier ? + + + No hardware keys found. + Aucune clé matérielle trouvée. + + + Refresh Hardware Keys + Actualiser les clés logicielles + + + Click to add a key file. + Cliquer pour ajouter un fichier clé + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Je dispose d'un fichier clé</a> + + + Hardware keys found, but no slots are configured. + Clés matérielles trouvées, mais aucun emplacement n'est configuré. @@ -1605,10 +1732,6 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. DatabaseSettingsDialog - - Advanced Settings - Paramètres avancés - General Général @@ -1633,6 +1756,22 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. Maintenance Maintenance + + KeeShare + KeeShare + + + Secret Service Integration + Intégration au Secret Service + + + Remote Sync + Synchronisation à distance + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1640,18 +1779,6 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. KeePassXC-Browser settings Paramètres de KeePassXC-Browser - - Convert KeePassHTTP data - Convertir KeePassHTTP data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Convertir les attributs hérités de KeePassHTTP vers les données personnalisées compatibles de KeePassXC-Browser - - - Refresh database root group ID - Actualiser l’ID du groupe racine de la base de données - Disconnect all browsers Déconnecter tous les navigateurs @@ -1660,6 +1787,10 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. Forget all site-specific settings on entries Oublier tous les paramètres d’entrée propres aux sites + + Refresh database root group ID + Actualiser l’ID du groupe racine de la base de données + Stored keys Clés enregistrées @@ -1678,12 +1809,12 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. Delete the selected key? - Supprimer la clé sélectionnée ? + Supprimer la clé sélectionnée ? Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Voulez-vous vraiment supprimer la clé sélectionnée ? + Voulez-vous vraiment supprimer la clé sélectionnée ? Cela pourrait empêcher la connexion l’extension pour navigateurs. @@ -1705,29 +1836,21 @@ Cela pourrait empêcher la connexion l’extension pour navigateurs. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - Voulez-vous vraiment déconnecter tous les navigateurs ? + Voulez-vous vraiment déconnecter tous les navigateurs ? Cela pourrait empêcher la connexion avec l’extension pour navigateurs. - - KeePassXC: No keys found - KeePassXC : Aucune clé n’a été trouvée - No shared encryption keys found in KeePassXC settings. Aucune clé de chiffrement partagée n’a été trouvée dans les paramètres de KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC : Les clés ont été supprimées de la base de données - Successfully removed %n encryption key(s) from KeePassXC settings. - %n clé de chiffrement a été supprimée avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC. + %n clé de chiffrement a été supprimée avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC. Do you really want forget all site-specific settings on every entry? Permissions to access entries will be revoked. - Voulez-vous vraiment oublier tous les paramètres propres aux sites pour toutes les entrées ? Les autorisations d’accès aux entrées seront révoquées. + Voulez-vous vraiment oublier tous les paramètres propres aux sites pour toutes les entrées ? Les autorisations d’accès aux entrées seront révoquées. Removing stored permissions… @@ -1737,31 +1860,14 @@ Permissions to access entries will be revoked. Abort Abandonner - - KeePassXC: Removed permissions - KeePassXC : Les autorisations ont été supprimées - Successfully removed permissions from %n entry(s). - Les autorisations d’%n entrée ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès. - - - KeePassXC: No entry with permissions found! - KeePassXC : Aucune entrée avec autorisation n’a été trouvée + Les autorisations d’%n entrée ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès. The active database does not contain an entry with permissions. La base de données active ne comprend aucune entrée avec des autorisations. - - Move KeePassHTTP attributes to custom data - Déplacer les attributs KeePassHTTP vers les données personnalisées - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Voulez-vous vraiment convertir toutes les données d'intégrations au navigateur au format actuel ? Ceci est nécessaire afin de préserver la compatibilité avec le module complémentaire du navigateur. - Refresh database ID Actualiser l’ID de la base de données @@ -1769,9 +1875,29 @@ This is necessary to maintain compatibility with the browser plugin. Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Voulez-vous vraiment actualiser l’ID de la base de données ? + Voulez-vous vraiment actualiser l’ID de la base de données ? Cela n’est nécessaire que si votre base de données est la copie d’une autre et que l’extension pour navigateurs ne peut pas se connecter. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Convertir les attributs hérités de KeePassHTTP vers les données personnalisées compatibles de KeePassXC-Browser + + + No keys found + Aucune clé trouvée + + + Removed keys from database + Clés supprimées de la base de données + + + Removed permissions + Autorisations supprimées + + + No entry with permissions found! + Aucune entrée avec autorisations trouvée ! + DatabaseSettingsWidgetDatabaseKey @@ -1789,7 +1915,7 @@ Cela n’est nécessaire que si votre base de données est la copie d’une autr Are you sure you want to continue without a password? AVERTISSEMENT : Vous n’avez pas défini de mot de passe. Il est fortement découragé d’utiliser une base de données sans mot de passe. -Voulez-vous vraiment poursuivre sans mot de passe ? +Voulez-vous vraiment poursuivre sans mot de passe ? Continue without password @@ -1811,6 +1937,18 @@ Voulez-vous vraiment poursuivre sans mot de passe ? Failed to change database credentials Échec de changement des identifiants de la base de données + + Weak password + Mot de passe faible + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Le mot de passe est trop faible ! Pour une protection efficace, choisissez un mot de passe plus fort. + + + The provided password does not meet the minimum quality requirement. + Le mot de passe fourni ne répond pas aux exigences minimales demandées. + DatabaseSettingsWidgetEncryption @@ -1818,14 +1956,6 @@ Voulez-vous vraiment poursuivre sans mot de passe ? Decryption Time: Temps de déchiffrement : - - Change existing decryption time - Changer le temps de déchiffrement existant - - - Change - Changer - Decryption time in seconds Temps de déchiffrement en secondes @@ -1844,7 +1974,7 @@ Voulez-vous vraiment poursuivre sans mot de passe ? Format cannot be changed: Your database uses KDBX 4 features - Le format ne peut être modifié : votre base de données utilise des fonctionnalités KDBX 4 + Le format ne peut être modifié : votre base de données utilise des fonctions KDBX 4 Unless you need to open your database with other programs, always use the latest format. @@ -1906,11 +2036,6 @@ Voulez-vous vraiment poursuivre sans mot de passe ? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - inchangé - Number of rounds too high Key transformation rounds @@ -1951,17 +2076,29 @@ En conservant cette valeur, votre base de données ne sera pas protégée des at Failed to transform key with new KDF parameters; KDF unchanged. - Échec de transformation de la clé avec les nouveaux paramètres de fonction de dérivation de clé ; la fonction de dérivation de clé est inchangée. + Échec de transformation de la clé avec les nouveaux paramètres de fonction de dérivation de clé ; la fonction de dérivation de clé est inchangée. MiB Abbreviation for Mebibytes (KDF settings) - MioMio + MioMioMio thread(s) Threads for parallel execution (KDF settings) - fil d’exécutionfils d’exécution + fil d’exécutionfils d’exécutionfils d’exécution + + + Encryption Settings: + Paramètres de chiffrement : + + + Basic + Général + + + Advanced + Avancé @@ -2021,18 +2158,10 @@ En conservant cette valeur, votre base de données ne sera pas protégée des at Maximum number of history items per entry Nombre maximal d’éléments historiques par entrée - - Max. history items: - Nombre maximal d’éléments d’historique : - Maximum size of history per entry Taille maximale de l’historique par entrée - - Max. history size: - Taille maximale de l’historique : - MiB Mio @@ -2056,13 +2185,115 @@ En conservant cette valeur, votre base de données ne sera pas protégée des at Do you want to delete the current recycle bin and all its contents? This action is not reversible. - Voulez-vous supprimer la corbeille actuelle et tout son contenu ? + Voulez-vous supprimer la corbeille actuelle et tout son contenu ? Cette action est irréversible. (old) (ancien) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Lors de l’enregistrement de ce paramètre ou de la modification d’une entrée +les éléments les plus anciens de l'historique d’une entrée seront +supprimés de telle sorte qu'il ne reste au maximum +que le nombre spécifié d'entrées. + + + Limit the amount of history items per entry to: + Limiter le nombre d’éléments d’historique par entrée à : + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Lors de l’enregistrement de ce paramètre ou de la modification d’une entrée +les éléments les plus anciens de l'historique d’une entrée seront +supprimés de telle sorte que les éléments restants de l'historique +atteignent le nombre spécifié. + + + Limit the total size of history items per entry to: + Limiter la taille totale des éléments de l’historique par entrée à : + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Déplacer les entrées vers la corbeille du groupe +au lieu de les supprimer de la base de données. +Les entrées supprimées dans la corbeille sont retirées +de la base de données. + + + Autosave delay since last change + Durée entre dernière modification et sauvegarde automatique + + + Autosave delay + Durée avant sauvegarde automatique + + + Autosave delay since last change in minutes + Durée entre dernière modification et sauvegarde automatique en minutes + + + min + min + + + Autosave delay since last change checkbox + Case à cocher de durée entre dernière modification et sauvegarde automatique + + + Public Database Metadata + Métadonnées de la Base de données Publique + + + Warning: the following settings are not encrypted. + Avertissement : les paramètres suivants ne sont pas chiffrés. + + + Display name: + Nom d'affichage : + + + Publically visible display name used on the unlock dialog + Nom d'affichage publiquement visible utilisé sur la boîte de dialogue de déverrouillage + + + Database public display name + Nom d'affichage public de la base de données + + + Display color: + Couleur d'affichage: + + + Publically visible color used on the unlock dialog + Couleur publiquement visible utilisé sur la boîte de dialogue de déverrouillage + + + Database public display color chooser + Sélecteur de couleur d'affichage publique de la base de donnée + + + Clear + Effacer + + + Display icon: + Icône d'affichage : + + + Select Database Icon + Sélectionner l'Icône de Base de données + DatabaseSettingsWidgetKeeShare @@ -2120,7 +2351,7 @@ Cette action est irréversible. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - Au moins une icône de la sélection est utilisée actuellement par une entrée ou un groupe. Les icônes affectées aux entrées et aux groupes seront remplacées par l'icône par défaut. Êtes-vous sûr de vouloir supprimer les icônes actuellement utilisées ? + Au moins une icône de la sélection est utilisée actuellement par au moins une entrée ou un groupe. Les icônes de toutes les entrées et de tous les groupes concernés seront remplacées par l’icône par défaut. Voulez-vous vraiment supprimer les icônes utilisées actuellement ? Custom Icons Are In Use @@ -2136,7 +2367,7 @@ Cette action est irréversible. Purged %n icon(s) from the database. - %n icône nettoyée de la base de données.%n icônes nettoyées de la base de données. + %n icône nettoyée de la base de données.%n icônes nettoyées de la base de données.%n icônes nettoyées de la base de données. @@ -2158,6 +2389,141 @@ Cette action est irréversible. Champ de description de la base de données + + DatabaseSettingsWidgetRemote + + Sync Commands + Commandes de synchronisation. + + + Remove + Supprimer + + + Command Settings + Paramètres de la commande + + + Name + Nom + + + Save + Enregistrer + + + Download + Téléchargement + + + Command: + Commande: + + + Download command field + Champ de la commande de téléchargement + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Par exemple : "sftp login@machine" ou "scp login@machine:BaseDeDonneesDistante.kdbx {TEMP_DATABASE}" + + + Input: + Entrée : + + + Download input field + Champ d'entrée de téléchargement + + + Upload + Téléverser + + + Upload command field + Champ de la commande de téléversement + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + Par exemple : "sftp login@machine" ou "scp {TEMP_DATABASE} login@machine:BaseDeDonneesDistante.kdbx" + + + Upload input field + Champ d'entrée de téléversement + + + Name cannot be empty. + Le nom ne peut pas être vide. + + + Test + Test + + + Download command cannot be empty. + La commande de téléchargement ne peut pas être vide. + + + Download failed with error: %1 + Le téléchargement a échoué avec l'erreur: %1 + + + Download finished, but file %1 could not be found. + Le téléchargement est fini, mais le fichier %1 n'a pas pu être trouvé. + + + Download successful. + Téléchargement réussi. + + + Save Remote Settings + Enregistrer les paramètres distant + + + You have unsaved changes. Do you want to save them? + Vous avez des modifications non sauvegardées. Voulez vous les enregistrer ? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Par exemple : +get BaseDeDonneesDistante.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} est utilisé comme motif de remplacement pour stocker la base de données dans un emplacement temporaire +La commande doit terminer. Dans le cas de "sftp" la dernière commande envoyée doit être "exit" + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Par exemple : +put {TEMP_DATABASE} BaseDeDonneesDistante.kdbx +exit +--- +{TEMP_DATABASE} est utilisé comme motif de remplacement pour stocker la base de données dans un emplacement temporaire +La commande doit terminer. Dans le cas de "sftp" la dernière commande envoyée doit être "exit" + + + + Timeout: + + + + seconds + secondes + + DatabaseTabWidget @@ -2190,26 +2556,10 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.CSV file Fichier CSV - - Select CSV file - Sélectionner un fichier CSV - Merge database Fusionner la base de données - - KeePass 1 database - Base de données KeePass 1 - - - Open KeePass 1 database - Ouvrir une base de données KeePass 1 - - - Open OPVault - Ouvrir OPVault - Export database to CSV file Exporter la base de données vers un fichier CSV @@ -2222,34 +2572,42 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.Writing the HTML file failed. Échec d’écriture du fichier HTML. + + Export database to XML file + Exporter la base de données dans un fichier XML + + + XML file + Fichier XML + + + Writing the XML file failed + L'écriture du fichier XML a échoué + Export Confirmation Confirmation de l’exportation You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Vous êtes sur le point d’exporter votre base de données vers un fichier non chiffré. Vos mots de passe et renseignements délicats seront vulnérables. Voulez-vous vraiment poursuivre ? - - - New Database - Nouvelle base de données - - - %1 [New Database] - Database tab name modifier - %1 [nouvelle base de données] + Vous êtes sur le point d’exporter votre base de données vers un fichier non chiffré. Vos mots de passe et renseignements délicats seront vulnérables. Voulez-vous vraiment poursuivre ? %1 [Locked] Database tab name modifier %1 [verrouillé] + + %1 [Temporary] + Database tab name modifier + %1 [Temporaire] + DatabaseWidget - Database Tags - Mots-clefs de la base de données + Searches and Tags + Recherches et Étiquettes Searching… @@ -2265,15 +2623,15 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs. Perform Auto-Type into the previously active window? - Effectuer la saisie automatique dans la précédente fenêtre active ? + Effectuer la saisie automatique dans la fenêtre active précédemment ? Execute command? - Exécuter la commande ? + Exécuter la commande ? Do you really want to execute the following command?<br><br>%1<br> - Voulez-vous vraiment exécuter la commande suivante ?<br><br>%1<br> + Voulez-vous vraiment exécuter la commande suivante ?<br><br>%1<br> Remember my choice @@ -2285,20 +2643,24 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs. Do you really want to delete the group "%1" for good? - Voulez-vous vraiment supprimer définitivement le groupe « %1 » ? + Voulez-vous vraiment supprimer définitivement le groupe « %1 » ? Move group to recycle bin? - Déplacer le groupe vers la corbeille ? + Déplacer le groupe vers la corbeille ? Do you really want to move the group "%1" to the recycle bin? - Voulez-vous vraiment déplacer le groupe « %1 » vers la corbeille ? + Voulez-vous vraiment déplacer le groupe « %1 » vers la corbeille ? Expired entries Entrées ayant expiré + + Entries expiring within %1 day(s) + Entrées expirant dans %1 jourEntrées expirant dans %1 joursEntrées expirant dans %1 jours + No current database. Aucune base de données actuelle. @@ -2323,63 +2685,55 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.No Results Il n’y a aucun résultat + + Save + Enregistrer + + + Enter a unique name or overwrite an existing search from the list: + Entrez un nom unique ou écrasez une recherche existante dans la liste : + + + Save Search + Sauvegarder recherche + Lock Database? - Verrouiller la base de données ? + Verrouiller la base de données ? You are editing an entry. Discard changes and lock anyway? - Vous êtes en train de modifier une entrée. Abandonner les changements et la verrouiller quand même ? + Vous êtes en train de modifier une entrée. Abandonner les changements et la verrouiller quand même ? "%1" was modified. Save changes? « %1 » a été modifié. -Enregistrer les changements ? +Enregistrer les changements ? Database was modified. Save changes? La base de données a été modifiée. -Enregistrer les changements ? +Enregistrer les changements ? Save changes? - Enregistrer les changements ? + Enregistrer les changements ? File has changed Le fichier a été modifié - - The database file has changed. Do you want to load the changes? - Le fichier de la base de données a été modifié. Voulez-vous le recharger ? - - - Merge Request - Demande de fusion - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Le fichier de la base de données a été modifié et vos changements ne sont pas enregistrés. -Voulez-vous fusionner vos changements ? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Impossible d’ouvrir le nouveau fichier de base de données en tentant de la recharger automatiquement. -Erreur : % 1 - Disable safe saves? - Désactiver les enregistrements sécurisés ? + Désactiver les enregistrements sécurisés ? 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 n’a pas réussi à enregistrer la base de données à plusieurs reprises. Le fichier à enregistrer est probablement verrouillé par les services de synchronisation de fichiers. -Désactiver les enregistrements sécurisés et réessayer ? +Désactiver les enregistrements sécurisés et réessayer ? Writing the database failed: %1 @@ -2403,19 +2757,104 @@ Désactiver les enregistrements sécurisés et réessayer ? Empty recycle bin? - Vider la corbeille ? + Vider la corbeille ? Are you sure you want to permanently delete everything from your recycle bin? - Voulez-vous vraiment vider définitivement la corbeille ? + Voulez-vous vraiment vider définitivement la corbeille ? Could not find database file: %1 Impossible de trouver le fichier de la base de données : %1 - - Entries expiring within %1 day(s) - Entrées expirant dans %1 jourEntrées expirant dans %1 jours + + New Database + Nouvelle base de données + + + %1 [New Database] + Database tab name modifier + %1 [nouvelle base de données] + + + Remote Sync did not contain any download or upload commands. + Synchronisation à distance ne contient aucune commande de téléversement ou de téléchargement. + + + Remote sync '%1' completed successfully! + Synchronisation à distance « %1 » réussie ! + + + Remote sync '%1' failed: %2 + Synchronisation à distance « %1 » échouée : %2 + + + Error while saving database %1: %2 + Erreur pendant l'enregistrement de la base de données %1 : %2 + + + Downloading... + Téléchargement… + + + Uploading... + Téléversement... + + + Syncing... + Synchronisation... + + + Remove passkey from entry + Supprimer la clé d'accès de l'entrée + + + Do you want to remove the passkey from this entry? + Voulez-vous supprimer la clé d'accès de cette entrée ? + + + The database file "%1" was modified externally + Le fichier de base de données « %1 » a été modifié de manière externe + + + Do you want to load the changes? + Voulez-vous charger les changements ? + + + Reload database + Recharger la base de données + + + Reloading database… + Rechargement de la base de données… + + + Reload canceled + Rechargement annulé + + + Reload successful + Rechargement réussi + + + Reload pending user action… + Rechargement en attente d'une action de l'utilisateur… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Le fichier de base de données "%1" a été modifiée extérieurement.<br>Comment souhaitez-vous procéder ?<br><br>Fusionner tous les changements<br>Ignorer les changements sur le disque jusqu'à l'enregistrement<br>Annuler les modifications non sauvegardées + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Le fichier de base de données "%1" a été modifié extérieurement.<br>Comment souhaitez-vous procéder ?<br><br>Fusionner tous les changements puis enregistrer<br>Écraser les changements sur le disque<br>Annuler les changements non enregistrés + + + Database file overwritten. + Fichier de base de données écrasé. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Le fichier de base de données sur le disque ne peut pas être déverrouillé avec les identifiants actuels.<br>Saisissez de nouveaux identifiants et/ou présentez la clé matérielle pour poursuivre. @@ -2450,7 +2889,7 @@ Désactiver les enregistrements sécurisés et réessayer ? Are you sure you want to remove this URL? - Voulez-vous vraiment supprimer cette URL ? + Voulez-vous vraiment supprimer cette URL ? Properties @@ -2468,10 +2907,6 @@ Désactiver les enregistrements sécurisés et réessayer ? n/a s.o. - - (encrypted) - (chiffrée) - Select private key Sélectionner un fichier clé @@ -2512,15 +2947,15 @@ Malheureusement, les changements effectués ont été perdus. Would you like to correct it? Une erreur est survenue lors de la validation de la séquence personnalisée de saisie automatique : %1 -La corriger ? +Voulez-vous la corriger ? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - Une erreur est survenue lors de la validation de la séquence de saisie automatique pour « %1 » : + Une erreur est survenue lors de la validation de la séquence de saisie automatique pour « %1 » : %2 -La corriger ? +Voulez-vous la corriger ? Entry updated successfully. @@ -2532,7 +2967,7 @@ La corriger ? Would you like to save changes to this entry? - Voulez-vous enregistrer les changements de cette entrée ? + Voulez-vous enregistrer les changements de cette entrée ? New attribute @@ -2544,7 +2979,7 @@ La corriger ? Are you sure you want to remove this attribute? - Voulez-vous vraiment supprimer cet attribut ? + Voulez-vous vraiment supprimer cet attribut ? Reveal @@ -2558,21 +2993,25 @@ La corriger ? Hide Cacher + + %n hour(s) + %n heure%n heure%n heure + %n week(s) - %n semaine%n semaines + %n semaine%n semaines%n semaines %n month(s) - %n mois%n mois + %n mois%n mois%n mois %n year(s) - % an%n ans + %n an%n d’années%n ans - - %n hour(s) - %n heure%n heure + + Failed to decrypt SSH key, ensure password is correct. + Échec lors du décryptage de la clé SSH, assurez-vous de la validité du mot de passe. @@ -2692,10 +3131,20 @@ La corriger ? Add new window association Ajouter une nouvelle association de fenêtre + + + + Add item + + + Remove selected window association Supprimer l’association de fenêtre sélectionnée + + - + Remove item + - + Window title: Titre de la fenêtre : @@ -2720,23 +3169,9 @@ La corriger ? Custom Auto-Type sequence for this window Séquence personnalisée de saisie automatique pour cette fenêtre - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Ces paramètres affectent le comportement de l’entrée avec l’extension pour navigateurs. - General Général @@ -2749,26 +3184,14 @@ La corriger ? Skip Auto-Submit for this entry Ignorer l’envoi automatique pour cette entrée - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - N’envoyer ce paramètre au navigateur que pour les boîtes de dialogue d’authentification HTTP. Si cette option est activée, cette entrée ne sera pas présentée par les formulaires d’authentification normaux comme possibilité de sélection. - Use this entry only with HTTP Basic Auth N’utiliser cette entrée qu’avec l’authentification HTTP Basic - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Ne pas envoyer ce paramètre au navigateur pour les boîtes de dialogue d’authentification HTTP. Si cette option est activée, cette entrée ne sera pas présentée comme possibilité de sélection par les boîtes de dialogue d’authentification HTTP. - Do not use this entry with HTTP Basic Auth Ne pas utiliser cette entrée avec l’authentification HTTP Basic - - Additional URL's - URL supplémentaires - Add Ajouter @@ -2781,6 +3204,22 @@ La corriger ? Edit Modifier + + These settings affect the entry's behaviour with the browser extension. + Ces paramètres ont un impact sur le comportement des entrées avec l'extension du navigateur. + + + Additional URLs + Autres URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Envoyez cette entrée au navigateur uniquement pour les boîtes de dialogue d'authentification HTTP. Si cette option est activée, les formulaires de connexion normaux n'afficheront pas cette entrée pour la sélection. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + N'envoyez pas cette entrée au navigateur pour les boîtes de dialogue d'authentification HTTP. Si cette option est activée, les boîtes de dialogue d'authentification HTTP n'afficheront pas cette entrée pour la sélection. + EditEntryWidgetHistory @@ -2831,22 +3270,10 @@ La corriger ? Notes field Champ de note - - Toggle the checkbox to reveal the notes section. - Cochez la case pour révéler la section des notes. - Username field Champ de nom d’utilisateur - - Toggle notes visible - Activer ou désactiver la visibilité des notes - - - Notes: - Notes : - Expiration field Champ d’expiration @@ -2863,14 +3290,6 @@ La corriger ? Presets Préréglages - - Password: - Mot de passe : - - - URL: - URL : - Url field Champ d’URL @@ -2879,18 +3298,10 @@ La corriger ? Download favicon for URL Télécharger une favoricône pour l’URL - - Title: - Titre : - Title field Champ de titre - - Username: - Nom d’utilisateur : - Password field Champ de mot de passe @@ -2899,17 +3310,41 @@ La corriger ? Toggle expiration Activer ou désactiver l’expiration - - Expires: - Expire le : - - - Tags: - Mots-clefs : - Tags list - Liste de mots-clefs + Liste d’étiquettes + + + &Username: + &Nom d'utilisateur : + + + &Title: + &Titre : + + + &Password: + &Mot de passe : + + + UR&L: + UR&L : + + + &Notes: + &Notes : + + + Toggle notes visibility + Changer la visibilité des notes + + + T&ags: + Éti&quettes : + + + &Expires: + Expire le : @@ -2950,19 +3385,6 @@ La corriger ? Private key Clé privée - - External file - Fichier externe - - - Browser for key file - Rechercher un fichier clé - - - Browse… - Button for opening file dialog - Parcourir… - Attachment Fichier joint @@ -2979,6 +3401,23 @@ La corriger ? Remove from agent Retirer de l’agent + + External file + Fichier externe + + + Browser for key file + Rechercher un fichier clé + + + Browse… + Button for opening file dialog + Parcourir… + + + Generate + Générer + Select attachment file Sélectionner une fichier joint @@ -2989,7 +3428,7 @@ La corriger ? n/a - s.o. + n. d. Remove key from agent after @@ -3003,6 +3442,10 @@ La corriger ? seconds secondes + + Clear agent + Vider l'agent + EditGroupWidget @@ -3014,10 +3457,6 @@ La corriger ? Icon Icône - - Browser Integration - Intégration aux navigateurs - Properties Propriétés @@ -3034,6 +3473,10 @@ La corriger ? Group has unsaved changes Le groupe a été modifié et n'a pas été enregistré + + Browser Integration + Intégration aux navigateurs + Enable Activer @@ -3049,10 +3492,6 @@ La corriger ? EditGroupWidgetBrowser - - Edit Group - Modifier le groupe - These settings affect to the group's behaviour with the browser extension. Ces paramètres altèrent le comportement du groupe avec l'extension du navigateur. @@ -3089,6 +3528,22 @@ La corriger ? Do not use HTTP Auth toggle for this and sub groups Ne pas utiliser l'authentification HTTP standard pour ce groupe et ses sous-groupes + + Omit WWW subdomain from matching: + Ignorer le sous-domaine WWW dans la correspondance : + + + Omit WWW subdomain from matching toggle for this and sub groups + Ignorer le sous-domaine WWW dans la correspondance pour celle-ci et ses sous-groupes + + + Restrict matching to given browser key: + Restreindre la correspondance selon la clé du navigateur suivant : + + + Restrict matching to given browser key toggle for this and sub groups + Restreindre la correspondance avec la clé du navigateur entre ceci et les sous-groupes + EditGroupWidgetKeeShare @@ -3320,10 +3775,6 @@ Supported extensions are: %1. Unable to fetch favicon. Impossible de récupérer la favoricône - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans Outils > Paramètres > Sécurité - Existing icon selected. L’icône existante a été sélectionnée. @@ -3342,7 +3793,7 @@ Supported extensions are: %1. Successfully loaded %1 of %n icon(s) - %1 icône d’un total de %n a été chargée avec succès%1 icônes d’un total de %n ont été chargées avec succès + %1 icône d’un total de %n a été chargée avec succès%1 icônes d’un total de %n ont été chargées avec succès%1 icônes d’un total de %n ont été chargées avec succès No icons were loaded @@ -3350,11 +3801,15 @@ Supported extensions are: %1. %n icon(s) already exist in the database - %n icône existe déjà dans la base de données%n icônes existent déjà dans la base de données + %n icône existe déjà dans la base de données%n icônes existent déjà dans la base de données%n icônes existent déjà dans la base de données The following icon(s) failed: - Échec de l’icône suivante :Échec des icônes suivantes : + Échec de l’icône suivante :Échec des icônes suivantes :Échec des icônes suivantes : + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Vous pouvez activer le service d'icônes du site DuckDuckGo dans Paramètres -> Sécurité @@ -3409,12 +3864,12 @@ Supported extensions are: %1. Delete plugin data? - Supprimer les données de l’extension ? + Supprimer les données de l’extension ? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. - Voulez-vous vraiment supprimer les données d’extension sélectionnées ? Cela pourrait entraîner un mauvais fonctionnement des extensions touchées. + Voulez-vous vraiment supprimer les données d’extension sélectionnées ? Cela pourrait entraîner un mauvais fonctionnement des extensions concernées. Key @@ -3431,6 +3886,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 – Cloner + + Passkey + Clé d'accès + + + Invalid conversion type: %1 + Le type de conversion est invalide : %1 + + + Invalid conversion syntax: %1 + La syntaxe de conversion est invalide : %1 + + + Invalid regular expression syntax %1 +%2 + La syntaxe de l’expression rationnelle est invalide %1 +%2 + EntryAttachments @@ -3439,6 +3912,21 @@ This may cause the affected plugins to malfunction. Impossible d'ouvrir le fichier « %1 » + + EntryAttachmentsDialog + + Form + Formulaire + + + File name + Nom de fichier + + + File contents... + Contenu du fichier + + EntryAttachmentsModel @@ -3476,14 +3964,6 @@ This may cause the affected plugins to malfunction. Remove Supprimer - - Rename selected attachment - Renommer le fichier joint sélectionné - - - Rename - Renommer - Open selected attachment Ouvrir le fichier joint sélectionné @@ -3510,7 +3990,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to remove %n attachment(s)? - Voulez-vous vraiment supprimer %n fichier joint ?Voulez-vous vraiment supprimer %n fichiers joints ? + Voulez-vous vraiment supprimer %n fichier joint ?Voulez-vous vraiment supprimer %n fichiers joints ?Voulez-vous vraiment supprimer %n fichiers joints ? Save attachments @@ -3524,7 +4004,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to overwrite the existing file "%1" with the attachment? - Voulez-vous vraiment remplacer le fichier existant « %1 » par le fichier joint ? + Voulez-vous vraiment remplacer le fichier existant « %1 » par le fichier joint ? Confirm overwrite @@ -3553,17 +4033,12 @@ This may cause the affected plugins to malfunction. %1 Impossible d’ouvrir le fichier : %1Impossible d’ouvrir les fichiers : +%1Impossible d’ouvrir les fichiers : %1 Confirm Overwrite Attachment - Confirmer l'écrasement de la pièce jointe - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - La pièce jointe "%1" existe déjà. -Voulez-vous écraser la pièce jointe existante ? + Confirmer l’écrasement du fichier joint Confirm Attachment @@ -3577,28 +4052,46 @@ Are you sure to add this file? %1 est un gros fichier (%2 Mo). Votre base de données pourrait prendre de l’ampleur et réduire les performances. -Voulez-vous vraiment ajouter ce fichier ? +Voulez-vous vraiment ajouter ce fichier ? Attachment modified - Pièce jointe modifiée + La pièce jointe a été modifiée The attachment '%1' was modified. Do you want to save the changes to your database? - La pièce jointe « %1 » a été modifiée. -Voulez-vous enregistrer les modifications dans votre base de données ? + Le fichier joint « %1 » a été modifié. +Voulez-vous enregistrer les changements dans votre base de données ? Saving attachment failed - Échec lors de l'enregistrement de la pièce jointe + Échec d'enregistrement du fichier joint Saving updated attachment failed. Error: %1 - Échec lors de l'enregistrement de la mise à jour de la pièce jointe. + Échec d’enregistrement du fichier joint mis à jour. Erreur : %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Le fichier joint « %1 » existe déjà. +Voulez-vous écraser le fichier joint existant ? + + + New + Nouvelle + + + Preview + Aperçu + + + Failed to preview an attachment: Attachment not found + Échec de l'aperçu du fichier joint : fichier introuvable + EntryAttributesModel @@ -3683,7 +4176,7 @@ Erreur : %1 Tags - Mots-clefs : + Étiquettes @@ -3793,6 +4286,14 @@ Erreur : %1 Has TOTP Contient un TOTP + + Background Color + Couleur d’arrière-plan + + + Group Path + Chemin du Groupe + EntryPreviewWidget @@ -3813,8 +4314,8 @@ Erreur : %1 Mot de passe - Notes - Notes + URL + URL Expiration @@ -3822,19 +4323,19 @@ Erreur : %1 Tags - Mots-clefs : + Étiquettes Tags list - Liste de mots-clefs + Liste d’étiquettes Username Nom d’utilisateur - URL - URL + Notes + Notes Advanced @@ -3884,6 +4385,10 @@ Erreur : %1 Never Jamais + + Double click to copy value + Double-cliquer pour copier la valeur + Enabled Activé @@ -3892,6 +4397,10 @@ Erreur : %1 Disabled Désactivé + + Double click to copy to clipboard + Double-cliquer pour copier dans le presse-papiers + EntryURLModel @@ -3899,6 +4408,10 @@ Erreur : %1 Invalid URL L’URL est invalide + + Duplicate URL + Dupliquer l'URL + EntryView @@ -3914,6 +4427,10 @@ Erreur : %1 Reset to defaults Réinitialiser aux valeurs par défaut + + + %1 entry(s)... + + %1 entrée...+ %1 entrées...+ %1 entrée(s)... + ExportDialog @@ -3929,8 +4446,8 @@ Erreur : %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - Vous êtes sur le point d'exporter votre base de données vers un fichier non crypté. -Vos mots de passe de données sensibles seront vulnérables ! + Vous êtes sur le point d’exporter votre base de données vers un fichier non chiffré. +Cela rendra vos mots de passe et données sensibles vulnérables ! database order @@ -4023,7 +4540,7 @@ Vos mots de passe de données sensibles seront vulnérables ! %n Entry(s) was used by %1 %1 is the name of an application - %n entrée était utilisée par %1%n entrées étaient utilisées par %1 + %n entrée était utilisée par %1%n entrées étaient utilisées par %1%n entrées étaient utilisées par %1 @@ -4094,7 +4611,7 @@ Vos mots de passe de données sensibles seront vulnérables ! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - Des problèmes pour télécharger les icônes ? + Des problèmes pour télécharger les icônes ? Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans la section sécurité des paramètres de l’application. @@ -4134,6 +4651,193 @@ Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans la se Téléchargement des favoricônes (%1/%2)... + + ImportWizard + + Import Wizard + Assistant d'importation + + + + ImportWizardPageReview + + WizardPage + Page d’aide + + + Entry count: %1 + Nombre d'entrées : %1 + + + Group + Groupe + + + Title + Titre + + + Username + Nom d’utilisateur + + + Password + Mot de passe + + + Url + URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Formulaire + + + Import File Selection + Sélection du fichier à importer + + + Password: + Mot de passe : + + + Key File: + Fichier clé : + + + Browse… + Parcourir… + + + Import Into: + Importer vers : + + + New Database + Nouvelle base de données + + + No unlocked databases available + Aucune base de données déverrouillée disponible + + + Existing Database: + Base de données existante : + + + Import File: + Fichier à importer : + + + Comma Separated Values (.csv) + Valeurs séparées par des virgules (.csv) + + + 1Password Export (.1pux) + Exportation 1Password (.1pux) + + + 1Password Vault (.opvault) + Coffre-fort 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Base de données KeePass 1 (.kdb) + + + Open OPVault + Ouvrir OPVault + + + Select import file + Sélectionner le fichier à importer + + + All files + Tous les fichiers + + + Key files + Fichiers clés + + + Select key file + Sélectionner un fichier clé + + + Comma Separated Values + Valeurs séparées par une virgule + + + 1Password Export + Exportation 1Password + + + Bitwarden JSON Export + Export JSON pour Bitwarden + + + 1Password Vault + Coffre-fort 1Password + + + KeePass1 Database + Base de données KeePass1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Export JSON pour Proton Pass + + + Temporary Database + + + + Command: + Commande: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Par exemple : "sftp login@machine" ou "scp login@machine:BaseDeDonneesDistante.kdbx {TEMP_DATABASE}" + + + Input: + Entrée : + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + Base de données distante (.kdbx) + + KMessageWidget @@ -4568,17 +5272,6 @@ Ligne %2, colonne %3 Échec d’ouverture de la clé privée - - KeePass1OpenWidget - - Import KeePass1 Database - Importer une base de données KeePass 1 - - - Unable to open the database. - Impossible d’ouvrir la base de données. - - KeePass1Reader @@ -4907,7 +5600,7 @@ Message : %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? Le fichier clé sélectionné semble être un fichier de base de données de mots de passe. Un fichier clé doit être un fichier statique qui ne change jamais ou vous perdrez irrémédiablement l’accès à votre base de données. -Voulez-vous vraiment poursuivre avec ce fichier ? +Voulez-vous vraiment poursuivre avec ce fichier ? @@ -4935,10 +5628,6 @@ Voulez-vous vraiment poursuivre avec ce fichier ? &Recent Databases Bases de données &récentes - - &Import - &Importer - &Export &Exporter @@ -4959,6 +5648,10 @@ Voulez-vous vraiment poursuivre avec ce fichier ? TOTP TOTP + + Tags + Étiquettes + &Groups &Groupes @@ -5003,34 +5696,18 @@ Voulez-vous vraiment poursuivre avec ce fichier ? &New Database… &Nouvelle base de données… - - Create a new database - Créer une nouvelle base de données - &Merge From Database… Fusio&nner à partir d’une base de données… - - Merge from another KDBX database - Fusionner d’une autre base de données KDBX - &New Entry… &Nouvelle entrée… - - Add a new entry - Ajouter une nouvelle entrée - &Edit Entry… &Modifier l’entrée… - - View or edit entry - Voir ou modifier l’entrée - &Delete Entry… &Supprimer l’entrée… @@ -5039,10 +5716,6 @@ Voulez-vous vraiment poursuivre avec ce fichier ? &New Group… &Nouveau groupe… - - Add a new group - Ajouter un nouveau groupe - &Edit Group… &Modifier le groupe… @@ -5075,18 +5748,10 @@ Voulez-vous vraiment poursuivre avec ce fichier ? Database &Reports… &Rapports de la base données... - - Statistics, health check, etc. - Statistiques, bilan de santé, etc. - &Database Settings… &Paramètres de la base de données… - - Database settings - Paramètres de la base de données - &Clone Entry… &Cloner l’entrée… @@ -5095,34 +5760,18 @@ Voulez-vous vraiment poursuivre avec ce fichier ? Move u&p Déplacer vers le &haut - - Move entry one step up - Déplacer l’entrée d’un niveau vers le haut - Move do&wn Déplacer vers le &bas - - Move entry one step down - Déplacer l’entrée d’un niveau vers le bas - Copy &Username Copier le nom d’&utilisateur - - Copy username to clipboard - Copier le nom d’utilisateur dans le presse-papiers - Copy &Password Copier le mot de &passe - - Copy password to clipboard - Copier le mot de passe dans le presse-papiers - &Settings &Paramètres @@ -5156,25 +5805,13 @@ Voulez-vous vraiment poursuivre avec ce fichier ? &Titre - Copy title to clipboard - Copier le titre dans le presse-papiers - - - &URL - &URL - - - Copy URL to clipboard - Copier l’URL dans le presse-papiers + Copy &URL + Copier l'&URL &Notes &Notes - - Copy notes to clipboard - Copier les notes dans le presse-papiers - &CSV File… Fichier &CSV… @@ -5187,26 +5824,14 @@ Voulez-vous vraiment poursuivre avec ce fichier ? KeePass 1 Database… Base de données KeePass 1… - - Import a KeePass 1 database - Importer une base de données KeePass 1 - 1Password Vault… Coffre 1Password… - - Import a 1Password Vault - Importer un coffre 1Password - CSV File… Fichier CSV… - - Import a CSV file - Importer un fichier CSV - Show TOTP Afficher le TOTP @@ -5223,6 +5848,10 @@ Voulez-vous vraiment poursuivre avec ce fichier ? Copy &TOTP Copier le &TOTP + + Copy Password and TOTP + Copier le mot de passe et TOTP + E&mpty recycle bin &Vider la corbeille @@ -5247,10 +5876,6 @@ Voulez-vous vraiment poursuivre avec ce fichier ? &Online Help &Aide en ligne - - Go to online documentation - Accéder à la documentation en ligne - &User Guide Guide d’&utilisation @@ -5295,6 +5920,10 @@ Voulez-vous vraiment poursuivre avec ce fichier ? Classic (Platform-native) Classique (de la plateforme) + + Show Menubar + Afficher la barre de menus + Show Toolbar Afficher la barre d’outils @@ -5319,6 +5948,10 @@ Voulez-vous vraiment poursuivre avec ce fichier ? Clone Group... Dupliquer le groupe... + + &XML File… + Fichier &XML ... + Clear history Effacer l’historique @@ -5335,8 +5968,9 @@ Voulez-vous vraiment poursuivre avec ce fichier ? 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. - ATTENTION : vous utilisez une version instable de KeePassXC. -Il existe un risque important de dysfonctionnement. Effectuez régulièrement une copie de sécurité de vos bases de données. Cette version n'est pas destinée à une utilisation régulière. + AVERTISSEMENT : vous utilisez une version instable de KeePassXC. +Le risque de corruption est élevé. Conservez une sauvegarde de vos bases de données. +Cette version ne devrait pas être utilisée en production. NOTE: You are using a pre-release version of KeePassXC. @@ -5345,14 +5979,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - ATTENTION : votre version de Qt peut entraîner un plantage avec un clavier virtuel. -Nous vous recommandons d'utiliser l'AppImage disponible sur notre page de téléchargements. + No Tags + Aucune étiquette Restore Entry(s) - Restaurer l’entréeRestaurer les entrées + Restaurer l’entréeRestaurer les entréesRestaurer les entrées Settings @@ -5360,11 +5992,11 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Check for updates on startup? - Vérifier la présence de mises à jour au démarrage ? + Vérifier la présence de mises à jour au démarrage ? Would you like KeePassXC to check for updates on startup? - Voulez-vous que KeePassXC vérifie la présence de mises à jour au démarrage ? + Voulez-vous que KeePassXC vérifie la présence de mises à jour au démarrage ? You can always check for updates manually from the application menu. @@ -5378,17 +6010,329 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Quit KeePassXC Fermer KeePassXC + + %1 Entry(s) + %1 entrée%1 entrées%1 entrée(s) + Please present or touch your YubiKey to continue… Veuillez insérer ou toucher votre YubiKey pour continuer... Restart Application? - Redémarrer l’application ? + Redémarrer l’application ? You must restart the application to apply this setting. Would you like to restart now? - Pour appliquer ce paramètre, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant ? + Pour appliquer ce paramètre, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant ? + + + Allow Screen Capture + Autoriser la capture d'écran + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importer un fichier 1Password 1PUX + + + Import… + Importer… + + + Passkeys… + Clés d'accès… + + + Import Passkey + Importer une clé d'accès + + + Remote S&ync… + S&ynchronisation à distance... + + + Quit Application + Quitter l'application + + + Open About Dialog + Ouvrir la fenêtre À propos. + + + Open Database + Ouvrir une base de données + + + Create Database + Créer une base de données + + + Merge From Database + Fusionner depuis la base de données + + + Create Entry + Créer une entrée + + + Edit Entry + Modifier l’entrée + + + Delete Entry + Supprimer l'entrée + + + Create Group + Créer un groupe + + + Edit Group + Modifier le groupe + + + Delete Group + Supprimer le groupe + + + Download All Favicons + Télécharger tous les favicons. + + + Sort Groups A-Z + Trier les groupes de A-Z + + + Sort Groups Z-A + Trier les groupes de Z-A + + + Save Database As + Enregistrer la base de données sous... + + + Show Database Security + Afficher les informations de sécurité de la base de données + + + Show Database Reports + Afficher un rapport sur la base de données + + + Show Database Settings + Afficher les paramètres de la base de données + + + Show Passkeys + Afficher les clés d'accès + + + Clone Entry + Cloner l'entrée + + + Move Entry Up + Monter l'entrée + + + Move Entry Down + Descendre l'entrée + + + Copy Username + Copier le nom d'utilisateur + + + Copy Password + Copier le mot de passe + + + Show Application Settings + Afficher les paramètres de l'application + + + Show Password Generator + Afficher le générateur de mot de passe + + + Remove Passkey From Entry + Supprimer la clé d'accès de l'entrée + + + Perform Auto-Type: {USERNAME} + Remplir automatiquement : {LOGIN} + + + Perform Auto-Type: {USERNAME}{ENTER} + Remplir automatiquement : {LOGIN}{ENTRÉE} + + + Perform Auto-Type: {PASSWORD} + Remplir automatiquement : {MOTDEPASSE} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Remplir automatiquement : {MOTDEPASSE}{ENTRÉE} + + + Perform Auto-Type: {TOTP} + Remplir automatiquement : {TOTP} + + + Copy Title + Copier le titre + + + Copy URL + Copier l'URL + + + Copy Notes + Copier les notes + + + Export to CSV + Exporter en CSV + + + Export to HTML + Exporter au format HTML + + + Import KeePass1 Database + Importer une base de données KeePass 1 + + + Import 1Password Vault + Importer depuis un coffre-fort 1Password + + + Import CSV File + Importer un fichier CSV + + + Show TOTP QR Code + Afficher le QR Code TOTP + + + Set up TOTP + Configuration TOTP + + + Empty Recycle Bin + Vider la corbeille + + + Open Donation Website + Faire un don + + + Open Bug Report + Ouvrir un rapport de bogue + + + Open Online Documentation + Ouvrir la documentation en ligne + + + Open Keyboard Shortcuts Guide + Ouvrir le guide des raccourcis clavier + + + Save Database Backup + Enregistrer une copie de sécurité de la base de données + + + SSH Agent: Add Key + SSH Agent : ajouter une clé + + + SSH Agent: Remove Key + SSH Agent : supprimer une clé + + + Toggle Compact Mode + Permuter le mode de compatibilité + + + Set Theme: Automatic + Définir le thème : automatique + + + Set Theme: Light + Définir le thème : clair + + + Set Theme: Dark + Définir le thème : foncé + + + Set Theme: Classic + Définir le thème : classique + + + Toggle Show Menubar + Permuter l'affichage de la barre de menus + + + Toggle Show Toolbar + Permuter l'affichage de la barre d'outils + + + Toggle Show Preview Panel + Permuter l'affichage du panneau d'aperçu + + + Toggle Always on Top + Permuter le mode Toujours devant + + + Toggle Hide Usernames + Permuter la masquage des noms d'utilisateur + + + Toggle Hide Passwords + Permuter la masquage des mots de passe + + + Export to XML + Exporter au format XML + + + Toggle Allow Screen Capture + Permuter l'autorisation de capture d'écran + + + Show Group Panel + Afficher le panneau de groupe + + + Toggle Show Group Panel + Permuter l'affichage du panneau d'aperçu + + + Setup Remote Sync… + Configurer la synchronisation à distance... + + + Password Generator + Générateur de mots de passe + + + E&xpire Entry… + Faire expirer l'entrée… + + + Clear SSH Agent + Vider l'agent SSH + + + Clear all identities in ssh-agent + Effacer toutes les identités dans ssh-agent @@ -5447,26 +6391,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Overwriting %1 [%2] Remplacement de %1 [%2] - - older entry merged from database "%1" - ancienne entrée fusionnée de la base de données « %1 » - - - Adding backup for older target %1 [%2] - Ajout d’une sauvegarde pour l’ancienne cible %1 [%2] - - - Adding backup for older source %1 [%2] - Ajout d’une sauvegarde pour l’ancienne source %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Ré-application de l’ancienne entrée cible sur la nouvelle source %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Ré-application de l’ancienne entrée source sur la nouvelle cible %1 [%2] - Synchronizing from newer source %1 [%2] Synchronisation avec une source plus récente %1 [%2] @@ -5526,14 +6450,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Vous pouvez régler ici les paramètres de chiffrement de la base de données. Ne vous inquiétez pas, vous pourrez les changer ultérieurement dans les paramètres de la base de données. - - Advanced Settings - Paramètres avancés - - - Simple Settings - Paramètres simples - NewDatabaseWizardPageDatabaseKey @@ -5568,6 +6484,25 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Veuillez saisir le nom d’affichage et une description facultative pour votre nouvelle base de données : + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Le nom du fichier joint ne peut pas être vide + + + Attachment with the same name already exists + Un fichier joint avec un nom identique existe déjà + + + Save attachment + Enregistrer le fichier attaché + + + New entry attachment + Nouveau fichier joint de l'entrée + + NixUtils @@ -5614,15 +6549,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page %1 octets de texte en clair étaient attendus, %2 ont été trouvés - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - La base de données lue n’a généré aucune instance -%1 - - OpVaultReader @@ -5696,6 +6622,10 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Unknown cipher: %1 Chiffrement inconnu : %1 + + AES-256/GCM is currently not supported + AES-256/GCM n'est actuellement pas pris en charge + Passphrase is required to decrypt this key Une phrase de passe est exigée pour déchiffrer cette clé @@ -5722,7 +6652,7 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Decryption failed, wrong passphrase? - Échec de déchiffrement. La phrase de passe est-elle erronée ? + Échec de déchiffrement. La phrase de passe est-elle erronée ? Unexpected EOF while reading key @@ -5760,28 +6690,183 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Unexpected EOF when writing private key Fin de fichier inattendue lors de l’écriture de la clé privée + + (encrypted) + (chiffrée) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Les mots de passe ne correspondent pas + SSH Key Generator + Générateur de clé SSH - Passwords match so far - Les mots de passe correspondent jusqu’à présent + Type + Type - Toggle Password (%1) - Activer ou désactiver le mot de passe (%1) + Bits + Bits - Generate Password (%1) - Générer un mot de passe (%1) + Comment + Commentaire + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Exporter une clé d'accès - Warning: Caps Lock enabled! - Avertissement: Les majuscules sont verrouillées + Filenames will be generated with title and .passkey file extension. + Les fichiers sont nommés avec le titre et .passkey pour extension. + + + Export entries + Exporter des entrées + + + Export Selected + Exporter la sélection + + + Cancel + Annuler + + + Export to folder + Exporter dans un dossier + + + Export the following passkey entries. + Exporter les entrées avec clé d'accès suivantes. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC : exporter une clé d'accès + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Le fichier « %1.passkey » existe déjà. +Le remplacer ? + + + Cannot open file + Impossible d'ouvrir le fichier + + + Cannot open file "%1" for writing. + Impossible d’écrire le fichier « %1 ». + + + Cannot write to file + Impossible d’écrire le fichier + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Importer une clé d'accès + + + Username: %1 + Nom d’utilisateur : %1 + + + Group + Groupe + + + Database + Base de données + + + Import Passkey + Importer une clé d'accès + + + Import + Importer + + + Cancel + Annuler + + + Entry + Entrée + + + Create new entry + Créer une nouvelle entrée + + + Relying Party: %1 + Tiers de confiance : %1 + + + Import the following passkey: + Importer les clés d'accès suivantes : + + + Import the following passkey to this entry: + Exporter la clé d'accès de cette entrée : + + + Default passkeys group (Imported Passkeys) + Groupe par défaut des clés d'accès (clés importées) + + + + PasskeyImporter + + Passkey file + Fichier de clé d'accès + + + All files + Tous les fichiers + + + Cannot open file + Impossible d'ouvrir le fichier + + + Cannot open file "%1" for reading. + Impossible d’ouvrir le fichier « %1 » en lecture. + + + Open passkey file + Ouvrir un fichier de clé d'accès + + + Cannot import passkey + Impossible d'importer la clé d'accès + + + Cannot import passkey file "%1". Data is missing. + Impossible d'importer le fichier de clé d'accès « %1 ». Données manquantes. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Impossible d'importer le fichier de clé d'accès « %1 ». +La donnée suivante est manquante : +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Impossible d'importer le fichier de clé d'accès « %1 ». La clé privée est manquante ou incorrecte. @@ -5962,10 +7047,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Also choose from: Choisir aussi parmi : - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Les caractères exclus sont : « 0 », « 1 », « l », « I », « O », « | », « . » - Exclude look-alike characters Exclure les caractères qui se ressemblent @@ -5990,10 +7071,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Word Count: Nombre de mots : - - Character Count: - Nombres de caractères : - Word Case: Casse des mots : @@ -6006,10 +7083,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Add custom wordlist Ajout d'une liste de mots personnalisée - - character - caractère - Close Fermer @@ -6046,52 +7119,6 @@ Nous vous recommandons d'utiliser l'AppImage disponible sur notre page Entropy: %1 bit Entropie : %1 bits - - Confirm Delete Wordlist - Confirmer la suppression de liste de mots - - - Do you really want to delete the wordlist "%1"? - Voulez-vous vraiment supprimer la liste de mots "%1"? - - - Failed to delete wordlist - Échec lors de l'effacement de la liste de mots - - - Wordlists - Liste de mots - - - All files - Tous les fichiers - - - Select Custom Wordlist - Sélectionner la liste de mots personnalisée - - - Overwrite Wordlist? - Écraser la liste de mots ? - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - La liste de mots "%1" existe déjà comme une liste personnalisée. -Voulez-vous la remplacer ? - - - Failed to add wordlist - Échec lors de l'ajout d'une liste de mots - - - Logograms - Logogrammes - - - Special Characters - Caractères spéciaux - Password Quality: %1 Qualité du mot de passe : %1 @@ -6116,6 +7143,119 @@ Voulez-vous la remplacer ? Password quality Excellent + + Confirm Delete Wordlist + Confirmer la suppression de liste de mots + + + Do you really want to delete the wordlist "%1"? + Voulez-vous vraiment supprimer la liste de mots « %1 » ? + + + Failed to delete wordlist + Échec lors de l'effacement de la liste de mots + + + Wordlists + Liste de mots + + + All files + Tous les fichiers + + + Select Custom Wordlist + Sélectionner la liste de mots personnalisée + + + Overwrite Wordlist? + Écraser la liste de mots ? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + La liste de mots « %1 » existe déjà en tant que liste personnalisée. +Voulez-vous la remplacer ? + + + Failed to add wordlist + Échec lors de l'ajout d'une liste de mots + + + Logograms + Logogrammes + + + Special Characters + Caractères spéciaux + + + passwordLength + longueurMotdepasse + + + Characters: %1 + Caractères : %1 + + + MIXED case + Casse mixte + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Caractères exclus: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Les mots de passe ne correspondent pas + + + Passwords match so far + Les mots de passe correspondent jusqu’à présent + + + Toggle Password (%1) + Activer ou désactiver le mot de passe (%1) + + + Generate Password (%1) + Générer un mot de passe (%1) + + + Warning: Caps Lock enabled! + Avertissement : verrouillage majuscules activé ! + + + Quality: %1 + Qualité : %1 + + + Poor + Password quality + Pauvre + + + Weak + Password quality + Faible + + + Good + Password quality + Bon + + + Excellent + Password quality + Excellent + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Utilisez Ctrl + H pour permuter l'affichage du mot de passe. Utilisez Ctrl + G pour ouvrir le générateur de mots de passe. + PickcharsDialog @@ -6132,6 +7272,21 @@ Voulez-vous la remplacer ? Appuyez sur &Tabulation entre les caractères + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Aperçu du fichier joint de l'entrée + + + No preview available + Aucun aperçu disponible + + + Image format not supported + Format d’image non pris en charge + + QMessageBox @@ -6170,6 +7325,10 @@ Voulez-vous la remplacer ? Continue Poursuivre + + Continue with weak password + Confirmer l'utilisation d'un mot de passe faible + QObject @@ -6367,27 +7526,27 @@ Voulez-vous la remplacer ? Password for '%1' has been leaked %2 time(s)! - Le mot de passe pour « %1 » a été divulgué %2 foisLe mot de passe pour « %1 » a été divulgué %2 fois + Le mot de passe pour « %1 » a été divulgué %2 foisLe mot de passe pour « %1 » a été divulgué %2 foisLe mot de passe pour « %1 » a été divulgué %2 fois Password for '%1' has been leaked! - Le mot de passe pour « %1 » a été compromis ! + Le mot de passe de « %1 » a été divulgué ! Export an attachment of an entry. - Exporter une pièce jointe d'une entrée + Exporter un fichier joint d’une entrée. Path of the entry with the target attachment. - Chemin d'accès d'une entrée avec la cible jointe. + Chemin de l’entrée avec le fichier joint cible. Name of the attachment to be exported. - Nom de la pièce jointe à exporter. + Nom du fichier joint à exporter. Path to which the attachment should be exported. - Chemin d'accès vers lequel la pièce jointe doit être exportée. + Chemin dans lequel le fichier joint devrait être exporté. Could not find entry with path %1. @@ -6395,11 +7554,11 @@ Voulez-vous la remplacer ? Could not find attachment with name %1. - Impossible de trouver la pièce jointe portant le nom %1. + Impossible de trouver le fichier joint nommé %1. No export target given. Please use '--stdout' or specify an 'export-file'. - Pas de cible d'export fourni. Merci d'utiliser '--stdout' ou spécifier un 'fichier d'export'. + Pas de cible d'export fourni. Merci d'utiliser « --stdout » ou spécifier un « fichier d'export ». Could not open output file %1. @@ -6407,15 +7566,15 @@ Voulez-vous la remplacer ? Successfully exported attachment %1 of entry %2 to %3. - Export réussi la pièce jointe %1 de l'entrée %2 vers %3. + Le fichier joint %1 de l'entrée %2 a été exporté avec succès dans %3. Overwrite existing attachments. - Écraser les pièces jointes existantes. + Écraser les fichiers joints existants. Imports an attachment to an entry. - Importe une pièce jointe dans une entrée. + Importe un fichier joint dans une entrée. Path of the entry. @@ -6423,35 +7582,35 @@ Voulez-vous la remplacer ? Name of the attachment to be added. - Nom de la pièce jointe à ajouter. + Nom du fichier joint à ajouter. Path of the attachment to be imported. - Chemin d'accès de la pièce jointe à ajouter. + Chemin du fichier joint à importer. Attachment %1 already exists for entry %2. - La pièce jointe %1 existe déjà pour l'entrée %2. + Le fichier joint %1 existe déjà pour l’entrée %2. Could not open attachment file %1. - Impossible d'ouvrir la pièce jointe %1. + Impossible d’ouvrir le fichier joint %1. Successfully imported attachment %1 as %2 to entry %3. - Import réussi de la pièce jointe %1 comme %2 vers l'entrée %3. + Le fichier joint %1 a été importé avec succès en tant que %2 dans l’entrée %3. Remove an attachment of an entry. - Supprimer une pièce jointe d'une entrée. + Supprimer un fichier joint d’une entrée. Name of the attachment to be removed. - Nom de la pièce jointe à supprimer. + Nom du fichier joint à supprimer. Successfully removed attachment %1 from entry %2. - Suppression réussie de la pièce jointe %1 de l'entrée %2. + Le fichier joint %1 a été supprimé avec succès de l’entrée %2. Copy the given attribute to the clipboard. Defaults to "password" if not specified. @@ -6517,7 +7676,7 @@ Voulez-vous la remplacer ? Clearing the clipboard in %1 second(s)... - Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes… + Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes…Effacement du presse-papiers dans %1 secondes… Clipboard cleared! @@ -6563,6 +7722,10 @@ Voulez-vous la remplacer ? Too many arguments provided. Trop d'arguments transmis. + + Path of the database. + Chemin de la base de données. + Target decryption time in MS for the database. Durée de déchiffrement cible en millisecondes pour la base de données. @@ -6583,10 +7746,6 @@ Voulez-vous la remplacer ? Create a new database. Créer un nouvelle base de données. - - Path of the database. - Chemin de la base de données. - Invalid decryption time %1. La durée de déchiffrement est invalide : %1. @@ -6631,6 +7790,158 @@ Voulez-vous la remplacer ? Successfully created new database. La nouvelle base de données a été créée avec succès. + + Unset the password for the database. + Annulez la définition du mot de passe de la base de données. + + + Unset the key file for the database. + Annuler la définition du fichier de clé de la base de données. + + + Edit a database. + Éditer une base de données + + + Cannot use %1 and %2 at the same time. + Impossible d'utiliser %1 et %2 en même temps. + + + Could not change the database key. + Impossible de changer la clé de la base de donnée + + + Database was not modified. + La base de données n'a pas été modifiée + + + Writing the database failed: %1 + Échec d’écriture de la base de données : %1 + + + Successfully edited the database. + La base de données a été éditée avec succés + + + Cannot remove password: The database does not have a password. + Impossible de supprimer le mot de passe: La base de données n’a pas de mot de passe. + + + Cannot remove file key: The database does not have a file key. + Impossible de supprimer le fichier clé: La base de données n'a pas de fichier clé. + + + Loading the new key file failed: %1 + Échec du chargement du nouveau fichier clé : %1 + + + Found unexpected Key type %1 + Type %1 de clé inconnue trouvé + + + Cannot remove all the keys from a database. + Impossible de supprimer toutes les clefs d'une base de données + + + Show a database's information. + Afficher les renseignements d’une base de données. + + + UUID: + UUID : + + + Name: + Nom : + + + Description: + Description : + + + Cipher: + Chiffrement : + + + KDF: + Fonction de dérivation de clé : + + + Recycle bin is enabled. + La corbeille est activée. + + + Recycle bin is not enabled. + La corbeille est désactivée. + + + Location + Emplacement + + + Database created + Base de données créée + + + Last saved + Dernier enregistrement + + + Unsaved changes + Changements non enregistrés + + + yes + Oui + + + no + Non + + + Number of groups + Nombre de groupes + + + Number of entries + Nombre d’entrées + + + Number of expired entries + Nombre d’entrées expirées + + + Unique passwords + Mots de passes uniques + + + Non-unique passwords + Mots de passe non-uniques + + + Maximum password reuse + Nombre maximal de réutilisation de mot de passe + + + Number of short passwords + Nombre de mots de passe courts + + + Number of weak passwords + Nombre de mots de passe faibles + + + Entries excluded from reports + Entrées exclues des rapports + + + Average password length + Longueur moyenne des mots de passe + + + %1 characters + %1 caractères + Word count for the diceware passphrase. Nombre de mots de la phrase de passe générée avec la méthode du lancer de dés. @@ -6654,10 +7965,6 @@ Voulez-vous la remplacer ? Invalid word count %1 Le nombre de mots %1 est invalide - - The word list is too small (< 1000 items) - La liste de mots est trop courte (moins de 1 000 articles) - Title for the entry. Titre de l’entrée. @@ -6682,10 +7989,6 @@ Voulez-vous la remplacer ? Enter new password for entry: Saisir le nouveau mot de passe pour l’entrée : - - Writing the database failed: %1 - Échec d’écriture de la base de données : %1 - Successfully edited entry %1. L’entrée %1 a été modifiée avec succès. @@ -6806,10 +8109,6 @@ Voulez-vous la remplacer ? Exit interactive mode. Quitter le mode interactif. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format à utiliser lors de l’exportation. Les choix proposés sont « xml » ou « csv ». La valeur par défaut est « xml ». - Exports the content of a database to standard output in the specified format. Exporte au format indiqué le contenu de la base de données vers la sortie standard. @@ -6910,106 +8209,6 @@ Voulez-vous la remplacer ? Successfully imported database. La base de données a été importée avec succès. - - Show a database's information. - Afficher les renseignements d’une base de données. - - - UUID: - UUID : - - - Name: - Nom : - - - Description: - Description : - - - Cipher: - Chiffrement : - - - KDF: - Fonction de dérivation de clé : - - - Recycle bin is enabled. - La corbeille est activée. - - - Recycle bin is not enabled. - La corbeille est désactivée. - - - Location - Emplacement - - - Database created - Base de données créée - - - Last saved - Dernier enregistrement - - - Unsaved changes - Changements non enregistrés - - - yes - Oui - - - no - Non - - - Number of groups - Nombre de groupes - - - Number of entries - Nombre d’entrées - - - Number of expired entries - Nombre d’entrées expirées - - - Unique passwords - Mots de passes uniques - - - Non-unique passwords - Mots de passe non-uniques - - - Maximum password reuse - Nombre maximal de réutilisation de mot de passe - - - Number of short passwords - Nombre de mots de passe courts - - - Number of weak passwords - Nombre de mots de passe faibles - - - Entries excluded from reports - Entrées exclues des rapports - - - Average password length - Longueur moyenne des mots de passe - - - %1 characters - %1 caractères - Unknown command %1 La commande %1 est inconnue @@ -7182,9 +8381,13 @@ Commandes proposées : Show the protected attributes in clear text. Afficher en clair les attributs protégés. + + Show all the attributes of the entry. + Afficher toutes les caractéristiques de l'entrée + Show the attachments of the entry. - Voir les pièces jointes d'une entrée. + Afficher les fichiers joints de l’entrée. 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. @@ -7208,11 +8411,11 @@ Commandes proposées : No attachments present. - Pas de pièces jointes présentes. + Il n’y a aucun fichier joint. Attachments: - Pièces jointes : + Fichiers joints : Failed to open database file %1: not found @@ -7251,13 +8454,17 @@ Veuillez envisager de générer un nouveau fichier clé. Invalid YubiKey serial %1 Le numéro de série Yubikey %1 est invalide + + Please present or touch your YubiKey to continue. + Veuillez présenter ou toucher votre YubiKey pour continuer… + Enter password to encrypt database (optional): Saisissez un mot de passe pour chiffrer la base de données (facultatif) : Do you want to create a database with an empty password? [y/N]: - Voulez-vous créer une base de données avec un mot de passe vide ? [o/N] : + Voulez-vous créer une base de données avec un mot de passe vide ? [o/N] : Repeat password: @@ -7323,7 +8530,7 @@ Veuillez envisager de générer un nouveau fichier clé. Password is used %1 time(s) - Le mot de passe est utilisé %1 foisLe mot de passe est utilisé %1 fois + Le mot de passe est utilisé %1 foisLe mot de passe est utilisé %1 foisLe mot de passe est utilisé %1 fois Password has expired @@ -7343,7 +8550,7 @@ Veuillez envisager de générer un nouveau fichier clé. Password expires in %1 day(s) - Le mot de passe expire dans %1 jourLe mot de passe expire dans %1 jours + Le mot de passe expire dans %1 jourLe mot de passe expire dans %1 joursLe mot de passe expire dans %1 jours Password will expire soon @@ -7415,31 +8622,31 @@ Noyau : %3 %4 over %1 year(s) - plus de %1 anplus de %1 ans + plus de %1 anplus de %1 ansplus de %1 ans about %1 month(s) - environ %1 moisenviron %1 mois + environ %1 moisenviron %1 moisenviron %1 mois %1 week(s) - %1 semaine%1 semaines + %1 semaine%1 semaines%1 semaines %1 day(s) - %1 jour%1 jours + %1 jour%1 jours%1 jours %1 hour(s) - %1 heure%1 heures + %1 heure%1 heures%1 heures %1 minute(s) - %1 minute%1 minutes + %1 minute%1 minutes%1 minutes - Botan library must be at least 2.11.x, found %1.%2.%3 - La bibliothèque Botan doit être au moins en version 2.11.x (%1.%2.%3 actuellement) + Botan library must be at least %1, found %2.%3.%4 + La bibliothèque Botan doit être au moins %1, trouvée %2.%3.%4 Cryptographic libraries: @@ -7489,18 +8696,6 @@ Noyau : %3 %4 file empty fichier vide - - malformed string - chaîne mal formée - - - missing closing quote - Le guillemet fermant manque - - - %1: (row, col) %2,%3 - %1 : (ligne, colonne) %2, %3 - AES 256-bit AES 256 bits @@ -7539,7 +8734,7 @@ Noyau : %3 %4 Clearing the clipboard in %1 second(s)… - Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes… + Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes…Effacement du presse-papiers dans %1 secondes… Group @@ -7580,44 +8775,44 @@ Noyau : %3 %4 %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? - Souhaitez-vous vraiment supprimer définitivement l’entrée « %1 » ? + Voulez-vous vraiment supprimer l’entrée « %1 » définitivement ? Do you really want to delete %n entry(s) for good? - Voulez-vous vraiment définitivement supprimer % entrée ?Voulez-vous vraiment définitivement supprimer % entrées ? + Voulez-vous vraiment supprimer %n entrée définitivement ?Voulez-vous vraiment supprimer %n d’entrées définitivement ?Voulez-vous vraiment supprimer %n entrées définitivement ? Delete entry(s)? - Supprimer l’entrée ?Supprimer les entrées ? + Supprimer l’entrée ?Supprimer les entrées ?Supprimer les entrées ? Do you really want to move entry "%1" to the recycle bin? - Souhaitez-vous vraiment déplacer l’entrée « %1 » vers la corbeille ? + Voulez-vous vraiment déplacer l’entrée « %1 » vers la corbeille ? Do you really want to move %n entry(s) to the recycle bin? - Voulez-vous vraiment déplacer %n entrée à la corbeille ?Voulez-vous vraiment déplacer %n entrées à la corbeille ? + Voulez-vous vraiment déplacer %n entrée vers la corbeille ?Voulez-vous vraiment déplacer %n entrées vers la corbeille ?Voulez-vous vraiment déplacer %n entrées vers la corbeille ?1 Move entry(s) to recycle bin? - Déplacer l’entrée vers la corbeille ?Déplacer les entrées vers la corbeille ? + Déplacer l’entrée vers la corbeille ?Déplacer les entrées vers la corbeille ?Déplacer les entrées vers la corbeille ? Replace references to entry? - Remplacer les références vers l’entrée ? + Remplacer les références vers l’entrée ? Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - L’entrée « %1  » à %2 référence. Voulez-vous la remplacer par la valeur, ignorer cette entrée ou la supprimer quand même ?L’entrée « %1  » à %2 références. Voulez-vous les remplacer par les valeurs, ignorer cette entrée ou la supprimer quand même ? + L’entrée « %1  » à %2 référence. Voulez-vous la remplacer par la valeur, ignorer cette entrée ou la supprimer quand même ?L’entrée « %1  » à %2 références. Voulez-vous les remplacer par les valeurs, ignorer cette entrée ou la supprimer quand même ?L’entrée « %1  » à %2 références. Voulez-vous les remplacer par les valeurs, ignorer cette entrée ou la supprimer quand même ? User name @@ -7679,14 +8874,6 @@ Noyau : %3 %4 read password of the database from stdin lire le mot de passe de la base de données sur l’entrée standard - - allow app screen recordering and screenshots - autoriser l'application à enregistrer et capturer l'écran - - - Locked databases. - Les bases de données ont été verrouillées. - Database failed to lock. Échec de verrouillage de la base de données. @@ -7695,6 +8882,10 @@ Noyau : %3 %4 Another instance of KeePassXC is already running. Une autre instance de KeePassXC est déjà en cours d’exécution. + + KeePassXC is not running. No open database to lock + KeePassXC est arrêté. Aucune base de données ouverte à verrouiller. + Fatal error while testing the cryptographic functions. Erreur fatale lors de l’évaluation des fonctions cryptographiques. @@ -7703,10 +8894,6 @@ Noyau : %3 %4 KeePassXC - Error KeePassXC – Erreur - - Warning: Failed to prevent screenshots on a top level window! - Attention  : impossible d'empêcher les captures d'écran sur une fenêtre de niveau supérieur ! - Database password: Mot de passe de la base de données : @@ -7730,9 +8917,313 @@ Noyau : %3 %4 Échec de signature de la question avec Windows Hello. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Attention: Impossible d’empêcher les captures d’écran sur une fenêtre de niveau supérieur. + + + Invalid Cipher + Chiffre invalide + + + Invalid KDF + KDF invalide + + + Access to all entries is denied + Accès refusé à toutes les entrées + + + allow screenshots and app recording (Windows/macOS) + autorise les captures d'écran et l'enregistrement vidéo (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Définir le fichier clé pour la base. +Cette option est obsolète, utilisez plutôt --set-key-file. + + + Databases have been locked. + Les bases de données ont été verrouillées. + + + Attestation not supported + Certification non prise en charge + + + Credential is excluded + L'identifiant est exclus + + + Passkeys request canceled + Demande de clés d’accès annulée + + + Invalid user verification + Vérification de l’utilisateur invalide + + + Empty public key + Clé publique vide + + + Invalid URL provided + URL renseignée invalide + + + Passkeys + Clés d'accès + + + AES initialization failed + Échec d'initialisation AES + + + AES encrypt failed + Échec de chiffrement AES + + + Failed to store in Linux Keyring + Échec du stockage dans le trousseau de clés Linux + + + Polkit returned an error: %1 + Polkit a retourné une erreur : %1 + + + Could not locate key in keyring + Impossible de localiser la clé dans le trousseau + + + Could not read key in keyring + Impossible de lire la clé dans le trousseau + + + AES decrypt failed + Échec de déchiffrement AES + + + No Polkit authentication agent was available + Aucun agent d’authentification Polkit disponible + + + Polkit authorization failed + Échec d'autorisation Polkit + + + No Quick Unlock provider is available + Aucun fournisseur Quick Unlock disponible + + + Failed to init KeePassXC crypto. + Échec d’initialisation de la cryptographie de KeePassXC + + + Failed to encrypt key data. + Échec de chiffrement des données de la clé. + + + Failed to get Windows Hello credential. + Échec d’obtention des identifiants Windows Hello. + + + Failed to decrypt key data. + Échec de déchiffrement des données de la clé. + + + Origin is empty or not allowed + La source est vide ou non autorisée + + + Effective domain is not a valid domain + Le véritable domaine est invalide + + + Origin and RP ID do not match + La source et l'identifiant du tiers ne correspondent pas + + + No supported algorithms were provided + Aucun algorithme pris en charge n'a été proposé + + + Wait for timer to expire + Veuillez attendre l'expiration du délai + + + Challenge is shorter than required minimum length + La longueur de l'interrogation subsidiaire est inférieure au minium requis + + + user.id does not match the required length + utilisateur.identifiant n'a pas la longueur requise + + + Favorite + Tag for favorite entries + Favori + + + File does not exist. + Le fichier n'existe pas. + + + Cannot open file: %1 + Ouverture du fichier impossible : %1 + + + Cannot parse file: %1 at position %2 + Analyse impossible du fichier : %1 à la position %2 + + + Failed to decrypt json file: %1 + Échec lors du décryptage du fichier JSON : %1 + + + Invalid encKeyValidation field + Champ encKeyValidation invalide + + + Invalid cipher list within encKeyValidation field + Liste de chiffrement invalide dans le champ encKeyValidation + + + Wrong password + Mot de passe erroné + + + Invalid encrypted data field + Champ de données cryptées invalide + + + Invalid cipher list within encrypted data field + Liste de chiffrement invalide dans le champ des données chiffrées + + + Cannot initialize cipher + Impossible d'initialiser le chiffrement + + + Cannot decrypt data + Impossible de décrypter les données + + + Bitwarden Import + Importation Bitwarden + + + Archived + Tag for archived entries + Archivé + + + Invalid 1PUX file format: Not a valid ZIP file. + Format de fichier 1PUX : fichier ZIP invalide. + + + Invalid 1PUX file format: Missing export.data + Format de fichier 1PUX : export.data manquant. + + + 1Password Import + Importation 1Password + + + Enter Shortcut + Saisir le raccourci + + + Action + Action + + + Shortcuts + Raccourcis + + + Unknown passkeys error + Erreur de clés d'accès inconnue + + + Invalid KDF iterations, cannot decrypt json file + Itérations KDF invalides, impossible de déchiffrer le fichier json. + + + Unsupported format, ensure your Bitwarden export is password-protected + Format non pris en charge, assurez-vous que l'export Bitwarden protège les mots de passe + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Seuls PBKDF et Argon2 sont pris en charge, impossible de déchiffrer le fichier json. + + + Reset Shortcuts + Réinitialiser les raccourcis + + + Double click an action to change its shortcut + Double-cliquez sur une action pour modifier son raccourci + + + Filter... + Filtrer... + + + Shortcut Conflict + Conflit de raccourcis + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Le raccourci %1 est en conflit avec « %2 » : faut-il écraser le raccourci ? + + + Cannot generate valid passphrases because the wordlist is too short + Impossible de générer des phrases de passe valides, car la liste de mots est trop courte. + + + Encrypted files are not supported. + Les fichiers chiffrés ne sont pas pris en charge. + + + Proton Pass Import + Import pour Proton Pass + + + Delete plugin data? + Supprimer les données de l’extension ? + + + Delete plugin data from Entry(s)? + Supprimer les données du greffon depuis l'entrée?Supprimer les données du greffon depuis les entrées?Supprimer les données du greffon depuis l(es) entrée(s)? + + + Passkey + Clé d'accès + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Format à utiliser lors de l'exportation. Les choix proposés sont « xml », « csv » ou « html ». La valeur par défaut est « xml ». + + + start minimized to the system tray + Démarrer réduit à la zone de notification système + + + malformed string, possible unescaped delimiter + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Étiquettes + QtIOCompressor @@ -7768,20 +9259,39 @@ Noyau : %3 %4 Erreur interne zlib : + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + La commande « %1 » n'a pas terminé à temps. Le processus a été tué. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Échec du téléversement de la base de données fusionnée. La commande "%1" n'a pas terminé à temps. Le processus a été tué. + + + Invalid download parameters provided. + Les paramètres de téléchargement fournis sont incorrects. + + + Command `%1` failed to download database. + La commande « %1 » n’a pas pu télécharger la base de données. + + + Invalid database pointer or upload parameters provided. + L'adresse de base de données ou les paramètres de téléversement fournis sont incorrects. + + + Command `%1` exited with status code: %2 + La commande « %1 » s'est terminée avec le code d'état : %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Échec du téléversement de la base de données fusionnée. La commande "%1" s'est terminée avec le code d'état : %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Exclure les entrées expirées du rapport - - - Show only entries which have URL set - Ne monter que les entrées qui ont défini leur URL - - - Show only entries which have browser settings in custom data - Ne montrer que les entrées qui ont des paramètres de navigateur dans leur données personnelles - Double-click entries to edit. Double-cliquer sur les entrées pour les modifier @@ -7840,50 +9350,59 @@ Noyau : %3 %4 Delete Entry(s)… - Supprimer l’entrée ?Supprimer les entrées ? + Supprimer l’entrée…Supprimer les entrées…Supprimer les entrées1… Exclude from reports Exclure des rapports + + Expire Entry(s)… + Entrée expiréeEntrées expiréesEntrée(s) expirée(s) + + + Only show entries that have a URL + N’afficher que les entrées disposant d'une URL + + + Only show entries that have been explicitly allowed or denied + N’affichez que les entrées explicitement autorisées ou refusées + + + Show expired entries + Afficher les entrées expirées + + + (Expired) + (expirée) + + + Delete plugin data from Entry(s)… + Supprimer les données du greffon depuis l'entrée…Supprimer les données du greffon depuis les entrées…Supprimer les données du greffon depuis l(es) entrée(s)… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Exclure les entrées expirées du rapport + Show expired entries + Afficher les entrées expirées - Also show entries that have been excluded from reports - Afficher aussi les entrées qui ont été exclues des rapports + (Expired) + (expirée) Hover over reason to show additional details. Double-click entries to edit. Survolez la raison pour afficher des détails supplémentaires. Double-cliquez sur les entrées pour les modifier. - - Bad - Password quality - Mauvais - Bad — password must be changed Mauvais – le mot de passe doit être changé - - Poor - Password quality - Plutôt mauvais - Poor — password should be changed Plutôt mauvais – le mot de passe doit être changé - - Weak - Password quality - Faible - Weak — consider changing the password Faible – envisagez de changer le mot de passe @@ -7926,12 +9445,20 @@ Noyau : %3 %4 Delete Entry(s)… - Supprimer l’entrée ?Supprimer les entrées ? + Supprimer l’entrée…Supprimer les entrées…Supprimer les entrées… Exclude from reports Exclure des rapports + + Expire Entry(s)… + Entrée expiréeEntrées expiréesEntrée(s) expirée(s) + + + Show entries that have been excluded from reports + Afficher les entrées exclues des rapports + ReportsWidgetHibp @@ -8021,12 +9548,83 @@ Noyau : %3 %4 Delete Entry(s)… - Supprimer l’entrée ?Supprimer les entrées ? + Supprimer l’entrée…Supprimer les entrées…Supprimer les entrées… Exclude from reports Exclure des rapports + + Expire Entry(s)… + Entrée expiréeEntrées expiréesEntrée(s) expirée(s) + + + + ReportsWidgetPasskeys + + Export + Exporter + + + Import + Importer + + + List of entry URLs + Liste des URL d'entrées + + + Title + Titre + + + Path + Chemin + + + Username + Nom d’utilisateur + + + URLs + URL + + + Edit Entry… + Modifier l'entrée... + + + Delete Entry(s)… + Supprimer l’entrée…Supprimer les entrées…Supprimer les entrées… + + + Relying Party + Tiers de confiance + + + Show expired entries + Afficher les entrées expirées + + + (Expired) + (expirée) + + + Export Confirmation + Confirmation de l’exportation + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Le fichier de clé d'accès sera exposé au vol où à une utilisation non autorisée s'il n'est pas sécurisé. Êtes-vous sûr·e de vouloir continuer ? + + + Please wait, list of entries with passkeys is being updated… + Veuillez patienter pendant la mise à jour de la liste des entrées avec clé d'accès… + + + No entries with passkeys. + Aucun entrée avec clé d'accès. + ReportsWidgetStatistics @@ -8201,6 +9799,14 @@ Noyau : %3 %4 No agent running, cannot list identities. Aucun agent n’est en cours d’exécution, il est impossible de lister les identités. + + Failed to remove all SSH identities from agent. + Impossible de supprimer toutes les identités SSH de l’agent. + + + All SSH identities removed from agent. + Toutes les identités SSH sont supprimées de l'agent. + SearchHelpWidget @@ -8267,6 +9873,10 @@ Noyau : %3 %4 Search Help Chercher dans l’aide + + Save Search + Sauvegarder recherche + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8341,34 +9951,10 @@ Noyau : %3 %4 Confirm when passwords are retrieved by clients Confirmer lorsque les mots de passe sont récupérés par des hôtes - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Ce paramètre - n'outrepasse pas la désactivation des invites de la corbeille</span></p></body></html> - - Confirm when clients request entry deletion Confirmer lorsque des hôtes demandent la suppression d'une entrée - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Ceci améliore la compatibilité avec certaines applications - recherchant un mot de passe sans d'abord déverrouiller la base de données.</p><p>Toutefois, son activation peut entraîner - un plantage du client si la base de données ne peut être déverrouillée dans un temps imparti (généralement 25 s, mais la valeur - peut différer selon celle définie dans les applications.)</p></body></html> - - Prompt to unlock database before searching Inviter à déverrouiller la base de données avant de rechercher @@ -8391,7 +9977,16 @@ Noyau : %3 %4 Save current changes to activate the plugin and enable editing of this section. - Enregistrer les changements actuels pour activer le greffon et permettre la modification de cette section. + Enregistrer les changements actuels pour activer l’extension et permettre la modification de cette section. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Ce paramètre ne se substitue pas à la désactivation des confirmations de suppression vers la corbeille. </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Permet d'améliorer la compatibilité avec certaines applications recherchant le mot de passe sans avoir à déverrouiller la base de données. +</p><p>L'activation de cette fonction peut toutefois faire planter la partie client si la base de données ne peut être déverrouillée en temps imparti (habituellement 25 secondes, mais peut varier selon les applications).</p></body></html> @@ -8501,8 +10096,12 @@ Noyau : %3 %4 TagModel - All - Tous + Clear Search + Effacer la recherche + + + All Entries + Toutes les entrées Expired @@ -8513,6 +10112,25 @@ Noyau : %3 %4 Mots de passe faibles + + TagView + + Remove Search + Supprimer la recherche + + + Remove Tag + Supprimer l’étiquette + + + Confirm Remove Tag + Confirmer la suppression de l'étiquette + + + Remove tag "%1" from all entries in this database? + Supprimer l'étiquette "%1" de toutes les entrées de cette base de données ? + + TotpDialog @@ -8525,7 +10143,7 @@ Noyau : %3 %4 Expires in <b>%n</b> second(s) - Expire dans <b>%n</b> secondeExpire dans <b>%n</b> secondes + Expire dans <b>%n</b> secondeExpire dans <b>%n</b> secondesExpire dans <b>%n</b> secondes @@ -8623,7 +10241,7 @@ Exemple : JBSWY3DPEHPK3PXP Are you sure you want to delete TOTP settings for this entry? - Voulez-vous vraiment supprimer les paramètres TOTP pour cette entrée ? + Voulez-vous vraiment supprimer les paramètres TOTP pour cette entrée ? @@ -8670,26 +10288,6 @@ Exemple : JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Commencez à enregistrer vos mots de passe en toute sécurité dans une base de données KeePassXC - - Create new database - Créer une nouvelle base de données - - - Open existing database - Ouvrir une base de données existante - - - Import from KeePass 1 - Importer de KeePass 1 - - - Import from 1Password - Importer de 1Password - - - Import from CSV - Importer d’un fichier CSV - Recent databases Bases de données récentes @@ -8702,6 +10300,18 @@ Exemple : JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bienvenue sur KeePassXC %1 + + Create Database + Créer une base de données + + + Open Database + Ouvrir une base de données + + + Import File + Importer un fichier + WinUtils @@ -8718,31 +10328,8 @@ Exemple : JBSWY3DPEHPK3PXP Impossible d’assigner le raccourci global - - WindowsHello - - Failed to init KeePassXC crypto. - Échec d’initialisation de la cryptographie de KeePassXC - - - Failed to encrypt key data. - Échec de chiffrement des données de la clé. - - - Failed to get Windows Hello credential. - Échec d’obtention des identifiants Windows Hello. - - - Failed to decrypt key data. - Échec de déchiffrement des données de la clé. - - YubiKey - - %1 No interface, slot %2 - %1 Aucune interface, emplacement %2 - General: Général : @@ -8754,14 +10341,6 @@ Exemple : JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Actualiser les jetons matériels - - - Refresh - Actualiser - Hardware key slot selection Sélection de l’emplacement de la clé matérielle @@ -8794,10 +10373,6 @@ Exemple : JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Question-réponse définie, cliquez pour la modifier ou la supprimer - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Si vous disposez d'une <a href="https://www.yubico.com/">YubiKey</a> ou <a href="https://onlykey.io">OnlyKey</a>, vous pouvez l’utiliser afin d'améliorer la sécurité.</p><p>La clé nécessite un emplacement défini comme <a href="https://www.yubico.com/products/services-software/challenge-response/">Question-réponse HMAC-SHA1</a>.</p> - Detecting hardware keys… Détection des clés matérielles… @@ -8806,28 +10381,25 @@ Exemple : JBSWY3DPEHPK3PXP No hardware keys detected Aucune clé matérielle n’a été détectée - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 emplacement(s) spécifié(s) invalide(s) - %2 + Refresh hardware keys + Actualiser les clés matérielles + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Si vous possédez une <a href="https://www.yubico.com/">YubiKey</a> ou <a href="https://onlykey.io">OnlyKey</a>, vous pouvez l'utiliser pour renforcer la sécurité.</p><p>La clé nécessite que l'un de ses emplacements soit programmé avec <a href="https://keepassxc.org/docs/#faq-yubikey-howto">défi'réponse</a>.</p> + + + Hardware keys found, but no slots are configured + Des clés matérielles ont été trouvées, mais aucun emplacement n'est configuré YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Question-réponse - Emplacement %3 - The YubiKey PCSC interface has not been initialized. L'interface PCSC YubiKey n'a pu être initialisée. - - Hardware key is currently in use. - La clé matérielle est en cours d'utilisation. - Could not find or access hardware key with serial number %1. Please present it to continue. Impossible de trouver ou d'accéder à la clé matérielle ayant le n° de série %1. Veuillez l'insérer pour continuer. @@ -8844,6 +10416,21 @@ Exemple : JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Échec lors du question-réponse, erreur PCSC : %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Emplacement %3, %4 + + + Press + USB Challenge-Response Key interaction request + Pressez + + + Passive + USB Challenge-Response Key no interaction required + Passif + YubiKeyInterfaceUSB @@ -8851,14 +10438,6 @@ Exemple : JBSWY3DPEHPK3PXP Unknown Inconnu - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Emplacement configuré - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Question-réponse - Emplacement %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8873,10 +10452,6 @@ Exemple : JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. L'interface USB YubiKey n'a pu être initialisée. - - Hardware key is currently in use. - La clé matérielle est en cours d'utilisation. - Could not find hardware key with serial number %1. Please plug it in to continue. Impossible de trouver la clé matérielle dont le numéro de série est %1. Veuillez la connecter afin de poursuivre. @@ -8893,5 +10468,15 @@ Exemple : JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Échec de question-réponse, l’erreur particulière était : %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Emplacement %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Emplacement %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_fr_CA.ts b/share/translations/keepassxc_fr_CA.ts index 837eefc61..4529da1aa 100644 --- a/share/translations/keepassxc_fr_CA.ts +++ b/share/translations/keepassxc_fr_CA.ts @@ -50,15 +50,15 @@ AccessControlDialog KeePassXC - Access Request - + KeePassXC - Demande d'accès Non-existing/inaccessible executable path. Please double-check the client is legit. - + Chemin d’exécutable inexistant ou inaccessible. Veuillez vérifier s'il s'agit réellement d'un client de confiance. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">%1 </span>demande l'accès aux entrées suivantes :</p></body></html> Name @@ -66,19 +66,23 @@ PID - + PID Executable - + Exécutable Command Line - + Ligne de commande Details - + Détails + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Votre décision sera mémorisée pour la durée de fonctionnement du client qui effectue la demande et de KeePassXC. Remember @@ -88,24 +92,20 @@ Allow Selected Permettre les éléments sélectionnés - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + Tout refuser et dans le futur Allow All && &Future - + Tout accepter et dans le &futur AccessControlDialog::DenyButton Deny for this program - + Refuser pour ce programme @@ -116,11 +116,15 @@ Use Pageant - + Utiliser Pageant Use OpenSSH - + Utiliser OpenSSH + + + Use both agents + Utiliser les deux agents SSH_AUTH_SOCK override @@ -136,11 +140,11 @@ SSH_SK_PROVIDER value - + Valeur de SSH_SK_PROVIDER SSH_SK_PROVIDER override - + Substitution de SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. @@ -150,10 +154,6 @@ SSH Agent connection is working! La connexion de l’agent SSH fonctionne. - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Sécurité + + This setting cannot be enabled when minimize on unlock is enabled. + Ce paramètre ne peut pas être activé lorsque la fonction de minimisation de la fenêtre au déverrouillage est activée. + Access error for config file %1 Erreur d’accès pour le fichier de configuration %1 @@ -213,16 +217,48 @@ You must restart the application to set the new language. Would you like to restart now? Pour appliquer la nouvelle langue, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant? - - Reset Settings? - Réinitialiser les paramètres? - - - Are you sure you want to reset all general and security settings to default? - Voulez-vous vraiment réinitialiser tous les paramètres généraux et de sécurité à leur valeur par défaut? - Select backup storage directory + Sélectionner le dossier de sauvegarde + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom @@ -256,6 +292,10 @@ Remember previously used databases Mémoriser les bases de données utilisées précédemment + + recent files + fichiers récents + Load previously open databases on startup Lors du démarrage, charger les bases de données ouvertes précédemment @@ -272,25 +312,6 @@ Include beta releases when checking for updates Inclure les versions bêta lors de la vérification de la présence de mises à jour - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management Gestion des fichiers @@ -315,33 +336,21 @@ Backup database file before saving Sauvegarder le fichier de la base de données avant d’enregistrer - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - - - Choose... - + {DB_FILENAME}.ancienne.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - + Utiliser une méthode alternative de sauvegarde (peut résoudre des problèmes avec Dropbox, Google Drive, GVFS, etc.). Temporary file moved into place - + Fichier temporaire mis en place Directly write to database file (dangerous) - + Écrire directement dans le fichier de la base de données (dangereux) Entry Management @@ -408,6 +417,10 @@ Toolbar button style: Style des boutons de la barre d’outils : + + Show passwords in color + Afficher les mots de passe en couleur + Use monospaced font for notes Utiliser une police à espacement constant pour les notes @@ -454,7 +467,7 @@ Hide expired entries from Auto-Type - + Exclure les entrées expirés de la saisie automatique Re-lock previously locked database after performing Auto-Type @@ -491,6 +504,71 @@ Remember last typed entry for: + Mémoriser la dernière entrée saisie pendant : + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + jours + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection @@ -536,7 +614,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Activer le déverrouillage rapide de la base de données (Touch ID ou Windows Hello) Lock databases when session is locked or lid is closed @@ -546,10 +624,6 @@ Lock databases after minimizing the window Verrouiller les bases de données après avoir réduit la fenêtre - - Require password repeat when it is visible - Exiger de répéter le mot de passe s’il est visible - Hide passwords when editing them Cacher les mots de passe lors de leur modification @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Cacher les mots de passe dans le panneau de prévisualisation des entrées - - Hide entry notes by default - Par défaut, cacher les notes des entrées - - - Move entries to recycle bin without confirmation - - - - Enable double click to copy the username/password entry columns - - Privacy Confidentialité @@ -582,16 +644,32 @@ Use DuckDuckGo service to download website icons Utiliser le service DuckDuckGo pour télécharger les icônes de sites Web + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType The requested Auto-Type sequence cannot be used due to an error: - + La séquence de saisie automatique demandée ne peut pas être utilisée à cause d’une erreur : Auto-Type Error - + Erreur de saisie automatique Permission Required @@ -607,40 +685,31 @@ Invalid entry provided - + Entrée invalide fournie Bracket imbalance detected, found extra { or } - + Une disparité d’accolade a été détectée. Une « { » ou « } » supplémentaire a été trouvée Too many repetitions detected, max is %1: %2 - + Trop de répétitions ont été détectées. Le maximum est %1 : %2 Very slow key press detected, max is %1: %2 - + Un appui de touche très lent a été détecté. Le maximum est %1 : %2 Very long delay detected, max is %1: %2 - + Un pause très longue a été détectée. Le maximum est %1 : %2 - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + L'entrée n'a pas d'attribut pour PICKCHARS : %1 Invalid placeholder: %1 - + Espace réservé invalide : %1 @@ -683,20 +752,20 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + Séquence interrompue: le verrou des majuscule est activé Sequence aborted: Modifier keys held by user - + Séquence interrompue : touches de modification maintenues par l'utilisateur Unable to get valid keycode for key: + Impossible d'obtenir un code d'identification valide pour la clé : + + + Trying to send invalid keyboard symbol. @@ -708,7 +777,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - + Double-cliquer sur une rangée pour effectuer une saisie automatique ou pour trouver une entrée via la recherche : <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -717,15 +786,20 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>Vous pouvez utiliser des requêtes de recherche avancées pour trouver une entrée dans vos bases de données ouvertes. Les raccourcis suivants sont utiles :<br/> +Ctrl+F - Activer ou désactiver la recherche dans la base de données<br/> +Ctrl+1 - Saisir le nom d’utilisateur<br/> +Ctrl+2 - Saisir le mot de passe<br/> +Ctrl+3 - Saisir le TOTP<br/> +Ctrl+4 - Utiliser le clavier virtuel (Windows seulement)</p> Search all open databases - + Rechercher dans toutes les bases de données ouvertes Search… - + Rechercher... Type Sequence @@ -749,11 +823,11 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Copy Username - + Copier le nom d’utilisateur Copy Password - + Copier le mot de passe Copy TOTP @@ -761,7 +835,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Use Virtual Keyboard - + Utiliser le clavier virtuel @@ -798,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Désactiver pour ce site + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Enregistrer l’entrée - Ok Valider @@ -819,13 +893,73 @@ Please select the correct database for saving credentials. Plusieurs bases de données sont ouvertes. Veuillez sélectionner la base de données souhaitée pour enregistrer les identifiants. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Annuler + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC : Créer un nouveau groupe - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -834,10 +968,6 @@ Do you want to create this group? Voulez-vous créer ce groupe ? - - KeePassXC: New key association request - KeePassXC : Nouvelle demande d’association de clé - You have received an association request for the following database: %1 @@ -854,79 +984,76 @@ chrome-laptop Save and allow access Enregistrer et permettre l’accès - - KeePassXC: Overwrite existing key? - KeePassXC : Remplacer la clé existante? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Une clé de chiffrement partagée nommée « %1 » existe déjà. Voulez-vous la remplacer? - - KeePassXC: Update Entry - KeePassXC : Mettre l’entrée à jour - Do you want to update the information in %1 - %2? Voulez-vous mettre à jour les renseignements dans %1 - %2 ? - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? + Une requête pour supprimer l'entrée « %1 » a été reçue. +Voulez-vous la supprimer ? + + + + %1 (Passkey) - Converting attributes to custom data… - Conversion des attributs en données personnalisées… + KeePassXC - Create a new group + - Abort - Abandonner + Disable + Désactiver - KeePassXC: Converted KeePassHTTP attributes - KeePassXC : Attributs KeePassHTTP convertis + KeePassXC - Overwrite existing key? + - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Les attributs de %1 entrée(s) ont été convertis avec succès. -%2 clés ont été déplacées vers les données personnalisées. - - - Successfully moved %n keys to custom data. - %n clé a été déplacée avec succès vers les données personnalisées.%n clés ont été déplacées avec succès vers les données personnalisées. + KeePassXC - Update Entry + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC : Aucune entrée avec des attributs KeePassHTTP n’a été trouvée + KeePassXC - Delete entry + - The active database does not contain an entry with KeePassHTTP attributes. - La base de données active ne comprend aucune entrée avec des attributs KeePassHTTP. + KeePassXC - New key association request + - Don't show this warning again - Ne plus afficher cet avertissement + Passkey + - KeePassXC: Legacy browser integration settings detected - KeePassXC : Des paramètres hérités d’intégration aux navigateurs ont été détectés + KeePassXC - Passkey credentials + - 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? - Vos paramètres KeePassXC-Browser doivent être intégrés aux paramètres de la base de données. -Cela est nécessaire pour conserver les connexions actuelles de votre navigateur. -Voulez-vous migrer vos paramètres maintenant ? + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + @@ -947,10 +1074,6 @@ Voulez-vous migrer vos paramètres maintenant ? General Général - - Browsers installed as snaps are currently not supported. - Les navigateurs installés en tant que snap ne sont pas pris en charge actuellement. - Enable integration for these browsers: Activer l’intégration pour ces navigateurs : @@ -1122,26 +1245,6 @@ Voulez-vous migrer vos paramètres maintenant ? Custom extension ID ID d’extension personnalisé - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - En raison du bac à sable de Snap, vous devez exécuter un script afin d’activer l’intégration aux navigateurs.<br />Vous pouvez obtenir ce script sur %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser est nécessaire pour que l’intégration aux navigateurs fonctionne. <br />Téléchargez-la pour %1, %2 et %3. %4 - - - Please see special instructions for browser extension use below - Veuillez consulter ci-dessous les instructions spéciales de l’extension pour navigateurs - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Erreur :</b> L’emplacement de mandataire personnalisé est introuvable. <br/>L’intégration aux navigateurs NE FONCTIONNERA PAS sans l’application mandataire. - - - <b>Warning:</b> The following options can be dangerous! - <b>Avertissement:</b> Les options suivantes peuvent être dangereuses - Executable Files Fichiers exécutables @@ -1158,6 +1261,46 @@ Voulez-vous migrer vos paramètres maintenant ? Select native messaging host folder location Sélectionner l’emplacement du dossier de l’hôte de messagerie native + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1180,14 +1323,6 @@ Voulez-vous migrer vos paramètres maintenant ? CsvImportWidget - - Import CSV fields - Importer les champs CSV - - - filename - nom de fichier - size, rows, columns taille, lignes, colonnes @@ -1296,51 +1431,43 @@ Voulez-vous migrer vos paramètres maintenant ? Column %1 Colonne %1 - - Imported from CSV file - Importé d’un fichier CSV - - - Original data: - Données originales : - - - Error(s) detected in CSV file! - Des erreurs ont été détectées dans le fichier CSV - [%n more message(s) skipped] - [%n autre message a été ignoré][%n autres messages ont été ignorés] + [%n autre message a été ignoré][%n autres messages ont été ignorés][%n autres messages ont été ignorés] - Error - Erreur + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - Importation CSV : le scripteur comporte des erreurs : -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n octet%n octets - %n row(s) - %n ligne%n lignes + CSV row count + %n ligne%n lignes%n lignes %n column(s) - %n colonne%n colonnes + CSV column count + %n colonne%n colonnes%n colonnes @@ -1386,12 +1513,20 @@ La base de données de sauvegarde est située sur %2 Key not transformed. This is a bug, please report it to the developers. - + La clé n'a pas été transformée. Il s'agit d'un bogue, veuillez le signaler aux développeurs. Recycle Bin Corbeille + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1414,39 +1549,10 @@ La base de données de sauvegarde est située sur %2 Password field Champ de mot de passe - - Enter Additional Credentials (if any): - Saisissez des identifiants supplémentaires (si définis) : - - - Key File: - Fichier clé : - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Aide fichier clé - Hardware key slot selection Sélection de l’emplacement de la clé matérielle - - Hardware Key: - Clé matérielle : - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Aide sur les clés matérielles - Key file to unlock the database Fichier clé pour déverrouiller la base de données @@ -1459,17 +1565,9 @@ La base de données de sauvegarde est située sur %2 Browse… Parcourir... - - Refresh hardware tokens - Actualiser les jetons matériels - - - Refresh - Actualiser - Unlock Database - + Déverrouiller la base de données Cancel @@ -1477,15 +1575,15 @@ La base de données de sauvegarde est située sur %2 Unlock - + Déverrouiller Please present or touch your YubiKey to continue… - + Veuillez présenter ou toucher votre YubiKey pour continuer… Database Version Mismatch - + Version de la base de données incohérente The database you are trying to open was most likely @@ -1499,11 +1597,11 @@ We recommend you update your KeePassXC installation. Open database anyway - + Ouvrir quand même la base de données Database unlock canceled. - + Déverrouillage de la base de données annulé. Unlock failed and no password given @@ -1523,14 +1621,6 @@ Afin d’empêcher que cette erreur survienne, vous devez accéder à « Param Retry with empty password Réessayer sans mot de passe - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Échec d’ouverture du fichier clé : %1 @@ -1564,22 +1654,64 @@ Afin d’empêcher que cette erreur survienne, vous devez accéder à « Param Impossible d’utiliser une base de données comme fichier clé - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Vous ne pouvez pas utiliser la base de données actuelle comme fichier clé. -Si vous n’avez pas de fichier clé, laissez le champ vide. + authenticate to access the database + - Detecting hardware keys… - Détection des clés matérielles… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - Aucune clé matérielle n’a été détectée + Select Key File: + - Select hardware key… - Sélectionner une clé matérielle… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + @@ -1591,10 +1723,6 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. DatabaseSettingsDialog - - Advanced Settings - Paramètres avancés - General Général @@ -1617,6 +1745,22 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. Maintenance + Maintenance + + + KeeShare + KeeShare + + + Secret Service Integration + Intégration à « Secret Service » + + + Remote Sync + + + + Database Settings: %1 @@ -1626,18 +1770,6 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. KeePassXC-Browser settings Paramètres de KeePassXC-Browser - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Actualiser l’ID du groupe racine de la base de données - Disconnect all browsers Déconnecter tous les navigateurs @@ -1646,6 +1778,10 @@ Si vous n’avez pas de fichier clé, laissez le champ vide. Forget all site-specific settings on entries Oublier tous les paramètres d’entrée propres aux sites + + Refresh database root group ID + Actualiser l’ID du groupe racine de la base de données + Stored keys Clés enregistrées @@ -1694,21 +1830,13 @@ This may prevent connection to the browser plugin. Voulez-vous vraiment déconnecter tous les navigateurs? Cela pourrait empêcher la connexion avec l’extension pour navigateurs. - - KeePassXC: No keys found - KeePassXC : Aucune clé n’a été trouvée - No shared encryption keys found in KeePassXC settings. Aucune clé de chiffrement partagée n’a été trouvée dans les paramètres de KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC : Les clés ont été supprimées de la base de données - Successfully removed %n encryption key(s) from KeePassXC settings. - %n clé de chiffrement a été supprimée avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC. + %n clé de chiffrement a été supprimée avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC.%n clés de chiffrement ont été supprimées avec succès des paramètres de KeePassXC. Do you really want forget all site-specific settings on every entry? @@ -1723,31 +1851,14 @@ Permissions to access entries will be revoked. Abort Abandonner - - KeePassXC: Removed permissions - KeePassXC : Les autorisations ont été supprimées - Successfully removed permissions from %n entry(s). - Les autorisations d’%n entrée ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès. - - - KeePassXC: No entry with permissions found! - KeePassXC : Aucune entrée avec autorisation n’a été trouvée + Les autorisations d’%n entrée ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès.Les autorisations de ’%n entrées ont été supprimées avec succès. The active database does not contain an entry with permissions. La base de données active ne comprend aucune entrée avec des autorisations. - - Move KeePassHTTP attributes to custom data - Déplacer les attributs KeePassHTTP vers les données personnalisées - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID Actualiser l’ID de la base de données @@ -1758,12 +1869,32 @@ This is only necessary if your database is a copy of another and the browser ext Voulez-vous vraiment actualiser l’ID de la base de données? Cela n’est nécessaire que si votre base de données est la copie d’une autre et que l’extension pour navigateurs ne peut pas se connecter. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + DatabaseSettingsWidgetDatabaseKey Add additional protection… - + Ajouter une protection supplémentaire… No password set @@ -1797,6 +1928,18 @@ Voulez-vous vraiment poursuivre sans mot de passe? Failed to change database credentials Échec de changement des identifiants de la base de données + + Weak password + Le mot de passe est faible + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1804,14 +1947,6 @@ Voulez-vous vraiment poursuivre sans mot de passe? Decryption Time: Temps de déchiffrement : - - Change existing decryption time - Changer le temps de déchiffrement existant - - - Change - Changer - Decryption time in seconds Temps de déchiffrement en secondes @@ -1830,11 +1965,11 @@ Voulez-vous vraiment poursuivre sans mot de passe? Format cannot be changed: Your database uses KDBX 4 features - + Le format ne peut être modifié: votre base de données utilise des fonctionnalités KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + À moins que vous souhaitiez ouvrir votre base de données avec d'autres programmes, utilisez toujours le format le plus récent. Encryption Algorithm: @@ -1886,16 +2021,11 @@ Voulez-vous vraiment poursuivre sans mot de passe? KDBX 4 (recommended) - + KDBX 4 (recommandé) KDBX 3 - - - - unchanged - Database decryption time is unchanged - inchangé + KDBX 3 Number of rounds too high @@ -1938,12 +2068,24 @@ If you keep this number, your database will not be protected from brute force at MiB Abbreviation for Mebibytes (KDF settings) - MioMio + MioMioMio thread(s) Threads for parallel execution (KDF settings) - fil d’exécutionfils d’exécution + fil d’exécutionfils d’exécutionfils d’exécution + + + Encryption Settings: + + + + Basic + + + + Advanced + Avancé @@ -2003,18 +2145,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Nombre maximal d’éléments historiques par entrée - - Max. history items: - Nombre maximal d’éléments d’historique : - Maximum size of history per entry Taille maximale de l’historique par entrée - - Max. history size: - Taille maximale de l’historique : - MiB Mio @@ -2045,6 +2179,99 @@ Cette action est irréversible. (old) (ancien) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Effacer + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2082,35 +2309,35 @@ Cette action est irréversible. DatabaseSettingsWidgetMaintenance Manage Custom Icons - + Gérer les icônes personnalisées Delete selected icon(s) - + Supprimer la ou les icônes sélectionnées Delete all custom icons not in use by any entry or group - + Supprimer toutes les icônes personnalisées non utilisées par les entrées ou les groupes Purge unused icons - + Nettoyer les icônes inutilisées Confirm Deletion - + Confirmer la suppression At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + Au moins une icône de la sélection est actuellement utilisée par une entrée ou un groupe. Les icônes affectées aux entrées et aux groupes seront remplacées par l'icône par défaut. Êtes-vous sûr de vouloir supprimer les icônes actuellement utilisées? Custom Icons Are In Use - + Des icônes personnalisées sont utilisées All custom icons are in use by at least one entry or group. - + Toutes les icônes personnalisées sont actuellement utilisées par une entrée ou un groupe. Purged Unused Icons @@ -2118,7 +2345,7 @@ Cette action est irréversible. Purged %n icon(s) from the database. - + %n icône nettoyée de la base de données.%n icônes nettoyées de la base de données.%n icônes nettoyées de la base de données. @@ -2140,6 +2367,129 @@ Cette action est irréversible. Champ de description de la base de données + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Supprimer + + + Command Settings + + + + Name + Nom + + + Save + Enregistrer + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + secondes + + DatabaseTabWidget @@ -2172,26 +2522,10 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.CSV file Fichier CSV - - Select CSV file - Sélectionner un fichier CSV - Merge database Fusionner la base de données - - KeePass 1 database - Base de données KeePass 1 - - - Open KeePass 1 database - Ouvrir une base de données KeePass 1 - - - Open OPVault - Ouvrir OPVault - Export database to CSV file Exporter la base de données vers un fichier CSV @@ -2204,6 +2538,18 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.Writing the HTML file failed. Échec d’écriture du fichier HTML. + + Export database to XML file + Exporter la base de données dans un fichier XML + + + XML file + Fichier XML + + + Writing the XML file failed + L'écriture du fichier XML a échoué + Export Confirmation Confirmation de l’exportation @@ -2212,42 +2558,38 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Vous êtes sur le point d’exporter votre base de données vers un fichier non chiffré. Vos mots de passe et renseignements délicats seront vulnérables. Voulez-vous vraiment poursuivre ? - - New Database - Nouvelle base de données - - - %1 [New Database] - Database tab name modifier - %1 [nouvelle base de données] - %1 [Locked] Database tab name modifier %1 [verrouillé] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags + Searches and Tags Searching… - + Recherche... Shared group… - + Groupe partagé… Confirm Auto-Type - + Confirmer la saisie automatique Perform Auto-Type into the previously active window? - + Effectuer la saisie automatique dans la fenêtre active précédemment ? Execute command? @@ -2281,6 +2623,10 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.Expired entries + + Entries expiring within %1 day(s) + + No current database. Aucune base de données actuelle. @@ -2305,6 +2651,18 @@ C’est très certainement un bogue, veuillez le signaler aux développeurs.No Results Il n’y a aucun résultat + + Save + Enregistrer + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + + Lock Database? Verrouiller la base de données? @@ -2333,26 +2691,6 @@ Enregistrer les changements? File has changed Le fichier a été modifié - - The database file has changed. Do you want to load the changes? - Le fichier de la base de données a été modifié. Voulez-vous le recharger? - - - Merge Request - Demande de fusion - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Le fichier de la base de données a été modifié et vos changements ne sont pas enregistrés. -Voulez-vous fusionner vos changements? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Impossible d’ouvrir le nouveau fichier de base de données en tentant de la recharger automatiquement. -Erreur : % 1 - Disable safe saves? Désactiver les enregistrements sécurisés? @@ -2395,9 +2733,94 @@ Désactiver les enregistrements sécurisés et réessayer? Could not find database file: %1 Impossible de trouver le fichier de la base de données : %1 - - Entries expiring within %1 day(s) - + + New Database + Nouvelle base de données + + + %1 [New Database] + Database tab name modifier + %1 [nouvelle base de données] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Téléchargement… + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2450,10 +2873,6 @@ Désactiver les enregistrements sécurisés et réessayer? n/a s.o. - - (encrypted) - (chiffrée) - Select private key Sélectionner un fichier clé @@ -2536,21 +2955,25 @@ Would you like to correct it? Hide Cacher + + %n hour(s) + %n heure%n heures%n heures + %n week(s) - %n semaine%n semaine(s) + %n semaine%n semaine(s)%n semaine(s) %n month(s) - %n mois%n mois + %n mois%n mois%n mois %n year(s) - % an%n an(s) + % an%n an(s)%n an(s) - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2670,10 +3093,20 @@ Would you like to correct it? Add new window association Ajouter une nouvelle association de fenêtre + + + + Add item + + + Remove selected window association Supprimer l’association de fenêtre sélectionnée + + - + Remove item + - + Window title: Titre de la fenêtre : @@ -2698,23 +3131,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Séquence personnalisée de saisie automatique pour cette fenêtre - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Ces paramètres affectent le comportement de l’entrée avec l’extension pour navigateurs. - General Général @@ -2727,26 +3146,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Ignorer l’envoi automatique pour cette entrée - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - N’envoyer ce paramètre au navigateur que pour les boîtes de dialogue d’authentification HTTP. Si cette option est activée, cette entrée ne sera pas présentée par les formulaires d’authentification normaux comme possibilité de sélection. - Use this entry only with HTTP Basic Auth N’utiliser cette entrée qu’avec l’authentification HTTP Basic - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Ne pas envoyer ce paramètre au navigateur pour les boîtes de dialogue d’authentification HTTP. Si cette option est activée, cette entrée ne sera pas présentée comme possibilité de sélection par les boîtes de dialogue d’authentification HTTP. - Do not use this entry with HTTP Basic Auth Ne pas utiliser cette entrée avec l’authentification HTTP Basic - - Additional URL's - URL supplémentaires - Add Ajouter @@ -2759,6 +3166,22 @@ Would you like to correct it? Edit Modifier + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2809,22 +3232,10 @@ Would you like to correct it? Notes field Champ de note - - Toggle the checkbox to reveal the notes section. - Cochez la case pour révéler la section des notes. - Username field Champ de nom d’utilisateur - - Toggle notes visible - Activer ou désactiver la visibilité des notes - - - Notes: - Notes : - Expiration field Champ d’expiration @@ -2841,14 +3252,6 @@ Would you like to correct it? Presets Préréglages - - Password: - Mot de passe : - - - URL: - URL : - Url field Champ d’URL @@ -2857,18 +3260,10 @@ Would you like to correct it? Download favicon for URL Télécharger une favoricône pour l’URL - - Title: - Titre : - Title field Champ de titre - - Username: - Nom d’utilisateur : - Password field Champ de mot de passe @@ -2878,15 +3273,39 @@ Would you like to correct it? Activer ou désactiver l’expiration - Expires: - Expire le : + Tags list + Liste d’étiquettes - Tags: + &Username: - Tags list + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2928,19 +3347,6 @@ Would you like to correct it? Private key Clé privée - - External file - Fichier externe - - - Browser for key file - Rechercher un fichier clé - - - Browse… - Button for opening file dialog - Parcourir... - Attachment Fichier joint @@ -2957,6 +3363,23 @@ Would you like to correct it? Remove from agent Retirer de l’agent + + External file + Fichier externe + + + Browser for key file + Rechercher un fichier clé + + + Browse… + Button for opening file dialog + Parcourir... + + + Generate + Générer + Select attachment file Sélectionner une fichier joint @@ -2981,6 +3404,10 @@ Would you like to correct it? seconds secondes + + Clear agent + + EditGroupWidget @@ -2992,10 +3419,6 @@ Would you like to correct it? Icon Icône - - Browser Integration - Intégration aux navigateurs - Properties Propriétés @@ -3012,6 +3435,10 @@ Would you like to correct it? Group has unsaved changes + + Browser Integration + Intégration aux navigateurs + Enable Activer @@ -3027,10 +3454,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Modifier le groupe - These settings affect to the group's behaviour with the browser extension. @@ -3067,6 +3490,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + Ignorer le sous-domaine WWW dans la correspondance: + + + Omit WWW subdomain from matching toggle for this and sub groups + Ne pas utiliser l'authentification HTTP standard pour ce groupe et ses sous-groupes + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3252,15 +3691,15 @@ Supported extensions are: %1. Choose icon… - + Choisir une icône... Set the URL to use to search for a favicon - + Définir l'URL à utiliser pour chercher une favicône Favicon URL - + URL de la favicône Download favicon for URL @@ -3276,7 +3715,7 @@ Supported extensions are: %1. Apply icon to… - + Appliquer l'icône à... Apply to this group only @@ -3298,10 +3737,6 @@ Supported extensions are: %1. Unable to fetch favicon. Impossible de récupérer la favoricône - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans Outils > Paramètres > Sécurité - Existing icon selected. L’icône existante a été sélectionnée. @@ -3320,7 +3755,7 @@ Supported extensions are: %1. Successfully loaded %1 of %n icon(s) - %1 icône d’un total de %n a été chargée avec succès%1 icône(s) d’un total de %n ont été chargées avec succès + %1 icône d’un total de %n a été chargée avec succès%1 icône(s) d’un total de %n ont été chargées avec succès%1 icône(s) d’un total de %n ont été chargées avec succès No icons were loaded @@ -3328,11 +3763,15 @@ Supported extensions are: %1. %n icon(s) already exist in the database - %n icône existe déjà dans la base de données%n icônes existent déjà dans la base de données + %n icône existe déjà dans la base de données%n icônes existent déjà dans la base de données%n icônes existent déjà dans la base de données The following icon(s) failed: - Échec de l’icône suivante :Échec des icônes suivantes : + Échec de l’icône suivante :Échec des icônes suivantes :Échec des icônes suivantes : + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + @@ -3409,11 +3848,44 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 – Cloner + + Passkey + + + + Invalid conversion type: %1 + Type de conversion invalide : %1 + + + Invalid conversion syntax: %1 + Syntaxe de conversion invalide : %1 + + + Invalid regular expression syntax %1 +%2 + Syntaxe d'expression régulière invalide %1 +%2 + EntryAttachments Cannot open file "%1" + Impossible d’ouvrir le fichier "%1" + + + + EntryAttachmentsDialog + + Form + Formulaire + + + File name + + + + File contents... @@ -3454,14 +3926,6 @@ This may cause the affected plugins to malfunction. Remove Supprimer - - Rename selected attachment - - - - Rename - - Open selected attachment Ouvrir le fichier joint sélectionné @@ -3488,7 +3952,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to remove %n attachment(s)? - Voulez-vous vraiment supprimer %n fichier joint ?Voulez-vous vraiment supprimer %n fichier(s) joint(s)? + Voulez-vous vraiment supprimer %n fichier joint ?Voulez-vous vraiment supprimer %n fichier(s) joint(s)?Voulez-vous vraiment supprimer %n fichier(s) joint(s)? Save attachments @@ -3531,16 +3995,12 @@ This may cause the affected plugins to malfunction. %1 Impossible d’ouvrir le fichier : %1Impossible d’ouvrir les fichiers : +%1Impossible d’ouvrir les fichiers : %1 Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + Confirmer l’écrasement du fichier joint Confirm Attachment @@ -3574,6 +4034,23 @@ Do you want to save the changes to your database? Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + + New + + + + Preview + Aperçu + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3594,7 +4071,7 @@ Error: %1 Age - + Âge Difference @@ -3768,6 +4245,14 @@ Error: %1 Has TOTP A un TOTP + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3788,8 +4273,8 @@ Error: %1 Mot de passe - Notes - Notes + URL + URL Expiration @@ -3801,15 +4286,15 @@ Error: %1 Tags list - + Liste d’étiquettes Username Nom d’utilisateur - URL - URL + Notes + Notes Advanced @@ -3859,6 +4344,10 @@ Error: %1 Never Jamais + + Double click to copy value + + Enabled Activé @@ -3867,6 +4356,10 @@ Error: %1 Disabled Désactivé + + Double click to copy to clipboard + + EntryURLModel @@ -3874,6 +4367,10 @@ Error: %1 Invalid URL L’URL est invalide + + Duplicate URL + + EntryView @@ -3889,6 +4386,10 @@ Error: %1 Reset to defaults Réinitialiser aux valeurs par défaut + + + %1 entry(s)... + + ExportDialog @@ -3908,15 +4409,15 @@ This will leave your passwords and sensitive information vulnerable! database order - + ordre de la base de données name (ascending) - + nom (croissant) name (descending) - + nom (décroissant) unknown @@ -3997,7 +4498,7 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - %n entrée était utilisée par %1%n entrées étaient utilisées par %1 + %n entrée était utilisée par %1%n entrées étaient utilisées par %1%n entrées étaient utilisées par %1 @@ -4008,7 +4509,7 @@ This will leave your passwords and sensitive information vulnerable! Non-existing/inaccessible executable path. Please double-check the client is legit. - + Chemin d’exécutable inexistant ou inaccessible. Veuillez vérifier s'il s'agit réellement d'un client de confiance. @@ -4085,11 +4586,11 @@ Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans la se Please wait, processing entry list… - + Veuillez patienter, traitement de la liste des entrées... Downloading… - + Téléchargement... Ok @@ -4105,6 +4606,193 @@ Vous pouvez activer le service d’icônes de sites Web de DuckDuckGo dans la se Downloading favicons (%1/%2)… + Téléchargement des favicons (%1/%2)... + + + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + Page d’aide + + + Entry count: %1 + + + + Group + Groupe + + + Title + Titre + + + Username + Nom d’utilisateur + + + Password + Mot de passe + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Formulaire + + + Import File Selection + + + + Password: + Mot de passe : + + + Key File: + Fichier clé : + + + Browse… + Parcourir... + + + Import Into: + + + + New Database + Nouvelle base de données + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Ouvrir OPVault + + + Select import file + + + + All files + Tous les fichiers + + + Key files + Fichiers clés + + + Select key file + Sélectionner un fichier clé + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) @@ -4539,17 +5227,6 @@ Ligne %2, colonne %3 Échec d’ouverture de la clé privée - - KeePass1OpenWidget - - Import KeePass1 Database - Importer une base de données KeePass 1 - - - Unable to open the database. - Impossible d’ouvrir la base de données. - - KeePass1Reader @@ -4832,7 +5509,7 @@ Message : %2 Key File set, click to change or remove - + Fichier clé défini, cliquez pour le changer ou l'effacer <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> @@ -4906,10 +5583,6 @@ Voulez-vous vraiment poursuivre avec ce fichier? &Recent Databases Bases de données &récentes - - &Import - &Importer - &Export &Exporter @@ -4930,6 +5603,10 @@ Voulez-vous vraiment poursuivre avec ce fichier? TOTP TOTP + + Tags + + &Groups &Groupes @@ -4974,34 +5651,18 @@ Voulez-vous vraiment poursuivre avec ce fichier? &New Database… &Nouvelle base de données… - - Create a new database - Créer une nouvelle base de données - &Merge From Database… Fusio&nner à partir d’une base de données… - - Merge from another KDBX database - Fusionner d’une autre base de données KDBX - &New Entry… &Nouvelle entrée… - - Add a new entry - Ajouter une nouvelle entrée - &Edit Entry… &Modifier l’entrée… - - View or edit entry - Voir ou modifier l’entrée - &Delete Entry… &Supprimer l’entrée… @@ -5010,10 +5671,6 @@ Voulez-vous vraiment poursuivre avec ce fichier? &New Group… &Nouveau groupe… - - Add a new group - Ajouter un nouveau groupe - &Edit Group… &Modifier le groupe… @@ -5046,18 +5703,10 @@ Voulez-vous vraiment poursuivre avec ce fichier? Database &Reports… - - Statistics, health check, etc. - Statistiques, bilan de santé, etc. - &Database Settings… &Paramètres de la base de données… - - Database settings - Paramètres de la base de données - &Clone Entry… &Cloner l’entrée… @@ -5066,34 +5715,18 @@ Voulez-vous vraiment poursuivre avec ce fichier? Move u&p Déplacer vers le &haut - - Move entry one step up - Déplacer l’entrée d’un niveau vers le haut - Move do&wn Déplacer vers le &bas - - Move entry one step down - Déplacer l’entrée d’un niveau vers le bas - Copy &Username Copier le nom d’&utilisateur - - Copy username to clipboard - Copier le nom d’utilisateur dans le presse-papiers - Copy &Password Copier le mot de &passe - - Copy password to clipboard - Copier le mot de passe dans le presse-papiers - &Settings &Paramètres @@ -5127,25 +5760,13 @@ Voulez-vous vraiment poursuivre avec ce fichier? &Titre - Copy title to clipboard - Copier le titre dans le presse-papiers - - - &URL - &URL - - - Copy URL to clipboard - Copier l’URL dans le presse-papiers + Copy &URL + &Notes &Notes - - Copy notes to clipboard - Copier les notes dans le presse-papiers - &CSV File… Fichier &CSV… @@ -5158,26 +5779,14 @@ Voulez-vous vraiment poursuivre avec ce fichier? KeePass 1 Database… Base de données KeePass 1… - - Import a KeePass 1 database - Importer une base de données KeePass 1 - 1Password Vault… Coffre 1Password… - - Import a 1Password Vault - Importer un coffre 1Password - CSV File… Fichier CSV… - - Import a CSV file - Importer un fichier CSV - Show TOTP Afficher le TOTP @@ -5194,6 +5803,10 @@ Voulez-vous vraiment poursuivre avec ce fichier? Copy &TOTP Copier le &TOTP + + Copy Password and TOTP + + E&mpty recycle bin &Vider la corbeille @@ -5218,10 +5831,6 @@ Voulez-vous vraiment poursuivre avec ce fichier? &Online Help &Aide en ligne - - Go to online documentation - Accéder à la documentation en ligne - &User Guide Guide d’&utilisation @@ -5266,6 +5875,10 @@ Voulez-vous vraiment poursuivre avec ce fichier? Classic (Platform-native) Classique (de la plateforme) + + Show Menubar + + Show Toolbar Afficher la barre d’outils @@ -5290,6 +5903,10 @@ Voulez-vous vraiment poursuivre avec ce fichier? Clone Group... Cloner le groupe... + + &XML File… + + Clear history Effacer l’historique @@ -5314,13 +5931,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. + No Tags Restore Entry(s) - + Settings @@ -5346,9 +5962,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Fermer KeePassXC + + %1 Entry(s) + + Please present or touch your YubiKey to continue… - + Veuillez présenter ou toucher votre YubiKey pour continuer… Restart Application? @@ -5358,6 +5978,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Pour appliquer ce paramètre, vous devez redémarrer l’application. Voulez-vous la démarrer maintenant ? + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Modifier l’entrée + + + Delete Entry + + + + Create Group + + + + Edit Group + Modifier le groupe + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Copier le nom d’utilisateur + + + Copy Password + Copier le mot de passe + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Importer une base de données KeePass 1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5394,7 +6322,7 @@ We recommend you use the AppImage available on our downloads page. Reset - + Réinitialiser Reset any remembered decisions for this application @@ -5415,26 +6343,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Remplacement de %1 [%2] - - older entry merged from database "%1" - ancienne entrée fusionnée de la base de données « %1 » - - - Adding backup for older target %1 [%2] - Ajout d’une sauvegarde pour l’ancienne cible %1 [%2] - - - Adding backup for older source %1 [%2] - Ajout d’une sauvegarde pour l’ancienne source %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Ré-application de l’ancienne entrée cible sur la nouvelle source %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Ré-application de l’ancienne entrée source sur la nouvelle cible %1 [%2] - Synchronizing from newer source %1 [%2] Synchronisation avec une source plus récente %1 [%2] @@ -5494,14 +6402,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Vous pouvez régler ici les paramètres de chiffrement de la base de données. Ne vous inquiétez pas, vous pourrez les changer ultérieurement dans les paramètres de la base de données. - - Advanced Settings - Paramètres avancés - - - Simple Settings - Paramètres simples - NewDatabaseWizardPageDatabaseKey @@ -5536,6 +6436,25 @@ We recommend you use the AppImage available on our downloads page. Veuillez saisir le nom d’affichage et une description facultative pour votre nouvelle base de données : + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5582,15 +6501,6 @@ We recommend you use the AppImage available on our downloads page. %1 octets de texte en clair étaient attendus, %2 ont été trouvés - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - La base de données lue n’a généré aucune instance -%1 - - OpVaultReader @@ -5664,6 +6574,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Chiffrement inconnu : %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key Une phrase de passe est exigée pour déchiffrer cette clé @@ -5728,28 +6642,180 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Fin de fichier inattendue lors de l’écriture de la clé privée + + (encrypted) + (chiffrée) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Les mots de passe ne correspondent pas + SSH Key Generator + - Passwords match so far - Les mots de passe correspondent jusqu’à présent + Type + Type - Toggle Password (%1) - Activer ou désactiver le mot de passe (%1) + Bits + - Generate Password (%1) - Générer un mot de passe (%1) + Comment + Commentaire + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - Avertissement: Les majuscules sont verrouillées + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Annuler + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + Groupe + + + Database + + + + Import Passkey + + + + Import + Importer + + + Cancel + Annuler + + + Entry + Entrée + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Tous les fichiers + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5930,10 +6996,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Choisir aussi parmi : - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - - Exclude look-alike characters Exclure les caractères qui se ressemblent @@ -5958,25 +7020,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: Nombre de mots : - - Character Count: - - Word Case: Casse des mots : Delete selected wordlist - + Supprimer la liste de mots personnalisés Add custom wordlist - - - - character - + Ajouter une liste de mots personnalisés Close @@ -6014,51 +7068,6 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropie : %1 bits - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - Tous les fichiers - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - Logogrammes - - - Special Characters - Caractères spéciaux - Password Quality: %1 Qualité du mot de passe : %1 @@ -6083,6 +7092,118 @@ Do you want to overwrite it? Password quality Excellent + + Confirm Delete Wordlist + + + + Do you really want to delete the wordlist "%1"? + + + + Failed to delete wordlist + + + + Wordlists + + + + All files + Tous les fichiers + + + Select Custom Wordlist + Sélectionner la liste de mots personnalisés + + + Overwrite Wordlist? + + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + + + + Failed to add wordlist + + + + Logograms + Logogrammes + + + Special Characters + Caractères spéciaux + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Les mots de passe ne correspondent pas + + + Passwords match so far + Les mots de passe correspondent jusqu’à présent + + + Toggle Password (%1) + Activer ou désactiver le mot de passe (%1) + + + Generate Password (%1) + Générer un mot de passe (%1) + + + Warning: Caps Lock enabled! + Avertissement: Les majuscules sont verrouillées + + + Quality: %1 + + + + Poor + Password quality + Plutôt mauvais + + + Weak + Password quality + Faible + + + Good + Password quality + Bon + + + Excellent + Password quality + Excellent + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6099,6 +7220,21 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6137,6 +7273,10 @@ Do you want to overwrite it? Continue Poursuivre + + Continue with weak password + + QObject @@ -6334,7 +7474,7 @@ Do you want to overwrite it? Password for '%1' has been leaked %2 time(s)! - Le mot de passe pour « %1 » a été divulgué %2 foisLe mot de passe pour « %1 » a été divulgué %2 fois! + Le mot de passe pour « %1 » a été divulgué %2 foisLe mot de passe pour « %1 » a été divulgué %2 fois!Le mot de passe pour « %1 » a été divulgué %2 fois! Password for '%1' has been leaked! @@ -6484,7 +7624,7 @@ Do you want to overwrite it? Clearing the clipboard in %1 second(s)... - Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes… + Effacement du presse-papiers dans %1 seconde…Effacement du presse-papiers dans %1 secondes…Effacement du presse-papiers dans %1 secondes… Clipboard cleared! @@ -6530,6 +7670,10 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + Chemin de la base de données. + Target decryption time in MS for the database. Durée de déchiffrement cible en millisecondes pour la base de données. @@ -6550,10 +7694,6 @@ Do you want to overwrite it? Create a new database. Créer un nouvelle base de données. - - Path of the database. - Chemin de la base de données. - Invalid decryption time %1. La durée de déchiffrement est invalide : %1. @@ -6598,6 +7738,158 @@ Do you want to overwrite it? Successfully created new database. La nouvelle base de données a été créée avec succès. + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + Ouvre une base de données. + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + Impossible de changer la clé de la base de données. + + + Database was not modified. + La base de données n'a pas été modifiée. + + + Writing the database failed: %1 + Échec d’écriture de la base de données : %1 + + + Successfully edited the database. + La base de données a été éditée avec succès. + + + Cannot remove password: The database does not have a password. + Impossible de supprimer le mot de passe: la base de données n’a pas de mot de passe. + + + Cannot remove file key: The database does not have a file key. + Impossible de supprimer la clé de fichier: la base de données n’a pas de clé de fichier. + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + Afficher les renseignements d’une base de données. + + + UUID: + UUID : + + + Name: + Nom : + + + Description: + Description : + + + Cipher: + Chiffrement : + + + KDF: + Fonction de dérivation de clé : + + + Recycle bin is enabled. + La corbeille est activée. + + + Recycle bin is not enabled. + La corbeille est désactivée. + + + Location + Emplacement + + + Database created + + + + Last saved + Dernier enregistrement + + + Unsaved changes + Changements non enregistrés + + + yes + oui + + + no + non + + + Number of groups + Nombre de groupes + + + Number of entries + Nombre d’entrées + + + Number of expired entries + Nombre d’entrées expirées + + + Unique passwords + Mots de passes uniques + + + Non-unique passwords + Mots de passe non uniques + + + Maximum password reuse + Maximum de réutilisations des mots de passe + + + Number of short passwords + Nombre de mots de passe courts + + + Number of weak passwords + Nombre de mots de passe faibles + + + Entries excluded from reports + Entrées exclues des rapports + + + Average password length + Longueur moyenne des mots de passe + + + %1 characters + %1 caractères + Word count for the diceware passphrase. Nombre de mots de la phrase de passe générée avec la méthode du lancer de dés. @@ -6621,10 +7913,6 @@ Do you want to overwrite it? Invalid word count %1 Le nombre de mots %1 est invalide - - The word list is too small (< 1000 items) - La liste de mots est trop courte (moins de 1 000 articles) - Title for the entry. Titre de l’entrée. @@ -6649,10 +7937,6 @@ Do you want to overwrite it? Enter new password for entry: Saisir le nouveau mot de passe pour l’entrée : - - Writing the database failed: %1 - Échec d’écriture de la base de données : %1 - Successfully edited entry %1. L’entrée %1 a été modifiée avec succès. @@ -6773,10 +8057,6 @@ Do you want to overwrite it? Exit interactive mode. Quitter le mode interactif. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format à utiliser lors de l’exportation. Les choix proposés sont « xml » ou « csv ». La valeur par défaut est « xml ». - Exports the content of a database to standard output in the specified format. Exporte au format indiqué le contenu de la base de données vers la sortie standard. @@ -6877,106 +8157,6 @@ Do you want to overwrite it? Successfully imported database. La base de données a été importée avec succès. - - Show a database's information. - Afficher les renseignements d’une base de données. - - - UUID: - UUID : - - - Name: - Nom : - - - Description: - Description : - - - Cipher: - Chiffrement : - - - KDF: - Fonction de dérivation de clé : - - - Recycle bin is enabled. - La corbeille est activée. - - - Recycle bin is not enabled. - La corbeille est désactivée. - - - Location - Emplacement - - - Database created - - - - Last saved - Dernier enregistrement - - - Unsaved changes - Changements non enregistrés - - - yes - oui - - - no - non - - - Number of groups - Nombre de groupes - - - Number of entries - Nombre d’entrées - - - Number of expired entries - Nombre d’entrées expirées - - - Unique passwords - Mots de passes uniques - - - Non-unique passwords - Mots de passe non uniques - - - Maximum password reuse - Maximum de réutilisations des mots de passe - - - Number of short passwords - Nombre de mots de passe courts - - - Number of weak passwords - Nombre de mots de passe faibles - - - Entries excluded from reports - Entrées exclues des rapports - - - Average password length - Longueur moyenne des mots de passe - - - %1 characters - %1 caractères - Unknown command %1 La commande %1 est inconnue @@ -7149,6 +8329,10 @@ Commandes proposées : Show the protected attributes in clear text. Afficher en clair les attributs protégés. + + Show all the attributes of the entry. + + Show the attachments of the entry. @@ -7218,6 +8402,10 @@ Veuillez envisager de générer un nouveau fichier clé. Invalid YubiKey serial %1 Le numéro de série Yubikey %1 est invalide + + Please present or touch your YubiKey to continue. + + Enter password to encrypt database (optional): Saisissez un mot de passe pour chiffrer la base de données (facultatif) : @@ -7290,7 +8478,7 @@ Veuillez envisager de générer un nouveau fichier clé. Password is used %1 time(s) - + Password has expired @@ -7310,7 +8498,7 @@ Veuillez envisager de générer un nouveau fichier clé. Password expires in %1 day(s) - + Password will expire soon @@ -7382,30 +8570,30 @@ Noyau : %3 %4 over %1 year(s) - + about %1 month(s) - + %1 week(s) - + %1 semaine%1 semaines%1 semaines %1 day(s) - + %1 jour%1 jours%1 jours %1 hour(s) - + %1 heure%1 heures%1 heures %1 minute(s) - + %1 minute%1 minutes%1 minutes - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7434,7 +8622,7 @@ Noyau : %3 %4 Cannot process 0 length data. - + Impossible de traiter des données de taille 0. unknown executable (DBus address %1) @@ -7456,18 +8644,6 @@ Noyau : %3 %4 file empty fichier vide - - malformed string - chaîne mal formée - - - missing closing quote - Le guillemet fermant manque - - - %1: (row, col) %2,%3 - %1 : (ligne, colonne) %2, %3 - AES 256-bit AES 256 bits @@ -7506,7 +8682,7 @@ Noyau : %3 %4 Clearing the clipboard in %1 second(s)… - Effacement du Presse-papiers en %1 seconde(s)...Effacement du Presse-papiers dans %1 seconde(s)... + Effacement du Presse-papiers en %1 seconde(s)...Effacement du Presse-papiers dans %1 seconde(s)...Effacement du Presse-papiers dans %1 seconde(s)... Group @@ -7547,12 +8723,12 @@ Noyau : %3 %4 %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? @@ -7560,11 +8736,11 @@ Noyau : %3 %4 Do you really want to delete %n entry(s) for good? - + Delete entry(s)? - + Do you really want to move entry "%1" to the recycle bin? @@ -7572,11 +8748,11 @@ Noyau : %3 %4 Do you really want to move %n entry(s) to the recycle bin? - + Move entry(s) to recycle bin? - + Replace references to entry? @@ -7584,7 +8760,7 @@ Noyau : %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - + User name @@ -7646,14 +8822,6 @@ Noyau : %3 %4 read password of the database from stdin lire le mot de passe de la base de données sur l’entrée standard - - allow app screen recordering and screenshots - - - - Locked databases. - Bases de données verrouillées. - Database failed to lock. La base de données n’a pas pu se verrouiller. @@ -7662,6 +8830,10 @@ Noyau : %3 %4 Another instance of KeePassXC is already running. Une autre instance de KeePassXC est déjà en cours d’exécution. + + KeePassXC is not running. No open database to lock + + Fatal error while testing the cryptographic functions. Erreur fatale lors de l’évaluation des fonctions cryptographiques. @@ -7670,10 +8842,6 @@ Noyau : %3 %4 KeePassXC - Error KeePassXC – Erreur - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Mot de passe de la base de données : @@ -7697,7 +8865,310 @@ Noyau : %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Supprimer les données de l’extension? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags @@ -7735,35 +9206,54 @@ Noyau : %3 %4 Erreur interne zlib : + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + Double-cliquer sur les entrées pour les modifier. List of entry URLs - + Liste des URL d'entrées Entry has no URLs set - + Cette entrée n'a aucune URL définie Allowed URLs - + URL autorisées Entry has no Browser Integration settings @@ -7771,7 +9261,7 @@ Noyau : %3 %4 Denied URLs - + URL refusées (Excluded) @@ -7783,7 +9273,7 @@ Noyau : %3 %4 Please wait, browser statistics is being calculated… - + Veuillez patienter, les statistiques du navigateur sont en cours de calcul... No entries with a URL, or none has browser extension settings saved. @@ -7807,50 +9297,59 @@ Noyau : %3 %4 Delete Entry(s)… - + Exclude from reports Exclure des rapports + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report + Show expired entries - Also show entries that have been excluded from reports - Afficher aussi les entrées qui ont été exclues des rapports + (Expired) + Hover over reason to show additional details. Double-click entries to edit. Survolez la raison pour afficher des détails supplémentaires. Double-cliquez sur les entrées pour les modifier. - - Bad - Password quality - Mauvais - Bad — password must be changed Mauvais - le mot de passe doit être changé - - Poor - Password quality - Plutôt mauvais - Poor — password should be changed Plutôt mauvais - le mot de passe doit être changé - - Weak - Password quality - Faible - Weak — consider changing the password Faible - envisagez de changer le mot de passe @@ -7893,12 +9392,20 @@ Noyau : %3 %4 Delete Entry(s)… - + Exclude from reports Exclure des rapports + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -7988,12 +9495,83 @@ Noyau : %3 %4 Delete Entry(s)… - + Exclude from reports Exclure des rapports + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Exporter + + + Import + Importer + + + List of entry URLs + Liste des URL d'entrées + + + Title + Titre + + + Path + Chemin + + + Username + Nom d’utilisateur + + + URLs + + + + Edit Entry… + + + + Delete Entry(s)… + + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + Confirmation de l’exportation + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8168,6 +9746,14 @@ Noyau : %3 %4 No agent running, cannot list identities. Aucun agent n’est en cours d’exécution, il est impossible de lister les identités. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8234,6 +9820,10 @@ Noyau : %3 %4 Search Help Chercher dans l’aide + + Save Search + + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8256,7 +9846,7 @@ Noyau : %3 %4 PID - + PID DBus Address @@ -8308,29 +9898,13 @@ Noyau : %3 %4 Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching - + Inviter à déverrouiller la base de données avant de rechercher Exposed database groups: @@ -8352,6 +9926,14 @@ Noyau : %3 %4 Save current changes to activate the plugin and enable editing of this section. Enregistrer les changements actuels pour activer le greffon et permettre la modification de cette section. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8412,14 +9994,14 @@ Noyau : %3 %4 ShareExport Could not write export container. - + Impossible d’écrire dans le conteneur d’exportation. ShareImport Successful import - + Importation réussie @@ -8460,7 +10042,11 @@ Noyau : %3 %4 TagModel - All + Clear Search + Effacer la recherche + + + All Entries @@ -8472,6 +10058,25 @@ Noyau : %3 %4 + + TagView + + Remove Search + Supprimer la recherche + + + Remove Tag + + + + Confirm Remove Tag + Confirmer la suppression de l’étiquette + + + Remove tag "%1" from all entries in this database? + + + TotpDialog @@ -8484,7 +10089,7 @@ Noyau : %3 %4 Expires in <b>%n</b> second(s) - Expire dans <b>%n</b> secondeExpire dans <b>%n</b> seconde(s) + Expire dans <b>%n</b> secondeExpire dans <b>%n</b> seconde(s)Expire dans <b>%n</b> seconde(s) @@ -8531,11 +10136,11 @@ Noyau : %3 %4 Steam® settings - + Paramètres Steam® Custom settings: - + Paramètres personnalisés: Custom Settings @@ -8600,7 +10205,7 @@ Exemple : JBSWY3DPEHPK3PXP Checking for updates… - + Vérification de la présence de mises à jour… Close @@ -8629,26 +10234,6 @@ Exemple : JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Commencez à enregistrer vos mots de passe en toute sécurité dans une base de données KeePassXC - - Create new database - Créer une nouvelle base de données - - - Open existing database - Ouvrir une base de données existante - - - Import from KeePass 1 - Importer de KeePass 1 - - - Import from 1Password - Importer de 1Password - - - Import from CSV - Importer d’un fichier CSV - Recent databases Bases de données récentes @@ -8661,6 +10246,18 @@ Exemple : JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bienvenue sur KeePassXC %1 + + Create Database + + + + Open Database + + + + Import File + + WinUtils @@ -8677,31 +10274,8 @@ Exemple : JBSWY3DPEHPK3PXP - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: @@ -8713,14 +10287,6 @@ Exemple : JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Actualiser les jetons matériels - - - Refresh - Actualiser - Hardware key slot selection Sélection de l’emplacement de la clé matérielle @@ -8735,27 +10301,23 @@ Exemple : JBSWY3DPEHPK3PXP Challenge-Response - + Question-réponse Add Challenge-Response - + Ajouter une question-réponse Change Challenge-Response - + Modifier la question-réponse Remove Challenge-Response - + Supprimer la question-réponse Challenge-Response set, click to change or remove - - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + Question-réponse définie, cliquez pour la modifier ou la supprimer Detecting hardware keys… @@ -8765,28 +10327,25 @@ Exemple : JBSWY3DPEHPK3PXP No hardware keys detected Aucune clé matérielle n’a été détectée - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Un emplacement invalide est indiqué – %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - La clé matérielle est en cours d’utilisation. - Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8797,12 +10356,27 @@ Exemple : JBSWY3DPEHPK3PXP Hardware key was not found or is not configured. - + La clé matérielle n'a pas été trouvée ou n'est pas configurée. Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Appuyer + + + Passive + USB Challenge-Response Key no interaction required + Passive + YubiKeyInterfaceUSB @@ -8810,14 +10384,6 @@ Exemple : JBSWY3DPEHPK3PXP Unknown Inconnu - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8830,11 +10396,7 @@ Exemple : JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - - - Hardware key is currently in use. - La clé matérielle est en cours d’utilisation. + L’interface YubiKey n’a pas été initialisée. Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8846,11 +10408,21 @@ Exemple : JBSWY3DPEHPK3PXP A USB error occurred when accessing the hardware key: %1 - + Une erreur USB est survenue lors de l’accès à la clé matérielle: %1 Failed to complete a challenge-response, the specific error was: %1 Échec de question-réponse, l’erreur particulière était : %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_he.ts b/share/translations/keepassxc_he.ts index 5e7260e2e..7be663b90 100644 --- a/share/translations/keepassxc_he.ts +++ b/share/translations/keepassxc_he.ts @@ -35,7 +35,7 @@ Debug Info - מידע ניפוי תקלים + מידע ניפוי־תקלים Include the following information whenever you report a bug: @@ -80,32 +80,32 @@ Details פרטים + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + ההחלטה שנעשתה תזכר בכל משך פעולתם של הלקוח המבקש ו־ KeePassXC יחד. + Remember - זכירה + לזכור Allow Selected בחירת קובץ ססמה - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - ההחלטה שנעשתה תזכר בכל משך פעולתם של הלקוח המבקש ו־ KeePassXC יחד. - Deny All && Future דחיית הכול וגם בעתיד Allow All && &Future - אפשור הכול וגם בעתיד + איפשור הכול וגם בעתיד AccessControlDialog::DenyButton Deny for this program - דחיה לתכנית זו + דחיה עבור תוכנית זו @@ -116,12 +116,16 @@ Use Pageant - שימוש בפג'יאנט + שימוש בפיג'אנט Use OpenSSH שימוש באופן־אס.אס.איץ' + + Use both agents + שימוש בשני הסוכנים + SSH_AUTH_SOCK override כתיבה על SSH_AUTH_SOCK @@ -150,10 +154,6 @@ SSH Agent connection is working! חיבור סוכן SSH פועל! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security אבטחה + + This setting cannot be enabled when minimize on unlock is enabled. + לא ניתן לאפשר הגדרה זו כאשר האפשרות 'מזעור בעת שיחרור מנעילה' מאופשרת. + Access error for config file %1 שגיאת גישה לקובץ התצורה 1% @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? נא לאתחל את היישום כדי להגדיר את השפה החדשה. האם לאתחל כעת? - - Reset Settings? - אפוס הגדרות? - - - Are you sure you want to reset all general and security settings to default? - האם לאפס את כל הגדרות הכלליות והאבטחה לברירת המחדל? - Select backup storage directory בחירת מחיצת אחסן גיבוי + + Confirm Reset + אישור שיצוב + + + Are you sure you want to reset all settings to default? + האם לשצב את כל ההגדרות לבררת מחדל? + + + Import KeePassXC Settings + ייבוא הגדרות KeePassXC + + + Failed to import settings from %1, not a valid settings file. + ייבוא הגדרות מ־%1 כשל, לא קובץ הגדרות תקין. + + + Export KeePassXC Settings + ייצוא הגדרות KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -238,27 +274,31 @@ Start only a single instance of KeePassXC - אתחול אֶדְגָּם KeePassXC יחיד בלבד + אתחול אדגם KeePassXC יחיד בלבד Automatically launch KeePassXC at system startup - שיגור KeePassXC אוטומטית בעת אתחול המערכת + שיגור KeePassXC אוטומטית בעת איתחול המערכת Minimize window at application startup - מזעור חלון בעת אתחול היישום + מזעור חלון בעת איתחול היישום Minimize window after unlocking database - מזעור חלון לאחר שחרור נעילת מסד הנתונים + מזעור חלון לאחר שחרור נעילת מסד־נתונים Remember previously used databases זכירת מסדי־נתונים ששימשו בעבר + + recent files + קבצים אחרונים + Load previously open databases on startup - טעינת מסדי־נתונים שנפתחו בעבר בעת האתחול + טעינת מסדי־נתונים שנפתחו בעבר בעת האיתחול Remember database key files and security dongles @@ -266,31 +306,12 @@ Check for updates at application startup once per week - בדיקת עדכונים בעת אתחול היישום פעם בשבוע + בדיקת עדכונים בעת איתחול היישום פעם בשבוע Include beta releases when checking for updates הכללת גרסאות בטא בבדיקת עדכונים - - On database unlock, show entries that - על נעילת מסד הנתונים, הצד ערכים ש- - - - have expired - On database unlock, show entries that... - פג־תוקף - - - days - On database unlock, show entries that will expire within %1 days - ימים - - - will expire within - On database unlock, show entries that... - תפוגת תוקף בתוך - File Management ניהול קבצים @@ -309,28 +330,16 @@ Automatically reload the database when modified externally - טעינה חוזרת אוטומטית של מסד הנתונים בהסגלה חיצונית + טעינה חוזרת אוטומטית של מסד־נתונים בהסגלה חיצונית Backup database file before saving - נא לגבות את קובץ מסד הנתונים לפני השמירה - - - Backup destination - יעד גיבוי - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - ציון מיקום קובץ גיבוי מסד הנתונים. מופעים של "{DB_FILENAME}" יוחלפו בשם קובץ מסד הנתונים השמור, ללא הסיומת. {TIME:<format>} יוחלף במועד הגיבוי, למידע נוסף https://doc.qt.io/qt-5/qdatetime.html#toString. ברירת המחדל של <format> היא תבנית המחרוזת "dd_MM_yyyy_hh-mm-ss". + גיבוי קובץ מסד־נתונים לפני שמירה {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - בחירה... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) שימוש בשיטת שמירה חלופית (עשוי לפתור בעיות עם דרופבוקס, גוגל דרייב, GVFS ודומיהם). @@ -402,12 +411,16 @@ (restart program to activate) - (אתחול התוכנית להפעלה) + (איתחול התוכנית להפעלה) Toolbar button style: סגנון סרגל כלים תחתון + + Show passwords in color + הצגת ססמאות בצבע + Use monospaced font for notes שימוש בגופן monospace להערות @@ -446,15 +459,15 @@ Use entry URL to match windows for global Auto-Type - שימוש במען URL מהרשומה כדי להתאים חלונות להקלדה־אוטומטית כללית + שימוש במען URL רשומה להתאמת חלונות להקלדה־אוטומטית כללית Always ask before performing Auto-Type - לשאול תמיד לפני ביצוע הקלדה־אוטומטית + תמיד לשאול לפני ביצוע הקלדה־אוטומטית Hide expired entries from Auto-Type - הסתרת רשומות שפג תוקפם מהקלדה־האוטומטית + הסתרת רשומות שפג תוקפם מהקלדה־אוטומטית Re-lock previously locked database after performing Auto-Type @@ -491,7 +504,72 @@ Remember last typed entry for: - זכירת הרשומה האחרונה שהוקלדה עבור: + זכירת רשומה אחרונה שהוקלדה ל: + + + On database unlock, show entries that will expire within + עם שחרור נעילת מסד־נתונים, להציג ערכים שתוקפם יפוג בתוך + + + On database unlock, show entries that will expire within + עם שחרור נעילת מסד־נתונים, להציג ערכים שתוקפם יפוג בתוך + + + days + number of days warning for password expiration + ימים + + + Destination format: + תסדיר יעד: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + בחירת תיקייה... + + + Show confirmation before moving entries to recycle bin + בקש אישור לפני העברת ערכים לסל המחזור + + + Copy data on double clicking field in entry view + + + + Show toolbar + הצגת סרגל־כלים + + + Show the menu bar by pressing the Alt key + + + + Show menubar + הצגת סרגל תפריט + + + Import settings… + ייבוא הגדרות... + + + Export settings… + ייצוא הגדרות... + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + @@ -536,20 +614,16 @@ Enable database quick unlock (Touch ID / Windows Hello) - אפשר לבטל נעילת מסד נתונים (Touch ID / Windows Hello) + איפשור שחרור נעילת מסד־נתונים מהירה (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed - נעילת מסדי־נתונים כאשר המופע נעול או המכסה סגור + נעילת מסדי־נתונים כאשר השיח נעול או המכסה סגור Lock databases after minimizing the window נעילת מסדי־נתונים לאחר מזעור החלון - - Require password repeat when it is visible - דרוש חזרה על ססמה כאשר היא גלויה - Hide passwords when editing them הסתרת ססמאות בעת עריכתן @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel הסתרת ססמאות בלוחית תצוגת רשומות מקדימה - - Hide entry notes by default - הסתרת הערות רשומה כברירת מחדל - - - Move entries to recycle bin without confirmation - העברת רשומות לסל המחזור ללא אישור - - - Enable double click to copy the username/password entry columns - אפשור הקשה כפולה להעתקת עמודות רשומה שם המשתמש/הססמה - Privacy פרטיות @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons נא להשתמש בשירות DuckDuckGo כדי להוריד סמלי אתרים + + Hide TOTP in the entry preview panel + הסתרת TOTP בלוחית תצוגת רשומות מקדימה + + + Lock databases when switching user + נעילת מסדי־נתונים בהחלפת משתמש + + + Lock Options + אפשרויות נעילה + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ זוהה השהיה ארוכה מאוד, מרבי %1: %2 - Invalid conversion type: %1 - סוג המרה לא תקין: %1 - - - Invalid conversion syntax: %1 - תחביר המרה לא תקין: %1 - - - Invalid regular expression syntax %1 -%2 - תחביר ביטוי רגיל לא תקין %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + לרשומה אין תכונה עבור PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - ניסוין שליחת מפתחות לא תקין. - Sequence aborted: Caps Lock is on הרצף ננטש: אותיות רישיות מופעלות @@ -700,12 +764,16 @@ Unable to get valid keycode for key: לא ניתן לקבל קוד מפתח תקין למפתח: + + Trying to send invalid keyboard symbol. + ניסיון לשלוח סמל מקלדת לא תקין. + AutoTypeSelectDialog Auto-Type - KeePassXC - הקלדה־אוטומטית - KeePassXC + הקלדה־אוטומטית – KeePassXC Double click a row to perform Auto-Type or find an entry using the search: @@ -718,8 +786,8 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>ניתן להשתמש בשאילתות חיפוש מתקדם למציאת כול ערך במסדי הנתונים הפתוחים. קיצורי הדרך הבאים שימושיים:<br/> -Ctrl+F - החלפת חיפוש מסד הנתונים<br/> + <p>ניתן להשתמש בשאילתות חיפוש מתקדם למציאת כל ערך במסדי־נתונים הפתוחים. קיצורי הדרך הבאים שימושיים:<br/> +Ctrl+F - החלפת חיפוש מסד־נתונים<br/> Ctrl+1 - הקלדת שם משתמש<br/> Ctrl+2 - הקלדת סיסמה<br/> Ctrl+3 - הקלדת TOTP<br/> @@ -727,7 +795,7 @@ Ctrl+4 - שימוש במקלדת מדומה (וינדוס בלבד)</p> Search all open databases - חיפוש בכל מסדי הנתונים הפתוחים + חיפוש בכל מסדי־נתונים הפתוחים Search… @@ -794,7 +862,7 @@ Ctrl+4 - שימוש במקלדת מדומה (וינדוס בלבד)</p> Allow Selected - איפשור נבחרים + איפשור פריטים שנבחרו Deny All @@ -804,13 +872,13 @@ Ctrl+4 - שימוש במקלדת מדומה (וינדוס בלבד)</p>Disable for this site השבתת אתר זה + + Undo + ביטול פעולה + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - שמירת רשומה דפדפן־KeePassXC - Ok אישור @@ -823,15 +891,76 @@ Ctrl+4 - שימוש במקלדת מדומה (וינדוס בלבד)</p>You have multiple databases open. Please select the correct database for saving credentials. מספר מסדי־נתונים פתוחים. -נא לבחור במסד הנתונים הנכון לשמירת הרשאות. +נא לבחור במסד־נתונים הנכון לשמירת הרשאות. + + + KeePassXC - Select Database + cבחירת מסד נתונ – KeePass + + + + BrowserPasskeysConfirmationDialog + + Cancel + ביטול + + + Update + עדכון + + + Authenticate + אימות + + + Register new + להרשם כעת + + + Register + רישום + + + Timeout in <b>%n</b> seconds... + פסק זמן בתוך שניה <b>%n</b>...פסק זמן בתוך <b>%n</b> שניות...פסק זמן בתוך <b>%n</b> שניות... + + + Relying Party: %1 + צד סומך: %1 + + + Username: %1 + שם משתמש: %1 + + + KeePassXC - Passkey credentials + נתוני אמנה Passkey - KeePassXC + + + Add to existing entry + הוספה לרשומה קיימת + + + Existing passkey found. +Do you want to register a new passkey for: + נמצאו Passkey קיימים. +האם לרשום Passkey חדש עבור: + + + Select the existing passkey and press Update to replace it. + בחירת ה־Passkey הקיים ולחיצה על עדכון כדי להחליפו. + + + Authenticate passkey credentials for: + אימות נתוני אמנת Passkey עבור: + + + Do you want to register a passkey for: + האם לרשום Passkey עבור: BrowserService - - KeePassXC: Create a new group - KeePassXC: יצירת קבוצה חדשה - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,17 +969,13 @@ Do you want to create this group? האם ליצור קבוצה זו? - - KeePassXC: New key association request - KeePassXC: בקשת שיוך מפתח חדש - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - התקבלה בקשת שיוך מסד הנתונים הבא: + התקבלה בקשת שיוך מסד־נתונים הבא: %1 נא לתת לחיבור שם או מזהה ייחודיים, לדוגמה: @@ -860,27 +985,15 @@ chrome-laptop. Save and allow access שמירה ואיפשור גישה - - KeePassXC: Overwrite existing key? - KeePassXC: כתיבה־על מפתח קיים? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? קיים כבר מפתח הצפנה משותף בשם '%1'. האם כתיבה־עליו? - - KeePassXC: Update Entry - KeePassXC: עדכון רשומה - Do you want to update the information in %1 - %2? האם לעדכן את המידע ב־%1 - %2? - - KeePassXC: Delete entry - KeePassXC: מחיקת רשומה - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -890,49 +1003,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - המרת תכונות לנתונים מותאמים אישית ... + %1 (Passkey) + %1 (Passkey) - Abort - נטישה + KeePassXC - Create a new group + KeePassXC – יצירת קוצה חדשה - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: תכונות המרת KeePassHTTP + Disable + מושבת - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - התכונות הומרו בהצלחה מ־%1 רשומה(ות). הועברו %2 מפתחות לנתונים מותאמים אישית. - - - Successfully moved %n keys to custom data. - מפתח %n הועבר בהצלחה לנתונים מותאמים אישית.%n מפתחות הועברו בהצלחה לנתונים מותאמים אישית.%n מפתחות הועברו בהצלחה לנתונים מותאמים אישית.%n מפתחות הועברו בהצלחה לנתונים מותאמים אישית. + KeePassXC - Overwrite existing key? + KeePassXC – לכתוב על מפתח קיים? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: לא נמצאה רשומה עם תכונות KeePassHTTP! + KeePassXC - Update Entry + KeePassXC – עדכון רשומה - The active database does not contain an entry with KeePassHTTP attributes. - מסד הנתונים הפעיל לא מכיל רשומה עם תכונות KeePassHTTP. + KeePassXC - Delete entry + KeePassXC – מחיקת רשומה - Don't show this warning again - לא להציג הזהרה זו שוב + KeePassXC - New key association request + KeePassXC – בקשת שיוך מפתח חדש - KeePassXC: Legacy browser integration settings detected - KeePassXC: זוהו הגדרות שילוב דפדפן מדור קודם + Passkey + Passkey - 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־Browser להגדרות מסד הנתונים. -פעולה זו נחוצה כדי לשמור על חיבורי הדפדפן הנוכחיים. -האם להעביר את ההגדרות הקיימות כעת? + KeePassXC - Passkey credentials + נתוני אמנה Passkey - KeePassXC + + + Register a new passkey to this entry: + רישום Passkey חדש לרשומה זו: + + + KeePassXC - Update passkey + KeePassXC – עדכון Passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + קיים כבר Passkey לרשומה. +האם לכתוב על ה־Passkey ב־%1 - %2? + + + Register + רישום @@ -943,7 +1065,7 @@ Would you like to migrate your existing settings now? This is required for accessing your databases with KeePassXC-Browser - נדרש לגישה למסדי הנתונים באמצעות דפדפן-KeePassXC + נדרש על מנת לאפשר לדפדפן־KeePassXC גישה למסדי־נתונים שלך Enable browser integration @@ -953,10 +1075,6 @@ Would you like to migrate your existing settings now? General כללי - - Browsers installed as snaps are currently not supported. - דפדפנים המותקנים כ־snaps לא נתמכים כעת. - Enable integration for these browsers: איפשור שילוב עם דפדפנים אלה: @@ -996,7 +1114,7 @@ Would you like to migrate your existing settings now? Request to unlock the database if it is locked - בקשת שחרר נעילת מסד הנתונים אם הוא נעול + בקשת שחרר נעילת מסד־נתונים אם הוא נעול Only entries with the same scheme (http://, https://, …) are returned. @@ -1024,12 +1142,12 @@ Would you like to migrate your existing settings now? All databases connected to the extension will return matching credentials. - כל מסדי הנתונים המחוברים להרחבה יחזירו אישורים תואמים. + כל מסדי־נתונים המחוברים להרחבה יחזירו אישורים תואמים. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - חפוש הרשאות בכל מסדי הנתונים הפתוחים + חפוש הרשאות בכל מסדי־נתונים הפתוחים Advanced @@ -1038,12 +1156,12 @@ Would you like to migrate your existing settings now? Never ask before accessing credentials Credentials mean login data requested via browser extension - לא לשאול לעולם לפני הגישה לאישורים + לעולם לא לשאול לפני גישה לאישורים Never ask before updating credentials Credentials mean login data requested via browser extension - לא לשאול לעולם לפני עדכון אישורים + לעולם לא לשאול לפני עדכון אישורים Do not ask permission for HTTP Basic Auth @@ -1068,11 +1186,11 @@ Would you like to migrate your existing settings now? Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - עדכון הנתיב הבינארי KeePassXC או keepassxc־proxy בינאריים באופן אוטומטי לתסריטים להודעות מקוריות בעת האתחול. + עדכון הנתיב הבינארי KeePassXC או keepassxc־proxy בינאריים באופן אוטומטי לתסריטים להודעות מקוריות בעת האיתחול. Update native messaging manifest files at startup - עדכון קבצי מניפסט להודעות מקוריות בעת האתחול + עדכון קבצי מניפסט להודעות מקוריות בעת האיתחול Use a custom proxy location if you installed a proxy manually. @@ -1128,26 +1246,6 @@ Would you like to migrate your existing settings now? Custom extension ID מזהה הרחבה מותאם אישית - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - עקב ארגז־חול Snap, יש להריץ תסריט בכדי לאפשר שילוב דפדפן. <br /> ניתן להפיק את התסריט מ־%1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - על מנת ששילוב הדפדפן יעבוד, נדרשKeePassXC־Browser <br /> ניתן להורד אותו ל־%1 ו־%2 ו־%3. %4 - - - Please see special instructions for browser extension use below - נא לעיין בהוראות מיוחדות לשימוש בהרחבת הדפדפן להלן - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>שגיאה:</b> מיקום השָׁרָת המְתַוֵּךְ המותאם אישית לא נמצא!<br/>שילוב הדפדפן לא יפעל ללא יישום שָׁרָת מְתַוֵּךְ. - - - <b>Warning:</b> The following options can be dangerous! - <b> אזהרה: </b> האפשרויות הבאות עלולות להיות מסוכנות! - Executable Files קבצי הפעלה @@ -1164,6 +1262,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location בחירת מיקום תיקיית מארח שרות הודעות מובנה + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + לאפשר למתווך KeePassXC להציג רשית כל הרשומות עם הכותרות שלהן, מעני URI ו־UUID ממסד־הנתונים המקושר. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + לאפשר גישה מוגבלת לכל הרשומות ממסד־הנתונים המקושר (להתעלם ממגבלות גישה לאתרים) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>אזהרה:</b> לכוונן הגדרות אלו בלבד ככוש שנדרש. + + + The custom proxy location does not exist. + מיקום מתווך מותאם אישית לא קיים. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>שגיאה:</b> מיקום המתווך המותאם אישית לא קיים. נא לתקן זאת בלשונית הגדרות מתקדמות. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>שגיאה:</b> המתווך הבציע המותקן חסר במיקום הצפוי: %1<br/> נא לקבוע מיקום מתווך מותאם אישית בהגדרות מתקדמות או להתקין מחדש את היישום. + + + Allows using insecure http://localhost with passkeys for testing purposes. + אפשור שימוש ב־http://localhost לא מאובטח למטרות בדיקה. + + + Allow using localhost with passkeys + אפשור שימוש ב־localhost עם passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + דפדפן – KeePassXC נדרש כדי שתכלול דפדפן יפעל. <br /> ניתן להורידו עבור %1 ו־%2 ו־%3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1186,14 +1324,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - ייבוא שדות CSV - - - filename - שם קובץ - size, rows, columns גודל, שורות, עמודות @@ -1302,51 +1432,44 @@ Would you like to migrate your existing settings now? Column %1 עמודה %1 - - Imported from CSV file - יובא מקובץ CSV - - - Original data: - מידע מקורי: - - - Error(s) detected in CSV file! - זוהו בקובץ CSV שגיאות! - [%n more message(s) skipped] - [דילוג על הודעה נוספת %n][דילוג על %n הודעות נוספות][דילוג על %n הודעות נוספות][דילוג על %n הודעות נוספות] + [דילוג על הודעה נוספת %n][דילוג על %n הודעות נוספות][דילוג על %n הודעות נוספות] - Error - שגיאה + Failed to parse CSV file: %1 + ניתוך קובץ CSV כשל: %1 - CSV import: writer has errors: -%1 - ייבוא CSV: העורך מכיל שגיאות: -%1 + Imported from CSV file: %1 + יובא מקובץ CSV: %1 + + + No Title Selected + לא נבחרה כותרת + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + לא נבחרה כותרת עמודה, יהיה קשה להבחין בין רשומות. +האם לייבא? + + + Tags + תגים CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - בית %n%n בתים%n בתים%n בתים - %n row(s) - שורה %n%n שורות%n שורות%n שורות + CSV row count + שורה %n%n שורות%n שורות %n column(s) - עמודה %n%n עמודות%n עמודות%n עמודות + CSV column count + עמודה %n%n עמודות%n עמודות @@ -1370,7 +1493,7 @@ Would you like to migrate your existing settings now? Could not save, database does not point to a valid file. - לא ניתן לשמור, מסד הנתונים לא מצביע על קובץ תקין. + לא ניתן לשמור, מסד־נתונים לא מצביע על קובץ תקין. Database save is already in progress. @@ -1378,11 +1501,11 @@ Would you like to migrate your existing settings now? Could not save, database has not been initialized! - לא ניתן לשמור, מסד הנתונים לא אותחל! + לא ניתן לשמור, מסד־נתונים לא אותחל! Database file has unmerged changes. - בקובץ מסד הנתונים קיימים שינויים שלא מוזגו. + בקובץ מסד־נתונים קיימים שינויים שלא מוזגו. %1 @@ -1398,6 +1521,14 @@ Backup database located at %2 Recycle Bin סל־מחזור + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1420,43 +1551,13 @@ Backup database located at %2 Password field שדה ססמה - - Enter Additional Credentials (if any): - הזנת אישורים נוספים (ככל שקיימים): - - - Key File: - קובץ מפתח: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>בנוסף לססמה, אפשר להשתמש בקובץ סודי כדי לשפר את אבטחת מסד הנתונים. ניתן לחולל קובץ זה בהגדרות אבטחת מסד הנתונים.</p><p>זה <strong>לא</strong> קובץ מסד הנתונים *.kdbx !<br>אם קובץ מפתח ינו בנמצא, נא להשאיר שדה זה ריק.</p><p>הקשה לקבלת מידע נוסף...</p> - - - Key file help - עזרת קובץ מפתח - Hardware key slot selection בחירת עמדה למפתח חומרה - - Hardware Key: - מפתח חומרה: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>ניתן להשתמש במפתח אבטחת חומרה כגון <strong>YubiKey</strong> או <strong>OnlyKey</strong> עם חריצים שתצורתם נקבעה עבור HMAC-SHA1.</p> -<p>הקשה לקבלת מידע נוסף...</p> - - - Hardware key help - עזרת מפתח חומרה - Key file to unlock the database - קובץ מפתח לשחרור נעילת מסד הנתונים + קובץ מפתח לשחרור נעילת מסד־נתונים Browse for key file @@ -1466,17 +1567,9 @@ Backup database located at %2 Browse… עיון... - - Refresh hardware tokens - רענון אסימוני חומרה - - - Refresh - רענון - Unlock Database - ביטול נעילת מסד הנתונים + שחרור נעילת מסד־נתונים Cancel @@ -1484,7 +1577,7 @@ Backup database located at %2 Unlock - לבטל נעילה + שחרור נעילה Please present or touch your YubiKey to continue… @@ -1502,7 +1595,7 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - מסד הנתונים שאתה מנסה לפתוח היה קרוב לוודאי + מסד־נתונים שאתה מנסה לפתוח היה קרוב לוודאי נוצר על ידי גרסה חדשה יותר של Keepassxc. אתה יכול לנסות לפתוח אותו בכל מקרה, אבל זה עשוי להיות לא שלם @@ -1536,29 +1629,21 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password נא לנסות שנית עם ססמה ריקה - - Failed to authenticate with Windows Hello - האימות נכשל עם Windows Hello - - - Failed to authenticate with Touch ID - האימות נכשל עם מזהה המגע - Failed to open key file: %1 כשל בפתיחת קובץ מפתח: %1 Old key file format - תבנית קובץ מפתח ישן + תסדיר קובץ מפתח ישן You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - נעשה שימוש בתבנית קובץ מפתח ישן ש־KeePassXC עשוי<br>להפסיק לתמוך בעתיד.<br><br>נא שקול ליצור קובץ מפתח חדש מהתפריט:<br><strong>מסד־נתונים -> אבטחת מסד־נתונים -> שינוי קובץ מפתח.</strong><br> + נעשה שימוש בתסדיר קובץ מפתח ישן ש־KeePassXC עשוי<br>להפסיק לתמוך בעתיד.<br><br>נא שקול ליצור קובץ מפתח חדש מהתפריט:<br><strong>מסד־נתונים -> אבטחת מסד־נתונים -> שינוי קובץ מפתח.</strong><br> Don't show this warning again - לא להציג הזהרה זו שוב + לא להציג אזהרה זו שוב All files @@ -1577,22 +1662,68 @@ To prevent this error from appearing, you must go to "Database Settings / S לא ניתן להשתמש בקובץ מסד־נתונים כקובץ מפתח - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - לא ניתן להשתמש בקובץ מסד־הנתונים כקובץ מפתח. -אם אין קובץ מפתח, נא להשאיר את השדה ריק. + authenticate to access the database + נא לאמת עלמנת לגשת למסד הנתונים - Detecting hardware keys… - זוהה מפתח חומרה... + Failed to authenticate with Quick Unlock: %1 + אימות עם שחרור נעילה מהיר כשל: %1 - No hardware keys detected - לא זוהה מפתח חומרה + Select Key File: + בחירת קובץ מפתח: - Select hardware key… - בחירת מפתח חומרה... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p> בנוסף לססמה, ניתן להשתמש בקובץ סודי להעצמת ביטחון מסד הנתונים. ניתן לחולל קובץ זה מהגדרות אבטחת מסד הנתונים.</p><p>זה <strong>לא</strong> קובץ מסד נתונים *.kdbx. + + + Use hardware key [Serial: %1] + שימוש במפתח חומרה [Serial: %1] + + + Use hardware key + שימוש במפתח חומרה + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + קובץ מסד נתונים הוא לא קובץ מפתח. +אם אין קובץ מפתח או לא ברור מה זה, לא נדרש לקבוע כזה. + + + KeePassXC database file selected + קובץ מסד נתונים KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + הקובץ שנבחר נראה כמו קובץ מסד נתונים. +קובץ מסד נתונים הוא לא קובץ מפתח! + +האם להמשיך עם קובץ זה? + + + No hardware keys found. + לא נמצאו מפתחות חומרה. + + + Refresh Hardware Keys + רענון מפתחות חומרה + + + Click to add a key file. + הקשה להוספת קובץ מפתח חדש. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">יש ברשותי קובץ מפתח</a> + + + Hardware keys found, but no slots are configured. + @@ -1604,10 +1735,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - הגדרות מתקדמות - General כללי @@ -1632,6 +1759,22 @@ If you do not have a key file, please leave the field empty. Maintenance תחזוקה + + KeeShare + KeeShare + + + Secret Service Integration + שילוב שירות חשאי + + + Remote Sync + סנכרון מרחוק + + + Database Settings: %1 + הגדרות מסד־נתונים: %1 + DatabaseSettingsWidgetBrowser @@ -1639,18 +1782,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings הגדרות דפדפן KeePassXC - - Convert KeePassHTTP data - המרת נתוני KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - המרת מאפייני תוכנת־מורשת KeePassHTTP לנתוני דפדפן KeePassXC תואמים. - - - Refresh database root group ID - רענון מזהה קבוצת שורש מסד־נתונים - Disconnect all browsers ניתוק כל הדפדפנים @@ -1659,6 +1790,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries לשכוח את כל ההגדרות המסוימות לאתר ברשומות + + Refresh database root group ID + רענון מזהה קבוצת שורש מסד־נתונים + Stored keys מפתחות מאוחסנים @@ -1707,21 +1842,13 @@ This may prevent connection to the browser plugin. האם לנתק את כל הדפדפנים? פעולה זו עשויה למנוע חיבור למתקע הדפדפן. - - KeePassXC: No keys found - KeePassXC: לא נמצא מפתח - No shared encryption keys found in KeePassXC settings. לא נמצאו מפתחות הצפנה משותפים בהגדרות KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: מפתחות שהוסרו ממסד הנתונים - Successfully removed %n encryption key(s) from KeePassXC settings. - מפתח הצפנה משותף %n הוסר בהצלחה מהגדרות KeePassXC.%n מפתחות הצפנה משותפים הוסרו בהצלחה מהגדרות KeePassXC.%n מפתחות הצפנה משותפים הוסרו בהצלחה מהגדרות KeePassXC.%n מפתחות הצפנה משותפים הוסרו בהצלחה מהגדרות KeePassXC. + מפתח הצפנה משותף %n הוסר בהצלחה מהגדרות KeePassXC.%n מפתחות הצפנה משותפים הוסרו בהצלחה מהגדרות KeePassXC.%n מפתחות הצפנה משותפים הוסרו בהצלחה מהגדרות KeePassXC. Do you really want forget all site-specific settings on every entry? @@ -1737,31 +1864,13 @@ Permissions to access entries will be revoked. Abort נטישה - - KeePassXC: Removed permissions - KeePassXC: הרשאות הוסרו - Successfully removed permissions from %n entry(s). - הרשאות הוסרו בהצלחה מרשומה %n.הרשאות הוסרו בהצלחה מ־%n רשומות.הרשאות הוסרו בהצלחה מ־%n רשומות.הרשאות הוסרו בהצלחה מ־%n רשומות. - - - KeePassXC: No entry with permissions found! - KeePassXC: לא נמצאה רשומה עם הרשאות! + הרשאות הוסרו בהצלחה מרשומה %n.הרשאות הוסרו בהצלחה מ־%n רשומות.הרשאות הוסרו בהצלחה מ־%n רשומות. The active database does not contain an entry with permissions. - מסד הנתונים הפעיל לא מכיל רשומה עם הרשאות. - - - Move KeePassHTTP attributes to custom data - העברת תכונות KeePassHTTP לנתונים מותאמים אישית - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - האם להמיר את כול נתוני שילוב הדפדפן מדור קודם לתקן העדכני ביותר? -פעולה זו נחוצה כדי לשמור על תאימות עם מתקע הדפדפן. + מסד־נתונים הפעיל לא מכיל רשומה עם הרשאות. Refresh database ID @@ -1770,7 +1879,27 @@ This is necessary to maintain compatibility with the browser plugin. Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - האם לרענן את מזהה מסד הנתונים? נחוץ רק אם מסד הנתונים הוא עותק של מסד־נתונים אחר ומתקע הדפדפן לא מתחבר. + האם לרענן את מזהה מסד־נתונים? נחוץ רק אם מסד־נתונים הוא עותק של מסד־נתונים אחר ומתקע הדפדפן לא מתחבר. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + המרת מאפייני תוכנת־מורשת KeePassHTTP לנתוני דפדפן KeePassXC תואמים. + + + No keys found + לא נמצאו מפתחות + + + Removed keys from database + מפתחות שהוסרו ממסד הנתונים + + + Removed permissions + התרים שהוסרו + + + No entry with permissions found! + לא נמצאה רשומה עם התרים! @@ -1787,7 +1916,7 @@ This is only necessary if your database is a copy of another and the browser ext 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? - אזהרה! לא הוגדרה ססמה. השימוש במסד נתונים ללא ססמה לא מומלץ! + אזהרה! לא הוגדרה ססמה. השימוש במסד־נתונים ללא ססמה לא מומלץ! האם להמשיך ללא ססמה? @@ -1801,7 +1930,7 @@ Are you sure you want to continue without a password? You must add at least one encryption key to secure your database! - נא להוסיף לפחות מפתח הצפנה אחד לאבטחת מסד הנתונים! + נא להוסיף לפחות מפתח הצפנה אחד לאבטחת מסד־נתונים! Unknown error @@ -1811,6 +1940,18 @@ Are you sure you want to continue without a password? Failed to change database credentials שינוי אישורי מסד־נתונים כשל + + Weak password + ססמה חלשה + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + זוהי ססמה חלשה! להגנה טובה יותר על קבצים חשאיים נא לבחור בססמה חזקה יותר. + + + The provided password does not meet the minimum quality requirement. + הססמה שסופקה לא עומדת בדרישת האיכות המזערית. + DatabaseSettingsWidgetEncryption @@ -1818,37 +1959,29 @@ Are you sure you want to continue without a password? Decryption Time: זמן פענוח: - - Change existing decryption time - שינוי זמן פענוח קיים - - - Change - שינוי - Decryption time in seconds זמן פענוח בשניות Higher values offer more protection, but opening the database will take longer. - ערכים גבוהים יותר מציעים הגנה טובה יותר, אך פתיחת מסד הנתונים תימשך זמן רב יותר. + ערכים גבוהים יותר מציעים הגנה טובה יותר, אך פתיחת מסד־נתונים תימשך זמן רב יותר. Database format: - תבנית מסד־נתונים: + תסדיר מסד־נתונים: Database format - תבנית מסד־נתונים + תסדיר מסד־נתונים Format cannot be changed: Your database uses KDBX 4 features - לא ניתן לשנות תבנית: מסד הנתונים משתמש בתכונות KDBX 4 + לא ניתן לשנות תסדיר: מסד־נתונים משתמש בתכונות KDBX 4 Unless you need to open your database with other programs, always use the latest format. - אם את/ה צריכ/ה לפתוח את מסד הנתונים שלך עם תוכנות אחרות, תמיד תשתמש/י בפורמט האחרון (הכי עדכני). + יש להשתמש תמיד תסדיר האחרון (העדכני ביותר). אלא אם יידרש לפתוח את מסד הנתונים גם באמצעות תוכנות אחרות. Encryption Algorithm: @@ -1906,11 +2039,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - ללא שינוי - Number of rounds too high Key transformation rounds @@ -1922,7 +2050,7 @@ Are you sure you want to continue without a password? If you keep this number, your database may take hours, days, or even longer to open. נעשה שימוש במספר גבוה מאוד של סבבי המרת מפתח עם ארגון2. -אם מספר זה יישמר, פתיחת מסד הנתונים עשויה להימשך שעות או ימים או אפילו יותר. +אם מספר זה יישמר, פתיחת מסד־נתונים עשויה להימשך שעות או ימים או אפילו יותר. Understood, keep number @@ -1943,7 +2071,7 @@ If you keep this number, your database may take hours, days, or even longer to o If you keep this number, your database will not be protected from brute force attacks. נעשה שימוש במספר נמוך מאוד של סבבי המרת מפתח עם AES-KDF. -אם מספר זה ישמר, מסד הנתונים לא יהיה מוגן מפני תְּקִיפָה כּוֹחָנִית. +אם מספר זה ישמר, מסד־נתונים לא יהיה מוגן מפני תְּקִיפָה כּוֹחָנִית. KDF unchanged @@ -1956,12 +2084,24 @@ If you keep this number, your database will not be protected from brute force at MiB Abbreviation for Mebibytes (KDF settings) - מילי־ביט מילי־ביטים מילי־ביטים מיב + מילי־ביט מילי־ביטים מיב thread(s) Threads for parallel execution (KDF settings) - שִׁרְשׁוּרשִׁרְשׁוּריםשִׁרְשׁוּריםשִׁרְשׁוּרים + שִׁרְשׁוּרשִׁרְשׁוּריםשִׁרְשׁוּרים + + + Encryption Settings: + הגדרות הצפנה: + + + Basic + בסיסי + + + Advanced + מתקדם @@ -1999,7 +2139,7 @@ If you keep this number, your database will not be protected from brute force at Database description: - תיאור מסד הנתונים: + תיאור מסד־נתונים: Database description field @@ -2021,18 +2161,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry מספר פרטי היסטוריה מרבי לרשומה - - Max. history items: - מספר פריטי היסטוריה מרבי: - Maximum size of history per entry גודל היסטוריה מרבי לרשומה - - Max. history size: - גודל היסטוריה מרבי: - MiB מיב @@ -2063,6 +2195,106 @@ This action is not reversible. (old) (ישן) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + בעת שמירת גדרה זו או עריכת רשומה +פריטי היסטורית־רשומה היישנים ביותר יוסרו +כך שלכול היותר תיוותר רק כמות הרשומות שצוינה. + + + Limit the amount of history items per entry to: + הגבלת כמות ההיסטוריה לרשומה ל: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + בעת שמירת גדרה זו או עריכת רשומה +פריטי ההיסטורית־רשומה היישנים ביותר יוסרו +כך שפרטי ההיסטוריה שיוותרו יסתכמו בכמות הרשומות שצוינה. + + + Limit the total size of history items per entry to: + הגבלת כמות ההיסטוריה הכוללת לרשומה ל: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + העברת ערכים לקבוצת סל מיחזור +במקום מחיקתם ממסד הנתונים. +ערכים שימחקו מסל המיחזור +יוסרו ממסד הנתונים. + + + Autosave delay since last change + השהיית שמירה אוטומטית מאז השינוי האחרון + + + Autosave delay + השהיית שמירה אוטומטית + + + Autosave delay since last change in minutes + השהית שמירה אוטומטית בדקות מאז שינוי אחרון + + + min + דקה + + + Autosave delay since last change checkbox + תיבת סימון השהית שמירה אוטומטית בדקות מאז שינוי אחרון + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + שם מצג: + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + צבע תצוגה: + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + נקה + + + Display icon: + סמל תצוגה: + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2108,7 +2340,7 @@ This action is not reversible. Delete all custom icons not in use by any entry or group - מחיקת כול הסמלים המותאמים אישית שאינם בשימוש על־ידי רשומה או קבוצה כלשהם + מחיקת כל הסמלים המותאמים אישית שאינם בשימוש על־ידי רשומה או קבוצה כלשהם Purge unused icons @@ -2120,7 +2352,7 @@ This action is not reversible. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - לפחות אחד מהסמלים שנבחרו נמצא כעת בשימוש רשומה או קבוצה אחת לפחות. סמלי כול הרשומות והקבוצות המושפעים יוחלפו בסמל ברירת המחדל. האם למחוק סמלים הנמצאים כעת בשימוש? + לפחות אחד מהסמלים שנבחרו נמצא כעת בשימוש רשומה או קבוצה אחת לפחות. סמלי כל הרשומות והקבוצות המושפעים יוחלפו בסמל ברירת המחדל. האם למחוק סמלים הנמצאים כעת בשימוש? Custom Icons Are In Use @@ -2136,7 +2368,7 @@ This action is not reversible. Purged %n icon(s) from the database. - סמל %n נמחק ממסד הנתונים.%n סמלים נמחקו ממסד הנתונים.%n סמלים נמחקו ממסד הנתונים.%n סמלים נמחקו ממסד הנתונים. + סמל %n נמחק ממסד־נתונים.%n סמלים נמחקו ממסד־נתונים.%n סמלים נמחקו ממסד־נתונים. @@ -2158,6 +2390,141 @@ This action is not reversible. שדה תיאור מסד־נתונים + + DatabaseSettingsWidgetRemote + + Sync Commands + פקודות סנכרון + + + Remove + הסרה + + + Command Settings + הגדרות פקודה + + + Name + שם + + + Save + שמירה + + + Download + הורדה + + + Command: + פקודה: + + + Download command field + הורדת שדה פקודה + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + לדוגמה: "sftp user@hostname" או "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + קלט: + + + Download input field + הורדת שדה קלט + + + Upload + האלעה + + + Upload command field + העלאת שדה פקודה + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + לדוגמה: "sftp user@hostname" או "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + העלאת שדה קלט + + + Name cannot be empty. + שם לא יכול להיות ריק + + + Test + בדיקה + + + Download command cannot be empty. + פקודת הורדה לא יכול להיות ריק + + + Download failed with error: %1 + פקודת הורדה עם שגיאה: %1 + + + Download finished, but file %1 could not be found. + הורדת קבצים שהסתיימו, אבל קובץ %1 לא נמצא. + + + Download successful. + הורדה צלחה. + + + Save Remote Settings + שמירת הגדרות מרוחקות + + + You have unsaved changes. Do you want to save them? + קיימים שינויים שלא נשמרו. האם לשמור אותם? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + לדוגמה: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} משמש כשומר מקום לאחסון מסד הנתונים במיקום זמני. +הפקודה אמורה להסתיים ב'יציאה'. במקרה של `sftp` כפקודה אחרונה, יש לשלוח פקודת `exit` + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + לדוגמה: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} משמש כשומר מקום לאחסון מסד הנתונים במיקום זמני. +הפקודה אמורה להסתיים ב'יציאה'. במקרה של `sftp` כפקודה אחרונה, יש לשלוח פקודת `exit` + + + + Timeout: + + + + seconds + שניות + + DatabaseTabWidget @@ -2167,7 +2534,7 @@ This action is not reversible. The created database has no key or KDF, refusing to save it. This is definitely a bug, please report it to the developers. - למסד הנתונים שנוצר אין מפתח או KDF, והוא מסרב לשמור אותו. + למסד־נתונים שנוצר אין מפתח או KDF, והוא מסרב לשמור אותו. זה בהחלט תקל, נא דווח על כך לצוות הפתוח. @@ -2190,26 +2557,10 @@ This is definitely a bug, please report it to the developers. CSV file קובץ CSV - - Select CSV file - בחירת קובץ CSV - Merge database מיזוג מסד־נתונים - - KeePass 1 database - מסד־נתונים KeePass 1 - - - Open KeePass 1 database - פתיחת מסד־נתונים KeePass 1 - - - Open OPVault - פתיחת OPVault - Export database to CSV file ייצוא מסד־נתונים לקובץ CSV @@ -2222,34 +2573,42 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. כתיבת קובץ ה־HTML כשלה. + + Export database to XML file + ייצוא מסד נתונים לקובץ XML + + + XML file + קובץ XML + + + Writing the XML file failed + כתיבה לקובץ HTML כשלה. + Export Confirmation אישור ייצוא You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - מסד הנתונים עומד להיות מיוצא לקובץ לא מוצפן. פעולה זו תשאיר את ססמאות ומידע רגיש, פגיעים! האם להמשיך? - - - New Database - מסד־נתונים חדש - - - %1 [New Database] - Database tab name modifier - %1 [מסד־נתונים חדש] + מסד־נתונים עומד להיות מיוצא לקובץ לא מוצפן. פעולה זו תשאיר את ססמאות ומידע רגיש, פגיעים! האם להמשיך? %1 [Locked] Database tab name modifier %1 [נעול] + + %1 [Temporary] + Database tab name modifier + %1 [זמני] + DatabaseWidget - Database Tags - תגי מסד־נתונים + Searches and Tags + חיפוש ותיוג Searching… @@ -2299,6 +2658,10 @@ This is definitely a bug, please report it to the developers. Expired entries רשומות פגות־תוקף + + Entries expiring within %1 day(s) + רשומות שתוקפן יפוג בתוך יום %1רשומות שתוקפן יפוג בתוך %1 ימיםרשומות שתוקפן יפוג בתוך %1 ימים + No current database. אין מסד־נתונים נוכחי. @@ -2309,11 +2672,11 @@ This is definitely a bug, please report it to the developers. Successfully merged the database files. - קובצי מסד הנתונים מוזגו בהצלחה. + קובצי מסד־נתונים מוזגו בהצלחה. Database was not modified by merge operation. - מסד הנתונים לא הוסגל כתוצאה מפעולת המיזוג. + מסד־נתונים לא הוסגל כתוצאה מפעולת המיזוג. Search Results (%1) @@ -2323,13 +2686,25 @@ This is definitely a bug, please report it to the developers. No Results אין תוצאות + + Save + שמירה + + + Enter a unique name or overwrite an existing search from the list: + נא להזין שם ייחודי או לכתוב על שם חיפוש מהרשימה: + + + Save Search + שמירת חיפוש + Lock Database? האם לנעול מסד־נתונים? You are editing an entry. Discard changes and lock anyway? - הרשומה בעריכה. האם לנטוש שינויים ולנעול בכל זאת? + הרשומה בשלבי עריכה. האם לנטוש שינויים ולנעול בכל זאת? "%1" was modified. @@ -2340,7 +2715,7 @@ Save changes? Database was modified. Save changes? - מסד הנתונים השתנה. + מסד־נתונים השתנה. האם לשמור שינויים? @@ -2351,26 +2726,6 @@ Save changes? 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? - קיימים שינויים בקובץ מסד הנתונים שלא נשמרו. -האם למזג את השינויים? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - לא ניתן לפתוח את קובץ מסד הנתונים החדש בעת ניסיון אוטומטית טעינה מחדש . -שגיאה: %1 - Disable safe saves? האם להשבית שמירות בטוחות? @@ -2378,12 +2733,12 @@ Error: %1 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 כשל בשמירת מסד הנתונים מספר פעמים. סביר להניח שהדבר נגרם על־ידי שירות סנכרון קבצים שנועל את קובץ היעד לשמירה. + KeePassXC כשל בשמירת מסד־נתונים מספר פעמים. סביר להניח שהדבר נגרם על־ידי שירות סנכרון קבצים שנועל את קובץ היעד לשמירה. האם להשבית שמירות בטוחות ולנסות שוב? Writing the database failed: %1 - כתיבת מסד הנתונים כשלה: %1 + כתיבת מסד־נתונים כשלה: %1 Passwords @@ -2413,9 +2768,94 @@ Disable safe saves and try again? Could not find database file: %1 לא ניתן למצוא קובץ מסד־נתונים: %1 - - Entries expiring within %1 day(s) - רשומות שתוקפן יפוג בתוך יום %1רשומות שתוקפן יפוג בתוך %1 ימיםרשומות שתוקפן יפוג בתוך %1 ימיםרשומות שתוקפן יפוג בתוך %1 ימים + + New Database + מסד־נתונים חדש + + + %1 [New Database] + Database tab name modifier + %1 [מסד־נתונים חדש] + + + Remote Sync did not contain any download or upload commands. + סנכרון מרוחק לא מכיל הורדה הורדה או העלאה. + + + Remote sync '%1' completed successfully! + סנכרון מרוחק '%1' הושלם בהצלחה! + + + Remote sync '%1' failed: %2 + סנכרון מרוחק '%1' כשל: %2 + + + Error while saving database %1: %2 + שגיאה בעת שמירת מסד נתונים %1: %2 + + + Downloading... + הורדה... + + + Uploading... + מתבצעת העלאה... + + + Syncing... + מתבצע סנכרון... + + + Remove passkey from entry + הסרת Passkey מרשומה + + + Do you want to remove the passkey from this entry? + האם להסיר את ה־Passkey מרשומה זו? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2466,11 +2906,7 @@ Disable safe saves and try again? n/a - ל/י - - - (encrypted) - (מוצפן) + ל/ז Select private key @@ -2510,7 +2946,7 @@ Unfortunately, any changes made have been lost. An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - אירעה שגיאה בעת אימות רצף הקלדה־האוטומטית מותאמת אישית: + אירעה שגיאה בעת אימות רצף הקלדה־אוטומטית מותאמת אישית: %1 האם לתקן זאת? @@ -2518,7 +2954,7 @@ Would you like to correct it? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - אירעה שגיאה בעת אימות רצף הקלדה־האוטומטית ל־"%1": + אירעה שגיאה בעת אימות רצף הקלדה־אוטומטית ל־"%1": %2 האם לתקן זאת? @@ -2558,21 +2994,25 @@ Would you like to correct it? Hide הסתרה + + %n hour(s) + שעה %1%1 שעות%1 שעות + %n week(s) - שבוע %n%n שבועות%n שבועות%n שבועות + שבוע %n%n שבועות%n שבועות %n month(s) - חודש %n%n חודשים%n חודשים%n חודשים + חודש %n%n חודשים%n חודשים %n year(s) - שנה %n%n שנים%n שנים%n שנים + שנה %n%n שנים%n שנים - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + פענוח מפתח SSH כשל, נא לוודא שהססמה תקינה. @@ -2662,23 +3102,23 @@ Would you like to correct it? EditEntryWidgetAutoType Enable Auto-Type for this entry - איפשור הקלדה־האוטומטית ברשומה זו + איפשור הקלדה־אוטומטית ברשומה זו Inherit default Auto-Type sequence from the group - ירושת רצף ברירת מחדל הקלדה־האוטומטית מהקבוצה + ירושת רצף ברירת מחדל הקלדה־אוטומטית מהקבוצה Use custom Auto-Type sequence: - שימוש ברצף הקלדה־האוטומטית ברירת מחדל + שימוש ברצף הקלדה־אוטומטית ברירת מחדל Custom Auto-Type sequence - רצף הקלדה־האוטומטית מותאם אישית + רצף הקלדה־אוטומטית מותאם אישית Open Auto-Type help webpage - פתיחת עמוד מרשתת עזרת הקלדה־האוטומטית + פתיחת עמוד מרשתת עזרת הקלדה־אוטומטית Window Associations @@ -2692,10 +3132,20 @@ Would you like to correct it? Add new window association הוספת שיוך חלון חדש + + + + Add item + + + Remove selected window association הסרת שיוך החלון שנבחר + + - + Remove item + - + Window title: כותרת חלון: @@ -2718,25 +3168,11 @@ Would you like to correct it? Custom Auto-Type sequence for this window - רצף הקלדה־האוטומטית מותאם אישית לחלון זה - - - + - Add item - + - - - - - Remove item - - + רצף הקלדה־אוטומטית מותאם אישית לחלון זה EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - הגדרות אלה משפיעות על התנהגות הרשומה בהרחברת הדפדפן. - General כללי @@ -2749,26 +3185,14 @@ Would you like to correct it? Skip Auto-Submit for this entry דלוג על Auto־Submit ברשומה זו - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - לשלח הגדרה זו רק לדפדפן עבור דו־שיח HTTP Auth. אם אופשר, טופסי התחברות רגילים לא יציגו רשומה זו לבחירה. - Use this entry only with HTTP Basic Auth נא להשתמש ברשומה זו רק ב־HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - לא לשלח הגדרה זו לדפדפן לדו־שיח HTTP Auth. אם אופשר, דו־שיח HTTP Auth לא יציג רשומה זו לבחירה. - Do not use this entry with HTTP Basic Auth לא להשתמש ברשומה זו ב־HTTP Basic Auth - - Additional URL's - מעני URL נוספים - Add הוספה @@ -2781,6 +3205,22 @@ Would you like to correct it? Edit עריכה + + These settings affect the entry's behaviour with the browser extension. + הגדרות אלו משפיעות על התנהגות הרשומה עם הרחבות הדפדפן. + + + Additional URLs + מעני URL נוספים + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + לשלוח ערך זה לדפדפן רק עבור תיבות דו־שיח HTTP Auth. אם מופעל, טפסי התחברות רגילים לא יציגו ערך זה לבחירה. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + לא לשלוח ערך זה לדפדפן עבור תיבות דו־שיח של HTTP Auth. אם מופעל, תיבות דו־שיח HTTP Auth לא יציגו ערך זה לבחירה. + EditEntryWidgetHistory @@ -2831,22 +3271,10 @@ Would you like to correct it? Notes field שדה הערות - - Toggle the checkbox to reveal the notes section. - החלפת־מצב תיבת הסימון לחשיפת מקטע ההערות. - Username field השדה 'שם משתמש' - - Toggle notes visible - החלפת־מצב הערות גלויות - - - Notes: - הערות: - Expiration field שדה תפוגה @@ -2863,14 +3291,6 @@ Would you like to correct it? Presets קבועות מראש - - Password: - ססמה: - - - URL: - מען URL: - Url field שדה מען URL @@ -2879,18 +3299,10 @@ Would you like to correct it? Download favicon for URL הורדת favicon למען URL - - Title: - כותרת: - Title field שדה כותרת - - Username: - שם משתמש: - Password field שדה ססמה @@ -2899,18 +3311,42 @@ Would you like to correct it? Toggle expiration החלפת־מצב תפוגה - - Expires: - תפוגה: - - - Tags: - תגים: - Tags list רשימת תגים + + &Username: + &שם משתמש: + + + &Title: + &תואר: + + + &Password: + &ססמה: + + + UR&L: + UR&L: + + + &Notes: + &הערות: + + + Toggle notes visibility + מחלף נראות הערות + + + T&ags: + ת&גים: + + + &Expires: + &תפוגה: + EditEntryWidgetSSHAgent @@ -2920,7 +3356,7 @@ Would you like to correct it? Remove key from agent when database is closed/locked - הסרת מפתח מהסוכן כשמסד הנתונים סגור/נעול + הסרת מפתח מהסוכן כשמסד־נתונים סגור/נעול Comment @@ -2950,19 +3386,6 @@ Would you like to correct it? Private key מפתח פרטי - - External file - קובץ חיצוני - - - Browser for key file - דפדוף לקובץ מפתח - - - Browse… - Button for opening file dialog - עיון... - Attachment צרופה @@ -2979,6 +3402,23 @@ Would you like to correct it? Remove from agent הסרה מסוכן + + External file + קובץ חיצוני + + + Browser for key file + דפדוף לקובץ מפתח + + + Browse… + Button for opening file dialog + עיון... + + + Generate + חילול + Select attachment file בחירת קובץ צרופה @@ -2989,7 +3429,7 @@ Would you like to correct it? n/a - ל/י + ל/ז Remove key from agent after @@ -3003,6 +3443,10 @@ Would you like to correct it? seconds שניות + + Clear agent + + EditGroupWidget @@ -3014,10 +3458,6 @@ Would you like to correct it? Icon סמל - - Browser Integration - שילוב דפדפן - Properties מאפיינים @@ -3034,6 +3474,10 @@ Would you like to correct it? Group has unsaved changes קיימים שינויי קבוצה שטרם נשמרו + + Browser Integration + שילוב דפדפן + Enable איפשור @@ -3049,10 +3493,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - עריכת קבוצה - These settings affect to the group's behaviour with the browser extension. הגדרות אלה משפיעות על התנהגות הקבוצה בהרחברת הדפדפן. @@ -3071,7 +3511,7 @@ Would you like to correct it? Skip Auto-Submit toggle for this and sub groups - דלוג על הקלדה־האוטומטית לזה ולקבוצות משנה + דלוג על הקלדה־אוטומטית לזה ולקבוצות משנה Use entries only with HTTP Basic Auth: @@ -3089,6 +3529,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups לא להשתמש ב־HTTP Auth לזה ולקבוצות משנה + + Omit WWW subdomain from matching: + השמטת תת־תחום WWW מההתאמה: + + + Omit WWW subdomain from matching toggle for this and sub groups + השמטת תת־תחום WWW ממחלף ההתאמה, לקבוצה זו ותתי־קבוצות + + + Restrict matching to given browser key: + הגבלת התאמות למפתחות דפדפן נתונים: + + + Restrict matching to given browser key toggle for this and sub groups + להגביל התאמה כדי לספק מיתוג מפתח דפדפן עבור זה ועבור קבוצות משה. + EditGroupWidgetKeeShare @@ -3164,7 +3620,7 @@ Supported extensions are: %1. %1 is being imported and exported by different groups in this database. - %1 מיובא ומיוצא על־ידי קבוצות שונות במסד נתונים זה. + %1 מיובא ומיוצא על־ידי קבוצות שונות במסד־נתונים זה. KeeShare is currently disabled. You can enable import/export in the application settings. @@ -3224,7 +3680,7 @@ Supported extensions are: %1. Use default Auto-Type sequence of parent group - שימוש ברצף הקלדה־האוטומטית ברירת מחדל של קבוצת אב + שימוש ברצף הקלדה־אוטומטית ברירת מחדל של קבוצת אב Auto-Type: @@ -3236,7 +3692,7 @@ Supported extensions are: %1. Auto-Type toggle for this and sub groups - החלפת־מצב הקלדה־האוטומטית לקבוצות משנה אלו + החלפת־מצב הקלדה־אוטומטית לקבוצות משנה אלו Notes: @@ -3244,7 +3700,7 @@ Supported extensions are: %1. Default auto-type sequence field - רצף הקלדה־האוטומטית ברירת מחדל כשל + רצף הקלדה־אוטומטית ברירת מחדל כשל Notes field @@ -3256,7 +3712,7 @@ Supported extensions are: %1. Set default Auto-Type sequence - הגדרת רצף הקלדה־האוטומטית ברירת מחדל + הגדרת רצף הקלדה־אוטומטית ברירת מחדל Search toggle for this and sub groups @@ -3321,10 +3777,6 @@ Supported extensions are: %1. Unable to fetch favicon. לא ניתן להביא favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - ניתן לאפשר את שירות הסמלים של אתר DuckDuckGo מתפריט, כלים -> הגדרות -> אבטחה - Existing icon selected. נבחר סמל קיים. @@ -3343,7 +3795,7 @@ Supported extensions are: %1. Successfully loaded %1 of %n icon(s) - %1 מתוך %n סמלים נטען בהצלחה%1 מתוך %n סמלים נטענו בהצלחה%1 מתוך %n סמלים נטענו בהצלחה%1 מתוך %n סמלים נטענו בהצלחה + %1 מתוך %n סמלים נטען בהצלחה%1 מתוך %n סמלים נטענו בהצלחה%1 מתוך %n סמלים נטענו בהצלחה No icons were loaded @@ -3351,11 +3803,15 @@ Supported extensions are: %1. %n icon(s) already exist in the database - סמל %n כבר קיים במסד הנתונים%n סמלים כבר קיימים במסד הנתונים%n סמלים כבר קיימים במסד הנתונים%n סמלים כבר קיימים במסד הנתונים + סמל %n כבר קיים במסד־נתונים%n סמלים כבר קיימים במסד־נתונים%n סמלים כבר קיימים במסד־נתונים The following icon(s) failed: - הסמל הבא נכש:הסמלים הבאים כשלו:הסמלים הבאים כשלו:הסמלים הבאים כשלו: + הסמל הבא נכש:הסמלים הבאים כשלו:הסמלים הבאים כשלו: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + ניתן לאפשור את שרות סמלי אתר מרשתת DuckDuckGo מתפריט הגדרות יישום -> אבטחה @@ -3433,6 +3889,24 @@ This may cause the affected plugins to malfunction. %1 - Clone שכפול %1 - + + Passkey + Passkey + + + Invalid conversion type: %1 + סוג המרה לא תקין: %1 + + + Invalid conversion syntax: %1 + תחביר המרה לא תקין: %1 + + + Invalid regular expression syntax %1 +%2 + תחביר ביטוי רגיל לא תקין %1 +%2 + EntryAttachments @@ -3441,6 +3915,21 @@ This may cause the affected plugins to malfunction. לא ניתן לפתוח קובץ "%1" + + EntryAttachmentsDialog + + Form + טופס + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3478,14 +3967,6 @@ This may cause the affected plugins to malfunction. Remove הסרה - - Rename selected attachment - שנוי שם צרופה שנבחרה - - - Rename - שינוי שם - Open selected attachment פתיחת צרופה שנבחרה @@ -3512,7 +3993,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to remove %n attachment(s)? - האם להסיר צרופה %n?האם להסיר %n צרופות?האם להסיר %n צרופות?האם להסיר %n צרופות? + האם להסיר צרופה %n?האם להסיר %n צרופות?האם להסיר %n צרופות? Save attachments @@ -3556,19 +4037,12 @@ This may cause the affected plugins to malfunction. לא ניתן לפתוח קובץ: %1לא ניתן לפתוח קובצים: %1לא ניתן לפתוח קובצים: -%1לא ניתן לפתוח קובצים: %1 Confirm Overwrite Attachment אישור כתיבה־על צרופה - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - קיימת כבר צרופה "%1". -האם לכתוב־על הצרופה הקיימת? - Confirm Attachment אישור צרופה @@ -3579,7 +4053,7 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 הוא קובץ גדול (%2 מב). -מסד הנתונים עשוי להיות גדול מאוד והביצועים יפגעו. +מסד־נתונים עשוי להיות גדול מאוד והביצועים יפגעו. האם להוסיף קובץ זה? @@ -3591,7 +4065,7 @@ Are you sure to add this file? The attachment '%1' was modified. Do you want to save the changes to your database? הקובץ המצורף '% 1' השתנה. -האם ברצונך לשמור את השינויים במסד הנתונים שלך? +האם ברצונך לשמור את השינויים במסד־נתונים שלך? Saving attachment failed @@ -3603,6 +4077,24 @@ Error: %1 שמירת צרופה עדכנית כשלה. שגיאה: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + קיימת כבר צרופה "%1". +האם לכתוב־על הצרופה הקיימת? + + + New + + + + Preview + תצוגה מקדימה + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3797,6 +4289,14 @@ Error: %1 Has TOTP קיים TOTP + + Background Color + צבע רקע + + + Group Path + + EntryPreviewWidget @@ -3817,8 +4317,8 @@ Error: %1 ססמה - Notes - הערות + URL + מען url Expiration @@ -3837,8 +4337,8 @@ Error: %1 שם משתמש - URL - מען url + Notes + הערות Advanced @@ -3888,6 +4388,10 @@ Error: %1 Never אף פעם + + Double click to copy value + הקשה כפולה להעתקת ערך + Enabled מאופשר @@ -3896,6 +4400,10 @@ Error: %1 Disabled מושבת + + Double click to copy to clipboard + הקשה כפולה להעתיק ללוח גזירים + EntryURLModel @@ -3903,6 +4411,10 @@ Error: %1 Invalid URL מען URL תקין + + Duplicate URL + שיכפול מען URL + EntryView @@ -3918,6 +4430,10 @@ Error: %1 Reset to defaults איפוס לברירות המחדל + + + %1 entry(s)... + רשומה + %1...+ %1 רשומות...+ %1 רשומות... + ExportDialog @@ -4006,7 +4522,7 @@ This will leave your passwords and sensitive information vulnerable! Failed to register session on DBus at path '%1' - רישום המופע ב־DBus בנתיב '%1' כשל + רישום השיח ב־DBus בנתיב '%1' כשל Failed to register item on DBus at path '%1' @@ -4021,7 +4537,7 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - %3 עשה שימוש ברשומה "%1" ממסד נתונים "%2" + %3 עשה שימוש ברשומה "%1" ממסד־נתונים "%2" @@ -4029,7 +4545,7 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - %1 השתש ברשומה %n%1 השתמש ב־%n רשומות%1 השתמש ב־%n רשומות%1 השתמש ב־%n רשומות + %1 השתש ברשומה %n%1 השתמש ב־%n רשומות%1 השתמש ב־%n רשומות @@ -4140,6 +4656,193 @@ You can enable the DuckDuckGo website icon service in the security section of th הורדת פביקונס (%1/%2)... + + ImportWizard + + Import Wizard + אשף ייבוא + + + + ImportWizardPageReview + + WizardPage + עמוד אשף + + + Entry count: %1 + מספר רשומה: %1 + + + Group + קבוצה + + + Title + כותרת + + + Username + שם משתמש + + + Password + ססמה + + + Url + מען URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + טופס + + + Import File Selection + בחירת קובץ ייבוא + + + Password: + ססמה: + + + Key File: + קובץ ססמה: + + + Browse… + עיון... + + + Import Into: + ייבוא לתוך: + + + New Database + מסד־נתונים חדש + + + No unlocked databases available + אין מסדי נתונים לא נעולים זמינים + + + Existing Database: + מסד נתונים קיים: + + + Import File: + ייבוא קובץ: + + + Comma Separated Values (.csv) + ערכים מופרדים בפסיקים (.csv) + + + 1Password Export (.1pux) + ייצוא 1Password (.1pux) + + + 1Password Vault (.opvault) + כספת 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + מסד נתונים KeePass 1 (.kdb) + + + Open OPVault + פתיחת OPVault + + + Select import file + בחירת קובץ ייבוא + + + All files + כל הקבצים + + + Key files + קבצי מפתח + + + Select key file + בחירת קובץ ססמה + + + Comma Separated Values + ערכים מופרדים בפסיקים + + + 1Password Export + ייצוא 1Password + + + Bitwarden JSON Export + ייצוא Bitwarden JSON + + + 1Password Vault + כספת 1Password + + + KeePass1 Database + מסד־נתונים KeePass 1 + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + פקודה: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + לדוגמה: "sftp user@hostname" או "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + קלט: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4169,7 +4872,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. סופקו אישורים לא תקינים, נא לנסות שוב. -אם פעולה זו חוזרת על עצמה, ייתכן שקובץ מסד הנתונים פגום. +אם פעולה זו חוזרת על עצמה, ייתכן שקובץ מסד־נתונים פגום. Header doesn't match hash @@ -4226,7 +4929,7 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. סופקו אישורים לא תקינים, נא לנסות שוב. -אם הודעה זו חוזרת על עצמה, ייתכן שקובץ מסד הנתונים פגום. +אם הודעה זו חוזרת על עצמה, ייתכן שקובץ מסד־נתונים פגום. (HMAC mismatch) @@ -4413,10 +5116,10 @@ If this reoccurs, then your database file may be corrupt. 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 (.kdb). -ניתן לייבא אותו על־ידי לחיצה על מסד נתונים -> 'ייבוא KeePass 1 מסד נתונים ...'. -זו הגירה חד־כיוונית. לא תתאפשר פתיחת מסד הנתונים המיובא עם גרסת KeePassX 0.4 הישנה. +ניתן לייבא אותו על־ידי לחיצה על מסד־נתונים -> 'ייבוא KeePass 1 מסד־נתונים ...'. +זו הגירה חד־כיוונית. לא תתאפשר פתיחת מסד־נתונים המיובא עם גרסת KeePassX 0.4 הישנה. Not a KeePass database. @@ -4519,7 +5222,7 @@ Line %2, column %3 Auto-type association window or sequence missing - חסר חלון שיוך או רצף הקלדה־האוטומטית + חסר חלון שיוך או רצף הקלדה־אוטומטית Invalid bool value @@ -4574,17 +5277,6 @@ Line %2, column %3 פתיחת קובץ מפתח כשלה - - KeePass1OpenWidget - - Import KeePass1 Database - ייבוא מסד־נתונים KeePass1 - - - Unable to open the database. - לא ניתן לפתוח מסד־נתונים. - - KeePass1Reader @@ -4648,7 +5340,7 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. סופקו אישורים לא תקינים, נא לנסות שוב. -אם פעולה זו חוזרת על עצמה, ייתכן שקובץ מסד הנתונים פגום. +אם פעולה זו חוזרת על עצמה, ייתכן שקובץ מסד־נתונים פגום. Key transformation failed @@ -4821,11 +5513,11 @@ If this reoccurs, then your database file may be corrupt. Generate a new key file or choose an existing one to protect your database. - חילול קובץ מפתח חדש או בחירת קובץ מפתח קיים להגנה על מסד הנתונים. + חילול קובץ מפתח חדש או בחירת קובץ מפתח קיים להגנה על מסד־נתונים. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - הערה: נא לא להשתמש בקובץ שעשוי להשתנות כך שימנע את שחרור נעילת מסד הנתונים. + הערה: נא לא להשתמש בקובץ שעשוי להשתנות כך שימנע את שחרור נעילת מסד־נתונים. Browse for key file @@ -4837,11 +5529,11 @@ If this reoccurs, then your database file may be corrupt. Old key file format - תבנית קובץ מפתח ישן + תסדיר קובץ מפתח ישן You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - נבחר קובץ מפתח בתבנית ישנה ש־KeePassXC<br>עשוי להפסיק לתמוך בעתיד.<br><br>במקום זאת, נא לשקול ליצור קובץ מפתח חדש. + נבחר קובץ מפתח בתסדיר ישן ש־KeePassXC<br>עשוי להפסיק לתמוך בעתיד.<br><br>במקום זאת, נא לשקול ליצור קובץ מפתח חדש. Error loading the key file '%1' @@ -4903,7 +5595,7 @@ Message: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - לא ניתן להשתמש במסד הנתונים הנוכחי כקובץ המפתח שלו. נא לבחור קובץ אחר או לחולל קובץ מפתח חדש. + לא ניתן להשתמש במסד־נתונים הנוכחי כקובץ המפתח שלו. נא לבחור קובץ אחר או לחולל קובץ מפתח חדש. Suspicious Key File @@ -4912,7 +5604,7 @@ Message: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - קובץ המפתח שנבחר נראה כמו קובץ מסד נתוני ססמאות. קובץ מפתח חייב להיות קובץ נייח שלעולם לא ישתנה או שהגישה למסד הנתונים תאבד לנצח. + קובץ המפתח שנבחר נראה כמו קובץ מסד נתוני ססמאות. קובץ מפתח חייב להיות קובץ נייח שלעולם לא ישתנה או שהגישה למסד־נתונים תאבד לנצח. האם להמשיך עם קובץ זה? @@ -4941,10 +5633,6 @@ Are you sure you want to continue with this file? &Recent Databases מסדי־נתונים &אחרונים - - &Import - &ייבוא - &Export &ייצוא @@ -4965,6 +5653,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + תגים + &Groups &קבוצות @@ -5009,34 +5701,18 @@ Are you sure you want to continue with this file? &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 - הצגת או עריכת רשומה - &Delete Entry… &מחיקת רשומה... @@ -5045,10 +5721,6 @@ Are you sure you want to continue with this file? &New Group… &קבוצה חדשה... - - Add a new group - הוספת קבוצה חדשה - &Edit Group… &עריכת קבוצה... @@ -5081,18 +5753,10 @@ Are you sure you want to continue with this file? Database &Reports… &דוחות מסד־נתונים... - - Statistics, health check, etc. - סטטיסטיקה, בדיקת תקינות ועוד. - &Database Settings… &הגדרות מסד־נתונים... - - Database settings - הגדרות מסד־נתונים - &Clone Entry… &שכפול רשומה... @@ -5101,34 +5765,18 @@ Are you sure you want to continue with this file? Move u&p העברה &מעלה - - Move entry one step up - העברת רשומה צעד אחד מעלה - Move do&wn העברה &מטה - - Move entry one step down - העברת רשומה צעד אחד מטה - Copy &Username העתקת &שם משתמש - - Copy username to clipboard - העתק שם משתמש ללוח־הגזירים - Copy &Password העתקת &ססמה - - Copy password to clipboard - העתקת ססמאות ללוח־הגזירים - &Settings &הגדרות @@ -5139,7 +5787,7 @@ Are you sure you want to continue with this file? Perform &Auto-Type - ביצוע &הקלדה־האוטומטית + ביצוע &הקלדה־אוטומטית Download &Favicon @@ -5155,32 +5803,20 @@ Are you sure you want to continue with this file? Lock &All Databases - &נעילת כול מסדי־הנתונים + &נעילת כל מסדי־הנתונים &Title &כותרת - Copy title to clipboard - העתקת כותרת ללוח־הגזירים - - - &URL - &מען URL - - - Copy URL to clipboard - העתקת מען URL ללוח־הגזירים + Copy &URL + העתקת מען־URL &Notes &הערות - - Copy notes to clipboard - העתקת הערות ללוח־הגזירים - &CSV File… &קובץ CSV... @@ -5193,26 +5829,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… מסד־נתונים KeePass 1... - - Import a KeePass 1 database - ייבוא מסד נתוני KeePass 1 - 1Password Vault… כספת 1Password... - - Import a 1Password Vault - ייבוא כספת 1Password - CSV File… קובץ CSV... - - Import a CSV file - יבוא קובץ CSV - Show TOTP הצגת TOTP @@ -5229,6 +5853,10 @@ Are you sure you want to continue with this file? Copy &TOTP העתקת &TOTP + + Copy Password and TOTP + העתקת ססמה ו־TOTP + E&mpty recycle bin &ריקןן סל־מחזור @@ -5253,10 +5881,6 @@ Are you sure you want to continue with this file? &Online Help עזרה &מקוונת - - Go to online documentation - מעבר לתיעוד מקוון - &User Guide &מדריך למשתמש @@ -5301,6 +5925,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) קלאסי (מובנה מסדת) + + Show Menubar + הצגת סרגל תפריט + Show Toolbar הצגת סרגל־כלים @@ -5325,6 +5953,10 @@ Are you sure you want to continue with this file? Clone Group... שכפול קבוצה... + + &XML File… + &קובץ XML... + Clear history נקוי היסטוריה @@ -5342,7 +5974,7 @@ Are you sure you want to continue with this file? There is a high risk of corruption, maintain a backup of your databases. This version is not meant for production use. אזהרה: נעשה שימוש בבניה לא יציבה של KeePassXC! -קיים סיכון גבוה להשחתה, נא לשמור גיבוי מסדי הנתונים. +קיים סיכון גבוה להשחתה, נא לשמור גיבוי מסדי־נתונים. גרסה זו אינה מיועדת לשימוש בייצור. @@ -5352,14 +5984,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 לקרוס בשימוש במקלדת על המסך! -אנו ממליצים להשתמש ב־AppImage הזמין בעמוד ההורדות שלנו. + No Tags + ללא תג Restore Entry(s) - שחזור רשומהשחזור רשומותשחזור רשומותשחזור רשומות + שחזור רשומהשחזור רשומותשחזור רשומות Settings @@ -5367,11 +5997,11 @@ We recommend you use the AppImage available on our downloads page. Check for updates on startup? - האם לבדוק זמינות עדכונים בעת האתחול? + האם לבדוק זמינות עדכונים בעת האיתחול? Would you like KeePassXC to check for updates on startup? - האם לאפשר ל־KeePassXC לבדוק עדכונים בעת האתחול? + האם לאפשר ל־KeePassXC לבדוק עדכונים בעת האיתחול? You can always check for updates manually from the application menu. @@ -5385,6 +6015,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC יציאה מ־KeePassXC + + %1 Entry(s) + רשומה %1 %1 רשומות%1 רשומות + Please present or touch your YubiKey to continue… נא להציג או לגעת ב־YubiKey על מנת להמשך... @@ -5397,6 +6031,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? נא לאתחל את היישום להחלת הגדרה זו. האם לאתחל כעת? + + Allow Screen Capture + אפשור לכידת מסך + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + ייבוא קובץ 1Password 1PUX + + + Import… + ייבוא... + + + Passkeys… + Passkeys… + + + Import Passkey + ייבוא Passkey + + + Remote S&ync… + ס&נכרון מרוחק... + + + Quit Application + לצאת מהיישומון + + + Open About Dialog + פתיחת דו־שיח על אודות + + + Open Database + פתיחת מסד נתונים + + + Create Database + יצירת מסד נתונים + + + Merge From Database + למזג ממסד נתונים + + + Create Entry + יצירת רשומה + + + Edit Entry + עריכת רשומה + + + Delete Entry + מחיקת רשומה + + + Create Group + יצירת קבוצה + + + Edit Group + עריכת קבוצה + + + Delete Group + מחיקת קבוצה + + + Download All Favicons + הורדת כל הפביקון + + + Sort Groups A-Z + סינון קבוצות א–ת + + + Sort Groups Z-A + סינון קבוצות ת–א + + + Save Database As + שמירת מסד נתונים בשם + + + Show Database Security + הצגת אבטחת מסד נתונים + + + Show Database Reports + הצגת דוחות מסד נתונים + + + Show Database Settings + הצגת הגדרות מסד נתונים + + + Show Passkeys + הצגת Passkeys + + + Clone Entry + שכפול רשומה + + + Move Entry Up + העברת רשומה מעלה + + + Move Entry Down + העברת רשומה מטה + + + Copy Username + העתקת שם משתמש + + + Copy Password + העתקת ססמה + + + Show Application Settings + הצגת הגדרות יישום + + + Show Password Generator + הצגת מחולל ססמאות + + + Remove Passkey From Entry + הסרת Passkey מרשומה + + + Perform Auto-Type: {USERNAME} + ביצוע הקלדה אוטומטית: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + ביצוע הקלדה אוטומטית: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + ביצוע הקלדה אוטומטית: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + ביצוע הקלדה אוטומטית: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + ביצוע הקלדה אוטומטית: {TOTP} + + + Copy Title + להעתיק תואר + + + Copy URL + להעתיק מען URL + + + Copy Notes + להעתיק הערות + + + Export to CSV + ייצוא ל־CSV + + + Export to HTML + ייצוא ל־HTML + + + Import KeePass1 Database + ייבוא מסד־נתונים KeePass1 + + + Import 1Password Vault + ייבוא כספת 1Password + + + Import CSV File + ייבוא קובץ CSV + + + Show TOTP QR Code + הצגת קוד QR TOTP + + + Set up TOTP + הגדרת TOTP + + + Empty Recycle Bin + לרוקן סל מחזור + + + Open Donation Website + לפתוח אתר מרשתת תרומה + + + Open Bug Report + לפתוח דוח תקלים + + + Open Online Documentation + לפתוח תיעוד מקוון + + + Open Keyboard Shortcuts Guide + לפתוח מדריך קיצורי־דרך מקלדת + + + Save Database Backup + לשמור גיבוי מסד נתונים + + + SSH Agent: Add Key + סוכן SSH: הוספת מפתח + + + SSH Agent: Remove Key + סוכן SSH: הסרת מפתח + + + Toggle Compact Mode + מיתוג מצב צמום + + + Set Theme: Automatic + קביעת ערכת נושא באופן אוטומטי + + + Set Theme: Light + קביעת ערכת נושא: בהירה + + + Set Theme: Dark + קביעת ערכת נושא: כהה + + + Set Theme: Classic + קביעת ערכת נושא: קלאסי + + + Toggle Show Menubar + מיתוג הצגת סרגל תפריט + + + Toggle Show Toolbar + מיתוג הצגת סרגל כלים + + + Toggle Show Preview Panel + מיתוג הצגת לוח תצוגה מקדימה + + + Toggle Always on Top + מיתוג תמיד עליון + + + Toggle Hide Usernames + מיתוג הסתרת שם משתמש + + + Toggle Hide Passwords + מיתוג הסתרת ססמאות + + + Export to XML + ייצוא ל־XML + + + Toggle Allow Screen Capture + מיתוג אפשור לכידת מרקע + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + הגדרת סנכרון מרוחק... + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5454,26 +6396,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5531,15 +6453,7 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - כאן ניתן להתאים את הגדרות הצפנת מסד הנתונים. אל דאגה, אפשר יהיה לשנות אותם מאוחר יותר בהגדרות מסד הנתונים. - - - Advanced Settings - הגדרות מתקדמות - - - Simple Settings - הגדרות פשוטות + כאן ניתן להתאים את הגדרות הצפנת מסד־נתונים. אל דאגה, אפשר יהיה לשנות אותם מאוחר יותר בהגדרות מסד־נתונים. @@ -5550,7 +6464,7 @@ We recommend you use the AppImage available on our downloads page. A set of credentials known only to you that protects your database. - ערכת אישורים הידועה רק לך המגנה על מסד הנתונים. + ערכת אישורים הידועה רק לך המגנה על מסד־נתונים. @@ -5561,18 +6475,37 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - אן ניתן להתאים את הגדרות הצפנת מסד הנתונים. אל דאגה, אפשר יהיה לשנות אותם מאוחר יותר בהגדרות מסד הנתונים. + אן ניתן להתאים את הגדרות הצפנת מסד־נתונים. אל דאגה, אפשר יהיה לשנות אותם מאוחר יותר בהגדרות מסד־נתונים. NewDatabaseWizardPageMetaData General Database Information - מידע כללי אודות מסד הנתונים + מידע כללי אודות מסד־נתונים Please fill in the display name and an optional description for your new database: - נא להזין את שם המצג ותיאור חלופי למסד הנתונים החדש: + נא להזין את שם המצג ותיאור חלופי למסד־נתונים החדש: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + @@ -5621,15 +6554,6 @@ We recommend you use the AppImage available on our downloads page. ציפיה ל־%1 בתים של מלל רגיל, נמצאו %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - קריאת מסד־נתונים לא הניבה אֶדְגָּם -%1 - - OpVaultReader @@ -5703,6 +6627,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 צופן לא ידוע: %1 + + AES-256/GCM is currently not supported + AES-256/GCM לא נתמך לעת עתה + Passphrase is required to decrypt this key נדרש ביטוי ססמה כדי לפענח מפתח זה @@ -5721,7 +6649,7 @@ We recommend you use the AppImage available on our downloads page. Failed to initialize cipher: %1 - אתחול צופן כשל: %1 + איתחול צופן כשל: %1 Decryption failed: %1 @@ -5767,28 +6695,183 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key EOF לא צפוי בעת כתיבת מפתח פרטי + + (encrypted) + (מוצפן) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - ססמאות לא תואמות + SSH Key Generator + מחולל מפתח SSH - Passwords match so far - ססמאות תואמות עד כה + Type + סוג - Toggle Password (%1) - החלפת־מצב ססמה (%1) + Bits + סיביות - Generate Password (%1) - חילול ססמה (%1) + Comment + הערה + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + ייצוא KeePassXC – Passkey - Warning: Caps Lock enabled! - אזהרה: אופשרה נעילת רישיות! + Filenames will be generated with title and .passkey file extension. + שמות קבצים יחוללו עם כותרת וסיומת קובץ Passkey. + + + Export entries + ייצוא רשומות + + + Export Selected + ייצוא בחירה + + + Cancel + ביטול + + + Export to folder + ייצוא לתיקייה + + + Export the following passkey entries. + ייצוא רשומות ה־Passkey הבאות. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: ייצוא Passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + קובץ "%1.passkey" כבר קיים +האם לכתוב עליו? + + + Cannot open file + לא ניתן לפתוח קובץ + + + Cannot open file "%1" for writing. + לא ניתן לפתוח קובץ "%1" לכתיבה. + + + Cannot write to file + לא ניתן לכתוב לקובץ + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + ייבוא KeePassXC – Passkey + + + Username: %1 + שם משתמש: %1 + + + Group + קבוצה + + + Database + Database + + + Import Passkey + ייבוא Passkey + + + Import + ייבוא + + + Cancel + ביטול + + + Entry + רשומה + + + Create new entry + יצירת רשומה חדשה + + + Relying Party: %1 + צד סומך: %1 + + + Import the following passkey: + ייבוא ה־ הבא:Passkey + + + Import the following passkey to this entry: + לייבא את ה־Passkey הבא לרשומה זו: + + + Default passkeys group (Imported Passkeys) + קבוצה passkeys בררת מחדל (passkeys שיובאו) + + + + PasskeyImporter + + Passkey file + קובץ Passkey + + + All files + כל הקבצים + + + Cannot open file + לא ניתן לפתוח קובץ + + + Cannot open file "%1" for reading. + לא ניתן לפתוח קובץ "%1" לקריאה. + + + Open passkey file + פתיחת קובץ Passkey + + + Cannot import passkey + לא ניתן לייבוא Passkey + + + Cannot import passkey file "%1". Data is missing. + לא ניתן לייבוא קובץ Passkey "%1". חסרים נתונים. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + לא ניתן לייבא קובץ Passkey "%1". +הנתון הבא חסר: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + לא ניתן לייבא קובץ Passkey "%1". מפתח פרטי חסר או לוקה בתצורה. @@ -5969,10 +7052,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: נא לבחור גם מבין: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - תווים שהוחרגו: "0", "O", "1", "l", "I", "|", "G", "6", "B", "8", "." - Exclude look-alike characters החרגת תווים דומים @@ -5997,10 +7076,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: ספירת מילים: - - Character Count: - ספירת תווים: - Word Case: גודל אות: @@ -6013,10 +7088,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist הוספת רשימת־מילים מותאמת אישית - - character - תו - Close סגירה @@ -6053,6 +7124,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit אנטרופיה: %1 סיביות + + Password Quality: %1 + איכות ססמה: %1 + + + Poor + Password quality + עלוב + + + Weak + Password quality + חלש + + + Good + Password quality + טוב + + + Excellent + Password quality + מצוין + Confirm Delete Wordlist אישור מחיקת רשימת מילים @@ -6100,8 +7195,47 @@ Do you want to overwrite it? תווים מיוחדים - Password Quality: %1 - איכות ססמה: %1 + passwordLength + אורך ססמה + + + Characters: %1 + תווים: %1 + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + ססמאות לא תואמות + + + Passwords match so far + ססמאות תואמות עד כה + + + Toggle Password (%1) + החלפת־מצב ססמה (%1) + + + Generate Password (%1) + חילול ססמה (%1) + + + Warning: Caps Lock enabled! + אזהרה: אופשרה נעילת רישיות! + + + Quality: %1 + איכות: %1 Poor @@ -6123,6 +7257,10 @@ Do you want to overwrite it? Password quality מצוין + + Toggle password visibility using Control + H. Open the password generator using Control + G. + מיתוג נראות ססמה תוך שימוש ב'קונטרול + H'. פתיחת מחולל ססמאות תוך שימוש ב'קונטרול + G'. + PickcharsDialog @@ -6139,6 +7277,21 @@ Do you want to overwrite it? הקשה על &Tab בין תווים + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6177,6 +7330,10 @@ Do you want to overwrite it? Continue המשך + + Continue with weak password + להמשיך עם ססמה חלשה + QObject @@ -6290,7 +7447,7 @@ Do you want to overwrite it? Add a new entry to a database. - הוספת רשומה חדשה למסד הנתונים. + הוספת רשומה חדשה למסד־נתונים. Path of the entry to add. @@ -6310,7 +7467,7 @@ Do you want to overwrite it? Writing the database failed %1. - כתיבת מסד הנתונים כשלה %1. + כתיבת מסד־נתונים כשלה %1. Successfully added entry %1. @@ -6318,7 +7475,7 @@ Do you want to overwrite it? Adds a new group to a database. - הוספת קבוצה חדשה למסד נתונים. + הוספת קבוצה חדשה למסד־נתונים. Path of the group to add. @@ -6338,7 +7495,7 @@ Do you want to overwrite it? Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - נא לבדוק אם ססמאות כלשהן הודלפו בפומבי. FILENAME חייב להיות הנתיב של קובץ המפרט HASS SHA־1 של ססמאות שדלפו בתבנית HIBP, כפי שזמין ב־https://haveibeenpwned.com/Passwords. + נא לבדוק אם ססמאות כלשהן הודלפו בפומבי. FILENAME חייב להיות הנתיב של קובץ המפרט HASS SHA־1 של ססמאות שדלפו בתסדיר HIBP, כפי שזמין ב־https://haveibeenpwned.com/Passwords. FILENAME @@ -6374,7 +7531,7 @@ Do you want to overwrite it? Password for '%1' has been leaked %2 time(s)! - הססמה של '%1' הודלפה פעם %2!הססמה של '%1' הודלפה %2 פעמים!הססמה של '%1' הודלפה %2 פעמים!הססמה של '%1' הודלפה %2 פעמים! + הססמה של '%1' הודלפה פעם %2!הססמה של '%1' הודלפה %2 פעמים!הססמה של '%1' הודלפה %2 פעמים! Password for '%1' has been leaked! @@ -6524,7 +7681,7 @@ Do you want to overwrite it? Clearing the clipboard in %1 second(s)... - ניקוי לוח־גזירים בתוך שניה %1...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות... + ניקוי לוח־גזירים בתוך שניה %1...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות... Clipboard cleared! @@ -6532,7 +7689,7 @@ Do you want to overwrite it? Close the currently opened database. - סגירת מסד הנתונים הנוכחי + סגירת מסד־נתונים הנוכחי Display this help. @@ -6552,11 +7709,11 @@ Do you want to overwrite it? Deactivate password key for the database. - השבתת הפעלת מפתח ססמה עבור מסד הנתונים. + השבתת הפעלת מפתח ססמה עבור מסד־נתונים. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - חריץ Yubikey וסדרה חלופית המשמשת לגישה למסד הנתונים (למשל, 1:7370001). + חריץ Yubikey וסדרה חלופית המשמשת לגישה למסד־נתונים (למשל, 1:7370001). slot[:serial] @@ -6570,9 +7727,13 @@ Do you want to overwrite it? Too many arguments provided. סופקו משתנים רבים מדי. + + Path of the database. + הנתיב למסד־נתונים. + Target decryption time in MS for the database. - זמן פענוח יעד מסד הנתונים במילי־שניות. + זמן פענוח יעד מסד־נתונים במילי־שניות. time @@ -6580,20 +7741,16 @@ Do you want to overwrite it? Set the key file for the database. - הגדרת קובץ המפתח עבור מסד הנתונים. + הגדרת קובץ המפתח עבור מסד־נתונים. Set a password for the database. - הגדרת ססמה למסד הנתונים. + הגדרת ססמה למסד־נתונים. Create a new database. יצירת מסד־נתונים חדש - - Path of the database. - הנתיב למסד הנתונים. - Invalid decryption time %1. זמן פענוח לא תקין %1. @@ -6638,6 +7795,158 @@ Do you want to overwrite it? Successfully created new database. מסד־נתונים חדש נוצר בהצלחה. + + Unset the password for the database. + הסרת הגדרת ססמה למסד־הנתונים. + + + Unset the key file for the database. + הסרת הגדרת קובץ המפתח למסד־הנתונים. + + + Edit a database. + עריכת מסד־נתונים. + + + Cannot use %1 and %2 at the same time. + לא ניתן להשתמש ב־%1 וב־%2 בו זמנית. + + + Could not change the database key. + לא ניתן היה לשנות את מפתח מסד־הנתונים. + + + Database was not modified. + מסד־נתונים לא השתנה. + + + Writing the database failed: %1 + כתיבת מסד־נתונים כשלה: %1 + + + Successfully edited the database. + מסד־נתונים נערך בהצלחה. + + + Cannot remove password: The database does not have a password. + לא ניתן להסיר ססמה: אין למסד־הנתונים ססמה. + + + Cannot remove file key: The database does not have a file key. + לא ניתן להסיר קובץ מפתח: אין למסד־הנתונים קובץ מפתח. + + + Loading the new key file failed: %1 + טעינת קובץ מפתח כשלה: %1 + + + Found unexpected Key type %1 + נמצ סוג מפתח לא צפוי %1 + + + Cannot remove all the keys from a database. + לא ניתן להסיר את כל המפתחות ממסד־נתונים. + + + Show a database's information. + הצגת מידע מסד־נתונים. + + + UUID: + UUID: + + + Name: + שם: + + + Description: + תיאור: + + + Cipher: + צופן: + + + KDF: + KDF: + + + Recycle bin is enabled. + סל־מחזור מאופשר. + + + Recycle bin is not enabled. + סל־מחזור מושבת. + + + Location + מקום + + + Database created + מסד־נתונים נוצר + + + Last saved + שמירה אחרונה + + + Unsaved changes + שינויים שלא נשמרו + + + yes + כן + + + no + לא + + + Number of groups + מספר קבוצות + + + Number of entries + מספר רשומות + + + Number of expired entries + מספר רשומות שתוקפם פג + + + Unique passwords + ססמאות ייחודיות + + + Non-unique passwords + ססמאות לא־ייחודיות + + + Maximum password reuse + שימוש חוזר מרבי בססמה + + + Number of short passwords + מספר ססמאות קצרות + + + Number of weak passwords + מספר ססמאות חלשות + + + Entries excluded from reports + רשומות מוחרגות מדוחות + + + Average password length + אורך ססמה ממוצע + + + %1 characters + %1 תווים + Word count for the diceware passphrase. ספירת מילים עבור ביטוי ססמה הטלת־קוביות. @@ -6661,10 +7970,6 @@ Do you want to overwrite it? Invalid word count %1 ספירת מילים לא תקינה %1 - - The word list is too small (< 1000 items) - רשימת המילים קטנה מדי (< 1000 פריטים) - Title for the entry. כותרת הרשומה. @@ -6689,10 +7994,6 @@ Do you want to overwrite it? Enter new password for entry: הזנת ססמה חדשה לרשומה: - - Writing the database failed: %1 - כתיבת מסד הנתונים כשלה: %1 - Successfully edited entry %1. רשומה %1 נערכה בהצלחה. @@ -6813,13 +8114,9 @@ Do you want to overwrite it? Exit interactive mode. יציאה ממצב הידודי. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - תבנית לשימוש בעת ייצוא. האפשרויות הזמינות הן 'xml' או 'csv'. ברירת המחדל היא 'xml'. - Exports the content of a database to standard output in the specified format. - ייצוא תוכן מסד־נתונים לפלט רגיל בתבנית שצוינה. + ייצוא תוכן מסד־נתונים לפלט רגיל בתסדיר שצוין. Unable to export database to XML: %1 @@ -6827,7 +8124,7 @@ Do you want to overwrite it? Unsupported format %1 - תבנית %1 לא נתמכת + תסדיר %1 לא נתמך Length of the generated password @@ -6903,11 +8200,11 @@ Do you want to overwrite it? Path of the XML database export. - נתיב ייצוא מסד הנתונים XML. + נתיב ייצוא מסד־נתונים XML. Path of the new database. - הנתיב של מסד הנתונים החדש. + הנתיב של מסד־נתונים החדש. Unable to import XML database: %1 @@ -6915,107 +8212,7 @@ Do you want to overwrite it? Successfully imported database. - מסד הנתונים יובא בהצלחה. - - - Show a database's information. - הצגת מידע מסד־נתונים. - - - UUID: - UUID: - - - Name: - שם: - - - Description: - תיאור: - - - Cipher: - צופן: - - - KDF: - KDF: - - - Recycle bin is enabled. - סל־מחזור מאופשר. - - - Recycle bin is not enabled. - סל־מחזור מושבת. - - - Location - מקום - - - Database created - מסד־נתונים נוצר - - - Last saved - שמירה אחרונה - - - Unsaved changes - שינויים שלא נשמרו - - - yes - כן - - - no - לא - - - Number of groups - מספר קבוצות - - - Number of entries - מספר רשומות - - - Number of expired entries - מספר רשומות שתוקפם פג - - - Unique passwords - ססמאות ייחודיות - - - Non-unique passwords - ססמאות לא־ייחודיות - - - Maximum password reuse - שימוש חוזר מרבי בססמה - - - Number of short passwords - מספר ססמאות קצרות - - - Number of weak passwords - מספר ססמאות חלשות - - - Entries excluded from reports - רשומות מוחרגות מדוחות - - - Average password length - אורך ססמה ממוצע - - - %1 characters - %1 תווים + מסד־נתונים יובא בהצלחה. Unknown command %1 @@ -7065,15 +8262,15 @@ Available commands: Use the same credentials for both database files. - נא להשתמש באותם אישורים עבור שני קבצי מסדי הנתונים. + נא להשתמש באותם אישורים עבור שני קבצי מסדי־נתונים. Key file of the database to merge from. - קובץ מפתח של מסד הנתונים למיזוג. + קובץ מפתח של מסד־נתונים למיזוג. Deactivate password key for the database to merge from. - השבתת מפתח ססמת מסד הנתונים שימוזג. + השבתת מפתח ססמת מסד־נתונים שימוזג. Only print the changes detected by the merge operation. @@ -7081,7 +8278,7 @@ Available commands: Yubikey slot for the second database. - חריץ Yubikey למסד הנתונים השני. + חריץ Yubikey למסד־נתונים השני. slot @@ -7093,7 +8290,7 @@ Available commands: Path of the database to merge from. - הנתיב למסד הנתונים שימוזג. + הנתיב למסד־נתונים שימוזג. Error reading merge file: @@ -7111,7 +8308,7 @@ Available commands: Database was not modified by merge operation. - מסד הנתונים לא הוסגל כתוצאה מפעולת המיזוג. + מסד־נתונים לא הוסגל כתוצאה מפעולת המיזוג. Moves an entry to a new group. @@ -7163,7 +8360,7 @@ Available commands: Cannot remove root group from database. - לא ניתן להסיר קבוצת שורש ממסד הנתונים. + לא ניתן להסיר קבוצת שורש ממסד־נתונים. Successfully recycled group %1. @@ -7189,6 +8386,10 @@ Available commands: Show the protected attributes in clear text. הצגת התכונות המוגנות במלל רגיל. + + Show all the attributes of the entry. + הצגת כל מאפייני הרשומה. + Show the attachments of the entry. הצגת הצרופה של הרשומה. @@ -7246,7 +8447,7 @@ Available commands: stop supporting in the future. Please consider generating a new key file. - אזהרה: נעשה שימוש בתבנית קובץ מפתח ישנה ש־KeePassXC עשוי + אזהרה: נעשה שימוש בתסדיר קובץ מפתח ישן ש־KeePassXC עשוי להפסיק לתמוך בעתיד. נא לשקול ליצור קובץ מפתח חדש. @@ -7259,6 +8460,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 YubiKey סידורי %1 לא תקין + + Please present or touch your YubiKey to continue. + נא להציג או לגעת ב־YubiKey על מנת להמשך... + Enter password to encrypt database (optional): נא להזין ססמה להצפנת מסד־נתונים (חלופי): @@ -7277,7 +8482,7 @@ Please consider generating a new key file. No program defined for clipboard manipulation - לא הוגדרה תכנית לטפלול לוח־הגזירים + לא הוגדרה תוכנית לטפלול לוח־הגזירים All clipping programs failed. Tried %1 @@ -7310,7 +8515,7 @@ Please consider generating a new key file. Failed to load okon processed database: %1 - טעינת מסד הנתונים מעובד okon כשלה: %1 + טעינת מסד־נתונים מעובד okon כשלה: %1 Very weak password @@ -7330,7 +8535,7 @@ Please consider generating a new key file. Password is used %1 time(s) - נעשה שימוש בססמה פעם %1נעשה שימוש בססמה %1 פעמיםנעשה שימוש בססמה %1 פעמיםנעשה שימוש בססמה %1 פעמים + נעשה שימוש בססמה פעם %1נעשה שימוש בססמה %1 פעמיםנעשה שימוש בססמה %1 פעמים Password has expired @@ -7350,7 +8555,7 @@ Please consider generating a new key file. Password expires in %1 day(s) - תוקף הססמה יפוג בתוך יום %1תוקף הססמה יפוג בתוך %1 ימיםתוקף הססמה יפוג בתוך %1 ימיםתוקף הססמה יפוג בתוך %1 ימים + תוקף הססמה יפוג בתוך יום %1תוקף הססמה יפוג בתוך %1 ימיםתוקף הססמה יפוג בתוך %1 ימים Password will expire soon @@ -7406,7 +8611,7 @@ Kernel: %3 %4 Quick Unlock - ביטול נעילה מהירה + שחרור נעילה מהירה Secret Service Integration @@ -7422,31 +8627,31 @@ Kernel: %3 %4 over %1 year(s) - מעל שנה %1מעל %1 שניםמעל %1 שניםמעל %1 שנים + מעל שנה %1מעל %1 שניםמעל %1 שנים about %1 month(s) - בסביבות חודש %1בסביבות %1 חודשיםבסביבות %1 חודשיםבסביבות %1 חודשים + בסביבות חודש %1בסביבות %1 חודשיםבסביבות %1 חודשים %1 week(s) - שבועה %1%1 שבועות%1 שבועות%1 שבועות + שבועה %1%1 שבועות%1 שבועות %1 day(s) - יום %1%1 ימים%1 ימים%1 ימים + יום %1%1 ימים%1 ימים %1 hour(s) - שעה %1%1 שעות%1 שעות%1 שעות + שעה %1%1 שעות%1 שעות %1 minute(s) - דקה %1%1 דקות%1 דקות%1 דקות + דקה %1%1 דקות%1 דקות - Botan library must be at least 2.11.x, found %1.%2.%3 - ספריית Botan חייבת להיות לפחות בגרסה 2.11.x, נמצאה גרסה %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + ספריית Botan חייבת להיות לפחות %1, נמצאה גרסה %2.%3.%4 Cryptographic libraries: @@ -7496,18 +8701,6 @@ Kernel: %3 %4 file empty קובץ ריק - - malformed string - מחרוזת פגומה - - - missing closing quote - חסרה מרכאה סוגרת - - - %1: (row, col) %2,%3 - %1: (שורה, עמודה) %2,%3 - AES 256-bit AES- 256 סיביות @@ -7546,7 +8739,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - ניקוי לוח־גזירים בתוך שניה %1...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות... + ניקוי לוח־גזירים בתוך שניה %1...ניקוי לוח־גזירים בתוך %1 שניות...ניקוי לוח־גזירים בתוך %1 שניות... Group @@ -7587,12 +8780,12 @@ Kernel: %3 %4 %1 ms milliseconds - אלפית שניה %1%1 אלפיות שניה%1 אלפיות שניה%1 אלפיות שניה + אלפית שניה %1%1 אלפיות שניה%1 אלפיות שניה %1 s seconds - שניה %1%1 שניות%1 שניות%1 שניות + שניה %1%1 שניות%1 שניות Do you really want to delete the entry "%1" for good? @@ -7600,11 +8793,11 @@ Kernel: %3 %4 Do you really want to delete %n entry(s) for good? - האם למחוק רשומה %n לעד?האם למחוק %n רשומות לעד?האם למחוק %n רשומות לעד?האם למחוק %n רשומות לעד? + האם למחוק רשומה %n לעד?האם למחוק %n רשומות לעד?האם למחוק %n רשומות לעד? Delete entry(s)? - מחיקת רשומה?מחיקת רשומות?מחיקת רשומות?מחיקת רשומות? + מחיקת רשומה?מחיקת רשומות?מחיקת רשומות? Do you really want to move entry "%1" to the recycle bin? @@ -7612,11 +8805,11 @@ Kernel: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - האם להעביר רשומה %n לסל־המחזור?האם להעביר %n רשומות לסל־המחזור?האם להעביר %n רשומות לסל־המחזור?האם להעביר %n רשומות לסל־המחזור? + האם להעביר רשומה %n לסל־המחזור?האם להעביר %n רשומות לסל־המחזור?האם להעביר %n רשומות לסל־המחזור? Move entry(s) to recycle bin? - העברת רשומה לסל המחזור?העברת רשומות לסל המחזור?העברת רשומות לסל המחזור?העברת רשומות לסל המחזור? + העברת רשומה לסל המחזור?העברת רשומות לסל המחזור?העברת רשומות לסל המחזור? Replace references to entry? @@ -7624,7 +8817,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת?לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת?לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת?לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת? + לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת?לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת?לרשומה '%1' קיימות %2 הפניות. האם לכתוב־על הפניות עם ערכים, לדלג על רשומה זו, או למחוק אותה בכל זאת? User name @@ -7676,32 +8869,28 @@ Kernel: %3 %4 lock all open databases - נעילת כל מסדי הנתונים הפתוחים + נעילת כל מסדי־נתונים הפתוחים key file of the database - קובץ המפתח של מסד הנתונים + קובץ המפתח של מסד־נתונים read password of the database from stdin - קריאת ססמה של מסד הנתונים מ־stdin - - - allow app screen recordering and screenshots - אפשור יישום הקלטת מסך וצילומי מסך - - - Locked databases. - מסדי־נתונים נעולים. + קריאת ססמה של מסד־נתונים מ־stdin Database failed to lock. - נעילת מסד הנתונים כשלה. + נעילת מסד־נתונים כשלה. Another instance of KeePassXC is already running. אֶדְגָּם KeePassXC נוסף כבר פועל. + + KeePassXC is not running. No open database to lock + KeePassXC לא פעיל. אין מסד נתונים פתוח לנעילה. + Fatal error while testing the cryptographic functions. שגיאה מכרעת בעת בדיקת פונקציות ההצפנה. @@ -7710,10 +8899,6 @@ Kernel: %3 %4 KeePassXC - Error שגיאת KeePassXC - - Warning: Failed to prevent screenshots on a top level window! - אזהרה: מניעת צילומי מסך בחלון ברמה העליונה כשלה! - Database password: ססמת מסד־נתונים: @@ -7737,9 +8922,313 @@ Kernel: %3 %4 האימות נכשל עם Windows Hello - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + אזהרה: חסימת צילומי מסך בחלון ברמה העליונה כשלה! + + + Invalid Cipher + צופן לא תקין + + + Invalid KDF + KDF לא תקין + + + Access to all entries is denied + גישה לכול הרשומות נדחתה + + + allow screenshots and app recording (Windows/macOS) + אפשור תצלום מצג והקלטת יישום Iוינדוס/מאק OS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + קביעת קובץ המפתח למסד הנתונים. +אפשרות זו הוצאה משימוש, במקום זאת יש להשתמש ב: ' --set-key-file'. + + + Databases have been locked. + מסד נתונים ננעל. + + + Attestation not supported + אימות לא נתמך + + + Credential is excluded + נתוני אמנה הוחרגו + + + Passkeys request canceled + בקשת Passkeys בוטלה + + + Invalid user verification + אימות משתמש לא תקין + + + Empty public key + מפתח ציבורי ריק + + + Invalid URL provided + סופק מען URL לא תקין + + + Passkeys + Passkeys + + + AES initialization failed + אתחול AES כשל + + + AES encrypt failed + הצפנת AES כשלה + + + Failed to store in Linux Keyring + אחסון ב־Keyring לינוקס כשל + + + Polkit returned an error: %1 + Polkit החזיר שגיאה: %1 + + + Could not locate key in keyring + לא ניתן לאתר מפתח ב־keyring + + + Could not read key in keyring + לא ניתן לקרוא מפתח ב־keyring + + + AES decrypt failed + פענוח AES כשל + + + No Polkit authentication agent was available + סוכן אימות Polkit לא זמין + + + Polkit authorization failed + הרשאת Polkit כשלה + + + No Quick Unlock provider is available + ספק שרות שחרור נעילה מהיר לא זמין + + + Failed to init KeePassXC crypto. + נכשל באיתחול קריפטו KeePassXC. + + + Failed to encrypt key data. + הצפנת נתוני מפתח כשלה. + + + Failed to get Windows Hello credential. + קבלת אישור Windows Hello כשלה. + + + Failed to decrypt key data. + פענוח נתוני מפתח כשלה. + + + Origin is empty or not allowed + מקור ריק או לא מאופשר + + + Effective domain is not a valid domain + התחום בפועל אינן תחום תקין + + + Origin and RP ID do not match + מקור ומזהה RP לא תואמים + + + No supported algorithms were provided + לא סופק אלגוריתם נתמך + + + Wait for timer to expire + המתנה לתפוגת קוצב זמן + + + Challenge is shorter than required minimum length + אתגר מענה קצר מאורך מזערי נדרש + + + user.id does not match the required length + מזהה משתמש לא תואם לאורך הנדרש + + + Favorite + Tag for favorite entries + מועדף + + + File does not exist. + קובץ לא קיים. + + + Cannot open file: %1 + לא ניתן לפתוח קובץ: %1 + + + Cannot parse file: %1 at position %2 + לא ניתן לפרק קובץ: %1 באיות %2 + + + Failed to decrypt json file: %1 + פענוח קובץ json כשל: %1 + + + Invalid encKeyValidation field + שדה encKeyValidation לא תקין + + + Invalid cipher list within encKeyValidation field + רשימת צופן בתוך שדה צופן encKeyValidation לא תקינה + + + Wrong password + ססמה שגויה + + + Invalid encrypted data field + שדה נתונים מוצפן לא תקין + + + Invalid cipher list within encrypted data field + רשימה צופן בתוך שדה נתונים מוצפן לא תקין + + + Cannot initialize cipher + לא ניתן לאתחל צופן + + + Cannot decrypt data + לא ניתן לפענח נתונים + + + Bitwarden Import + ייבוא Bitwarden + + + Archived + Tag for archived entries + הועבר לארכיון + + + Invalid 1PUX file format: Not a valid ZIP file. + תסדיר קובץ 1PUX לא תקין: לא קובץ ZIP תקין. + + + Invalid 1PUX file format: Missing export.data + תסדיר קובץ 1PUX לא תקין: נתוני ייצוא חסרים + + + 1Password Import + 1Password יובא + + + Enter Shortcut + הזנת קיצור־דרך + + + Action + פעולה + + + Shortcuts + קיצורי־דרך + + + Unknown passkeys error + שגיאת passkeys לא ידועה + + + Invalid KDF iterations, cannot decrypt json file + חזרורי KDF לא תקינים, לא ניתן לפענח קובץ json + + + Unsupported format, ensure your Bitwarden export is password-protected + תסדיר לא נתמך, נא לוודא שייצוא Bitwarden מוגן בססמה + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + רק PBKDF ו־Argon2 נתמכים, לא ניתן לפענח קובץ json + + + Reset Shortcuts + שיצוב קיצורי־דרך + + + Double click an action to change its shortcut + הקשה כפולה על פעולה לשינוי קיצור הדרך שלה + + + Filter... + סינון... + + + Shortcut Conflict + התנגשות קיצור־דרך + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + קיצור־דרך %1 מתנגש עם %2'. לכתוב על קיצור־הדרך? + + + Cannot generate valid passphrases because the wordlist is too short + לא ניתן לחולל ביטוי סיסמה תקין מכיוון שרשימת המילים קצרה מדי + + + Encrypted files are not supported. + + Proton Pass Import + + + + Delete plugin data? + האם למחוק נתוני מתקע? + + + Delete plugin data from Entry(s)? + מחיקת נתוני מתקע מרשומות?מחיקת נתוני מתקע מרשומות?מחיקת נתוני מתקע מרשומה? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + תגים + QtIOCompressor @@ -7768,34 +9257,53 @@ Kernel: %3 %4 QtIOCompressor::open The gzip format not supported in this version of zlib. - תבנית gzip אינה נתמכת בגרסה זו של zlib. + תסדיר gzip אינו נתמך בגרסה זו של zlib. Internal zlib error: שגיאת zlib פנימית: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + פקודה `%1` לא הסתיימה בזמן. תהליך חוסל. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + העלאת מסד נתונים שמוזג כשל. פקודה `%1` לא הסתיימה בזמן. תהליך חוסל. + + + Invalid download parameters provided. + סופקו פרמטרי הורדה לא תקינים. + + + Command `%1` failed to download database. + פקודה `%1` כשלה בהורדת מסד נתונים. + + + Invalid database pointer or upload parameters provided. + סופקו מצביעי מסד נתונים או פרמטרי העלאה לא תקינים. + + + Command `%1` exited with status code: %2 + פקודה `%1` יצאה עם קוד מצב: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + העלאת מסד נתונים שמוזג כשלה. פקודה `%1` יצאה עם קוד מצב: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - החרגת רשומות שפג תוקפם מהדוח - - - Show only entries which have URL set - הצגת רשומות הכוללות מען URL - - - Show only entries which have browser settings in custom data - הצג רק ערכים שיש להם הגדרות דפדפן, בנתונים מותאמים אישית - Double-click entries to edit. לעריכה, נא להקיש הקשה כפולה על הרשומות. List of entry URLs - רשימת כול מעני URL ברשומות + רשימת כל מעני URL ברשומות Entry has no URLs set @@ -7847,50 +9355,59 @@ Kernel: %3 %4 Delete Entry(s)… - מחיקת רשומה?מחיקת רשומות?מחיקת רשומות?מחיקת רשומות? + מחיקת רשומה?מחיקת רשומות?מחיקת רשומות? Exclude from reports החרגה מדוחות + + Expire Entry(s)… + + + + Only show entries that have a URL + להציג רק רשומות שיש להן מען URL + + + Only show entries that have been explicitly allowed or denied + להציג רק רשומות שאפשרו או נדחו במפורש + + + Show expired entries + הצגת רשומות שפגו + + + (Expired) + (פג) + + + Delete plugin data from Entry(s)… + מחיקת נתוני מתקע מרשומות?מחיקת נתוני מתקע מרשומות?מחיקת נתוני מתקע מרשומה? + ReportsWidgetHealthcheck - Exclude expired entries from the report - החרגת רשומות שפג תוקפם מהדוח + Show expired entries + הצגת רשומות שפגו - Also show entries that have been excluded from reports - הצגת רשומות שלא נכללו בדוחות גם כן + (Expired) + (פג) Hover over reason to show additional details. Double-click entries to edit. ריחוף מעל סיבה להצגת פרטים נוספים. הקשה כפולה על רשומות לעריכה. - - Bad - Password quality - רע - Bad — password must be changed חלש — יש לשנות ססמה - - Poor - Password quality - עלוב - Poor — password should be changed חלש — יש לשנות ססמה - - Weak - Password quality - חלש - Weak — consider changing the password חלש — נא לשקול לשנות הססמה @@ -7933,18 +9450,26 @@ Kernel: %3 %4 Delete Entry(s)… - מחיקת רשומה?מחיקת רשומות?מחיקת רשומות?מחיקת רשומות? + מחיקת רשומה?מחיקת רשומות?מחיקת רשומות? Exclude from reports החרגה מדוחות + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + הצגת רשומות שהוחרגו מדוחות + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - התראה: דוח זה מחייב שליחת מידע לשירות המקוון של 'האם השתלטו עלי' (https://haveibeenpwned.com). אם תמשיכו, ססמאות מסד הנתונים יוצפנו וחמשת התווים הראשונים של הגיבוב יישלחו באופן מאובטח לשירות זה. מסד הנתונים יישאר מאובטח ולא יהיה ניתן לבנות אותו מחדש מהמידע שיתקבל. עם זאת, מספר הססמאות שיתקבלו וכתובת ה־IP ייחשפו לשירות זה. + התראה: דוח זה מחייב שליחת מידע לשירות המקוון של 'האם השתלטו עלי' (https://haveibeenpwned.com). אם תמשיכו, ססמאות מסד־נתונים יוצפנו וחמשת התווים הראשונים של הגיבוב יישלחו באופן מאובטח לשירות זה. מסד־נתונים יישאר מאובטח ולא יהיה ניתן לבנות אותו מחדש מהמידע שיתקבל. עם זאת, מספר הססמאות שיתקבלו וכתובת ה־IP ייחשפו לשירות זה. Perform Online Analysis @@ -8028,12 +9553,84 @@ Kernel: %3 %4 Delete Entry(s)… - מחיקת רשומה?מחיקת רשומות?מחיקת רשומות?מחיקת רשומות? + מחיקת רשומה?מחיקת רשומות?מחיקת רשומות? Exclude from reports החרגה מדוחות + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + ייצא + + + Import + ייבוא + + + List of entry URLs + רשימת כל מעני URL ברשומות + + + Title + כותרת + + + Path + נתיב + + + Username + שם משתמש + + + URLs + מעני URL + + + Edit Entry… + עריכת רשומה... + + + Delete Entry(s)… + מחיקת רשומה?מחיקת רשומות?מחיקת רשומות? + + + Relying Party + צד נסמך + + + Show expired entries + הצגת רשומות שפגו + + + (Expired) + (פג) + + + Export Confirmation + אישור ייצוא + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + קובץ ה־Passkey יהיה פגיע לגנבה או שימוש לא מאושר.האם להמשיך? + + + Please wait, list of entries with passkeys is being updated… + נא להמתין, מתבצעת העלאת רשימת רשומות עם passkeys +... + + + No entries with passkeys. + אין רשומות עם passkeys. + ReportsWidgetStatistics @@ -8087,7 +9684,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - מסד הנתונים השתנה, אך השינויים עדיין לא נשמרו לכונן הקשיח. + מסד־נתונים השתנה, אך השינויים עדיין לא נשמרו לכונן הקשיח. Number of groups @@ -8103,7 +9700,7 @@ Kernel: %3 %4 The database contains entries that have expired. - מסד הנתונים מכיל רשומות פגי תוקף. + מסד־נתונים מכיל רשומות פגי תוקף. Unique passwords @@ -8208,12 +9805,20 @@ Kernel: %3 %4 No agent running, cannot list identities. אין סוכן פעיל, לא ניתן להוסיף זהויות. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget Search Help - עזרה עבור חיפוש + עזרה בחיפוש Search terms are as follows: [modifiers][field:]["]term["] @@ -8272,7 +9877,11 @@ Kernel: %3 %4 Search Help - עזרה עבור חיפוש + עזרה בחיפוש + + + Save Search + שמירת חיפוש Search (%1)… @@ -8342,37 +9951,15 @@ Kernel: %3 %4 <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - <html><head/><body><p>אם אופשר, כל ניסיון לקרוא ססמה תחויב באישור. אחרת, לקוחות יוכלו לקרוא ססמאות ללא אישור כאשר מסד הנתונים לא נעול.</p><p>אפשרות זו מכסה רק את הגישה לססמה של רשומה. לקוחות יכולו תמיד לספרר את פריטי מסדי־נתונים החשופים ולתשאל את התכונות שלהם.</p></body></html> + <html><head/><body><p>אם אופשר, כל ניסיון לקרוא ססמה תחויב באישור. אחרת, לקוחות יוכלו לקרוא ססמאות ללא אישור כאשר מסד־נתונים לא נעול.</p><p>אפשרות זו מכסה רק את הגישה לססמה של רשומה. לקוחות יכולו תמיד לספרר את פריטי מסדי־נתונים החשופים ולתשאל את התכונות שלהם.</p></body></html> Confirm when passwords are retrieved by clients אישור כשלקוחות מאחזרים ססמאות - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">הגדרה זו לא עקפת את השבתת הנחיות סל המיחזור</span></p></body></html> - - Confirm when clients request entry deletion - אשור כאשר לקוחות מבקשים מחיקת רשומה - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>שיפור תאימות עם יישומוניםים מסוימים -שמחפשים ססמה, מבלי לשחרר תחילה את נעילת מסד הנתונים.</p><p>אך אפשור תכונה זו עשויה לגרום -לקריסת ה'לקוח' במידה ונעילת מסד הנתונים לא תשוחרר בתוך פרק־זמן קצוב מסוים. (בדרך כלל 25 שניות, אך ייתכן שהוגדר -ערך שונה ביישומונים עצמם.)</p></body></html> + אישור כאשר לקוחות מבקשים מחיקת רשומה Prompt to unlock database before searching @@ -8398,6 +9985,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. שמירת השינויים הנוכחיים כדי להפעיל את המתקע ולאפשר עריכת מקטע זה. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>הגדרה זו does not לא עוקפת השבתת השבתת הנחיות סל מחזור </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>משפר תאימות עם יישומים מסוימים שמחפשים ססמה מבלי לשחרר את נעילת מסד הנתונים תחילה.</p><p>אבל הפעלת אפשרות זו עשויה גם לגרום ללקוח לקרוס אם נעילת מסד הנתונים ישתחרר בתוך פרק זמן מסוים. (בדרך כלל 25 שניות, אך עשוי להיות ערך שונה שהוגדר ביישומים.) </p></body></html> + SettingsWidgetKeeShare @@ -8506,8 +10101,12 @@ Kernel: %3 %4 TagModel - All - הכול + Clear Search + ניקוי חיפוש + + + All Entries + כל הרשומות Expired @@ -8518,6 +10117,25 @@ Kernel: %3 %4 ססמאות חלשות + + TagView + + Remove Search + הסרת חיפוש + + + Remove Tag + הסרת תג + + + Confirm Remove Tag + אישור הסרת תג + + + Remove tag "%1" from all entries in this database? + הסרת תג '%1' מכול הרשומות במסד־נתונים זה? + + TotpDialog @@ -8530,7 +10148,7 @@ Kernel: %3 %4 Expires in <b>%n</b> second(s) - תפוגה <b>בתוך שניה %n</b>תפוגה <b>בתוך %n</b> שניותתפוגה <b>בתוך %n</b> שניותתפוגה <b>בתוך %n</b> שניות + תפוגה <b>בתוך שניה %n</b>תפוגה <b>בתוך %n</b> שניותתפוגה <b>בתוך %n</b> שניות @@ -8565,7 +10183,7 @@ Kernel: %3 %4 Secret key must be in Base32 format - מפתח סודי חייב להיות בתבנית Base32 + מפתח סודי חייב להיות בתסדיר Base32 Secret key field @@ -8619,7 +10237,7 @@ Kernel: %3 %4 You have entered an invalid secret key. The key must be in Base32 format. Example: JBSWY3DPEHPK3PXP - הוזן מפתח סודי לא תקין. המפתח חייב להיות בתבנית Base32. + הוזן מפתח סודי לא תקין. המפתח חייב להיות בתסדיר Base32. דוגמה: JBSWY3DPEHPK3PXP @@ -8675,26 +10293,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database ניתן להתחיל ולאחסן את הססמאות בצורה מאובטחת במסד נתוני KeePassXC - - Create new database - יצירת מסד־נתונים חדש - - - Open existing database - פתיחת מסד־נתונים קיים - - - Import from KeePass 1 - יבוא מ־KeePass 1 - - - Import from 1Password - יבוא מ־ 1Password - - - Import from CSV - יבוא מקובץ CSV - Recent databases מסדי־נתונים אחרונים @@ -8707,6 +10305,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 ברוכים הבאים ל־KeePassXC %1 + + Create Database + יצירת מסד נתונים + + + Open Database + פתיחת מסד נתונים + + + Import File + ייבוא קובץ + WinUtils @@ -8723,31 +10333,8 @@ Example: JBSWY3DPEHPK3PXP לא ניתן לרשום קיצור דרך כללי - - WindowsHello - - Failed to init KeePassXC crypto. - נכשל באתחול קריפטו KeePassXC. - - - Failed to encrypt key data. - נכשל בהצפנת נתוני המפתח - - - Failed to get Windows Hello credential. - נכשל ביצירת אישור של Windows Hello - - - Failed to decrypt key data. - נכשל בפענוח נתוני המפתח - - YubiKey - - %1 No interface, slot %2 - %1 אין מנשק, חריץ %2 - General: כללי: @@ -8759,14 +10346,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - רענון אסימוני חומרה - - - Refresh - רענון - Hardware key slot selection בחירת עמדה למפתח חומרה @@ -8799,10 +10378,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove ערכת אתגר־מענה, הקשה לשנוי או הסרה - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>אם יש לכם <a href="https://www.yubico.com/">YubiKey</a> או <a href="https://onlykey.io">OnlyKey</a>, ניתן להשתמש בו לאבטחה נוספת.</p><p>המפתח דורש שאחד החריצים שלו יתוכנת <a href="https://www.yubico.com/products/services-software/challenge-response/">כאתגר-מענה HMAC-SHA1</a>.</p> - Detecting hardware keys… זוהה מפתח חומרה... @@ -8811,28 +10386,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected לא זוהה מפתח חומרה - - - YubiKeyInterface - %1 Invalid slot specified - %2 - צוין חריץ %1 לא תקין - %2 + Refresh hardware keys + רענון מפתחות חומרה + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] אתגר־מענה - חריץ %3 - The YubiKey PCSC interface has not been initialized. מנשק PCSC YubiKey לא אותחל. - - Hardware key is currently in use. - מפתח החומרה נמצא כעת בשימוש. - Could not find or access hardware key with serial number %1. Please present it to continue. לא ניתן למצוא או לגשת למפתח חומרה עם המספר הסידורי %1. נא להציגו על מנת להמשיך. @@ -8849,6 +10421,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 השלמת אתגר־מענה כשלה, קוד שגיאת PCSC היתה: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - חריץ %3, %4 + + + Press + USB Challenge-Response Key interaction request + לחיצה + + + Passive + USB Challenge-Response Key no interaction required + סביל + YubiKeyInterfaceUSB @@ -8856,14 +10443,6 @@ Example: JBSWY3DPEHPK3PXP Unknown לא ידוע - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] חריץ שתצורתו נקבעה - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] אתגר־מענה - חריץ %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8878,10 +10457,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. מנשק USB YubiKey לא אותחל. - - Hardware key is currently in use. - מפתח החומרה נמצא כעת בשימוש. - Could not find hardware key with serial number %1. Please plug it in to continue. לא ניתן למצוא מפתח חומרה עם המספר הסידורי %1. נא לחבר אותו כדי להמשיך. @@ -8898,5 +10473,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 השלמת אתגר־מענה כשלה, השגיאה המסוימת היתה: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - חריץ %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - חריץ %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_hu.ts b/share/translations/keepassxc_hu.ts index a67b2ee30..c61e1bf6c 100644 --- a/share/translations/keepassxc_hu.ts +++ b/share/translations/keepassxc_hu.ts @@ -80,6 +80,10 @@ Details Részletek + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + A döntése megjegyzésre kerül arra az időtartamra amíg az igénylő kliens ÉS a KeePassXC is folytatja futását. + Remember Megjegyzés @@ -88,10 +92,6 @@ Allow Selected Kijelöltek engedélyezése - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - A döntése megjegyzésre kerül arra az időtartamra amíg az igénylő kliens ÉS a KeePassXC is folytatja futását. - Deny All && Future Összes && jövőbeliek elutasítása @@ -122,6 +122,10 @@ Use OpenSSH OpenSSH használata + + Use both agents + Mindkét ügynök használata + SSH_AUTH_SOCK override SSH_AUTH_SOCK felülírása @@ -144,16 +148,12 @@ No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Nincs elérhető foglalat az SSH-ügynök számára. Vagy győződjön meg arról, hogy létezik SSH_AUTH_SOCK környezeti változó, vagy állítson be egy felülírást. + Nincs elérhető socket az SSH-ügynök számára. Biztosítsa az SSH_AUTH_SOCK környezeti változó beállítását, vagy állítson be egy felülírást. SSH Agent connection is working! Az SSH-ügynök kapcsolat működik! - - Use both agents - Mindkét ügynök használata - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Biztonság + + This setting cannot be enabled when minimize on unlock is enabled. + Ez a beállítás nem kapcsolható be, ha a minimalizálás feloldáskor be van kapcsolva. + Access error for config file %1 Hozzáférési hiba a beállítási fájlhoz: %1 @@ -211,20 +215,52 @@ You must restart the application to set the new language. Would you like to restart now? - Az új nyelv beállításának az érvényre kerüléséhez újra kell indítani az alkalmazást. Legyen azonnal újraindítva? - - - Reset Settings? - Beállítások visszaállítása? - - - Are you sure you want to reset all general and security settings to default? - Biztos, hogy vissza akarja állítani az összes általános és biztonsági beállítást az alapértelmezésre? + Az új nyelv beállításának érvényesítéséhez újra kell indítani az alkalmazást. Indítsuk újra most? Select backup storage directory Válassza ki a biztonsági mentés könyvtárát. + + Confirm Reset + Visszaállítás megerősítése + + + Are you sure you want to reset all settings to default? + Valóban visszaállítja az összes beállítást az alapértelmezésre? + + + Import KeePassXC Settings + KeePassXC-beállítások importálása + + + Failed to import settings from %1, not a valid settings file. + A beállítások importálása sikertelen, mivel a beállításfájl nem érvényes: %1. + + + Export KeePassXC Settings + KeePassXC-beállítások exportálása + + + Small + Kicsi + + + Normal + Normál + + + Medium + Közepes + + + Large + Nagy + + + Custom + Egyéni + ApplicationSettingsWidgetGeneral @@ -242,7 +278,7 @@ Automatically launch KeePassXC at system startup - KeePassXC automatikus indítása a rendszer indulásakor + A KeePassXC automatikus indítása a rendszer indulásakor Minimize window at application startup @@ -256,6 +292,10 @@ Remember previously used databases Az előzőleg használt adatbázisok megjegyzése + + recent files + nemrég használt fájl + Load previously open databases on startup Az előzőleg feloldott adatbázisok betöltése indításkor @@ -272,25 +312,6 @@ Include beta releases when checking for updates A frissítések keresése a béta kiadásokra is terjedjen ki - - On database unlock, show entries that - Az adatbázis feloldásakor azon bejegyzések megjelenítése, amelyek - - - have expired - On database unlock, show entries that... - lejártak - - - days - On database unlock, show entries that will expire within %1 days - napon belül - - - will expire within - On database unlock, show entries that... - lejárnak - File Management Fájlkezelés @@ -315,29 +336,17 @@ Backup database file before saving Készüljön biztonsági mentés az adatbázisról mentés előtt - - Backup destination - Biztonsági mentés célja - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Megadja az adatbázis biztonsági mentési fájljának helyét. A „{DB_FILENAME}” le lesz cserélve a mentett adatbázis nevére, kiterjesztés nélkül. A {TIME:<formátum>} le lesz cserélve a biztonsági mentés idejére, lásd a következő oldalt: https://doc.qt.io/qt-5/qdatetime.html#toString. A <formátum> alapértelmezett értéke „dd_MM_yyyy_hh-mm-ss”. - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Válasszon… - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Alternatív mentési módszer alkalmazása (megoldhatja a Dropbox, Google Drive, GVFS, stb. mentési problémákat) Temporary file moved into place - Ideiglenes fájl a helyére került + Ideiglenes fájl a helyére mozgatása Directly write to database file (dangerous) @@ -353,7 +362,7 @@ Minimize when opening a URL - Kicsinyítés URL megnyitásakor + Kis méret egy webcím megnyitásakor Hide window when copying to clipboard @@ -369,7 +378,7 @@ Favicon download timeout: - Favicon letöltési időtúllépés: + Weblapikonok letöltési időtúllépése: Website icon download timeout in seconds @@ -408,6 +417,10 @@ Toolbar button style: Eszköztár gombstílusa: + + Show passwords in color + Jelszavak színes megjelenítése + Use monospaced font for notes Jegyzetek rögzített szélességű betűkészlettel @@ -418,7 +431,7 @@ Show a system tray icon - Rendszertálca-ikon megjelenítése + Rendszertálcaikon megjelenítése Tray icon type @@ -446,7 +459,7 @@ Use entry URL to match windows for global Auto-Type - Bejegyzések URL-jének alkalmazása az ablakok illesztésénél a globális automatikus beírás számára. + Bejegyzések webcímének használata az ablakok illesztésénél a globális automatikus beírás számára Always ask before performing Auto-Type @@ -493,6 +506,71 @@ Remember last typed entry for: Utolsó beírt bejegyzés megjegyzése ehhez: + + On database unlock, show entries that will expire within + Az ennyi időn belül lejáró bejegyzések megjelenítése az adatbázis feloldásakor: + + + On database unlock, show entries that will expire within + Az ennyi időn belül lejáró bejegyzések megjelenítése az adatbázis feloldásakor: + + + days + number of days warning for password expiration + napon belül + + + Destination format: + Célformátum: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p>A <span style=" font-weight:600;">{DB_FILENAME}</span> le lesz cserélve a mentett adatbázis kiterjesztés nélküli nevére</p><p>A <span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> le lesz cserélve a megadott időformátumra (alapértelmezés: dd_MM_yyyy_hh-mm-ss)</p><p>További részletekért lásd a felhasználói útmutatót</p></body></html> + + + Choose folder... + Válasszon mappát… + + + Show confirmation before moving entries to recycle bin + Megerősítés megjelenítése a bejegyzések kukába dobása előtt + + + Copy data on double clicking field in entry view + Adatok másolása a mezőre való dupla kattintásra bejegyzésnézetben + + + Show toolbar + Eszköztár megjelenítése + + + Show the menu bar by pressing the Alt key + A menü megjelenítése az Alt gomb lenyomásakor + + + Show menubar + Menü megjelenítése + + + Import settings… + Beállítások importálása… + + + Export settings… + Beállítások exportálása… + + + Open browser on double clicking URL field in entry view + Böngésző megnyitása az URL mezőre való dupla kattintásra bejegyzésnézetben + + + Font size: + Betűméret: + + + Font size selection + Betűméret kijelölése + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Adatbázis zárolása az ablak lekicsinyítésekor - - Require password repeat when it is visible - Jelszóismétlés szükséges látható jelszó esetén - Hide passwords when editing them Jelszavak elrejtése szerkesztés alatt @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Jelszavak elrejtése a bejegyzés előnézeti panelen - - Hide entry notes by default - Bejegyzések jegyzeteinek elrejtése alapértelmezetten - - - Move entries to recycle bin without confirmation - Bejegyzések kukába dobása megerősítés nélkül. - - - Enable double click to copy the username/password entry columns - Dupla kattintás engedélyezése a felhasználónév/jelszó bejegyzésoszlopok másolására - Privacy Adatvédelem @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons A DuckDuckGo alkalmazása a webhelyikonok letöltésére + + Hide TOTP in the entry preview panel + TOTP elrejtése a bejegyzés előnézeti panelen + + + Lock databases when switching user + Adatbázis zárolása felhasználóváltáskor + + + Lock Options + Zárolási beállítások + + + Hide notes in the entry preview panel + Jegyzetek elrejtése a bejegyzés-előnézeti panelen + AutoType @@ -626,18 +704,8 @@ Nagyon hosszú késleltetés észlelve, a maximum %1: %2 - Invalid conversion type: %1 - Érvénytelen átalakítási típus: %1 - - - Invalid conversion syntax: %1 - Érvénytelen átalakítási szintaxis: %1 - - - Invalid regular expression syntax %1 -%2 - Érvénytelen reguláriskifejezés-szintaxis %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + A bejegyzés nem rendelkezik PICKCHARS attribútummal: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Kísérlet érvénytelen kulcsszó elküldésére. - Sequence aborted: Caps Lock is on Sorrend megszakítva: a Caps Lock be van kapcsolva @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Sikertelen érvényes kulcskód kérés a kulcshoz: + + Trying to send invalid keyboard symbol. + Kísérlet érvénytelen billentyűzetszimbólum elküldésére. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 – Virtuális billentyűzet használata (csak Windowson)</p>Disable for this site Letiltás ezen az oldalon + + Undo + Visszavonás + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-böngésző bejegyzés mentése - Ok Ok @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Több adatbázis van nyitva. Válassza ki a helyes adatbázist a hitelesítő adatok mentéséhez. + + KeePassXC - Select Database + KeePassXC – Adatbázis kiválasztása + + + + BrowserPasskeysConfirmationDialog + + Cancel + Mégse + + + Update + Frissítés + + + Authenticate + Hitelesítés + + + Register new + Új regisztráció + + + Register + Regisztráció + + + Timeout in <b>%n</b> seconds... + Időkorlát <b>%n</b> másodpercen belül...Időkorlát <b>%n</b> másodpercen belül... + + + Relying Party: %1 + Közvetítő fél: %1 + + + Username: %1 + Felhasználónév: %1 + + + KeePassXC - Passkey credentials + KeePassXC – Jelkulcs hitelesítési adatai + + + Add to existing entry + Hozzáadás egy meglévő bejegyzéshez + + + Existing passkey found. +Do you want to register a new passkey for: + Létező jelkulcs található. +Regisztrál ehhez egy új jelkulcsot: + + + Select the existing passkey and press Update to replace it. + Válassza ki a jelenlegi jelkulcsot, és nyomja meg a Frissítést a cseréjéhez. + + + Authenticate passkey credentials for: + A jelkulcs hitelesítési adatainak használata ehhez: + + + Do you want to register a passkey for: + Ehhez szeretne jelkulcsot regisztrálni: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Új csoport létrehozása - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -839,10 +968,6 @@ Do you want to create this group? Az új „%1” csoport létrehozási kérése fogadva. Biztos, hogy létrehozza ezt a csoportot? - - KeePassXC: New key association request - KeePassXC: Új kulcstársítási kérés - You have received an association request for the following database: %1 @@ -859,28 +984,16 @@ A kapcsolatnak egy olyan egyedi nevet, ill. azonosítót szükség adni, mint am Save and allow access Engedélyezési hozzáférés mentése - - KeePassXC: Overwrite existing key? - KeePassXC: Felülírja a létező kulcsot? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Létezik már egy megosztott titkosítási kulcs ezzel a névvel: „%1”. Valóban felülírható? - - KeePassXC: Update Entry - KeePassXC: Bejegyzés frissítése - Do you want to update the information in %1 - %2? Frissíti az információt ebben: %1 – %2? - - KeePassXC: Delete entry - KeePassXC: Bejegyzés törlése - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -889,50 +1002,58 @@ Do you want to delete the entry? Valóban törli a bejegyzést? - Converting attributes to custom data… - Attribútumok átalakítása egyéni adatokká… + %1 (Passkey) + %1 (jelkulcs) - Abort - Megszakítás + KeePassXC - Create a new group + KeePassXC – Új csoport létrehozása - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Átalakított KeePassHTTP attribútumok + Disable + Letiltás - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Attribútumok sikeresen átalakítva %1 bejegyzésből. -%2 kulcs áthelyezve az egyéni adatokhoz. - - - Successfully moved %n keys to custom data. - %n kulcs sikeresen áthelyezve az egyéni adatokhoz.%n kulcs sikeresen áthelyezve az egyéni adatokhoz. + KeePassXC - Overwrite existing key? + KeePassXC – Felülírja a meglévő kulcsot? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nem található bejegyzés KeePassHTTP attribútumokkal! + KeePassXC - Update Entry + KeePassXC – Bejegyzés frissítése - The active database does not contain an entry with KeePassHTTP attributes. - Az aktív adatbázisban nincs egyetlen KeePassHTTP attribútumokat tartalmazó bejegyzés sem. + KeePassXC - Delete entry + KeePassXC – Bejegyzés törlése - Don't show this warning again - Ne jelenjen meg többé a figyelmeztetés + KeePassXC - New key association request + KeePassXC – Új kulcshozzárendelési kérés - KeePassXC: Legacy browser integration settings detected - KeePassXC: Örökölt böngészőintegrációs beállítások észlelve + Passkey + Jelkulcso - 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? - A KeePassXC-Browser beállításait át kell helyezni az adatbázis-beállításokba. -Ez szükséges a jelenlegi böngészőkapcsolatok fenntartásához. -Biztos, hogy migrálja most a meglévő beállításokat? + KeePassXC - Passkey credentials + KeePassXC – Jelkulcs hitelesítési adatai + + + Register a new passkey to this entry: + Új jelkulcs regisztrálása ehhez a bejegyzéshez: + + + KeePassXC - Update passkey + KeePassXC – Jelkulcs frissítése + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + A bejegyzéshez már tartozik jelkulcs. +Felülírja az itt található jelkulcsot: %1 – %2? + + + Register + Regisztráció @@ -953,10 +1074,6 @@ Biztos, hogy migrálja most a meglévő beállításokat? General Általános - - Browsers installed as snaps are currently not supported. - A snappal telepített böngészők jelenleg nem támogatottak. - Enable integration for these browsers: Böngészőintegráció engedélyezése a következőkhöz: @@ -1004,11 +1121,11 @@ Biztos, hogy migrálja most a meglévő beállításokat? Match URL scheme (e.g., https://example.com) - URL sémákra illeszkedés (pl. https://példa.com) + Webcímsémákra illeszkedés (például https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. - Egy konkrét URL-hez tartozó legjobb találatokat adja vissza, a teljes domainhoz tartozó összes bejegyzés helyett. + Egy konkrét webcímhez tartozó legjobb találatokat adja vissza, a teljes domainhoz tartozó összes bejegyzés helyett. Return only best-matching credentials @@ -1048,7 +1165,7 @@ Biztos, hogy migrálja most a meglévő beállításokat? Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - Ne kérjen engedélyt a HTTP Basic Auth számára + Ne kérjen engedélyt a HTTP Basic hitelesítés számára Automatically creating or updating string fields is not supported. @@ -1128,27 +1245,6 @@ Biztos, hogy migrálja most a meglévő beállításokat? Custom extension ID Egyéni kiterjesztésazonosító - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - A Snap homokozó miatt egy parancsfájlt kell futtatni a böngészőintegráció engedélyezéséhez.<br />Ezt innen szerezheti be: %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - A böngészőintegráció működéséhez a KeePassXC-böngészőre van szükség. <br />Letölthető ezen böngészőkre: %1, %2, %3, 4% - - - Please see special instructions for browser extension use below - Olvassa el a böngészőkiegészítő használatáról szóló különleges utasításokat alább - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Hiba:</b> Az egyéni proxyhely nem található! -<br/>A böngészőintegráció NEM FOG MŰKÖDNI a proxy-alkalmazás nélkül. - - - <b>Warning:</b> The following options can be dangerous! - <b>Figyelmeztetés:</b> A következő beállítások veszélyesek lehetnek! - Executable Files Végrehajtható fájlok @@ -1165,6 +1261,46 @@ Biztos, hogy migrálja most a meglévő beállításokat? Select native messaging host folder location Jelölje ki a natív üzenetküldési kiszolgálót tartalmazó mappát + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Engedélyezés a keepassxc-proxy számára, hogy felsorolja az összes bejegyzést a címével, webcímével és UUID-jával a kapcsolódó adatbázisokban. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Korlátozott hozzáférés engedélyezése az összes bejegyzéshez a kapcsolódó adatbázisokban (figyelmen kívül hagyja az oldal hozzáférési korlátozásait) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Figyelem:</b> Ezen beállításokat csak szükség esetén módosítsa. + + + The custom proxy location does not exist. + Az egyéni proxy helye nem létezik. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Hiba:</b> Az egyéni proxy helye nem létezik. Javítsa ki ezt a Speciális beállítások lapon. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Hiba:</b> A telepített proxy futtatható fájl hiányzik a várt helyről: %1<br/> Kérjük, állítson be egy egyéni proxy-helyet a Speciális beállításokban, vagy telepítse újra az alkalmazást. + + + Allows using insecure http://localhost with passkeys for testing purposes. + A nem biztonságos http://localhost engedélyezése a jelkulcsokkal tesztelési célokból. + + + Allow using localhost with passkeys + Localhost használatának engedélyezése a jelkulcsokkal + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + A böngészőintegráció működéséhez a KeePassXC-böngészőre van szükség. <br />Letölthető ezen böngészőkre: %1, %2 és %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + A Snap vagy Flatpak segítségével telepített böngészők nem támogatottak, kivéve a Snap által telepített Firefoxot. + CloneDialog @@ -1187,14 +1323,6 @@ Biztos, hogy migrálja most a meglévő beállításokat? CsvImportWidget - - Import CSV fields - CSV-mezők importálása - - - filename - fájlnév - size, rows, columns méret, sorok, oszlopok @@ -1221,7 +1349,7 @@ Biztos, hogy migrálja most a meglévő beállításokat? URL - URL + Webcím Notes @@ -1303,50 +1431,43 @@ Biztos, hogy migrálja most a meglévő beállításokat? Column %1 %1. oszlop - - Imported from CSV file - CSV-fájlból importálva - - - Original data: - Eredeti adatok: - - - Error(s) detected in CSV file! - Hibák találhatók a CSV-fájlban! - [%n more message(s) skipped] [%n további üzenet mellőzve][%n további üzenet mellőzve] - Error - Hiba + Failed to parse CSV file: %1 + A CSV-fájl feldolgozása sikertelen: %1 - CSV import: writer has errors: -%1 - CSV importálás: a mentés hibába ütközött: -%1 + Imported from CSV file: %1 + CSV-fájlból importálva: %1 + + + No Title Selected + Nincs cím kiválasztva + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Nincs címoszlop kiválasztva, a bejegyzéseket nehéz lesz megkülönböztetni. +Valóban importálja? + + + Tags + Címkék CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bájt%n bájt - %n row(s) + CSV row count %n sor%n sor %n column(s) + CSV column count %n oszlop%n oszlop @@ -1399,6 +1520,14 @@ Az adatbázis biztonsági másolata: %2 Recycle Bin Kuka + + Database file read error. + Adatbázisfájl olvasási hiba. + + + No file path was provided. + Nem volt fájlútvonal megadva. + DatabaseOpenDialog @@ -1421,40 +1550,10 @@ Az adatbázis biztonsági másolata: %2 Password field Jelszó mező - - Enter Additional Credentials (if any): - További hitelesítési adatok megadása (ha vannak): - - - Key File: - Kulcsfájl: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>A mesterkulcs mellett egy titkos fájlt is használhat, hogy javítsa az adatbázisa biztonságát. Ez a fájl az adatbázis biztonsági beállításaiban állítható elő.</p><p>Ez <strong>nem</strong> a *.kdbx adatbázisfájlja!<br>Ha nincs kulcsfájlja, akkor hagyja üresen ezt a mezőt.</p><p>Kattintson a további információkért…</p> - - - Key file help - Kulcsfájlok súgója - Hardware key slot selection Hardverkulcsfoglalat kijelölése - - Hardware Key: - Hardverkulcs: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>A <strong>YubiKey</strong> vagy az <strong>OnlyKey</strong> biztonsági hardverkulcsok alkalmazhatóak a HMAC-SHA1-re konfigurált foglalattal.</p> -<p>További információk…</p> - - - Hardware key help - Hardverkulcs súgó - Key file to unlock the database Adatbázis feloldására való kulcsfájl @@ -1467,14 +1566,6 @@ Az adatbázis biztonsági másolata: %2 Browse… Tallózás… - - Refresh hardware tokens - Hardveres jelsorok frissítése - - - Refresh - Frissítés - Unlock Database Adatbázis feloldása @@ -1537,14 +1628,6 @@ Ezen hiba megjelenése megelőzhető az Adatbázis-beállítások → Biztonság Retry with empty password Üres jelszó megpróbálása - - Failed to authenticate with Windows Hello - Nem sikerült a hitelesítés a Windows Hello-val - - - Failed to authenticate with Touch ID - Nem sikerült a hitelesítés a Touch ID-vel - Failed to open key file: %1 A kulcsfájl megnyitása sikertelen: %1 @@ -1578,21 +1661,68 @@ Ezen hiba megjelenése megelőzhető az Adatbázis-beállítások → Biztonság Adatbázisfájl nem használható kulcsfájlként - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Nem használhatja az adatbázisfájlt kulcsfájlként. Ha nincs kulcsfájlja, akkor hagyja üresen a mezőt. + authenticate to access the database + hitelesítsen az adatbázis eléréséhez - Detecting hardware keys… - Hardverkulcsok felismerése… + Failed to authenticate with Quick Unlock: %1 + Nem sikerült a hitelesítés a Gyors feloldással: %1 - No hardware keys detected - Nincsenek felismert hardverkulcsok. + Select Key File: + Kulcsfájl kiválasztása: - Select hardware key… - Hardverkulcs kijelölése… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>A jelszó mellett egy titkos fájlt is használhat, hogy növelje az adatbázisa biztonságát. Ez a fájl az adatbázis biztonsági beállításaiban állítható elő.</p><p>Ez <strong>nem</strong> a *.kdbx adatbázisfájlja! + + + Use hardware key [Serial: %1] + Hardverkulcs használata [Sorozatszám: %1] + + + Use hardware key + Hardverkulcs használata + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Az adatbázisa NEM kulcsfájl. +Ha nincs kulcsfájlja, vagy nem tudja mi az, akkor nem kell kiválasztania. + + + KeePassXC database file selected + KeePassXC adatbázisfájl kiválasztva + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + A kiválasztott fájl adatbázisfájlnak tűnik. +Az adatbázis NEM egy kulcsfájl. + +Valóban folytatja ezzel a fájllal? + + + No hardware keys found. + Nem találhatók hardverkulcsok + + + Refresh Hardware Keys + Hardverkulcsok frissítése + + + Click to add a key file. + Kattintson egy kulcsfájl hozzáadásához. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Van kulcsfájlom</a> + + + Hardware keys found, but no slots are configured. + A hardverkulcs megtalálva, de a foglalatok nincsenek beállítva. @@ -1604,10 +1734,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Speciális beállítások - General Általános @@ -1632,6 +1758,22 @@ If you do not have a key file, please leave the field empty. Maintenance Karbantartás + + KeeShare + KeeShare + + + Secret Service Integration + Titkosító szolgáltatás integrációja + + + Remote Sync + Távoli szinkronizálás + + + Database Settings: %1 + Adatbázis-beállítások: %1 + DatabaseSettingsWidgetBrowser @@ -1639,18 +1781,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-böngésző beállítások - - Convert KeePassHTTP data - KeePassHTTP adatok konvertálása - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Az örökölt KeePassHTTP attribútumok konvertálása KeePassXC-böngésző kompatibilis egyéni adatokká - - - Refresh database root group ID - Adatbázis gyökércsoport-azonosítójának frissítése - Disconnect all browsers Minden böngésző leválasztása @@ -1659,6 +1789,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries A bejegyzések összes oldalfüggő beállításának elfelejtése + + Refresh database root group ID + Adatbázis gyökércsoport-azonosítójának frissítése + Stored keys Tárolt kulcsok @@ -1707,18 +1841,10 @@ This may prevent connection to the browser plugin. Valóban leválasztja az összes böngészőt? Ez megakadályozhatja a böngésző bővítményhez történő kapcsolódást. - - KeePassXC: No keys found - KeePassXC: Nincs találat a kulcsok között - No shared encryption keys found in KeePassXC settings. Nem található megosztott titkosítási kulcs a KeePassXC beállításaiban. - - KeePassXC: Removed keys from database - KeePassXC: Kulcsok eltávolítva az adatbázisból - Successfully removed %n encryption key(s) from KeePassXC settings. Sikeresen eltávolításra került %n titkosítási kulcs a KeePassXC beállításokból.Sikeresen eltávolításra került %n titkosítási kulcs a KeePassXC beállításokból. @@ -1737,32 +1863,14 @@ A bejegyzések elérési engedélyei vissza lesznek vonva. Abort Megszakítás - - KeePassXC: Removed permissions - KeePassXC: Jogosultságok eltávolítva - Successfully removed permissions from %n entry(s). Sikeresen el lett távolítva a jogosultság %n elemről.Sikeresen el lett távolítva a jogosultság %n elemről. - - KeePassXC: No entry with permissions found! - KeePassXC: Nem található bejegyzés ilyen jogosultsággal! - The active database does not contain an entry with permissions. Az aktív adatbázisban nincs egyetlen jogosultsági bejegyzés sem. - - Move KeePassHTTP attributes to custom data - HTTP attribútumok áthelyezése az egyéni adatokhoz - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Valóban konvertálja az összes örökölt böngészőintegrációs adatot a legfrissebb szabványra? -Ez szükséges a böngészőbővítmény kompatibilitásának fenntartásához. - Refresh database ID Adatbázis-azonosító frissítése @@ -1773,6 +1881,26 @@ This is only necessary if your database is a copy of another and the browser ext Valóban frissíthető az adatbázis-azonosító? Erre csak akkor lehet szükség, ha az adatbázis egy másik másolata és a böngésző kiterjesztés nem tud kapcsolódni. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Az örökölt KeePassHTTP attribútumok konvertálása KeePassXC-böngésző kompatibilis egyéni adatokká + + + No keys found + Nem találhatók kulcsok + + + Removed keys from database + A kulcsok eltávolítva az adatbázisból + + + Removed permissions + Engedélyek eltávolítva + + + No entry with permissions found! + Nincs bejegyzés ilyen jogosultsággal! + DatabaseSettingsWidgetDatabaseKey @@ -1812,6 +1940,18 @@ Valóban jelszó nélkül folytatja? Failed to change database credentials Az adatbázis hitelesítési adatainak módosítása sikertelen + + Weak password + Gyenge jelszó + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Ez egy gyenge jelszó! A titkai jobb védelme érdekében adjon meg erősebb jelszót. + + + The provided password does not meet the minimum quality requirement. + A megadott jelszó nem felel meg a minimális minőségi elvárásoknak. + DatabaseSettingsWidgetEncryption @@ -1819,14 +1959,6 @@ Valóban jelszó nélkül folytatja? Decryption Time: Visszafejtés ideje: - - Change existing decryption time - Meglévő visszafejtése idő módosítása - - - Change - Módosítása - Decryption time in seconds Visszafejtési idő másodpercben @@ -1907,11 +2039,6 @@ Valóban jelszó nélkül folytatja? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - változatlan - Number of rounds too high Key transformation rounds @@ -1964,6 +2091,18 @@ Ezt a számot megtartva az adatbázis nem lesz ellenálló a nyers erővel való Threads for parallel execution (KDF settings) szálszál + + Encryption Settings: + Titkosítási beállítások: + + + Basic + Alapvető + + + Advanced + Speciális + DatabaseSettingsWidgetFdoSecrets @@ -2022,18 +2161,10 @@ Ezt a számot megtartva az adatbázis nem lesz ellenálló a nyers erővel való Maximum number of history items per entry Előzményelemek maximális száma bejegyzésenként - - Max. history items: - Előzmények legnagyobb száma: - Maximum size of history per entry Előzmények maximális mérete bejegyzésenként - - Max. history size: - Előzmények legnagyobb mérete: - MiB MiB @@ -2064,6 +2195,108 @@ Ez nem vonható vissza! (old) (régi) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + E beállítás mentésekor vagy egy bejegyzés +szerkesztésekor a bejegyzés legrégebbi +előzményei törlődnek, így csak a megadott +mennyiségű bejegyzés marad meg. + + + Limit the amount of history items per entry to: + A bejegyzésenkénti előzmények számának korlátozása a következőre: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + E beállítás mentésekor vagy egy bejegyzés +szerkesztésekor a bejegyzés legrégebbi +előzményei törlődnek, így a fennmaradó előzményelemek +legfeljebb a megadott mennyiséget érik el. + + + Limit the total size of history items per entry to: + A bejegyzésenkénti előzmények számának korlátozása a következőre: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + A bejegyzések áthelyezése a kuka csoportba +az adatbázisból történő törlésük helyett. +A kukából törölt bejegyzések eltávolításra +kerülnek az adatbázisból. + + + Autosave delay since last change + Automatikus mentési késleltetés az utolsó módosítás óta + + + Autosave delay + Automatikus mentési késleltetés + + + Autosave delay since last change in minutes + Automatikus mentési késleltetés percekben az utolsó módosítás óta + + + min + perc + + + Autosave delay since last change checkbox + Automatikus mentési késleltetés az utolsó módosítás óta jelölőnégyzet + + + Public Database Metadata + Nyilvános adatbázis-metaadatok + + + Warning: the following settings are not encrypted. + Figyelmeztetés: a következő beállítások nincsenek titkosítva. + + + Display name: + Megjelenítendő név: + + + Publically visible display name used on the unlock dialog + Nyilvánosan látható megjelenítendő név, amely a feloldási párbeszédablakon használatos + + + Database public display name + Adatbázis nyilvános megjelenítendő neve + + + Display color: + Megjelenítendő szín: + + + Publically visible color used on the unlock dialog + Nyilvánosan látható szín, amely a feloldási párbeszédablakon használatos + + + Database public display color chooser + Adatbázis nyilvános megjelenítendő színének választója + + + Clear + Törlés + + + Display icon: + Megjelenítendő ikon: + + + Select Database Icon + Válasszon adatbázisikont + DatabaseSettingsWidgetKeeShare @@ -2159,6 +2392,141 @@ Ez nem vonható vissza! Adatbázisleírás mező + + DatabaseSettingsWidgetRemote + + Sync Commands + Szinkronizálási parancs + + + Remove + Eltávolítás + + + Command Settings + Parancsbeállítások + + + Name + Név + + + Save + Mentés + + + Download + Letöltés + + + Command: + Parancs: + + + Download command field + Letöltő parancs mező + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + pl.: „sftp felhasznalo@kiszolgalo” vagy „scp felhasznalo@kiszolgalo:TavoliAdatbazis.kdbx {TEMP_DATABASE}” + + + Input: + Bemenet: + + + Download input field + Letöltő bemeneti mező + + + Upload + Feltöltés + + + Upload command field + Feltöltő parancs mező + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + pl.: „sftp felhasznalo@kiszolgalo” vagy „scp {TEMP_DATABASE}felhasznalo@kiszolgalo:TavoliAdatbazis.kdbx” + + + Upload input field + Feltöltő bemeneti mező + + + Name cannot be empty. + A név nem lehet üres. + + + Test + Tesztelés + + + Download command cannot be empty. + A letöltő parancs nem lehet üres. + + + Download failed with error: %1 + A letöltés hibába ütközött: %1 + + + Download finished, but file %1 could not be found. + A letöltés sikeres, de a fájl nem található: %1. + + + Download successful. + Letöltés sikeres. + + + Save Remote Settings + Távoli beállítások mentése + + + You have unsaved changes. Do you want to save them? + El nem mentett módosítások vannak. Szeretné elmenteni őket? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + pl.: +get TavoliAdatbazis.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} helyőrzőként szolgál az adatbázis ideiglenes helyen történő tárolására. +A parancsnak ki kell lépnie, ezért az „sftp” esetében utolsó parancsként az „exit” parancsot el kell küldeni. + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + pl.: +put {TEMP_DATABASE} TavoliAdatbazis.kdbx +exit +--- +{TEMP_DATABASE} helyőrzőként szolgál az adatbázis ideiglenes helyen történő tárolására. +A parancsnak ki kell lépnie, ezért az „sftp” esetében utolsó parancsként az „exit” parancsot el kell küldeni. + + + + Timeout: + Időtúllépés: + + + seconds + másodperc + + DatabaseTabWidget @@ -2191,26 +2559,10 @@ Ez határozottan hiba, jelentse a fejlesztőknek. CSV file CSV-fájl - - Select CSV file - Válasszon CSV-fájlt - Merge database Adatbázis egyesítése - - KeePass 1 database - KeePass 1 adatbázis - - - Open KeePass 1 database - KeePass 1 adatbázis megnyitása - - - Open OPVault - OPVault megnyitása - Export database to CSV file Adatbázis exportálása CSV-fájlba @@ -2223,6 +2575,18 @@ Ez határozottan hiba, jelentse a fejlesztőknek. Writing the HTML file failed. A HTML-fájl mentése sikertelen. + + Export database to XML file + Adatbázis exportálása XML-fájlba + + + XML file + XML-fájl + + + Writing the XML file failed + Az XML-fájl írása sikertelen + Export Confirmation Exportálás megerősítése @@ -2231,26 +2595,22 @@ Ez határozottan hiba, jelentse a fejlesztőknek. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Az adatbázis nem titkosított fájlba lesz exportálva. Így sebezhetőek lesznek a jelszavak és más érzékeny információk. Valóban folytatható a művelet? - - New Database - Új adatbázis - - - %1 [New Database] - Database tab name modifier - %1 [Új adatbázis] - %1 [Locked] Database tab name modifier %1 [Zárolva] + + %1 [Temporary] + Database tab name modifier + %1 [Ideiglenes] + DatabaseWidget - Database Tags - Adatbázis címkék + Searches and Tags + Keresések és címkék Searching… @@ -2300,6 +2660,10 @@ Ez határozottan hiba, jelentse a fejlesztőknek. Expired entries Lejárt bejegyzések + + Entries expiring within %1 day(s) + %1 napon belül lejáró bejegyzések%1 napon belül lejáró bejegyzések + No current database. Nincs aktuális adatbázis. @@ -2324,6 +2688,18 @@ Ez határozottan hiba, jelentse a fejlesztőknek. No Results Nincs találat + + Save + Mentés + + + Enter a unique name or overwrite an existing search from the list: + Adjon meg egy egyedi nevet, vagy írjon felül egy meglévő keresést a listából: + + + Save Search + Keresés mentése + Lock Database? Zárolja az adatbázist? @@ -2352,26 +2728,6 @@ Menti a változásokat? File has changed A fájl módosult - - The database file has changed. Do you want to load the changes? - Az adatbázisfájl módosult. Betölti a módosításokat? - - - Merge Request - Egyesítési kérelem - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Az adatbázisfájl módosult és vannak nem mentett változások. -Egyesíti a módosításokat? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Nem lehet megnyitni az új adatbázisfájlt egy újranyitási kísérlet közben. -Hiba: %1 - Disable safe saves? Letiltható a biztonságos mentés? @@ -2414,9 +2770,94 @@ Letiltható a biztonságos mentés és úgy megkísérelhető a mentés?Could not find database file: %1 Az adatbázis-fájl nem található: %1 - - Entries expiring within %1 day(s) - %1 napon belül lejáró bejegyzések%1 napon belül lejáró bejegyzések + + New Database + Új adatbázis + + + %1 [New Database] + Database tab name modifier + %1 [Új adatbázis] + + + Remote Sync did not contain any download or upload commands. + A távoli szinkronizálás nem tartalmazott le- vagy feltöltési parancsokat. + + + Remote sync '%1' completed successfully! + A távoli szinkronizálás sikeresen befejeződött: %1! + + + Remote sync '%1' failed: %2 + A távoli szinkronizálás (%1) sikertelen: %2 + + + Error while saving database %1: %2 + Hiba az adatbázis (%1) mentése közben: %2 + + + Downloading... + Letöltés… + + + Uploading... + Feltöltés… + + + Syncing... + Szinkronizálás… + + + Remove passkey from entry + Jelkulcs eltávolítása a bejegyzésből + + + Do you want to remove the passkey from this entry? + Valóban eltávolítja a jelkulcsot ebből a bejegyzésből? + + + The database file "%1" was modified externally + A(z) „%1” adatbázisfájl kívülről lett módosítva + + + Do you want to load the changes? + Betölti a módosításokat? + + + Reload database + Adatbázis újratöltése + + + Reloading database… + Adatbázis újratöltése… + + + Reload canceled + Újratöltés megszakítva + + + Reload successful + Újratöltés sikeres + + + Reload pending user action… + Függőben lévő felhasználói művelet újratöltése… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + A(z) „%1” adatbázisfájl külsőleg módosítva volt.<br>Hogyan folytatja?<br><br>Összes módosítás egyesítése<br>A módosítások figyelmen kívül hagyása a lemezre mentésig<br>Mentetlen módosítások elvetése + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + A(z) „%1” adatbázisfájl külsőleg módosítva volt.<br>Hogyan folytatja?<br><br>Összes módosítás egyesítése, majd mentés<br>A lemezen lévő módosítások felülírása<br>Mentetlen módosítások elvetése + + + Database file overwritten. + Adatbázisfájl felülírva. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + A lemezen lévő adatbázisfájl nem oldható fel a jelenlegi hitelesítő adatokkal.<br>A folytatáshoz adjon meg új hitelesítő adatokat, vagy mutasson fel hardverkulcsot. @@ -2451,7 +2892,7 @@ Letiltható a biztonságos mentés és úgy megkísérelhető a mentés? Are you sure you want to remove this URL? - Valóban eltávolítja ezt az URL? + Valóban eltávolítja ezt a webcímet? Properties @@ -2469,13 +2910,9 @@ Letiltható a biztonságos mentés és úgy megkísérelhető a mentés?n/a nincs - - (encrypted) - (titkosított) - Select private key - Személyes kulcs kijelölése + Titkos kulcs kijelölése Entry history @@ -2559,6 +2996,10 @@ Szeretné kijavítani? Hide Elrejtés + + %n hour(s) + %n óra%n óra + %n week(s) %n hét%n hét @@ -2571,9 +3012,9 @@ Szeretné kijavítani? %n year(s) %n év%n év - - %n hour(s) - %n óra%n óra + + Failed to decrypt SSH key, ensure password is correct. + Az SSH-kulcs visszafejtése sikertelen, győződjön meg arról, hogy a jelszó helyes. @@ -2693,10 +3134,20 @@ Szeretné kijavítani? Add new window association Új ablaktársítás hozzáadása + + + + Add item + + + Remove selected window association Kijelölt ablaktársítás eltávolítása + + - + Remove item + + Window title: Ablakcím: @@ -2721,23 +3172,9 @@ Szeretné kijavítani? Custom Auto-Type sequence for this window Egyéni automatikus beírási sorrend ehhez az ablakhoz - - + - Add item - + - - - - - Remove item - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Ezek a beállítások befolyásolják a bejegyzés viselkedését a böngésző kiterjesztésével. - General Általános @@ -2750,25 +3187,13 @@ Szeretné kijavítani? Skip Auto-Submit for this entry Automatikus küldés kihagyása ennél a bejegyzésnél - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Ezt a beállítást csak a böngésző HTTP Auth párbeszédablakának küldje. Bejelölve a normál bejelentkezési űrlapokon ez a bejegyzés nem fog kiválaszthatóként feltűnni. - Use this entry only with HTTP Basic Auth - Bejegyzés alkalmazása csak HTTP Basic Auth-tal - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Ne küldje ezt a beállítást a böngésző HTTP Auth párbeszédablakának. Bejelölve a HTTP Auth párbeszédablakokban ez a bejegyzés nem fog kiválaszthatóként feltűnni. + Bejegyzés alkalmazása csak HTTP Basic hitelesítéssel Do not use this entry with HTTP Basic Auth - Bejegyzés tiltása HTTP Basic Auth-tal - - - Additional URL's - További URL-ek + Bejegyzés tiltása HTTP Basic hitelesítéssel Add @@ -2782,6 +3207,22 @@ Szeretné kijavítani? Edit Szerkesztés + + These settings affect the entry's behaviour with the browser extension. + Ezek a beállítások hatással vannak a böngészőkiterjesztés viselkedésére. + + + Additional URLs + További webcímek + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Ezt a bejegyzést csak a böngésző HTTP hitelesítési párbeszédablakának küldje el. Bejelölve a normál bejelentkezési űrlapokon ez a bejegyzés nem fog kiválaszthatóként feltűnni. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Ne küldje ezt a bejegyzést a böngésző HTTP hitelesítési párbeszédablakának. Bejelölve a HTTP hitelesítési párbeszédablakokban ez a bejegyzés nem fog kiválaszthatóként feltűnni. + EditEntryWidgetHistory @@ -2832,22 +3273,10 @@ Szeretné kijavítani? Notes field Jegyzetek mező - - Toggle the checkbox to reveal the notes section. - Jelölőnégyzet átváltásával felfedhető a jegyzetek szalasz. - Username field Felhasználónév mező - - Toggle notes visible - Jegyzetek láthatóságának átváltása - - - Notes: - Jegyzetek: - Expiration field Lejárati mező @@ -2864,34 +3293,18 @@ Szeretné kijavítani? Presets Előbeállítások - - Password: - Jelszó: - - - URL: - URL: - Url field - URL mező + Webcím mező Download favicon for URL - URL faviconjának letöltése - - - Title: - Cím: + Webcím weblapikonjának letöltése Title field Cím mező - - Username: - Felhasználónév: - Password field Jelszó mező @@ -2900,18 +3313,42 @@ Szeretné kijavítani? Toggle expiration Lejárat átváltása - - Expires: - Lejárat: - - - Tags: - Címkék: - Tags list Címkelista + + &Username: + &Felhasználónév: + + + &Title: + &Cím: + + + &Password: + &Jelszó: + + + UR&L: + UR&L: + + + &Notes: + &Jegyzetek: + + + Toggle notes visibility + Jegyzetek láthatóságának átváltása + + + T&ags: + &Címkék: + + + &Expires: + &Lejárat: + EditEntryWidgetSSHAgent @@ -2949,20 +3386,7 @@ Szeretné kijavítani? Private key - Személyes kulcs - - - External file - Külső fájl - - - Browser for key file - Kulcsfájl böngészése - - - Browse… - Button for opening file dialog - Tallózás… + Titkos kulcs Attachment @@ -2980,6 +3404,23 @@ Szeretné kijavítani? Remove from agent Eltávolítás az ügynöktől + + External file + Külső fájl + + + Browser for key file + Kulcsfájl böngészése + + + Browse… + Button for opening file dialog + Tallózás… + + + Generate + Előállítás + Select attachment file Mellékletfájl kijelölése @@ -3004,6 +3445,10 @@ Szeretné kijavítani? seconds másodperc + + Clear agent + Ügynök törlése + EditGroupWidget @@ -3015,10 +3460,6 @@ Szeretné kijavítani? Icon Ikon - - Browser Integration - Böngészőintegráció - Properties Tulajdonságok @@ -3035,6 +3476,10 @@ Szeretné kijavítani? Group has unsaved changes A csoportnak mentetlen változásai vannak + + Browser Integration + Böngészőintegráció + Enable Engedélyezés @@ -3050,10 +3495,6 @@ Szeretné kijavítani? EditGroupWidgetBrowser - - Edit Group - Csoport szerkesztése - These settings affect to the group's behaviour with the browser extension. Ezek a beállítások befolyásolják a csoport viselkedését a böngésző kiterjesztésével. @@ -3076,19 +3517,35 @@ Szeretné kijavítani? Use entries only with HTTP Basic Auth: - Bejegyzések alkalmazása csak HTTP Basic Auth-tal: + Bejegyzések alkalmazása csak HTTP Basic hitelesítéssel: Only HTTP Auth toggle for this and sub groups - Csak HTTP Auth kapcsoló ennél a csoportnál és alcsoportjainál + Csak HTTP hitelesítési kapcsoló ennél a csoportnál és alcsoportjainál Do not use entries with HTTP Basic Auth: - Bejegyzések tiltása HTTP Basic Auth-tal: + Bejegyzések tiltása HTTP Basic hitelesítéssel: Do not use HTTP Auth toggle for this and sub groups - HTTP Auth kapcsoló tiltása ennél a csoportnál és alcsoportjainál + A HTTP hitelesítési kapcsoló tiltása ennél a csoportnál és alcsoportjainál + + + Omit WWW subdomain from matching: + A WWW altartomány kihagyása a megfeleltetésből: + + + Omit WWW subdomain from matching toggle for this and sub groups + A WWW altartomány kihagyása a megfeleltetésből átkapcsolása ennél a csoportnál és alcsoportjainál + + + Restrict matching to given browser key: + A megfeleltetés az adott böngészőkulcsra korlátozása: + + + Restrict matching to given browser key toggle for this and sub groups + A megfeleltetés az adott böngészőkulcsra korlátozása beállítás be/ki ennél a csoportnál és az alcsoportjainál @@ -3280,19 +3737,19 @@ Támogatott kiterjesztések: %1. Set the URL to use to search for a favicon - URL beállítása a weblapikon kereséséhez + Webcím beállítása a weblapikon kereséséhez Favicon URL - Weblapikon URL + Weblapikon webcíme Download favicon for URL - URL faviconjának letöltése + Webcím weblapikonjának letöltése Download favicon - Favicon letöltése + Weblapikon letöltése Apply selected icon to subgroups and entries @@ -3320,11 +3777,7 @@ Támogatott kiterjesztések: %1. Unable to fetch favicon. - A favicon letöltése sikertelen. - - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - A DuckDuckGo weboldal ikon szolgáltatást az Eszközök → Beállítások → Biztonság pontban lehet engedélyezni + A weblapikon letöltése sikertelen. Existing icon selected. @@ -3358,6 +3811,10 @@ Támogatott kiterjesztések: %1. The following icon(s) failed: A következő ikonnál hiba történt:A következő ikonoknál hiba történt: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + A DuckDuckGo weboldalikon szolgáltatást az Alkalmazásbeállítások → Biztonság pontban lehet engedélyezni + EditWidgetProperties @@ -3434,6 +3891,24 @@ Ez a kijelölt bővítmény hibás működését eredményezheti. %1 - Clone %1 – Klón + + Passkey + Jelkulcso + + + Invalid conversion type: %1 + Érvénytelen átalakítási típus: %1 + + + Invalid conversion syntax: %1 + Érvénytelen átalakítási szintaxis: %1 + + + Invalid regular expression syntax %1 +%2 + Érvénytelen reguláriskifejezés-szintaxis %1 +%2 + EntryAttachments @@ -3442,6 +3917,21 @@ Ez a kijelölt bővítmény hibás működését eredményezheti. A(z) „%1” fájl nem nyitható meg + + EntryAttachmentsDialog + + Form + Űrlap + + + File name + Fájlnév + + + File contents... + Fájltartalom… + + EntryAttachmentsModel @@ -3479,14 +3969,6 @@ Ez a kijelölt bővítmény hibás működését eredményezheti. Remove Eltávolítás - - Rename selected attachment - Kijelölt melléklet átnevezése - - - Rename - Átnevezés - Open selected attachment Kijelölt melléklet megnyitása @@ -3527,7 +4009,7 @@ Ez a kijelölt bővítmény hibás működését eredményezheti. Are you sure you want to overwrite the existing file "%1" with the attachment? - Valóban felül kívánja írni a meglévő „%1” fájl a melléklettel? + Valóban felülírja a meglévő „%1” fájlt a melléklettel? Confirm overwrite @@ -3562,12 +4044,6 @@ Ez a kijelölt bővítmény hibás működését eredményezheti. Confirm Overwrite Attachment Melléklet felülírásának megerősítése - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - A mellélket már létezik: „%1”. -Valóban felülírható a meglévő melléklet? - Confirm Attachment Melléklet megerősítése @@ -3577,10 +4053,10 @@ Valóban felülírható a meglévő melléklet? Your database may get very large and reduce performance. Are you sure to add this file? - %1 egy nagy fájl (%2 MB). -Az adatbázis így nagyon nagy lesz és rontani fogja a teljesítményt. + A(z) %1 egy nagy fájl (%2 MB). +Az adatbázis így nagyon nagy lesz, és rontani fogja a teljesítményt. -Biztosan hozzáadható ez a fájl? +Valóban hozzáadja ezt a fájlt? Attachment modified @@ -3602,6 +4078,24 @@ Error: %1 A frissült melléklet mentése sikertelen. Hiba: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + A mellélket már létezik: „%1”. +Valóban felülírható a meglévő melléklet? + + + New + Új + + + Preview + Előnézet + + + Failed to preview an attachment: Attachment not found + A melléklet előnézete sikertelen: a melléklet nem található + EntryAttributesModel @@ -3646,7 +4140,7 @@ Hiba: %1 URL - URL + Webcím Notes @@ -3718,7 +4212,7 @@ Hiba: %1 URL - URL + Webcím Notes @@ -3796,6 +4290,14 @@ Hiba: %1 Has TOTP Van TOTP-je + + Background Color + Háttérszín + + + Group Path + Csoportútvonal + EntryPreviewWidget @@ -3816,8 +4318,8 @@ Hiba: %1 Jelszó - Notes - Jegyzetek + URL + Webcím Expiration @@ -3836,8 +4338,8 @@ Hiba: %1 Felhasználónév - URL - URL + Notes + Jegyzetek Advanced @@ -3887,6 +4389,10 @@ Hiba: %1 Never Soha + + Double click to copy value + Dupla kattintás az érték másolásához + Enabled Engedélyezett @@ -3895,12 +4401,20 @@ Hiba: %1 Disabled Tiltott + + Double click to copy to clipboard + Dupla kattintás a vágólapra másoláshoz + EntryURLModel Invalid URL - Érvénytelen URL + Érvénytelen webcím + + + Duplicate URL + Ismételt webcím @@ -3917,6 +4431,10 @@ Hiba: %1 Reset to defaults Visszaállítás alapértelmezettre + + + %1 entry(s)... + + %1 bejegyzés…+ %1 bejegyzés… + ExportDialog @@ -4088,7 +4606,7 @@ This will leave your passwords and sensitive information vulnerable! IconDownloaderDialog Download Favicons - Faviconok letöltése + Weblapikonok letöltése Cancel @@ -4106,7 +4624,7 @@ A DuckDuckGo weboldal ikon szolgáltatást az alkalmazás beállításai közöt URL - URL + Webcím Status @@ -4137,6 +4655,199 @@ A DuckDuckGo weboldal ikon szolgáltatást az alkalmazás beállításai közöt Weblapikonok letöltése (%1/%2)… + + ImportWizard + + Import Wizard + Importálási varázsló + + + + ImportWizardPageReview + + WizardPage + Varázsló oldal + + + Entry count: %1 + Bejegyzésszám: %1 + + + Group + Csoport + + + Title + Cím + + + Username + Felhasználónév + + + Password + Jelszó + + + Url + Webcím + + + Could not load key file. + A kulcsfájl nem tölthető be. + + + Could not open remote database. Password or key file may be incorrect. + A távoli adatbázis nem nyitható meg. A jelszó vagy a kulcsfájl helytelen lehet. + + + + ImportWizardPageSelect + + Form + Űrlap + + + Import File Selection + Fájlkiválasztás importálása + + + Password: + Jelszó: + + + Key File: + Kulcsfájl: + + + Browse… + Tallózás… + + + Import Into: + Importálás ide: + + + New Database + Új adatbázis + + + No unlocked databases available + Nem érhetők el feloldott adatbázisok + + + Existing Database: + Meglévő adatbázis: + + + Import File: + Fájl importálása + + + Comma Separated Values (.csv) + Vesszővel elválasztott értékek (.csv) + + + 1Password Export (.1pux) + 1Password export (.1pux) + + + 1Password Vault (.opvault) + 1Password széf (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 adatbázis (.kdb) + + + Open OPVault + OPVault megnyitása + + + Select import file + Importálási fájl kiválasztása + + + All files + Minden fájl + + + Key files + Kulcsfájlok + + + Select key file + Kulcsfájl kiválasztása + + + Comma Separated Values + Vesszővel elválasztott értékek + + + 1Password Export + 1Password export + + + Bitwarden JSON Export + Bitwarden JSON-export + + + 1Password Vault + 1Password széf + + + KeePass1 Database + KeePass 1 adatbázis + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON-export + + + Temporary Database + Ideiglenes adatbázis + + + Command: + Parancs: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + pl.: „sftp felhasznalo@kiszolgalo” vagy „scp felhasznalo@kiszolgalo:TavoliAdatbazis.kdbx {TEMP_DATABASE}” + + + Input: + Bemenet: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + például: +get TavoliAdatbazis.kdbx {TEMP_DATABASE} +exit +--- +A {TEMP_DATABASE} helyőrzőként szolgál az adatbázis ideiglenes helyen történő tárolására. +A parancsnak ki kell lépnie, ezért az „sftp” esetén utolsó parancsként el kell küldeni az „exit” parancsot. + + + + Remote Database (.kdbx) + Távoli adatbázis (.kdbx) + + KMessageWidget @@ -4556,30 +5267,19 @@ Line %2, column %3 Private key is an attachment but no attachments provided. - A személyes kulcs egy melléklet lenne, de nincs melléklet. + A titkos kulcs egy melléklet lenne, de nincs melléklet. Private key is empty - Üres a személyes kulcs + Üres a titkos kulcs File too large to be a private key - A fájl túl nagy ahhoz, hogy személyes kulcs legyen + A fájl túl nagy ahhoz, hogy titkos kulcs legyen Failed to open private key - Személyes kulcs megnyitása meghiúsult - - - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass1 adatbázis importálása - - - Unable to open the database. - Nem lehet megnyitni az adatbázist. + A titkos kulcs megnyitása sikertelen @@ -4936,11 +5636,7 @@ Valóban folytatható a művelet ezzel a fájllal? &Recent Databases - &Friss adatbázisok - - - &Import - &Importálás + &Legutóbb használt adatbázisok &Export @@ -4962,6 +5658,10 @@ Valóban folytatható a művelet ezzel a fájllal? TOTP TOTP + + Tags + Címkék + &Groups &Csoportok @@ -5006,34 +5706,18 @@ Valóban folytatható a művelet ezzel a fájllal? &New Database… Ú&j adatbázis - - Create a new database - Új adatbázis létrehozása - &Merge From Database… &Egyesítés adatbázisból… - - Merge from another KDBX database - Egyesítés egy másik KeePassX adatbázisból - &New Entry… Új b&ejegyzés… - - Add a new entry - Új bejegyzés hozzáadása - &Edit Entry… Bejegyzés sze&rkesztése… - - View or edit entry - Bejegyzés megtekintése vagy szerkesztése - &Delete Entry… Bejegyzés &törlése… @@ -5042,10 +5726,6 @@ Valóban folytatható a művelet ezzel a fájllal? &New Group… Ú&j csoport… - - Add a new group - Új csoport hozzáadása - &Edit Group… Csoport sz&erkesztése… @@ -5056,7 +5736,7 @@ Valóban folytatható a művelet ezzel a fájllal? Download All &Favicons… - Minden favicon &letöltése… + Összes weblapikon &letöltése… Sort &A-Z @@ -5078,18 +5758,10 @@ Valóban folytatható a művelet ezzel a fájllal? Database &Reports… Adatbázis &jelentések… - - Statistics, health check, etc. - Statisztika, állapotfelmérés, stb. - &Database Settings… Adatbázis-&beállítások… - - Database settings - Adatbázis-beállítások - &Clone Entry… Bejegyzés &klónozása… @@ -5098,34 +5770,18 @@ Valóban folytatható a művelet ezzel a fájllal? Move u&p Mozgatás &fel - - Move entry one step up - Bejegyzés mozgatása egy lépéssel feljebb - Move do&wn Mozgatás &le - - Move entry one step down - Bejegyzés mozgatása egy lépéssel lejebb - Copy &Username &Felhasználónév másolása - - Copy username to clipboard - Felhasználónév másolása a vágólapra - Copy &Password &Jelszó másolása - - Copy password to clipboard - Jelszó másolása a vágólapra - &Settings &Beállítások @@ -5140,11 +5796,11 @@ Valóban folytatható a művelet ezzel a fájllal? Download &Favicon - &Favicon letöltése + &Weblapikon letöltése Open &URL - &URL megnyitása + &Webcím megnyitása &Lock Database @@ -5159,25 +5815,13 @@ Valóban folytatható a művelet ezzel a fájllal? &Cím - Copy title to clipboard - Cím másolása a vágólapra - - - &URL - &URL - - - Copy URL to clipboard - URL másolása a vágólapra + Copy &URL + &Webcím másolása &Notes &Jegyzetek - - Copy notes to clipboard - Jegyzetek másolása a vágólapra - &CSV File… &CSV-fájl… @@ -5190,26 +5834,14 @@ Valóban folytatható a művelet ezzel a fájllal? KeePass 1 Database… KeePass 1 adatbázis… - - Import a KeePass 1 database - KeePass 1 adatbázis importálása - 1Password Vault… 1Password Vault… - - Import a 1Password Vault - 1Password Vault importálása - CSV File… CSV-fájl… - - Import a CSV file - CSV-fájl importálása - Show TOTP TOTP megjelenítése @@ -5226,6 +5858,10 @@ Valóban folytatható a művelet ezzel a fájllal? Copy &TOTP &TOTP másolása + + Copy Password and TOTP + Jelszó és TOTP másolása + E&mpty recycle bin &Kuka ürítése @@ -5250,10 +5886,6 @@ Valóban folytatható a művelet ezzel a fájllal? &Online Help &Online súgó - - Go to online documentation - Ugrás az online dokumentációra - &User Guide Felhasználói &kézikönyv @@ -5298,6 +5930,10 @@ Valóban folytatható a művelet ezzel a fájllal? Classic (Platform-native) Klasszikus (platform natív) + + Show Menubar + Menü megjelenítése + Show Toolbar Eszköztár megjelenítése @@ -5322,6 +5958,10 @@ Valóban folytatható a művelet ezzel a fájllal? Clone Group... Csoport klónozása… + + &XML File… + &XML-fájl… + Clear history Előzmények törlése @@ -5348,10 +5988,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - FIGYELMEZTETÉS: A Qt verziója miatt a KeePassXC összeomolhat egy képernyő-billentyűzettel. -Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon. + No Tags + Nincsenek címkék Restore Entry(s) @@ -5381,6 +6019,10 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Quit KeePassXC Kilépés a KeePassXC-ből + + %1 Entry(s) + %1 bejegyzés%1 bejegyzés + Please present or touch your YubiKey to continue… Kérjük, tegye elérhetővé vagy érintse meg a YubiKey-t a folytatáshoz… @@ -5393,6 +6035,314 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< You must restart the application to apply this setting. Would you like to restart now? Ennek a beállításnak az érvényre kerüléséhez újra kell indítani az alkalmazást. Legyen azonnal újraindítva? + + Allow Screen Capture + Képernyőrögzítés engedélyezése + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + 1Password 1PUX-fájl importálása + + + Import… + Importálás… + + + Passkeys… + Jelkulcsok… + + + Import Passkey + Jelkulcs importálása + + + Remote S&ync… + Távoli &szinkronizálás… + + + Quit Application + Kilépés az alkalmazásból + + + Open About Dialog + Névjegy párbeszédablak megnyitása + + + Open Database + Adatbázis megnyitása + + + Create Database + Adatbázis létrehozása + + + Merge From Database + Egyesítés adatbázisból + + + Create Entry + Bejegyzés létrehozása + + + Edit Entry + Bejegyzés szerkesztése + + + Delete Entry + Bejegyzés törlése + + + Create Group + Csoport létrehozása + + + Edit Group + Csoport szerkesztése + + + Delete Group + Csoport törlése + + + Download All Favicons + Kedvenc weblapikonok letöltése + + + Sort Groups A-Z + Rendezés: csoportok A–Z + + + Sort Groups Z-A + Rendezés: csoportok Z–A + + + Save Database As + Adatbázis mentése más néven + + + Show Database Security + Adatbázis biztonságának megjelenítése + + + Show Database Reports + Adatbázis-jelentések megjelenítése + + + Show Database Settings + Adatbázis-beállítások megjelenítése + + + Show Passkeys + Jelkulcsok megjelenítése + + + Clone Entry + Bejegyzés klónozása + + + Move Entry Up + Bejegyzés feljebb helyezése + + + Move Entry Down + Bejegyzés lentebb helyezése + + + Copy Username + Felhasználónév másolása + + + Copy Password + Jelszó másolása + + + Show Application Settings + Alkalmazásbeállítások megjelenítése + + + Show Password Generator + Jelszó-előállító megjelenítése + + + Remove Passkey From Entry + Jelkulcs eltávolítása a bejegyzésből + + + Perform Auto-Type: {USERNAME} + Automatikus beírás végrehajtása: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Automatikus beírás végrehajtása: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Automatikus beírás végrehajtása: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Automatikus beírás végrehajtása: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Automatikus beírás végrehajtása: {TOTP} + + + Copy Title + Cím másolása + + + Copy URL + Webcím másolása + + + Copy Notes + Jegyzetek másolása + + + Export to CSV + Exportálás CSV-be + + + Export to HTML + Exportálás HTML-be + + + Import KeePass1 Database + KeePass1 adatbázis importálása + + + Import 1Password Vault + 1Password széf importálása + + + Import CSV File + CSV-fájl importálása + + + Show TOTP QR Code + TOTP QR-kód megjelenítése + + + Set up TOTP + TOTP beállítása + + + Empty Recycle Bin + Kuka ürítése + + + Open Donation Website + Adományozási weblap megnyitása + + + Open Bug Report + Hibajelentés megnyitása + + + Open Online Documentation + Online dokumentáció megjelenítése + + + Open Keyboard Shortcuts Guide + Gyorsbillentyűk útmutatójának megnyitása + + + Save Database Backup + Biztonsági mentés az adatbázisról + + + SSH Agent: Add Key + SSH ügynök: kulcs hozzáadása + + + SSH Agent: Remove Key + SSH ügynök: kulcs eltávolítása + + + Toggle Compact Mode + Kompakt mód be/ki + + + Set Theme: Automatic + Téma beállítása: automatikus + + + Set Theme: Light + Téma beállítása: világos + + + Set Theme: Dark + Téma beállítása: sötét + + + Set Theme: Classic + Téma beállítása: klasszikus + + + Toggle Show Menubar + Menü megjelenítésének átkapcsolása + + + Toggle Show Toolbar + Eszköztár megjelenítése be/ki + + + Toggle Show Preview Panel + Előnézeti panel megjelenítése be/ki + + + Toggle Always on Top + Mindig felül be/ki + + + Toggle Hide Usernames + Felhasználónevek elrejtése be/ki + + + Toggle Hide Passwords + Jelszavak elrejtése be/ki + + + Export to XML + Exportálás XML-be + + + Toggle Allow Screen Capture + Képernyőrögzítés engedélyezése be/ki + + + Show Group Panel + Csoport panel megjelenítése + + + Toggle Show Group Panel + Csoport panel megjelenítése be/ki + + + Setup Remote Sync… + Távoli szinkronizálás beállításai + + + Password Generator + Jelszógenerátor + + + E&xpire Entry… + Bejegyzés &elévültté tétele… + + + Clear SSH Agent + SSH-ügynök törlése + + + Clear all identities in ssh-agent + Az ssh-agentben található összes személyazonosság törlése + ManageDatabase @@ -5450,26 +6400,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Overwriting %1 [%2] %1 felülírása [%2] - - older entry merged from database "%1" - régebbi bejegyzés összeolvasztva a(z) „%1” adatbázisból - - - Adding backup for older target %1 [%2] - Biztonsági mentés hozzáadása a régebbi %1 célhoz [%2] - - - Adding backup for older source %1 [%2] - Biztonsági mentés hozzáadása a régebbi %1 forráshoz [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - A régebbi cél újra alkalmazása az újabb %1 forráson [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - A régebbi forrás újra alkalmazása az újabb %1 célon [%2] - Synchronizing from newer source %1 [%2] Szinkronizálás az újabb %1 forrásból [%2] @@ -5529,14 +6459,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Itt állíthatja be az adatbázis titkosítási beállításokat. Ne aggódjon, később is megváltoztathatja az adatbázis-beállításokban. - - Advanced Settings - Speciális beállítások - - - Simple Settings - Egyszerű beállítások - NewDatabaseWizardPageDatabaseKey @@ -5571,6 +6493,25 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Töltse ki a megjelenítendő nevet és a nem kötelező leírást az új adatbázishoz: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + A melléklet neve nem lehet üres + + + Attachment with the same name already exists + Már létezik ugyanilyen nevű melléklet + + + Save attachment + Melléklet mentése + + + New entry attachment + Új bejegyzésmelléklet + + NixUtils @@ -5617,15 +6558,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< %1 bájt egyszerű szöveg a várt, de ehelyett a talált: %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Az adatbázis olvasása nem hozott létre példányt: -%1 - - OpVaultReader @@ -5634,7 +6566,7 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Directory .opvault must be readable - A .opvault mappa olvasható kell legyen + A .opvault mappa olvashatónak kell lennie Directory .opvault/default must exist @@ -5642,11 +6574,11 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Directory .opvault/default must be readable - A .opvault/default mappa olvasható kell legyen + A .opvault/default mappa olvashatónak kell lennie Unable to decode masterKey: %1 - Nem dekódolható a mesterkulcs: %1 + A mesterkulcs nem dekódolható: %1 Unable to derive master key: %1 @@ -5669,11 +6601,11 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Key file way too small. - A kulcsfájl útja túl kicsi. + A kulcsfájl túl kicsi. Key file magic header id invalid - Érvénytelen a kulcsfájl mágikus fejlécazonosítója + Érvénytelen a kulcsfájl mágikus fejléc-azonosítója Found zero keys @@ -5681,7 +6613,7 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Failed to read public key. - Nyilvános kulcs olvasása sikertelen. + A nyilvános kulcs olvasása sikertelen. Corrupted key file, reading private key failed @@ -5693,12 +6625,16 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< No private key payload to decrypt - Nincs dekódolható adat a személyes kulcsból + Nincs titkos kulcs megadva a visszafejtéshez Unknown cipher: %1 Ismeretlen titkosító: %1 + + AES-256/GCM is currently not supported + AES-256/GCM jelenleg nem támogatott + Passphrase is required to decrypt this key Jelmondat szükséges a kulcsfájl visszafejtéséhez @@ -5717,7 +6653,7 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Failed to initialize cipher: %1 - Titkosító indítása sikertelen: %1 + A titkosító előkészítése sikertelen: %1 Decryption failed: %1 @@ -5745,7 +6681,7 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Unexpected EOF while reading private key - Nem várt EOF a személyes kulcs olvasása közben + Nem várt EOF a titkos kulcs olvasása közben Can't write public key as it is empty @@ -5757,34 +6693,190 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Can't write private key as it is empty - Nem lehet írni a személyes kulcs, mivel üres + Nem lehet írni a titkos kulcsot, mivel üres Unexpected EOF when writing private key - Nem várt EOF a személyes kulcs írásakor + Nem várt EOF a titkos kulcs írásakor + + + (encrypted) + (titkosított) - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - A jelszavak nem egyeznek + SSH Key Generator + SSH-kulcsgenerátor - Passwords match so far - A jelszavak eddig megegyeznek + Type + Típus - Toggle Password (%1) - Jelszó átváltása (%1) + Bits + Bitek - Generate Password (%1) - Jelszó előállítása (%1) + Comment + Megjegyzés + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC – Jelkulcs exportálása - Warning: Caps Lock enabled! - Figyelem: a Caps Lock be van kapcsolva! + Filenames will be generated with title and .passkey file extension. + A fájlnevek a cím alapján lesznek előállítva, és .passkey kiterjesztésűek lesznek. + + + Export entries + Bejegyzések exportálása + + + Export Selected + Kijelöltek exportálása + + + Cancel + Mégse + + + Export to folder + Exportálás mappába + + + Export the following passkey entries. + A következő jelkulcsot tartalmazó bejegyzések exportálása. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Jelkulcs exportálása + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + A(z) „%1.passkey” fájl már létezik. +Felülírja? + + + + Cannot open file + A fájl nem nyitható meg + + + Cannot open file "%1" for writing. + A(z) „%1” fájl nem nyitható meg írásra. + + + Cannot write to file + Nem lehet a fájlba írni + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC – Jelkulcs importálása + + + Username: %1 + Felhasználónév: %1 + + + Group + Csoport + + + Database + Adatbázis + + + Import Passkey + Jelkulcs importálása + + + Import + Importálás + + + Cancel + Mégse + + + Entry + Bejegyzés + + + Create new entry + Új bejegyzés importálása + + + Relying Party: %1 + Közvetítő fél: %1 + + + Import the following passkey: + A következő jelkulcs importálása: + + + Import the following passkey to this entry: + A következő jelkulcs importálása ebbe a bejegyzésbe: + + + Default passkeys group (Imported Passkeys) + Jelkulcsok alapértelmezett csoportja (importált jelkulcsok) + + + + PasskeyImporter + + Passkey file + Jelkulcsfájl + + + All files + Minden fájl + + + Cannot open file + A fájl nem nyitható meg + + + Cannot open file "%1" for reading. + A(z) „%1” fájl nem nyitható meg olvasásra. + + + Open passkey file + Jelkulcsfájl megnyitása + + + Cannot import passkey + A jelkulcs nem importálható + + + Cannot import passkey file "%1". Data is missing. + A(z) „%1” jelkulcsfájl nem importálható. Az adatok hiányoznak. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + A(z) „%1” jelkulcsfájl nem importálható. +A következő adatok hiányoznak: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + A(z) „%1” jelkulcsfájl nem importálható. A titkos kulcs hiányzik vagy hibás. @@ -5965,10 +7057,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Also choose from: Tartalmazhat ezekből is: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Kihagyott karakterek: „0”, „1”, „l”, „I”, „O”, „|”, „﹒” - Exclude look-alike characters Hasonlóan kinéző karakterek kizárása @@ -5993,10 +7081,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Word Count: Szavak száma: - - Character Count: - Karakterszám: - Word Case: Minden Szó Nagybetűs @@ -6009,10 +7093,6 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Add custom wordlist Egyéni szólista hozzáadása - - character - karakter - Close Bezárás @@ -6049,6 +7129,30 @@ Javasoljuk az AppImage alkalmazását, amely elérhető a letöltések oldalon.< Entropy: %1 bit Entrópia: %1 bit + + Password Quality: %1 + Jelszóminőség: %1 + + + Poor + Password quality + Silány + + + Weak + Password quality + Gyenge + + + Good + Password quality + + + + Excellent + Password quality + Kiváló + Confirm Delete Wordlist Szólista törlésének megerősítése @@ -6096,8 +7200,47 @@ Valóban felülírja? Speciális karakterek - Password Quality: %1 - Jelszóminőség: %1 + passwordLength + jelszóhossz + + + Characters: %1 + Karakterszám: %1 + + + MIXED case + VEGYES eset + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Kihagyott karakterek: „0”, „1”, „l”, „I”, „O”, „|”, „﹒”, „B”, „8”, „G”, „6” + + + + PasswordWidget + + Passwords do not match + A jelszavak nem egyeznek + + + Passwords match so far + A jelszavak eddig megegyeznek + + + Toggle Password (%1) + Jelszó átváltása (%1) + + + Generate Password (%1) + Jelszó előállítása (%1) + + + Warning: Caps Lock enabled! + Figyelem: a Caps Lock be van kapcsolva! + + + Quality: %1 + Minőség: %1 Poor @@ -6119,6 +7262,10 @@ Valóban felülírja? Password quality Kiváló + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Jelszó láthatóságának átváltása Ctrl + H-val. Jelszó-előállító megnyitása Ctrl + G-vel. + PickcharsDialog @@ -6135,6 +7282,21 @@ Valóban felülírja? Nyomja meg a &Tab billentyűt a karakterek között + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Bejegyzésmelléklet előnézete + + + No preview available + Nem érhető el előnézet + + + Image format not supported + A képformátum nem támogatott + + QMessageBox @@ -6173,6 +7335,10 @@ Valóban felülírja? Continue Folytatás + + Continue with weak password + Folytatás gyenge jelszóval + QObject @@ -6218,7 +7384,7 @@ Valóban felülírja? No URL provided - Nincs URL biztosítva + Nincs megadva webcím No logins found @@ -6262,11 +7428,11 @@ Valóban felülírja? URL for the entry. - Bejegyzés URL-je. + A bejegyzés webcíme. URL - URL + Webcím Notes for the entry. @@ -6566,9 +7732,13 @@ Valóban felülírja? Too many arguments provided. Túl sok argumentum lett megadva. + + Path of the database. + Adatbázis útvonala. + Target decryption time in MS for the database. - Megcélzott visszafejtési idő a ms-ban az adatbázis számára. + Megcélzott visszafejtési idő ms-ban az adatbázis számára. time @@ -6586,10 +7756,6 @@ Valóban felülírja? Create a new database. Új adatbázis létrehozása. - - Path of the database. - Adatbázis útvonala. - Invalid decryption time %1. Érvénytelen visszafejtési idő: %1. @@ -6634,6 +7800,158 @@ Valóban felülírja? Successfully created new database. Az adatbázis sikeresen létre lett hozva. + + Unset the password for the database. + Az adatbázis jelszavának visszavonása. + + + Unset the key file for the database. + Az adatbázis kulcsfájljának visszavonása + + + Edit a database. + Adatbázis szerkesztése. + + + Cannot use %1 and %2 at the same time. + Nem használható %1 és %2 egyidejűleg. + + + Could not change the database key. + Nem sikerült az adatbázis kulcsának módosítása. + + + Database was not modified. + Az adatbázis nem lett módosítva. + + + Writing the database failed: %1 + Az adatbázis kiírása sikertelen: %1 + + + Successfully edited the database. + Az adatbázis szerkesztése sikeres. + + + Cannot remove password: The database does not have a password. + A jelszó nem távolítható el: Az adatbázisnak nincs jelszava. + + + Cannot remove file key: The database does not have a file key. + A kulcsfájl nem távolítható el. Az adatbázisnak nincs kulcsfájlja. + + + Loading the new key file failed: %1 + Az új kulcsfájl betöltése sikertelen: %1 + + + Found unexpected Key type %1 + Váratlan kulcstípus található: %1 + + + Cannot remove all the keys from a database. + Nem távolítható el az összes kulcs az adatbázisból + + + Show a database's information. + Adatbázis információinak megjelenítése. + + + UUID: + UUID: + + + Name: + Név: + + + Description: + Leírás: + + + Cipher: + Titkosító: + + + KDF: + Kulcsszármaztató függvény (KDF): + + + Recycle bin is enabled. + Kuka engedélyezve. + + + Recycle bin is not enabled. + A kuka nincs engedélyezve. + + + Location + Hely + + + Database created + Adatbázis létrehozva + + + Last saved + Legutóbb mentve + + + Unsaved changes + Nem mentett módosítsok + + + yes + igen + + + no + nem + + + Number of groups + Csoportszám + + + Number of entries + Bejegyzésszám + + + Number of expired entries + Lejárt bejegyzések száma + + + Unique passwords + Egyedi jelszavak + + + Non-unique passwords + Nem egyedi jelszavak + + + Maximum password reuse + Maximális jelszó-újrahasznosítás + + + Number of short passwords + Rövid jelszavak száma + + + Number of weak passwords + Gyenge jelszavak száma + + + Entries excluded from reports + Jelentésekből kizárt bejegyzések + + + Average password length + Átlagos jelszóhossz + + + %1 characters + %1 karakter + Word count for the diceware passphrase. Szavak számra a diceware jelmondat számára. @@ -6657,10 +7975,6 @@ Valóban felülírja? Invalid word count %1 Érvénytelen a szavak száma: %1 - - The word list is too small (< 1000 items) - A szavak listája túl rövid (< 1000 elem) - Title for the entry. Bejegyzés címe. @@ -6685,10 +7999,6 @@ Valóban felülírja? Enter new password for entry: Adja meg a bejegyzés új jelszavát: - - Writing the database failed: %1 - Az adatbázis kiírása sikertelen: %1 - Successfully edited entry %1. A(z) %1 bejegyzése sikeresen szerkesztve. @@ -6809,10 +8119,6 @@ Valóban felülírja? Exit interactive mode. Kilépés az interaktív módból. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Exportálási formátum. Lehetőségek: „xml” vagy „csv”. Az alapértelmezett az „xml”. - Exports the content of a database to standard output in the specified format. Szabványos kimenetre exportálja az adatbázis tartalmát a meghatározott formátumban. @@ -6913,106 +8219,6 @@ Valóban felülírja? Successfully imported database. Sikeres adatbázis importálás. - - Show a database's information. - Adatbázis információinak megjelenítése. - - - UUID: - UUID: - - - Name: - Név: - - - Description: - Leírás: - - - Cipher: - Titkosító: - - - KDF: - Kulcsszármaztató függvény (KDF): - - - Recycle bin is enabled. - Kuka engedélyezve. - - - Recycle bin is not enabled. - A kuka nincs engedélyezve. - - - Location - Hely - - - Database created - Adatbázis létrehozva - - - Last saved - Legutóbb mentve - - - Unsaved changes - Nem mentett módosítsok - - - yes - igen - - - no - nem - - - Number of groups - Csoportszám - - - Number of entries - Bejegyzésszám - - - Number of expired entries - Lejárt bejegyzések száma - - - Unique passwords - Egyedi jelszavak - - - Non-unique passwords - Nem egyedi jelszavak - - - Maximum password reuse - Maximális jelszó-újrahasznosítás - - - Number of short passwords - Rövid jelszavak száma - - - Number of weak passwords - Gyenge jelszavak száma - - - Entries excluded from reports - Jelentésekből kizárt bejegyzések - - - Average password length - Átlagos jelszóhossz - - - %1 characters - %1 karakter - Unknown command %1 Ismeretlen parancs: %1 @@ -7185,6 +8391,10 @@ Elérhető parancsok: Show the protected attributes in clear text. A védett attribútumok megjelenítése egyszerű szövegként. + + Show all the attributes of the entry. + Bejegyzés összes attribútumának megjelenítése. + Show the attachments of the entry. Egy bejegyzés mellékleteinek megjelenítése. @@ -7255,6 +8465,10 @@ Fontolja meg, hogy új kulcsfájlt állítson elő. Invalid YubiKey serial %1 Érvénytelen YubiKey sorozatszám: %1 + + Please present or touch your YubiKey to continue. + Tegye elérhetővé vagy érintse meg a YubiKeyt a folytatáshoz. + Enter password to encrypt database (optional): Adjon meg egy jelszót az adatbázis titkosításához (válaszható): @@ -7442,8 +8656,8 @@ Kernel: %3 %4 %1 perc%1 perc - Botan library must be at least 2.11.x, found %1.%2.%3 - A Botan könyvtár legalább 2.11.x-es kellene legyen, de csak ez található: %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + A Botran programkönyvtárból legalább a következő verzió szükséges: %1, de a következő található: %2.%3.%4 Cryptographic libraries: @@ -7493,18 +8707,6 @@ Kernel: %3 %4 file empty a fájl üres - - malformed string - rosszul formázott karakterlánc - - - missing closing quote - hiányzó lezáró idézőjel - - - %1: (row, col) %2,%3 - %1: (sor, oszlop) %2,%3 - AES 256-bit 256 bites AES @@ -7683,14 +8885,6 @@ Kernel: %3 %4 read password of the database from stdin adatbázis jelszó beolvasása az stdin-ről - - allow app screen recordering and screenshots - Képernyőmentések és felvételek engedélyezése az alkalmazás számára - - - Locked databases. - Zárolt adatbázisok. - Database failed to lock. Adatbázis-zárolás sikertelen. @@ -7699,6 +8893,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. A KeePassXC egy másik példánya is fut. + + KeePassXC is not running. No open database to lock + A KeePassXC nem fut. Nincs megnyitott adatbázis, amit zárolni lehetne + Fatal error while testing the cryptographic functions. Végzetes hiba a kriptográfiai funkciók tesztelése közben. @@ -7707,10 +8905,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC – Hiba - - Warning: Failed to prevent screenshots on a top level window! - Figyelem: Nem sikerült megakadályozni a képernyőképek készítését egy felső szintű ablakban! - Database password: Adatbázis jelszava @@ -7731,11 +8925,315 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. - Nem sikerült a bejelentkezés a Windows Hello-val. + Nem sikerült a bejelentkezés a Windows Hellóval. - Please present or touch your YubiKey to continue. - Tegye elérhetővé vagy érintse meg a YubiKeyt a folytatáshoz. + Warning: Failed to block screenshot capture on a top-level window. + Figyelem: Nem sikerült megakadályozni a képernyőrögzítést egy felső szintű ablakban. + + + Invalid Cipher + Érvénytelen titkosító + + + Invalid KDF + Érvénytelen KDF + + + Access to all entries is denied + Az összes bejegyzés elérése megtagadva + + + allow screenshots and app recording (Windows/macOS) + képernyőképek és alkalmazásrögzítés engedélyezése (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + A kulcsfájl beállítása az adatbázishoz. +Ez a kapcsoló elavult, használja helyette a --set-key-file kapcsolót. + + + Databases have been locked. + Az adatbázisok zárolva vannak. + + + Attestation not supported + Az igazolás nem támogatott + + + Credential is excluded + A hitelesítési adat ki van zárva + + + Passkeys request canceled + A jelkulcskérés megszakítva + + + Invalid user verification + Érvénytelen felhasználóellenőrzés + + + Empty public key + Üres nyilvános kulcs + + + Invalid URL provided + Érvénytelen webcím lett megadva + + + Passkeys + Jelkulcsok + + + AES initialization failed + Az AES előkészítése sikertelen + + + AES encrypt failed + Az AES-titkosítás sikertelen + + + Failed to store in Linux Keyring + A linuxos kulcstartó tárolása sikertelen + + + Polkit returned an error: %1 + A Polkit hibát adott vissza: %1 + + + Could not locate key in keyring + A kulcstartóban lévő kulcs nem található + + + Could not read key in keyring + A kulcstartóban lévő kulcs nem olvasható + + + AES decrypt failed + Az AES-titkosítás feloldása sikertelen + + + No Polkit authentication agent was available + Nem érhető el Polkit hitelesítési ügynök + + + Polkit authorization failed + A Polkit-hitelesítés sikertelen + + + No Quick Unlock provider is available + Nem érhető el gyors feloldási szolgáltató + + + Failed to init KeePassXC crypto. + KeePassXC crypto indítása sikertelen. + + + Failed to encrypt key data. + A kulcsadatok titkosítása sikertelen. + + + Failed to get Windows Hello credential. + A Windows Hello hitelesítési adatok lekérése sikertelen. + + + Failed to decrypt key data. + A kulcsadatok visszafejtése sikertelen. + + + Origin is empty or not allowed + Az eredet üres vagy nem engedélyezett + + + Effective domain is not a valid domain + Az effektív tartomány érvénytelen + + + Origin and RP ID do not match + Az eredet és az RP azonosító nem egyezik + + + No supported algorithms were provided + Nem lett támogatott algoritmus megadva + + + Wait for timer to expire + Várakozás az időzítő lejáratára + + + Challenge is shorter than required minimum length + A kihívás rövidebb mint a legrövidebb várt hossz + + + user.id does not match the required length + A user.id nem a szükséges hosszúságú + + + Favorite + Tag for favorite entries + Kedvenc + + + File does not exist. + A fájl nem létezik + + + Cannot open file: %1 + A fájl nem nyitható meg: %1 + + + Cannot parse file: %1 at position %2 + A fájl nem dolgozható fel: %1, ennél a pozíciónál: %2 + + + Failed to decrypt json file: %1 + A JSON-fájl visszafejtése sikertelen: %1 + + + Invalid encKeyValidation field + Érvénytelen encKeyValidation mező + + + Invalid cipher list within encKeyValidation field + Érvénytelen titkosítólista az encKeyValidation mezőben + + + Wrong password + Hibás jelszó + + + Invalid encrypted data field + Érvénytelen titkosított adatmező + + + Invalid cipher list within encrypted data field + Érvénytelen titkosítólista a titkosított adatmezőben + + + Cannot initialize cipher + A titkosító előkészítése sikertelen + + + Cannot decrypt data + Nem lehet visszafejteni az adatokat + + + Bitwarden Import + Bitwarden import + + + Archived + Tag for archived entries + Archiválva + + + Invalid 1PUX file format: Not a valid ZIP file. + Érvénytelen 1PUX-fájlformátum: nem érvényes ZIP-fájl. + + + Invalid 1PUX file format: Missing export.data + Érvénytelen 1PUX-fájlformátum: hiányzó export.data. + + + 1Password Import + 1Password import + + + Enter Shortcut + Gyorsbillentyű megadása + + + Action + Művelet + + + Shortcuts + Gyorsbillentyűk + + + Unknown passkeys error + Ismeretlen, jelkulcsokkal kapcsolatos hiba + + + Invalid KDF iterations, cannot decrypt json file + Érvénytelen KDF iterációk, a JSON-fájl nem fejthető vissza + + + Unsupported format, ensure your Bitwarden export is password-protected + Nem támogatott formátum, győződjön meg róla, hogy a Bitwarden exportja jelszóval védett. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Csak a PBKDF és az Argon2 támogatott, a JSON-fájl nem fejthető vissza + + + Reset Shortcuts + Gyorsbillentyűk visszaállítása + + + Double click an action to change its shortcut + Kattintson duplán egy műveletre a gyorsbillentyűje módosításához + + + Filter... + Szűrő… + + + Shortcut Conflict + Gyorsbillentyű-ütközés + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + A(z) %1 gyorsbillentyű ütközik ezzel: „%2”. Felülírja? + + + Cannot generate valid passphrases because the wordlist is too short + Nem lehet érvényes jelszavakat generálni, mert a szólista túl rövid + + + Encrypted files are not supported. + A titkosított fájlok nem támogatottak + + + Proton Pass Import + Proton Pass importálás + + + Delete plugin data? + Törölhetők a bővítmény adatai? + + + Delete plugin data from Entry(s)? + Törölhetők a bővítmény adatai a bejegyzésekből?Törölhetők a bővítmény adatai a bejegyzésekből? + + + Passkey + Jelkulcso + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Exportálási formátum. Lehetőségek: „xml”, „csv” vagy „html”. Az alapértelmezett az „xml”. + + + start minimized to the system tray + indítás a rendszertálcára minimalizálva + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Címkék @@ -7772,35 +9270,54 @@ Kernel: %3 %4 Belső zlib hiba: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + A parancs nem fejeződött be időben: „%1”. A folyamat kilőve. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Nem sikerült feltölteni az egyesített adatbázist. A parancs nem fejeződött be időben: „%1”. A folyamat kilőve. + + + Invalid download parameters provided. + Érvénytelen letöltési paraméterek lettek megadva. + + + Command `%1` failed to download database. + A parancs nem tudta letölteni az adatbázist: „%1”. + + + Invalid database pointer or upload parameters provided. + Érvénytelen adatbázismutató vagy feltöltési paraméterek lettek megadva. + + + Command `%1` exited with status code: %2 + A parancs (%1) ezzel az állapotkóddal lépett ki: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Az egyesített adatbázis feltöltése sikertelen. A parancs (%1) ezzel az állapotkóddal lépett ki: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Lejárt bejegyzések kizárása a jelentésből - - - Show only entries which have URL set - Csak az URL-lel rendelkező bejegyzések megjelenítése - - - Show only entries which have browser settings in custom data - Csak azon bejegyzések megjelenítése, melyek böngészőbeállításokat tartalmaznak az egyéni adatatik között - Double-click entries to edit. Dupla kattintás a bejegyzések szerkesztéséhez. List of entry URLs - Bejegyzések URL-jeinek listája + Bejegyzések webcímeinek listája Entry has no URLs set - A bejegyzésnél nincs URL beállítva + A bejegyzésnél nincs beállítva webcím Allowed URLs - Engedélyezett URL-ek + Engedélyezett webcímek Entry has no Browser Integration settings @@ -7808,7 +9325,7 @@ Kernel: %3 %4 Denied URLs - Tiltott URL-ek + Tiltott webcímek (Excluded) @@ -7824,7 +9341,7 @@ Kernel: %3 %4 No entries with a URL, or none has browser extension settings saved. - Nincsenek URL-t tartalmazó bejegyzések, vagy egyikhez sem lettek böngészőbeállítások mentve + Nincsenek webcímet tartalmazó bejegyzések, vagy egyikhez sem lettek böngészőbeállítások mentve Title @@ -7836,7 +9353,7 @@ Kernel: %3 %4 URLs - URL-ek + Webcímek Edit Entry… @@ -7850,44 +9367,53 @@ Kernel: %3 %4 Exclude from reports Kizárás a jelentésekből + + Expire Entry(s)… + Bejegyzés elévültté tétele…Bejegyzések elévültté tétele… + + + Only show entries that have a URL + Csak a webcímmel rendelkező bejegyzések megjelenítése + + + Only show entries that have been explicitly allowed or denied + Csak a kifejezetten engedélyezett vagy tiltott bejegyzések megjelenítése + + + Show expired entries + Lejárt bejegyzések megjelenítése + + + (Expired) + (Lejárt) + + + Delete plugin data from Entry(s)… + Bővítmény adatainak törlése a bejegyzésekből…Bővítmény adatainak törlése a bejegyzésekből… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Lejárt bejegyzések kizárása a jelentésből + Show expired entries + Lejárt bejegyzések megjelenítése - Also show entries that have been excluded from reports - A jelentésekből kizárt bejegyzések megjelenítése. + (Expired) + (Lejárt) Hover over reason to show additional details. Double-click entries to edit. Vigye az egérmutatót az ok felé a további részletek megjelenítéséhez. Kattintson duplán a bejegyzésekre a szerkesztéshez. - - Bad - Password quality - Rossz - Bad — password must be changed Rossz – a jelszót meg kell változtatni - - Poor - Password quality - Silány - Poor — password should be changed Silány – a jelszót meg kellene változtatni - - Weak - Password quality - Gyenge - Weak — consider changing the password Gyenge - Megfontolandó a jelszó változtatása @@ -7936,6 +9462,14 @@ Kernel: %3 %4 Exclude from reports Kizárás a jelentésekből + + Expire Entry(s)… + Bejegyzés elévültté tétele…Bejegyzések elévültté tétele… + + + Show entries that have been excluded from reports + A jelentésekből kizárt bejegyzések megjelenítése + ReportsWidgetHibp @@ -8031,6 +9565,77 @@ Kernel: %3 %4 Exclude from reports Kizárás a jelentésekből + + Expire Entry(s)… + Bejegyzés elévültté tétele…Bejegyzések elévültté tétele… + + + + ReportsWidgetPasskeys + + Export + Exportálás + + + Import + Importálás + + + List of entry URLs + Bejegyzések webcímeinek listája + + + Title + Cím + + + Path + Útvonal + + + Username + Felhasználónév + + + URLs + Webcímek + + + Edit Entry… + Bejegyzés szerkesztése… + + + Delete Entry(s)… + Bejegyzés törlése…Bejegyzések törlése… + + + Relying Party + Közvetítő fél + + + Show expired entries + Lejárt bejegyzések megjelenítése + + + (Expired) + (Lejárt) + + + Export Confirmation + Exportálás megerősítése + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + A jelkulcsfájl védtelenül hagyva lopásnak és illetéktelen használatnak van kitéve. Valóban folytatja? + + + Please wait, list of entries with passkeys is being updated… + Kis türelmet, a jelkulcsot tartalmazó elemek listája frissül… + + + No entries with passkeys. + Nincsenek jelkulcsot tartalmazó elemek. + ReportsWidgetStatistics @@ -8205,6 +9810,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Nincs működő ügynök, identitások nem listázhatóak. + + Failed to remove all SSH identities from agent. + Az ügynök összes személyazonosságának törlése sikertelen + + + All SSH identities removed from agent. + Az ügynök összes személyazonossága törölve. + SearchHelpWidget @@ -8271,6 +9884,10 @@ Kernel: %3 %4 Search Help Keresés a súgóban + + Save Search + Keresés mentése + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8345,34 +9962,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Megerősítés, ha jelszavakat kérnek le a kliensek - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Ez a beállítás nem -írja felül a kuka kérdéseinek letiltását.</span></p></body></html> - - Confirm when clients request entry deletion Megerősítés, ha a kliensek törlést kérnek - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Ez növeli a kompatibilitást bizonyos alkalmazásokkal, - melyek az adatbázis előzetes feloldása nélkül keresnek jelszót.</p><p>De az engedélyezése miatt összeomolhat - a kliens, ha az adatbázis nem kerül feloldásra egy bizonyos időtúllépésen belül. (Általában 25 mp, de más érték lehet - megadva az alkalmazásokban.)</p></body></html> - - Prompt to unlock database before searching Az adatbázis feloldásának kérése a keresés előtt @@ -8397,6 +9990,15 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Mentse el a módosításokat a beépülő aktiválásához és ezen rész szerkesztésének engedélyezéséhez. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Ez a beállítás nem bírálja felül a kukába helyezési kérdések letiltását </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Ez növeli a kompatibilitást bizonyos alkalmazásokkal, melyek az adatbázis előzetes feloldása nélkül keresnek jelszót.</p><p>De az engedélyezése miatt összeomolhat a kliens, ha az adatbázis nem kerül feloldásra egy bizonyos időtúllépésen belül. (Általában 25 mp, de más érték lehet megadva az alkalmazásokban.)</p></body></html> + + SettingsWidgetKeeShare @@ -8505,8 +10107,12 @@ Kernel: %3 %4 TagModel - All - Mind + Clear Search + Keresés törlése + + + All Entries + Összes bejegyzés Expired @@ -8517,6 +10123,25 @@ Kernel: %3 %4 Gyenge jelszavak + + TagView + + Remove Search + Keresés eltávolítása + + + Remove Tag + Címke eltávolítása + + + Confirm Remove Tag + Címkeeltávolítás megerősítése + + + Remove tag "%1" from all entries in this database? + Valóban eltávolítható minden „%1” címke ennek az adatbázisnak az összes bejegyzéséből? + + TotpDialog @@ -8634,7 +10259,7 @@ Példa: JBSWY3DPEHPK3PXP URLEdit Invalid URL - Érvénytelen URL + Érvénytelen webcím @@ -8674,26 +10299,6 @@ Példa: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Máris elkezdhető a jelszavak titkosított tárolása a KeePassXC adatbázisban - - Create new database - Új adatbázis létrehozása - - - Open existing database - Meglévő adatbázis megnyitása - - - Import from KeePass 1 - Importálás KeePass 1-ből - - - Import from 1Password - Importálás 1Password-ből - - - Import from CSV - Importálás CSV-ből - Recent databases Legutóbb használt adatbázisok @@ -8706,6 +10311,18 @@ Példa: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Üdvözöljük a KeePassXC %1 verzióban! + + Create Database + Adatbázis létrehozása + + + Open Database + Adatbázis megnyitása + + + Import File + Fájl importálása + WinUtils @@ -8722,31 +10339,8 @@ Példa: JBSWY3DPEHPK3PXP A globális gyorsbillentyű nem regisztrálható - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC crypto indítása sikertelen. - - - Failed to encrypt key data. - A kulcsadatok titkosítása sikertelen. - - - Failed to get Windows Hello credential. - A Windows Hello hitelesítési adatok lekérése sikertelen. - - - Failed to decrypt key data. - A kulcsadatok visszafejtése sikertelen. - - YubiKey - - %1 No interface, slot %2 - %1 nincs csatolófelület, foglalat: %2 - General: Általános: @@ -8758,14 +10352,6 @@ Példa: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Hardveres jelsorok frissítése - - - Refresh - Frissítés - Hardware key slot selection Hardverkulcsfoglalat kijelölése @@ -8798,10 +10384,6 @@ Példa: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Kihívás-válasz beállítva, kattintson a módosításhoz vagy eltávolításhoz - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Ha van <a href="https://www.yubico.com/">YubiKey</a> vagy <a href="https://onlykey.io">OnlyKey</a> eszköze, akkor használhatja a további biztonság érdekében.</p><p>Kulcs szükséges, hogy az egyik foglalata <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 kihívás-válaszként</a> legyen beállítva.</p> - Detecting hardware keys… Hardverkulcsok felismerése… @@ -8810,28 +10392,25 @@ Példa: JBSWY3DPEHPK3PXP No hardware keys detected Nincsenek felismert hardverkulcsok. - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Érvénytelen a megadott foglalat – %2 + Refresh hardware keys + Hardverkulcsok frissítése + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Ha van <a href="https://www.yubico.com/">YubiKey</a> vagy <a href="https://onlykey.io">OnlyKey</a> eszköze, akkor használhatja a további biztonság érdekében.</p><p>A kulcs megköveteli, hogy az egyik foglalata <a href="https://keepassxc.org/docs/#faq-yubikey-howto">kihívás-válaszként</a> legyen beprogramozva.</p> + + + Hardware keys found, but no slots are configured + A hardverkulcs megtalálva, de a foglalatok nincsenek beállítva YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] kihívás-válasz – foglalat %3 - The YubiKey PCSC interface has not been initialized. A YubiKey PCSC csatolófelülete nem lett elindítva. - - Hardware key is currently in use. - A hardverkulcs jelenleg használatban van. - Could not find or access hardware key with serial number %1. Please present it to continue. Nem található vagy nem elérhető a hardverkulcs ezzel a sorozatszámmal: %1. A folytatáshoz, kérjük, tegye elérhetővé. @@ -8848,6 +10427,21 @@ Példa: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 A kihívás-válasz befejezése sikertelen. A PCSC hibakód: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - %3. foglalat, %4 + + + Press + USB Challenge-Response Key interaction request + Lenyomás + + + Passive + USB Challenge-Response Key no interaction required + Passzív + YubiKeyInterfaceUSB @@ -8855,14 +10449,6 @@ Példa: JBSWY3DPEHPK3PXP Unknown Ismeretlen - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Beállított foglalat – %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] kihívás-válasz – foglalat %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8877,10 +10463,6 @@ Példa: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. A YubiKey USB csatolófelülete nem lett elindítva. - - Hardware key is currently in use. - A hardverkulcs jelenleg használatban van. - Could not find hardware key with serial number %1. Please plug it in to continue. Nem található hardverkulcs ezzel a sorozatszámmal: %1. A folytatáshoz, kérjük, csatlakoztassa. @@ -8897,5 +10479,15 @@ Példa: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 A kihívás-válasz befejezése sikertelen. A pontos hiba: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] – %3. foglalat + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] – %3. foglalat, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_id.ts b/share/translations/keepassxc_id.ts index 3ad055485..585cb1a73 100644 --- a/share/translations/keepassxc_id.ts +++ b/share/translations/keepassxc_id.ts @@ -54,7 +54,7 @@ Non-existing/inaccessible executable path. Please double-check the client is legit. - + Non-existing/inaccessible executable path. Please double-check the client is legit. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> @@ -70,7 +70,7 @@ Executable - + Executable Command Line @@ -80,6 +80,10 @@ Details Detail + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Remember Ingat @@ -88,17 +92,13 @@ Allow Selected Izinkan Yang Dipilih - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + Deny All && Future Allow All && &Future - + Izinkan semua && & Ke Depannya @@ -122,6 +122,10 @@ Use OpenSSH Gunakan OpenSSH + + Use both agents + Gunakan kedua agen + SSH_AUTH_SOCK override Timpa SSH_AUTH_SOCK @@ -136,11 +140,11 @@ SSH_SK_PROVIDER value - + Nilai SSH_SK_PROVIDER SSH_SK_PROVIDER override - + Timpaan SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. @@ -150,10 +154,6 @@ SSH Agent connection is working! Koneksi Agen SSH berhasil! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Keamanan + + This setting cannot be enabled when minimize on unlock is enabled. + Pengaturan ini tidak dapat difungsikan ketika diminimumkan saat buka kunci difungsikan. + Access error for config file %1 Galat akses untuk berkas konfigurasi %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Anda harus memulai ulang aplikasi untuk menerapkan bahasa. Apakah Anda ingin memulai ulang sekarang? - - Reset Settings? - Atur Ulang Pengaturan? - - - Are you sure you want to reset all general and security settings to default? - Apakah Anda yakin ingin mengatur ulang pengaturan umum dan keamanan ke nilai bawaan? - Select backup storage directory Pilih direktori penyimpanan cadangan + + Confirm Reset + Konfirmasi Reset + + + Are you sure you want to reset all settings to default? + Apakah Anda yakin ingin mereset semua pengaturan ke kondisi bawaan? + + + Import KeePassXC Settings + Impor Pengaturan KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Gagal mengimpor pengaturan dari %1, bukan berkas pengaturan yang valid. + + + Export KeePassXC Settings + Ekspor Pengaturan KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -250,15 +286,19 @@ Minimize window after unlocking database - Minimalkan jendela setelah membuka basisdata + Minimalkan jendela setelah membuka basis data Remember previously used databases - Ingat basisdata yang sebelumnya digunakan + Ingat basis data yang sebelumnya digunakan + + + recent files + berkas baru-baru ini Load previously open databases on startup - Muat basisdata yang sebelumnya terbuka saat memulai + Muat basis data yang sebelumnya terbuka saat memulai Remember database key files and security dongles @@ -272,25 +312,6 @@ Include beta releases when checking for updates Termasuk rilis beta saat memeriksa pembaruan - - On database unlock, show entries that - Pada pembukaan kunci basisdata, tampilkan entri yang - - - have expired - On database unlock, show entries that... - telah kedaluwarsa - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management Manajemen Berkas @@ -301,47 +322,35 @@ Automatically save when locking database - Otomatis simpan saat mengunci basisdata + Otomatis simpan saat mengunci basis data Automatically save non-data changes when locking database - Otomatis simpan perubahan non-data saat mengunci basisdata + Otomatis simpan perubahan non-data saat mengunci basis data Automatically reload the database when modified externally - Muat ulang basisdata secara otomatis ketika diubah secara eksternal + Muat ulang basis data secara otomatis ketika diubah secara eksternal Backup database file before saving - Cadangkan basisdata sebelum disimpan - - - Backup destination - Destinasi cadangan - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - + Cadangkan basis data sebelum disimpan {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Pilih... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Gunakan metode penyimpanan alternatif (mungkin akan mengatasi masalah dengan Dropbox, Google Drive, GVFS, dll.) Temporary file moved into place - + Berkas temporer dipindah ke tempatnya Directly write to database file (dangerous) - Langsung simpan ke berkas basisdata (berbahaya) + Langsung simpan ke berkas basis data (berbahaya) Entry Management @@ -408,6 +417,10 @@ Toolbar button style: Gaya tombol bilah alat: + + Show passwords in color + Tampilkan kata sandi dalam warna + Use monospaced font for notes Gunakan fon monospace untuk catatan @@ -458,7 +471,7 @@ Re-lock previously locked database after performing Auto-Type - Kunci ulang basisdata yang sebelumnya terkunci setelah menjalankan Ketik-Otomatis + Kunci ulang basis data yang sebelumnya terkunci setelah menjalankan Ketik-Otomatis Auto-Type start delay: @@ -491,6 +504,71 @@ Remember last typed entry for: + Ingat entri yang terakhir diketikkan untuk: + + + On database unlock, show entries that will expire within + Pada basis data tidak terkunci, tampilkan entri yang akan kedaluwarsa selama + + + On database unlock, show entries that will expire within + Pada basis data tidak terkunci, tampilkan entri yang akan kedaluwarsa selama + + + days + number of days warning for password expiration + hari + + + Destination format: + Format yang diinginkan: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> telah diganti dengan nama file dari database yang disimpan tanpa ekstensi </p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> telah diganti dengan format waktu yang ditentukan (bawaan: dd_MM_yyyy_hh-mm-ss)</p><p> Lihat Panduan Pengguna untuk detail lebih lanjut </p></body></html> + + + Choose folder... + Pilih folder... + + + Show confirmation before moving entries to recycle bin + Tampilkan konfirmasi sebelum memindahkan entri ke tempat sampah + + + Copy data on double clicking field in entry view + Menyalin data dengan mengklik dua kali kolom di tampilan entri + + + Show toolbar + Tampilkan bilah alat + + + Show the menu bar by pressing the Alt key + Menampilkan bilah menu dengan menekan tombol Alt + + + Show menubar + Menampilkan bilah menu + + + Import settings… + Impor pengaturan... + + + Export settings… + Ekspor pengaturan... + + + Open browser on double clicking URL field in entry view + Buka peramban dengan mengklik dua kali kolom URL di tampilan entri + + + Font size: + + + + Font size selection @@ -502,7 +580,7 @@ Database lock timeout seconds - Lama waktu habis penguncian basisdata + Lama waktu habis penguncian basis data sec @@ -528,7 +606,7 @@ Lock databases after inactivity of - Kunci basisdata setelah tidak aktif selama + Kunci basis data setelah tidak aktif selama Convenience @@ -540,15 +618,11 @@ Lock databases when session is locked or lid is closed - Kunci basisdata ketika sesi dikunci atau lid ditutup + Kunci basis data ketika sesi dikunci atau lid ditutup Lock databases after minimizing the window - Kunci basisdata setelah meminimalkan jendela - - - Require password repeat when it is visible - Membutuhkan pengulangan sandi ketika ruas bisa dilihat + Kunci basis data setelah meminimalkan jendela Hide passwords when editing them @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Sembunyikan sandi di panel pratinjau entri - - Hide entry notes by default - Sembunyikan catatan secara bawaan - - - Move entries to recycle bin without confirmation - Hapus entri ke keranjang sampah tanpa konfirmasi - - - Enable double click to copy the username/password entry columns - Klik dua kali untuk menyalin kolom entri nama pengguna/sandi - Privacy Privasi @@ -582,16 +644,32 @@ Use DuckDuckGo service to download website icons Gunakan layanan DuckDuckGo untuk mengunduh ikon situs web + + Hide TOTP in the entry preview panel + Sembunyikan TOTP di panel pratinjau entri + + + Lock databases when switching user + Mengunci basis data saat berpindah pengguna + + + Lock Options + Opsi Penguncian + + + Hide notes in the entry preview panel + Sembunyikan catatan di panel pratinjau entri + AutoType The requested Auto-Type sequence cannot be used due to an error: - + The requested Auto-Type sequence cannot be used due to an error: Auto-Type Error - + Galat Auto-Type Permission Required @@ -603,15 +681,15 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC membutuhkan izin Aksesibilitas dan Perekaman Layar untuk menjalankan Ketik-Otomatis secara global. Perekaman Layar dibutuhkan untuk mengakses judul jendela dari entri terkait. Jika anda sudah memberikan izin, anda perlu memulai ulang KeePassXC. + KeePassXC membutuhkan izin Aksesibilitas dan Perekaman Layar untuk menjalankan Ketik-Otomatis secara global. Perekaman Layar dibutuhkan untuk mengakses judul jendela dari entri terkait. Jika Anda sudah memberikan izin, Anda perlu memulai ulang KeePassXC. Invalid entry provided - + Entri yang diberikan tidak sah Bracket imbalance detected, found extra { or } - + Terdeteksi kurung kurawal yang tak seimbang, ditemukan { atau } ekstra Too many repetitions detected, max is %1: %2 @@ -619,28 +697,19 @@ Very slow key press detected, max is %1: %2 - + Terdeteksi penekanan tombol yang sangat lambat, maks adalah %1: %2 Very long delay detected, max is %1: %2 - + Terdeteksi tundaan sangat lama, maks adalah %1: %2 - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + Entri tidak memiliki atribut untuk PICKCHARS: %1 Invalid placeholder: %1 - + Invalid placeholder: %1 @@ -683,21 +752,21 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + Urutan digugurkan: Caps Lock menyala Sequence aborted: Modifier keys held by user - + Urutan digugurkan: Tombol pengubah ditahan oleh pengguna Unable to get valid keycode for key: - + Tidak bisa memperoleh kode tombol yang valid untuk tombol: + + + Trying to send invalid keyboard symbol. + Mencoba mengirim simbol keyboard yang tidak valid. @@ -708,7 +777,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - + Klik ganda suatu baris untuk melakukan Ketik-Otomatis atau mencari suatu entri memakai pencarian: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -717,19 +786,24 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Search all open databases - Cari semua basisdata terbuka + Cari semua basis data terbuka Search… - + Cari… Type Sequence - + Ketikkan Urutan Cancel @@ -737,31 +811,31 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - + Ketikkan {NAMA PENGGUNA} Type {PASSWORD} - + Ketikkan {KATA SANDI} Type {TOTP} - + Ketikkan {TOTP} Copy Username - + Salinkan Nama Pengguna Copy Password - + Salinkan Kata Sandi Copy TOTP - + Salin TOTP Use Virtual Keyboard - + Gunakan Papan Ketik Virtual @@ -798,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Nonaktifkan untuk situs ini + + Undo + Urungkan + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - Entri Penyimpanan KeePassXC-Browser - Ok Ok @@ -816,16 +890,77 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> You have multiple databases open. Please select the correct database for saving credentials. - Ada beberapa basisdata yang terbuka. -Silakan pilih basisdata yang digunakan untuk menyimpan kredensial. + Ada beberapa basis data yang terbuka. +Silakan pilih basis data yang digunakan untuk menyimpan kredensial. + + + KeePassXC - Select Database + KeePassXC - Pilih Basis Data + + + + BrowserPasskeysConfirmationDialog + + Cancel + Batal + + + Update + Perbarui + + + Authenticate + Autentikasi + + + Register new + Daftarkan baru + + + Register + Daftarkan + + + Timeout in <b>%n</b> seconds... + Waktu habis dalam <b>%n</b> detik… + + + Relying Party: %1 + Pihak yang Mengandalkan: %1 + + + Username: %1 + Nama pengguna: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Kunci Akses Digital + + + Add to existing entry + Tambahkan ke entri yang telah ada + + + Existing passkey found. +Do you want to register a new passkey for: + Kunci akses yang ada ditemukan. +Anda ingin mendaftarkan kunci akses baru: + + + Select the existing passkey and press Update to replace it. + Pilih kunci akses yang ada, lalu tekan Perbarui untuk menggantinya. + + + Authenticate passkey credentials for: + Mengautentikasi kredensial kunci akses: + + + Do you want to register a passkey for: + Apakah Anda ingin mendaftarkan kunci akses: BrowserService - - KeePassXC: Create a new group - KeePassXC: Buat grup baru - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -834,17 +969,13 @@ Do you want to create this group? Apakah Anda ingin membuat grup ini? - - KeePassXC: New key association request - KeePassXC: Permintaan asosiasi kunci baru - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Anda telah menerima permintaan asosiasi untuk basisdata berikut: + Anda telah menerima permintaan asosiasi untuk basis data berikut: %1 Berikan koneksi nama yang unik atau ID, sebagai contoh: @@ -854,79 +985,77 @@ chrome-laptop. Save and allow access Simpan dan izinkan akses - - KeePassXC: Overwrite existing key? - KeePassXC: Timpa kunci yang ada? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Kunci enkripsi bersama dengan nama "%1" sudah ada. Apakah Anda ingin menimpanya ulang? - - KeePassXC: Update Entry - KeePassXC: Perbarui Entri - Do you want to update the information in %1 - %2? Apakah Anda ingin memperbarui informasi di dalam %1 - %2? - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? - + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + - Converting attributes to custom data… - Mengkonversi atribut ke data khusus... + %1 (Passkey) + %1 (Kunci akses) - Abort - Batal + KeePassXC - Create a new group + KeePassXC - Buat grup baru - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Konversi atribut KeePassHTTP + Disable + Nonaktifkan - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Berhasil mengonversi atribut dari %1 entri. -Memindahkan %2 ke data khusus. - - - Successfully moved %n keys to custom data. - Berhasil memindahkan %n kunci ke data khusus. + KeePassXC - Overwrite existing key? + KeePassXC - Timpa kunci yang sudah ada? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Tidak ada entri dengan atribut KeePassHTTP yang ditemukan! + KeePassXC - Update Entry + KeePassXC - Perbarui Entri - The active database does not contain an entry with KeePassHTTP attributes. - Basisdata yang aktif tidak berisi entri dengan atribut KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Hapus Entry - Don't show this warning again - Jangan tampilkan peringatan ini lagi + KeePassXC - New key association request + KeePassXC - Permintaan asosiasi kunci baru - KeePassXC: Legacy browser integration settings detected - KeePassXC: Mendeteksi pengaturan integrasi peramban lama + Passkey + Kunci akses - 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? - Pengaturan KeePassXC-Browser Anda perlu dipindahkan ke dalam pengaturan basisdata. -Hal ini diperlukan untuk mempertahankan koneksi peramban Anda saat ini. -Apakah Anda ingin memindahkan pengaturan yang ada sekarang? + KeePassXC - Passkey credentials + KeePassXC - Kunci Akses Digital + + + Register a new passkey to this entry: + Daftarkan kunci akses baru ke entri ini: + + + KeePassXC - Update passkey + KeePassXC - Perbarui kunci akses + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Entri sudah memiliki kunci akses. +Apakah Anda ingin menimpa kunci akses di %1 - %2? + + + Register + Daftarkan @@ -937,7 +1066,7 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? This is required for accessing your databases with KeePassXC-Browser - Ini dibutuhkan untuk mengakses basisdata Anda menggunakan KeePassXC-Browser + Ini dibutuhkan untuk mengakses basis data Anda menggunakan KeePassXC-Browser Enable browser integration @@ -947,10 +1076,6 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? General Umum - - Browsers installed as snaps are currently not supported. - Peramban yang dipasang sebagai snap saat ini tidak didukung. - Enable integration for these browsers: Aktifkan integrasi untuk peramban ini: @@ -990,15 +1115,15 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? Request to unlock the database if it is locked - Minta untuk membuka basisdata jika terkunci + Minta untuk membuka basis data jika terkunci Only entries with the same scheme (http://, https://, …) are returned. - + Hanya entri dengan skema yang sama (http://, https://, ...) dikembalikan. Match URL scheme (e.g., https://example.com) - + Match URL scheme (e.g., https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -1018,12 +1143,12 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? All databases connected to the extension will return matching credentials. - Semua basisdata yang terhubung ke ekstensi akan mengembalikan kredensial yang cocok. + Semua basis data yang terhubung ke ekstensi akan mengembalikan kredensial yang cocok. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Cari kredensial yang cocok di semua basisdata yang terbuka + Cari kredensial yang cocok di semua basis data yang terbuka Advanced @@ -1122,26 +1247,6 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? Custom extension ID ID ekstensi khusus - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Karena adanya sandbox Snap, Anda harus menjalankan skrip untuk mengaktifkan integrasi peramban.<br />Anda bisa mendapatkan skrip ini dari %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Membutuhkan KeePassXC-Browser agar integrasi peramban bisa bekerja. <br />Silakan unduh untuk %1 dan %2 dan %3. %4 - - - Please see special instructions for browser extension use below - Lihat instruksi untuk penggunaan browser extension - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Error:</b>Lokasi proxy khusus tidak dapat ditemukan!<br/>Integrasi browser TIDAK DAPAT BEKERJA tanpa aplikasi proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Peringatan:</b> Opsi berikut bisa berbahaya! - Executable Files Berkas Executable @@ -1158,12 +1263,52 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? Select native messaging host folder location Pilih lokasi folder hos perpesanan bawaan + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Izinkan keepassxc-proksi untuk menampilkan semua entri dengan judul, URL, dan UUID-nya di basis data yang terhubung. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Izinkan akses terbatas ke semua entri di basis data yang terhubung (abaikan pembatasan akses situs) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Peringatan:</b> Hanya setel pengaturan ini bila perlu. + + + The custom proxy location does not exist. + Lokasi proksi ubahan tidak ada. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Galat:</b> Lokasi proksi ubahan tidak ada. Perbaiki ini dalam tab pengaturan tingkat lanjut. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Galat:</b> Executable proksi yang terpasang hilang dari lokasi yang diharapkan: %1<br/>Harap atur suatu lokasi proksi ubahan dalam pengaturan tingkat lanjut atau pasang ulang aplikasi. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Mengizinkan penggunaan http://localhost yang tidak aman dengan kunci akses untuk tujuan pengujian. + + + Allow using localhost with passkeys + Mengizinkan penggunaan host lokal dengan kunci akses + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser diperlukan agar integrasi peramban dapat bekerja. <br />Unduh untuk %1 dan %2 dan %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog Clone Entry Options - + Clone Entry Options Append ' - Clone' to title @@ -1180,14 +1325,6 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? CsvImportWidget - - Import CSV fields - Impor ruas CSV - - - filename - nama berkas - size, rows, columns ukuran, baris, kolom @@ -1296,50 +1433,43 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? Column %1 Kolom %1 - - Imported from CSV file - Diimpor dari berkas CSV - - - Original data: - Data original: - - - Error(s) detected in CSV file! - Mendeteksi kesalahan di dalam berkas CSV! - [%n more message(s) skipped] [%n pesan dilewati] - Error - Galat + Failed to parse CSV file: %1 + Gagal untuk mengurai file CSV: %1 - CSV import: writer has errors: -%1 - Impor CSV: galat penulis: -%1 + Imported from CSV file: %1 + Diimpor dari file CSV: %1 + + + No Title Selected + Tidak ada Judul yang Dipilih + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Tidak ada kolom judul yang dipilih, entri akan sulit dibedakan. +Apakah Anda yakin ingin mengimpor? + + + Tags + Tag CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte - %n row(s) + CSV row count %n baris %n column(s) + CSV column count %n kolom @@ -1360,51 +1490,59 @@ Apakah Anda ingin memindahkan pengaturan yang ada sekarang? Error while reading the database: %1 - Terjadi kesalahan saat membaca basisdata: %1 + Terjadi kesalahan saat membaca basis data: %1 Could not save, database does not point to a valid file. - Tidak bisa menyimpan, basisdata tidak merujuk ke berkas yang valid. + Tidak bisa menyimpan, basis data tidak merujuk ke berkas yang valid. Database save is already in progress. - Proses menyimpan basisdata sedang berjalan. + Proses menyimpan basis data sedang berjalan. Could not save, database has not been initialized! - Tidak bisa menyimpan, basisdata belum aktif! + Tidak bisa menyimpan, basis data belum aktif! Database file has unmerged changes. - Berkas basisdata memiliki perubahan yang belum digabung. + Berkas basis data memiliki perubahan yang belum digabung. %1 Backup database located at %2 %1 -Lokasi cadangan basisdata ada di %2 +Lokasi cadangan basis data ada di %2 Key not transformed. This is a bug, please report it to the developers. - + Kunci tidak berubah. Ini adalah bug, harap laporkan ke developer. Recycle Bin Keranjang Sampah + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog Unlock Database - KeePassXC - Buka Kunci Basisdata - KeePassXC + Buka Kunci Basis Data - KeePassXC DatabaseOpenWidget Unlock KeePassXC Database - Buka Kunci Basisdata KeePassXC + Buka Kunci Basis Data KeePassXC Enter Password: @@ -1414,42 +1552,13 @@ Lokasi cadangan basisdata ada di %2 Password field Ruas sandi - - Enter Additional Credentials (if any): - Masukkan Kredensial Tambahan (jika ada): - - - Key File: - Berkas Kunci: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Bantuan berkas kunci - Hardware key slot selection Pemilihan slot kunci perangkat keras - - Hardware Key: - Kunci Perangkat Keras: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Bantuan kunci perangkat keras - Key file to unlock the database - Berkas kunci untuk membuka basisdata + Berkas kunci untuk membuka basis data Browse for key file @@ -1459,17 +1568,9 @@ Lokasi cadangan basisdata ada di %2 Browse… Telusuri… - - Refresh hardware tokens - Segarkan token perangkat keras - - - Refresh - Segarkan - Unlock Database - Buka Kunci Basisdata + Buka Kunci Basis Data Cancel @@ -1481,11 +1582,11 @@ Lokasi cadangan basisdata ada di %2 Please present or touch your YubiKey to continue… - + Please present or touch your YubiKey to continue… Database Version Mismatch - + Versi Basis Data Tidak Cocok The database you are trying to open was most likely @@ -1495,15 +1596,21 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. Open database anyway - + Tetap buka pangkalan data Database unlock canceled. - Pembukaan kunci basisdata dibatalkan. + Pembukaan kunci basis data dibatalkan. Unlock failed and no password given @@ -1514,22 +1621,14 @@ We recommend you update your KeePassXC installation. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Membuka kunci basisdata gagal dan Anda tidak memasukkan kata sandi. + Membuka kunci basis data gagal dan Anda tidak memasukkan kata sandi. Apakah Anda ingin mencoba kembali dengan kata sandi "kosong"? -Untuk mencegah munculnya kesalahan ini, Anda harus ke "Pengaturan Basisdata / Keamanan" dan mengatur ulang kata sandi Anda. +Untuk mencegah munculnya kesalahan ini, Anda harus ke "Pengaturan Basis Data / Keamanan" dan mengatur ulang kata sandi Anda. Retry with empty password Ulangi dengan sandi kosong - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Gagal untuk membuka berkas kunci: %1 @@ -1540,7 +1639,7 @@ Untuk mencegah munculnya kesalahan ini, Anda harus ke "Pengaturan Basisdata You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Anda menggunakan sebuah format berkas kunci lama yang mungkin <br> tidak akan didukung lagi oleh KeePassXC di masa depan. <br><br> Mohon buat sebuah berkas kunci baru dengan menuju ke: <br><strong>Basisdata &gt; Keamanan Basisdata &gt; Ubah Berkas Kunci.</strong><br> + Anda menggunakan sebuah format berkas kunci lama yang mungkin <br> tidak akan didukung lagi oleh KeePassXC di masa depan. <br><br> Mohon buat sebuah berkas kunci baru dengan menuju ke: <br><strong>Basis Data &gt; Keamanan Basis Data &gt; Ubah Berkas Kunci.</strong><br> Don't show this warning again @@ -1560,25 +1659,71 @@ Untuk mencegah munculnya kesalahan ini, Anda harus ke "Pengaturan Basisdata Cannot use database file as key file - Tidak bisa menggunakan berkas basisdata sebagai berkas kunci + Tidak bisa menggunakan berkas basis data sebagai berkas kunci - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Anda tidak bisa menggunakan berkas basisdata Anda sebagai berkas kunci, -Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. + authenticate to access the database + otentikasi untuk mengakses basis data - Detecting hardware keys… - Mendeteksi kunci perangkat keras… + Failed to authenticate with Quick Unlock: %1 + Gagal mengautentikasi dengan Buka Kunci Cepat: %1 - No hardware keys detected - Tidak mendeteksi kunci perangkat keras + Select Key File: + Pilih Berkas Kunci: - Select hardware key… - Pilih kunci perangkat keras… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p> Selain kata sandi, Anda dapat menggunakan berkas rahasia untuk meningkatkan keamanan basis data Anda. Berkas ini dapat dibuat dalam pengaturan keamanan basis data Anda.</p><p>Ini <strong> bukanlah </strong> berkas basis data *.kdbx anda! </p> + + + Use hardware key [Serial: %1] + Gunakan kunci perangkat keras [Serial: %1] + + + Use hardware key + Gunakan kunci perangkat keras + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Berkas basis data Anda BUKAN berkas kunci! +Jika Anda tidak memiliki berkas kunci atau tidak paham apa itu berkas kunci, Anda tidak perlu memilihnya. + + + KeePassXC database file selected + Berkas basis data KeePassXC dipilih + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Berkas yang Anda pilih terlihat seperti berkas basis data. +Berkas basis data BUKAN berkas kunci! + +Apakah Anda yakin ingin melanjutkan dengan berkas ini? + + + No hardware keys found. + Tidak ditemukan kunci perangkat keras. + + + Refresh Hardware Keys + Segarkan kunci perangkat keras. + + + Click to add a key file. + Klik untuk tambahkan berkas kunci. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Aku punya berkas kunci</a> + + + Hardware keys found, but no slots are configured. + @@ -1590,10 +1735,6 @@ Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. DatabaseSettingsDialog - - Advanced Settings - Pengaturan Lanjutan - General Umum @@ -1604,7 +1745,7 @@ Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. Database Credentials - Kredensial Basisdata + Kredensial Basis Data Encryption Settings @@ -1618,6 +1759,22 @@ Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. Maintenance Pemeliharaan + + KeeShare + KeeShare + + + Secret Service Integration + Integrasi Layanan Rahasia + + + Remote Sync + Sinkronisasi Jarak Jauh + + + Database Settings: %1 + Pengaturan basis data: %1 + DatabaseSettingsWidgetBrowser @@ -1625,18 +1782,6 @@ Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. KeePassXC-Browser settings Pengaturan KeePassXC-Browser - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Segarkan ID grup root basisdata - Disconnect all browsers Putuskan koneksi semua peramban @@ -1645,6 +1790,10 @@ Jika Anda tidak memiliki berkas kunci, biarkan ruas tetap kosong. Forget all site-specific settings on entries Lupakan semua pengaturan spesifik situs pada entri + + Refresh database root group ID + Segarkan ID grup root basis data + Stored keys Kunci tersimpan @@ -1693,18 +1842,10 @@ This may prevent connection to the browser plugin. Apakah Anda ingin memutus koneksi semua peramban? Tindakan ini akan memutus koneksi ke pengaya peramban. - - KeePassXC: No keys found - KeePassXC: Tidak ada kunci yang ditemukan - No shared encryption keys found in KeePassXC settings. TIdak ada kunci enkripsi bersama yang ditemukan di dalam pengaturan KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Buang kunci dari basisdata - Successfully removed %n encryption key(s) from KeePassXC settings. Berhasil membuang %n kunci enkripsi dari pengaturan KeePassXC. @@ -1723,47 +1864,50 @@ Izin untuk mengakses entri akan dicabut. Abort Batal - - KeePassXC: Removed permissions - KeePassXC: Buang izin - Successfully removed permissions from %n entry(s). Berhasil membuang perizinan dari %n entri. - - KeePassXC: No entry with permissions found! - KeePassXC: Tidak entri dengan izin yang ditemukan! - The active database does not contain an entry with permissions. - Basisdata aktif tidak berisi entri dengan izin. - - - Move KeePassHTTP attributes to custom data - Pindahkan atribut KeePassHTTP ke data khusus - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - + Basis Data aktif tidak berisi entri dengan izin. Refresh database ID - Segarkan ID basisdata + Segarkan ID basis data Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Apakah Anda yakin ingin menyegarkan ID basisdata? -Ini hanya diperlukan jika basisdata Anda adalah salinan dari basisdata yang lain dan ekstensi peramban tidak bisa tersambung. + Apakah Anda yakin ingin menyegarkan ID basis data? +Ini hanya diperlukan jika basis data Anda adalah salinan dari basis data yang lain dan ekstensi peramban tidak bisa tersambung. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Konversikan atribut KeePassHTTP lama ke data kustom yang kompatibel dengan KeePassXC-Browser + + + No keys found + Kunci tidak ditemukan + + + Removed keys from database + Kunci terhapus dari basis data + + + Removed permissions + Izin terhapus + + + No entry with permissions found! + Tidak ditemukan entri yang memiliki izin! DatabaseSettingsWidgetDatabaseKey Add additional protection… - + Tambahkan proteksi lain... No password set @@ -1773,7 +1917,7 @@ Ini hanya diperlukan jika basisdata Anda adalah salinan dari basisdata yang lain 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? - PERINGATAN! Anda belum mengatur sandi. Menggunakan basisdata tanpa sandi amat sangat tidak disarankan! + PERINGATAN! Anda belum mengatur sandi. Menggunakan basis data tanpa sandi amat sangat tidak disarankan! Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? @@ -1787,7 +1931,7 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? You must add at least one encryption key to secure your database! - Anda harus menambahkan paling tidak satu kunci enkripsi untuk mengamankan basisdata Anda! + Anda harus menambahkan paling tidak satu kunci enkripsi untuk mengamankan basis data Anda! Unknown error @@ -1795,7 +1939,19 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? Failed to change database credentials - Gagal mengubah kredensial basisdata + Gagal mengubah kredensial basis data + + + Weak password + Kata sandi lemah + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Ini adalah kata sandi yang lemah! Untuk perlindungan yang lebih baik terhadap rahasia Anda, Anda harus memilih kata sandi yang lebih kuat. + + + The provided password does not meet the minimum quality requirement. + Kata sandi yang dimasukkan tidak memenuhi persyaratan standar minimum. @@ -1804,37 +1960,29 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? Decryption Time: Waktu Dekripsi: - - Change existing decryption time - Ubah waktu dekripsi yang ada - - - Change - Ubah - Decryption time in seconds Waktu dekripsi dalam detik Higher values offer more protection, but opening the database will take longer. - Nilai yang lebih tinggi memberikan perlindungan lebih, tetapi membuka basisdata akan menjadi lebih lama. + Nilai yang lebih tinggi memberikan perlindungan lebih, tetapi membuka basis data akan menjadi lebih lama. Database format: - Format basisdata: + Format basis data: Database format - Format basisdata + Format basis data Format cannot be changed: Your database uses KDBX 4 features - + Format cannot be changed: Your database uses KDBX 4 features Unless you need to open your database with other programs, always use the latest format. - + Unless you need to open your database with other programs, always use the latest format. Encryption Algorithm: @@ -1866,7 +2014,7 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? Transform rounds - + Transform rounds Memory Usage: @@ -1886,16 +2034,11 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? KDBX 4 (recommended) - + KDBX 4 (direkomendasikan) KDBX 3 - - - - unchanged - Database decryption time is unchanged - tidak berubah + KDBX 3 Number of rounds too high @@ -1906,7 +2049,9 @@ Apakah Anda tetap ingin melanjutkan tanpa mengatur sandi? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - + You are using a very high number of key transform rounds with Argon2. + +If you keep this number, your database may take hours, days, or even longer to open. Understood, keep number @@ -1925,7 +2070,9 @@ If you keep this number, your database may take hours, days, or even longer to o You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. KDF unchanged @@ -1943,7 +2090,19 @@ If you keep this number, your database will not be protected from brute force at thread(s) Threads for parallel execution (KDF settings) - + Untaian(s) + + + Encryption Settings: + Pengaturan Enkripsi: + + + Basic + Dasar + + + Advanced + Tingkat Lanjut @@ -1954,7 +2113,7 @@ If you keep this number, your database will not be protected from brute force at Don't expose this database - Jangan ekspos basisdata ini + Jangan ekspos basis data ini Expose entries under this group: @@ -1969,23 +2128,23 @@ If you keep this number, your database will not be protected from brute force at DatabaseSettingsWidgetGeneral Database Metadata - Metadata Basisdata + Metadata Basis Data Database name: - Nama basisdata: + Nama basis data: Database name field - Ruas nama basisdata + Ruas nama basis data Database description: - Deskripsi basisdata: + Deskripsi basis data: Database description field - Ruas deskripsi basisdata + Ruas deskripsi basis data Default username: @@ -2003,18 +2162,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Jumlah maksimum item riwayat per entri - - Max. history items: - Maks. item riwayat: - Maximum size of history per entry Ukuran maksimum riwayat per entri - - Max. history size: - Maks. ukuran riwayat: - MiB MiB @@ -2025,7 +2176,7 @@ If you keep this number, your database will not be protected from brute force at Additional Database Settings - Pengaturan Basisdata Tambahan + Pengaturan Basis Data Tambahan Enable compression (recommended) @@ -2045,6 +2196,108 @@ Tidakan ini tidak bisa diurungkan. (old) (lama) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Saat menyimpan pengaturan ini atau mengedit entri +item riwayat tertua dari entri akan +dikeluarkan sedemikian rupa sehingga hanya jumlah entri +yang ditentukan akan tetap tinggal. + + + Limit the amount of history items per entry to: + Batasi jumlah item histori per entri menjadi: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Saat menyimpan pengaturan ini atau mengedit entri +item riwayat tertua dari sebuah entri akan +dihapus sehingga item riwayat yang tersisa +menambahkan hingga jumlah yang ditentukan paling banyak. + + + Limit the total size of history items per entry to: + Batasi ukuran total item histori per entri menjadi: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Pindahkan entri ke kelompok tempat sampah +dan jangan menghapusnya dari basis data. +Entri yang dihapus dari kotak sampah +dipindahkan dari basis data. + + + Autosave delay since last change + Jeda penyimpanan otomatis sejak perubahan terakhir + + + Autosave delay + Jeda penyimpanan otomatis + + + Autosave delay since last change in minutes + Jeda penyimpanan otomatis sejak perubahan terakhir dalam menit + + + min + min + + + Autosave delay since last change checkbox + Kotak centang jeda penyimpanan otomatis sejak perubahan terakhir + + + Public Database Metadata + Metadata Basis data Publik + + + Warning: the following settings are not encrypted. + Peringatan: pengaturan berikut ini tidak terenkripsi. + + + Display name: + Nama tampilan: + + + Publically visible display name used on the unlock dialog + Nama tampilan yang dapat dilihat oleh publik yang digunakan pada obrolan terbuka + + + Database public display name + Nama tampilan publik basis data + + + Display color: + Warna tampilan: + + + Publically visible color used on the unlock dialog + Warna yang terlihat publik yang digunakan pada obrolan terbuka + + + Database public display color chooser + Pemilih warna tampilan publik basis data + + + Clear + Bersihkan + + + Display icon: + Ikon tampilan: + + + Select Database Icon + Pilih ikon Basis data + DatabaseSettingsWidgetKeeShare @@ -2054,7 +2307,7 @@ Tidakan ini tidak bisa diurungkan. Breadcrumb - + Breadcrumb Type @@ -2082,19 +2335,19 @@ Tidakan ini tidak bisa diurungkan. DatabaseSettingsWidgetMaintenance Manage Custom Icons - + Manage Custom Icons Delete selected icon(s) - + Delete selected icon(s) Delete all custom icons not in use by any entry or group - + Delete all custom icons not in use by any entry or group Purge unused icons - + Purge unused icons Confirm Deletion @@ -2102,34 +2355,34 @@ Tidakan ini tidak bisa diurungkan. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? Custom Icons Are In Use - + Custom Icons Are In Use All custom icons are in use by at least one entry or group. - + All custom icons are in use by at least one entry or group. Purged Unused Icons - + Purged Unused Icons Purged %n icon(s) from the database. - + Menghapus ikon(s) %n dari basis data. DatabaseSettingsWidgetMetaDataSimple Database Name: - Nama Basisdata: + Nama Basis Data: Database name field - Ruas nama basisdata + Ruas nama basis data Description: @@ -2137,24 +2390,159 @@ Tidakan ini tidak bisa diurungkan. Database description field - Ruas deskripsi basisdata + Ruas deskripsi basis data + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Perintah Sinkronikasi + + + Remove + Buang + + + Command Settings + Pengaturan Perintah + + + Name + Nama + + + Save + Simpan + + + Download + Unduh + + + Command: + Perintah: + + + Download command field + Kolom perintah unduhan + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + misal: "sftp user@hostname" atau "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + Download input field + Kolom input unduhan + + + Upload + Unggah + + + Upload command field + Kolom perintah unggahan + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + misal: "sftp user@hostname" atau "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Kolom input unggahan + + + Name cannot be empty. + Nama tidak boleh kosong + + + Test + Tes + + + Download command cannot be empty. + Perintah unduhan tidak boleh kosong. + + + Download failed with error: %1 + Pengunduhan gagal dengan galat: %1 + + + Download finished, but file %1 could not be found. + Pengunduhan selesai, tetapi berkas %1 tidak dapat ditemukan. + + + Download successful. + Pengunduhan berhasil. + + + Save Remote Settings + Simpan Pengaturan Jarak Jauh + + + You have unsaved changes. Do you want to save them? + Anda memiliki perubahan yang belum disimpan. Apakah Anda ingin menyimpannya? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + misal: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +keluar +--- +{TEMP_DATABASE} digunakan sebagai penampung untuk menyimpan basis data di lokasi sementara +Perintah tersebut harus keluar. Dalam kasus `sftp` sebagai perintah terakhir, `keluar` harus dilakukan + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + misal: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +keluar +--- +{TEMP_DATABASE} digunakan sebagai penampung untuk menyimpan basis data di lokasi sementara +Perintah tersebut harus keluar. Dalam kasus `sftp` sebagai perintah terakhir, `keluar` harus dilakukan + + + + Timeout: + Waktu habis. + + + seconds + detik DatabaseTabWidget Database creation error - Kesalahan dalam membuat basisdata + Kesalahan dalam membuat basis data The created database has no key or KDF, refusing to save it. This is definitely a bug, please report it to the developers. - Basisdata yang dibuat tidak memiliki kunci atau KDF, aplikasi tidak bisa menyompannya. + Basis Data yang dibuat tidak memiliki kunci atau KDF, aplikasi tidak bisa menyompannya. Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. KeePass 2 Database - Basisdata KeePass 2 + Basis Data KeePass 2 All files @@ -2162,7 +2550,7 @@ Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. Open database - Buka basisdata + Buka basis data Failed to open %1. It either does not exist or is not accessible. @@ -2172,29 +2560,13 @@ Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. CSV file Berkas CSV - - Select CSV file - Pilih berkas CSV - Merge database - Gabung basisdata - - - KeePass 1 database - Basisdata KeePass 1 - - - Open KeePass 1 database - Buka basisdata KeePass 1 - - - Open OPVault - Buka OPVault + Gabung basis data Export database to CSV file - Ekspor basisdata ke berkas CSV + Ekspor basis data ke berkas CSV Writing the CSV file failed. @@ -2204,50 +2576,58 @@ Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. Writing the HTML file failed. Gagal menyimpan ke berkas HTML. + + Export database to XML file + Ekspor basis data ke berkas XML + + + XML file + Berkas XML + + + Writing the XML file failed + Penulisan berkas XML gagal + Export Confirmation Konfirmasi Ekspor You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Anda akan mengekspor basisdata Anda ke berkas tanpa enkripsi. Ini akan membuat sandi dan informasi sensitif lainnya menjadi sangat rentan. Apakah Anda yakin ingin melanjutkan? - - - New Database - Basisdata Baru - - - %1 [New Database] - Database tab name modifier - %1 [Basisdata Baru] + Anda akan mengekspor basis data Anda ke berkas tanpa enkripsi. Ini akan membuat sandi dan informasi sensitif lainnya menjadi sangat rentan. Apakah Anda yakin ingin melanjutkan? %1 [Locked] Database tab name modifier %1 [Dikunci] + + %1 [Temporary] + Database tab name modifier + %1 [Sementara] + DatabaseWidget - Database Tags - Tanda Basisdata + Searches and Tags + Pencarian dan Tag Searching… - + Sedang mencari… Shared group… - + Grup bersama… Confirm Auto-Type - + Confirm Auto-Type Perform Auto-Type into the previously active window? - + Perform Auto-Type into the previously active window? Execute command? @@ -2281,21 +2661,25 @@ Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. Expired entries Entri kedaluwarsa + + Entries expiring within %1 day(s) + Entri yang kedaluwarsa dalam waktu %1 hari(s) + No current database. - Tidak ada basisdata. + Tidak ada basis data. No source database, nothing to do. - Tidak ada sumber basisdata, tidak perlu melakukan apa-apa. + Tidak ada sumber basis data, tidak perlu melakukan apa-apa. Successfully merged the database files. - Berhasil menggabungkan berkas basisdata. + Berhasil menggabungkan berkas basis data. Database was not modified by merge operation. - Basisdata tidak ada perubahan yang diakibatkan oleh proses penggabungan. + Basis Data tidak ada perubahan yang diakibatkan oleh proses penggabungan. Search Results (%1) @@ -2305,9 +2689,21 @@ Masalah ini jelas sebuah bug, silakan laporkan ke pengembang. No Results Tidak Ada Hasil + + Save + Simpan + + + Enter a unique name or overwrite an existing search from the list: + Masukkan sebuah nama unik atau timpa pencarian yang ada dari daftar: + + + Save Search + Simpan pencarian + Lock Database? - Kunci Basisdata? + Kunci Basis Data? You are editing an entry. Discard changes and lock anyway? @@ -2322,7 +2718,7 @@ Simpan perubahan? Database was modified. Save changes? - Basisdata telah diubah. + Basis Data telah diubah. Simpan perubahan? @@ -2333,26 +2729,6 @@ Simpan perubahan? File has changed Berkas telah berubah - - The database file has changed. Do you want to load the changes? - Berkas basisdata telah berubah. Apakah Anda ingin memuat perubahannya? - - - Merge Request - Permintaan Penggabungan - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Berkas basisdata telah berubah dan Anda memiliki ubahan yang belum disimpan. -Apakah Anda ingin menggabungkan ubahan Anda? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Tidak bisa membuka berkas basisdata baru saat mencoba untuk memuat ulang. -Galat: %1 - Disable safe saves? Nonaktifkan penyimpanan aman? @@ -2360,12 +2736,12 @@ Galat: %1 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 telah beberapa kali gagal menyimpan basisdata. Hal ini mungkin disebabkan oleh layanan sinkronisasi berkas yang menghalangi berkas yang akan disimpan. + KeePassXC telah beberapa kali gagal menyimpan basis data. Hal ini mungkin disebabkan oleh layanan sinkronisasi berkas yang menghalangi berkas yang akan disimpan. Nonaktifkan penyimpanan aman dan coba lagi? Writing the database failed: %1 - Gagal menyimpan basisdata: %1 + Gagal menyimpan basis data: %1 Passwords @@ -2373,15 +2749,15 @@ Nonaktifkan penyimpanan aman dan coba lagi? Save database as - Simpan basisdata sebagai + Simpan basis data sebagai KeePass 2 Database - Basisdata KeePass 2 + Basis Data KeePass 2 Save database backup - Simpan cadangan basisdata + Simpan cadangan basis data Empty recycle bin? @@ -2393,11 +2769,96 @@ Nonaktifkan penyimpanan aman dan coba lagi? Could not find database file: %1 - Tidak bisa menemukan berkas basisdata: %1 + Tidak bisa menemukan berkas basis data: %1 - - Entries expiring within %1 day(s) - + + New Database + Basis Data Baru + + + %1 [New Database] + Database tab name modifier + %1 [Basis Data Baru] + + + Remote Sync did not contain any download or upload commands. + Sinkronisasi Jarak Jauh tidak berisi perintah unduh atau unggah. + + + Remote sync '%1' completed successfully! + Sinkronisasi jarak jauh '%1' berhasil diselesaikan! + + + Remote sync '%1' failed: %2 + Sinkronisasi jarak jauh '%1' gagal: %2 + + + Error while saving database %1: %2 + Kesalahan saat menyimpan basis data %1: %2 + + + Downloading... + Mengunduh... + + + Uploading... + Mengunggah... + + + Syncing... + Menyinkronkan... + + + Remove passkey from entry + Hapus kunci akses dari entri + + + Do you want to remove the passkey from this entry? + Apakah Anda ingin menghapus kunci akses dari entri ini? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2450,10 +2911,6 @@ Nonaktifkan penyimpanan aman dan coba lagi? n/a t/a - - (encrypted) - (terenkripsi) - Select private key Pilih kunci privat @@ -2472,7 +2929,7 @@ Nonaktifkan penyimpanan aman dan coba lagi? Some Browser Integration settings are overridden by group settings. - + Some Browser Integration settings are overridden by group settings. Invalid Entry @@ -2481,23 +2938,28 @@ Nonaktifkan penyimpanan aman dan coba lagi? An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. Auto-Type Validation Error - + Auto-Type Validation Error An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? Entry updated successfully. @@ -2535,6 +2997,10 @@ Would you like to correct it? Hide Sembunyikan + + %n hour(s) + %n jam(s) + %n week(s) %n minggu @@ -2547,9 +3013,9 @@ Would you like to correct it? %n year(s) %n tahun - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Gagal mendekripsi kunci SSH, pastikan kata sandi sudah benar. @@ -2612,11 +3078,11 @@ Would you like to correct it? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. Exclude from database reports - Kecualikan dari laporan basisdata + Kecualikan dari laporan basis data Foreground Color: @@ -2669,10 +3135,20 @@ Would you like to correct it? Add new window association Tambah asosiasi jendela baru + + + + Add item + + + Remove selected window association Buang asosiasi jendela yang dipilih + + - + Remove item + - + Window title: Judul jendela: @@ -2697,23 +3173,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Urutan Ketik-Otomatis khusus untuk jendela ini - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Pengaturan ini mempengaruhi perilaku entri dengan ekstensi peramban. - General Umum @@ -2726,26 +3188,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Lewati Kirim-Otomatis untuk entri ini - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Hanya kirim pengaturan ini ke peramban untuk dialog Otentikasi HTTP. Jika diaktifkan, formulir masuk yang normal tidak akan menampilkan entri ini untuk dipilih. - Use this entry only with HTTP Basic Auth Hanya gunakan entri ini dengan Otentikasi Dasar HTTP - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - - Do not use this entry with HTTP Basic Auth Jangan gunakan entri ini dengan Otentikasi Dasar HTTP - - Additional URL's - URL tambahan - Add Tambah @@ -2758,6 +3208,22 @@ Would you like to correct it? Edit Sunting + + These settings affect the entry's behaviour with the browser extension. + Pengaturan ini memengaruhi perilaku entri dengan ekstensi peramban. + + + Additional URLs + URL Tambahan + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Hanya kirim entri ini ke peramban untuk menampilkan jendela Autentikasi HTTP. Jika diaktifkan, halaman masuk normal tidak akan menampilkan entri ini untuk dipilih. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Jangan kirim entri ini ke peramban untuk meminta Autentikasi HTTP. Jika diaktifkan, jendela Autentikasi HTTP tidak akan menampilkan entri ini untuk dipilih. + EditEntryWidgetHistory @@ -2808,22 +3274,10 @@ Would you like to correct it? Notes field Ruas catatan - - Toggle the checkbox to reveal the notes section. - Pilih kotak centang untuk mengungkap bagian catatan. - Username field Ruas nama pengguna - - Toggle notes visible - Aktif/Nonaktifkan visibilitas cacatan - - - Notes: - Catatan: - Expiration field Ruas kedaluwarsa @@ -2840,14 +3294,6 @@ Would you like to correct it? Presets Prasetel - - Password: - Sandi: - - - URL: - URL: - Url field Ruas url @@ -2856,18 +3302,10 @@ Would you like to correct it? Download favicon for URL Untuk favicon untuk URL - - Title: - Judul: - Title field Ruas judul - - Username: - Nama pengguna: - Password field Ruas sandi @@ -2876,17 +3314,41 @@ Would you like to correct it? Toggle expiration Aktif/Nonaktifkan kedaluwarsa - - Expires: - Kedaluwarsa: - - - Tags: - - Tags list - + Daftar tag + + + &Username: + Nama Pengg&una: + + + &Title: + &Judul: + + + &Password: + Kata &Sandi: + + + UR&L: + UR&L: + + + &Notes: + Catata&n: + + + Toggle notes visibility + Jungkitkan kenampakan catatan + + + T&ags: + T&ag: + + + &Expires: + K&edaluwarsa: @@ -2897,7 +3359,7 @@ Would you like to correct it? Remove key from agent when database is closed/locked - Buang kunci dari agent saat basisdata ditutup/dikunci + Buang kunci dari agent saat basis data ditutup/dikunci Comment @@ -2905,7 +3367,7 @@ Would you like to correct it? Add key to agent when database is opened/unlocked - Tambahkan kunci ke agent saat basisdata dibuka/tak terkunci + Tambahkan kunci ke agent saat basis data dibuka/tak terkunci Decrypt @@ -2927,19 +3389,6 @@ Would you like to correct it? Private key Kunci privat - - External file - Berkas eksternal - - - Browser for key file - Peramban untuk berkas kunci - - - Browse… - Button for opening file dialog - Telusuri… - Attachment Lampiran @@ -2956,6 +3405,23 @@ Would you like to correct it? Remove from agent Buang dari agent + + External file + Berkas eksternal + + + Browser for key file + Peramban untuk berkas kunci + + + Browse… + Button for opening file dialog + Telusuri… + + + Generate + Buat + Select attachment file Pilih berkas lampiran @@ -2980,6 +3446,10 @@ Would you like to correct it? seconds detik + + Clear agent + + EditGroupWidget @@ -2991,10 +3461,6 @@ Would you like to correct it? Icon Ikon - - Browser Integration - Integrasi Peramban - Properties Properti @@ -3009,7 +3475,11 @@ Would you like to correct it? Group has unsaved changes - + Grup memiliki perubahan yang belum disimpan + + + Browser Integration + Integrasi Peramban Enable @@ -3026,45 +3496,57 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Sunting Grup - These settings affect to the group's behaviour with the browser extension. - + These settings affect to the group's behaviour with the browser extension. Hide entries from browser extension: - + Hide entries from browser extension: Hide entries from browser extension toggle for this and sub groups - + Hide entries from browser extension toggle for this and sub groups Skip Auto-Submit for entries: - + Skip Auto-Submit for entries: Skip Auto-Submit toggle for this and sub groups - + Skip Auto-Submit toggle for this and sub groups Use entries only with HTTP Basic Auth: - + Use entries only with HTTP Basic Auth: Only HTTP Auth toggle for this and sub groups - + Only HTTP Auth toggle for this and sub groups Do not use entries with HTTP Basic Auth: - + Do not use entries with HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups - + Do not use HTTP Auth toggle for this and sub groups + + + Omit WWW subdomain from matching: + Abaikan subdomain WWW dari pencocokan: + + + Omit WWW subdomain from matching toggle for this and sub groups + Hilangkan subdomain WWW dari toggle yang cocok untuk ini dan subgrup + + + Restrict matching to given browser key: + Membatasi pencocokan dengan kunci peramban yang diberikan: + + + Restrict matching to given browser key toggle for this and sub groups + Batasi pencocokan dengan tombol kunci peramban yang diberikan untuk grup ini dan anak grup @@ -3133,15 +3615,15 @@ Ekstensi yang didukung adalah: %1. %1 is already being exported by this database. - %1 telah diekspor oleh basisdata ini. + %1 telah diekspor oleh basis data ini. %1 is already being imported by this database. - %1 telah diimpor oleh basisdata ini. + %1 telah diimpor oleh basis data ini. %1 is being imported and exported by different groups in this database. - %1 sedang diimpor dan diekspor oleh berbagai grup dalam basisdata ini. + %1 sedang diimpor dan diekspor oleh berbagai grup dalam basis data ini. KeeShare is currently disabled. You can enable import/export in the application settings. @@ -3150,15 +3632,15 @@ Ekstensi yang didukung adalah: %1. Database export is currently disabled by application settings. - Ekspor basisdata saat ini dinonaktifkan oleh pengaturan aplikasi. + Ekspor basis data saat ini dinonaktifkan oleh pengaturan aplikasi. Database import is currently disabled by application settings. - Impor basisdata saat ini dinonaktifkan oleh pengaturan aplikasi. + Impor basis data saat ini dinonaktifkan oleh pengaturan aplikasi. KeeShare container - + KeeShare container KeeShare signed container @@ -3252,15 +3734,15 @@ Ekstensi yang didukung adalah: %1. Choose icon… - + Pilih ikon Set the URL to use to search for a favicon - + Mengatur URL yang dipakai untuk mencari favicon Favicon URL - + URL Favicon Download favicon for URL @@ -3276,7 +3758,7 @@ Ekstensi yang didukung adalah: %1. Apply icon to… - + Terapkan ikon ke... Apply to this group only @@ -3298,10 +3780,6 @@ Ekstensi yang didukung adalah: %1. Unable to fetch favicon. Tidak bisa mengunduh favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Anda bisa mengaktifkan layanan ikon situs web oleh DuckDuckGo di Perkakas > Pengaturan > Keamanan - Existing icon selected. Ikon yang sudah ada dipilih. @@ -3328,12 +3806,16 @@ Ekstensi yang didukung adalah: %1. %n icon(s) already exist in the database - %n ikon sudah ada didalam basisdata + %n ikon sudah ada didalam basis data The following icon(s) failed: Ikon berikut gagal: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Anda dapat mengaktifkan layanan ikon situs web DuckDuckGo melalui Pengaturan Aplikasi -> Keamanan + EditWidgetProperties @@ -3410,11 +3892,44 @@ Ini mungkin akan menyebabkan pengaya menjadi tidak berfungsi. %1 - Clone %1 - Salinan + + Passkey + Kunci akses + + + Invalid conversion type: %1 + Tipe konversi tidak valid: %1 + + + Invalid conversion syntax: %1 + Sintaks konversi tidak valid: %1 + + + Invalid regular expression syntax %1 +%2 + Sintaks ekspresi reguler %1 tidak valid +%2 + EntryAttachments Cannot open file "%1" + Tidak bisa membuka berkas "%1" + + + + EntryAttachmentsDialog + + Form + Formulir + + + File name + + + + File contents... @@ -3455,14 +3970,6 @@ Ini mungkin akan menyebabkan pengaya menjadi tidak berfungsi. Remove Buang - - Rename selected attachment - - - - Rename - - Open selected attachment Buka lampiran yang dipilih @@ -3535,12 +4042,7 @@ Ini mungkin akan menyebabkan pengaya menjadi tidak berfungsi. Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + Confirm Overwrite Attachment Confirm Attachment @@ -3552,26 +4054,46 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 adalah berkas yang sangat besar (%2 MB). -Basisdata Anda akan menjadi sangat besar dan akan mengurangi performa kinerja. +Basis Data Anda akan menjadi sangat besar dan akan mengurangi performa kinerja. Apakah Anda yakin ingin menambahkan berkas ini? Attachment modified - + Attachment modified The attachment '%1' was modified. Do you want to save the changes to your database? - + The attachment '%1' was modified. +Do you want to save the changes to your database? Saving attachment failed - + Saving attachment failed Saving updated attachment failed. Error: %1 + Saving updated attachment failed. +Error: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + New + + + + Preview + Pratinjau + + + Failed to preview an attachment: Attachment not found @@ -3586,7 +4108,7 @@ Error: %1 EntryHistoryModel Current (%1) - + Current (%1) Last modified @@ -3594,11 +4116,11 @@ Error: %1 Age - + Usia Difference - + Perbedaan Size @@ -3626,7 +4148,7 @@ Error: %1 Custom Attributes - + Atribut Ubahan Icon @@ -3634,7 +4156,7 @@ Error: %1 Color - + Warna Expiration @@ -3646,7 +4168,7 @@ Error: %1 Custom Data - + Data Ubahan Attachments @@ -3658,7 +4180,7 @@ Error: %1 Tags - + Tag @@ -3730,7 +4252,7 @@ Error: %1 Password Strength - + Kekuatan Kata Sandi Entry notes @@ -3768,6 +4290,14 @@ Error: %1 Has TOTP Memiliki TOTP + + Background Color + Warna Latar belakang + + + Group Path + + EntryPreviewWidget @@ -3788,8 +4318,8 @@ Error: %1 Sandi - Notes - Catatan + URL + URL Expiration @@ -3797,19 +4327,19 @@ Error: %1 Tags - + Tag Tags list - + Daftar tag Username Nama pengguna - URL - URL + Notes + Catatan Advanced @@ -3859,6 +4389,10 @@ Error: %1 Never Tidak Pernah + + Double click to copy value + Klik ganda untuk menyalin nilai + Enabled Diaktifkan @@ -3867,6 +4401,10 @@ Error: %1 Disabled Dinonaktifkan + + Double click to copy to clipboard + Klik ganda untuk menyalin ke papan klip + EntryURLModel @@ -3874,6 +4412,10 @@ Error: %1 Invalid URL URL tidak valid + + Duplicate URL + Duplikatkan URL + EntryView @@ -3889,42 +4431,48 @@ Error: %1 Reset to defaults Kembalikan ke setelan bawaan + + + %1 entry(s)... + + %1 entri... + ExportDialog Export options - + Opsi ekspor Sort entries by... - + Sort entries by... You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + database order - + database order name (ascending) - + nama (urut naik) name (descending) - + nama (urut turun) unknown - + unknown Export database to HTML file - Ekspor basisdata ke berkas HTML + Ekspor basis data ke berkas HTML HTML file @@ -3935,11 +4483,11 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::DBusMgr Failed to deliver message - + Gagal mengirim pesan Failed to send reply on DBus - + Gagal mengirim jawaban pada DBus Unknown @@ -3954,7 +4502,7 @@ This will leave your passwords and sensitive information vulnerable! <i>PID: %1, Executable: %2</i> <i>PID: 1234, Executable: /path/to/exe</i> - + <i>PID: %1, Executable: %2</i> Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. @@ -3966,30 +4514,30 @@ This will leave your passwords and sensitive information vulnerable! Failed to register service on DBus at path '%1' - + Gagal mendaftarkan layanan pada DBus di path '%1' Failed to register database on DBus under the name '%1' - + Failed to register database on DBus under the name '%1' Failed to register session on DBus at path '%1' - + Failed to register session on DBus at path '%1' Failed to register item on DBus at path '%1' - + Failed to register item on DBus at path '%1' Failed to register prompt object on DBus at path '%1' - + Failed to register prompt object on DBus at path '%1' FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - Entri "%1" dari basisdata "%2" telah digunakan oleh %3 + Entri "%1" dari basis data "%2" telah digunakan oleh %3 @@ -4008,7 +4556,7 @@ This will leave your passwords and sensitive information vulnerable! Non-existing/inaccessible executable path. Please double-check the client is legit. - + Non-existing/inaccessible executable path. Please double-check the client is legit. @@ -4026,7 +4574,7 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::UnlockPrompt %1 (PID: %2) - + %1 (PID: %2) @@ -4085,11 +4633,11 @@ Anda dapat mengaktifkan layanan ikon situs web DuckDuckGo di bagian keamanan dal Please wait, processing entry list… - + Please wait, processing entry list… Downloading… - + Mengunduh... Ok @@ -4105,6 +4653,193 @@ Anda dapat mengaktifkan layanan ikon situs web DuckDuckGo di bagian keamanan dal Downloading favicons (%1/%2)… + Mengunduh favicon (%1/%2)... + + + + ImportWizard + + Import Wizard + Panduan Impor + + + + ImportWizardPageReview + + WizardPage + LamanPemandu + + + Entry count: %1 + Jumlah entri: %1 + + + Group + Grup + + + Title + Judul + + + Username + Nama pengguna + + + Password + Sandi + + + Url + Alamat web + + + Could not load key file. + Tidak dapat memuat berkas kunci. + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Formulir + + + Import File Selection + + + + Password: + Sandi: + + + Key File: + Berkas Kunci: + + + Browse… + Telusuri… + + + Import Into: + + + + New Database + Basis Data Baru + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Buka OPVault + + + Select import file + + + + All files + Semua berkas + + + Key files + Berkas kunci + + + Select key file + Pilih berkas kunci + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + Perintah: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + misalnya: "sftp user@hostname" atau "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) @@ -4123,11 +4858,11 @@ Anda dapat mengaktifkan layanan ikon situs web DuckDuckGo di bagian keamanan dal Kdbx3Reader Missing database headers - + Missing database headers Unable to calculate database key - TIdak bisa mengkalkulasi kunci basisdata + TIdak bisa mengkalkulasi kunci basis data Unable to issue challenge-response: %1 @@ -4137,7 +4872,7 @@ Anda dapat mengaktifkan layanan ikon situs web DuckDuckGo di bagian keamanan dal Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Kredensial yang diberikan tidak valid, silakan coba lagi. -Jika terus berulang, maka basisdata Anda mungkin rusak. +Jika terus berulang, maka basis data Anda mungkin rusak. Header doesn't match hash @@ -4149,11 +4884,11 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid header field length: field %1 - + Invalid header field length: field %1 Invalid header data length: field %1, %2 expected, %3 found - + Invalid header data length: field %1, %2 expected, %3 found @@ -4169,18 +4904,18 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Unable to calculate database key - TIdak bisa mengkalkulasi kunci basisdata + TIdak bisa mengkalkulasi kunci basis data Kdbx4Reader missing database headers - kehilangan tajuk basisdata + kehilangan tajuk basis data Unable to calculate database key: %1 - Tidak dapat mengkalkulasi kunci basisdata: %1 + Tidak dapat mengkalkulasi kunci basis data: %1 Invalid header checksum size @@ -4194,7 +4929,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Kredensial yang diberikan tidak valid, silakan coba lagi. -Jika terus berulang, maka basisdata Anda mungkin rusak. +Jika terus berulang, maka basis data Anda mungkin rusak. (HMAC mismatch) @@ -4210,11 +4945,11 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid header field length: field %1 - + Invalid header field length: field %1 Invalid header data length: field %1, %2 expected, %3 found - + Invalid header data length: field %1, %2 expected, %3 found Failed to open buffer for KDF parameters in header @@ -4230,19 +4965,19 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid inner header id size - + Invalid inner header id size Invalid inner header field length: field %1 - + Invalid inner header field length: field %1 Invalid inner header data length: field %1, %2 expected, %3 found - + Invalid inner header data length: field %1, %2 expected, %3 found Invalid inner header binary size - + Invalid inner header binary size Unsupported KeePass variant map version. @@ -4318,7 +5053,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Unable to calculate database key: %1 - Tidak dapat mengkalkulasi kunci basisdata: %1 + Tidak dapat mengkalkulasi kunci basis data: %1 Failed to serialize KDF parameters variant map @@ -4330,7 +5065,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. KdbxReader Invalid cipher uuid length: %1 (length=%2) - + Invalid cipher uuid length: %1 (length=%2) Unable to parse UUID: %1 @@ -4342,7 +5077,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid compression flags length - + Invalid compression flags length Unsupported compression algorithm @@ -4350,15 +5085,15 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid master seed size - + Invalid master seed size Invalid transform seed size - + Invalid transform seed size Invalid transform rounds size - + Invalid transform rounds size Invalid start bytes size @@ -4370,26 +5105,29 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid inner random stream cipher - + Invalid inner random stream cipher Failed to read database file. - Gagal membaca berkas basisdata. + Gagal membaca berkas basis data. The selected file is an old KeePass 1 database (.kdb). 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. - + The selected file is an old KeePass 1 database (.kdb). + +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. Not a KeePass database. - Bukan basisdata KeePass. + Bukan basis data KeePass. Unsupported KeePass 2 database version. - Versi basisdata KeePass 2 tidak didukung. + Versi basis data KeePass 2 tidak didukung. @@ -4520,7 +5258,7 @@ Baris %2, kolom %3 KeeAgentSettings Invalid KeeAgent settings file structure. - + Invalid KeeAgent settings file structure. Private key is an attachment but no attachments provided. @@ -4539,17 +5277,6 @@ Baris %2, kolom %3 Gagal membuka kunci privat - - KeePass1OpenWidget - - Import KeePass1 Database - Impor Basisdata KeePass1 - - - Unable to open the database. - Tidak bisa membuka basisdata. - - KeePass1Reader @@ -4558,7 +5285,7 @@ Baris %2, kolom %3 Not a KeePass database. - Bukan basisdata KeePass. + Bukan basis data KeePass. Unsupported encryption algorithm. @@ -4566,7 +5293,7 @@ Baris %2, kolom %3 Unsupported KeePass database version. - Versi basisdata KeePass tidak didukung. + Versi basis data KeePass tidak didukung. Unable to read encryption IV @@ -4587,15 +5314,15 @@ Baris %2, kolom %3 Invalid transform seed size - + Invalid transform seed size Invalid number of transform rounds - + Invalid number of transform rounds Unable to construct group tree - + Unable to construct group tree Root @@ -4603,17 +5330,17 @@ Baris %2, kolom %3 Unable to calculate database key - TIdak bisa mengkalkulasi kunci basisdata + TIdak bisa mengkalkulasi kunci basis data unable to seek to content position - + unable to seek to content position Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Kredensial yang diberikan tidak valid, silakan coba lagi. -Jika terus berulang, maka basisdata Anda mungkin rusak. +Jika terus berulang, maka basis data Anda mungkin rusak. Key transformation failed @@ -4681,7 +5408,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Invalid entry UUID field size - + Invalid entry UUID field size Invalid entry group id field size @@ -4740,7 +5467,7 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Inactive share - + Inactive share Imported from @@ -4786,11 +5513,11 @@ Jika terus berulang, maka basisdata Anda mungkin rusak. Generate a new key file or choose an existing one to protect your database. - Buat sebuah berkas kunci baru atau pilih yang sudah ada untuk melindungi basisdata Anda. + Buat sebuah berkas kunci baru atau pilih yang sudah ada untuk melindungi basis data Anda. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Catatan: JANGAN gunakan berkas yang dapat berubah karena itu akan mencegah Anda membuka kunci basisdata Anda! + Catatan: JANGAN gunakan berkas yang dapat berubah karena itu akan mencegah Anda membuka kunci basis data Anda! Browse for key file @@ -4820,23 +5547,23 @@ Pesan: %2 Add Key File - + Tambah Berkas Kunci Change Key File - + Ubah Berkas Kunci Remove Key File - + Hapus Berkas Kunci Key File set, click to change or remove - + Berkas Kunci telah diatur, klik untuk mengubah atau menghapus <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>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> Key files @@ -4848,7 +5575,7 @@ Pesan: %2 Create Key File… - + Buat Berkas Kunci... Error creating key file @@ -4868,7 +5595,7 @@ Pesan: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Anda tidak dapat menggunakan basisdata sekarang sebagai kunci berkasnya sendiri. Harap pilih berkas berbeda atau hasilkan kunci berkas baru. + Anda tidak dapat menggunakan basis data sekarang sebagai kunci berkasnya sendiri. Harap pilih berkas berbeda atau hasilkan kunci berkas baru. Suspicious Key File @@ -4877,7 +5604,7 @@ Pesan: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Kunci berkas yang dipilih terlihat seperti kata sandi basisdata. Kunci berkas harus berkas statis yang tidak pernah berubah atau Anda akan kehilangan akses ke basisdata Anda selamanya. + Kunci berkas yang dipilih terlihat seperti kata sandi basis data. Kunci berkas harus berkas statis yang tidak pernah berubah atau Anda akan kehilangan akses ke basis data Anda selamanya. Apakah Anda yakin ingin melanjutkan dengan berkas ini? @@ -4885,15 +5612,15 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? MacUtils Invalid key code - + Invalid key code Global shortcut already registered to %1 - + Pintasan global telah didaftarkan ke %1 Could not register global shortcut - + Tidak bisa mendaftar pintasan global @@ -4904,11 +5631,7 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? &Recent Databases - Basisdata Ba&ru-baru Ini - - - &Import - &Impor + Basis Data Ba&ru-baru Ini &Export @@ -4930,6 +5653,10 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? TOTP TOTP + + Tags + Tag + &Groups &Grup @@ -4960,48 +5687,32 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? &Open Database… - &Buka Basisdata… + &Buka Basis Data… &Save Database - &Simpan Basisdata + &Simpan Basis Data &Close Database - &Tutup Basisdata + &Tutup Basis Data &New Database… - Basisdata &Baru… - - - Create a new database - Buat basisdata baru + Basis Data &Baru… &Merge From Database… - &Gabung Dari Basisdata… - - - Merge from another KDBX database - Gabung dari basisdata KDBX lainnya + &Gabung Dari Basis Data… &New Entry… Entri &Baru… - - Add a new entry - Tambahkan entri baru - &Edit Entry… &Sunting Entri… - - View or edit entry - Lihat atau sunting entri - &Delete Entry… &Hapus Entri… @@ -5010,10 +5721,6 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? &New Group… Grup &Baru… - - Add a new group - Tambahkan grup baru - &Edit Group… &Sunting Grup… @@ -5036,28 +5743,20 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Sa&ve Database As… - Sim&pan Basisdata Sebagai… + Sim&pan Basis Data Sebagai… Database &Security… - &Keamanan Basisdata… + &Keamanan Basis Data… Database &Reports… - - - - Statistics, health check, etc. - Statistik, cek kesehatan, dll. + Database &Reports… &Database Settings… Pengaturan Basis&data… - - Database settings - Pengaturan basisdata - &Clone Entry… &Gandakan Entri… @@ -5066,34 +5765,18 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Move u&p Pindah ke &atas - - Move entry one step up - Pindah entri 1 level ke atas - Move do&wn Pindah ke &bawah - - Move entry one step down - Pindah entri 1 level ke bawah - Copy &Username Salin &Nama Pengguna - - Copy username to clipboard - Salin nama pengguna ke papan klip - Copy &Password Salin &Sandi - - Copy password to clipboard - Salin sandi ke papan klip - &Settings &Pengaturan @@ -5116,36 +5799,24 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? &Lock Database - + &Kunci Pangkalan Data Lock &All Databases - Kunci &Semua Basisdata + Kunci &Semua Basis Data &Title &Judul - Copy title to clipboard - Salin judul ke papan klip - - - &URL - &URL - - - Copy URL to clipboard - Salin URL ke papan klip + Copy &URL + Salin &URL &Notes &Catatan - - Copy notes to clipboard - Salin catatan ke papan klip - &CSV File… Berkas &CSV… @@ -5156,28 +5827,16 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? KeePass 1 Database… - Basisdata KeePass 1… - - - Import a KeePass 1 database - Impor basisdata KeePass 1 + Basis Data KeePass 1… 1Password Vault… Brankas 1Password… - - Import a 1Password Vault - Impor Brankas 1Password - CSV File… Berkas CSV… - - Import a CSV file - Impor berkas CSV - Show TOTP Tampilkan TOTP @@ -5194,6 +5853,10 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Copy &TOTP Salin &TOTP + + Copy Password and TOTP + Salin Sandi dan TOTP + E&mpty recycle bin Kosongkan keranjang sa&mpah @@ -5218,10 +5881,6 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? &Online Help &Bantuan Daring - - Go to online documentation - Kunjungi dokumentasi daring - &User Guide Pand&uan Pengguna @@ -5236,7 +5895,7 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Save Database Backup… - Simpan Cadangan Basisdata... + Simpan Cadangan Basis Data... Add key to SSH Agent @@ -5266,6 +5925,10 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Classic (Platform-native) Klasik (Native-platform) + + Show Menubar + + Show Toolbar Tampilkan Bilah Alat @@ -5288,7 +5951,11 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? Clone Group... - + Clone Group... + + + &XML File… + Berkas &XML... Clear history @@ -5307,7 +5974,7 @@ Apakah Anda yakin ingin melanjutkan dengan berkas ini? There is a high risk of corruption, maintain a backup of your databases. This version is not meant for production use. PERINGATAN: Anda menggunakan versi tidak stabil dari KeePassXC. -Kemungkinan besar akan terjadi korup, pelihara cadangan basisdata Anda. +Kemungkinan besar akan terjadi korup, pelihara cadangan basis data Anda. Versi ini tidak dimaksudkan untuk penggunaan sehari-hari. @@ -5317,9 +5984,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - + No Tags + Tidak Ada Tag Restore Entry(s) @@ -5349,9 +6015,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Keluar KeePassXC + + %1 Entry(s) + + Please present or touch your YubiKey to continue… - + Please present or touch your YubiKey to continue… Restart Application? @@ -5361,28 +6031,336 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Anda harus memulai ulang aplikasi untuk menerapkan pengaturan ini. Apakah Anda ingin memulai ulang sekarang? + + Allow Screen Capture + Izinkan Tangkapan Layar + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Sunting Entri + + + Delete Entry + + + + Create Group + + + + Edit Group + Sunting Grup + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Salin Nama Pengguna + + + Copy Password + Salin Kata Sandi + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Impor Basis Data KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Pembuat Sandi + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase Database settings - Pengaturan basisdata + Pengaturan basis data Edit database settings - Sunting pengaturan basisdata + Sunting pengaturan basis data Unlock database - Buka kunci basisdata + Buka kunci basis data Unlock database to show more information - Buka kunci basisdata untuk menampilkan lebih banyak informasi + Buka kunci basis data untuk menampilkan lebih banyak informasi Lock database - Kunci basisdata + Kunci basis data @@ -5397,18 +6375,18 @@ We recommend you use the AppImage available on our downloads page. Reset - + Reset Reset any remembered decisions for this application - + Reset any remembered decisions for this application Merger Creating missing %1 [%2] - + Creating missing %1 [%2] Relocating %1 [%2] @@ -5418,26 +6396,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Menyimpan ulang %1 [%2] - - older entry merged from database "%1" - entri lama yang digabung dari basisdata "%1" - - - Adding backup for older target %1 [%2] - Menambahkan cadangan untuk target lama %1 [%2] - - - Adding backup for older source %1 [%2] - Menambahkan cadangan untuk sumber lama %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - - - - Reapplying older source entry on top of newer target %1 [%2] - - Synchronizing from newer source %1 [%2] Menyinkronkan dengan sumber yang lebih baru %1 [%2] @@ -5448,11 +6406,11 @@ We recommend you use the AppImage available on our downloads page. Deleting child %1 [%2] - + Deleting child %1 [%2] Deleting orphan %1 [%2] - + Deleting orphan %1 [%2] Changed deleted objects @@ -5475,7 +6433,7 @@ We recommend you use the AppImage available on our downloads page. NewDatabaseWizard Create a new KeePassXC database… - + Create a new KeePassXC database… Root @@ -5495,26 +6453,18 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Di sini Anda bisa menyesuaikan pengaturan enkripsi basisdata. Jangan khawatir, Anda bisa mengubahnya lagi nanti di pengaturan basisdata. - - - Advanced Settings - Pengaturan Lanjutan - - - Simple Settings - Pengaturan Dasar + Di sini Anda bisa menyesuaikan pengaturan enkripsi basis data. Jangan khawatir, Anda bisa mengubahnya lagi nanti di pengaturan basis data. NewDatabaseWizardPageDatabaseKey Database Credentials - Kredensial Basisdata + Kredensial Basis Data A set of credentials known only to you that protects your database. - Kredensial yang hanya diketahui oleh Anda yang melindungi basisdata Anda. + Kredensial yang hanya diketahui oleh Anda yang melindungi basis data Anda. @@ -5525,18 +6475,37 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Di sini Anda bisa menyesuaikan pengaturan enkripsi basisdata. Jangan khawatir, Anda bisa mengubahnya lagi nanti di pengaturan basisdata. + Di sini Anda bisa menyesuaikan pengaturan enkripsi basis data. Jangan khawatir, Anda bisa mengubahnya lagi nanti di pengaturan basis data. NewDatabaseWizardPageMetaData General Database Information - Informasi Basisdata Umum + Informasi Basis Data Umum Please fill in the display name and an optional description for your new database: - Silakan masukkan nama dan deskripsi opsional untuk basisdata Anda yang baru: + Silakan masukkan nama dan deskripsi opsional untuk basis data Anda yang baru: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Simpan lampiran + + + New entry attachment + @@ -5547,18 +6516,18 @@ We recommend you use the AppImage available on our downloads page. Global shortcut already registered to %1 - + Pintasan global telah didaftarkan ke %1 Could not register global shortcut - + Tidak bisa mendaftar pintasan global OpData01 Invalid OpData01, does not contain header - + Invalid OpData01, does not contain header Unable to read all IV bytes, wanted 16 but got %1 @@ -5566,7 +6535,7 @@ We recommend you use the AppImage available on our downloads page. Unable to init cipher for opdata01: %1 - + Unable to init cipher for opdata01: %1 Unable to read all HMAC signature bytes @@ -5578,19 +6547,11 @@ We recommend you use the AppImage available on our downloads page. Unable to process clearText in place - + Unable to process clearText in place Expected %1 bytes of clear-text, found %2 - - - - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - + Expected %1 bytes of clear-text, found %2 @@ -5617,7 +6578,7 @@ We recommend you use the AppImage available on our downloads page. Unable to derive master key: %1 - + Unable to derive master key: %1 @@ -5640,7 +6601,7 @@ We recommend you use the AppImage available on our downloads page. Key file magic header id invalid - + Key file magic header id invalid Found zero keys @@ -5666,6 +6627,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Cipher tidak diketahui: %1 + + AES-256/GCM is currently not supported + AES-256/GCM saat ini tidak didukung + Passphrase is required to decrypt this key Membutuhkan frasa sandi untuk mendekripsi kunci ini @@ -5684,7 +6649,7 @@ We recommend you use the AppImage available on our downloads page. Failed to initialize cipher: %1 - + Failed to initialize cipher: %1 Decryption failed: %1 @@ -5696,11 +6661,11 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF while reading key - + Unexpected EOF while reading key Unsupported key part - + Unsupported key part Unexpected EOF while reading public key @@ -5730,28 +6695,180 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key EOF yang tidak terduga saat menulis kunci privat + + (encrypted) + (terenkripsi) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Sandi tidak sama + SSH Key Generator + - Passwords match so far - Kata sandi cocok sejauh ini + Type + Tipe - Toggle Password (%1) - Aktif/Nonaktifkan Sandi (%1) + Bits + - Generate Password (%1) - Buat Sandi (%1) + Comment + Komentar + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - Peringatan: Caps Lock aktif! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Batal + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + Nama pengguna: %1 + + + Group + Grup + + + Database + Basis data + + + Import Passkey + + + + Import + Impor + + + Cancel + Batal + + + Entry + Entri + + + Create new entry + + + + Relying Party: %1 + Pihak yang Mengandalkan: %1 + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Semua berkas + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5778,23 +6895,23 @@ We recommend you use the AppImage available on our downloads page. Add Password - + Tambahkan Kata Sandi Change Password - + Change Password Remove Password - + Remove Password Password set, click to change or remove - + Password set, click to change or remove <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> - <p>Kata sandi adalah metode utama untuk mengamankan basisdata Anda.</p><p>Kata sandi yang bagus adalah unik dan panjang. KeePassXC dapat menghasilkan satu untuk Anda.</p> + <p>Kata sandi adalah metode utama untuk mengamankan basis data Anda.</p><p>Kata sandi yang bagus adalah unik dan panjang. KeePassXC dapat menghasilkan satu untuk Anda.</p> Passwords do not match. @@ -5932,10 +7049,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Juga pilih dari: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Karakter yang dikecualikan: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Kecualikan karakter mirip @@ -5960,25 +7073,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: Jumlah Kata: - - Character Count: - - Word Case: Besar Kecil Kata: Delete selected wordlist - + Delete selected wordlist Add custom wordlist - - - - character - + Add custom wordlist Close @@ -6010,57 +7115,12 @@ We recommend you use the AppImage available on our downloads page. (SYSTEM) - + (SYSTEM) Entropy: %1 bit Entropi: %1 bit - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - Semua Berkas - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - Logogram - - - Special Characters - Karakter Spesial - Password Quality: %1 Kualitas Sandi: %1 @@ -6085,19 +7145,147 @@ Do you want to overwrite it? Password quality Sempurna + + Confirm Delete Wordlist + Confirm Delete Wordlist + + + Do you really want to delete the wordlist "%1"? + Do you really want to delete the wordlist "%1"? + + + Failed to delete wordlist + Failed to delete wordlist + + + Wordlists + Wordlists + + + All files + Semua Berkas + + + Select Custom Wordlist + Select Custom Wordlist + + + Overwrite Wordlist? + Overwrite Wordlist? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + + + Failed to add wordlist + Failed to add wordlist + + + Logograms + Logogram + + + Special Characters + Karakter Spesial + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Sandi tidak sama + + + Passwords match so far + Kata sandi cocok sejauh ini + + + Toggle Password (%1) + Aktif/Nonaktifkan Sandi (%1) + + + Generate Password (%1) + Buat Sandi (%1) + + + Warning: Caps Lock enabled! + Peringatan: Caps Lock aktif! + + + Quality: %1 + Kualitas: %1 + + + Poor + Password quality + Buruk + + + Weak + Password quality + Lemah + + + Good + Password quality + Baik + + + Excellent + Password quality + Sempurna + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog KeePassXC - Pick Characters - + KeePassXC - Pick Characters Select characters to type, navigate with arrow keys, Ctrl + S submits. - + Select characters to type, navigate with arrow keys, Ctrl + S submits. Press &Tab between characters + Press &Tab between characters + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported @@ -6139,16 +7327,20 @@ Do you want to overwrite it? Continue Lanjutkan + + Continue with weak password + + QObject Database not opened - Basisdata tidak terbuka + Basis Data tidak terbuka Database hash not available - Hash basisdata tidak tersedia + Hash basis data tidak tersedia Client public key not received @@ -6200,7 +7392,7 @@ Do you want to overwrite it? No valid UUID provided - + No valid UUID provided Unknown error @@ -6216,7 +7408,7 @@ Do you want to overwrite it? Could not save the native messaging script file for %1. - + Could not save the native messaging script file for %1. Username for the entry. @@ -6236,7 +7428,7 @@ Do you want to overwrite it? Notes for the entry. - + Notes for the entry. Notes @@ -6252,7 +7444,7 @@ Do you want to overwrite it? Add a new entry to a database. - Tambahkan entri baru ke basisdata. + Tambahkan entri baru ke basis data. Path of the entry to add. @@ -6260,7 +7452,7 @@ Do you want to overwrite it? Cannot generate a password and prompt at the same time. - + Cannot generate a password and prompt at the same time. Could not create entry with path %1. @@ -6272,7 +7464,7 @@ Do you want to overwrite it? Writing the database failed %1. - Gagal menyimpan basisdata %1. + Gagal menyimpan basis data %1. Successfully added entry %1. @@ -6280,7 +7472,7 @@ Do you want to overwrite it? Adds a new group to a database. - Menambahkan grup baru ke basisdata. + Menambahkan grup baru ke basis data. Path of the group to add. @@ -6308,11 +7500,11 @@ Do you want to overwrite it? Path to okon-cli to search a formatted HIBP file - + Path to okon-cli to search a formatted HIBP file okon-cli - + okon-cli Analyze passwords for weaknesses and problems. @@ -6320,11 +7512,11 @@ Do you want to overwrite it? Cannot find HIBP file: %1 - + Cannot find HIBP file: %1 Evaluating database entries using okon… - + Evaluating database entries using okon… Failed to open HIBP file %1: %2 @@ -6332,7 +7524,7 @@ Do you want to overwrite it? Evaluating database entries against HIBP file, this will take a while… - + Evaluating database entries against HIBP file, this will take a while… Password for '%1' has been leaked %2 time(s)! @@ -6340,23 +7532,23 @@ Do you want to overwrite it? Password for '%1' has been leaked! - + Password for '%1' has been leaked! Export an attachment of an entry. - + Export an attachment of an entry. Path of the entry with the target attachment. - + Path of the entry with the target attachment. Name of the attachment to be exported. - + Name of the attachment to be exported. Path to which the attachment should be exported. - + Path to which the attachment should be exported. Could not find entry with path %1. @@ -6364,68 +7556,68 @@ Do you want to overwrite it? Could not find attachment with name %1. - + Could not find attachment with name %1. No export target given. Please use '--stdout' or specify an 'export-file'. - + No export target given. Please use '--stdout' or specify an 'export-file'. Could not open output file %1. - + Could not open output file %1. Successfully exported attachment %1 of entry %2 to %3. - + Successfully exported attachment %1 of entry %2 to %3. Overwrite existing attachments. - + Overwrite existing attachments. Imports an attachment to an entry. - + Imports an attachment to an entry. Path of the entry. - + Path of the entry. Name of the attachment to be added. - + Name of the attachment to be added. Path of the attachment to be imported. - + Path of the attachment to be imported. Attachment %1 already exists for entry %2. - + Attachment %1 already exists for entry %2. Could not open attachment file %1. - + Could not open attachment file %1. Successfully imported attachment %1 as %2 to entry %3. - + Successfully imported attachment %1 as %2 to entry %3. Remove an attachment of an entry. - + Remove an attachment of an entry. Name of the attachment to be removed. - + Name of the attachment to be removed. Successfully removed attachment %1 from entry %2. - + Successfully removed attachment %1 from entry %2. Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - + Copy the given attribute to the clipboard. Defaults to "password" if not specified. Copy the current TOTP to the clipboard (equivalent to "-a totp"). @@ -6433,7 +7625,7 @@ Do you want to overwrite it? Must match only one entry, otherwise a list of possible matches is shown. - + Must match only one entry, otherwise a list of possible matches is shown. Copy an entry's attribute to the clipboard. @@ -6446,7 +7638,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). Invalid timeout value %1. @@ -6454,11 +7646,11 @@ Do you want to overwrite it? Multiple entries matching: - + Multiple entries matching: Using matching entry: %1 - + Using matching entry: %1 Entry %1 not found. @@ -6474,7 +7666,7 @@ Do you want to overwrite it? ERROR: attribute %1 is ambiguous, it matches %2. - + ERROR: attribute %1 is ambiguous, it matches %2. Attribute "%1" not found. @@ -6482,7 +7674,7 @@ Do you want to overwrite it? Entry's "%1" attribute copied to the clipboard! - + Entry's "%1" attribute copied to the clipboard! Clearing the clipboard in %1 second(s)... @@ -6494,7 +7686,7 @@ Do you want to overwrite it? Close the currently opened database. - Tutup basisdata yang saat ini dibuka. + Tutup basis data yang saat ini dibuka. Display this help. @@ -6506,7 +7698,7 @@ Do you want to overwrite it? Key file of the database. - Berkas kunci dari basisdata. + Berkas kunci dari basis data. path @@ -6514,27 +7706,31 @@ Do you want to overwrite it? Deactivate password key for the database. - Nonaktifkan kunci kata sandi untuk basisdata. + Nonaktifkan kunci kata sandi untuk basis data. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). slot[:serial] - + slot[:serial] Missing positional argument(s). - + Missing positional argument(s). Too many arguments provided. - + Too many arguments provided. + + + Path of the database. + Jalur ke basis data. Target decryption time in MS for the database. - Target waktu pendekripsian dalam MD untuk basisdata. + Target waktu pendekripsian dalam MD untuk basis data. time @@ -6542,19 +7738,15 @@ Do you want to overwrite it? Set the key file for the database. - Atur berkas kunci untuk basisdata. + Atur berkas kunci untuk basis data. Set a password for the database. - Atur kata sandi untuk basisdata. + Atur kata sandi untuk basis data. Create a new database. - Buat basisdata baru. - - - Path of the database. - Jalur ke basisdata. + Buat basis data baru. Invalid decryption time %1. @@ -6566,7 +7758,7 @@ Do you want to overwrite it? Failed to set database password. - Gagal mengatur kata sandi basisdata. + Gagal mengatur kata sandi basis data. Loading the key file failed @@ -6574,19 +7766,19 @@ Do you want to overwrite it? No key is set. Aborting database creation. - Tidak ada kunci yang diatur. Membatalkan pembuatan basisdata. + Tidak ada kunci yang diatur. Membatalkan pembuatan basis data. Benchmarking key derivation function for %1ms delay. - + Benchmarking key derivation function for %1ms delay. Setting %1 rounds for key derivation function. - + Setting %1 rounds for key derivation function. error while setting database key derivation settings. - terjadi kesalahan ketika mengatur pengaturan derivasi kunci basisdata. + terjadi kesalahan ketika mengatur pengaturan derivasi kunci basis data. File %1 already exists. @@ -6594,294 +7786,67 @@ Do you want to overwrite it? Failed to save the database: %1. - Gagal menyimpan basisdata: %1. + Gagal menyimpan basis data: %1. Successfully created new database. - Berhasil membuat basisdata baru. + Berhasil membuat basis data baru. - Word count for the diceware passphrase. - Jumlah kata untuk frasa sandi diceware. + Unset the password for the database. + Batal atur kata sandi untuk basis data. - count - CLI parameter - jumlah + Unset the key file for the database. + Batal atur berkas kunci untuk basis data. - Wordlist for the diceware generator. -[Default: EFF English] - Daftar kata untuk generator diceware. -[Bawaan: Inggris EFF] + Edit a database. + Edit basis data. - Generate a new random diceware passphrase. - Buat frasa sandi diceware acak yang baru. + Cannot use %1 and %2 at the same time. + Tidak dapat menggunakan %1 dan %2 secara bersamaan. - Invalid word count %1 - Jumlah kata tidak valid %1 + Could not change the database key. + Tidak dapat mengubah kunci database. - The word list is too small (< 1000 items) - Daftar kata terlalu kecil (<1000 item) - - - Title for the entry. - Judul entri. - - - title - judul - - - Edit an entry. - Sunting sebuah entri. - - - Path of the entry to edit. - Jalur entri yang akan disunting. - - - Not changing any field for entry %1. - - - - Enter new password for entry: - Masukkan sandi baru untuk entri: + Database was not modified. + Basis data tidak dimodifikasi. Writing the database failed: %1 - Gagal menyimpan basisdata: %1 + Gagal menyimpan basis data: %1 - Successfully edited entry %1. - Berhasil menyunting entri %1. + Successfully edited the database. + Berhasil mengedit database. - Perform advanced analysis on the password. - Jalankan analisis tingkat lanjut pada sandi. + Cannot remove password: The database does not have a password. + Tidak dapat menghapus kata sandi: Database tidak memiliki kata sandi. - Password for which to estimate the entropy. - Sandi untuk diestimasi entropinya. + Cannot remove file key: The database does not have a file key. + Tidak dapat menghapus kunci file: Database tidak memiliki kunci file. - Estimate the entropy of a password. - Estimasi entropi sandi. + Loading the new key file failed: %1 + Gagal memuat file kunci baru: %1 - Length %1 - Panjang %1 + Found unexpected Key type %1 + Ditemukan tipe Kunci tidak terduga %1 - Entropy %1 - Entropi %1 - - - Log10 %1 - Log10 %1 - - - Multi-word extra bits %1 - - - - Type: Bruteforce - Tipe: Bruteforce - - - Type: Dictionary - Tipe: Dictionary - - - Type: Dict+Leet - Tipe: Dict+Leet - - - Type: User Words - Tipe: User Words - - - Type: User+Leet - Tipe: User+Leet - - - Type: Repeated - Tipe: Repeated - - - Type: Sequence - Tipe: Sequence - - - Type: Spatial - Tipe: Spatial - - - Type: Date - Tipe: Tanggal - - - Type: Bruteforce(Rep) - - - - Type: Dictionary(Rep) - - - - Type: Dict+Leet(Rep) - - - - Type: User Words(Rep) - - - - Type: User+Leet(Rep) - - - - Type: Repeated(Rep) - - - - Type: Sequence(Rep) - - - - Type: Spatial(Rep) - - - - Type: Date(Rep) - - - - Type: Unknown (%1) - - - - Entropy %1 (%2) - Entropi %1 (%2) - - - *** Password length (%1) != sum of length of parts (%2) *** - *** Panjang kata sandi (%1) != jumlah panjang bagian (%2) *** - - - Exit interactive mode. - Keluar dari mode interaktif. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format yang digunakan ketika mengekspor. Pilihan yang tersedia adalah 'xml' atau 'csv'. Standarnya adalah 'xml'. - - - Exports the content of a database to standard output in the specified format. - Ekspor konten dari basisdata ke keluaran standar dalam format yang ditentukan. - - - Unable to export database to XML: %1 - Tidak bisa mengekspor basisdata ke XML: %1 - - - Unsupported format %1 - Format tidak didukung %1 - - - Length of the generated password - Panjang dari sandi yang dibuat - - - length - panjang - - - Use lowercase characters - Gunakan karakter huruf kecil - - - Use uppercase characters - Gunakan karakter huruf besar - - - Use numbers - Gunakan angka - - - Use special characters - Gunakan karakter spesial - - - Use extended ASCII - Gunakan ASCII lanjutan - - - Exclude character set - Kecualikan karakter - - - chars - karakter - - - Use custom character set - - - - Exclude similar looking characters - Kecualikan karakter yang mirip - - - Include characters from every selected group - Sertakan karakter dari setiap grup yang dipilih - - - Generate a new random password. - Buat kata sandi baru secara acak. - - - Invalid password length %1 - Panjang sandi tidak valid %1 - - - Invalid password generator after applying all options - - - - Display command help. - Tampilkan bantuan perintah. - - - Available commands: - Perintah yang tersedia: - - - Import the contents of an XML database. - Impor konten dari basisdata XML. - - - Path of the XML database export. - Jalur ke berkas XML hasil ekspor basisdata. - - - Path of the new database. - Jalur dari basisdata baru. - - - Unable to import XML database: %1 - Tidak bisa mengimpor basisdata XML: %1 - - - Successfully imported database. - Berhasil mengimpor basisdata. + Cannot remove all the keys from a database. + Tidak dapat menghapus semua kunci dari database. Show a database's information. - Tampilkan informasi basisdata. + Tampilkan informasi basis data. UUID: @@ -6917,7 +7882,7 @@ Do you want to overwrite it? Database created - + Database created Last saved @@ -6979,6 +7944,273 @@ Do you want to overwrite it? %1 characters %1 karakter + + Word count for the diceware passphrase. + Jumlah kata untuk frasa sandi diceware. + + + count + CLI parameter + jumlah + + + Wordlist for the diceware generator. +[Default: EFF English] + Daftar kata untuk generator diceware. +[Bawaan: Inggris EFF] + + + Generate a new random diceware passphrase. + Buat frasa sandi diceware acak yang baru. + + + Invalid word count %1 + Jumlah kata tidak valid %1 + + + Title for the entry. + Judul entri. + + + title + judul + + + Edit an entry. + Sunting sebuah entri. + + + Path of the entry to edit. + Jalur entri yang akan disunting. + + + Not changing any field for entry %1. + Not changing any field for entry %1. + + + Enter new password for entry: + Masukkan sandi baru untuk entri: + + + Successfully edited entry %1. + Berhasil menyunting entri %1. + + + Perform advanced analysis on the password. + Jalankan analisis tingkat lanjut pada sandi. + + + Password for which to estimate the entropy. + Sandi untuk diestimasi entropinya. + + + Estimate the entropy of a password. + Estimasi entropi sandi. + + + Length %1 + Panjang %1 + + + Entropy %1 + Entropi %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Multi-word extra bits %1 + + + Type: Bruteforce + Tipe: Bruteforce + + + Type: Dictionary + Tipe: Dictionary + + + Type: Dict+Leet + Tipe: Dict+Leet + + + Type: User Words + Tipe: User Words + + + Type: User+Leet + Tipe: User+Leet + + + Type: Repeated + Tipe: Repeated + + + Type: Sequence + Tipe: Sequence + + + Type: Spatial + Tipe: Spatial + + + Type: Date + Tipe: Tanggal + + + Type: Bruteforce(Rep) + Type: Bruteforce(Rep) + + + Type: Dictionary(Rep) + Type: Dictionary(Rep) + + + Type: Dict+Leet(Rep) + Type: Dict+Leet(Rep) + + + Type: User Words(Rep) + Type: User Words(Rep) + + + Type: User+Leet(Rep) + Type: User+Leet(Rep) + + + Type: Repeated(Rep) + Type: Repeated(Rep) + + + Type: Sequence(Rep) + Type: Sequence(Rep) + + + Type: Spatial(Rep) + Type: Spatial(Rep) + + + Type: Date(Rep) + Type: Date(Rep) + + + Type: Unknown (%1) + Type: Unknown (%1) + + + Entropy %1 (%2) + Entropi %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Panjang kata sandi (%1) != jumlah panjang bagian (%2) *** + + + Exit interactive mode. + Keluar dari mode interaktif. + + + Exports the content of a database to standard output in the specified format. + Ekspor konten dari basis data ke keluaran standar dalam format yang ditentukan. + + + Unable to export database to XML: %1 + Tidak bisa mengekspor basis data ke XML: %1 + + + Unsupported format %1 + Format tidak didukung %1 + + + Length of the generated password + Panjang dari sandi yang dibuat + + + length + panjang + + + Use lowercase characters + Gunakan karakter huruf kecil + + + Use uppercase characters + Gunakan karakter huruf besar + + + Use numbers + Gunakan angka + + + Use special characters + Gunakan karakter spesial + + + Use extended ASCII + Gunakan ASCII lanjutan + + + Exclude character set + Kecualikan karakter + + + chars + karakter + + + Use custom character set + Use custom character set + + + Exclude similar looking characters + Kecualikan karakter yang mirip + + + Include characters from every selected group + Sertakan karakter dari setiap grup yang dipilih + + + Generate a new random password. + Buat kata sandi baru secara acak. + + + Invalid password length %1 + Panjang sandi tidak valid %1 + + + Invalid password generator after applying all options + Invalid password generator after applying all options + + + Display command help. + Tampilkan bantuan perintah. + + + Available commands: + Perintah yang tersedia: + + + Import the contents of an XML database. + Impor konten dari basis data XML. + + + Path of the XML database export. + Jalur ke berkas XML hasil ekspor basis data. + + + Path of the new database. + Jalur dari basis data baru. + + + Unable to import XML database: %1 + Tidak bisa mengimpor basis data XML: %1 + + + Successfully imported database. + Berhasil mengimpor basis data. + Unknown command %1 Perintah tidak diketahui %1 @@ -7015,7 +8247,7 @@ Perintah yang tersedia: List database entries. - Daftar entri basisdata. + Daftar entri basis data. Path of the group to list. Default is / @@ -7027,15 +8259,15 @@ Perintah yang tersedia: Use the same credentials for both database files. - Gunakan kredensial yang sama untuk kedua berkas basisdata. + Gunakan kredensial yang sama untuk kedua berkas basis data. Key file of the database to merge from. - Berkas kunci dari basisdata yang akan digabungkan. + Berkas kunci dari basis data yang akan digabungkan. Deactivate password key for the database to merge from. - Nonaktifkan kunci kata sandi untuk menggabungkan basisdata. + Nonaktifkan kunci kata sandi untuk menggabungkan basis data. Only print the changes detected by the merge operation. @@ -7043,7 +8275,7 @@ Perintah yang tersedia: Yubikey slot for the second database. - Slot Yubikey untuk basisdata kedua. + Slot Yubikey untuk basis data kedua. slot @@ -7051,11 +8283,11 @@ Perintah yang tersedia: Merge two databases. - Gabungkan dua basisdata. + Gabungkan dua basis data. Path of the database to merge from. - Jalur sumber basisdata untuk digabungkan. + Jalur sumber basis data untuk digabungkan. Error reading merge file: @@ -7065,7 +8297,7 @@ Perintah yang tersedia: Unable to save database to file : %1 - Tidak bisa menyimpan basisdata ke berkas : %1 + Tidak bisa menyimpan basis data ke berkas : %1 Successfully merged %1 into %2. @@ -7073,7 +8305,7 @@ Perintah yang tersedia: Database was not modified by merge operation. - Basisdata tidak ada perubahan yang diakibatkan oleh proses penggabungan. + Basis Data tidak ada perubahan yang diakibatkan oleh proses penggabungan. Moves an entry to a new group. @@ -7101,7 +8333,7 @@ Perintah yang tersedia: Open a database. - Buka basisdata. + Buka basis data. Path of the entry to remove. @@ -7109,7 +8341,7 @@ Perintah yang tersedia: Unable to save database to file: %1 - Tidak bisa menyimpan basisdata ke berkas: %1 + Tidak bisa menyimpan basis data ke berkas: %1 Successfully recycled entry %1. @@ -7125,7 +8357,7 @@ Perintah yang tersedia: Cannot remove root group from database. - Tidak dapat menghapus grup root dari basisdata. + Tidak dapat menghapus grup root dari basis data. Successfully recycled group %1. @@ -7151,9 +8383,13 @@ Perintah yang tersedia: Show the protected attributes in clear text. Tampilkan atribut yang dilindungi dalam teks yang jelas. + + Show all the attributes of the entry. + Tampilkan semua atribut entri. + Show the attachments of the entry. - + Show the attachments of the entry. 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. @@ -7177,23 +8413,23 @@ Perintah yang tersedia: No attachments present. - + No attachments present. Attachments: - + Attachments: Failed to open database file %1: not found - Gagal membuka berkas basisdata %1: tidak ditemukan + Gagal membuka berkas basis data %1: tidak ditemukan Failed to open database file %1: not a plain file - Gagal membuka berkas basisdata %1: bukan berkas biasa + Gagal membuka berkas basis data %1: bukan berkas biasa Failed to open database file %1: not readable - Gagal membuka berkas basisdata %1: tidak terbaca + Gagal membuka berkas basis data %1: tidak terbaca Enter password to unlock %1: @@ -7221,13 +8457,17 @@ Mohon buat berkas kunci yang baru saja. Invalid YubiKey serial %1 Serial YubiKey tidak valid %1 + + Please present or touch your YubiKey to continue. + Please present or touch your YubiKey to continue. + Enter password to encrypt database (optional): - Masukkan sandi untuk mengenkripsi basisdata (opsional): + Masukkan sandi untuk mengenkripsi basis data (opsional): Do you want to create a database with an empty password? [y/N]: - Apakah Anda ingin membuat basisdata dengan kata sandi kosong? [y/N]: + Apakah Anda ingin membuat basis data dengan kata sandi kosong? [y/N]: Repeat password: @@ -7244,7 +8484,8 @@ Mohon buat berkas kunci yang baru saja. All clipping programs failed. Tried %1 - + All clipping programs failed. Tried %1 + Creating KeyFile %1 failed: %2 @@ -7260,19 +8501,19 @@ Mohon buat berkas kunci yang baru saja. To use okon, you must provide a post-processed file (e.g. file.okon) - + To use okon, you must provide a post-processed file (e.g. file.okon) Could not start okon process: %1 - + Could not start okon process: %1 Error: okon process did not finish - + Error: okon process did not finish Failed to load okon processed database: %1 - + Failed to load okon processed database: %1 Very weak password @@ -7292,7 +8533,7 @@ Mohon buat berkas kunci yang baru saja. Password is used %1 time(s) - + Kata sandi telah digunakan %1 kali Password has expired @@ -7312,7 +8553,7 @@ Mohon buat berkas kunci yang baru saja. Password expires in %1 day(s) - + Kata sandi kedaluwarsa dalam %1 hari Password will expire soon @@ -7384,31 +8625,31 @@ Kernel: %3 %4 over %1 year(s) - + lebih dari %1 tahun about %1 month(s) - + sekitar %1 bulan %1 week(s) - + %1 minggu %1 day(s) - + %1 hari %1 hour(s) - + %1 jam %1 minute(s) - + %1 menit - Botan library must be at least 2.11.x, found %1.%2.%3 - + Botan library must be at least %1, found %2.%3.%4 + Pustaka Botan mesti setidaknya %1, ditemukan %2.%3.%4 Cryptographic libraries: @@ -7424,27 +8665,27 @@ Kernel: %3 %4 SymmetricCipher::init: Invalid cipher mode. - + SymmetricCipher::init: Invalid cipher mode. SymmetricCipher::init: Invalid IV size of %1 for %2. - + SymmetricCipher::init: Invalid IV size of %1 for %2. Cipher not initialized prior to use. - + Cipher not initialized prior to use. Cannot process 0 length data. - + Cannot process 0 length data. unknown executable (DBus address %1) - + unknown executable (DBus address %1) %1 (invalid executable path) - + %1 (invalid executable path) NULL device @@ -7458,18 +8699,6 @@ Kernel: %3 %4 file empty berkas kosong - - malformed string - lema rusak - - - missing closing quote - kehilangan tanda kutip tutup - - - %1: (row, col) %2,%3 - %1: (baris, kolom) %2,%3 - AES 256-bit AES 256-bit @@ -7496,11 +8725,11 @@ Kernel: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. - + Existing single-instance lock file is invalid. Launching new instance. The lock file could not be created. Single-instance mode disabled. @@ -7544,7 +8773,7 @@ Kernel: %3 %4 Benchmark %1 delay - + Benchmark %1 delay %1 ms @@ -7558,19 +8787,19 @@ Kernel: %3 %4 Do you really want to delete the entry "%1" for good? - Apakah anda yakin ingin menghapus entri "%1" untuk selamanya? + Apakah Anda yakin ingin menghapus entri "%1" untuk selamanya? Do you really want to delete %n entry(s) for good? - + Apakah Anda yakin ingin menghapus %n entri untuk selamanya? Delete entry(s)? - + Hapus masukan? Do you really want to move entry "%1" to the recycle bin? - Apakah anda yakin ingin memindahkan "%1" ke keranjang sampah? + Apakah Anda yakin ingin memindahkan "%1" ke keranjang sampah? Do you really want to move %n entry(s) to the recycle bin? @@ -7578,7 +8807,7 @@ Kernel: %3 %4 Move entry(s) to recycle bin? - + Pindahkan entri ke tempat sampah? Replace references to entry? @@ -7586,7 +8815,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - + Entri "%1" memiliki %2 rujukan. Anda ingin menimpa rujukan dengan nilai, lewatkan entri ini, atau hapus saja? User name @@ -7594,7 +8823,7 @@ Kernel: %3 %4 Browser Statistics - + Statistik Peramban Health Check @@ -7626,7 +8855,7 @@ Kernel: %3 %4 filenames of the password databases to open (*.kdbx) - nama berkas basisdata sandi untuk dibuka (*.kdbx) + nama berkas basis data sandi untuk dibuka (*.kdbx) path to a custom config file @@ -7638,32 +8867,28 @@ Kernel: %3 %4 lock all open databases - kunci semua basisdata yang terbuka + kunci semua basis data yang terbuka key file of the database - berkas kunci basisdata + berkas kunci basis data read password of the database from stdin - baca sandi basisdata dari stdin - - - allow app screen recordering and screenshots - - - - Locked databases. - Basisdata terkunci. + baca sandi basis data dari stdin Database failed to lock. - Basisdata gagal dikunci. + Basis Data gagal dikunci. Another instance of KeePassXC is already running. Aplikasi KeePassXC lainnya sudah berjalan. + + KeePassXC is not running. No open database to lock + KeePassXC tidak berjalan. Tidak ada database terbuka untuk dikunci + Fatal error while testing the cryptographic functions. Galat saat menguji fungsi kriptografi. @@ -7672,13 +8897,9 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Galat - - Warning: Failed to prevent screenshots on a top level window! - Peringatan: Gagal mencegah tangkapan layar pada jendela tingkat atas! - Database password: - Sandi basisdata: + Sandi basis data: Invalid Settings @@ -7692,16 +8913,319 @@ Kernel: %3 %4 Failed to create Windows Hello credential. - + Failed to create Windows Hello credential. Failed to sign challenge using Windows Hello. + Failed to sign challenge using Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Peringatan: Gagal memblokir tangkapan layar pada jendela tingkat atas. + + + Invalid Cipher + Cipher tidak valid + + + Invalid KDF + KDF tidak valid + + + Access to all entries is denied + Akses pada semua masukan ditolak + + + allow screenshots and app recording (Windows/macOS) + izinkan pencuplikan layar dan perekaman aplikasi (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. - Please present or touch your YubiKey to continue. + Databases have been locked. + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + Gagal menginisialisasi kripto KeePassXC. + + + Failed to encrypt key data. + Gagal mengenkripsi data kunci. + + + Failed to get Windows Hello credential. + Gagal mendapatkan kredensial Windows Hello. + + + Failed to decrypt key data. + Gagal mendekripsi data kunci. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Hapus data pengaya? + + + Delete plugin data from Entry(s)? + + + + Passkey + Kunci akses + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tag + QtIOCompressor @@ -7737,43 +9261,62 @@ Kernel: %3 %4 Galat zlib internal: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + Double-click entries to edit. List of entry URLs - + List of entry URLs Entry has no URLs set - + Entry has no URLs set Allowed URLs - + Allowed URLs Entry has no Browser Integration settings - + Entry has no Browser Integration settings Denied URLs - + Denied URLs (Excluded) @@ -7785,11 +9328,11 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - + Please wait, browser statistics is being calculated… No entries with a URL, or none has browser extension settings saved. - + No entries with a URL, or none has browser extension settings saved. Title @@ -7801,58 +9344,67 @@ Kernel: %3 %4 URLs - + URLs Edit Entry… - + Edit Entry… Delete Entry(s)… - + Hapus Masukan... Exclude from reports Kecualikan dari laporan + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report + Show expired entries - Also show entries that have been excluded from reports - Tampilkan juga entri yang telah dikecualikan dari laporan + (Expired) + Hover over reason to show additional details. Double-click entries to edit. Layangi di atas alasan untuk menampilkan detail lanjutan. Klik dua kali pada entri untuk mengedit. - - Bad - Password quality - Buruk - Bad — password must be changed Buruk — kata sandi harus diubah - - Poor - Password quality - Buruk - Poor — password should be changed Kurang baik — kata sandi harus diubah - - Weak - Password quality - Lemah - Weak — consider changing the password Lemah — pertimbangkan untuk mengubah kata sandi @@ -7867,7 +9419,7 @@ Kernel: %3 %4 Please wait, health data is being calculated… - + Please wait, health data is being calculated… Congratulations, everything is healthy! @@ -7891,22 +9443,30 @@ Kernel: %3 %4 Edit Entry… - + Edit Entry… Delete Entry(s)… - + Hapus Masukan... Exclude from reports Kecualikan dari laporan + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - PERHATIAN: Laporan ini membutuhkan pengiriman informasi ke layanan online Have I Been Pwned (https://haveibeenpwned.com). Jika Anda melanjutkan, kata sandi basisdata Anda akan diacak secara kriptografis dan lima karakter pertama dari hash tersebut akan dikirim dengan aman ke layanan ini. Basisdata Anda tetap aman dan tidak dapat dibangun kembali dari informasi ini. Namun, jumlah kata sandi yang Anda kirim dan alamat IP Anda akan terpapar ke layanan ini. + PERHATIAN: Laporan ini membutuhkan pengiriman informasi ke layanan online Have I Been Pwned (https://haveibeenpwned.com). Jika Anda melanjutkan, kata sandi basis data Anda akan diacak secara kriptografis dan lima karakter pertama dari hash tersebut akan dikirim dengan aman ke layanan ini. Basis Data Anda tetap aman dan tidak dapat dibangun kembali dari informasi ini. Namun, jumlah kata sandi yang Anda kirim dan alamat IP Anda akan terpapar ke layanan ini. Perform Online Analysis @@ -7918,7 +9478,7 @@ Kernel: %3 %4 This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - Versi KeePassXC ini tidak memiliki fungsi konektivitas jaringan. Konektivitas jaringan diperlukan untuk memeriksa kata sandi Anda terhadap basisdata Have I Been Pwned. + Versi KeePassXC ini tidak memiliki fungsi konektivitas jaringan. Konektivitas jaringan diperlukan untuk memeriksa kata sandi Anda terhadap basis data Have I Been Pwned. Congratulations, no exposed passwords! @@ -7986,16 +9546,87 @@ Kernel: %3 %4 Edit Entry… - + Edit Entry… Delete Entry(s)… - + Hapus Masukan... Exclude from reports Kecualikan dari laporan + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Ekspor + + + Import + Impor + + + List of entry URLs + Daftar entri URL + + + Title + Judul + + + Path + Jalur + + + Username + Nama pengguna + + + URLs + URL + + + Edit Entry… + Edit Entri... + + + Delete Entry(s)… + Hapus Masukan... + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + Konfirmasi Ekspor + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8013,11 +9644,11 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - + Please wait, database statistics are being calculated… Database name - Nama basisdata + Nama basis data Description @@ -8029,7 +9660,7 @@ Kernel: %3 %4 Database created - + Database created Last saved @@ -8049,7 +9680,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - Basisdata telah dimodifikasi, tetapi perubahan belum disimpan ke penyimpanan. + Basis Data telah dimodifikasi, tetapi perubahan belum disimpan ke penyimpanan. Number of groups @@ -8065,7 +9696,7 @@ Kernel: %3 %4 The database contains entries that have expired. - Basisdata berisi entri yang sudah kedaluwarsa. + Basis Data berisi entri yang sudah kedaluwarsa. Unique passwords @@ -8140,7 +9771,7 @@ Kernel: %3 %4 Key identity ownership conflict. Refusing to add. - + Key identity ownership conflict. Refusing to add. Agent refused this identity. Possible reasons include: @@ -8152,15 +9783,15 @@ Kernel: %3 %4 Restricted lifetime is not supported by the agent (check options). - + Restricted lifetime is not supported by the agent (check options). A confirmation request is not supported by the agent (check options). - + A confirmation request is not supported by the agent (check options). Security keys are not supported by the agent or the security key provider is unavailable. - + Security keys are not supported by the agent or the security key provider is unavailable. No agent running, cannot remove identity. @@ -8170,6 +9801,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Tidak ada agen yang berjalan, tidak dapat mendaftarkan identitas. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8183,11 +9822,11 @@ Kernel: %3 %4 Every search term must match (ie, logical AND) - + Every search term must match (ie, logical AND) Modifiers - + Modifiers exclude term from results @@ -8195,11 +9834,11 @@ Kernel: %3 %4 match term exactly - + match term exactly use regex in term - + use regex in term Fields @@ -8207,19 +9846,19 @@ Kernel: %3 %4 Term Wildcards - + Term Wildcards match anything - + match anything match one - + match one logical OR - + logical OR Examples @@ -8236,10 +9875,14 @@ Kernel: %3 %4 Search Help Cari Bantuan + + Save Search + Simpan pencarian + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + Cari (%1)... Case sensitive @@ -8262,7 +9905,7 @@ Kernel: %3 %4 DBus Address - + DBus Address Manage @@ -8300,43 +9943,27 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - + Show notification when passwords are retrieved by clients <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + Confirm when passwords are retrieved by clients Confirm when clients request entry deletion - - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - + Confirm when clients request entry deletion Prompt to unlock database before searching - Tanya untuk membuka basisdata sebelum mencari + Tanya untuk membuka basis data sebelum mencari Exposed database groups: - Grup basisdata yang terekspos: + Grup basis data yang terekspos: Authorization @@ -8352,6 +9979,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. + Save current changes to activate the plugin and enable editing of this section. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> @@ -8387,7 +10022,7 @@ Kernel: %3 %4 Signer: - + Signer: Generate new certificate @@ -8414,14 +10049,14 @@ Kernel: %3 %4 ShareExport Could not write export container. - + Could not write export container. ShareImport Successful import - + Successful import @@ -8440,11 +10075,11 @@ Kernel: %3 %4 Multiple import source path to %1 in %2 - + Multiple import source path to %1 in %2 Conflicting export target path %1 in %2 - + Conflicting export target path %1 in %2 Export to %1 failed (%2) @@ -8462,8 +10097,12 @@ Kernel: %3 %4 TagModel - All - Semua + Clear Search + Hapus Pencarian + + + All Entries + Semua Entri Expired @@ -8471,7 +10110,26 @@ Kernel: %3 %4 Weak Passwords - + Kata Sandi Lemah + + + + TagView + + Remove Search + Hapus Pencarian + + + Remove Tag + Hapus Tag + + + Confirm Remove Tag + Konfirmasi Hapus Tag + + + Remove tag "%1" from all entries in this database? + Hapus tag "%1" dari semua entri di database ini? @@ -8529,15 +10187,15 @@ Kernel: %3 %4 Default settings (RFC 6238) - + Default settings (RFC 6238) Steam® settings - + Steam® settings Custom settings: - + Custom settings: Custom Settings @@ -8553,7 +10211,7 @@ Kernel: %3 %4 Time step field - + Time step field sec @@ -8602,7 +10260,7 @@ Contoh: JBSWY3DPEHPK3PXP Checking for updates… - + Checking for updates… Close @@ -8614,7 +10272,7 @@ Contoh: JBSWY3DPEHPK3PXP An error occurred when trying to retrieve update information, please try again later. - + An error occurred when trying to retrieve update information, please try again later. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. @@ -8622,107 +10280,68 @@ Contoh: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - + You have the latest version of KeePassXC WelcomeWidget Start storing your passwords securely in a KeePassXC database - Mulai menyimpan sandi Anda dengan aman di dalam basisdata KeePassXC - - - Create new database - Buat basisdata baru - - - Open existing database - Buka basisdata yang ada - - - Import from KeePass 1 - Impor dari KeePass 1 - - - Import from 1Password - Impor dari 1Password - - - Import from CSV - Impor dari CSV + Mulai menyimpan sandi Anda dengan aman di dalam basis data KeePassXC Recent databases - Basisdata baru-baru ini + Basis Data baru-baru ini Open a recent database - Buka basisdata terbaru + Buka basis data terbaru Welcome to KeePassXC %1 Selamat datang di KeePassXC %1 + + Create Database + + + + Open Database + + + + Import File + + WinUtils Invalid key code - + Invalid key code Global shortcut already registered to %1 - + Pintasan global telah didaftarkan ke %1 Could not register global shortcut - - - - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - + Tidak bisa mendaftar pintasan global YubiKey - - %1 No interface, slot %2 - - General: - + Umum: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + Could not find interface for hardware key with serial number %1. Please connect it to continue. YubiKeyEditWidget - - Refresh hardware tokens - Segarkan token perangkat keras - - - Refresh - Segarkan - Hardware key slot selection Pemilihan slot kunci perangkat keras @@ -8733,31 +10352,27 @@ Contoh: JBSWY3DPEHPK3PXP Selected hardware key slot does not support challenge-response! - + Selected hardware key slot does not support challenge-response! Challenge-Response - + Challenge-Response Add Challenge-Response - + Add Challenge-Response Change Challenge-Response - + Change Challenge-Response Remove Challenge-Response - + Remove Challenge-Response Challenge-Response set, click to change or remove - - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + Challenge-Response set, click to change or remove Detecting hardware keys… @@ -8767,31 +10382,28 @@ Contoh: JBSWY3DPEHPK3PXP No hardware keys detected Tidak mendeteksi kunci perangkat keras - - - YubiKeyInterface - %1 Invalid slot specified - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - - - Hardware key is currently in use. - + The YubiKey PCSC interface has not been initialized. Could not find or access hardware key with serial number %1. Please present it to continue. - + Could not find or access hardware key with serial number %1. Please present it to continue. Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8799,12 +10411,27 @@ Contoh: JBSWY3DPEHPK3PXP Hardware key was not found or is not configured. - + Hardware key was not found or is not configured. Failed to complete a challenge-response, the PCSC error code was: %1 + Failed to complete a challenge-response, the PCSC error code was: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + Press + USB Challenge-Response Key interaction request + Tekan + + + Passive + USB Challenge-Response Key no interaction required + Pasif + YubiKeyInterfaceUSB @@ -8812,14 +10439,6 @@ Contoh: JBSWY3DPEHPK3PXP Unknown Tidak diketahui - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8832,26 +10451,32 @@ Contoh: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - - - Hardware key is currently in use. - + The YubiKey USB interface has not been initialized. Could not find hardware key with serial number %1. Please plug it in to continue. - + Could not find hardware key with serial number %1. Please plug it in to continue. Hardware key timed out waiting for user interaction. - + Hardware key timed out waiting for user interaction. A USB error occurred when accessing the hardware key: %1 - + A USB error occurred when accessing the hardware key: %1 Failed to complete a challenge-response, the specific error was: %1 + Failed to complete a challenge-response, the specific error was: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields diff --git a/share/translations/keepassxc_it.ts b/share/translations/keepassxc_it.ts index 271ac2a9a..e2348b0db 100644 --- a/share/translations/keepassxc_it.ts +++ b/share/translations/keepassxc_it.ts @@ -7,7 +7,7 @@ About - Informazioni + Info programma Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> @@ -31,11 +31,11 @@ <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> - <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors"> vedere i contributi su GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors"> Contributi su GitHub</a> Debug Info - Informazioni di debug + Informazioni debug Include the following information whenever you report a bug: @@ -43,18 +43,18 @@ Copy to clipboard - Copia negli appunti + Copia negli Appunti AccessControlDialog KeePassXC - Access Request - KeePassXC - Richiesta di accesso + KeePassXC - Richiesta di accesso Non-existing/inaccessible executable path. Please double-check the client is legit. - Percorso eseguibile non esistente/inaccessibile. Si prega di ricontrollare che il client sia legittimo. + Percorso eseguibile non esistente/inaccessibile. Ricontrolla che il client sia legittimo. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> @@ -80,25 +80,25 @@ Details Dettagli + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Questa decisione verrà ricordata per tutta la durata mentre sia il client richiedente che KeePassXC sono in esecuzione. + Remember - Ricorda + Ricorda Allow Selected Consenti selezionati - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - La tua decisione verrà ricordata per tutta la durata mentre sia il client richiedente che KeePassXC sono in esecuzione. - Deny All && Future - Nega tutto && futuri + Nega tutto e futuri Allow All && &Future - Consenti tutto && &futuri + Consenti tutto e &futuri @@ -112,7 +112,7 @@ AgentSettingsWidget Enable SSH Agent integration - Abilitare l'integrazione dell'agente SSH + Abilita l'integrazione dell'agente SSH Use Pageant @@ -122,6 +122,10 @@ Use OpenSSH Usa OpenSSH + + Use both agents + Usa entrambi gli agenti + SSH_AUTH_SOCK override sostituire SSH_AUTH_SOCK @@ -144,16 +148,12 @@ No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Nessun collegamento SSH disponibile. Verificare che la variabile d'ambiente SSH_AUTH_SOCK esista oppure sovrascriverne il contenuto. + Nessun collegamento SSH disponibile. Verifica che la variabile d'ambiente SSH_AUTH_SOCK esista oppure sovrascriverne il contenuto. SSH Agent connection is working! La connessione dell'agente SSH sta funzionando! - - Use both agents - Utilizzare entrambi gli agenti - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Sicurezza + + This setting cannot be enabled when minimize on unlock is enabled. + Questa impostazione non può essere abilitata quando è abilitata la riduzione a icona con lo sblocco. + Access error for config file %1 Errore di accesso per il file di configurazione %1 @@ -179,7 +183,7 @@ Text only - Solo testo + Solo icone Text beside icon @@ -195,7 +199,7 @@ Monochrome - Monocromatico + Monocromatica Monochrome (light) @@ -211,20 +215,52 @@ You must restart the application to set the new language. Would you like to restart now? - È necessario riavviare l'applicazione per impostare la nuova lingua. Vuoi riavviare ora? - - - Reset Settings? - Ripristinare le impostazioni? - - - Are you sure you want to reset all general and security settings to default? - Sei sicuro di voler ripristinare tutte le impostazioni generali e di sicurezza predefinite? + Per impostare la nuova lingua è necessario riavviare l'applicazione. Vuoi riavviare ora? Select backup storage directory Seleziona cartella salvataggio backup + + Confirm Reset + Conferma il ripristino + + + Are you sure you want to reset all settings to default? + Sei sicuro di voler ripristinare tutte le impostazioni ai valori predefiniti? + + + Import KeePassXC Settings + Importa impostazioni KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Impossibile importare le impostazioni da %1, non è un file di impostazioni valido. + + + Export KeePassXC Settings + Esporta impostazioni KeePassXC + + + Small + Piccolo + + + Normal + Normale + + + Medium + Medio + + + Large + Grande + + + Custom + Personalizzato + ApplicationSettingsWidgetGeneral @@ -254,7 +290,11 @@ Remember previously used databases - Ricordare i database usati in precedenza + Ricorda i database usati in precedenza + + + recent files + file recenti Load previously open databases on startup @@ -262,35 +302,16 @@ Remember database key files and security dongles - Memorizzare i file di chiave del database e i dongle di sicurezza + Memorizza i file chiave del database e i dongle di sicurezza Check for updates at application startup once per week - Verificare la disponibilità di aggiornamenti all'avvio dell'applicazione una volta alla settimana + Verifica la disponibilità di aggiornamenti all'avvio dell'applicazione una volta alla settimana Include beta releases when checking for updates Includi versioni beta durante il controllo della disponibilità di aggiornamenti - - On database unlock, show entries that - Allo sblocco del database, mostra le voci che - - - have expired - On database unlock, show entries that... - sono scaduti - - - days - On database unlock, show entries that will expire within %1 days - Giorni - - - will expire within - On database unlock, show entries that... - scadrà entro - File Management Gestione dei file @@ -315,25 +336,13 @@ Backup database file before saving Effettua una copia di sicurezza del database prima di salvarlo - - Backup destination - Destinazione backup - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Specifica il percorso del file di backup del database. Le occorrenze di "{DB_FILENAME}" vengono sostituite con il nome del file del database salvato senza estensione. {TIME:<format>} viene sostituito con l'ora di backup, vedere https://doc.qt.io/qt-5/qdatetime.html#toString. <format>per impostazione predefinita, formatta la stringa "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Scegli... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - Utilizzare un metodo di salvataggio alternativo (può risolvere problemi con Dropbox, Google Drive, GVFS, ecc.) + Usa un metodo di salvataggio alternativo (può risolvere problemi con Dropbox, Google Drive, GVFS, ecc.) Temporary file moved into place @@ -341,7 +350,7 @@ Directly write to database file (dangerous) - Scrittura diretta nel file di database (pericoloso) + Scrittura diretta nel file database (pericoloso) Entry Management @@ -369,11 +378,11 @@ Favicon download timeout: - Timeout scaricamento Favicon: + Timeout scaricamento favicon: Website icon download timeout in seconds - Timeout scaricamento icona sito Web in secondi + Timeout scaricamento icona sito web in secondi sec @@ -386,7 +395,7 @@ Toolbar button style - Stile pulsante della barra degli strumenti + Stile pulsante barra degli strumenti Movable toolbar @@ -402,19 +411,23 @@ (restart program to activate) - (riavviare il programma per attivare) + (per attivare riavvia il programma) Toolbar button style: Stile pulsanti della barra degli strumenti: + + Show passwords in color + Visualizza le password a colori + Use monospaced font for notes - Utilizzare un tipo di carattere monospazio per le note + Per le note usa una font a larghezza fissa Minimize instead of app exit - Minimizzare invece di uscire dall'app + Minimizza invece di uscire dall'applicazione Show a system tray icon @@ -422,19 +435,19 @@ Tray icon type - Tipo di icona vassoio + Tipo icona barra sistema Tray icon type: - Tipo di icona vassoio: + Tipo icona barra sistema: Hide window to system tray when minimized - Nascondi la finestra nell'area di notifica di sistema quando viene minimizzata + Quando viene minimizzata la finestra nascondila nell'area di notifica di sistema Reset settings to default… - Ripristina impostazioni predefinite… + Ripristina impostazioni predefinite... Auto-Type @@ -442,11 +455,11 @@ Use entry title to match windows for global Auto-Type - Usa il titolo della voce per la corrispondenza con le finestre per il completamento automatico globale + Per il completamento automatico globale per la corrispondenza con le finestre usa il titolo della voce Use entry URL to match windows for global Auto-Type - Usa URL della voce per la corrispondenza con le finestre per il completamento automatico globale + Per il completamento automatico globale per la corrispondenza con le finestre usa URL della voce Always ask before performing Auto-Type @@ -454,11 +467,11 @@ Hide expired entries from Auto-Type - Nascondere le voci scadute dalla digitazione automatica + Nascondi le voci scadute dalla digitazione automatica Re-lock previously locked database after performing Auto-Type - Blocca nuovamente un database precedentemente bloccato dopo aver completato l'Auto-Type + Blocca nuovamente un database precedentemente bloccato dopo il completamento automatico Auto-Type start delay: @@ -466,7 +479,7 @@ Global Auto-Type shortcut: - Scorciatoia globale per l'auto-completamento + Scorciatoia globale completamento automatico: Auto-type start delay milliseconds @@ -479,11 +492,11 @@ Auto-Type typing delay: - Ritardo del completamento automatico: + Ritardo completamento automatico: Global auto-type shortcut - Scorciatoia globale per il completamento automatico + Scorciatoia globale completamento automatico Auto-type character typing delay milliseconds @@ -493,6 +506,71 @@ Remember last typed entry for: Ricorda l'ultima voce digitata per: + + On database unlock, show entries that will expire within + Allo sblocco del database, mostra le voci che scadranno entro + + + On database unlock, show entries that will expire within + Allo sblocco del database, mostra le voci che scadranno entro + + + days + number of days warning for password expiration + Giorni + + + Destination format: + Formato destinazione: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span>viene sostituito con il nome del file del database salvato senza estensione</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> viene sostituito con il formato orario specificato (predefinito: dd_MM_yyyy_hh-mm-ss)</p><p>vedere la Guida per l'utente per maggiori dettagli</p></body></html> + + + Choose folder... + Scegli cartella... + + + Show confirmation before moving entries to recycle bin + Visualizza la conferma prima di spostare le voci nel cestino + + + Copy data on double clicking field in entry view + Copia i dati facendo doppio clic sul campo nella vista della voce + + + Show toolbar + Visualizza barra strumenti + + + Show the menu bar by pressing the Alt key + Visualizza la barra dei menu premendo il tasto Alt + + + Show menubar + Mostra barra dei menu + + + Import settings… + Importa impostazioni... + + + Export settings… + Esporta impostazioni... + + + Open browser on double clicking URL field in entry view + Aprire il browser facendo doppio clic sul campo URL nella vista della voce + + + Font size: + Dimensione carattere: + + + Font size selection + Selezione dimensione carattere + ApplicationSettingsWidgetSecurity @@ -502,7 +580,7 @@ Database lock timeout seconds - Secondi di timeout per il blocco del database + Secondi timeout blocco database sec @@ -524,7 +602,7 @@ Clipboard clear seconds - Secondi per la cancellazione degli appunti + Secondi cancellazione appunti Lock databases after inactivity of @@ -546,48 +624,48 @@ Lock databases after minimizing the window Blocca il database dopo la minimizzazione della finestra - - Require password repeat when it is visible - Richiedi ripetizione password quando è visibile - Hide passwords when editing them Nascondi la password quando viene modificata Use placeholder for empty password fields - Usa segnaposti per campi password vuoti + Usa segnaposti per campi password vuoti Hide passwords in the entry preview panel Nascondi la password nel pannello di anteprima della voce - - Hide entry notes by default - Nascondi le note della voce per impostazione predefinita - - - Move entries to recycle bin without confirmation - Spostare le voci nel cestino senza conferma - - - Enable double click to copy the username/password entry columns - Abilitare il doppio clic per copiare le colonne di immissione nome utente/password - Privacy Riservatezza Use DuckDuckGo service to download website icons - Utilizzare il servizio DuckDuckGo per scaricare le icone del sito web + Per scaricare le icone del sito web usa il servizio DuckDuckGo + + + Hide TOTP in the entry preview panel + Nascondi TOTP nel pannello di anteprima della voce + + + Lock databases when switching user + Blocca il database quando si cambia utente + + + Lock Options + Opzioni di blocco + + + Hide notes in the entry preview panel + Nascondi le note nel pannello di anteprima della voce AutoType The requested Auto-Type sequence cannot be used due to an error: - Impossibile utilizzare la sequenza automatica richiesta a causa di un errore: + Impossibile usare la sequenza automatica richiesta a causa di un errore: Auto-Type Error @@ -599,11 +677,13 @@ KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - KeePassXC richiede il permesso di Accessibilità per effettuare l'auto-completamento di livello base. Se hai già concesso il permesso, riavvia KeePassXC. + Per effettuare l'auto-completamento di livello base KeePassXC richiede il permesso di Accessibilità. Se hai già concesso il permesso, riavvia KeePassXC. KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePasssXC richiede il permesso di Accessibilità e di Registrazione Schermo per effettuare l'auto-completamento globale. La registrazione dello schermo è necessaria per usare il titolo della finestra al fine di trovare le voci corrispondenti. Se hai già concesso il permesso, riavvia KeePassXC. + Per effettuare il completamento automatico globale KeePasssXC richiede il permesso di Accessibilità e di Registrazione Schermo. +Per usare il titolo della finestra al fine di trovare le voci corrispondenti è necessaria la registrazione dello schermo. +Se hai già concesso il permesso, riavvia KeePassXC. Invalid entry provided @@ -626,18 +706,8 @@ Ritardo molto lungo rilevato, max è %1: %2 - Invalid conversion type: %1 - Tipo di conversione non valido: %1 - - - Invalid conversion syntax: %1 - Sintassi di conversione non valida: %1 - - - Invalid regular expression syntax %1 -%2 - Sintassi della espressione regolare non valida %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + La voce non ha l'attributo per PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +754,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Tentativo di invio di keysym non valido. - Sequence aborted: Caps Lock is on Sequenza interrotta: blocco MAIUSCOLO attivo @@ -700,6 +766,10 @@ Unable to get valid keycode for key: Impossibile ottenere un codice chiave valido per la chiave: + + Trying to send invalid keyboard symbol. + Tentativo di invio di un simbolo non valido. + AutoTypeSelectDialog @@ -709,7 +779,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - Fare doppio clic su una riga per eseguire la digitazione automatica o trovare una voce utilizzando la ricerca: + Doppio clic su una riga per eseguire la digitazione automatica o trovare una voce usando la ricerca: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -718,11 +788,11 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>È possibile utilizzare query di ricerca avanzate per trovare qualsiasi voce nei database aperti. Le seguenti scorciatoie sono utili:<br/>CTRL+F - Attiva/disattiva la ricerca nel database<br/>CTRL+1 - Digita nome utente<br/>Ctrl+2 - Digita password<br/>CTRL+3 - Digita TOTP<br/>CTRL+4 - Usa tastiera virtuale (solo Windows)</p> + <p>Per trovare qualsiasi voce nei database aperti è possibile usare query di ricerca avanzate . Sono utilile seguenti scorciatoie:<br/>CTRL+F - Attiva/disattiva ricerca nel database<br/>CTRL+1 - Digita nome utente<br/>Ctrl+2 - Digita password<br/>CTRL+3 - Digita TOTP<br/>CTRL+4 - Usa tastiera virtuale (solo Windows)</p> Search all open databases - Cercare in tutti i database aperti + Cerca in tutti i database aperti Search… @@ -730,7 +800,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type Sequence - Digitare la sequenza + Digita la sequenza Cancel @@ -738,7 +808,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - Digitare {USERNAME} + Digita {USERNAME} Type {PASSWORD} @@ -781,7 +851,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Remember - Ricorda + Ricorda Allow access to entries @@ -799,13 +869,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Disabilita per questo sito + + Undo + Ripristina + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - Voce di salvataggio del browser KeePassXC - Ok Ok @@ -817,65 +887,110 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> You have multiple databases open. Please select the correct database for saving credentials. - C'è più di un database aperto -Selezionare il database corretto dove salvare le credenziali + C'è più di un database aperto. +Seleziona il database corretto dove salvare le credenziali. + + + KeePassXC - Select Database + KeePassXC - seleziona database + + + + BrowserPasskeysConfirmationDialog + + Cancel + Annulla + + + Update + Aggiorna + + + Authenticate + Autentica + + + Register new + Registra nuovo + + + Register + Registra + + + Timeout in <b>%n</b> seconds... + Timeout in <b>%n</b> secondo…Timeout in <b>%n</b> secondi…Timeout in <b>%n</b> secondi... + + + Relying Party: %1 + Relying Party: %1 + + + Username: %1 + Nome utente: %1 + + + KeePassXC - Passkey credentials + KeePassXC - credenziali passkey + + + Add to existing entry + Aggiungi a voce esistente + + + Existing passkey found. +Do you want to register a new passkey for: + Trovata una passkey esistente. +Vuoi registrare una nuova passkey per: + + + Select the existing passkey and press Update to replace it. + Seleziona la passkey esistente e premi Aggiorna per sostituirla. + + + Authenticate passkey credentials for: + Autentica credenziali passkey per: + + + Do you want to register a passkey for: + Vuoi registrare una passkey per: BrowserService - - KeePassXC: Create a new group - KeePassXC: Creare un nuovo gruppo - A request for creating a new group "%1" has been received. Do you want to create this group? È stata ricevuta una richiesta di creazione di un nuovo gruppo "%1". -Si desidera creare questo gruppo? +Vuoi creare questo gruppo? - - KeePassXC: New key association request - KeePassXC: nuova richiesta di associazione chiave - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Hai ricevuto una richiesta di associazione per il segguente database: + Hai ricevuto una richiesta di associazione per il seguente database: %1 Assegnagli un nome univoco o un ID, per esempio: -laptop-chrome +laptop-chrome. Save and allow access Salva e permetti l'accesso - - KeePassXC: Overwrite existing key? - KeePassXC: Vuoi sovrascrivere la chiave esistente? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Esiste già una chiave crittografica condivisa con il nome "%1"- Vuoi sovrascriverla? - - - KeePassXC: Update Entry - KeePassXC: aggiorna voce + Esiste già una chiave di cifratura condivisa con il nome "%1"- Vuoi sovrascriverla? Do you want to update the information in %1 - %2? Vuoi aggiornare le informazioni in %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Elimina voce - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -885,50 +1000,58 @@ Vuoi eliminare questa voce? - Converting attributes to custom data… - Conversione di attributi in dati personalizzati in corso… + %1 (Passkey) + %1 (Passkey) - Abort - Interrompi + KeePassXC - Create a new group + KeePassXC - crea un nuovo gruppo - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: attributi KeePassHTTP convertiti + Disable + Disabilita - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Attributi convertiti correttamente da %1 voce(i). -Sono stati spostati %2 chiavi nei dati personalizzati. - - - Successfully moved %n keys to custom data. - Sono stati spostati %n chiavi in dati personalizzati.Sono state spostate %n chiavi in dati personalizzati. + KeePassXC - Overwrite existing key? + KeePassXC - sovrascrivere la chiave esistente? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nessuna voce trovata con gli attributi KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - aggiorna voce - The active database does not contain an entry with KeePassHTTP attributes. - Il database attivo non contiene una voce con attributi KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - elimina voce - Don't show this warning again - Non mostrare nuovamente questo avviso + KeePassXC - New key association request + KeePassXC: nuova associazione di chiave richiesta - KeePassXC: Legacy browser integration settings detected - KeePassXC: rilevate le impostazioni di integrazione del browser legacy + Passkey + Passkey - 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? - Le impostazioni di KeePassXC-Browser devono essere spostate nelle impostazioni del database. -Ciò è necessario per mantenere le connessioni del browser corrente. -Si desidera eseguire ora la migrazione delle impostazioni esistenti? + KeePassXC - Passkey credentials + KeePassXC - credenziali passkey + + + Register a new passkey to this entry: + Registra una nuova passkey per questa voce: + + + KeePassXC - Update passkey + KeePassXC - Aggiorna passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + La voce possiede già una passkey. +Vuoi sovrascrivere la passkey in %1 - %2? + + + Register + Registra @@ -939,23 +1062,19 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? This is required for accessing your databases with KeePassXC-Browser - Questo è necessario per accedere al tuo database con KeePassXC-Browser + Questo è necessario per accedere al database con KeePassXC-Browser Enable browser integration - Abilitare l'integrazione del browser + Abilita l'integrazione del browser General Generale - - Browsers installed as snaps are currently not supported. - I browser installati come snap non sono attualmente supportati. - Enable integration for these browsers: - Abilita l'integrazione per i seguenti browser: + Abilita integrazione per i seguenti browser: Vivaldi @@ -988,7 +1107,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Mostra una notifica quando le credenziali sono richieste + Visualizza una notifica quando le credenziali sono richieste Request to unlock the database if it is locked @@ -1000,11 +1119,11 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Match URL scheme (e.g., https://example.com) - Corrispondenza dello schema URL (ad esempio, https://example.com) + Corrispondenza dello schema URL (ad es., https://esempio.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. - Restituisci solo le corrispondenze migliori per un'URL specifica invece di tutte le voci per l'intero dominio. + Restituisci solo le corrispondenze migliori per una URL specifica invece di tutte le voci per l'intero dominio. Return only best-matching credentials @@ -1044,7 +1163,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - Non chiedere l'autorizzazione per l'autenticazione HTTP e basic + Non chiedere l'autorizzazione per l'autenticazione semplice HTTP Automatically creating or updating string fields is not supported. @@ -1056,7 +1175,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Non visualizzare il popup che suggerisce la migrazione delle impostazioni KeePassHTTP legacy. + Non visualizzare la finestra a comparsa che suggerisce la migrazione delle impostazioni KeePassHTTP obsolete. Do not prompt for KeePassHTTP settings migration. @@ -1064,7 +1183,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - Aggiorna automaticamente all'avvio il percorso dei binari di KeePassXC o keepassxc-proxy per gli script di messaggistica nativa + Aggiorna automaticamente all'avvio il percorso dei binari di KeePassXC o keepassxc-proxy per gli script di messaggistica nativa. Update native messaging manifest files at startup @@ -1072,12 +1191,12 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Use a custom proxy location if you installed a proxy manually. - Usa un indirizzo proxy personalizzato se hai installato manualmente un proxy + Usa un indirizzo proxy personalizzato se hai installato manualmente un proxy. Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - Utilizza un proxy personalizzato + Usa un proxy personalizzato: Custom proxy location field @@ -1085,7 +1204,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Browser for custom proxy file - Browser per file proxy personalizzato + Browser file proxy personalizzato Browse… @@ -1094,7 +1213,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Use a custom browser configuration location: - Usare un percorso personalizzato per la configurazione del browser: + Usa percorso personalizzato configurazione browser: Browser type: @@ -1102,7 +1221,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Toolbar button style - Stile pulsante della barra degli strumenti + Stile pulsante barra degli strumenti Config Location: @@ -1114,7 +1233,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Browse for custom browser path - Cerca un percorso personalizzato per il browser + Cerca percorso personalizzato browser Custom extension ID: @@ -1124,26 +1243,6 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti?Custom extension ID ID estensione personalizzata - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - A causa del sandboxing di Snap, è necessario eseguire uno script per abilitare l'integrazione del browser. <br />È possibile ottenere questo script da %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser è necessario per far funzionare l'integrazione del browser. <br />Scaricarlo per %1, %2 e %3. %4 - - - Please see special instructions for browser extension use below - Si prega di consultare le istruzioni speciali per l'uso dell'estensione del browser di seguito - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Errore:</b> Il percorso personalizzato per il proxy non può essere trovato!<br/>L'estensione del browser NON PUO' LAVORARE senza l'utilizzo di un proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Avviso:</b> le seguenti opzioni possono essere pericolose. - Executable Files File eseguibili @@ -1154,11 +1253,51 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Select custom proxy location - Selezionare una posizione personalizzata per il proxy + Seleziona una posizione personalizzata per il proxy Select native messaging host folder location - Selezionare il percorso per la cartella principale della messaggistica + Seleziona il percorso per la cartella principale della messaggistica + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Consenti a keepassxc-proxy di elencare tutte le voci con il loro titolo, URL e UUID nei database collegati. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Consenti accesso limitato a tutte le voci nei database connessi (ignora le restrizioni di accesso al sito) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Avvertimento:</b> Regola queste impostazioni solo se necessario. + + + The custom proxy location does not exist. + Il percorso proxy personalizzato non esiste. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Errore:</b> Il percorso proxy personalizzato non esiste. Correggi questo problema nella scheda Impostazioni avanzate. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Errore:</b> L'eseguibile proxy installato non è presente nel percorso previsto: %1<br/>Impostare una posizione proxy personalizzata nelle impostazioni avanzate o reinstallare l'applicazione. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Permetti di utilizzare http://localhost (insicuro) con le passkeys per fini di test. + + + Allow using localhost with passkeys + Permetti di utilizzare localhost con le passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser è necessario per il funzionamento dell'integrazione con il browser. Scaricalo per %1, %2 e %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + I browser installati tramite Snap o Flatpak non sono supportati, ad eccezione di Firefox installato tramite Snap. @@ -1182,14 +1321,6 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? CsvImportWidget - - Import CSV fields - Importa campi CSV - - - filename - nomefile - size, rows, columns dimensione, righe, colonne @@ -1298,51 +1429,44 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti?Column %1 Colonna %1 - - Imported from CSV file - Importati da file CSV - - - Original data: - Dati originali: - - - Error(s) detected in CSV file! - Errore(i) rilevati nel file CSV! - [%n more message(s) skipped] - [%n altro messaggio saltato][altri %n messaggi saltati] + [%n altro messaggio saltato][altri %n messaggi saltati][altri %n messaggi saltati] - Error - Errore + Failed to parse CSV file: %1 + Impossibile analizzare il file CSV: %1 - CSV import: writer has errors: -%1 - Importazione CSV: lo scrittore ha errori: -%1 + Imported from CSV file: %1 + Importato da file CSV: %1 + + + No Title Selected + Nessun Titolo Selezionato + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Non è stata selezionata alcuna colonna del titolo, le voci saranno difficili da distinguere. +Sei sicuro di voler importare? + + + Tags + Etichette CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte (s)%n byte(s) - %n row(s) - righe: %n%n riga(e) + CSV row count + righe: %n%n riga(e)%n riga(e) %n column(s) - %n colonna%n colonne + CSV column count + %n colonna%n colonne%n colonne @@ -1358,7 +1482,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Unable to open file %1. - Impossibile aprire il file %1. + Impossibile aprire il file '%1'. Error while reading the database: %1 @@ -1370,7 +1494,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Database save is already in progress. - Salvataggio del database già avviato + Salvataggio del database già avviato. Could not save, database has not been initialized! @@ -1378,7 +1502,7 @@ Si desidera eseguire ora la migrazione delle impostazioni esistenti? Database file has unmerged changes. - Il file di database ha apportato modifiche non unite. + Il file database ha apportato modifiche non unite. %1 @@ -1388,18 +1512,26 @@ Database di backup che si trova in %2 Key not transformed. This is a bug, please report it to the developers. - Chiave non trasformata. Questo è un bug, si prega di segnalarlo agli sviluppatori. + Chiave non trasformata. Questo è un bug, segnalalo agli sviluppatori. Recycle Bin Cestino + + Database file read error. + Errore di lettura del file del database. + + + No file path was provided. + Non è stato fornito alcun percorso del file. + DatabaseOpenDialog Unlock Database - KeePassXC - Sbloccare Database - KeePassXC + Sblocca database - KeePassXC @@ -1416,60 +1548,22 @@ Database di backup che si trova in %2 Password field Campo password - - Enter Additional Credentials (if any): - Inserisci credenziali aggiuntive (se presenti): - - - Key File: - File chiave: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Oltre a una password, è possibile utilizzare un file segreto per migliorare la sicurezza del database. Questo file può essere generato nelle impostazioni di sicurezza del database.</p><p>Questo non <strong>è il</strong> tuo file di database *.kdbx!<br>Se non si dispone di un file di chiave, lasciare vuoto questo campo.</p><p>Clicca per maggiori informazioni...</p> - - - Key file help - Aiuto relativo al file chiave - Hardware key slot selection Selezione degli slot dei tasti hardware - - Hardware Key: - Chiave hardware: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>È possibile utilizzare una chiave di protezione hardware, ad esempio <strong>YubiKey</strong> o <strong>OnlyKey</strong> con slot configurati per HMAC-SHA1.</p> -<p>Clicca per maggiori informazioni...</p> - - - Hardware key help - Guida alla chiave hardware - Key file to unlock the database File chiave per sbloccare il database Browse for key file - Cercare il file chiave + Seleziona file chiave Browse… Sfoglia… - - Refresh hardware tokens - Aggiornare i token hardware - - - Refresh - Aggiorna - Unlock Database Sblocca database @@ -1484,11 +1578,11 @@ Database di backup che si trova in %2 Please present or touch your YubiKey to continue… - Si prega di presentare o toccare il vostro YubiKey per continuare... + Per continuare presenta o tocca la YubiKey ... Database Version Mismatch - Versione del database non corrispondente + Versione database non corrispondente The database you are trying to open was most likely @@ -1504,7 +1598,7 @@ creato da una versione più recente di KeePassXC. Puoi provare ad aprirlo comunque, ma potrebbe essere incompleto e il salvataggio di qualsiasi modifica può comportare una perdita di dati. -Ti consigliamo di aggiornare la tua installazione di KeePassXC. +Ti consigliamo di aggiornare questa installazione di KeePassXC. Open database anyway @@ -1524,7 +1618,7 @@ Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. Sblocco del database non riuscito e non è stata immessa una password. -Si desidera riprovare con una password "vuota"? +Vuoi riprovare con una password "vuota"? Per evitare che questo errore venga visualizzato, è necessario andare alle "Impostazioni database / Sicurezza" e reimpostare la password. @@ -1532,17 +1626,9 @@ Per evitare che questo errore venga visualizzato, è necessario andare alle &quo Retry with empty password Riprova con password vuota - - Failed to authenticate with Windows Hello - Impossibile eseguire l'autenticazione con Windows Hello - - - Failed to authenticate with Touch ID - Impossibile eseguire l'autenticazione con Touch ID - Failed to open key file: %1 - Impossibile aprire il file di chiave: %1 + Impossibile aprire il file chiave: %1 Old key file format @@ -1550,11 +1636,11 @@ Per evitare che questo errore venga visualizzato, è necessario andare alle &quo You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Stai utilizzando un vecchio formato di file chiave che KeePassXC può<br>smettere di supportare in futuro.<br><br>Prendere in considerazione la possibilità di generare un nuovo file di chiave andando a:<br><strong>Database &gt; Sicurezza database &gt; modificare il file di chiave.</strong><br> + Stai usando un vecchio formato di file chiave che KeePassXC può<br>smettere di supportare in futuro.<br><br>Prendi in considerazione la possibilità di generare un nuovo file chiave andando in:<br><strong>Database &gt; Sicurezza database &gt; Modifica file chiave.</strong><br> Don't show this warning again - Non mostrare nuovamente questo avviso + Non visualizzare nuovamente questo avviso All files @@ -1573,22 +1659,68 @@ Per evitare che questo errore venga visualizzato, è necessario andare alle &quo Impossibile usare il file database come file chiave - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Non puoi usare il tuo file database come file chiave. -Se non possiedi un file chiave, lascia vuoto questo campo. + authenticate to access the database + Per accedere al database esegui l'autenticazione - Detecting hardware keys… - Rilevamento delle chiavi hardware in corso… + Failed to authenticate with Quick Unlock: %1 + Autenticazione con Sblocco rapido fallita: %1 - No hardware keys detected - Nessuna chiave hardware rilevata + Select Key File: + Seleziona il file chiave: - Select hardware key… - Seleziona chiave hardware… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Oltre ad una password, puoi utilizzare un file segreto per migliorare la sicurezza del tuo database. Questo file può essere generato nelle impostazioni di sicurezza del tuo database.</p><p>Questo<strong>non</strong>è il tuo file database *.kdbx!</p> + + + Use hardware key [Serial: %1] + Usa tasto hardware [Seriale: %1] + + + Use hardware key + Usa tasto hardware + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Il database non è un file key! +Se non hai un file key o non sai cosa sia, non selezionarlo. + + + KeePassXC database file selected + Database KeePassXC selezionato + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Il file selezionato sembra essere un file database. +Un file database NON è un file chiave. + +Sei sicuro di voler continuare con questo file? + + + No hardware keys found. + Tasti hardware non trovati. + + + Refresh Hardware Keys + Aggiorna tasti hardware + + + Click to add a key file. + Clicca per aggiungere un file chiave. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Ho un file chiave</a> + + + Hardware keys found, but no slots are configured. + Chiave hardware trovata, ma non è configurato nessuno slot. @@ -1600,10 +1732,6 @@ Se non possiedi un file chiave, lascia vuoto questo campo. DatabaseSettingsDialog - - Advanced Settings - Impostazioni avanzate - General Generale @@ -1618,16 +1746,32 @@ Se non possiedi un file chiave, lascia vuoto questo campo. Encryption Settings - Impostazioni di crittografia + Impostazioni di cifratura Browser Integration - Integrazione con i browser + Integrazione browser Maintenance Manutenzione + + KeeShare + KeeShare + + + Secret Service Integration + Integrazione Secret Service + + + Remote Sync + Sincronizzazione Remota + + + Database Settings: %1 + Impostazioni database: %1 + DatabaseSettingsWidgetBrowser @@ -1635,25 +1779,17 @@ Se non possiedi un file chiave, lascia vuoto questo campo. KeePassXC-Browser settings Impostazioni di KeePassXC-Browser - - Convert KeePassHTTP data - Convertire i dati KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Convertire gli attributi KeePassHTTP legacy in dati personalizzati compatibili con KeePassXC-Browser - - - Refresh database root group ID - Aggiornare l'ID gruppo radice del database - Disconnect all browsers Scollega tutti i browser Forget all site-specific settings on entries - Dimenticare tutte le impostazioni specifiche del sito nelle voci + Dimenticae tutte le impostazioni specifiche del sito nelle voci + + + Refresh database root group ID + Aggiorna l'ID gruppo radice del database Stored keys @@ -1665,7 +1801,7 @@ Se non possiedi un file chiave, lascia vuoto questo campo. Remove selected key - Rimuovere la chiave selezionata + Rimuovi chiave selezionata Remove @@ -1673,13 +1809,13 @@ Se non possiedi un file chiave, lascia vuoto questo campo. Delete the selected key? - Eliminare la chiave selezionata? + Vuoi eliminare la chiave selezionata? Do you really want to delete the selected key? This may prevent connection to the browser plugin. Vuoi davvero eliminare la chiave selezionata? -Ciò potrebbe impedire la connessione al plug-in del browser. +Questo potrebbe impedire la connessione al plug-in del browser. Key @@ -1695,70 +1831,44 @@ Ciò potrebbe impedire la connessione al plug-in del browser. Enable Browser Integration to access these settings. - Abilita l'integrazione con i browser per accedere a queste impostazioni. + Per accedere a queste impostazioni abilita l'integrazione browser. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. Vuoi davvero scollegare tutti i browser? -Ciò potrebbe impedire la connessione al plug-in del browser. - - - KeePassXC: No keys found - KeePassXC: nessuna chiave trovata +Questo potrebbe impedire la connessione al plug-in del browser. No shared encryption keys found in KeePassXC settings. - Nessuna chiave di crittografia condivisa trovata nelle impostazioni KeePassXC. - - - KeePassXC: Removed keys from database - KeePassXC: chiavi rimosse dal database + Nessuna chiave di cifratura condivisa trovata nelle impostazioni KeePassXC. Successfully removed %n encryption key(s) from KeePassXC settings. - Rimossa con successo %n chiave di cifratura dalle impostazioni di KeePassXC. Rimosse con successo %n chiavi di cifratura dalle impostazioni di KeePassXC. + Rimossa con successo %n chiave di cifratura dalle impostazioni di KeePassXC. Rimosse con successo %n chiavi di cifratura dalle impostazioni di KeePassXC. Rimosse con successo %n chiavi di cifratura dalle impostazioni di KeePassXC. Do you really want forget all site-specific settings on every entry? Permissions to access entries will be revoked. Vuoi davvero dimenticare tutte le impostazioni specifiche del sito su ogni voce? -Le autorizzazioni per accedere alle voci verranno revocate. +Verranno revocate le autorizzazioni per accedere alle voci. Removing stored permissions… - Rimozione dei permessi salvati… + Rimozione dei permessi salvati... Abort Interrompi - - KeePassXC: Removed permissions - KeePassXC: permessi rimossi - Successfully removed permissions from %n entry(s). - Permessi rimossi con successo da %n voce.Permessi rimossi con successo da %n voci. - - - KeePassXC: No entry with permissions found! - KeePassXC: nessuna voce con permessi trovata! + Permessi rimossi con successo da %n voce.Permessi rimossi con successo da %n voci.Permessi rimossi con successo da %n voci. The active database does not contain an entry with permissions. Il database attivo non contiene una voce con permessi. - - Move KeePassHTTP attributes to custom data - Spostare gli attributi KeePassHTTP in dati personalizzati - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Vuoi davvero convertire tutti i dati di integrazione del browser legacy allo standard più recente? -Questo è necessario per mantenere la compatibilità con il plug-in del browser. - Refresh database ID Aggiorna ID database @@ -1766,8 +1876,28 @@ Questo è necessario per mantenere la compatibilità con il plug-in del browser. Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Si vuole davvero aggiornare l'ID del database? -Questo è necessario solo se il database è una copia e l'estensione del browser non riesce a connettersi. + Vuoi davvero aggiornare l'ID del database? +Questo è necessario solo se il database è una copia e l'estensione del browser non riesce a connettersi. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Convertire gli attributi KeePassHTTP obsoleti in dati personalizzati compatibili con KeePassXC-Browser + + + No keys found + Nessuna chiave trovata + + + Removed keys from database + Rimuovi chiavi dal database + + + Removed permissions + Permessi rimossi + + + No entry with permissions found! + Nessuna voce con permessi trovata! @@ -1784,9 +1914,9 @@ Questo è necessario solo se il database è una copia e l'estensione del br 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? - ATTENZIONE! Non è stata impostata una password. Utilizzare un database senza password è fortemente sconsigliato! + ATTENZIONE! Non è stata impostata una password. Usare un database senza password è fortemente sconsigliato! -Siete sicuri di voler continuare senza password? +Vuoi continuare senza password? Continue without password @@ -1794,11 +1924,11 @@ Siete sicuri di voler continuare senza password? No encryption key added - Nessuna chiave di crittografia aggiunta + Nessuna chiave di cifratura aggiunta You must add at least one encryption key to secure your database! - Bisogna aggiungere almeno un'altra chiave di cifratura per rendere sicuro il database. + Per rendere sicuro il database devi aggiungere almeno un'altra chiave di cifratura! Unknown error @@ -1808,24 +1938,28 @@ Siete sicuri di voler continuare senza password? Failed to change database credentials Impossibile modificare le credenziali del database + + Weak password + Password debole + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Questa è una password debole. Per una maggiore protezione dei segreti, dovresti scegliere una password più forte. + + + The provided password does not meet the minimum quality requirement. + La password fornita non rispetta i requisiti qualitativi minimi. + DatabaseSettingsWidgetEncryption Decryption Time: - Tempo di de-crittografia: - - - Change existing decryption time - Modificare il tempo di decrittografia esistente - - - Change - Modifica + Tempo di decifratura: Decryption time in seconds - Tempo di decrittografia in secondi + Tempo di decifratura in secondi Higher values offer more protection, but opening the database will take longer. @@ -1833,7 +1967,7 @@ Siete sicuri di voler continuare senza password? Database format: - Formato di database: + Formato database: Database format @@ -1841,11 +1975,11 @@ Siete sicuri di voler continuare senza password? Format cannot be changed: Your database uses KDBX 4 features - Il formato non può essere cambiato: Il tuo database utilizza le caratteristiche di KDBX 4 + Il formato non può essere cambiato: il database usa le caratteristiche di KDBX 4 Unless you need to open your database with other programs, always use the latest format. - A meno che non abbia bisogno di aprire il tuo database con altri programmi, usa sempre l'ultimo formato. + A meno che non abbia bisogno di aprire il database con altri programmi, usa sempre l'ultimo formato. Encryption Algorithm: @@ -1853,11 +1987,11 @@ Siete sicuri di voler continuare senza password? Encryption algorithm - Algoritmo di crittografia + Algoritmo di cifratura AES: 256 Bit (default) - AES: 256 Bit (impostazione predefinita) + AES: 256 Bit (predefinito) Twofish: 256 Bit @@ -1903,11 +2037,6 @@ Siete sicuri di voler continuare senza password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - invariato - Number of rounds too high Key transformation rounds @@ -1917,7 +2046,7 @@ Siete sicuri di voler continuare senza password? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - Con Argon2 si utilizza un numero molto elevato di turni di trasformazione chiave. + Con Argon2 si usa un numero molto elevato di turni di trasformazione chiave. Se si mantiene questo numero, l'apertura del database potrebbe richiedere ore, giorni o anche più tempo. @@ -1938,7 +2067,7 @@ Se si mantiene questo numero, l'apertura del database potrebbe richiedere o You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - Con AES-KDF si utilizza un numero molto basso di turni di trasformazione chiave. + Con AES-KDF si usa un numero molto basso di turni di trasformazione chiave. Se si mantiene questo numero, il database non sarà protetto da attacchi di forza bruta. @@ -1948,17 +2077,29 @@ Se si mantiene questo numero, il database non sarà protetto da attacchi di forz Failed to transform key with new KDF parameters; KDF unchanged. - La trasformazione della chiave con i nuovi parametri KDF e' fallita; KDF immutato + La trasformazione della chiave con i nuovi parametri KDF non è riuscita; KDF immutato. MiB Abbreviation for Mebibytes (KDF settings) - MiB MiB + MiB MiB MiB thread(s) Threads for parallel execution (KDF settings) - iscritto (i)thread(s) + threadthreadthread + + + Encryption Settings: + Impostazioni di crittografia: + + + Basic + Base + + + Advanced + Avanzate @@ -1977,7 +2118,7 @@ Se si mantiene questo numero, il database non sarà protetto da attacchi di forz Enable Secret Service to access these settings. - Consentire ai Servizi Segreti di accedere a queste impostazioni. + Consenti ai servizi segreti di accedere a queste impostazioni. @@ -2018,18 +2159,10 @@ Se si mantiene questo numero, il database non sarà protetto da attacchi di forz Maximum number of history items per entry Numero massimo di elementi della cronologia per voce - - Max. history items: - Oggetti max. nella cronologia: - Maximum size of history per entry Dimensione massima della cronologia per voce - - Max. history size: - Grandezza max. cronologia: - MiB MB @@ -2053,12 +2186,114 @@ Se si mantiene questo numero, il database non sarà protetto da attacchi di forz Do you want to delete the current recycle bin and all its contents? This action is not reversible. - Vuoi eliminare il cestino corrente e tutto il suo contenuto? + Vuoi eliminare il cestino attuale e tutto il suo contenuto? Questa azione non è reversibile. (old) - (vecchio) + (vecchio) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Quando si salva questa impostazione o si modifica una voce +gli elementi della cronologia più vecchi di una voce saranno +rimossi in modo tale che solo il numero specificato +delle voci rimanga. + + + Limit the amount of history items per entry to: + Limita la quantità elementi cronologia per voce a: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Quando si salva questa impostazione o si modifica una voce +gli elementi della cronologia più vecchi di una voce saranno +rimossi in modo tale che gli elementi rimanenti della cronologia +si accumulino fino al numero specificato. + + + Limit the total size of history items per entry to: + Limita la dimensione totale elementi cronologia per voce a: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Sposta le voci in un gruppo Cestino +invece di eliminarli dal database. +Le voci eliminate dal cestino sono +rimosse dal database. + + + Autosave delay since last change + Intervallo di salvataggio automatico dall'ultimo cambiamento + + + Autosave delay + Intervallo di salvataggio automatico + + + Autosave delay since last change in minutes + Intervallo di salvataggio automatico dall'ultimo cambiamento in minuti + + + min + min + + + Autosave delay since last change checkbox + Casella di controllo per l'intervallo di salvataggio automatico dall'ultimo cambiamento + + + Public Database Metadata + Metadati del database pubblico + + + Warning: the following settings are not encrypted. + Attenzione: le seguenti impostazioni non sono crittografate. + + + Display name: + Nome di visualizzazione: + + + Publically visible display name used on the unlock dialog + Nome visualizzato visibile pubblicamente utilizzato nella finestra di dialogo di sblocco + + + Database public display name + Nome pubblico del database visualizzato + + + Display color: + Colore di visualizzazione: + + + Publically visible color used on the unlock dialog + Colore visibile pubblicamente utilizzato nella finestra di dialogo di sblocco + + + Database public display color chooser + Selettore colore display pubblico del database + + + Clear + Azzera + + + Display icon: + Simbolo di visualizzazione: + + + Select Database Icon + Seleziona l'icona del database @@ -2090,7 +2325,7 @@ Questa azione non è reversibile. > Breadcrumb separator - > + > @@ -2101,15 +2336,15 @@ Questa azione non è reversibile. Delete selected icon(s) - Eliminare le icone selezionate + Elimina icone selezionate Delete all custom icons not in use by any entry or group - Eliminare tutte le icone personalizzate non utilizzate da alcuna voce o gruppo + Elimina tutte le icone personalizzate non usate da alcuna voce o gruppo Purge unused icons - Eliminare le icone inutilizzate + Elimina icone non usate Confirm Deletion @@ -2117,7 +2352,7 @@ Questa azione non è reversibile. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - Almeno una delle icone selezionate è attualmente in uso da almeno una voce o gruppo. Le icone di tutte le voci e i gruppi interessati verranno sostituite dall'icona predefinita. Eliminare le icone attualmente in uso? + Almeno una delle icone selezionate è attualmente in uso da almeno una voce o gruppo. Le icone di tutte le voci e i gruppi interessati verranno sostituite dall'icona predefinita. Vuoi eliminare le icone attualmente in uso? Custom Icons Are In Use @@ -2125,15 +2360,15 @@ Questa azione non è reversibile. All custom icons are in use by at least one entry or group. - Tutte le icone personalizzate sono utilizzate da almeno una voce o gruppo. + Tutte le icone personalizzate sono usate da almeno una voce o gruppo. Purged Unused Icons - Icone non utilizzate eliminate + Icone non usate eliminate Purged %n icon(s) from the database. - Eliminata %n icona dal database.Eliminate %n icone dal database. + Eliminata %n icona dal database.Eliminate %n icone dal database.Eliminate %n icone dal database. @@ -2155,6 +2390,141 @@ Questa azione non è reversibile. Campo descrizione database + + DatabaseSettingsWidgetRemote + + Sync Commands + Comandi Sincronizzazione + + + Remove + Rimuovi + + + Command Settings + Impostazioni Comando + + + Name + Nome + + + Save + Salva + + + Download + Download + + + Command: + Comando: + + + Download command field + Scarica il campo del comando + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + es.: "sftp user@hostname" oppure "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + Download input field + Scarica il campo di input + + + Upload + Caricare + + + Upload command field + Carica il campo del comando + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + Ad esempio.: "sftp user@hostname" o "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Carica il campo di input + + + Name cannot be empty. + Il nome non può essere vuoto. + + + Test + Test + + + Download command cannot be empty. + Il comando di download non può essere vuoto. + + + Download failed with error: %1 + Download non riuscito con errore: %1 + + + Download finished, but file %1 could not be found. + Download completato, ma il file %1 non è stato trovato. + + + Download successful. + Download completato con successo. + + + Save Remote Settings + Salva impostazioni remote + + + You have unsaved changes. Do you want to save them? + Hai delle modifiche non salvate. Vuoi salvarle? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + ad es.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} è utilizzato come segnaposto per memorizzare il database in una posizione temporanea +Il comando deve uscire. In caso di `sftp` come ultimo comando `exit` deve essere inviato + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + ad es.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} è utilizzato come segnaposto per memorizzare il database in una posizione temporanea +Il comando deve uscire. In caso di `sftp` come ultimo comando `exit` deve essere inviato + + + + Timeout: + Timeout: + + + seconds + secondi + + DatabaseTabWidget @@ -2165,7 +2535,7 @@ Questa azione non è reversibile. The created database has no key or KDF, refusing to save it. This is definitely a bug, please report it to the developers. Il database creato non ha chiave o KDF, rifiutando di salvarlo. -Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori. +Questo è sicuramente un bug, segnalalo agli sviluppatori. KeePass 2 Database @@ -2181,32 +2551,16 @@ Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori. Failed to open %1. It either does not exist or is not accessible. - Impossibile aprire %1. Non esiste o non è accessibile. + Impossibile aprire '%1'. Non esiste o non è accessibile. CSV file File CSV - - Select CSV file - Selezionare il file CSV - Merge database Unisci database - - KeePass 1 database - Database KeePass 1 - - - Open KeePass 1 database - Apri database KeePass 1 - - - Open OPVault - Apri OPVault - Export database to CSV file Esporta database come file CSV @@ -2219,34 +2573,42 @@ Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori.Writing the HTML file failed. Scrittura del file HTML non riuscita. + + Export database to XML file + Esporta il database in un file XML + + + XML file + File XML + + + Writing the XML file failed + Scrittura del file XML non riuscita + Export Confirmation Conferma esportazione You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Si sta per esportare il database in un file non crittografato. Questo lascerà le password e le informazioni sensibili vulnerabili! Sei sicuro di voler continuare? - - - New Database - Nuovo Database - - - %1 [New Database] - Database tab name modifier - %1 [nuovo database] + Stai per esportare il database in un file non cifrato. Questo lascerà le password e le informazioni sensibili vulnerabili! Sei sicuro di voler continuare? %1 [Locked] Database tab name modifier %1 [bloccato] + + %1 [Temporary] + Database tab name modifier + %1 [Temporary] + DatabaseWidget - Database Tags - Etichette del database + Searches and Tags + Ricerche ed etichette Searching… @@ -2286,16 +2648,20 @@ Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori. Move group to recycle bin? - Cestinare il gruppo? + Vuoi spostare il gruppo nel cestino? Do you really want to move the group "%1" to the recycle bin? - Vuoi davvero cestinare il gruppo "%1"? + Vuoi davvero spostare il gruppo "%1" nel cestino? Expired entries Voci scadute + + Entries expiring within %1 day(s) + Voci che scadono entro %1 giorno(i)Voci che scadono entro %1 giorno(i)Voci che scadono entro %1 giorno(i) + No current database. Nessun database attuale. @@ -2306,7 +2672,7 @@ Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori. Successfully merged the database files. - I file di database sono uniti correttamente. + I file database sono stati uniti correttamente. Database was not modified by merge operation. @@ -2320,13 +2686,25 @@ Questo è sicuramente un bug, si prega di segnalarlo agli sviluppatori.No Results Nessun risultato + + Save + Salva + + + Enter a unique name or overwrite an existing search from the list: + Inserisci un nome univoco o sovrascrivi una ricerca esistente dall'elenco: + + + Save Search + Salva ricerca + Lock Database? - Bloccare il database? + Vuoi bloccare il database? You are editing an entry. Discard changes and lock anyway? - Si sta modificando una voce. Eliminare le modifiche e bloccare comunque? + Sta modificando una voce. Vuoi eliminare le modifiche e bloccare comunque? "%1" was modified. @@ -2338,36 +2716,16 @@ Vuoi salvare le modifiche? Database was modified. Save changes? Il database è stato modificato. -Salvare le modifiche? +Vuoi salvare le modifiche? Save changes? - Salvare le modifiche? + Vuoi salvare le modifiche? File has changed Il file è stato modificato - - The database file has changed. Do you want to load the changes? - Il file del database è stato modificato. Vuoi caricare le modifiche? - - - Merge Request - Richiesta di unione - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Il file del database e' stato cambiato e ci sono cambiamenti non salvati -Vuoi fondere i cambiamenti? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Impossibile aprire il nuovo file di database durante il tentativo di ricaricamento. -Errore: %1 - Disable safe saves? Disabilita i salvataggi sicuri? @@ -2375,8 +2733,8 @@ Errore: %1 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? - Nonostante ripetuti tentativi, KeePassXC non è riuscito a salvare il database. Probabilmente la causa risiede in un file di lock bloccato da qualche servizio di sincronizzazione file. -Disabilitare i salvataggi sicuri e riprovare? + Nonostante ripetuti tentativi, KeePassXC non è riuscito a salvare il database. Probabilmente la causa risiede in un file bloccato da qualche servizio di sincronizzazione file. +Vuoi disabilitare i salvataggi sicuri e riprovare? Writing the database failed: %1 @@ -2396,11 +2754,11 @@ Disabilitare i salvataggi sicuri e riprovare? Save database backup - Salva il backup del database + Salva backup database Empty recycle bin? - Svuotare il cestino? + Vuoi svuotare il cestino? Are you sure you want to permanently delete everything from your recycle bin? @@ -2408,11 +2766,96 @@ Disabilitare i salvataggi sicuri e riprovare? Could not find database file: %1 - Impossibile trovare il file di database: %1 + Impossibile trovare il file database: %1 - - Entries expiring within %1 day(s) - Voci che scadono entro %1 giorno(i)Voci che scadono entro %1 giorno(i) + + New Database + Nuovo database + + + %1 [New Database] + Database tab name modifier + %1 [nuovo database] + + + Remote Sync did not contain any download or upload commands. + La sincronizzazione remota non conteneva alcun comando di download o upload. + + + Remote sync '%1' completed successfully! + Sincronizzazione remota '%1' completata con successo! + + + Remote sync '%1' failed: %2 + Sincronizzazione remota '%1' fallita: %2 + + + Error while saving database %1: %2 + Errore durante il salvataggio del database %1: %2 + + + Downloading... + Scaricamento... + + + Uploading... + Caricamento... + + + Syncing... + Sincronizzazione... + + + Remove passkey from entry + Rimuovi passkey dalla voce + + + Do you want to remove the passkey from this entry? + Vuoi rimuovere la passkey da questa voce? + + + The database file "%1" was modified externally + Il file di database "%1" è stato modificato esternamente + + + Do you want to load the changes? + Vuoi caricare le modifiche? + + + Reload database + Ricarica il database + + + Reloading database… + Ricaricamento del database… + + + Reload canceled + Ricaricamento annullato + + + Reload successful + Ricaricamento completato correttamente + + + Reload pending user action… + Ricaricamento in attesa di azione dell'utente... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Il file di database "%1" è stato modificato esternamente.<br> Come desideri procedere?<br><br>Unisci tutte le modifiche<br>Ignora le modifiche sul disco fino al salvataggio<br>Ignora le modifiche non salvate + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Il file di database "%1" è stato modificato esternamente.<br>Come desideri procedere?<br><br>Unisci tutte le modifiche, quindi salva<br>Sovrascrivi le modifiche sul disco<br>Ignora le modifiche non salvate + + + Database file overwritten. + File di database sovrascritto. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Il file del database sul disco non può essere sbloccato con le credenziali attuali.<br> Digita le nuove credenziali e/o presenta la chiave hardware per continuare. @@ -2435,7 +2878,7 @@ Disabilitare i salvataggi sicuri e riprovare? Browser Integration - Integrazione con i browser + Integrazione browser <empty URL> @@ -2465,10 +2908,6 @@ Disabilitare i salvataggi sicuri e riprovare? n/a n/a - - (encrypted) - (cifrato) - Select private key Seleziona chiave privata @@ -2529,7 +2968,7 @@ Vuoi correggerla? Would you like to save changes to this entry? - Salvare le modifiche a questa voce? + Vuoi salvare le modifiche a questa voce? New attribute @@ -2549,27 +2988,31 @@ Vuoi correggerla? [PROTECTED] Press Reveal to view or edit - [PROTETTO] Premere Mostra per visualizzare o modificare + [PROTETTO] Seleziona 'Visualizza' per visualizzare o modificare Hide Nascondi + + %n hour(s) + %n ora(e)%n ora(e)%n ora(e) + %n week(s) - %n settimana%n settimane + %n settimana%n settimane%n settimane %n month(s) - %n mese%n mesi + %n mese%n mesi%n mesi %n year(s) - anno (i) %n%n anno(i) + %n anno%n anni%n anni - - %n hour(s) - %n ora(e)%n ora(e) + + Failed to decrypt SSH key, ensure password is correct. + Impossibile decriptare la chiave SSH, assicurati che la password sia corretta. @@ -2588,7 +3031,7 @@ Vuoi correggerla? Add a new attribute - Aggiungere un nuovo attributo + Aggiungi un nuovo attributo Add @@ -2612,7 +3055,7 @@ Vuoi correggerla? Toggle attribute protection - Attivare o disattivare la protezione degli attributi + Attiva/disattiva la protezione attributi Protect @@ -2620,7 +3063,7 @@ Vuoi correggerla? Show a protected attribute - Visualizzare un attributo protetto + Visualizza un attributo protetto Reveal @@ -2632,11 +3075,11 @@ Vuoi correggerla? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - Se selezionata, la voce non verrà visualizzata in report come Health Check e HIBP anche se non corrisponde ai requisiti di qualità. + Se selezionata, la voce non verrà visualizzata nel rapporto come Controllo salute e HIBP anche se non corrisponde ai requisiti di qualità. Exclude from database reports - Escludere dal rapporto del database + Escludi dal rapporto del database Foreground Color: @@ -2675,7 +3118,7 @@ Vuoi correggerla? Open Auto-Type help webpage - Aprire la pagina Web di aiuto per i completamenti automatici + Apri la pagina web di aiuto per i completamenti automatici Window Associations @@ -2689,9 +3132,19 @@ Vuoi correggerla? Add new window association Aggiungi nuova associazione finestra + + + + Add item + + + Remove selected window association - Rimuovere l'associazione della finestra selezionata + Rimuovi associazione finestra selezionata + + + - + Remove item + - Window title: @@ -2699,15 +3152,15 @@ Vuoi correggerla? You can use an asterisk (*) to match everything - È possibile utilizzare un asterisco (*) per abbinare tutto + È possibile usare un asterisco (*) per abbinare tutto Set the window association title - Impostare il titolo dell'associazione della finestra + Imposta il titolo dell'associazione finestra You can use an asterisk to match everything - È possibile utilizzare un asterisco per abbinare tutto + È possibile usare un asterisco per abbinare tutto Use a specific sequence for this association: @@ -2717,23 +3170,9 @@ Vuoi correggerla? Custom Auto-Type sequence for this window Sequenza personalizzata del completamento automatico per questa finestra - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Queste impostazioni influiscono sul comportamento della voce con l'estensione del browser. - General Generale @@ -2746,25 +3185,13 @@ Vuoi correggerla? Skip Auto-Submit for this entry Ignora invio automatico per questa voce - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Manda queste impostazioni al browser solo solo per l'autenticazione HTTP. Se abilitata, la pagina di login non mostrerà questa voce disponibile per la selezione. - Use this entry only with HTTP Basic Auth - Utilizza questa voce solo con l'autenticazione HTTP Basic - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Non inviare questa impostazione al browser per le finestre di dialogo autenticazione HTTP. Se attivata, le finestre di dialogo autenticazione HTTP non mostreranno questa voce per la selezione. + Usa questa voce solo con l'autenticazione semplice HTTP Do not use this entry with HTTP Basic Auth - Non utilizzare questa voce con l'autenticazione di base HTTP - - - Additional URL's - URL aggiuntivi + Non usare questa voce con l'autenticazione semplice HTTP Add @@ -2778,6 +3205,22 @@ Vuoi correggerla? Edit Modifica + + These settings affect the entry's behaviour with the browser extension. + Queste impostazioni influenzano il comportamento della voce con l'estensione browser. + + + Additional URLs + URL aggiuntive + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Invia questa voce esclusivamente per finestre HTTP Auth. Se abilitato, le form di login normali non mostreranno questa voce come voce selezionabile. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Non inviare questa voce al browser per finestre HTTP Auth. Se abilitato, le finestre HTTP Auth non mostreranno questa voce come voce selezionabile. + EditEntryWidgetHistory @@ -2787,7 +3230,7 @@ Vuoi correggerla? Show entry at selected history state - Mostra voce nello stato della cronologia selezionato + Visualizza voce nello stato della cronologia selezionato Show @@ -2795,7 +3238,7 @@ Vuoi correggerla? Restore entry to selected history state - Ripristinare la voce allo stato della cronologia selezionato + Ripristina la voce allo stato cronologia selezionato Restore @@ -2803,7 +3246,7 @@ Vuoi correggerla? Delete selected history state - Eliminare lo stato della cronologia selezionato + Elimina lo stato cronologia selezionato Delete @@ -2828,22 +3271,10 @@ Vuoi correggerla? Notes field Campo note - - Toggle the checkbox to reveal the notes section. - Attivare o disattivare la casella di controllo per rivelare la sezione note. - Username field Campo nome utente - - Toggle notes visible - Attiva/disattiva visibilità delle note - - - Notes: - Note: - Expiration field Campo scadenza @@ -2860,14 +3291,6 @@ Vuoi correggerla? Presets Preimpostazioni - - Password: - Password: - - - URL: - URL: - Url field Campo Url @@ -2876,18 +3299,10 @@ Vuoi correggerla? Download favicon for URL Scarica favicon per URL - - Title: - Titolo: - Title field Campo del titolo - - Username: - Nome utente: - Password field Campo password @@ -2896,18 +3311,42 @@ Vuoi correggerla? Toggle expiration Attiva/disattiva scadenza - - Expires: - Scade: - - - Tags: - Etichette: - Tags list Elenco delle etichette + + &Username: + Nome &utente: + + + &Title: + &Titolo: + + + &Password: + &Password: + + + UR&L: + UR&L: + + + &Notes: + &Note: + + + Toggle notes visibility + Attiva/disattiva la visibilità delle note + + + T&ags: + &Etichette: + + + &Expires: + &Scade: + EditEntryWidgetSSHAgent @@ -2937,7 +3376,7 @@ Vuoi correggerla? Copy to clipboard - Copia negli appunti + Copia negli Appunti Public key @@ -2947,26 +3386,13 @@ Vuoi correggerla? Private key Chiave privata - - External file - File esterno - - - Browser for key file - Ricerca del file di chiave - - - Browse… - Button for opening file dialog - Sfoglia… - Attachment Allegato External key file - File di chiave esterna + File chiave esterno Add to agent @@ -2976,6 +3402,23 @@ Vuoi correggerla? Remove from agent Rimuovi dall'agente + + External file + File esterno + + + Browser for key file + Selezione file chiave + + + Browse… + Button for opening file dialog + Sfoglia… + + + Generate + Genera + Select attachment file Seleziona file allegato @@ -3000,6 +3443,10 @@ Vuoi correggerla? seconds secondi + + Clear agent + Cancella agent + EditGroupWidget @@ -3011,10 +3458,6 @@ Vuoi correggerla? Icon Icona - - Browser Integration - Integrazione con i browser - Properties Proprietà @@ -3031,6 +3474,10 @@ Vuoi correggerla? Group has unsaved changes Il gruppo ha modifiche non salvate + + Browser Integration + Integrazione browser + Enable Abilita @@ -3046,10 +3493,6 @@ Vuoi correggerla? EditGroupWidgetBrowser - - Edit Group - Modifica gruppo - These settings affect to the group's behaviour with the browser extension. Queste impostazioni influiscono sul comportamento del gruppo con l'estensione del browser. @@ -3072,7 +3515,7 @@ Vuoi correggerla? Use entries only with HTTP Basic Auth: - Utilizzare le voci solo con l'autenticazione di base HTTP: + Usa le voci solo con l'autenticazione semplice HTTP: Only HTTP Auth toggle for this and sub groups @@ -3080,11 +3523,27 @@ Vuoi correggerla? Do not use entries with HTTP Basic Auth: - Non utilizzare voci con autenticazione di base HTTP: + Non usare voci con autenticazione semplice HTTP: Do not use HTTP Auth toggle for this and sub groups - Non utilizzare l'interruttore di autenticazione HTTP per questo e sottogruppi + Non usare l'interruttore di autenticazione HTTP per questo e sottogruppi + + + Omit WWW subdomain from matching: + Ometti il sottodominio WWW dalla corrispondenza: + + + Omit WWW subdomain from matching toggle for this and sub groups + Ometti il sottodominio WWW dal selettore corrispondente per questo e sottogruppi + + + Restrict matching to given browser key: + Restringi corrispondenza alla chiave browser fornita: + + + Restrict matching to given browser key toggle for this and sub groups + Limita la corrispondenza a un determinato tasto del browser per questo e sottogruppi @@ -3123,7 +3582,7 @@ Vuoi correggerla? Clear fields - Cancellare i campi + Azzera campi Clear @@ -3135,7 +3594,7 @@ Vuoi correggerla? Import - Importazione + Importa Export @@ -3148,8 +3607,8 @@ Vuoi correggerla? Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - La tua versione di KeePassXC non supporta la condivisione di questo tipo di contenitore. -Le estensioni supportate sono: %1. + Questa versione di KeePassXC non supporta la condivisione di questo tipo di contenitore. +Le estensioni supportate sono: '%1'. %1 is already being exported by this database. @@ -3186,7 +3645,7 @@ Le estensioni supportate sono: %1. Select import source - Selezionare l'origine di importazione + Seleziona sorgente importazione Select export target @@ -3194,7 +3653,7 @@ Le estensioni supportate sono: %1. Select import/export file - Selezionare il file di importazione/esportazione + Seleziona file importazione/esportazione @@ -3253,7 +3712,7 @@ Le estensioni supportate sono: %1. Set default Auto-Type sequence - Impostare la sequenza predefinita del completamento automatico + Imposta sequenza predefinita completamento automatico Search toggle for this and sub groups @@ -3276,11 +3735,11 @@ Le estensioni supportate sono: %1. Set the URL to use to search for a favicon - Impostare l'URL da utilizzare per cercare una favicon + Imposta l'URL da usare per cercare una favicon Favicon URL - Favicon URL + URL favicon Download favicon for URL @@ -3292,11 +3751,11 @@ Le estensioni supportate sono: %1. Apply selected icon to subgroups and entries - Applicare l'icona selezionata a sottogruppi e voci + Applica l'icona selezionata a sottogruppi e voci Apply icon to… - Applicare l'icona a... + Applica l'icona a... Apply to this group only @@ -3308,20 +3767,16 @@ Le estensioni supportate sono: %1. Also apply to child entries - Si applicano anche alle voci figlio + Applica alle voci figlie Also apply to all children - Si applicano anche a tutti i figli + Applica anche a tutti i figli Unable to fetch favicon. Impossibile scaricare favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - È possibile attivare il servizio per le icone del sito Web DuckDuckGo in Strumenti -> Impostazioni -> Sicurezza - Existing icon selected. Icona esistente selezionata. @@ -3336,11 +3791,11 @@ Le estensioni supportate sono: %1. Select Image(s) - Selezionare immagine(i) + Seleziona immagine/i Successfully loaded %1 of %n icon(s) - Caricate con successo %1 di %n icona.Caricate con successo %1 di %n icone. + Caricate con successo %1 di %n icona.Caricate con successo %1 di %n icone.Caricate con successo %1 di %n icone. No icons were loaded @@ -3348,11 +3803,15 @@ Le estensioni supportate sono: %1. %n icon(s) already exist in the database - %n icona esiste già nel database%n icone esistono già nel database + %n icona esiste già nel database%n icone esistono già nel database%n icone esistono già nel database The following icon(s) failed: - La seguente icona presenta degli errori:Le seguenti icone presentano degli errori: + La seguente icona presenta degli errori:Le seguenti icone presentano degli errori:Le seguenti icone presentano degli errori: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Puoi attivare il servizio di DuckDuckGo per le icone dei siti web da Impostazioni applicazione -> Sicurezza @@ -3399,7 +3858,7 @@ Le estensioni supportate sono: %1. Remove selected plugin data - Rimuovere i dati selezionati del plug-in + Rimuovi dati plugin selezionato Remove @@ -3407,13 +3866,13 @@ Le estensioni supportate sono: %1. Delete plugin data? - Eliminare i dati del plugin? + Vuoi eliminare i dati del plugin? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. Vuoi davvero eliminare i dati del plugin selezionato? -Ciò potrebbe causare malfunzionamenti ai plugin interessati. +Questo potrebbe causare malfunzionamenti ai plugin interessati. Key @@ -3430,6 +3889,24 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. %1 - Clone %1 - clone + + Passkey + Passkey + + + Invalid conversion type: %1 + Tipo di conversione non valido: %1 + + + Invalid conversion syntax: %1 + Sintassi di conversione non valida: %1 + + + Invalid regular expression syntax %1 +%2 + Sintassi della espressione regolare non valida %1 +%2 + EntryAttachments @@ -3438,6 +3915,21 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. Impossibile aprire il file "%1" + + EntryAttachmentsDialog + + Form + Modulo + + + File name + Nome file + + + File contents... + Contenuto del file... + + EntryAttachmentsModel @@ -3469,23 +3961,15 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. Remove selected attachment - Rimuovere l'allegato selezionato + Rimuovi allegato selezionato Remove Rimuovi - - Rename selected attachment - Rinominare l'allegato selezionato - - - Rename - Rinominare - Open selected attachment - Aprire l'allegato selezionato + Apri allegato selezionato Open @@ -3505,11 +3989,11 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. Confirm remove - Confermare la rimozione + Conferma rimozione Are you sure you want to remove %n attachment(s)? - Sei sicuro di voler rimuovere %n allegato?Sei sicuro di voler rimuovere %n allegati? + Sei sicuro di voler rimuovere %n allegato?Sei sicuro di voler rimuovere %n allegati?Sei sicuro di voler rimuovere %n allegati? Save attachments @@ -3518,7 +4002,7 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. Unable to create directory: %1 - Impossibile creare la directory: + Impossibile creare la cartella: %1 @@ -3527,7 +4011,7 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. Confirm overwrite - Confermare la sovrascrittura + Conferma sovrascrittura Unable to save attachments: @@ -3552,17 +4036,12 @@ Ciò potrebbe causare malfunzionamenti ai plugin interessati. %1 Impossibile aprire il file: %1Impossibile aprire i file: +%1Impossibile aprire i file: %1 Confirm Overwrite Attachment - Confermare sovrascrittura dell'allegato - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - L'allegato "%1" esiste già. -Si desidera sovrascrivere l'allegato esistente? + Conferma sovrascrittura allegato Confirm Attachment @@ -3573,10 +4052,10 @@ Si desidera sovrascrivere l'allegato esistente? Your database may get very large and reduce performance. Are you sure to add this file? - %1 Ha dimensioni elevate (%2 MB). + %1 ha dimensioni elevate (%2 MB). Il database potrebbe occupare più spazio e ridurre le sue performance. -Siete sicuri di voler aggiungere questo file? +Sei sicuro di voler aggiungere questo file? Attachment modified @@ -3586,7 +4065,7 @@ Siete sicuri di voler aggiungere questo file? The attachment '%1' was modified. Do you want to save the changes to your database? L'allegato '%1' è stato modificato. -Vuoi salvare le modifiche nel tuo database? +Vuoi salvare le modifiche nel database? Saving attachment failed @@ -3595,9 +4074,27 @@ Vuoi salvare le modifiche nel tuo database? Saving updated attachment failed. Error: %1 - Salvataggio allegato aggiornato fallito. + Salvataggio allegato aggiornato non riuscito. Errore: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + L'allegato "%1" esiste già. +Vuoi sovrascrivere l'allegato esistente? + + + New + Nuovo + + + Preview + Anteprima + + + Failed to preview an attachment: Attachment not found + Impossibile visualizzare l'anteprima di un allegato: allegato non trovato + EntryAttributesModel @@ -3754,7 +4251,7 @@ Errore: %1 Password Strength - Sicurezza della password + Sicurezza password Entry notes @@ -3792,12 +4289,20 @@ Errore: %1 Has TOTP Ha TOTP + + Background Color + Colore di sfondo + + + Group Path + Percorso del Gruppo + EntryPreviewWidget Display current TOTP value - Visualizza il valore TOTP corrente + Visualizza il valore TOTP attuale Close @@ -3812,8 +4317,8 @@ Errore: %1 Password - Notes - Note + URL + URL Expiration @@ -3832,8 +4337,8 @@ Errore: %1 Nome utente - URL - URL + Notes + Note Advanced @@ -3883,6 +4388,10 @@ Errore: %1 Never Mai + + Double click to copy value + Doppio clic per copiare il valore + Enabled Abilitato @@ -3891,6 +4400,10 @@ Errore: %1 Disabled Disabilitato + + Double click to copy to clipboard + Fare doppio clic per copiare negli appunti + EntryURLModel @@ -3898,6 +4411,10 @@ Errore: %1 Invalid URL URL non corretto + + Duplicate URL + URL duplicato + EntryView @@ -3913,6 +4430,10 @@ Errore: %1 Reset to defaults Ripristina valori predefiniti + + + %1 entry(s)... + + %1 voce(i)...+ %1 voce(i)...+ %1 voce(i)... + ExportDialog @@ -3928,8 +4449,8 @@ Errore: %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - Si sta per esportare il database in un file non crittografato. -Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! + Stai per esportare il database in un file non cifrato. +Questo lascerà vulnerabili le password e le informazioni sensibili! @@ -3950,7 +4471,7 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! Export database to HTML file - Esportare il database in un file HTML + Esporta il database in un file HTML HTML file @@ -3984,7 +4505,7 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Un altro servizio segreto è già in esecuzione (%1).<br/>Fermarlo o rimuoverlo prima di abilitare l'integrazione dei servizi segreti. + Un altro servizio segreto è già in esecuzione (%1).<br/>Fermalo o rimuovilo prima di abilitare l'integrazione dei servizi segreti. Failed to register DBus service at %1.<br/> @@ -4015,7 +4536,7 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - La voce "%1" dal database "%2" è stata utilizzata da %3 + La voce "%1" dal database "%2" è stata usata da %3 @@ -4023,7 +4544,7 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! %n Entry(s) was used by %1 %1 is the name of an application - %n Voce utilizzata da %1%n Voci utilizzate da %1 + %n Voce utilizzata da %1%n Voci utilizzate da %1%n Voci utilizzate da %1 @@ -4034,14 +4555,14 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! Non-existing/inaccessible executable path. Please double-check the client is legit. - Percorso eseguibile non esistente/inaccessibile. Si prega di ricontrollare che il client sia legittimo. + Percorso eseguibile non esistente/inaccessibile. Ricontrolla che il client sia legittimo. FdoSecrets::SettingsDatabaseModel Unlock to show - Sblocca per mostrare + Sblocca per visualizzare None @@ -4078,14 +4599,14 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! HibpDownloader Online password validation failed - Validazione online della password fallita + Validazione online della password non riuscita IconDownloaderDialog Download Favicons - Scarica i Favicon + Scarica favicon Cancel @@ -4095,7 +4616,7 @@ Ciò lascerà vulnerabili le tue password e le tue informazioni sensibili! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. Hai problemi a scaricare le icone? -È possibile attivare il servizio per le icone del sito Web DuckDuckGo nella sezione relativa alla sicurezza delle impostazioni dell'applicazione. +È possibile attivare il servizio per le icone del sito web DuckDuckGo nella sezione relativa alla sicurezza delle impostazioni dell'applicazione. Close @@ -4131,7 +4652,200 @@ You can enable the DuckDuckGo website icon service in the security section of th Downloading favicons (%1/%2)… - Scaricamento delle favicons (%1/%2)... + Scaricamento delle favicon (%1/%2)... + + + + ImportWizard + + Import Wizard + Importazione guidata + + + + ImportWizardPageReview + + WizardPage + Pagina della procedura guidata + + + Entry count: %1 + Numero voci: %1 + + + Group + Gruppo + + + Title + Titolo + + + Username + Nome utente + + + Password + Password + + + Url + Url + + + Could not load key file. + Impossibile caricare il file chiave. + + + Could not open remote database. Password or key file may be incorrect. + Impossibile aprire il database remoto. La password o il file chiave potrebbero essere errati. + + + + ImportWizardPageSelect + + Form + Modulo + + + Import File Selection + Selezione file da importare + + + Password: + Password: + + + Key File: + File chiave: + + + Browse… + Sfoglia… + + + Import Into: + Importa in: + + + New Database + Nuovo database + + + No unlocked databases available + Nessun database sbloccato disponibile + + + Existing Database: + Database esistente: + + + Import File: + Importa file: + + + Comma Separated Values (.csv) + Valori separati da virgola (.csv) + + + 1Password Export (.1pux) + Esporta 1Password (.1pux) + + + 1Password Vault (.opvault) + Vault 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Database KeePass 1 (.kdb) + + + Open OPVault + Apri OPVault + + + Select import file + Seleziona il file da importare + + + All files + Tutti i file + + + Key files + File chiave + + + Select key file + Seleziona file chiave + + + Comma Separated Values + Valori separati da virgola + + + 1Password Export + Esporta 1Password + + + Bitwarden JSON Export + Esporta Bitwarden JSON + + + 1Password Vault + Cassaforte 1Password + + + KeePass1 Database + Database KeePass1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Esportazione Proton Pass JSON + + + Temporary Database + Database temporaneo + + + Command: + Comando: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + es.: "sftp user@hostname" oppure "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Input: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + ad es.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} è utilizzato come segnaposto per memorizzare il database in una posizione temporanea +Il comando deve uscire. In caso di `sftp` come ultimo comando `exit` deve essere inviato + + + + Remote Database (.kdbx) + Database remoto (.kdbx) @@ -4149,7 +4863,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - Intestazioni di database mancanti + Intestazioni database mancanti Unable to calculate database key @@ -4163,7 +4877,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Sono state fornite credenziali non valide, riprovare. -Se ciò si ripresenta, il file di database potrebbe essere danneggiato. +Se ciò si ripresenta, il file database potrebbe essere danneggiato. Header doesn't match hash @@ -4220,7 +4934,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato.Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Sono state fornite credenziali non valide, riprovare. -Se ciò si ripresenta, il file di database potrebbe essere danneggiato. +Se ciò si ripresenta, il file database potrebbe essere danneggiato. (HMAC mismatch) @@ -4244,7 +4958,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Failed to open buffer for KDF parameters in header - Fallimento dell'apertura del buffer per i parametri KDF nell'header + Fallimento dell'apertura del buffer per i parametri KDF nell'intestazione Unsupported key derivation function (KDF) or invalid parameters @@ -4252,7 +4966,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Legacy header fields found in KDBX4 file. - Sono stati trovati dei campi obsloleti nell'header del file KDBX4 + Campi di intestazione obsoleti trovati nel file KDBX4. Invalid inner header id size @@ -4278,7 +4992,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Invalid variant map entry name length Translation: variant map = data structure for storing meta data - Il nome della voce per la mappa di variazione ha una lunghezza non valida + Lunghezza nome voce della mappa variante non valida Invalid variant map entry name data @@ -4288,7 +5002,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Invalid variant map entry value length Translation: variant map = data structure for storing meta data - Il valore della voce per la mappa di variazione ha una lunghezza non valida + Lunghezza valore voce mappa variante non valida Invalid variant map entry value data @@ -4328,7 +5042,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Invalid variant map field type size Translation: variant map = data structure for storing meta data - Dimensione non valida per il tipo di campo della mappa di variazione + Dimensione tipo campo mappa variante non valida @@ -4349,7 +5063,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Failed to serialize KDF parameters variant map Translation comment: variant map = data structure for storing meta data - Fallita serializzazione della mappa di variazione dei parametri per la funzione di derivazione della chiave di cifratura (KDF) + Serializzazione della mappa di variazione dei parametri KDF non riuscita @@ -4400,7 +5114,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Failed to read database file. - Impossibile leggere il file di database. + Impossibile leggere il file database. The selected file is an old KeePass 1 database (.kdb). @@ -4418,7 +5132,7 @@ Questa è una migrazione a senso unico. Non sarà possibile aprire il database i Unsupported KeePass 2 database version. - Versione di database KeePass 2 non supportata. + Versione database KeePass 2 non supportata. @@ -4542,7 +5256,7 @@ Riga %2, colonna %3 Unable to decompress binary Translator meant is a binary data inside an entry - Impossibile decomprimere il binario + Impossibile decomprimere il file binario @@ -4568,22 +5282,11 @@ Riga %2, colonna %3 Impossibile aprire la chiave privata - - KeePass1OpenWidget - - Import KeePass1 Database - Importa database KeePass1 - - - Unable to open the database. - Impossibile aprire il database. - - KeePass1Reader Unable to read keyfile. - Impossibile leggere il file della chiave. + Impossibile leggere il file chiave. Not a KeePass database. @@ -4612,7 +5315,7 @@ Riga %2, colonna %3 Invalid content hash size - DImensione dell'hash non valida per questo contenuto + Dimensione dell'hash non valida per questo contenuto Invalid transform seed size @@ -4642,7 +5345,7 @@ Riga %2, colonna %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Sono state fornite credenziali non valide, riprovare. -Se ciò si ripresenta, il file di database potrebbe essere danneggiato. +Se ciò si ripresenta, il file database potrebbe essere danneggiato. Key transformation failed @@ -4698,7 +5401,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Missing entry field type number - Numero mancante per il tipo della voce corrente + Numero mancante per il tipo della voce attuale Invalid entry field size @@ -4706,7 +5409,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Read entry field data doesn't match size - I dati letti per la voce corrente non coincidono con la dimensione + I dati letti per la voce attuale non coincidono con la dimensione Invalid entry UUID field size @@ -4714,27 +5417,27 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Invalid entry group id field size - Dimensione dell'ID di gruppo della voce corrente non valida + Dimensione dell'ID di gruppo della voce attuale non valida Invalid entry icon field size - Dimensione dell'icona della voce corrente non valida + Dimensione dell'icona della voce attuale non valida Invalid entry creation time field size - Dimensione della data di creazione della voce corrente non valida + Dimensione della data di creazione della voce attuale non valida Invalid entry modification time field size - Dimensione della data di modifica della voce corrente non valida + Dimensione della data di modifica della voce attuale non valida Invalid entry expiry time field size - Dimensione della data di scadenza della voce corrente non valida + Dimensione della data di scadenza della voce attuale non valida Invalid entry field type - Tipo di dato non valido + Tipo di dato non valido @@ -4800,14 +5503,14 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Key Component set, click to change or remove - Set di componenti chiave, fare clic per modificare o rimuovere + Set di componenti chiave, fai clic per modificare/rimuovere KeyFileEditWidget Generate a new key file - Generare un nuovo file chiave + Genera un nuovo file chiave Generate @@ -4815,15 +5518,15 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. Generate a new key file or choose an existing one to protect your database. - Genera un nuovo file chiave o scegline uno esistente per proteggere il tuo database. + Genera un nuovo file chiave o scegline uno esistente per proteggere il database. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Nota: NON utilizzare un file che potrebbe cambiare in quanto ciò ti impedirà di sbloccare il tuo database. + Nota: NON usare un file che potrebbe essere modificato in quanto ciò ti impedirà di sbloccare il database. Browse for key file - Cercare il file chiave + Seleziona file chiave Browse… @@ -4835,7 +5538,7 @@ Se ciò si ripresenta, il file di database potrebbe essere danneggiato. You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - È stato selezionato un file di chiave in un vecchio formato che KeePassXC<br>potrebbe smettere di supportare in futuro.<br><br>Prendere in considerazione la possibilità di generare un nuovo file di chiave. + È stato selezionato un file chiave in un vecchio formato che KeePassXC<br>potrebbe smettere di supportare in futuro.<br><br>Prendi in considerazione la possibilità di generare un nuovo file chiave. Error loading the key file '%1' @@ -4861,11 +5564,11 @@ Messaggio: %2 Key File set, click to change or remove - File chiave impostato, clicca per cambiare o rimuovere + File chiave impostato, fai clic per modificare/rimuovere <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>È possibile aggiungere un file di chiave contenente byte casuali per una maggiore sicurezza.</p><p>Devi tenerlo segreto e non perderlo mai o sarai bloccato.</p> + <p>Per una maggiore sicurezza è possibile aggiungere un file chiave contenente byte casuali.</p><p>Devi tenerlo segreto e non perderlo mai o sarai bloccato.</p> Key files @@ -4897,7 +5600,7 @@ Messaggio: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Non è possibile utilizzare il database corrente come proprio file chiave. Scegliere un file diverso o generare un nuovo file chiave. + Non è possibile usare il database attuale come proprio file chiave. Scegli un file diverso o generare un nuovo file chiave. Suspicious Key File @@ -4935,10 +5638,6 @@ Sei sicuro di voler continuare con questo file? &Recent Databases &Database recenti - - &Import - &Importare - &Export &Esporta @@ -4959,6 +5658,10 @@ Sei sicuro di voler continuare con questo file? TOTP TOTP + + Tags + Etichette + &Groups &Gruppi @@ -5001,59 +5704,39 @@ Sei sicuro di voler continuare con questo file? &New Database… - &Nuovo database… - - - Create a new database - Creare un nuovo database + &Nuovo database... &Merge From Database… &Unire dal database... - - Merge from another KDBX database - Unire da un altro database KDBX - &New Entry… - &Nuova voce… - - - Add a new entry - Aggiungere una nuova voce + &Nuova voce... &Edit Entry… - &Modifica voce… - - - View or edit entry - Visualizzare o modificare voce + &Modifica voce... &Delete Entry… - &Elimina voce… + &Elimina voce... &New Group… - &Nuovo gruppo… - - - Add a new group - Aggiungere un nuovo gruppo + &Nuovo gruppo... &Edit Group… - &Modifica gruppo… + &Modifica gruppo... &Delete Group… - &Elimina gruppo… + &Elimina gruppo... Download All &Favicons… - Scarica tutte le &Favicon… + Scarica tutte le &Favicon... Sort &A-Z @@ -5065,71 +5748,47 @@ Sei sicuro di voler continuare con questo file? Sa&ve Database As… - Sal&va database come… + Sal&va database come... Database &Security… - Database &Sicurezza… + &Sicurezza database... Database &Reports… - Database &Reports... - - - Statistics, health check, etc. - Statistiche, controllo dello stato, ecc. + &Rapporti del database... &Database Settings… - Impostazioni &database… - - - Database settings - Impostazioni database + Impostazioni &database... &Clone Entry… - &Clona voce… + &Clona voce... Move u&p - Sposta in s&ù - - - Move entry one step up - Sposta la voce una posizione in alto + Sposta in s&u Move do&wn Sposta in gi&ù - - Move entry one step down - Sposta la voce una posizione in basso - Copy &Username Copia &nome utente - - Copy username to clipboard - Copia nome utente negli appunti - Copy &Password Copia &password - - Copy password to clipboard - Copia password negli appunti - &Settings &Impostazioni &Password Generator - Generatore di &password + Generatore &password Perform &Auto-Type @@ -5137,11 +5796,11 @@ Sei sicuro di voler continuare con questo file? Download &Favicon - Scarica &Favicon + Scarica &favicon Open &URL - Aprire &URL + Apri &URL &Lock Database @@ -5149,63 +5808,39 @@ Sei sicuro di voler continuare con questo file? Lock &All Databases - Blocca &Tutti i database + Blocca &tutti i database &Title &Titolo - Copy title to clipboard - Copia titolo negli appunti - - - &URL - &URL - - - Copy URL to clipboard - Copia URL negli appunti + Copy &URL + Copia &URL &Notes &Note - - Copy notes to clipboard - Copia note negli appunti - &CSV File… - &File CSV… + &File CSV... &HTML File… - File &HTML… + File &HTML... KeePass 1 Database… - Database KeePass 1… - - - Import a KeePass 1 database - Importare un database KeePass 1 + Database KeePass 1... 1Password Vault… - 1Password Vault… - - - Import a 1Password Vault - Importare un 1Password Vault + 1Password Vault... CSV File… - File CSV… - - - Import a CSV file - Importare un file CSV + File CSV... Show TOTP @@ -5213,23 +5848,27 @@ Sei sicuro di voler continuare con questo file? Show QR Code - Mostra codice QR + Visualizza codice QR Set up TOTP… - Configura TOTP… + Configura TOTP... Copy &TOTP Copia &TOTP + + Copy Password and TOTP + Copia password e TOTP + E&mpty recycle bin Svuota il cesti&no &Donate - &Donare + &Dona Report a &Bug @@ -5247,10 +5886,6 @@ Sei sicuro di voler continuare con questo file? &Online Help &Guida in linea - - Go to online documentation - Vai alla documentazione online - &User Guide &Guida per l'utente @@ -5261,11 +5896,11 @@ Sei sicuro di voler continuare con questo file? &Keyboard Shortcuts - &Tasti di scelta rapida + &Tasti scelta rapida Save Database Backup… - Salva backup del database in... + Salva backup database in... Add key to SSH Agent @@ -5295,17 +5930,21 @@ Sei sicuro di voler continuare con questo file? Classic (Platform-native) Classico (nativo della piattaforma) + + Show Menubar + Mostra barra dei menù + Show Toolbar - Mostra barra degli strumenti + Visualizza barra strumenti Show Preview Panel - Mostra pannello anteprima + Visualizza pannello anteprima Always on Top - Sempre sopra + Sempre in primo piano Hide Usernames @@ -5319,41 +5958,43 @@ Sei sicuro di voler continuare con questo file? Clone Group... Clona gruppo... + + &XML File… + File &XML... + Clear history Azzera cronologia Access error for config file %1 - Errore di accesso per il file di configurazione %1 + Errore di accesso al file di configurazione %1 Don't show again for this version - Non mostrare più per questa versione + Non visualizzare più per questa versione 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. - ATTENZIONE: si sta utilizzando una build instabile di KeePassXC. + ATTENZIONE: stau usando una build instabile di KeePassXC. C'è un alto rischio di corruzione, mantenere un backup dei database. Questa versione non è destinata all'uso in produzione. NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - NOTA: si utilizza una versione non definitiva di KeePassXC. + NOTA: stai usando una versione non definitiva di KeePassXC. Aspettatevi alcuni bug e problemi minori, questa versione è pensata per scopi di test. - 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. - ATTENZIONE: la versione di Qt potrebbe causare l'arresto anomalo di KeePassXC con una tastiera su schermo. -Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina download. + No Tags + Nessuna etichetta Restore Entry(s) - Ripristina voce(i)Ripristina voce(i) + Ripristina voceRipristina vociRipristina voci Settings @@ -5361,7 +6002,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Check for updates on startup? - Controllare gli aggiornamenti all'avvio? + Vuoi controllare gli aggiornamenti all'avvio? Would you like KeePassXC to check for updates on startup? @@ -5379,17 +6020,329 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Quit KeePassXC Esci da KeePassXC + + %1 Entry(s) + %1 voce%1 voci%1 voci + Please present or touch your YubiKey to continue… - Si prega di presentare o toccare il vostro YubiKey per continuare... + Per continuare presenta o tocca la YubiKey... Restart Application? - Riavviare l'applicazione? + Vuoi riavviare l'applicazione? You must restart the application to apply this setting. Would you like to restart now? - È necessario riavviare l'applicazione per applicare questa impostazione. Vuoi riavviare ora? + Per applicare questa impostazione è necessario riavviare l'applicazione. Vuoi riavviarla ora? + + + Allow Screen Capture + Consenti cattura schermo + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importa un file 1Password 1PUX + + + Import… + Importazione... + + + Passkeys… + Passkey... + + + Import Passkey + Importa Passkey + + + Remote S&ync… + S&incronizzazione Remota... + + + Quit Application + Esci dall'applicazione + + + Open About Dialog + Apri finestra Informazioni + + + Open Database + Apri database + + + Create Database + Crea database + + + Merge From Database + Unisci da database + + + Create Entry + Crea voce + + + Edit Entry + Modifica voce + + + Delete Entry + Elimina voce + + + Create Group + Crea Gruppo + + + Edit Group + Modifica gruppo + + + Delete Group + Elimina Gruppo + + + Download All Favicons + Scarica tutte le Favicon + + + Sort Groups A-Z + Ordina gruppi A-Z + + + Sort Groups Z-A + Ordina gruppi Z-A + + + Save Database As + Salva database con nome + + + Show Database Security + Mostra protezione database + + + Show Database Reports + Mostra report database + + + Show Database Settings + Mostra impostazioni database + + + Show Passkeys + Mostra passkey + + + Clone Entry + Clona voce + + + Move Entry Up + Sposta voce su + + + Move Entry Down + Sposta voce giù + + + Copy Username + Copia nome utente + + + Copy Password + Copia password + + + Show Application Settings + Mostra impostazioni applicazione + + + Show Password Generator + Mostra generatore di password + + + Remove Passkey From Entry + Rimuovi Passkey Dalla Voce + + + Perform Auto-Type: {USERNAME} + Esegui digitazione automatica: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Esegui digitazione automatica: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Esegui digitazione automatica: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Esegui digitazione automatica: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Esegui digitazione automatica: {TOTP} + + + Copy Title + Copia Titolo + + + Copy URL + Copia URL + + + Copy Notes + Copia Note + + + Export to CSV + Esporta CSV + + + Export to HTML + Esporta HTML + + + Import KeePass1 Database + Importa database KeePass1 + + + Import 1Password Vault + Importa 1Password Vault + + + Import CSV File + Importa file CSV + + + Show TOTP QR Code + Mostra codice QR TOTP... + + + Set up TOTP + Configura TOTP + + + Empty Recycle Bin + Svuota cestino + + + Open Donation Website + Apri sito per la Donazione + + + Open Bug Report + Apri segnalazione bug + + + Open Online Documentation + Apri documentazione online + + + Open Keyboard Shortcuts Guide + Apri Guida Scorciatoie Tastiera + + + Save Database Backup + Salva backup database + + + SSH Agent: Add Key + SSH Agent: Aggiungi Chiave + + + SSH Agent: Remove Key + Agent SSH: Rimuovi Chiave + + + Toggle Compact Mode + Modalità compatta + + + Set Theme: Automatic + Imposta tema: Automatico + + + Set Theme: Light + Imposta tema: Chiaro + + + Set Theme: Dark + Imposta tema: Scuro + + + Set Theme: Classic + Imposta tema: Classico + + + Toggle Show Menubar + Abilita Mostra la barra dei menù + + + Toggle Show Toolbar + Visualizza barra strumenti + + + Toggle Show Preview Panel + Visualizza pannello anteprima + + + Toggle Always on Top + Sempre in primo piano + + + Toggle Hide Usernames + Nascondi nome utente + + + Toggle Hide Passwords + Nascondi password + + + Export to XML + Esporta in XML + + + Toggle Allow Screen Capture + Consenti cattura schermo + + + Show Group Panel + Mostra pannello del gruppo + + + Toggle Show Group Panel + Attiva/disattiva 'Visualizza pannello del gruppo' + + + Setup Remote Sync… + Imposta Sincronizzazione Remota... + + + Password Generator + Genera password + + + E&xpire Entry… + Sca&denza voce… + + + Clear SSH Agent + Cancella SSH Agent + + + Clear all identities in ssh-agent + Cancella tutte le identità in ssh-agent @@ -5400,7 +6353,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Edit database settings - Modificare le impostazioni del database + Modifica impostazioni database Unlock database @@ -5408,7 +6361,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Unlock database to show more information - Sblocca il database per mostrare ulteriori informazioni + Per visualizzare ulteriori informazioni sblocca il database Lock database @@ -5431,7 +6384,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Reset any remembered decisions for this application - Reimpostare tutte le decisioni ricordate per questa applicazione + Reimposta tutte le decisioni salvate per questa applicazione @@ -5442,43 +6395,23 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Relocating %1 [%2] - Rilocazione di %1 [%2] + Trasferimento di %1 [%2] Overwriting %1 [%2] Sovrascrittura %1 [%2] - - older entry merged from database "%1" - voce precedente unita dal database "%1" - - - Adding backup for older target %1 [%2] - Aggiunto backup per la destinazione precedente %1 [%2] - - - Adding backup for older source %1 [%2] - Aggiunto backup per l'origine precedente %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Riapplicare la voce di destinazione precedente all'origine più recente %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Riapplicare la voce di origine precedente alla destinazione più recente %1 [%2] - Synchronizing from newer source %1 [%2] - Sincronizzazione dall'origine più recente %1 [%2] + Sincronizzazione sorgente più recente %1 [%2] Synchronizing from older source %1 [%2] - Sincronizzazione dall'origine precedente %1 [%2] + Sincronizzazione sorgente precedente %1 [%2] Deleting child %1 [%2] - Eliminazione dell'elemento figlio %1 [%2] + Eliminazione elemento figlio %1 [%2] Deleting orphan %1 [%2] @@ -5490,7 +6423,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Adding missing icon %1 - Aggiungere l'icona mancante %1 + Aggiunta icona mancante %1 Removed custom data %1 [%2] @@ -5498,7 +6431,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Adding custom data %1 [%2] - Aggiunta di dati personalizzati %1 [%2] + Aggiunta dati personalizzati %1 [%2] @@ -5521,19 +6454,11 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Encryption Settings - Impostazioni di crittografia + Impostazioni di cifratura Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Qui è possibile modificare le impostazioni di crittaggio del database. È sempre possibile modificarli dopo nelle impostazioni del database. - - - Advanced Settings - Impostazioni avanzate - - - Simple Settings - Impostazioni semplici + Qui puoi modificare le impostazioni di cifratura del database. Puoi sempre modificarle dopo nelle impostazioni del database. @@ -5551,11 +6476,11 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow NewDatabaseWizardPageEncryption Encryption Settings - Impostazioni di crittografia + Impostazioni di cifratura Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Qui è possibile modificare le impostazioni di crittaggio del database. È sempre possibile modificarli dopo nelle impostazioni del database. + Qui puoi modificare le impostazioni di cifratura del database. Puoi sempre modificarle dopo nelle impostazioni del database. @@ -5566,7 +6491,26 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Please fill in the display name and an optional description for your new database: - Si prega di compilare il nome visualizzato e una descrizione facoltativa per il nuovo database: + Compila il nome visualizzato e una descrizione facoltativa per il nuovo database: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Il nome dell'allegato non può essere vuoto + + + Attachment with the same name already exists + Esiste già un allegato con lo stesso nome + + + Save attachment + Salva allegato + + + New entry attachment + Nuovo allegato di ingresso @@ -5596,7 +6540,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Unable to init cipher for opdata01: %1 - Impossibile inizializzare la crittografia per opdata01: %1 + Impossibile inizializzare la cifratura per opdata01: %1 Unable to read all HMAC signature bytes @@ -5612,35 +6556,26 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Expected %1 bytes of clear-text, found %2 - Previsto %1 byte di testo non crittografato, trovato %2 - - - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Lettura del database non ha prodotto un'istanza -%1 + Previsto %1 byte di testo non cifrato, trovato %2 OpVaultReader Directory .opvault must exist - La directory .opvault deve esistere + La cartella .opvault deve esistere Directory .opvault must be readable - La directory .opvault deve essere leggibile + La cartella .opvault deve essere leggibile Directory .opvault/default must exist - Directory .opvault/default deve esistere + La cartella .opvault/default deve esistere Directory .opvault/default must be readable - Directory .opvault/default deve essere leggibile + La cartella .opvault/default deve essere leggibile Unable to decode masterKey: %1 @@ -5655,11 +6590,11 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow OpenSSHKey Invalid key file, expecting an OpenSSH key - File di chiave non valido, era attesa una chiave OpenSSH + File chiave non valido, era attesa una chiave OpenSSH PEM boundary mismatch - Mancata corrispondenza del marigne PEM + Mancata corrispondenza del margine PEM Base64 decoding failed @@ -5697,6 +6632,10 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Unknown cipher: %1 Tipo di cifrario non supportato: %1 + + AES-256/GCM is currently not supported + AES-256/GCM non è attualmente supportato + Passphrase is required to decrypt this key La decifrazione di questa chiave richiede una frase segreta @@ -5707,7 +6646,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Cipher IV is too short for MD5 kdf - Il vettore di inizializzazione del cifrario è troppo corto per la derivazione della chiave crittografica tramite MD5 + Il vettore di inizializzazione del cifrario è troppo corto per la derivazione della chiave di cifratura tramite MD5 Unknown KDF: %1 @@ -5719,11 +6658,11 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Decryption failed: %1 - Decrittografia non riuscita: %1 + Decifratura non riuscita: %1 Decryption failed, wrong passphrase? - Decifrazione non riuscita, frase segreta non corretta? + Decifratura non riuscita, frase segreta non corretta? Unexpected EOF while reading key @@ -5761,28 +6700,184 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Unexpected EOF when writing private key EOF imprevisto durante la scrittura di una chiave privata + + (encrypted) + (cifrato) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Le password non corrispondono + SSH Key Generator + Generatore chiave SSH - Passwords match so far - Le password corrispondono finora + Type + Tipo - Toggle Password (%1) - Attiva/disattiva password (%1) + Bits + Bit - Generate Password (%1) - Genera password (%1) + Comment + Commento + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - esporta passkey - Warning: Caps Lock enabled! - Attenzione: Caps Lock abilitato! + Filenames will be generated with title and .passkey file extension. + I nomi dei file saranno generati con titolo ed estensione di file passkey. + + + Export entries + Esporta voci + + + Export Selected + Esporta selezionati + + + Cancel + Annulla + + + Export to folder + Esporta su cartella + + + Export the following passkey entries. + Esporta le voci passkey seguenti. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: esporta passkey + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Il file "%1.passkey" esiste già. +Vuoi sovrascriverlo? + + + + Cannot open file + Impossibile aprire file + + + Cannot open file "%1" for writing. + Impossibile aprire il file "%1" in scrittura. + + + Cannot write to file + Impossibile scrivere su file + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - importa passkey + + + Username: %1 + Nome utente: %1 + + + Group + Gruppo + + + Database + Database + + + Import Passkey + Importa Passkey + + + Import + Importa + + + Cancel + Annulla + + + Entry + Voce + + + Create new entry + Crea nuova voce + + + Relying Party: %1 + Relying Party: %1 + + + Import the following passkey: + Importa la seguente passkey: + + + Import the following passkey to this entry: + Importa la passkey seguente in questa voce: + + + Default passkeys group (Imported Passkeys) + Gruppo passkeys predefinito (Passkeys Importate) + + + + PasskeyImporter + + Passkey file + File passkey + + + All files + Tutti i file + + + Cannot open file + Impossibile aprire file + + + Cannot open file "%1" for reading. + Impossibile aprire il file "%1" in lettura. + + + Open passkey file + Apri file passkey + + + Cannot import passkey + Impossibile importare passkey + + + Cannot import passkey file "%1". Data is missing. + Impossibile importare il file passkey "%1". Mancano i dati. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Impossibile importare il file passkey "%1". +I dati seguenti mancano: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Impossibile importare il file passkey "%1". La chiave privata è mancante o malformata. @@ -5821,11 +6916,11 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Password set, click to change or remove - Password impostata, clicca per cambiare o rimuovere + Password impostata, fai clic per modificarla/rimuoverla <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> - <p>Una password è il metodo principale per mantenere sicuro il vostro database.</p><p>Una buona password dev'essere lunga ed unica. KeePassXC può generarne una per voi.</p> + <p>Una password è il metodo principale per mantenere sicuro il database.</p><p>Una buona password dev'essere lunga ed unica. KeePassXC può generarne una per voi.</p> Passwords do not match. @@ -5877,7 +6972,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Switch to advanced mode - Passare alla modalità avanzata + Passa alla modalità avanzata Advanced @@ -5933,7 +7028,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Additional characters to use for the generated password - Caratteri aggiuntivi da utilizzare nella generazione delle password + Caratteri aggiuntivi da usare nella generazione delle password Additional characters @@ -5941,7 +7036,7 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Add non-hex letters to "do not include" list - Aggiungere lettere non esadecimali all'elenco "non includere" + Aggiungi lettere non esadecimali all'elenco "non includere" Hex Passwords @@ -5963,10 +7058,6 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Also choose from: Scegli anche tra: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Escludere i caratteri: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Escludi caratteri simili @@ -5991,25 +7082,17 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Word Count: Conteggio parole: - - Character Count: - Conteggio caratteri: - Word Case: Parole maiuscole/minuscole: Delete selected wordlist - Eliminare l'elenco di parole selezionato + Elimina elenco parole selezionato Add custom wordlist - Aggiungi elenco di parole personalizzato - - - character - Carattere + Aggiungi elenco parole personalizzato Close @@ -6047,52 +7130,6 @@ Ti consigliamo di utilizzare l'AppImage disponibile sulla nostra pagina dow Entropy: %1 bit Entropia: %1 bit - - Confirm Delete Wordlist - Conferma cancellazione elenco di parole - - - Do you really want to delete the wordlist "%1"? - Vuoi davvero eliminare l'elenco di parole "%1"? - - - Failed to delete wordlist - Impossibile eliminare l'elenco di parole - - - Wordlists - Elenchi di parole - - - All files - Tutti i file - - - Select Custom Wordlist - Seleziona elenco di parole personalizzato - - - Overwrite Wordlist? - Sovrascrivere elenco di parole? - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - L'elenco di parole "%1" esiste già come elenco di parole personalizzato. -Vuoi sovrascriverlo? - - - Failed to add wordlist - Impossibile aggiungere l'elenco di parole - - - Logograms - Logogrammi - - - Special Characters - Caratteri speciali - Password Quality: %1 Qualità password: %1 @@ -6117,6 +7154,119 @@ Vuoi sovrascriverlo? Password quality Eccellente + + Confirm Delete Wordlist + Conferma cancellazione elenco parole + + + Do you really want to delete the wordlist "%1"? + Vuoi davvero eliminare l'elenco parole "%1"? + + + Failed to delete wordlist + Impossibile eliminare l'elenco parole + + + Wordlists + Elenchi di parole + + + All files + Tutti i file + + + Select Custom Wordlist + Seleziona elenco parole personalizzato + + + Overwrite Wordlist? + Vuuoi sovrascrivere elenco parole? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + L'elenco parole "%1" esiste già come elenco parole personalizzato. +Vuoi sovrascriverlo? + + + Failed to add wordlist + Impossibile aggiungere l'elenco parole + + + Logograms + Logogrammi + + + Special Characters + Caratteri speciali + + + passwordLength + passwordLength + + + Characters: %1 + Caratteri :%1 + + + MIXED case + lettere maiuscole e minuscole + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Caratteri esclusi: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Le password non corrispondono + + + Passwords match so far + Le password corrispondono finora + + + Toggle Password (%1) + Attiva/disattiva password (%1) + + + Generate Password (%1) + Genera password (%1) + + + Warning: Caps Lock enabled! + Attenzione: Caps Lock abilitato! + + + Quality: %1 + Qualità: %1 + + + Poor + Password quality + Debole + + + Weak + Password quality + Intermedia + + + Good + Password quality + Buona + + + Excellent + Password quality + Eccellente + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Mostra/nascondi password con Control + H. Apri il generarore di password con Control + G. + PickcharsDialog @@ -6126,11 +7276,26 @@ Vuoi sovrascriverlo? Select characters to type, navigate with arrow keys, Ctrl + S submits. - Selezionare i caratteri da digitare, spostarsi con i tasti di direzione, CTRL+S invia. + Seleziona i caratteri da digitare, spostati con i tasti di direzione, CTRL+S per inviare. Press &Tab between characters - Premere &TAB tra i caratteri + Premi &Tab tra i caratteri + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Anteprima dell'allegato della voce + + + No preview available + Nessuna anteprima disponibile + + + Image format not supported + Formato immagine non supportato @@ -6171,6 +7336,10 @@ Vuoi sovrascriverlo? Continue continuare + + Continue with weak password + Continua con la password debole + QObject @@ -6188,7 +7357,7 @@ Vuoi sovrascriverlo? Cannot decrypt message - Impossibile decrittografare il messaggio + Impossibile decifrare il messaggio Action cancelled or denied @@ -6196,15 +7365,15 @@ Vuoi sovrascriverlo? Message encryption failed. - Crittografia del messaggio non riuscita. + Cifratura del messaggio non riuscita. KeePassXC association failed, try again - Associazione KeePassXC fallita, riprova + Associazione KeePassXC non riuscita, riprova Encryption key is not recognized - Chiave di crittografia non riconosciuta + Chiave di cifratura non riconosciuta Incorrect action @@ -6240,7 +7409,7 @@ Vuoi sovrascriverlo? Browser Integration - Integrazione con i browser + Integrazione browser Browser Plugin Failure @@ -6300,7 +7469,7 @@ Vuoi sovrascriverlo? Enter password for new entry: - Immettere la password per la nuova voce: + Insersci la password per la nuova voce: Writing the database failed %1. @@ -6332,7 +7501,7 @@ Vuoi sovrascriverlo? Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - Verificare se le password sono state rivelate pubblicamente. FILENAME deve essere il percorso di un file che elenca gli hashe SHA-1 delle password rivelate in formato HIBP, come disponibile da https://haveibeenpwned.com/Passwords. + Verifica se le password sono state rivelate pubblicamente. FILENAME deve essere il percorso di un file che elenca gli hashe SHA-1 delle password rivelate in formato HIBP, come disponibile da https://haveibeenpwned.com/Passwords. FILENAME @@ -6348,7 +7517,7 @@ Vuoi sovrascriverlo? Analyze passwords for weaknesses and problems. - Analizzare le password per trovare punti deboli e problemi. + Analizza le password per trovare punti deboli e problemi. Cannot find HIBP file: %1 @@ -6368,7 +7537,7 @@ Vuoi sovrascriverlo? Password for '%1' has been leaked %2 time(s)! - La password per '%1' è trapelata %2 volta!La password per '%1' è trapelata %2 volte! + La password per '%1' è trapelata %2 volta!La password per '%1' è trapelata %2 volte!La password per '%1' è trapelata %2 volte! Password for '%1' has been leaked! @@ -6462,7 +7631,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - Copiare il TOTP negli appunti. (analogo a "-a totp"). + Copia il TOTP negli appunti (analogo a "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. @@ -6479,7 +7648,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - Timeout prima di cancellare gli Appunti (l'impostazione predefinita è %1 secondi, impostata su 0 per senza limite). + Timeout prima di cancellare gli appunti (l'impostazione predefinita è %1 secondi, impostata su 0 illimitato). Invalid timeout value %1. @@ -6491,7 +7660,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Using matching entry: %1 - Voce corrispondente utilizzata: %1 + Voce corrispondente usata: %1 Entry %1 not found. @@ -6499,7 +7668,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. ERROR: Please specify one of --attribute or --totp, not both. - ERRORE: Specificare uno solo tra attributo o TOTOP, non entrambi. + ERRORE: Specifica uno solo tra --attribute o --totp, non entrambi. Entry with path %1 has no TOTP set up. @@ -6519,7 +7688,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Clearing the clipboard in %1 second(s)... - Cancellazione degli Appunti in %1 secondi...Cancellazione degli appunti in %1 secondo(i)... + Cancellazione degli Appunti in %1 secondi...Cancellazione degli appunti in %1 secondo(i)...Cancellazione degli appunti in %1 secondo(i)... Clipboard cleared! @@ -6527,7 +7696,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Close the currently opened database. - Chiudere il database attualmente aperto. + Chiudi il database attualmente aperto. Display this help. @@ -6535,7 +7704,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Silence password prompt and other secondary outputs. - Silenziare la richiesta di password e altri output secondari. + Silenzia la richiesta di password e altri output secondari. Key file of the database. @@ -6547,11 +7716,11 @@ Usa '--stdout' o specifica un 'file-esportazione'. Deactivate password key for the database. - Disattivare la chiave della password per il database. + Disattiva la chiave password per il database. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Slot Yubikey e porta seriale opzionale utilizzata per l'accesso al database (es. 1:7370001). + Slot Yubikey e porta seriale opzionale usata per l'accesso al database (es. 1:7370001). slot[:serial] @@ -6565,9 +7734,13 @@ Usa '--stdout' o specifica un 'file-esportazione'.Too many arguments provided. Troppi argomenti forniti. + + Path of the database. + Percorso del database. + Target decryption time in MS for the database. - Il tempo di decrittazione del database in MS. + Il tempo di decifratura del database in MS. time @@ -6575,27 +7748,23 @@ Usa '--stdout' o specifica un 'file-esportazione'. Set the key file for the database. - Imposta un file chiave per il database + Imposta un file chiave per il database. Set a password for the database. - Imposta una password per il database + Imposta una password per il database. Create a new database. Crea un nuovo database. - - Path of the database. - Percorso del database. - Invalid decryption time %1. - Tempo di decrittazione non valido %1. + Tempo di decifratura non valido %1. Target decryption time must be between %1 and %2. - Il tempo di decrittazione deve essere compreso tra %1 e %2. + Il tempo di decifratura deve essere compreso tra %1 e %2. Failed to set database password. @@ -6603,7 +7772,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Loading the key file failed - Caricamento del key-file fallito. + Caricamento del key-file non riuscito. No key is set. Aborting database creation. @@ -6611,11 +7780,11 @@ Usa '--stdout' o specifica un 'file-esportazione'. Benchmarking key derivation function for %1ms delay. - Test delle prestazioni della chiave di derivazione per %1ms di ritardo. + Test delle prestazioni della funzione di derivazione della chiave per %1ms di ritardo. Setting %1 rounds for key derivation function. - Impostare %1 iterazioni per la funzione di derivazione della chiave. + Imposta %1 iterazioni per la funzione di derivazione della chiave. error while setting database key derivation settings. @@ -6633,6 +7802,158 @@ Usa '--stdout' o specifica un 'file-esportazione'.Successfully created new database. Nuovo database creato con successo. + + Unset the password for the database. + Annulla l'impostazione della password per il database. + + + Unset the key file for the database. + Annulla l'impostazione del file chiave per il database. + + + Edit a database. + Modifica un database. + + + Cannot use %1 and %2 at the same time. + Non è possibile usare '%1' e '%2' contemporaneamente. + + + Could not change the database key. + Impossibile modificare la chiave del database. + + + Database was not modified. + Il database non è stato modificato. + + + Writing the database failed: %1 + Scrittura del database non riuscita: %1 + + + Successfully edited the database. + Il database è stato modificato correttamente. + + + Cannot remove password: The database does not have a password. + Impossibile rimuovere la password: il database non dispone di una password. + + + Cannot remove file key: The database does not have a file key. + Impossibile rimuovere il file chiave: il database non dispone di un file chiave. + + + Loading the new key file failed: %1 + Caricamento del nuovo file chiave non riuscito: %1 + + + Found unexpected Key type %1 + Trovato un tipo di chiave %1 inaspettato + + + Cannot remove all the keys from a database. + Impossibile rimuovere tutte le chiavi da un database. + + + Show a database's information. + Visualizza informazioni del database. + + + UUID: + UUID: + + + Name: + Nome: + + + Description: + Descrizione: + + + Cipher: + Cifrario: + + + KDF: + KDF: + + + Recycle bin is enabled. + Il cestino è abilitato . + + + Recycle bin is not enabled. + Il cestino non è abilitato. + + + Location + Posizione + + + Database created + Database creato + + + Last saved + Ultimo salvataggio + + + Unsaved changes + Modifiche non salvate + + + yes + + + + no + No + + + Number of groups + Numero di gruppi + + + Number of entries + Numero di voci + + + Number of expired entries + Numero di voci scadute + + + Unique passwords + Password univoche + + + Non-unique passwords + Password non univoche + + + Maximum password reuse + Massimo riutilizzo della password + + + Number of short passwords + Numero di password brevi + + + Number of weak passwords + Numero di password deboli + + + Entries excluded from reports + Voci escluse dal rapporto + + + Average password length + Lunghezza media password + + + %1 characters + %1 caratteri + Word count for the diceware passphrase. Numero di parole per la passphrase con lancio dei dadi @@ -6656,10 +7977,6 @@ Usa '--stdout' o specifica un 'file-esportazione'.Invalid word count %1 Conteggio parole non valido %1 - - The word list is too small (< 1000 items) - L'elenco delle parole è troppo piccolo (< 1000 voci) - Title for the entry. Titolo di una voce. @@ -6682,11 +7999,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Enter new password for entry: - Immettere la nuova password per la voce: - - - Writing the database failed: %1 - Scrittura del database non riuscita: %1 + Insersci la nuova password per la voce: Successfully edited entry %1. @@ -6808,10 +8121,6 @@ Usa '--stdout' o specifica un 'file-esportazione'.Exit interactive mode. Uscire dalla modalità interattiva. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formati utilizzabile per l'esportazione. E' possibile scegliere tra 'xml' e 'csv'. L'impostazione predefinita è 'xml'. - Exports the content of a database to standard output in the specified format. Esporta il contenuto di un database nell'output standard nel formato specificato. @@ -6834,27 +8143,27 @@ Usa '--stdout' o specifica un 'file-esportazione'. Use lowercase characters - Utilizzare caratteri minuscoli + Usa caratteri minuscoli Use uppercase characters - Utilizzare caratteri maiuscoli + Usa caratteri maiuscoli Use numbers - Utilizzare i numeri + Usa i numeri Use special characters - Utilizzare caratteri speciali + Usa caratteri speciali Use extended ASCII - Usare ASCII esteso + Usa ASCII esteso Exclude character set - Escludere il set di caratteri + Escludi set caratteri chars @@ -6862,15 +8171,15 @@ Usa '--stdout' o specifica un 'file-esportazione'. Use custom character set - Utilizzare un set di caratteri personalizzato + Usa set caratteri personalizzato Exclude similar looking characters - Escludere i caratteri dall'aspetto simile + Escludi caratteri dall'aspetto simile Include characters from every selected group - Includere i caratteri da ogni gruppo selezionato + Includi i caratteri da ogni gruppo selezionato Generate a new random password. @@ -6882,11 +8191,11 @@ Usa '--stdout' o specifica un 'file-esportazione'. Invalid password generator after applying all options - Generatore di password non valido dopo l'applicazione di tutte le opzioni + Generatore password non valido dopo l'applicazione di tutte le opzioni Display command help. - Visualizzare la guida del comando. + Visualizza la guida del comando. Available commands: @@ -6894,7 +8203,7 @@ Usa '--stdout' o specifica un 'file-esportazione'. Import the contents of an XML database. - Importare il contenuto di un database XML. + Importa il contenuto di un database XML. Path of the XML database export. @@ -6912,106 +8221,6 @@ Usa '--stdout' o specifica un 'file-esportazione'.Successfully imported database. Database importato correttamente. - - Show a database's information. - Mostra le informazioni di un database. - - - UUID: - UUID: - - - Name: - Nome: - - - Description: - Descrizione: - - - Cipher: - Cifrario: - - - KDF: - Kdf: - - - Recycle bin is enabled. - Il cestino è abilitato - - - Recycle bin is not enabled. - Il cestino non è abilitato - - - Location - Posizione - - - Database created - Database creato - - - Last saved - Ultimo salvataggio - - - Unsaved changes - Modifiche non salvate - - - yes - - - - no - No - - - Number of groups - Numero di gruppi - - - Number of entries - Numero di voci - - - Number of expired entries - Numero di voci scadute - - - Unique passwords - Password univoche - - - Non-unique passwords - Password non univoche - - - Maximum password reuse - Massimo riutilizzo della password - - - Number of short passwords - Numero di password brevi - - - Number of weak passwords - Numero di password deboli - - - Entries excluded from reports - Voci escluse dal rapporto - - - Average password length - Lunghezza media password - - - %1 characters - %1 caratteri - Unknown command %1 Comando sconosciuto %1 @@ -7032,7 +8241,7 @@ Comandi disponibili: Displays debugging information. - Visualizza le informazioni di debug. + Visualizza le informazioni debug. Invalid command %1. @@ -7040,7 +8249,7 @@ Comandi disponibili: Recursively list the elements of the group. - Elencare gli elementi del gruppo in modo ricorsivo. + Elenca gli elementi del gruppo in modo ricorsivo. Flattens the output to single lines. @@ -7060,7 +8269,7 @@ Comandi disponibili: Use the same credentials for both database files. - Usa le stesse credenziali per entrambi i file di database. + Usa le stesse credenziali per entrambi i file database. Key file of the database to merge from. @@ -7068,11 +8277,11 @@ Comandi disponibili: Deactivate password key for the database to merge from. - Disattivare la chiave della password per il database da cui eseguire l'unione. + Disattiva la chiave della password per il database da cui eseguire l'unione. Only print the changes detected by the merge operation. - Stampare solo le modifiche rilevate dall'operazione di unione. + Stampa solo le modifiche rilevate dall'operazione di unione. Yubikey slot for the second database. @@ -7118,7 +8327,7 @@ Comandi disponibili: Path of the destination group. - Percorso del gruppo di destinazione. + Percorso del gruppo destinazione. Could not find group with path %1. @@ -7134,7 +8343,7 @@ Comandi disponibili: Open a database. - Aprire un database. + Apri un database. Path of the entry to remove. @@ -7178,11 +8387,15 @@ Comandi disponibili: Show the entry's current TOTP. - Mostra il TOTP corrente della voce. + Visualizza il TOTP attualee della voce. Show the protected attributes in clear text. - Mostra in chiaro gli attributi protetti + Visualizza in chiaro gli attributi protetti. + + + Show all the attributes of the entry. + Visualizza tutti gli attributi della voce. Show the attachments of the entry. @@ -7190,7 +8403,7 @@ Comandi disponibili: 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. - Numero di attributi da mostrare. Questa opzione può essere specificata più di una volta, con ogni attributo mostrato in una riga separata nell'ordine dato. Se nessun attributo è specificato verrà dato un riassunto degli attributi predefiniti. + Numero di attributi da visualizzare. Questa opzione può essere specificata più di una volta, con ogni attributo visualizzato in una riga separata nell'ordine dato. Se nessun attributo è specificato verrà dato un riassunto degli attributi predefiniti. attribute @@ -7198,7 +8411,7 @@ Comandi disponibili: Show an entry's information. - Mostra la informazioni di una voce. + Visualizza la informazioni di una voce. Name of the entry to show. @@ -7218,33 +8431,32 @@ Comandi disponibili: Failed to open database file %1: not found - Impossibile aprire il file di database %1: non trovato + Impossibile aprire il file database %1: non trovato Failed to open database file %1: not a plain file - Impossibile aprire il file di database %1: non un file piatto + Impossibile aprire il file database %1: non un file piatto Failed to open database file %1: not readable - Impossibile aprire il file di database %1: non leggibile + Impossibile aprire il file database %1: non leggibile Enter password to unlock %1: - Immettere la password per sbloccare %1: + Inserisci la password per sbloccare %1: Failed to load key file %1: %2 - Impossibile caricare il file di chiave %1: %2 + Impossibile caricare il file chiave %1: %2 WARNING: You are using an old key file format which KeePassXC may stop supporting in the future. Please consider generating a new key file. - ATTENZIONE: stai utilizzando un vecchio formato di file chiave che KeePassXC potrebbe -smettere di supportare in futuro. + ATTENZIONE: stai usando un vecchio formato di file chiave che KeePassXC potrebbe smettere di supportare in futuro. -Prendere in considerazione la possibilità di generare un nuovo file di chiave. +Prendi in considerazione la possibilità di generare un nuovo file chiave. Invalid YubiKey slot %1 @@ -7254,21 +8466,25 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< Invalid YubiKey serial %1 Seriale YubiKey %1 non valido + + Please present or touch your YubiKey to continue. + Per continuare presenta o tocca la YubiKey . + Enter password to encrypt database (optional): - Immettere la password per crittografare il database (facoltativo): + Inserisci la password per cifrare il database (facoltativo): Do you want to create a database with an empty password? [y/N]: - Si vuole davvero creare un database senza una password? [y/N]: + Vuoi davvero creare un database senza una password? [y/N]: Repeat password: - Ripeti password: + Ripeti password: Error: Passwords do not match. - Errore: le password non corrispondono + Errore: le password non corrispondono. No program defined for clipboard manipulation @@ -7294,7 +8510,7 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< To use okon, you must provide a post-processed file (e.g. file.okon) - Per utilizzare okon, è necessario fornire un file post-elaborato (ad esempio file.okon) + Per usare okon, è necessario fornire un file post-elaborato (ad esempio file.okon) Could not start okon process: %1 @@ -7322,11 +8538,11 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< Used in %1/%2 - Utilizzato in %1/%2 + Usato in %1/%2 Password is used %1 time(s) - La password è stata utilizzata %1 voltaLa password è stata utilizzata %1 volte + La password è stata utilizzata %1 voltaLa password è stata utilizzata %1 volteLa password è stata utilizzata %1 volte Password has expired @@ -7334,11 +8550,11 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< Password expiry was %1 - La password è scaduta il %1 + La password è scaduta il %1 Password expires on %1 - La password scade il %1 + La password scade il %1 Password is about to expire @@ -7346,7 +8562,7 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< Password expires in %1 day(s) - La password scade tra %1 giornoLa password scade tra %1 giorni + La password scade tra %1 giornoLa password scade tra %1 giorniLa password scade tra %1 giorni Password will expire soon @@ -7370,11 +8586,11 @@ Prendere in considerazione la possibilità di generare un nuovo file di chiave.< Debugging mode is disabled. - La modalità di debug è disabilitata. + La modalità debug è disabilitata. Debugging mode is enabled. - La modalità di debug è abilitata. + La modalità debug è abilitata. Operating system: %1 @@ -7418,35 +8634,35 @@ Kernel: %3 %4 over %1 year(s) - oltre %1 anno(i)oltre %1 anno(i) + oltre %1 annooltre %1 annioltre %1 anni about %1 month(s) - circa %1 mese(i)circa %1 mese(i) + circa %1 mese(i)circa %1 mese(i)circa %1 mese(i) %1 week(s) - %1 settimana(e)%1 settimana(e) + %1 settimana(e)%1 settimana(e)%1 settimana(e) %1 day(s) - %1 giorno(i)%1 giorno(i) + %1 giorno(i)%1 giorno(i)%1 giorno(i) %1 hour(s) - %1 ora(e)%1 ora(e) + %1 ora(e)%1 ora(e)%1 ora(e) %1 minute(s) - %1 minuto(i)%1 minuto(i) + %1 minuto(i)%1 minuto(i)%1 minuto(i) - Botan library must be at least 2.11.x, found %1.%2.%3 - La libreria Botan deve essere almeno 2.11.x, trovata %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + La libreria Botan deve essere almeno %1, trovata %2.%3.%4 Cryptographic libraries: - Librerie crittografiche: + Librerie crittografia: AES (%1 rounds) @@ -7492,18 +8708,6 @@ Kernel: %3 %4 file empty file vuoto - - malformed string - stringa non valida - - - missing closing quote - virgoletta di chiusura mancante - - - %1: (row, col) %2,%3 - %1: (riga, col) %2,%3 - AES 256-bit AES 256-bit @@ -7538,11 +8742,11 @@ Kernel: %3 %4 The lock file could not be created. Single-instance mode disabled. - Il file di blocco non può essere creato. La modalità a istanza singola è disattivata. + Impossibile creare il file di blocco. La modalità a istanza singola è disattivata. Clearing the clipboard in %1 second(s)… - Cancellazione degli appunti in %1 secondo…Cancellazione degli appunti in %1 secondi… + Cancellazione degli appunti in %1 secondo…Cancellazione degli appunti in %1 secondi…Cancellazione degli appunti in %1 secondi… Group @@ -7578,17 +8782,17 @@ Kernel: %3 %4 Benchmark %1 delay - Test delle prestazioni %1 ritardo + Test prestazioni per %1 di ritardo %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? @@ -7596,11 +8800,11 @@ Kernel: %3 %4 Do you really want to delete %n entry(s) for good? - Vuoi davvero eliminare %n voce per sempre?Vuoi davvero eliminare %n voci per sempre? + Vuoi davvero eliminare %n voce per sempre?Vuoi davvero eliminare %n voci per sempre?Vuoi davvero eliminare %n voci per sempre? Delete entry(s)? - Eliminare voce?Eliminare voci? + Eliminare voce?Eliminare voci?Eliminare voci? Do you really want to move entry "%1" to the recycle bin? @@ -7608,11 +8812,11 @@ Kernel: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - Vuoi davvero spostare %n voce nel cestino?Vuoi davvero spostare %n voci nel cestino? + Vuoi davvero spostare %n voce nel cestino?Vuoi davvero spostare %n voci nel cestino?Vuoi davvero spostare %n voci nel cestino? Move entry(s) to recycle bin? - Spostare voce nel cestino?Spostare voci nel cestino? + Spostare voce nel cestino?Spostare voci nel cestino?Spostare voci nel cestino? Replace references to entry? @@ -7620,7 +8824,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - La voce "%1" ha %2 riferimento. Sovrascrivere i riferimenti con i valori, ignorare questa voce o eliminare comunque?La voce "%1" ha %2 riferimenti. Sovrascrivere i riferimenti con i valori, ignorare questa voce o eliminare comunque? + La voce "%1" ha %2 riferimento. Sovrascrivere i riferimenti con i valori, ignorare questa voce o eliminare comunque?La voce "%1" ha %2 riferimenti. Sovrascrivere i riferimenti con i valori, ignorare questa voce o eliminare comunque?La voce "%1" ha %2 riferimenti. Sovrascrivere i riferimenti con i valori, ignorare questa voce o eliminare comunque? User name @@ -7644,7 +8848,7 @@ Kernel: %3 %4 Unsupported key file version: %1 - Versione del file chiave non supportata: %1 + Versione file chiave non supportata: %1 Checksum mismatch! Key file may be corrupt. @@ -7660,7 +8864,7 @@ Kernel: %3 %4 filenames of the password databases to open (*.kdbx) - i nomi dei file di database delle password da aprire (*.kdbx) + i nomi dei file database delle password da aprire (*.kdbx) path to a custom config file @@ -7682,14 +8886,6 @@ Kernel: %3 %4 read password of the database from stdin leggi la password del database da stdin - - allow app screen recordering and screenshots - consenti la registrazione dello schermo dell'app e screenshot - - - Locked databases. - Database bloccati. - Database failed to lock. Impossibile bloccare il database. @@ -7698,6 +8894,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. È già in esecuzione un'altra istanza di KeePassXC. + + KeePassXC is not running. No open database to lock + KeePassXC non è in esecuzione. Nessun database aperto da bloccare + Fatal error while testing the cryptographic functions. Errore fatale durante il test delle funzioni di crittografia. @@ -7706,10 +8906,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Errore - - Warning: Failed to prevent screenshots on a top level window! - Avviso: impossibile impedire screenshot in una finestra di primo livello! - Database password: Password del database: @@ -7730,11 +8926,315 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. - Impossibile firmare la prova utilizzando Windows Hello. + Impossibile firmare la prova usando Windows Hello. - Please present or touch your YubiKey to continue. - Per favore presenta o tocca la tua YubiKey per continuare. + Warning: Failed to block screenshot capture on a top-level window. + Attenzione: fallito il blocco dell'acquisizione di screenshot in una finestra di primo livello. + + + Invalid Cipher + Cifratura non valida + + + Invalid KDF + KDF non valido + + + Access to all entries is denied + L'accesso a tutte le voci è negato + + + allow screenshots and app recording (Windows/macOS) + consentire screenshot e registrazione con app (Windows / macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Imposta il file chiave per il database. +Questa opzione è deprecata, utilizza invece --set-key-file. + + + Databases have been locked. + I databases sono stati bloccati. + + + Attestation not supported + Attestazione non supportata + + + Credential is excluded + La credenziale è esclusa + + + Passkeys request canceled + Richiesta di passkey annullata + + + Invalid user verification + Verifica utente non valida + + + Empty public key + Chiave pubblica vuota + + + Invalid URL provided + Fornita URL non valido + + + Passkeys + Passkey + + + AES initialization failed + Inizializzazione AES non riuscita + + + AES encrypt failed + Cifratura AES non riuscita + + + Failed to store in Linux Keyring + Salvataggio su Portachiavi Linux fallito + + + Polkit returned an error: %1 + Polkit ha restituito un errore: %1 + + + Could not locate key in keyring + Impossibile trovare chiave nel portachiavi + + + Could not read key in keyring + Impossibile leggere chiave nel portachiavi + + + AES decrypt failed + Decifratura AES non riuscita + + + No Polkit authentication agent was available + Non era disponibile nessun agente di autenticazione Polkit + + + Polkit authorization failed + Autenticazione Polkit non riuscita + + + No Quick Unlock provider is available + Non è disponibile nessun fornitore per Sblocco rapido + + + Failed to init KeePassXC crypto. + Impossibile inizializzare la cifratura di KeePassXC. + + + Failed to encrypt key data. + Impossibile cifrare i dati chiave. + + + Failed to get Windows Hello credential. + Impossibile ottenere credenziale Windows Hello. + + + Failed to decrypt key data. + Impossibile decifrare dati chiave. + + + Origin is empty or not allowed + Origine vuota o non consentita + + + Effective domain is not a valid domain + Il dominio effettivo non è un dominio valido + + + Origin and RP ID do not match + Origin e RP ID non corrispondono + + + No supported algorithms were provided + Nessun algoritmo supportato è stato fornito + + + Wait for timer to expire + Attendi la scadenza del timer + + + Challenge is shorter than required minimum length + La sfida è inferiore alla lunghezza minima richiesta + + + user.id does not match the required length + user.id non corrisponde alla lunghezza richiesta + + + Favorite + Tag for favorite entries + Preferito + + + File does not exist. + Il file non esiste. + + + Cannot open file: %1 + Impossibile aprire il file: %1 + + + Cannot parse file: %1 at position %2 + Impossibile processare il file: %1 alla posizione %2 + + + Failed to decrypt json file: %1 + Impossibile decriptare il file json: %1 + + + Invalid encKeyValidation field + Campo encKeyValidation non valido + + + Invalid cipher list within encKeyValidation field + Elenco di cifrari non valido nel campo encKeyValidation + + + Wrong password + Password errata + + + Invalid encrypted data field + Campo dati cifrati non valido + + + Invalid cipher list within encrypted data field + Elenco di cifrari non valido nel campo dati cifrato + + + Cannot initialize cipher + Impossibile inizializzare il cifrario + + + Cannot decrypt data + Impossibile decriptare il messaggio + + + Bitwarden Import + Importa Bitwarden + + + Archived + Tag for archived entries + Archiviati + + + Invalid 1PUX file format: Not a valid ZIP file. + Formato file 1PUX non valido. Non è un file ZIP valido. + + + Invalid 1PUX file format: Missing export.data + Formato file 1PUX non valido. Manca export.data + + + 1Password Import + Importa 1Password + + + Enter Shortcut + Inserisci scorciatoia + + + Action + Azione + + + Shortcuts + Scorciatoie + + + Unknown passkeys error + Errore sconosciuto per le passkeys + + + Invalid KDF iterations, cannot decrypt json file + Numero di iterazioni KDF non valido, impossibile decriptare il file json + + + Unsupported format, ensure your Bitwarden export is password-protected + Formato non supportato, assicurati che l'esportazione Bitwarden sia protetta da password + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Solo PBKDF e Argon2 sono supportati, non è possibile decriptare il file json + + + Reset Shortcuts + Ripristina scorciatoie + + + Double click an action to change its shortcut + Doppioclicca un'azione per cambiare la sua scorciatoia + + + Filter... + Filtra... + + + Shortcut Conflict + Conflitto scorciatoie + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + La scorciatoia %1 è in conflitto con '%2'. Sovrascrivere la scorciatoia? + + + Cannot generate valid passphrases because the wordlist is too short + Impossibile generare passphrase valide perché l'elenco delle parole è troppo corto + + + Encrypted files are not supported. + I file crittografati non sono supportati. + + + Proton Pass Import + Importa Proton Pass + + + Delete plugin data? + Vuoi eliminare i dati del plugin? + + + Delete plugin data from Entry(s)? + Eliminare i dati del plugin dalla voce?Eliminare i dati del plugin dalle voci?Eliminare i dati del plugin dalla/e voce/i? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Formato da utilizzare per l'esportazione. Scelte disponibili sono 'xml', 'csv' o 'html'. Predefinito è 'xml'. + + + start minimized to the system tray + avvia minimizzato nell'area di notifica di sistema + + + malformed string, possible unescaped delimiter + stringa non valida, possibile delimitatore senza escape + + + missing closing delimiter + delimitatore di chiusura mancante + + + %1, row: %2, column: %3 + %1, riga: %2, colonna: %3 + + + Tags + Etichette @@ -7771,23 +9271,42 @@ Kernel: %3 %4 Errore interno di zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Il comando `%1` non ha terminato nei tempi previsti. Il processo è stato ucciso. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Upload del database combinato fallito. Il comando `%1` non ha terminato nei tempi previsti. Il processo è stato ucciso. + + + Invalid download parameters provided. + Parametri di download forniti non validi. + + + Command `%1` failed to download database. + Il comando `%1` ha fallito il download del database. + + + Invalid database pointer or upload parameters provided. + Fornito puntatore al database/parametri di upload non corretto. + + + Command `%1` exited with status code: %2 + Il comando `%1` è terminato con status code: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Upload del database combinato fallito. Il comando `%1` è terminato con status code: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Escludere le voci scadute dal report - - - Show only entries which have URL set - Mostra solo le voci con URL impostato - - - Show only entries which have browser settings in custom data - Mostra solo le voci con impostazioni del browser nei dati personalizzati - Double-click entries to edit. - Fare doppio clic sulle voci da modificare. + Doppio clic sulle voci da modificare. List of entry URLs @@ -7811,15 +9330,15 @@ Kernel: %3 %4 (Excluded) - (Esclusa) + (Esclusa) This entry is being excluded from reports - Questa voce è stata esclusa dai rapporti + Questa voce è stata esclusa dai rapporti Please wait, browser statistics is being calculated… - Si prega di attendere, le statistiche del browser sono in fase di calcolo ... + Attendi le statistiche del browser sono in fase di calcolo... No entries with a URL, or none has browser extension settings saved. @@ -7843,65 +9362,74 @@ Kernel: %3 %4 Delete Entry(s)… - Elimina voce…Elimina voci… + Elimina voce…Elimina voci…Elimina voci… Exclude from reports - Escludere dal rapporto + Escludi dal rapporto + + + Expire Entry(s)… + Scadenza voce…Scadenza voci…Scadenza voce(i)… + + + Only show entries that have a URL + Mostra solo voci che hanno un URL + + + Only show entries that have been explicitly allowed or denied + Mostra solo voci che sono state esplicitamente consentite o negate + + + Show expired entries + Mostra voci scadute + + + (Expired) + (scaduta) + + + Delete plugin data from Entry(s)… + Eliminare i dati del plugin dalla voce...Eliminare i dati del plugin dalle voci...Eliminare i dati del plugin dalla(e) voce(i)... ReportsWidgetHealthcheck - Exclude expired entries from the report - Escludere le voci scadute dal report + Show expired entries + Mostra voci scadute - Also show entries that have been excluded from reports - Mostra anche le voci escluse dai rapporti + (Expired) + (scaduta) Hover over reason to show additional details. Double-click entries to edit. - Spostare il cursore sulla notifica per vedere dettagli aggiuntivi. Doppio-click per modificare la voce. - - - Bad - Password quality - Scadente + Per visualizzzare dettagli aggiuntivi sposta il cursore sulla notifica. Doppio clic per modificare le voci. Bad — password must be changed Scadente: la password deve essere modificata - - Poor - Password quality - Debole - Poor — password should be changed - Inefficace — la password dovrebbe essere cambiata - - - Weak - Password quality - Intermedia + Inefficace — la password dovrebbe essere modificata Weak — consider changing the password - Debole — considera di cambiare password + Debole — considera di modificare la password (Excluded) - (Esclusa) + (Esclusa) This entry is being excluded from reports - Questa voce è stata esclusa dai rapporti + Questa voce è stata esclusa dai rapporti Please wait, health data is being calculated… - Si prega di attendere, i dati sulla salute sono in fase di calcolo ... + Attendi, i dati sulla salute sono in fase di calcolo ... Congratulations, everything is healthy! @@ -7929,18 +9457,26 @@ Kernel: %3 %4 Delete Entry(s)… - Elimina voce…Elimina voci… + Elimina voce…Elimina voci…Elimina voci… Exclude from reports - Escludere dal rapporto + Escludi dal rapporto + + + Expire Entry(s)… + Scadenza voce…Scadenza voci…Scadenza voce(i)… + + + Show entries that have been excluded from reports + Mostra voci che sono state escluse dai rapporti ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - ATTENZIONE: Questo rapporto richiede l'invio di informazioni al servizio online Have I Been Pwned (https://haveibeenpwned.com). Se si procede le password verranno crittografate e i primi cinque caratteri verranno inviati in modo sicuro al servizio. Il tuo database rimane sicuro e non può essere ricostruito da queste informazioni. Tuttavia il numero di password inviate sarà esposto a questo servizio. + ATTENZIONE: Questo rapporto richiede l'invio di informazioni al servizio online Have I Been Pwned (https://haveibeenpwned.com). Se si procede, alle password del database sarà applicato un hash crittografico e i primi cinque caratteri saranno inviati in modo sicuro al servizio. Il database rimane sicuro e non può essere ricostruito da queste informazioni. Tuttavia il numero di password inviate sarà esposto a questo servizio. Perform Online Analysis @@ -7948,11 +9484,12 @@ Kernel: %3 %4 Also show entries that have been excluded from reports - Mostra anche le voci escluse dai rapporti + Visualizza anche le voci escluse dai rapporti This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - Questa versione di KeePassXC non possiede funzionalità di rete. La funzionalità di rete è richiesta per verificare la tua password con i database di Have I Been Pwned + Questa versione di KeePassXC non possiede funzionalità di rete. +La funzionalità di rete è richiesta per verificare la password con i database di Have I Been Pwned. Congratulations, no exposed passwords! @@ -7968,20 +9505,20 @@ Kernel: %3 %4 Password exposed… - Password esposta… + Password esposta... (Excluded) - (Esclusa) + (Esclusa) This entry is being excluded from reports - Questa voce è stata esclusa dai rapporti + Questa voce è stata esclusa dai rapporti once Password exposure amount - una volta + una volta up to 10 times @@ -8024,18 +9561,89 @@ Kernel: %3 %4 Delete Entry(s)… - Elimina voce…Elimina voci… + Elimina voce…Elimina voci…Elimina voci… Exclude from reports - Escludere dal rapporto + Escludi dal rapporto + + + Expire Entry(s)… + Scadenza voce…Scadenza voci…Scadenza voce(i)… + + + + ReportsWidgetPasskeys + + Export + Esportare + + + Import + Importa + + + List of entry URLs + Elenco degli URL delle voci + + + Title + Titolo + + + Path + Percorso + + + Username + Nome utente + + + URLs + URL + + + Edit Entry… + Modifica voce… + + + Delete Entry(s)… + Elimina voce…Elimina voci…Elimina voce/i… + + + Relying Party + Relying Party + + + Show expired entries + Mostra voci scadute + + + (Expired) + (scaduta) + + + Export Confirmation + Conferma esportazione + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Il file della passkey sarà esposto a furto oppure uso non autorizzato se lasciato insicuro. Sei sicuro di voler continuare? + + + Please wait, list of entries with passkeys is being updated… + Attendi, la lista delle voci con passkey è in aggiornamento... + + + No entries with passkeys. + Nessuna voce con passkeys. ReportsWidgetStatistics Hover over lines with error icons for further information. - Passare il mouse sulle righe con icone di errore per ulteriori informazioni. + Per ulteriori informazioni passa il mouse sulle righe con icone di errore. Name @@ -8111,7 +9719,7 @@ Kernel: %3 %4 More than 10% of passwords are reused. Use unique passwords when possible. - Più del 10% delle password vengono riutilizzate. Utilizzare password univoche quando possibile. + Più del 10% delle password sono riusate. Usa password univoche quando possibile. Maximum password reuse @@ -8119,7 +9727,7 @@ Kernel: %3 %4 Some passwords are used more than three times. Use unique passwords when possible. - Alcune password vengono utilizzate più di tre volte. Utilizzare password univoche quando possibile. + Alcune password vengono utilizzate più di tre volte. Usa password univoche quando possibile. Number of short passwords @@ -8135,15 +9743,15 @@ Kernel: %3 %4 Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - Consiglia di utilizzare password lunghe e randomizzate con una valutazione "buona" o "eccellente". + Ti consigliamo di usare password lunghe e randomizzate con una valutazione "buona" o "eccellente". Entries excluded from reports - Voci escluse dal rapporto + Voci escluse dal rapporto Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. - Escludere voci dal rapporto, ad esempio perché possiedono una password scadente, non è necessariamente un problema ma dovrebbero essere tenute sotto controllo. + Escludi voci dal rapporto, ad esempio perché possiedono una password scadente, non è necessariamente un problema ma dovrebbero essere tenute sotto controllo. Average password length @@ -8186,11 +9794,11 @@ Kernel: %3 %4 Restricted lifetime is not supported by the agent (check options). - Durata limitata non è supportata dall'agente (controllare le opzioni). + Durata limitata non è supportata dall'agente (controlla le opzioni). A confirmation request is not supported by the agent (check options). - Una richiesta di conferma non è supportata dall'agente (controllare le opzioni). + Una richiesta di conferma non è supportata dall'agente (controlla le opzioni). Security keys are not supported by the agent or the security key provider is unavailable. @@ -8202,14 +9810,22 @@ Kernel: %3 %4 No agent running, cannot list identities. - Nessun agente in esecuzione non può elencare le identità. + Nessun agente in esecuzione, impossibile elencare le identità. + + + Failed to remove all SSH identities from agent. + Rimozione delle identità SSH dall'agent non riuscite. + + + All SSH identities removed from agent. + Tutte le identità SSH rimosse dall'agent. SearchHelpWidget Search Help - Cercare nell'aiuto + Cerca nella Guida in linea Search terms are as follows: [modifiers][field:]["]term["] @@ -8225,7 +9841,7 @@ Kernel: %3 %4 exclude term from results - Escludere il termine dai risultati + Escludi termine dai risultati match term exactly @@ -8233,7 +9849,7 @@ Kernel: %3 %4 use regex in term - utilizzare regex nel termine + usa regex nel termine Fields @@ -8268,7 +9884,11 @@ Kernel: %3 %4 Search Help - Cercare nell'aiuto + Cerca nella Guida in linea + + + Save Search + Salva ricerca Search (%1)… @@ -8326,7 +9946,7 @@ Kernel: %3 %4 Enable KeepassXC Freedesktop.org Secret Service integration - Abilitare l'integrazione di KeepassXC con Freedesktop.org Secret Service + Abilita l'integrazione di KeepassXC con Freedesktop.org Secret Service General @@ -8334,7 +9954,7 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - Mostra notifica quando le password vengono recuperate dai client + Visualizza notifica quando le password vengono recuperate dai client <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> @@ -8342,35 +9962,11 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients - Confermare quando le password vengono recuperate dai client - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Questa impostazione fa - non sovrascrive la disabilitazione delle richieste del Cestino</span></p></body></html> - + Conferma quando le password vengono recuperate dai client Confirm when clients request entry deletion - Confermare quando i client richiedono l'eliminazione delle voci - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Ciò migliora la compatibilità con determinate applicazioni - che cercano la password senza prima sbloccare il database.</p><p>Ma abilitare questo può anche - arrestare in modo anomalo il client se il database non può essere sbloccato entro un determinato timeout. (di solito 25s, ma può essere un - valore diverso impostato nelle applicazioni.)</p></body></html> - + Conferma quando i client richiedono l'eliminazione delle voci Prompt to unlock database before searching @@ -8378,7 +9974,7 @@ Kernel: %3 %4 Exposed database groups: - Gruppi di database esposti: + Gruppi database esposti: Authorization @@ -8390,11 +9986,19 @@ Kernel: %3 %4 <b>Warning:</b> - <b>Attenzione:</b> + <b>Attenzione:</b> Save current changes to activate the plugin and enable editing of this section. - Salvare i cambiamenti per attivare il plugin e modificare questa sezione. + Salva i cambiamenti per attivare il plugin e modificare questa sezione. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Questa impostazione non ha la precedenza sulla disabilitazione dei messaggi del cestino</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p> Questo migliora la compatibilità con alcune applicazioni che cercano la password senza prima sbloccare il database.</p><p>Tuttavia, abilitarlo potrebbe anche mandare in crash il client se il database non può essere sbloccato entro un certo timeout. (di solito 25s, ma potrebbe essere un valore diverso impostato nelle applicazioni.)</p></body></html> @@ -8421,7 +10025,7 @@ Kernel: %3 %4 Only show warnings and errors - Mostra solo avvisi ed errori + Visualizza solo avvisi ed errori Own certificate @@ -8441,7 +10045,7 @@ Kernel: %3 %4 Fingerprint: - impronta digitale: + Impronta digitale: Signer name field @@ -8456,7 +10060,7 @@ Kernel: %3 %4 ShareExport Could not write export container. - Impossibile scrivere il contenitore di esportazione. + Impossibile scrivere il contenitore esportazione. @@ -8486,7 +10090,7 @@ Kernel: %3 %4 Conflicting export target path %1 in %2 - Percorso di destinazione esportazione in conflitto %1 in %2 + Percorso destinazione esportazione in conflitto %1 in %2 Export to %1 failed (%2) @@ -8504,8 +10108,12 @@ Kernel: %3 %4 TagModel - All - Tutto + Clear Search + Cancella ricerca + + + All Entries + Tutte le voci Expired @@ -8516,6 +10124,25 @@ Kernel: %3 %4 Password deboli + + TagView + + Remove Search + Rimuovi ricerca + + + Remove Tag + Rimuovi etichetta + + + Confirm Remove Tag + Conferma rimozione etichetta + + + Remove tag "%1" from all entries in this database? + Vuoi rimuovere l'etichetta "%1" da tutte le voci in questo database? + + TotpDialog @@ -8528,7 +10155,7 @@ Kernel: %3 %4 Expires in <b>%n</b> second(s) - Scadenza tra <b>%n</b> secondiScadenza tra <b>%n</b> secondo(i) + Scadenza tra <b>%n</b> secondiScadenza tra <b>%n</b> secondo(i)Scadenza tra <b>%n</b> secondo(i) @@ -8608,7 +10235,7 @@ Kernel: %3 %4 digits - cifre + cifre Invalid TOTP Secret @@ -8652,11 +10279,11 @@ Esempio: JBSWY3DPEHPK3PXP Software Update - Aggiornamento software + Aggiornamento programma An error occurred when trying to retrieve update information, please try again later. - Si è verificato un errore durante il tentativo di recuperare le informazioni di aggiornamento, riprovare in un secondo momento. + Si è verificato un errore durante il tentativo di recuperare le informazioni di aggiornamento, riprova in un secondo momento. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. @@ -8664,34 +10291,14 @@ Esempio: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - Hai l'ultima versione di KeePassXC + Questa versione di KeePassXC è aggiornata WelcomeWidget Start storing your passwords securely in a KeePassXC database - Inizia ad archiviare le tue password in modo sicuro in un database di KeePassXC - - - Create new database - Crea un nuovo database - - - Open existing database - Apri un database esistente - - - Import from KeePass 1 - Importa da KeePass 1 - - - Import from 1Password - Importa da 1Password - - - Import from CSV - Importa da CSV + Inizio archivziazione password in modo sicuro in un database KeePassXC Recent databases @@ -8699,12 +10306,24 @@ Esempio: JBSWY3DPEHPK3PXP Open a recent database - Aprire un database recente + Apri database recente Welcome to KeePassXC %1 Benvenuto in KeePassXC %1 + + Create Database + Crea database + + + Open Database + Apri database + + + Import File + Importa file + WinUtils @@ -8721,50 +10340,19 @@ Esempio: JBSWY3DPEHPK3PXP Impossibile registrare la scorciatoia globale - - WindowsHello - - Failed to init KeePassXC crypto. - Impossibile inizializare la crittografia KeePassXC. - - - Failed to encrypt key data. - Impossibile crittografare i dati chiave. - - - Failed to get Windows Hello credential. - Impossibile ottenere le credenziali di Windows Hello. - - - Failed to decrypt key data. - Impossibile decrittografare i dati chiave. - - YubiKey - - %1 No interface, slot %2 - %1 Nessuna interfaccia, slot %2 - General: Generale: Could not find interface for hardware key with serial number %1. Please connect it to continue. - Impossibile trovare l'interfaccia per la chiave hardware con numero di serie %1. Si prega di collegarlo per continuare. + Impossibile trovare l'interfaccia per la chiave hardware con numero di serie %1. Collegala per continuare. YubiKeyEditWidget - - Refresh hardware tokens - Aggiornare i token hardware - - - Refresh - Aggiorna - Hardware key slot selection Selezione degli slot dei tasti hardware @@ -8795,45 +10383,38 @@ Esempio: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - Risposta di verifica impostata, fare clic per modificare o rimuovere - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Se si possiede una <a href="https://www.yubico.com/">YubiKey</a> o <a href="https://onlykey.io">OnlyKey</a>, è possibile utilizzarla per una protezione aggiuntiva.</p><p>La chiave richiede che uno dei suoi slot sia programmato come <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Risposta di verifica</a>.</p> + Risposta di verifica impostata, fai clic per modificarla/rimuoverla Detecting hardware keys… - Rilevamento delle chiavi hardware in corso… + Rilevamento delle chiavi hardware... No hardware keys detected Nessuna chiave hardware rilevata - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Slot specificato non valido - %2 + Refresh hardware keys + Aggiorna tasti hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Se possiedi una <a href="https://www.yubico.com/">YubiKey</a> o <a href="https://onlykey.io">OnlyKey</a>, puoi usarla per una maggiore sicurezza.</p><p>La chiave richiede che uno dei suoi slot sia programmato con <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Chiave hardware trovata, ma non è configurato nessuno slot YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Risposta di verifica - Slot %3 - The YubiKey PCSC interface has not been initialized. L'interfaccia PCSC YubiKey non è stata inizializzata. - - Hardware key is currently in use. - La chiave hardware è già in uso. - Could not find or access hardware key with serial number %1. Please present it to continue. - Impossibile trovare o accedere alla chiave hardware con numero di serie %1. Si prega di presentarla per continuare. + Impossibile trovare o accedere alla chiave hardware con numero di serie %1. Presentala per continuare. Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8847,6 +10428,21 @@ Esempio: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Impossibile completare una risposta di verifica, il codice di errore PCSC era: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Slot %3, %4 + + + Press + USB Challenge-Response Key interaction request + Premi + + + Passive + USB Challenge-Response Key no interaction required + Passiva + YubiKeyInterfaceUSB @@ -8854,14 +10450,6 @@ Esempio: JBSWY3DPEHPK3PXP Unknown Sconosciuto - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Slot configurato - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Risposta di verifica - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8876,13 +10464,9 @@ Esempio: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. L'interfaccia USB YubiKey non è stata inizializzata. - - Hardware key is currently in use. - La chiave hardware è già in uso. - Could not find hardware key with serial number %1. Please plug it in to continue. - Non è stato possibile trovare una chiave hardware nello slot numero %1. Per favore collegarne una per procedere. + Non è stato possibile trovare una chiave hardware nello slot numero %1. Ccollegane una per procedere. Hardware key timed out waiting for user interaction. @@ -8896,5 +10480,15 @@ Esempio: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Impossibile completare challenge-response, l'errore specifico è: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Slot %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Slot %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_ja.ts b/share/translations/keepassxc_ja.ts index 1e7cbb622..5712c65c1 100644 --- a/share/translations/keepassxc_ja.ts +++ b/share/translations/keepassxc_ja.ts @@ -15,11 +15,11 @@ KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3. - KeePassXC は GNU General Public License (GPL) version 2 または version 3 のいずれかを選択可能な条件のもとで配布されています。 + KeePassXC は GNU 一般公衆利用許諾書 (GPL) バージョン 2 または (希望によっては) バージョン 3 のいずれかを選択可能な条件のもとで配布されています。 Project Maintainers: - プロジェクトメンテナ: + プロジェクトメンテナー: Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. @@ -39,7 +39,7 @@ Include the following information whenever you report a bug: - バグを報告する際に下記の情報を含めてください: + バグを報告するときに以下の情報を "英語で" 含めてください: Copy to clipboard @@ -80,32 +80,32 @@ Details 詳細 + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + あなたの選択は、要求したクライアントと KeePassXC の両方が実行されている間は保存されます。 + Remember 記憶する Allow Selected - 選択したものを許可 - - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - + 選択したものを許可する Deny All && Future - + 今後も含めすべて拒否する Allow All && &Future - + 今後も含めすべて許可する(&F) AccessControlDialog::DenyButton Deny for this program - このプログラムを拒否 + このプログラムを拒否する @@ -122,21 +122,25 @@ Use OpenSSH OpenSSH を使用する + + Use both agents + 両方のエージェントを使用する + SSH_AUTH_SOCK override SSH_AUTH_SOCK のオーバーライド SSH_AUTH_SOCK value - SSH_AUTH_SOCK 値 + SSH_AUTH_SOCK の値 (empty) - (空) + (空白) SSH_SK_PROVIDER value - SSH_SK_PROVIDER 値 + SSH_SK_PROVIDER の値 SSH_SK_PROVIDER override @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH エージェント接続が動作中です! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security セキュリティ + + This setting cannot be enabled when minimize on unlock is enabled. + この設定は、ロック解除時の最小化が有効な場合は使用できません。 + Access error for config file %1 設定ファイル %1 へのアクセスエラー @@ -213,17 +217,49 @@ You must restart the application to set the new language. Would you like to restart now? 新しい言語を設定するには、このアプリケーションを再起動する必要があります。今すぐ再起動しますか? - - Reset Settings? - 設定をリセットしますか? - - - Are you sure you want to reset all general and security settings to default? - 全ての全般設定とセキュリティ設定を初期設定に戻してもよろしいですか? - Select backup storage directory - バックアップディレクトリを選択 + バックアップディレクトリーを選択 + + + Confirm Reset + 初期化の確認 + + + Are you sure you want to reset all settings to default? + 本当に、すべての設定を初期設定に戻しますか? + + + Import KeePassXC Settings + KeePassXCの設定をインポート + + + Failed to import settings from %1, not a valid settings file. + データベースファイル %1 を開くのに失敗しました: 有効な設定ファイルではありません。 + + + Export KeePassXC Settings + KeePassXCの設定をエキスパート + + + Small + + + + Normal + 通常 + + + Medium + + + + Large + + + + Custom + カスタム @@ -256,6 +292,10 @@ Remember previously used databases 以前使用したデータベースを記憶する + + recent files + 件の最近使用したファイル + Load previously open databases on startup 起動時に前回開いたデータベースを読み込む @@ -266,31 +306,12 @@ Check for updates at application startup once per week - 起動時に更新を確認する (週一回) + 起動時に更新を確認する (週 1 回) Include beta releases when checking for updates ベータ版も確認対象にする - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management ファイル管理 @@ -315,22 +336,10 @@ Backup database file before saving 保存する前にデータベースファイルをバックアップする - - Backup destination - バックアップ先 - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - 選択... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) 別の保存方法を使用する (Dropbox、Google Drive、GVFS などで生じる問題が解決する可能性があります) @@ -373,7 +382,7 @@ Website icon download timeout in seconds - ウェブサイトアイコンダウンロードのタイムアウトまでの秒 + ウェブサイトアイコンダウンロードのタイムアウトまでの時間 (秒) sec @@ -408,6 +417,10 @@ Toolbar button style: ツールバーのボタンのスタイル: + + Show passwords in color + パスワードに色を付けて表示する + Use monospaced font for notes メモに等幅フォントを使用する @@ -491,7 +504,72 @@ Remember last typed entry for: - + 最後に入力したエントリーの記憶: + + + On database unlock, show entries that will expire within + データベースをロック解除した後、次の期間に期限を迎えるエントリーを表示する + + + On database unlock, show entries that will expire within + データベースをロック解除した後、次の期間に期限を迎えるエントリーを表示する + + + days + number of days warning for password expiration + + + + Destination format: + 出力形式: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> は保存したデータベースの拡張子を含まないファイル名で置き換えられます。</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> は、時間 (デフォルトでは: dd_MM_yyyy_hh-mm-ss) で置き換えられます。</p><p>詳細はユーザーガイドを確認してください。</p></body></html> + + + Choose folder... + フォルダを選択… + + + Show confirmation before moving entries to recycle bin + エントリーをゴミ箱に移動する前に確認を表示する + + + Copy data on double clicking field in entry view + エントリー表示でフィールドをダブルクリックしてデータをコピーする + + + Show toolbar + ツールバーを表示 + + + Show the menu bar by pressing the Alt key + Alt キーでメニューバーを表示 + + + Show menubar + メニューバーを表示 + + + Import settings… + 設定をインポート… + + + Export settings… + 設定をエキスパート… + + + Open browser on double clicking URL field in entry view + エントリー表示で URL フィールドをダブルクリックしてブラウザーを開く + + + Font size: + フォントサイズ: + + + Font size selection + フォントサイズの選択 @@ -546,10 +624,6 @@ Lock databases after minimizing the window ウィンドウを最小化したらデータベースをロックする - - Require password repeat when it is visible - パスワードが表示されていても再入力を要求する - Hide passwords when editing them 編集時にパスワードを非表示にする @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel エントリーのプレビューパネルのパスワードを非表示にする - - Hide entry notes by default - エントリーのメモを既定で非表示にする - - - Move entries to recycle bin without confirmation - 確認なしでエントリーをゴミ箱に移動する - - - Enable double click to copy the username/password entry columns - ダブルクリックでユーザー名/パスワードエントリーをコピーできるようにする - Privacy プライバシー @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons ウェブサイトアイコンのダウンロードに DuckDuckGo のサービスを使用する + + Hide TOTP in the entry preview panel + エントリーのプレビューパネルで、TOTP を非表示にする + + + Lock databases when switching user + ユーザーを切り替えるときにデータベースをロックする + + + Lock Options + ロックのオプション + + + Hide notes in the entry preview panel + エントリーのプレビューパネルのメモを非表示にする + AutoType @@ -607,7 +685,7 @@ Invalid entry provided - 提供されたエントリーが不正です + 提供されたエントリーが正しくありません Bracket imbalance detected, found extra { or } @@ -626,18 +704,8 @@ 遅延時間の最大値は %1 です: %2 - Invalid conversion type: %1 - 変換形式が不正です: %1 - - - Invalid conversion syntax: %1 - 変換構文が不正です: %1 - - - Invalid regular expression syntax %1 -%2 - 正規表現の構文が不正です: %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + エントリーに PICKCHARS の属性がありません: %1 Invalid placeholder: %1 @@ -656,7 +724,7 @@ (empty) - (空) + (空白) Default sequence @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - 無効なキーシムを送信しようとしています。 - Sequence aborted: Caps Lock is on シーケンスを中止しました: Caps Lock がオンになっています @@ -700,6 +764,10 @@ Unable to get valid keycode for key: キーの正常なキーコードを取得できません: + + Trying to send invalid keyboard symbol. + 無効なキーボード記号を送信しようとしています。 + AutoTypeSelectDialog @@ -718,11 +786,16 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>高度な検索クエリを使用して、開いているデータベースから任意のエントリーを検索できます。以下のショートカットが便利です:<br/> +Ctrl+F - データベース検索切り替え<br/> +Ctrl+1 - ユーザー名を入力<br/> +Ctrl+2 - パスワードを入力<br/> +Ctrl+3 - TOTP を入力<br/> +Ctrl+4 - 仮想キーボードを使用 (Windows のみ)</p> Search all open databases - 開いている全てのデータベースを検索する + 開いているすべてのデータベースを検索する Search… @@ -762,7 +835,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Use Virtual Keyboard - + 仮想キーボードを使用する @@ -793,19 +866,19 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Deny All - 全て拒否 + すべて拒否 Disable for this site このサイトを無効化 + + Undo + 元に戻す + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser エントリーを保存 - Ok OK @@ -820,13 +893,74 @@ Please select the correct database for saving credentials. 複数のデータベースを開いています。 資格情報を保存する適切なデータベースを選択してください。 + + KeePassXC - Select Database + KeePassXC - データベースを選択 + + + + BrowserPasskeysConfirmationDialog + + Cancel + キャンセル + + + Update + 更新 + + + Authenticate + 認証 + + + Register new + 新規登録 + + + Register + 登録 + + + Timeout in <b>%n</b> seconds... + <b>%n</b> 秒でタイムアウト... + + + Relying Party: %1 + サービス提供者 (Relying Party): %1 + + + Username: %1 + ユーザー名: %1 + + + KeePassXC - Passkey credentials + KeePassXC - パスキー認証情報 + + + Add to existing entry + 既存のエントリーに追加 + + + Existing passkey found. +Do you want to register a new passkey for: + 既にパスキーが存在しています。 +新しいパスキーを追加しますか: + + + Select the existing passkey and press Update to replace it. + パスキーを置き換えたい場合、既存のパスキーを選択して更新を押してください。 + + + Authenticate passkey credentials for: + パスキー認証情報で認証: + + + Do you want to register a passkey for: + パスキーを登録しますか: + BrowserService - - KeePassXC: Create a new group - KeePassXC: 新しいグループを作成 - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -835,10 +969,6 @@ Do you want to create this group? このグループを作成しますか? - - KeePassXC: New key association request - KeePassXC: 新しいキーのアソシエーション要求 - You have received an association request for the following database: %1 @@ -855,28 +985,16 @@ chrome-laptop. Save and allow access アクセスを許可して保存 - - KeePassXC: Overwrite existing key? - KeePassXC: 既存のキーを上書きしますか? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? 共有暗号化キー "%1" は既に存在します。 上書きしますか? - - KeePassXC: Update Entry - KeePassXC: エントリーを更新 - Do you want to update the information in %1 - %2? %1 - %2 の情報を更新しますか? - - KeePassXC: Delete entry - KeePassXC: エントリーを削除 - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -886,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - 属性をカスタムデータに変換しています… + %1 (Passkey) + %1 (パスキー) - Abort - 中止 + KeePassXC - Create a new group + KeePassXC - 新しいグループを作成 - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: KeePassHTTP の属性を変換しました + Disable + 無効 - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - %1 個のエントリーから属性を正常に変換しました。 -%2 個のキーをカスタムデータに移行しました。 - - - Successfully moved %n keys to custom data. - %n 個のキーを正常にカスタムデータに移行しました。 + KeePassXC - Overwrite existing key? + KeePassXC - 既存の鍵を上書きしますか? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: KeePassHTTP の属性があるエントリーは見つかりません + KeePassXC - Update Entry + KeePassXC - エントリーを更新 - The active database does not contain an entry with KeePassHTTP attributes. - アクティブなデータベースには KeePassHTTP の属性があるエントリーは含まれていません。 + KeePassXC - Delete entry + KeePassXC - エントリーを削除 - Don't show this warning again - 今後この警告を表示しない + KeePassXC - New key association request + KeePassXC - 新しいキーのアソシエーション要求 - KeePassXC: Legacy browser integration settings detected - KeePassXC: レガシーなブラウザー統合の設定を検出しました + Passkey + パスキー - 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-Browser の設定をデータベース設定に移行する必要があります。 -これはブラウザーとの接続を維持するために必要です。 -既存の設定を移行しますか? + KeePassXC - Passkey credentials + KeePassXC - パスキー認証情報 + + + Register a new passkey to this entry: + パスキーを追加するエントリー: + + + KeePassXC - Update passkey + KeePassXC - パスキーを更新 + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + 既にパスキーがあるエントリーです。 +%1 - %2 のパスキーを上書きしますか? + + + Register + 登録 @@ -950,10 +1076,6 @@ Would you like to migrate your existing settings now? General 全般 - - Browsers installed as snaps are currently not supported. - Snap 形式のブラウザーは現在サポートしていません。 - Enable integration for these browsers: これらのブラウザーの統合を有効にする: @@ -1001,11 +1123,11 @@ Would you like to migrate your existing settings now? Match URL scheme (e.g., https://example.com) - URL スキーム (例えば https://example.com) の一致 + URL スキーム (例えば https://example.com) を一致させる Only returns the best matches for a specific URL instead of all entries for the whole domain. - ドメイン全体に一致する全てのエントリーの代わりに、特定の URL に最も一致するエントリーのみが返されます。 + ドメイン全体に一致するすべてのエントリーの代わりに、特定の URL に最も一致するエントリーのみが返されます。 Return only best-matching credentials @@ -1021,12 +1143,12 @@ Would you like to migrate your existing settings now? All databases connected to the extension will return matching credentials. - 拡張機能に接続された全てのデータベースが一致する資格情報を返します。 + 拡張機能に接続されたすべてのデータベースが一致する資格情報を返します。 Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - 開いている全てのデータベースから一致する資格情報を検索する + 開いているすべてのデータベースから一致する資格情報を検索する Advanced @@ -1073,20 +1195,20 @@ Would you like to migrate your existing settings now? Use a custom proxy location if you installed a proxy manually. - 手動でプロキシをインストールした場合は、カスタムプロキシを使用してください。 + 手動でプロキシーをインストールした場合は、カスタムプロキシーを使用してください。 Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - カスタムプロキシを使用する: + カスタムプロキシーを使用する: Custom proxy location field - カスタムプロキシの場所フィールド + カスタムプロキシーの場所フィールド Browser for custom proxy file - カスタムプロキシファイルブラウザー + カスタムプロキシーファイルのブラウザー Browse… @@ -1125,42 +1247,62 @@ Would you like to migrate your existing settings now? Custom extension ID カスタム拡張機能 ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Snap によってサンドボックス化されているため、<br />ブラウザー統合を有効にするにはスクリプトを実行する必要があります。<br />スクリプトは次の場所から入手できます: %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - ブラウザー統合の動作には KeePassXC-Browser が必要です。<br />KeePassXC-Browser は %1 用、%2 用、%3 用の 3 種類あります。%4 - - - Please see special instructions for browser extension use below - ブラウザー拡張機能を使用するには以下の手順を参照してください - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>エラー:</b> カスタムプロキシの場所が見つかりませんでした。<br/>ブラウザー統合はプロキシアプリケーションなしでは動作しません。 - - - <b>Warning:</b> The following options can be dangerous! - <b>警告:</b> 以下は危険なオプションです。 - Executable Files 実行ファイル All Files - 全てのファイル + すべてのファイル Select custom proxy location - カスタムプロキシを選択 + カスタムプロキシーの場所を選択 Select native messaging host folder location Native messaging のホストフォルダーの場所を選択 + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + タイトル、URL、UUID を含む keepassxc-proxy に接続されているデータベースのすべてのエントリーの表示を許可する + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + 接続されたデータベースのすべてのエントリーに制限付きアクセスを許可する (サイトのアクセス制限を無視) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>警告:</b> これらの設定は必要な場合のみ変更してください。 + + + The custom proxy location does not exist. + カスタムプロキシーの場所が存在しません。 + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>警告:</b> カスタムプロキシーの場所が存在しません。詳細設定タブから変更できます。 + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>警告:</b> インストールされているプロキシーの実行ファイルは予期していた場所に存在しません: %1<br/>カスタムプロキシーの場所を詳細設定で変更するか、アプリを再インストールしてください。 + + + Allows using insecure http://localhost with passkeys for testing purposes. + 安全ではない http://localhost で、テスト向けにパスキーの使用を許可します。 + + + Allow using localhost with passkeys + ローカルホストでのパスキーの使用を許可する + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + ブラウザー統合の動作には KeePassXC-Browser が必要です。<br />%1 用、%2 用、%3 用からダウンロードしてください。 + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Snap または Flatpak からインストールしたブラウザー (Snap 版 Firefox を除く) はサポートされていません。 + CloneDialog @@ -1183,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - CSV フィールドをインポート - - - filename - ファイル名 - size, rows, columns サイズ、行、列 @@ -1299,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 列 %1 - - Imported from CSV file - CSV ファイルからインポート - - - Original data: - 元データ: - - - Error(s) detected in CSV file! - CSV ファイル内でエラーを検出しました! - [%n more message(s) skipped] [%n 個のメッセージをスキップしました] - Error - エラー + Failed to parse CSV file: %1 + CSV ファイルの解析に失敗しました: %1 - CSV import: writer has errors: -%1 - CSV のインポート: ライターにエラーがあります: -%1 + Imported from CSV file: %1 + CSV ファイルからインポートしました: %1 + + + No Title Selected + タイトルが選択されていません + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + タイトル行が選択されておらず、エントリーは区別しにくくなります。 +本当にインポートしますか? + + + Tags + タグ CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1、%2、%3 - - - %n byte(s) - %n バイト - %n row(s) + CSV row count %n 行 %n column(s) + CSV column count %n 列 @@ -1395,6 +1522,14 @@ Backup database located at %2 Recycle Bin ゴミ箱 + + Database file read error. + データベースの読み取りエラーです。 + + + No file path was provided. + ファイルのパスが選択されていません。 + DatabaseOpenDialog @@ -1417,40 +1552,10 @@ Backup database located at %2 Password field パスワードフィールド - - Enter Additional Credentials (if any): - 追加の資格情報を入力してください (ある場合のみ): - - - Key File: - キーファイル: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>パスワードだけでなくシークレットファイルを使用することで、データベースのセキュリティを向上させることができます。シークレットファイルはデータベースのセキュリティ設定で生成できます。</p><p>*.kdbx データベースファイルはシークレットファイル<strong>ではありません</strong>!<br>キーファイルがない場合、このフィールドは空のままにしてください。</p><p>詳細についてはクリックしてください…</p> - - - Key file help - キーファイルのヘルプ - Hardware key slot selection ハードウェアキースロットの選択 - - Hardware Key: - ハードウェアキー: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>スロットを HMAC-SHA1 用に設定した <strong>YubiKey</strong> や <strong>OnlyKey</strong> をハードウェアセキュリティキーとして使用できます。</p> -<p>詳細についてはクリックしてください…</p> - - - Hardware key help - ハードウェアキーのヘルプ - Key file to unlock the database データベースのロックを解除するキーファイル @@ -1463,17 +1568,9 @@ Backup database located at %2 Browse… 参照… - - Refresh hardware tokens - ハードウェアトークンを更新 - - - Refresh - 再読み込み - Unlock Database - + データベースのロックを解除 Cancel @@ -1485,7 +1582,7 @@ Backup database located at %2 Please present or touch your YubiKey to continue… - YubiKey にタッチして続行、または YubiKey を正しく設定してください… + YubiKey を挿入またはタッチして続行します… Database Version Mismatch @@ -1532,14 +1629,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password 空のパスワードで再試行 - - Failed to authenticate with Windows Hello - Windows Hello での認証に失敗しました - - - Failed to authenticate with Touch ID - Touch ID での認証に失敗しました - Failed to open key file: %1 キーファイルを開くのに失敗しました: %1 @@ -1558,7 +1647,7 @@ To prevent this error from appearing, you must go to "Database Settings / S All files - 全てのファイル + すべてのファイル Key files @@ -1573,22 +1662,68 @@ To prevent this error from appearing, you must go to "Database Settings / S データベースファイルをキーファイルとして使用することはできません - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - データベースファイルをキーファイルとして使用することはできません。 -キーファイルがない場合は、フィールドを空のままにしてください。 + authenticate to access the database + 認証してデータベースにアクセス - Detecting hardware keys… - ハードウェアキーを検出中… + Failed to authenticate with Quick Unlock: %1 + Quick Unlock での認証に失敗しました: %1 - No hardware keys detected - 検出したハードウェアキーはありません + Select Key File: + キーファイルを選択: - Select hardware key… - ハードウェアキーを選択… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>パスワードだけでなくシークレットファイルを使用することで、データベースのセキュリティを向上させることができます。シークレットファイルはデータベースのセキュリティ設定で生成できます。</p><p>これは *.kdbx データベースファイル<strong>ではありません</strong>!</p> + + + Use hardware key [Serial: %1] + ハードウェアキーを使用する [Serial: %1] + + + Use hardware key + ハードウェアキーを使用する + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + データベースファイルはキーファイルとは違います! +キーファイルを設定していない場合や何かわからない場合は、何も選択しないでください。 + + + KeePassXC database file selected + KeePassXC データベースファイルが選択されました + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + 選択したファイルはデータベースファイルのようです。 +データベースファイルはキーファイルとは違います! + +本当にこのファイルを選択したまま続行しますか? + + + No hardware keys found. + ハードウェアキーが見つかりませんでした。 + + + Refresh Hardware Keys + ハードウェアキーを初期化 + + + Click to add a key file. + クリックしてキーファイルを追加します。 + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">キーファイルがあります</a> + + + Hardware keys found, but no slots are configured. + ハードウェアキーが見つかりましたが、スロットが設定されていません。 @@ -1600,10 +1735,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - 詳細設定 - General 全般 @@ -1628,6 +1759,22 @@ If you do not have a key file, please leave the field empty. Maintenance メンテナンス + + KeeShare + KeeShare + + + Secret Service Integration + シークレットサービス統合 + + + Remote Sync + リモート同期 + + + Database Settings: %1 + データベースの設定: %1 + DatabaseSettingsWidgetBrowser @@ -1636,32 +1783,24 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser 設定 - Convert KeePassHTTP data - KeePassHTTP のデータを変換 + Disconnect all browsers + すべてのブラウザーの接続を切断する - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - 古い KeePassHTTP の属性を KeePassXC-Browser の互換性のあるカスタムデータに変換する + Forget all site-specific settings on entries + エントリーのサイト固有の設定をすべて消去する Refresh database root group ID データベースのルートグループ ID を更新する - - Disconnect all browsers - 全てのブラウザーの接続を断つ - - - Forget all site-specific settings on entries - エントリーのサイト固有の設定を全て消去する - Stored keys - 保存されたキー + 保存したキー Stored browser keys - 保存されたブラウザーキー + 保存したブラウザーキー Remove selected key @@ -1700,21 +1839,13 @@ This may prevent connection to the browser plugin. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - 本当に全てのブラウザーを切断しますか? + 本当にすべてのブラウザーを切断しますか? ブラウザープラグインに接続できなくなります。 - - KeePassXC: No keys found - KeePassXC: キーが見つかりません - No shared encryption keys found in KeePassXC settings. KeePassXC の設定内に共有暗号化キーは見つかりませんでした。 - - KeePassXC: Removed keys from database - KeePassXC: データベースからキーを削除しました - Successfully removed %n encryption key(s) from KeePassXC settings. KeePassXC の設定から %n 個の暗号化キーを正常に削除しました。 @@ -1722,7 +1853,7 @@ This may prevent connection to the browser plugin. Do you really want forget all site-specific settings on every entry? Permissions to access entries will be revoked. - 本当にエントリー毎のサイト固有の設定を全て消去しますか? + 本当にエントリー毎のサイト固有の設定をすべて消去しますか? エントリーへのアクセス権が取り消されます。 @@ -1733,32 +1864,14 @@ Permissions to access entries will be revoked. Abort 中止 - - KeePassXC: Removed permissions - KeePassXC: アクセス許可を削除しました - Successfully removed permissions from %n entry(s). %n 個のエントリーからアクセス許可を正常に削除しました。 - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - 本当にレガシーなブラウザー統合のデータを最新の標準に変換しますか? -これはブラウザープラグインとの互換性維持に必要です。 - Refresh database ID データベース ID を更新 @@ -1769,6 +1882,26 @@ This is only necessary if your database is a copy of another and the browser ext 本当にデータベース ID を更新しますか? これはデータベースが別のデータベースのコピーで、ブラウザー拡張機能が接続できない場合にのみ必要です。 + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + 古い KeePassHTTP の属性を KeePassXC-Browser の互換性のあるカスタムデータに変換する + + + No keys found + 鍵が見つかりません + + + Removed keys from database + 鍵をデータベースから削除しました + + + Removed permissions + 許可を削除しました + + + No entry with permissions found! + アクセス許可があるエントリーは見つかりません + DatabaseSettingsWidgetDatabaseKey @@ -1784,9 +1917,9 @@ This is only necessary if your database is a copy of another and the browser ext 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? - [警告] パスワードを設定していません。パスワードなしでのデータベースの使用は極力避けるべきです。 + 警告!パスワードを設定していません。パスワードなしのデータベースは特に非推奨です! -パスワードなしで続行してもよろしいですか? +本当にパスワードなしで続行しますか? Continue without password @@ -1808,24 +1941,28 @@ Are you sure you want to continue without a password? Failed to change database credentials データベースの資格情報の変更に失敗しました + + Weak password + 脆弱なパスワード + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + 脆弱なパスワードです! 秘密をより最適に保護するために、強固なパスワードを選択することを強くお勧めします。 + + + The provided password does not meet the minimum quality requirement. + 入力されたパスワードが品質要件の最低基準に達していません。 + DatabaseSettingsWidgetEncryption Decryption Time: - 復号化時間: - - - Change existing decryption time - 既存の復号化時間を変更 - - - Change - 変更 + 復号時間: Decryption time in seconds - 復号化時間 (秒) + 復号時間 (秒) Higher values offer more protection, but opening the database will take longer. @@ -1897,17 +2034,12 @@ Are you sure you want to continue without a password? KDBX 4 (recommended) - + KDBX 4 (推奨) KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - 変更なし - Number of rounds too high Key transformation rounds @@ -1960,6 +2092,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) スレッド + + Encryption Settings: + 暗号化設定: + + + Basic + 基本 + + + Advanced + 詳細設定 + DatabaseSettingsWidgetFdoSecrets @@ -2018,18 +2162,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry エントリー毎の履歴アイテムの最大数 - - Max. history items: - 最大履歴数: - Maximum size of history per entry エントリー毎の履歴の最大サイズ - - Max. history size: - 最大履歴データサイズ: - MiB MiB @@ -2060,6 +2196,107 @@ This action is not reversible. (old) (旧) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + この設定を保存するか、設定以降に +エントリーを編集すると、指定した件数の +範囲内になるまで履歴を古い順に削除します。 + + + Limit the amount of history items per entry to: + 各エントリーの履歴件数を制限する: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + この設定を保存するか、設定以降に +エントリーを編集すると、サイズの +合計が指定した値の範囲内になるまで +履歴を古い順に削除します。 + + + Limit the total size of history items per entry to: + 各エントリーの履歴の合計サイズを制限する: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + エントリーをデータベースから削除せず +ゴミ箱グループに移動させます。 +ゴミ箱からエントリーを削除すると +データベースから完全に削除されます。 + + + Autosave delay since last change + 最終更新後、自動保存までの遅延時間 + + + Autosave delay + 自動保存までの遅延時間 + + + Autosave delay since last change in minutes + 最終更新後、自動保存までの遅延時間 (分) + + + min + + + + Autosave delay since last change checkbox + 最終更新後、自動保存を遅延させるチェックボックス + + + Public Database Metadata + データベースの公開メタデータ + + + Warning: the following settings are not encrypted. + 警告: 以下の設定は暗号化されません。 + + + Display name: + 表示名: + + + Publically visible display name used on the unlock dialog + ロック解除ダイアログで使用される公開表示の表示名 + + + Database public display name + データベースの公開表示名 + + + Display color: + 表示色: + + + Publically visible color used on the unlock dialog + ロック解除ダイアログで使用される公開表示の表示色 + + + Database public display color chooser + データベースの公開表示色の選択ツール + + + Clear + 消去 + + + Display icon: + 表示アイコン: + + + Select Database Icon + データベースのアイコンを選択 + DatabaseSettingsWidgetKeeShare @@ -2105,7 +2342,7 @@ This action is not reversible. Delete all custom icons not in use by any entry or group - エントリーやグループで使用していないカスタムアイコンを全て削除する + エントリーやグループで使用していないカスタムアイコンをすべて削除する Purge unused icons @@ -2117,7 +2354,7 @@ This action is not reversible. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - 選択したアイコンの中に、エントリーやグループで現在使用中のものが含まれています。それらは全て既定のアイコンに置き換えられます。本当に現在使用中のアイコンを削除しますか? + 選択したアイコンの中に、エントリーやグループで現在使用中のものが含まれています。それらはすべて既定のアイコンに置き換えられます。本当に現在使用中のアイコンを削除しますか? Custom Icons Are In Use @@ -2125,7 +2362,7 @@ This action is not reversible. All custom icons are in use by at least one entry or group. - 全てのカスタムアイコンがいずれかのエントリーまたはグループで使用中です。 + すべてのカスタムアイコンがいずれかのエントリーまたはグループで使用中です。 Purged Unused Icons @@ -2155,6 +2392,140 @@ This action is not reversible. データベースの概要フィールド + + DatabaseSettingsWidgetRemote + + Sync Commands + 同期コマンド + + + Remove + 削除 + + + Command Settings + コマンド設定 + + + Name + 名前 + + + Save + 保存 + + + Download + ダウンロード + + + Command: + コマンド: + + + Download command field + ダウンロードコマンドフィールド + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 例: "sftp ユーザー名@ホスト名" または "scp ユーザー名@ホスト名:リモートのデータベース.kdbx {TEMP_DATABASE}" + + + Input: + 入力: + + + Download input field + ダウンロード入力フィールド + + + Upload + アップロード + + + Upload command field + アップロードコマンドフィールド + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + 例: "sftp ユーザー名@ホスト名" または "scp {TEMP_DATABASE}ユーザー名@ホスト名:リモートのデータベース.kdbx " + + + Upload input field + アップロード入力フィールド + + + Name cannot be empty. + 名前は空白にできません。 + + + Test + テスト + + + Download command cannot be empty. + ダウンロードコマンドは空白にできません。 + + + Download failed with error: %1 + ダウンロードは次のエラーで失敗しました: %1 + + + Download finished, but file %1 could not be found. + ダウンロードは完了しましたが、ファイル %1 が見つかりません。 + + + Download successful. + 正常にダウンロードを完了しました。 + + + Save Remote Settings + リモート設定を保存 + + + You have unsaved changes. Do you want to save them? + 未保存の変更があります。保存しますか? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 例: +get リモートのデータベース.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} は一時的なデータベース保存先のプレースホルダーとして使用されます +コマンドは終了しなければなりません。「sftp」の場合、最後にコマンド「exit」が送信されなければなりません。 + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 例: +put {TEMP_DATABASE} リモートのデータベース.kdbx +exit +--- +{TEMP_DATABASE} は一時的なデータベース保存先のプレースホルダーとして使用されます +コマンドは終了しなければなりません。「sftp」の場合、最後にコマンド「exit」が送信されなければなりません。 + + + Timeout: + タイムアウト: + + + seconds + + + DatabaseTabWidget @@ -2173,7 +2544,7 @@ This is definitely a bug, please report it to the developers. All files - 全てのファイル + すべてのファイル Open database @@ -2187,26 +2558,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV ファイル - - Select CSV file - CSV ファイルを選択 - Merge database データベースをマージする - - KeePass 1 database - KeePass 1 データベース - - - Open KeePass 1 database - KeePass 1 データベースを開く - - - Open OPVault - OPVault を開く - Export database to CSV file データベースを CSV ファイルへエクスポート @@ -2219,34 +2574,42 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. HTML ファイルへの書き込みに失敗しました。 + + Export database to XML file + データベースを XML ファイルへエクスポート + + + XML file + XML ファイル + + + Writing the XML file failed + XML ファイルの書き込みに失敗しました + Export Confirmation エクスポートの確認 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - データベースを暗号化せずにファイルへエクスポートしようとしています。これはパスワードや機密情報が脆弱な状態に置かれることを意味します。続行してもよろしいですか? - - - New Database - 新しいデータベース - - - %1 [New Database] - Database tab name modifier - %1 [新しいデータベース] + データベースを暗号化されないファイルへエクスポートしようとしています。これにより、パスワードや機密情報が脆弱な状態になります!本当に続行しますか? %1 [Locked] Database tab name modifier %1 [ロック] + + %1 [Temporary] + Database tab name modifier + %1 [一時] + DatabaseWidget - Database Tags - データベースのタグ + Searches and Tags + 検索とタグ Searching… @@ -2294,7 +2657,11 @@ This is definitely a bug, please report it to the developers. Expired entries - + 期限切れのエントリー + + + Entries expiring within %1 day(s) + %1 日以内に期限切れとなるエントリー No current database. @@ -2320,13 +2687,25 @@ This is definitely a bug, please report it to the developers. No Results 見つかりません + + Save + 保存 + + + Enter a unique name or overwrite an existing search from the list: + 独自の名前を入力するか、リストから検索結果を上書きする + + + Save Search + 検索語を保存 + Lock Database? データベースをロックしますか? You are editing an entry. Discard changes and lock anyway? - エントリーを編集中です。変更を破棄してロックしてもよろしいですか? + エントリーを編集中です。変更を破棄してロックしますか? "%1" was modified. @@ -2348,26 +2727,6 @@ Save changes? 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? - データベースファイルが変更され、保存されていません。 -変更をマージしますか? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - 自動再読み込みしようとした際に、新しいデータベースファイルを開くことができませんでした。 -エラー: %1 - Disable safe saves? 安全な保存を無効にしますか? @@ -2404,15 +2763,101 @@ Disable safe saves and try again? Are you sure you want to permanently delete everything from your recycle bin? - ゴミ箱にある全項目を永久に削除してもよろしいですか? + 本当に、ごみ箱からすべてを永久に削除しますか? Could not find database file: %1 データベースファイルが見つかりませんでした: %1 - - Entries expiring within %1 day(s) - + + New Database + 新しいデータベース + + + %1 [New Database] + Database tab name modifier + %1 [新しいデータベース] + + + Remote Sync did not contain any download or upload commands. + リモート同期にダウンロードコマンドまたはアップロードコマンドがありません。 + + + Remote sync '%1' completed successfully! + リモート同期「%1」は正常に完了しました! + + + + Remote sync '%1' failed: %2 + リモート同期「%1」に失敗しました: %2 + + + Error while saving database %1: %2 + データベース %1 の保存中にエラーが発生しました: %2 + + + Downloading... + ダウンロード中... + + + Uploading... + アップロード中... + + + Syncing... + 同期中... + + + Remove passkey from entry + エントリーからパスキーを削除する + + + Do you want to remove the passkey from this entry? + 本当にこのエントリーからパスキーを削除しますか? + + + The database file "%1" was modified externally + データベースファイル "%1" は外部で編集されました + + + Do you want to load the changes? + 変更を読み込みますか? + + + Reload database + データベースを再読み込み + + + Reloading database… + データベースを再読み込みしています... + + + Reload canceled + 再読み込みがキャンセルされました + + + Reload successful + 再読み込みしました + + + Reload pending user action… + 再読み込みはユーザーの操作の待機中です... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + データベースファイル "%1" は外部で編集されました。<br>どのように続行するか選択してください。<br><br>すべての変更をマージ<br>保存するまでディスク上の変更を無視<br>保存されていない変更を破棄 + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + データベースファイル "%1" は外部で編集されました。<br>どのように続行するか選択してください。<br><br>すべての変更をマージして保存<br>ディスク上の変更を上書き<br>保存されていない変更を破棄 + + + Database file overwritten. + データベースファイルが上書きされました。 + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + ディスク上のデータベースファイルは現在の資格情報ではロック解除できませんでした。<br>続行するには、新しい資格情報の入力またはハードウェアキーの挿入が必要です。 @@ -2447,7 +2892,7 @@ Disable safe saves and try again? Are you sure you want to remove this URL? - この URL を削除してもよろしいですか? + 本当にこの URL を削除しますか? Properties @@ -2465,10 +2910,6 @@ Disable safe saves and try again? n/a N/A - - (encrypted) - (暗号化) - Select private key 秘密鍵を選択 @@ -2497,7 +2938,7 @@ Disable safe saves and try again? An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. 外部でのマージ処理によって、このエントリーは無効化されました。 -申し訳ありませんが、行った変更は全て失われました。 +申し訳ありませんが、行った変更はすべて失われました。 Auto-Type Validation Error @@ -2541,7 +2982,7 @@ Would you like to correct it? Are you sure you want to remove this attribute? - この属性を削除してもよろしいですか? + 本当にこの属性を削除しますか? Reveal @@ -2555,6 +2996,10 @@ Would you like to correct it? Hide 隠す + + %n hour(s) + %n 時間 + %n week(s) %n 週間 @@ -2567,9 +3012,9 @@ Would you like to correct it? %n year(s) %n 年 - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + SSHキーの複合に失敗しました。パスワードが正しいことを確認してください。 @@ -2689,17 +3134,27 @@ Would you like to correct it? Add new window association 新しいウィンドウ関連付けを追加 + + + + Add item + + + Remove selected window association 選択したウィンドウ関連付けを削除 + + - + Remove item + - + Window title: ウィンドウタイトル: You can use an asterisk (*) to match everything - アスタリスク (*) を使用すると全てに一致させることができます + アスタリスク (*) を使用するとすべてに一致させることができます Set the window association title @@ -2707,7 +3162,7 @@ Would you like to correct it? You can use an asterisk to match everything - アスタリスクを使用すると全てに一致させることができます + アスタリスクを使用するとすべてに一致させることができます Use a specific sequence for this association: @@ -2717,23 +3172,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window このウィンドウのカスタム自動入力シーケンス - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - これらの設定はエントリーの挙動 (ブラウザー拡張機能) に影響します。 - General 全般 @@ -2746,26 +3187,14 @@ Would you like to correct it? Skip Auto-Submit for this entry このエントリーの自動送信をスキップする - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - この設定をブラウザーの HTTP 認証ダイアログにのみ送信します。有効になっている場合、このエントリーは通常のログインフォームには表示されません。 - Use this entry only with HTTP Basic Auth このエントリーは HTTP ベーシック認証でのみ使用する - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - この設定をブラウザーの HTTP 認証ダイアログに送信しません。有効になっている場合、このエントリーは HTTP 認証ダイアログには表示されません。 - Do not use this entry with HTTP Basic Auth このエントリーは HTTP ベーシック認証で使用しない - - Additional URL's - 追加の URL - Add 追加 @@ -2778,6 +3207,22 @@ Would you like to correct it? Edit 編集 + + These settings affect the entry's behaviour with the browser extension. + これらの設定はブラウザー拡張機能でのエントリーの動作に影響します。 + + + Additional URLs + 追加 URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + HTTP 認証ダイアログのみでブラウザーにこのエントリーを送信します。有効にすると、このエントリーは通常のログインフィールドでは選択肢に表示しません。 + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + HTTP 認証ダイアログではブラウザーにこのエントリーを送信しません。有効にすると、HTTP 認証ダイアログでこのエントリーを選択肢に表示しません。 + EditEntryWidgetHistory @@ -2811,11 +3256,11 @@ Would you like to correct it? Delete all history - 全ての履歴を削除 + すべての履歴を削除 Delete all - 全て削除 + すべて削除 @@ -2828,22 +3273,10 @@ Would you like to correct it? Notes field メモフィールド - - Toggle the checkbox to reveal the notes section. - チェックボックスにチェックを入れるとメモが表示されます。 - Username field ユーザー名フィールド - - Toggle notes visible - メモの表示を切り替え - - - Notes: - メモ: - Expiration field 有効期限フィールド @@ -2860,14 +3293,6 @@ Would you like to correct it? Presets プリセット - - Password: - パスワード: - - - URL: - URL: - Url field URL フィールド @@ -2876,18 +3301,10 @@ Would you like to correct it? Download favicon for URL URL 用のファビコンをダウンロード - - Title: - タイトル: - Title field タイトルフィールド - - Username: - ユーザー名: - Password field パスワードフィールド @@ -2896,17 +3313,41 @@ Would you like to correct it? Toggle expiration 有効期限を切り替え - - Expires: - 期限: - - - Tags: - タグ: - Tags list - + タグ一覧 + + + &Username: + &ユーザー名: + + + &Title: + タイトル(&T): + + + &Password: + パスワード(&P): + + + UR&L: + URL(&L): + + + &Notes: + メモ(&N): + + + Toggle notes visibility + ノートの表示/非表示の切り替え + + + T&ags: + タグ(A): + + + &Expires: + 期限(&E): @@ -2947,19 +3388,6 @@ Would you like to correct it? Private key 秘密鍵 - - External file - 外部ファイル - - - Browser for key file - キーファイルブラウザー - - - Browse… - Button for opening file dialog - 参照… - Attachment 添付ファイル @@ -2976,13 +3404,30 @@ Would you like to correct it? Remove from agent エージェントから削除 + + External file + 外部ファイル + + + Browser for key file + キーファイルブラウザー + + + Browse… + Button for opening file dialog + 参照… + + + Generate + 生成 + Select attachment file 添付ファイルを選択 Require user confirmation when this key is used - このキーを使用する際に必ずユーザーに確認する + この鍵を使用するときに必ずユーザーに確認する n/a @@ -3000,6 +3445,10 @@ Would you like to correct it? seconds + + Clear agent + エージェントをクリア + EditGroupWidget @@ -3011,10 +3460,6 @@ Would you like to correct it? Icon アイコン - - Browser Integration - ブラウザー統合 - Properties プロパティ @@ -3031,6 +3476,10 @@ Would you like to correct it? Group has unsaved changes グループに未保存の変更があります + + Browser Integration + ブラウザー統合 + Enable 有効 @@ -3046,10 +3495,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - グループを編集 - These settings affect to the group's behaviour with the browser extension. これらの設定はグループの挙動 (ブラウザー拡張機能) に影響します。 @@ -3060,7 +3505,7 @@ Would you like to correct it? Hide entries from browser extension toggle for this and sub groups - + これとサブグループのエントリーをブラウザー拡張機能から隠すかどうかを切り替える Skip Auto-Submit for entries: @@ -3068,7 +3513,7 @@ Would you like to correct it? Skip Auto-Submit toggle for this and sub groups - + これとサブグループの自動送信をスキップするかどうかを切り替える Use entries only with HTTP Basic Auth: @@ -3076,7 +3521,7 @@ Would you like to correct it? Only HTTP Auth toggle for this and sub groups - + これとサブグループを HTTP 認証のみにするかどうかを切り替える Do not use entries with HTTP Basic Auth: @@ -3084,6 +3529,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + これとサブグループで HTTP 認証を使用しないかどうかを切り替える + + + Omit WWW subdomain from matching: + WWW サブドメインをマッチングから除外する: + + + Omit WWW subdomain from matching toggle for this and sub groups + このグループとサブグループで WWW サブドメインをマッチングから除外するかを変更します + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups @@ -3312,16 +3773,12 @@ Supported extensions are: %1. Also apply to all children - 全ての子にも適用 + すべての子にも適用 Unable to fetch favicon. ファビコンを取得できません。 - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - ツール -> 設定 -> セキュリティで DuckDuckGo ウェブサイトアイコンサービスを有効にできます - Existing icon selected. 選択したアイコンは既存です。 @@ -3332,7 +3789,7 @@ Supported extensions are: %1. All files - 全てのファイル + すべてのファイル Select Image(s) @@ -3354,6 +3811,10 @@ Supported extensions are: %1. The following icon(s) failed: 次のアイコンの読み込みに失敗しました: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + 設定 -> セキュリティで DuckDuckGo のウェブサイトアイコンサービスを有効にできます + EditWidgetProperties @@ -3430,6 +3891,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - 複製 + + Passkey + パスキー + + + Invalid conversion type: %1 + 変換形式が正しくありません: %1 + + + Invalid conversion syntax: %1 + 変換構文が正しくありません: %1 + + + Invalid regular expression syntax %1 +%2 + 正規表現の構文が正しくありません: %1 +%2 + EntryAttachments @@ -3438,6 +3917,21 @@ This may cause the affected plugins to malfunction. ファイル "%1" を開けません + + EntryAttachmentsDialog + + Form + フォーム + + + File name + ファイル名 + + + File contents... + ファイルの内容... + + EntryAttachmentsModel @@ -3475,14 +3969,6 @@ This may cause the affected plugins to malfunction. Remove 削除 - - Rename selected attachment - 選択した添付ファイルの名前を変更 - - - Rename - 名前を変更 - Open selected attachment 選択した添付ファイルを開く @@ -3509,7 +3995,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to remove %n attachment(s)? - %n 個の添付ファイルを削除してもよろしいですか? + 本当に添付ファイル %n 個を削除しますか? Save attachments @@ -3523,7 +4009,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to overwrite the existing file "%1" with the attachment? - 既存のファイル "%1" を上書きしてもよろしいですか? + 既存のファイル "%1" を添付ファイルで上書きしますか? Confirm overwrite @@ -3557,12 +4043,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment 添付ファイルの上書きの確認 - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - 添付ファイル "%1" は既に存在します。 -既存の添付ファイルを上書きしますか? - Confirm Attachment 添付の確認 @@ -3597,6 +4077,24 @@ Error: %1 更新された添付ファイルの保存に失敗しました。 エラー: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + 添付ファイル "%1" は既に存在します。 +既存の添付ファイルを上書きしますか? + + + New + 新規作成 + + + Preview + プレビュー + + + Failed to preview an attachment: Attachment not found + 添付ファイルをプレビューできませんでした: 添付ファイルが見つかりません + EntryAttributesModel @@ -3649,7 +4147,7 @@ Error: %1 Custom Attributes - + 属性をカスタムする Icon @@ -3657,7 +4155,7 @@ Error: %1 Color - + カラー Expiration @@ -3669,7 +4167,7 @@ Error: %1 Custom Data - + カスタムデータ Attachments @@ -3791,6 +4289,14 @@ Error: %1 Has TOTP TOTP の有無 + + Background Color + 背景色 + + + Group Path + グループのパス + EntryPreviewWidget @@ -3811,8 +4317,8 @@ Error: %1 パスワード - Notes - メモ + URL + URL Expiration @@ -3824,15 +4330,15 @@ Error: %1 Tags list - + タグ一覧 Username ユーザー名 - URL - URL + Notes + メモ Advanced @@ -3882,6 +4388,10 @@ Error: %1 Never なし + + Double click to copy value + ダブルクリックすると値をコピーします + Enabled 有効 @@ -3890,6 +4400,10 @@ Error: %1 Disabled 無効 + + Double click to copy to clipboard + ダブルクリックすると、クリップボードにコピーします + EntryURLModel @@ -3897,6 +4411,10 @@ Error: %1 Invalid URL 無効な URL + + Duplicate URL + 重複した URL + EntryView @@ -3910,7 +4428,11 @@ Error: %1 Reset to defaults - 規定値に戻す + 既定値に戻す + + + + %1 entry(s)... + + %1 個のエントリー... @@ -4133,6 +4655,193 @@ You can enable the DuckDuckGo website icon service in the security section of th ファビコンをダウンロード中 (%1/%2)… + + ImportWizard + + Import Wizard + インポートウィザード + + + + ImportWizardPageReview + + WizardPage + ウィザードページ + + + Entry count: %1 + エントリーカウント: %1 + + + Group + グループ + + + Title + タイトル + + + Username + ユーザー名 + + + Password + パスワード + + + Url + Url + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + フォーム + + + Import File Selection + インポートするファイルの選択 + + + Password: + パスワード: + + + Key File: + キーファイル: + + + Browse… + 参照… + + + Import Into: + インポート先: + + + New Database + 新しいデータベース + + + No unlocked databases available + ロック解除された利用可能なデータベースはありません + + + Existing Database: + 既存のデータベース: + + + Import File: + インポートするファイル: + + + Comma Separated Values (.csv) + カンマ区切りテキスト (.csv) + + + 1Password Export (.1pux) + 1Password エクスポート (.1pux) + + + 1Password Vault (.opvault) + 1Password Vault (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 データベース (.kdb) + + + Open OPVault + OPVault を開く + + + Select import file + インポートするファイルを選択 + + + All files + すべてのファイル + + + Key files + キーファイル + + + Select key file + キーファイルを選択 + + + Comma Separated Values + カンマ区切りテキスト (.csv) + + + 1Password Export + 1Password エクスポート + + + Bitwarden JSON Export + Bitwarden JSON エクスポート + + + 1Password Vault + 1Password 保管庫 + + + KeePass1 Database + KeePass1 データベース + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON エクスポート + + + Temporary Database + 一時データベース + + + Command: + コマンド: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 例: "sftp ユーザー名@ホスト名" または "scp ユーザー名@ホスト名:リモートのデータベース.kdbx {TEMP_DATABASE}" + + + Input: + 入力: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + リモートのデータベース (.kdbx) + + KMessageWidget @@ -4148,7 +4857,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - + データベースのヘッダーがありません Unable to calculate database key @@ -4162,7 +4871,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. 不正な資格情報です。再試行してください。 -これが再発した場合は、データベースファイルが破損している可能性があります。 +これが再発する場合は、データベースファイルが破損している可能性があります。 Header doesn't match hash @@ -4219,7 +4928,7 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. 不正な資格情報です。再試行してください。 -これが再発した場合は、データベースファイルが破損している可能性があります。 +これが再発する場合は、データベースファイルが破損している可能性があります。 (HMAC mismatch) @@ -4567,17 +5276,6 @@ Line %2, column %3 秘密鍵を開くのに失敗しました - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass1 データベースをインポート - - - Unable to open the database. - データベースを開けません。 - - KeePass1Reader @@ -4641,7 +5339,7 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. 不正な資格情報です。再試行してください。 -これが再発した場合は、データベースファイルが破損している可能性があります。 +これが再発する場合は、データベースファイルが破損している可能性があります。 Key transformation failed @@ -4872,7 +5570,7 @@ Message: %2 All files - 全てのファイル + すべてのファイル Create Key File… @@ -4906,7 +5604,7 @@ Message: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? 選択したキーファイルはパスワードデータベースファイルだと思われます。キーファイルは絶対に変更されることがない、静的なファイルである必要があります。変更される可能性があるファイルでは、データベースに永久にアクセスできなくなる恐れがあります。 -このファイルで続行してもよろしいですか? +本当にこのファイルで続行しますか? @@ -4934,10 +5632,6 @@ Are you sure you want to continue with this file? &Recent Databases 最近使用したデータベース(&R) - - &Import - インポート(&I) - &Export エクスポート(&E) @@ -4958,6 +5652,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + タグ + &Groups グループ(&G) @@ -5002,34 +5700,18 @@ Are you sure you want to continue with this file? &New Database… 新しいデータベース(&N)… - - Create a new database - 新しいデータベースを作成 - &Merge From Database… データベースからマージ(&M)… - - Merge from another KDBX database - 別の KDBX データベースからマージ - &New Entry… 新しいエントリー(&N)… - - Add a new entry - 新しいエントリーを追加 - &Edit Entry… エントリーを編集(&E)… - - View or edit entry - エントリーを編集または表示 - &Delete Entry… エントリーを削除(&D)… @@ -5038,10 +5720,6 @@ Are you sure you want to continue with this file? &New Group… 新しいグループ(&N)… - - Add a new group - 新しいグループを追加 - &Edit Group… グループを編集(&E)… @@ -5052,7 +5730,7 @@ Are you sure you want to continue with this file? Download All &Favicons… - 全てのファビコンをダウンロード(&F)… + すべてのファビコンをダウンロード(&F)… Sort &A-Z @@ -5074,18 +5752,10 @@ Are you sure you want to continue with this file? Database &Reports… データベースのレポート(&R)… - - Statistics, health check, etc. - 統計や健全性の確認など。 - &Database Settings… データベースの設定(&D)… - - Database settings - データベースの設定 - &Clone Entry… エントリーを複製(&C)… @@ -5094,34 +5764,18 @@ Are you sure you want to continue with this file? Move u&p 上に移動(&P) - - Move entry one step up - エントリーを一つ上に移動する - Move do&wn 下に移動(&W) - - Move entry one step down - エントリーを一つ下に移動する - Copy &Username ユーザー名をコピー(&U) - - Copy username to clipboard - ユーザー名をクリップボードにコピー - Copy &Password パスワードをコピー(&P) - - Copy password to clipboard - パスワードをクリップボードにコピー - &Settings 設定(&S) @@ -5148,32 +5802,20 @@ Are you sure you want to continue with this file? Lock &All Databases - 全てのデータベースをロック(&A) + すべてのデータベースをロック(&A) &Title タイトル(&T) - Copy title to clipboard - タイトルをクリップボードにコピー - - - &URL - URL(&U) - - - Copy URL to clipboard - URL をクリップボードにコピー + Copy &URL + URL をコピー(&U) &Notes メモ(&N) - - Copy notes to clipboard - メモをクリップボードにコピー - &CSV File… CSV ファイル(&C)… @@ -5186,26 +5828,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 データベース… - - Import a KeePass 1 database - KeePass 1 データベースをインポート - 1Password Vault… 1Password 保管庫… - - Import a 1Password Vault - 1Password 保管庫をインポート - CSV File… CSV ファイル… - - Import a CSV file - CSV ファイルをインポート - Show TOTP TOTP を表示 @@ -5222,6 +5852,10 @@ Are you sure you want to continue with this file? Copy &TOTP TOTP をコピー(&T) + + Copy Password and TOTP + パスワードと TOTP をコピー + E&mpty recycle bin ゴミ箱を空にする(&M) @@ -5246,10 +5880,6 @@ Are you sure you want to continue with this file? &Online Help オンラインヘルプ(&O) - - Go to online documentation - オンラインドキュメントを開く - &User Guide ユーザーガイド(&U) @@ -5294,6 +5924,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) クラシック (プラットフォームネイティブ) + + Show Menubar + メニューバーを表示 + Show Toolbar ツールバーを表示 @@ -5318,6 +5952,10 @@ Are you sure you want to continue with this file? Clone Group... グループを複製... + + &XML File… + XML ファイル(&X)… + Clear history 履歴を消去 @@ -5328,15 +5966,15 @@ Are you sure you want to continue with this file? Don't show again for this version - 今後このバージョンは表示しない + このバージョンについては今後表示しない 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 の開発版を使用しています。 -データベース破損の危険性が高いため、バックアップを維持します。 -このバージョンは正式版ではありません。 + 警告: お使いの KeePassXC は不安定版です。 +データベース破損の高いリスクがあるため、必ずバックアップを作成してください。 +このバージョンは使用を想定した製品版ではありません。 NOTE: You are using a pre-release version of KeePassXC. @@ -5345,14 +5983,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 がクラッシュする可能性があります。 -KeePassXC の配布ページから AppImage をダウンロードして使用することをお勧めします。 + No Tags + タグなし Restore Entry(s) - + エントリーを復元 Settings @@ -5378,9 +6014,13 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Quit KeePassXC KeePassXC を終了 + + %1 Entry(s) + エントリー %1 件 + Please present or touch your YubiKey to continue… - YubiKey にタッチして続行、または YubiKey を正しく設定してください… + YubiKey を挿入またはタッチして続行します… Restart Application? @@ -5390,6 +6030,314 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す You must restart the application to apply this setting. Would you like to restart now? 設定を適用するには、このアプリケーションを再起動する必要があります。今すぐ再起動しますか? + + Allow Screen Capture + スクリーンキャプチャを許可 + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + 1Password 1PUX ファイルをインポート + + + Import… + インポート… + + + Passkeys… + パスキー… + + + Import Passkey + パスキーをインポート + + + Remote S&ync… + リモート同期(S)... + + + Quit Application + アプリケーションを終了 + + + Open About Dialog + アプリについてダイアログを開く + + + Open Database + データベースを開く + + + Create Database + データベースを作成 + + + Merge From Database + データベースからマージ + + + Create Entry + エントリーを作成 + + + Edit Entry + エントリーを編集 + + + Delete Entry + エントリーを削除 + + + Create Group + グループを作成 + + + Edit Group + グループを編集 + + + Delete Group + グループを削除 + + + Download All Favicons + すべてのファビコンをダウンロード + + + Sort Groups A-Z + グループを A-Z で並べ替え + + + Sort Groups Z-A + グループを Z-A で並べ替え + + + Save Database As + データベースを別名で保存 + + + Show Database Security + データベースのセキュリティを表示 + + + Show Database Reports + データベースのレポートを表示 + + + Show Database Settings + データベースの設定を表示 + + + Show Passkeys + パスキーを表示 + + + Clone Entry + エントリーを複製 + + + Move Entry Up + エントリーを上に移動 + + + Move Entry Down + エントリーを下に移動 + + + Copy Username + ユーザー名をコピー + + + Copy Password + パスワードをコピー + + + Show Application Settings + アプリケーションの設定を表示 + + + Show Password Generator + パスワードを生成 + + + Remove Passkey From Entry + エントリーからパスキーを削除する + + + Perform Auto-Type: {USERNAME} + 自動入力を実行: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + 自動入力を実行: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + 自動入力を実行: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + 自動入力を実行: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + 自動入力を実行: {TOTP} + + + Copy Title + タイトルをコピー + + + Copy URL + URL をコピー + + + Copy Notes + メモをコピー + + + Export to CSV + CSV にエクスポート + + + Export to HTML + HTML にエクスポート + + + Import KeePass1 Database + KeePass1 データベースをインポート + + + Import 1Password Vault + 1Password 保管庫をインポート + + + Import CSV File + CSV ファイルをインポート + + + Show TOTP QR Code + TOTP の QR コードを表示 + + + Set up TOTP + TOTP をセットアップ + + + Empty Recycle Bin + ゴミ箱を空にする + + + Open Donation Website + 寄付ウェブサイトを開く + + + Open Bug Report + バグレポートを開く + + + Open Online Documentation + オンラインドキュメントを開く + + + Open Keyboard Shortcuts Guide + キーボードショートカットガイドを開く + + + Save Database Backup + データベースのバックアップを保存 + + + SSH Agent: Add Key + SSH エージェント: 鍵を追加 + + + SSH Agent: Remove Key + SSH エージェント: 鍵を削除 + + + Toggle Compact Mode + コンパクトモードを切り替え + + + Set Theme: Automatic + テーマ設定: 自動 + + + Set Theme: Light + テーマ設定: ライト + + + Set Theme: Dark + テーマ設定: ダーク + + + Set Theme: Classic + テーマ設定: クラシック + + + Toggle Show Menubar + メニューバーの表示を切り替え + + + Toggle Show Toolbar + ツールバーの表示を切り替え + + + Toggle Show Preview Panel + プレビューパネルの表示を切り替え + + + Toggle Always on Top + 常に最前面に表示設定を切り替え + + + Toggle Hide Usernames + ユーザー名の非表示を切り替え + + + Toggle Hide Passwords + パスワードの非表示を切り替え + + + Export to XML + XML にエクスポート + + + Toggle Allow Screen Capture + スクリーンキャプチャーの許可を切り替え + + + Show Group Panel + グループパネルを表示 + + + Toggle Show Group Panel + グループパネルの表示を切り替え + + + Setup Remote Sync… + リモート同期をセットアップ... + + + Password Generator + パスワード生成 + + + E&xpire Entry… + エントリーを有効期限切れにする(&X)… + + + Clear SSH Agent + SSH エージェントをクリア + + + Clear all identities in ssh-agent + SSH エージェントのすべての ID をクリア + ManageDatabase @@ -5426,7 +6374,7 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Reset - + リセット Reset any remembered decisions for this application @@ -5447,26 +6395,6 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す 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] から同期 @@ -5526,14 +6454,6 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. ここではデータベースの暗号化設定を調整できます。この設定は後からデータベースの設定で変更できます。 - - Advanced Settings - 詳細設定 - - - Simple Settings - 簡易設定 - NewDatabaseWizardPageDatabaseKey @@ -5568,6 +6488,25 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す 新しいデータベースの名前と、必要な場合は説明文を入力してください: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + 添付ファイルのファイル名は空白にできません + + + Attachment with the same name already exists + 同じファイル名の添付ファイルが既に存在します + + + Save attachment + 添付ファイルを保存 + + + New entry attachment + エントリーの新しい添付ファイル + + NixUtils @@ -5614,15 +6553,6 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す 期待される clear-text のサイズは %1 バイトですが %2 バイトしかありませんでした - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - データベースの読み取りはインスタンスをプロデュースしませんでした -%1 - - OpVaultReader @@ -5696,6 +6626,10 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Unknown cipher: %1 不明な暗号です: %1 + + AES-256/GCM is currently not supported + AES-256/GCM は現在非対応です + Passphrase is required to decrypt this key この鍵を復号するパスフレーズが必要です @@ -5718,11 +6652,11 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Decryption failed: %1 - 復号化に失敗しました: %1 + 復号に失敗しました: %1 Decryption failed, wrong passphrase? - 復号化に失敗しました。パスフレーズが間違っていませんか? + 復号に失敗しました。パスフレーズが間違っていませんか? Unexpected EOF while reading key @@ -5760,28 +6694,184 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Unexpected EOF when writing private key 秘密鍵の書き込み時に予期しない EOF がありました + + (encrypted) + (暗号化) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - パスワードが一致しません + SSH Key Generator + - Passwords match so far - 今の所パスワードは一致しています + Type + 種類 - Toggle Password (%1) - パスワードを切り替え (%1) + Bits + ビット - Generate Password (%1) - パスワードを生成 (%1) + Comment + コメント + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - パスキーのエクスポート - Warning: Caps Lock enabled! - 警告: Caps Lock が有効になっています! + Filenames will be generated with title and .passkey file extension. + ファイル名は「タイトル + .passkey 拡張子」で生成されます。 + + + Export entries + エントリーをエクスポート + + + Export Selected + 選択したものをエクスポート + + + Cancel + キャンセル + + + Export to folder + フォルダーにエクスポート + + + Export the following passkey entries. + 次のパスキーをエクスポートします。 + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: パスキーのエクスポート + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + ファイル「%1.passkey」は既に存在しています。 +上書きしますか? + + + + Cannot open file + ファイルを開けませんでした + + + Cannot open file "%1" for writing. + ファイル「%1」は書き込み用として開けません。 + + + Cannot write to file + ファイルに書き込めません + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - パスキーのインポート + + + Username: %1 + ユーザー名: %1 + + + Group + グループ + + + Database + データベース + + + Import Passkey + パスキーをインポート + + + Import + インポート + + + Cancel + キャンセル + + + Entry + エントリー + + + Create new entry + 新しいエントリーを作成 + + + Relying Party: %1 + サービス提供者 (Relying Party): %1 + + + Import the following passkey: + 次のパスキーをインポートします: + + + Import the following passkey to this entry: + このエントリーに次のパスキーをインポートします: + + + Default passkeys group (Imported Passkeys) + デフォルトのパスキーグループ (Imported Passkeys) + + + + PasskeyImporter + + Passkey file + パスキーファイル + + + All files + すべてのファイル + + + Cannot open file + ファイルを開けませんでした + + + Cannot open file "%1" for reading. + ファイル「%1」は読み込み用として開けません。 + + + Open passkey file + パスキーファイルを開く + + + Cannot import passkey + パスキーをインポートできません + + + Cannot import passkey file "%1". Data is missing. + パスキーファイル「%1」をインポートできません。データが存在しません。 + + + Cannot import passkey file "%1". +The following data is missing: +%2 + パスキーファイル「%1」をインポートできません。 +次のデータが存在しません: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + パスキーファイル「%1」をインポートできません。秘密鍵が存在しないか形式に問題があります。 @@ -5962,17 +7052,13 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Also choose from: 次からも選択: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - 除外される文字: "0"、"1"、"l"、"I"、"O"、"|"、"﹒" - Exclude look-alike characters よく似た文字を除外する Pick characters from every group - 使用する全ての文字種から文字を選ぶ + 選択したすべての文字種から文字を選ぶ Passphrase @@ -5990,10 +7076,6 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Word Count: 単語数: - - Character Count: - 文字数: - Word Case: 単語の大小文字: @@ -6006,10 +7088,6 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Add custom wordlist カスタム単語リストを追加 - - character - 文字 - Close 閉じる @@ -6046,6 +7124,30 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す Entropy: %1 bit エントロピー: %1 ビット + + Password Quality: %1 + パスワードの品質: %1 + + + Poor + Password quality + 非常に脆弱 + + + Weak + Password quality + 脆弱 + + + Good + Password quality + 良好 + + + Excellent + Password quality + すばらしい + Confirm Delete Wordlist 単語リストの削除の確認 @@ -6064,7 +7166,7 @@ KeePassXC の配布ページから AppImage をダウンロードして使用す All files - 全てのファイル + すべてのファイル Select Custom Wordlist @@ -6093,29 +7195,72 @@ Do you want to overwrite it? 特殊文字 - Password Quality: %1 - パスワードの品質: %1 + passwordLength + + + + Characters: %1 + 文字: %1 + + + MIXED case + 大文字小文字混在 + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + 除外される文字: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + パスワードが一致しません + + + Passwords match so far + 今の所パスワードは一致しています + + + Toggle Password (%1) + パスワードを切り替え (%1) + + + Generate Password (%1) + パスワードを生成 (%1) + + + Warning: Caps Lock enabled! + 警告: Caps Lock が有効になっています! + + + Quality: %1 + 品質: %1 Poor Password quality - 貧弱 + 非常に脆弱 Weak Password quality - 弱い + 脆弱 Good Password quality - 良い + 良好 Excellent Password quality すばらしい + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6132,6 +7277,21 @@ Do you want to overwrite it? 文字間で Tab を押す(&T) + + PreviewEntryAttachmentsDialog + + Preview entry attachment + エントリーの添付ファイルをプレビュー + + + No preview available + プレビューできません + + + Image format not supported + 対応していない画像形式です + + QMessageBox @@ -6170,6 +7330,10 @@ Do you want to overwrite it? Continue 続行 + + Continue with weak password + 脆弱なパスワードで続行 + QObject @@ -6477,8 +7641,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - クリップボードを消去するまでの待ち時間 (規定は %1 秒 -で 0 にすると無制限)。 + クリップボードを消去するまでの待機時間 (既定値は %1 秒、0 にすると無制限)。 Invalid timeout value %1. @@ -6564,6 +7727,10 @@ Do you want to overwrite it? Too many arguments provided. 提供された引数が多すぎます。 + + Path of the database. + データベースのパス。 + Target decryption time in MS for the database. データベースの目標復号時間 (ミリ秒)。 @@ -6584,10 +7751,6 @@ Do you want to overwrite it? Create a new database. 新しいデータベースを作成する。 - - Path of the database. - データベースのパス。 - Invalid decryption time %1. %1 は復号時間として不適切です。 @@ -6632,6 +7795,158 @@ Do you want to overwrite it? Successfully created new database. 新しいデータベースを正常に作成しました。 + + Unset the password for the database. + データベースのパスワードの設定を解除する。 + + + Unset the key file for the database. + データベースのキーファイルの設定を解除する。 + + + Edit a database. + データベースを編集。 + + + Cannot use %1 and %2 at the same time. + %1 と %2 は同時に使用できません。 + + + Could not change the database key. + データベース鍵を変更できません。 + + + Database was not modified. + データベースは変更されていません。 + + + Writing the database failed: %1 + データベースへの書き込みに失敗しました: %1 + + + Successfully edited the database. + 正常にデータベースを編集しました。 + + + Cannot remove password: The database does not have a password. + パスワードは削除できません: データベースにパスワードがありません。 + + + Cannot remove file key: The database does not have a file key. + キーファイルは削除できません: データベースにキーファイルがありません。 + + + Loading the new key file failed: %1 + 新しいキーファイルの読み込みに失敗しました: %1 + + + Found unexpected Key type %1 + 想定されていない鍵の形式が見つかりました %1 + + + Cannot remove all the keys from a database. + パスキーをデータベースから削除できません。 + + + Show a database's information. + データベースの情報を表示する。 + + + UUID: + UUID: + + + Name: + 名前: + + + Description: + 概要: + + + Cipher: + 暗号: + + + KDF: + KDF: + + + Recycle bin is enabled. + ゴミ箱が有効です。 + + + Recycle bin is not enabled. + ゴミ箱は有効になっていません。 + + + Location + 場所 + + + Database created + データベース作成 + + + Last saved + 最終更新日時 + + + Unsaved changes + 未保存の変更 + + + yes + はい + + + no + いいえ + + + Number of groups + グループ数 + + + Number of entries + エントリー数 + + + Number of expired entries + 期限切れエントリー数 + + + Unique passwords + 固有パスワード + + + Non-unique passwords + 非固有パスワード + + + Maximum password reuse + パスワード使い回しの最大数 + + + Number of short passwords + 短いパスワードの数 + + + Number of weak passwords + 脆弱なパスワードの数 + + + Entries excluded from reports + レポートから除外されたエントリー + + + Average password length + 平均パスワード長 + + + %1 characters + %1文字 + Word count for the diceware passphrase. ダイスウェアパスフレーズの単語数。 @@ -6655,10 +7970,6 @@ Do you want to overwrite it? Invalid word count %1 単語数 %1 は不正です - - The word list is too small (< 1000 items) - 単語リストが小さすぎます (< 1000 アイテム) - Title for the entry. エントリーのタイトル。 @@ -6683,10 +7994,6 @@ Do you want to overwrite it? Enter new password for entry: エントリーの新しいパスワードを入力してください: - - Writing the database failed: %1 - データベースへの書き込みに失敗しました: %1 - Successfully edited entry %1. エントリー %1 を正常に編集しました。 @@ -6807,10 +8114,6 @@ Do you want to overwrite it? Exit interactive mode. 対話モードを終了する。 - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - エクスポート時に使用するフォーマット。'xml' が既定で、'csv' も選択可能です。 - Exports the content of a database to standard output in the specified format. データベースの内容を指定した形式で標準出力にエクスポートする。 @@ -6881,7 +8184,7 @@ Do you want to overwrite it? Invalid password generator after applying all options - 全てのオプションを適用したパスワード生成は無効です + すべてのオプションを適用したパスワード生成は無効です Display command help. @@ -6911,106 +8214,6 @@ Do you want to overwrite it? Successfully imported database. データベースを正常にインポートしました。 - - Show a database's information. - データベースの情報を表示する。 - - - UUID: - UUID: - - - Name: - 名前: - - - Description: - 概要: - - - Cipher: - 暗号: - - - KDF: - KDF: - - - Recycle bin is enabled. - ゴミ箱が有効です。 - - - Recycle bin is not enabled. - ゴミ箱は有効になっていません。 - - - Location - 場所 - - - Database created - データベース作成 - - - Last saved - 最終更新日時 - - - Unsaved changes - 未保存の変更 - - - yes - はい - - - no - いいえ - - - Number of groups - グループ数 - - - Number of entries - エントリー数 - - - Number of expired entries - 期限切れエントリー数 - - - Unique passwords - 固有パスワード - - - Non-unique passwords - 非固有パスワード - - - Maximum password reuse - パスワード使い回しの最大数 - - - Number of short passwords - 短いパスワードの数 - - - Number of weak passwords - 脆弱なパスワードの数 - - - Entries excluded from reports - レポートから除外されたエントリー - - - Average password length - 平均パスワード長 - - - %1 characters - %1文字 - Unknown command %1 %1 は不明なコマンドです @@ -7183,6 +8386,10 @@ Available commands: Show the protected attributes in clear text. クリアテキストの保護された属性を表示する。 + + Show all the attributes of the entry. + エントリーの属性を表示する。 + Show the attachments of the entry. エントリーの添付ファイルを表示する。 @@ -7253,6 +8460,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 YubiKey のシリアル %1 は不正です + + Please present or touch your YubiKey to continue. + YubiKey を挿入またはタッチして続行します。 + Enter password to encrypt database (optional): データベースを暗号化するためのパスワードを入力してください (オプション): @@ -7276,7 +8487,7 @@ Please consider generating a new key file. All clipping programs failed. Tried %1 - 全てのクリッピングプログラムが失敗しました。試行: %1 + すべてのクリッピングプログラムが失敗しました。試行: %1 @@ -7309,7 +8520,7 @@ Please consider generating a new key file. Very weak password - 非常に弱いパスワード + 非常に脆弱なパスワード Password entropy is %1 bits @@ -7317,7 +8528,7 @@ Please consider generating a new key file. Weak password - 弱いパスワード + 脆弱なパスワード Used in %1/%2 @@ -7440,8 +8651,8 @@ CPU アーキテクチャー: %2 %1 分 - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan ライブラリは 2.11.x である必要がありますが %1.%2.%3 が見つかりました + Botan library must be at least %1, found %2.%3.%4 + Cryptographic libraries: @@ -7491,18 +8702,6 @@ CPU アーキテクチャー: %2 file empty ファイルが空です - - malformed string - 不正な形式の文字列 - - - missing closing quote - 閉じ引用符がありません - - - %1: (row, col) %2,%3 - %1: (行, 列) %2,%3 - AES 256-bit AES 256 ビット @@ -7513,7 +8712,7 @@ CPU アーキテクチャー: %2 ChaCha20 256-bit - + ChaCha20 256 ビット Argon2d (KDBX 4 – recommended) @@ -7529,7 +8728,7 @@ CPU アーキテクチャー: %2 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7627,7 +8826,7 @@ CPU アーキテクチャー: %2 Browser Statistics - + ブラウザーの統計 Health Check @@ -7681,14 +8880,6 @@ CPU アーキテクチャー: %2 read password of the database from stdin 標準入力からデータベースのパスワードを読み込む - - allow app screen recordering and screenshots - アプリによる画面の録画とスクリーンショットの撮影を許可する - - - Locked databases. - データベースをロックしました。 - Database failed to lock. データベースのロックに失敗しました。 @@ -7697,6 +8888,10 @@ CPU アーキテクチャー: %2 Another instance of KeePassXC is already running. KeePassXC の別インスタンスが既に起動しています。 + + KeePassXC is not running. No open database to lock + KeePassXC が実行されていません。ロックできるデータベースがありません + Fatal error while testing the cryptographic functions. 暗号化機能のテスト中に致命的なエラーが発生しました。 @@ -7705,10 +8900,6 @@ CPU アーキテクチャー: %2 KeePassXC - Error KeePassXC - エラー - - Warning: Failed to prevent screenshots on a top level window! - 警告: トップレベルウィンドウのスクリーンショットを撮ることを防げませんでした! - Database password: データベースのパスワード: @@ -7725,16 +8916,320 @@ CPU アーキテクチャー: %2 Failed to create Windows Hello credential. - + Windows Hello の認証情報の作成に失敗しました。 Failed to sign challenge using Windows Hello. + Windows Hello を使用したチャレンジの署名に失敗しました。 + + + Warning: Failed to block screenshot capture on a top-level window. + 警告: トップレベルウィンドウのスクリーンショット撮影を防げませんでした! + + + Invalid Cipher + 無効な暗号です + + + Invalid KDF + 無効な KDF です + + + Access to all entries is denied + すべてのエントリーへのアクセスが拒否されました + + + allow screenshots and app recording (Windows/macOS) - Please present or touch your YubiKey to continue. + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + データベースにキーファイルを設定します。 +このオプションは非推奨です。--set-key-file の使用を検討してください。 + + + Databases have been locked. + データベースがロックされました。 + + + Attestation not supported + 対応していない認証です + + + Credential is excluded + 資格情報が有効期限切れです + + + Passkeys request canceled + パスキー要求がキャンセルされました + + + Invalid user verification + 不正なユーザー認証 + + + Empty public key + 公開鍵が空白です + + + Invalid URL provided + 無効な URL が提供されました + + + Passkeys + パスキー + + + AES initialization failed + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + KeePassXC の暗号の初期化に失敗しました。 + + + Failed to encrypt key data. + 鍵データの暗号化に失敗しました。 + + + Failed to get Windows Hello credential. + Windows Hello の認証情報の取得に失敗しました。 + + + Failed to decrypt key data. + 鍵データの復号に失敗しました。 + + + Origin is empty or not allowed + オリジンが空白または許可されていません + + + Effective domain is not a valid domain + Effective domain が有効なドメインではありません + + + Origin and RP ID do not match + オリジンと RP ID が一致しません + + + No supported algorithms were provided + 対応するアルゴリズムが提供されませんでした + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + チャレンジが最低文字数より短いです + + + user.id does not match the required length + user.id の文字数が規定に適合しません + + + Favorite + Tag for favorite entries + お気に入り + + + File does not exist. + ファイルが存在しません。 + + + Cannot open file: %1 + ファイルを開けません: %1 + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + json ファイルの復号化に失敗しました: %1 + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + パスワードが間違っています + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + 暗号を初期化できませんでした + + + Cannot decrypt data + データを復号できません + + + Bitwarden Import + Bitwarden のインポート + + + Archived + Tag for archived entries + アーカイブ + + + Invalid 1PUX file format: Not a valid ZIP file. + 無効な 1PUX ファイル形式: 有効な ZIP ファイルではありません。 + + + Invalid 1PUX file format: Missing export.data + 無効な 1PUX ファイル形式: export.data が見つかりません。 + + + 1Password Import + 1Password のインポート + + + Enter Shortcut + ショートカットを入力 + + + Action + アクション + + + Shortcuts + ショートカット + + + Unknown passkeys error + 不明なパスキーエラーが発生しました + + + Invalid KDF iterations, cannot decrypt json file + 無効な KDF 反復、json ファイルを複合できませんでした + + + Unsupported format, ensure your Bitwarden export is password-protected + 対応していないフォーマットです。Bitwarden エクスポートがパスワードで保護されているか確認してください + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + PBKDF と Argon2 に対応しており、json ファイルは復号できません + + + Reset Shortcuts + ショートカットをリセット + + + Double click an action to change its shortcut + ショートカットを変更したいアクションをダブルクリック + + + Filter... + フィルター... + + + Shortcut Conflict + ショートカット重複 + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + ショートカット %1 は「%2」と重複しています。上書きしますか? + + + Cannot generate valid passphrases because the wordlist is too short + 単語リストが短すぎるため、有効なパスフレーズを生成できませんでした + + + Encrypted files are not supported. + 暗号化されたファイルには対応していません。 + + + Proton Pass Import + Proton Pass Import + + + Delete plugin data? + プラグインデータを削除しますか? + + + Delete plugin data from Entry(s)? + エントリーからプラグインデータを削除しますか? + + + Passkey + パスキー + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + タグ + QtIOCompressor @@ -7770,43 +9265,62 @@ CPU アーキテクチャー: %2 内部 zlib エラー: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - レポートから期限切れのエントリーを除外する - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. エントリーをダブルクリックすると編集できます。 List of entry URLs - + エントリーのURLの一覧 Entry has no URLs set - + エントリーには URL が設定されていません Allowed URLs - + 許可されたURL Entry has no Browser Integration settings - + エントリーにはブラウザー統合設定がありません Denied URLs - + 拒否されたURL (Excluded) @@ -7818,11 +9332,11 @@ CPU アーキテクチャー: %2 Please wait, browser statistics is being calculated… - + ブラウザー統計の生成中です。しばらくお待ちください... No entries with a URL, or none has browser extension settings saved. - + URL が設定されているエントリーが存在しないか、ブラウザー統合の設定が保存されていません。 Title @@ -7848,47 +9362,56 @@ CPU アーキテクチャー: %2 Exclude from reports レポートから除外 + + Expire Entry(s)… + エントリーを有効期限切れにする… + + + Only show entries that have a URL + URL が登録されたエントリーのみ表示する + + + Only show entries that have been explicitly allowed or denied + 明確に許可または拒否されたエントリーのみ表示する + + + Show expired entries + 期限切れのエントリーを表示する + + + (Expired) + (期限切れ) + + + Delete plugin data from Entry(s)… + エントリーからプラグインデータを削除... + ReportsWidgetHealthcheck - Exclude expired entries from the report - レポートから期限切れのエントリーを除外する + Show expired entries + 期限切れのエントリーを表示する - Also show entries that have been excluded from reports - レポートから除外されているエントリーも表示する + (Expired) + (期限切れ) Hover over reason to show additional details. Double-click entries to edit. 理由にマウスオーバーすると追加の詳細が表示されます。エントリーをダブルクリックすると編集できます。 - - Bad - Password quality - 悪い - Bad — password must be changed 悪い — パスワードを変更する必要があります - - Poor - Password quality - 貧弱 - Poor — password should be changed - 貧弱 — パスワードを変更する必要があります - - - Weak - Password quality - 弱い + 非常に脆弱 — パスワードを変更する必要があります Weak — consider changing the password - 弱い — パスワードの変更を検討してください + 脆弱 — パスワードの変更を検討してください (Excluded) @@ -7904,7 +9427,7 @@ CPU アーキテクチャー: %2 Congratulations, everything is healthy! - 全て健全です。おめでとうございます! + すべて健全です。おめでとうございます! Title @@ -7934,6 +9457,14 @@ CPU アーキテクチャー: %2 Exclude from reports レポートから除外 + + Expire Entry(s)… + エントリーを有効期限切れにする… + + + Show entries that have been excluded from reports + レポートから除外されたエントリーを表示 + ReportsWidgetHibp @@ -8029,6 +9560,77 @@ CPU アーキテクチャー: %2 Exclude from reports レポートから除外 + + Expire Entry(s)… + エントリーを有効期限切れにする… + + + + ReportsWidgetPasskeys + + Export + エクスポート + + + Import + インポート + + + List of entry URLs + エントリーのURLの一覧 + + + Title + タイトル + + + Path + パス + + + Username + ユーザー名 + + + URLs + URL + + + Edit Entry… + エントリーを編集… + + + Delete Entry(s)… + エントリーを削除… + + + Relying Party + サービス提供者 (Relying Party) + + + Show expired entries + 期限切れのエントリーを表示する + + + (Expired) + (期限切れ) + + + Export Confirmation + エクスポートの確認 + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + パスキーファイルを安全でない環境に保存すると、盗難や不正使用の被害を受ける可能性があります。本当に続行しますか? + + + Please wait, list of entries with passkeys is being updated… + しばらくお待ちください。パスキーを持つエントリーは更新中です... + + + No entries with passkeys. + パスキーが登録されたエントリーはありません。 + ReportsWidgetStatistics @@ -8203,6 +9805,14 @@ CPU アーキテクチャー: %2 No agent running, cannot list identities. エージェントが実行されていないため、ID の一覧を取得できません。 + + Failed to remove all SSH identities from agent. + SSH ID をエージェントから削除できませんでした。 + + + All SSH identities removed from agent. + すべての SSH ID をエージェントから削除しました。 + SearchHelpWidget @@ -8216,7 +9826,7 @@ CPU アーキテクチャー: %2 Every search term must match (ie, logical AND) - 用語は全て一致する必要があります (つまり論理積) + 用語はすべて一致する必要があります (つまり論理積) Modifiers @@ -8269,10 +9879,14 @@ CPU アーキテクチャー: %2 Search Help 検索のヘルプ + + Save Search + 検索語を保存 + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - (%1) を検索… + 検索 (%1)… Case sensitive @@ -8343,31 +9957,10 @@ CPU アーキテクチャー: %2 Confirm when passwords are retrieved by clients クライアントがパスワードを取得する際に確認する - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">この設定は - ゴミ箱の確認ダイアログの無効化を上書きしません</span></p></body></html> - - Confirm when clients request entry deletion クライアントがエントリーの削除を要求する際に確認する - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>これは、まずデータベースのロックを解除せずにパスワードを検索する特定のアプリケーションとの互換性を改善します。</p><p>しかしながら、これを有効にすると一定時間経過してタイムアウトするまでにデータベースのロックが解除されなかった場合にクライアントがクラッシュする可能性があります。 (通常は 25 秒ですがアプリケーションによっては異なる値が設定されている可能性があります)</p></body></html> - - Prompt to unlock database before searching 検索する前にデータベースのロック解除を確認する @@ -8392,6 +9985,14 @@ CPU アーキテクチャー: %2 Save current changes to activate the plugin and enable editing of this section. プラグインをアクティブにするために現在の変更を保存し、このセクションの編集を有効にしてください。 + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8500,8 +10101,12 @@ CPU アーキテクチャー: %2 TagModel - All - 全て + Clear Search + 検索語を消去 + + + All Entries + すべてのエントリー Expired @@ -8509,7 +10114,26 @@ CPU アーキテクチャー: %2 Weak Passwords - 弱いパスワード + 脆弱なパスワード + + + + TagView + + Remove Search + 検索語を削除 + + + Remove Tag + タグを削除 + + + Confirm Remove Tag + タグ削除の確認 + + + Remove tag "%1" from all entries in this database? + このデータベースのすべてのエントリーからタグ "%1" を削除しますか? @@ -8622,7 +10246,7 @@ Example: JBSWY3DPEHPK3PXP Are you sure you want to delete TOTP settings for this entry? - このエントリーの TOTP 設定を削除してもよろしいですか? + 本当にこのエントリーの TOTP 設定を削除しますか? @@ -8667,27 +10291,7 @@ Example: JBSWY3DPEHPK3PXP WelcomeWidget Start storing your passwords securely in a KeePassXC database - KeePassXC データベースに安全にパスワードを保管する - - - Create new database - 新しいデータベースを作成する - - - Open existing database - 既存のデータベースを開く - - - Import from KeePass 1 - KeePass 1 からインポートする - - - Import from 1Password - 1Password からインポートする - - - Import from CSV - CSV からインポートする + KeePassXC データベースで安全なパスワード保管の強化を開始します Recent databases @@ -8701,6 +10305,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 KeePassXC %1 へようこそ + + Create Database + データベースを作成 + + + Open Database + データベースを開く + + + Import File + ファイルをインポート + WinUtils @@ -8717,31 +10333,8 @@ Example: JBSWY3DPEHPK3PXP グローバルショートカットを登録できませんでした - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - %1 インターフェースなし, スロット %2 - General: 全般: @@ -8753,14 +10346,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - ハードウェアトークンを更新 - - - Refresh - 再読み込み - Hardware key slot selection ハードウェアキースロットの選択 @@ -8793,10 +10378,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove チャレンジレスポンスの設定 (変更か削除をクリックしてください) - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>セキュリティ対策として <a href="https://www.yubico.com/">YubiKey</a> や <a href="https://onlykey.io">OnlyKey</a> を使用できます。</p><p>それらのスロットの 1 つを <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 チャレンジレスポンス</a> に設定する必要があります。</p> - Detecting hardware keys… ハードウェアキーを検出中… @@ -8805,35 +10386,32 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected 検出したハードウェアキーはありません - - - YubiKeyInterface - %1 Invalid slot specified - %2 - 不正なスロットが指定されました: %1 - %2 + Refresh hardware keys + ハードウェアトークンを初期化 + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p><a href="https://www.yubico.com/">YubiKey</a> または <a href="https://onlykey.io">OnlyKey</a> をお持ちの場合、セキュリティをさらに強化できます。</p><p><a href="https://docs.yubico.com/yesdk/users-manual/application-otp/challenge-response.html">チャレンジレスポンス</a>に設定されたスロットが 1 つ必要です。</p> + + + Hardware keys found, but no slots are configured + ハードウェアキーを検出しましたが、スロットが設定されていません YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] チャレンジレスポンス - スロット %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC インターフェースが初期化されていません。 - - Hardware key is currently in use. - ハードウェアキーは現在使用中です。 - Could not find or access hardware key with serial number %1. Please present it to continue. - シリアルナンバー %1 のハードウェアキーが見つからない、またはアクセスできませんでした。正しく設定して続行してください。 + シリアルナンバー %1 のハードウェアキーが見つからない、またはアクセスできませんでした。続行するには正しく挿入してください。 Hardware key is locked or timed out. Unlock or re-present it to continue. - ハードウェアキーがロックされているか、タイムアウトしました。ロックを解除するか、正しく設定し直してから続行してください。 + ハードウェアキーがロックされているか、タイムアウトしました。続行するにはロック解除または再挿入してください。 Hardware key was not found or is not configured. @@ -8843,6 +10421,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 チャレンジレスポンスでエラーが発生しました。PCSC のエラーコード: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - スロット %3, %4 + + + Press + USB Challenge-Response Key interaction request + Press + + + Passive + USB Challenge-Response Key no interaction required + Passive + YubiKeyInterfaceUSB @@ -8850,14 +10443,6 @@ Example: JBSWY3DPEHPK3PXP Unknown 不明 - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] 設定済みスロット - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] チャレンジレスポンス - スロット %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8872,10 +10457,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB インターフェースが初期化されていません。 - - Hardware key is currently in use. - ハードウェアキーは現在使用中です。 - Could not find hardware key with serial number %1. Please plug it in to continue. シリアルナンバー %1 のハードウェアキーが見つかりませんでした。続行するにはハードウェアキーを接続してください。 @@ -8892,5 +10473,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 チャレンジレスポンスでエラーが発生しました: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - スロット %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - スロット %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_km.ts b/share/translations/keepassxc_km.ts new file mode 100644 index 000000000..cd8dfdf59 --- /dev/null +++ b/share/translations/keepassxc_km.ts @@ -0,0 +1,10458 @@ + + + AboutDialog + + About KeePassXC + អំពី KeePassXC + + + About + អំពី + + + 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> + + + KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3. + KeePassXC ត្រូវបានចែកចាយ តាមលក្ខន្តិកៈរបស់ GNU General Public License (GPL) កំណែទី២។ + + + Project Maintainers: + អ្នកថែទាំគម្រោង + + + Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. + អគុណអណែកដល់ក្រុម KeePassXC ទៅ debfx ចំពោះផ្តើមបង្កើត KeePassX ។ + + + Contributors + អ្នករួមចំណែក + + + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors"> មើលការរួមចំណែកនៅលើ  GitHub</a> + + + Debug Info + ព័ត៌មានបំបាត់កំហុស + + + Include the following information whenever you report a bug: + បញ្ចុលពត៌មានខាងក្រោមនៅពេលអ្នករាយការណ៍ពីកំហុស + + + Copy to clipboard + ចម្លងទៅការខ្ទាស់ + + + + AccessControlDialog + + KeePassXC - Access Request + KeePassXC - សំណើចូលប្រើ + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + អត់មាន/មិនមានផ្លូវ​ចូលទៅអនុវត្តន៍បាន។ សូមសួរទៅអតិថិជន​ម្តងទៀតថាតើវាប្រាកដជាមាន + + + <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>កំពុងស្នើសុំចូលទៅកាន់់:</p></body></html> + + + Name + ឈ្មោះ + + + PID + PID + + + Executable + ប្រតិបត្តិ + + + Command Line + Command Line + + + Details + ព័ត៌មានលម្អិត + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + ការសម្រេចចិត្តរបស់អ្នកនឹងត្រូវបានចងចាំសម្រាប់រយៈពេលខណៈពេលដែលទាំងអតិថិជនស្នើសុំ និង KeePassXC កំពុងដំណើរការ។ + + + Remember + ចងចាំ + + + Allow Selected + អនុញ្ញាតឱ្យជ្រើសរើស + + + Deny All && Future + បដិសេធទាំងអស់ && អនាគត + + + Allow All && &Future + អនុញ្ញាតទាំងអស់ និងអនាគត + + + + AccessControlDialog::DenyButton + + Deny for this program + បដិសេធ កម្មវិធីមួយនេះ + + + + AgentSettingsWidget + + Enable SSH Agent integration + ភ្នាក់ងារ SSH អាចរួមបញ្ចូលបាន + + + Use Pageant + ការប្រើ ការកម្សាន្ត + + + Use OpenSSH + ការប្រើ SSH ដោយចំហរ + + + Use both agents + ប្រើភ្នាក់ងារទាំងពីរ។ + + + SSH_AUTH_SOCK override + បដិសេធ SSH_AUTH_SOCK + + + SSH_AUTH_SOCK value + តម្លៃ SSH_AUTH_SOCK + + + (empty) + (ទទេរ) + + + SSH_SK_PROVIDER value + តម្លៃ SSH_SK_PROVIDER + + + SSH_SK_PROVIDER override + ការបដិសេធ SH_SK_PROVIDER + + + No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. + គ្មានច្រក SSH ដែលអាចប្រើបាន ។ ត្រូវប្រកដថា SSH_AUTH_SOCK មានបរិយាកាសអថេរ ឬកំណត់ការបដិសេធ។ + + + SSH Agent connection is working! + ការតភ្ជាប់របស់ភ្នាក់ងារ SHH កំពុងដំណើរការហើយ! + + + + ApplicationSettingsWidget + + Application Settings + ការកំណត់របស់កម្មវិធី + + + General + ទូទៅ + + + Security + សន្តិសុខ + + + This setting cannot be enabled when minimize on unlock is enabled. + ការកំណត់នេះមិនអាចដំណើរការទេ កាលណាដំណើរការមុខងារ minimize on unlock ។ + + + Access error for config file %1 + កំហុសពេលចូលប្រើ ដោយសារឯកសារប្រមូលបាន ១% + + + Icon only + តែរូបតំណាងទេ + + + Text only + តែអត្ថបទទេ + + + Text beside icon + អត្ថបទជិតរូបតំណាង + + + Text under icon + អត្ថបទក្រោមរូបតំណាង + + + Follow style + តាមស្ទីល + + + Monochrome + ពណ៌តែមួយ + + + Monochrome (light) + មួយពណ៌ (ភ្លឺ) + + + Monochrome (dark) + មួយពណ៌ (ងងឹត) + + + Colorful + ពណ៌​ចម្រុះ + + + You must restart the application to set the new language. Would you like to restart now? + អ្នកត្រូវចាប់ផ្តើមកម្មវិធីឡើងវិញ ដើម្បីកំណត់ភាសាថ្មី។ ចង់ចាប់ផ្តើមឡើងវិញទេ? + + + Select backup storage directory + ជ្រើសរើសការបម្រុងទុកបញ្ចីផ្ទុក + + + Confirm Reset + បញ្ជាក់ការកំណត់ឡើងវិញ + + + Are you sure you want to reset all settings to default? + តើអ្នកប្រាកដទេថាចង់កំណត់ឡើងវិញទាំងអស់ទៅជាលំនាំដើមវិញ? + + + Import KeePassXC Settings + នាំចូលការកំណត់ KeePassXC + + + Failed to import settings from %1, not a valid settings file. + បានបរាជ័យក្នុងការនាំចូលការកំណត់ %1 មិនមែនជាឯកសារកំណត់ត្រឹមត្រូវទេ។ + + + Export KeePassXC Settings + នាំចេញការកំណត់ KeePassXC + + + Small + តូច + + + Normal + ធម្មតា + + + Medium + មធ្យម + + + Large + + + + Custom + + + + + ApplicationSettingsWidgetGeneral + + Basic Settings + ការកំណត់មូលដ្ឋាន + + + Startup + ចាប់ផ្ដើម + + + Start only a single instance of KeePassXC + ចាប់ផ្តើមតែករណី KeePassXC តែមួយគត់។ + + + Automatically launch KeePassXC at system startup + ចាប់បើក KeePassXC ដោយស្វ័យប្រវត្ត ពេលប្រព័ន្ធម៉ាស៊ីនផ្តើមបើក។ + + + Minimize window at application startup + បង្រួមទំហំបង្អួច ពេលផ្តើមបើកកម្មវិធី។ + + + Minimize window after unlocking database + បង្រួមទំហំបង្អួច ក្រោយពីដោះសារឃ្លាំងទិន្នន័យរួច។ + + + Remember previously used databases + ចំណាំឃ្លាំងទិន្នន័យដែលធ្លាបប្រើពីមុន។ + + + recent files + ឯកសារថ្មីៗ + + + Load previously open databases on startup + ផ្ទុកឃ្លាំងទិន្នន័យដែលបើមុននេះ ពេលចាប់ប្រើ + + + Remember database key files and security dongles + ចាំឯកសារសោរឃ្លាំងទិន្នន័យ និងដុំភ្ជាប់សុវត្ថិភាព + + + Check for updates at application startup once per week + ឆែករកបច្ចុប្បន្នភាព ពេលចាប់ប្រើកម្មវិធីភ្លាម + + + Include beta releases when checking for updates + បញ្ចូលការចេញផ្សាយសាកល្បង ពេលឆែករកបច្ចុប្បន្ន + + + File Management + ការគ្រប់គ្រងឯកសារ + + + Automatically save after every change + រក្សាទុកដោយស្វ័យប្រវត្ត រាល់ក្រោយពេលផ្លាស់ប្តូរ + + + Automatically save when locking database + រក្សាទុកដោយស្វ័យប្រវត្ត ពេលចាក់សោរឃ្លាំងទិន្នន័យ។ + + + Automatically save non-data changes when locking database + រក្សាទុកដោយស្វ័យប្រវត្ត នូវការផ្លាស់ប្តូរមិនមែនទិន្នន័យ ពេលចាក់សោរឃ្លាំងទិន្នន័យ។ + + + Automatically reload the database when modified externally + រើឃ្លាំងទិន្នន័យឡើងវិញ ដោយស្វ័យប្រវត្ត កាលណាមានការប្រែប្រួលពីក្រៅ។ + + + Backup database file before saving + បម្រុងទុកឯសារឃ្លាំងទិន្នន័យ មុនពេលរក្សាទុក។ + + + {DB_FILENAME}.old.kdbx + {DB_FILENAME}.old.kdbx + + + Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) + ប្រើវិធីសន្សំជំនួស (អាចដោះស្រាយបញ្ហាជាមួយ Dropbox, Google Drive, GVFS ជាដើម) + + + Temporary file moved into place + ឯកសារ​បណ្ដោះ​អាសន្ន​ត្រូវ​បាន​ផ្លាស់ទី​ទៅ​កន្លែង + + + Directly write to database file (dangerous) + ការសរសេរដោយផ្ទាល់ទៅឯកសារឃ្លំាងទិន្នន័យ (មានគ្រោះថ្នាក់) + + + Entry Management + ការគ្រប់គ្រងទិន្នន័យបញ្ចូល + + + Use group icon on entry creation + Use group icon on entry creation +ប្រើរូបតំណាងពេលបង្កើតក្រុមថ្មី + + + Minimize when opening a URL + បង្រួមពេលបើកURL + + + Hide window when copying to clipboard + លាក់ផ្ទាំងពេលថតចម្លងទៅឃ្លីបបត + + + Minimize + បង្រួម + + + Drop to background + ទម្លាក់ទៅផ្ទៃខាងក្រោយ + + + Favicon download timeout: + អស់ពេលក្នុងការទាញយករូបតំណាង + + + Website icon download timeout in seconds + រូបគេហទំព័រទាញយកអស់ពេលក្នុងពេលប៉ុន្មានវិនាទី + + + sec + Seconds + វិនាទី + + + User Interface + ផ្ទៃមុខសម្រាប់អ្នកប្រើ + + + Toolbar button style + ស្ទីលប៊ូតុងរបារឧបករណ៍ + + + Movable toolbar + របារឧបករណ៍ចល័ត + + + Language selection + ជ្រើសរើសភាសា + + + Language: + ភាសា៖ + + + (restart program to activate) + (ចាប់ផ្តើមកម្មវិធីឡើងវិញដើម្បីដំណើរការ) + + + Toolbar button style: + ស្ទីលប៊ូតុងរបារឧបករណ៍៖ + + + Show passwords in color + ការបង្ហាញពាក្យសម្ងាត់ជាពណ៌ + + + Use monospaced font for notes + ប្រើប្រាស់ពុម្ពអក្សរទំហំតែមួយសម្រាប់កំណត់ចំណាំ + + + Minimize instead of app exit + បង្រួមឲ្យតូចជំនួសឱ្យការចាកចេញពីកម្មវិធី + + + Show a system tray icon + ការបង្ហាញពីរូបតំណាងនៃថាសប្រព័ន្ធ + + + Tray icon type + ប្រភេទរូបថាស + + + Tray icon type: + ប្រភេទរូបតំណាង + + + Hide window to system tray when minimized + លាក់ផ្ទាំងវីនដូទៅកានថាសប្រព័ន្ធ នៅពេលបង្រួមឲ្យតូច + + + Reset settings to default… + ការកំណត់ឡើងវិញទៅជាលំនាំដើម… + + + Auto-Type + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Use entry title to match windows for global Auto-Type + ប្រើប្រាស់ចំណងជើងទិន្នន័យបញ្ចូលដើម្បីឲ្យត្រូវគ្នានឹងវីនដូសម្រាប់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិជាទូទៅ + + + Use entry URL to match windows for global Auto-Type + ប្រើប្រាស់ URL ទិន្នន័យបញ្ចូលដើម្បីឲ្យត្រូវនឹងវីនដូសម្រាប់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិជាទូទៅ + + + Always ask before performing Auto-Type + ត្រូវតែសួរមុនពេលដំណើរការមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិជានិច្ច + + + Hide expired entries from Auto-Type + លាក់ទិន្នន័យបញ្ចូលដែលផុតកំណត់ពីមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Re-lock previously locked database after performing Auto-Type + ចាក់សោមូលដ្ឋានទិន្នន័យដែលបានចាក់សោពីមុនឡើងវិញ បន្ទាប់ពីប្រើប្រាស់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Auto-Type start delay: + ការពន្យារពេលមុនការសរសេរចូលដោយស្វ័យប្រវត្តិចាប់ផ្តើម: + + + Global Auto-Type shortcut: + ផ្លូវកាត់សម្រាប់ការសរសេរចូលដោយស្វ័យប្រវត្តិទូទាំងឧបករណ៍ប្រើប្រាស់ + + + Auto-type start delay milliseconds + ការពន្យារពេលមីលីវិនាទីមុនការសរសេរចូលដោយស្វ័យប្រវត្តិចាប់ផ្តើម + + + ms + Milliseconds + ម.វិ. + + + Auto-Type typing delay: + ការពន្យារពេលសរសេរចូលនៃការសរសេរចូលដោយស្វ័យប្រវត្តិ + + + Global auto-type shortcut + ផ្លូវកាត់សម្រាប់ការសរសេរចូលដោយស្វ័យប្រវត្តិទូទាំងឧបករណ៍ប្រើប្រាស់ + + + Auto-type character typing delay milliseconds + ការពន្យារពេលការសរសេរតួអក្សរនៃការសរសេរចូលដោយស្វ័យប្រវត្តិ + + + Remember last typed entry for: + ចងចាំការបញ្ចូលដោយសរសេរចុងក្រោយសម្រាប់: + + + On database unlock, show entries that will expire within + នៅលើការដោះសោមូលដ្ឋានទិន្នន័យ បង្ហាញធាតុដែលនឹងផុតកំណត់នៅក្នុង + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + ថ្ងៃ + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + បង្ហាញរបាឧបករណ៍ + + + Show the menu bar by pressing the Alt key + បង្ហាញរបារឧបករណ៍ដោយចុចគ្រាប់ចុច Alt + + + Show menubar + បង្ហាញរបាឧបករណ៍ + + + Import settings… + នាំចូលការកំណត់… + + + Export settings… + នាំចេញលការកំណត់… + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + + + + ApplicationSettingsWidgetSecurity + + Timeouts + អស់ពេល + + + Database lock timeout seconds + ការចាក់សោមូលដ្ឋានទិន្នន័យអស់ពេលនៅប៉ុន្មានវិនាទីទៀត + + + sec + Seconds + វិនាទី + + + Clear clipboard after + ជម្រះឃ្លីបបតបន្ទាប់ពី + + + Clear search query after + ជម្រះសំណួរនៅក្នុង ស្វែងរក​ បន្ទាប់ពី + + + min + Minutes + នាទី + + + Clipboard clear seconds + សម្អាតឃ្លីបបតក្នុងវិនាទី + + + Lock databases after inactivity of + ចាក់សោមូលដ្ឋានទិន្នន័យបន្ទាប់ពីមិនធ្វើសកម្មភាពនៃ + + + Convenience + ភាពងាយស្រួល + + + Enable database quick unlock (Touch ID / Windows Hello) + បើកការដោះសោរហ័សនៃឃ្លំាងទិន្នន័យ (Touch ID / Windows Hello) + + + Lock databases when session is locked or lid is closed + ចាក់សោមូលដ្ឋានទិន្នន័យនៅពេលដែលវគ្គត្រូវបានចាក់សោ ឬអេក្រង់ត្រូវបានបិទ។ + + + Lock databases after minimizing the window + ចាក់សោមូលដ្ឋានទិន្នន័យបន្ទាប់ពីបង្រួមវីនដូឲ្យតូច + + + Hide passwords when editing them + លាក់ពាក្យសម្ងាត់ពេលកែវា + + + Use placeholder for empty password fields + កន្លែងសម្រាប់ដាក់ពាក្យសម្ងាត់ទទេ + + + Hide passwords in the entry preview panel + លាក់ពាក្យសម្ងាត់នៅក្នុងផ្ទាំងមើលជាមុន + + + Privacy + ឯកជនភាព + + + Use DuckDuckGo service to download website icons + ប្រើសេវាកម្ម DuckDuckGo ដើម្បីទាញយករូបតំណាងពីគេហទំព័រ + + + Hide TOTP in the entry preview panel + លាក់ TOTP នៅក្នុងបន្ទះមើលជាមុនធាតុ + + + Lock databases when switching user + + + + Lock Options + ជម្រើសចាក់សោ + + + Hide notes in the entry preview panel + + + + + AutoType + + The requested Auto-Type sequence cannot be used due to an error: + ​បាន​ស្នើលំដាប់ស្វ័យ​ប្រវត្តិ​ដែល​​ប្រភេទ​មិន​អាច​ត្រូវ​បាន​ប្រើ​ដោយ​សារ​តែ​មាន​បញ្ហា៖ + + + Auto-Type Error + កំហុស​ដោយ​ស្វ័យប្រវត្តិ + + + Permission Required + ការអនុញ្ញាតត្រូវបានទាមទារ + + + KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. + KeePassXC ទាមទារ​ការអនុញ្ញាត​ការ​ប្រើប្រាស់​ដើម្បី​អនុវត្ត​កម្រិត​ចូល​ប្រភេទ​ស្វ័យប្រវត្តិ។ ប្រសិនបើអ្នកបានផ្តល់ការអនុញ្ញាតរួចហើយ អ្នកប្រហែលជាត្រូវចាប់ផ្តើមឡើងវិញ KeePassXC ។ + + + KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. + KeePassXC ទាមទារសិទ្ធិចូលប្រើ និងការអនុញ្ញាតថតអេក្រង់ ដើម្បីដំណើរការរួមប្រភេទស្វ័យប្រវត្តិ។ ការថតអេក្រង់គឺ ចាំបាច់ដើម្បីប្រើផ្ទាំងចំណងជើងដើម្បីស្វែងរកធាតុ។ ប្រសិនបើអ្នកបានអនុញ្ញាតរួចហើយ អ្នកប្រហែលជាត្រូវចាប់ផ្តើម KeePassXC ឡើងវិញ។ + + + Invalid entry provided + ការផ្ដល់ឲ្យការបញ្ចូលមិនត្រឹមត្រូវ + + + Bracket imbalance detected, found extra { or } + បានរកឃើញអតុល្យភាពក្នុងតង្កៀប { or } រកឃើញបន្ថែម + + + Too many repetitions detected, max is %1: %2 + បានរកឃើញពាក្យដដែលៗច្រើនពេក អតិបរមាគឺ %1: %2 + + + Very slow key press detected, max is %1: %2 + ការចុចលើគ្រាប់ចុចយឺតខ្លាំង ត្រូវបានរកឃើញ អតិបរមាគឺ %1: %2 + + + Very long delay detected, max is %1: %2 + បានរកឃើញការពន្យាពេលយូរពេក ជាអតិបរមាគឺ %1: %2 + + + Entry does not have attribute for PICKCHARS: %1 + ការបញ្ចូលមិនមានលក្ខណៈសម្រាប់ PICKCHARS៖ %1 + + + Invalid placeholder: %1 + កន្លែងរក្សាទុកមិនត្រឹមត្រូវ៖ %1 + + + + AutoTypeAssociationsModel + + Window + វីនដូ + + + Sequence + លំដាប់ + + + (empty) + (ទទេរ) + + + Default sequence + លំដាប់លំនាំដើម + + + + AutoTypeMatchModel + + Group + ក្រុម + + + Title + ចំណងជើង + + + Username + ឈ្មោះអ្នកប្រើ + + + Sequence + លំដាប់ + + + + AutoTypePlatformX11 + + Sequence aborted: Caps Lock is on + លំដាប់ដែលបានបោះបង់៖ អក្សរ​ធំ​ជាប់ត្រូវបានបើក + + + Sequence aborted: Modifier keys held by user + លំដាប់ដែលបានបោះបង់៖ សោ​កែប្រែ​ដែល​កាន់​ដោយ​អ្នក​ប្រើ + + + Unable to get valid keycode for key: + មិនអាចទទួលបានលេខកូដត្រឹមត្រូវសម្រាប់សោបានទេ៖ + + + Trying to send invalid keyboard symbol. + + + + + AutoTypeSelectDialog + + Auto-Type - KeePassXC + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ - KeePassXC + + + Double click a row to perform Auto-Type or find an entry using the search: + ចុចពីរដងលើជួរដេកមួយ ដើម្បីដំណើរការមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ ឬស្វែងរកទិន្នន័យបញ្ចូលដោយប្រើការស្វែងរក៖ + + + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> + <p>អ្នកអាចប្រើសំណួរស្វែងរកកម្រិតខ្ពស់ដើម្បីស្វែងរកធាតុណាមួយនៅក្នុងមូលដ្ឋានទិន្នន័យបើកចំហរបស់អ្នក។ ផ្លូវកាត់ខាងក្រោមមានប្រយោជន៍៖ <br/> +Ctrl+F - បិទ/បើកការស្វែងរកមូលដ្ឋានទិន្នន័យ<br/> +Ctrl+1 - វាយឈ្មោះអ្នកប្រើប្រាស់<br/> +Ctrl+2 - វាយពាក្យសម្ងាត់ <br/> +Ctrl+3 - វាយ TOTP<br/> +Ctrl+4 - ប្រើក្តារចុចនិម្មិត (វីនដូតែប៉ុណ្ណោះ) </p> + + + Search all open databases + ស្រាវជ្រាវរាល់ទិន្នន័យចំហទាំងអស់ + + + Search… + ស្វេងរក + + + Type Sequence + ប្រភេទតាមលំដាប់ + + + Cancel + បញ្ឈប់ + + + Type {USERNAME} + វាយឈ្មោះអ្នកប្រើប្រាស់ + + + Type {PASSWORD} + វាយលេខសម្ងាត់ + + + Type {TOTP} + វាយTOTP + + + Copy Username + ចម្លងឈ្មោះអ្នកប្រើ + + + Copy Password + ចម្លងពាក្យសម្ងាត់ + + + Copy TOTP + ចម្លង TOTP + + + Use Virtual Keyboard + ប្រើក្តារចុចនិម្មិត + + + + BrowserAccessControlDialog + + KeePassXC - Browser Access Request + KeePassXC - សំណើចូលប្រើកម្មវិធីរុករក​តាមអ៊ីនធឺណិត + + + %1 is requesting access to the following entries: + % 1 គឺកំពុងស្នើសុំចូលប្រើការបញ្ចូលខាងក្រោម៖ + + + Remember access to checked entries + ចងចាំការចូលប្រើទិន្នន័យបញ្ចូលដែលបានដាកធីក + + + Remember + ចងចាំ + + + Allow access to entries + អនុញ្ញាតឱ្យចូលប្រើប្រាស់ទិន្នន័យបញ្ចូល + + + Allow Selected + អនុញ្ញាតឱ្យជ្រើសរើស + + + Deny All + បដិសេធទាំងអស់ + + + Disable for this site + បិទដំណើរការសម្រាប់គេហទំព័រនេះ + + + Undo + មិនធ្វើវិញ + + + + BrowserEntrySaveDialog + + Ok + យល់ព្រម + + + Cancel + បញ្ឈប់ + + + You have multiple databases open. +Please select the correct database for saving credentials. + អ្នកមានពហុមូលដ្ឋានទិន្នន័យបើក។ +សូមជ្រើសរើសមូលដ្ឋានទិន្នន័យត្រឹមត្រូវសម្រាប់ការរក្សាទុកព័ត៌មានផ្ទៀងផ្ទាត់។ + + + KeePassXC - Select Database + KeePassXC - ជ្រើសរើសមូលដ្ឋានទិន្នន័យ + + + + BrowserPasskeysConfirmationDialog + + Cancel + បោះបង់ + + + Update + ធ្វើបច្ចុប្បន្នភាព + + + Authenticate + ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ + + + Register new + ចុះឈ្មោះថ្មី + + + Register + ចុះឈ្មោះ + + + Timeout in <b>%n</b> seconds... + អស់ពេលនៅក្នុង <b>%n</b> វិនាទី... + + + Relying Party: %1 + + + + Username: %1 + Username: %1 + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + + + + BrowserService + + A request for creating a new group "%1" has been received. +Do you want to create this group? + + ការស្នើសុំសម្រាប់ធ្វើការបង្កើតក្រុមថ្មី "%1" ត្រូវបានទទួលរួចហើយ។ +តើអ្នកចង់បង្កើតក្រុមនេះឬទេ? + + + + You have received an association request for the following database: +%1 + +Give the connection a unique name or ID, for example: +chrome-laptop. + អ្នកបានទទួលសំណើការតភ្ជាប់សម្រាប់មូលដ្ឋានទិន្នន័យខាងក្រោម៖ +%1 + +ផ្តល់ឈ្មោះ ឬលេខសម្គាល់ពិសេសសម្រាប់ការតភ្ជាប់ ឧទាហរណ៍៖ +chrome-កុំព្យូទ័រ។ + + + Save and allow access + រក្សាទុក និងអនុញ្ញាតអោយចូលប្រើប្រាស់ + + + A shared encryption key with the name "%1" already exists. +Do you want to overwrite it? + ឃីបម្លែងកូដដែលបានចែករំលែកដែលមានឈ្មោះ "%1" មានរួចហើយ។ +តើអ្នកចង់សរសេរជាន់លើវាឬទេ? + + + Do you want to update the information in %1 - %2? + តើ​អ្នក​ចង់​អាប់ដេត​ព័ត៌មាន​នៅក្នុង %1 - %2 ដែរ​ឬ​ទេ? + + + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + + ការស្នើសុំសម្រាប់ការលុបការបញ្ចូល "% 1" ត្រូវបានទទួលយកហើយ។ +តើអ្នកចង់លុបការបញ្ចូលនេះឬទេ? + + + + %1 (Passkey) + %1 (Passkey) + + + KeePassXC - Create a new group + + + + Disable + បិទដំណើរការ + + + KeePassXC - Overwrite existing key? + + + + KeePassXC - Update Entry + + + + KeePassXC - Delete entry + + + + KeePassXC - New key association request + + + + Passkey + + + + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + ចុះឈ្មោះ + + + + BrowserSettingsWidget + + Dialog + ការសន្ទនា + + + This is required for accessing your databases with KeePassXC-Browser + ការធ្វើបែបនេះតម្រូវឱ្យចូលប្រើមូលដ្ឋានទិន្នន័យរបស់អ្នកជាមួយនឹងកម្មវិធីរុករក​តាមអ៊ីនធឺណិតរបស់ KeePassXC + + + Enable browser integration + បើកការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + General + ទូទៅ + + + Enable integration for these browsers: + បើកការរួមបញ្ចូលសម្រាប់កម្មវិធីរុករកទាំងនេះ៖ + + + Vivaldi + Vivaldi + + + &Edge + &គែម + + + Firefox + Firefox + + + Tor Browser + កម្មវិធីរុករក Tor + + + Brave + កម្មវិធី Brave + + + Google Chrome + Google Chrome + + + Chromium + ក្រូមីញ៉ូម + + + Show a notification when credentials are requested + Credentials mean login data requested via browser extension + បង្ហាញសារជូនដំណឹងនៅពេលដែលលិខិតសម្គាល់បានស្នើសុំ + + + Request 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://example.com) + URL រូបគំនូរដែលត្រូវគ្នា (ឧ. https://example.com) + + + Only returns the best matches for a specific URL instead of all entries for the whole domain. + បញ្ជូនតែការផ្គូផ្គងដែលត្រូវបានល្អបំផុតត្រឡប់ទៅកាន់ដែន URL ជាក់លាក់មួយ ជំនួសឱ្យបញ្ចូលទិន្នន័យបញ្ចូលទាំងអស់ទៅកាន់ដែនទាំងមូល។ + + + Return only best-matching credentials + យកតែលិខិតសម្គាល់ដែលផ្គូផ្គងត្រូវបំផុតប៉ុណ្ណោះត្រឡប់មកវិញ។ + + + Returns expired credentials. String [expired] is added to the title. + ប្រគល់ព័ត៌មានសម្ងាត់​ដែល​ផុត​កំណត់។ ខ្សែអក្សរ [ផុតកំណត់] ត្រូវបានបន្ថែមទៅចំណងជើង។ + + + Allow returning expired credentials + អនុញ្ញាតឱ្យទទួលយកព័ត៌មានផ្ទៀងផ្ទាត់ដែលផុតកំណត់ + + + All databases connected to the extension will return matching credentials. + រាល់មូលដ្ឋានទិន្នន័យទាំងអស់ដែលភ្ជាប់ទៅកម្មវិធីបន្ថែមនេះនឹងត្រូវត្រឡប់ទៅកាន់ព័ត៌មានផ្ទៀងផ្ទាត់ដែលត្រូវគ្នា។ + + + Search in all opened databases for matching credentials + Credentials mean login data requested via browser extension + ស្វែងរកនៅក្នុងមូលដ្ឋានទិន្នន័យដែលបានបើកចំហទាំងអស់សម្រាប់ព័ត៌មានផ្ទៀងផ្ទាត់ដែលត្រូវគ្នា។ + + + Advanced + កម្រិតខ្ពស់ + + + Never ask before accessing credentials + Credentials mean login data requested via browser extension + កុំសួរមុនពេលចូលប្រើព័ត៌មានផ្ទៀងផ្ទាត់ + + + Never ask before updating credentials + Credentials mean login data requested via browser extension + កុំសួរមុនពេលធ្វើបច្ចុប្បន្នភាពព័ត៌មានផ្ទៀងផ្ទាត់ + + + Do not ask permission for HTTP Basic Auth + An extra HTTP Basic Auth setting + សូមកុំសុំការអនុញ្ញាតសម្រាប់ HTTP Basic Auth + + + Automatically creating or updating string fields is not supported. + ការបង្កើត ឬការធ្វើបច្ចុប្បន្នភាពកន្លែងបញ្ចូលជួរអក្សរដោយស្វ័យប្រវត្តិមិនអាចប្រើប្រាស់បានទេ។ + + + Return advanced string fields which start with "KPH: " + ត្រឡប់វាលកន្លែងបញ្ចូលខ្សែអក្សរកម្រិតខ្ពស់ដែលចាប់ផ្តើមដោយ "KPH:" + + + Don't display the popup suggesting migration of legacy KeePassHTTP settings. + សូមកុំបង្ហាញផ្ទាំងលេចឡើងការណែនាំឱ្យធ្វើការផ្ទេរនៃការកំណត់ KeePassHTTP ចាស់។ + + + Do not prompt for KeePassHTTP settings migration. + កុំសុំឲ្យផ្ទេរការកំណត់ KeePassHTTP។ + + + Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. + ធ្វើបច្ចុប្បន្នភាពផ្លូវគោលពីរដោយស្វ័យប្រវត្តិសម្រាប់ KeePassXC ឬ keepassxc-proxy នៅក្នុងស្គ្រីបផ្ញើសារដើមនៅពេលចាប់ផ្តើម។ + + + Update native messaging manifest files at startup + ធ្វើបច្ចុប្បន្នភាពទៅឯកសារបង្ហាញសារដើមនៅពេលចាប់ផ្តើម + + + Use a custom proxy location if you installed a proxy manually. + ប្រើប្រាស់ទីតាំងប្រូកស៊ីផ្ទាល់ខ្លួន ប្រសិនបើអ្នកបានដំឡើងប្រូកស៊ីដោយដៃ។ + + + Use a custom proxy location: + Meant is the proxy for KeePassXC-Browser + ប្រើប្រាស់ទីតាំងប្រូកស៊ីផ្ទាល់ខ្លួន៖ + + + Custom proxy location field + កន្លែងបញ្ចូលទីតាំងប្រូកស៊ីផ្ទាល់ខ្លួន + + + Browser for custom proxy file + កម្មវិធីរុករកតាមអ៊ីនធឺណិតសម្រាប់ឯកសារប្រូកស៊ីផ្ទាល់ខ្លួន + + + Browse… + Button for opening file dialog + រុករក… + + + Use a custom browser configuration location: + ការប្រើទីតាំងកំណត់រចនាសម្ព័ន្ធកម្មវិធីរុករកតាមអ៊ីនធឺណិតផ្ទាល់ខ្លួន៖ + + + Browser type: + ប្រភេទកម្មវិធីរុករកតាមអ៊ីនធឺណិត៖ + + + Toolbar button style + ស្ទីលប៊ូតុងរបារឧបករណ៍ + + + Config Location: + ការ​កំណត់​រចនាសម្ព័ន្ធ​ទីតាំង៖ + + + Custom browser location field + កន្លែងបញ្ចូលទីតាំងកម្មវិធីរុករកតាមអ៊ីនធឺណិតផ្ទាល់ខ្លួន + + + Browse for custom browser path + រកមើលផ្លូវកម្មវិធីរុករក​តាមអ៊ីនធឺណិតផ្ទាល់ខ្លួន + + + Custom extension ID: + លេខសម្គាល់កម្មវិធីបន្ថែមផ្ទាល់ខ្លួន៖ + + + Custom extension ID + លេខសម្គាល់កម្មវិធីបន្ថែមផ្ទាល់ខ្លួន + + + Executable Files + ឯកសារដែលអនុវត្តន៍បាន + + + All Files + ឯកសារ​ទាំងអស់ + + + Select custom proxy location + ជ្រើសរើសទីតាំងប្រូកស៊ីផ្ទាល់ខ្លួន + + + Select native messaging host folder location + ជ្រើសរើសទីតាំងថតម៉ាស៊ីនផ្ញើសារដើម​ + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>ការព្រមាន</b> លៃ​តម្រូវ​តែ​ការ​កំណត់​ទាំង​នេះ​បើ​ចាំបាច់។ + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + + + + CloneDialog + + Clone Entry Options + ជម្រើសចូលក្លូន + + + Append ' - Clone' to title + បន្ថែម ' - ក្លូន' ទៅចំណងជើង + + + Replace username and password with references + ជំនួសឈ្មោះ អ្នកប្រើប្រាស់ និងពាក្យសម្ងាត់ដោយឯកសារយោង + + + Copy history + ចម្លងប្រវត្តិ + + + + CsvImportWidget + + size, rows, columns + ទំហំ, ជួរដេក, ជួរឈរ + + + Column Association + ការទំនាក់ទំនងរវាងជួរឈរ + + + Password + ពាក្យសម្ងាត់ + + + Username + ឈ្មោះអ្នកប្រើ + + + Title + ចំណងជើង + + + Group + ក្រុម + + + URL + URL + + + Notes + ចំណាំ + + + TOTP + TOTP + + + Created + បានបង្កើត + + + Last Modified + បានកែប្រែចុងក្រោយ + + + Icon + រូបតំណាង + + + Encoding + ការបំលែងកូដ + + + Codec + កូឌិក + + + Text is qualified by + អត្ថបទត្រូវបានទទួលស្គាល់ដោយ + + + Text qualification + គុណវុឌ្ឍិអត្ថបទ + + + Fields are separated by + កន្លែង​បញ្ចូលត្រូវបានបំបែកដោយ + + + Field separation + ការបំបែកនៃកន្លែង​បញ្ចូល + + + Comments start with + មតិយោបល់ចាប់ផ្តើមជាមួយ + + + Header lines skipped + បន្ទាត់បឋមកថាដែលបានរំលង + + + Number of header lines to discard + ចំនួនបន្ទាត់បឋមកថាដែលត្រូវបោះបង់ចោល + + + First line has field names + ជួរទីមួយមានកន្លែង​បញ្ចូលឈ្មោះ + + + Consider '\' an escape character + ពិចារណាអំពី '\' តួអក្សរ escape character + + + Preview + មើលជាមុន + + + CSV import preview + ការមើលការនាំចូល CSV ជាមុន + + + Not Present + មិនមានវត្តមាន + + + Column %1 + ជួរឈរ %1 + + + [%n more message(s) skipped] + [មានសារបន្ថែមទៀតដែលត្រូវបានរំលង %n] + + + Failed to parse CSV file: %1 + + + + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + ស្លាក + + + + CsvParserModel + + %n row(s) + CSV row count + %n ជួរដេក + + + %n column(s) + CSV column count + %n ជួរឈរ + + + + Database + + Passwords + Root group name + ពាក្យសម្ងាត់ + + + File %1 does not exist. + ឯកសារ %1 មិនមានទេ។ + + + Unable to open file %1. + មិនអាចបើកឯកសារ%1 + + + Error while reading the database: %1 + បញ្ហាខណៈពេលកំពុងអានឃ្លំាងទិន្នន័យ៖ %1 + + + Could not save, database does not point to a valid file. + មិនអាចរក្សាទុកបានទេ ឃ្លំាងទិន្នន័យមិនចង្អុលបង្ហាញទៅឯកសារត្រឹមត្រូវទេ។ + + + Database save is already in progress. + ការរក្សាទុកមូលដ្ឋានទិន្នន័យកំពុងដំណើរការរួចហើយ។ + + + Could not save, database has not been initialized! + មិនអាចរក្សាទុកបានទេ ឃ្លំាងទិន្នន័យមិនត្រូវបានចាប់ផ្តើមទេ! + + + Database file has unmerged changes. + ឯកសារមូលដ្ឋានទិន្នន័យមានការផ្លាស់ប្តូរមិនបញ្ចូលគ្នានា។ + + + %1 +Backup database located at %2 + %1 +មូលដ្ឋានទិន្នន័យបម្រុងទុកមានទីតាំងស្ថិតនៅ %2 + + + Key not transformed. This is a bug, please report it to the developers. + សោមិនបានបំប្លែងទេ។ នេះគឺជាបញ្ហា សូមរាយការណ៍វាទៅអ្នកអភិវឌ្ឍន៍។ + + + Recycle Bin + ធុងសំរាម + + + Database file read error. + + + + No file path was provided. + + + + + DatabaseOpenDialog + + Unlock Database - KeePassXC + ដោះសោទិន្នន័យ - KeePassXC + + + + DatabaseOpenWidget + + Unlock KeePassXC Database + ដោះសោទិន្នន័យ KeePassXC + + + Enter Password: + បញ្ចូលពាក្យសម្ងាត់៖ + + + Password field + កន្លែង​បញ្ចូល​ពាក្យ​សម្ងាត់ + + + Hardware key slot selection + ការជ្រើសរើសរន្ធដោតឃីរបស់ហាតវែរ + + + Key file to unlock the database + ឯកសារសោដើម្បីដោះសោមូលដ្ឋានទិន្នន័យ + + + Browse for key file + រកមើលឯកសារសោ + + + Browse… + រុករក… + + + Unlock Database + ដោះសោទិន្នន័យ + + + Cancel + បញ្ឈប់ + + + Unlock + ដោះសោ + + + Please present or touch your YubiKey to continue… + សូមបង្ហាញ ឬចុច YubiKey របស់អ្នកដើម្បីបន្ត… + + + Database Version Mismatch + កំណែមូលដ្ឋានទិន្នន័យដែលមិនត្រូវគ្នា + + + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. + មូលដ្ឋានទិន្នន័យដែលអ្នកកំពុងព្យាយាមបើកគឺភាគច្រើនបំផុតទំនងជា +បង្កើតឡើងតាមរយៈកំណែថ្មីជាងគេបំផុតរបស់កម្មវិធី KeePassXC នេះ។ + +យ៉ាង​ណា​ក៏​ដោយអ្នក​អាច​ព្យាយាម​បើក​វា​ ប៉ុន្តែកម្មវិធី​ប្រហែល​ជា​មិន​ពេញលេញ +និងកំពុងរក្សាទុកការផ្លាស់ប្តូរណាមួយដែលអាចបណ្តាលឱ្យបាត់បង់ទិន្នន័យ។ + +យើងណែនាំអ្នកឱ្យធ្វើបច្ចុប្បន្នភាពការដំឡើង KeePassXC របស់អ្នក។ + + + Open database anyway + បើកឃ្លំាងទិន្នន័យតាមវិធីណាក៏ដោយ + + + Database unlock canceled. + ការដោះសោឃ្លាំងទិន្នន័យបានលុបចោល។ + + + Unlock failed and no password given + ការដោះសោបរាជ័យ ហើយមិនមានការផ្តល់ពាក្យសម្ងាត់ + + + Unlocking the database failed and you did not enter a password. +Do you want to retry with an "empty" password instead? + +To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. + ការដោះសោទិន្នន័យបរាជ័យ ហើយអ្នកមិនបានបញ្ចូលពាក្យសម្ងាត់ទេ។តើអ្នកចង់ព្យាយាមវាយពាក្យសម្ងាត់ម្តងទៀតដោយវាយពាក្យ"ទទេ" ជំនួសវិញទេ ដើម្បីការពារកំហុសឆ្គងដែលកើតឡើង? អ្នកត្រូវចូលទៅកាន "ការកំណត់ទិន្នន័យ/សុវត្ថិភាព និងកំណត់ពាក្យសម្ងាត់ឡើងវិញ។" + + + Retry with empty password + ព្យាយាមជាថ្មីដោយគ្មានពាក្យសម្ងាត់ + + + Failed to open key file: %1 + បរាជ័យក្នុងការបើកឯកសារសោ៖ %1 + + + Old key file format + ទម្រង់​ឯកសារសោចាស់ + + + You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> + អ្នកកំពុងប្រើប្រាស់ទម្រង់​ឯកសារសោចាស់ ដែលកម្មវិធី KeePassXC ប្រហែលជា<br>ឈប់ប្រើប្រាស់បាននៅពេលអនាគត។<br><br>សូមគិតពិចារណាទៅលើការបង្កើត​ឯកសារសោថ្មីដោយចូលទៅកាន់៖<br><strong>មូលដ្ឋានទិន្នន័យ &gt; សុវត្ថិភាពមូលដ្ឋានទិន្នន័យ &gt; ប្តូរឯកសារសោ។</strong><br> + + + Don't show this warning again + កុំបង្ហាញការព្រមាននេះម្តងទៀត + + + All files + ឯកសារទាំងអស់ + + + Key files + ឯកសារសោ + + + Select key file + ជ្រើសរើសឯកសារសោ + + + Cannot use database file as key file + សោ + + + authenticate to access the database + ផ្ទៀងផ្ទាត់ដើម្បីចូលប្រើប្រាស់មូលដ្ឋានទិន្នន័យ + + + Failed to authenticate with Quick Unlock: %1 + + + + Select Key File: + + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + + + + + DatabaseSettingWidgetMetaData + + Passwords + ពាក្យសម្ងាត់ + + + + DatabaseSettingsDialog + + General + ទូទៅ + + + Security + សន្តិសុខ + + + Database Credentials + ព័ត៌មានផ្ទៀងផ្ទាត់ទិន្នន័យមូលដ្ឋាន + + + Encryption Settings + ការកំណត់ការបំប្លែងជាកូដ + + + Browser Integration + ការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Maintenance + តំហែទាំ + + + KeeShare + KeeShare + + + Secret Service Integration + ការដាក់បញ្ចូលសេវាពាក្យសម្ងាត់ + + + Remote Sync + + + + Database Settings: %1 + + + + + DatabaseSettingsWidgetBrowser + + KeePassXC-Browser settings + KeePassXC-ការកំណត់កម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Disconnect all browsers + ផ្តាច់កម្មវិធីរុករកទាំងអស់ + + + Forget all site-specific settings on entries + បំភ្លេចការកំណត់គេហទំព័រជាក់លាក់ទាំងអស់នៅលើទិន្នន័យបញ្ចូល + + + Refresh database root group ID + រីហ្រេ្វសលេខសម្គាល់ក្រុមឫសមូលដ្ឋានទិន្នន័យ + + + Stored keys + គន្លឹះដែលបានរក្សាទុក + + + Stored browser keys + គន្លឹះកម្មវិធីរុករកដែលបានរក្សាទុក + + + Remove selected key + ដក សដែលបានជ្រើសរើសចេញ + + + Remove + ដកចេញ + + + Delete the selected key? + លុបគន្លឹះដែលបានជ្រើសរើសចោល? + + + Do you really want to delete the selected key? +This may prevent connection to the browser plugin. + តើអ្នកពិតជាចង់លុបសោដែលបានជ្រើសរើសមែនទេ? +នេះអាចបង្ការការតភ្ជាប់ទៅកាន់កម្មវិធីជំនួយកម្មវិធីរុករកតាមអ៊ីនធឺណិតបាន។ + + + Key + សោ + + + Value + តម្លៃ + + + Created + បានបង្កើត + + + Enable Browser Integration to access these settings. + បើកការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិតដើម្បីចូលប្រើការកំណត់ទាំងនេះ។ + + + Do you really want to disconnect all browsers? +This may prevent connection to the browser plugin. + តើអ្នកពិតជាចង់ផ្តាច់កម្មវិធីរុករកតាមអ៊ឺនធឺណិតទាំងអស់មែនទេ? +នេះអាចបង្ការការតភ្ជាប់ទៅកម្មវិធីជំនួយកម្មវិធីរុករកតាមអ៊ឺនធឺណិតបាន។ + + + No shared encryption keys found in KeePassXC settings. + រកមិនឃើញសោអ៊ិនគ្រីបដែលបានចែករំលែកនៅក្នុងការកំណត់ KeePassXC ទេ។ + + + Successfully removed %n encryption key(s) from KeePassXC settings. + បានលុប សោ ការអ៊ិនគ្រីប %n ចេញពីការកំណត់ KeePassXC ដោយជោគជ័យ។ + + + Do you really want forget all site-specific settings on every entry? +Permissions to access entries will be revoked. + តើ​អ្នក​ពិត​ជា​ចង់បំភ្លេចរាល់​ការ​កំណត់នៅក្នុង​តំបន់​បណ្ដាញ​ជាក់លាក់​ទាំងអស់​នៅ​លើ​រាល់​ទិន្នន័យបញ្ចូលដែរឬទេ? +ការអនុញ្ញាតឱ្យចូលប្រើទិន្នន័យបញ្ចូលផ្សេងៗនឹងត្រូវបានបដិសេធ។ + + + Removing stored permissions… + កំពុងដកចេញការអនុញ្ញាតដែលបានរក្សាទុក… + + + Abort + បោះបង់ + + + Successfully removed permissions from %n entry(s). + បានលុបការអនុញ្ញាត % 1 ចេញពីទិន្នន័យ % 2 ដោយជោគជ័យ។ + + + The active database does not contain an entry with permissions. + មូលដ្ឋានទិន្នន័យសកម្មមិនមានទិន្នន័យដែលមានការអនុញ្ញាតទេ។ + + + Refresh database ID + រីហ្រេ្វសលេខសម្គាល់មូលដ្ឋានទិន្នន័យ + + + Do you really want refresh the database ID? +This is only necessary if your database is a copy of another and the browser extension cannot connect. + តើ​អ្នក​ពិត​ជា​ចង់​ផ្រីហ្វ្រេស​លេខ​សម្គាល់​មូលដ្ឋាន​ទិន្នន័យ​ឡើងវិញមែនទេ? +ការធ្វើបែបនេះ មានភាពចាំបាច់តែនៅក្នុងករណីដែលមូលដ្ឋានទិន្នន័យរបស់អ្នក គឺជាច្បាប់ចម្លងផ្សេងទៀត ហើយកម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិតមិនអាចតភ្ជាប់ទៅបានទេ។ + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + បំប្លែងលក្ខណៈ KeePassHTTP ចាស់ទៅជាទិន្នន័យផ្ទាល់ខ្លួនដែលត្រូវគ្នាជាមួយកម្មវិធីរុកតាមអ៊ីនធឺណិត KeePassXC + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + + + + DatabaseSettingsWidgetDatabaseKey + + Add additional protection… + បន្ថែមការការពារបន្ថែមទៀត… + + + 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? + ការព្រមាន! អ្នកមិនទាន់បានកំណត់ពាក្យសម្ងាត់នៅឡើយទេ។ មិនលើកទឹកចិត្តឱ្យប្រើប្រាស់មូលដ្ឋានទិន្នន័យដែលមិនមានពាក្យសម្ងាត់ខ្លាំង! + +តើអ្នកពិតជាចង់បន្តប្រើដោយគ្មានពាក្យសម្ងាត់មែនទេ? + + + Continue without password + បន្តដោយគ្មានពាក្យសម្ងាត់ + + + No encryption key added + គ្មាន​សោ​អ៊ិនគ្រីប​ដែលបានបន្ថែម។ + + + You must add at least one encryption key to secure your database! + អ្នក​ត្រូវ​តែ​បន្ថែម​សោ​អ៊ិនគ្រីប​យ៉ាង​ហោច​ណាស់​មួយ​ ដើម្បី​ធានា​សុវត្ថិភាពសម្រាប់​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក! + + + Unknown error + កំហុសឆ្គងដែលមិនស្គាល់ + + + Failed to change database credentials + បានបរាជ័យក្នុងការផ្លាស់ប្តូរព័ត៌មាន​បញ្ជាក់​អត្តសញ្ញាណ​នៅក្នុងឃ្លំាងទិន្នន័យ + + + Weak password + ពាក្យសម្ងាត់ខ្សោយ + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + + + + DatabaseSettingsWidgetEncryption + + Decryption Time: + រយៈពេលនៃការដោះការបំប្លែងកូដ៖ + + + Decryption time in seconds + រយៈពេលនៃការដោះការបំប្លែងកូដគិតជាវិនាទី + + + Higher values offer more protection, but opening the database will take longer. + តម្លៃខ្ពស់ផ្តល់ជួយឱ្យមានការការពារកាន់តែខ្លាំង ប៉ុន្តែការបើកមូលដ្ឋានទិន្នន័យនឹងចំណាយពេលយូរជាងនេះ។ + + + Database format: + ទម្រង់មូលដ្ឋានទិន្នន័យ៖ + + + Database format + ទម្រង់មូលដ្ឋានទិន្នន័យ + + + Format cannot be changed: Your database uses KDBX 4 features + ទ្រង់ទ្រាយមិនអាចផ្លាស់ប្តូរបានទេ៖ ឃ្លំាងទិន្នន័យរបស់អ្នកប្រើមុខងារ KDBX 4 + + + Unless you need to open your database with other programs, always use the latest format. + លុះត្រាតែអ្នកចាំបាច់ត្រូវបើកទិន្នន័យរបស់អ្នកជាមួយកម្មវិធីផ្សេងទៀត សូមប្រើទម្រង់ចុងក្រោយបំផុតជានិច្ច។ + + + Encryption Algorithm: + ក្បួនដោះស្រាយការបំប្លែងកូដ៖ + + + Encryption algorithm + ការដោះស្រាយការបំប្លែងជាកូដ + + + AES: 256 Bit (default) + AES: 256 ប៊ីត (លំនាំដើម) + + + Twofish: 256 Bit + Twofish: 256 ប៊ីត + + + Key Derivation Function: + មុខងារទាញយកសោ៖ + + + Key derivation function + មុខងារទាញយកសោ + + + Transform rounds: + បំប្លែងជុំ៖ + + + Transform rounds + បំប្លែងជុំ + + + Memory Usage: + ការប្រើប្រាស់អង្គចងចាំ៖ + + + Memory usage + ការប្រើប្រាស់អង្គចងចាំ + + + Parallelism: + ភាពប្រហែលគ្នា៖ + + + Parallelism + ភាពប្រហែលគ្នា + + + KDBX 4 (recommended) + KDBX 4 (បានណែនាំ) + + + KDBX 3 + KDBX 3 + + + Number of rounds too high + Key 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, days, or even longer to open. + អ្នក​កំពុង​ប្រើ​ប្រាស់ចំនួន​ដ៏​ខ្ពស់​បំផុតនៃ​ការ​បំប្លែងសោជាមួយ Argon2។ + +ប្រសិនបើអ្នករក្សាទុកលេខនេះ មូលដ្ឋានទិន្នន័យរបស់អ្នកអាចនឹងចំណាយពេលច្រើនម៉ោង ច្រើនថ្ងៃ ឬយូរជាងនេះដើម្បីបើក។ + + + Understood, keep number + បានយល់ច្បាស់, សូមរក្សាចំនួនលេខ + + + Cancel + បញ្ឈប់ + + + Number of rounds too low + Key transformation rounds + ចំនួនជុំទាបដែលទាបពេក + + + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. + អ្នក​កំពុង​ប្រើ​ប្រាស់ចំនួន​ទាបបំផុត​នៃ​ការ​បំប្លែង​គ្រាប់ចុច​ជាមួយ AES-KDF ។ + +ប្រសិនបើអ្នករក្សាលេខនេះ មូលដ្ឋានទិន្នន័យរបស់អ្នកនឹងមិនត្រូវបានការពារពីការវាយប្រហារដោយកម្លាំងសាហាវទេ។ + + + KDF unchanged + KDF ដែលមិនបានផ្លាស់ប្តូរ + + + Failed to transform key with new KDF parameters; KDF unchanged. + មិនបានសម្រេចក្នុងការបំប្លែងសោជាមួយប៉ារ៉ាម៉ែត្រ KDF ថ្មី ដោយមិនកេប្រែ KDF។ + + + MiB + Abbreviation for Mebibytes (KDF settings) + MiB + + + thread(s) + Threads for parallel execution (KDF settings) + ស្រេត + + + Encryption Settings: + + + + Basic + + + + Advanced + កម្រិតខ្ពស់ + + + + DatabaseSettingsWidgetFdoSecrets + + Exposed Entries + ទិន្នន័យបញ្ចូលដែលបានបង្ហាញ + + + Don't expose this database + កុំបង្ហាញឃ្លំាងទិន្នន័យនេះ + + + Expose entries under this group: + បង្ហាញទិន្នន័យបញ្ចូលនៅក្រោមក្រុមនេះ៖ + + + Enable Secret Service to access these settings. + បើកសេវាកម្មសម្ងាត់ ដើម្បីចូលប្រើការកំណត់ទាំងនេះ។ + + + + DatabaseSettingsWidgetGeneral + + Database Metadata + ទិន្នន័យ​មេតានៃមូលដ្ឋាន​ទិន្នន័យ + + + Database name: + ឈ្មោះមូលដ្ឋានទិន្នន័យ៖ + + + Database name field + កន្លែងបញ្ចូលឈ្មោះមូលដ្ឋានទិន្នន័យ + + + Database description: + ការពណ៌នាមូលដ្ឋានទិន្នន័យ៖ + + + Database description field + កន្លែងបញ្ចូលការពណ៌នាមូលដ្ឋានទិន្នន័យ + + + Default username: + ឈ្មោះអ្នកប្រើតាមលំនាំដើម៖ + + + Default username field + កន្លែងបញ្ចូលឈ្មោះអ្នកប្រើលំនាំដើម + + + History Settings + ការកំណត់ប្រវត្តិ + + + Maximum number of history items per entry + ចំនួនអតិបរមានៃធាតុប្រវត្តិក្នុងមួយទិន្នន័យបញ្ចូល + + + Maximum size of history per entry + ទំហំអតិបរមានៃប្រវត្តិក្នុងមួយទិន្នន័យបញ្ចូល + + + MiB + MiB + + + Use recycle bin + ប្រើធុងសំរាម + + + Additional Database Settings + ការកំណត់មូលដ្ឋានទិន្នន័យបន្ថែម + + + Enable compression (recommended) + បើកការបង្ហាប់ (បានណែនាំ) + + + Delete Recycle Bin + លុបធុងសំរាម + + + Do you want to delete the current recycle bin and all its contents? +This action is not reversible. + តើ​អ្នក​ចង់​លុប​ធុង​សំរាម​បច្ចុប្បន្ន និង​មាតិកា​ទាំងអស់​របស់​វា​ដែរ​ឬ​ទេ? +សកម្មភាពនេះមិនអាចត្រឡប់វិញបានទេ។ + + + (old) + ចាស់ + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + នៅពេលរក្សាទុកការកំណត់នេះ ឬកែការបញ្ចូល +ធាតុប្រវត្តិចាស់បំផុតនៃទិន្នន័យបញ្ចូលមួយនឹងត្រូវបាន +ដកចេញដូចដែលមានតែចំនួនដែលបានបញ្ជាក់ +នៃទិន្នន័យបញ្ចូលនៅតែមានច្រើនបំផុត។ + + + Limit the amount of history items per entry to: + ដាក់កំណត់ចំនួននៃធាតុប្រវត្តិក្នុងមួយទិន្នន័យបញ្ចូលទៅកាន់៖ + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + នៅពេលរក្សាទុកការកំណត់នេះ ឬកែការបញ្ចូល +ប្រវត្តិចាស់បំផុតនៃទិន្នន័យបញ្ចូលមួយនឹងត្រូវបាន +យកចេញដូចដែលធាតុប្រវត្តិដែលនៅសល់ +បន្ថែមរហូតដល់ចំនួនជាក់លាក់បំផុត។ + + + Limit the total size of history items per entry to: + ដាក់កំណត់ទំហំសរុបនៃធាតុប្រវត្តិក្នុងមួយទិន្នន័យបញ្ចូលទៅកាន់៖ + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + ផ្លាស់ទីទិន្នន័យបញ្ចូលទៅក្រុមធុងសំរាម +ជំនួសឱ្យការលុបវាចេញពីមូលដ្ឋានទិន្នន័យ។ +ទិន្នន័យបញ្ចូលដែលបានលុបចេញពីធុងសំរាមគឺ +ត្រូវបានដកចេញពីមូលដ្ឋានទិន្នន័យនេះ។ + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + នាទី + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + ឈ្មោះបង្ហាញសាធារណៈមូលដ្ឋានទិន្នន័យ + + + Display color: + ពណ៌បង្ហាញ៖ + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + ជម្រះ + + + Display icon: + + + + Select Database Icon + + + + + DatabaseSettingsWidgetKeeShare + + Sharing + ការចែករំលែក + + + Breadcrumb + ដានទីតាំង + + + Type + វាយអក្សរ + + + Path + ផ្លូវ + + + Last Signer + អ្នកចុះហត្ថលេខាចុងក្រោយ + + + Certificates + វិញ្ញាបនបត្រ + + + > + Breadcrumb separator + > + + + + DatabaseSettingsWidgetMaintenance + + Manage Custom Icons + គ្រប់គ្រងរូបតំណាងផ្ទាល់ខ្លួន + + + Delete selected icon(s) + លុបរូបតំណាងដែលបានជ្រើសរើស + + + Delete all custom icons not in use by any entry or group + លុបរូបតំណាងផ្ទាល់ខ្លួនទាំងអស់ដែលមិនប្រើប្រាស់ដោយទិន្នន័យបញ្ចូល ឬក្រុមណាមួយ + + + Purge unused icons + ជម្រះរូបតំណាងដែលមិនប្រើ + + + Confirm Deletion + បញ្ជាក់ការលុប + + + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? + យ៉ាងហោចណាស់មានរូបតំណាងមួយក្នុងចំណោមរូបតំណាងដែលបានជ្រើសរើសកំពុងប្រើប្រាស់ដោយទិន្នន័យបញ្ចូល ឬក្រុមមួយ។ រូបតំណាងនៃទិន្នន័យបញ្ចូល និងក្រុមដែលទទួលរងផលប៉ះពាល់ទាំងអស់នឹងត្រូវជំនួសដោយរូបតំណាងលំនាំដើម។ តើ​អ្នក​ពិតជា​ចង់​លុប​រូប​តំណាង​ដែល​កំពុង​ប្រើ​ប្រាស់ថ្មីៗនេះចេញមែនទេ? + + + Custom Icons Are In Use + រូបតំណាងផ្ទាល់ខ្លួនកំពុងប្រើ + + + All custom icons are in use by at least one entry or group. + រូបផ្ទាល់ខ្លួនទាំងអស់ត្រូវបានប្រើប្រាស់ដោយទិន្នន័យបញ្ចូល ឬក្រុមយ៉ាងហោចណាស់មួយ។ + + + Purged Unused Icons + បានជម្រះរូបតំណាងចេញ + + + Purged %n icon(s) from the database. + បានជម្រះរូបតំណាង %n ចេញពីមូលដ្ឋានទិន្នន័យនេះ។ + + + + DatabaseSettingsWidgetMetaDataSimple + + Database Name: + ឈ្មោះមូលដ្ឋានទិន្នន័យ៖ + + + Database name field + កន្លែងបញ្ចូលឈ្មោះមូលដ្ឋានទិន្នន័យ + + + Description: + ការពិពណ៌នា៖ + + + Database description field + កន្លែងបញ្ចូលការពណ៌នាមូលដ្ឋានទិន្នន័យ + + + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + ដកចេញ + + + Command Settings + + + + Name + ឈ្មោះ + + + Save + រក្សាទុក + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + វិនាទី + + + + DatabaseTabWidget + + 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 ដោយធ្វើការបដិសេធមិនរក្សាទុកវា។ +នេះប្រាកដណាស់ថា ជាបញ្ហា សូមរាយការណ៍ពីបញ្ហានេះទៅកាន់អ្នកអភិវឌ្ឍន៍។ + + + KeePass 2 Database + មូលដ្ឋានទិន្នន័យ KeePass 2 + + + All files + ឯកសារ​ទាំងអស់ + + + Open database + បើកឃ្លំាងទិន្នន័យ + + + Failed to open %1. It either does not exist or is not accessible. + ការព្យាយាមបើក %1 មិនបានសម្រេច ដោយសារវាមិនមាន ឬមិនអាចចូលប្រើប្រាស់បាន។ + + + CSV file + ឯកសារ CSV + + + Merge database + ដាក់បញ្ចូលមូលដ្ឋានទិន្នន័យ + + + Export database to CSV file + នាំចេញឃ្លំាងទិន្នន័យទៅឯកសារ CSV + + + Writing the CSV file failed. + ការសរសេរឯកសារ CSV មិនបានសម្រេច។ + + + Writing the HTML file failed. + ការសរសេរឯកសារ HTML មិនបានសម្រេច។ + + + Export database to XML file + នាំចេញឃ្លំាងទិន្នន័យទៅជាឯកសារ XML + + + XML file + ឯកសារ XML + + + Writing the XML file failed + ការសរសេរឯកសារ XML មិនបានសម្រេច + + + Export Confirmation + ការបញ្ជាក់នៃការនាំចេញ + + + You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? + អ្នកហៀបនឹងនាំចេញមូលដ្ឋានទិន្នន័យរបស់អ្នកទៅជាឯកសារដែលមិនបានអ៊ិនគ្រីប។ ការធ្វើបែបនេះនឹងទុកឱ្យពាក្យសម្ងាត់ និងព័ត៌មានរសើបរបស់អ្នកងាយទទួលរងគ្រោះ! តើអ្នកពិតថាចង់បន្តទៀតឬទេ? + + + %1 [Locked] + Database tab name modifier + %1 [បានចាក់សោ] + + + %1 [Temporary] + Database tab name modifier + + + + + DatabaseWidget + + Searches and Tags + ស្វែងរក និងថេកអោយ + + + Searching… + ការស្វែងរក + + + Shared group… + ក្រុមដែលបានចែករំលែក… + + + Confirm Auto-Type + បញ្ជាក់ប្រភេទស្វ័យប្រវត្តិ + + + Perform Auto-Type into the previously active window? + តើអ្នកចង់ប្រើប្រាស់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិទៅក្នុងវីនដូដែលសកម្មពីមុនឬទេ? + + + Execute command? + ធ្វើប្រតិបត្តិពាក្យបញ្ជាមែនទេ? + + + Do you really want to execute the following command?<br><br>%1<br> + តើអ្នកពិតជាចង់ធ្វើប្រតិបត្តិពាក្យបញ្ជាខាងក្រោមមែនទេ?<br><br>%1<br> + + + Remember my choice + ចងចាំជម្រើសរបស់ខ្ញុំ + + + Delete group + លុបក្រុម + + + Do you really want to delete the group "%1" for good? + តើ​អ្នក​ពិត​ជា​ចង់​លុបក្រុម "%1" ដើម្បី​ឱ្យកាន់តែល្អ​មែនទេ? + + + Move group to recycle bin? + ផ្លាស់ទីក្រុមទៅកាន់ធុងសំរាមឬ? + + + Do you really want to move the group "%1" to the recycle bin? + តើអ្នកពិតជាចង់ផ្លាស់ទីក្រុម "% 1" ទៅធុងសំរាមមែនដែរឬទេ? + + + Expired entries + ទិន្នន័យបញ្ចូលបានផុតកំណត់ + + + Entries expiring within %1 day(s) + ទិន្នន័យបញ្ចូលផុតកំណត់ក្នុងរយៈពេល %1 ថ្ងៃ + + + No current database. + គ្មានមូលដ្ឋានទិន្នន័យបច្ចុប្បន្ន។ + + + No source database, nothing to do. + គ្មានអ្វីដែលត្រូវធ្វើដោយសារគ្មានប្រភពមូលដ្ឋានទិន្នន័យ។ + + + Successfully merged the database files. + បានរួមបញ្ចូលឯកសារមូលដ្ឋានទិន្នន័យដោយជោគជ័យ។ + + + Database was not modified by merge operation. + ប្រតិបត្តិការបញ្ចូលគ្នាមិនបានកែប្រែឃ្លាំងទិន្នន័យទេ។ + + + Search Results (%1) + លទ្ធផលស្វែងរក (%1) + + + No Results + គ្មាន​លទ្ធផល + + + Save + រក្សាទុក + + + Enter a unique name or overwrite an existing search from the list: + បញ្ចូលឈ្មោះតែមួយគត់ ឬសរសេរជាន់លើពីការស្វែងរកដែលមានស្រាប់ពីបញ្ជី៖ + + + Save Search + រក្សាទុកការស្វែងរក + + + Lock Database? + ចាក់សោមូលដ្ឋានទិន្នន័យឬ? + + + You are editing an entry. Discard changes and lock anyway? + អ្នកកំពុងកែការបញ្ចូលមួយ។ បោះបង់ការផ្លាស់ប្ដូរ និងចាក់សោរឬ? + + + "%1" was modified. +Save changes? + "%1" ត្រូវបានកែប្រែ។ +រក្សាទុកការផ្លាស់ប្តូរនេះ? + + + Database was modified. +Save changes? + បានកែប្រែឃ្លាំងទិន្នន័យរួចហើយ។ +រក្សាទុកការផ្លាស់ប្តូរមែនទេ? + + + Save changes? + រក្សាការផ្តាស់ប្តូរទុក + + + File has changed + ឯកសារបានផ្លាស់ប្តូរ + + + Disable 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 + ការសរសេរមូលដ្ឋានទិន្នន័យមិនបានសម្រេច៖ %1 + + + Passwords + ពាក្យសម្ងាត់ + + + Save database as + រក្សាទិន្នន័យទុកជាប្រភេទ + + + KeePass 2 Database + មូលដ្ឋានទិន្នន័យ KeePass 2 + + + Save database backup + រក្សាទិន្នន័យទុកបម្រុង + + + Empty recycle bin? + ធុងសំរាមទទេ? + + + Are you sure you want to permanently delete everything from your recycle bin? + តើអ្នកពិតជាចង់លុបអ្វីៗទាំងអស់ចេញពីធុងសំរាមរបស់អ្នករហូតមែនទេ? + + + Could not find database file: %1 + មិនអាចស្វែងរកឯកសារឃ្លំាងទិន្នន័យបានទេ៖ % 1 + + + New Database + មូលដ្ឋាន​ទិន្នន័យ​ថ្មី + + + %1 [New Database] + Database tab name modifier + %1 [ឃ្លាំងទិន្នន័យថ្មី] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + + EditEntryWidget + + Entry + ទិន្នន័យបញ្ចូល + + + Advanced + កម្រិតខ្ពស់ + + + Icon + រូបតំណាង + + + Auto-Type + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Browser Integration + ការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + <empty URL> + <URL ទទេ> + + + Confirm Removal + បញ្ជាក់ការដកចេញ + + + Are you sure you want to remove this URL? + តើអ្នកពិតជាចង់លុប URL នេះចេញមែនទេ? + + + Properties + លក្ខណៈ + + + History + ប្រវត្តិ + + + SSH Agent + ភ្នាក់ងារ SSH + + + n/a + គ្មាន + + + Select private key + ជ្រើសរើសពាក្យសម្ងាត់ផ្ទាល់ខ្លួន + + + Entry history + ប្រវត្តិទិន្នន័យបញ្ចូល + + + Add entry + បន្ថែមទិន្នន័យបញ្ចូល + + + Edit entry + កែទិន្នន័យបញ្ចូល + + + Some Browser Integration settings are overridden by group settings. + ការកំណត់ការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិតមួយចំនួនត្រូវបានបដិសេធដោយការកំណត់ក្រុម។ + + + Invalid Entry + ទិន្នន័យបញ្ចូលត្រឹមត្រូវ + + + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. + ប្រតិបត្តិការបញ្ចូលគ្នាខាងក្រៅបានធ្វើឱ្យទិន្នន័យបញ្ចូលនេះលែងមានសុពលភាព។ +គួរឱ្យសោកស្តាយ រាល់ការផ្លាស់ប្ដូរណាមួយដែលបានធ្វើឡើងត្រូវបានបាត់បង់។ + + + Auto-Type Validation Error + បញ្ហាធ្វើឱ្យមានសុពលភាពរបស់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? + បញ្ហា​មួយ​បាន​កើត​ឡើង​ខណៈ​ពេលដែលកំពុង​ធ្វើឱ្យមានសុពលភាពនៃ​លំដាប់​មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ​​ផ្ទាល់​ខ្លួន​៖ +% 1 +តើអ្នកចង់កែវាឬទេ? + + + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? + បញ្ហា​មួយ​បាន​កើត​ឡើង​ខណៈ​ពេលកំពុង​ដែលផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ​នៃ​លំដាប់​មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ​សម្រាប់ "% 1"៖ +% 2 +តើអ្នកចង់កែវាឬទេ? + + + Entry updated successfully. + បានអាប់ដេតទិន្នន័យបញ្ចូលដោយជោគជ័យ។ + + + Unsaved Changes + ការផ្តាស់ប្តូរដែលមិនបានរក្សាទុក + + + Would you like to save changes to this entry? + តើអ្នកចង់រក្សាទុកការផ្លាស់ប្តូរការបញ្ចូលនេះឬទេ? + + + New attribute + លក្ខណៈថ្មី + + + New attribute %1 + លក្ខណៈថ្មី %1 + + + Are you sure you want to remove this attribute? + តើអ្នកពិតជាចង់លុបលក្ខណៈនេះចេញមែនទេ? + + + Reveal + បង្ហាញ + + + [PROTECTED] Press Reveal to view or edit + [ការពារ] ចុច បង្ហាញ ដើម្បីមើល ឬកែ + + + Hide + លាក់ + + + %n hour(s) + %n ម៉ោង + + + %n week(s) + %n សប្តាហ៍ + + + %n month(s) + %n ខែ + + + %n year(s) + %n ឆ្នាំ + + + Failed to decrypt SSH key, ensure password is correct. + + + + + EditEntryWidgetAdvanced + + Additional attributes + លក្ខណៈដែលបន្ថែម + + + Attribute selection + ការជ្រើសរើសលក្ខណៈ + + + Attribute value + តម្លៃលក្ខណៈ + + + Add a new attribute + បន្ថែមលក្ខណៈថ្មីមួយ + + + Add + បន្ថែម + + + Remove selected attribute + លុបគុណលក្ខណៈដែលបានជ្រើសរើសចេញ + + + Remove + ដកចេញ + + + Edit attribute name + កែឈ្មោះលក្ខណៈ + + + Edit Name + កែឈ្មោះ + + + Toggle attribute protection + បិទបើកការការពារគុណលក្ខណៈ + + + Protect + ការពារ + + + Show a protected attribute + ការបង្ហាញពីគុណលក្ខណៈដែលត្រូវបានការពារ + + + Reveal + បង្ហាញ + + + Attachments + ឯកសារ​ភ្ជាប់នានា + + + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. + ប្រសិនបើបានពិនិត្យមើល ទិន្នន័យបញ្ចូលនឹងមិនបង្ហាញនៅក្នុងរបាយការណ៍ដូចជាការពិនិត្យសុខភាព និង HIBP បើទោះជាវាមិនត្រូវគ្នានឹងលក្ខខណ្ឌតម្រូវរបស់គុណភាពក៏ដោយ។ + + + Exclude from database reports + មិនរាប់បញ្ចូលពីរបាយការណ៍ឃ្លំាងទិន្នន័យ + + + Foreground Color: + ពណ៌ផ្ទៃខាងមុខ៖ + + + Foreground color selection + ការជ្រើសរើសពណ៌ផ្ទៃខាងមុខ + + + Background Color: + ពណ៌ផ្ទៃខាងក្រោយ៖ + + + Background color selection + ការជ្រើសរើសពណ៌ផ្ទៃខាងក្រោយ + + + + EditEntryWidgetAutoType + + Enable Auto-Type for this entry + បើកមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិសម្រាប់ទិន្នន័យបញ្ចូលនេះ + + + Inherit default Auto-Type sequence from the group + ទទួល​លំដាប់​វាយបញ្ចូលស្វ័យប្រវត្តិលំនាំដើម​ពី​ក្រុមនេះ + + + Use custom Auto-Type sequence: + ប្រើ​ប្រាស់លំដាប់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិផ្ទាល់ខ្លួន៖ + + + Custom Auto-Type sequence + លំដាប់​វាយបញ្ចូលស្វ័យប្រវត្តិផ្ទាល់ខ្លួន + + + Open Auto-Type help webpage + បើកគេហទំព័រជំនួយនៃមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Window Associations + ការភ្ជាប់វីនដូ + + + Existing window associations + ការចូលរួមវីនដូដែលមានស្រាប់ + + + Add new window association + បន្ថែមការភ្ជាប់វីនដូថ្មី + + + + + Add item + + + + + Remove selected window association + ដកចេញការភ្ជាប់វីនដូដែលបានជ្រើសរើស + + + - + Remove item + - + + + Window title: + ចំណងជើងវីនដូ៖ + + + You can use an asterisk (*) to match everything + អ្នកអាចប្រើសញ្ញាផ្កាយ (*) ដើម្បីផ្គូផ្គងអ្វីៗគ្រប់យ៉ាង + + + Set the window association title + កំណត់ចំណងជើងពាក់ព័ន្ធរបស់វីនដូ + + + You can use an asterisk to match everything + អ្នកអាចប្រើសញ្ញាផ្កាយដើម្បីផ្គូផ្គងអ្វីៗគ្រប់យ៉ាង + + + Use a specific sequence for this association: + ប្រើប្រាស់លំដាប់ជាក់លាក់មួយសម្រាប់ការភ្ជាប់នេះ៖ + + + Custom Auto-Type sequence for this window + លំដាប់វាយបញ្ចូលស្វ័យប្រវត្តិជាផ្ទាល់ខ្លួន​សម្រាប់វីនដូ​នេះ + + + + EditEntryWidgetBrowser + + General + ទូទៅ + + + Hide this entry from the browser extension + លាក់ទិន្ន័យបញ្ចូលនេះពីកម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Skip Auto-Submit for this entry + រំលងការបញ្ជូនដោយស្វ័យប្រវត្តិសម្រាប់ការបញ្ចូលនេះ + + + Use this entry only with HTTP Basic Auth + ប្រើប្រាស់ទិន្នន័យបញ្ចូលនេះតែជាមួយ HTTP Basic Auth ប៉ុណ្ណោះ + + + Do not use this entry with HTTP Basic Auth + កុំប្រើទិន្នន័យបញ្ចូលនេះជាមួយ HTTP Basic Auth + + + Add + បន្ថែម + + + Remove + ដកចេញ + + + Edit + កែ + + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + + + + EditEntryWidgetHistory + + Entry history selection + ការជ្រើសរើសប្រវត្តិទិន្នន័យបញ្ចូល + + + Show entry at selected history state + ការបង្ហាញពីទិន្នន័យនៃស្ថានភាពប្រវត្តិដែលបានជ្រើសរើស + + + Show + បង្ហាញ + + + Restore entry to selected history state + ស្តារទិន្នន័យធាតុចូលទៅស្ថានភាពប្រវត្តិដែលបានជ្រើសរើសឡើងវិញ + + + Restore + ស្តារឡើងវិញ + + + Delete selected history state + លុបជួរប្រវត្តិដែលបានជ្រើសរើស + + + Delete + លុប + + + Delete all history + លុបប្រវត្តិទាំងអស់ + + + Delete all + លុប​ទាំងអស់ + + + + EditEntryWidgetMain + + Edit Entry + កែទិន្នន័យបញ្ចូល + + + Notes field + កន្លែងបញ្ចូលចំណាំ + + + Username field + កន្លែងបញ្ចូលឈ្មោះអ្នកប្រើ + + + Expiration field + កន្លែង​បញ្ចូលផុតកំណត់ + + + Expiration Presets + ការ​កំណត់​ជាមុន​ផុត​កំណត់ + + + Expiration presets + ការ​កំណត់​ជាមុន​ផុត​កំណត់ + + + Presets + កំណត់ជាមុន + + + Url field + កន្លែងបញ្ចូល Url + + + Download favicon for URL + ទាញយក favicon សម្រាប់ URL + + + Title field + កន្លែងបញ្ចូលចំណងជើង + + + Password field + កន្លែង​បញ្ចូល​ពាក្យ​សម្ងាត់ + + + Toggle expiration + បិទបើកការផុតកំណត់ + + + Tags list + បញ្ជីស្លាក + + + &Username: + &Username: + + + &Title: + &ចំណងជើង: + + + &Password: + &ពាក្យសម្ងាត់: + + + UR&L: + + + + &Notes: + &ចំណាំ: + + + Toggle notes visibility + + + + T&ags: + T&ags: + + + &Expires: + &Expires: + + + + EditEntryWidgetSSHAgent + + Form + ទម្រង់ + + + Remove key from agent when database is closed/locked + ដកសោពីភ្នាក់ងារចេញ នៅពេលដែលមូលដ្ឋានទិន្នន័យត្រូវបានបិទ/ចាក់សោ។ + + + Comment + មតិយោបល់ + + + Add key to agent when database is opened/unlocked + បន្ថែមសោទៅកាន់ភ្នាក់ងារ នៅពេលដែលបានបើក/បានដោះសោមូលដ្ឋានទិន្នន័យរួចរាល់ + + + Decrypt + ដោះការបំប្លែងកូដ + + + Fingerprint + ស្នាមម្រាមដៃ + + + Copy to clipboard + ចម្លងទៅការខ្ទាស់ + + + Public key + សោសាធារណៈ + + + Private key + សោឯកជន + + + Attachment + ឯកសារ​ភ្ជាប់ + + + External key file + ឯកសារសោខាងក្រៅ + + + Add to agent + បន្ថែមទៅកាន់ភ្នាក់ងារ + + + Remove from agent + ដកពីភ្នាក់ងារចេញ + + + External file + ឯកសារខាងក្រៅ + + + Browser for key file + រុករកឯកសារសោ + + + Browse… + Button for opening file dialog + រុករក… + + + Generate + បង្កើត + + + Select attachment file + ជ្រើសរើសឯកសារភ្ជាប់ + + + Require user confirmation when this key is used + ទាមទារ​ការ​បញ្ជាក់​ពីអ្នក​ប្រើប្រាស់​នៅ​ពេល​ដែល​សោ​នេះ​ត្រូវ​បានគេ​ប្រើប្រាស់ + + + n/a + គ្មាន + + + Remove key from agent after + ដកសោពីភ្នាក់ងារចេញបន្ទាប់ពី + + + Remove key from agent after specified seconds + ដកសោពីភ្នាក់ងារចេញបន្ទាប់ពីវិនាទីដែលបានបញ្ជាក់ច្បាស់លាស់ + + + seconds + វិនាទី + + + Clear agent + + + + + EditGroupWidget + + Group + ក្រុម + + + Icon + រូបតំណាង + + + Properties + លក្ខណៈ + + + Add group + បន្ថែមក្រុម + + + Edit group + កែក្រុម + + + Group has unsaved changes + ក្រុមដែលបានផ្លាស់ប្តូររួចមិនទាន់បានរក្សាទុកនៅឡើយទេ + + + Browser Integration + ការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Enable + បើក + + + Disable + បិទដំណើរការ + + + Inherit from parent group (%1) + ទទួលបានមកពីក្រុមមេ (% 1) + + + + EditGroupWidgetBrowser + + These settings affect to the group's behaviour with the browser extension. + ការកំណត់ទាំងនេះប៉ះពាល់ដល់ដំណើរការរបស់ក្រុមជាមួយកម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិតនេះ។ + + + Hide entries from browser extension: + លាក់ទិន្នន័យបញ្ចូលពីកម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិត៖ + + + Hide entries from browser extension toggle for this and sub groups + លាក់ទិន្នន័យបញ្ចូលពីមុខងារបិទ/បើកកម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិតសម្រាប់ក្រុមនេះ និងក្រុមរង + + + Skip Auto-Submit for entries: + រំលងការដាក់​បញ្ជូនដោយស្វ័យប្រវត្តិសម្រាប់ទិន្នន័យបញ្ចូល៖ + + + Skip Auto-Submit toggle for this and sub groups + រំលងការបិទបើកការបញ្ជូនដោយស្វ័យប្រវត្សម្រាប់ក្រុមនេះ និងក្រុមរង + + + Use entries only with HTTP Basic Auth: + ប្រើប្រាស់ការបញ្ចូលតែជាមួយ HTTP Basic Auth ប៉ុណ្ណោះ៖ + + + Only HTTP Auth toggle for this and sub groups + មានតែ HTTP Auth ប៉ុណ្ណោះដែលបិទ/បើកសម្រាប់ក្រុមនេះ និងក្រុមរងនេះ + + + Do not use entries with HTTP Basic Auth: + កុំប្រើទិន្នន័យបញ្ចូលនានាជាមួយ HTTP Basic Auth៖ + + + Do not use HTTP Auth toggle for this and sub groups + កុំប្រើមុខងារបិទបើក HTTP Auth សម្រាប់ក្រុមនេះ និងក្រុមរង + + + Omit WWW subdomain from matching: + លុបដែនរងរបស់ WWW ពីការផ្គូផ្គង៖ + + + Omit WWW subdomain from matching toggle for this and sub groups + លុបដែនរងរបស់ WWW ពីការផ្គូផ្គងបិទ/បើកសម្រាប់ក្រុមនេះ និងក្រុមរងនេះ + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + EditGroupWidgetKeeShare + + Sharing mode field + កន្លែងបញ្ចូលមុខងារចែករំលែក + + + Password field + កន្លែង​បញ្ចូល​ពាក្យ​សម្ងាត់ + + + Type: + វាយអក្សរ + + + Password: + ពាក្យសម្ងាត់៖ + + + Path: + ផ្លូវ៖ + + + Path to share file field + ផ្លូវទៅកាន់កន្លែងចែករំលែកឯកសារ + + + Browse for share file + រកមើលឯកសារដែលចែករំលែក + + + Browse… + រុករក… + + + Clear fields + ជម្រះកន្លែង​បញ្ចូល + + + Clear + ជម្រះ + + + Inactive + អសកម្ម + + + Import + នាំចូល + + + Export + នំាចេញ + + + Synchronize + ធ្វើសមកាលកម្ម + + + Your KeePassXC version does not support sharing this container type. +Supported extensions are: %1. + កំណែ KeePassXC របស់អ្នកមិនអាចប្រើប្រាស់ជាមួយនឹងការចែករំលែកប្រភេទកន្លែងផ្ទុកនេះទេ។ +កម្មវិធីបន្ថែមអាចប្រើប្រាស់បានគឺ៖ %1។ + + + %1 is already being exported by this database. + % 1 គឺកំពុងត្រូវបាននាំចេញដោយឃ្លំាងទិន្នន័យនេះរួចហើយ។ + + + %1 is already being imported by this database. + % 1 គឺកំពុងត្រូវបាននាំចេញដោយឃ្លំាងទិន្នន័យនេះរួចហើយ។ + + + %1 is being imported and exported by different groups in this database. + % 1 គឺកំពុងត្រូវបាននាំចូល និងនាំចេញដោយក្រុមផ្សេងគ្នានៅក្នុងឃ្លំាងទិន្នន័យនេះ។ + + + KeeShare is currently disabled. You can enable import/export in the application settings. + KeeShare is a proper noun + នាពេលថ្មីៗនេះ KeeShare ត្រូវបានបិទ។ អ្នកអាចបើកការនាំចូល/នាំចេញនៅក្នុងការកំណត់កម្មវិធីនេះ។ + + + Database export is currently disabled by application settings. + ថ្មីៗនេះការកំណត់កម្មវិធីបានបិទការនាំចេញមូលដ្ឋានទិន្នន័យ។ + + + Database import is currently disabled by application settings. + ថ្មីៗនេះ ការកំណត់កម្មវិធីបានបិទការនាំចូលមូលដ្ឋានទិន្នន័យ។ + + + KeeShare container + ទម្រង់ផ្ទុក KeeShare + + + KeeShare signed container + KeeShare បានចូលទម្រង់ផ្ទុក + + + Select import source + ជ្រើសរើសប្រភពនាំចូល + + + Select export target + ជ្រើសរើសគោលដៅនាំចេញ + + + Select import/export file + ជ្រើសរើសប្រភពឯកសារនាំចូល និងនាំចេញ + + + + EditGroupWidgetMain + + Edit Group + កែក្រុម + + + Toggle expiration + បិទបើកការផុតកំណត់ + + + Expires: + ផុតកំណត់៖ + + + Name field + ឈ្មោះកន្លែងបញ្ចូល + + + Expiration field + កន្លែង​បញ្ចូលផុតកំណត់ + + + Use default Auto-Type sequence of parent group + ប្រើ​លំដាប់​មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិលំនាំដើម​នៃ​ក្រុម​មេ + + + Auto-Type: + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Search: + ស្វែងរក + + + Auto-Type toggle for this and sub groups + បិទ/បើក​មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិសម្រាប់​ក្រុម​នេះ និង​ក្រុមរងនេះ + + + Notes: + ចំណាំ៖ + + + Default auto-type sequence field + កន្លែងបញ្ចូលលំដាប់​ប្រភេទ​ស្វ័យប្រវត្តិ​លំនាំដើម + + + Notes field + កន្លែងបញ្ចូលចំណាំ + + + Name: + ឈ្មោះ៖ + + + Set default Auto-Type sequence + កំណត់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិលំនាំដើម + + + Search toggle for this and sub groups + ស្វែងរកបិទ/បើកសម្រាប់ក្រុមនេះ និងក្រុមរង + + + + EditWidgetIcons + + Use default icon + ប្រើប្រាស់រូបតំណាងលំនាំដើម + + + Use custom icon + ប្រើប្រាស់រូបតំណាងផ្ទាល់ខ្លួន + + + Choose icon… + ជ្រើសរើសរូបតំណាង… + + + Set the URL to use to search for a favicon + ការកំណត់ URL ដែលត្រូវប្រើដើម្បីស្វែងរក favicons + + + Favicon URL + រូប URL ពេញចិត្ត + + + Download favicon for URL + ទាញយក favicon សម្រាប់ URL + + + Download favicon + ទាញយក favicon + + + Apply selected icon to subgroups and entries + ដាក់ប្រើតរូបតំណាងដែលបានជ្រើសរើសទៅក្រុមរង និងទិន្នន័យបញ្ចូល + + + Apply icon to… + ដាក់ប្រើរូបតំណាងទៅ… + + + Apply to this group only + អនុវត្តបានចំពោះក្រុមនេះតែប៉ុណ្ណោះ + + + Also apply to child groups + អនុវត្តបានចំពោះក្រុមកុមារផងដែរ + + + Also apply to child entries + ដាក់ប្រើទិន្នន័យបញ្ចូលពីកុមារផងដែរ + + + Also apply to all children + អនុវត្តបានចំពោះកុមារទាំងអស់ផងដែរ + + + Unable to fetch favicon. + មិន​អាចរកមើលរូបតំណាងបានទេ។ + + + Existing icon selected. + បានជ្រើសរើសរូបតំណាងដែលមានស្រាប់។ + + + Images + រូបភាព + + + All files + ឯកសារ​ទាំងអស់ + + + Select Image(s) + ជ្រើសរើសរូបភាព + + + Successfully loaded %1 of %n icon(s) + បាន​ផ្ទុក %1 ​នៃរូបតំណាង %n ​ដោយ​ជោគជ័យ + + + No icons were loaded + គ្មានរូបតំណាងដែលបានផ្ទុកឡើងទេ + + + %n icon(s) already exist in the database + %n រូបតំណាងមានរួចហើយនៅក្នុងឃ្លាំងទិន្នន័យ + + + The following icon(s) failed: + រូបតំណាងខាងក្រោមមិនបានសម្រេចទេ៖ + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + + + + EditWidgetProperties + + Created: + បានបង្កើត៖ + + + Datetime created + កាលបរិច្ឆេទនិងម៉ោងដែលបានបង្កើត + + + Modified: + បានកែប្រែ៖ + + + Datetime modified + កាលបរិច្ឆេទនិងម៉ោងដែលបានកែប្រែ + + + Accessed: + បានចូលប្រើប្រាស់៖ + + + Datetime accessed + កាលបរិច្ឆេទនិងម៉ោងបានចូលប្រើប្រាស់ + + + Uuid: + Uuid: + + + Unique ID + ID ពិសេស + + + Plugin Data + ទិន្នន័យកម្មវិធីជំនួយ + + + Plugin data + ទិន្នន័យកម្មវិធីជំនួយ + + + Remove selected plugin data + ដកចេញទិន្នន័យកម្មវិធីជំនួយដែលបានជ្រើសរើស + + + Remove + ដកចេញ + + + 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 - ក្លូន + + + Passkey + + + + Invalid conversion type: %1 + ប្រភេទនៃការ​បម្លែង​មិន​ត្រឹមត្រូវ៖ %1 + + + Invalid conversion syntax: %1 + វាក្យសម្ព័ន្ធនៃការបំប្លែងមិនត្រឹមត្រូវ៖ %1 + + + Invalid regular expression syntax %1 +%2 + វាក្យសម្ព័ន្ធកន្សោមពាក្យធម្មតាមិនត្រឹមត្រូវ %1 +%2 + + + + EntryAttachments + + Cannot open file "%1" + មិនអាចបើកឯកសារ "% 1" បានទេ + + + + EntryAttachmentsDialog + + Form + ទម្រង់ + + + File name + + + + File contents... + + + + + EntryAttachmentsModel + + Name + ឈ្មោះ + + + Size + ទំហំ + + + + EntryAttachmentsWidget + + Form + ទម្រង់ + + + Attachments + ឯកសារ​ភ្ជាប់នានា + + + Add new attachment + បន្ថែមឯកសារភ្ជាប់ថ្មី + + + Add + បន្ថែម + + + Remove selected attachment + លុបឯកសារភ្ជាប់ដែលបានជ្រើសរើសចេញ + + + Remove + ដកចេញ + + + Open selected attachment + បើកឯកសារភ្ជាប់ដែលបានជ្រើសរើស + + + Open + បើក + + + Save selected attachment to disk + រក្សាឯកសារភ្ជាប់ទុកទៅក្នុងឌីស + + + Save + រក្សាទុក + + + Select files + ជ្រើសរើសឯកសារ + + + Confirm remove + បញ្ជាក់ការដកចេញ + + + Are you sure you want to remove %n attachment(s)? + តើអ្នកពិតជាចង់លុបឯកសារភ្ជាប់ %n ចេញមែនទេ? + + + Save attachments + រក្សាឯកសារភ្ជាប់ទុក + + + Unable to create directory: +%1 + មិនអាចបង្កើតថត%1 + + + Are you sure you want to overwrite the existing file "%1" with the attachment? + តើ​អ្នក​ពិតជា​ចង់​សរសេរ​ជាន់​លើ​ឯកសារ "% 1" ដែល​មាន​ស្រាប់​ជាមួយ​ឯកសារ​ភ្ជាប់នេះមែនទេ? + + + Confirm overwrite + បញ្ជាក់ការសរសេរជាន់លើ + + + Unable to save attachments: +%1 + មិនអាចរក្សាទុក ឯកសារភ្ជាប់ៈ%1 + + + Unable to open attachment: +%1 + មិនអាចបើកឯកសារភ្ជាប់បានទេ៖ +%1 + + + Unable to open attachments: +%1 + មិនអាចបើកឯកសារភ្ជាប់នានាបានទេ៖ +%1 + + + Unable to open file(s): +%1 + មិនអាចបើកឯកសារៈ%1 + + + Confirm Overwrite Attachment + បញ្ជាក់ការសរសេរជាន់លើឯកសារភ្ជាប់ + + + Confirm Attachment + បញ្ជាក់ឯកសារភ្ជាប់ + + + %1 is a big file (%2 MB). +Your database may get very large and reduce performance. + +Are you sure to add this file? + % 1 គឺជាឯកសារធំ (% 2 MB)។ +ឃ្លំាងទិន្នន័យរបស់អ្នកអាចមានទំហំធំ និងកាត់បន្ថយប្រតិបត្តិការ។ + +តើអ្នកប្រាកដក្នុងការបន្ថែមឯកសារនេះដែរឬទេ? + + + Attachment modified + ឯកសារភ្ជាប់ដែលបានកែ + + + The attachment '%1' was modified. +Do you want to save the changes to your database? + បានកែប្រែឯកសារភ្ជាប់ '%1' ។ +តើអ្នកចង់រក្សាទុកការផ្លាស់ប្តូរទៅក្នុងមូលដ្ឋានទិន្នន័យរបស់អ្នកឬទេ? + + + Saving attachment failed + ការរក្សាទុកឯកសារភ្ជាប់បរាជ័យ + + + Saving updated attachment failed. +Error: %1 + រក្សាឯកសារភ្ជាប់ដែលបានធ្វើបច្ចុប្បន្នភាពទុក.កំហុស %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + ឯកសារភ្ជាប់ "% 1" មានស្រាប់ហើយ។ +តើអ្នកចង់សរសេរជាន់លើឯកសារភ្ជាប់ដែលមានស្រាប់ឬទេ? + + + New + + + + Preview + មើលជាមុន + + + Failed to preview an attachment: Attachment not found + + + + + EntryAttributesModel + + Name + ឈ្មោះ + + + + EntryHistoryModel + + Current (%1) + បច្ចុប្បន្ន (% 1) + + + Last modified + បានកែប្រែចុងក្រោយ + + + Age + អាយុ + + + Difference + ភាពខុសគ្នា + + + Size + ទំហំ + + + Title + ចំណងជើង + + + Username + ឈ្មោះអ្នកប្រើ + + + Password + ពាក្យសម្ងាត់ + + + URL + URL + + + Notes + ចំណាំ + + + Custom Attributes + លក្ខណៈផ្ទាល់ខ្លួន + + + Icon + រូបតំណាង + + + Color + ពណ៌ + + + Expiration + ផុតកំណត់ + + + TOTP + TOTP + + + Custom Data + ទិន្នន័យផ្ទាល់ខ្លួន + + + Attachments + ឯកសារ​ភ្ជាប់នានា + + + Auto-Type + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Tags + ស្លាក + + + + EntryModel + + Ref: + Reference abbreviation + យោង៖ + + + Never + មិនធ្លាប់ + + + Group + ក្រុម + + + Title + ចំណងជើង + + + Username + ឈ្មោះអ្នកប្រើ + + + Password + ពាក្យសម្ងាត់ + + + URL + URL + + + Notes + ចំណាំ + + + Expires + ផុតកំណត់ + + + Created + បានបង្កើត + + + Modified + បានកែប្រែ + + + Accessed + បានចូលប្រើប្រាស់ + + + Attachments + ឯកសារ​ភ្ជាប់នានា + + + Size + ទំហំ + + + Group name + ឈ្មោះ​ក្រុម + + + Entry title + ចំណងជើងទិន្នន័យបញ្ចូល + + + Password Strength + ប្រសិទ្ធភាពពាក្យសម្ងាត់ + + + Entry notes + កំណត់ចំណាំទិន្នន័យបញ្ចូល + + + Entry expires at + ទិន្នន័យបញ្ចូលផុតកំណត់នៅ + + + Creation date + កាលបរិច្ឆេទបង្កើត + + + Last modification date + កាលបរិច្ឆេទកែប្រែចុងក្រោយ + + + Last access date + កាលបរិច្ឆេទចូលប្រើចុងក្រោយ + + + Attached files + បានភ្ជាប់ឯកសារ + + + Entry size + ទំហំនៃទិន្នន័យបញ្ចូល + + + Has attachments + មានឯកសារភ្ជាប់ + + + Has TOTP + មាន TOTP + + + Background Color + + + + Group Path + + + + + EntryPreviewWidget + + Display current TOTP value + បង្ហាញតម្លៃ TOTP បច្ចុប្បន្ន + + + Close + បិទ + + + General + ទូទៅ + + + Password + ពាក្យសម្ងាត់ + + + URL + URL + + + Expiration + ផុតកំណត់ + + + Tags + ស្លាក + + + Tags list + បញ្ជីស្លាក + + + Username + ឈ្មោះអ្នកប្រើ + + + Notes + ចំណាំ + + + Advanced + កម្រិតខ្ពស់ + + + Attachments + ឯកសារ​ភ្ជាប់នានា + + + Attributes + លក្ខណៈ + + + Autotype + មុខងារវាយបញ្ចូលដោយស្វ័យប្រវត្តិ + + + Default Sequence + លំដាប់លំនាំដើម + + + Window + វីនដូ + + + Sequence + លំដាប់ + + + Searching + ការស្វែងរក + + + Share + ចែករំលែក + + + Search + ស្វែងរក​ + + + Clear + ជម្រះ + + + Never + មិនធ្លាប់ + + + Double click to copy value + ចុចពីរដងដើម្បីចម្លងតម្លៃ + + + Enabled + បានបើក + + + Disabled + បានបិទដំណើរការ + + + Double click to copy to clipboard + + + + + EntryURLModel + + Invalid URL + URL មិនត្រឹមត្រូវ + + + Duplicate URL + + + + + EntryView + + Fit to window + សមនឹង window + + + Fit to contents + សមនឹងមាតិកា + + + Reset to defaults + ការកំណត់ទៅលំនាំដើមវិញ + + + + %1 entry(s)... + + + + + ExportDialog + + Export options + ជម្រើសនាំចេញ + + + Sort entries by... + តម្រៀបទិន្នន័យបញ្ចូលដោយ... + + + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + + អ្នកហៀបនឹងនាំចេញមូលដ្ឋានទិន្នន័យរបស់អ្នកទៅជាឯកសារដែលមិនបានអ៊ិនគ្រីប។ +ការធ្វើបែបនេះនឹងទុកឱ្យពាក្យសម្ងាត់ និងព័ត៌មានរសើបរបស់អ្នកងាយទទួលរងគ្រោះ! + + + + database order + លំដាប់មូលដ្ឋានទិន្នន័យ + + + name (ascending) + ឈ្មោះ (ឡើង) + + + name (descending) + ឈ្មោះ (ចុះ) + + + unknown + មិនស្គាល់ + + + Export database to HTML file + នាំចេញឃ្លំាងទិន្នន័យទៅជាឯកសារ HTML + + + HTML file + ឯកសារ HTML + + + + FdoSecrets::DBusMgr + + Failed to deliver message + បានបរាជ័យក្នុងការបញ្ជូនសារ + + + Failed to send reply on DBus + ផ្ញើការឆ្លើយតបនៅលើ DBus មិនបានសម្រេច + + + Unknown + Unknown PID + មិនស្គាល់ + + + Unknown + Unknown executable path + មិនស្គាល់ + + + <i>PID: %1, Executable: %2</i> + <i>PID: 1234, Executable: /path/to/exe</i> + <i>PID៖ %1, អនុវត្តន៍បាន៖ %2</i> + + + Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. + សេវាសម្ងាត់មួយផ្សេងទៀតកំពុងដំណើរការ (%1)។<br/>សូមបញ្ឈប់/ដកសេវាសម្ងាត់ចេញ មុនពេលបើកដំណើរការការរួមបញ្ចូលសេវាសម្ងាត់ឡើងវិញ។ + + + Failed to register DBus service at %1.<br/> + មិនបានសម្រេចក្នុងការចុះឈ្មោះសេវា DBus នៅ %1។<br/> + + + Failed to register service on DBus at path '%1' + ចុះឈ្មោះសេវានៅលើ DBus នៅផ្លូវ '%1' មិនបានសម្រេច + + + Failed to register database on DBus under the name '%1' + មិនបានសម្រេចក្នុងការចុះឈ្មោះមូលដ្ឋានទិន្នន័យនៅលើ DBus នៅក្រោមឈ្មោះ '%1' + + + Failed to register session on DBus at path '%1' + ចុះឈ្មោះវគ្គនៅលើ DBus នៅផ្លូវ '%1' មិនបានសម្រេច + + + Failed to register item on DBus at path '%1' + ចុះឈ្មោះធាតុនៅលើ DBus នៅផ្លូវ '%1' មិនបានសម្រេច + + + Failed to register prompt object on DBus at path '%1' + ចុះឈ្មោះផ្ទាំងលេចឡើងសារជូនដំណឹងនៅលើ DBus នៅផ្លូវ '%1' មិនបានសម្រេច + + + + FdoSecrets::Item + + Entry "%1" from database "%2" was used by %3 + ការបញ្ចូល "%1" ពីមូលដ្ឋានទិន្នន័យ "%2" ត្រូវបានប្រើប្រាស់ដោយ %3 + + + + FdoSecrets::Service + + %n Entry(s) was used by %1 + %1 is the name of an application + %n ទិន្នន័យបញ្ចូលត្រូវបានប្រើប្រាស់ដោយ %1 + + + + FdoSecrets::SettingsClientModel + + Unknown + មិនស្គាល់ + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + អត់មាន/មិនមានផ្លូវ​ចូលទៅអនុវត្តន៍បាន។ សូមសួរទៅអតិថិជន​ម្តងទៀតថាតើវាប្រាកដជាមាន + + + + FdoSecrets::SettingsDatabaseModel + + Unlock to show + ដោះសោដើម្បីបង្ហាញ + + + None + គ្មាន + + + + FdoSecrets::UnlockPrompt + + %1 (PID: %2) + %1 (PID: %2) + + + + FdoSecretsPlugin + + <b>Fdo Secret Service:</b> %1 + <b> សេវាសម្ងាត់ Fdo:</b> %1 + + + + Group + + [empty] + group has no children + [ទទេ] + + + %1 - Clone + %1 - ក្លូន + + + + HibpDownloader + + Online password validation failed + ការផ្ទៀងផ្ទាត់ពាក្យសម្ងាត់លើអ៊ីនធឺណិតបានបរាជ័យ + + + + IconDownloaderDialog + + Download Favicons + ទាញយក Favicon + + + Cancel + បញ្ឈប់ + + + Having trouble downloading icons? +You can enable the DuckDuckGo website icon service in the security section of the application settings. + កំពុងមានបញ្ហាក្នុងការទាញយករូបតំណាង? +អ្នកអាចបើកសេវារូបគេហទំព័រ DuckDuckGo នៅក្នុងផ្នែកសុវត្ថិភាពនៃការកំណត់កម្មវិធីបាន។ + + + Close + បិទ + + + URL + URL + + + Status + ស្ថានភាព + + + Please wait, processing entry list… + សូមមេត្តារង់ចាំ កំពុងដំណើរការបញ្ចូលបញ្ជីឈ្មោះ… + + + Downloading… + កំពុងទាញយក… + + + Ok + យល់ព្រម + + + Already Exists + ធ្លាប់​មានស្រាប់ហើយ + + + Download Failed + ការទាញយកបានបរាជ័យ + + + Downloading favicons (%1/%2)… + កំពុងទាញយក favicons (%1/%2)… + + + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + ទំព័រអ្នកជំនួយ + + + Entry count: %1 + + + + Group + ក្រុម + + + Title + ចំណងជើង + + + Username + ឈ្មោះអ្នកប្រើ + + + Password + ពាក្យសម្ងាត់ + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + ទម្រង់ + + + Import File Selection + + + + Password: + ពាក្យសម្ងាត់៖ + + + Key File: + ឯកសារសោ៖ + + + Browse… + រុករក… + + + Import Into: + + + + New Database + មូលដ្ឋាន​ទិន្នន័យ​ថ្មី + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + បើក OPVault + + + Select import file + + + + All files + ឯកសារ​ទាំងអស់ + + + Key files + ឯកសារសោ + + + Select key file + ជ្រើសរើសឯកសារសោ + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + + + KMessageWidget + + &Close + &បិទ + + + Close message + បិទសារ + + + + Kdbx3Reader + + Missing database headers + កំពុងបាត់បឋមកថា​មូលដ្ឋាន​ទិន្នន័យ + + + Unable to calculate database key + មិនអាចគណនាសោមូលដ្ឋានទិន្នន័យបានទេ + + + Unable to issue challenge-response: %1 + មាន​បញ្ហា​ពេលកំពុងដំណើរការផ្ទៀងផ្ទាត់៖ % 1 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + បានផ្តល់មកព័ត៌មានផ្ទៀងផ្ទាត់មិនត្រឹមត្រូវ សូមព្យាយាមម្តងទៀត។ +ប្រសិនបើបញ្ហានេះកើតឡើងម្តងទៀត នោះឯកសារមូលដ្ឋានទិន្នន័យរបស់អ្នកអាចនឹងត្រូវខូច។ + + + Header doesn't match hash + បឋមកថាមិនត្រូវគ្នានឹងហាស + + + Invalid header id size + ទំហំ id នៃក្បាលទំព័រមិនត្រឹមត្រូវ + + + Invalid header field length: field %1 + ប្រវែងកន្លែងបញ្ចូលបឋមកថាមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1 + + + Invalid header data length: field %1, %2 expected, %3 found + ប្រវែងទិន្នន័យបឋមកថាមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1, %2 ដែលបានរំពឹងទុក, %3 ដែលបានរកឃើញ + + + + Kdbx3Writer + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + ទំហំ cipher IV ស៊ីមេទ្រីកមិនត្រឹមត្រូវ។ + + + Unable to issue challenge-response: %1 + មាន​បញ្ហា​ពេលកំពុងដំណើរការផ្ទៀងផ្ទាត់៖ % 1 + + + Unable to calculate database key + មិនអាចគណនាសោមូលដ្ឋានទិន្នន័យបានទេ + + + + Kdbx4Reader + + missing database headers + កំពុងបាត់បឋមកថា​មូលដ្ឋាន​ទិន្នន័យ + + + Unable to calculate database key: %1 + មិនអាចគណនាសោមូលដ្ឋានទិន្នន័យបានទេ៖ %1 + + + Invalid header checksum size + ទំហំលេខសរុបដើម្បីពិនិត្យមើលទិន្នន័យត្រឹមត្រូវបឋមកថាមិនត្រឹមត្រូវ + + + Header SHA256 mismatch + បឋមកថា SHA256 មិនត្រូវគ្នា + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + បានផ្តល់មកព័ត៌មានផ្ទៀងផ្ទាត់មិនត្រឹមត្រូវ សូមព្យាយាមម្តងទៀត។ប្រសិនបើបញ្ហានេះកើតឡើងម្តងទៀត នោះឯកសារមូលដ្ឋានទិន្នន័យរបស់អ្នកអាចនឹងត្រូវខូច។ + + + (HMAC mismatch) + (HMAC មិនត្រូវគ្នា) + + + Unknown cipher + មិនស្គាល់លេខសម្ងាត់ + + + Invalid header id size + ទំហំ id នៃក្បាលទំព័រមិនត្រឹមត្រូវ + + + Invalid header field length: field %1 + ប្រវែងកន្លែងបញ្ចូលបឋមកថាមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1 + + + Invalid header data length: field %1, %2 expected, %3 found + ប្រវែងទិន្នន័យបឋមកថាមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1, %2 ដែលបានរំពឹងទុក, %3 ដែលបានរកឃើញ + + + 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. + បានរកឃើញកន្លែងបញ្ចូលបឋមកថាចាស់នៅក្នុងឯកសារ KDBX4។ + + + Invalid inner header id size + ទំហំលេខសម្គាល់បឋមកថាខាងក្នុងមិនត្រឹមត្រូវ + + + Invalid inner header field length: field %1 + ប្រវែងកន្លែងបញ្ចូលបឋមកថាខាងក្នុងមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1 + + + Invalid inner header data length: field %1, %2 expected, %3 found + ប្រវែងទិន្នន័យបឋមកថាខាងក្នុងមិនត្រឹមត្រូវ៖ កន្លែងបញ្ចូល %1, %2 ដែលបានរំពឹងទុក, %3 ដែលបានរកឃើញ + + + Invalid inner header binary size + ទំហំគោលពីរនៃបឋមកថាខាងក្នុងមិនត្រឹមត្រូវ + + + Unsupported KeePass variant map version. + Translation: variant map = data structure for storing meta data + កំណែផែនទីចម្រុះ KeePass ដែលមិនគាំទ្រ។ + + + Invalid variant map entry name length + Translation: variant map = data structure for storing meta data + ប្រវែងឈ្មោះនៃទិន្នន័យបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + Invalid variant map entry name data + Translation: variant map = data structure for storing meta data + ទិន្នន័យសម្រាប់ឈ្មោះនៃទិន្នន័យបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + Invalid variant map entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃទិន្ន័យបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + Invalid variant map entry value data + Translation comment: variant map = data structure for storing meta data + ទិន្នន័យសម្រាប់តម្លៃនៃទិន្នន័យបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + Invalid variant map Bool entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃការបញ្ចូល Bool នៅក្នុងផែនទីអថេរនេះមិនត្រឹមត្រូវ + + + Invalid variant map Int32 entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃការបញ្ចូល Int32 នៅក្នុងផែនទីអថេរនេះមិនត្រឹមត្រូវ + + + Invalid variant map UInt32 entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃការបញ្ចូល UInt32 នៅក្នុងផែនទីអថេរនេះមិនត្រឹមត្រូវ + + + Invalid variant map Int64 entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃការបញ្ចូល Int64 នៅក្នុងផែនទីអថេរនេះមិនត្រឹមត្រូវ + + + Invalid variant map UInt64 entry value length + Translation: variant map = data structure for storing meta data + ប្រវែងតម្លៃនៃការបញ្ចូល UInt64 នៅក្នុងផែនទីអថេរនេះមិនត្រឹមត្រូវ + + + Invalid variant map entry type + Translation: variant map = data structure for storing meta data + ប្រភេទទិន្ន័យបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + Invalid variant map field type size + Translation: variant map = data structure for storing meta data + ទំហំនៃប្រភេទកន្លែងបញ្ចូលផែនទីអថេរមិនត្រឹមត្រូវ + + + + Kdbx4Writer + + Invalid symmetric cipher algorithm. + អាល់ហ្គោរីត cipher ស៊ីមេទ្រីកមិនត្រឹមត្រូវ។ + + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + ទំហំ cipher IV ស៊ីមេទ្រីកមិនត្រឹមត្រូវ។ + + + Unable to calculate database key: %1 + មិនអាចគណនាសោមូលដ្ឋានទិន្នន័យបានទេ៖ %1 + + + Failed to serialize KDF parameters variant map + Translation comment: variant map = data structure for storing meta data + ដាក់ស៊េរី​ទៅលើផែនទីអថេរប៉ារ៉ាម៉ែត្រ KDF មិនបានសម្រេច + + + + KdbxReader + + Invalid cipher uuid length: %1 (length=%2) + ប្រវែង​ cipher uuid មិន​ត្រឹមត្រូវ៖ %1 (ប្រវែង = %2) + + + Unable to parse UUID: %1 + មិនអាចញែក UUID: %1 + + + Unsupported 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 + ទំហំលេខសម្គាល់ស្ទ្រីមចៃដន្យមិនត្រឹមត្រូវ + + + Invalid inner random stream cipher + Cipher ស្ទ្រីមចៃដន្យខាងក្នុងមិនត្រឹមត្រូវ + + + Failed to read database file. + បានបរាជ័យក្នុងការអានឯកសារឃ្លំាងទិន្នន័យ។ + + + The selected file is an old KeePass 1 database (.kdb). + +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 ចាស់បានទេ។ + + + Not a KeePass database. + មិនមែនជាឃ្លំាងទិន្នន័យ KeePass ទេ។ + + + Unsupported KeePass 2 database version. + កំណែទិន្នន័យ KeePass 2 ដែលមិនគាំទ្រ។ + + + + KdbxXmlReader + + XML parsing failure: %1 + ​ការ​ញែក XML មិនបានសម្រេច៖ %1 + + + No root group + គ្មានក្រុមឫស + + + XML error: +%1 +Line %2, column %3 + បញ្ហា XML៖ +%1 +បន្ទាត់ %2, ជួរឈរ %3 + + + 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 + តម្លៃបើកមុខងារវាយបញ្ចូលស្វ័យប្រវត្តិមិនត្រឹមត្រូវ + + + Invalid EnableSearching value + តម្លៃបើកការស្វែងរកមិនត្រឹមត្រូវ + + + No group uuid found + រកមិនឃើញក្រុម uuid ទេ + + + Null DeleteObject uuid + គ្មាន DeleteObject uuid + + + Missing DeletedObject uuid or time + UUID ឬពេលវេលាសម្រាប់វត្ថុដែលបានលុបកំពុងបាត់ + + + Null entry uuid + គ្មានការបញ្ចូីល uuid + + + Invalid entry icon number + លេខរូបទិន្នន័យបញ្ចូលមិនត្រឹមត្រូវ + + + History element in history entry + ធាតុ​របស់ប្រវត្តិសាស្ត្រ​ក្នុង​ការ​បញ្ចូល​ប្រវត្តិ + + + No entry uuid found + រកមិនឃើញទិន្នន័យបញ្ចូលរបស់ uuid + + + History element with different uuid + ធាតុរបស់ប្រវត្តិជាមួយ uuid ផ្សេងគ្នា + + + Duplicate custom attribute found + បានរកឃើញលក្ខណៈផ្ទាល់ខ្លួនស្ទួន + + + Entry string key or value missing + សោជួរអក្សរនៃការបញ្ចូល ឬតម្លៃដែលកំពុងបាត់ + + + Entry binary key or value missing + បញ្ចូល​សោគោល​ពីរ ឬ​តម្លៃ​ដែលកំពុងបាត់ + + + Auto-type association window or sequence missing + កំពុងបាត់មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិភ្ជាប់នឹងវីនដូ ឬលំដាប់ + + + Invalid bool value + តម្លៃ bool មិនត្រឹមត្រូវ + + + Invalid date time value + តម្លៃកាលបរិច្ឆេទនិងម៉ោងមិនត្រឹមត្រូវ + + + Invalid color value + តម្លៃពណ៌មិនត្រឹមត្រូវ + + + Invalid color rgb part + ផ្នែកពណ៌ rgb មិនត្រឹមត្រូវ + + + Invalid number value + តម្លៃលេខមិនត្រឹមត្រូវ + + + Invalid uuid value + តម្លៃ uuid មិនត្រឹមត្រូវ + + + Unable to decompress binary + Translator meant is a binary data inside an entry + មិន​អាច​បង្រួម​ប្រព័ន្ធ​គោលពីរ​បាន​ទេ + + + + KeeAgentSettings + + Invalid KeeAgent settings file structure. + រចនាសម្ព័ន្ធឯកសារការនៃការកំណត់ KeeAgent មិនត្រឹមត្រូវ។ + + + Private key is an attachment but no attachments provided. + សោឯកជនគឺជាឯកសារភ្ជាប់មួយ ប៉ុន្តែមិនមានផ្តល់ជូនឯកសារភ្ជាប់ណាមួយទេ។ + + + Private key is empty + សោឯកជនគឺទទេ + + + File too large to be a private key + ឯកសារធំពេកដើម្បីធ្វើជាសោឯកជន + + + Failed to open private key + បានបរាជ័យក្នុងការបើកសោឯកជន + + + + KeePass1Reader + + Unable to read keyfile. + មិនអាចអានឯកសារសំខាន់ៗបានទេ + + + Not a KeePass database. + មិនមែនជាឃ្លំាងទិន្នន័យ KeePass ទេ។ + + + Unsupported encryption algorithm. + វិធីដោះស្រាយការអ៊ិនគ្រីបមិនគាំទ្រ។ + + + Unsupported KeePass database version. + កំណែទិន្នន័យ KeePass ដែលមិនគាំទ្រ។ + + + Unable to read encryption IV + IV = Initialization Vector for symmetric cipher + មិនអាចអាន អ៊ិនគ្រីប IVបានទេ + + + Invalid 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 + មិនអាចបង្កើតមេឃធាងក្រុមបានទេ + + + Root + ឬសគល់ + + + Unable to calculate database key + មិនអាចគណនាសោមូលដ្ឋានទិន្នន័យបានទេ + + + unable to seek to content position + មិនអាចស្វែងរកទីតាំងមាតិកាបានទេ + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be 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 + ប្រភេទទំហំកន្លែងបញ្ចូលនៃទិន្នន័យបញ្ចូលមិនត្រឹមត្រូវ + + + + KeeShare + + Invalid sharing reference + ឯកសារយោងចែករំលែកមិនត្រឹមត្រូវ + + + Inactive share %1 + ការចែករំលែកអសកម្ម % 1 + + + Imported from %1 + បាននាំចូលពី% 1 + + + Exported to %1 + បាននាំចេញទៅ %1 + + + Synchronized with %1 + បានធ្វើសមកាលកម្មជាមួយ %1 + + + Import is disabled in settings + បានបិទការនាំចូលនៅក្នុងការកំណត់ + + + Export is disabled in settings + ការនាំចេញត្រូវបានបិទដំណើរការនៅក្នុងការកំណត់ + + + Inactive share + ចែករំលែកអសកម្ម + + + Imported from + បាននាំចូលពី + + + Exported to + បាននាំចេញទៅ + + + Synchronized with + បានធ្វើសមកាលកម្មជាមួយ + + + + KeyComponentWidget + + Key Component + សមាសធាតុសំខាន់ + + + Key Component Description + ការពណ៌នាអំពីសមាសធាតុសំខាន់ៗ + + + Cancel + បញ្ឈប់ + + + Key Component set, click to change or remove + សំណុំសមាសភាគសោ ដោយចុចដើម្បីផ្លាស់ប្តូរ ឬលុបចេញ + + + + KeyFileEditWidget + + Generate a new key file + បង្កើតឯកសារសោថ្មី + + + Generate + បង្កើត + + + Generate a new key file or choose an existing one to protect your database. + បង្កើតឯកសារសោថ្មី ឬជ្រើសរើសឯកសារសោដែលមានស្រាប់ដើម្បីការពារមូលដ្ឋានទិន្នន័យរបស់អ្នក។ + + + Note: Do NOT use a file that may change as that will prevent you from unlocking your database. + ចំណាំ៖ កុំប្រើឯកសារដែលអាចផ្លាស់ប្តូរព្រោះវានឹងរារាំងអ្នកពីការដោះសោឃ្លំាងទិន្នន័យរបស់អ្នក។ + + + Browse for key file + រកមើលកូដឯកសារ + + + Browse… + រុករក… + + + Old key file format + ទម្រង់​ឯកសារសោចាស់ + + + You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. + អ្នកបានជ្រើសរើសឯកសារសោក្នុងទម្រង់ចាស់ដែល KeePassXC<br>អាចបញ្ឈប់ការប្រើប្រាស់ជាមួយនៅពេលអនាគត។<br><br>សូមពិចារណាទៅលើការបង្កើតឯកសារសោថ្មីមួយជំនួសវិញ។ + + + Error loading the key file '%1' +Message: %2 + បញ្ហាក្នុងការផ្ទុកសោឯកសារ '%1' +សារ៖ %2 + + + Key File + ឯកសារសោ + + + Add Key File + បន្ថែមសោឯកសារ + + + Change Key File + ផ្លាស់ប្ដូរឯកសារសោ + + + Remove Key File + ដកឯកសារសោចេញ + + + Key File set, click to change or remove + សំណុំឯកសារសោដោយចុចកែប្រែ ឬដកចេញ + + + <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>អ្នកត្រូវតែរក្សាវាជាការសម្ងាត់ ហើយកុំបាត់បង់វា បើមិនដូច្នោះទេ អ្នកនឹងជាប់សោ។</p> + + + Key files + ឯកសារសោ + + + All files + ឯកសារ​ទាំងអស់ + + + Create Key File… + បង្កើតឯកសារសំខាន់… + + + Error creating key file + បញ្ហាក្នុងការបង្កើតឯកសារសោ + + + Unable to create key file: %1 + មិនអាចបង្កើតសោឯកសារ %1 + + + Select a key file + ជ្រើសរើសឯកសារសំខាន់ៗ + + + Invalid Key File + ឯកសារសោមិនត្រឹមត្រូវ + + + You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. + អ្នកមិនអាចប្រើប្រាស់មូលដ្ឋានទិន្នន័យបច្ចុប្បន្ននេះជាឯកសារសោផ្ទាល់ខ្លួនរបស់វាបានទេ។ សូមជ្រើសរើសឯកសារផ្សេង ឬបង្កើតឯកសារសោថ្មីមួយ។ + + + Suspicious Key File + ឯកសារសោដែលគួរឱ្យសង្ស័យ។ + + + The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. +Are you sure you want to continue with this file? + ឯកសារសោរដែលបានជ្រើសរើសមើលទៅហាក់ដូចជាឯកសារមូលដ្ឋានទិន្នន័យពាក្យសម្ងាត់។ ឯកសារសោត្រូវតែជាឯកសារស្ថាទិចដែលមិនមានការផ្លាស់ប្តូរ ឬអ្នកនឹងបាត់បង់សិទ្ធិចូលប្រើប្រាស់មូលដ្ឋានទិន្នន័យរបស់អ្នកជារៀងរហូត។ +តើអ្នកពិតជាចង់បន្តជ្រើសរើសយកឯកសារនេះឬ? + + + + MacUtils + + Invalid key code + កូដសោមិនត្រឹមត្រូវ + + + Global shortcut already registered to %1 + ផ្លូវកាត់ទូទៅបានចុះឈ្មោះរួចហើយទៅកាន់ % 1 + + + Could not register global shortcut + មិនអាចចុះឈ្មោះផ្លូវកាត់ទូទៅបានទេ + + + + MainWindow + + &Database + &ឃ្លាំងទិន្នន័យ + + + &Recent Databases + &ឃ្លំាងទិន្នន័យថ្មីៗ + + + &Export + &នំាចេញ + + + &Help + &ជំនួយ + + + &Entries + &ការបញ្ចូលនានា + + + Copy Att&ribute + ចម្លងលក្ខណៈ + + + TOTP + TOTP + + + Tags + ស្លាក + + + &Groups + &កែក្រុមនានា + + + &Tools + &ឧបករណ៍នានា + + + View + មើល + + + Theme + រូបរាង + + + &Quit + &ចាកចេញ + + + &About + &អំពី + + + &Check for Updates + &ពិនិត្យមើលការធ្វើបច្ចុប្បន្នភាព + + + &Open Database… + &បើកឃ្លំាងទិន្នន័យ… + + + &Save Database + &រក្សាទុកឃ្លំាងទិន្នន័យ + + + &Close Database + &បិទឃ្លាំងទិន្នន័យ + + + &New Database… + &ឃ្លំាងទិន្នន័យថ្មី… + + + &Merge From Database… + &បញ្ចូល​ពី​មូលដ្ឋាន​ទិន្នន័យ… + + + &New Entry… + &ការបញ្ចូលថ្មី… + + + &Edit Entry… + &កែការបញ្ចូល… + + + &Delete Entry… + &លុបការបញ្ចូល… + + + &New Group… + &ក្រុមថ្មី… + + + &Edit Group… + &កែក្រុម… + + + &Delete Group… + &លុប​ក្រុម… + + + Download All &Favicons… + ទាញយកទាំងអស់ និង Favicon… + + + Sort &A-Z + តម្រៀប &A-Z + + + Sort &Z-A + តម្រៀប &Z-A + + + Sa&ve Database As… + រក្សាទិន្នន័យទុកជាប្រភេទ… + + + Database &Security… + មូលដ្ឋានទិន្នន័យ និងសុវត្ថិភាព… + + + Database &Reports… + មូលដ្ឋានទិន្នន័យ និងរបាយការណ៍… + + + &Database Settings… + &ការកំណត់ឃ្លាំងទិន្នន័យ… + + + &Clone Entry… + &ការបញ្ចូលក្លូន… + + + Move u&p + ផ្លាស់ទី​ឡើង​លើ + + + Move do&wn + ផ្លាស់ទីទៅក្រោម + + + Copy &Username + ចម្លង &ឈ្មោះអ្នកប្រើ + + + Copy &Password + ចម្លង &ពាក្យសម្ងាត់ + + + &Settings + &ការកំណត់ + + + &Password Generator + &ម៉ាស៊ីនបង្កើតពាក្យសម្ងាត់ + + + Perform &Auto-Type + ប្រតិបត្តិការ &មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + Download &Favicon + ទាញយក និង Favicon + + + Open &URL + បើកនិង URL + + + &Lock Database + &ចាក់សោឃ្លំាងទិន្នន័យ + + + Lock &All Databases + ចាក់សោ & មូលដ្ឋានទិន្នន័យទាំងអស់ + + + &Title + &ចំណងជើង + + + Copy &URL + ចម្លង &URL + + + &Notes + &កំណត់ចំណាំ + + + &CSV File… + ឯកសារ &CSV… + + + &HTML File… + &កែឯកសារ HTML… + + + KeePass 1 Database… + មូលដ្ឋានទិន្នន័យ KeePass 1… + + + 1Password Vault… + 1តំបន់សុវត្ថិភាពពាក្យសម្ងាត់… + + + CSV File… + ឯកសារ CSV… + + + Show TOTP + បង្ហាញ TOTP + + + Show QR Code + បង្ហាញ​កូដ QR + + + Set up TOTP… + ដំឡើង TOTP… + + + Copy &TOTP + ចម្លង &TOTP + + + Copy Password and TOTP + ចម្លងពាក្យសម្ងាត់ និង TOTP + + + E&mpty recycle bin + ធុងសំរាមទទេ + + + &Donate + &បរិច្ចាគ + + + Report a &Bug + រាយការណ៍ &មេរោគ + + + &Getting Started + &ការចាប់ផ្តើម + + + Open Getting Started Guide + បើកការណែនាំអំពីការចាប់ផ្តើម + + + &Online Help + ជំនួយតាម&អ៊ីនធឺណិត + + + &User Guide + &មគ្គុទេសន៍អ្នកប្រើ + + + Open User Guide + បើកការណែនាំសម្រាប់អ្នកប្រើ + + + &Keyboard Shortcuts + &ផ្លូវកាត់នៃក្ដារចុច + + + Save Database Backup… + រក្សាទិន្នន័យទុកបម្រុង + + + Add key to SSH Agent + បន្ថែមសោទៅកាន់ភ្នាក់ងារ SSH + + + Remove key from SSH Agent + ដកសោពីភ្នាក់ងារ SSH ចេញ + + + Compact Mode + មុខងារបង្រួម + + + Automatic + ស្វ័យប្រវត្តិ + + + Light + ភ្លឺ + + + Dark + ងងឹត + + + Classic (Platform-native) + ក្លាស៊ិក (ប្រព័ន្ធដើម) + + + Show Menubar + + + + Show Toolbar + បង្ហាញរបាឧបករណ៍ + + + Show Preview Panel + បង្ហាញផ្ទាំងមើលជាមុន + + + Always on Top + នៅខាងលើបំផុតជានិច្ច + + + Hide Usernames + លាក់ឈ្មោះអ្នកប្រើ + + + Hide Passwords + លាក់ពាក្យសម្ងាត់ + + + Clone Group... + ក្រុមក្លូន... + + + &XML File… + ឯកសារ &XML… + + + Clear history + ជម្រះប្រវត្តិ + + + Access error for config file %1 + កំហុសពេលចូលប្រើ ដោយសារឯកសារប្រមូលបាន ១% + + + Don't show again for this version + កុំបង្ហាញកំណែនេះម្តងទៀត + + + 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 ដែលមិនថិរភាព។ +មានហានិភ័យខ្ពស់ទៅលើការខូច រក្សាការបម្រុងទុកនៃមូលដ្ឋានទិន្នន័យរបស់អ្នក។ +កំណែនេះមិនមែនសម្រាប់គោលបំណងការប្រើប្រាស់ផ្នែកផលិតកម្មទេ។ + + + NOTE: You are using a pre-release version of KeePassXC. +Expect some bugs and minor issues, this version is meant for testing purposes. + ចំណាំ៖ អ្នកកំពុងប្រើប្រាស់កំណែមុនចេញផ្សាយរបស់កម្មវិធី KeePassXC។ +កំហុស និងបញ្ហាតូចតាចមួយចំនួននឹងអាចកើតមានឡើង ដោយសារកំណែនេះមានគោលបំណងសម្រាប់ការធ្វើតេស្តតែប៉ុណ្ណោះ។ + + + No Tags + គ្មានស្លាក + + + Restore Entry(s) + ស្តារទិន្នន័យធាតុចូលឡើងវិញ + + + Settings + ការកំណត់ + + + 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. + អ្នកអាចពិនិត្យមើលបច្ចុប្បន្នភាពដោយដៃពីម៉ឺនុយកម្មវិធីបានជានិច្ច។ + + + Toggle window + បិទ/បើកវីនដូ + + + Quit KeePassXC + ចាកចេញពី KeePassXC + + + %1 Entry(s) + %1 ទិន្នន័យបញ្ចូល + + + Please present or touch your YubiKey to continue… + សូមបង្ហាញ ឬចុច YubiKey របស់អ្នកដើម្បីបន្ត… + + + Restart Application? + ចាប់ផ្តើមកម្មវិធីឡើងវិញ + + + You must restart the application to apply this setting. Would you like to restart now? + អ្នកត្រូវតែចាប់ផ្តើមកម្មវិធីឡើងវិញ ដើម្បីដាក់ប្រើការកំណត់នេះ។ តើអ្នកចង់ចាប់ផ្តើមឡើងវិញឥឡូវនេះឬទេ? + + + Allow Screen Capture + អនុញ្ញាតឱ្យថតអេក្រង់ + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + កែទិន្នន័យបញ្ចូល + + + Delete Entry + + + + Create Group + + + + Edit Group + កែក្រុម + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + ចម្លងឈ្មោះអ្នកប្រើ + + + Copy Password + ចម្លងពាក្យសម្ងាត់ + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + នាំចូលមូលដ្ឋានទិន្នន័យ KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + + + + ManageDatabase + + Database settings + ការកំណត់ឃ្លាំងទិន្នន័យ + + + Edit database settings + កែការកំណត់របស់ឃ្លំាងទិន្នន័យ + + + Unlock database + ដោះសោទិន្នន័យ + + + Unlock database to show more information + ដោះសោទិន្នន័យដើម្បីបង្ហាញព័តម៌ានបន្ថែម + + + Lock database + ចាក់សោមូលដ្ឋានទិន្នន័យ + + + + ManageSession + + Disconnect + ផ្ដាច់ + + + Disconnect this application + ផ្តាច់កម្មវិធីនេះ + + + Reset + កំណត់ឡើងវិញ + + + Reset any remembered decisions for this application + ការកំណត់ឡើងវិញនូវការសម្រេចចិត្តដែលចងចាំសម្រាប់កម្មវិធីនេះ + + + + Merger + + Creating missing %1 [%2] + កំពុង​បង្កើត​ % 1 [%2] ដែលបាត់ + + + Relocating %1 [%2] + កំពុងកំណត់ទីតាំងឡើងវិញ %1 [%2] + + + Overwriting %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 + កំពុងបន្ថែមរូបដែលកំពុងបាត់ % 1 + + + Removed custom data %1 [%2] + បានដកចេញទិន្នន័យផ្ទាល់ខ្លួន %1 [%2] + + + Adding custom data %1 [%2] + កំពុងបន្ថែមទិន្នន័យផ្ទាល់ខ្លួន % 1 [% 2] + + + + NewDatabaseWizard + + Create a new KeePassXC database… + បង្កើតឃ្លាំងទិន្នន័យ KeePassXC ថ្មី… + + + Root + Root group + ឬសគល់ + + + + NewDatabaseWizardPage + + WizardPage + ទំព័រអ្នកជំនួយ + + + Encryption Settings + ការកំណត់ការបំប្លែងជាកូដ + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + នៅទីនេះអ្នកអាចកែតម្រូវការកំណត់ការអ៊ិនគ្រីបមូលដ្ឋានទិន្នន័យ។ សូមកុំបារម្ភ អ្នកអាចកែប្រែរវាបាននៅពេលក្រោយក្នុងការកំណត់មូលដ្ឋានទិន្នន័យនេះ។ + + + + NewDatabaseWizardPageDatabaseKey + + Database Credentials + ព័ត៌មានផ្ទៀងផ្ទាត់ទិន្នន័យមូលដ្ឋាន + + + A set of credentials known only to you that protects your database. + បណ្ដុំព័ត៌មានផ្ទៀងផ្ទាត់ដែលស្គាល់បានសម្រាប់តែអ្នកប៉ុណ្ណោះដែលការពារមូលដ្ឋានទិន្នន័យរបស់អ្នក។ + + + + NewDatabaseWizardPageEncryption + + Encryption Settings + ការកំណត់ការបំប្លែងជាកូដ + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + នៅទីនេះអ្នកអាចកែតម្រូវការកំណត់ការអ៊ិនគ្រីបមូលដ្ឋានទិន្នន័យ។ សូមកុំបារម្ភ អ្នកអាចកែប្រែរវាបាននៅពេលក្រោយក្នុងការកំណត់មូលដ្ឋានទិន្នន័យនេះ។ + + + + NewDatabaseWizardPageMetaData + + General Database Information + ព័ត៌មានមូលដ្ឋានទិន្នន័យទូទៅ + + + Please fill in the display name and an optional description for your new database: + សូមបំពេញឈ្មោះដែលបង្ហាញនេះនិងការពណ៌នាជាជម្រើសសម្រាប់មូលដ្ឋានទិន្នន័យថ្មីរបស់អ្នក៖ + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + + + NixUtils + + Password Manager + អ្នកគ្រប់គ្រងពាក្យសម្ងាត់ + + + Global shortcut already registered to %1 + ផ្លូវកាត់ទូទៅបានចុះឈ្មោះរួចហើយទៅកាន់ % 1 + + + Could not register global shortcut + មិនអាចចុះឈ្មោះផ្លូវកាត់ទូទៅបានទេ + + + + OpData01 + + Invalid OpData01, does not contain header + OpData01 មិនត្រឹមត្រូវ ដោយសារមិនមានបឋមកថា + + + Unable to read all IV bytes, wanted 16 but got %1 + មិនអាចអាន IV 16 បៃបានពេញលេញទាំងអស់ ដោយសារទទួលបានតែ %1 បៃ + + + Unable to init cipher for opdata01: %1 + មិនអាចបញ្ចូលកូដសម្ងាត់សម្រាប់ opdata01 បានទេ៖ %1 + + + Unable to read all HMAC signature bytes + មិនអាចអានបៃហត្ថលេខា HMAC ទាំងអស់បានទេ។ + + + Malformed OpData01 due to a failed HMAC + OpData01 ខូចទ្រង់ទ្រាយដោយសារលទ្ធផលនៃ HMAC មិនបានសម្រេច + + + Unable to process clearText in place + មិនអាចដំណើរការ អក្សរច្បាស់ៗ នៅនឹងកន្លែងបានទេ។ + + + Expected %1 bytes of clear-text, found %2 + បានរំពឹងថាមាន %1 បៃនៃអក្សរច្បាស់លាស់ ដែលបានរកឃើញ %2 + + + + OpVaultReader + + Directory .opvault must exist + ថត .opvault ត្រូវតែមានស្រាប់ + + + Directory .opvault must be readable + ថត .opvault ត្រូវតែអាចអានបាន + + + Directory .opvault/default must exist + ថត .opvault/default ត្រូវតែមានស្រាប់ + + + Directory .opvault/default must be readable + ថត .opvault/default ត្រូវតែអាចអានបាន + + + Unable to decode masterKey: %1 + មិនអាចដោះការបំប្លែងសោមេ៖ %1 + + + Unable to derive master key: %1 + មិន​អាច​ទាញ​យក​សោ​មេបានទេ៖ %1 + + + + OpenSSHKey + + Invalid key file, expecting an OpenSSH key + ឯកសារសោមិនត្រឹមត្រូវ ដោយរំពឹងថានឹងមានសោ OpenSSH + + + PEM 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 + ឯកសារសោដែលខូច នៅពេលដែលកំពុងអានសោឯកជនមិនបានសម្រេច + + + Unsupported key type: %1 + ការវាយសោដែលមិនគាំទ្រៈ%1 + + + No private key payload to decrypt + គ្មាន​ទិន្នន័យដែលផ្ទុក​សោឯកជន​ដើម្បី​ឌិគ្រីប​ទេ + + + Unknown cipher: %1 + មិនស្គាល់លេខសម្ងាត់ៈ %1 + + + AES-256/GCM is currently not supported + បច្ចុប្បន្ននេះ AES-256/GCM មិនប្រើប្រាស់បានទេ + + + Passphrase is required to decrypt this key + តម្រូវឱ្យមានឃ្លាសម្ងាត់ដើម្បីឌិគ្រីបសោនេះ។ + + + Key derivation failed: %1 + ការទាញយកសោមិនបានសម្រេច៖ % 1 + + + Cipher IV is too short for MD5 kdf + Cipher IV គឺខ្លីពេកសម្រាប់ MD5 kdf + + + Unknown KDF: %1 + មិនស្គាល់ KDF: %1 + + + Failed to initialize cipher: %1 + មិនបានសម្រេចក្នុង​ការ​ចាប់ផ្ដើម cipher៖ %1 + + + Decryption failed: %1 + ការដោះការបំប្លែងកូដមិនបានសម្រេច៖ %1 + + + Decryption failed, wrong passphrase? + ការដោះការបំប្លែងកូដមិនបានសម្រេចដោយសារខុសឃ្លាសម្ងាត់មែនទេ? + + + Unexpected EOF while reading key + EOF ដែលមិនបានរំពឹងទុកនៅពេលអានសោ + + + Unsupported key part + ផ្នែកសោដែលមិនគាំទ្រ + + + Unexpected EOF while reading public key + EOFដែលមិនបានរំពឹងទុកនៅពេលអានសោគន្លឹះជាសាធារណៈ + + + Unknown key type: %1 + ការវាយសោដែលមិនស្គាល់ៈ%1 + + + 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ដែលមិនបានរំពឹងទុកនៅពេលសរសេរសោគន្លឹះ + + + (encrypted) + (បានអ៊ិនគ្រីប) + + + + OpenSSHKeyGenDialog + + SSH Key Generator + + + + Type + វាយអក្សរ + + + Bits + + + + Comment + មតិយោបល់ + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + + + + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + បោះបង់ + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + Username: %1 + + + Group + ក្រុម + + + Database + + + + Import Passkey + + + + Import + នាំចូល + + + Cancel + បោះបង់ + + + Entry + ទិន្នន័យបញ្ចូល + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + ឯកសារ​ទាំងអស់ + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + + + + + PasswordEditWidget + + Enter password: + បញ្ចូលពាក្យសម្ងាត់៖ + + + Password field + កន្លែង​បញ្ចូល​ពាក្យ​សម្ងាត់ + + + Confirm password: + បញ្ជាក់ពាក្យសម្ងាត់៖ + + + Repeat password field + បំពេញពាក្យសម្ងាត់ម្តងទៀត + + + Password + ពាក្យសម្ងាត់ + + + Add Password + បន្ថែមពាក្យសម្ងាត់ + + + Change Password + ប្តូរពាក្យសម្ងាត់ + + + Remove Password + លុបពាក្យសម្ងាត់ + + + Password set, click to change or remove + កំណត់ពាក្យសម្ងាត់ ចុចដើម្បីផ្លាស់ប្តូរ ឬលុប + + + <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> + <p>ពាក្យសម្ងាត់គឺជាវិធីសាស្ត្រចម្បងសម្រាប់ធានាមូលដ្ឋានទិន្នន័យរបស់អ្នក។</p><p>ពាក្យសម្ងាត់ល្អគឺវែង និងមានតែមួយគត់។ KeePassXC អាចបង្កើតមួយសម្រាប់អ្នក។</p> + + + Passwords do not match. + ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ។ + + + + PasswordGeneratorWidget + + Generate Password + បង្កើតពាក្យសម្ងាត់ + + + strength + Password strength + កម្រឹតខ្លាំង + + + entropy + ការវាស់វែងពាក្យសម្ងាត់ + + + Generated password + ពាក្យសម្ងាត់ដែលបានបង្កើត + + + %p% + %p% + + + Regenerate password + បង្កើតពាក្យសម្ងាត់ឡើងវិញ + + + Copy password + ចម្លងពាក្យសម្ងាត់ + + + Password + ពាក្យសម្ងាត់ + + + &Length: + &ប្រវែង៖ + + + Password length + ប្រវែងពាក្យសម្ងាត់ + + + Switch to advanced mode + ផ្លាស់ប្តូរទៅម៉ូដកម្រិតខ្ពស់ + + + Advanced + កម្រិតខ្ពស់ + + + Character Types + ប្រភេទតួអក្សរ + + + Special characters + តួអក្សរពិសេស + + + Quotes + សម្រង់ + + + Punctuation + វណ្ណយុត្តិ + + + Dashes and Slashes + សញ្ញាដាច់ៗ និងសញ្ញាទ្រេត + + + Upper-case letters + អក្សរធំ + + + Numbers + ចំនួន + + + Lower-case letters + អក្សរតូច + + + Math Symbols + និមិត្តសញ្ញាគណិត + + + Extended ASCII + ASCII លម្អិតបន្ថែម + + + Braces + សញ្ញាតង្កៀប + + + Do not include: + មិនរួមបញ្ចូល៖ + + + Additional characters to use for the generated password + តួអក្សរបន្ថែមដើម្បីប្រើប្រាស់សម្រាប់ជាពាក្យសម្ងាត់ដែលបានបង្កើតឡើង + + + Additional characters + តួអក្សរបន្ថែម + + + Add non-hex letters to "do not include" list + បន្ថែមអក្សរដែលមិនមែនជាចំនួនគោលដប់ប្រាំមួយទៅកាន់បញ្ជី "កុំរួមបញ្ចូល" + + + Hex Passwords + ពាក្យសម្ងាត់ចំនួនគោលដប់ប្រាំមួយ + + + Hex + ចំនួនគោលដប់ប្រាំមួយ + + + Character set to exclude from generated password + សំណុំតួអក្សរដើម្បីដកចេញពីពាក្យសម្ងាត់ដែលបានបង្កើត + + + Excluded characters + មិនរាប់បញ្ចូលតួអក្សរ + + + Also choose from: + ក៏អាចជ្រើសរើសពី៖ + + + Exclude look-alike characters + មិនរាប់បញ្ចូលតួអក្សរដែលមានលក្ខណៈស្រដៀងគ្នា + + + Pick characters from every group + ជ្រើសរើសតួអង្គពីគ្រប់ក្រុមទាំងអស់ + + + Passphrase + ឃ្លាសម្ងាត់ + + + Word Separator: + សញ្ញា​បំបែកពាក្យ៖ + + + Wordlist: + បញ្ជី​ពាក្យ៖ + + + Word Count: + ចំនួនពាក្យ៖ + + + Word Case: + ពាក្យអក្សរតូច៖ + + + Delete selected wordlist + លុបបញ្ជីពាក្យដែលបានជ្រើសរើស + + + Add custom wordlist + បន្ថែមបញ្ជីពាក្យផ្ទាល់ខ្លួន + + + Close + បិទ + + + Esc + គេច + + + Apply Password + ដាក់ប្រើពាក្យសម្ងាត់ + + + Regenerate password (%1) + បង្កើតពាក្យសម្ងាត់ឡើងវិញ (%1) + + + lower case + អក្សរ​តូច + + + UPPER CASE + អក្សរធំ + + + Title Case + ចំណងជើងអក្សរធំ + + + (SYSTEM) + (ប្រព័ន្ធ) + + + Entropy: %1 bit + ការវាស់វែងពាក្យសម្ងាត់៖ %1 ប៊ីត + + + Password Quality: %1 + គុណភាពពាក្យសម្ងាត់៖ % 1 + + + Poor + Password quality + ខ្សោយ + + + Weak + Password quality + ខ្សោយ + + + Good + Password quality + ល្អ + + + Excellent + Password quality + ល្អឥតខ្ចោះ + + + Confirm Delete Wordlist + បញ្ជាក់ការលុបបញ្ជីពាក្យ + + + Do you really want to delete the wordlist "%1"? + តើអ្នកពិតជាចង់លុបបញ្ជីពាក្យ "% 1" មែនដែរឬទេ? + + + Failed to delete wordlist + បានបរាជ័យក្នុងការលុបបញ្ជីពាក្យ + + + Wordlists + បញ្ជីពាក្យ + + + All files + ឯកសារទាំងអស់ + + + Select Custom Wordlist + ជ្រើសរើសបញ្ជីពាក្យផ្ទាល់ខ្លួន + + + Overwrite Wordlist? + សរសេរជាន់លើបញ្ជីពាក្យឬ? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + បញ្ជីពាក្យ "%1" មានស្រាប់ហើយជាបញ្ជីពាក្យពាក្យផ្ទាល់ខ្លួន។ +តើអ្នកចង់សរសេរជាន់លើបញ្ជីពាក្យនេះឬ? + + + Failed to add wordlist + បានបរាជ័យក្នុងការបន្ថែមបញ្ជីពាក្យ + + + Logograms + ឡូហ្គោក្រាម + + + Special Characters + តួអក្សរពិសេស + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ + + + Passwords match so far + ពាក្យសម្ងាត់ត្រូវគ្នារហូតមកដល់ពេលនេះ + + + Toggle Password (%1) + បិទ/បើក​ពាក្យ​សម្ងាត់ (%1) + + + Generate Password (%1) + បង្កើត​ពាក្យ​សម្ងាត់ (% 1) + + + Warning: Caps Lock enabled! + ការព្រមាន៖ បានបើកអក្សរ​ធំ​ជាប់! + + + Quality: %1 + គុណភាព: %1 + + + Poor + Password quality + ខ្សោយ + + + Weak + Password quality + ខ្សោយ + + + Good + Password quality + ល្អ + + + Excellent + Password quality + ល្អឥតខ្ចោះ + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + + + + PickcharsDialog + + KeePassXC - Pick Characters + KeePassXC - ជ្រើសរើសតួអក្សរ + + + Select characters to type, navigate with arrow keys, Ctrl + S submits. + ជ្រើសរើសតួអក្សរដែលត្រូវវាយបញ្ចូល រុករកដោយប្រើប្រាស់គ្រាប់ចុចសញ្ញាព្រួញ, (Ctrl) + S ដាក់បញ្ជូន។ + + + Press &Tab between characters + ចុច &ថេបរវាងតួអក្សរ + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + + + QMessageBox + + Overwrite + សរសេរជាន់លើ + + + Delete + លុប + + + Move + ផ្លាស់ទី + + + Empty + ទទេ + + + Remove + ដកចេញ + + + Skip + រំលង + + + Disable + បិទដំណើរការ + + + Merge + ដាក់បញ្ចូលគ្នា + + + Continue + បន្ត + + + Continue with weak password + + + + + QObject + + Database not opened + មូលដ្ឋានទិន្នន័យមិនបានបើកទេ + + + Database hash not available + ហាសមូលដ្ឋានទិន្នន័យមិនអាចប្រើប្រាស់បានទេ + + + Client public key not received + ឃីសាធារណៈរបស់អតិថិជនមិនត្រូវបានទទួលទេ + + + Cannot decrypt message + មិនអាចឌិគ្រីបសារបានទេ + + + Action cancelled or denied + សកម្មភាពត្រូវបានលុបចោល ឬបដិសេធ + + + Message encryption failed. + ការអ៊ិនគ្រីបសារមិនបានសម្រេច។ + + + KeePassXC association failed, try again + ការភ្ជាប់ជាមួយ KeePassXC មិនបានសម្រេច។ សូមព្យាយាមម្តងទៀត។ + + + Encryption key is not recognized + មិនស្គាល់សោអ៊ិនគ្រីបទេ + + + Incorrect action + សកម្មភាពមិនត្រឹមត្រូវ + + + Empty message received + បានទទួលសារទទេ + + + No URL provided + មិនបានផ្ដល់ URL ទេ + + + No logins found + រកមិនឃើញ ចូល + + + No groups found + រកមិនឃើញក្រុមទេ + + + Cannot create new group + មិនអាចបង្កើតក្រុមថ្មីបានទេ + + + No valid UUID provided + មិនបានផ្តល់ជូន UID បានត្រឹមត្រូវ + + + Unknown error + កំហុសឆ្គងដែលមិនស្គាល់ + + + Browser Integration + ការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Browser Plugin Failure + ការដំឡើងកម្មវិធីជំនួយនៅលើកម្មវិធីរុករកតាមអ៊ីនធឺណិតមិនបានសម្រេច + + + Could not save the native messaging script file for %1. + មិន​អាច​រក្សា​ទុក​ឯកសារស្គ្រីបផ្ញើសារដើម​សម្រាប់ % 1 បានទេ។ + + + Username for the entry. + ឈ្មោះអ្នកប្រើសម្រាប់ការបញ្ចូលនេះ។ + + + username + ឈ្មោះអ្នកប្រើ + + + URL for the entry. + URL សម្រាប់ទិន្នន័យបញ្ចូល។ + + + URL + URL + + + Notes for the entry. + ចំណាំសម្រាប់ការបញ្ចូលទិន្នន័យ។ + + + Notes + ចំណាំ + + + Prompt for the entry's password. + សារជូនដំណឹងសម្រាប់ការបញ្ចូលពាក្យសម្ងាត់នេះ។ + + + Generate a password for the entry. + បង្កើតពាក្យសម្ងាត់មួយសម្រាប់ការបញ្ចូលនេះ។ + + + Add a new entry to a database. + បន្ថែមទិន្នន័យបញ្ចូលថ្មីទៅកាន់មូលដ្ឋានទិន្នន័យ។ + + + Path of the entry to add. + ផ្លូវនៃទិន្នន័យបញ្ចូលដែលត្រូវបន្ថែម។ + + + Cannot generate a password and prompt at the same time. + មិនអាចបង្កើតពាក្យសម្ងាត់ និងសារជូនដំណឹងក្នុងពេលតែមួយបានទេ។ + + + Could not create entry with path %1. + មិន​អាច​បង្កើត​ទិន្នន័យបញ្ចូល​ជាមួយនឹង​ផ្លូវ % 1 បានទេ។ + + + Enter password for new entry: + បញ្ចូលពាក្យសម្ងាត់សម្រាប់ទិន្នន័យបញ្ចូល៖ + + + Writing the database failed %1. + ការសរសេរមូលដ្ឋានទិន្នន័យមិនបានសម្រេច %1។ + + + Successfully added entry %1. + បាន​បន្ថែម​ទិន្នន័យបញ្ចូល % 1 ដោយ​ជោគជ័យ។ + + + Adds a new group to a database. + បន្ថែមក្រុមថ្មីមួយទៅមូលដ្ឋានទិន្នន័យ។ + + + Path of the group to add. + ផ្លូវនៃក្រុមដើម្បីបន្ថែម។ + + + Group %1 already exists! + ក្រុម %1 ធ្លាប់​មានស្រាប់ហើយ! + + + Group %1 not found. + ក្រុម % 1 មិនអាចរកឃើញបាន %1 ទេ។ + + + Successfully added group %1. + បាន​បន្ថែម​ក្រុម %1 ដោយ​ជោគជ័យ។ + + + Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. + ពិនិត្យរកមើលថាតើមានពាក្យសម្ងាត់ណាមួយដែលបានលេចធ្លាយជាសាធារណៈ។ ឈ្មោះឯកសារត្រូវតែជាផ្លូវនៃឯកសារក្នុងបញ្ជីឈ្មោះ SHA-1 ហាស នៃពាក្យសម្ងាត់ដែលបានលេចធ្លាយក្នុងទម្រង់ HIBP ដូចដែលអាចរកបានពីគេហទំព័រ https://haveibeenpwned.com/Passwords។ + + + FILENAME + ឈ្មោះ​ឯកសារ + + + Path to okon-cli to search a formatted HIBP file + ផ្លូវទៅកាន់ឧបករណ៍ okon-cli ដើម្បីស្វែងរកឯកសារ HIBP ដែលបានបង្កើតទម្រង់ + + + okon-cli + okon-cli + + + Analyze passwords for weaknesses and problems. + វិភាគទៅលើពាក្យសម្ងាត់សម្រាប់ចំណុចខ្សោយ និងបញ្ហានានា។ + + + Cannot find HIBP file: %1 + មិនអាចស្វែងរកឯកសារ HIBP បានទេ៖ %1 + + + Evaluating database entries using okon… + កំពុងវាយតម្លៃការបញ្ចូលឃ្លាំងផ្ទុកទិន្នន័យដោយប្រើ okon… + + + Failed to open HIBP file %1: %2 + បើកឯកសារ HIBP %1: %2 មិនបានសម្រេច + + + Evaluating database entries against HIBP file, this will take a while… + កំពុងវាយតម្លៃមូលដ្ឋានទិន្នន័យប្រឆាំងនឹងឯកសារ HIBP ការវាយតម្លៃនេះនឹងចំណាយពេលបន្តិច… + + + Password for '%1' has been leaked %2 time(s)! + ពាក្យ​សម្ងាត់​សម្រាប់ '%1' ត្រូវ​បាន​លេច​ធ្លាយ %2 ដង! + + + Password for '%1' has been leaked! + ពាក្យ​សម្ងាត់​សម្រាប់ '%1' ត្រូវ​បាន​លេច​ធ្លាយ! + + + Export an attachment of an entry. + នាំចេញឯកសារភ្ជាប់នៃទិន្នន័យបញ្ចូល។ + + + Path of the entry with the target attachment. + ផ្លូវទិន្នន័យបញ្ចូលជាមួយឯកសារភ្ជាប់គោលដៅ។ + + + Name of the attachment to be exported. + ឈ្មោះឯកសារភ្ជាប់ដែលត្រូវនាំចេញ។ + + + Path to which the attachment should be exported. + ថតទិសដៅដែលជាកន្លែងឯកសារភ្ជាប់គួរតែត្រូវបាននាំចេញ។ + + + Could not find entry with path %1. + មិន​អាច​រកឃើញទិន្នន័យបញ្ចូល​ជាមួយនឹង​ផ្លូវ % 1 បានទេ។ + + + Could not find attachment with name %1. + មិនអាចស្វែងរកឯកសារភ្ជាប់ជាមួយឈ្មោះ % 1 បានទេ។ + + + No export target given. Please use '--stdout' or specify an 'export-file'. + គ្មានគោលដៅនាំចេញដែលបានផ្តល់ជូនទេ។ សូមប្រើ '--stdout' ឬបញ្ជាក់ 'ឯកសារ-នាំចេញ'។ + + + Could not open output file %1. + មិន​អាច​បើក​ឯកសារ​លទ្ធផល % 1 បានទេ។ + + + Successfully exported attachment %1 of entry %2 to %3. + បាននាំចេញឯកសារភ្ជាប់ %1 ដោយជោគជ័យនៃទិន្នន័យ %2 ទៅ %3។ + + + Overwrite existing attachments. + សរសេរជាន់លើឯកសារភ្ជាប់ដែលមានស្រាប់។ + + + Imports an attachment to an entry. + នាំចូលឯកសារភ្ជាប់ទៅទិន្នន័យបញ្ចូល។ + + + Path of the entry. + ផ្លូវទិន្នន័យបញ្ចូល។ + + + Name of the attachment to be added. + ឈ្មោះឯកសារភ្ជាប់ដែលត្រូវបន្ថែម។ + + + Path of the attachment to be imported. + ផ្លូវឯកសារភ្ជាប់ដែលនឹងត្រូវនាំចូល។ + + + Attachment %1 already exists for entry %2. + ឯកសារភ្ជាប់ %1 មានរួចស្រាប់ហើយសម្រាប់ទិន្នន័យបញ្ចូល %2។ + + + Could not open attachment file %1. + មិន​អាច​បើក​ឯកសារ​ភ្ជាប់ % 1 បានទេ។ + + + Successfully imported attachment %1 as %2 to entry %3. + បាននាំចេញឯកសារភ្ជាប់ %1 ដោយជោគជ័យទៅជា %2 ទៅទិន្នន័យបញ្ចូល %3។ + + + Remove an attachment of an entry. + លុបឯកសារភ្ជាប់នៃធាតុចូលចេញ + + + Name of the attachment to be removed. + ឈ្មោះឯកសារភ្ជាប់ដែលត្រូវដកចេញ។ + + + Successfully removed attachment %1 from entry %2. + បានលុបឯកសារភ្ជាប់ % 1 ចេញពីទិន្នន័យ % 2 ដោយជោគជ័យ។ + + + Copy the given attribute to the clipboard. Defaults to "password" if not specified. + Don't translate "password", it refers to the attribute. + ចម្លងលក្ខណៈដែលបានផ្តល់ទៅកាន់ឃ្លីបបតនេះ។ លំនាំដើមទៅ "ពាក្យសម្ងាត់" ប្រសិនបើមិនបានបញ្ជាក់ឲ្យបានច្បាស់លាស់។ + + + Copy the current TOTP to the clipboard (equivalent to "-a totp"). + ថ្មីៗនេះ ចម្លង TOTP ទៅកាន់ឃ្លីបបតនេះ (ស្មើនឹង "-a totp")។ + + + Must match only one entry, otherwise a list of possible matches is shown. + ប្រសិនបើមានទិន្នន័យបញ្ចូលដែលត្រូវគ្នាតែមួយប៉ុណ្ណោះ នោះវានឹងត្រូវបង្ហាញ បើមិនដូច្នេះទេ បញ្ជីប្រកួតដែលមាននឹងត្រូវបានបង្ហាញឱ្យឃើញ។ + + + Copy an entry's attribute to the clipboard. + ចម្លងលក្ខណៈរបស់ទិន្នន័យបញ្ចូលទៅកាន់ឃ្លីបបត។ + + + Path of the entry to clip. + clip = copy to clipboard + ផ្លូវទិន្នន័យបញ្ចូលទៅកាន់ឃ្លីប។ + + + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). + អស់ពេលមុនពេលធ្វើការជម្រះឃ្លីបបត (លំនាំដើមគឺ %1 វិនាទី កំណត់ទៅជា 0 សម្រាប់គ្មានដែនកំណត់)។ + + + Invalid timeout value %1. + តម្លៃអស់ពេលមិនត្រឹមត្រូវ %1។ + + + Multiple entries matching: + ទិន្នន័យបញ្ចូលជាច្រើនដែលត្រូវគ្នា៖ + + + Using matching entry: %1 + ការប្រើប្រាស់ទិន្នន័យបញ្ចូលដែលត្រូវគ្នា៖ %1 + + + Entry %1 not found. + រកមិនឃើញទិន្នន័យបញ្ចូល % 1។ + + + ERROR: Please specify one of --attribute or --totp, not both. + បញ្ហា៖ សូមបញ្ជាក់លក្ខណៈមួយនៃ --លក្ខណៈ ឬ --totp ដោយកុំបញ្ជាក់ទាំងពីរ។ + + + Entry with path %1 has no TOTP set up. + ទិន្នន័យបញ្ចូលជាមួយផ្លូវ % 1 មិនមានការដំឡើង TOTP ទេ។ + + + ERROR: attribute %1 is ambiguous, it matches %2. + បញ្ហា៖ លក្ខណៈ% 1 ដែលមិនច្បាស់លាស់ វាត្រូវគ្នានឹង % 2។ + + + Attribute "%1" not found. + រកមិនឃើញលក្ខណៈ "%1" ទេ។ + + + Entry's "%1" attribute copied to the clipboard! + លក្ខណៈ "% 1" របស់ទិន្នន័យបញ្ចូលត្រូវបានចម្លងទៅឃ្លីបបត! + + + Clearing the clipboard in %1 second(s)... + កំពុងសម្អាតឃ្លីបបតក្នុងរយៈពេល % 1 វិនាទី... + + + Clipboard cleared! + ឃ្លីបបតត្រូវបានសម្អាត! + + + Close the currently opened database. + បិទមូលដ្ឋានទិន្នន័យដែលបានបើកនាពេលថ្មីៗនេះ។ + + + Display this help. + បង្ហាញជំនួយនេះ។ + + + Silence password prompt and other secondary outputs. + ការបិទការបញ្ចូលពាក្យសម្ងាត់ និងលទ្ធផលបន្ទាប់បន្សំផ្សេងទៀត។ + + + Key file of the database. + ឯកសារសោនៃមូលដ្ឋានទិន្នន័យ។ + + + path + ផ្លូវ + + + Deactivate password key for the database. + បិទដំណើរការសោពាក្យសម្ងាត់សម្រាប់មូលដ្ឋានទិន្នន័យនេះ។ + + + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). + រន្ធដោត Yubikey និងស៊េរី​ជម្រើសដែលបានប្រើប្រាស់ដើម្បីចូលប្រើប្រាស់មូលដ្ឋានទិន្នន័យ (ឧ. 1:7370001)។ + + + slot[:serial] + រន្ធដោត[:serial] + + + Missing positional argument(s). + កំពុងបាត់អាគុយម៉ង់ទីតាំង។ + + + Too many arguments provided. + បានផ្តល់អំណះអំណាងច្រើនពេក។ + + + Path of the database. + ផ្លូវមូលដ្ឋានទិន្នន័យ។ + + + Target decryption time in MS for the database. + កំណត់ពេលវេលានៃការដោះការបំប្លែងកូដក្នុង MS សម្រាប់ឃ្លាំងផ្ទុកទិន្នន័យ។ + + + time + ពេលវេលា + + + Set the key file for the database. + កំណត់ឯកសារសំខាន់ៗសម្រាប់ទិន្នន័យ + + + Set a password for the database. + កំណត់ពាក្យសម្ងាត់ឱ្យមូលដ្ឋានទិន្នន័យ។ + + + Create a new database. + បង្កើតឃ្លាំងទិន្នន័យថ្មី។ + + + Invalid decryption time %1. + ពេលវេលានៃការដោះការបំប្លែងកូដមិនត្រឹមត្រូវ %1។ + + + Target decryption time must be between %1 and %2. + ពេល​វេលា​ដោះការបំប្លែងកូដ​គោលដៅ​ត្រូវ​តែស្ថិត​នៅ​ចន្លោះ% 1 និង % 2។ + + + Failed to set database password. + បានបរាជ័យក្នុងការកំណត់ពាក្យសម្ងាត់របស់ឃ្លំាងទិន្នន័យ។ + + + Loading the key file failed + កំពុងផ្ទុកឯកសារសោមិនបានសម្រេច + + + No key is set. Aborting database creation. + គ្មានសោត្រូវបានកំណត់ទេ។ កំពុងបោះបង់ការបង្កើតមូលដ្ឋានទិន្នន័យ។ + + + Benchmarking key derivation function for %1ms delay. + កំពុងធ្វើតេស្តមុខងារទាញយកឃីដោយវាស់វែងពី​ការ​ពន្យារ​ពេល %1ms។ + + + Setting %1 rounds for key derivation function. + ការកំណត់ជុំ %1 សម្រាប់មុខងារទាញយកសោ។ + + + error while setting database key derivation settings. + មានបញ្ហានៅពេលកំពុងរៀបចំការកំណត់ការទាញយកកូនសោមូលដ្ឋានទិន្នន័យ។ + + + File %1 already exists. + ឯកសារ %1 មានរួចហើយ។ + + + Failed to save the database: %1. + រក្សាទុកឃ្លំាងទិន្នន័យ៖ % 1 មិនបានសម្រេច។ + + + Successfully created new database. + បានបង្កើតឃ្លាំងទិន្នន័យថ្មីដោយជោគជ័យ។ + + + Unset the password for the database. + មិនបានកំណត់ពាក្យសម្ងាត់សម្រាប់ទិន្នន័យ + + + Unset the key file for the database. + មិនបានកំណត់ឯកសារគន្លឹះសម្រាប់ទិន្នន័យ + + + Edit a database. + កែឃ្លំាងទិន្នន័យ។ + + + Cannot use %1 and %2 at the same time. + មិន​អាច​ប្រើប្រាស់ % 1 និង% 2 ក្នុង​ពេល​តែ​មួយ​បាន​ទេ។ + + + Could not change the database key. + មិន​អាច​កែប្រែសោ​មូលដ្ឋាន​ទិន្នន័យ​បានទេ។ + + + Database was not modified. + មិនបានកែប្រែឃ្លាំងទិន្នន័យទេ។ + + + Writing the database failed: %1 + ការសរសេរមូលដ្ឋានទិន្នន័យមិនបានសម្រេច៖ %1 + + + Successfully edited the database. + កែមូលដ្ឋានទិន្នន័យបានដោយជោគជ័យ។ + + + Cannot remove password: The database does not have a password. + មិន​អាច​ដក​ពាក្យ​សម្ងាត់​ចេញបានទេ៖ មូលដ្ឋាន​ទិន្នន័យ​មិន​មាន​ពាក្យ​សម្ងាត់​ទេ។ + + + Cannot remove file key: The database does not have a file key. + មិន​អាច​យក​សោឯកសារ​ចេញ៖ មូលដ្ឋាន​ទិន្នន័យ​មិន​មាន​សោឯកសារទេ។ + + + Loading the new key file failed: %1 + កំពុងផ្ទុកឯកសារសោថ្មីមិនបានសម្រេច៖ %1 + + + Found unexpected Key type %1 + បានរកឃើញប្រភេទសោដែលមានបញ្ហាដោយមិនរំពឹងទុក %1 + + + Cannot remove all the keys from a database. + មិនអាចដកសោទាំងអស់ចេញពីមូលដ្ឋានទិន្នន័យបានទេ។ + + + Show a database's information. + បង្ហាញព័តម៌ានទិន្នន័យ + + + UUID: + UUID៖ + + + Name: + ឈ្មោះ៖ + + + Description: + ការពិពណ៌នា៖ + + + Cipher: + Cipher៖ + + + KDF: + KDF៖ + + + Recycle bin is enabled. + ធុងសំរាមបានបើកហើយ។ + + + Recycle bin is not enabled. + ធុងសំរាមមិនបានមិនទេ។ + + + Location + ទីតាំង + + + Database created + មូលដ្ឋានទិន្នន័យដែលបានបង្កើត + + + Last saved + បានរក្សាទុកចុងក្រោយ + + + Unsaved changes + ការផ្តាស់ប្តូរដែលមិនបានរក្សាទុក + + + yes + បាទ/ចាស + + + no + ទេ + + + Number of groups + ចំនួនក្រុម + + + Number of entries + ចំនួននៃទិន្នន័យបញ្ចូល + + + Number of expired entries + ចំនួននៃទិន្នន័យបញ្ចូលបានផុតកំណត់ + + + Unique passwords + ពាក្យសម្ងាត់ពិសេស + + + Non-unique passwords + សម្ងាត់មិនមានលក្ខណៈពិសេស + + + Maximum password reuse + ការប្រើប្រាស់ពាក្យសម្ងាត់ឡើងវិញអតិបរមា + + + Number of short passwords + ចំនួនពាក្យសម្ងាត់ខ្លី + + + Number of weak passwords + ចំនួនពាក្យសម្ងាត់ខ្សោយ + + + Entries excluded from reports + បានដកចេញទិន្នន័យបញ្ចូលពីរបាយការណ៍ + + + Average password length + ប្រវែងពាក្យសម្ងាត់ជាមធ្យម + + + %1 characters + %1 តួអក្សរ + + + Word count for the diceware passphrase. + ការរាប់ពាក្យសម្រាប់ឃ្លាសម្ងាត់របស់ឌីសវែរ។ + + + count + CLI parameter + រាប់ + + + Wordlist for the diceware generator. +[Default: EFF English] + បញ្ជីពាក្យសម្រាប់ម៉ាស៊ីនបង្កើតឌីសវែរ។ +[លំនាំដើម៖ អង់គ្លេស EFF] + + + Generate a new random diceware passphrase. + បង្កើតឃ្លា​សម្ងាត់ឌីសវែរតាមលក្ខណៈចៃដន្យ​ថ្មីមួយ។ + + + Invalid word count %1 + ចំនួន​ពាក្យ​មិន​ត្រឹមត្រូវ %1 + + + Title for the entry. + ចំណងជើងសម្រាប់ការបញ្ចូល។ + + + title + ចំណងជើង + + + Edit an entry. + កែទិន្នន័យបញ្ចូល។ + + + Path of the entry to edit. + ទិន្នន័យបញ្ចូលដើម្បីកែ។ + + + Not changing any field for entry %1. + មិនផ្លាស់ប្តូរកន្លែងបញ្ចូលណាមួយសម្រាប់ទិន្នន័យបញ្ចូល % 1 ទេ។ + + + Enter new password for entry: + បញ្ចូលពាក្យសម្ងាត់ថ្មីសម្រាប់ទិន្នន័យបញ្ចូល៖ + + + Successfully edited entry %1. + បានកែសម្រួលទិន្នន័យបញ្ចូល %1​ ដោយជោគជ័យ។ + + + Perform advanced analysis on the password. + ប្រើប្រាស់ការវិភាគកម្រិតខ្ពស់នៅលើពាក្យសម្ងាត់។ + + + Password for which to estimate the entropy. + ពាក្យ​សម្ងាត់​សម្រាប់​ធ្វើការ​ប៉ាន់​ប្រមាណការវាស់វែងពាក្យសម្ងាត់នេះ។ + + + Estimate the entropy of a password. + ប៉ាន់ស្មានការវាស់វែងពាក្យសម្ងាត់នៃពាក្យសម្ងាត់មួយ។ + + + Length %1 + ប្រវែង %1 + + + Entropy %1 + ការវាស់វែងពាក្យសម្ងាត់ %1 + + + Log10 %1 + កំណត់​ហេតុ10 %1 + + + Multi-word extra bits %1 + ប៊ីតបន្ថែមដែលមានពាក្យច្រើន %1 + + + Type: Bruteforce + ប្រភេទ Bruteforce + + + Type: Dictionary + វាយៈ វចនានុក្រម + + + Type: Dict+Leet + ប្រភេទ៖ Dict+Leet + + + Type: User Words + វាយៈពាក្យអ្នកប្រើប្រាស់ + + + Type: User+Leet + វាយៈ User+Leet + + + Type: Repeated + វាយៈច្រំដែល + + + Type: Sequence + វាយៈតាមលំដាប់ + + + Type: Spatial + វាយៈលំហ + + + Type: Date + វាយលាលបរិទ្ឆេទ + + + Type: Bruteforce(Rep) + ប្រភេទៈ Bruteforce(Rep) + + + Type: Dictionary(Rep) + វាយៈ វចនានុក្រម(តំណាង) + + + Type: Dict+Leet(Rep) + ប្រភេទ៖ Dict+Leet (សា​ឡើង​វិញ) + + + Type: User Words(Rep) + វាយៈ ពាក្យអ្នកប្រើប្រាស់(តំណាង) + + + Type: User+Leet(Rep) + វាយៈ User+Leet(តំណាង) + + + Type: Repeated(Rep) + វាយៈច្រំដែល(តំណាង) + + + Type: Sequence(Rep) + វាយៈតាមលំដាប់(តំណាង) + + + Type: Spatial(Rep) + វាយៈលំហ(តំណាង) + + + Type: Date(Rep) + វាយៈ កាលបរិទ្ឆេទ (តំណាង) + + + Type: Unknown (%1) + វាយៈមិនស្គាល់(%1) + + + Entropy %1 (%2) + ការវាស់វែងពាក្យសម្ងាត់ %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** ប្រវែងពាក្យសម្ងាត់ (%1) != ផលបូកប្រវែងនៃផ្នែក (%2) *** + + + Exit interactive mode. + ចេញពីម៉ូដអន្តរកម្ម។ + + + Exports the content of a database to standard output in the specified format. + នាំចេញខ្លឹមសារនៃមូលដ្ឋានទិន្នន័យទៅជាលទ្ធផលស្តង់ដារក្នុងទម្រង់ដែលបានបញ្ជាក់នេះ។ + + + Unable to export database to XML: %1 + មិនអាចនាំចេញមូលដ្ឋានទិន្នន័យទៅជា XML បានទេ៖ %1 + + + Unsupported format %1 + ទម្រង់ដែលមិនគាំទ្រ%1 + + + Length of the generated password + ប្រវែងពាក្យសម្ងាត់ដែលបានបង្កើត + + + length + ប្រវែង + + + Use lowercase characters + ប្រើប្រាស់អក្សរតូច + + + Use uppercase characters + ប្រើអក្សរធំ + + + Use numbers + ប្រើលេខ + + + Use special characters + ប្រើតួអក្សរពិសេស + + + Use extended ASCII + ប្រើប្រាស់ ASCII ខ្ពស់ + + + Exclude character set + មិនរាប់បញ្ចូលសំណុំតួអក្សរ + + + chars + តួអក្សរ + + + Use custom character set + ប្រើប្រាស់សំណុំតួអក្សរផ្ទាល់ខ្លួន + + + Exclude similar looking characters + មិនរាប់បញ្ចូលតួអក្សរដែលមើលទៅស្រដៀងគ្នា + + + Include characters from every selected group + រួមមានតួអក្សរពីគ្រប់ក្រុមដែលបានជ្រើសរើស + + + Generate a new random password. + បង្កើតពាក្យសម្ងាត់ដោយចៃដន្យថ្មីមួយ។ + + + Invalid password length %1 + ប្រវែងពាក្យសម្ងាត់មិនត្រឹមត្រូវ %1 + + + Invalid password generator after applying all options + កម្មវិធីបង្កើតពាក្យសម្ងាត់មិនត្រឹមត្រូវបន្ទាប់ពីការដាក់ប្រើជម្រើសទាំងអស់ + + + Display command help. + បង្ហាញជំនួយពាក្យបញ្ជា។ + + + Available commands: + ពាក្យបញ្ជាដែលអាចប្រើប្រាស់បាន៖ + + + Import the contents of an XML database. + នាំចូលខ្លឹមសារនៃមូលដ្ឋានទិន្នន័យ XML ។ + + + Path of the XML database export. + ផ្លូវនាំចេញមូលដ្ឋានទិន្នន័យ XML។ + + + Path of the new database. + ផ្លូវនៃមូលដ្ឋានទិន្នន័យថ្មី។ + + + Unable to import XML database: %1 + មិនអាចនាំចូលឃ្លាំងផ្ទុកទិន្នន័យ XML បានទេ៖ %1 + + + Successfully imported database. + បាននាំចូលមូលដ្ឋានទិន្នន័យដោយជោគជ័យ។ + + + Unknown command %1 + មិនស្គាល់ពាក្យបញ្ជា %1 + + + + +Available commands: + + + +ពាក្យបញ្ជាដែលអាចប្រើប្រាស់បាន៖ + + + + Name of the command to execute. + ឈ្មោះពាក្យបញ្ជាដែលត្រូវធ្វើប្រតិបត្តិ។ + + + Displays debugging information. + បង្ហាញព័ត៌មានដែលកំពុងស្វែងរកកំហុស។ + + + Invalid command %1. + ពាក្យ​បញ្ជា​មិន​ត្រឹមត្រូវ %1។ + + + Recursively list the elements of the group. + ចុះបញ្ជីធាតុនៃក្រុមឡើងវិញ។ + + + Flattens the output to single lines. + បំលែងលទ្ធផលឱ្យទៅជាបន្ទាត់តែមួយ។ + + + List database entries. + បញ្ជីបញ្ចូលមូលដ្ឋានទិន្នន័យ។ + + + Path of the group to list. Default is / + ផ្លូវនៃក្រុមដើម្បីចុះបញ្ជី។ លំនាំដើមគឺ / + + + Cannot find group %1. + មិន​អាចស្វែង​រក​ឃើញ​ក្រុម % 1។ + + + Use the same credentials for both database files. + ប្រើប្រាស់ព័ត៌មានផ្ទៀងផ្ទាត់តែមួយសម្រាប់ឯកសារមូលដ្ឋានទិន្នន័យទាំងពីរ។ + + + Key file of the database to merge from. + ឯកសារសោនៃមូលដ្ឋានទិន្នន័យដែលត្រូវបញ្ចូលគ្នាពី។ + + + Deactivate password key for the database to merge from. + បិទដំណើរការសោពាក្យសម្ងាត់សម្រាប់មូលដ្ឋានទិន្នន័យដើម្បីបញ្ចូលគ្នាពី។ + + + Only print the changes detected by the merge operation. + គ្រាន់តែបោះពុម្ពការផ្លាស់ប្តូរដែលរកឃើញដោយប្រតិបត្តិការបញ្ចូលគ្នាតែប៉ុណ្ណោះ។ + + + Yubikey slot for the second database. + រន្ធដោត Yubikey សម្រាប់មូលដ្ឋានទិន្នន័យទីពីរនេះ។ + + + slot + រន្ធដោត + + + Merge two databases. + ដាក់បញ្ចូលមូលដ្ឋានទិន្នន័យពីរ។ + + + Path of the database to merge from. + ផ្លូវមូលដ្ឋានទិន្នន័យដើម្បីបញ្ចូលគ្នាពី។ + + + Error reading merge file: +%1 + បញ្ហាក្នុងការអានឯកសារបញ្ចូលគ្នា៖ +%1 + + + Unable to save database to file : %1 + មិនអាចរក្សាទុកទិន្នន័យឯកសារៈ %1បានទេ + + + Successfully merged %1 into %2. + បានបញ្ចូល %1 ទៅក្នុង %2 ដោយជោគជ័យ។ + + + Database was not modified by merge operation. + ប្រតិបត្តិការបញ្ចូលគ្នាមិនបានកែប្រែឃ្លាំងទិន្នន័យទេ។ + + + Moves an entry to a new group. + ផ្លាស់ទីទិន្នន័យបញ្ចូលទៅកាន់ក្រុមថ្មី។ + + + Path of the entry to move. + ផ្លូវទិន្នន័យបញ្ចូលដែលត្រូវផ្លាស់ទី។ + + + Path of the destination group. + ផ្លូវក្រុមគោលដៅ។ + + + Could not find group with path %1. + មិន​អាច​រកឃើញក្រុម​ជាមួយនឹង​ផ្លូវ % 1 បានទេ។ + + + Entry is already in group %1. + ទិន្នន័យបញ្ចូលមាននៅក្នុងក្រុម % 1 រួចហើយ។ + + + Successfully moved entry %1 to group %2. + បានផ្លាស់ទីទិន្នន័យ% 1 ទៅជាក្រុម% 2 ដោយជោគជ័យ។ + + + Open a database. + បើកឃ្លំាងទិន្នន័យ។ + + + Path of the entry to remove. + ផ្លូវទិន្នន័យបញ្ចូលដើម្បីដកចេញ។ + + + Unable to save database to file: %1 + មិនអាចរក្សាទុកទិន្នន័យឯកសារៈ %1បានទេ + + + Successfully recycled entry %1. + បាន​កែច្នៃ​ទិន្នន័យ % 1 ដោយ​ជោគជ័យ។ + + + Successfully deleted entry %1. + បាន​លុប​ទិន្នន័យបញ្ចូល %1 ដោយ​ជោគជ័យ។ + + + Path of the group to remove. + ផ្លូវនៃក្រុមដើម្បីដកចេញ។ + + + Cannot remove root group from database. + មិន​អាច​ដកចេញក្រុមឫស​ពី​មូលដ្ឋាន​ទិន្នន័យ​បាន​ទេ។ + + + Successfully recycled group %1. + បាន​កែច្នៃ​ទិន្នន័យ % 1 ដោយ​ជោគជ័យ។ + + + Successfully deleted group %1. + បានលុបក្រុម %1 ដោយជោគជ័យ។ + + + Find entries quickly. + ស្វែងរកទិន្នន័យបញ្ចូលបានយ៉ាងឆាប់រហ័ស។ + + + Search term. + ស្វែងរកពាក្យ + + + Show the entry's current TOTP. + ការបង្ហាញពីបច្ចុប្បន្នភាពនៃទិន្នន័យ TOTP + + + Show the protected attributes in clear text. + ការបង្ហាញពីគុណលក្ខណៈដែលត្រូវបានការពារជាអក្សរច្បាស់ៗ + + + Show all the attributes of the entry. + ការបង្ហាញពីគុណលក្ខណៈទាំងអស់នៃទិន្នន័យចូល + + + Show the attachments of the entry. + ការបង្ហាញឯកសារភ្ជាប់របស់ទិន្នន័យ + + + 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 + លក្ខណៈ + + + Show an entry's information. + ការបង្ហាញពីព័តម៌ាននៃទិន្នន័យ + + + Name of the entry to show. + ឈ្មោះទិន្នន័យបញ្ចូលនេះដើម្បីបង្ហាញ។ + + + ERROR: unknown attribute %1. + បញ្ហា៖ គុណលក្ខណៈដែលមិនស្គាល់ %1។ + + + No attachments present. + មិនមានបង្ហាញឯកសារភ្ជាប់ទេ។ + + + Attachments: + ឯកសារ​ភ្ជាប់នានា៖ + + + Failed to open database file %1: not found + បានបរាជ័យក្នុងការបើកឯកសារឃ្លំាងទិន្នន័យ% 1៖ រកមិនឃើញ + + + Failed to open database file %1: not a plain file + បើកឯកសារមូលដ្ឋានទិន្នន័យ %1 មិនបានសម្រេច៖ មិនមែនជាឯកសារធម្មតាទេ + + + Failed to open database file %1: not readable + បានបរាជ័យក្នុងការបើកឯកសារឃ្លំាងទិន្នន័យ% 1៖ មិនអាចអានបានទេ + + + Enter password to unlock %1: + បញ្ចូលពាក្យសម្ងាត់ដើម្បីដោះសោ% 1៖ + + + Failed to load key file %1: %2 + មិនបានសម្រេចក្នុង​​ការ​ផ្ទុក​ឯកសារសោ %1: %2 + + + WARNING: You are using an old key file format which KeePassXC may +stop supporting in the future. + +Please consider generating a new key file. + ការព្រមាន៖ អ្នកកំពុងប្រើប្រាស់ទម្រង់ឯកសារសោចាស់ដែល KeePassXC អាច +បញ្ឈប់ការប្រើប្រាស់ជាមួយនៅពេលអនាគត។ + +សូមពិចារណាទៅលើការបង្កើតឯកសារសោថ្មីមួយ។ + + + Invalid YubiKey slot %1 + រន្ធដោត YubiKey ដែលមិនត្រឹមត្រូវ %1 + + + Invalid YubiKey serial %1 + លេខស៊េរី YubiKey មិនត្រឹមត្រូវ %1 + + + Please present or touch your YubiKey to continue. + សូមបង្ហាញ ឬចុច YubiKey របស់អ្នកដើម្បីបន្ត។ + + + Enter password to encrypt database (optional): + បញ្ចូលពាក្យសម្ងាត់ដើម្បីអ៊ិនគ្រីបឃ្លំាងទិន្នន័យ (ជាជម្រើស)៖ + + + Do you want to create a database with an empty password? [y/N]: + តើ​អ្នក​ចង់​បង្កើតឃ្លំាង​ទិន្នន័យ​ដោយ​ប្រើ​ពាក្យ​សម្ងាត់​ទទេ​ឬ? [y/N]៖ + + + Repeat password: + វាយពាក្យសម្ងាត់ម្តងទៀត + + + Error: Passwords do not match. + បញ្ហា៖ ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ។ + + + No program defined for clipboard manipulation + គ្មានកម្មវិធីដែលបានកំណត់សម្រាប់ការបំភ្លៃឃ្លីបបតទេ + + + All clipping programs failed. Tried %1 + + កម្មវិធីឃ្លីបទាំងអស់មិនបានសម្រេច។ បានសាកល្បង %1 ហើយ + + + + Creating KeyFile %1 failed: %2 + ការបង្កើត KeyFile %1 មិនបានសម្រេច៖ % 2 + + + Loading KeyFile %1 failed: %2 + កំពុងផ្ទុកឯកសារសោ %1 មិនបានសម្រេច?៖ %2 + + + HIBP file, line %1: parse error + ឯកសារ HIBP បណ្ដាញ % 1៖ បញ្ហាក្នុងការញែក + + + To use okon, you must provide a post-processed file (e.g. file.okon) + ដើម្បីប្រើ okon អ្នកត្រូវតែផ្តល់ឯកសារក្រោយដំណើរការ (ឧ. file.okon) + + + Could not start okon process: %1 + មិន​អាច​ចាប់​ផ្ដើម​ដំណើរការ okon បានទេ៖ %1 + + + Error: okon process did not finish + កំហុស៖ ដំណើរការ okon មិនបានបញ្ចប់ទេ + + + Failed to load okon processed database: %1 + មិនបានសម្រេចក្នុង​ការ​ផ្ទុកឃ្លំាងទិន្នន័យដែលបានដំណើរការ okon៖ %1 + + + Very weak password + ពាក្យសម្ងាត់ខ្សោយណាស់ + + + Password entropy is %1 bits + ការវាស់វែងពាក្យសម្ងាត់គឺ %1 ប៊ីត + + + Weak password + ពាក្យសម្ងាត់ខ្សោយ + + + Used in %1/%2 + ប្រើប្រាស់ក្នុង %1/%2 + + + Password is used %1 time(s) + ពាក្យ​សម្ងាត់​ត្រូវ​បាន​ប្រើ %1 ដងហើយ + + + Password has expired + ពាក្យ​សម្ងាត់​បាន​ផុត​កំណត់ + + + Password expiry was %1 + ពាក្យ​សម្ងាត់​បានផុត​កំណត់​នៅ​ %1 + + + Password expires on %1 + ពាក្យ​សម្ងាត់​ផុត​កំណត់​នៅ​ %1 + + + Password is about to expire + ពាក្យសម្ងាត់ជិតផុតកំណត់ហើយ + + + Password expires in %1 day(s) + ពាក្យសម្ងាត់ផុតកំណត់ក្នុងរយៈពេល %1 ថ្ងៃ + + + Password will expire soon + ពាក្យសម្ងាត់នឹងផុតកំណត់ក្នុងពេលឆាប់ៗនេះ + + + Version %1 + កំណែ %1 + + + Build Type: %1 + ប្រភេទ​កំណែបង្កើត៖ %1 + + + Revision: %1 + កំណែ៖ %1 + + + Distribution: %1 + ការចែកចាយ៖ % 1 + + + Debugging mode is disabled. + ម៉ូដរកកំហុសត្រូវបានបិទ។ + + + Debugging mode is enabled. + ម៉ូដរកកំហុសត្រូវបានបើក។ + + + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 + ប្រព័ន្ធប្រតិបត្តិការ៖ %1 +ស្ថាបត្យកម្ម CPU៖ %2 +ខឺណេល៖ %3 % 4 + + + Auto-Type + មុខងារវាយបញ្ចូលស្វ័យប្រវត្តិ + + + SSH Agent + ភ្នាក់ងារ SSH + + + KeeShare + KeeShare + + + YubiKey + YubiKey + + + Quick Unlock + ដោះសោររហ័ស + + + Secret Service Integration + ការដាក់បញ្ចូលសេវាពាក្យសម្ងាត់ + + + None + គ្មាន + + + Enabled extensions: + បានបើកកម្មវិធីបន្ថែម​៖ + + + over %1 year(s) + លើសពី %1 ឆ្នាំ + + + about %1 month(s) + ប្រហែល %1 ខែ + + + %1 week(s) + %1 សប្តាហ៍ + + + %1 day(s) + % 1 ថ្ងៃ + + + %1 hour(s) + % 1 ម៉ោង + + + %1 minute(s) + % 1 នាទី + + + Botan library must be at least %1, found %2.%3.%4 + + + + Cryptographic libraries: + បណ្ណាល័យ​គ្រីបតូសាស្ត្រ៖ + + + AES (%1 rounds) + AES (%1 ជុំ) + + + Argon2%1 (%2 rounds, %3 KB) + Argon2% 1 (% 2 ជុំ, %3 KB) + + + SymmetricCipher::init: Invalid cipher mode. + SymmetricCipher::init: ម៉ូដសរសេរកូដមិនត្រឹមត្រូវ។ + + + SymmetricCipher::init: Invalid IV size of %1 for %2. + SymmetricCipher::init: ទំហំ IV មិនត្រឹមត្រូវនៃ %1 សម្រាប់% 2។ + + + Cipher not initialized prior to use. + Cipher មិនត្រូវបានចាប់ផ្តើមមុនពេលប្រើប្រាស់។ + + + Cannot process 0 length data. + មិនអាចដំណើរការទិន្នន័យដែលមានប្រវែង 0 បានទេ។ + + + unknown executable (DBus address %1) + មិនស្គាល់ឯកសារដែលអាចប្រតិបត្តិបាន (អាសយដ្ឋាន DBus %1) + + + %1 (invalid executable path) + %1 (ផ្លូវដែលអាចប្រតិបត្តិមិន​ត្រឹមត្រូវ) + + + NULL device + ឧបករណ៍ NULL + + + error reading from device + មានបញ្ហាក្នុងការអានពីឧបករណ៍ + + + file empty + ឯកសារទទេ + + + AES 256-bit + AES 256 ប៊ីត + + + Twofish 256-bit + Twofish 256-ប៊ីត + + + ChaCha20 256-bit + ChaCha20 256-ប៊ីត + + + Argon2d (KDBX 4 – recommended) + Argon2d (KDBX 4 - ដែលបានណែនាំ) + + + Argon2id (KDBX 4) + Argon2id (KDBX 4) + + + AES-KDF (KDBX 4) + AES-KDF (KDBX 4) + + + AES-KDF (KDBX 3) + AES-KDF (KDBX 3) + + + Existing single-instance lock file is invalid. Launching new instance. + ឯកសារចាក់សោរបស់កម្មិធីតែមួយដែលមានស្រាប់គឺមិនត្រឹមត្រូវទេ។ កំពុងបើកដំណើរការកម្មវិធីថ្មី។ + + + The lock file could not be created. Single-instance mode disabled. + មិនអាចបង្កើតឯកសារចាក់សោបានទេ។ ​បាន​បិទមុខងារ​វត្ថុ​តែមួយ។ + + + Clearing the clipboard in %1 second(s)… + កំពុងសម្អាតឃ្លីបបតក្នុងរយៈពេល % 1 វិនាទី… + + + Group + ក្រុម + + + Title + ចំណងជើង + + + Username + ឈ្មោះអ្នកប្រើ + + + Password + ពាក្យសម្ងាត់ + + + TOTP + TOTP + + + Icon + រូបតំណាង + + + Last Modified + បានកែប្រែចុងក្រោយ + + + Created + បានបង្កើត + + + Benchmark %1 delay + បទដ្ឋាន​វាស់វែងពន្យាពេល %1 + + + %1 ms + milliseconds + %1 មី.វិ + + + %1 s + seconds + %1 វិ + + + Do you really want to delete the entry "%1" for good? + តើ​អ្នក​ពិត​ជា​ចង់​លុប​ទិន្នន័យបញ្ចូល "% 1" ដើម្បី​ឱ្យកាន់តែល្អ​ឬ? + + + Do you really want to delete %n entry(s) for good? + តើ​អ្នក​ពិត​ជា​ចង់​លុប​ទិន្នន័យបញ្ចូល %n ដើម្បី​ឱ្យកាន់តែល្អ​មែនទេ? + + + Delete entry(s)? + លុបទិន្នន័យបញ្ចូល? + + + 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 ទៅកាន់ធុងសំរាមមែនដែរឬទេ? + + + Move entry(s) to recycle bin? + ផ្លាស់ទីទិន្នន័យបញ្ចូលទៅកាន់ធុងសំរាមកែច្នៃឬ? + + + 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 ។ តើ​អ្នក​ចង់​សរសេរ​ជាន់​លើ​ឯកសារយោង​ដោយមានដាក់​តម្លៃ រំលងការបញ្ចូលនេះ ឬ​លុប​ចេញក៏​ដោយ? + + + User name + ឈ្មោះអ្នកប្រើ + + + Browser Statistics + ស្ថិតិកម្មវិធីរុករកតាមអ៊ីនធឺណិត + + + Health Check + ការត្រួតពិនិត្យ​សុខភាព + + + HIBP + HIBP + + + Statistics + ស្ថិតិ + + + Unsupported key file version: %1 + កំណែឯកសារគន្លឹះដែលមិនគាំទ្រៈ%1 + + + Checksum mismatch! Key file may be corrupt. + លេខសរុបដើម្បីពិនិត្យមើលទិន្នន័យត្រឹមត្រូវគឺមិនត្រូវគ្នានោះទេ! ឯកសារសោប្រហែលជាខូច។ + + + Unexpected key file data! Key file may be corrupt. + ទិន្នន័យ ឯកសារសំខាន់ៗ ដែលមិនបានរំពឹងទុក! ឯកសារសោអាចខូច។ + + + KeePassXC - cross-platform password manager + KeePassXC - កម្មវិធីគ្រប់គ្រងពាក្យសម្ងាត់ទូទាំងប្រព័ន្ធ + + + filenames of the password databases to open (*.kdbx) + ឈ្មោះឯកសារនៃមូលដ្ឋានទិន្នន័យពាក្យសម្ងាត់ដែលត្រូវបើក (*.kdbx) + + + path to a custom config file + ផ្លូវទៅកាន់ឯកសារដែលកំណត់រចនាសម្ព័ន្ធផ្ទាល់ខ្លួន + + + path to a custom local config file + ផ្លូវទៅកាន់ឯកសារដែលកំណត់រចនាសម្ព័ន្ធផ្ទាល់ខ្លួនក្នុងមូលដ្ឋាន + + + lock all open databases + ចាក់សោមូលដ្ឋានទិន្នន័យដែលបើកទាំងអស់ + + + key file of the database + ឯកសារសោនៃមូលដ្ឋានទិន្នន័យ + + + read password of the database from stdin + អានពាក្យសម្ងាត់នៃមូលដ្ឋានទិន្នន័យពី stdin + + + Database failed to lock. + មូលដ្ឋានទិន្នន័យចាក់សោមិនបានសម្រេចទេ។ + + + Another instance of KeePassXC is already running. + ឧទាហរណ៍មួយទៀតអំពី KeePassXC គឺកំពុងដំណើរការរួចទៅហើយ។ + + + KeePassXC is not running. No open database to lock + KeePassXC មិនកំពុងដំណើរការទេ។ មិនមានមូលដ្ឋានទិន្នន័យដែលបានបើកដើម្បីចាក់សោទេ + + + Fatal error while testing the cryptographic functions. + បញ្ហាធ្ងន់ធ្ងរកើតឡើងនៅពេលកំពុងតេស្តមុខងារ​គ្រីបតូសាស្ត្រ។ + + + KeePassXC - Error + KeePassXC - បញ្ហា + + + Database password: + ពាក្យសម្ងាត់មូលដ្ឋានទិន្នន័យ៖ + + + Invalid Settings + TOTP + ការកំណត់មិនត្រឹមត្រូវ + + + Invalid Key + TOTP + សោមិនត្រឹមត្រូវ + + + Failed to create Windows Hello credential. + បានបរាជ័យក្នុងការបង្កើតព័ត៌មាន​បញ្ជាក់​អត្តសញ្ញាណនៅក្នុង Windows Hello។ + + + Failed to sign challenge using Windows Hello. + ការចូលក្នុងឧបករណ៍ដើម្បីប្រើប្រាស់មុខងារ Windows Hello មិនបានសម្រេច។ + + + Warning: Failed to block screenshot capture on a top-level window. + ការព្រមាន៖ ទប់ស្កាត់ការថតអេក្រង់នៅលើវីនដូកម្រិតកំពូលមិនបានសម្រេច។ + + + Invalid Cipher + Cipher មិនត្រឹមត្រូវ + + + Invalid KDF + KDF មិន​ត្រឹមត្រូវ + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + មិនបានសម្រេចក្នុងការបង្កើតការបំលែងកូដ KeePassXC។ + + + Failed to encrypt key data. + បានបរាជ័យក្នុងការអ៊ិនគ្រីបទិន្នន័យគន្លឹះ។ + + + Failed to get Windows Hello credential. + បានបរាជ័យក្នុងការទទួលបាន Windows Hello។ + + + Failed to decrypt key data. + មិនបានសម្រេចក្នុងការឌិគ្រីបទិន្នន័យសោ។ + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + លុបទិន្នន័យនៅក្នុងកម្មវិធីជំនួយ? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + ស្លាក + + + + QtIOCompressor + + Internal 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::open + + The gzip format not supported in this version of zlib. + ទម្រង់ gzip មិនត្រូវបានប្រើប្រាស់នៅក្នុងកំណែ zlib នេះទេ។ + + + Internal zlib error: + បញ្ហា zlib ខាងក្នុង៖ + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + + + ReportsWidgetBrowserStatistics + + Double-click entries to edit. + ចុចពីរដងទៅលើទិន្នន័យបញ្ចូលដើម្បីកែសម្រួល។ + + + List of entry URLs + បញ្ជីនៃទិន្នន័យបញ្ចូល URLs + + + Entry has no URLs set + ទិន្នន័យបញ្ចូលមិនមាន URLs កំណត់ទេ + + + Allowed URLs + URL ដែលបានអនុញ្ញាត + + + Entry has no Browser Integration settings + ទិន្នន័យបញ្ចូលមិនមានការកំណត់នៃការរួមបញ្ចូលកម្មវិធីរុករកតាមអ៊ីនធឺណិតទេ + + + Denied URLs + បានបដិសេធ URLs + + + (Excluded) + មិនរាប់បញ្ចូល + + + This entry is being excluded from reports + ទិន្នន័យបញ្ចូលនេះកំពុងដកចេញពីរបាយការណ៍ + + + Please wait, browser statistics is being calculated… + សូមមេត្តារង់ចាំ ស្ថិតិកម្មវិធីរុករកតាមអ៊ីនធឺណិតកំពុងគណនា… + + + No entries with a URL, or none has browser extension settings saved. + មិនមានទិន្នន័យបញ្ចូលដែលមាន URL ឬមិនមានការកំណត់កម្មវិធីបន្ថែម​របស់កម្មវិធីរុករកតាមអ៊ីនធឺណិតដែលបានរក្សាទុកទេ។ + + + Title + ចំណងជើង + + + Path + ផ្លូវ + + + URLs + URLs + + + Edit Entry… + កែទិន្នន័យបញ្ចូល… + + + Delete Entry(s)… + លុបការបញ្ចូល… + + + Exclude from reports + មិនរាប់បញ្ចូលពីរបាយការណ៍ + + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + + + + ReportsWidgetHealthcheck + + Show expired entries + + + + (Expired) + + + + Hover over reason to show additional details. Double-click entries to edit. + ដាក់ពីលើហេតុផលដើម្បីបង្ហាញព័ត៌មានលម្អិតបន្ថែម។ ចុចទ្វេដងលើទិន្នន័យបញ្ចូលដើម្បីកែ។ + + + Bad — password must be changed + មិនល្អ - ត្រូវតែផ្លាស់ប្តូរពាក្យសម្ងាត់ + + + Poor — password should be changed + ខ្សោយ - គួរតែផ្លាស់ប្តូរពាក្យសម្ងាត់ + + + Weak — consider changing the password + ខ្សោយ — សូមពិចារណាផ្លាស់ប្តូរពាក្យសម្ងាត់នេះ + + + (Excluded) + (មិនរាប់បញ្ចូល) + + + This entry is being excluded from reports + ទិន្នន័យបញ្ចូលនេះកំពុងដកចេញពីរបាយការណ៍ + + + Please wait, health data is being calculated… + សូមមេត្តារង់ចាំ ទិន្នន័យសុខភាពកំពុងគណនា… + + + Congratulations, everything is healthy! + សូមអបអរសាទរ អ្វីៗមើលទៅល្អណាស់! + + + Title + ចំណងជើង + + + Path + ផ្លូវ + + + Score + ពិន្ទុ + + + Reason + ហេតុផល + + + Edit Entry… + កែទិន្នន័យបញ្ចូល… + + + Delete Entry(s)… + លុបការបញ្ចូល… + + + Exclude from reports + មិនរាប់បញ្ចូលពីរបាយការណ៍ + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + + + + ReportsWidgetHibp + + CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. + ការប្រុងប្រយ័ត្ន៖ របាយការណ៍នេះតម្រូវឱ្យផ្ញើព័ត៌មានទៅកាន់សេវាអ៊ីនធឺណិតឈ្មោះ Have I Been Pwned (https://haveibeenpwned.com)។ ប្រសិនបើអ្នកបន្ត នោះពាក្យសម្ងាត់មូលដ្ឋានទិន្នន័យរបស់អ្នកនឹងត្រូវបានបំប្លែងជាកូដអថេរ ហើយតួអក្សរប្រាំនៃការផ្សំគ្នាដំបូងទាំងនោះនឹងត្រូវបានផ្ញើដោយសុវត្ថិភាពទៅកាន់សេវានេះ។ មូលដ្ឋានទិន្នន័យរបស់អ្នកនៅតែមានសុវត្ថិភាព និងមិនអាចផ្គុំបង្កើតឡើងវិញពីព័ត៌មាននេះបានទេ។ ទោះយ៉ាងណាក៏ដោយ ចំនួនពាក្យសម្ងាត់ដែលអ្នកផ្ញើ និងអាសយដ្ឋាន IP របស់អ្នកនឹងត្រូវបានបង្ហាញជាមួយនឹងសេវានេះ។ + + + Perform Online Analysis + ប្រតិបត្តិការវិភាគតាមអ៊ីនធឺណិត + + + Also show entries that have been excluded from reports + បង្ហាញទិន្នន័យបញ្ចូលដែលបានដកចេញពីរបាយការណ៍ផងដែរ + + + This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. + ការបង្កើត KeePassXC នេះមិនមានមុខងារបណ្តាញទេ។ តម្រូវឱ្យមានការភ្ជាប់បណ្តាញដើម្បីពិនិត្យមើលពាក្យសម្ងាត់របស់អ្នកប្រឆាំងនឹងមូលដ្ឋានទិន្នន័យរបស់ Have I Been Pwned។ + + + Congratulations, no exposed passwords! + សូមអបអរសាទរ គ្មានពាក្យសម្ងាត់លេចចេញនោះទេ! + + + Title + ចំណងជើង + + + Path + ផ្លូវ + + + Password exposed… + ពាក្យសម្ងាត់ត្រូវបានបង្ហាញ… + + + (Excluded) + (មិនរាប់បញ្ចូល) + + + This entry is being excluded from reports + ទិន្នន័យបញ្ចូលនេះកំពុងដកចេញពីរបាយការណ៍ + + + once + Password exposure amount + ម្តង + + + up to 10 times + Password exposure amount + រហូតដល់ 10 ដង + + + up to 100 times + Password exposure amount + រហូតដល់ 100 ដង + + + up to 1000 times + Password exposure amount + រហូតដល់ 1000 ដង + + + up to 10,000 times + Password exposure amount + រហូតដល់ 10,000 ដង + + + up to 100,000 times + Password exposure amount + រហូតដល់ 100,000 ដង + + + up to a million times + Password exposure amount + រហូតដល់មួយលានដង + + + millions of times + Password exposure amount + រាប់លានដង + + + Edit Entry… + កែទិន្នន័យបញ្ចូល… + + + Delete Entry(s)… + លុបការបញ្ចូល… + + + Exclude from reports + មិនរាប់បញ្ចូលពីរបាយការណ៍ + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + នំាចេញ + + + Import + នាំចូល + + + List of entry URLs + បញ្ជីនៃទិន្នន័យបញ្ចូល URLs + + + Title + ចំណងជើង + + + Path + ផ្លូវ + + + Username + ឈ្មោះអ្នកប្រើ + + + URLs + URLs + + + Edit Entry… + កែទិន្នន័យបញ្ចូល… + + + Delete Entry(s)… + លុបការបញ្ចូល… + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + ការបញ្ជាក់នៃការនាំចេញ + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + + + + ReportsWidgetStatistics + + Hover over lines with error icons for further information. + ដាក់ពីលើបន្ទាត់ដែលមានរូបបញ្ហាសម្រាប់ព័ត៌មានបន្ថែម។ + + + Name + ឈ្មោះ + + + Value + តម្លៃ + + + Please wait, database statistics are being calculated… + សូមមេត្តារង់ចាំ ស្ថិតិមូលដ្ឋានទិន្នន័យកំពុងគណនា… + + + Database name + ឈ្មោះមូលដ្ឋានទិន្នន័យ + + + Description + ការពិពណ៌នា + + + Location + ទីតាំង + + + Database created + មូលដ្ឋានទិន្នន័យដែលបានបង្កើត + + + Last saved + បានរក្សាទុកចុងក្រោយ + + + Unsaved changes + ការផ្លាស់ប្តូរដែលមិនបានរក្សាទុក + + + yes + បាទ/ចាស + + + no + ទេ + + + The database was modified, but the changes have not yet been saved to disk. + បានកែប្រែមូលដ្ឋានទិន្នន័យរួចហើយ ប៉ុន្តែការផ្លាស់ប្តូរមិនទាន់បានរក្សាទុកក្នុងថាសនៅឡើយទេ។ + + + Number of groups + ចំនួនក្រុម + + + Number of entries + ចំនួននៃទិន្នន័យបញ្ចូល + + + Number of expired entries + ចំនួននៃទិន្នន័យបញ្ចូលបានផុតកំណត់ + + + The database contains entries that have expired. + មូលដ្ឋានទិន្នន័យមានទិន្នន័យបញ្ចូលដែលផុតកំណត់ហើយ។ + + + Unique passwords + ពាក្យសម្ងាត់ពិសេស + + + Non-unique passwords + សម្ងាត់មិនមានលក្ខណៈពិសេស + + + More than 10% of passwords are reused. Use unique passwords when possible. + មានពាក្យសម្ងាត់ត្រូវបានប្រើប្រាស់ឡើងវិញច្រើនជាង 10% ។ ប្រើប្រាស់ពាក្យសម្ងាត់តែមួយគត់នៅពេលដែលអាចធ្វើបាន។ + + + Maximum password reuse + ការប្រើប្រាស់ពាក្យសម្ងាត់ឡើងវិញអតិបរមា + + + Some passwords are used more than three times. Use unique passwords when possible. + ពាក្យ​សម្ងាត់​ខ្លះ​ត្រូវ​បាន​ប្រើប្រាស់​ច្រើន​ជាង​បី​ដង។ ប្រើប្រាស់ពាក្យសម្ងាត់តែមួយគត់ នៅពេលដែលអាចធ្វើបាន។ + + + Number of short passwords + ចំនួនពាក្យសម្ងាត់ខ្លី + + + Recommended minimum password length is at least 8 characters. + បានណែនាំឲ្យប្រើប្រវែងពាក្យសម្ងាត់អប្បបរមាយ៉ាងហោចណាស់ 8 តួអក្សរ។ + + + Number of weak passwords + ចំនួនពាក្យសម្ងាត់ខ្សោយ + + + Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. + ណែនាំឲ្យប្រើប្រាស់ពាក្យសម្ងាត់វែង និងដោយចៃដន្យដោយមានការវាយតម្លៃថា 'ល្អ' ឬ 'ល្អឥតខ្ចោះ'។ + + + Entries excluded from reports + បានដកចេញទិន្នន័យបញ្ចូលពីរបាយការណ៍ + + + Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. + ដោយមិនរាប់បញ្ចូលទិន្នន័យបញ្ចូលពីរបាយការណ៍ ឧ. ដោយសារ​ពួកគេ​បាន​​ដឹង​ថា​ មាន​លេខ​សម្ងាត់ខ្សោយ វាមិន​មែន​ជា​បញ្ហា​អីនោះ​ទេ ប៉ុន្តែ​អ្នក​គួរ​តែ​តាម​ដាន​មើលការបញ្ចូលទាំងនោះ។ + + + Average password length + ប្រវែងពាក្យសម្ងាត់ជាមធ្យម + + + %1 characters + %1 តួអក្សរ + + + Average password length is less than ten characters. Longer passwords provide more security. + ប្រវែងពាក្យសម្ងាត់ជាមធ្យម គឺតិចជាងដប់តួអក្សរ។ ពាក្យ​សម្ងាត់ដែល​វែង​ជាង​ផ្តល់​សុវត្ថិភាពខ្លាំង​បន្ថែម​ទៀត។ + + + + SSHAgent + + Agent connection failed. + ការភ្ជាប់ភ្នាក់ងារមិនបានសម្រេចទេ។ + + + Agent protocol error. + បញ្ហាពិធីការភ្នាក់ងារ។ + + + No agent running, cannot add identity. + មិនអាចបន្ថែមអត្តសញ្ញាណបានដោយសារគ្មានភ្នាក់ងារដែលកំពុងដំណើរការ។ + + + Key identity ownership conflict. Refusing to add. + ជម្លោះកម្មសិទ្ធិអត្តសញ្ញាណសោ។ កំពុងបដិសេធក្នុងការបន្ថែម។ + + + 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). + ការស្នើសុំបញ្ជាក់មិនត្រូវបានប្រើប្រាស់ដោយភ្នាក់ងារទេ (ពិនិត្យមើលជម្រើស)។ + + + Security keys are not supported by the agent or the security key provider is unavailable. + ភ្នាក់ងារមិនអាចប្រើប្រាស់សោសុវត្ថិភាពបានទេ ឬក្រុមហ៊ុនផ្តល់សោសុវត្ថិភាពមិនអាចប្រើប្រាស់បានទេ។ + + + No agent running, cannot remove identity. + មិនអាចលុបអត្តសញ្ញាណបានដោយសារគ្មានភ្នាក់ងារដែលកំពុងដំណើរការ ។ + + + No agent running, cannot list identities. + មិនអាចចុះបញ្ជីអត្តសញ្ញាណបានដោយសារគ្មានភ្នាក់ងារដែលកំពុងដំណើរការ ។ + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + + + + SearchHelpWidget + + Search Help + ស្វែងរកជំនួយ + + + Search terms are as follows: [modifiers][field:]["]term["] + ស្វែងរកពាក្យមានដូចខាងក្រោម៖ [modifiers][field:]["]term["] + + + Every search term must match (ie, logical AND) + រាល់ពាក្យស្វែងរកទាំងអស់ត្រូវតែផ្គូផ្គង (ឧ. ឡូជីខល និង) + + + Modifiers + ឧបករណ៍កែប្រែ + + + exclude term from results + មិនរាប់បញ្ចូលទៅលើពាក្យពីលទ្ធផល + + + match term exactly + ពាក្យដែលត្រូវគ្នាពិតប្រាកដ + + + use regex in term + ប្រើកន្សោមធម្មតា (regex) ក្នុងមុខងារស្ថានីយ + + + Fields + កន្លែង​បញ្ចូល + + + Term Wildcards + ពាក្យអក្សរជំនួស + + + match anything + ត្រូវគ្នាជាមួយអ្វីមួយ + + + match one + ត្រូវគ្នាមួយ + + + logical OR + ឡូជីខល OR + + + Examples + ឧទាហរណ៏ + + + + SearchWidget + + Search + ស្វែងរក​ + + + Search Help + ស្វែងរកជំនួយ + + + Save Search + រក្សាទុកការស្វែងរក + + + Search (%1)… + Search placeholder text, %1 is the keyboard shortcut + ស្វែងរក (%1)… + + + Case sensitive + ប្រកាន់​អក្សរ​តូច​ធំ + + + Limit search to selected group + កំណត់ការស្វែងរកទៅកាន់ក្រុមដែលបានជ្រើសរើស + + + + SettingsClientModel + + Application + កម្មវិធី + + + PID + PID + + + DBus Address + អាសយដ្ឋាន DBus + + + Manage + គ្រប់គ្រង + + + + SettingsDatabaseModel + + File Name + ឈ្មោះ​ឯកសារ + + + Group + ក្រុម + + + Manage + គ្រប់គ្រង + + + + SettingsWidgetFdoSecrets + + Options + ជម្រើស + + + Enable KeepassXC Freedesktop.org Secret Service integration + បើក​ការរួមបញ្ចូលសេវាសម្ងាត់ KeepassXC Freedesktop.org + + + General + ទូទៅ + + + Show notification when passwords are retrieved by clients + ការបង្ហាញសារជូនដំណឹងនៅពេលដែលពាក្យសម្ងាត់ត្រូវបានអតិថិជនយកត្រឡប់ទៅវិញ + + + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> + <html><head/><body><p>ប្រសិនបើបានអនុញ្ញាត ការប៉ុនប៉ងណាមួយដើម្បីអានពាក្យសម្ងាត់ត្រូវតែបញ្ជាក់។ បើមិនអញ្ចឹងទេ អតិថិជនអាចអានពាក្យសម្ងាត់ដោយគ្មានការបញ្ជាក់ នៅពេលដែលមូលដ្ឋានទិន្នន័យត្រូវបានដោះសោ។</p><p>ជម្រើសនេះគ្របដណ្តប់តែការចូលប្រើពាក្យសម្ងាត់នៃធាតុចូលប៉ុណ្ណោះ។ អតិថិជនអាចសង្ខេបធាតុនៃ មូលដ្ឋានទិន្នន័យដែលបានលាតត្រដាងជានិច្ចហើយសួរពីលក្ខណៈរបស់ពួកគេ។</p></body></html> + + + Confirm when passwords are retrieved by clients + បញ្ជាក់នៅពេលដែលពាក្យសម្ងាត់ត្រូវបានទាញយកដោយអតិថិជន + + + Confirm when clients request entry deletion + បញ្ជាក់នៅពេលដែលអតិថិជនស្នើសុំការលុបទិន្នន័យបញ្ចូល + + + Prompt to unlock database before searching + សារជូនដំណឹងឱ្យដោះសោមូលដ្ឋានទិន្នន័យមុនពេលធ្វើការស្វែងរក + + + Exposed database groups: + ក្រុមឃ្លំាងទិន្នន័យដែលបានបង្ហាញ៖ + + + Authorization + ការអនុញ្ញាត + + + These applications are currently connected: + ថ្មីៗនេះ កម្មវិធីទាំងនេះត្រូវបានតភ្ជាប់៖ + + + <b>Warning:</b> + <b>ការព្រមាន៖</b> + + + Save current changes to activate the plugin and enable editing of this section. + ក្សាការផ្លាស់ប្តូរបច្ចុប្បន្នភាពទុក ដើម្បីដំណើរការទិន្នន័យជំនួយ និងបើកការកែសម្រួលផ្នែកនេះ។ + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + + + + SettingsWidgetKeeShare + + Active + សកម្ម + + + Allow KeeShare imports + អនុញ្ញាតឱ្យ KeeShare នាំចូល + + + Allow import + អនុញ្ញាតឱ្យនាំចូល + + + Allow KeeShare exports + អនុញ្ញាតឱ្យ KeeShare នាំចេញ + + + Allow export + អនុញ្ញាតឱ្យនាំចេញ + + + Only show warnings and errors + មានតែបង្ហាញការព្រមាននិងកំហុសតែប៉ុណ្ណោះ + + + Own certificate + វិញ្ញាបនបត្រផ្ទាល់ខ្លួន + + + Signer: + អ្នកចុះហត្ថលេខា + + + Generate new certificate + បង្កើតវិញ្ញាបនបត្រថ្មី + + + Generate + បង្កើត + + + Fingerprint: + ស្នាមម្រាមដៃ៖ + + + Signer name field + ឈ្មោះអ្នកចុះហត្ថលេខា + + + Fingerprint + ស្នាមម្រាមដៃ + + + + ShareExport + + Could not write export container. + មិនអាចសរសេរលើកុងតឺន័រនាំចេញបានទេ។ + + + + ShareImport + + Successful import + ការនាំចូលដោយជោគជ័យ + + + + ShareObserver + + Import from %1 failed (%2) + ការនាំចូលពី % 1 មិនបានសម្រេច (% 2) + + + Import from %1 successful (%2) + នាំចូលពី % 1 ដោយជោគជ័យ (% 2) + + + Imported from %1 + បាននាំចូលពី% 1 + + + Multiple import source path to %1 in %2 + ផ្លូវប្រភពនាំចូលជាច្រើនទៅ %1 ក្នុង %2 + + + Conflicting export target path %1 in %2 + កំពុង​ប៉ះទង្គិច​ផ្លូវ​គោលដៅ​នាំចេញ %1 ក្នុង %2 + + + Export to %1 failed (%2) + ការនាំចេញទៅ %1 បានបរាជ័យ (%2) + + + Export to %1 successful (%2) + ការនាំចេញទៅ %1 ទទួលបានជោគជ័យ (%2) + + + Export to %1 + នាំចេញទៅ %1 + + + + TagModel + + Clear Search + ជម្រះការស្វែងរក + + + All Entries + ទិន្នន័យបញ្ចូលទាំងអស់ + + + Expired + ផុតកំណត់ + + + Weak Passwords + ពាក្យសម្ងាត់ខ្សោយ + + + + TagView + + Remove Search + លុបការស្វែងរក + + + Remove Tag + លុបស្លាកចេញ + + + Confirm Remove Tag + បញ្ជាក់ការដកចេញធេក + + + Remove tag "%1" from all entries in this database? + ដកចេញស្លាក "%1" ពីការបញ្ចូលទាំងអស់នៅក្នុងមូលដ្ឋានទិន្នន័យនេះឬ? + + + + TotpDialog + + Timed Password + ពាក្យសម្ងាត់ដែលមានកំណត់ពេល + + + Copy + ចម្លង + + + Expires in <b>%n</b> second(s) + ផុតកំណត់នៅក្នុង <b>%n</b> វិនាទី + + + + TotpExportSettingsDialog + + Copy + ចម្លង + + + 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។ + + + Closing in %1 seconds. + កំពុងបិទក្នុងរយៈពេល % 1 វិនាទី។ + + + + TotpSetupDialog + + Setup TOTP + ដំឡើង TOTP + + + Secret Key: + ពាក្យសម្ងាត់ + + + Secret key must be in Base32 format + សោសម្ងាត់ត្រូវតែជាទម្រង់ Base32 + + + Secret key field + កន្លែងបញ្ចូលសោសម្ងាត់ + + + Default settings (RFC 6238) + ការកំណត់តាមលំនាំដើម (RFC 6238) + + + Steam® settings + ការកំណត់ Steam® + + + Custom settings: + ការកំណត់ផ្ទាល់ខ្លួន: + + + Custom Settings + ការកំណត់ផ្ទាល់ខ្លួន + + + Algorithm: + វិធី​ដោះស្រាយ​បញ្ហា៖ + + + Time step: + ជំហានពេលវេលា៖ + + + Time step field + កន្លែងបញ្ចូលជំហានពេលវេលា + + + sec + Seconds + វិនាទី + + + Code size: + ទំហំកូដ៖ + + + digits + ចំនួនលេខ + + + Invalid TOTP Secret + ការសម្ងាត់ TOTP មិនត្រឹមត្រូវ + + + You have entered an invalid secret key. The key must be in Base32 format. +Example: JBSWY3DPEHPK3PXP + អ្នកបានបញ្ចូលសោសម្ងាត់មិនត្រឹមត្រូវ។ សោត្រូវតែជាទម្រង់ Base32។ +ឧទាហរណ៍៖ JBSWY3DPEHPK3PXP + + + Confirm Remove TOTP Settings + បញ្ជាក់ការដកចេញការកំណត់របស់ TOTP + + + Are you sure you want to delete TOTP settings for this entry? + តើអ្នកពិតជាចង់លុបការកំណត់ TOTP សម្រាប់ទិន្នន័យបញ្ចូលនេះមែនទេ? + + + + URLEdit + + Invalid URL + URL មិនត្រឹមត្រូវ + + + + UpdateCheckDialog + + Checking for updates + ពិនិត្យរកមើលការធ្វើបច្ចុប្បន្នភាពនានា + + + Checking for updates… + ពិនិត្យរកមើលការធ្វើបច្ចុប្បន្នភាពនានា… + + + Close + បិទ + + + Software Update + ការអាប់ដេតសូហ្វវែរ + + + An error occurred when trying to retrieve update information, please try again later. + បញ្ហាដែលបានកើតឡើងនៅពេលកំពុងព្យាយាមទាញយកព័ត៌មានថ្មីៗ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ។ + + + <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. + <strong>មានកំណែថ្មីអាចប្រើប្រាស់បានហើយ</strong><br/>KeePassXC %1 អាចនឹងទាញយក <a href="https://keepassxc.org/download/">បាននៅទីនេះ</a>។ + + + You have the latest version of KeePassXC + អ្នកមានកំណែចុងក្រោយបំផុតរបស់ KeePassXC + + + + WelcomeWidget + + Start storing your passwords securely in a KeePassXC database + ចាប់ផ្តើមរក្សាទុកពាក្យសម្ងាត់របស់អ្នកដោយសុវត្ថិភាពនៅក្នុងឃ្លាំងទិន្នន័យ KeePassXC + + + Recent databases + ទិន្នន័យថ្មីៗ + + + Open a recent database + បើកឃ្លំាងទិន្នន័យថ្មីៗ + + + Welcome to KeePassXC %1 + សូមស្វាគមន៍មកកាន់ KeePassXC % 1 + + + Create Database + + + + Open Database + + + + Import File + + + + + WinUtils + + Invalid key code + កូដសោមិនត្រឹមត្រូវ + + + Global shortcut already registered to %1 + ផ្លូវកាត់ទូទៅបានចុះឈ្មោះរួចហើយទៅកាន់ % 1 + + + Could not register global shortcut + មិនអាចចុះឈ្មោះផ្លូវកាត់ទូទៅបានទេ + + + + YubiKey + + General: + ទូទៅ៖ + + + Could not find interface for hardware key with serial number %1. Please connect it to continue. + មិនអាចស្វែងរកផ្ទៃសម្រាប់ឃីហាតវែរដែលមានលេខស៊េរី % 1។ សូមភ្ជាប់លេខលេខស៊េរីដើម្បីបន្ត។ + + + + YubiKeyEditWidget + + Hardware key slot selection + ការជ្រើសរើសរន្ធដោតឃីហាតវែរ + + + Could not find any hardware keys! + រក​មិន​ឃើញឃីហាតវែរណាមួយទេ! + + + Selected hardware key slot does not support challenge-response! + រន្ធដោតឃីហាតវែរដែលបានជ្រើសរើសមិនប្រើប្រាស់ដំណើរការផ្ទៀងផ្ទាត់បានទេ! + + + Challenge-Response + ដំណើរការផ្ទៀងផ្ទាត់ + + + Add Challenge-Response + បន្ថែមដំណើរការផ្ទៀងផ្ទាត់ + + + Change Challenge-Response + ផ្លាស់ប្តូរដំណើរការផ្ទៀងផ្ទាត់ + + + Remove Challenge-Response + ដក​ចេញដំណើរការផ្ទៀងផ្ទាត់ + + + Challenge-Response set, click to change or remove + ការកំណត់ដំណើរការផ្ទៀងផ្ទាត់ដោយចុចផ្លាស់ប្តូរ ឬដកចេញ + + + Detecting hardware keys… + កំពុងរកឃើញឃីហាតវែរ… + + + No hardware keys detected + រកមិនឃើញឃីហាតវែរទេ + + + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + + + + + YubiKeyInterfacePCSC + + The YubiKey PCSC interface has not been initialized. + មិន​បានចាប់ផ្តើមផ្ទៃ YubiKey PCSC ទេ។ + + + Could not find or access hardware key with serial number %1. Please present it to continue. + មិន​អាច​រក​ឃើញ ឬ​ចូលប្រើប្រាស់ឃីហាតវែរដែលមានលេខស៊េរី % 1 ទេ។ សូមបង្ហាញលេខលេខស៊េរីដើម្បីបន្ត។ + + + Hardware key is locked or timed out. Unlock or re-present it to continue. + ឃីហាតវែរត្រូវបានទប់ស្កាត់ ឬអស់ពេល។ ឈប់ទប់ស្កាត់ ឬបង្ហាញវាឡើងវិញ ដើម្បីបន្ត។ + + + Hardware key was not found or is not configured. + រកមិនឃើញឃីហាតវែរ ឬមិនត្រូវបានកំណត់រចនាសម្ព័ន្ធ។ + + + Failed to complete a challenge-response, the PCSC error code was: %1 + បរាជ័យក្នុងការបំពេញដំណើរការផ្ទៀងផ្ទាត់ លេខកូដបញ្ហា PCSC គឺ៖ % 1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + ចុច + + + Passive + USB Challenge-Response Key no interaction required + អកម្ម + + + + YubiKeyInterfaceUSB + + Unknown + មិនស្គាល់ + + + Press + USB Challenge-Response Key interaction request + ចុច + + + Passive + USB Challenge-Response Key no interaction required + អកម្ម + + + The YubiKey USB interface has not been initialized. + មិន​បានចាប់ផ្តើមផ្ទៃ YubiKey USB ទេ។ + + + Could not find hardware key with serial number %1. Please plug it in to continue. + មិនអាចរកឃើញឃីហាតវែរដែលមានលេខស៊េរី % 1 ទេ។ សូមភ្ជាប់វាដើម្បីបន្ត។ + + + Hardware key timed out waiting for user interaction. + ឃីហាតវែរបានអស់ពេលរង់ចាំអន្តរកម្មអ្នកប្រើ។ + + + A USB error occurred when accessing the hardware key: %1 + បញ្ហា USB បានកើតឡើងនៅពេលកំពុងឃីចូលប្រើប្រាស់ឃីហាតវែរ៖ % 1 + + + Failed to complete a challenge-response, the specific error was: %1 + បរាជ័យក្នុងការបំពេញដំណើរការផ្ទៀងផ្ទាត់ដែលបញ្ហាជាក់លាក់គឺ៖ % 1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + \ No newline at end of file diff --git a/share/translations/keepassxc_ko.ts b/share/translations/keepassxc_ko.ts index 0034d5c11..85f9e87c3 100644 --- a/share/translations/keepassxc_ko.ts +++ b/share/translations/keepassxc_ko.ts @@ -80,6 +80,10 @@ Details 자세한 정보 + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + 선택 사항은 요청하는 클라이언트와 KeePassXC 둘 다가 실행 중인 동안만 기억합니다. + Remember 기억 @@ -88,10 +92,6 @@ Allow Selected 선택 허용 - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - 선택 사항은 요청하는 클라이언트와 KeePassXC 둘 다가 실행 중인 동안만 기억합니다. - Deny All && Future 앞으로 계속 모두 거부 @@ -122,6 +122,10 @@ Use OpenSSH OpenSSH 사용 + + Use both agents + 에이전트 둘 다 사용 + SSH_AUTH_SOCK override SSH_AUTH_SOCK 재정의 @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH 에이전트에 연결할 수 있습니다! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security 보안 + + This setting cannot be enabled when minimize on unlock is enabled. + 이 설정은 최소화나 잠금 해제가 활성화되어 있으면 활성화할 수 없습니다. + Access error for config file %1 설정 파일 %1에 접근할 수 없음 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? 새 언어를 적용하려면 프로그램을 다시 시작해야 합니다. 지금 다시 시작하시겠습니까? - - Reset Settings? - 설정을 초기화하시겠습니까? - - - Are you sure you want to reset all general and security settings to default? - 모든 일반 설정과 보안 설정을 초기화하시겠습니까? - Select backup storage directory 백업 저장 디렉터리 선택 + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases 과거 데이터베이스 기억 + + recent files + 개 최근 파일 + Load previously open databases on startup 시작할 때 이전에 사용한 데이터베이스 열기 @@ -272,25 +312,6 @@ Include beta releases when checking for updates 업데이트를 확인할 때 베타 릴리스 포함 - - On database unlock, show entries that - 데이터베이스 잠금을 해제할 때 다음 항목 표시 - - - have expired - On database unlock, show entries that... - 이미 만료됨 - - - days - On database unlock, show entries that will expire within %1 days - 일 후에 만료됨 - - - will expire within - On database unlock, show entries that... - - File Management 파일 관리 @@ -315,22 +336,10 @@ Backup database file before saving 저장하기 전에 데이터베이스 파일 백업 - - Backup destination - 백업 대상 - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - yyyy_MM_dd_hh-mm-ss - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - 선택... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) 대체 저장 방식 사용(Dropbox, Google 드라이브, GVFS 등 문제 해결) @@ -408,6 +417,10 @@ Toolbar button style: 도구 모음 단추 스타일: + + Show passwords in color + 암호 표시 시 글자 종류별로 색상 적용 + Use monospaced font for notes 메모에 고정폭 글꼴 사용 @@ -493,6 +506,71 @@ Remember last typed entry for: 마지막으로 입력한 항목 기억 시간: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + 일 내에 만료됨 + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + 도구 모음 보이기 + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window 창을 최소화할 때 데이터베이스 잠금 - - Require password repeat when it is visible - 암호가 보일 때 반복 필요 - Hide passwords when editing them 암호를 편집할 때 숨기기 @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel 항목 미리 보기 패널에서 암호 숨기기 - - Hide entry notes by default - 기본값으로 암호 숨기기 - - - Move entries to recycle bin without confirmation - 항목을 묻지 않고 휴지통으로 이동 - - - Enable double click to copy the username/password entry columns - 두 번 클릭으로 사용자 이름/암호 항목 열에서 복사 사용 - Privacy 개인 정보 @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons 웹 사이트 아이콘을 다운로드할 때 DuckDuckGo 서비스 사용 + + Hide TOTP in the entry preview panel + 항목 미리 보기 패널에서 TOTP 숨기기 + + + Lock databases when switching user + 사용자를 전환할 때 데이터베이스 잠금 + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ 매우 긴 지연 시간이 감지됨, 최대 %1: %2 - Invalid conversion type: %1 - 잘못된 변환 형식: %1 - - - Invalid conversion syntax: %1 - 잘못된 변환 문법: %1 - - - Invalid regular expression syntax %1 -%2 - 잘못된 정규 표현식 문법 %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + 항목에 PICKCHARS 속성이 없음: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - 잘못된 키를 보내려고 하고 있습니다. - Sequence aborted: Caps Lock is on 입력 순서 중단됨: Caps Lock이 켜져 있음 @@ -700,6 +764,10 @@ Unable to get valid keycode for key: 키에 대한 올바른 키 코드를 가져올 수 없음: + + Trying to send invalid keyboard symbol. + 잘못된 키보드 기호를 보내려고 시도하고 있습니다. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - 가상 키보드 사용(Windows 전용)</p> Disable for this site 이 사이트에서는 거부 + + Undo + 실행 취소 + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-브라우저 항목 저장 - Ok 확인 @@ -823,15 +891,76 @@ Ctrl+4 - 가상 키보드 사용(Windows 전용)</p> You have multiple databases open. Please select the correct database for saving credentials. 여러 개의 데이터베이스를 열었습니다. -인증 정보를 저장할 데이터베이스를 선택하십시오. +자격 증명을 저장할 데이터베이스를 선택하십시오. + + + KeePassXC - Select Database + KeePassXC - 데이터베이스 선택 + + + + BrowserPasskeysConfirmationDialog + + Cancel + 취소 + + + Update + 업데이트 + + + Authenticate + 인증 + + + Register new + 지금 등록 + + + Register + 등록 + + + Timeout in <b>%n</b> seconds... + <b>%n</b>초 후 시간 초과됨... + + + Relying Party: %1 + 의존하는 상대방: %1 + + + Username: %1 + 사용자 이름: %1 + + + KeePassXC - Passkey credentials + KeePassXC - 패스키 자격 증명 + + + Add to existing entry + 기존 항목에 추가 + + + Existing passkey found. +Do you want to register a new passkey for: + 기존 패스키를 찾았습니다. +다음에 대한 새 패스키를 등록하시겠습니까?: + + + Select the existing passkey and press Update to replace it. + 기존 패스키를 선택한 후 업데이트를 누르면 대체합니다. + + + Authenticate passkey credentials for: + 다음에 대하여 패스키 자격 증명 인증: + + + Do you want to register a passkey for: + 다음에 대한 패스키를 등록하시겠습니까?: BrowserService - - KeePassXC: Create a new group - KeePassXC: 새 그룹 생성 - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? 이 그룹을 생성하시겠습니까? - - KeePassXC: New key association request - KeePassXC: 새 키 연결 요청 - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access 저장하고 접근 허용 - - KeePassXC: Overwrite existing key? - KeePassXC: 기존 키를 덮어쓰시겠습니까? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? 이름이 "%1"인 공유 암호화 키가 이미 있습니다. 덮어쓰시겠습니까? - - KeePassXC: Update Entry - KeePassXC: 항목 업데이트 - Do you want to update the information in %1 - %2? %1 - %2의 정보를 업데이트하시겠습니까? - - KeePassXC: Delete entry - KeePassXC: 항목 삭제 - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - 속성을 사용자 정의 데이터로 변환 중… + %1 (Passkey) + %1(패스키) - Abort - 중지 + KeePassXC - Create a new group + KeePassXC - 새 그룹 만들기 - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: KeePassHTTP 속성 변환됨 + Disable + 비활성화 - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - %1개 항목의 속성을 변환했습니다. -키 %2개를 사용자 정의 데이터로 이동했습니다. - - - Successfully moved %n keys to custom data. - 키 %n개를 사용자 정의 데이터로 이동했습니다. + KeePassXC - Overwrite existing key? + KeePassXC - 기존 키 덮어쓰기? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: KeePassHTTP 속성이 있는 항목을 찾을 수 없습니다! + KeePassXC - Update Entry + KeePassXC - 항목 업데이트 - The active database does not contain an entry with KeePassHTTP attributes. - 현재 활성화된 데이터베이스에 KeePassHTTP 속성이 있는 항목이 없습니다. + KeePassXC - Delete entry + KeePassXC - 항목 삭제 - Don't show this warning again - 더 이상 이 경고 표시하지 않기 + KeePassXC - New key association request + KeePassXC - 새 키 연결 요청 - KeePassXC: Legacy browser integration settings detected - KeePassXC: 레거시 브라우저 통합 설정 감지됨 + Passkey + 패스키 - 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-브라우저 설정을 데이터베이스 설정으로 이동해야 합니다. -현재 브라우저 연결을 유지하려면 이 작업이 필요합니다. -존재하는 설정을 이전하시겠습니까? + KeePassXC - Passkey credentials + KeePassXC - 패스키 자격 증명 + + + Register a new passkey to this entry: + 이 항목에 새 패스키 등록: + + + KeePassXC - Update passkey + KeePassXC - 패스키 업데이트 + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + 항목에 이미 패스키가 있습니다. +%1 - %2에 패스키를 덮어쓰시겠습니까? + + + Register + 등록 @@ -955,10 +1076,6 @@ Would you like to migrate your existing settings now? General 일반 - - Browsers installed as snaps are currently not supported. - Snap으로 설치한 브라우저는 지원하지 않습니다. - Enable integration for these browsers: 다음 브라우저에 통합: @@ -994,7 +1111,7 @@ Would you like to migrate your existing settings now? Show a notification when credentials are requested Credentials mean login data requested via browser extension - 인증 정보가 필요할 때 알림 표시 + 자격 증명이 필요할 때 알림 표시 Request to unlock the database if it is locked @@ -1014,24 +1131,24 @@ Would you like to migrate your existing settings now? Return only best-matching credentials - 가장 잘 일치하는 인증 정보 항목만 반환 + 가장 잘 일치하는 자격 증명 항목만 반환 Returns expired credentials. String [expired] is added to the title. - 만료된 인증 정보도 반환합니다. 제목에 [만료됨] 문자열이 추가됩니다. + 만료된 자격 증명도 반환합니다. 제목에 [만료됨] 문자열이 추가됩니다. Allow returning expired credentials - 만료된 인증 정보 반환 허용 + 만료된 자격 증명 반환 허용 All databases connected to the extension will return matching credentials. - 확장 기능에 연결된 모든 데이터베이스에서 일치하는 인증 정보를 반환합니다. + 확장 기능에 연결된 모든 데이터베이스에서 일치하는 자격 증명을 반환합니다. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - 모든 열린 데이터베이스에서 저장된 인증 정보 검색 + 모든 열린 데이터베이스에서 저장된 자격 증명 검색 Advanced @@ -1040,12 +1157,12 @@ Would you like to migrate your existing settings now? Never ask before accessing credentials Credentials mean login data requested via browser extension - 저장된 인증 정보에 접근하기 전에 묻지 않기 + 저장된 자격 증명에 접근하기 전에 묻지 않기 Never ask before updating credentials Credentials mean login data requested via browser extension - 저장된 인증 정보를 업데이트하기 전에 묻지 않기 + 저장된 자격 증명을 업데이트하기 전에 묻지 않기 Do not ask permission for HTTP Basic Auth @@ -1130,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID 사용자 정의 확장 기능 ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Snap 샌드박스로 인하여 브라우저 확장 기능을 사용하려면 스크립트를 실행해야 합니다.<br />%1에서 스크립트를 확인할 수 있습니다 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - 브라우저 통합 기능을 사용하려면 KeePassXC-브라우저가 필요합니다.<br />%1, %2, %3, %4용으로 다운로드할 수 있습니다. - - - Please see special instructions for browser extension use below - 브라우저 확장 기능을 위한 추가 절차를 참조하십시오 - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>오류:</b> 사용자 정의 프록시 위치를 찾을 수 없습니다!<br/>브라우저 통합 기능을 사용하려면 프록시 프로그램이 필요합니다. - - - <b>Warning:</b> The following options can be dangerous! - <b>경고:</b> 다음 옵션은 신중하게 사용하십시오! - Executable Files 실행 파일 @@ -1166,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location 네이티브 메시징 호스트 폴더 위치 선택 + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + keepassxc-proxy가 연결된 데이터베이스 내 모든 항목의 제목, URL, UUID를 표시하도록 허용합니다. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + 연결된 데이터베이스 내 모든 항목에 제한된 접근을 허용합니다(사이트 접근 제한 무시) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>경고:</b> 필요한 경우에만 설정을 변경하십시오. + + + The custom proxy location does not exist. + 사용자 정의 프록시 위치가 존재하지 않습니다. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>오류:</b> 사용자 정의 프록시 위치가 존재하지 않습니다. 고급 설정 탭에서 수정하십시오. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>오류:</b> 설치된 실행 파일이 예상된 위치 %1에 없습니다.<br/>고급 설정에서 사용자 정의 프록시 위치를 설정하거나 프로그램을 다시 설치하십시오. + + + Allows using insecure http://localhost with passkeys for testing purposes. + 시험 목적으로 보안상 안전하지 않은 http://localhost에 패스키 사용을 허용합니다. + + + Allow using localhost with passkeys + localhost에 패스키 사용 허용 + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + 브라우저 통합을 사용하려면 KeePassXC-브라우저가 필요합니다.<br />%1, %2, %3용으로 다운로드할 수 있습니다. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1188,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - CSV 필드 가져오기 - - - filename - 파일 이름 - size, rows, columns 크기, 줄, 칸 @@ -1304,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 열 %1 - - Imported from CSV file - CSV 파일에서 가져옴 - - - Original data: - 원본 데이터: - - - Error(s) detected in CSV file! - CSV 파일에 오류가 있습니다! - [%n more message(s) skipped] [추가 메시지 %n개 건너뜀] - Error - 오류 + Failed to parse CSV file: %1 + CSV 파일을 해석할 수 없음: %1 - CSV import: writer has errors: -%1 - CSV 가져오기: 기록 도구에 오류가 있습니다: -%1 + Imported from CSV file: %1 + CSV 파일에서 가져옴: %1 + + + No Title Selected + 선택한 제목 없음 + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + 제목 열을 선택하지 않았습니다. 개별 항목을 구분하기 어려울 수 있습니다. +계속 가져오시겠습니까? + + + Tags + 태그 CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n바이트 - %n row(s) + CSV row count %n줄 %n column(s) + CSV column count %n칸 @@ -1400,6 +1522,14 @@ Backup database located at %2 Recycle Bin 휴지통 + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup database located at %2 Password field 암호 필드 - - Enter Additional Credentials (if any): - 추가 인증 정보 입력(해당되는 경우): - - - Key File: - 키 파일: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>암호 외에도 비밀 파일을 사용하여 데이터베이스 보안을 강화할 수 있습니다. 이 파일은 데이터베이스 보안 설정에서 생성할 수 있습니다.</p><p>이 파일은 *.kdbx 데이터베이스 파일과 <strong>별개의 파일</strong>입니다!<br>키 파일이 없다면 이 필드를 비워 두십시오.</p><p>자세한 정보를 보려면 클릭하십시오…</p> - - - Key file help - 키 파일 도움말 - Hardware key slot selection 하드웨어 키 슬롯 선택 - - Hardware Key: - 하드웨어 키: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p><strong>YubiKey</strong>나 <strong>OnlyKey</strong>와 같은 하드웨어 키의 슬롯을 HMAC-SHA1로 설정 시 사용할 수 있습니다.</p> -<p>더 많은 정보를 보려면 클릭하십시오…</p> - - - Hardware key help - 하드웨어 키 도움말 - Key file to unlock the database 데이터베이스 잠금 해제 키 파일 @@ -1468,14 +1568,6 @@ Backup database located at %2 Browse… 찾아보기... - - Refresh hardware tokens - 하드웨어 토큰 새로 고침 - - - Refresh - 새로 고침 - Unlock Database 데이터베이스 잠금 해제 @@ -1538,14 +1630,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password 빈 암호로 다시 시도 - - Failed to authenticate with Windows Hello - Windows Hello로 인증할 수 없음 - - - Failed to authenticate with Touch ID - Touch ID로 인증할 수 없음 - Failed to open key file: %1 키 파일을 열 수 없음: %1 @@ -1579,22 +1663,68 @@ To prevent this error from appearing, you must go to "Database Settings / S 데이터베이스 파일은 키 파일로 사용할 수 없습니다. - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - 데이터베이스 파일을 자기 자신의 키 파일로 사용할 수 없습니다. -키 파일이 없는 경우, 해당 필드를 비워두십시오. + authenticate to access the database + 데이터베이스에 접근하려면 인증하십시오 - Detecting hardware keys… - 하드웨어 키 인식 중... + Failed to authenticate with Quick Unlock: %1 + 빠른 잠금 해제로 인증할 수 없음: %1 - No hardware keys detected - 인식된 하드웨어 키 없음 + Select Key File: + 키 파일 선택: - Select hardware key… - 하드웨어 키 선택... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>데이터베이스 파일의 보안을 개선할 수 있도록 암호 외에도 비밀 파일을 사용할 수 있습니다. 해당 파일은 데이터베이스 보안 설정에서 생성할 수 있습니다.</p><p>이 파일은 *.kdbx 데이터베이스 파일이 <strong>아닙니다</strong>!</p> + + + Use hardware key [Serial: %1] + 하드웨어 키 사용 [일련 번호: %1] + + + Use hardware key + 하드웨어 키 사용 + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + 데이터베이스 파일은 키 파일이 아닙니다! +키 파일이 없거나 키 파일이 무엇인지 모르겠다면 선택하지 마십시오. + + + KeePassXC database file selected + KeePassXC 데이터베이스 파일 선택됨 + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + 선택한 파일은 데이터베이스 파일 같습니다. +데이터베이스 파일은 키 파일이 아닙니다! + +이 파일로 계속 진행하시겠습니까? + + + No hardware keys found. + 하드웨어 키를 찾을 수 없습니다. + + + Refresh Hardware Keys + 하드웨어 키 새로 고침 + + + Click to add a key file. + 키 파일을 추가하려면 클릭하십시오. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">키 파일이 있음</a> + + + Hardware keys found, but no slots are configured. + @@ -1606,10 +1736,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - 고급 설정 - General 일반 @@ -1620,7 +1746,7 @@ If you do not have a key file, please leave the field empty. Database Credentials - 데이터베이스 인증 정보 + 데이터베이스 자격 증명 Encryption Settings @@ -1634,6 +1760,22 @@ If you do not have a key file, please leave the field empty. Maintenance 관리 + + KeeShare + KeeShare + + + Secret Service Integration + 비밀 서비스 통합 + + + Remote Sync + 원격 동기화 + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-브라우저 설정 - - Convert KeePassHTTP data - KeePass HTTP 데이터 변환 - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - 레거시 KeePassHTTP 설정을 KeePassXC-브라우저 호환 사용자 정의 데이터로 변환 - - - Refresh database root group ID - 데이터베이스 루트 그룹 ID 새로 고침 - Disconnect all browsers 모든 브라우저 연결 끊기 @@ -1661,6 +1791,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries 항목의 모든 사이트별 설정 삭제 + + Refresh database root group ID + 데이터베이스 루트 그룹 ID 새로 고침 + Stored keys 저장된 키 @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. 모든 브라우저 연결을 끊으시겠습니까? 브라우저 플러그인에 연결하지 못할 수도 있습니다. - - KeePassXC: No keys found - KeePassXC: 키를 찾을 수 없음 - No shared encryption keys found in KeePassXC settings. KeePassXC 설정에서 공유된 암호화 키를 찾을 수 없습니다. - - KeePassXC: Removed keys from database - KeePassXC: 데이터베이스에서 키 삭제됨 - Successfully removed %n encryption key(s) from KeePassXC settings. KeePassXC 설정에서 암호화 키 %n개를 삭제했습니다. @@ -1739,32 +1865,14 @@ Permissions to access entries will be revoked. Abort 중지 - - KeePassXC: Removed permissions - KeePassXC: 권한 삭제됨 - Successfully removed permissions from %n entry(s). 항목 %n개에서 권한을 삭제했습니다. - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - 모든 레거시 브라우저 통합 데이터를 최신 표준으로 이동하시겠습니까? -브라우저 통합 플러그인과 호환성을 유지하기 위해서 필요합니다. - Refresh database ID 데이터베이스 ID 새로 고침 @@ -1775,6 +1883,26 @@ This is only necessary if your database is a copy of another and the browser ext 데이터베이스 ID를 새로 고치시겠습니까? 데이터베이스가 다른 데이터베이스의 복제본이고 브라우저 확장 기능에서 연결할 수 없을 때에만 사용하십시오. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + 레거시 KeePassHTTP 설정을 KeePassXC-브라우저 호환 사용자 정의 데이터로 변환 + + + No keys found + 키를 찾을 수 없음 + + + Removed keys from database + 데이터베이스에서 키 삭제함 + + + Removed permissions + 권한 삭제함 + + + No entry with permissions found! + 권한이 있는 항목을 찾을 수 없습니다! + DatabaseSettingsWidgetDatabaseKey @@ -1812,7 +1940,19 @@ Are you sure you want to continue without a password? Failed to change database credentials - 데이터베이스 인증 정보를 변경할 수 없음 + 데이터베이스 자격 증명을 변경할 수 없음 + + + Weak password + 약한 암호 + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + 암호가 너무 약합니다! 기밀 정보를 보호하려면 더 강한 암호를 입력해야 합니다. + + + The provided password does not meet the minimum quality requirement. + 지정한 암호가 최소 보안 조건을 만족하지 않습니다. @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: 복호화 시간: - - Change existing decryption time - 기존 복호화 시간 변경 - - - Change - 변경 - Decryption time in seconds 초 단위의 복호화 시간 @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - 변경되지 않음 - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) 개 스레드 + + Encryption Settings: + 암호화 설정: + + + Basic + 기본 + + + Advanced + 고급 + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry 항목당 최대 과거 기록 개수 - - Max. history items: - 최대 과거 항목 수: - Maximum size of history per entry 항목당 최대 과거 기록 크기 - - Max. history size: - 최대 과거 항목 크기: - MiB MiB @@ -2066,6 +2197,108 @@ This action is not reversible. (old) (이전) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + 이 설정을 저장하거나 항목을 편집할 때 +항목의 과거 기록 중 가장 오래된 항목부터 +삭제되어 최대 지정한 개수만큼의 과거 +기록만을 저장합니다. + + + Limit the amount of history items per entry to: + 항목별 과거 기록 개수 제한: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + 이 설정을 저장하거나 항목을 편집할 때 +항목의 과거 기록 중 가장 오래된 항목부터 +삭제되어 최대 지정한 크기만큼의 과거 +기록만을 저장합니다. + + + Limit the total size of history items per entry to: + 항목별 과거 기록 총 크기 제한: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + 데이터베이스에서 항목을 삭제하지 않고 +휴지통 그룹으로 이동합니다. +휴지통에서 삭제된 항목은 +데이터베이스에서 삭제됩니다. + + + Autosave delay since last change + 마지막 변경 후 자동 저장까지 대기 시간 + + + Autosave delay + 자동 저장 대기 시간 + + + Autosave delay since last change in minutes + 분 단위의 마지막 변경 후 자동 저장 대기 시간 + + + min + + + + Autosave delay since last change checkbox + 마지막 체크 상자 변경 후 자동 저장 대기 시간 + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + 비우기 + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,141 @@ This action is not reversible. 데이터베이스 설명 필드 + + DatabaseSettingsWidgetRemote + + Sync Commands + 동기화 명령 + + + Remove + 삭제 + + + Command Settings + 명령 설정 + + + Name + 이름 + + + Save + 저장 + + + Download + 다운로드 + + + Command: + 명령: + + + Download command field + 다운로드 명령 필드 + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 예제: "sftp user@hostname" 또는 "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + 입력: + + + Download input field + 다운로드 입력 필드 + + + Upload + 업로드 + + + Upload command field + 업로드 명령 필드 + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + 예제: "sftp user@hostname" 또는 "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + 업로드 입력 필드 + + + Name cannot be empty. + 이름을 비워 둘 수 없습니다. + + + Test + 시험 + + + Download command cannot be empty. + 다운로드 명령을 비워 둘 수 없습니다. + + + Download failed with error: %1 + 다운로드 실패, 오류: %1 + + + Download finished, but file %1 could not be found. + 다운로드가 완료되었지만 %1 파일을 찾을 수 없습니다. + + + Download successful. + 다운로드에 성공했습니다. + + + Save Remote Settings + 원격 설정 저장 + + + You have unsaved changes. Do you want to save them? + 저장하지 않은 변경 사항이 있습니다. 저장하시겠습니까? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 예제.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE}는 임시 위치에 저장된 데이터베이스를 가리키는 자리 비움자입니다 +명령은 종료되어야 합니다. `sftp`의 경우 마지막 `exit` 명령을 전송해야 합니다 + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 예제.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE}는 임시 위치에 저장된 데이터베이스를 가리키는 자리 비움자입니다 +명령은 종료되어야 합니다. `sftp`의 경우 마지막 `exit` 명령을 전송해야 합니다 + + + + Timeout: + + + + seconds + + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV 파일 - - Select CSV file - CSV 파일 선택 - Merge database 데이터베이스 합치기 - - KeePass 1 database - KeePass 1 데이터베이스 - - - Open KeePass 1 database - KeePass 1 데이터베이스 열기 - - - Open OPVault - OPVault 열기 - Export database to CSV file 데이터베이스를 CSV 파일로 내보내기 @@ -2225,6 +2577,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. HTML 파일에 쓸 수 없습니다. + + Export database to XML file + 데이터베이스를 XML 파일로 내보내기 + + + XML file + XML 파일 + + + Writing the XML file failed + XML 파일 기록 실패 + Export Confirmation 내보내기 확인 @@ -2233,26 +2597,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? 데이터베이스를 암호화되지 않은 파일로 내보냅니다. 암호와 기타 민감 정보를 노출시킬 수 있습니다! 계속 진행하시겠습니까? - - New Database - 새 데이터베이스 - - - %1 [New Database] - Database tab name modifier - %1 [새 데이터베이스] - %1 [Locked] Database tab name modifier %1 [잠김] + + %1 [Temporary] + Database tab name modifier + %1 [임시] + DatabaseWidget - Database Tags - 데이터베이스 태그 + Searches and Tags + 검색과 태그 Searching… @@ -2302,6 +2662,10 @@ This is definitely a bug, please report it to the developers. Expired entries 만료된 항목 + + Entries expiring within %1 day(s) + %1일 내에 만료되는 항목 + No current database. 현재 데이터베이스가 없습니다. @@ -2326,6 +2690,18 @@ This is definitely a bug, please report it to the developers. No Results 결과 없음 + + Save + 저장 + + + Enter a unique name or overwrite an existing search from the list: + 고유한 이름을 입력하거나 목록에 있는 기존 검색을 덮어쓸 수 있습니다: + + + Save Search + 검색 저장 + Lock Database? 데이터베이스를 잠그시겠습니까? @@ -2353,26 +2729,6 @@ Save changes? 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? - 데이터베이스 파일이 변경되었고 저장하지 않은 변경 사항이 있습니다. -변경 사항을 합치겠습니까? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - 자동으로 다시 불러오려는 중 새 데이터베이스 파일을 열 수 없었습니다. -오류: %1 - Disable safe saves? 안전 저장을 비활성화 하시겠습니까? @@ -2415,9 +2771,94 @@ Disable safe saves and try again? Could not find database file: %1 데이터베이스 파일을 찾을 수 없음: %1 - - Entries expiring within %1 day(s) - %1일 내에 만료되는 항목 + + New Database + 새 데이터베이스 + + + %1 [New Database] + Database tab name modifier + %1 [새 데이터베이스] + + + Remote Sync did not contain any download or upload commands. + 원격 동기화에 다운로드나 업로드 명령이 없습니다. + + + Remote sync '%1' completed successfully! + '%1' 원격 동기화에 성공했습니다! + + + Remote sync '%1' failed: %2 + '%1' 원격 동기화 실패: %2 + + + Error while saving database %1: %2 + %1 데이터베이스를 저장하는 중 오류 발생: %2 + + + Downloading... + 다운로드 중... + + + Uploading... + 업로드 중... + + + Syncing... + 동기화 중... + + + Remove passkey from entry + 항목에서 패스키 삭제 + + + Do you want to remove the passkey from this entry? + 이 항목에서 패스키를 삭제하시겠습니까? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2470,10 +2911,6 @@ Disable safe saves and try again? n/a 없음 - - (encrypted) - (암호화됨) - Select private key 비밀 키 선택 @@ -2560,6 +2997,10 @@ Would you like to correct it? Hide 숨기기 + + %n hour(s) + %n시간 + %n week(s) %n주 @@ -2572,9 +3013,9 @@ Would you like to correct it? %n year(s) %n년 - - %n hour(s) - %n시간 + + Failed to decrypt SSH key, ensure password is correct. + SSH 키를 복호화할 수 없습니다. 암호가 올바른지 확인하십시오. @@ -2694,10 +3135,20 @@ Would you like to correct it? Add new window association 새 창 연결 추가 + + + + Add item + + + Remove selected window association 선택한 창 연결 삭제 + + - + Remove item + - + Window title: 창 제목: @@ -2722,23 +3173,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window 이 창의 사용자 정의 자동 입력 순서 - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - 이 설정은 브라우저 확장 기능에서 해당 항목을 처리하는 방법을 변경합니다. - General 일반 @@ -2751,26 +3188,14 @@ Would you like to correct it? Skip Auto-Submit for this entry 이 항목 자동 제출 건너뛰기 - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - 웹 브라우저의 HTTP 인증 대화 상자에만 이 설정을 사용합니다. 활성화하면 일반 로그인 폼 선택 목록에 이 항목을 표시하지 않습니다. - Use this entry only with HTTP Basic Auth HTTP Basic 인증에만 이 항목 사용 - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - 이 설정을 브라우저의 HTTP 인증 대화 상자로 보내지 않습니다. 이 옵션을 사용하면 HTTP 인증 대화 상자에서 이 항목을 숨깁니다. - Do not use this entry with HTTP Basic Auth HTTP Basic 인증에 이 항목 사용하지 않기 - - Additional URL's - 추가 URL - Add 추가 @@ -2783,6 +3208,22 @@ Would you like to correct it? Edit 편집 + + These settings affect the entry's behaviour with the browser extension. + 이 설정은 브라우저 확장 기능에서 항목을 사용하는 방법에 영향을 줍니다. + + + Additional URLs + 추가 URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + 브라우저의 HTTP 인증 대화 상자에 이 항목만 보냅니다. 이 옵션을 사용하면 일반 로그인 폼에는 이 항목을 선택할 수 있도록 표시하지 않습니다. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + 이 항목을 브라우저의 HTTP 인증 대화 상자에 보내지 않습니다. 이 옵션을 사용하면 HTTP 인증 대화 상자에는 이 항목을 선택할 수 있도록 표시하지 않습니다. + EditEntryWidgetHistory @@ -2833,22 +3274,10 @@ Would you like to correct it? Notes field 메모 필드 - - Toggle the checkbox to reveal the notes section. - 메모 부분을 표시하려면 체크 상자를 전환하십시오. - Username field 사용자 이름 필드 - - Toggle notes visible - 메모 표시 여부 전환 - - - Notes: - 메모: - Expiration field 만료 필드 @@ -2865,14 +3294,6 @@ Would you like to correct it? Presets 사전 설정 - - Password: - 암호: - - - URL: - URL: - Url field URL 필드 @@ -2881,18 +3302,10 @@ Would you like to correct it? Download favicon for URL URL의 파비콘 다운로드 - - Title: - 제목: - Title field 제목 필드 - - Username: - 사용자 이름: - Password field 암호 필드 @@ -2901,18 +3314,42 @@ Would you like to correct it? Toggle expiration 만료 여부 전환 - - Expires: - 만료: - - - Tags: - 태그: - Tags list 태그 목록 + + &Username: + 사용자 이름(&U): + + + &Title: + 제목(&T): + + + &Password: + 암호(&P): + + + UR&L: + URL(&L): + + + &Notes: + 메모(&N): + + + Toggle notes visibility + 메모 표시 여부 전환 + + + T&ags: + 태그(&A): + + + &Expires: + 만료 날짜(&E): + EditEntryWidgetSSHAgent @@ -2952,19 +3389,6 @@ Would you like to correct it? Private key 비밀 키 - - External file - 외부 파일 - - - Browser for key file - 키 파일 찾아보기 - - - Browse… - Button for opening file dialog - 찾아보기... - Attachment 첨부 @@ -2981,6 +3405,23 @@ Would you like to correct it? Remove from agent 에이전트에서 삭제 + + External file + 외부 파일 + + + Browser for key file + 키 파일 찾아보기 + + + Browse… + Button for opening file dialog + 찾아보기... + + + Generate + 생성 + Select attachment file 첨부 파일 선택 @@ -3005,6 +3446,10 @@ Would you like to correct it? seconds + + Clear agent + + EditGroupWidget @@ -3016,10 +3461,6 @@ Would you like to correct it? Icon 아이콘 - - Browser Integration - 브라우저 통합 - Properties 속성 @@ -3036,6 +3477,10 @@ Would you like to correct it? Group has unsaved changes 그룹에 저장하지 않은 변경 사항이 있음 + + Browser Integration + 브라우저 통합 + Enable 활성화 @@ -3051,10 +3496,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - 그룹 편집 - These settings affect to the group's behaviour with the browser extension. 이 설정은 브라우저 확장 기능에서 해당 그룹을 처리하는 방법을 변경합니다. @@ -3089,7 +3530,23 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups - 이 그룹과 하위 그룹의 항목을 HTTP 인증에 사용하지 않기 + 이 그룹과 하위 그룹의 항목을 HTTP 인증에 사용하지 않기 전환 + + + Omit WWW subdomain from matching: + 일치할 때 WWW 하위 도메인 제외: + + + Omit WWW subdomain from matching toggle for this and sub groups + 이 그룹과 하위 그룹 항목을 일치할 때 WWW 하위 도메인 제외 + + + Restrict matching to given browser key: + 지정한 브라우저 키로 일치 제한: + + + Restrict matching to given browser key toggle for this and sub groups + 이 그룹과 하위 그룹의 항목을 지정한 브라우저 키로 일치 제한 @@ -3323,10 +3780,6 @@ Supported extensions are: %1. Unable to fetch favicon. 파비콘을 다운로드할 수 없습니다. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - 도구 -> 설정 -> 보안에서 DuckDuckGo 웹 사이트 아이콘 서비스를 활성화할 수 있습니다 - Existing icon selected. 기존 아이콘을 선택했습니다. @@ -3359,6 +3812,10 @@ Supported extensions are: %1. The following icon(s) failed: 다음 아이콘에서 오류가 발생했습니다: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + 프로그램 설정 -> 보안에서 DuckDuckGo 웹사이트 아이콘 서비스를 활성화할 수 있습니다 + EditWidgetProperties @@ -3435,6 +3892,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - 사본 + + Passkey + 패스키 + + + Invalid conversion type: %1 + 잘못된 변환 형식: %1 + + + Invalid conversion syntax: %1 + 잘못된 변환 문법: %1 + + + Invalid regular expression syntax %1 +%2 + 잘못된 정규 표현식 문법 %1 +%2 + EntryAttachments @@ -3443,6 +3918,21 @@ This may cause the affected plugins to malfunction. 파일 "%1"을(를) 열 수 없음 + + EntryAttachmentsDialog + + Form + + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3480,14 +3970,6 @@ This may cause the affected plugins to malfunction. Remove 삭제 - - Rename selected attachment - 선택한 첨부 파일 이름 바꾸기 - - - Rename - 이름 바꾸기 - Open selected attachment 선택한 첨부 파일 열기 @@ -3528,7 +4010,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to overwrite the existing file "%1" with the attachment? - 기존 파일 "%1"의 내용을 첨부 항목으로 덮어 쓰시겠습니까? + 기존 파일 "%1"의 내용을 첨부 항목으로 덮어쓰시겠습니까? Confirm overwrite @@ -3562,12 +4044,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment 첨부 덮어쓰기 확인 - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - 첨부 "%1"이(가) 이미 있습니다. -기존 첨부 항목을 덮어쓰시겠습니까? - Confirm Attachment 첨부 확인 @@ -3602,6 +4078,24 @@ Error: %1 업데이트된 첨부 항목을 저장할 수 없습니다. 오류: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + 첨부 "%1"이(가) 이미 있습니다. +기존 첨부 항목을 덮어쓰시겠습니까? + + + New + + + + Preview + 미리 보기 + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3796,6 +4290,14 @@ Error: %1 Has TOTP TOTP 있음 + + Background Color + 배경색 + + + Group Path + + EntryPreviewWidget @@ -3816,8 +4318,8 @@ Error: %1 암호 - Notes - 메모 + URL + URL Expiration @@ -3836,8 +4338,8 @@ Error: %1 사용자 이름 - URL - URL + Notes + 메모 Advanced @@ -3887,6 +4389,10 @@ Error: %1 Never 하지 않음 + + Double click to copy value + 두 번 클릭하여 값 복사 + Enabled 사용함 @@ -3895,6 +4401,10 @@ Error: %1 Disabled 사용 안함 + + Double click to copy to clipboard + 두 번 클릭하여 클립보드에 복사 + EntryURLModel @@ -3902,6 +4412,10 @@ Error: %1 Invalid URL 잘못된 URL + + Duplicate URL + URL 복제 + EntryView @@ -3917,6 +4431,10 @@ Error: %1 Reset to defaults 기본값으로 복원 + + + %1 entry(s)... + + 항목 %1개... + ExportDialog @@ -4138,6 +4656,193 @@ You can enable the DuckDuckGo website icon service in the security section of th 파비콘 다운로드 중(%1/%2)… + + ImportWizard + + Import Wizard + 가져오기 마법사 + + + + ImportWizardPageReview + + WizardPage + 마법사페이지 + + + Entry count: %1 + 항목 개수: %1 + + + Group + 그룹 + + + Title + 제목 + + + Username + 사용자 이름 + + + Password + 암호 + + + Url + URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + + + + Import File Selection + 가져올 파일 선택 + + + Password: + 암호: + + + Key File: + 키 파일: + + + Browse… + 찾아보기... + + + Import Into: + 다음으로 가져오기: + + + New Database + 새 데이터베이스 + + + No unlocked databases available + 잠금 해제된 데이터베이스가 없음 + + + Existing Database: + 기존 데이터베이스: + + + Import File: + 가져올 파일: + + + Comma Separated Values (.csv) + 쉼표로 구분된 값 (.csv) + + + 1Password Export (.1pux) + 1Password 내보내기 (.1pux) + + + 1Password Vault (.opvault) + 1Password Vault (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 데이터베이스 (.kdb) + + + Open OPVault + OPVault 열기 + + + Select import file + 가져올 파일 선택 + + + All files + 모든 파일 + + + Key files + 키 파일 + + + Select key file + 키 파일 선택 + + + Comma Separated Values + 쉼표로 구분된 값 + + + 1Password Export + 1Password 내보내기 + + + Bitwarden JSON Export + Bitwarden JSON 내보내기 + + + 1Password Vault + 1Password Vault + + + KeePass1 Database + KeePass1 데이터베이스 + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + 명령: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 예제: "sftp user@hostname" 또는 "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + 입력: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4166,7 +4871,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - 인증 정보가 잘못되었습니다. 다시 시도하십시오. + 자격 증명이 잘못되었습니다. 다시 시도하십시오. 같은 오류가 계속 발생한다면 데이터베이스 파일이 손상되었을 수도 있습니다. @@ -4223,7 +4928,7 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - 인증 정보가 잘못되었습니다. 다시 시도하십시오. + 자격 증명이 잘못되었습니다. 다시 시도하십시오. 같은 오류가 계속 발생한다면 데이터베이스 파일이 손상되었을 수도 있습니다. @@ -4572,17 +5277,6 @@ Line %2, column %3 비밀 키를 열 수 없음 - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass1 데이터베이스 가져오기 - - - Unable to open the database. - 데이터베이스를 열 수 없습니다. - - KeePass1Reader @@ -4645,7 +5339,7 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - 인증 정보가 잘못되었습니다. 다시 시도하십시오. + 자격 증명이 잘못되었습니다. 다시 시도하십시오. 같은 오류가 계속 발생한다면 데이터베이스 파일이 손상되었을 수도 있습니다. @@ -4939,10 +5633,6 @@ Are you sure you want to continue with this file? &Recent Databases 최근 데이터베이스(&R) - - &Import - 가져오기(&I) - &Export 내보내기(&E) @@ -4963,6 +5653,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + 태그 + &Groups 그룹(&G) @@ -5007,34 +5701,18 @@ Are you sure you want to continue with this file? &New Database… 새 데이터베이스(&N)... - - Create a new database - 새 데이터베이스 만들기 - &Merge From Database… 데이터베이스에서 합치기(&M)... - - Merge from another KDBX database - 다른 KDBX 데이터베이스에서 합치기 - &New Entry… 새 항목(&N)... - - Add a new entry - 새 항목 추가하기 - &Edit Entry… 항목 편집(&E)... - - View or edit entry - 항목을 보거나 편집하기 - &Delete Entry… 항목 삭제(&D)... @@ -5043,10 +5721,6 @@ Are you sure you want to continue with this file? &New Group… 새 그룹(&N)... - - Add a new group - 새 그룹 추가하기 - &Edit Group… 그룹 편집(&E)... @@ -5079,18 +5753,10 @@ Are you sure you want to continue with this file? Database &Reports… 데이터베이스 보고서(&R)… - - Statistics, health check, etc. - 통계, 안전성 검사 등. - &Database Settings… 데이터베이스 설정(&D)... - - Database settings - 데이터베이스 설정 - &Clone Entry… 항목 복제(&C)... @@ -5099,34 +5765,18 @@ Are you sure you want to continue with this file? Move u&p 위로 이동(&P) - - Move entry one step up - 한 단계 위로 항목 이동 - Move do&wn 아래로 이동(&W) - - Move entry one step down - 한 단계 아래로 항목 이동 - Copy &Username 사용자 이름 복사(&U) - - Copy username to clipboard - 클립보드에 사용자 이름 복사 - Copy &Password 암호 복사(&P) - - Copy password to clipboard - 클립보드에 암호 복사 - &Settings 설정(&S) @@ -5160,25 +5810,13 @@ Are you sure you want to continue with this file? 제목(&T) - Copy title to clipboard - 클립보드에 제목 복사 - - - &URL - URL(&U) - - - Copy URL to clipboard - 클립보드에 URL 복사 + Copy &URL + URL 복사(&U) &Notes 메모(&N) - - Copy notes to clipboard - 클립보드에 메모 복사 - &CSV File… CSV 파일(&C)... @@ -5191,26 +5829,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 데이터베이스... - - Import a KeePass 1 database - KeePass 1 데이터베이스 가져오기 - 1Password Vault… 1Password Vault... - - Import a 1Password Vault - 1Password Vault 가져오기 - CSV File… CSV 파일... - - Import a CSV file - CSV 파일 가져오기 - Show TOTP TOTP 표시 @@ -5227,6 +5853,10 @@ Are you sure you want to continue with this file? Copy &TOTP TOTP 복사(&T) + + Copy Password and TOTP + 암호와 TOTP 복사 + E&mpty recycle bin 휴지통 비우기(&M) @@ -5251,10 +5881,6 @@ Are you sure you want to continue with this file? &Online Help 온라인 도움말(&O) - - Go to online documentation - 온라인 문서로 이동 - &User Guide 사용자 가이드(&U) @@ -5299,6 +5925,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) 고전(플랫폼 네이티브) + + Show Menubar + 메뉴 표시줄 표시 + Show Toolbar 도구 모음 표시 @@ -5323,6 +5953,10 @@ Are you sure you want to continue with this file? Clone Group... 그룹 복제... + + &XML File… + XML 파일(&X)... + Clear history 과거 기록 삭제 @@ -5350,10 +5984,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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를 화상 키보드와 사용했을 때 충돌할 수 있습니다. -다운로드 페이지에 있는 AppImage 사용을 추천합니다. + No Tags + 태그 없음 Restore Entry(s) @@ -5383,6 +6015,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC KeePassXC 끝내기 + + %1 Entry(s) + 항목 %1개 + Please present or touch your YubiKey to continue… 계속 진행하려면 YubiKey를 연결하거나 버튼을 누르십시오... @@ -5395,6 +6031,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? 이 설정을 적용하려면 프로그램을 다시 시작해야 합니다. 지금 다시 시작하시겠습니까? + + Allow Screen Capture + 화면 캡처 허용 + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + 1Password 1PUX 파일 가져오기 + + + Import… + 가져오기… + + + Passkeys… + 패스키… + + + Import Passkey + 패스키 가져오기 + + + Remote S&ync… + 원격 동기화(&Y)… + + + Quit Application + 프로그램 끝내기 + + + Open About Dialog + 정보 대화 상자 열기 + + + Open Database + 데이터베이스 열기 + + + Create Database + 데이터베이스 만들기 + + + Merge From Database + 데이터베이스에서 합치기 + + + Create Entry + 항목 만들기 + + + Edit Entry + 항목 편집 + + + Delete Entry + 항목 삭제 + + + Create Group + 그룹 만들기 + + + Edit Group + 그룹 편집 + + + Delete Group + 그룹 삭제 + + + Download All Favicons + 모든 파비콘 다운로드 + + + Sort Groups A-Z + 그룹 가나다순 정렬 + + + Sort Groups Z-A + 그룹 가나다 역순 정렬 + + + Save Database As + 다른 이름으로 데이터베이스 저장 + + + Show Database Security + 데이터베이스 보안 표시 + + + Show Database Reports + 데이터베이스 보고서 표시 + + + Show Database Settings + 데이터베이스 설정 표시 + + + Show Passkeys + Passkey 표시 + + + Clone Entry + 항목 복제 + + + Move Entry Up + 항목 위로 이동 + + + Move Entry Down + 항목 아래로 이동 + + + Copy Username + 사용자 이름 복사 + + + Copy Password + 암호 복사 + + + Show Application Settings + 프로그램 설정 표시 + + + Show Password Generator + 암호 생성기 표시 + + + Remove Passkey From Entry + 항목에서 패스키 삭제 + + + Perform Auto-Type: {USERNAME} + 자동 입력 실행: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + 자동 입력 실행: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + 자동 입력 실행: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + 자동 입력 실행: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + 자동 입력 실행: {TOTP} + + + Copy Title + 제목 복사 + + + Copy URL + URL 복사 + + + Copy Notes + 메모 복사 + + + Export to CSV + CSV로 내보내기 + + + Export to HTML + HTML로 내보내기 + + + Import KeePass1 Database + KeePass1 데이터베이스 가져오기 + + + Import 1Password Vault + 1Password Valut에서 가져오기 + + + Import CSV File + CSV 파일 가져오기 + + + Show TOTP QR Code + TOTP QR 코드 표시 + + + Set up TOTP + TOTP 설정 + + + Empty Recycle Bin + 휴지통 비우기 + + + Open Donation Website + 기부 웹사이트 열기 + + + Open Bug Report + 버그 보고 열기 + + + Open Online Documentation + 온라인 문서 열기 + + + Open Keyboard Shortcuts Guide + 키보드 단축키 도움말 열기 + + + Save Database Backup + 데이터베이스 백업 저장 + + + SSH Agent: Add Key + SSH 에이전트: 키 추가 + + + SSH Agent: Remove Key + SSH 에이전트: 키 삭제 + + + Toggle Compact Mode + 축소 모드 전환 + + + Set Theme: Automatic + 테마 설정: 자동 + + + Set Theme: Light + 테마 설정: 밝음 + + + Set Theme: Dark + 테마 설정: 어두움 + + + Set Theme: Classic + 테마 설정: 고전 + + + Toggle Show Menubar + 메뉴 표시줄 표시 전환 + + + Toggle Show Toolbar + 도구 모음 표시 전환 + + + Toggle Show Preview Panel + 미리 보기 패널 표시 전환 + + + Toggle Always on Top + 항상 위 전환 + + + Toggle Hide Usernames + 사용자 이름 숨기기 전환 + + + Toggle Hide Passwords + 암호 숨기기 전환 + + + Export to XML + XML로 내보내기 + + + Toggle Allow Screen Capture + 화면 캡처 허용 전환 + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + 원격 동기화 설정… + + + Password Generator + 암호 생성기 + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5452,26 +6396,6 @@ We recommend you use the AppImage available on our downloads page. 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]에서 동기화하는 중 @@ -5531,24 +6455,16 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. 데이터베이스 암호화 설정을 변경할 수 있습니다. 나중에 데이터베이스 설정에서도 변경할 수 있습니다. - - Advanced Settings - 고급 설정 - - - Simple Settings - 간단한 설정 - NewDatabaseWizardPageDatabaseKey Database Credentials - 데이터베이스 인증 정보 + 데이터베이스 자격 증명 A set of credentials known only to you that protects your database. - 나만 알고 있는 데이터베이스를 보호할 인증 정보입니다. + 나만 알고 있는 데이터베이스를 보호할 자격 증명입니다. @@ -5573,6 +6489,25 @@ We recommend you use the AppImage available on our downloads page. 새 데이터베이스 표시 이름과 추가 설명(선택)을 입력하십시오: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + 첨부 항목 저장 + + + New entry attachment + + + NixUtils @@ -5619,15 +6554,6 @@ We recommend you use the AppImage available on our downloads page. 평문 문자열 %1바이트가 필요하지만 %2바이트를 받음 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - 데이터베이스 읽기 명령이 인스턴스를 반환하지 않음 -%1 - - OpVaultReader @@ -5701,6 +6627,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 알 수 없는 암호화: %1 + + AES-256/GCM is currently not supported + AES-256/GCM은 현재 지원하지 않음 + Passphrase is required to decrypt this key 이 키를 복호화하려면 암호가 필요함 @@ -5765,28 +6695,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key 비밀 키를 기록하는 중 예상하지 못한 곳에서 파일이 끝남 + + (encrypted) + (암호화됨) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - 암호가 일치하지 않음 + SSH Key Generator + SSH 키 생성기 - Passwords match so far - 암호가 일치함 + Type + 형식 - Toggle Password (%1) - 암호 표시/숨기기(%1) + Bits + 비트 - Generate Password (%1) - 암호 생성(%1) + Comment + 주석 + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - 패스키 내보내기 - Warning: Caps Lock enabled! - 경고: Caps Lock이 켜져 있습니다 + Filenames will be generated with title and .passkey file extension. + 파일 이름은 제목과 .passkey 파일 확장자로 생성됩니다. + + + Export entries + 항목 내보내기 + + + Export Selected + 선택 내보내기 + + + Cancel + 취소 + + + Export to folder + 폴더로 내보내기 + + + Export the following passkey entries. + 지정한 패스키 항목을 내보냅니다. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: 패스키 내보내기 + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + "%1.passkey" 파일이 이미 존재합니다. +덮어쓰시겠습니까? + + + + Cannot open file + 파일을 열 수 없음 + + + Cannot open file "%1" for writing. + "%1" 파일에 쓰기 위해 열 수 없음 + + + Cannot write to file + 파일에 쓸 수 없음 + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - 패스키 가져오기 + + + Username: %1 + 사용자 이름: %1 + + + Group + 그룹 + + + Database + 데이터베이스 + + + Import Passkey + 패스키 가져오기 + + + Import + 가져오기 + + + Cancel + 취소 + + + Entry + 항목 + + + Create new entry + 새 항목 만들기 + + + Relying Party: %1 + 의존하는 상대방: %1 + + + Import the following passkey: + 다음 패스키 가져오기: + + + Import the following passkey to this entry: + 이 항목으로 다음 패스키 가져오기: + + + Default passkeys group (Imported Passkeys) + 기본 패스키 그룹(가져온 패스키) + + + + PasskeyImporter + + Passkey file + 패스키 파일 + + + All files + 모든 파일 + + + Cannot open file + 파일을 열 수 없음 + + + Cannot open file "%1" for reading. + "%1" 파일에서 읽기 위해 열 수 없습니다. + + + Open passkey file + 패스키 파일 열기 + + + Cannot import passkey + 패스키를 가져올 수 없음 + + + Cannot import passkey file "%1". Data is missing. + 패스키 파일 "%1"을(를) 열 수 없습니다. 데이터가 빠져 있습니다. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + 패스키 파일 "%1"을(를) 가져올 수 없습니다. +다음 데이터가 빠졌습니다: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + 패스키 파일 "%1"을(를) 가져올 수 없습니다. 개인 키가 빠졌거나 잘못되었습니다. @@ -5967,10 +7053,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: 다음에서도 선택: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - 제외할 글자: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters 비슷하게 생긴 문자 제외 @@ -5995,10 +7077,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: 단어 개수: - - Character Count: - 글자 수: - Word Case: 대소문자: @@ -6011,10 +7089,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist 사용자 정의 단어 목록 추가 - - character - 글자 - Close 닫기 @@ -6051,6 +7125,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit 엔트로피: %1비트 + + Password Quality: %1 + 암호 강도: %1 + + + Poor + Password quality + 매우 약함 + + + Weak + Password quality + 약함 + + + Good + Password quality + 좋음 + + + Excellent + Password quality + 매우 좋음 + Confirm Delete Wordlist 단어 목록 삭제 확인 @@ -6098,8 +7196,47 @@ Do you want to overwrite it? 특수 문자 - Password Quality: %1 - 암호 강도: %1 + passwordLength + 암호 길이 + + + Characters: %1 + 글자 수: %1 + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + 암호가 일치하지 않음 + + + Passwords match so far + 암호가 일치함 + + + Toggle Password (%1) + 암호 표시/숨기기(%1) + + + Generate Password (%1) + 암호 생성(%1) + + + Warning: Caps Lock enabled! + 경고: Caps Lock이 켜져 있습니다 + + + Quality: %1 + 품질: %1 Poor @@ -6121,6 +7258,10 @@ Do you want to overwrite it? Password quality 매우 좋음 + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Ctrl+H 키를 사용하여 암호 표시 여부를 전환하십시오. Ctrl+G 키를 사용하여 암호 생성기를 여십시오. + PickcharsDialog @@ -6137,6 +7278,21 @@ Do you want to overwrite it? 글자를 입력할 때마다 Tab 키 누르기(&T) + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6153,7 +7309,7 @@ Do you want to overwrite it? Empty - 비어 있음 + 삭제 Remove @@ -6175,6 +7331,10 @@ Do you want to overwrite it? Continue 계속 + + Continue with weak password + 약한 암호로 계속 + QObject @@ -6568,6 +7728,10 @@ Do you want to overwrite it? Too many arguments provided. 인자가 너무 많습니다. + + Path of the database. + 데이터베이스의 경로입니다. + Target decryption time in MS for the database. 밀리초 단위 데이터베이스 복호화 목표 시간입니다. @@ -6588,10 +7752,6 @@ Do you want to overwrite it? Create a new database. 새 데이터베이스를 만듭니다. - - Path of the database. - 데이터베이스의 경로입니다. - Invalid decryption time %1. 잘못된 복호화 시간: %1. @@ -6636,6 +7796,158 @@ Do you want to overwrite it? Successfully created new database. 새 데이터베이스를 만들었습니다. + + Unset the password for the database. + 데이터베이스 암호를 설정 해제했습니다. + + + Unset the key file for the database. + 데이터베이스 키 파일을 설정 해제했습니다. + + + Edit a database. + 데이터베이스를 편집합니다. + + + Cannot use %1 and %2 at the same time. + %1와(과) %2을(를) 동시에 사용할 수 없습니다. + + + Could not change the database key. + 데이터베이스 키를 변경할 수 없습니다. + + + Database was not modified. + 데이터베이스가 수정되지 않았습니다. + + + Writing the database failed: %1 + 데이터베이스에기록할 수 없음: %1 + + + Successfully edited the database. + 데이터베이스를 편집했습니다. + + + Cannot remove password: The database does not have a password. + 암호를 삭제할 수 없음: 데이터베이스에 암호가 설정되어 있지 않습니다. + + + Cannot remove file key: The database does not have a file key. + 키를 삭제할 수 없음: 데이터베이스에 파일 키가 설정되어 있지 않습니다. + + + Loading the new key file failed: %1 + 새 키 파일 불러오기 실패: %1 + + + Found unexpected Key type %1 + 예상하지 못한 키 형식 %1 + + + Cannot remove all the keys from a database. + 데이터베이스에서 모든 키를 삭제할 수 없습니다. + + + Show a database's information. + 데이터베이스 정보를 표시합니다. + + + UUID: + UUID: + + + Name: + 이름: + + + Description: + 설명: + + + Cipher: + 암호화: + + + KDF: + KDF: + + + Recycle bin is enabled. + 휴지통이 활성화되었습니다. + + + Recycle bin is not enabled. + 휴지통이 비활성화되었습니다. + + + Location + 위치 + + + Database created + 데이터베이스 생성됨 + + + Last saved + 마지막 저장 + + + Unsaved changes + 저장하지 않은 변경 사항 + + + yes + + + + no + 아니요 + + + Number of groups + 그룹 개수 + + + Number of entries + 항목 개수 + + + Number of expired entries + 내보낸 항목 개수 + + + Unique passwords + 중복되지 않는 암호 + + + Non-unique passwords + 중복된 암호 + + + Maximum password reuse + 최대 암호 재사용 + + + Number of short passwords + 짧은 암호 개수 + + + Number of weak passwords + 약한 암호 개수 + + + Entries excluded from reports + 보고서에서 제외된 항목 + + + Average password length + 평균 암호 길이 + + + %1 characters + %1자 + Word count for the diceware passphrase. 주사위 암호 단어 개수입니다. @@ -6659,10 +7971,6 @@ Do you want to overwrite it? Invalid word count %1 잘못된 단어 개수 %1 - - The word list is too small (< 1000 items) - 단어 목록이 너무 작음(1000개 미만) - Title for the entry. 항목의 제목입니다. @@ -6687,10 +7995,6 @@ Do you want to overwrite it? Enter new password for entry: 항목의 새로운 암호 입력: - - Writing the database failed: %1 - 데이터베이스에기록할 수 없음: %1 - Successfully edited entry %1. 항목 %1을(를) 편집했습니다. @@ -6811,10 +8115,6 @@ Do you want to overwrite it? Exit interactive mode. 대화형 모드를 종료합니다. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - 내보낼 때 사용할 형식입니다. 'xml', 'csv'를 사용할 수 있으며 기본값은 'xml'입니다. - Exports the content of a database to standard output in the specified format. 데이터베이스 내용을 지정한 형식으로 표준 출력으로 내보냅니다. @@ -6915,106 +8215,6 @@ Do you want to overwrite it? Successfully imported database. 데이터베이스를 가져왔습니다. - - Show a database's information. - 데이터베이스 정보를 표시합니다. - - - UUID: - UUID: - - - Name: - 이름: - - - Description: - 설명: - - - Cipher: - 암호화: - - - KDF: - KDF: - - - Recycle bin is enabled. - 휴지통이 활성화되었습니다. - - - Recycle bin is not enabled. - 휴지통이 비활성화되었습니다. - - - Location - 위치 - - - Database created - 데이터베이스 생성됨 - - - Last saved - 마지막 저장 - - - Unsaved changes - 저장하지 않은 변경 사항 - - - yes - - - - no - 아니요 - - - Number of groups - 그룹 개수 - - - Number of entries - 항목 개수 - - - Number of expired entries - 내보낸 항목 개수 - - - Unique passwords - 중복되지 않는 암호 - - - Non-unique passwords - 중복된 암호 - - - Maximum password reuse - 최대 암호 재사용 - - - Number of short passwords - 짧은 암호 개수 - - - Number of weak passwords - 약한 암호 개수 - - - Entries excluded from reports - 보고서에서 제외된 항목 - - - Average password length - 평균 암호 길이 - - - %1 characters - %1자 - Unknown command %1 알 수 없는 명령 %1 @@ -7063,7 +8263,7 @@ Available commands: Use the same credentials for both database files. - 두 데이터베이스 파일에 같은 인증 정보를 사용합니다. + 두 데이터베이스 파일에 같은 자격 증명을 사용합니다. Key file of the database to merge from. @@ -7187,6 +8387,10 @@ Available commands: Show the protected attributes in clear text. 보호된 속성을 평문으로 표시합니다. + + Show all the attributes of the entry. + 항목의 모든 속성을 표시합니다. + Show the attachments of the entry. 항목의 첨부를 표시합니다. @@ -7257,6 +8461,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 잘못된 YubiKey 일련 번호 %1 + + Please present or touch your YubiKey to continue. + 계속 진행하려면 YubiKey를 연결하거나 버튼을 누르십시오... + Enter password to encrypt database (optional): 데이터베이스를 암호화할 암호 입력(선택 사항): @@ -7444,8 +8652,8 @@ CPU 아키텍처: %2 %1분 - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan 라이브러리의 최소 필요 버전은 2.11.x이지만 %1.%2.%3 버전이 설치되어 있음 + Botan library must be at least %1, found %2.%3.%4 + Botan 라이브러리의 최소 필요 버전은 %1이지만 %2.%3.%4 버전이 설치되어 있음 Cryptographic libraries: @@ -7457,7 +8665,7 @@ CPU 아키텍처: %2 Argon2%1 (%2 rounds, %3 KB) - Argon2%1(%2회, %3 KB) + Argon2%1(%2라운드, %3 KB) SymmetricCipher::init: Invalid cipher mode. @@ -7495,18 +8703,6 @@ CPU 아키텍처: %2 file empty 파일이 비어 있음 - - malformed string - 잘못된 문자열 - - - missing closing quote - 닫는 따옴표 없음 - - - %1: (row, col) %2,%3 - %1: (줄, 칸) %2, %3 - AES 256-bit AES 256비트 @@ -7685,14 +8881,6 @@ CPU 아키텍처: %2 read password of the database from stdin 표준 입력에서 데이터베이스 암호 읽기 - - allow app screen recordering and screenshots - 앱 화면 녹화와 스크린샷 허용 - - - Locked databases. - 데이터베이스를 잠갔습니다. - Database failed to lock. 데이터베이스를 잠글 수 없습니다. @@ -7701,6 +8889,10 @@ CPU 아키텍처: %2 Another instance of KeePassXC is already running. 다른 KeePassXC 인스턴스가 이미 실행 중입니다. + + KeePassXC is not running. No open database to lock + KeePassXC가 실행 중이 아닙니다. 잠글 데이터베이스가 열리지 않았음 + Fatal error while testing the cryptographic functions. 암호화 함수를 시험하는 중 오류가 발생하였습니다. @@ -7709,10 +8901,6 @@ CPU 아키텍처: %2 KeePassXC - Error KeePassXC - 오류 - - Warning: Failed to prevent screenshots on a top level window! - 경고: 최상위 수준 창의 스크린샷 캡처 방지를 설정할 수 없습니다! - Database password: 데이터베이스 암호: @@ -7729,16 +8917,320 @@ CPU 아키텍처: %2 Failed to create Windows Hello credential. - Windows Hello 인증 정보를 생성할 수 없습니다. + Windows Hello 자격 증명을 생성할 수 없습니다. Failed to sign challenge using Windows Hello. Windows Hello로 Challenge를 서명할 수 없습니다. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + 경고: 최상위 창의 화면 캡처를 차단할 수 없습니다. + + + Invalid Cipher + 잘못된 암호화 + + + Invalid KDF + 잘못된 KDF + + + Access to all entries is denied + 모든 항목 접근이 거부됨 + + + allow screenshots and app recording (Windows/macOS) + 스크린샷과 앱 녹화 허용(Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + 데이터베이스의 키 파일을 선택합니다. +이 옵션은 삭제될 예정입니다. --set-key-file 옵션을 대신 사용하십시오. + + + Databases have been locked. + 데이터베이스가 잠겼습니다. + + + Attestation not supported + 증명을 지원하지 않음 + + + Credential is excluded + 자격 증명이 제외됨 + + + Passkeys request canceled + 패스키 요청 취소됨 + + + Invalid user verification + 잘못된 사용자 검증 + + + Empty public key + 공개 키가 비어 있음 + + + Invalid URL provided + 잘못된 URL 지정됨 + + + Passkeys + 패스키 + + + AES initialization failed + AES 초기화 실패 + + + AES encrypt failed + AES 암호화 실패 + + + Failed to store in Linux Keyring + 리눅스 키링에 저장할 수 없음 + + + Polkit returned an error: %1 + Polkit에서 오류를 반환함: %1 + + + Could not locate key in keyring + 키링에서 키를 찾을 수 없음 + + + Could not read key in keyring + 키링에서 키를 읽을 수 없음 + + + AES decrypt failed + AES 복호화 실패 + + + No Polkit authentication agent was available + Polkit 인증 에이전트를 사용할 수 없음 + + + Polkit authorization failed + Polkit 인증 실패 + + + No Quick Unlock provider is available + 빠른 잠금 해제 공급자를 사용할 수 없음 + + + Failed to init KeePassXC crypto. + KeePassXC 암호화를 초기화할 수 없습니다. + + + Failed to encrypt key data. + 키 데이터를 암호화할 수 없습니다. + + + Failed to get Windows Hello credential. + Windows Hello 자격 증명을 가져올 수 없습니다. + + + Failed to decrypt key data. + 키 데이터를 복호화할 수 없습니다. + + + Origin is empty or not allowed + 원본이 비어 있거나 허용되지 않음 + + + Effective domain is not a valid domain + 유효 도메인이 올바른 도메인이 아님 + + + Origin and RP ID do not match + 원본과 RP ID가 일치하지 않음 + + + No supported algorithms were provided + 지원하는 알고리즘을 제시하지 않았음 + + + Wait for timer to expire + 타이머 만료 대기 중 + + + Challenge is shorter than required minimum length + Challenge가 필요한 최소 길이보다 짧음 + + + user.id does not match the required length + user.id가 필요한 길이와 일치하지 않음 + + + Favorite + Tag for favorite entries + 책갈피 + + + File does not exist. + 파일이 존재하지 않습니다. + + + Cannot open file: %1 + 파일을 열 수 없음: %1 + + + Cannot parse file: %1 at position %2 + 파일을 해석할 수 없음: %1, 위치 %2 + + + Failed to decrypt json file: %1 + JSON 파일을 복호화할 수 없음: %1 + + + Invalid encKeyValidation field + 잘못된 encKeyValidation 필드 + + + Invalid cipher list within encKeyValidation field + encKeyValidation 필드에 잘못된 암호화 목록이 있음 + + + Wrong password + 암호가 잘못됨 + + + Invalid encrypted data field + 잘못된 암호화된 데이터 필드 + + + Invalid cipher list within encrypted data field + 암호화된 데이터 필드에 잘못된 암호화 목록이 있음 + + + Cannot initialize cipher + 암호화를 초기화할 수 없음 + + + Cannot decrypt data + 데이터를 복호화할 수 없음 + + + Bitwarden Import + Bitwarden 가져오기 + + + Archived + Tag for archived entries + 보관됨 + + + Invalid 1PUX file format: Not a valid ZIP file. + 잘못된 1PUX 파일 형식: 올바른 ZIP 파일이 아닙니다. + + + Invalid 1PUX file format: Missing export.data + 잘못된 1PUX 파일 형식: export.data 파일이 없음 + + + 1Password Import + 1Password 가져오기 + + + Enter Shortcut + 단축키 입력 + + + Action + 동작 + + + Shortcuts + 단축키 + + + Unknown passkeys error + 알 수 없는 패스키 오류 + + + Invalid KDF iterations, cannot decrypt json file + 잘못된 KDF 반복 횟수, JSON 파일을 복호화할 수 없음 + + + Unsupported format, ensure your Bitwarden export is password-protected + 지원하지 않는 형식, Bitwarden 내보내기 파일이 암호로 보호되었는지 확인하십시오 + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + PBKDF와 Argon2만 지원함, JSON 파일을 복호화할 수 없음 + + + Reset Shortcuts + 단축키 초기화 + + + Double click an action to change its shortcut + 동작을 두 번 클릭해서 단축키 변경 + + + Filter... + 필터... + + + Shortcut Conflict + 단축키 충돌 + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + %1 단축키가 '%2'와(과) 충돌합니다. 단축키를 덮어쓰시겠습니까? + + + Cannot generate valid passphrases because the wordlist is too short + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + 플러그인 데이터를 삭제하시겠습니까? + + + Delete plugin data from Entry(s)? + + + + Passkey + 패스키 + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + 태그 + QtIOCompressor @@ -7774,20 +9266,39 @@ CPU 아키텍처: %2 내부 zlib 오류: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + `%1` 명령이 시간 내에 완료되지 않았습니다. 프로세스가 종료되었습니다. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + 병합된 데이터베이스를 업로드하지 못했습니다. `%1` 명령이 시간 내에 완료되지 않았습니다. 프로세스가 종료되었습니다. + + + Invalid download parameters provided. + 잘못된 다운로드 인자가 지정되었습니다. + + + Command `%1` failed to download database. + `%1` 명령으로 데이터베이스를 다운로드하지 못했습니다. + + + Invalid database pointer or upload parameters provided. + 잘못된 데이터베이스 포인터나 업로드 인자가 지정되었습니다. + + + Command `%1` exited with status code: %2 + `%1` 명령이 종료되면서 다음 상태 코드를 반환함: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + 병합된 데이터베이스를 업로드하지 못했습니다. `%1` 명령이 다음 상태 코드를 반환함: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - 보고서에서 만료된 항목 제외 - - - Show only entries which have URL set - URL이 지정된 항목만 표시 - - - Show only entries which have browser settings in custom data - 사용자 정의 데이터에 브라우저 설정이 있는 항목만 표시 - Double-click entries to edit. 항목을 두 번 클릭하면 편집할 수 있습니다. @@ -7852,44 +9363,53 @@ CPU 아키텍처: %2 Exclude from reports 보고서에서 제외 + + Expire Entry(s)… + + + + Only show entries that have a URL + URL이 있는 항목만 표시 + + + Only show entries that have been explicitly allowed or denied + 명시적으로 허용되었거나 거부된 항목만 표시 + + + Show expired entries + 만료된 항목 표시 + + + (Expired) + (만료됨) + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - 보고서에서 만료된 항목 제외 + Show expired entries + 만료된 항목 표시 - Also show entries that have been excluded from reports - 보고서에서 제외된 항목도 표시 + (Expired) + (만료됨) Hover over reason to show additional details. Double-click entries to edit. 이유 위에 마우스를 올려 두면 자세한 정보를 표시합니다. 항목을 두 번 클릭하면 편집할 수 있습니다. - - Bad - Password quality - 나쁨 - Bad — password must be changed 나쁨 — 암호를 변경해야 함 - - Poor - Password quality - 매우 약함 - Poor — password should be changed 매우 약함 — 암호 변경을 고려해야 함 - - Weak - Password quality - 약함 - Weak — consider changing the password 약함 — 암호 변경을 권장함 @@ -7938,6 +9458,14 @@ CPU 아키텍처: %2 Exclude from reports 보고서에서 제외 + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + 보고서에서 제외된 항목 표시 + ReportsWidgetHibp @@ -8033,6 +9561,77 @@ CPU 아키텍처: %2 Exclude from reports 보고서에서 제외 + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + 내보내기 + + + Import + 가져오기 + + + List of entry URLs + 항목 URL 목록 + + + Title + 제목 + + + Path + 경로 + + + Username + 사용자 이름 + + + URLs + URL + + + Edit Entry… + 항목 편집… + + + Delete Entry(s)… + 항목 삭제... + + + Relying Party + 의존하는 상대방 + + + Show expired entries + 만료된 항목 표시 + + + (Expired) + (만료됨) + + + Export Confirmation + 내보내기 확인 + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + 패스키 파일을 안전하게 보존하지 않으면 탈취 및 인증되지 않은 사용에 취약해질 수 있습니다. 계속 진행하시겠습니까? + + + Please wait, list of entries with passkeys is being updated… + 잠시 기다려 주십시오. 패스키가 있는 항목을 업데이트하는 중… + + + No entries with passkeys. + 패스키가 있는 항목이 없습니다. + ReportsWidgetStatistics @@ -8207,6 +9806,14 @@ CPU 아키텍처: %2 No agent running, cannot list identities. 에이전트가 실행 중이지 않아서 식별자 목록을 표시할 수 없습니다. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8273,6 +9880,10 @@ CPU 아키텍처: %2 Search Help 검색 도움말 + + Save Search + 검색 저장 + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8347,34 +9958,10 @@ CPU 아키텍처: %2 Confirm when passwords are retrieved by clients 클라이언트에서 암호를 가져갈 때 확인 - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">이 설정은 - 휴지통에 버리기 알림을 재정의하지 않습니다</span></p></body></html> - - Confirm when clients request entry deletion 클라이언트에서 항목 삭제를 요청할 때 확인 - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>이 설정은 데이터베이스 잠금을 먼저 해제하지 않고 - 암호를 검색하는 일부 프로그램과의 호환성을 개선합니다.</p><p>한편 이 설정을 활성화하면 - 지정한 시간 제한 내에 데이터베이스 잠금을 해제할 수 없을 때 클라이언트가 충돌할 수도 있습니다.(대개 25초이나, - 프로그램에서 다른 값을 지정할 수도 있습니다.)</p></body></html> - - Prompt to unlock database before searching 검색 전에 데이터베이스 잠금 해제 묻기 @@ -8399,6 +9986,14 @@ CPU 아키텍처: %2 Save current changes to activate the plugin and enable editing of this section. 플러그인을 활성화하고 이 부분 편집을 활성화하려면 변경 사항을 저장하십시오. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>이 설정은 휴지통 프롬프트 비활성화를 재정의하지 않습니다 </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>이 옵션은 데이터베이스의 잠금을 해제하지 않고 암호를 검색하는 프로그램과의 호환성을 개선합니다.</p><p>그러나 이 옵션을 사용하면 데이터베이스가 지정한 시간 내에 잠금 해제될 수 없을 때 클라이언트를 충돌시킬 수도 있습니다.(대개 25초, 프로그램에 따라서 다른 설정을 사용할 수도 있음) </p></body></html> + SettingsWidgetKeeShare @@ -8507,8 +10102,12 @@ CPU 아키텍처: %2 TagModel - All - 모두 + Clear Search + 검색 비우기 + + + All Entries + 모든 항목 Expired @@ -8519,6 +10118,25 @@ CPU 아키텍처: %2 약한 암호 + + TagView + + Remove Search + 검색 삭제 + + + Remove Tag + 태그 삭제 + + + Confirm Remove Tag + 태그 삭제 확인 + + + Remove tag "%1" from all entries in this database? + 이 데이터베이스에 있는 모든 항목에서 "%1" 태그를 삭제하시겠습니까? + + TotpDialog @@ -8676,26 +10294,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database KeePassXC 데이터베이스에 암호를 안전하게 저장하십시오 - - Create new database - 새 데이터베이스 만들기 - - - Open existing database - 기존 데이터베이스 열기 - - - Import from KeePass 1 - KeePass 1에서 가져오기 - - - Import from 1Password - 1Password에서 가져오기 - - - Import from CSV - CSV에서 가져오기 - Recent databases 최근 데이터베이스 @@ -8708,6 +10306,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 KeePassXC %1에 오신 것을 환영합니다 + + Create Database + 데이터베이스 만들기 + + + Open Database + 데이터베이스 열기 + + + Import File + 파일 가져오기 + WinUtils @@ -8724,31 +10334,8 @@ Example: JBSWY3DPEHPK3PXP 전역 단축키를 등록할 수 없음 - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC 암호화를 초기화할 수 없습니다. - - - Failed to encrypt key data. - 키 데이터를 암호화할 수 없습니다. - - - Failed to get Windows Hello credential. - Windows Hello 인증 정보를 가져올 수 없습니다. - - - Failed to decrypt key data. - 키 데이터를 복호화할 수 없습니다. - - YubiKey - - %1 No interface, slot %2 - %1 인터페이스 없음, 슬롯 %2 - General: 일반: @@ -8760,14 +10347,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - 하드웨어 토큰 새로 고침 - - - Refresh - 새로 고침 - Hardware key slot selection 하드웨어 키 슬롯 선택 @@ -8800,10 +10379,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Challenge-Response 설정됨, 클릭해서 변경하거나 삭제 - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p><a href="https://www.yubico.com/">YubiKey</a>나 <a href="https://onlykey.io">OnlyKey</a>를 가지고 있다면 추가 보안에 사용할 수 있습니다.</p><p>장치 슬롯 중 하나를 <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response 모드</a>로 프로그래밍해야 합니다.</p> - Detecting hardware keys… 하드웨어 키 인식 중... @@ -8812,28 +10387,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected 인식된 하드웨어 키 없음 - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 잘못된 슬롯 지정됨 - %2 + Refresh hardware keys + 하드웨어 키 새로 고침 + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - 슬롯 %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC 인터페이스가 초기화되지 않았습니다. - - Hardware key is currently in use. - 하드웨어 키가 사용 중입니다. - Could not find or access hardware key with serial number %1. Please present it to continue. 일련 번호가 %1인 하드웨어 키를 찾을 수 없거나 접근할 수 없습니다. 계속 진행하려면 연결하십시오. @@ -8850,6 +10422,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Challenge-Response를 완료할 수 없습니다. PCSC 오류 코드: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - 슬롯 %3, %4 + + + Press + USB Challenge-Response Key interaction request + 누르기 + + + Passive + USB Challenge-Response Key no interaction required + 수동적 + YubiKeyInterfaceUSB @@ -8857,14 +10444,6 @@ Example: JBSWY3DPEHPK3PXP Unknown 알 수 없음 - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] 설정된 슬롯 - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Response - 슬롯 %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8879,10 +10458,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB 인터페이스가 초기화되지 않았습니다. - - Hardware key is currently in use. - 하드웨어 키가 사용 중입니다. - Could not find hardware key with serial number %1. Please plug it in to continue. 일련 번호가 %1인 하드웨어 키를 찾을 수 없습니다. 계속 진행하려면 연결하십시오. @@ -8899,5 +10474,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Challenge-Response를 완료할 수 없습니다. 오류: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - 슬롯 %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - 슬롯 %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_lt.ts b/share/translations/keepassxc_lt.ts new file mode 100644 index 000000000..42f16efef --- /dev/null +++ b/share/translations/keepassxc_lt.ts @@ -0,0 +1,10456 @@ + + + AboutDialog + + About KeePassXC + Apie KeePassXC + + + About + Apie + + + Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> + Praneškite apie klaidas adresu: <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 platinamas pagal GNU bendrosios viešosios licencijos (GPL) 2 versijos arba (jūsų pasirinkimu) 3 versijos sąlygas. + + + Project Maintainers: + Projekto prižiūrėtojai: + + + Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. + Ypatinga "KeePassXC" komandos padėka debfx už originalaus "KeePassX" sukūrimą. + + + Contributors + Autoriai + + + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Peržiūrėkite "GitHub" indėlį</a> + + + Debug Info + Derinimo informacija + + + Include the following information whenever you report a bug: + Kai pranešate apie klaidą, įtraukite šią informaciją: + + + Copy to clipboard + Kopijuoti į mainų sritį + + + + AccessControlDialog + + KeePassXC - Access Request + "KeePassXC" - prieigos užklausa + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Neegzistuojantis / neprieinamas vykdomosios programos kelias. Dukart patikrinkite, ar klientas yra tinkamas. + + + <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>prašo prieigos prie šių įrašų:</p></body></html> + + + Name + Pavadinimas + + + PID + PID + + + Executable + Paleidėjas + + + Command Line + Komandinė Eilutė + + + Details + Išsamiau + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Jūsų sprendimas bus įsimintas tol, kol užklausą pateikęs klientas IR KeePassXC yra paleisti. + + + Remember + Prisiminti + + + Allow Selected + Leisti Pasirinktą + + + Deny All && Future + Neleisti visiems && ateityje + + + Allow All && &Future + Leisti visiems && &Ateityje + + + + AccessControlDialog::DenyButton + + Deny for this program + Neleisti šiai programai + + + + AgentSettingsWidget + + Enable SSH Agent integration + Įjungti SSH agento integraciją + + + Use Pageant + Naudokite "Pageant" + + + Use OpenSSH + Naudoti OpenSSH + + + Use both agents + Naudoti abu agentus + + + SSH_AUTH_SOCK override + Nepaisyti SSH_AUTH_SOCK + + + SSH_AUTH_SOCK value + SSH_AUTH_SOCK vertė + + + (empty) + (tuščia) + + + SSH_SK_PROVIDER value + SSH_SK_PROVIDER vertė + + + SSH_SK_PROVIDER override + Nepaisyti SSH_SK_PROVIDER + + + No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. + Nėra SSH Agento lizdo. Įsitikinkite, kad SSH_AUTH_SOCK aplinkos kintamasis egzistuoja, arba nustatykite jį pakeičiantį kintamąjį. + + + SSH Agent connection is working! + SSH Agento ryšys veikia! + + + + ApplicationSettingsWidget + + Application Settings + Programos nustatymai + + + General + Bendra + + + Security + Saugumas + + + This setting cannot be enabled when minimize on unlock is enabled. + Šis nustatymas negali būti įjungtas, kai įjungtas minimizavimas atrakinimo metu. + + + Access error for config file %1 + Konfigūracijos failo %1 prieigos klaida + + + Icon only + Tik piktograma + + + Text only + Tik tekstas + + + Text beside icon + Tekstas šalia piktogramos + + + Text under icon + Tekstas po piktograma + + + Follow style + Sekti stiliumi + + + Monochrome + Vienspalvis + + + Monochrome (light) + Monochrominis (šviesus) + + + Monochrome (dark) + Monochrominis (tamsus) + + + Colorful + Spalvotas + + + You must restart the application to set the new language. Would you like to restart now? + Norėdami nustatyti naują kalbą, turite iš naujo paleisti programą. Ar norite iš naujo paleisti programą dabar? + + + Select backup storage directory + Pasirinkite atsarginių kopijų saugojimo katalogą + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + Ar norite atstatyti visus nustatymus į numatytąsias reikšmes? + + + Import KeePassXC Settings + Importuoti KeePassXC nustatymus + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + Eksportuoti KeePassXC nustatymus + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + + + + ApplicationSettingsWidgetGeneral + + Basic Settings + Pagrindiniai nustatymai + + + Startup + Įjungimo + + + Start only a single instance of KeePassXC + Paleisti tik vieną KeePassXC egzempliorių + + + Automatically launch KeePassXC at system startup + Automatiškai paleisti KeePassXC paleidžiant sistemą + + + Minimize window at application startup + Paleidus programą, suskleisti langą + + + Minimize window after unlocking database + Minimizuoti langą po duomenų bazės atrakinimo + + + Remember previously used databases + Prisiminti anksčiau naudotas duomenų bazes + + + recent files + naujausi failai + + + Load previously open databases on startup + Įkelti anksčiau atidarytas duomenų bazes paleidimo metu + + + Remember database key files and security dongles + Prisiminti duomenų bazės raktų failus ir saugumo raktus + + + Check for updates at application startup once per week + Kartą per savaitę tikrinti, ar yra atnaujinimų paleidžiant programą + + + Include beta releases when checking for updates + Įtraukti beta versijas, kai tikrinami atnaujinimai + + + File Management + Failų tvarkymas + + + Automatically save after every change + Automatiškai įrašyti po kiekvieno pakeitimo + + + Automatically save when locking database + Automatiškai išsaugoti, kai užrakinama duomenų bazė + + + Automatically save non-data changes when locking database + Automatiškai išsaugoti ne duomenų pakeitimus, kai užrakinama duomenų bazė + + + Automatically reload the database when modified externally + Išoriškai modifikavus duomenų bazę, automatiškai įkelti ją iš naujo + + + Backup database file before saving + Išsaugoti duomenų bazę prieš išsaugant + + + {DB_FILENAME}.old.kdbx + {DB_FILENAME}.old.kdbx + + + Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) + Naudoti alternatyvų išsaugojimo būdą (gali išspręsti Dropbox, Google Drive, GVFS ir kt. problemas). + + + Temporary file moved into place + Laikinasis failas perkeltas į vietą + + + Directly write to database file (dangerous) + Tiesioginis įrašymas į duomenų bazės failą (pavojinga) + + + Entry Management + Įrašų tvarkymas + + + Use group icon on entry creation + Kuriant įrašus, naudoti grupės piktogramą + + + Minimize when opening a URL + Sumažinti atidarant URL adresą + + + Hide window when copying to clipboard + Paslėpti langą kopijuojant į iškarpinę + + + Minimize + Sumažinti + + + Drop to background + Nueikite į foną + + + Favicon download timeout: + "Favicon" atsisiuntimo skirtasis laikas: + + + Website icon download timeout in seconds + Svetainės piktogramos atsisiuntimo laiko limitas sekundėmis + + + sec + Seconds + sek. + + + User Interface + Naudotojo sąsaja + + + Toolbar button style + Įrankių juostos mygtukų stilius + + + Movable toolbar + Perkeliama įrankių juosta + + + Language selection + Kalbos pasirinkimas + + + Language: + Kalba: + + + (restart program to activate) + (paleiskite programą iš naujo, kad aktyvuotumėte) + + + Toolbar button style: + Užduotinės mygtukų stilius + + + Show passwords in color + Rodyti slaptažodžius spalvotai + + + Use monospaced font for notes + Užrašams naudoti vienodo pločio šriftą + + + Minimize instead of app exit + Sumažinimas vietoj programėlės išėjimo + + + Show a system tray icon + Rodyti sistemos dėklo piktogramą + + + Tray icon type + Dėtuvės piktogramos tipas + + + Tray icon type: + Dėtuvės piktogramos tipas: + + + Hide window to system tray when minimized + Suskleidus langą, slėpti jį į sistemos dėklą + + + Reset settings to default… + Nustatyti nustatymus atgal į numatytuosius + + + Auto-Type + Automatinis rinkimas + + + Use entry title to match windows for global Auto-Type + Naudoti įrašo antraštę, norint sutapatinti langus visuotiniam Automatiniam rinkimui + + + Use entry URL to match windows for global Auto-Type + Naudoti įrašo URL, norint sutapatinti langus visuotiniam Automatiniam rinkimui + + + Always ask before performing Auto-Type + Visada klausti prieš atliekant automatinį rinkimą + + + Hide expired entries from Auto-Type + Paslėpti nebegaliojančius įrašus nuo Auto-Įvedimo + + + Re-lock previously locked database after performing Auto-Type + Iš naujo užrakinti anksčiau užrakintą duomenų bazę atlikus automatinį rinkimą + + + Auto-Type start delay: + Auto-Įvedimo paleidimo uždelsimas: + + + Global Auto-Type shortcut: + Visuotinio automatinio rinkimo spartieji klavišai: + + + Auto-type start delay milliseconds + Auto-įvedimo paleidimo uždelsimas milisekundėmis + + + ms + Milliseconds + ms + + + Auto-Type typing delay: + Auto-Įvedimo delsa + + + Global auto-type shortcut + Visuotinio automatinio rinkimo spartieji klavišai + + + Auto-type character typing delay milliseconds + Automatinio rinkimo simbolių įvedimo vėlavimas milisekundėmis + + + Remember last typed entry for: + Prisiminti paskutinį įvestą įrašą: + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + dienos + + + Destination format: + Paskirties formatas: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + Rodyti įrankių juostą + + + Show the menu bar by pressing the Alt key + + + + Show menubar + Rodyti meniu juostą + + + Import settings… + Importuoti nustatymus… + + + Export settings… + Eksportuoti nustatymus… + + + Open browser on double clicking URL field in entry view + + + + Font size: + Šrifto dydis: + + + Font size selection + Šrifto dydžio pasirinkimas + + + + ApplicationSettingsWidgetSecurity + + Timeouts + Laiko limitai + + + Database lock timeout seconds + Duomenų bazės užrakinimo laiko limitas sekundėmis + + + sec + Seconds + sek. + + + Clear clipboard after + Išvalyti iškarpinę po + + + Clear search query after + Išvalyti paieškos užklausą po + + + min + Minutes + min. + + + Clipboard clear seconds + Sekundės iki iškarpinės išvalymo + + + Lock databases after inactivity of + Užrakinti duomenų bazes, kai kompiuteris neaktyvus + + + Convenience + Patogumas + + + Enable database quick unlock (Touch ID / Windows Hello) + Naudoti greitąjį duomenų bazės atrakinimą (Touch ID / Windows Hello) + + + Lock databases when session is locked or lid is closed + Užrakinti duomenų bazes, kai yra užrakinamas seansas ar uždaromas nešiojamojo kompiuterio dangtis + + + Lock databases after minimizing the window + Suskleidus langą, užrakinti duomenų bazes + + + Hide passwords when editing them + Slėpti slaptažodžius juos redaguojant + + + Use placeholder for empty password fields + Naudoti žymeklį tuštiems slaptažodžių laukeliams + + + Hide passwords in the entry preview panel + Paslėpti slaptažodžius įrašo peržiūros skydelyje + + + Privacy + Privatumas + + + Use DuckDuckGo service to download website icons + Naudoti DuckDuckGo paslaugą svetainių piktogramoms atsisiųsti + + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + Užrakinti duomenų bazes perjungiant naudotoją + + + Lock Options + + + + Hide notes in the entry preview panel + + + + + AutoType + + The requested Auto-Type sequence cannot be used due to an error: + Prašomos automatinio rinkimo sekos negalima naudoti dėl klaidos: + + + Auto-Type Error + Auto-Įvedimo Klaida + + + Permission Required + Būtinas leidimas + + + KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. + Kad KeePassXC galėtų atlikti pradinio lygio automatinį rinkimą, reikia prieigos leidimo. Jei leidimas jau suteiktas, gali tekti iš naujo paleisti KeePassXC. + + + KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. + Kad KeePassXC galėtų atlikti visuotinį automatinį rinkimą, reikia prieigos ir ekrano įrašymo leidimo. Ekrano įrašymas būtinas, kad būtų galima naudoti lango pavadinimą įrašams rasti. Jei leidimas jau suteiktas, gali tekti iš naujo paleisti KeePassXC. + + + Invalid entry provided + Pateiktas netinkamas įrašas + + + Bracket imbalance detected, found extra { or } + Aptiktas skliaustų disbalansas, rasta papildomų { arba } + + + Too many repetitions detected, max is %1: %2 + Aptikta per daug pasikartojimų, maksimalus skaičius yra %1: %2 + + + Very slow key press detected, max is %1: %2 + Aptiktas labai lėtas klavišo paspaudimas, maksimali trukmė %1: %2 + + + Very long delay detected, max is %1: %2 + Aptiktas labai ilgas vėlavimas, maksimali trukmė %1: %2 + + + Entry does not have attribute for PICKCHARS: %1 + Įrašas neturi PICKCHARS atributo: %1 + + + Invalid placeholder: %1 + Netinkamas žymeklis: %1 + + + + AutoTypeAssociationsModel + + Window + Langas + + + Sequence + Seka + + + (empty) + (tuščia) + + + Default sequence + Numatytoji seka + + + + AutoTypeMatchModel + + Group + Grupė + + + Title + Antraštė + + + Username + Naudotojo vardas + + + Sequence + Seka + + + + AutoTypePlatformX11 + + Sequence aborted: Caps Lock is on + Seka nutraukta: įjungtas Caps Lock + + + Sequence aborted: Modifier keys held by user + Seka nutraukta: modifikatorių raktai priklauso naudotojui + + + Unable to get valid keycode for key: + Nepavyksta gauti galiojančio rakto kodo + + + Trying to send invalid keyboard symbol. + + + + + AutoTypeSelectDialog + + Auto-Type - KeePassXC + Automatinis rinkimas - KeePassXC + + + Double click a row to perform Auto-Type or find an entry using the search: + Dukart spustelėkite eilutę, kad atliktumėte automatinį rinkimą arba raskite įrašą naudodami paiešką: + + + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> + Galite naudoti išplėstines paieškos užklausas, kad rastumėte bet kokį įrašą atvirose duomenų bazėse. Naudingi šie trumpieji klavišai: +Ctrl+F - perjungti paiešką duomenų bazėje +Ctrl+1 - įveskite vartotojo vardą +Ctrl+2 - įveskite slaptažodį +Ctrl+3 - Įveskite TOTP +Ctrl+4 - naudoti virtualią klaviatūrą (tik Windows) + + + Search all open databases + Paieška visose atvirose duomenų bazėse + + + Search… + Ieškoti... + + + Type Sequence + Rašymo Seka + + + Cancel + Atsisakyti + + + Type {USERNAME} + Rašyti {USERNAME} + + + Type {PASSWORD} + Įvesti {PASSWORD} + + + Type {TOTP} + Įvesti {TOTP} + + + Copy Username + Kopijuoti naudotojo vardą + + + Copy Password + Kopijuoti Slaptažodį + + + Copy TOTP + Kopijuoti TOTP + + + Use Virtual Keyboard + Naudoti Virtualią Klaviatūrą + + + + BrowserAccessControlDialog + + KeePassXC - Browser Access Request + KeePassXC - Naršyklės prieigos užklausa + + + %1 is requesting access to the following entries: + %1 prašo prieigos prie šių įrašų: + + + Remember access to checked entries + Prisiminti prieigą prie pasirinktų įrašų + + + Remember + Prisiminti + + + Allow access to entries + Leisti prieigą prie įrašų + + + Allow Selected + Leisti Pasirinktą + + + Deny All + Atmesti Visus + + + Disable for this site + Išjungti šiai svetainei + + + Undo + Atšaukti + + + + BrowserEntrySaveDialog + + Ok + Gerai + + + Cancel + Atsisakyti + + + You have multiple databases open. +Please select the correct database for saving credentials. + Turite atvertas kelias duomenų bazes. +Prisijungimo duomenų įrašymui, pasirinkite teisingą duomenų bazę. + + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Atsisakyti + + + Update + Atnaujinti + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + Naudotojo vardas: %1 + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + + + + BrowserService + + A request for creating a new group "%1" has been received. +Do you want to create this group? + + Gauta užklausa sukurti naują grupę "%1". +Ar norite sukurti šią grupę? + + + + You have received an association request for the following database: +%1 + +Give the connection a unique name or ID, for example: +chrome-laptop. + Gavote asociacijos užklausą dėl šios duomenų bazės: +%1 + +Suteikite ryšiui unikalų pavadinimą arba ID, pvz: +chrome-laptop. + + + Save and allow access + Įrašyti ir leisti prieigą + + + A shared encryption key with the name "%1" already exists. +Do you want to overwrite it? + Bendrinamas šifravimo raktas, pavadinimu "%1" jau yra. +Ar norite jį perrašyti? + + + Do you want to update the information in %1 - %2? + Ar norite atnaujinti informaciją ties %1 - %2? + + + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + + Gauta užklausa ištrinti įrašą "%1". +Ar norite ištrinti įrašą? + + + %1 (Passkey) + + + + KeePassXC - Create a new group + + + + Disable + Išjungti + + + KeePassXC - Overwrite existing key? + + + + KeePassXC - Update Entry + + + + KeePassXC - Delete entry + + + + KeePassXC - New key association request + + + + Passkey + + + + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + + + + + BrowserSettingsWidget + + Dialog + Dialogas + + + This is required for accessing your databases with KeePassXC-Browser + Tai būtina norint pasiekti duomenų bazes naudojant KeePassXC-Browser + + + Enable browser integration + Įjungti naršyklės integraciją + + + General + Bendra + + + Enable integration for these browsers: + Įjungti integraciją šioms naršyklėms: + + + Vivaldi + Vivaldi + + + &Edge + &Edge + + + Firefox + Firefox + + + Tor Browser + Tor Naršyklė + + + Brave + Brave + + + Google Chrome + Google Chrome + + + Chromium + Chromium + + + Show a notification when credentials are requested + Credentials mean login data requested via browser extension + Rodyti pranešimą, kai prašoma pateikti įgaliojimus + + + Request to unlock the database if it is locked + Prašyti atrakinti duomenų bazę, jei ji užrakinta + + + Only entries with the same scheme (http://, https://, …) are returned. + Grąžinami tik tos pačios schemos (http://, https://, ...) įrašai. + + + Match URL scheme (e.g., https://example.com) + Atitikti URL schemą (pvz., https://pavyzdys.lt/) + + + Only returns the best matches for a specific URL instead of all entries for the whole domain. + Vietoj visos srities visų įrašų, grąžina tik geriausiai tam tikrą URL atitinkančius įrašus. + + + Return only best-matching credentials + Grąžinti tik geriausiai atitinkančius įgaliojimus + + + Returns expired credentials. String [expired] is added to the title. + Grąžina įgaliojimus, kurių galiojimo laikas pasibaigęs. Prie pavadinimo pridedama eilutė [pasibaigęs]. + + + Allow returning expired credentials + Leisti grąžinti pasibaigusius įgaliojimus + + + All databases connected to the extension will return matching credentials. + Visos prie plėtinio prijungtos duomenų bazės grąžins atitinkamus prisijungimo duomenis. + + + Search in all opened databases for matching credentials + Credentials mean login data requested via browser extension + Ieškoti visose atidarytose duomenų bazėse tinkamų prisijungimo duomenų + + + Advanced + Išplėstiniai + + + Never ask before accessing credentials + Credentials mean login data requested via browser extension + Niekada neklausti prieš prieinant prie įgaliojimų + + + Never ask before updating credentials + Credentials mean login data requested via browser extension + Niekada neklausti prieš atnaujinant įgaliojimus + + + Do not ask permission for HTTP Basic Auth + An extra HTTP Basic Auth setting + Neprašykite leidimo HTTP Basic Auth + + + Automatically creating or updating string fields is not supported. + Automatinis eilutės laukų kūrimas ar atnaujinimas nėra palaikomas. + + + Return advanced string fields which start with "KPH: " + Pateikite išplėstinius eilučių laukus, kurie prasideda "KPH: " + + + Don't display the popup suggesting migration of legacy KeePassHTTP settings. + Nerodykite iššokančiojo lango, siūlančio perkelti senus KeePassHTTP parametrus. + + + Do not prompt for KeePassHTTP settings migration. + Neraginkite perkelti KeePassHTTP parametrų. + + + Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. + Paleidžiant automatiškai atnaujina KeePassXC arba keepassxc-proxy dvejetainį kelią į vietinius pranešimų scenarijus. + + + Update native messaging manifest files at startup + Vietinių pranešimų aprašo failų naujinimas paleidžiant + + + Use a custom proxy location if you installed a proxy manually. + Naudokite pasirinktinę tarpinio serverio vietą, jei tarpinį serverį įdiegėte rankiniu būdu. + + + Use a custom proxy location: + Meant is the proxy for KeePassXC-Browser + Naudokite pasirinktinę tarpinio serverio vietą: + + + Custom proxy location field + Pasirinktinis tarpinio serverio vietos laukas + + + Browser for custom proxy file + Pasirinktinio tarpinio serverio failo naršyklė + + + Browse… + Button for opening file dialog + Naršyti... + + + Use a custom browser configuration location: + Naudokite pasirinktinę naršyklės konfigūracijos vietą: + + + Browser type: + Naršyklės tipas: + + + Toolbar button style + Įrankių juostos mygtukų stilius + + + Config Location: + Konfigūracijos vieta: + + + Custom browser location field + Pasirinktinis naršyklės vietos laukas + + + Browse for custom browser path + Naršykite pasirinktinį naršyklės kelią + + + Custom extension ID: + Pasirinktinio plėtinio ID: + + + Custom extension ID + Pasirinktinis plėtinio ID + + + Executable Files + Vykdomieji failai + + + All Files + Visi failai + + + Select custom proxy location + Pasirinkite pasirinktinę tarpinio serverio vietą + + + Select native messaging host folder location + Pasirinkite vietinę pranešimų pagrindinio kompiuterio aplanko vietą + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Įspėjimas:</b> Derinkite šiuos nustatymus tik tuo atveju, jei to reikia. + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + + + + CloneDialog + + Clone Entry Options + Klonuoti įrašo parinktis + + + Append ' - Clone' to title + Pridėti prie pavadinimo " - Dublikatas" + + + Replace username and password with references + Pakeisti naudotojo vardą ir slaptažodį nuorodomis + + + Copy history + Kopijuoti istoriją + + + + CsvImportWidget + + size, rows, columns + dydis, eilučių, stulpelių + + + Column Association + Stulpelio asociacija + + + Password + Slaptažodis + + + Username + Naudotojo vardas + + + Title + Antraštė + + + Group + Grupė + + + URL + URL + + + Notes + Pastabos + + + TOTP + TOTP + + + Created + Sukurta + + + Last Modified + Paskutinis keitimas + + + Icon + Piktograma + + + Encoding + Koduotė + + + Codec + Kodekas + + + Text is qualified by + Tekstas yra parengtas pagal + + + Text qualification + Teksto kvalifikacija + + + Fields are separated by + Laukai yra atskirti + + + Field separation + Lauko atskyrimas + + + Comments start with + Komentarai prasideda su + + + Header lines skipped + Antraštės eilutės praleistos + + + Number of header lines to discard + Atmestinų antraščių eilučių skaičius + + + First line has field names + Pirmoje eilutėje yra laukų pavadinimai + + + Consider '\' an escape character + Laikyti "\" kaitos ženklu + + + Preview + Peržiūra + + + CSV import preview + CSV importo peržiūra + + + Not Present + Nėra + + + Column %1 + Stulpelis %1 + + + [%n more message(s) skipped] + [%n daugiau praleistų pranešimų][%n daugiau praleistų pranešimų][%n daugiau praleistų pranešimų][%n daugiau praleistų pranešimų] + + + Failed to parse CSV file: %1 + Nepavyko išnagrinėti CSV failo: %1 + + + Imported from CSV file: %1 + Importuota iš CSV failo: %1 + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Žymos + + + + CsvParserModel + + %n row(s) + CSV row count + + + + %n column(s) + CSV column count + %n stulpelis%n stulpeliai%n stulpelių%n stulpelių + + + + Database + + Passwords + Root group name + Slaptažodžiai + + + File %1 does not exist. + Failo %1 nėra. + + + Unable to open file %1. + Nepavyko atverti failą %1. + + + Error while reading the database: %1 + Klaida skaitant duomenų bazę: %1 + + + Could not save, database does not point to a valid file. + Nepavyko išsaugoti, duomenų bazė nenurodo į tinkamą failą. + + + Database save is already in progress. + Duomenų bazės išsaugojimas jau vyksta. + + + Could not save, database has not been initialized! + Nepavyko išsaugoti, duomenų bazė nebuvo inicializuota! + + + Database file has unmerged changes. + Duomenų bazės faile yra neįtrauktų pakeitimų. + + + %1 +Backup database located at %2 + %1 +Atsarginė duomenų bazė, esanti %2 + + + Key not transformed. This is a bug, please report it to the developers. + Raktas nepakeistas. Tai klaida, praneškite apie ją kūrėjams. + + + Recycle Bin + Šiukšlinė + + + Database file read error. + + + + No file path was provided. + + + + + DatabaseOpenDialog + + Unlock Database - KeePassXC + Atrakinti duomenų bazę - KeePassXC + + + + DatabaseOpenWidget + + Unlock KeePassXC Database + Atrakinti KeePassXC duomenų bazę + + + Enter Password: + Įrašykite Slaptažodį: + + + Password field + Slaptažodžio laukas + + + Hardware key slot selection + Aparatūros rakto lizdo pasirinkimas + + + Key file to unlock the database + Duomenų bazės atrakinimo rakto failas + + + Browse for key file + Ieškoti rakto failo + + + Browse… + Naršyti... + + + Unlock Database + Atrakinti Duomenų bazę + + + Cancel + Atsisakyti + + + Unlock + Atrakinti + + + Please present or touch your YubiKey to continue… + Norėdami tęsti, pateikite arba palieskite savo YubiKey raktą... + + + Database Version Mismatch + Duomenų bazės versijos neatitikimas + + + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. + Duomenų bazė, kurią bandote atidaryti, greičiausiai buvo +sukurta su naujesne KeePassXC versija. + +Vis tiek galite pabandyti ją atidaryti, tačiau ji gali būti neišbaigta +ir išsaugant bet kokius pakeitimus gali būti prarasti duomenys. + +Rekomenduojame atnaujinti KeePassXC diegimą. + + + Open database anyway + Vis tiek atidaryti duomenų bazę + + + Database unlock canceled. + Duomenų bazės atrakinimas atšauktas. + + + Unlock failed and no password given + Atrakinimas nepavyko ir slaptažodis nebuvo pateiktas + + + Unlocking the database failed and you did not enter a password. +Do you want to retry with an "empty" password instead? + +To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. + Nepavyko atrakinti duomenų bazės ir jūs neįvedėte slaptažodžio. +Ar norite dar kartą pakartoti naudodami "tuščią" slaptažodį? + +Kad ši klaida nepasirodytų, turite eiti į "Duomenų bazės nustatymai / saugumas" ir iš naujo nustatyti slaptažodį. + + + Retry with empty password + Bandyti vėl su tuščiu slaptažodžiu + + + Failed to open key file: %1 + Nepavyko atidaryti rakto failo: %1 + + + Old key file format + Senas rakto failo formatas + + + You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> + Jūs naudojate seną rakto failo formatą, kurį keePassXC gali<br>nustokite remti ateityje.<br><br>Apsvarstykite galimybę sugeneruoti naują rakto failą apsilankę:<br><strong>Duomenų bazės &gt; duomenų bazės saugos &gt; keisti rakto failą.</strong><br> + + + Don't show this warning again + Daugiau neberodyti šio įspėjimo + + + All files + Visi failai + + + Key files + Rakto failai + + + Select key file + Pasirinkite rakto failą + + + Cannot use database file as key file + Negalima naudoti duomenų bazės failo kaip rakto failo + + + authenticate to access the database + + + + Failed to authenticate with Quick Unlock: %1 + + + + Select Key File: + + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + Naudoti aparatinės įrangos raktą + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + Spustelėkite norėdami pridėti rakto failą. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Aš turiu rakto failą</a> + + + Hardware keys found, but no slots are configured. + + + + + DatabaseSettingWidgetMetaData + + Passwords + Slaptažodžiai + + + + DatabaseSettingsDialog + + General + Bendra + + + Security + Saugumas + + + Database Credentials + Duomenų bazės Įgaliojimai + + + Encryption Settings + Šifravimo nustatymai + + + Browser Integration + Naršyklės integracija + + + Maintenance + Priežiūra + + + KeeShare + + + + Secret Service Integration + + + + Remote Sync + + + + Database Settings: %1 + Duomenų bazės nustatymai: %1 + + + + DatabaseSettingsWidgetBrowser + + KeePassXC-Browser settings + KeePassXC-Browser nustatymai + + + Disconnect all browsers + Atjungti visas naršykles + + + Forget all site-specific settings on entries + Pamiršti visus su konkrečia svetaine susijusius įrašų nustatymus + + + Refresh database root group ID + Duomenų bazės šakninės grupės ID atnaujinimas + + + Stored keys + Saugomi raktai + + + Stored browser keys + Išsaugoti naršyklės raktai + + + Remove selected key + Pašalinti pasirinktą raktą + + + Remove + Šalinti + + + Delete the selected key? + Ištrinti pasirinktą raktą? + + + Do you really want to delete the selected key? +This may prevent connection to the browser plugin. + Ar tikrai norite ištrinti pasirinktą raktą? +Tai gali sutrukdyti prisijungti prie naršyklės priedo. + + + Key + Raktas + + + Value + Reikšmė + + + Created + Sukurta + + + Enable Browser Integration to access these settings. + Jei norite pasiekti šiuos nustatymus, įjunkite naršyklės integraciją. + + + Do you really want to disconnect all browsers? +This may prevent connection to the browser plugin. + Ar tikrai norite atjungti visas naršykles? +Tai gali nebeleisti prisijungti prie naršyklės plėtinio. + + + No shared encryption keys found in KeePassXC settings. + KeePassXC nustatymuose nerasta bendrų šifravimo raktų. + + + Successfully removed %n encryption key(s) from KeePassXC settings. + Sėkmingai pašalintas (-i) %n šifravimo raktas (-ai) iš KeePassXC nustatymų.Sėkmingai pašalintas (-i) %n šifravimo raktas (-ai) iš KeePassXC nustatymų.Sėkmingai pašalintas (-i) %n šifravimo raktas (-ai) iš KeePassXC nustatymų.Sėkmingai pašalintas (-i) %n šifravimo raktas (-ai) iš KeePassXC nustatymų. + + + Do you really want forget all site-specific settings on every entry? +Permissions to access entries will be revoked. + Ar tikrai norite pamiršti visus su konkrečia svetaine susijusius nustatymus kiekviename įraše? +Bus panaikinti prieigos prie įrašų leidimai. + + + Removing stored permissions… + Šalinami saugomi leidimai… + + + Abort + Nutraukti + + + Successfully removed permissions from %n entry(s). + Sėkmingai pašalinti leidimai iš %n įrašo (-ų).Sėkmingai pašalinti leidimai iš %n įrašo (-ų).Sėkmingai pašalinti leidimai iš %n įrašo (-ų).Sėkmingai pašalinti leidimai iš %n įrašo (-ų). + + + The active database does not contain an entry with permissions. + Aktyvioje duomenų bazėje nėra įrašo su leidimais. + + + Refresh database ID + Atnaujinti duomenų bazės ID + + + Do you really want refresh the database ID? +This is only necessary if your database is a copy of another and the browser extension cannot connect. + Ar tikrai norite atnaujinti duomenų bazės ID? +Tai būtina tik tuo atveju, jei jūsų duomenų bazė yra kito kopija ir naršyklės plėtinys negali prisijungti. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + + No keys found + Nerasta jokių raktų + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + + + + DatabaseSettingsWidgetDatabaseKey + + Add additional protection… + Pridėti papildomą apsaugą... + + + No password set + Nenustatytas joks slaptažodis + + + 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? + ĮSPĖJIMAS! Jūs nenustatėte slaptažodžio. Naudotis duomenų baze be slaptažodžio griežtai nerekomenduojama! + +Ar tikrai norite tęsti darbą be slaptažodžio? + + + Continue without password + Tęsti be slaptažodžio + + + No encryption key added + Nepridėtas joks šifravimo raktas + + + You must add at least one encryption key to secure your database! + Norėdami apsaugoti savo duomenų bazę, privalote pridėti bent vieną šifravimo raktą! + + + Unknown error + Nežinoma klaida + + + Failed to change database credentials + Nepavyko pakeisti duomenų bazės prisijungimo duomenų + + + Weak password + Silpnas slaptažodis + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + + + + DatabaseSettingsWidgetEncryption + + Decryption Time: + Iššifravimo laikas: + + + Decryption time in seconds + Iššifravimo laikas sekundėmis + + + Higher values offer more protection, but opening the database will take longer. + Didesni skaičiai užtikrina didesnę apsaugą, tačiau duomenų bazės atidarymas užtruks ilgiau. + + + Database format: + Duomenų bazės formatas: + + + Database format + Duomenų bazės formatas + + + Format cannot be changed: Your database uses KDBX 4 features + Formatas negali būti pakeistas: Jūsų duomenų bazė naudoja KDBX 4 funkcijas + + + Unless you need to open your database with other programs, always use the latest format. + Jei duomenų bazės nereikia atidaryti kitomis programomis, visada naudokite naujausią formatą. + + + Encryption Algorithm: + Šifravimo algoritmas: + + + Encryption algorithm + Šifravimo algoritmas + + + AES: 256 Bit (default) + AES: 256 Bitų (numatytasis) + + + Twofish: 256 Bit + Twofish: 256 Bitų + + + Key Derivation Function: + Rakto išvedimo funkcija: + + + Key derivation function + Rakto išvedimo funkcija + + + Transform rounds: + Pasikeitimo ciklų: + + + Transform rounds + Transformuokite raundus + + + Memory Usage: + Atminties naudojimas: + + + Memory usage + Atminties naudojimas + + + Parallelism: + Lygiagretumas: + + + Parallelism + Lygiagretumas + + + KDBX 4 (recommended) + KDBX 4 (rekomenduojama) + + + KDBX 3 + KDBX 3 + + + Number of rounds too high + Key transformation rounds + Per didelis raundų skaičius + + + You are using a very high number of key transform rounds with Argon2. + +If you keep this number, your database may take hours, days, or even longer to open. + Su "Argon2" naudojate labai daug pagrindinių transformacijų. + +Jei išsaugosite šį numerį, duomenų bazės atidarymas gali užtrukti valandas, dienas ar net ilgiau. + + + Understood, keep number + Suprask, išlaikyk numerį + + + Cancel + Atsisakyti + + + Number of rounds too low + Key transformation rounds + Per mažas raundų skaičius + + + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. + Jūs naudojate labai mažą skaičių pagrindinių transformacijos raundų su AES-KDF. + +Jei išlaikysite šį numerį, jūsų duomenų bazė nebus apsaugota nuo brutalios jėgos atakų. + + + KDF unchanged + KDF nepakitęs + + + Failed to transform key with new KDF parameters; KDF unchanged. + Nepavyko transformuoti rakto su naujais KDF parametrais; KDF nepakitęs. + + + MiB + Abbreviation for Mebibytes (KDF settings) + MiB MiB MiB MiB + + + thread(s) + Threads for parallel execution (KDF settings) + gija gijos gijų gija + + + Encryption Settings: + Šifravimo nustatymai: + + + Basic + + + + Advanced + Išplėstiniai + + + + DatabaseSettingsWidgetFdoSecrets + + Exposed Entries + Atskleisti įrašai + + + Don't expose this database + Neatskleisti šios duomenų bazės + + + Expose entries under this group: + Atskleisti šios grupės įrašus: + + + Enable Secret Service to access these settings. + Įgalinkite slaptąją tarnybą, kad galėtumėte pasiekti šiuos nustatymus. + + + + DatabaseSettingsWidgetGeneral + + Database Metadata + Duomenų bazės metaduomenys + + + Database name: + Duomenų bazės pavadinimas: + + + Database name field + Duomenų bazės pavadinimo laukas + + + Database description: + Duomenų bazės aprašas: + + + Database description field + Duomenų bazės aprašymo laukas + + + Default username: + Numatytasis naudotojo vardas: + + + Default username field + Numatytas naudotojo vardo laukas + + + History Settings + Istorijos nustatymai + + + Maximum number of history items per entry + Didžiausias istorijos elementų skaičius viename įraše + + + Maximum size of history per entry + Didžiausias vieno įrašo istorijos dydis + + + MiB + MiB + + + Use recycle bin + Naudoti šiukšlinę + + + Additional Database Settings + Papildomi duomenų bazės nustatymai + + + Enable compression (recommended) + Įjungti suspaudimą (rekomenduojama) + + + Delete Recycle Bin + Ištrinti šiukšliadėžę + + + Do you want to delete the current recycle bin and all its contents? +This action is not reversible. + Ar norite ištrinti dabartinę šiukšliadėžę ir visą jos turinį? +Šis veiksmas negrįžtamas. + + + (old) + (senas) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + Apriboti istorijos elementų kiekį vienam įrašui iki: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + Apriboti visą istorijos elementų dydį kiekviename įraše iki: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min. + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Išvalyti + + + Display icon: + + + + Select Database Icon + + + + + DatabaseSettingsWidgetKeeShare + + Sharing + Dalijimasis + + + Breadcrumb + Duonos krumpliaratis + + + Type + Tipas + + + Path + Kelias + + + Last Signer + Paskutinis pasirašytojas + + + Certificates + Liudijimai + + + > + Breadcrumb separator + > + + + + DatabaseSettingsWidgetMaintenance + + Manage Custom Icons + Pasirinktinių piktogramų tvarkymas + + + Delete selected icon(s) + Ištrinti pasirinktą (-as) piktogramą (-as) + + + Delete all custom icons not in use by any entry or group + Ištrinti visas pasirinktines piktogramas, nenaudojamas jokiame įraše ar grupėje + + + Purge unused icons + Išvalyti nenaudojamas piktogramas + + + Confirm Deletion + Patvirtinkite Ištrynimą + + + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? + Bent viena iš pasirinktų piktogramų šiuo metu naudojama bent viename įraše arba grupėje. Visų paveiktų įrašų ir grupių piktogramos bus pakeistos numatytąja piktograma. Ar tikrai norite ištrinti šiuo metu naudojamas piktogramas? + + + Custom Icons Are In Use + Naudojamos pasirinktinės piktogramos + + + All custom icons are in use by at least one entry or group. + Visos pasirinktinės piktogramos yra naudojamos bent viename įraše arba grupėje. + + + Purged Unused Icons + Išvalyti nenaudojamas piktogramas + + + Purged %n icon(s) from the database. + Išvalyta %n piktograma (-os) iš duomenų bazės.Išvalyta %n piktograma (-os) iš duomenų bazės.Išvalyta %n piktograma (-os) iš duomenų bazės.Išvalyta %n piktograma (-os) iš duomenų bazės. + + + + DatabaseSettingsWidgetMetaDataSimple + + Database Name: + Duomenų bazės pavadinimas: + + + Database name field + Duomenų bazės pavadinimo laukas + + + Description: + Aprašas: + + + Database description field + Duomenų bazės aprašymo laukas + + + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Šalinti + + + Command Settings + + + + Name + Pavadinimas + + + Save + Įrašyti + + + Download + Atsisiųsti + + + Command: + Komanda: + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + Išbandyti + + + Download command cannot be empty. + Atsiuntimo komanda negali būti tuščia. + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + Atsiuntimas sėkmingas. + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + sekundžių + + + + DatabaseTabWidget + + Database creation error + Duomenų bazės sukūrimo klaida + + + The created database has no key or KDF, refusing to save it. +This is definitely a bug, please report it to the developers. + Sukurtoje duomenų bazėje nėra rakto ar KDF, atsisakant jį išsaugoti. +Tai tikrai klaida, praneškite apie tai kūrėjams. + + + KeePass 2 Database + KeePass 2 duomenų bazė + + + All files + Visi failai + + + Open database + Atverti duomenų bazę + + + Failed to open %1. It either does not exist or is not accessible. + Nepavyko atidaryti %1. Jis arba neegzistuoja, arba yra nepasiekiamas. + + + CSV file + CSV failas + + + Merge database + Sulieti duomenų bazę + + + Export database to CSV file + Eksportuoti duomenų bazę į CSV failą + + + Writing the CSV file failed. + CSV failo įrašymas nepavyko. + + + Writing the HTML file failed. + Nepavyko įrašyti HTML failo. + + + Export database to XML file + Eksportuoti duomenų bazę į XML failą + + + XML file + XML failas + + + Writing the XML file failed + Nepavyko įrašyti XML failo + + + Export Confirmation + Eksporto Patvirtinimas + + + You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? + Ketinate eksportuoti duomenų bazę į neužšifruotą failą. Dėl to jūsų slaptažodžiai ir slapta informacija gali tapti pažeidžiami! Ar tikrai norite tęsti? + + + %1 [Locked] + Database tab name modifier + %1 [Užrakinta] + + + %1 [Temporary] + Database tab name modifier + + + + + DatabaseWidget + + Searches and Tags + Paieškos ir žymos + + + Searching… + Ieškoma... + + + Shared group… + Bendra grupė... + + + Confirm Auto-Type + Patvirtinti Auto-Įvedimą + + + Perform Auto-Type into the previously active window? + Atlikti Auto-Rašymą į anksčiau aktyvų langą? + + + Execute command? + Vykdyti komandą? + + + Do you really want to execute the following command?<br><br>%1<br> + Ar tikrai norite vykdyti šią komandą?<br><br>%1<br> + + + Remember my choice + Prisiminti mano pasirinkimą + + + Delete group + Ištrinti grupę + + + Do you really want to delete the group "%1" for good? + Ar tikrai norite ištrinti grupę "%1"? + + + Move group to recycle bin? + Perkelti grupę į šiukšlinę? + + + Do you really want to move the group "%1" to the recycle bin? + Ar tikrai norite perkelti grupę "%1" į šiukšlinę? + + + Expired entries + Nebegaliojantys įrašai + + + Entries expiring within %1 day(s) + Įrašai, kurių galiojimas baigiasi per %1 dieną (-as)Įrašai, kurių galiojimas baigiasi per %1 dieną (-as)Įrašai, kurių galiojimas baigiasi per %1 dieną (-as)Įrašai, kurių galiojimas baigiasi per %1 dieną (-as) + + + No current database. + Nėra esamos duomenų bazės. + + + No source database, nothing to do. + Nėra šaltinio duomenų bazės, nėra ką atlikti. + + + Successfully merged the database files. + Duomenų bazės failai sėkmingai sulieti. + + + Database was not modified by merge operation. + Duomenų bazė nebuvo pakeista atliekant sujungimo operaciją. + + + Search Results (%1) + Paieškos rezultatai (%1) + + + No Results + Nėra rezultatų + + + Save + Įrašyti + + + Enter a unique name or overwrite an existing search from the list: + Įveskite unikalų pavadinimą arba perrašykite esamą paiešką iš sąrašo: + + + Save Search + Išsaugoti paiešką + + + Lock Database? + Užrakinti duomenų bazę? + + + You are editing an entry. Discard changes and lock anyway? + Jūs redaguojate įrašą. Atmesti pakeitimus ir vis tiek užrakinti? + + + "%1" was modified. +Save changes? + "%1" buvo pakeista. +Įrašyti pakeitimus? + + + Database was modified. +Save changes? + Duomenų bazė buvo pakeista. +Išsaugoti pakeitimus? + + + Save changes? + Įrašyti pakeitimus? + + + File has changed + Failas pasikeitė + + + Disable safe saves? + Išjungti saugų išsaugojimą? + + + 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 nepavyko išsaugoti duomenų bazės kelis kartus. Tikėtina, kad taip atsitiko dėl to, kad failų sinchronizavimo paslaugos užrakino išsaugojimo failą. +Išjunkite saugų išsaugojimą ir bandykite dar kartą? + + + Writing the database failed: %1 + Nepavyko įrašyti duomenų bazės: %1 + + + Passwords + Slaptažodžiai + + + Save database as + Įrašyti duomenų bazę kaip + + + KeePass 2 Database + KeePass 2 duomenų bazė + + + Save database backup + Išsaugoti atsarginę duomenų bazės kopiją + + + Empty recycle bin? + Išvalyti šiukšlinę? + + + Are you sure you want to permanently delete everything from your recycle bin? + Ar tikrai norite negrįžtamai viską ištrinti iš savo šiukšlinės? + + + Could not find database file: %1 + Nepavyko rasti duomenų bazės failo: %1 + + + New Database + Nauja duomenų bazė + + + %1 [New Database] + Database tab name modifier + %1 [Nauja duomenų bazė] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + Klaida įrašant duomenų bazę %1: %2 + + + Downloading... + Atsiunčiama... + + + Uploading... + + + + Syncing... + Sinchronizuojama... + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + + EditEntryWidget + + Entry + Įrašas + + + Advanced + Išplėstiniai + + + Icon + Piktograma + + + Auto-Type + Automatinis rinkimas + + + Browser Integration + Naršyklės integracija + + + <empty URL> + <empty URL> + + + Confirm Removal + Patvirtinti pašalinimą + + + Are you sure you want to remove this URL? + Ar tikrai norite pašalinti šį URL adresą? + + + Properties + Savybės + + + History + Istorija + + + SSH Agent + SSH agentas + + + n/a + nėra + + + Select private key + Pasirinkti privatųjį raktą + + + Entry history + Įrašo istorija + + + Add entry + Pridėti įrašą + + + Edit entry + Keisti įrašą + + + Some Browser Integration settings are overridden by group settings. + Kai kurių naršyklės integravimo parametrų nepaiso grupės parametrai. + + + Invalid Entry + Netinkamas įrašas + + + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. + Išorinė suliejimo operacija anuliavo šį įrašą. +Deja, bet kokie padaryti pakeitimai buvo prarasti. + + + Auto-Type Validation Error + Automatinio rinkimo patvirtinimo klaida + + + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? + Patvirtinant pasirinktinę automatinio rinkimo seką įvyko klaida: +%1 +Ar norėtumėte ją ištaisyti? + + + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? + Patvirtinant "%1" automatinio rinkimo seką įvyko klaida: +%2 +Ar norėtumėte ją ištaisyti? + + + Entry updated successfully. + Įrašas sėkmingai atnaujintas. + + + Unsaved Changes + Neišsaugoti pakeitimai + + + Would you like to save changes to this entry? + Ar norite išsaugoti šio įrašo pakeitimus? + + + New attribute + Naujas požymis + + + New attribute %1 + Naujas požymis %1 + + + Are you sure you want to remove this attribute? + Ar tikrai norite pašalinti šį požymi? + + + Reveal + Atskleisti + + + [PROTECTED] Press Reveal to view or edit + [APSAUGOTAS] Paspauskite Atskleisti, jei norite peržiūrėti arba redaguoti + + + Hide + Slėpti + + + %n hour(s) + %n val.%n val.%n val.%n val. + + + %n week(s) + %n savaitė%n savaitės%n savaičių%n savaičių + + + %n month(s) + %n mėnesis%n mėnesiai%n mėnesių%n mėnesių + + + %n year(s) + %n metai (-ai)%n metai (-ai)%n metai (-ai)%n metai (-ai) + + + Failed to decrypt SSH key, ensure password is correct. + + + + + EditEntryWidgetAdvanced + + Additional attributes + Papildomi požymiai + + + Attribute selection + Atributo pasirinkimas + + + Attribute value + Attribute value + + + Add a new attribute + Pridėti naują atributą + + + Add + Pridėti + + + Remove selected attribute + Pašalinti pasirinktą atributą + + + Remove + Šalinti + + + Edit attribute name + Redaguoti atributo pavadinimą + + + Edit Name + Taisyti pavadinimą + + + Toggle attribute protection + Perjungti atributų apsaugą + + + Protect + Apsaugoti + + + Show a protected attribute + Rodyti apsaugotą atributą + + + Reveal + Atskleisti + + + Attachments + Priedai + + + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. + Jei pažymėta, įrašas nebus rodomas ataskaitose, pvz., būklės patikrinimas ir HIBP, net jei jis neatitinka kokybės reikalavimų. + + + Exclude from database reports + Neįtraukti į duomenų bazės ataskaitas + + + Foreground Color: + Priekinio plano spalva: + + + Foreground color selection + Priekinio plano spalvų pasirinkimas + + + Background Color: + Fono spalva: + + + Background color selection + Fono spalvos pasirinkimas + + + + EditEntryWidgetAutoType + + Enable Auto-Type for this entry + Įjungti šiam įrašui automatinį rinkimą + + + Inherit default Auto-Type sequence from the group + Paveldėti numatytąją automatinio rinkimo seką iš grupės + + + Use custom Auto-Type sequence: + Naudoti tinkintą automatinio rinkimo seka: + + + Custom Auto-Type sequence + Pasirinktinė automatinio tipo seka + + + Open Auto-Type help webpage + Atidaryti automatinio rinkimo pagalbos tinklalapį + + + Window Associations + Lango asociacijos + + + Existing window associations + Esamos langų sąsajos + + + Add new window association + Pridėti naują langų susiejimą + + + + + Add item + + + + + Remove selected window association + Pašalinti pasirinktą langų susiejimą + + + - + Remove item + - + + + Window title: + Lango antraštė: + + + You can use an asterisk (*) to match everything + Galite naudoti žvaigždutę (*), kad viskas atitiktų + + + Set the window association title + Lango susiejimo pavadinimo nustatymas + + + You can use an asterisk to match everything + Galite naudoti žvaigždutę, kad viskas atitiktų + + + Use a specific sequence for this association: + Šiam susiejimui naudokite konkrečią seką: + + + Custom Auto-Type sequence for this window + Pasirinktinė šio lango automatinio rinkimo seka + + + + EditEntryWidgetBrowser + + General + Bendra + + + Hide this entry from the browser extension + Paslėpti šį įrašą nuo naršyklės plėtinio + + + Skip Auto-Submit for this entry + Praleisti šio įrašo automatinį pateikimą + + + Use this entry only with HTTP Basic Auth + Naudokite šį įrašą tik su HTTP Basic Auth + + + Do not use this entry with HTTP Basic Auth + Nenaudokite šio įrašo su HTTP Basic Auth + + + Add + Pridėti + + + Remove + Šalinti + + + Edit + Keisti + + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + + + + EditEntryWidgetHistory + + Entry history selection + Įrašo istorijos pasirinkimas + + + Show entry at selected history state + Rodyti pasirinktos istorijos padėties įrašą + + + Show + Rodyti + + + Restore entry to selected history state + Atkurti įrašą į pasirinktą istorijos padėtį + + + Restore + Atkurti + + + Delete selected history state + Ištrinti pasirinktą istorijos padėtį + + + Delete + Ištrinti + + + Delete all history + Ištrinti visą istoriją + + + Delete all + Ištrinti visus + + + + EditEntryWidgetMain + + Edit Entry + Redaguoti Įrašą + + + Notes field + Pastabų laukas + + + Username field + Naudojo vardo laukas + + + Expiration field + Galiojimo laukas + + + Expiration Presets + Išankstiniai galiojimo pabaigos nustatymai + + + Expiration presets + Išankstiniai galiojimo pabaigos nustatymai + + + Presets + Parinktys + + + Url field + Url adreso laukas + + + Download favicon for URL + Atsisiųsti piktogramą URL adresui + + + Title field + Pavadinimo laukas + + + Password field + Slaptažodžio laukas + + + Toggle expiration + Perjungti galiojimo terminą + + + Tags list + Žymų sąrašas + + + &Username: + Na&udotojo vardas: + + + &Title: + + + + &Password: + Sla&ptažodis: + + + UR&L: + UR&L: + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + Ž&ymės: + + + &Expires: + Ba&igia galioti: + + + + EditEntryWidgetSSHAgent + + Form + Forma + + + Remove key from agent when database is closed/locked + Užvėrus/užrakinus duomenų bazę, šalinti raktą iš agento + + + Comment + Komentaras + + + Add key to agent when database is opened/unlocked + Atvėrus/atrakinus duomenų bazę, pridėti raktą į agentą + + + Decrypt + Iššifruoti + + + Fingerprint + Kontrolinis kodas + + + Copy to clipboard + Kopijuoti į iškarpinę + + + Public key + Viešasis raktas + + + Private key + Privatusis raktas + + + Attachment + Priedas + + + External key file + Išorinis rakto failas + + + Add to agent + Pridėti į agentą + + + Remove from agent + Šalinti iš agento + + + External file + Išorinis failas + + + Browser for key file + Rakto failo naršyklė + + + Browse… + Button for opening file dialog + Naršyti... + + + Generate + Generuoti + + + Select attachment file + Pasirinkti priedo failą + + + Require user confirmation when this key is used + Naudojant šį raktą, reikalauti naudotojo patvirtinimo + + + n/a + nėra + + + Remove key from agent after + Šalinti raktą iš agento po + + + Remove key from agent after specified seconds + Pašalinkite raktą iš agento po nurodytų sekundžių + + + seconds + sekundžių + + + Clear agent + + + + + EditGroupWidget + + Group + Grupė + + + Icon + Piktograma + + + Properties + Savybės + + + Add group + Pridėti grupę + + + Edit group + Keisti grupę + + + Group has unsaved changes + Grupė turi neišsaugotų pakeitimų + + + Browser Integration + Naršyklės integracija + + + Enable + Įjungti + + + Disable + Išjungti + + + Inherit from parent group (%1) + Paveldėti iš pirminės grupės (%1) + + + + EditGroupWidgetBrowser + + These settings affect to the group's behaviour with the browser extension. + Šie nustatymai turi įtakos grupės elgesiui su naršyklės plėtiniu. + + + Hide entries from browser extension: + Slėpti įrašus nuo naršyklės plėtinio: + + + Hide entries from browser extension toggle for this and sub groups + Slėpti įrašus iš naršyklės plėtinių perjungimo šiam ir pogrupiams + + + Skip Auto-Submit for entries: + Praleisti automatinį pateikimą įrašams: + + + Skip Auto-Submit toggle for this and sub groups + Šio ir pogrupių perjungti jungiklį Praleisti automatinį pateikimą + + + Use entries only with HTTP Basic Auth: + Naudokite įrašus tik su HTTP Basic Auth: + + + Only HTTP Auth toggle for this and sub groups + Tik HTTP Auth perjungimas šiam ir pogrupiams + + + Do not use entries with HTTP Basic Auth: + Nenaudokite įrašų su HTTP Basic Auth: + + + Do not use HTTP Auth toggle for this and sub groups + Nenaudokite HTTP Auth perjungimo šiam ir pogrupiams + + + Omit WWW subdomain from matching: + Praleiskite WWW padomenį nuo atitikimo: + + + Omit WWW subdomain from matching toggle for this and sub groups + Praleiskite WWW padomenį nuo šio ir pogrupių atitikimo perjungimo + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + EditGroupWidgetKeeShare + + Sharing mode field + Bendrinimo režimo laukas + + + Password field + Slaptažodžio laukas + + + Type: + Tipas: + + + Password: + Slaptažodis: + + + Path: + Kelias: + + + Path to share file field + Failo bendrinimo lauko kelias + + + Browse for share file + Bendrinimo failo naršymas + + + Browse… + Naršyti... + + + Clear fields + Išvalyti laukus + + + Clear + Išvalyti + + + Inactive + Neaktyvus + + + Import + Importuoti + + + Export + Eksportuoti + + + Synchronize + Sinchronizuoti + + + Your KeePassXC version does not support sharing this container type. +Supported extensions are: %1. + Jūsų "KeePassXC" versija nepalaiko šio konteinerio tipo bendrinimo. +Palaikomi pratęsimai yra: %1. + + + %1 is already being exported by this database. + %1 jau eksportuojamas iš šios duomenų bazės. + + + %1 is already being imported by this database. + %1 jau importuojamas į šią duomenų bazę. + + + %1 is being imported and exported by different groups in this database. + %1 šioje duomenų bazėje importuoja ir eksportuoja įvairios grupės. + + + KeeShare is currently disabled. You can enable import/export in the application settings. + KeeShare is a proper noun + KeeShare šiuo metu yra išjungtas. Galite įjungti importavimą / eksportavimą programos nustatymuose. + + + Database export is currently disabled by application settings. + Duomenų bazės eksportas šiuo metu išjungtas pagal programos nustatymus. + + + Database import is currently disabled by application settings. + Duomenų bazės importas šiuo metu išjungtas pagal programos nustatymus. + + + KeeShare container + KeeShare konteineris + + + KeeShare signed container + KeeShare pasirašytas konteineris + + + Select import source + Pasirinkti importo šaltinį + + + Select export target + Pasirinkti eksporto tikslą + + + Select import/export file + Pasirinkti importo / eksporto failą + + + + EditGroupWidgetMain + + Edit Group + Redaguoti Grupę + + + Toggle expiration + Perjungti galiojimo terminą + + + Expires: + Baigiasi: + + + Name field + Pavadinimo laukas + + + Expiration field + Galiojimo laukas + + + Use default Auto-Type sequence of parent group + Naudoti numatytąją pagrindinės grupės automatinio rinkimo seką + + + Auto-Type: + Auto-Įvedimas: + + + Search: + Ieškoti: + + + Auto-Type toggle for this and sub groups + Automatinio rinkimo perjungimas šiai ir pagalbinėms grupėms + + + Notes: + Pastabos: + + + Default auto-type sequence field + Numatytos automatinio rinkimo sekos laukas + + + Notes field + Pastabų laukas + + + Name: + Pavadinimas: + + + Set default Auto-Type sequence + Nustatyti numatytąją Auto-Įvedimo seką + + + Search toggle for this and sub groups + Ieškos perjungiklis šiam ir pogrupiams + + + + EditWidgetIcons + + Use default icon + Naudoti numatytąją piktogramą + + + Use custom icon + Naudoti tinkintą piktogramą + + + Choose icon… + Pasirinkti piktogramą... + + + Set the URL to use to search for a favicon + Nustatykite URL, kurį norite naudoti ieškodami favicon + + + Favicon URL + Piktogramos URL adresas + + + Download favicon for URL + Atsisiųsti piktogramą URL adresui + + + Download favicon + Atsisiųsti svetainės piktogramą + + + Apply selected icon to subgroups and entries + Taikyti pasirinktą piktogramą pogrupiams ir įrašams + + + Apply icon to… + Taikyti piktogramą... + + + Apply to this group only + Taikyti tik šiai grupei + + + Also apply to child groups + Taip pat taikoma vaikų grupėms + + + Also apply to child entries + Taip pat taikoma antriniams įrašams + + + Also apply to all children + Taip pat taikoma visiems vaikams + + + Unable to fetch favicon. + Nepavyko gauti svetainės piktogramos. + + + Existing icon selected. + Pasirinkta esama piktograma. + + + Images + Paveikslai + + + All files + Visi failai + + + Select Image(s) + Pasirinkite paveikslėlį (-ius) + + + Successfully loaded %1 of %n icon(s) + Sėkmingai įkelta %1 iš %n piktogramos (-ių)Sėkmingai įkelta %1 iš %n piktogramos (-ių)Sėkmingai įkelta %1 iš %n piktogramos (-ių)Sėkmingai įkelta %1 iš %n piktogramos (-ių) + + + No icons were loaded + Neįkelta jokių piktogramų + + + %n icon(s) already exist in the database + %n piktograma (-os) jau yra duomenų bazėje%n piktograma (-os) jau yra duomenų bazėje%n piktograma (-os) jau yra duomenų bazėje%n piktograma (-os) jau yra duomenų bazėje + + + The following icon(s) failed: + Ši piktograma patyrė nesėkmę:Šios piktogramos patyrė nesėkmę:Šios piktogramos patyrė nesėkmę:Šios piktogramos patyrė nesėkmę: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + + + + EditWidgetProperties + + Created: + Sukurta: + + + Datetime created + Sukurtas datetime + + + Modified: + Keista: + + + Datetime modified + Datos laikas modifikuotas + + + Accessed: + Prieiga: + + + Datetime accessed + Datos laikas pasiekiamas + + + Uuid: + Uuid: + + + Unique ID + Unikalus ID + + + Plugin Data + Papildinių duomenys + + + Plugin data + Papildinių duomenys + + + Remove selected plugin data + Pašalinti pasirinktus papildinių duomenis + + + Remove + Šalinti + + + Delete plugin data? + Ištrinti papildinių duomenis? + + + Do you really want to delete the selected plugin data? +This may cause the affected plugins to malfunction. + Ar tikrai norite ištrinti pasirinktus papildinių duomenis? +Dėl to gali sutrikti paveiktų papildinių veikimas. + + + Key + Raktas + + + Value + Reikšmė + + + + Entry + + %1 - Clone + %1 - Klonas + + + Passkey + + + + Invalid conversion type: %1 + Netinkamas vertimo tipas: %1 + + + Invalid conversion syntax: %1 + Netinkama vertimo sintaksė: %1 + + + Invalid regular expression syntax %1 +%2 + Netinkama regexp sintaksė %1 + + + + + EntryAttachments + + Cannot open file "%1" + Nepavyko atidaryti failo "%1" + + + + EntryAttachmentsDialog + + Form + Forma + + + File name + Failo pavadinimas + + + File contents... + Failo turinys... + + + + EntryAttachmentsModel + + Name + Pavadinimas + + + Size + Dydis + + + + EntryAttachmentsWidget + + Form + Forma + + + Attachments + Priedai + + + Add new attachment + Pridėti naują priedą + + + Add + Pridėti + + + Remove selected attachment + Pašalinti pasirinktą priedą + + + Remove + Šalinti + + + Open selected attachment + Atverti pasirinktą priedą + + + Open + Atverti + + + Save selected attachment to disk + Įrašyti pasirinktą priedą į diską + + + Save + Įrašyti + + + Select files + Pasirinkti failus + + + Confirm remove + Patvirtinti pašalinimą + + + Are you sure you want to remove %n attachment(s)? + Ar tikrai norite pašalinti %n priedą?Ar tikrai norite pašalinti %n priedus?Ar tikrai norite pašalinti %n priedų?Ar tikrai norite pašalinti %n priedų? + + + Save attachments + Įrašyti priedus + + + Unable to create directory: +%1 + Nepavyko sukurti katalogą: +%1 + + + Are you sure you want to overwrite the existing file "%1" with the attachment? + Ar tikrai norite perrašyti failą "%1" priedu? + + + Confirm overwrite + Patvirtinti perrašymą + + + Unable to save attachments: +%1 + Nepavyko įrašyti priedus: +%1 + + + Unable to open attachment: +%1 + Nepavyko atverti priedą: +%1 + + + Unable to open attachments: +%1 + Nepavyko atverti priedus: +%1 + + + Unable to open file(s): +%1 + Nepavyksta atidaryti failo (-ų): +%1Nepavyksta atidaryti failo (-ų): +%1Nepavyksta atidaryti failo (-ų): +%1Nepavyksta atidaryti failo (-ų): +%1 + + + Confirm Overwrite Attachment + Patvirtinti priedo perrašymą + + + Confirm Attachment + Patvirtinti priedą + + + %1 is a big file (%2 MB). +Your database may get very large and reduce performance. + +Are you sure to add this file? + %1 yra didelis failas (%2 MB). +Jūsų duomenų bazė gali tapti labai didelė ir gali sumažėti našumas. + +Ar tikrai norite pridėti šį failą? + + + Attachment modified + Priedas pakeistas + + + The attachment '%1' was modified. +Do you want to save the changes to your database? + Priedas '%1' buvo pakeistas. +Ar norite išsaugoti pakeitimus savo duomenų bazėje? + + + Saving attachment failed + Nepavyko išsaugoti priedo + + + Saving updated attachment failed. +Error: %1 + Nepavyko išsaugoti atnaujinto priedo. +Klaida: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Priedas "%1" jau egzistuoja. +Ar norite perrašyti esamą priedą? + + + New + Naujas + + + Preview + Peržiūra + + + Failed to preview an attachment: Attachment not found + Nepavyko peržiūrėti priedo: Priedas nerastas + + + + EntryAttributesModel + + Name + Pavadinimas + + + + EntryHistoryModel + + Current (%1) + Dabartinis (%1) + + + Last modified + Paskutinis keitimas + + + Age + Amžius + + + Difference + Skirtumas + + + Size + Dydis + + + Title + Antraštė + + + Username + Naudotojo vardas + + + Password + Slaptažodis + + + URL + URL + + + Notes + Pastabos + + + Custom Attributes + Pasirinktiniai atributai + + + Icon + Piktograma + + + Color + Spalva + + + Expiration + Galiojimas + + + TOTP + TOTP + + + Custom Data + Pasirinktiniai duomenys + + + Attachments + Priedai + + + Auto-Type + Automatinis rinkimas + + + Tags + Žymos + + + + EntryModel + + Ref: + Reference abbreviation + Nuoroda: + + + Never + Niekada + + + Group + Grupė + + + Title + Antraštė + + + Username + Naudotojo vardas + + + Password + Slaptažodis + + + URL + URL + + + Notes + Pastabos + + + Expires + Baigia galioti + + + Created + Sukurta + + + Modified + Keista + + + Accessed + Prieiga + + + Attachments + Priedai + + + Size + Dydis + + + Group name + Grupės pavadinimas + + + Entry title + Įrašo pavadinimas + + + Password Strength + Slaptažodžio Stiprumas + + + Entry notes + Įrašo pastabos + + + Entry expires at + Įrašas galioja iki + + + Creation date + Sukūrimo data + + + Last modification date + Paskutinio pakeitimo data + + + Last access date + Paskutinės prieigos data + + + Attached files + Pridėti failai + + + Entry size + Įrašo dydis + + + Has attachments + Turi priedų + + + Has TOTP + Turi TOTP + + + Background Color + Fono spalva + + + Group Path + Grupės kelias + + + + EntryPreviewWidget + + Display current TOTP value + Rodyti dabartinę TOTP reikšmę + + + Close + Užverti + + + General + Bendra + + + Password + Slaptažodis + + + URL + URL + + + Expiration + Galiojimas + + + Tags + Žymos + + + Tags list + Žymų sąrašas + + + Username + Naudotojo vardas + + + Notes + Pastabos + + + Advanced + Išplėstiniai + + + Attachments + Priedai + + + Attributes + Požymiai + + + Autotype + Automatinis rinkimas + + + Default Sequence + Numatytoji seka + + + Window + Langas + + + Sequence + Seka + + + Searching + Paieška + + + Share + Dalintis + + + Search + Paieška + + + Clear + Išvalyti + + + Never + Niekada + + + Double click to copy value + Dukart spustelėkite, kad nukopijuotumėte reikšmę + + + Enabled + Įjungta + + + Disabled + Išjungta + + + Double click to copy to clipboard + Spustelėkite du raktus norėdami nukopijuoti į iškarpinę + + + + EntryURLModel + + Invalid URL + Netinkamas URL + + + Duplicate URL + + + + + EntryView + + Fit to window + Priderinti prie lango + + + Fit to contents + Priderinti prie turinio + + + Reset to defaults + Atstatyti į numatytuosius + + + + %1 entry(s)... + + + + + ExportDialog + + Export options + Eksporto parinktys + + + Sort entries by... + Rikiuoti įrašus pagal... + + + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + + Ketinate eksportuoti duomenų bazę į neužšifruotą failą. +Dėl to jūsų slaptažodžiai ir slapta informacija bus pažeidžiami! + + + database order + duomenų bazės tvarka + + + name (ascending) + pavadinimas (didėjimo tvarka) + + + name (descending) + pavadinimas (mažėjimo tvarka) + + + unknown + nežinomas + + + Export database to HTML file + Eksportuoti duomenų bazę į HTML failą + + + HTML file + HTML failas + + + + FdoSecrets::DBusMgr + + Failed to deliver message + Nepavyko pristatyti pranešimo + + + Failed to send reply on DBus + Nepavyko išsiųsti atsakymo per "DBus" + + + Unknown + Unknown PID + Nežinoma + + + Unknown + Unknown executable path + Nežinoma + + + <i>PID: %1, Executable: %2</i> + <i>PID: 1234, Executable: /path/to/exe</i> + <i>PID: %1, vykdomasis failas: %2</i> + + + Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. + Veikia dar viena slaptoji tarnyba (%1).<br/>Prieš iš naujo įjungdami Slaptosios tarnybos integraciją, jį sustabdykite / pašalinkite. + + + Failed to register DBus service at %1.<br/> + Nepavyko užregistruoti DBus paslaugos %1.<br/> + + + Failed to register service on DBus at path '%1' + Nepavyko užregistruoti paslaugos "DBus" kelyje "%1" + + + Failed to register database on DBus under the name '%1' + Nepavyko užregistruoti duomenų bazės DBus pavadinimu "%1" + + + Failed to register session on DBus at path '%1' + Nepavyko užsiregistruoti "DBus" kelyje "%1" + + + Failed to register item on DBus at path '%1' + Nepavyko užregistruoti prekės DBus kelyje '%1' + + + Failed to register prompt object on DBus at path '%1' + Nepavyko užregistruoti greito objekto DBus kelyje '%1' + + + + FdoSecrets::Item + + Entry "%1" from database "%2" was used by %3 + Įrašą "%1" iš duomenų bazės "%2" naudojo %3 + + + + FdoSecrets::Service + + %n Entry(s) was used by %1 + %1 is the name of an application + %n Įrašas (-ai) buvo naudojamas (-i) %1%n Įrašas (-ai) buvo naudojamas (-i) %1%n Įrašas (-ai) buvo naudojamas (-i) %1%n Įrašas (-ai) buvo naudojamas (-i) %1 + + + + FdoSecrets::SettingsClientModel + + Unknown + Nežinoma + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Neegzistuojantis / neprieinamas vykdomosios programos kelias. Dukart patikrinkite, ar klientas yra tinkamas. + + + + FdoSecrets::SettingsDatabaseModel + + Unlock to show + Atrakinkite, kad peržiūrėti + + + None + Nėra + + + + FdoSecrets::UnlockPrompt + + %1 (PID: %2) + %1 (PID: %2) + + + + FdoSecretsPlugin + + <b>Fdo Secret Service:</b> %1 + <b>Fdo slaptoji tarnyba:</b> %1 + + + + Group + + [empty] + group has no children + [tuščia] + + + %1 - Clone + %1 - Klonas + + + + HibpDownloader + + Online password validation failed + Nepavyko patvirtinti slaptažodžio internete + + + + IconDownloaderDialog + + Download Favicons + Atsisiųsti Piktogramas + + + Cancel + Atsisakyti + + + Having trouble downloading icons? +You can enable the DuckDuckGo website icon service in the security section of the application settings. + Susiduriate su sunkumais atsisiunčiant piktogramas? +DuckDuckGo svetainės piktogramų paslaugą galite įjungti programos nustatymų saugumo skyriuje. + + + Close + Užverti + + + URL + URL + + + Status + Būsena + + + Please wait, processing entry list… + Palaukite, apdorojamas įrašų sąrašas... + + + Downloading… + Atsisiunčiama... + + + Ok + Gerai + + + Already Exists + Jau Egzistuoja + + + Download Failed + Atsisiųsti Nepavyko + + + Downloading favicons (%1/%2)… + Atsisiunčiamos piktogramos (%1/%2)... + + + + ImportWizard + + Import Wizard + Importavimo vediklis + + + + ImportWizardPageReview + + WizardPage + + + + Entry count: %1 + + + + Group + Grupė + + + Title + Antraštė + + + Username + Naudotojo vardas + + + Password + Slaptažodis + + + Url + + + + Could not load key file. + Nepavyko įkelti rakto failo. + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Forma + + + Import File Selection + + + + Password: + Slaptažodis: + + + Key File: + Rakto failas: + + + Browse… + Naršyti... + + + Import Into: + Importuoti į: + + + New Database + Nauja duomenų bazė + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + + + + Open OPVault + + + + Select import file + + + + All files + Visi failai + + + Key files + Rakto failai + + + Select key file + Pasirinkite rakto failą + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + Laikina duomenų bazė + + + Command: + Komanda: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + + + KMessageWidget + + &Close + &Užverti + + + Close message + Užverti žinutę + + + + Kdbx3Reader + + Missing database headers + Trūksta duomenų bazės antraščių + + + Unable to calculate database key + Nepavyko apskaičiuoti duomenų bazės rakto + + + Unable to issue challenge-response: %1 + Nepavyko pateikti atsakymo į iššūkius: %1 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Pateikti neteisingi prisijungimo duomenys, bandykite dar kartą. +Jei tai kartojasi, jūsų duomenų bazės failas gali būti sugadintas. + + + Header doesn't match hash + Antraštė neatitinka maišą + + + Invalid header id size + Neteisingas antraštės id dydis + + + Invalid header field length: field %1 + Neteisingas antraštės lauko ilgis: laukas %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Neteisingas antraštės duomenų ilgis: laukas %1, %2 laukiamas, %3 rastas + + + + Kdbx3Writer + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Neteisingas simetriškas šifro IV dydis. + + + Unable to issue challenge-response: %1 + Nepavyko pateikti atsakymo į iššūkius: %1 + + + Unable to calculate database key + Nepavyko apskaičiuoti duomenų bazės rakto + + + + Kdbx4Reader + + missing database headers + trūksta duomenų bazės antraščių + + + Unable to calculate database key: %1 + Nepavyko apskaičiuoti duomenų bazės rakto: %1 + + + Invalid header checksum size + Neteisingas antraštės kontrolinės sumos dydis + + + Header SHA256 mismatch + Antraštės SHA256 neatitikimas + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Pateikti neteisingi prisijungimo duomenys, bandykite dar kartą. +Jei tai kartojasi, jūsų duomenų bazės failas gali būti sugadintas. + + + (HMAC mismatch) + (HMAC nesutampa) + + + Unknown cipher + Nežinomas šifras + + + Invalid header id size + Neteisingas antraštės id dydis + + + Invalid header field length: field %1 + Neteisingas antraštės lauko ilgis: laukas %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Neteisingas antraštės duomenų ilgis: laukas %1, %2 laukiamas, %3 rastas + + + Failed to open buffer for KDF parameters in header + Nepavyko atidaryti KDF parametrų buferio antraštėje + + + Unsupported key derivation function (KDF) or invalid parameters + Nepalaikoma rakto išvedimo funkcija (KDF) arba negaliojantys parametrai + + + Legacy header fields found in KDBX4 file. + Senstelėję antraštės laukai, rasti KDBX4 faile. + + + Invalid inner header id size + Neteisingas vidinės antraštės id dydis + + + Invalid inner header field length: field %1 + Neteisingas vidinio antraštės lauko ilgis: laukas %1 + + + Invalid inner header data length: field %1, %2 expected, %3 found + Neteisingas vidinis antraštės duomenų ilgis: laukas %1, %2 laukiamas, %3 rastas + + + Invalid inner header binary size + Neteisingas vidinės antraštės dvejetainis dydis + + + Unsupported KeePass variant map version. + Translation: variant map = data structure for storing meta data + Nepalaikoma KeePass varianto žemėlapio versija. + + + Invalid variant map entry name length + Translation: variant map = data structure for storing meta data + Netinkamas varianto žemėlapio įrašo pavadinimo ilgis + + + Invalid variant map entry name data + Translation: variant map = data structure for storing meta data + Negaliojantys varianto žemėlapio įvesties pavadinimo duomenys + + + Invalid variant map entry value length + Translation: variant map = data structure for storing meta data + Neteisingas varianto žemėlapio įvesties reikšmės ilgis + + + Invalid variant map entry value data + Translation comment: variant map = data structure for storing meta data + Neleistini variantų žemėlapio įvesties reikšmės duomenys + + + Invalid variant map Bool entry value length + Translation: variant map = data structure for storing meta data + Netinkamas varianto žemėlapis "Bool" įvesties reikšmės ilgis + + + Invalid variant map Int32 entry value length + Translation: variant map = data structure for storing meta data + Neteisingas varianto žemėlapis Int32 įvesties reikšmės ilgis + + + Invalid variant map UInt32 entry value length + Translation: variant map = data structure for storing meta data + Neteisingas varianto žemėlapis UInt32 įėjimo vertės ilgis + + + Invalid variant map Int64 entry value length + Translation: variant map = data structure for storing meta data + Neteisingas varianto žemėlapis Int64 įrašo reikšmės ilgis + + + Invalid variant map UInt64 entry value length + Translation: variant map = data structure for storing meta data + Neteisingas varianto žemėlapis UInt64 įėjimo reikšmės ilgis + + + Invalid variant map entry type + Translation: variant map = data structure for storing meta data + Netinkamas varianto žemėlapio įrašo tipas + + + Invalid variant map field type size + Translation: variant map = data structure for storing meta data + Netinkamas varianto žemėlapio lauko tipo dydis + + + + Kdbx4Writer + + Invalid symmetric cipher algorithm. + Neteisingas simetriškas šifro algoritmas. + + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Neteisingas simetriškas šifro IV dydis. + + + Unable to calculate database key: %1 + Nepavyko apskaičiuoti duomenų bazės rakto: %1 + + + Failed to serialize KDF parameters variant map + Translation comment: variant map = data structure for storing meta data + Nepavyko serializuoti KDF parametrų varianto žemėlapio + + + + KdbxReader + + Invalid cipher uuid length: %1 (length=%2) + Neteisingas šifro ilgis: %1 (ilgis=%2) + + + Unable to parse UUID: %1 + Nepavyko išanalizuoti UUID: %1 + + + Unsupported cipher + Nepalaikomas šifras + + + Invalid compression flags length + Netinkamas glaudinimo vėliavėlių ilgis + + + Unsupported compression algorithm + Nepalaikomas glaudinimo algoritmas + + + Invalid master seed size + Netinkamas pagrindinės sėklos dydis + + + Invalid transform seed size + Netinkamas transformacijos sėklos dydis + + + Invalid transform rounds size + Netinkamas transformacijos raundų dydis + + + Invalid start bytes size + Netinkamas pradžios baitų dydis + + + Invalid random stream id size + Neteisingas atsitiktinio srauto ID dydis + + + Invalid inner random stream cipher + Neteisingas vidinis atsitiktinio srauto šifras + + + Failed to read database file. + Nepavyko nuskaityti duomenų bazės failo. + + + The selected file is an old KeePass 1 database (.kdb). + +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. + Pasirinktas failas yra sena KeePass 1 duomenų bazė (.kdb). + +Jį galite importuoti spustelėję Duomenų bazės > "Importuoti KeePass 1 duomenų bazę...". +Tai vienpusė migracija. Negalėsite atidaryti importuotos duomenų bazės naudodami seną KeePassX 0.4 versiją. + + + Not a KeePass database. + Ne KeePass duomenų bazė. + + + Unsupported KeePass 2 database version. + Nepalaikoma KeePass 2 duomenų bazės versija. + + + + KdbxXmlReader + + XML parsing failure: %1 + XML nagrinėjimo nesėkmė: %1 + + + No root group + Nėra šakninės grupės + + + XML error: +%1 +Line %2, column %3 + XML klaida: +%1 +%2 eilutė, %3 stulpelis + + + Missing icon uuid or data + Trūksta piktogramos uuid ar duomenų + + + Missing custom data key or value + Trūksta pasirinktinio duomenų rakto arba reikšmės + + + Multiple group elements + Keletas grupės elementų + + + Null group uuid + Neapibrėžta grupė uuid + + + Invalid group icon number + Neteisingas grupės piktogramos numeris + + + Invalid EnableAutoType value + Neteisinga EnableAutoType reikšmė + + + Invalid EnableSearching value + Neteisinga įgalinti ieškos reikšmę + + + No group uuid found + Nerastas grupės uuid + + + Null DeleteObject uuid + Null DeleteObject uuid + + + Missing DeletedObject uuid or time + Trūksta DeletedObject uuid arba laiko + + + Null entry uuid + Nulinis įrašas uuid + + + Invalid entry icon number + Neteisingas įrašo piktogramos numeris + + + History element in history entry + Istorijos elementas istorijos įraše + + + No entry uuid found + Nerastas įrašo uuid + + + History element with different uuid + Istorijos elementas su skirtingu uuid + + + Duplicate custom attribute found + Rastas dubliuotas tinkintas požymis + + + Entry string key or value missing + Trūksta įrašo eilutės rakto arba reikšmės + + + Entry binary key or value missing + Trūksta įrašo dvejetainio rakto arba reikšmės + + + Auto-type association window or sequence missing + Trūksta automatinio rinkimo susiejimo lango arba sekos + + + Invalid bool value + Neteisinga buliaus reikšmė + + + Invalid date time value + Neteisinga datos laiko reikšmė + + + Invalid color value + Neteisinga spalvos reikšmė + + + Invalid color rgb part + Neteisinga spalvos rgb dalis + + + Invalid number value + Neteisinga skaitmeninė reikšmė + + + Invalid uuid value + Neteisinga uuid reikšmė + + + Unable to decompress binary + Translator meant is a binary data inside an entry + Nepavyksta dekompresuoti dvejetainio režimo + + + + KeeAgentSettings + + Invalid KeeAgent settings file structure. + Neteisinga "KeeAgent" nustatymų failų struktūra. + + + Private key is an attachment but no attachments provided. + Privatus raktas yra priedas, bet jokių priedų nepateikta. + + + Private key is empty + Privatus raktas yra tuščias + + + File too large to be a private key + Failas per didelis, kad būtų privatusis raktas + + + Failed to open private key + Nepavyko atverti privačiojo rakto + + + + KeePass1Reader + + Unable to read keyfile. + Nepavyko perskaityti rakto failo. + + + Not a KeePass database. + Ne KeePass duomenų bazė. + + + Unsupported encryption algorithm. + Nepalaikomas šifravimo algoritmas. + + + Unsupported KeePass database version. + Nepalaikoma KeePass duomenų bazės versija. + + + Unable to read encryption IV + IV = Initialization Vector for symmetric cipher + Nepavyko perskaityti šifravimo IV + + + Invalid number of groups + Neteisingas grupių skaičius + + + Invalid number of entries + Neteisingas įrašų skaičius + + + Invalid content hash size + Neteisingas turinio maišos dydis + + + Invalid transform seed size + Netinkamas transformacijos sėklos dydis + + + Invalid number of transform rounds + Neteisingas transformacijos raundų skaičius + + + Unable to construct group tree + Nepavyko sukurti grupės medžio + + + Root + Šaknis + + + Unable to calculate database key + Nepavyko apskaičiuoti duomenų bazės rakto + + + unable to seek to content position + negali siekti turinio pozicijos + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + Pateikti neteisingi prisijungimo duomenys, bandykite dar kartą. +Jei tai kartojasi, jūsų duomenų bazės failas gali būti sugadintas. + + + Key transformation failed + Rakto transformacija nepavyko + + + Invalid group field type number + Neteisingas grupės lauko tipo numeris + + + Invalid group field size + Netinkamas grupės lauko dydis + + + Read group field data doesn't match size + Skaitymo grupės lauko duomenys neatitinka dydžio + + + Incorrect group id field size + Neteisingas grupės ID lauko dydis + + + Incorrect group creation time field size + Neteisingas grupės kūrimo laiko lauko dydis + + + Incorrect group modification time field size + Neteisingas grupės modifikavimo laiko lauko dydis + + + Incorrect group access time field size + Neteisingas grupės prieigos laiko lauko dydis + + + Incorrect group expiry time field size + Neteisingas grupės galiojimo pabaigos laiko lauko dydis + + + Incorrect group icon field size + Neteisingas grupės piktogramos lauko dydis + + + Incorrect group level field size + Neteisingas grupės lygio lauko dydis + + + Invalid group field type + Neteisingas grupės lauko tipas + + + Missing group id or level + Trūksta grupės ID arba lygio + + + Missing entry field type number + Trūksta įrašo lauko tipo numerio + + + Invalid entry field size + Neteisingas įrašo lauko dydis + + + Read entry field data doesn't match size + Skaitymo įvedimo lauko duomenys neatitinka dydžio + + + Invalid entry UUID field size + Netinkamas įrašo UUID lauko dydis + + + Invalid entry group id field size + Netinkamas įrašo grupės ID lauko dydis + + + Invalid entry icon field size + Netinkamas įrašo piktogramos lauko dydis + + + Invalid entry creation time field size + Netinkamas įrašo kūrimo laiko lauko dydis + + + Invalid entry modification time field size + Netinkamas įrašo modifikavimo laiko lauko dydis + + + Invalid entry expiry time field size + Negaliojantis įrašo galiojimo laikas lauko dydis + + + Invalid entry field type + Neteisingas įrašo lauko tipas + + + + KeeShare + + Invalid sharing reference + Neteisinga bendrinimo nuoroda + + + Inactive share %1 + Neaktyvi dalis %1 + + + Imported from %1 + Importuota iš %1 + + + Exported to %1 + Eksportuota į %1 + + + Synchronized with %1 + Sinchronizuota su %1 + + + Import is disabled in settings + Importas išjungtas nustatymuose + + + Export is disabled in settings + Eksportas išjungtas nustatymuose + + + Inactive share + Neaktyvus bendrinimas + + + Imported from + Importuota iš + + + Exported to + Eksportuota į + + + Synchronized with + Sinchronizuota su + + + + KeyComponentWidget + + Key Component + Pagrindinis komponentas + + + Key Component Description + Pagrindinio komponento aprašymas + + + Cancel + Atsisakyti + + + Key Component set, click to change or remove + Pagrindinių komponentų rinkinys, spustelėkite, kad pakeistumėte arba pašalintumėte + + + + KeyFileEditWidget + + Generate a new key file + Generuoti naują rakto failą + + + Generate + Generuoti + + + Generate a new key file or choose an existing one to protect your database. + Sukurti naują rakto failą arba pasirinkti esamą, kad apsaugoti duomenų bazę. + + + Note: Do NOT use a file that may change as that will prevent you from unlocking your database. + astaba: NENAUDOKITE failo, kuris gali pasikeisti, nes dėl to nebegalėsite atrakinti duomenų bazės. + + + Browse for key file + Ieškoti rakto failo + + + Browse… + Naršyti... + + + Old key file format + Senas rakto failo formatas + + + You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. + Pasirinkote seno formato rakto failą, kurio KeePassXC<br>ateityje gali nebepalaikyti.<br><br>Apsvarstykite galimybę vietoj jo sukurti naują rakto failą. + + + Error loading the key file '%1' +Message: %2 + Klaida įkeliant rakto failą '%1' +Žinutė: %2 + + + Key File + Rakto failas + + + Add Key File + Pridėti Rakto Failą + + + Change Key File + Keisti Rakto Failą + + + Remove Key File + Pašalinti Rakto Failą + + + Key File set, click to change or remove + Rakto Failas nustatytas, spustelėkite, jei norite pakeisti arba pašalinti + + + <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>Galite pridėti rakto failą su atsitiktiniais baitais, kad užtikrintumėte papildomą saugumą.</p><p>Turite jį laikyti paslaptyje ir niekada neprarasti, antraip būsite užblokuoti.</p> + + + Key files + Rakto failai + + + All files + Visi failai + + + Create Key File… + Sukurti Rakto Failą... + + + Error creating key file + Klaida kuriant rakto failą + + + Unable to create key file: %1 + Nepavyko sukurti rakto failo: %1 + + + Select a key file + Pasirinkite rakto failą + + + Invalid Key File + Neteisingas Rakto Failas + + + You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. + Dabartinės duomenų bazės negalima naudoti kaip rakto failo. Pasirinkite kitą failą arba sukurkite naują rakto failą. + + + Suspicious Key File + įtartinas raktų failas + + + The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. +Are you sure you want to continue with this file? + Pasirinktas rakto failas atrodo kaip slaptažodžių duomenų bazės failas. Rakto failas turi būti statinis failas, kuris niekada nesikeičia, nes priešingu atveju visiems laikams prarasite prieigą prie savo duomenų bazės. +Ar tikrai norite tęsti darbą su šiuo failu? + + + + MacUtils + + Invalid key code + Netinkamas rakto kodas + + + Global shortcut already registered to %1 + Visuotinis spartusis klavišas jau užregistruotas į %1 + + + Could not register global shortcut + Nepavyko užregistruoti visuotinio sparčiojo klavišo + + + + MainWindow + + &Database + &Duomenų bazė + + + &Recent Databases + &Neseniai naudotos duomenų bazės + + + &Export + &Eksportuoti + + + &Help + Ž&inynas + + + &Entries + &Įrašai + + + Copy Att&ribute + Kopijuoti atr&ibutą + + + TOTP + TOTP + + + Tags + Žymos + + + &Groups + &Grupės + + + &Tools + Į&rankiai + + + View + Rodinys + + + Theme + Tema + + + &Quit + &Baigti + + + &About + &Apie + + + &Check for Updates + &Tikrinti ar yra atnaujinimų + + + &Open Database… + &Atidaryti duomenų bazę... + + + &Save Database + &Išsaugoti duomenų bazę + + + &Close Database + &Uždaryti duomenų bazę + + + &New Database… + &Nauja duomenų bazė... + + + &Merge From Database… + &Įtraukti iš duomenų bazės... + + + &New Entry… + &Naujas įrašas… + + + &Edit Entry… + &Redaguoti įrašą... + + + &Delete Entry… + &Ištrinti įrašą... + + + &New Group… + &Nauja grupė... + + + &Edit Group… + &Redaguoti grupę... + + + &Delete Group… + &Ištrinti grupę... + + + Download All &Favicons… + Atsisiųsti visas piktogramas... + + + Sort &A-Z + Rušiuoti nuo &A-Z + + + Sort &Z-A + Rušiuoti nuo &Z-A + + + Sa&ve Database As… + Iš&saugoti duomenų bazę kaip... + + + Database &Security… + &Duomenų bazės saugumas... + + + Database &Reports… + Duomenu bazės &ataskaitos... + + + &Database Settings… + &Duomenų bazės nustatymai... + + + &Clone Entry… + &Klonuoti įrašą... + + + Move u&p + Perkelti a&ukštyn + + + Move do&wn + Perkelti že&miau + + + Copy &Username + Kopijuoti &slapyvardį + + + Copy &Password + Kopijuoti &slaptažodį + + + &Settings + &Nustatymai + + + &Password Generator + &Slaptažodžių generatorius + + + Perform &Auto-Type + Atlikti &automatinį rinkimą + + + Download &Favicon + Atsisiųsti &piktogramą + + + Open &URL + Atverti &URL + + + &Lock Database + &Užrakinti duomenų bazę + + + Lock &All Databases + Užrakinti &visas duomenų bazes + + + &Title + &Antraštė + + + Copy &URL + Kopijuoti &URL + + + &Notes + &Pastabos + + + &CSV File… + &CSV failas... + + + &HTML File… + &HTML failas... + + + KeePass 1 Database… + KeePass 1 Duomenų bazė... + + + 1Password Vault… + 1Password saugykla... + + + CSV File… + CSV Failas... + + + Show TOTP + Rodyti NTVS + + + Show QR Code + Rodyti QR Kodą + + + Set up TOTP… + Nustatyti TOTP... + + + Copy &TOTP + Kopijuoti &NTVS + + + Copy Password and TOTP + Kopijuoti slaptažodį ir TOTP + + + E&mpty recycle bin + Iš&valyti šiukšlinę + + + &Donate + &Paaukoti + + + Report a &Bug + Pranešti apie &klaidą + + + &Getting Started + &Kaip pradėti + + + Open Getting Started Guide + Atidaryti pradžios vadovą + + + &Online Help + &Internetinė pagalba + + + &User Guide + &Naudotojo vadovas + + + Open User Guide + Atidaryti naudotojo vadovą + + + &Keyboard Shortcuts + &Klaviatūros spartieji klavišai + + + Save Database Backup… + Išsaugoti duomenų bazės atsarginę kopiją... + + + Add key to SSH Agent + Pridėti raktą prie SSH agento + + + Remove key from SSH Agent + Pašalinti raktą iš SSH agento + + + Compact Mode + Kompaktiškas režimas + + + Automatic + Automatinis + + + Light + Šviesi + + + Dark + Tamsi + + + Classic (Platform-native) + Klasikinis (platformos gimtoji) + + + Show Menubar + Rodyti meniu juostą + + + Show Toolbar + Rodyti įrankių juostą + + + Show Preview Panel + Rodyti Peržiūros Skydelį + + + Always on Top + Visada ant Viršaus + + + Hide Usernames + Slėpti naudotojo vardus + + + Hide Passwords + Slėpti slaptažodžius + + + Clone Group... + Klonuoti Grupę... + + + &XML File… + &XML failas… + + + Clear history + Išvalyti istoriją + + + Access error for config file %1 + Konfigūracijos failo %1 prieigos klaida + + + Don't show again for this version + Daugiau nerodyti šioje versijoje + + + 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. + ĮSPĖJIMAS: Jūs naudojate nestabilią KeePassXC versiją. +Egzistuoja didelė pažeidimų rizika, turėkite atsarginę duomenų bazių kopiją. +Ši versija neskirta naudoti darbui. + + + NOTE: You are using a pre-release version of KeePassXC. +Expect some bugs and minor issues, this version is meant for testing purposes. + PASTABA: Jūs naudojate ankstyvąją KeePassXC versiją. +Tikėkitės klaidų ir nedidelių problemų, ši versija skirta testavimo tikslams. + + + No Tags + Nėra žymų + + + Restore Entry(s) + Atkurti įrašą (-us)Atkurti įrašą (-us)Atkurti įrašą (-us)Atkurti įrašą (-us) + + + Settings + Nustatymai + + + Check for updates on startup? + Tikrinti ar yra atnaujinimų paleidimo metu? + + + Would you like KeePassXC to check for updates on startup? + Ar norite, kad KeePassXC patikrintų, ar yra atnaujinimų paleidimo metu? + + + You can always check for updates manually from the application menu. + Ar yra atnaujinimų visada galite patikrinti rankiniu būdu iš programos meniu. + + + Toggle window + Perjungti langą + + + Quit KeePassXC + Išeiti iš KeePassXC + + + %1 Entry(s) + %1 Įrašas%1 Įrašai%1 Įrašų%1 Įrašas (-ai) + + + Please present or touch your YubiKey to continue… + Norėdami tęsti, pateikite arba palieskite savo YubiKey raktą... + + + Restart Application? + Perleisti Programą? + + + You must restart the application to apply this setting. Would you like to restart now? + Norėdami pritaikyti šį nustatymą, turite iš naujo paleisti programą. Ar norite iš naujo paleisti programą dabar? + + + Allow Screen Capture + Leisti fotografuoti ekraną + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + Importuoti… + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + Atverti duomenų bazę + + + Create Database + Sukurti duomenų bazę + + + Merge From Database + + + + Create Entry + Sukurti įrašą + + + Edit Entry + Redaguoti Įrašą + + + Delete Entry + Ištrinti įrašą + + + Create Group + Sukurti grupę + + + Edit Group + Redaguoti Grupę + + + Delete Group + Ištrinti grupę + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + Pakelti įrašą + + + Move Entry Down + Nuleisti įrašą + + + Copy Username + Kopijuoti naudotojo vardą + + + Copy Password + Kopijuoti Slaptažodį + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + Kopijuoti URL + + + Copy Notes + + + + Export to CSV + Eksportuoti į CSV + + + Export to HTML + Eksportuoti į HTML + + + Import KeePass1 Database + Importuoti KeePass1 duomenų bazę + + + Import 1Password Vault + + + + Import CSV File + Importuoti CSV failą + + + Show TOTP QR Code + + + + Set up TOTP + Nustatyti NTVS + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + Eksportuoti į XML + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Slaptažodžių generatorius + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + + + + ManageDatabase + + Database settings + Duomenų bazės nustatymai + + + Edit database settings + Keisti duomenų bazės nustatymus + + + Unlock database + Atrakinti duomenų bazę + + + Unlock database to show more information + Atrakinkite duomenų bazę, kad būtų rodoma daugiau informacijos + + + Lock database + Užrakinti duomenų bazę + + + + ManageSession + + Disconnect + Atsijungti + + + Disconnect this application + Atjungti šią programą + + + Reset + Atstatyti + + + Reset any remembered decisions for this application + Iš naujo nustatyti visus įsimintus šios programos pasirinkimus + + + + Merger + + Creating missing %1 [%2] + Kuriamas trūkstamas %1 [%2] + + + Relocating %1 [%2] + Perkėlimas į kitą vietą %1 [%2] + + + Overwriting %1 [%2] + Perrašymas %1 [%2] + + + Synchronizing from newer source %1 [%2] + Sinchronizuojama iš naujesnio šaltinio %1 [%2] + + + Synchronizing from older source %1 [%2] + Sinchronizuojama iš senesnio šaltinio %1 [%2] + + + Deleting child %1 [%2] + Vaiko %1 trynimas [%2] + + + Deleting orphan %1 [%2] + Našlaičio %1 [%2] išbraukimas + + + Changed deleted objects + Pakeisti ištrinti objektai + + + Adding missing icon %1 + Pridedama trūkstama piktograma %1 + + + Removed custom data %1 [%2] + Pašalinti pasirinktiniai duomenys %1 [%2] + + + Adding custom data %1 [%2] + Pasirinktinių duomenų %1 pridėjimas [%2] + + + + NewDatabaseWizard + + Create a new KeePassXC database… + Sukurti naują KeePassXC duomenų bazę... + + + Root + Root group + Šaknis + + + + NewDatabaseWizardPage + + WizardPage + WizardPage + + + Encryption Settings + Šifravimo nustatymai + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Čia galite derinti duomenų bazės šifravimo nustatymus. Nesijaudinkite, vėliau galėsite juos keisti duomenų bazės nustatymuose. + + + + NewDatabaseWizardPageDatabaseKey + + Database Credentials + Duomenų bazės Įgaliojimai + + + A set of credentials known only to you that protects your database. + Tik jums žinomas įgaliojimų rinkinys, kuriuo apsaugoma jūsų duomenų bazė. + + + + NewDatabaseWizardPageEncryption + + Encryption Settings + Šifravimo nustatymai + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Čia galite derinti duomenų bazės šifravimo nustatymus. Nesijaudinkite, vėliau galėsite juos keisti duomenų bazės nustatymuose. + + + + NewDatabaseWizardPageMetaData + + General Database Information + Bendra duomenų bazės informacija + + + Please fill in the display name and an optional description for your new database: + Užpildykite rodomą pavadinimą ir pasirinktinį naujos duomenų bazės aprašymą: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Įrašyti priedą + + + New entry attachment + + + + + NixUtils + + Password Manager + Slaptažodžių Tvarkyklė + + + Global shortcut already registered to %1 + Visuotinis spartusis klavišas jau užregistruotas į %1 + + + Could not register global shortcut + Nepavyko užregistruoti visuotinio sparčiojo klavišo + + + + OpData01 + + Invalid OpData01, does not contain header + Negalioja opData01, nėra antraštės + + + Unable to read all IV bytes, wanted 16 but got %1 + Negalėdamas perskaityti visų IV baitų, norėjo 16, bet gavo %1 + + + Unable to init cipher for opdata01: %1 + Nepavyko init šifro opdata01: %1 + + + Unable to read all HMAC signature bytes + Nepavyko nuskaityti visų HMAC parašo baitų + + + Malformed OpData01 due to a failed HMAC + Netinkamai suformuotas OpData01 dėl nepavykusio HMAC + + + Unable to process clearText in place + Nepavyko apdoroti clearText vietoje + + + Expected %1 bytes of clear-text, found %2 + Numatomas %1 baitas skaidraus teksto, nustatytas %2 + + + + OpVaultReader + + Directory .opvault must exist + Katalogas .opvault turi egzistuoti + + + Directory .opvault must be readable + Katalogas .opvault turi būti skaitomas + + + Directory .opvault/default must exist + Katalogas .opvault/default turi egzistuoti + + + Directory .opvault/default must be readable + Katalogas .opvault/default turi būti skaitomas + + + Unable to decode masterKey: %1 + Nepavyksta iššifruoti "masterKey": %1 + + + Unable to derive master key: %1 + Nepavyko išvesti pagrindinio rakto: %1 + + + + OpenSSHKey + + Invalid key file, expecting an OpenSSH key + Neteisingas rakto failas, tikimasi OpenSSH rakto + + + PEM boundary mismatch + PEM ribos neatitikimas + + + Base64 decoding failed + Base64 dekodavimas patyrė nesėkmę + + + Key file way too small. + Rakto failas buvo per mažas. + + + Key file magic header id invalid + Neteisingas rakto failo magiškosios antraštės id + + + Found zero keys + Rasta nulis raktų + + + Failed to read public key. + Nepavyko perskaityti viešojo rakto. + + + Corrupted key file, reading private key failed + Sugadintas rakto failas, privačiojo rakto skaitymas nepavyko + + + Unsupported key type: %1 + Nepalaikomas rakto tipas: %1 + + + No private key payload to decrypt + Nėra jokios privačiojo rakto naudingosios apkrovos, kurią iššifruoti + + + Unknown cipher: %1 + Nežinomas šifras: %1 + + + AES-256/GCM is currently not supported + AES-256/GCM šiuo metu nepalaikomas + + + Passphrase is required to decrypt this key + Norint iššifruoti šį raktą, reikalinga slaptafrazė + + + Key derivation failed: %1 + Rakto išvedimas nepavyko: %1 + + + Cipher IV is too short for MD5 kdf + Iv šifras yra per trumpas MD5 kdf + + + Unknown KDF: %1 + Nežinomas KDF: %1 + + + Failed to initialize cipher: %1 + Nepavyko inicializuoti šifro: %1 + + + Decryption failed: %1 + Nepavyko iššifruoti: %1 + + + Decryption failed, wrong passphrase? + Iššifravimas nepavyko, neteisinga slaptafrazė? + + + Unexpected EOF while reading key + Netikėtas EOF skaitymo klavišas + + + Unsupported key part + Nepalaikoma rakto dalis + + + Unexpected EOF while reading public key + Netikėta failo pabaiga, skaitant viešąjį raktą + + + Unknown key type: %1 + Nežinomas rakto tipas: %1 + + + Unexpected EOF while reading private key + Netikėta failo pabaiga, skaitant privatųjį raktą + + + Can't write public key as it is empty + Nepavyksta rašyti viešojo rakto, nes jis tuščias + + + Unexpected EOF when writing public key + Netikėta failo pabaiga, rašant viešąjį raktą + + + Can't write private key as it is empty + Nepavyksta rašyti privačiojo rakto, nes jis tuščias + + + Unexpected EOF when writing private key + Netikėta failo pabaiga, rašant privatųjį raktą + + + (encrypted) + (šifruota) + + + + OpenSSHKeyGenDialog + + SSH Key Generator + + + + Type + Tipas + + + Bits + + + + Comment + Komentaras + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + + + + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Atsisakyti + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + Nepavyksta atverti fail + + + Cannot open file "%1" for writing. + Nepavyksta atverti failo „%1“ rašymui + + + Cannot write to file + Nepavyksta rašyti į failą + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + Naudotojo vardas: %1 + + + Group + Grupė + + + Database + Duomenų bazė + + + Import Passkey + + + + Import + Importuoti + + + Cancel + Atsisakyti + + + Entry + Įrašas + + + Create new entry + Sukurti naują įrašą + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Visi failai + + + Cannot open file + Nepavyksta atverti fail + + + Cannot open file "%1" for reading. + Nepavyko atverti failo „%1“ skaitymui. + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + + + + + PasswordEditWidget + + Enter password: + Įrašykite slaptažodį: + + + Password field + Slaptažodžio laukas + + + Confirm password: + Patvirtinkite slaptažodį: + + + Repeat password field + Slaptažodžio pakartojimo laukas + + + Password + Slaptažodis + + + Add Password + Pridėti Slaptažodį + + + Change Password + Keisti Slaptažodį + + + Remove Password + Pašalinti Slaptažodį + + + Password set, click to change or remove + Slaptažodis nustatytas, spustelėkite, jei norite pakeisti arba pašalinti + + + <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> + <p>Slaptažodis yra pagrindinis būdas apsaugoti jūsų duomenų bazę.</p><p>Geri slaptažodžiai yra ilgi ir unikalūs. KeePassXC gali jį sugeneruoti už jus.</p> + + + Passwords do not match. + Slaptažodžiai nesutampa. + + + + PasswordGeneratorWidget + + Generate Password + Generuoti Slaptažodį + + + strength + Password strength + stiprumas + + + entropy + entropija + + + Generated password + Sugeneruotas slaptažodis + + + %p% + %p% + + + Regenerate password + Regeneruoti slaptažodį + + + Copy password + Kopijuoti slaptažodį + + + Password + Slaptažodis + + + &Length: + &Ilgis: + + + Password length + Slaptažodžio ilgis + + + Switch to advanced mode + Perjungti į išplėstinę veikseną + + + Advanced + Išplėstiniai + + + Character Types + Simbolių tipai + + + Special characters + Specialieji simboliai + + + Quotes + Kabutės + + + Punctuation + Skyryba + + + Dashes and Slashes + Brūkšneliai ir pasvirieji brūkšniai + + + Upper-case letters + Didžiosios raidės + + + Numbers + Skaičiai + + + Lower-case letters + Mažosios raidės + + + Math Symbols + Matematikos Simboliai + + + Extended ASCII + Papildomi ASCII + + + Braces + Petnešos + + + Do not include: + Neįtraukti: + + + Additional characters to use for the generated password + Papildomi simboliai, kuriuos naudoti sugeneruotam slaptažodžiui + + + Additional characters + Papildomi simboliai + + + Add non-hex letters to "do not include" list + Pridėkite ne šešiakampes raides į sąrašą "neįtraukti" + + + Hex Passwords + Šešiakampiai slaptažodžiai + + + Hex + Hex + + + Character set to exclude from generated password + Simbolių rinkinys, kurį reikia išskirti iš sugeneruoto slaptažodžio + + + Excluded characters + Neįtraukti simboliai + + + Also choose from: + Taip pat pasirinkti iš: + + + Exclude look-alike characters + Pašalinti panašiai atrodančius simbolius + + + Pick characters from every group + Parinkti simbolius iš kiekvienos grupės + + + Passphrase + Slaptafrazė + + + Word Separator: + Žodžių skirtukas: + + + Wordlist: + Žodžių sąrašas: + + + Word Count: + Žodžių skaičius: + + + Word Case: + Žodžio atvejis: + + + Delete selected wordlist + Ištrinti pasirinktą žodžių sąrašą + + + Add custom wordlist + Pridėti pasirinktinį žodžių sąrašą + + + Close + Užverti + + + Esc + Esc + + + Apply Password + Taikyti slaptažodį + + + Regenerate password (%1) + Regeneruoti slaptažodį (%1) + + + lower case + mažosios raidės + + + UPPER CASE + DIDŽIOSIOS RAIDĖS + + + Title Case + Pavadinimo atvejis + + + (SYSTEM) + (SISTEMA) + + + Entropy: %1 bit + Entropija: %1 bitų + + + Password Quality: %1 + Slaptažodžio kokybė: %1 + + + Poor + Password quality + Blogas + + + Weak + Password quality + Silpnas + + + Good + Password quality + Geras + + + Excellent + Password quality + Puikus + + + Confirm Delete Wordlist + Patvirtinti žodžių sąrašo ištrinimą + + + Do you really want to delete the wordlist "%1"? + Ar tikrai norite ištrinti žodžių sąrašą "%1"? + + + Failed to delete wordlist + Nepavyko ištrinti žodžių sąrašo + + + Wordlists + Žodžių sąrašai + + + All files + Visi failai + + + Select Custom Wordlist + Pasirinkite pasirinktinį žodžių sąrašą + + + Overwrite Wordlist? + Perrašyti žodžių sąrašą? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + "Wordlist" "%1" jau egzistuoja kaip pasirinktinis žodžių sąrašas. +Ar norite jį perrašyti? + + + Failed to add wordlist + Nepavyko pridėti žodžių sąrašo + + + Logograms + Logogramos + + + Special Characters + Specialūs simboliai + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Slaptažodžiai nesutampa + + + Passwords match so far + Kol kas slaptažodžiai sutampa + + + Toggle Password (%1) + Perjungti slaptažodį (%1) + + + Generate Password (%1) + Generuoti Slaptažodį (%1) + + + Warning: Caps Lock enabled! + Įspėjimas: įjungtas "Caps Lock"! + + + Quality: %1 + Kokybė: %1 + + + Poor + Password quality + Blogas + + + Weak + Password quality + Silpnas + + + Good + Password quality + Geras + + + Excellent + Password quality + Puikus + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + + + + PickcharsDialog + + KeePassXC - Pick Characters + KeePassXC - Rinkitės simbolius + + + Select characters to type, navigate with arrow keys, Ctrl + S submits. + Pasirinkite simbolius, kuriuos norite įvesti, naršykite rodyklių klavišais, pateikia Ctrl + S. + + + Press &Tab between characters + Paspauskite ir tabuliuokite tarp simbolių + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + + + QMessageBox + + Overwrite + Perrašyti + + + Delete + Ištrinti + + + Move + Perkelti + + + Empty + Tuščia + + + Remove + Šalinti + + + Skip + Praleisti + + + Disable + Išjungti + + + Merge + Sujungti + + + Continue + Tęsti + + + Continue with weak password + Tęsti naudojant silpną slaptažodį + + + + QObject + + Database not opened + Duomenų bazė neatverta + + + Database hash not available + Duomenų bazės maiša yra neprieinama + + + Client public key not received + Kliento viešasis raktas negautas + + + Cannot decrypt message + Nepavyksta iššifruoti žinutės + + + Action cancelled or denied + Veiksmo atsisakyta arba jis atmestas + + + Message encryption failed. + Nepavyko užšifruoti žinutės. + + + KeePassXC association failed, try again + KeePassXC asociacija nepavyko, bandykite dar kartą + + + Encryption key is not recognized + Šifravimo raktas yra neatpažintas + + + Incorrect action + Neteisingas veiksmas + + + Empty message received + Gauta tuščia žinutė + + + No URL provided + Nepateiktas URL + + + No logins found + Nerasta prisijungimų + + + No groups found + Nerasta jokių grupių + + + Cannot create new group + Negalima sukurti naujos grupės + + + No valid UUID provided + Nepateikiamas galiojantis UUID + + + Unknown error + Nežinoma klaida + + + Browser Integration + Naršyklės integracija + + + Browser Plugin Failure + Naršyklės plėtinio gedimas + + + Could not save the native messaging script file for %1. + Nepavyko įrašyti vietinio pranešimų scenarijaus failo % 1. + + + Username for the entry. + Įrašo naudotojo vardas. + + + username + naudotojo vardas + + + URL for the entry. + Įrašo URL. + + + URL + URL + + + Notes for the entry. + Įrašo pastabos. + + + Notes + Pastabos + + + Prompt for the entry's password. + Klausti įrašo slaptažodžio. + + + Generate a password for the entry. + Generuoti įrašui slaptažodį. + + + Add a new entry to a database. + Pridėti naują įrašą į duomenų bazę. + + + Path of the entry to add. + Įrašo, kurį pridėti, kelias. + + + Cannot generate a password and prompt at the same time. + Negalima generuoti slaptažodžio ir užklausos tuo pačiu metu. + + + Could not create entry with path %1. + Nepavyko sukurti įrašo su keliu %1. + + + Enter password for new entry: + Įveskite naujo įrašo slaptažodį: + + + Writing the database failed %1. + Rašymas į duomenų bazę patyrė nesėkmę %1. + + + Successfully added entry %1. + Sėkmingai pridėtas įrašas %1. + + + Adds a new group to a database. + Į duomenų bazę įtraukia naują grupę. + + + Path of the group to add. + Pridedamos grupės kelias. + + + Group %1 already exists! + Grupė %1 jau egzistuoja! + + + Group %1 not found. + Grupė %1 nerasta. + + + Successfully added group %1. + Sėkmingai pridėta grupė %1. + + + Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. + Patikrinkite, ar kokie nors slaptažodžiai nebuvo viešai nutekinti. FILENAME turi būti failo, kuriame sha-1 pateikiamos nutekėjusių slaptažodžių maišos HIBP formatu, kelias, kaip galima iš https://haveibeenpwned.com/Passwords. + + + FILENAME + FILENAME + + + Path to okon-cli to search a formatted HIBP file + Kelias į okon-cli ieškoti suformatuoto HIBP failo + + + okon-cli + okon-cli + + + Analyze passwords for weaknesses and problems. + Analizuoti slaptažodžius, ieškant trūkumų ir problemų. + + + Cannot find HIBP file: %1 + Nepavyko rasti HIBP failo: %1 + + + Evaluating database entries using okon… + Vertiname duomenų bazės įrašus naudojant okon... + + + Failed to open HIBP file %1: %2 + Nepavyko atidaryti HIBP failo %1: %2 + + + Evaluating database entries against HIBP file, this will take a while… + Vertiname duomenų bazės įrašus pagal HIBP failą, tai užtruks... + + + Password for '%1' has been leaked %2 time(s)! + "%1" slaptažodis buvo nutekintas %2 kartus per (-ius)!"%1" slaptažodis buvo nutekintas %2 kartus per (-ius)!"%1" slaptažodis buvo nutekintas %2 kartus per (-ius)!"%1" slaptažodis buvo nutekintas %2 kartus per (-ius)! + + + Password for '%1' has been leaked! + '%1' slaptažodis buvo nutekintas! + + + Export an attachment of an entry. + Eksportuoti įrašo priedą. + + + Path of the entry with the target attachment. + Įrašo su numatytu priedu kelias. + + + Name of the attachment to be exported. + Eksportuojamo priedo pavadinimas. + + + Path to which the attachment should be exported. + Kelias, į kurį turėtų būti eksportuojamas priedas. + + + Could not find entry with path %1. + Nepavyko rasti įrašo su keliu %1. + + + Could not find attachment with name %1. + Nepavyko rasti priedo su pavadinimu %1. + + + No export target given. Please use '--stdout' or specify an 'export-file'. + Eksporto tikslas nenurodytas. Naudokite '--stdout' arba nurodykite 'export-file'. + + + Could not open output file %1. + Nepavyko atidaryti išvesties failo %1. + + + Successfully exported attachment %1 of entry %2 to %3. + Sėkmingai eksportuotas %1 įrašo %2 priedas į %3. + + + Overwrite existing attachments. + Perrašyti esamus priedus. + + + Imports an attachment to an entry. + Importuoja priedą į įrašą. + + + Path of the entry. + Įrašo kelias. + + + Name of the attachment to be added. + Pridedamo priedo pavadinimas. + + + Path of the attachment to be imported. + Importuojamo priedo kelias. + + + Attachment %1 already exists for entry %2. + Įraše %2 jau egzistuoja priedas %1. + + + Could not open attachment file %1. + Nepavyko atidaryti priedo failo %1. + + + Successfully imported attachment %1 as %2 to entry %3. + Sėkmingai importuotas priedas %1 kaip %2 į įrašą %3. + + + Remove an attachment of an entry. + Pašalinti įrašo priedą. + + + Name of the attachment to be removed. + Šalinamo priedo pavadinimas. + + + Successfully removed attachment %1 from entry %2. + Sėkmingai pašalintas priedas %1 iš įrašo %2. + + + Copy the given attribute to the clipboard. Defaults to "password" if not specified. + Don't translate "password", it refers to the attribute. + Kopijuoti nurodytą atributą į iškarpinę. Jei nenurodyta, numatytoji reikšmė yra "slaptažodis". + + + Copy the current TOTP to the clipboard (equivalent to "-a totp"). + Kopijuoti dabartinį TOTP į iškarpinę (atitinka "-a totp"). + + + Must match only one entry, otherwise a list of possible matches is shown. + Turi atitikti tik vieną įrašą, priešingu atveju rodomas galimų atitikmenų sąrašas. + + + Copy an entry's attribute to the clipboard. + Kopijuoti įrašo atributą į iškarpinę. + + + Path of the entry to clip. + clip = copy to clipboard + Įrašo, kurį iškirpti, kelias. + + + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). + Laiko tarpas prieš išvalant iškarpinę (numatytoji reikšmė %1 sekundės, jei norite neriboto laiko, nustatykite 0). + + + Invalid timeout value %1. + Netinkama laiko tarpo reikšmė %1. + + + Multiple entries matching: + Keli įrašai atitinka: + + + Using matching entry: %1 + Naudojamas atitinkantis įrašas: %1 + + + Entry %1 not found. + Įrašas %1 nerastas. + + + ERROR: Please specify one of --attribute or --totp, not both. + KLAIDA: Prašome nurodyti vieną iš --attribute arba --totp, bet ne abu. + + + Entry with path %1 has no TOTP set up. + Įraše, kurio kelias %1, nenustatytas TOTP. + + + ERROR: attribute %1 is ambiguous, it matches %2. + KLAIDA: atributas %1 yra dviprasmiškas, jis atitinka %2. + + + Attribute "%1" not found. + Atributas "%1" nerastas. + + + Entry's "%1" attribute copied to the clipboard! + Įrašo atributas "%1" nukopijuotas į iškarpinę! + + + Clearing the clipboard in %1 second(s)... + Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)... + + + Clipboard cleared! + Iškarpinė išvalyta! + + + Close the currently opened database. + Uždaryti šiuo metu atidarytą duomenų bazę. + + + Display this help. + Rodyti šią pagalbą. + + + Silence password prompt and other secondary outputs. + Tylėkite slaptažodžio raginimą ir kitus antrinius išėjimus. + + + Key file of the database. + Duomenų bazės rakto failas. + + + path + kelias + + + Deactivate password key for the database. + Deaktyvuoti duomenų bazės slaptažodžio raktą. + + + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). + Yubikey lizdas ir neprivalomas serialas, naudojamas prieigai prie duomenų bazės (pvz., 1:7370001). + + + slot[:serial] + lizdas[:serija] + + + Missing positional argument(s). + Trūksta pozicinio (-ių) argumento (-ų). + + + Too many arguments provided. + Pateikta per daug argumentų. + + + Path of the database. + Duomenų bazės kelias. + + + Target decryption time in MS for the database. + Norimas duomenų bazės iššifravimo laikas ms. + + + time + laikas + + + Set the key file for the database. + Nustatyti duomenų bazės raktų failą. + + + Set a password for the database. + Nustatyti duomenų bazės slaptažodį. + + + Create a new database. + Sukurti naują duomenų bazę. + + + Invalid decryption time %1. + Netinkamas iššifravimo laikas %1. + + + Target decryption time must be between %1 and %2. + Norimas iššifravimo laikas turi būti nuo %1 iki %2. + + + Failed to set database password. + Nepavyko nustatyti duomenų bazės slaptažodžio. + + + Loading the key file failed + Rakto failo įkėlimas nepavyko + + + No key is set. Aborting database creation. + Nenustatytas joks raktas. Duomenų bazės sukūrimas nutraukiamas. + + + Benchmarking key derivation function for %1ms delay. + Lyginamosios analizės rakto išvedimo funkcija % 1 ms delsai. + + + Setting %1 rounds for key derivation function. + Klavišo išvedimo funkcijos %1 raundų nustatymas. + + + error while setting database key derivation settings. + klaida nustatant duomenų bazės rakto išvesties parametrus. + + + File %1 already exists. + Failas %1 jau yra. + + + Failed to save the database: %1. + Nepavyko įrašyti duomenų bazės: %1. + + + Successfully created new database. + Nauja duomenų bazė sėkmingai sukurta. + + + Unset the password for the database. + Panaikinti duomenų bazės slaptažodį. + + + Unset the key file for the database. + + + + Edit a database. + Redaguoti duomenų bazę + + + Cannot use %1 and %2 at the same time. + Negalima vienu metu naudoti %1 ir %2. + + + Could not change the database key. + Nepavyko pakeisti duomenų bazės rakto. + + + Database was not modified. + Duomenų bazė nebuvo modifikuota. + + + Writing the database failed: %1 + Nepavyko įrašyti duomenų bazės: %1 + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + Negalima pašalinti slaptažodžio: Duomenų bazėje nėra slaptažodžio. + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + Negalima pašalinti visų duomenų bazės raktų. + + + Show a database's information. + Rodyti duomenų bazės informaciją. + + + UUID: + UUID: + + + Name: + Pavadinimas: + + + Description: + Aprašymas: + + + Cipher: + Šifras: + + + KDF: + KDF: + + + Recycle bin is enabled. + Šiukšliadėžė yra įjungta. + + + Recycle bin is not enabled. + Šiukšliadėžė nėra įjungta. + + + Location + Vieta + + + Database created + Duomenų bazė sukurta + + + Last saved + Paskutinį kartą išsaugota + + + Unsaved changes + Neišsaugoti pakeitimai + + + yes + taip + + + no + ne + + + Number of groups + Grupių skaičius + + + Number of entries + Įrašų skaičius + + + Number of expired entries + Nebegaliojančių įrašų skaičius + + + Unique passwords + Unikalūs slaptažodžiai + + + Non-unique passwords + Pasikartojantys slaptažodžiai + + + Maximum password reuse + Maksimalus pakartotinis slaptažodžio naudojimas + + + Number of short passwords + Trumpų slaptažodžių skaičius + + + Number of weak passwords + Silpnų slaptažodžių skaičius + + + Entries excluded from reports + Įrašai, neįtraukti į ataskaitas + + + Average password length + Vidutinis slaptažodžio ilgis + + + %1 characters + %1 simboliai + + + Word count for the diceware passphrase. + Žodžių skaičius kauliukų slaptafrazei. + + + count + CLI parameter + kiekis + + + Wordlist for the diceware generator. +[Default: EFF English] + Kauliukų generatorius Wordlist. +[Numatytasis nustatymas: EŽF anglų k.] + + + Generate a new random diceware passphrase. + Sukurkite naują atsitiktinę kauliukų programų slaptafrazę. + + + Invalid word count %1 + Neteisingas žodžių skaičius %1 + + + Title for the entry. + Įrašo pavadinimas. + + + title + antraštė + + + Edit an entry. + Taisyti įrašą. + + + Path of the entry to edit. + Įrašo, kurį taisyti, kelias. + + + Not changing any field for entry %1. + Nekeisti jokio įrašo %1 lauko. + + + Enter new password for entry: + Įveskite naują slaptažodį įrašui: + + + Successfully edited entry %1. + Sėkmingai redaguotas įrašas %1. + + + Perform advanced analysis on the password. + Atlikti išplėstinę slaptažodžio analizę + + + Password for which to estimate the entropy. + Slaptažodis, kurio entropiją apskaičiuoti + + + Estimate the entropy of a password. + Apskaičiuoti slaptažodžio entropiją. + + + Length %1 + Ilgis %1 + + + Entropy %1 + Entropija %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Kelių žodžių papildomi bitai %1 + + + Type: Bruteforce + Tipas: Bruteforce + + + Type: Dictionary + Tipas: Žodynas + + + Type: Dict+Leet + Tipas: Diktas + Leetas + + + Type: User Words + Tipas: Vartotojo žodžiai + + + Type: User+Leet + Tipas: Naudotojas + Leet + + + Type: Repeated + Tipas:Kartotinis + + + Type: Sequence + Tipas: Seka + + + Type: Spatial + Tipas: Erdvinis + + + Type: Date + Tipas: Data + + + Type: Bruteforce(Rep) + Tipas: Bruteforce(Rep) + + + Type: Dictionary(Rep) + Tipas: Žodynas(Rep) + + + Type: Dict+Leet(Rep) + Tipas: Dict + Leet (Rep) + + + Type: User Words(Rep) + Tipas: Vartotojo žodžiai (Rep) + + + Type: User+Leet(Rep) + Tipas: User+Leet(Rep) + + + Type: Repeated(Rep) + Tipas:Kartotinis(Rep) + + + Type: Sequence(Rep) + Tipas: Seka(Rep) + + + Type: Spatial(Rep) + Tipas:Erdvinis(Rep) + + + Type: Date(Rep) + Tipas: Data (Rep) + + + Type: Unknown (%1) + Tipas: Nežinomas (%1) + + + Entropy %1 (%2) + Entropija %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + Slaptažodžio ilgis (%1) != dalių ilgio suma (%2) *** + + + Exit interactive mode. + Išeikite iš interaktyvaus režimo. + + + Exports the content of a database to standard output in the specified format. + Eksportuoja duomenų bazės turinį į standartinę išvestį nurodytu formatu. + + + Unable to export database to XML: %1 + Nepavyko eksportuoti duomenų bazės į XML: %1 + + + Unsupported format %1 + Nepalaikomas formatas %1 + + + Length of the generated password + Sugeneruoto slaptažodžio ilgis + + + length + ilgis + + + Use lowercase characters + Naudoti mažąsias raides + + + Use uppercase characters + Naudoti didžiąsias raides + + + Use numbers + Naudoti skaičius + + + Use special characters + Naudoti specialius simbolius + + + Use extended ASCII + Naudoti išplėstinį ASCII + + + Exclude character set + Neįtraukti simbolių rinkinio + + + chars + ženklai + + + Use custom character set + Naudoti pasirinktinį simbolių rinkinį + + + Exclude similar looking characters + Neįtraukti panašiai atrodančių simbolių + + + Include characters from every selected group + Įtraukti kiekvienos pasirinktos grupės simbolius + + + Generate a new random password. + Generuoti naują atsitiktinį slaptažodį. + + + Invalid password length %1 + Netinkamas slaptažodžio ilgis %1 + + + Invalid password generator after applying all options + Netinkamas slaptažodžių generatorius pritaikius visas parinktis + + + Display command help. + Rodyti komandų pagalbą. + + + Available commands: + Galimos komandos: + + + Import the contents of an XML database. + Importuoti XML duomenų bazės turinį. + + + Path of the XML database export. + XML duomenų bazės eksporto kelias. + + + Path of the new database. + Naujos duomenų bazės kelias. + + + Unable to import XML database: %1 + Nepavyko importuoti XML duomenų bazės: %1 + + + Successfully imported database. + Sėkmingai importuota duomenų bazė. + + + Unknown command %1 + Nežinoma komanda %1 + + + + +Available commands: + + + +Prieinamos komandos: + + + + Name of the command to execute. + Komandos, kurią vykdyti, pavadinimas. + + + Displays debugging information. + Rodo derinimo informaciją. + + + Invalid command %1. + Netinkama komanda %1. + + + Recursively list the elements of the group. + Rekursyviai išvardyti grupės elementus. + + + Flattens the output to single lines. + Sulygina išvestį iki vienų eilučių. + + + List database entries. + Išvardyti duomenų bazės įrašus. + + + Path of the group to list. Default is / + Grupės, kurią išvardyti, kelias. Numatytasis yra / + + + Cannot find group %1. + Nepavyksta rasti grupės %1. + + + Use the same credentials for both database files. + Abiems duomenų bazių failams naudoti tuos pačius prisijungimo duomenis. + + + Key file of the database to merge from. + Duomenų bazės, iš kurios sulieti, rakto failas. + + + Deactivate password key for the database to merge from. + Deaktyvuokite duomenų bazės slaptažodžio raktą, iš kurio bus atliekamas sujungimas. + + + Only print the changes detected by the merge operation. + Rašyti tik tuos pakeitimus, kurie buvo aptikti atliekant sujungimo operaciją. + + + Yubikey slot for the second database. + Yubikey lizdas antrajai duomenų bazei. + + + slot + Lizdas + + + Merge two databases. + Sulieti dvi duomenų bazes. + + + Path of the database to merge from. + Duomenų bazės, iš kurios sulieti, kelias. + + + Error reading merge file: +%1 + Klaida skaitant sujungimo failą: +%1 + + + Unable to save database to file : %1 + Nepavyko įrašyti duomenų bazę į failą : %1 + + + Successfully merged %1 into %2. + Sėkmingai prijungtas %1 prie %2. + + + Database was not modified by merge operation. + Duomenų bazė nebuvo pakeista atliekant sujungimo operaciją. + + + Moves an entry to a new group. + Perkelia įrašą į naują grupę. + + + Path of the entry to move. + Perkeliamo įrašo kelias. + + + Path of the destination group. + Paskirtos grupės kelias. + + + Could not find group with path %1. + Nepavyko rasti grupės su keliu %1. + + + Entry is already in group %1. + Įrašas jau yra grupėje %1. + + + Successfully moved entry %1 to group %2. + Įrašas %1 sėkmingai perkeltas į grupę %2. + + + Open a database. + Atidaryti duomenų bazę. + + + Path of the entry to remove. + Įrašo, kurį šalinti, kelias. + + + Unable to save database to file: %1 + Nepavyko įrašyti duomenų bazę į failą: %1 + + + Successfully recycled entry %1. + Sėkmingai perdirbtas įvežimas %1. + + + Successfully deleted entry %1. + Sėkmingai ištrintas įrašas %1. + + + Path of the group to remove. + Šalinamos grupės kelias. + + + Cannot remove root group from database. + Negalima pašalinti šakninės grupės iš duomenų bazės. + + + Successfully recycled group %1. + Sėkmingai perdirbta grupė %1. + + + Successfully deleted group %1. + Sėkmingai pašalinta grupė %1. + + + Find entries quickly. + Greitai rasti įrašus. + + + Search term. + Paieškos žodis. + + + Show the entry's current TOTP. + Rodyti dabartinį įrašo TOTP. + + + Show the protected attributes in clear text. + Rodyti saugomus atributus atviru tekstu. + + + Show all the attributes of the entry. + Rodyti visus įrašo atributus. + + + Show the attachments of the entry. + Rodyti įrašo priedus. + + + 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. + Požymių, kuriuos rodyti, pavadinimai. Ši parinktis gali būti nurodyta daugiau nei vieną kartą, kiekvienoje eilutėje nurodyta tvarka rodant po atskirą požymį. Jei nėra nurodyti jokie požymiai, bus nurodyta numatytųjų požymių santrauka. + + + attribute + požymis + + + Show an entry's information. + Rodyti įrašo informaciją. + + + Name of the entry to show. + Įrašo, kurį rodyti, pavadinimas. + + + ERROR: unknown attribute %1. + KLAIDA: nežinomas požymis %1. + + + No attachments present. + Nėra jokių priedų. + + + Attachments: + Priedai: + + + Failed to open database file %1: not found + Nepavyko atidaryti duomenų bazės failo %1: nerastas + + + Failed to open database file %1: not a plain file + Nepavyko atidaryti duomenų bazės failo %1: ne paprastas failas + + + Failed to open database file %1: not readable + Nepavyko atidaryti duomenų bazės failo %1: neperskaitomas + + + Enter password to unlock %1: + Įveskite slaptažodį, kad atrakintumėte %1: + + + Failed to load key file %1: %2 + Nepavyko įkelti rakto failo %1: %2 + + + WARNING: You are using an old key file format which KeePassXC may +stop supporting in the future. + +Please consider generating a new key file. + ĮSPĖJIMAS: Jūs naudojate seną rakto failo formatą, kurio KeePassXC gali +ateityje nebepalaikyti. + +Apsvarstykite galimybę sukurti naują rakto failą. + + + Invalid YubiKey slot %1 + Neteisingas YubiKey lizdas %1 + + + Invalid YubiKey serial %1 + Neteisingas YubiKey serijos %1 + + + Please present or touch your YubiKey to continue. + Norėdami tęsti, pristatykite arba palieskite savo YubiKey. + + + Enter password to encrypt database (optional): + Įveskite slaptažodį duomenų bazei šifruoti (neprivaloma): + + + Do you want to create a database with an empty password? [y/N]: + Ar norite sukurti duomenų bazę su tuščiu slaptažodžiu? [y/N]: + + + Repeat password: + Pakartokite slaptažodį: + + + Error: Passwords do not match. + Klaida: slaptažodžiai nesutampa. + + + No program defined for clipboard manipulation + Nėra nustatytos programos, skirtos darbui su iškarpine + + + All clipping programs failed. Tried %1 + + Visos iškarpų programos nepavyko. Bandė %1 + + + Creating KeyFile %1 failed: %2 + Nepavyko sukurti rakto failo %1: %2 + + + Loading KeyFile %1 failed: %2 + Nepavyko įkelti raktų failo %1: %2 + + + HIBP file, line %1: parse error + HIBP failas, eilutė %1: analizės klaida + + + To use okon, you must provide a post-processed file (e.g. file.okon) + Norėdami naudoti okon, turite pateikti failą po apdorojimo (pvz., file.okon) + + + Could not start okon process: %1 + Nepavyko pradėti okono proceso: %1 + + + Error: okon process did not finish + Klaida: okono procesas nebaigė + + + Failed to load okon processed database: %1 + Nepavyko įkelti okon apdorotos duomenų bazės: %1 + + + Very weak password + Labai silpnas slaptažodis + + + Password entropy is %1 bits + Slaptažodžio entropija yra %1 bitų + + + Weak password + Silpnas slaptažodis + + + Used in %1/%2 + Naudojamas %1/%2 + + + Password is used %1 time(s) + Slaptažodis naudojamas %1 kartą (-ius)Slaptažodis naudojamas %1 kartą (-ius)Slaptažodis naudojamas %1 kartą (-ius)Slaptažodis naudojamas %1 kartą (-ius) + + + Password has expired + Slaptažodis nebegalioja + + + Password expiry was %1 + Slaptažodžio galiojimo laikas buvo %1 + + + Password expires on %1 + Slaptažodžio galiojimo laikas baigiasi %1 + + + Password is about to expire + Netrukus baigsis slaptažodžio galiojimo laikas + + + Password expires in %1 day(s) + Slaptažodžio galiojimas baigiasi per %1 dieną (-as)Slaptažodžio galiojimas baigiasi per %1 dieną (-as)Slaptažodžio galiojimas baigiasi per %1 dieną (-as)Slaptažodžio galiojimas baigiasi per %1 dieną (-as) + + + Password will expire soon + Slaptažodis netrukus nustos galioti + + + Version %1 + Versija %1 + + + Build Type: %1 + Darinio tipas: %1 + + + Revision: %1 + Revizija: %1 + + + Distribution: %1 + Platinimas: %1 + + + Debugging mode is disabled. + Derinimo režimas yra išjungtas. + + + Debugging mode is enabled. + Įjungtas derinimo režimas. + + + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 + Operacinė sistema: %1 +Procesoriaus architektūra: %2 +Branduolys: %3 %4 + + + Auto-Type + Automatinis rinkimas + + + SSH Agent + SSH agentas + + + KeeShare + KeeShare + + + YubiKey + YubiKey + + + Quick Unlock + Greitas atrakinimas + + + Secret Service Integration + Slaptosios tarnybos integracija + + + None + Nėra + + + Enabled extensions: + Įjungti plėtiniai: + + + over %1 year(s) + per %1 metus (-us)per %1 metus (-us)per %1 metus (-us)per %1 metus (-us) + + + about %1 month(s) + apie %1 mėnesį (-ius)apie %1 mėnesį (-ius)apie %1 mėnesį (-ius)apie %1 mėnesį (-ius) + + + %1 week(s) + %1 savaitė (-ės)%1 savaitė (-ės)%1 savaitė (-ės)%1 savaitė (-ės) + + + %1 day(s) + %1 diena (-os)%1 diena (-os)%1 diena (-os)%1 diena (-os) + + + %1 hour(s) + %1 val.%1 val.%1 val.%1 val. + + + %1 minute(s) + %1 minutė (-os)%1 minutė (-os)%1 minutė (-os)%1 minutė (-os) + + + Botan library must be at least %1, found %2.%3.%4 + + + + Cryptographic libraries: + Kriptografinės bibliotekos: + + + AES (%1 rounds) + AES (%1 raundai) + + + Argon2%1 (%2 rounds, %3 KB) + Argon2%1 (%2 raundai, %3 KB) + + + SymmetricCipher::init: Invalid cipher mode. + SymmetricCipher::init: Neteisingas šifro režimas. + + + SymmetricCipher::init: Invalid IV size of %1 for %2. + SymmetricCipher::init: Negaliojantis IV dydis %1, kai %2. + + + Cipher not initialized prior to use. + Šifras prieš naudojimą nebuvo inicijuotas. + + + Cannot process 0 length data. + Negalima apdoroti 0 ilgio duomenų. + + + unknown executable (DBus address %1) + nežinomas vykdomasis failas (DBus adresas %1) + + + %1 (invalid executable path) + %1 (neteisingas vykdomasis kelias) + + + NULL device + NIEKINIS įrenginys + + + error reading from device + klaida skaitant iš įrenginio + + + file empty + failas tuščias + + + AES 256-bit + AES 256 bitų + + + Twofish 256-bit + Dvi žuvys 256 bitų + + + ChaCha20 256-bit + ChaCha20 256 bitų + + + Argon2d (KDBX 4 – recommended) + Argon2d (KDBX 4 – rekomenduojama) + + + Argon2id (KDBX 4) + Argon2id (KDBX 4) + + + AES-KDF (KDBX 4) + AES-KDF (KDBX 4) + + + AES-KDF (KDBX 3) + AES-KDF (KDBX 3) + + + Existing single-instance lock file is invalid. Launching new instance. + Esamas vieno egzemplioriaus užrakto failas yra neteisingas. Paleidžiamas naujas egzempliorius. + + + The lock file could not be created. Single-instance mode disabled. + Nepavyko sukurti užrakto. Vieno egzemplioriaus veiksena išjungta. + + + Clearing the clipboard in %1 second(s)… + Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)...Iškarpinės išvalymas per %1 sekundę (-as)... + + + Group + Grupė + + + Title + Antraštė + + + Username + Naudotojo vardas + + + Password + Slaptažodis + + + TOTP + TOTP + + + Icon + Piktograma + + + Last Modified + Paskutinis keitimas + + + Created + Sukurta + + + Benchmark %1 delay + Palyginti %1 vėlavimą + + + %1 ms + milliseconds + %1 ms%1 ms%1 ms%1 ms + + + %1 s + seconds + %1 s%1 s%1 s%1 s + + + Do you really want to delete the entry "%1" for good? + Ar tikrai norite visam laikui ištrinti įrašą "%1"? + + + Do you really want to delete %n entry(s) for good? + Ar tikrai norite visam laikui ištrinti %n įrašą (-us)?Ar tikrai norite visam laikui ištrinti %n įrašą (-us)?Ar tikrai norite visam laikui ištrinti %n įrašą (-us)?Ar tikrai norite visam laikui ištrinti %n įrašą (-us)? + + + Delete entry(s)? + Ištrinti įrašą (-us)?Ištrinti įrašą (-us)?Ištrinti įrašą (-us)?Ištrinti įrašą (-us)? + + + Do you really want to move entry "%1" to the recycle bin? + Ar tikrai norite perkelti įrašą "%1" į šiukšliadėžę? + + + Do you really want to move %n entry(s) to the recycle bin? + Ar tikrai norite perkelti %n įrašą (-us) į šiukšliadėžę?Ar tikrai norite perkelti %n įrašą (-us) į šiukšliadėžę?Ar tikrai norite perkelti %n įrašą (-us) į šiukšliadėžę?Ar tikrai norite perkelti %n įrašą (-us) į šiukšliadėžę? + + + Move entry(s) to recycle bin? + Perkelti įrašą (-us) į šiukšliadėžę?Perkelti įrašą (-us) į šiukšliadėžę?Perkelti įrašą (-us) į šiukšliadėžę?Perkelti įrašą (-us) į šiukšliadėžę? + + + Replace references to entry? + Pakeisti nuorodas į įrašą? + + + Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? + Įrašas "%1" turi %2 nuorodą (-as). Ar norite perrašyti nuorodas reikšmėmis, praleisti šį įrašą ar vis tiek ištrinti?Įrašas "%1" turi %2 nuorodą (-as). Ar norite perrašyti nuorodas reikšmėmis, praleisti šį įrašą ar vis tiek ištrinti?Įrašas "%1" turi %2 nuorodą (-as). Ar norite perrašyti nuorodas reikšmėmis, praleisti šį įrašą ar vis tiek ištrinti?Įrašas "%1" turi %2 nuorodą (-as). Ar norite perrašyti nuorodas reikšmėmis, praleisti šį įrašą ar vis tiek ištrinti? + + + User name + Naudotojo vardas + + + Browser Statistics + Naršyklės statistika + + + Health Check + Būklės patikrinimas + + + HIBP + HIBP (angl. + + + Statistics + Statistika + + + Unsupported key file version: %1 + Nepalaikoma rakto failo versija: %1 + + + Checksum mismatch! Key file may be corrupt. + Kontrolinės sumos nesutapimas! Rakto failas gali būti sugadintas. + + + Unexpected key file data! Key file may be corrupt. + Netikėti rakto failo duomenys! Rakto failas gali būti sugadintas. + + + KeePassXC - cross-platform password manager + KeePassXC - daugiaplatformė slaptažodžių tvarkytuvė + + + filenames of the password databases to open (*.kdbx) + norimų atverti slaptažodžių duomenų bazių failų pavadinimai (*.kdbx) + + + path to a custom config file + kelias į tinkintą konfigūracijos failą + + + path to a custom local config file + kelias į pasirinktinį vietinį konfigūracijos failą + + + lock all open databases + užrakinti visas atidarytas duomenų bazes + + + key file of the database + duomenų bazės rakto failas + + + read password of the database from stdin + nuskaityti duomenų bazės slaptažodį iš stdin + + + Database failed to lock. + Duomenų bazės nepavyko užrakinti. + + + Another instance of KeePassXC is already running. + Jau yra paleistas kitas KeePassXC egzempliorius. + + + KeePassXC is not running. No open database to lock + KeePassXC nėra įjungtas. Nėra atviros duomenų bazės, kurią būtų galima užrakinti + + + Fatal error while testing the cryptographic functions. + Lemtingoji klaida, testuojant šifravimo funkcijas. + + + KeePassXC - Error + KeePassXC - Klaida + + + Database password: + Duomenų bazės slaptažodis: + + + Invalid Settings + TOTP + Neteisingi nustatymai + + + Invalid Key + TOTP + Neteisingas raktas + + + Failed to create Windows Hello credential. + Nepavyko sukurti "Windows Hello" kredencialų. + + + Failed to sign challenge using Windows Hello. + Nepavyko pasirašyti iššūkio naudojant "Windows Hello". + + + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + Netinkamas šifras + + + Invalid KDF + Netinkamas KDF + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + Duomenų bazės užrakintos. + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + Nepavyko užšifruoti rakto duomenų. + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + Nepavyko iššifruoti rakto duomenų. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + Failo nėra. + + + Cannot open file: %1 + Nepavyksta atverti failo: %1 + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + Neteisingas slaptažodis + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + Nepavyksta inicijuoti šifro + + + Cannot decrypt data + Nepavyksta iššifruoti duomenų + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Ištrinti papildinių duomenis? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Žymos + + + + QtIOCompressor + + Internal zlib error when compressing: + Vidinė zlib klaida, glaudinant: + + + Error writing to underlying device: + Klaida, įrašant į bazinį įrenginį: + + + Error opening underlying device: + Klaida, atveriant bazinį įrenginį: + + + Error reading data from underlying device: + Klaida, skaitant iš bazinio įrenginio: + + + Internal zlib error when decompressing: + Vidinė zlib klaida, išskleidžiant: + + + + QtIOCompressor::open + + The gzip format not supported in this version of zlib. + Šioje zlib versijoje gzip formatas yra nepalaikomas. + + + Internal zlib error: + Vidinė zlib klaida: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + + + ReportsWidgetBrowserStatistics + + Double-click entries to edit. + Norint redaguoti įrašus, dukart spustelėkite juos. + + + List of entry URLs + Įrašų URL adresų sąrašas + + + Entry has no URLs set + Įraše nėra nustatytų URL adresų + + + Allowed URLs + Leidžiami URL adresai + + + Entry has no Browser Integration settings + Įraše nėra naršyklės integracijos nustatymų + + + Denied URLs + Uždrausti URL adresai + + + (Excluded) + (Išskirtas) + + + This entry is being excluded from reports + Šis įrašas neįtraukiamas į ataskaitas + + + Please wait, browser statistics is being calculated… + Prašome palaukti, skaičiuojama naršyklės statistika... + + + No entries with a URL, or none has browser extension settings saved. + Nėra įrašų su URL adresu arba nė viename iš jų nėra išsaugotų naršyklės plėtinio nustatymų. + + + Title + Antraštė + + + Path + Kelias + + + URLs + URL adresai + + + Edit Entry… + Redaguoti Įrašą... + + + Delete Entry(s)… + Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)... + + + Exclude from reports + Neįtraukti į ataskaitas + + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + Rodyti nebegaliojančius įrašus + + + (Expired) + (Nebegalioja) + + + Delete plugin data from Entry(s)… + + + + + ReportsWidgetHealthcheck + + Show expired entries + Rodyti nebegaliojančius įrašus + + + (Expired) + (Nebegalioja) + + + Hover over reason to show additional details. Double-click entries to edit. + Užveskite pelės žymeklį virš priežasties, kad parodytumėte papildomą informaciją. Dukart spustelėkite įrašus, kuriuos norite redaguoti. + + + Bad — password must be changed + Blogas - slaptažodis turi būti pakeistas + + + Poor — password should be changed + Prastas — slaptažodis turėtų būti pakeistas + + + Weak — consider changing the password + Silpnas — apsvarstykite galimybę pakeisti slaptažodį + + + (Excluded) + (Išskirtas) + + + This entry is being excluded from reports + Šis įrašas neįtraukiamas į ataskaitas + + + Please wait, health data is being calculated… + Palaukite, sveikatos duomenys skaičiuojami... + + + Congratulations, everything is healthy! + Sveikiname, viskas sveika! + + + Title + Antraštė + + + Path + Kelias + + + Score + Vertinimas pagal + + + Reason + Priežastis + + + Edit Entry… + Redaguoti Įrašą... + + + Delete Entry(s)… + Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)... + + + Exclude from reports + Neįtraukti į ataskaitas + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + + + + ReportsWidgetHibp + + CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. + ATSARGIAI: Šioje ataskaitoje reikalaujama siųsti informaciją į internetinę paslaugą "Have I Been Pwned" (https://haveibeenpwned.com). Jei tęsite, jūsų duomenų bazės slaptažodžiai bus kriptografiškai maišomi, o pirmieji penki šių maišų simboliai bus saugiai išsiųsti į šią paslaugą. Jūsų duomenų bazė išlieka saugi ir jos negalima atkurti iš šios informacijos. Tačiau ši paslauga bus taikoma jūsų siunčiamų slaptažodžių skaičiui ir jūsų IP adresui. + + + Perform Online Analysis + Atlikite internetinę analizę + + + Also show entries that have been excluded from reports + Taip pat rodyti įrašus, kurie nebuvo įtraukti į ataskaitas + + + This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. + Ši "KeePassXC" versija neturi tinklo funkcijų. Norint patikrinti savo slaptažodžius pagal "Have I Been Pwned" duomenų bazes, reikalingas tinklas. + + + Congratulations, no exposed passwords! + Sveikiname, nėra atskleistų slaptažodžių! + + + Title + Antraštė + + + Path + Kelias + + + Password exposed… + Slaptažodis atskleistas... + + + (Excluded) + (Išskirtas) + + + This entry is being excluded from reports + Šis įrašas neįtraukiamas į ataskaitas + + + once + Password exposure amount + kartą + + + up to 10 times + Password exposure amount + iki 10 kartų + + + up to 100 times + Password exposure amount + iki 100 kartų + + + up to 1000 times + Password exposure amount + iki 1000 kartų + + + up to 10,000 times + Password exposure amount + iki 10,000 kartų + + + up to 100,000 times + Password exposure amount + iki 100,000 kartų + + + up to a million times + Password exposure amount + iki milijono kartų + + + millions of times + Password exposure amount + milijonus kartų + + + Edit Entry… + Redaguoti Įrašą... + + + Delete Entry(s)… + Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)...Ištrinti įrašą (-us)... + + + Exclude from reports + Neįtraukti į ataskaitas + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Eksportuoti + + + Import + Importuoti + + + List of entry URLs + Įrašo URL adresų sąrašas + + + Title + Antraštė + + + Path + Kelias + + + Username + Naudotojo vardas + + + URLs + URL adresai + + + Edit Entry… + Redaguoti Įrašą... + + + Delete Entry(s)… + Ištrinti įrašą...Ištrinti įrašusIštrinti įrašusIštrinti įrašus + + + Relying Party + + + + Show expired entries + Rodyti nebegaliojančius įrašus + + + (Expired) + (Nebegalioja) + + + Export Confirmation + Eksporto Patvirtinimas + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + + + + ReportsWidgetStatistics + + Hover over lines with error icons for further information. + Norėdami gauti daugiau informacijos, užveskite pelės žymeklį ant eilučių su klaidų piktogramomis. + + + Name + Pavadinimas + + + Value + Reikšmė + + + Please wait, database statistics are being calculated… + Palaukite, skaičiuojami duomenų bazės statistiniai duomenys... + + + Database name + Duomenų bazės pavadinimas + + + Description + Aprašymas + + + Location + Vieta + + + Database created + Duomenų bazė sukurta + + + Last saved + Paskutinį kartą išsaugota + + + Unsaved changes + Neišsaugoti pakeitimai + + + yes + taip + + + no + ne + + + The database was modified, but the changes have not yet been saved to disk. + Duomenų bazė buvo pakeista, tačiau pakeitimai dar neįrašyti į diską. + + + Number of groups + Grupių skaičius + + + Number of entries + Įrašų skaičius + + + Number of expired entries + Nebegaliojančių įrašų skaičius + + + The database contains entries that have expired. + Duomenų bazėje yra įrašų, kurių galiojimo laikas pasibaigęs. + + + Unique passwords + Unikalūs slaptažodžiai + + + Non-unique passwords + Pasikartojantys slaptažodžiai + + + More than 10% of passwords are reused. Use unique passwords when possible. + Daugiau nei 10% slaptažodžių naudojami pakartotinai. Jei įmanoma, naudokite unikalius slaptažodžius. + + + Maximum password reuse + Maksimalus pakartotinis slaptažodžio naudojimas + + + Some passwords are used more than three times. Use unique passwords when possible. + Kai kurie slaptažodžiai naudojami daugiau nei tris kartus. Jei įmanoma, naudokite unikalius slaptažodžius. + + + Number of short passwords + Trumpų slaptažodžių skaičius + + + Recommended minimum password length is at least 8 characters. + Rekomenduojamas mažiausias slaptažodžio ilgis - bent 8 simboliai. + + + Number of weak passwords + Silpnų slaptažodžių skaičius + + + Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. + Rekomenduojame naudoti ilgus, atsitiktine tvarka sukurtus slaptažodžius, įvertintus "gerai" arba "puikiai". + + + Entries excluded from reports + Įrašai, neįtraukti į ataskaitas + + + Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. + Įrašų neįtraukimas į ataskaitas, pvz., dėl to, kad žinoma, jog jų slaptažodis prastas, nebūtinai yra problema, tačiau turėtumėte juos stebėti. + + + Average password length + Vidutinis slaptažodžio ilgis + + + %1 characters + %1 simboliai + + + Average password length is less than ten characters. Longer passwords provide more security. + Vidutinis slaptažodžio ilgis - mažiau nei dešimt simbolių. Ilgesni slaptažodžiai užtikrina didesnį saugumą. + + + + SSHAgent + + Agent connection failed. + Agento ryšys nepavyko. + + + Agent protocol error. + Agento protokolo klaida. + + + No agent running, cannot add identity. + Joks agentas neveikia, negali pridėti tapatybės. + + + Key identity ownership conflict. Refusing to add. + Pagrindinės tapatybės nuosavybės konfliktas. Atsisakymas pridėti. + + + Agent refused this identity. Possible reasons include: + Agentas atsisakė šios tapatybės. Galimos priežastys: + + + The key has already been added. + Raktas jau buvo pridėtas. + + + Restricted lifetime is not supported by the agent (check options). + Agentas nepalaiko apriboto naudojimo trukmės (patikrinkite parinktis). + + + A confirmation request is not supported by the agent (check options). + Patvirtinimo užklausos agentas nepalaiko (patikrinkite parinktis). + + + Security keys are not supported by the agent or the security key provider is unavailable. + Agentas nepalaiko saugos raktų arba saugos raktų teikėjas nepasiekiamas. + + + No agent running, cannot remove identity. + Joks agentas neveikia, negali pašalinti tapatybės. + + + No agent running, cannot list identities. + Joks agentas neveikia, negali išvardyti tapatybių. + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + + + + SearchHelpWidget + + Search Help + Paieškos pagalba + + + Search terms are as follows: [modifiers][field:]["]term["] + Paieškos terminai yra tokie: [modifikatoriai][laukas:]["]terminas["] + + + Every search term must match (ie, logical AND) + Kiekvienas paieškos terminas turi atitikti (ty loginis IR) + + + Modifiers + Modifikatoriai + + + exclude term from results + neįtraukti termino į rezultatus + + + match term exactly + rungtynių terminas tiksliai + + + use regex in term + naudoti regex terminą + + + Fields + Laukai + + + Term Wildcards + Terminas Pakaitos simboliai + + + match anything + prilygti bet kam + + + match one + suderinti vieną + + + logical OR + loginis ARBA + + + Examples + Pavyzdžiai + + + + SearchWidget + + Search + Paieška + + + Search Help + Paieškos pagalba + + + Save Search + Išsaugoti paiešką + + + Search (%1)… + Search placeholder text, %1 is the keyboard shortcut + Ieškoti (%1)... + + + Case sensitive + Skiriant raidžių registrą + + + Limit search to selected group + Riboti paiešką iki pasirinktos grupės + + + + SettingsClientModel + + Application + Programa + + + PID + PID + + + DBus Address + DBus adresas + + + Manage + Tvarkyti + + + + SettingsDatabaseModel + + File Name + Failo vardas + + + Group + Grupė + + + Manage + Tvarkyti + + + + SettingsWidgetFdoSecrets + + Options + Parinktys + + + Enable KeepassXC Freedesktop.org Secret Service integration + Įgalinti "KeepassXC" Freedesktop.org slaptosios tarnybos integraciją + + + General + Bendra + + + Show notification when passwords are retrieved by clients + Rodyti pranešimą, kai klientai gauna slaptažodžius + + + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> + <html><head/><body><p>Jei įjungta, bet koks bandymas perskaityti slaptažodį turi būti patvirtintas. Priešingu atveju klientai gali skaityti slaptažodžius be patvirtinimo, kai duomenų bazė atrakinta.</p><p>Ši parinktis taikoma tik prieigai prie įrašo slaptažodžio. Klientai visada gali išvardyti atidarytų duomenų bazių elementus ir užklausti jų atributų. + + + Confirm when passwords are retrieved by clients + Patvirtinti, kai klientai gauna slaptažodžius + + + Confirm when clients request entry deletion + Patvirtinti, kai klientai prašo ištrinti įrašą + + + Prompt to unlock database before searching + Prašyti atrakinti duomenų bazę prieš pradedant paiešką + + + Exposed database groups: + Atskleistos duomenų bazės grupės: + + + Authorization + Leidimas + + + These applications are currently connected: + Šiuo metu šios programos yra prijungtos: + + + <b>Warning:</b> + <b>Įspėjimas:</b> + + + Save current changes to activate the plugin and enable editing of this section. + Išsaugoti esamus pakeitimus, kad papildinys būtų įjungtas ir būtų galima redaguoti šį skyrių. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + + + + SettingsWidgetKeeShare + + Active + Aktyvus + + + Allow KeeShare imports + Leisti "KeeShare" importą + + + Allow import + Leisti importuoti + + + Allow KeeShare exports + Leisti "KeeShare" eksportuoti + + + Allow export + Leisti eksportuoti + + + Only show warnings and errors + Rodyti tik įspėjimus ir klaidas + + + Own certificate + Nuosavas sertifikatas + + + Signer: + Pasirašančiojo: + + + Generate new certificate + Sukurkite naują sertifikatą + + + Generate + Generuoti + + + Fingerprint: + Kontrolinis kodas: + + + Signer name field + Pasirašančiojo vardo laukas + + + Fingerprint + Kontrolinis kodas + + + + ShareExport + + Could not write export container. + Nepavyko parašyti eksporto konteinerio. + + + + ShareImport + + Successful import + Sėkmingas importavimas + + + + ShareObserver + + Import from %1 failed (%2) + Importavimas iš %1 nepavyko (%2) + + + Import from %1 successful (%2) + Importavimas iš %1 sėkmingas (%2) + + + Imported from %1 + Importuota iš %1 + + + Multiple import source path to %1 in %2 + Kelių importo šaltinių kelias iki %1 in %2 + + + Conflicting export target path %1 in %2 + Prieštaringas eksporto tikslinis planas %1 ,,2% + + + Export to %1 failed (%2) + Eksportavimas į %1 nepavyko (%2) + + + Export to %1 successful (%2) + Eksportavimas į %1 sėkmingas (%2) + + + Export to %1 + Eksportas į %1 + + + + TagModel + + Clear Search + Išvalyti paiešką + + + All Entries + Visi įrašai + + + Expired + Pasibaigęs + + + Weak Passwords + Silpni slaptažodžiai + + + + TagView + + Remove Search + Pašalinti paiešką + + + Remove Tag + Pašalinti žymą + + + Confirm Remove Tag + Patvirtinti žymos pašalinimą + + + Remove tag "%1" from all entries in this database? + Pašalinti žymą "%1" iš visų šios duomenų bazės įrašų? + + + + TotpDialog + + Timed Password + Numatytosios trukmės slaptažodis + + + Copy + Kopijuoti + + + Expires in <b>%n</b> second(s) + Nustoja galioti <b>%n</b> sekunde (-ose)Nustoja galioti <b>%n</b> sekunde (-ose)Nustoja galioti <b>%n</b> sekunde (-ose)Nustoja galioti <b>%n</b> sekunde (-ose) + + + + TotpExportSettingsDialog + + Copy + Kopijuoti + + + NOTE: These TOTP settings are custom and may not work with other authenticators. + TOTP QR code dialog warning + PASTABA: Šie TOTP nustatymai yra pasirinktiniai ir gali neveikti su kitais autentifikatoriais. + + + There was an error creating the QR code. + Buvo klaida kuriant QR kodą. + + + Closing in %1 seconds. + Užveriama po %1 sekundžių. + + + + TotpSetupDialog + + Setup TOTP + Nustatyti NTVS + + + Secret Key: + Slaptas raktas: + + + Secret key must be in Base32 format + Slaptas raktas turi būti "Base32" formato + + + Secret key field + Slapto rakto laukas + + + Default settings (RFC 6238) + Numatytieji nustatymai (RFC 6238) + + + Steam® settings + Garo® nustatymai + + + Custom settings: + Pasirinktiniai nustatymai: + + + Custom Settings + Pasirinktiniai nustatymai + + + Algorithm: + Algoritmas: + + + Time step: + Laiko žingsnis: + + + Time step field + Laiko žingsnio laukas + + + sec + Seconds + sek. + + + Code size: + Kodo dydis: + + + digits + Skaitmenų + + + Invalid TOTP Secret + Negaliojanti TOTP paslaptis + + + You have entered an invalid secret key. The key must be in Base32 format. +Example: JBSWY3DPEHPK3PXP + Įvedėte netinkamą slaptą raktą. Raktas turi būti "Base32" formatu. +Pavyzdys: JBSWY3DPEHPK3PXP + + + Confirm Remove TOTP Settings + Patvirtinkite pašalinti TOTP nustatymus + + + Are you sure you want to delete TOTP settings for this entry? + Ar tikrai norite ištrinti šio įrašo TOTP nustatymus? + + + + URLEdit + + Invalid URL + Netinkamas URL + + + + UpdateCheckDialog + + Checking for updates + Tikriname ar yra atnaujinimų + + + Checking for updates… + Tikriname ar yra atnaujinimų... + + + Close + Užverti + + + Software Update + Programinės įrangos atnaujinimas + + + An error occurred when trying to retrieve update information, please try again later. + Bandant gauti atnaujinimo informaciją įvyko klaida, bandykite dar kartą vėliau. + + + <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. + <strong>Yra nauja versija.</strong><br/>KeePassXC %1 galima <a href="https://keepassxc.org/download/">atsisiųsti čia</a>. + + + You have the latest version of KeePassXC + Jūs turite naujausią KeePassXC versiją + + + + WelcomeWidget + + Start storing your passwords securely in a KeePassXC database + Pradėkite saugiai laikyti savo slaptažodžius KeePassXC duomenų bazėje + + + Recent databases + Paskiausios duomenų bazės + + + Open a recent database + Atidaryti neseniai naudotą duomenų bazę + + + Welcome to KeePassXC %1 + Sveiki atvykę į KeePassXC %1 + + + Create Database + Sukurti duomenų bazę + + + Open Database + Atverti duomenų bazę + + + Import File + Importuoti failą + + + + WinUtils + + Invalid key code + Netinkamas rakto kodas + + + Global shortcut already registered to %1 + Visuotinis spartusis klavišas jau užregistruotas į %1 + + + Could not register global shortcut + Nepavyko užregistruoti visuotinio sparčiojo klavišo + + + + YubiKey + + General: + Bendra: + + + Could not find interface for hardware key with serial number %1. Please connect it to continue. + Nepavyko rasti aparatinės įrangos rakto sąsajos su serijos numeriu %1. Norėdami tęsti, prijunkite jį prie jo. + + + + YubiKeyEditWidget + + Hardware key slot selection + Aparatūros rakto lizdo pasirinkimas + + + Could not find any hardware keys! + Nepavyko rasti jokių aparatūros raktų! + + + Selected hardware key slot does not support challenge-response! + Pasirinktas aparatinės įrangos raktų lizdas nepalaiko atsako į iššūkius! + + + Challenge-Response + Iššūkis-atsakas + + + Add Challenge-Response + Pridėti atsaką į iššūkį + + + Change Challenge-Response + Pakeiskite iššūkį-atsaką + + + Remove Challenge-Response + Pašalinkite atsaką į iššūkį + + + Challenge-Response set, click to change or remove + Iššūkio atsakymo rinkinys, spustelėkite, kad pakeistumėte arba pašalintumėte + + + Detecting hardware keys… + Aptinkame aparatūros raktus... + + + No hardware keys detected + Neaptikti jokie aparatūros raktai + + + Refresh hardware keys + Iš naujo įkelti aparatinės įrangos raktus + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + + + + + YubiKeyInterfacePCSC + + The YubiKey PCSC interface has not been initialized. + YubiKey PCSC sąsaja nebuvo inicijuota. + + + Could not find or access hardware key with serial number %1. Please present it to continue. + Nepavyko rasti arba pasiekti aparatūros rakto su serijos numeriu %1. Prašome jį pristatyti, kad tęstumėte. + + + Hardware key is locked or timed out. Unlock or re-present it to continue. + Aparatūros raktas užrakintas arba nustatytas nustatytas laiku. Atrakinkite arba iš naujo pateikite jį, kad tęstumėte. + + + Hardware key was not found or is not configured. + Aparatūros raktas nerastas arba nėra sukonfigūruotas. + + + Failed to complete a challenge-response, the PCSC error code was: %1 + Nepavyko užbaigti iššūkio atsakymo, PCSC klaidos kodas buvo: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Paspausti + + + Passive + USB Challenge-Response Key no interaction required + Pasyvus + + + + YubiKeyInterfaceUSB + + Unknown + Nežinoma + + + Press + USB Challenge-Response Key interaction request + Paspausti + + + Passive + USB Challenge-Response Key no interaction required + Pasyvus + + + The YubiKey USB interface has not been initialized. + YubiKey USB sąsaja nebuvo inicijuota. + + + Could not find hardware key with serial number %1. Please plug it in to continue. + Nepavyko rasti aparatūros rakto su serijos numeriu %1. Norėdami tęsti, prijunkite jį prie jo. + + + Hardware key timed out waiting for user interaction. + Aparatinės įrangos rakto laikas baigėsi laukiant vartotojo sąveikos. + + + A USB error occurred when accessing the hardware key: %1 + Prisijungus prie aparatūros rakto įvyko USB klaida: %1 + + + Failed to complete a challenge-response, the specific error was: %1 + Nepavykus užbaigti iššūkio atsakymo, konkreti klaida buvo tokia: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + \ No newline at end of file diff --git a/share/translations/keepassxc_my.ts b/share/translations/keepassxc_my.ts index e4fd98317..ca342676f 100644 --- a/share/translations/keepassxc_my.ts +++ b/share/translations/keepassxc_my.ts @@ -80,6 +80,10 @@ Details အသေးစိတ် အချက်အလက်များ + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + KeePassXC နှင့် ဖွင့်ရန်တောင်းဆိုထားသော အခြား Client နှစ်ခုစလုံး အလုပ်လုပ်နေချိန်တွင် သင့်ဆုံးဖြတ်ချက်များအား မှတ်သားထားမည်ဖြစ်သည်။ + Remember မှတ်ထားရန် @@ -88,17 +92,13 @@ Allow Selected ရွေးထားသည့်အရာများကို ခွင့်ပြုရန် - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + အားလုံးကို ယခုရော နောင်ရော ငြင်းဆိုမည်။ Allow All && &Future - + အားလုံးကို ယခုရော နောင်ရော ခွင့်ပြုမည်။ @@ -122,6 +122,10 @@ Use OpenSSH OpenSSH အသုံးပြုရန် + + Use both agents + အေးဂျင့် နှစ်ခုလုံးကို အသုံးပြုပါ + SSH_AUTH_SOCK override SSH_AUTH_SOCK အစားထိုးမှု @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH အေးဂျင့် ချိတ်ဆက်မှု အလုပ်လုပ်နေသည်။ - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security လုံခြုံရေး + + This setting cannot be enabled when minimize on unlock is enabled. + အန်လော့ခ်လုပ်ချိန် မြင်ကွင်းကျုံ့ခြင်းကို ရွေးချယ်ထားချိန် ဤ‌ရွေးချယ်မှုကို ပြုလုပ်၍မရပါ။ + Access error for config file %1 ချိန်ညှိဖိုင် %1 အတွက် အသုံးပြုခွင့် ပြဿနာ @@ -213,16 +217,48 @@ You must restart the application to set the new language. Would you like to restart now? ဘာသာစကားသစ် သတ်မှတ်ရန် အက်ပလီကေးရှင်းကို ပြန်လည်စတင်ရပါမည်။ ယခု ပြန်စလိုပါသလား။ - - Reset Settings? - ဆက်တင်များကို ပြန်လည်သတ်မှတ်မလား။ - - - Are you sure you want to reset all general and security settings to default? - ယေဘုယျနှင့် လုံခြုံရေး ဆက်တင်အားလုံးကို ပုံသေမူလအဖြစ် ပြန်လည်သတ်မှတ်လိုသည်မှာ သေချာပါသလား။ - Select backup storage directory + အရံသိမ်းဖိုင်ကို သိမ်းမည့် နေရာရွေးပါ။ + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom @@ -256,6 +292,10 @@ Remember previously used databases ယခင်ကသုံးခဲ့သော ဒေတာဘေ့စ်များကို မှတ်ထားပါ + + recent files + မကြာသေးခင်က သုံးထားသော ဖိုင်များ + Load previously open databases on startup စတင်ဆောင်ရွက်ချိန်တွင် ယခင်ကဖွင့်ထားသော ဒေတာဘေ့စ်များကို တင်ပါ @@ -272,25 +312,6 @@ Include beta releases when checking for updates အပ်ဒိတ်များကို စစ်ဆေးချိန်တွင် အစမ်းသုံး ထုတ်လုပ်မှုများ ပါဝင်ပါစေ - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management ဖိုင်စီမံခန့်ခွဲမှု @@ -315,21 +336,9 @@ Backup database file before saving မသိမ်းမီ ဒေတာဘေ့စ်ဖိုင်ကို အရန်ပြုပါ - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - - - Choose... - + [DB_FILENAME].old.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: တူးလ်ဘား ခလုတ် ပုံစံ - + + Show passwords in color + စကားဝှက်များကို အရောင်ဖြင့် ပြပါ + Use monospaced font for notes မှတ်စုများအတွက် နေရာယူတူသည့် ဖောင့်ကို အသုံးပြုရန် @@ -491,6 +504,71 @@ Remember last typed entry for: + နောက်ဆုံးရိုက်ထည့်ခဲ့သော ထည့်သွင်းချက်ကိုမှတ်ထားပါ + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + ရက်များ + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection @@ -536,7 +614,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + ဒေတာဘေ့စ်ကိုအလျင်အမြန်ပွင့်စနစ်ကို ဖွင့်ပါ Lock databases when session is locked or lid is closed @@ -546,10 +624,6 @@ Lock databases after minimizing the window ဝင်းဒိုးကို ချုံ့ပြီးနောက် ဒေတာဘေ့စ်များကို လော့ချပါ - - Require password repeat when it is visible - စကားဝှက် မြင်ရချိန်တွင် ထပ်ရိုက်ရန် လိုအပ်သည် - Hide passwords when editing them စကားဝှက်များကို တည်းဖြတ်ချိန်တွင် ဝှက်ထားပါ @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel ဖြည့်သွင်းချက် နမူနာ မျက်နှာပြင်ရှိ စကားဝှက်များကို ဝှက်ပါ - - Hide entry notes by default - ဖြည့်သွင်းချက် မှတ်စုများကို ပုံသေ ဝှက်ပါ - - - Move entries to recycle bin without confirmation - ဖြည့်သွင်းချက်များကို အတည်ပြုချက်မလိုဘဲ အမှိုက်ပုံးသို့ ရွှေ့ရန် - - - Enable double click to copy the username/password entry columns - အသုံးပြုသူအမည်/စကားဝှက် ဖြည့်သွင်းချက် ကော်လံများကို ကူးရန် ကလစ်နှစ်ချက်နှိပ်ခြင်းကို ဖွင့်ထားပါ - Privacy ကိုယ်ရေးလုံခြုံမှု @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons ဝက်ဘ်ဆိုက်အိုင်ကွန်များကို ဒေါင်းလုဒ်လုပ်ရန် DuckDuckGo ဝန်ဆောင်မှုကို အသုံးပြုပါ + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ ကြန့်ကြာချိန် အလွန်ကြာကြောင်း တွေ့ရသည်၊ အများဆုံး %1 - %2 - Invalid conversion type: %1 - ပြောင်းလဲမှု အမျိုးအစား မမှန်ကန်ပါ - %1 - - - Invalid conversion syntax: %1 - ပြောင်းလဲမှု ဝါကျဖွဲ့စည်းပုံ မမှန်ကန်ပါ - %1 - - - Invalid regular expression syntax %1 -%2 - ပုံမှန်အသုံးအနှုန်း ဝါကျဖွဲ့စည်းပုံ မမှန်ကန်ပါ %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + ထည့်သွင်းမှုတွင် PICKCHARS အတွက် အရည်အချင်း မရှိပါ - %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - မမှန်ကန်သော ကီးသင်္ကေတ ပို့ရန် ကြိုးစားနေသည်။ - Sequence aborted: Caps Lock is on အစဉ်ကို ဖျက်လိုက်သည် - Caps Lock ဖွင့်ထားသည် @@ -700,6 +764,10 @@ Unable to get valid keycode for key: ကီးအတွက် မှန်ကန်သော ကီးကုဒ် မရနိုင်ပါ - + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -718,7 +786,12 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + အသုံးပြုနိုင်သော ‌ဒေတာဘေ့စ်များတွင် မည်သည့်ဖြည့်သွင်းချက်ကိုမဆို အဆင့်မြင့် ရှာဖွေမှု မေးမြန်းချက်များကို အသုံးပြုပြီးရှာဖွေ နိုင်သည်။ အောက်ပါရှော့(တ်)ကတ်များသည် အသုံးဝင်သည် +Ctrl+F - ဒေတာဘေ့စ် ရှာဖွေမှုကို အဖွင့်အပိတ်လုပ်ရန် +Ctrl+1 - အသုံးပြုသူအမည် ရိုက်ရန် +Ctrl+2 - စကားဝှက် ရိုက်ရန် +Ctrl+3 - TOTP ရိုက်ရန် +Ctrl+4 - ကီးဘုတ်ကိုအသုံးပြုမည်(ဝင်းဒိုးတွင်သာ) Search all open databases @@ -762,7 +835,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Use Virtual Keyboard - + virtual ကီးဘုတ်ကို အသုံးပြုပါ @@ -799,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site ဤဝက်ဘ်ဆိုက်အတွက် ပယ်ဖျက်ရန် + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-ဘရောက်ဇာ ဖြည့်သွင်းချက် သိမ်းရန် - Ok အိုကေ @@ -820,13 +893,73 @@ Please select the correct database for saving credentials. သင်သည် ဒေတာဘေ့စ်များစွာ ဖွင့်ထားသည်။ ကျေးဇူးပြု၍ အထောက်အထားများသိမ်းရန်အတွက် မှန်ကန်သော ဒေတာဘေ့စ်ကို ရွေးပါ။ + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + ပယ်ဖျက်ရန် + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC - အုပ်စုအသစ် ဖန်တီးရန် - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -835,10 +968,6 @@ Do you want to create this group? ဤအုပ်စုကို ဖန်တီးလိုပါသလား။ - - KeePassXC: New key association request - KeePassXC - စကားဝှက်သော့အသစ် ဆက်စပ်မှု တောင်းဆိုချက် - You have received an association request for the following database: %1 @@ -855,28 +984,16 @@ chrome-laptop။ Save and allow access သိမ်း၍ အသုံးပြုခွင့်ပေးရန် - - KeePassXC: Overwrite existing key? - KeePassXC - ရှိနေသော စကားဝှက်သော့ပေါ် ထပ်ရေးမလား။ - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? "%1" အမည်နှင့် မျှဝေထားသော ကုဒ်ဖြင့်ပြောင်းခြင်း စကားဝှက်သော့ ရှိပြီးပါပြီ။ ၎င်းကို ထပ်ရေးလိုပါသလား။ - - KeePassXC: Update Entry - KeePassXC - ဖြည့်သွင်းချက် အပ်ဒိတ်လုပ်ရန် - Do you want to update the information in %1 - %2? %1 - %2 ရှိ အချက်အလက်ကို အပ်ဒိတ်လုပ်လိုပါသလား။ - - KeePassXC: Delete entry - KeePassXC - ဖြည့်သွင်းချက် ဖျက်ရန် - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -886,50 +1003,57 @@ Do you want to delete the entry? - Converting attributes to custom data… - ပင်ကိုအချက်အလက်ကို စိတ်ကြိုက်အချက်အလက်အဖြစ် ပြောင်းနေသည်… + %1 (Passkey) + - Abort - ဖျက်ပစ်ရန် + KeePassXC - Create a new group + - KeePassXC: Converted KeePassHTTP attributes - KeePassXC - ပြောင်းထားသော KeePassHTTP ပင်ကိုအချက်အလက်များ + Disable + ပယ်ဖျက်ရန် - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - ဖြည့်သွင်းချက် %1 ခုမှ ပင်ကိုအချက်အလက်ကို အောင်မြင်စွာ ပြောင်းပြီးပါပြီ။ -စကားဝှက်သော့ %2 ကို စိတ်ကြိုက်အချက်အလက်သို့ ရွှေ့ပြောင်းထားသည်။ - - - Successfully moved %n keys to custom data. - စကားဝှက်သော့ %n ခုကို စိတ်ကြိုက်အချက်အလက်သို့ အောင်မြင်စွာ ရွှေ့ပြောင်းပြီးပါပြီ။ + KeePassXC - Overwrite existing key? + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC - KeePassHTTP ပင်ကိုအချက်အလက်ပါသော ဖြည့်သွင်းချက် မတွေ့ပါ။ + KeePassXC - Update Entry + - The active database does not contain an entry with KeePassHTTP attributes. - အသုံးပြုနေသော ဒေတာဘေ့စ်တွင် KeePassHTTP ပင်ကိုအချက်အလက်ပါသော ဖြည့်သွင်းချက် မပါဝင်ပါ။ + KeePassXC - Delete entry + - Don't show this warning again - ဤသတိပေးချက်ကို ထပ်မပြပါနှင့် + KeePassXC - New key association request + - KeePassXC: Legacy browser integration settings detected - KeePassXC - အသုံးများသော ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းမှု ဆက်တင်ဟောင်းများ တွေ့ရှိသည် + Passkey + - 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-ဘရောက်ဇာ ဆက်တင်များကို ဒေတာဘေ့စ် ဆက်တင်များသို့ ရွှေ့ရန် လိုအပ်ပါသည်။ -သင်၏ လက်ရှိဘရောက်ဇာ ချိတ်ဆက်မှုများကို ထိန်းသိမ်းရန် လိုအပ်ပါသည်။ -သင်၏ တည်ရှိဆဲ ဆက်တင်များကို ယခု ရွှေ့လိုပါသလား။ + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + @@ -950,10 +1074,6 @@ Would you like to migrate your existing settings now? General ယေဘုယျ - - Browsers installed as snaps are currently not supported. - snaps အဖြစ် တပ်ဆင်ထားသော ဘရောက်ဇာများကို လက်ရှိတွင် မပံ့ပိုးပါ။ - Enable integration for these browsers: ဤဘရောက်ဇာများအတွက် ပေါင်းစပ်ထည့်သွင်းမှုကို ဖွင့်ပါ - @@ -1125,26 +1245,6 @@ Would you like to migrate your existing settings now? Custom extension ID စိတ်ကြိုက်အဆက် ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Snap ကုဒ်စမ်းသပ်သည့်နည်းလမ်းအရ သင်သည် ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းမှု ပြုလုပ်ရန် ရိုးရိုးပရိုဂရမ်တစ်ခုကို လည်ပတ်ရပါမည်။ <br /> သင်သည် ဤရိုးရိုးပရိုဂရမ်ကို %1 မှ ရယူနိုင်သည် - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းမှု အလုပ်လုပ်ရန်အတွက် KeePassXC-ဘရောက်ဇာ လိုအပ်သည်။ <br />%1 နှင့် %2 နှင့် %3 အတွက် ၎င်းကို ဒေါင်းလုဒ်လုပ်ပါ။ %4 - - - Please see special instructions for browser extension use below - ကျေးဇူးပြု၍ ဘရောက်ဇာအဆက် သုံးရန် အထူးညွှန်ကြားချက်များကို အောက်တွင်ကြည့်ပါ - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>ပြဿနာ -</b> စိတ်ကြိုက်ပရောက်စီတည်နေရာကို ရှာမတွေ့ပါ။<br/> ပရောက်စီ အက်ပလီကေးရှင်း မပါဘဲ ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းမှု အလုပ်လုပ်မည်မဟုတ်ပါ။ - - - <b>Warning:</b> The following options can be dangerous! - <b>သတိပေးချက် -</b>အောက်ပါရွေးချယ်မှုများသည် အန္တရာယ်ရှိနိုင်သည်။‌ - Executable Files လည်ပတ်လုပ်ဆောင်နိုင်သော ဖိုင်များ @@ -1161,6 +1261,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location မူလ မက်ဆေ့ချ်ပို့သည့် လက်ခံဖိုင်တွဲတည်နေရာ ရွေးရန် + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1183,14 +1323,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - CSV အကွက်များကို ထည့်သွင်းရန် - - - filename - ဖိုင်အမည် - size, rows, columns အရွယ်အစား၊ အတန်းများ၊ ကော်လံများ @@ -1299,50 +1431,42 @@ Would you like to migrate your existing settings now? Column %1 ကော်လံ %1 - - Imported from CSV file - CSV ဖိုင်မှ ထည့်သွင်းသည် - - - Original data: - မူလ အချက်အလက် - - - - Error(s) detected in CSV file! - CSV ဖိုင်တွင် ပြဿနာ(များ) ရှာတွေ့သည်။ - [%n more message(s) skipped] [နောက်ထပ် မက်ဆေ့ချ် %n ခု ကျော်ထားသည်] - Error - ပြဿနာ + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - CSV ထည့်သွင်းမှု - ရေးသားသူတွင် ပြဿနာများရှိသည် - -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + ပူးတွဲမှုများ CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1၊ %2၊ %3 - - - %n byte(s) - %n ဘိုက် - %n row(s) + CSV row count အတန်း %n ခု %n column(s) + CSV column count ကော်လံ %n ခု @@ -1395,6 +1519,14 @@ Backup database located at %2 Recycle Bin အမှိုက်ပုံး + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1417,40 +1549,10 @@ Backup database located at %2 Password field စကားဝှက်အကွက် - - Enter Additional Credentials (if any): - ထပ်ဆောင်း အထောက်အထားများ (ရှိပါက) ရိုက်ထည့်ပါ - - - - Key File: - စကားဝှက်သော့ ဖိုင် - - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>သင့်ဒေတာဘေ့စ်၏ လုံခြုံရေးကို တိုးမြှင့်ရန် စကားဝှက်အပြင် လျှို့ဝှက်ဖိုင်ကို အသုံးပြုနိုင်သည်။ ဤဖိုင်ကို သင့်ဒေတာဘေ့စ်၏ လုံခြုံရေးဆက်တင်များတွင် ထုတ်လုပ်နိုင်သည်။</p><p>၎င်းသည် သင်၏ *.kdbx ဒေတာဘေ့စ်ဖိုင် <strong>မဟုတ်ပါ</strong>။<br>သင့်တွင် စကားဝှက်သော့ဖိုင် မရှိပါက ဤအကွက်ကို အလွတ်ထားပါ။</p><p>အချက်အလက် ပိုသိရန် နှိပ်ပါ…</p> - - - Key file help - စကားဝှက်သော့ဖိုင် အကူအညီ - Hardware key slot selection ဟာ့ဝဲကီးအပေါက် ရွေးချယ်မှု - - Hardware Key: - ဟာ့ဝဲ စကားဝှက်သော့ - - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>သင်သည် <strong>YubiKey</strong> သို့မဟုတ် <strong>OnlyKey</strong> ကဲ့သို့ ဟာ့ဝဲ လုံခြုံရေး စကားဝှက်သော့တစ်ခုကို အသုံးပြုနိုင်ပြီး ၎င်းတို့တွင် HMAC-SHA1 အတွက် ချိန်ညှိထားသော အပေါက်များ ပါသည်။</p> -<p>နောက်ထပ် အချက်အလက်များအတွက် နှိပ်ပါ…</p>‌ - - - Hardware key help - ဟာ့ဝဲ စကားဝှက်သော့ အကူအညီ - Key file to unlock the database ဒေတာဘေ့စ် လော့ဖြည်ရန် စကားဝှက်သော့ဖိုင် @@ -1463,17 +1565,9 @@ Backup database located at %2 Browse… ရှာဖွေရန်… - - Refresh hardware tokens - ဟာ့ဝဲ တိုက်များကို ပြန်လည်လန်းဆန်းရန် - - - Refresh - ပြန်လည်လန်းဆန်းရန် - Unlock Database - + ဒေတာဘေ့စ်ကို လော့ဖြည်ရန် Cancel @@ -1481,7 +1575,7 @@ Backup database located at %2 Unlock - + လော့ဖြည်ခြင်း Please present or touch your YubiKey to continue… @@ -1489,7 +1583,7 @@ Backup database located at %2 Database Version Mismatch - + မကိုက်ညီသော ဒေတာဘေ့စ် ဗားရှင်း The database you are trying to open was most likely @@ -1499,15 +1593,15 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + KeePassXC ရဲ့ Version အသစ်ဖြစ်နိုင်သည့် ဒေတာဘေ့စ် ကို သင်ဖွင့်ရန် လုပ်ဆောင်နေသည်။ ဘယ်လိုနည်းနှင့်မဆို ဖွင့်လိုက်နိုင်ပေမယ့် ဒေတာပျောက်ဆုံးခြင်း၊ မပြည့်စုံခြင်း၊ မသိမ်းစည်းလိုက်မိခြင်းများ ဖြစ်စေနိုင်သည်။ ထိုကြောင့် KeePassXC ကို Update လုပ်ဆောင်ရန် အကြံပြုပါသည်။ Open database anyway - + မည်သည့်နည်းနှင့်မဆိုဒေတာဘေ့စ်အားဖွင့်ခြင်း Database unlock canceled. - + ဒေတာဘေ့စ်လော့ဖြည့်ခြင်းကို ပယ်ဖျက်ခဲ့သည် ။ Unlock failed and no password given @@ -1527,14 +1621,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password စကားဝှက် အလွတ်ထားပြီး ပြန်စမ်းကြည့်ရန် - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 စကားဝှက်သော့ဖိုင် ဖွင့်ခြင်း မအောင်မြင်ပါ - %1 @@ -1568,22 +1654,64 @@ To prevent this error from appearing, you must go to "Database Settings / S ဒေတာဘေ့စ်ဖိုင်ကို စကားဝှက်သော့ဖိုင်အဖြစ် အသုံးမပြုနိုင်ပါ - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - သင်သည် ဒေတာဘေ့စ်ဖိုင်ကို စကားဝှက်သော့ဖိုင်အဖြစ် အသုံးမပြုနိုင်ပါ။ -သင့်တွင် စကားဝှက်သော့ဖိုင် မရှိပါက ထိုအကွက်ကို အလွတ်ထားပါ။ + authenticate to access the database + ဒေတာဘေ့စ်ကိုဝင်ရောက်ရန် စစ်မှန်ကြောင်းသက်သေပြပါ - Detecting hardware keys… - ဟာ့ဝဲ စကားဝှက်သော့များကို ရှာနေသည်… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - ဟာ့ဝဲ စကားဝှက်သော့များ ရှာမတွေ့ပါ + Select Key File: + - Select hardware key… - ဟာ့ဝဲ စကားဝှက်သော့ ရွေးရန်… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + @@ -1595,10 +1723,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - အဆင့်မြင့် ဆက်တင်များ - General ယေဘုယျ @@ -1623,6 +1747,22 @@ If you do not have a key file, please leave the field empty. Maintenance ပြုပြင်ထိန်းသိမ်းမှု + + KeeShare + KeeShare + + + Secret Service Integration + လျှို့ဝှက်ဝန်ဆောင်မှု ပေါင်းစပ်ထည့်သွင်းခြင်း + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1630,18 +1770,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-ဘရောက်ဇာ ဆက်တင်များ - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - ဒေတာဘေ့စ်အခြေ အုပ်စု ID ကို ပြန်လည်လန်းဆန်းရန် - Disconnect all browsers ဘရောက်ဇာအားလုံးကို ချိတ်ဆက်မှုဖျက်ရန် @@ -1650,6 +1778,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries ဖြည့်သွင်းချက်များနှင့်ဆိုင်သော ဝက်ဘ်ဆိုက်အလိုက် ဆက်တင်အားလုံးကို မေ့ပစ်ရန် + + Refresh database root group ID + ဒေတာဘေ့စ်အခြေ အုပ်စု ID ကို ပြန်လည်လန်းဆန်းရန် + Stored keys သိမ်းထားသော စကားဝှက်သော့များ @@ -1698,18 +1830,10 @@ This may prevent connection to the browser plugin. ဘရောက်ဇာအားလုံးနှင့် အမှန်တကယ် ချိတ်ဆက်မှုဖျက်လိုပါသလား။ ယင်းသည် ဘရောက်ဇာ ချိတ်ဆက်ပရိုဂရမ်နှင့် ချိတ်ဆက်မှုကို တားဆီးနိုင်သည်။ - - KeePassXC: No keys found - KeePassXC - စကားဝှက်သော့များ မတွေ့ပါ - No shared encryption keys found in KeePassXC settings. KeePassXC ဆက်တင်များတွင် မျှဝေထားသော ကုဒ်ဖြင့်ပြောင်းပြီး စကားဝှက်သော့များ မတွေ့ပါ။ - - KeePassXC: Removed keys from database - KeePassXC - ဒေတာဘေ့စ်မှ စကားဝှက်သော့များကို ဖယ်ရှားထားသည် - Successfully removed %n encryption key(s) from KeePassXC settings. KeePassXC ဆက်တင်များမှ ကုဒ်ဖြင့်ပြောင်းပြီး စကားဝှက်သော့ %n ခုကို အောင်မြင်စွာ ဖယ်ရှားပြီးပါပြီ။ @@ -1728,32 +1852,14 @@ Permissions to access entries will be revoked. Abort ဖျက်ပစ်ရန် - - KeePassXC: Removed permissions - KeePassXC - ဖယ်ရှားလိုက်သော ခွင့်ပြုချက်များ - Successfully removed permissions from %n entry(s). ဖြည့်သွင်းချက် %n ခုမှ ခွင့်ပြုချက်များကို အောင်မြင်စွာ ဖယ်ရှားပြီးပါပြီ။ - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - အသုံးများသော ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းမှု အချက်အလက်ဟောင်းအားလုံးကို နောက်ဆုံးပေါ် စံနှုန်းအဖြစ်သို့ အမှန်တကယ် ပြောင်းလဲလိုပါသလား။ -ဘရောက်ဇာ ချိတ်ဆက်ပရိုဂရမ်နှင့် ကိုက်ညီမှု ထိန်းသိမ်းထားရန်အတွက် ၎င်းကို လိုအပ်ပါသည်။ - Refresh database ID ဒေတာဘေ့စ် ID ကို ပြန်လည်လန်းဆန်းရန် @@ -1764,6 +1870,26 @@ This is only necessary if your database is a copy of another and the browser ext ဒေတာဘေ့စ် ID ကို အမှန်တကယ် ပြန်လည်လန်းဆန်းလိုပါသလား။ သင့်ဒေတာဘေ့စ်သည် အခြားဒေတာဘေ့စ်တစ်ခု၏ မိတ္တူဖြစ်ပြီး ဘရောက်ဇာအဆက်နှင့် ချိတ်ဆက်၍မရမှသာ ပြန်လည်လန်းဆန်းရန် လိုအပ်ပါသည်။ + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + legacy KeePassHTTP လက္ခဏာရပ် ကို KeePassXC-Browser နှင့်သင့်လျော်သောဒေတာ သို့ပြောင်းပါ + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + DatabaseSettingsWidgetDatabaseKey @@ -1803,6 +1929,18 @@ Are you sure you want to continue without a password? Failed to change database credentials ဒေတာဘေ့စ် အထောက်အထားများကို ပြောင်းလဲခြင်း မအောင်မြင်ပါ + + Weak password + အားနည်းသော စကားဝှက် + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1810,14 +1948,6 @@ Are you sure you want to continue without a password? Decryption Time: ပြန်ဖြည်ရန် ကြာချိန် - - - Change existing decryption time - ရှိနေဆဲ ပြန်ဖြည်ရန်ကြာချိန်ကို ပြောင်းလဲရန် - - - Change - ပြောင်းလဲမှု - Decryption time in seconds စက္ကန့်နှင့်ပြထားသော ပြန်ဖြည်ရန်ကြာချိန် @@ -1836,11 +1966,11 @@ Are you sure you want to continue without a password? Format cannot be changed: Your database uses KDBX 4 features - + ပုံစံကို ပြောင်းလဲ၍မရနိုင်ပါ - သင်၏ဒေတာဘေ့စ်သည် KDBX 4ကို အသုံးပြုထားခြင်းဖြစ်သည် Unless you need to open your database with other programs, always use the latest format. - + သင်၏ဒေတာဘေ့စ်ကိုအခြားသောပရိုဂရမ်ဖြင့်ဖွင့်ရန်မလိုအပ်လျှင်, နောက်ဆုံးပုံစံကိုသာအမြဲတမ်းအသုံးပြုပါ Encryption Algorithm: @@ -1892,16 +2022,11 @@ Are you sure you want to continue without a password? KDBX 4 (recommended) - + KBDX 4 KDBX 3 - - - - unchanged - Database decryption time is unchanged - မပြောင်းလဲထားပါ + KBDX 3 Number of rounds too high @@ -1955,6 +2080,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) အစဉ်လိုက်လုပ်ဆောင်ချက်(များ) + + Encryption Settings: + + + + Basic + + + + Advanced + အဆင့်မြင့် + DatabaseSettingsWidgetFdoSecrets @@ -2013,18 +2150,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry ဖြည့်သွင်းချက်တစ်ခုရှိ အများဆုံး မှတ်တမ်းတွင်ပါဝင်သည့်အရာ အရေအတွက် - - Max. history items: - အများဆုံး မှတ်တမ်းတွင် ပါဝင်သည့်အရာများ - - Maximum size of history per entry ဖြည့်သွင်းချက်တစ်ခုရှိ အများဆုံး မှတ်တမ်း အရွယ်အစား - - Max. history size: - အများဆုံး မှတ်တမ်းအရွယ်အစား - - MiB MiB @@ -2055,6 +2184,99 @@ This action is not reversible. (old) (အဟောင်း) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + ထည့်သွင်းမှုတစ်ခုစီ၏ မှတ်တမ်းအကြောင်းအရာများ၏ ပမာဏကို ကန့်သတ်ရန် - + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + ထည့်သွင်းမှုတစ်ခုစီ၏ မှတ်တမ်းအကြောင်းအရာများ၏ စုစုပေါင်းအရွယ်အစားကို ကန့်သတ်ရန် - + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + ဒေတာဘေ့စ်မှ အပြီးတိုင်ဖျက်ပစ်မည့်အစား ပြန်လည်ရယူနိုင်သော (recycle bin) အုပ်စု ထဲသို့သာ ရွေ့ပြောင်းထားပါ။ ၄င်း (recycle bin) မှ ရွှေ့ပြောင်းသောအရာများမှာ ဒေတာဘေ့စ်မှ ဖယ်ရှားခံရမည် ဖြစ်သည်။ + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + မိနစ် + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + ရှင်းလင်းရန် + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2150,6 +2372,129 @@ This action is not reversible. ဒေတာဘေ့စ် ဖော်ပြချက် အကွက် + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + ဖယ်ရှားရန် + + + Command Settings + + + + Name + အမည် + + + Save + သိမ်းရန် + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + စက္ကန့် + + DatabaseTabWidget @@ -2182,26 +2527,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV ဖိုင် - - Select CSV file - CSV ဖိုင် ရွေးရန် - Merge database ဒေတာဘေ့စ်ကို ပေါင်းစပ်ရန် - - KeePass 1 database - KeePass 1 ဒေတာဘေ့စ် - - - Open KeePass 1 database - KeePass 1 ဒေတာဘေ့စ် ဖွင့်ရန် - - - Open OPVault - OPVault ဖွင့်ရန် - Export database to CSV file ဒေတာဘေ့စ်ကို CSV ဖိုင်သို့ ပို့ရန် @@ -2214,6 +2543,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. HTML ဖိုင်ကို ရေးသားခြင်း မအောင်မြင်ပါ။ + + Export database to XML file + ဒေတာဘေ့စ်ကို XML ဖိုင်သို့ တင်ပို့ပါ + + + XML file + XML ဖိုင် + + + Writing the XML file failed + XML ဖိုင်ကို ရေးသားခြင်း မအောင်မြင်ပါ + Export Confirmation ပို့ရန် အတည်ပြုချက် @@ -2222,26 +2563,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? သင်သည် သင့်ဒေတာဘေ့စ်ကို ကုဒ်ဖြင့်မပြောင်းရသေးသောဖိုင်သို့ ပို့တော့မည်ဖြစ်သည်။ ဤသို့ပို့ခြင်းဖြင့် သင့်စကားဝှက်များနှင့် ထိခိုက်လွယ်သော အချက်အလက်တို့တွင် အန္တရာယ်ရှိသည်။ သင် ဆက်လုပ်လိုသည်မှာ သေချာပါသလား။ - - New Database - ဒေတာဘေ့စ်အသစ် - - - %1 [New Database] - Database tab name modifier - %1 [ဒေတာဘေ့စ်အသစ်] - %1 [Locked] Database tab name modifier %1 [လော့ချထားသည်] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - + Searches and Tags + ရှာဖွေမှုများနှင့် တက်များ Searching… @@ -2289,7 +2626,11 @@ This is definitely a bug, please report it to the developers. Expired entries - + သက်တမ်းကုန်ဆုံးသွားသော ထည့်သွင်းမှုများ + + + Entries expiring within %1 day(s) + No current database. @@ -2315,6 +2656,18 @@ This is definitely a bug, please report it to the developers. No Results ရလဒ် မရှိပါ + + Save + သိမ်းရန် + + + Enter a unique name or overwrite an existing search from the list: + ထူးခြားသော အမည်တစ်ခုကို ထည့်ပါ သို့မဟုတ် စာရင်းမှရှိပြီးသား ရှာဖွေမှုတစ်ခုကို အစားထိုးရေးပါ - + + + Save Search + ရှာဖွေမှုကိုသိမ်းဆည်းပါ + Lock Database? ဒေတာဘေ့စ်ကို လော့ချမလား။ @@ -2343,26 +2696,6 @@ Save changes? 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? - ဒေတာဘေ့စ်ဖိုင် ပြောင်းလဲထားပြီး သင့်တွင် မသိမ်းရသေးသော ပြောင်းလဲမှုများ ရှိသည်။ -သင့်ပြောင်းလဲမှုများကို ပေါင်းစပ်လိုပါသလား။ - - - Could not open the new database file while attempting to autoreload. -Error: %1 - အော်တိုပြန်တင်ရန် ကြိုးစားစဉ် ဒေတာဘေ့စ်ဖိုင်အသစ်ကို ဖွင့်၍မရပါ။ -ပြဿနာ - %1 - Disable safe saves? ဘေးကင်းသော သိမ်းထားမှုများကို ပယ်ဖျက်မလား။ @@ -2405,9 +2738,94 @@ Disable safe saves and try again? Could not find database file: %1 ဒေတာဘေ့စ်ဖိုင်ကို ရှာမတွေ့ပါ - %1 - - Entries expiring within %1 day(s) - + + New Database + ဒေတာဘေ့စ်အသစ် + + + %1 [New Database] + Database tab name modifier + %1 [ဒေတာဘေ့စ်အသစ်] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2460,10 +2878,6 @@ Disable safe saves and try again? n/a မသက်ဆိုင်ပါ - - (encrypted) - (ကုဒ်ဖြင့်ပြောင်းပြီး) - Select private key သီးသန့် စကားဝှက်သော့ကို ရွေးရန် @@ -2550,6 +2964,10 @@ Would you like to correct it? Hide ဝှက်ရန် + + %n hour(s) + + %n week(s) %n ပတ် @@ -2562,9 +2980,9 @@ Would you like to correct it? %n year(s) %n နှစ် - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2684,10 +3102,20 @@ Would you like to correct it? Add new window association ဝင်းဒိုး ဆက်စပ်မှုအသစ် ထည့်ရန် + + + + Add item + + + Remove selected window association ရွေးချယ်ထားသော ဝင်းဒိုး ဆက်စပ်မှုကို ဖယ်ရှားရန် + + - + Remove item + - + Window title: ဝင်းဒိုးခေါင်းစဉ် - @@ -2712,23 +3140,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window ဤဝင်းဒိုးအတွက် စိတ်ကြိုက် အလိုအလျောက် စာရိုက်ခြင်း အစဉ် - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - ဤဆက်တင်များသည် ဘရောက်ဇာအဆက်နှင့်ဆိုင်သော ဖြည့်သွင်းချက်၏ အပြုအမူပေါ် သက်ရောက်သည်။ - General ယေဘုယျ @@ -2741,26 +3155,14 @@ Would you like to correct it? Skip Auto-Submit for this entry ဤဖြည့်သွင်းချက်အတွက် အလိုအလျောက် တင်သွင်းရန်ကို ကျော်ပါ - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - ဤဆက်တင်ကို HTTP Auth ဝင်းဒိုးငယ်များအတွက်သာ ဘရောက်ဇာသို့ ပို့ပါ။ ၎င်းကိုဖွင့်ထားစဉ် ပုံမှန် လော့ဂ်အင်ဝင်ရောက်မှု ပုံစံများသည် ဤဖြည့်သွင်းချက်ကို ရွေးချယ်နိုင်ရန် ပြမည်မဟုတ်ပါ။ - Use this entry only with HTTP Basic Auth ဤဖြည့်သွင်းချက်ကို HTTP Basic Auth နှင့်သာ သုံးပါ - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - ဤဆက်တင်ကို HTTP Auth ဝင်းဒိုးငယ်များအတွက် ဘရောက်ဇာသို့ မပို့ပါနှင့်။ ၎င်းကိုဖွင့်ထားစဉ် HTTP Auth ဝင်းဒိုးငယ်များသည် ဤဖြည့်သွင်းချက်ကို ရွေးချယ်နိုင်ရန် ပြမည်မဟုတ်ပါ။ - Do not use this entry with HTTP Basic Auth ဤဖြည့်သွင်းချက်ကို HTTP Basic Auth ဖြင့် မသုံးပါနှင့်။ - - Additional URL's - ထပ်ဆောင်း URL များ - Add ထည့်ရန် @@ -2773,6 +3175,22 @@ Would you like to correct it? Edit တည်းဖြတ်ရန် + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2823,22 +3241,10 @@ Would you like to correct it? Notes field မှတ်ချက်များ ဖြည့်ရန်အကွက် - - Toggle the checkbox to reveal the notes section. - မှတ်ချက်များ အပိုင်းကို ပြသရန်အတွက် အမှန်ခြစ်ရန်အကွက်ကို ဖွင့်/ပိတ်ပါ။ - Username field အသုံးပြုသူအမည် ဖြည့်ရန်အကွက် - - Toggle notes visible - မှတ်ချက်များကို မြင်ရအောင် ဖွင့်ပါ - - - Notes: - မှတ်ချက်များ - - Expiration field သက်တမ်းကုန်ဆုံးချိန် အကွက် @@ -2855,14 +3261,6 @@ Would you like to correct it? Presets ကြိုတင်သတ်မှတ်မှုများ - - Password: - စကားဝှက် - - - - URL: - URL - - Url field Url အကွက် @@ -2871,18 +3269,10 @@ Would you like to correct it? Download favicon for URL URL အတွက် သီးသန့်ဝက်ဘ်ဆိုက်အိုင်ကွန်ကို ဒေါင်းလုဒ်လုပ်ပါ - - Title: - ခေါင်းစဉ် - - Title field ခေါင်းစဉ် ဖြည့်ရန်အကွက် - - Username: - အသုံးပြုသူအမည် - - Password field စကားဝှက်အကွက် @@ -2892,15 +3282,39 @@ Would you like to correct it? အဖွင့်၊အပိတ် သက်တမ်းကုန်ဆုံးချိန် - Expires: - သက်တမ်းကုန်ချိန် - + Tags list + ပူးတွဲမှုစာရင်း - Tags: + &Username: - Tags list + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2942,19 +3356,6 @@ Would you like to correct it? Private key သီးသန့် စကားဝှက်သော့ - - External file - ပြင်ပဖိုင် - - - Browser for key file - စကားဝှက်သော့ဖိုင်အတွက် ဘရောက်ဇာ - - - Browse… - Button for opening file dialog - ရှာဖွေရန်… - Attachment ပူးတွဲဖိုင် @@ -2971,6 +3372,23 @@ Would you like to correct it? Remove from agent အေးဂျင့်ဆီမှ ဖယ်ရှားရန် + + External file + ပြင်ပဖိုင် + + + Browser for key file + စကားဝှက်သော့ဖိုင်အတွက် ဘရောက်ဇာ + + + Browse… + Button for opening file dialog + ရှာဖွေရန်… + + + Generate + ထုတ်လုပ်ရန် + Select attachment file ပူးတွဲဖိုင် ရွေးချယ်ရန် @@ -2995,6 +3413,10 @@ Would you like to correct it? seconds စက္ကန့် + + Clear agent + + EditGroupWidget @@ -3006,10 +3428,6 @@ Would you like to correct it? Icon အိုင်ကွန် - - Browser Integration - ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းခြင်း - Properties ဂုဏ်သတ္တိများ @@ -3026,6 +3444,10 @@ Would you like to correct it? Group has unsaved changes အုပ်စုတွင် မသိမ်းရသေးသော အပြောင်းအလဲများ ရှိသည် + + Browser Integration + ဘရောက်ဇာ ပေါင်းစပ်ထည့်သွင်းခြင်း + Enable ဖွင့်ရန် @@ -3041,10 +3463,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - အုပ်စု တည်းဖြတ်ရန် - These settings affect to the group's behaviour with the browser extension. ဤဆက်တင်များသည် ဘရောက်ဇာအဆက်နှင့်ဆိုင်သော အဖွဲ့၏ အပြုအမူပေါ် သက်ရောက်သည်။ @@ -3081,6 +3499,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups ဤအုပ်စုနှင့် အုပ်စုခွဲများအတွက် HTTP Auth ဖွင့်/ပိတ်ခလုတ်ကို မသုံးပါနှင့် + + Omit WWW subdomain from matching: + အောက်ပါတို့မှ လိုက်ဖက်သော ဆပ်ဒိုမိန်း WWW ကို ချန်ထားပါ - + + + Omit WWW subdomain from matching toggle for this and sub groups + ဤအရာနှင့် လက်အောက်ခံအုပ်စုများအတွက် လိုက်ဖက်သောပြောင်းလဲမှုမှ ဆပ်ဒိုမိန်း WWW ကို ချန်ထားပါ + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3173,7 +3607,7 @@ Supported extensions are: %1. KeeShare container - + KeeShare ထည့်သွင်းထားသောနေရာ  KeeShare signed container @@ -3267,15 +3701,15 @@ Supported extensions are: %1. Choose icon… - + icon ‌‌‌ရွေးချယ်ပါ  Set the URL to use to search for a favicon - + Favicon ကိုရှာရန်အတွက် URL ကို နေရာချထား Favicon URL - + Favicon URL Download favicon for URL @@ -3313,10 +3747,6 @@ Supported extensions are: %1. Unable to fetch favicon. သီးသန့်ဝက်ဘ်ဆိုက်အိုင်ကွန်ကို မရယူနိုင်ပါ။ - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - သင်သည် ကိရိယာများ -> ဆက်တင်များ -> လုံခြုံရေး သို့သွားပြီး DuckDuckGo ဝက်ဘ်ဆိုက်အိုင်ကွန်ကို ဖွင့်နိုင်သည် - Existing icon selected. ရှိနေဆဲအိုင်ကွန်ကို ရွေးချယ်ပြီးပါပြီ။ @@ -3349,6 +3779,10 @@ Supported extensions are: %1. The following icon(s) failed: အောက်ပါအိုင်ကွန်(များ) မအောင်မြင်ပါ - + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3425,6 +3859,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - ပုံတူပွားခြင်း + + Passkey + + + + Invalid conversion type: %1 + ပြောင်းလဲမှု အမျိုးအစား မမှန်ကန်ပါ - %1 + + + Invalid conversion syntax: %1 + ပြောင်းလဲမှု ဝါကျဖွဲ့စည်းပုံ မမှန်ကန်ပါ - %1 + + + Invalid regular expression syntax %1 +%2 + ပုံမှန်အသုံးအနှုန်း ဝါကျဖွဲ့စည်းပုံ မမှန်ကန်ပါ %1 +%2 + EntryAttachments @@ -3433,6 +3885,21 @@ This may cause the affected plugins to malfunction. ဖိုင် "%1" ကို မဖွင့်နိုင်ပါ + + EntryAttachmentsDialog + + Form + ပုံစံ + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3470,14 +3937,6 @@ This may cause the affected plugins to malfunction. Remove ဖယ်ရှားရန် - - Rename selected attachment - ရွေးချယ်ထားသော ပူးတွဲဖိုင်ကို ပြန်လည်အမည်ပေးရန် - - - Rename - ပြန်လည်အမည်ပေးရန် - Open selected attachment ရွေးချယ်ထားသော ပူးတွဲဖိုင်ကို ဖွင့်ရန် @@ -3550,12 +4009,7 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + ထပ်ပေါင်းရေးထားသောဖိုင်တွဲကို အတည်ပြု Confirm Attachment @@ -3591,6 +4045,24 @@ Error: %1 အပ်ဒိတ်လုပ်ထားသော ပူးတွဲဖိုင်သိမ်းခြင်း မအောင်မြင်ပါ။ ပြဿနာ - %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + ဖိုင်တွဲ"%1" ရှိနေပါပြီ။ +သင်လက်ရှိဖိုင်တွဲပေါ်တွင် ထပ်ရေးချင်ပါသလား? + + + New + + + + Preview + အစမ်းကြည့်ခြင်း + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3603,7 +4075,7 @@ Error: %1 EntryHistoryModel Current (%1) - + လက်ရှိ (%1) Last modified @@ -3611,11 +4083,11 @@ Error: %1 Age - + အသက် Difference - + ကွဲပြားခြားနားမှု Size @@ -3643,7 +4115,7 @@ Error: %1 Custom Attributes - + စိတ်ကြိုက်‌လက္ခဏာရပ် Icon @@ -3651,7 +4123,7 @@ Error: %1 Color - + အရောင် Expiration @@ -3663,7 +4135,7 @@ Error: %1 Custom Data - + စိတ်ကြိုက်‌အချက်အလက် Attachments @@ -3675,7 +4147,7 @@ Error: %1 Tags - + ပူးတွဲမှုများ @@ -3785,6 +4257,14 @@ Error: %1 Has TOTP TOTP ရှိသည် + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3805,8 +4285,8 @@ Error: %1 စကားဝှက် - Notes - မှတ်ချက်များ + URL + URL Expiration @@ -3814,19 +4294,19 @@ Error: %1 Tags - + ပူးတွဲမှုများ Tags list - + ပူးတွဲမှုစာရင်း Username အသုံးပြုသူအမည် - URL - URL + Notes + မှတ်ချက်များ Advanced @@ -3876,6 +4356,10 @@ Error: %1 Never ဘယ်တော့မှ + + Double click to copy value + value ကို ကူးယူရန် နှစ်ချက်နှိပ်ပါ + Enabled ဖွင့်ထားသည် @@ -3884,6 +4368,10 @@ Error: %1 Disabled ပယ်ဖျက်ထားသည် + + Double click to copy to clipboard + + EntryURLModel @@ -3891,6 +4379,10 @@ Error: %1 Invalid URL မမှန်ကန်သော URL + + Duplicate URL + + EntryView @@ -3906,38 +4398,42 @@ Error: %1 Reset to defaults ပုံသေမူလသို့ ပြန်လည်သတ်မှတ်ပါ + + + %1 entry(s)... + + ExportDialog Export options - + တင်ပို့မှု ရွေးချယ်မှုများ Sort entries by... - + ဝင်ရောက်မှုများကို စီစဉ်ပါ You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + သင်သည် သင့်ဒေတာဘေ့စ်ကို ကုဒ်ဖြင့်မပြောင်းရသေးသောဖိုင်သို့ ပို့တော့မည်ဖြစ်သည်။ ဤသို့ပို့ခြင်းဖြင့် သင့်စကားဝှက်များနှင့် ထိခိုက်လွယ်သော အချက်အလက်တို့တွင် အန္တရာယ်ရှိသည်။ database order - + စီစဉ်ထားသော ဒေတာဘေ့စ် name (ascending) - + နာမည် (ascending) name (descending) - + နာမည် (descending) unknown - + အမည်မသိ Export database to HTML file @@ -4125,6 +4621,193 @@ You can enable the DuckDuckGo website icon service in the security section of th သီးသန့်ဝက်ဘ်ဆိုက်အိုင်ကွန်များကို ဒေါင်းလုဒ်လုပ်နေသည် (%1/%2)… + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + WizardPage + + + Entry count: %1 + + + + Group + အုပ်စု + + + Title + ခေါင်းစဉ် + + + Username + အသုံးပြုသူအမည် + + + Password + စကားဝှက် + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + ပုံစံ + + + Import File Selection + + + + Password: + စကားဝှက် - + + + Key File: + စကားဝှက်သော့ ဖိုင် - + + + Browse… + ရှာဖွေရန်… + + + Import Into: + + + + New Database + ဒေတာဘေ့စ်အသစ် + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + OPVault ဖွင့်ရန် + + + Select import file + + + + All files + ဖိုင်အားလုံး + + + Key files + စကားဝှက်သော့ဖိုင်များ + + + Select key file + စကားဝှက်သော့ဖိုင် ရွေးရန် + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4140,7 +4823,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - + ဒေတာဘေ့စ် ခေါင်းစီးများ လိုနေသည် Unable to calculate database key @@ -4166,11 +4849,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + မမှန်ကန်သော ခေါင်းစီးပိုင်း အရှည်: အပိုင်း %1 Invalid header data length: field %1, %2 expected, %3 found - + မမှန်ကန်သော ခေါင်းစီး အချက်အလက် အရှည်: အပိုင်း %1, %2 မျော်လင့်ထားသည့် %3 တွေ့ရှိခဲ့သည်။ @@ -4227,11 +4910,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + မမှန်ကန်သော ခေါင်းစီးပိုင်း အရှည်: အပိုင်း %1 Invalid header data length: field %1, %2 expected, %3 found - + မမှန်ကန်သော ခေါင်းစီး အချက်အလက် အရှည်: အပိုင်း %1, %2 မျော်လင့်ထားသည့် %3 တွေ့ရှိခဲ့သည်။ Failed to open buffer for KDF parameters in header @@ -4251,11 +4934,11 @@ If this reoccurs, then your database file may be corrupt. Invalid inner header field length: field %1 - + မမှန်ကန်သော အတွင်းခေါင်းစီးပိုင်း အရှည်: အပိုင်း %1 Invalid inner header data length: field %1, %2 expected, %3 found - + မမှန်ကန်သော အတွင်းပိုင်း ခေါင်းစီး အချက်အလက် အရှည်: အပိုင်း %1, %2 မျော်လင့်ထားသည့် %3 တွေ့ရှိခဲ့သည်။ Invalid inner header binary size @@ -4559,17 +5242,6 @@ Line %2, column %3 သီးသန့်စကားဝှက်သော့ကို ဖွင့်ခြင်း မအောင်မြင်ပါ - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass1 ဒေတာဘေ့စ်ကို တင်ပို့ရန် - - - Unable to open the database. - ဒေတာဘေ့စ်ကို ဖွင့်၍မရပါ။ - - KeePass1Reader @@ -4926,10 +5598,6 @@ Are you sure you want to continue with this file? &Recent Databases &မကြာမီက ဒေတာဘေ့စ်များ - - &Import - &ထည့်သွင်းရန် - &Export &ပို့ရန် @@ -4950,6 +5618,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + ပူးတွဲမှုများ + &Groups &အုပ်စုများ @@ -4994,34 +5666,18 @@ Are you sure you want to continue with this file? &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 - ဖြည့်သွင်းချက်ကို ကြည့်ရန် သို့မဟုတ် တည်းဖြတ်ရန် - &Delete Entry… &ဖြည့်သွင်းရန် ဖျက်ရန်… @@ -5030,10 +5686,6 @@ Are you sure you want to continue with this file? &New Group… &အုပ်စုသစ်… - - Add a new group - အုပ်စုသစ် ထည့်ရန် - &Edit Group… &အုပ်စု တည်းဖြတ်ရန်… @@ -5066,18 +5718,10 @@ Are you sure you want to continue with this file? Database &Reports… ဒေတာဘေ့စ် &အစီရင်ခံစာများ… - - Statistics, health check, etc. - စာရင်းအင်း၊ ကျန်းမာရေး စစ်ဆေးမှု စသည် - &Database Settings… &ဒေတာဘေ့စ် ဆက်တင်များ… - - Database settings - ဒေတာဘေ့စ် ဆက်တင်များ - &Clone Entry… &ဖြည့်သွင်းချက် ပုံတူပွားရန်… @@ -5086,34 +5730,18 @@ Are you sure you want to continue with this file? Move u&p အပေါ်သို့ ရွှေ့ရန် - - Move entry one step up - ဖြည့်သွင်းချက်ကို တစ်ဆင့်တက် ရွှေ့ရန် - Move do&wn အောက်သို့ ရွှေ့ရန် - - Move entry one step down - ဖြည့်သွင်းချက်ကို အောက်သို့ တစ်ဆင့်ချရွှေ့ရန် - Copy &Username &အသုံးပြုသူအမည် ကူးရန် - - Copy username to clipboard - အသုံးပြုသူအမည်ကို clipboard သို့ ကူးရန် - Copy &Password &စကားဝှက် ကူးရန် - - Copy password to clipboard - စကားဝှက်ကို clipboard သို့ ကူးရန် - &Settings &ဆက်တင်များ @@ -5136,36 +5764,24 @@ Are you sure you want to continue with this file? &Lock Database - + &ဒေတာဘေစ့်များကို လော့ချရန် Lock &All Databases - + လော့ချခြင်း &ဒေတာဘေ့စ် အားလုံး &Title &ခေါင်းစဉ် - Copy title to clipboard - ခေါင်းစဉ်ကို clipboard သို့ ကူးရန် - - - &URL - &URL - - - Copy URL to clipboard - URL ကို clipboard သို့ ကူးရန် + Copy &URL + &URL ကို ကူးယူပါ &Notes &မှတ်ချက်များ - - Copy notes to clipboard - မှတ်ချက်များကို clipboard သို့ ကူးရန် - &CSV File… &CSV ဖိုင်… @@ -5178,26 +5794,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 ဒေတာဘေ့စ်… - - Import a KeePass 1 database - KeePass 1 ဒေတာဘေ့စ် ထည့်သွင်းရန် - 1Password Vault… 1Password သိုလှောင်ခန်း… - - Import a 1Password Vault - 1Password သိုလှောင်ခန်း ထည့်သွင်းရန် - CSV File… CSV ဖိုင်… - - Import a CSV file - CSV ဖိုင် ထည့်သွင်းရန် - Show TOTP TOTP ပြရန် @@ -5214,6 +5818,10 @@ Are you sure you want to continue with this file? Copy &TOTP &TOTP ကို ကူးရန် + + Copy Password and TOTP + စကားဝှက်နှင့် TOTP ကို ကူးယူပါ + E&mpty recycle bin အမှိုက်ပုံးကို သွန်ရန် @@ -5238,10 +5846,6 @@ Are you sure you want to continue with this file? &Online Help &အွန်လိုင်း အကူအညီ - - Go to online documentation - အွန်လိုင်း အသုံးပြုနည်းလက်စွဲသို့ သွားရန် - &User Guide &အသုံးပြုသူ လမ်းညွှန် @@ -5286,6 +5890,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) ဂန္ဓဝင် (ပလက်ဖောင်းမူလ) + + Show Menubar + + Show Toolbar တူးလ်ဘား ပြရန် @@ -5310,6 +5918,10 @@ Are you sure you want to continue with this file? Clone Group... အုပ်စုကို ပုံတူပွားရန်… + + &XML File… + &XML ဖိုင်… + Clear history မှတ်တမ်းကို ရှင်းရန် @@ -5337,10 +5949,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 ကို ရပ်တန့်စေနိုင်သည်။ -ကျွန်ုပ်တို့၏ ဒေါင်းလုဒ်စာမျက်နှာတွင် ရရှိနိုင်သော AppImage ကို သုံးရန် သင့်အား အကြံပြုပါသည်။ + No Tags + တဂ်များမရှိပါ Restore Entry(s) @@ -5370,6 +5980,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC KeePassXC မှ ထွက်ရန် + + %1 Entry(s) + %1 ဖြည့်သွင်းချက်(s) + Please present or touch your YubiKey to continue… ကျေးဇူးပြု၍ ဆက်လုပ်ရန် သင့် YubiKey ကို တင်ပြပါ သို့မဟုတ် နှိပ်ပါ… @@ -5382,6 +5996,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? သင်သည် ဤဆက်တင်ကို သုံးရန် အက်ပလီကေးရှင်းကို ပြန်လည်စတင်ရမည်။ ယခု ပြန်လည်စတင်လိုပါသလား။ + + Allow Screen Capture + မျက်နှာပြင်ကို ဓါတ်ပုံရိုက်ယူခွင့်ပြုပါ + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + ဖြည့်သွင်းချက်ကို တည်းဖြတ်ရန် + + + Delete Entry + + + + Create Group + + + + Edit Group + အုပ်စု တည်းဖြတ်ရန် + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + အသုံးပြုသူအမည် ကူးရန် + + + Copy Password + စကားဝှက် ကူးရန် + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + KeePass1 ဒေတာဘေ့စ်ကို တင်ပို့ရန် + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5418,11 +6340,11 @@ We recommend you use the AppImage available on our downloads page. Reset - + မူလအတိုင်းပြန်လည်စတင်ခြင်း Reset any remembered decisions for this application - + ယခုအက်ပ်ပလီကေးရှင်းအတွက်သိမ်းဆည်းထားသောမှတ်တမ်းများအားမူလအတိုင်းပြန်လည်သတ်မှတ်ပါ @@ -5439,26 +6361,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5518,14 +6420,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. ဒေတာဘေ့စ် ကုဒ်ဖြင့်ပြောင်းခြင်း ဆက်တင်များကို ဤနေရာတွင် ချိန်ညှိနိုင်သည်။ ၎င်းတို့ကို ဒေတာဘေ့စ် ဆက်တင်များတွင် နောက်မှ ပြောင်းလဲနိုင်သည်။ - - Advanced Settings - အဆင့်မြင့် ဆက်တင်များ - - - Simple Settings - လွယ်ကူရိုးရှင်းသော ဆက်တင်များ - NewDatabaseWizardPageDatabaseKey @@ -5560,6 +6454,25 @@ We recommend you use the AppImage available on our downloads page. ကျေးဇူးပြု၍ သင့်ဒေတာဘေ့စ်အသစ်အတွက် ပြသရန်အမည်နှင့် ရွေးချယ်နိုင်သည့် ဖော်ပြချက်ကို ဖြည့်ပါ။ + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5606,15 +6519,6 @@ We recommend you use the AppImage available on our downloads page. ကုဒ်ပြောင်းမထားသောစာသား %1 ဘိုက်ကို မျှော်လင့်ခဲ့သည်၊ %2 တွေ့ခဲ့သည် - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - ဖတ်ရန်ဒေတာဘေ့စ်သည် မည်သည့်အရာကိုမျှ မထုတ်လုပ်ခဲ့ပါ -%1 - - OpVaultReader @@ -5688,6 +6592,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 အမည်မသိ ကုဒ်ရေးသားမှု - %1 + + AES-256/GCM is currently not supported + AES-256/GCM ကို လောလောဆယ် မပံ့ပိုးပါ + Passphrase is required to decrypt this key ဤစကားဝှက်သော့ကို ပြန်ဖြည်ရန် လျှို့ဝှက်စာသား လိုအပ်သည် @@ -5752,28 +6660,180 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key သီးသန့်စကားဝှက်သော့ ရေးစဉ် မထင်မှတ်သော EOF ဖြစ်ခဲ့သည် + + (encrypted) + (ကုဒ်ဖြင့်ပြောင်းပြီး) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - စကားဝှက်သော့များ မကိုက်ညီပါ + SSH Key Generator + - Passwords match so far - ယခုချိန်ထိ စကားဝှက်သော့များ ကိုက်ညီသည် + Type + အမျိုးအစား - Toggle Password (%1) - စကားဝှက်ကို ဝှက်ရန်/ပြရန် (%1) + Bits + - Generate Password (%1) - စကားဝှက် ထုတ်လုပ်ရန် (%1) + Comment + မှတ်ချက်ပေးရန် + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - သတိပေးချက် - Caps Lock ဖွင့်ထားသည်။ + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + ပယ်ဖျက်ရန် + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + အုပ်စု + + + Database + + + + Import Passkey + + + + Import + ထည့်သွင်းရန် + + + Cancel + ပယ်ဖျက်ရန် + + + Entry + ဖြည့်သွင်းချက် + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + ဖိုင်အားလုံး + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5954,10 +7014,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: ၎င်းတို့မှလည်း ရွေးပါ - - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - ဖယ်ထားသော စာလုံးများ - "0"၊ "1"၊ "l"၊ "I"၊ "O"၊ "|"၊ "﹒" - Exclude look-alike characters ဆင်တူစာလုံးများကို ဖယ်ရန် @@ -5982,25 +7038,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: စလုံးအရေအတွက် - - - Character Count: - စာလုံး အရေအတွက် - - Word Case: စကားလုံးအလိုက် - Delete selected wordlist - + ရွေးခြယ်ထားသောစာလုံးများအားဖျက်ပါ Add custom wordlist - - - - character - စာလုံး + စိတ်ကြိုက်ပြုလုပ်ထားသောစာလုံးစာရင်းအားထည့်သွင်းပါ Close @@ -6032,57 +7080,12 @@ We recommend you use the AppImage available on our downloads page. (SYSTEM) - + စနစ် Entropy: %1 bit အချက်အလက် ရွှေ့ပြောင်းနှုန်း - %1 ဘစ် - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - ဖိုင်အားလုံး - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - စာသားကိုယ်စားပြု သင်္ကေတများ - - - Special Characters - အထူးစာလုံးများ - Password Quality: %1 စကားဝှက် အရည်အသွေး - %1 @@ -6107,6 +7110,119 @@ Do you want to overwrite it? Password quality အလွန်ကောင်း + + Confirm Delete Wordlist + စာလုံးစာရင်းအားဖျက်ရန်အတည်ပြုပါသည် + + + Do you really want to delete the wordlist "%1"? + သင့်အနေနှင့်စာလုံးစာရင်း"%1"အားဖျက်ရန်သေချာပါသလား? + + + Failed to delete wordlist + စာလုံးစာရင်းအားဖျက်ရန်မအောင်မြင်ပါ + + + Wordlists + စာလုံးစာရင်း + + + All files + ဖိုင်အားလုံး + + + Select Custom Wordlist + စိတ်ကြိုက်ပြုလုပ်ထားသောစာလုံးစာရင်းအားရွေးခြယ်ပါ + + + Overwrite Wordlist? + စာလုံးစာရင်း ထပ်ရေးရန် + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + စာလုံးစာရင်း ၁ ရာခို်င်နှုန်းသည် စိတ်ကြိုက်ပြုလုပ်နိုင်သော စာလုံးစာရင်းတွင် ပါရှိပြီးဖြစ်သည်။ +သင် ထပ်ရေးချင်ပါသလား ? + + + Failed to add wordlist + စာလုံးစာရင်းတွင် ထပ်ဖြည့်ရန် မအောင်မြင်ပါ ။ + + + Logograms + စာသားကိုယ်စားပြု သင်္ကေတများ + + + Special Characters + အထူးစာလုံးများ + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + စကားဝှက်များ မကိုက်ညီပါ + + + Passwords match so far + ယခုချိန်ထိ စကားဝှက်များ ကိုက်ညီသည် + + + Toggle Password (%1) + စကားဝှက်ကို ဝှက်ရန်/ပြရန် (%1) + + + Generate Password (%1) + စကားဝှက် ထုတ်လုပ်ရန် (%1) + + + Warning: Caps Lock enabled! + သတိပေးချက် - Caps Lock ဖွင့်ထားသည်။ + + + Quality: %1 + အရည်အသွေး - %1 + + + Poor + Password quality + ညံ့ + + + Weak + Password quality + အားနည်း + + + Good + Password quality + ကောင်း + + + Excellent + Password quality + အလွန်ကောင်း + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6123,6 +7239,21 @@ Do you want to overwrite it? စာလုံးများကြားတွင် &Tab ကို နှိပ်ပါ + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6161,6 +7292,10 @@ Do you want to overwrite it? Continue ဆက်လုပ်ရန် + + Continue with weak password + + QObject @@ -6366,19 +7501,19 @@ Do you want to overwrite it? Export an attachment of an entry. - + ဖြည့်သွင်းချက်တစ်ခုအတွက် ပူးတွဲဖိုင်အား တင်ပို့ပါ ။ Path of the entry with the target attachment. - + ရည်ရွယ်ထားသော ပူးတွဲဖိုင်နှင့်အတူ ဖြည့်သွင်းရမည့် လမ်းကြောင်း Name of the attachment to be exported. - + တင်ပို့ရမည့် ပူးတွဲဖိုင်နာမည် Path to which the attachment should be exported. - + ပူးတွဲဖိုင်တင်ပို့သင့်သည့် လမ်းကြောင်း Could not find entry with path %1. @@ -6386,63 +7521,63 @@ Do you want to overwrite it? Could not find attachment with name %1. - + %1 နာမည်နှင့် ပူးတွဲဖိုင်အား ရှာမတွေ့ပါ ။ No export target given. Please use '--stdout' or specify an 'export-file'. - + တင်ပို့ရမည့် ပစ်မှတ်နေရာ ပေးထားခြင်းမရှိ ။ ကျေးဇူးပြု၍ '--stdout' ကိုသုံးပါ သို့မဟုတ် 'export-file' ကို သတ်မှတ်ပေးပါ။ Could not open output file %1. - + %1 ရလဒ်ဖိုင်ကို ဖွင့်၍မရပါ ။ Successfully exported attachment %1 of entry %2 to %3. - + ဖြည့်သွင်းချက် ၂% မှ ၃ % ၏ ၁ % သော ပူးတွဲဖိုင်များကို အောင်မြင်စွာထုပ်ယူပြီးဖြစ်သည်။ Overwrite existing attachments. - + ရှိရင်းစွဲ ပူးတွဲဖိုင်များအပေါ် ထပ်ရေးပါ။ Imports an attachment to an entry. - + ပူးတွဲဖိုင်အား ဖြည့်သွင်းချက်သို့ ထည့်သွင်းပါ။ Path of the entry. - + ဖြည့်သွင်းရန် လမ်းကြောင်း Name of the attachment to be added. - + ထည့်ရမည့် ပူးတွဲဖိုင်၏အမည် Path of the attachment to be imported. - + ပူးတွဲဖိုင်၏ လမ်းကြောင်းကို တင်သွင်းသည့် Attachment %1 already exists for entry %2. - + ဖြည့်သွင်းချက် ၂% အတွက် ပူးတွဲဖိုင် ၁% ရှိပြီးဖြစ်သည်။ Could not open attachment file %1. - + %1 ပူးတွဲဖိုင်ကို ဖွင့်၍မရပါ ။ Successfully imported attachment %1 as %2 to entry %3. - + ဖြည့်သွင်းချက် ၂% မှ ၃ % ၏ ၁ % သော ပူးတွဲဖိုင်များကို အောင်မြင်ထည့်သွင်းပြီးဖြစ်သည်။ Remove an attachment of an entry. - + ဖြည့်သွင်းချက်၏ ပူးတွဲဖိုင်အား ဖယ်ရှားသည်။ Name of the attachment to be removed. - + ဖယ်ရှားရမည့် ပူးတွဲဖိုင်အမည် Successfully removed attachment %1 from entry %2. - + ထည့်သွင်းပြီး %2 မှ ပူးတွဲဖိုင် %1 အား အောင်မြင်စွာဖယ်ရှားပြီး Copy the given attribute to the clipboard. Defaults to "password" if not specified. @@ -6554,6 +7689,10 @@ Do you want to overwrite it? Too many arguments provided. ပေးထားသော တန်ဖိုးများ များလွန်းသည်။ + + Path of the database. + ဒေတာဘေ့စ် လမ်းကြောင်း။ + Target decryption time in MS for the database. ဒေတာဘေ့စ်အတွက် MS ရှိ မှန်းထားသော ပြန်ဖြည်ရန်ကြာချိန်။ @@ -6574,10 +7713,6 @@ Do you want to overwrite it? Create a new database. ဒေတာဘေ့စ်အသစ်တစ်ခု ဖန်တီးပါ။ - - Path of the database. - ဒေတာဘေ့စ် လမ်းကြောင်း။ - Invalid decryption time %1. မမှန်ကန်သော ပြန်ဖြည်ရန်ကြာချိန် %1။ @@ -6622,6 +7757,158 @@ Do you want to overwrite it? Successfully created new database. ဒေတာဘေ့စ်အသစ် အောင်မြင်စွာ ဖန်တီးပြီးပါပြီ။ + + Unset the password for the database. + ဒေတာဘေ့စ်အတွက် စကားဝှက်ကို မသတ်မှတ်ပါ။ + + + Unset the key file for the database. + ဒေတာဘေ့စ်အတွက် သော့ဖိုင်ကို သတ်မှတ်မထားပါ။ + + + Edit a database. + ဒေတာဘေ့စကို တည်းဖြတ်ပါ။ + + + Cannot use %1 and %2 at the same time. + %1 နှင့် %2 ကို တစ်ချိန်တည်းတွင် အသုံးမပြုနိုင်ပါ။ + + + Could not change the database key. + ဒေတာဘေ့စ်သော့ကို မပြောင်းနိုင်ပါ။ + + + Database was not modified. + ဒေတာဘေ့စ်ကို မွမ်းမံမထားပါ။ + + + Writing the database failed: %1 + ဒေတာဘေ့စ်ကို ရေးသားခြင်း မအောင်မြင်ပါ - %1 + + + Successfully edited the database. + ဒေတာဘေ့စ်ကို အောင်မြင်စွာ တည်းဖြတ်ခဲ့သည်။ + + + Cannot remove password: The database does not have a password. + စကားဝှက်ကို ဖယ်ရှား၍မရပါ - ဒေတာဘေ့စ်တွင် စကားဝှက်တစ်ခု မရှိပါ။ + + + Cannot remove file key: The database does not have a file key. + ဖိုင်သော့ကို ဖယ်ရှား၍မရပါ - ဒေတာဘေ့စ်တွင် ဖိုင်သော့တစ်ခု မရှိပါ။ + + + Loading the new key file failed: %1 + သော့ဖိုင်အသစ်ကို တင်ခြင်း မအောင်မြင်ပါ - %1 + + + Found unexpected Key type %1 + မမျှော်လင့်ထားသော သော့အမျိုးအစား %1 ကို တွေ့ရှိခဲ့သည် + + + Cannot remove all the keys from a database. + ဒေတာဘေ့စ်တစ်ခုမှ သော့အားလုံးကို မဖယ်ရှားနိုင်ပါ။ + + + Show a database's information. + ဒေတာဘေ့စ်၏ အချက်အလက်ကို ပြပါ။ + + + UUID: + UUID - + + + Name: + အမည် - + + + Description: + ဖော်ပြချက် - + + + Cipher: + ကုဒ်ရေးသားမှု - + + + KDF: + KDF - + + + Recycle bin is enabled. + အမှိုက်ပုံးကို ဖွင့်ထားသည်။ + + + Recycle bin is not enabled. + အမှိုက်ပုံးကို ဖွင့်မထားပါ။ + + + Location + တည်နေရာ + + + Database created + ဒေတာဘေ့စ် ဖန်တီးပြီးပါပြီ + + + Last saved + နောက်ဆုံးသိမ်းခဲ့ချိန် + + + Unsaved changes + သိမ်းမထားသော အပြောင်းအလဲများ + + + yes + ဟုတ် + + + no + မဟုတ် + + + Number of groups + အုပ်စု အရေအတွက် + + + Number of entries + ဖြည့်သွင်းချက် အရေအတွက် + + + Number of expired entries + သက်တမ်းကုန်သွားသော ဖြည့်သွင်းချက် အရေအတွက် + + + Unique passwords + သီးသန့် စကားဝှက်များ + + + Non-unique passwords + သီးသန့်မဟုတ်သော စကားဝှက်များ + + + Maximum password reuse + အများဆုံး စကားဝှက်ပြန်သုံးမှု + + + Number of short passwords + စကားဝှက်အတို အရေအတွက် + + + Number of weak passwords + အားနည်းသော စကားဝှက် အရေအတွက် + + + Entries excluded from reports + အစီရင်ခံစာများမှ ဖယ်ထားသော ဖြည့်သွင်းချက်များ + + + Average password length + ပျမ်းမျှ စကားဝှက်အရှည် + + + %1 characters + စာလုံး %1 လုံး + Word count for the diceware passphrase. ခိုင်မာသော လျှို့ဝှက်စာစုအတွက် စာလုံးအရေအတွက်။ @@ -6645,10 +7932,6 @@ Do you want to overwrite it? Invalid word count %1 မမှန်ကန်သော စာလုံးအရေအတွက် %1 - - The word list is too small (< 1000 items) - စကားလုံးစာရင်း သေးလွန်းသည် (ပါဝင်သည့်အရာ < 1000) - Title for the entry. ဖြည့်သွင်းချက် ခေါင်းစဉ်။ @@ -6673,10 +7956,6 @@ Do you want to overwrite it? Enter new password for entry: ဖြည့်သွင်းချက်အတွက် စကားဝှက်အသစ် ထည့်ပါ - - - Writing the database failed: %1 - ဒေတာဘေ့စ်ကို ရေးသားခြင်း မအောင်မြင်ပါ - %1 - Successfully edited entry %1. ဖြည့်သွင်းချက် %1 ကို အောင်မြင်စွာ တည်းဖြတ်ပြီးပါပြီ။ @@ -6797,10 +8076,6 @@ Do you want to overwrite it? Exit interactive mode. ပြန်လှန်တုံ့ပြန်သောမုဒ်မှ ထွက်ပါ။ - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - ပို့နေစဉ် သုံးရမည့် ဖောမက်။ ရရှိနိုင်သော ရွေးချယ်မှုများမှာ 'xml' သို့မဟုတ် 'csv' ဖြစ်သည်။ 'xml' သည် ပုံသေဖြစ်သည်။ - Exports the content of a database to standard output in the specified format. ဒေတာဘေ့စ်ပါ အကြောင်းအရာကို သတ်မှတ်ဖော်ပြထားသော ဖာမက်ဖြင့် စံရလဒ်အဖြစ် ပို့သည်။ @@ -6851,7 +8126,7 @@ Do you want to overwrite it? Use custom character set - + စိတ်ကြိုက် စာလုံး အစု အားအသုံးပြုမည် Exclude similar looking characters @@ -6901,106 +8176,6 @@ Do you want to overwrite it? Successfully imported database. ဒေတာဘေ့စ် အောင်မြင်စွာ ထည့်သွင်းပြီးပါပြီ။ - - Show a database's information. - ဒေတာဘေ့စ်၏ အချက်အလက်ကို ပြပါ။ - - - UUID: - UUID - - - - Name: - အမည် - - - - Description: - ဖော်ပြချက် - - - - Cipher: - ကုဒ်ရေးသားမှု - - - - KDF: - KDF - - - - Recycle bin is enabled. - အမှိုက်ပုံးကို ဖွင့်ထားသည်။ - - - Recycle bin is not enabled. - အမှိုက်ပုံးကို ဖွင့်မထားပါ။ - - - Location - တည်နေရာ - - - Database created - ဒေတာဘေ့စ် ဖန်တီးပြီးပါပြီ - - - Last saved - နောက်ဆုံးသိမ်းခဲ့ချိန် - - - Unsaved changes - သိမ်းမထားသော အပြောင်းအလဲများ - - - yes - ဟုတ် - - - no - မဟုတ် - - - Number of groups - အုပ်စု အရေအတွက် - - - Number of entries - ဖြည့်သွင်းချက် အရေအတွက် - - - Number of expired entries - သက်တမ်းကုန်သွားသော ဖြည့်သွင်းချက် အရေအတွက် - - - Unique passwords - သီးသန့် စကားဝှက်များ - - - Non-unique passwords - သီးသန့်မဟုတ်သော စကားဝှက်များ - - - Maximum password reuse - အများဆုံး စကားဝှက်ပြန်သုံးမှု - - - Number of short passwords - စကားဝှက်အတို အရေအတွက် - - - Number of weak passwords - အားနည်းသော စကားဝှက် အရေအတွက် - - - Entries excluded from reports - အစီရင်ခံစာများမှ ဖယ်ထားသော ဖြည့်သွင်းချက်များ - - - Average password length - ပျမ်းမျှ စကားဝှက်အရှည် - - - %1 characters - စာလုံး %1 လုံး - Unknown command %1 အမည်မသိ ညွှန်ကြားချက် %1 @@ -7173,9 +8348,13 @@ Available commands: Show the protected attributes in clear text. ကာကွယ်ထားသော ပင်ကိုအချက်အလက်များကို ကုဒ်ပြောင်းမထားသော စာသားဖြင့် ပြပါ။ + + Show all the attributes of the entry. + ထည့်သွင်းမှု၏ အရည်အချင်းအားလုံးကို ပြပါ။ + Show the attachments of the entry. - + ဖြည့်သွင်းချက်၏ ပူးတွဲဖိုင် များအားပြပါ။ 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. @@ -7199,11 +8378,11 @@ Available commands: No attachments present. - + မည်သည့် ပူးတွဲဖိုင်မျှ မပါရှိပါ။ Attachments: - + ပူးတွဲဖိုင်များ Failed to open database file %1: not found @@ -7242,6 +8421,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 မမှန်ကန်သော YubiKey အစဉ် %1 + + Please present or touch your YubiKey to continue. + ကျေးဇူးပြု၍ ဆက်လုပ်ရန် သင့် YubiKey ကို တင်ပြပါ သို့မဟုတ် နှိပ်ပါ + Enter password to encrypt database (optional): ဒေတာဘေ့စ်ကို ကုဒ်ဖြင့်ပြောင်းရန် စကားဝှက် ရိုက်ထည့်ပါ (ချန်ထားနိုင်သည်) - @@ -7382,7 +8565,7 @@ CPU တည်ဆောက်ပုံ - %2 KeeShare - + KeeShare YubiKey @@ -7390,7 +8573,7 @@ CPU တည်ဆောက်ပုံ - %2 Quick Unlock - + အမြန်ပွင့် Secret Service Integration @@ -7429,8 +8612,8 @@ CPU တည်ဆောက်ပုံ - %2 - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan စာကြည့်တိုက်သည် အနည်းဆုံး 2.11.x ဖြစ်ရမည်၊ %1.%2.%3 ကို တွေ့ရှိထားသည် + Botan library must be at least %1, found %2.%3.%4 + Cryptographic libraries: @@ -7480,18 +8663,6 @@ CPU တည်ဆောက်ပုံ - %2 file empty ဖိုင် လွတ်နေသည် - - malformed string - စံမမှီသော စာကြောင်း - - - missing closing quote - အပိတ်အမှတ်အသား လိုနေသည် - - - %1: (row, col) %2,%3 - %1: (အတန်း၊ ကော်လံ) %2,%3 - AES 256-bit AES 256-bit @@ -7502,7 +8673,7 @@ CPU တည်ဆောက်ပုံ - %2 ChaCha20 256-bit - + ChaCha20 256-bit Argon2d (KDBX 4 – recommended) @@ -7518,7 +8689,7 @@ CPU တည်ဆောက်ပုံ - %2 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7616,7 +8787,7 @@ CPU တည်ဆောက်ပုံ - %2 Browser Statistics - + ဘရောင်ဇာ စာရင်းအင်းများ Health Check @@ -7670,14 +8841,6 @@ CPU တည်ဆောက်ပုံ - %2 read password of the database from stdin စံထည့်သွင်းမှုမှ ဒေတာဘေ့စ်၏ စကားဝှက်ကို ဖတ်ပါ - - allow app screen recordering and screenshots - အက်ပ်စခရင် မှတ်တမ်းတင်ခြင်းနှင့် စခရင်ရှော့(တ်)များကို ခွင့်ပြုပါ - - - Locked databases. - လော့ချထားသော ဒေတာဘေ့စ်များ။ - Database failed to lock. ဒေတာဘေ့စ်ကို လော့ချ၍မရပါ။ @@ -7686,6 +8849,10 @@ CPU တည်ဆောက်ပုံ - %2 Another instance of KeePassXC is already running. KeePassXC ကို အခြားတစ်နေရာတွင် လည်ပတ်နေပါသည်။ + + KeePassXC is not running. No open database to lock + KeePassXC သည် အလုပ်မလုပ်ပါ။ လော့ခ်ဖွင့်ရန် ဒေတာဘေ့စ်မရှိပါ + Fatal error while testing the cryptographic functions. ကုဒ်ထည့်ထားသော လုပ်ဆောင်ချက်များကို စစ်ဆေးစဉ် အရေးကြီးပြဿနာ ဖြစ်ခဲ့သည်။ @@ -7694,10 +8861,6 @@ CPU တည်ဆောက်ပုံ - %2 KeePassXC - Error KeePassXC - ပြဿနာ - - Warning: Failed to prevent screenshots on a top level window! - သတိပေးချက် - အဆင့်မြင့်ဝင်းဒိုးတွင် စခရင်ရှော့(များ)ကို တားဆီးခြင်း မအောင်မြင်ပါ။ - Database password: ဒေတာဘေ့စ် စကားဝှက် - @@ -7714,16 +8877,319 @@ CPU တည်ဆောက်ပုံ - %2 Failed to create Windows Hello credential. - + Windows Hello အထောက်အထားကို ဖန်တီး၍ မရနိုင်ပါ Failed to sign challenge using Windows Hello. + Windows Hello ကိုအသုံးပြုပြီး လက်မှတ်ထိုးဝင်၍ မရပါ + + + Warning: Failed to block screenshot capture on a top-level window. + သတိပေးချက် - ထိပ်တန်းအဆင့်ဝင်းဒိုးတွင် မျက်နှာပြင်ဖမ်းယူခြင်းကို မတားဆီးနိုင်ပါ။ + + + Invalid Cipher + Cipher မမှန်ပါ + + + Invalid KDF + KDF မမှန်ပါ + + + Access to all entries is denied - Please present or touch your YubiKey to continue. + allow screenshots and app recording (Windows/macOS) + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + KeePassXC crypto စတင်ရန် မအောင်မြင်ခဲ့ပါ + + + Failed to encrypt key data. + အချက်အလက်များကို ကုဒ်ဖြင့်ပြောင်းရန် မအောင်မြင်ခဲ့ပါ + + + Failed to get Windows Hello credential. + Window Hello အထောက်အထားရရန် မအောင်မြင်ခဲ့ပါ + + + Failed to decrypt key data. + အချက်အလက်များကို ကုဒ်ပြန်ဖြည်ခြင်း မအောင်မြင်ခဲ့ပါ + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + ချိတ်ဆက်ပရိုဂရမ် အချက်အလက်ကို ဖျက်မလား။ + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + ပူးတွဲမှုများ + QtIOCompressor @@ -7759,43 +9225,62 @@ CPU တည်ဆောက်ပုံ - %2 စက်တွင်း zlib ပြဿနာ - + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - သက်တမ်းကုန်ပြီးသော ဖြည့်သွင်းချက်များကို အစီရင်ခံစာမှ ဖယ်ပါ - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + ထည့်သွင်းမှုများကိုပြင်ဆင်ရန် ကလစ် ၂ ချက်နှိပ်ပါ List of entry URLs - + URL ထည့်သွင်းမှုများစာရင်း Entry has no URLs set - + ထည့်သွင်းမှုတွင် URL set များမပါဝင်ပါ Allowed URLs - + ခွင့်ပြုထားသော URL များ Entry has no Browser Integration settings - + ထည့်သွင်းမှုတွင် Browser Intigration ပြင်ဆင်ချက်များ မရှိပါ Denied URLs - + ငြင်းပယ်ထားသော URLများ (Excluded) @@ -7807,11 +9292,11 @@ CPU တည်ဆောက်ပုံ - %2 Please wait, browser statistics is being calculated… - + ကျေးဇူးပြု၍ စောင့်ပါ၊ ဒေတာဘေ့စ် အချက်အလက်များကို တွက်ချက်နေသည် No entries with a URL, or none has browser extension settings saved. - + URL ပါသောထည့်သွင်းမှုများမရှိပါ၊ သို့မဟုတ် ဘရောင်ဇာအပိုလုပ်ဆောင်မှုပြင်ဆင်ချက်များ သိမ်းဆည်ထားခြင်းမရှိပါ း Title @@ -7823,7 +9308,7 @@ CPU တည်ဆောက်ပုံ - %2 URLs - + URL များ Edit Entry… @@ -7837,44 +9322,53 @@ CPU တည်ဆောက်ပုံ - %2 Exclude from reports အစီရင်ခံစာများမှ ဖယ်ရန် + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - သက်တမ်းကုန်ပြီးသော ဖြည့်သွင်းချက်များကို အစီရင်ခံစာမှ ဖယ်ပါ + Show expired entries + - Also show entries that have been excluded from reports - အစီရင်ခံစာများမှ ဖယ်ထားသော ဖြည့်သွင်းချက်များကိုပါ ပြသပါ + (Expired) + Hover over reason to show additional details. Double-click entries to edit. ထပ်ဆောင်း အသေးစိတ်အချက်အလက်များကို ပြရန် အကြောင်းရင်းပေါ်တွင် ထောက်ပါ။ ဖြည့်သွင်းချက်များကို တည်းဖြတ်ရန် နှစ်ချက်နှိပ်ပါ။ - - Bad - Password quality - ဆိုးသည် - Bad — password must be changed ဆိုးသည် — စကားဝှက် ပြောင်းရမည် - - Poor - Password quality - ညံ့ - Poor — password should be changed ညံ့သည် — စကားဝှက် ပြောင်းသင့်သည် - - Weak - Password quality - အားနည်း - Weak — consider changing the password အားနည်းသည် — စကားဝှက်ပြောင်းရန် စဉ်းစားပါ @@ -7923,6 +9417,14 @@ CPU တည်ဆောက်ပုံ - %2 Exclude from reports အစီရင်ခံစာများမှ ဖယ်ရန် + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -8018,6 +9520,77 @@ CPU တည်ဆောက်ပုံ - %2 Exclude from reports အစီရင်ခံစာများမှ ဖယ်ရန် + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + ပို့ရန် + + + Import + ထည့်သွင်းရန် + + + List of entry URLs + URL ထည့်သွင်းမှုများစာရင်း + + + Title + ခေါင်းစဉ် + + + Path + လမ်းကြောင်း + + + Username + အသုံးပြုသူအမည် + + + URLs + URL များ + + + Edit Entry… + ဖြည့်သွင်းချက်ကို တည်းဖြတ်ပါ… + + + Delete Entry(s)… + ဖြည့်သွင်းချက်(များ)ကို ဖျက်ပါ… + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + ပို့ရန် အတည်ပြုချက် + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8192,6 +9765,14 @@ CPU တည်ဆောက်ပုံ - %2 No agent running, cannot list identities. လည်ပတ်နေသော အေးဂျင့် မရှိပါ၊ ကိုယ်ပိုင်အမှတ်သင်္ကေတများကို မဖော်ပြနိုင်ပါ။ + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8258,6 +9839,10 @@ CPU တည်ဆောက်ပုံ - %2 Search Help ရှာဖွေမှု အကူအညီ + + Save Search + ရှာဖွေမှုကိုသိမ်းဆည်းပါ + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8332,34 +9917,10 @@ CPU တည်ဆောက်ပုံ - %2 Confirm when passwords are retrieved by clients စကားဝှက်များကို လက်ခံစက်များက ပြန်လည်ရယူချိန်တွင် အတည်ပြုပါ - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">ဤဆက်တင်သည် -အမှိုက်ပုံး အသိပေးချက်များကို ပယ်ဖျက်ထားခြင်းအား အစားမထိုးပါ</span></p></body></html> - - Confirm when clients request entry deletion လက်ခံစက်များက ဖြည့်သွင်းချက်ကို ဖျက်ရန် တောင်းဆိုသောအခါ အတည်ပြုပါ - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>ယင်းသည် ဒေတာဘေ့စ်ကို ဦးစွာ လော့မဖြည်ဘဲ စကားဝှက်ရှာဖွေသည့် - အချို့သော အက်ပလီကေးရှင်းများနှင့် ကိုက်ညီမှုကို ပိုမိုကောင်းမွန်စေသည်။</p><p>သို့သော် တိကျသော အချိန်ကန့်သတ်ချက်တစ်ခုအတွင်း ဒေတာဘေ့စ်ကို လော့မဖြည်နိုင်ပါက -၎င်းကို ဖွင့်ခြင်းသည် လက်ခံစက်ကိုလည်း ရပ်စေနိုင်သည်။ (၂၅ စက္ကန့် ဖြစ်လေ့ရှိသော်လည်း -အက်ပလီကေးရှင်းများတွင် သတ်မှတ်ထားသော ကွဲပြားသည့် တန်ဖိုးတစ်ခု ဖြစ်နိုင်သည်။)</p></body></html> - - Prompt to unlock database before searching မရှာဖွေမီ ဒေတာဘေ့စ်ကို လော့ဖြည်ရန် အသိပေးပါ @@ -8384,6 +9945,14 @@ CPU တည်ဆောက်ပုံ - %2 Save current changes to activate the plugin and enable editing of this section. ချိတ်ဆက်ပရိုဂရမ်ကို သက်ဝင်လုပ်ဆောင်ရန်နှင့် ဤအပိုင်းကို တည်းဖြတ်နိုင်ရန် လတ်တလော အပြောင်းအလဲများကို သိမ်းပါ။ + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8444,14 +10013,14 @@ CPU တည်ဆောက်ပုံ - %2 ShareExport Could not write export container. - + တင်ပို့မှုဒေတာထည့်သွင်းထားရာနေရာတွင် ရေးသွင်းခြင်းမရနိုင်ပါ ShareImport Successful import - + အောင်မြင်စွာတင်သွင်းသည် @@ -8492,16 +10061,39 @@ CPU တည်ဆောက်ပုံ - %2 TagModel - All - + Clear Search + ရှာဖွေမှုကို ရှင်းလင်းပါ + + + All Entries + ထည့်သွင်းမှုများအားလုံး Expired - + ကုန်ဆုံးသွားသည် Weak Passwords - + အားနည်းသောစကားဝှက်များ + + + + TagView + + Remove Search + ရှာဖွေမှုကို ဖယ်ရှားပါ + + + Remove Tag + တက်ကို ဖယ်ရှားပါ + + + Confirm Remove Tag + တက်ကို ဖယ်ရှားရန် အတည်ပြုပါ + + + Remove tag "%1" from all entries in this database? + တက် "%1" ကို ဤဒေတာဘေ့စ်ရှိ ထည့်သွင်းမှုများအားလုံးမှ ဖယ်ရှားမလား။ @@ -8661,26 +10253,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database သင့်စကားဝှက်များကို KeePassXC ဒေတာဘေ့စ်တွင် လုံခြုံစွာ စတင်သိမ်းဆည်းပါ - - Create new database - ဒေတာဘေ့စ်အသစ် ဖန်တီးပါ - - - Open existing database - ရှိပြီးသား ဒေတာဘေ့စ်ကို ဖွင့်ပါ - - - Import from KeePass 1 - KeePass 1 မှ ထည့်သွင်းပါ - - - Import from 1Password - 1Password မှ ထည့်သွင်းပါ - - - Import from CSV - CSV မှ ထည့်သွင်းပါ - Recent databases မကြာသေးမီက ဒေတာဘေ့စ်များ @@ -8693,6 +10265,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 KeePassXC %1 မှ ကြိုဆိုပါသည် + + Create Database + + + + Open Database + + + + Import File + + WinUtils @@ -8709,31 +10293,8 @@ Example: JBSWY3DPEHPK3PXP ကမ္ဘာသုံး ရှော့(တ်)ကတ်ကို စာရင်းသွင်း၍မရပါ - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - %1 အသုံးပြုသူမြင်ရမည့်ပုံစံ မရှိပါ၊ အပေါက် %2 - General: ယေဘုယျ - @@ -8745,14 +10306,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - ဟာ့ဝဲ တိုက်များကို ပြန်လည်လန်းဆန်းရန် - - - Refresh - ပြန်လည်လန်းဆန်းရန် - Hardware key slot selection ဟာ့ဝဲကီးအပေါက် ရွေးချယ်မှု @@ -8785,10 +10338,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove တုံ့ပြန်ချက်စိန်ခေါ်မှု သတ်မှတ်ထားသည်၊ ပြောင်းလဲရန် သို့မဟုတ် ဖယ်ရှားရန် နှိပ်ပါ - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>သင့်တွင် <a href="https://www.yubico.com/">YubiKey</a> သို့မဟုတ် <a href="https://onlykey.io">OnlyKey</a> ရှိပါက ၎င်းကို ထပ်တိုးလုံခြုံရေးအတွက် အသုံးပြုနိုင်သည်။</p><p>ထိုစကားဝှက်သော့သည် ၎င်း၏အပေါက်များမှ တစ်ခုကို <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 တုံ့ပြန်ချက်စိန်ခေါ်မှု</a>အဖြစ် ပရိုဂရမ်ရေးသားရန် လိုအပ်သည်။</p> - Detecting hardware keys… ဟာ့ဝဲ စကားဝှက်သော့များကို ရှာနေသည်… @@ -8797,28 +10346,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected ဟာ့ဝဲ စကားဝှက်သော့များ ရှာမတွေ့ပါ - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 မမှန်ကန်သော အပေါက်ကို ဖော်ပြထားသည် - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] တုံ့ပြန်ချက်စိန်ခေါ်မှု - အပေါက် %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC အသုံးပြုသူမြင်ရမည့်ပုံစံကို မစတင်ရသေးပါ။ - - Hardware key is currently in use. - ဟာ့ဝဲ စကားဝှက်သော့ကို လက်ရှိတွင် အသုံးပြုနေသည်။ - Could not find or access hardware key with serial number %1. Please present it to continue. နံပါတ်စဉ် %1 ရှိသော ဟာ့ဝဲ စကားဝှက်သော့ကို ရှာမတွေ့ပါ သို့မဟုတ် ဝင်ရောက်သုံးစွဲ၍မရပါ။ ကျေးဇူးပြု၍ ရှေ့ဆက်ရန် ၎င်းကို တင်ပြပါ။ @@ -8835,6 +10381,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 တုံ့ပြန်ချက်စိန်ခေါ်မှု မပြီးစီးခဲ့ပါ၊ PCSC ချွတ်ယွင်းချက်ကုဒ် - %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + နှိပ်ပါ + + + Passive + USB Challenge-Response Key no interaction required + အသုံးပြုမနေပါ + YubiKeyInterfaceUSB @@ -8842,14 +10403,6 @@ Example: JBSWY3DPEHPK3PXP Unknown အမည်မသိ - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] ချိန်ညှိထားသော အပေါက် - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] တုံ့ပြန်ချက်စိန်ခေါ်မှု - အပေါက် %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8864,10 +10417,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB အသုံးပြုသူမြင်ရမည့်ပုံစံကို မစတင်ရသေးပါ။ - - Hardware key is currently in use. - ဟာ့ဝဲ စကားဝှက်သော့ကို လက်ရှိတွင် အသုံးပြုနေသည်။ - Could not find hardware key with serial number %1. Please plug it in to continue. နံပါတ်စဉ် %1 ရှိသော ဟာ့ဝဲ စကားဝှက်သော့ကို ရှာမတွေ့ပါ။ ကျေးဇူးပြု၍ ရှေ့ဆက်ရန် ၎င်းကို ပလပ်ထိုးပါ။ @@ -8884,5 +10433,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 တုံ့ပြန်ချက်စိန်ခေါ်မှု မပြီးစီးခဲ့ပါ၊ တိကျသော ပြဿနာ - %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_nb.ts b/share/translations/keepassxc_nb.ts index 1f6142cf3..ab893851f 100644 --- a/share/translations/keepassxc_nb.ts +++ b/share/translations/keepassxc_nb.ts @@ -80,6 +80,10 @@ Details Detaljer + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Avgjørelsen din blir husket så lenge klienten OG KeePassXC kjører. + Remember Husk @@ -88,17 +92,13 @@ Allow Selected Tillat valgte - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Avgjørelsen din blir husket så lenge klienten OG KeePassXC kjører. - Deny All && Future - + Nekt alle & fremtidige Allow All && &Future - + Tillat alle &fremtidige @@ -122,6 +122,10 @@ Use OpenSSH Bruk OpenSSH + + Use both agents + Bruk begge agentene + SSH_AUTH_SOCK override SSH_AUTH_SOCK-overstyring @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH-agentforbindelse fungerer! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Sikkerhet + + This setting cannot be enabled when minimize on unlock is enabled. + Denne innstillingen kan ikke aktiveres når minimering ved opplåsing er aktivert. + Access error for config file %1 Feil ved tilgang til konfigurasjonsfilen %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Du må starte programmet på nytt for å angi det nye språket. Vil du starte på nytt nå? - - Reset Settings? - Tilbakestill innstillinger? - - - Are you sure you want to reset all general and security settings to default? - Er du sikker på at du vil tilbakestille alle generelle og sikkerhetsinnstillinger til standard? - Select backup storage directory Velg lagringsmappe for sikkerhetskopiering + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Husk tidligere brukte databaser + + recent files + siste filer + Load previously open databases on startup Last tidligere åpne databaser ved oppstart @@ -272,25 +312,6 @@ Include beta releases when checking for updates Ta med betaversjoner når du ser etter oppdateringer - - On database unlock, show entries that - Ved databaseopplåsing, vis oppføringer som - - - have expired - On database unlock, show entries that... - er utløpt - - - days - On database unlock, show entries that will expire within %1 days - dager - - - will expire within - On database unlock, show entries that... - vil utløpe innen - File Management Filhåndtering @@ -315,22 +336,10 @@ Backup database file before saving Sikkerhetskopier database-filen før lagring - - Backup destination - Mål for sikkerhetskopiering - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Angir filplasseringen til database-sikkerhetskopien. Forekomster av {DB_FILENAME} erstattes med filnavnet til den lagrede databasen uten filtype. {TIME:<format>} erstattes med sikkerhetskopi-tidspunktet, se https://doc.qt.io/qt-5/qdatetime.html#toString. <format>standardformatet er "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Velg… - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Bruk alternativ lagringsmetode (kan løse problemer med Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Knappestil på verktøylinjen: + + Show passwords in color + Vis passord i farger + Use monospaced font for notes Bruk fastbreddeskrift til notater @@ -493,6 +506,71 @@ Remember last typed entry for: Husk siste inntasta oppføring i: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + dager + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Lås databaser når vinduet minimeres - - Require password repeat when it is visible - Krev repetering av passord når synlig - Hide passwords when editing them Skjul passord ved redigering @@ -560,19 +634,7 @@ Hide passwords in the entry preview panel - Skjul passord i oppføring panelet - - - Hide entry notes by default - Skjul notater i oppføringa som standard - - - Move entries to recycle bin without confirmation - Flytt oppføringer til søppelbøtte uten bekreftelse - - - Enable double click to copy the username/password entry columns - Aktiver dobbeltklikk for å kopiere brukernavn-/passord-oppføringer + Skjul passord i oppføringspanelet Privacy @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Bruk DuckDuckGo-tjenesten for å laste ned nettstedikoner + + Hide TOTP in the entry preview panel + Skjul TOTP i forhåndsvisningspanelet + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ Veldig lang forsinkelse oppdaget, maks er %1: %2 - Invalid conversion type: %1 - Ugyldig konverteringstype: %1 - - - Invalid conversion syntax: %1 - Ugyldig konverteringssyntaks: %1 - - - Invalid regular expression syntax %1 -%2 - Ugyldig syntaks for regulært uttrykk %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Oppføringen har ikke attributt for PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Prøver å sende ugyldig keysym-navn. - Sequence aborted: Caps Lock is on Sekvens avbrutt: Store bokstaver er på @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Mottar ikke gyldig nøkkelkode for nøkkel: + + Trying to send invalid keyboard symbol. + Forsøker å sende et ugyldig tastatursymbol. + AutoTypeSelectDialog @@ -719,7 +787,7 @@ Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> <p>Du kan bruke avanserte søkespørringer til å finne en hvilken som helst oppføring i de åpne databasene. Følgende snarveier er nyttige:<br/> -CTRL+F – Aktiver/deaktiver databasesøk<br/> +CTRL+F – Vis/skjul databasesøk<br/> Ctrl+1 – Skriv brukernavn<br/> Ctrl+2 – Skriv passord<br/> CTRL+3 – Skriv TOTP<br/> @@ -804,13 +872,13 @@ Ctrl+4 – Bruk virtuelt tastatur (bare Windows)</p> Disable for this site Deaktiver for dette nettstedet + + Undo + Angre + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Lagre nettleser-oppføring - Ok Ok @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Du har flere databaser åpne. Vennligst velge riktig database for å lagre identifikasjon. + + KeePassXC - Select Database + KeePassXC - velg database + + + + BrowserPasskeysConfirmationDialog + + Cancel + Avbryt + + + Update + Oppdater + + + Authenticate + Autentiser + + + Register new + Registrer ny + + + Register + Registrer + + + Timeout in <b>%n</b> seconds... + Tidsavbrudd om <b>%n</b> sekund…Tidsavbrudd om <b>%n</b> sekunder… + + + Relying Party: %1 + Tiltrodd part: %1 + + + Username: %1 + Brukernavn: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Tilgangsnøkkel-identifikasjon + + + Add to existing entry + Legg til i eksisterende oppføring + + + Existing passkey found. +Do you want to register a new passkey for: + Eksisterende tilgangsnøkkel funnet. +Vil du registrere en ny tilgangsnøkkel for: + + + Select the existing passkey and press Update to replace it. + Velg den eksisterende tilgangsnøkkelen, og trykk oppdater for å erstatte den. + + + Authenticate passkey credentials for: + Godkjenn tilgangsnøkkellegitimasjon for: + + + Do you want to register a passkey for: + Vil du registrere tilgangsnøkkel for: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Lag en ny gruppe - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -839,10 +968,6 @@ Do you want to create this group? En forespørsel om å opprette en ny gruppe "%1" er mottatt. Vil du opprette denne gruppen? - - KeePassXC: New key association request - KeePassXC: Tilknytningsforespørsel for ny nøkkel. - You have received an association request for the following database: %1 @@ -859,28 +984,16 @@ chrome-laptop. Save and allow access Lagre og tillat aksess - - KeePassXC: Overwrite existing key? - KeePassXC: Overskrive eksisterende nøkkel? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? En delt krypteringsnøkkel med navn "%1" eksisterer fra før. Vil du overskrive den? - - KeePassXC: Update Entry - KeePassXC: Oppdater oppføring. - Do you want to update the information in %1 - %2? Vil du oppdatere informasjonen i %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Slett oppføring - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -889,50 +1002,58 @@ Do you want to delete the entry? Vil du slette oppføringen? - Converting attributes to custom data… - Konverterer attributter til egendefinerte data… + %1 (Passkey) + %1 (tilgangsnøkkel) - Abort - Avbryt + KeePassXC - Create a new group + KeePassXC - Opprett en ny gruppe - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Konverterte KeePassHTTP-attributter + Disable + Deaktiver - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Konverterte attributter fra %1 oppføring(er). -Flyttet %2 nøkler til egendefinerte data. - - - Successfully moved %n keys to custom data. - Flyttet %n nøkkel til egendefinerte data.Flyttet %n nøkler til egendefinerte data. + KeePassXC - Overwrite existing key? + KeePassXC - Erstatte eksisterende nøkkel? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Ingen oppføring med KeePassHTTP-attributter funnet! + KeePassXC - Update Entry + KeePassXC - Oppdater oppføring - The active database does not contain an entry with KeePassHTTP attributes. - Den aktiv database inneholder ikke en oppføring med KeePassHTTP-attributter. + KeePassXC - Delete entry + KeePassXC - Slett oppføring - Don't show this warning again - Ikke vis denne advarselen igjen + KeePassXC - New key association request + KeePassXC - Forespørsel om ny nøkkeltilknytning - KeePassXC: Legacy browser integration settings detected - KeePassXC: Gammel nettleser integrasjon innstillinger oppdaget + Passkey + Tilgangsnøkkel - 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-Browser-innstillingene må flyttes til databaseinnstillingene. -Dette er nødvendig for å opprettholde gjeldende lesertilkoblinger. -Vil du overføre de eksisterende innstillingene dine nå? + KeePassXC - Passkey credentials + KeePassXC - Tilgangsnøkkel-identifikasjon + + + Register a new passkey to this entry: + Registrer ny tilgangsnøkkel på denne oppføringen: + + + KeePassXC - Update passkey + KeePassXC - Oppdater tilgangsnøkkel + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Oppføringen har allerede en tilgangsnøkkel. +Vil du erstatte tilgangsnøkkelen i %1 - %2? + + + Register + Registrer @@ -953,10 +1074,6 @@ Vil du overføre de eksisterende innstillingene dine nå? General Generelt - - Browsers installed as snaps are currently not supported. - Nettlesere installert som Snap støttes ikke for øyeblikket. - Enable integration for these browsers: Bruk tillegget i disse nettleserne: @@ -1128,26 +1245,6 @@ Vil du overføre de eksisterende innstillingene dine nå? Custom extension ID Egendefinert utvidelse-ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - På grunn av Snap-sandkasse må du kjøre et skript for å aktivere nettleserintegrasjon.<br />Du kan få tak i dette skriptet fra %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser er nødvendig for at nettleserintegrasjonen skal fungere. <br />Last den ned for %1 og %2 og %3. %4 - - - Please see special instructions for browser extension use below - Vennligst se spesielle instruksjoner for bruk av nettleserutvidelse nedenfor - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Feil:</b> Finner ikke plasseringen til den egendefinerte mellomtjeneren.<br/>Nettleserintegrasjonen VIL IKKE FUNGERE uten mellomtjener-applikasjonen. - - - <b>Warning:</b> The following options can be dangerous! - <b>Advarsel:</b> Disse innstillingene kan medføre risiko. - Executable Files Kjørbare filer @@ -1164,6 +1261,46 @@ Vil du overføre de eksisterende innstillingene dine nå? Select native messaging host folder location Velg plassering til den innebygde meldingsformidleren + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Tillat keepassxc-proxy å liste alle oppføringer med tittel, URL og UUID i tilkoblede databaser. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Tillat begrenset tilgang til alle oppføringer i tilkoblede databaser (ignorerer begrensninger for nettstedstilgang) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Advarsel:</b> Juster disse innstillingene bare om nødvendig. + + + The custom proxy location does not exist. + Den egendefinerte proxy-lokasjonen finnes ikke. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Feil:</b> Den egendefinerte proxy-lokasjonen finnes ikke. Korriger dette i fanen for avanserte innstillinger. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Feil:</b> Den installerte eksekverbare proxyen finnes ikke på den forventede plasseringen: %1<br/>Angi en egendefinert proxy-lokasjon i de avanserte innstillingene, eller installer applikasjonen på nytt. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Tillater bruk av usikre http://localhost med tilgangsnøkler for testformål. + + + Allow using localhost with passkeys + Tillat bruk av localhost med tilgangsnøkler + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1186,14 +1323,6 @@ Vil du overføre de eksisterende innstillingene dine nå? CsvImportWidget - - Import CSV fields - Importer CSV-felter - - - filename - filnavn - size, rows, columns størrelse, rader, kolonner @@ -1302,51 +1431,43 @@ Vil du overføre de eksisterende innstillingene dine nå? Column %1 Kolonne %1 - - Imported from CSV file - Importert fra CSV-fil - - - Original data: - Originale data: - - - Error(s) detected in CSV file! - Feil oppdaget i CSV-fil! - [%n more message(s) skipped] [%n melding til ble hoppet over][%n flere meldinger ble hoppet over] - Error - Feil + Failed to parse CSV file: %1 + Kunne ikke tolke CSV-fil: %1 - CSV import: writer has errors: -%1 - CSV-import: Skriver har feil: -%1 + Imported from CSV file: %1 + Importert fra CSV-fil: %1 + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Tagger CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n byter - %n row(s) + CSV row count %n rad%n rader %n column(s) - %n kolonne(r)%n kolonne(r) + CSV column count + %n kolonne%n kolonner @@ -1398,6 +1519,14 @@ Sikkerhetskopi av database lokalisert på %2 Recycle Bin Papirkurv + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1420,40 +1549,10 @@ Sikkerhetskopi av database lokalisert på %2 Password field Passord felt - - Enter Additional Credentials (if any): - Angi eventuell tilleggslegitimasjon (hvis noen): - - - Key File: - Nøkkelfil: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>I tillegg til et passord kan du bruke en nøkkelfil til å forbedre sikkerheten i databasen. Denne filen kan opprettes i databasens sikkerhetsinnstillinger.</p><p>Dette er <strong>ikke</strong> *.kdbx-databasefilen din!<br>Hvis du ikke har en nøkkelfil, lar du dette feltet stå tomt.</p><p>Klikk hvis du vil ha mer informasjon…</p> - - - Key file help - Hjelp for nøkkelfil - Hardware key slot selection Valg av spor i maskinvarenøkkel - - Hardware Key: - Maskinvarenøkkel: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Du kan bruke en maskinvare-autentiseringsenhet, for eksempel en <strong>YubiKey</strong> eller <strong>OnlyKey,</strong> med spor som er konfigurert for HMAC-SHA1.</p> -<p>Klikk hvis du vil ha mer informasjon...</p> - - - Hardware key help - Hjelp for maskinvarenøkkel - Key file to unlock the database Nøkkelfil for å låse opp database @@ -1466,14 +1565,6 @@ Sikkerhetskopi av database lokalisert på %2 Browse… Bla gjennom... - - Refresh hardware tokens - Oppdater maskinvarenøkkel - - - Refresh - Last på ny - Unlock Database Lås opp database @@ -1536,14 +1627,6 @@ For å forhindre at denne feilen vises, må du gå til "Databaseinnstilling Retry with empty password Prøv igjen med tomt passord - - Failed to authenticate with Windows Hello - Autentisering med Windows Hello feilet - - - Failed to authenticate with Touch ID - Autentisering med berørings-ID feilet - Failed to open key file: %1 Kunne ikke åpne nøkkelfil: %1 @@ -1577,22 +1660,68 @@ For å forhindre at denne feilen vises, må du gå til "Databaseinnstilling Kan ikke bruke database fil som nøkkelfil - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Du kan ikke bruke databasefilen som nøkkelfil. -Hvis du ikke har en nøkkelfil, lar du feltet stå tomt. + authenticate to access the database + autentiser for å få tilgang til databasen - Detecting hardware keys… - Oppdager maskinvarenøkler... + Failed to authenticate with Quick Unlock: %1 + Autentisering med hurtigopplåsing feilet: %1 - No hardware keys detected - Ingen maskinvarenøkler oppdaget + Select Key File: + Velg nøkkelfil: - Select hardware key… - Velge maskinvarenøkkel... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>I tillegg til passord, kan du bruke en nøkkelfil for å forbedre sikkerheten til databasen. Denne fila kan opprettes i databasens sikkerhetsinnstillinger.</p> <p>Dette er <strong>ikke</strong> *.kdbx-databasefilen din!</p> + + + Use hardware key [Serial: %1] + Bruk maskinvarenøkkel [Serial: %1] + + + Use hardware key + Bruk maskinvarenøkkel + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Database-filen er IKKE en nøkkelfil! +Om du ikke har en nøkkelfil, eller ikke vet hva det er, trenger du ikke velge en. + + + KeePassXC database file selected + KeePassXC-databasefil valgt + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Filen du har valgt ser ut som en databasefil. +En databasefil er IKKE en nøkkelfil! + +Er du sikker på at du vil fortsette med denne filen? + + + No hardware keys found. + Finner ingen maskinvarenøkler. + + + Refresh Hardware Keys + Oppdater maskinvarenøkler + + + Click to add a key file. + Trykk for å legge til en nøkkelfil + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Jeg har en nøkkelfil</a> + + + Hardware keys found, but no slots are configured. + @@ -1604,10 +1733,6 @@ Hvis du ikke har en nøkkelfil, lar du feltet stå tomt. DatabaseSettingsDialog - - Advanced Settings - Avanserte Innstillinger - General Generelt @@ -1632,6 +1757,22 @@ Hvis du ikke har en nøkkelfil, lar du feltet stå tomt. Maintenance Vedlikehold + + KeeShare + KeeShare + + + Secret Service Integration + Integrasjon av 'Secret Service' + + + Remote Sync + Fjernsynkronisering + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1639,18 +1780,6 @@ Hvis du ikke har en nøkkelfil, lar du feltet stå tomt. KeePassXC-Browser settings KeePassXC nettleser-innstillinger - - Convert KeePassHTTP data - Konverter KeePassHTTP-data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Konverter eldre KeePassHTTP-attributter til KeePassXC-Browser-kompatible egendefinerte data - - - Refresh database root group ID - Oppdater rotgruppe-ID for database - Disconnect all browsers Koble fra alle nettlesere @@ -1659,6 +1788,10 @@ Hvis du ikke har en nøkkelfil, lar du feltet stå tomt. Forget all site-specific settings on entries Glem alle side-spesifikke innstillinger og oppføringer + + Refresh database root group ID + Oppdater rotgruppe-ID for database + Stored keys Lagrede nøkler @@ -1707,18 +1840,10 @@ This may prevent connection to the browser plugin. Vil du virkelig koble fra alle nettlesere? Dette kan forhindre tilkobling til plugin-modulen i nettleseren. - - KeePassXC: No keys found - KeePassXC: Ingen nøkler funnet - No shared encryption keys found in KeePassXC settings. Ingen delte kryptering nøkkel funnet i KeePassXC-innstillingene. - - KeePassXC: Removed keys from database - KeePassXC: Fjernet nøkler fra database - Successfully removed %n encryption key(s) from KeePassXC settings. %n krypteringsnøkkel er fjernet fra KeePassXC-innstillingene.%n krypteringsnøkler er fjernet fra KeePassXC-innstillingene. @@ -1737,32 +1862,14 @@ Tilgangstillatelser til oppføringer vil bli tilbakekalt. Abort Avbryt - - KeePassXC: Removed permissions - KeePassXC: Fjernet tillatelser - Successfully removed permissions from %n entry(s). Fjernet tillatelser fra %n oppføring.Fjernet tillatelser fra fra %n oppføringer. - - KeePassXC: No entry with permissions found! - KeePassXC: Ingen oppføring med tillatelser funnet! - The active database does not contain an entry with permissions. Den aktive databasen inneholder ikke et oppsett med tillatelser. - - Move KeePassHTTP attributes to custom data - Flytt KeePassHTTP-attributter til egendefinerte data - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Vil du virkelig konvertere alle eldre nettleser-integreringsdata til den nyeste standarden? -Dette er nødvendig for å opprettholde kompatibilitet med nettleserutvidelsen. - Refresh database ID Oppfriske database ID @@ -1773,6 +1880,26 @@ This is only necessary if your database is a copy of another and the browser ext Vil du virkelig oppdatere database-ID? Dette er bare nødvendig hvis databasen er en kopi av en annen og nettleserutvidelsen ikke kan koble til. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Konverter eldre KeePassHTTP-attributter til KeePassXC-Browser-kompatible egendefinerte data + + + No keys found + Ingen nøkler funnet + + + Removed keys from database + Fjernet nøkler fra database + + + Removed permissions + Fjernet tillatelser + + + No entry with permissions found! + Ingen oppføring med tillatelser funnet! + DatabaseSettingsWidgetDatabaseKey @@ -1812,6 +1939,18 @@ Er du sikker på at du vil fortsette uten passord? Failed to change database credentials Kunne ikke endre databaselegitimasjon + + Weak password + Svakt passord + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Dette er et svakt passord! For bedre beskyttelse av hemmelighetene dine, bør du velge et sterkere passord. + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1819,14 +1958,6 @@ Er du sikker på at du vil fortsette uten passord? Decryption Time: Krypteringstid: - - Change existing decryption time - Endre eksisterende dekrypteringstid - - - Change - Endring - Decryption time in seconds Dekrypteringstid i sekunder @@ -1907,11 +2038,6 @@ Er du sikker på at du vil fortsette uten passord? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - uendret - Number of rounds too high Key transformation rounds @@ -1962,7 +2088,19 @@ Hvis du beholder dette antallet vil ikke databasen være beskyttet mot 'rå thread(s) Threads for parallel execution (KDF settings) - tråd(er)tråd(er) + trådtråder + + + Encryption Settings: + Krypteringsinnstillinger: + + + Basic + Standard + + + Advanced + Avansert @@ -1981,7 +2119,7 @@ Hvis du beholder dette antallet vil ikke databasen være beskyttet mot 'rå Enable Secret Service to access these settings. - Aktiver 'secret service' for å få tilgang til disse innstillingene. + La 'secret service' å få tilgang til disse innstillingene. @@ -2022,18 +2160,10 @@ Hvis du beholder dette antallet vil ikke databasen være beskyttet mot 'rå Maximum number of history items per entry Maksimalt historikkantall per oppføring - - Max. history items: - Maks. historikk-antall: - Maximum size of history per entry Maksimal størrelse på logg per oppføring - - Max. history size: - Maks. historikk-størrelse: - MiB MiB @@ -2044,7 +2174,7 @@ Hvis du beholder dette antallet vil ikke databasen være beskyttet mot 'rå Additional Database Settings - Ekstra database-innstillinger + Ekstra databaseinnstillinger Enable compression (recommended) @@ -2064,6 +2194,108 @@ Denne handlingen kan ikke angres. (old) (gammel) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Når du lagrer denne innstillingen eller redigerer en oppføring +vil de eldste historikkelementene i en oppføring bli +fjernet slik at det maksimalt gjenstår det angitte antall +historikkelementer. + + + Limit the amount of history items per entry to: + Begrens antall historikkelementer per oppføring til: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Når du lagrer denne innstillingen eller redigerer en oppføring +vil de eldste historikkelementene i en oppføring bli +fjernet slik at det maksimalt gjenstår det angitte antall +historikkelementer. + + + Limit the total size of history items per entry to: + Begrens den totale størrelsen på historikkelementer per oppføring til: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Flytt oppføringer til en papirkurvgruppe +i stedet for å slette dem fra databasen. +Oppføringer som er slettet fra papirkurven er +fjernet fra databasen. + + + Autosave delay since last change + Autolagringsforsinkelse siden siste endring + + + Autosave delay + Autolagringsforsinkelse + + + Autosave delay since last change in minutes + Autolagringsforsinkelse i minutter siden siste endring + + + min + min + + + Autosave delay since last change checkbox + Autolagringsforsinkelse siden siste endring i avkrysningsboksa + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Tøm + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2159,6 +2391,129 @@ Denne handlingen kan ikke angres. Database-beskrivelsesfelt + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Fjern + + + Command Settings + + + + Name + Navn + + + Save + Lagre + + + Download + Last ned + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + Last opp + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + Navn kan ikke være tomt. + + + Test + Test + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + Nedlasting fullført. + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + Du har endringer som ikke er lagret. Vil du lagre dem? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + sekunder + + DatabaseTabWidget @@ -2191,26 +2546,10 @@ Dette er definitivt en feil, rapporter det til utviklerne. CSV file CSV fil - - Select CSV file - Velg CSV fil - Merge database Slå sammen database - - KeePass 1 database - KeePass1-database - - - Open KeePass 1 database - Åpne KeePass1-database - - - Open OPVault - Åpne OPVault - Export database to CSV file Eksporter database til CSV fil @@ -2223,6 +2562,18 @@ Dette er definitivt en feil, rapporter det til utviklerne. Writing the HTML file failed. Skriving av HTML-filen mislyktes. + + Export database to XML file + Eksporter databasen til XML-fil + + + XML file + XML-fil + + + Writing the XML file failed + Skriving av XML-filen mislyktes + Export Confirmation Eksportbekreftelse @@ -2231,26 +2582,22 @@ Dette er definitivt en feil, rapporter det til utviklerne. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Du er i ferd med å eksportere databasen til en ukryptert fil. Dette vil gjøre passordene og sensitiv informasjon sårbar! Er du sikker på at du vil fortsette? - - New Database - Ny database - - - %1 [New Database] - Database tab name modifier - %1 [Ny Database] - %1 [Locked] Database tab name modifier %1 [Låst] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - Databasetagger + Searches and Tags + Søk og tagger Searching… @@ -2300,6 +2647,10 @@ Dette er definitivt en feil, rapporter det til utviklerne. Expired entries Utløpte oppføringer + + Entries expiring within %1 day(s) + Oppføringer som utløper innen %1 dagOppføringer som utløper innen %1 dager + No current database. Ingen nåværende database. @@ -2324,6 +2675,18 @@ Dette er definitivt en feil, rapporter det til utviklerne. No Results Ingen resultater + + Save + Lagre + + + Enter a unique name or overwrite an existing search from the list: + Skriv inn et unikt navn, eller erstatt et eksisterende søk fra listen: + + + Save Search + Lagre søk + Lock Database? Låse database? @@ -2352,26 +2715,6 @@ Lagre endringer? File has changed Fil er endret - - The database file has changed. Do you want to load the changes? - Databasen er endret. Ønsker du å laste inn endringene? - - - Merge Request - Forespørsel om sammenslåing - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Databasefila er endra og du har ulagra endringer. -Vil du slå sammen fila med endringene dine? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Kunne ikke åpne den nye databasefilen under forsøk på å laste den inn på nytt automatisk. -Feil: %1 - Disable safe saves? Deaktivere sikker lagring? @@ -2404,7 +2747,7 @@ Deaktivere sikker lagring og prøve igjen? Empty recycle bin? - Tom papirkurv? + Tøm papirkurv? Are you sure you want to permanently delete everything from your recycle bin? @@ -2414,9 +2757,94 @@ Deaktivere sikker lagring og prøve igjen? Could not find database file: %1 Kunne ikke finne databasefil: %1 - - Entries expiring within %1 day(s) - + + New Database + Ny database + + + %1 [New Database] + Database tab name modifier + %1 [Ny Database] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Laster ned... + + + Uploading... + Laster opp... + + + Syncing... + Synkroniserer... + + + Remove passkey from entry + Fjern tilgangsnøkkel fra oppføringen + + + Do you want to remove the passkey from this entry? + Vil du fjerne tilgangsnøkkelen fra denne oppføringen? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2469,10 +2897,6 @@ Deaktivere sikker lagring og prøve igjen? n/a i/a - - (encrypted) - (kryptert) - Select private key Velg privat nøkkel @@ -2559,6 +2983,10 @@ Vil du rette den? Hide Skjul + + %n hour(s) + %n time%n timer + %n week(s) %n uke(r)%n uke(r) @@ -2571,9 +2999,9 @@ Vil du rette den? %n year(s) %n år%n år - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Kunne ikke dekryptere SSH-nøkkelen. Sørg for at passordet er korrekt. @@ -2616,7 +3044,7 @@ Vil du rette den? Toggle attribute protection - Attributtbeskyttelse på/av + Vis/skjul attributtbeskyttelse Protect @@ -2693,10 +3121,20 @@ Vil du rette den? Add new window association Legg til ny vindustilknytning + + + + Add item + + + Remove selected window association Fjern valgte vindustilknytning + + - + Remove item + - + Window title: Vindustittel: @@ -2721,23 +3159,9 @@ Vil du rette den? Custom Auto-Type sequence for this window Egendefinert autoskriv-rekkefølge for dette vinduet - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Disse innstillingene påvirker oppføringens funksjon mot nettleserutvidelsen. - General Generelt @@ -2748,28 +3172,16 @@ Vil du rette den? Skip Auto-Submit for this entry - Hopp over auto-sending for denne oppføringen - - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Send denne innstillingen bare til nettleseren for «HTTP Auth»-dialoger. Hvis aktivert vil ikke vanlige påloggingsskjemaer få vist denne oppføringen for valg. + Hopp over automatisk utførelse for denne oppføringen Use this entry only with HTTP Basic Auth Bruk denne oppføringen bare med «HTTP Basic Auth» - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Ikke send denne innstillingen til nettleseren for «HTTP Auth»-dialoger. Hvis aktivert viser ikke «HTTP Auth»-dialoger denne oppføringen for valg. - Do not use this entry with HTTP Basic Auth Ikke bruk denne oppføringen med «HTTP Basic Auth» - - Additional URL's - Ytterligere URL'er - Add Legg til @@ -2782,6 +3194,22 @@ Vil du rette den? Edit Endring + + These settings affect the entry's behaviour with the browser extension. + Disse innstillingene påvirker oppføringens atferd med nettleserutvidelsen. + + + Additional URLs + Ytterligere URL-er + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2832,22 +3260,10 @@ Vil du rette den? Notes field Notater-felt - - Toggle the checkbox to reveal the notes section. - Veksle avkrysningsboksen for å vise notatdelen. - Username field Brukernavn-felt - - Toggle notes visible - Synlige merknader av/på - - - Notes: - Notater: - Expiration field Utløpsfelt @@ -2864,14 +3280,6 @@ Vil du rette den? Presets Hurtigvalg - - Password: - Passord: - - - URL: - URL: - Url field URL-adressefelt @@ -2880,38 +3288,54 @@ Vil du rette den? Download favicon for URL Last ned favicon for URL - - Title: - Tittel: - Title field Tittel-felt - - Username: - Brukernavn: - Password field Passord felt Toggle expiration - Utløp av/på - - - Expires: - Utløper: - - - Tags: - Tagger: + Vis/skjul utløp Tags list Taggeliste + + &Username: + &Brukernavn: + + + &Title: + &Tittel: + + + &Password: + &Passord: + + + UR&L: + UR&L: + + + &Notes: + &Notater: + + + Toggle notes visibility + Vis/skjul notater + + + T&ags: + T&agger: + + + &Expires: + &Utløper: + EditEntryWidgetSSHAgent @@ -2951,19 +3375,6 @@ Vil du rette den? Private key Privat nøkkel - - External file - Ekstern fil - - - Browser for key file - Netteser for nøkkelfil - - - Browse… - Button for opening file dialog - Bla gjennom... - Attachment Vedlegg @@ -2980,6 +3391,23 @@ Vil du rette den? Remove from agent Fjern fra agent + + External file + Ekstern fil + + + Browser for key file + Netteser for nøkkelfil + + + Browse… + Button for opening file dialog + Bla gjennom... + + + Generate + Opprett + Select attachment file Velg vedleggsfil @@ -3004,6 +3432,10 @@ Vil du rette den? seconds sekunder + + Clear agent + + EditGroupWidget @@ -3015,10 +3447,6 @@ Vil du rette den? Icon Ikon - - Browser Integration - Nettlesertillegg - Properties Egenskaper @@ -3035,6 +3463,10 @@ Vil du rette den? Group has unsaved changes Gruppen har ulagrede endringer + + Browser Integration + Nettlesertillegg + Enable Aktiver @@ -3050,10 +3482,6 @@ Vil du rette den? EditGroupWidgetBrowser - - Edit Group - Endre gruppe - These settings affect to the group's behaviour with the browser extension. Disse innstillingene påvirker oppføringens funksjon mot nettleserutvidelsen. @@ -3064,15 +3492,15 @@ Vil du rette den? Hide entries from browser extension toggle for this and sub groups - Skjul oppføringer fra nettleserutvidelse for denne og undergrupper + Vis/skjul oppføringer fra nettleserutvidelse for denne og undergrupper Skip Auto-Submit for entries: - Hopp over automatisk sending for oppføringer: + Hopp over automatisk utførelse for oppføringer: Skip Auto-Submit toggle for this and sub groups - Veksleknapp for hopp over automatisk sending for denne og undergrupper + Aktiver/deaktiver automatisk utførelse for denne og undergrupper Use entries only with HTTP Basic Auth: @@ -3080,7 +3508,7 @@ Vil du rette den? Only HTTP Auth toggle for this and sub groups - Veksleknapp for bare HTTP Auth for denne og undergrupper + Aktiver/deaktiver kun HTTP Auth for denne og undergrupper Do not use entries with HTTP Basic Auth: @@ -3088,7 +3516,23 @@ Vil du rette den? Do not use HTTP Auth toggle for this and sub groups - Veksleknapp for ikke bruk "HTTP Auth" for denne og undergrupper + Aktiver/deaktiver HTTP Auth for denne og undergrupper + + + Omit WWW subdomain from matching: + Utelat www-underdomene fra matching: + + + Omit WWW subdomain from matching toggle for this and sub groups + Aktiver/deaktiver matchende www-underdomene for denne og undergrupper + + + Restrict matching to given browser key: + Begrens match til oppgitt nettlesernøkkel: + + + Restrict matching to given browser key toggle for this and sub groups + Aktiver/deaktiver begrens match til oppgitt nettlesernøkkel for denne og undergrupper @@ -3209,7 +3653,7 @@ Støttede utvidelser er: %1. Toggle expiration - Utløp av/på + Vis/skjul utløp Expires: @@ -3237,7 +3681,7 @@ Støttede utvidelser er: %1. Auto-Type toggle for this and sub groups - Veksle mellom autoskriv for denne og undergrupper + Vis/skjul autoskriv for denne og undergrupper Notes: @@ -3261,7 +3705,7 @@ Støttede utvidelser er: %1. Search toggle for this and sub groups - Søkeknapp for denne og undergrupper + Vis/skjul søk for denne og undergrupper @@ -3322,10 +3766,6 @@ Støttede utvidelser er: %1. Unable to fetch favicon. Kan ikke hente favorittikon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Du kan aktivere DuckDuckGo-ikonetjenesten under Verktøy -> Innstillinger -> Sikkerhet - Existing icon selected. Eksisterende ikon er valgt. @@ -3358,6 +3798,10 @@ Støttede utvidelser er: %1. The following icon(s) failed: Dette ikonet mislyktes:Følgende ikoner mislyktes: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Du kan aktivere DuckDuckGo-nettstedsikontjenesten under Programinnstillinger -> Sikkerhet + EditWidgetProperties @@ -3434,6 +3878,24 @@ Dette kan føre til feil for de berørte programtilleggene. %1 - Clone %1 - Klone + + Passkey + Tilgangsnøkkel + + + Invalid conversion type: %1 + Ugyldig konverteringstype: %1 + + + Invalid conversion syntax: %1 + Ugyldig konverteringssyntaks: %1 + + + Invalid regular expression syntax %1 +%2 + Ugyldig syntaks for regulært uttrykk %1 +%2 + EntryAttachments @@ -3442,6 +3904,21 @@ Dette kan føre til feil for de berørte programtilleggene. Kan ikke åpne filen %1 + + EntryAttachmentsDialog + + Form + Skjema + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3479,14 +3956,6 @@ Dette kan føre til feil for de berørte programtilleggene. Remove Fjern - - Rename selected attachment - Gi nytt navn til valgt vedlegg - - - Rename - Gi nytt navn - Open selected attachment Åpne valgt vedlegg @@ -3562,12 +4031,6 @@ Dette kan føre til feil for de berørte programtilleggene. Confirm Overwrite Attachment Bekreft erstatting av vedlegg - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Vedlegg %1 finnes allerede. -Vil du erstatte det eksisterende vedlegget? - Confirm Attachment Bekreft vedlegg @@ -3602,6 +4065,24 @@ Error: %1 Lagring av oppdatert vedlegg mislyktes. Feil: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Vedlegg %1 finnes allerede. +Vil du erstatte det eksisterende vedlegget? + + + New + + + + Preview + Forhåndsvis + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3796,6 +4277,14 @@ Feil: %1 Has TOTP Har TOTP + + Background Color + Bakgrunnsfarge + + + Group Path + + EntryPreviewWidget @@ -3816,8 +4305,8 @@ Feil: %1 Passord - Notes - Notater + URL + Adresse Expiration @@ -3836,8 +4325,8 @@ Feil: %1 Brukernavn - URL - Adresse + Notes + Notater Advanced @@ -3887,6 +4376,10 @@ Feil: %1 Never Aldri + + Double click to copy value + Dobbeltklikk for å kopiere verdi + Enabled Aktivert @@ -3895,6 +4388,10 @@ Feil: %1 Disabled Deaktivert + + Double click to copy to clipboard + Dobbeltklikk for å kopiere til utklippstavlen + EntryURLModel @@ -3902,6 +4399,10 @@ Feil: %1 Invalid URL Ugyldig URL + + Duplicate URL + Klon URL + EntryView @@ -3917,6 +4418,10 @@ Feil: %1 Reset to defaults Resette til standard + + + %1 entry(s)... + + %1 oppføring…+ %1 oppføringer… + ExportDialog @@ -4138,6 +4643,193 @@ Du kan aktivere DuckDuckGo-ikonetjenesten i sikkerhetsdelen av applikasjonsinnst Laster ned nettstedskoner (%1/%2)… + + ImportWizard + + Import Wizard + Importeringsveileder + + + + ImportWizardPageReview + + WizardPage + Veiviserside + + + Entry count: %1 + Antall oppføringer: %1 + + + Group + Gruppe + + + Title + Tittel + + + Username + Brukernavn + + + Password + Passord + + + Url + URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Skjema + + + Import File Selection + Importer filutvalg + + + Password: + Passord: + + + Key File: + Nøkkelfil: + + + Browse… + Bla gjennom... + + + Import Into: + Importer til: + + + New Database + Ny database + + + No unlocked databases available + Ingen åpne databaser tilgjengelig + + + Existing Database: + Eksisterende database: + + + Import File: + Importer fil: + + + Comma Separated Values (.csv) + Kommaseparerte verdier (.csv) + + + 1Password Export (.1pux) + Eksporter for 1Password (.1pux) + + + 1Password Vault (.opvault) + 1Password-hvelv (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1-database (.kdb) + + + Open OPVault + Åpne OPVault + + + Select import file + Velg fil å importere + + + All files + Alle filer + + + Key files + Nøkkelfiler + + + Select key file + Velg nøkkelfil + + + Comma Separated Values + Kommaseparerte verdier + + + 1Password Export + Eksporter for 1Password + + + Bitwarden JSON Export + Eksporter som Bitwarden JSON + + + 1Password Vault + 1Password-hvelv + + + KeePass1 Database + KeePass1-database + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4232,7 +4924,7 @@ Hvis dette gjentar seg, kan databasefilen være skadet. Unknown cipher - Ukjent kryptering + Ukjent chiffer Invalid header id size @@ -4368,7 +5060,7 @@ Hvis dette gjentar seg, kan databasefilen være skadet. Unsupported cipher - Ikke støttet kryptering + Ikke støttet chiffer Invalid compression flags length @@ -4557,7 +5249,7 @@ Linje %2, kolonne %3 Private key is an attachment but no attachments provided. - Privatnøkkel er et vedlegg, men ingen vedlegg følger med. + Privat nøkkel er et vedlegg, men ingen vedlegg er angitt. Private key is empty @@ -4572,17 +5264,6 @@ Linje %2, kolonne %3 Kunne ikke åpne den private nøkkelen - - KeePass1OpenWidget - - Import KeePass1 Database - Importer KeePass 1-database - - - Unable to open the database. - Kan ikke åpne databasen. - - KeePass1Reader @@ -4939,10 +5620,6 @@ Er du sikker på at du vil fortsette med denne filen? &Recent Databases &Nylige databaser - - &Import - &Importer - &Export &Eksporter @@ -4963,6 +5640,10 @@ Er du sikker på at du vil fortsette med denne filen? TOTP TOTP + + Tags + Tagger + &Groups &Grupper @@ -4973,7 +5654,7 @@ Er du sikker på at du vil fortsette med denne filen? View - Se + Vis Theme @@ -5007,34 +5688,18 @@ Er du sikker på at du vil fortsette med denne filen? &New Database… &Ny database… - - Create a new database - Opprett en ny database - &Merge From Database… &Slå sammen fra database… - - Merge from another KDBX database - Slå sammen fra en annen KDBX-database - &New Entry… &Ny oppføring… - - Add a new entry - Legg til en ny oppføring - &Edit Entry… &Endre oppføring… - - View or edit entry - Vis eller endring oppføring - &Delete Entry… &Slett oppføring… @@ -5043,10 +5708,6 @@ Er du sikker på at du vil fortsette med denne filen? &New Group… &Ny gruppe… - - Add a new group - Legg til ny gruppe - &Edit Group… &Endre gruppe… @@ -5079,17 +5740,9 @@ Er du sikker på at du vil fortsette med denne filen? Database &Reports… Databaserapporter… - - Statistics, health check, etc. - Statistikk, helsesjekk osv. - &Database Settings… - &Database innstillinger... - - - Database settings - Databaseoppsett + &Databaseinnstillinger… &Clone Entry… @@ -5099,41 +5752,25 @@ Er du sikker på at du vil fortsette med denne filen? Move u&p Flytt o&pp - - Move entry one step up - Flytt oppføring ett steg opp - Move do&wn Flytt &ned - - Move entry one step down - Flytt oppføring ett trinn ned - Copy &Username Kopier &brukernavn - - Copy username to clipboard - Kopier brukernavn til utklippstavlen - Copy &Password Kopier &passord - - Copy password to clipboard - Kopier passord til utklippstavlen - &Settings &Oppsett &Password Generator - &Passord generator + &Passordgenerator Perform &Auto-Type @@ -5160,25 +5797,13 @@ Er du sikker på at du vil fortsette med denne filen? &Tittel - Copy title to clipboard - Kopier tittel til utklippstavlen - - - &URL - &URL - - - Copy URL to clipboard - Kopier URL til utklippstavlen + Copy &URL + Kopier &URL &Notes &Notater - - Copy notes to clipboard - Kopier notater til utklippstavle - &CSV File… &CSV Fil… @@ -5191,26 +5816,14 @@ Er du sikker på at du vil fortsette med denne filen? KeePass 1 Database… KeePass 1-database… - - Import a KeePass 1 database - Importer en KeePass 1 database - 1Password Vault… 1Password-hvelv… - - Import a 1Password Vault - Importere et 1Password-hvelv - CSV File… CSV-fil… - - Import a CSV file - Importer en CSV-fil - Show TOTP Vis TOTP @@ -5227,6 +5840,10 @@ Er du sikker på at du vil fortsette med denne filen? Copy &TOTP Kopier &TOTP + + Copy Password and TOTP + Kopier passord og TOTP + E&mpty recycle bin &Tøm papirkurv @@ -5251,10 +5868,6 @@ Er du sikker på at du vil fortsette med denne filen? &Online Help &Online hjelp - - Go to online documentation - Gå til online-dokumentasjon - &User Guide &Brukerveiledning @@ -5299,13 +5912,17 @@ Er du sikker på at du vil fortsette med denne filen? Classic (Platform-native) Klassisk (plattformbasert) + + Show Menubar + Vis menylinje + Show Toolbar Vis verktøylinje Show Preview Panel - Vis Forhåndsvisning-panelet + Vis forhåndsvisningspanelet Always on Top @@ -5323,6 +5940,10 @@ Er du sikker på at du vil fortsette med denne filen? Clone Group... Klone gruppe… + + &XML File… + &XML-fil… + Clear history Slett historikk @@ -5350,14 +5971,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - ADVARSEL: Qt-versjonen din kan føre til at KeePassXC krasjer med et skjermtastatur. -Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene våre. + No Tags + Ingen tagger Restore Entry(s) - + Gjenopprett oppføringGjenopprett oppføringer Settings @@ -5377,12 +5996,16 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Toggle window - Vis vinduet + Vis/skjul vindu Quit KeePassXC Avslutt KeePassXC + + %1 Entry(s) + %1 Oppføring%1 Oppføringer + Please present or touch your YubiKey to continue… Hold inntil eller berør din YubiKey for å fortsette ... @@ -5395,6 +6018,314 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene You must restart the application to apply this setting. Would you like to restart now? Du må starte programmet på nytt for å bruke denne innstillingen. Vil du starte på nytt nå? + + Allow Screen Capture + Tillat skjermopptak + + + 1Password 1PUX... + 1Password 1PUX + + + Import a 1Password 1PUX file + Importer en 1Password 1PUX-fil + + + Import… + Importer… + + + Passkeys… + Tilgangsnøkler... + + + Import Passkey + Importer tilgangsnøkkel + + + Remote S&ync… + Fjernsynkronisering... + + + Quit Application + Avslutt programmet + + + Open About Dialog + Åpne om-dialogboks + + + Open Database + Åpne database + + + Create Database + Opprett database + + + Merge From Database + Slå sammen fra database + + + Create Entry + Opprett oppføring + + + Edit Entry + Endre oppføring + + + Delete Entry + Slett oppføring + + + Create Group + Opprett gruppe + + + Edit Group + Endre gruppe + + + Delete Group + Slett gruppe + + + Download All Favicons + Last ned alle nettstedsikoner + + + Sort Groups A-Z + Sorter grupper A-Å + + + Sort Groups Z-A + Sorter grupper Å-A + + + Save Database As + Lagre database som + + + Show Database Security + Vis databasesikkerhet + + + Show Database Reports + Vis databaserapporter + + + Show Database Settings + Vis databaseinnstillinger + + + Show Passkeys + Vis tilgangsnøkler + + + Clone Entry + Klon oppføring + + + Move Entry Up + Flytt oppføring opp + + + Move Entry Down + Flytt oppføring ned + + + Copy Username + Kopier brukernavn + + + Copy Password + Kopier passord + + + Show Application Settings + Vis applikasjonsinnstillinger + + + Show Password Generator + Vis passordgenerator + + + Remove Passkey From Entry + Slett tilgangsnøkkel fra oppføring + + + Perform Auto-Type: {USERNAME} + Utfør autoskriv: {BRUKERNAVN} + + + Perform Auto-Type: {USERNAME}{ENTER} + Utfør autoskriv: {BRUKERNAVN}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Utfør autoskriv: {PASSORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Utfør autoskriv: {PASSORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Utfør autoskriv: {TOTP} + + + Copy Title + Kopier tittel + + + Copy URL + Kopier URL + + + Copy Notes + Kopier notater + + + Export to CSV + Eksporter til CSV + + + Export to HTML + Eksporter til HTML + + + Import KeePass1 Database + Importer KeePass 1-database + + + Import 1Password Vault + Importer 1Password-hvelv + + + Import CSV File + Importer CSV-fil + + + Show TOTP QR Code + Vis TOTP QR-kode + + + Set up TOTP + Sett opp TOTP + + + Empty Recycle Bin + Tøm papirkurv + + + Open Donation Website + Åpne donasjonsnettsted + + + Open Bug Report + Åpne feilrapport + + + Open Online Documentation + Åpne online-dokumentasjon + + + Open Keyboard Shortcuts Guide + Åpne hurtigtast-guiden + + + Save Database Backup + Lagre database-backup + + + SSH Agent: Add Key + SSH-agent: Legg til nøkkel + + + SSH Agent: Remove Key + SSH-agent: Fjern nøkkel + + + Toggle Compact Mode + Veksle kompakt modus av/på + + + Set Theme: Automatic + Angi tema: automatisk + + + Set Theme: Light + Angi tema: lys + + + Set Theme: Dark + Angi tema: mørk + + + Set Theme: Classic + Angi tema: klassisk + + + Toggle Show Menubar + Vis/skjul menylinje + + + Toggle Show Toolbar + Vis/skjul verktøylinje + + + Toggle Show Preview Panel + Vis/skjul forhåndsvisningspanelet + + + Toggle Always on Top + Veksle alltid på toppen av/på + + + Toggle Hide Usernames + Vis/skjul brukernavn + + + Toggle Hide Passwords + Vis/skjul passord + + + Export to XML + Eksporter til XML + + + Toggle Allow Screen Capture + Veksle tillat skjermopptak av/på + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Passordgenerator + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5452,26 +6383,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Overwriting %1 [%2] Overskriver %1 [%2] - - older entry merged from database "%1" - eldre oppføring slått sammen fra database "%1" - - - Adding backup for older target %1 [%2] - Legger til sikkerhetskopi for eldre mål %1 [%2] - - - Adding backup for older source %1 [%2] - Legger til sikkerhetskopi for eldre kilde %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Gjenbruker eldre måloppføring på nytt over den nyere kilden %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Gjenbruker eldre kildeoppføring på nytt over det nyere målet %1 [%2] - Synchronizing from newer source %1 [%2] Synkroniserer fra den nyere kilden %1 [%2] @@ -5531,14 +6442,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Her kan du justere innstillingene for databasekryptering. Ikke bekymre deg, du kan endre dem senere i databaseinnstillingene. - - Advanced Settings - Avanserte Innstillinger - - - Simple Settings - Enkle innstillinger - NewDatabaseWizardPageDatabaseKey @@ -5573,6 +6476,25 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Fyll ut visningsnavnet og en valgfri beskrivelse av den nye databasen: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5608,7 +6530,7 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Malformed OpData01 due to a failed HMAC - Feilaktig OpData01 på grunn av en mislykket HMAC + Deformert OpData01 på grunn av en mislykket HMAC Unable to process clearText in place @@ -5619,15 +6541,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Forventet %1 byte med klartekst, funnet %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Les database produserte ikke en forekomst -%1 - - OpVaultReader @@ -5699,7 +6612,11 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Unknown cipher: %1 - Ukjent kryptering: %1 + Ukjent chiffer: %1 + + + AES-256/GCM is currently not supported + AES-256/GCM støttes for øyeblikket ikke Passphrase is required to decrypt this key @@ -5711,7 +6628,7 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Cipher IV is too short for MD5 kdf - Krypterings-IV er for kort for MD5 kdf + Chiffer IV er for kort for MD5 kdf Unknown KDF: %1 @@ -5765,28 +6682,181 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Unexpected EOF when writing private key Uventet EOF ved skriving av privat nøkkel + + (encrypted) + (kryptert) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Passordene er ikke like + SSH Key Generator + SSH nøkkelgenerator - Passwords match so far - Passordmatch så langt + Type + Type - Toggle Password (%1) - Veksle passord (%1) + Bits + Biter - Generate Password (%1) - Opprette passord (%1) + Comment + Kommentar + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Eksport av tilgangsnøkkel - Warning: Caps Lock enabled! - Advarsel: Store bokstaver aktivert! + Filenames will be generated with title and .passkey file extension. + Filnavn vil bli generert med tittel og .passkey-filtype. + + + Export entries + Eksporter oppføringer + + + Export Selected + Eksporter valgte + + + Cancel + Avbryt + + + Export to folder + Eksporter til mappe + + + Export the following passkey entries. + Eksporter følgende tilgangsnøkkeloppføringer. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Eksport av tilgangsnøkkel + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Filen "%1.passkey" finnes allerede. +Vil du erstatte den? + + + Cannot open file + Kan ikke åpne fil + + + Cannot open file "%1" for writing. + Kan ikke åpne fil "%1" for skriving. + + + Cannot write to file + Kan ikke skrive til fil + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Import av tilgangsnøkkel + + + Username: %1 + Brukernavn: %1 + + + Group + Gruppe + + + Database + Database + + + Import Passkey + Importer tilgangsnøkkel + + + Import + Importer + + + Cancel + Avbryt + + + Entry + Oppføring + + + Create new entry + Opprett ny oppføring + + + Relying Party: %1 + Tiltrodd part: %1 + + + Import the following passkey: + Importer følgende tilgangsnøkkel: + + + Import the following passkey to this entry: + Importer følgende tilgangsnøkkel til denne oppføringen: + + + Default passkeys group (Imported Passkeys) + Standardgruppe for tilgangsnøkler (importerte tilgangsnøkler) + + + + PasskeyImporter + + Passkey file + Tilgangsnøkkelfil + + + All files + Alle filer + + + Cannot open file + Kan ikke åpne fil + + + Cannot open file "%1" for reading. + Kan ikke åpne filen "%1" for lesing. + + + Open passkey file + Åpne tilgangsnøkkelfil + + + Cannot import passkey + Kunne ikke importere tilgangsnøkkel + + + Cannot import passkey file "%1". Data is missing. + Kan ikke importere tilgangsnøkkelfil "%1". Data mangler. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5967,10 +7037,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Also choose from: Velg også mellom: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Ekskluderte tegn: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Ekskluder tegn som er nesten makne @@ -5995,10 +7061,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Word Count: Antall ord: - - Character Count: - Antall tegn: - Word Case: Ord-format: @@ -6011,10 +7073,6 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Add custom wordlist Legg til egendefinert ordliste - - character - tegn - Close Lukk @@ -6051,6 +7109,30 @@ Vi anbefaler at du bruker det AppImage som er tilgjengelig på nedlastingssidene Entropy: %1 bit Entropi: %1 bit + + Password Quality: %1 + Passordkvalitet: %1 + + + Poor + Password quality + Dårlig + + + Weak + Password quality + Svak + + + Good + Password quality + Bra + + + Excellent + Password quality + Utmerket + Confirm Delete Wordlist Bekreft sletting av ordlisten @@ -6098,8 +7180,47 @@ Vil du erstatte den? Spesialtegn - Password Quality: %1 - Passordkvalitet: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Passordene er ikke like + + + Passwords match so far + Passordmatch så langt + + + Toggle Password (%1) + Vis/skjul passord (%1) + + + Generate Password (%1) + Opprette passord (%1) + + + Warning: Caps Lock enabled! + Advarsel: Store bokstaver aktivert! + + + Quality: %1 + Kvalitet: %1 Poor @@ -6121,6 +7242,10 @@ Vil du erstatte den? Password quality Utmerket + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Vis/skjul synlig passord med Control + H. Åpne passordgeneratoren med Control + G. + PickcharsDialog @@ -6137,6 +7262,21 @@ Vil du erstatte den? Trykk &Tab mellom tegn + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6175,6 +7315,10 @@ Vil du erstatte den? Continue Fortsett + + Continue with weak password + Fortsett med svakt passord + QObject @@ -6220,7 +7364,7 @@ Vil du erstatte den? No URL provided - Ingen URL oppgitt + Ingen URL angitt No logins found @@ -6568,6 +7712,10 @@ Vil du erstatte den? Too many arguments provided. Det er angitt for mange argumenter. + + Path of the database. + Database-sti. + Target decryption time in MS for the database. Mål-dekrypteringstid i MS for databasen. @@ -6588,10 +7736,6 @@ Vil du erstatte den? Create a new database. Opprett en ny database. - - Path of the database. - Database-sti. - Invalid decryption time %1. Ugyldig dekrypteringstid %1. @@ -6636,6 +7780,158 @@ Vil du erstatte den? Successfully created new database. Vellykket oppretting ny database. + + Unset the password for the database. + Slett passordet for databasen. + + + Unset the key file for the database. + Slett nøkkelfilen for databasen. + + + Edit a database. + Redigere en database. + + + Cannot use %1 and %2 at the same time. + Kan ikke bruke %1 og %2 samtidig. + + + Could not change the database key. + Kunne ikke endre databasenøkkelen. + + + Database was not modified. + Databasen ble ikke endret. + + + Writing the database failed: %1 + Skriving til databasen mislyktes: %1 + + + Successfully edited the database. + Vellykket redigering av databasen. + + + Cannot remove password: The database does not have a password. + Kan ikke fjerne passordet: Databasen har ikke passord. + + + Cannot remove file key: The database does not have a file key. + Kan ikke fjerne nøkkelfilen: Databasen har ikke en nøkkelfil. + + + Loading the new key file failed: %1 + Lasting av den nye nøkkelfilen mislyktes: %1 + + + Found unexpected Key type %1 + Fant uventet nøkkeltype %1 + + + Cannot remove all the keys from a database. + Kan ikke fjerne alle nøklene fra en database. + + + Show a database's information. + Vise informasjon om en database. + + + UUID: + UUID: + + + Name: + Navn: + + + Description: + Beskrivelse: + + + Cipher: + Chiffer: + + + KDF: + KDF: + + + Recycle bin is enabled. + Papirkurv er aktivert. + + + Recycle bin is not enabled. + Papirkurv er ikke aktivert. + + + Location + Plassering + + + Database created + Database opprettet + + + Last saved + Sist lagret + + + Unsaved changes + Ikke lagrede endringer + + + yes + ja + + + no + nei + + + Number of groups + Antall grupper + + + Number of entries + Antall oppføringer + + + Number of expired entries + Antall utløpte oppføringer + + + Unique passwords + Unike passord + + + Non-unique passwords + Dupliserte passord + + + Maximum password reuse + Maksimal gjenbruk av passord + + + Number of short passwords + Antall korte passord + + + Number of weak passwords + Antall svake passord + + + Entries excluded from reports + Oppføringer som er utelatt fra rapporter + + + Average password length + Gjennomsnittlig passordlengde + + + %1 characters + %1 tegn + Word count for the diceware passphrase. Antall ord i diceware-passordfrasen. @@ -6659,10 +7955,6 @@ Vil du erstatte den? Invalid word count %1 Ugyldig ordtelling %1 - - The word list is too small (< 1000 items) - Ordlisten er for liten (< 1000 element) - Title for the entry. Tittel for oppføringa. @@ -6687,10 +7979,6 @@ Vil du erstatte den? Enter new password for entry: Skriv inn nytt passord for oppføring: - - Writing the database failed: %1 - Skriving til databasen mislyktes: %1 - Successfully edited entry %1. Endring av oppføring %1 er fullført. @@ -6811,10 +8099,6 @@ Vil du erstatte den? Exit interactive mode. Avslutt interaktiv modus. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format som skal brukes ved eksport. Tilgjengelige valg er XML eller CSV. Standardvalg er XML. - Exports the content of a database to standard output in the specified format. Eksporterer innholdet av en database til standard output i det angitte formatet. @@ -6915,106 +8199,6 @@ Vil du erstatte den? Successfully imported database. Databasen er importert. - - Show a database's information. - Vise informasjon om en database. - - - UUID: - UUID: - - - Name: - Navn: - - - Description: - Beskrivelse: - - - Cipher: - Chiffer: - - - KDF: - KDF: - - - Recycle bin is enabled. - Papirkurv er aktivert. - - - Recycle bin is not enabled. - Papirkurv er ikke aktivert. - - - Location - Plassering - - - Database created - Database opprettet - - - Last saved - Sist lagret - - - Unsaved changes - Ikke lagrede endringer - - - yes - ja - - - no - nei - - - Number of groups - Antall grupper - - - Number of entries - Antall oppføringer - - - Number of expired entries - Antall utløpte oppføringer - - - Unique passwords - Unike passord - - - Non-unique passwords - Dupliserte passord - - - Maximum password reuse - Maksimal gjenbruk av passord - - - Number of short passwords - Antall korte passord - - - Number of weak passwords - Antall svake passord - - - Entries excluded from reports - Oppføringer som er utelatt fra rapporter - - - Average password length - Gjennomsnittlig passordlengde - - - %1 characters - %1 tegn - Unknown command %1 Ukjent kommando %1 @@ -7187,6 +8371,10 @@ Tilgjengelige kommandoer: Show the protected attributes in clear text. Vis de beskyttede attributtene i klartekst. + + Show all the attributes of the entry. + Vis alle attributtene for oppføringen. + Show the attachments of the entry. Vise vedleggene til oppføringen. @@ -7257,6 +8445,10 @@ Vurder å lage en ny nøkkelfil. Invalid YubiKey serial %1 Ugyldig YubiKey-serienummer %1 + + Please present or touch your YubiKey to continue. + Koble til eller berør YubiKey for å fortsette. + Enter password to encrypt database (optional): Skriv inn passord for å kryptere databasen (valgfritt): @@ -7444,8 +8636,8 @@ Kjerne: %3 %4 %1 minutt%1 minutter - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan-biblioteket må være minst 2.11.x, funnet %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botanbiblioteket må være minst %1, funnet %2.%3.%4 Cryptographic libraries: @@ -7495,18 +8687,6 @@ Kjerne: %3 %4 file empty fil tom - - malformed string - Ugyldig streng - - - missing closing quote - Manglende avsluttende anførselstegn - - - %1: (row, col) %2,%3 - %1: (rad, kolonne) %2,%3 - AES 256-bit AES 256-biter @@ -7685,14 +8865,6 @@ Kjerne: %3 %4 read password of the database from stdin Les database-passord fra standard input - - allow app screen recordering and screenshots - tillat skjermopptaker og skjermdumper for apper - - - Locked databases. - Låste databaser. - Database failed to lock. Databasen kunne ikke låses. @@ -7701,6 +8873,10 @@ Kjerne: %3 %4 Another instance of KeePassXC is already running. En annen instans av KeePassXC kjører allerede. + + KeePassXC is not running. No open database to lock + KeePassXC kjører ikke. Ingen åpen database å låse + Fatal error while testing the cryptographic functions. Alvorlig feil ved testing av de kryptografiske funksjonene. @@ -7709,10 +8885,6 @@ Kjerne: %3 %4 KeePassXC - Error KeePassXC - Feil - - Warning: Failed to prevent screenshots on a top level window! - Advarsel: Kunne ikke forhindre skjermdumper av et toppnivå-vindu! - Database password: Databasepassord: @@ -7736,9 +8908,312 @@ Kjerne: %3 %4 Signering av utfordring ved hjelp av Windows Hello feilet. - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Advarsel: Kunne ikke blokkere skjermbildeopptak i et vindu på øverste nivå. + + + Invalid Cipher + Ugyldig chiffer + + + Invalid KDF + Ugyldig KDF + + + Access to all entries is denied + Tilgang til alle oppføringer nektes + + + allow screenshots and app recording (Windows/macOS) + tillat skjermdumper og app-opptak (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + Databases have been locked. + Databasen har blitt låst. + + + Attestation not supported + Attestasjon støttes ikke + + + Credential is excluded + Identifikasjon er utelatt + + + Passkeys request canceled + Forespørsel om tilgangsnøkler kansellert + + + Invalid user verification + Ugyldig brukerverifikasjon + + + Empty public key + Tom offentlig nøkkel + + + Invalid URL provided + Angitt URL er ugyldig + + + Passkeys + Tilgangsnøkler + + + AES initialization failed + AES-initialisering mislyktes + + + AES encrypt failed + AES-kryptering mislyktes + + + Failed to store in Linux Keyring + Kunne ikke lagre i Linux-nøkkelring + + + Polkit returned an error: %1 + Polkit returnerte en feil: %1 + + + Could not locate key in keyring + Kunne ikke finne nøkkel i nøkkelring + + + Could not read key in keyring + Kunne ikke lese nøkkel i nøkkelring + + + AES decrypt failed + AES-dekryptering mislyktes + + + No Polkit authentication agent was available + Ingen Polkit-autentiseringsagent var tilgjengelig + + + Polkit authorization failed + Polkit-autorisasjon mislyktes + + + No Quick Unlock provider is available + Ingen hurtigopplåsings-tjeneste er tilgjengelig + + + Failed to init KeePassXC crypto. + Initialisering av KeePassXC krypto feilet. + + + Failed to encrypt key data. + Kryptering av nøkkeldata feilet. + + + Failed to get Windows Hello credential. + Henting av identifikasjon fra Windows Hello feilet. + + + Failed to decrypt key data. + Dekryptering av nøkkeldata feilet. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + Vent til tidtakeren utløper + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + Favoritt + + + File does not exist. + Filen eksisterer ikke. + + + Cannot open file: %1 + Kunne ikke åpne fil: %1 + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + Feil passord + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + Kan ikke dekryptere data + + + Bitwarden Import + Importer fra Bitwarden + + + Archived + Tag for archived entries + Arkivert + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + Importer fra 1Password + + + Enter Shortcut + Skriv in snarvei + + + Action + Handling + + + Shortcuts + Snarveier + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + Tilbakestill snarveier + + + Double click an action to change its shortcut + Dobbeltrykk på en handling for å endre snarveien + + + Filter... + Filtrer... + + + Shortcut Conflict + Snarveikonflikt + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Slett programtillegg-data? + + + Delete plugin data from Entry(s)? + + + + Passkey + Tilgangsnøkkel + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Tagger + QtIOCompressor @@ -7774,20 +9249,39 @@ Kjerne: %3 %4 Intern zlib-feil: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Utelat utløpte oppføringer fra rapporten - - - Show only entries which have URL set - Vis bare oppføringer med registrert URL - - - Show only entries which have browser settings in custom data - Vis bare oppføringer med egendefinerte nettleserinnstillinger - Double-click entries to edit. Dobbeltklikk på oppføringer som skal endres. @@ -7852,44 +9346,53 @@ Kjerne: %3 %4 Exclude from reports Utelat fra rapporter + + Expire Entry(s)… + + + + Only show entries that have a URL + Vis bare oppføringer som har en URL + + + Only show entries that have been explicitly allowed or denied + Vis kun oppføringer som har blitt eksplisitt tillatt eller nektet + + + Show expired entries + Vis utløpte oppføringer + + + (Expired) + (Utløpt) + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - Utelat utløpte oppføringer fra rapporten + Show expired entries + Vis utløpte oppføringer - Also show entries that have been excluded from reports - Vis også oppføringer som er utelatt fra rapporter + (Expired) + (Utløpt) Hover over reason to show additional details. Double-click entries to edit. Hold pekeren over årsaken for å vise flere detaljer. Dobbeltklikk på oppføringer for å redigere. - - Bad - Password quality - Dårlig - Bad — password must be changed Dårlig – passordet må endres - - Poor - Password quality - Dårlig - Poor — password should be changed Dårlig – passordet bør endres - - Weak - Password quality - Svak - Weak — consider changing the password Svakt – vurder å endre passordet @@ -7938,6 +9441,14 @@ Kjerne: %3 %4 Exclude from reports Ekskluder fra rapporter + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Vis oppføringer som er ekskluderte fra rapporter + ReportsWidgetHibp @@ -8033,6 +9544,77 @@ Kjerne: %3 %4 Exclude from reports Ekskluder fra rapporter + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Eksporter + + + Import + Importer + + + List of entry URLs + Liste over URL'er i oppføringer + + + Title + Tittel + + + Path + Sti + + + Username + Brukernavn + + + URLs + URL'er + + + Edit Entry… + Endre oppføring… + + + Delete Entry(s)… + Slett oppføring...Slett oppføringer... + + + Relying Party + Tiltrodd part + + + Show expired entries + Vis utløpte oppføringer + + + (Expired) + (Utløpt) + + + Export Confirmation + Eksportbekreftelse + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + Ingen oppføringer med tilgangsnøkler. + ReportsWidgetStatistics @@ -8207,6 +9789,14 @@ Kjerne: %3 %4 No agent running, cannot list identities. Ingen agent kjører, kan ikke liste opp identiteter. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8273,6 +9863,10 @@ Kjerne: %3 %4 Search Help Søkehjelp + + Save Search + Lagre søk + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8347,34 +9941,10 @@ Kjerne: %3 %4 Confirm when passwords are retrieved by clients Bekreft når passord hentes av klienter - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Denne innstillingen vil - ikke overstyre bekreftelser ved deaktivering av papirkurven</span></p></body></html> - - Confirm when clients request entry deletion Bekreft når klienter ber om sletting av oppføring - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Dette forbedrer kompatibiliteten med visse programmer - som søker etter passord uten å låse opp databasen først.</p><p>Men aktivering av dette kan også - krasje klienten hvis databasen ikke kan låses opp iløpet av et bestemt tidsrom. (Vanligvis 25s, men kan være en - annen verdi dersom angitt i programmer.)</p></body></html> - - Prompt to unlock database before searching Spør om å låse opp databasen før søking @@ -8399,6 +9969,14 @@ Kjerne: %3 %4 Save current changes to activate the plugin and enable editing of this section. Lagre endringer for å aktivere utvidelsen og for å redigere denne delen. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Dette forbedrer kompatibiliteten med enkelte programmer som søker etter passord uten å først låse opp databasen.</p><p>Men å aktivere dette kan også føre til at klienten krasjer, hvis databasen ikke kan låses opp i løpet av et gitt tidsrom. (Vanligvis 25 sekunder, men kan være en annen verdi angitt i programmene).</p></body></html> + SettingsWidgetKeeShare @@ -8507,8 +10085,12 @@ Kjerne: %3 %4 TagModel - All - Alt + Clear Search + Tøm søk + + + All Entries + Alle oppføringer Expired @@ -8519,6 +10101,25 @@ Kjerne: %3 %4 Svake passord + + TagView + + Remove Search + Fjern søk + + + Remove Tag + Fjern taggen + + + Confirm Remove Tag + Bekreft fjerning av taggen + + + Remove tag "%1" from all entries in this database? + Fjern taggen "% 1" fra alle oppføringer i denne databasen? + + TotpDialog @@ -8676,26 +10277,6 @@ Eksempel: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Begynn å lagre passordene dine i en trygg KeePassXC-database - - Create new database - Opprett ny database - - - Open existing database - Åpne eksisterende database - - - Import from KeePass 1 - Importer KeePass1-database - - - Import from 1Password - Importer fra 1Password - - - Import from CSV - Importer fra CSV-fil - Recent databases Nylige databaser @@ -8708,6 +10289,18 @@ Eksempel: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Velkommen til KeePassXC %1 + + Create Database + Opprett database + + + Open Database + Åpne database + + + Import File + Importer fil + WinUtils @@ -8724,31 +10317,8 @@ Eksempel: JBSWY3DPEHPK3PXP Kunne ikke registrere global hurtigtast - - WindowsHello - - Failed to init KeePassXC crypto. - Initialisering av KeePassXC krypto feilet. - - - Failed to encrypt key data. - Kryptering av nøkkeldata feilet. - - - Failed to get Windows Hello credential. - Henting av identifikasjon fra Windows Hello feilet. - - - Failed to decrypt key data. - Dekryptering av nøkkeldata feilet. - - YubiKey - - %1 No interface, slot %2 - %1 Ingen grensesnitt, spor %2 - General: Generelt: @@ -8760,14 +10330,6 @@ Eksempel: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Oppdater maskinvarenøkkel - - - Refresh - Last på ny - Hardware key slot selection Valg av spor i maskinvarenøkkel @@ -8800,10 +10362,6 @@ Eksempel: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Utfordrerrespons angitt, klikk for å endre eller fjerne - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Hvis du eier en <a href="https://www.yubico.com/">YubiKey</a> eller <a href="https://onlykey.io">OnlyKey</a>, kan du bruke den for ekstra sikkerhet.</p><p>Nøkkelen krever at ett av sporene programmeres som <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 utfordrerrespons</a>.</p> - Detecting hardware keys… Oppdager maskinvarenøkler... @@ -8812,27 +10370,24 @@ Eksempel: JBSWY3DPEHPK3PXP No hardware keys detected Ingen maskinvarenøkler oppdaget - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Ugyldig spor angitt - %2 + Refresh hardware keys + Oppdater maskinvarenøkler + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] utfordrerrespons – spor %3 - The YubiKey PCSC interface has not been initialized. - YubiKey PCSC-grensesnittet er ikke klargjort. - - - Hardware key is currently in use. - Maskinvarenøkkelen er for øyeblikket i bruk. + PCSC-grensesnittet til YubiKey er ikke klargjort. Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8850,6 +10405,21 @@ Eksempel: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Kan ikke fullføre utfordrerrespons, PCSC-feilkoden er %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Trykk + + + Passive + USB Challenge-Response Key no interaction required + Passiv + YubiKeyInterfaceUSB @@ -8857,14 +10427,6 @@ Eksempel: JBSWY3DPEHPK3PXP Unknown Ukjent - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Konfigurert spor – %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] utfordrerrespons – spor %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8879,10 +10441,6 @@ Eksempel: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. USB-grensesnittet til YubiKey er ikke blitt klargjort. - - Hardware key is currently in use. - Maskinvarenøkkelen er for øyeblikket i bruk. - Could not find hardware key with serial number %1. Please plug it in to continue. Kunne ikke finne maskinvarenøkkel med serienummer %1. Koble den til for å fortsette. @@ -8899,5 +10457,15 @@ Eksempel: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Kunne ikke fullføre utfordrerrespons, den spesifikke feilen var: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_nl.ts b/share/translations/keepassxc_nl.ts index 171bee2e0..83f50fe74 100644 --- a/share/translations/keepassxc_nl.ts +++ b/share/translations/keepassxc_nl.ts @@ -15,7 +15,7 @@ KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3. - KeePassXC wordt verspreid onder de voorwaarden van de GNU General Public License (GPL) versie 2 of (desgewenst) versie 3. + KeePassXC wordt uitgebracht onder de voorwaarden van de GNU General Public License (GPL) versie 2 of (desgewenst) versie 3. Project Maintainers: @@ -23,19 +23,19 @@ Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. - Bijzondere dank van het KeePassXC-team gaat uit naar debfx voor het creëren van het oorspronkelijke KeePassX. + Bijzondere dank van het KeePassXC-team gaat uit naar debfx voor het maken van de originele KeePassX. Contributors - Bijdragen van + Bijdragen <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> - <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Toon bijdragen op GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Bijdragen bekijken op GitHub</a> Debug Info - Foutinformatie + Foutopsporingsinformatie Include the following information whenever you report a bug: @@ -43,7 +43,7 @@ Copy to clipboard - Naar klembord kopiëren + Kopiëren naar klembord @@ -54,11 +54,11 @@ Non-existing/inaccessible executable path. Please double-check the client is legit. - Niet-bestaand/ontoegankelijk uitvoerbaar pad. Controleer nogmaals of de client legitiem is. + Niet-bestaande/ontoegankelijke locatie van het uitvoerbare bestand. Controleer of de client legitiem is. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">%1 </span>vraagt om toegang tot de volgende items:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>verzoekt toegang tot de volgende items:</p></body></html> Name @@ -80,6 +80,10 @@ Details Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Jouw beslissing wordt onthouden zolang de aanvragende client en KeePassXC BEIDE actief zijn. + Remember Onthouden @@ -88,39 +92,39 @@ Allow Selected Selectie toestaan - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Jouw beslissing wordt onthouden voor de duur dat zowel de aanvragende client ALS KeePassXC actief zijn. - Deny All && Future - Alles afwijzen, nu && toekomst + Alles afwijzen, nu && toekomstig Allow All && &Future - Alles toestaan, nu && toekomst + Alles toestaan, nu && toekomstig AccessControlDialog::DenyButton Deny for this program - Weigeren voor dit programma + Programma weigeren AgentSettingsWidget Enable SSH Agent integration - SSH Agent-integratie inschakelen + Integratie van SSH-agent inschakelen Use Pageant - Gebruik Pageant + Pageant gebruiken Use OpenSSH - Gebruik OpenSSH + OpenSSH gebruiken + + + Use both agents + Beide agenten gebruiken SSH_AUTH_SOCK override @@ -128,7 +132,7 @@ SSH_AUTH_SOCK value - SSH_AUTH_SOCK waarde + SSH_AUTH_SOCK-waarde (empty) @@ -136,23 +140,19 @@ SSH_SK_PROVIDER value - SSH_SK_PROVIDER waarde + SSH_SK_PROVIDER-waarde SSH_SK_PROVIDER override - SSH_SK_PROVIDER override + SSH_SK_PROVIDER overschrijven No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Geen SSH Agent-socket beschikbaar. Zorg ervoor dat de omgevingsvariabele SSH_AUTH_SOCK bestaat of stel een overschrijving in. + Er is geen SSH-agent-socket beschikbaar. Zorg er voor dat de omgevingsvariabele SSH_AUTH_SOCK bestaat of stel een overschrijving in. SSH Agent connection is working! - SSH Agent-verbinding werkt! - - - Use both agents - + De SSH-agent-verbinding is actief! @@ -169,6 +169,10 @@ Security Beveiliging + + This setting cannot be enabled when minimize on unlock is enabled. + Deze instelling kan niet worden ingeschakeld als minimaliseren na ontgrendelen is ingeschakeld. + Access error for config file %1 Geen toegang tot configuratiebestand %1 @@ -191,7 +195,7 @@ Follow style - Volg stijl + Themastijl volgen Monochrome @@ -211,19 +215,51 @@ You must restart the application to set the new language. Would you like to restart now? - Je moet de toepassing opnieuw starten om de nieuwe taal in te stellen. Wil je dat nu doen? - - - Reset Settings? - Instellingen herstellen? - - - Are you sure you want to reset all general and security settings to default? - Weet je zeker dat je de algemene en beveiligingsinstellingen opnieuw wilt instellen? + Je moet de KeePassXC opnieuw opstarten om de nieuwe taal in te stellen. Wil je dat nu doen? Select backup storage directory - Selecteer map voor opslag back-up + Selecteer een map voor reservekopie + + + Confirm Reset + Opnieuw instellen bevestigen + + + Are you sure you want to reset all settings to default? + Weet je zeker dat je alle instellingen naar standaard wilt herstellen? + + + Import KeePassXC Settings + KeePassXC-instellingen importeren + + + Failed to import settings from %1, not a valid settings file. + Kan instellingen niet importeren uit %1, geen geldig instellingenbestand. + + + Export KeePassXC Settings + KeePassXC-instellingen exporteren + + + Small + Klein + + + Normal + Normaal + + + Medium + Gemiddeld + + + Large + Groot + + + Custom + Aangepast @@ -238,58 +274,43 @@ Start only a single instance of KeePassXC - Start niet meer dan één instantie van KeePassXC + Slechts één exemplaar van KeePassXC starten Automatically launch KeePassXC at system startup - KeePassXC automatisch opstarten met het systeem + KeePassXC automatisch opstarten Minimize window at application startup - Scherm minimaliseren bij het opstarten + Venster minimaliseren bij opstarten Minimize window after unlocking database - Venster minimaliseren na ontgrendelen van database + Venster minimaliseren na ontgrendeling database Remember previously used databases Laatstgebruikte databases onthouden + + recent files + recente bestanden + Load previously open databases on startup Laatstgebruikte databases openen bij het opstarten Remember database key files and security dongles - Laatstgebruikte sleutelbestanden en beveiligingssticks onthouden + Database-sleutelbestanden en beveiligingsdongles onthouden Check for updates at application startup once per week - Controleer eens per week op updates bij het opstarten van het programma + Eenmaal per week bij opstarten controleren op updates Include beta releases when checking for updates - Zoek ook naar bèta-releases bij het controleren op updates - - - On database unlock, show entries that - Bij het ontgrendelen van databases, toon items die - - - have expired - On database unlock, show entries that... - zijn verlopen - - - days - On database unlock, show entries that will expire within %1 days - dagen - - - will expire within - On database unlock, show entries that... - zullen vervallen binnen + Ook zoeken naar bètaversies File Management @@ -305,43 +326,31 @@ Automatically save non-data changes when locking database - Automatisch niet-gegevens wijzigingen opslaan bij het vergrendelen van de database + Niet-gegevenswijzigingen automatisch opslaan na vergrendelen van database Automatically reload the database when modified externally - Database automatisch opnieuw laden als deze van buitenaf is gewijzigd + Database automatisch opnieuw laden wanneer deze extern is gewijzigd Backup database file before saving - Back-up databasebestand voor het opslaan - - - Backup destination - Back-upbestemming - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Hiermee geeft u de locatie van het back-upbestand van de database op. Exemplaren van "{DB_FILENAME}" worden vervangen door de bestandsnaam van de opgeslagen database zonder extensie. {TIME:<format>} wordt vervangen door de back-uptijd, zie https://doc.qt.io/qt-5/qdatetime.html#toString. <format> standaard tekenreeks "dd_MM_yyyy_hh-mm-ss". + Reservekopie van database maken alvorens op te slaan {DB_FILENAME}.old.kdbx - {DB_FILENAME}.old.kdbx - - - Choose... - Kiezen... + {DB_FILENAME}.oud.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - Gebruik een alternatieve opslagmethode (kan problemen oplossen met Dropbox, Google Drive, GVFS, enz.) + Alternatieve opslagmethode gebruiken (kan problemen oplossen met Dropbox, Google Drive, GVFS, etc.) Temporary file moved into place - Tijdelijk bestand op zijn plaats verplaatst + Tijdelijk bestand verplaatst naar zijn plaats Directly write to database file (dangerous) - Direct naar databasebestand schrijven (gevaarlijk) + Databasebestand direct overschrijven (gevaarlijk) Entry Management @@ -353,11 +362,11 @@ Minimize when opening a URL - Minimaliseren bij het openen van een URL + Minimaliseren bij openen van URL Hide window when copying to clipboard - Venster verbergen bij kopiëren naar klembord + Venster verbergen na kopiëren naar klembord Minimize @@ -369,20 +378,20 @@ Favicon download timeout: - Favicon download time-out: + Time-out bij download favicon: Website icon download timeout in seconds - Websitepictogram download time-out in seconden + Time-out bij download websitepictogram (in seconden) sec Seconds - sec + sec. User Interface - Gebruikersomgeving + Vormgeving Toolbar button style @@ -402,75 +411,79 @@ (restart program to activate) - (programma opnieuw starten om te activeren) + (opnieuw starten om te activeren) Toolbar button style: Knopstijl van de werkbalk: + + Show passwords in color + Wachtwoorden in kleur weergeven + Use monospaced font for notes - Mono-lettertype gebruiken voor notities + Een niet-proportioneel lettertype gebruiken voor notities Minimize instead of app exit - Minimaliseren in plaats van app afsluiten + App minimaliseren in plaats van afsluiten Show a system tray icon - Pictogram in het systeemvak weergeven + Pictogram weergeven in systeemvak Tray icon type - Systeemvak-pictogram + Systeemvakpictogram Tray icon type: - Systeemvak-pictogram: + Systeemvakpictogram: Hide window to system tray when minimized - Minimaliseren naar systeemvak + Venster minimaliseren naar systeemvak Reset settings to default… - Standaardinstellingen terugzetten... + Standaardwaarden herstellen… Auto-Type - Auto-type + Automatisch invullen Use entry title to match windows for global Auto-Type - Gebruik naam van item als vensternaam voor Auto-type + Titel van item gebruiken om het juiste venster te bepalen bij gebruik van automatisch invullen Use entry URL to match windows for global Auto-Type - Laat URL overeenkomen met item bij Auto-type + URL gebruiken om het juiste venster te bepalen bij gebruik van automatisch invullen Always ask before performing Auto-Type - Altijd vragen voor toepassen Auto-type + Altijd vragen voor automatisch invullen Hide expired entries from Auto-Type - Verlopen items verbergen voor Auto-Type + Verlopen items verbergen van automatisch invullen Re-lock previously locked database after performing Auto-Type - Vergrendelde database na Auto-type weer vergrendelen + Vergrendelde database na automatisch invullen opnieuw vergrendelen Auto-Type start delay: - Auto-type startvertraging: + Wachttijd bij automatisch invullen: Global Auto-Type shortcut: - Algemene Auto-type sneltoets: + Algemene sneltoets voor automatisch invullen: Auto-type start delay milliseconds - Auto-type startvertraging milliseconden + Wachttijd bij automatisch invullen (milliseconden) ms @@ -479,19 +492,84 @@ Auto-Type typing delay: - Auto-type typevertraging: + Wachttijd bij automatisch invullen: Global auto-type shortcut - Globale sneltoets voor Auto-type + Algemene sneltoets van automatisch invullen Auto-type character typing delay milliseconds - Auto-typevertraging milliseconden + Wachttijd bij automatisch invullen (milliseconden) Remember last typed entry for: - Onthoud de laatst getypte vermelding voor: + Laatstgebruikt item onthouden: + + + On database unlock, show entries that will expire within + Bij ontgrendeling van de database; items weergeven die verlopen binnen + + + On database unlock, show entries that will expire within + Bij ontgrendeling van de database; items weergeven die verlopen binnen + + + days + number of days warning for password expiration + dagen + + + Destination format: + Doelformaat: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> wordt vervangen door de bestandsnaam van de opgeslagen database zonder extensie </p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> wordt vervangen door de gespecifieerde tijdopmaak (standaard: dd_MM_yyyy_hh-mm-ss)</p><p>Lees de gebruikershandleiding voor meer details</p></body></html> + + + Choose folder... + Kies een map… + + + Show confirmation before moving entries to recycle bin + Om bevestiging vragen voordat items worden verplaatst naar de prullenbak + + + Copy data on double clicking field in entry view + Gegevens kopiëren bij dubbelklikken van veld in itemweergave + + + Show toolbar + Werkbalk weergeven + + + Show the menu bar by pressing the Alt key + Werkbalk weergeven met de Alt-toets + + + Show menubar + Menubalk weergeven + + + Import settings… + Instellingen importeren… + + + Export settings… + Instellingen exporteren… + + + Open browser on double clicking URL field in entry view + Browser openen bij dubbelklik op URL-veld in itemweergave + + + Font size: + Lettergrootte + + + Font size selection + Selectie van lettergrootte @@ -502,12 +580,12 @@ Database lock timeout seconds - Database vergrendeling wachttijd seconden + Wachttijd alvorens database te vergrendelen (in seconden) sec Seconds - sec + sec. Clear clipboard after @@ -520,11 +598,11 @@ min Minutes - min + min. Clipboard clear seconds - Klembord wissen in seconden + Klembord wissen na (in seconden) Lock databases after inactivity of @@ -536,43 +614,27 @@ Enable database quick unlock (Touch ID / Windows Hello) - Snel ontgrendelen van databases inschakelen (Touch ID / Windows Hello) + Snel ontgrendelen inschakelen (Touch ID/Windows Hello) Lock databases when session is locked or lid is closed - Databases vergrendelen als de gebruikerssessie wordt vergrendeld of bij het sluiten van het deksel + Databases vergrendelen wanneer de sessie wordt vergrendeld of het deksel gesloten Lock databases after minimizing the window - Databases vergrendelen bij het minimaliseren van het venster - - - Require password repeat when it is visible - Herhaling vereisen wanneer het wachtwoord zichtbaar is + Databases vergrendelen na minimaliseren van venster Hide passwords when editing them - Wachtwoord verbergen tijdens bewerken + Wachtwoorden verbergen tijdens bewerken Use placeholder for empty password fields - Tijdelijke aanduiding gebruiken voor lege wachtwoordvelden + Tijdelijke aanduidingen tonen in lege wachtwoordvelden Hide passwords in the entry preview panel - Wachtwoorden in voorvertoning verbergen - - - Hide entry notes by default - Notities standaard verbergen - - - Move entries to recycle bin without confirmation - Items zonder bevestiging naar de prullenbak verplaatsen - - - Enable double click to copy the username/password entry columns - Dubbelklikken inschakelen om de kolommen voor gebruikersnaam/wachtwoordinvoer te kopiëren + Wachtwoorden verbergen in Informatiepaneel Privacy @@ -580,18 +642,34 @@ Use DuckDuckGo service to download website icons - DuckDuckGo gebruiken om websitepictogrammen te downloaden + DuckDuckGo gebruiken voor het downloaden van websitepictogrammen + + + Hide TOTP in the entry preview panel + TOTP verbergen in Informatiepaneel + + + Lock databases when switching user + Databases vergrendelen bij het wisselen van gebruiker + + + Lock Options + Vergrendelingsopties + + + Hide notes in the entry preview panel + Notities verbergen in Informatiepaneel AutoType The requested Auto-Type sequence cannot be used due to an error: - De gevraagde automatische reeks kan niet worden gebruikt vanwege een fout: + De gevraagde invulreeks kan niet worden gebruikt wegens een foutmelding: Auto-Type Error - Fout bij Auto-type + Fout bij automatisch invullen Permission Required @@ -599,45 +677,35 @@ KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - KeePassXC heeft de Toegankelijkheid-machtiging nodig om invoerniveau Auto-type te kunnen uitvoeren. Als je de machtiging al gegeven hebt, is het mogelijk dat je KeePassXC opnieuw moet opstarten. + KeePassXC vereist de toegankelijkheidsmachtiging om items automatisch te kunnen invullen. Als je de machtiging al hebt verleend, probeer dan om KeePassXC opnieuw te starten. KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC heeft de Toegankelijkheid- en Schermopname-machtiging nodig om globale Auto-type te kunnen uitvoeren. Schermopname is benodigd om het venster te gebruiken om invoer te kunnen vinden. Als je de machtiging al gegeven hebt, is het mogelijk dat je KeePassXC opnieuw moet opstarten. + KeePassXC vereist de toegankelijkheids- en schermopnamemachtigingen om items automatisch te kunnen invullen. Schermopname is vereist om bijbehorende vensters te detecteren. Als je de machtigingen al hebt verleend, probeer dan om KeePassXC opnieuw te starten. Invalid entry provided - Ongeldige vermelding opgegeven + Ongeldig item opgegeven Bracket imbalance detected, found extra { or } - Ongelijk aantal haakjes gedetecteerd, extra { of } gevonden + Ongelijk aantal haakjes gedetecteerd: extra { of } aangetroffen Too many repetitions detected, max is %1: %2 - Te veel herhalingen gedetecteerd, max is %1: %2 + Teveel herhalingen gedetecteerd (%2). Maximaal toegestaan: %1. Very slow key press detected, max is %1: %2 - Zeer trage toetsaanslag gedetecteerd, max is %1: %2 + Zeer trage toetsaanslag gedetecteerd (%2). Maximaal toegestaan: %1. Very long delay detected, max is %1: %2 - Zeer lange vertraging gedetecteerd, max is %1: %2 + Zeer lange vertraging gedetecteerd (%2). Maximaal toegestaan: %1. - Invalid conversion type: %1 - Ongeldig conversietype: %1 - - - Invalid conversion syntax: %1 - Ongeldige conversiesyntaxis: %1 - - - Invalid regular expression syntax %1 -%2 - Ongeldige syntaxis voor reguliere expressie %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Het item bevat geen kenmerk voor PICKCHARS: %1 Invalid placeholder: %1 @@ -671,7 +739,7 @@ Title - Naam + Titel Username @@ -684,32 +752,32 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Poging om ongeldig keysym te verzenden. - Sequence aborted: Caps Lock is on - Volgorde afgebroken: Caps Lock is ingeschakeld + Reeks afgebroken: Caps Lock is ingeschakeld Sequence aborted: Modifier keys held by user - Reeks afgebroken: Modifier-toetsen ingedrukt door de gebruiker + Reeks afgebroken: speciale toetsen ingedrukt door de gebruiker Unable to get valid keycode for key: Kan geen geldige code krijgen voor toets: + + Trying to send invalid keyboard symbol. + Poging om ongeldig toetsenbordsymbool te verzenden. + AutoTypeSelectDialog Auto-Type - KeePassXC - Auto-type - KeePassXC + Automatisch invullen - KeePassXC Double click a row to perform Auto-Type or find an entry using the search: - Dubbelklik op een rij om Automatisch typen uit te voeren of zoek een item met de zoekopdracht: + Dubbelklik op een rij om Automatisch in te vullen of zoek een item met de zoekopdracht: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -718,12 +786,12 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>Gebruik geavanceerde zoekopdrachten om items in de geopende databases te vinden. De volgende sneltoetsen zijn handig:<br/> -Ctrl+F - Zoeken in database in-/uitschakelen<br/> -Ctrl+1 - Typ gebruikersnaam<br/> -Ctrl+2 - Typ wachtwoord<br/> -Ctrl+3 - Typ TOTP<br/> -Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> + <p>Je kunt uitgebreide zoekopdrachten uitvoeren om items in de geopende databases te vinden. De volgende sneltoetsen zijn handig:<br/> +Ctrl + F - Database doorzoeken<br/> +Ctrl + 1 - Gebruikersnaam invoeren<br/> +Ctrl + 2 - Wachtwoord invoeren<br/> +Ctrl + 3 - TOTP invoeren<br/> +Ctrl + 4 - Virtueel toetsenbord (alleen Windows)</p> Search all open databases @@ -731,7 +799,7 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> Search… - Zoeken... + Zoeken… Type Sequence @@ -743,11 +811,11 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> Type {USERNAME} - {GEBRUIKERSNAAM} invoeren + {USERNAME} invoeren Type {PASSWORD} - {WACHTWOORD} invoeren + {PASSWORD} invoeren Type {TOTP} @@ -778,11 +846,11 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> %1 is requesting access to the following entries: - %1 vraagt toegang tot de volgende vermeldingen: + %1 vraagt toegang tot de volgende items: Remember access to checked entries - Onthoud de toegang tot aangevinkte vermeldingen + Toegang tot geselecteerde items onthouden Remember @@ -790,7 +858,7 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> Allow access to entries - Toegang tot vermeldingen toestaan + Toegang tot items toestaan Allow Selected @@ -802,15 +870,15 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> Disable for this site - Uitschakelen voor deze website + Uitschakelen op deze website + + + Undo + Ongedaan maken BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser: Item opslaan - Ok Oké @@ -823,125 +891,178 @@ Ctrl+4 - Virtueel toetsenbord gebruiken (alleen Windows)</p> You have multiple databases open. Please select the correct database for saving credentials. Er zijn meerdere databases geopend. -Selecteer de database voor het opslaan van de inloggegevens. +Selecteer de database waarin de inloggegevens dienen te worden opgeslagen. + + + KeePassXC - Select Database + KeePassXC - Selecteer database + + + + BrowserPasskeysConfirmationDialog + + Cancel + Annuleren + + + Update + Update + + + Authenticate + Authenticeren + + + Register new + Nieuw registreren + + + Register + Registreren + + + Timeout in <b>%n</b> seconds... + Time-out over <b>%n</b> seconde…Time-out over <b>%n</b> seconden… + + + Relying Party: %1 + Vertrouwende partij: %1 + + + Username: %1 + Gebruikersnaam: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Passkey-inloggegevens + + + Add to existing entry + Aan bestaand item toevoegen + + + Existing passkey found. +Do you want to register a new passkey for: + Bestaande passkey gevonden. +Wil je een nieuwe passkey registreren voor: + + + Select the existing passkey and press Update to replace it. + Selecteer de bestaande passkey en druk op Bijwerken om deze te vervangen. + + + Authenticate passkey credentials for: + Inloggegevens verifiëren voor passkey: + + + Do you want to register a passkey for: + Wil je een passkey registreren voor: BrowserService - - KeePassXC: Create a new group - KeePassXC: Een nieuwe groep aanmaken - A request for creating a new group "%1" has been received. Do you want to create this group? - Een aanvraag voor het aanmaken van een nieuwe groep '%1' werd ontvangen. + Er is een aanvraag gedaan voor het aanmaken van een nieuwe groep genaamd ‘%1’. Wil je deze groep aanmaken? - - KeePassXC: New key association request - KeePassXC: Nieuw verzoek voor sleutelkoppeling - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Je hebt een associatieverzoek ontvangen voor de volgende database: + Er is toegang gevraagd tot de volgende database: %1 -Geef de verbinding een unieke naam of ID, voorbeeld: +Geef de koppeling een unieke naam of id. Voorbeeld: chrome-laptop Save and allow access Opslaan en toegang verlenen - - KeePassXC: Overwrite existing key? - KeePassXC: Bestaande sleutel overschrijven? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Een gedeelde coderingssleutel met de naam "%1" bestaat al. + Er is al een gedeelde beveiligingssleutel genaamd ‘%1’. Wil je deze overschrijven? - - KeePassXC: Update Entry - KeePassXC: Item bijwerken - Do you want to update the information in %1 - %2? Wil je de gegevens in %1 - %2 bijwerken? - - KeePassXC: Delete entry - KeePassXC: Item verwijderen - A request for deleting entry "%1" has been received. Do you want to delete the entry? - Er is een verzoek ontvangen om item "%1" te verwijderen. + Er is een verzoek gedaan om ‘%1’ te verwijderen. Wil je dit item verwijderen? - Converting attributes to custom data… - Kenmerken worden omgezet in aangepaste gegevens... + %1 (Passkey) + %1 (Passkey) - Abort - Afbreken + KeePassXC - Create a new group + KeePassXC - Een nieuwe groep aanmaken - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Omgezette KeePassHTTP-kenmerken + Disable + Uitschakelen - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Kenmerken van %1 item(s) is/zijn omgezet. -%2 sleutels naar aangepaste gegevens verplaatst. - - - Successfully moved %n keys to custom data. - Sleutel is verplaats naar speciale data.%n Sleutels zijn verplaatst naar aangepaste gegevens. + KeePassXC - Overwrite existing key? + KeePassXC - Bestaande sleutel overschrijven? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Geen item met KeePassHTTP-kenmerken gevonden! + KeePassXC - Update Entry + KeePassXC - Item bijwerken - The active database does not contain an entry with KeePassHTTP attributes. - De actieve database bevat geen item met KeePassHTTP-kenmerken. + KeePassXC - Delete entry + KeePassXC - Item verwijderen - Don't show this warning again - Deze waarschuwing niet meer geven + KeePassXC - New key association request + KeePassXC - Nieuw Passkey-toewijzingsverzoek - KeePassXC: Legacy browser integration settings detected - KeePassXC: instellingen voor oudere browserintegratie gedetecteerd + Passkey + Passkey - 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? - De KeePassXC-Browser instellingen moeten worden verplaatst naar de instellingen-database. -Dit is nodig om de huidige browserverbindingen te behouden. -Wil je de bestaande instellingen nu migreren? + KeePassXC - Passkey credentials + KeePassXC - Passkey-inloggegevens + + + Register a new passkey to this entry: + Een nieuwe passkey registreren voor dit item: + + + KeePassXC - Update passkey + KeePassXC - Passkey bijwerken + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Item heeft al een passkey. +Wil je de passkey overschrijven in %1 - %2? + + + Register + Registreren BrowserSettingsWidget Dialog - Dialoog + Dialoogvenster This is required for accessing your databases with KeePassXC-Browser @@ -955,13 +1076,9 @@ Wil je de bestaande instellingen nu migreren? General Algemeen - - Browsers installed as snaps are currently not supported. - Browsers die als snaps zijn geïnstalleerd, worden momenteel niet ondersteund. - Enable integration for these browsers: - Activeer integratie voor deze browsers: + Integratie in de volgende browsers inschakelen: Vivaldi @@ -994,31 +1111,31 @@ Wil je de bestaande instellingen nu migreren? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Toon een melding wanneer om referenties wordt gevraagd + Melding weergeven als er om inloggegevens wordt gevraagd Request to unlock the database if it is locked - Verzoek om ontgrendeling van de database als deze is vergrendeld + Verzoek om de database te ontgrendelen als deze is vergrendeld Only entries with the same scheme (http://, https://, …) are returned. - Alleen items met hetzelfde schema (http://, https://, ...) worden gegeven. + Er worden alleen items met hetzelfde schema (http://, https://, ...) getoond. Match URL scheme (e.g., https://example.com) - Overeenkomstig URL-schema (bijv. https://example.com) + Overeenkomstig URL-schema vereisen (bijv. https://voorbeeld.nl) Only returns the best matches for a specific URL instead of all entries for the whole domain. - Geeft alleen de beste overeenkomsten terug voor een specifieke URL in plaats van alle items voor het hele domein. + Toont alleen de beste overeenkomsten bij een specifieke URL in plaats van alle items op het domein. Return only best-matching credentials - Geef alleen best overeenkomende inloggegevens + Alleen beste overeenkomsten tonen Returns expired credentials. String [expired] is added to the title. - Geeft verlopen inloggegevens. Woord [expired] is aan de titel toegevoegd. + Toont verlopen inloggegevens. De tekst ‘[verlopen]’ wordt aan de titel toegevoegd. Allow returning expired credentials @@ -1026,12 +1143,12 @@ Wil je de bestaande instellingen nu migreren? All databases connected to the extension will return matching credentials. - Alle databases verbonden met de extensie kunnen overeenkomende inloggegevens geven. + Alle databases die aan de extensie gekoppeld zijn kunnen overeenkomende inloggegevens opleveren. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Zoek in alle geopende databases naar overeenkomende inloggegevens + Alle geopende databases doorzoeken op overeenkomstige inloggegevens Advanced @@ -1050,23 +1167,23 @@ Wil je de bestaande instellingen nu migreren? Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - Vraag geen toestemming voor HTTP Basic Auth + Geen toestemming vragen bij gebruik van HTTP Basic Auth Automatically creating or updating string fields is not supported. - Het automatisch aanmaken of wijzigen van tekenreeks-velden wordt niet ondersteund. + Het automatisch aanmaken of wijzigen van tekenreeksvelden wordt niet ondersteund. Return advanced string fields which start with "KPH: " - Lever geavanceerde tekenreeksvelden die beginnen met "KPH:" + Geavanceerde tekenreeksvelden die beginnen met ‘KPH:’ tonen Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Laat de pop-up die de migratie van KeePassHTTP naar KeePassXC-Browser aanbiedt, niet meer zien. + De pop-up die de migratie van KeePassHTTP naar KeePassXC-Browser aanbiedt niet meer tonen. Do not prompt for KeePassHTTP settings migration. - Vraag niet om migratie van KeePassHTTP-instellingen. + Niet vragen om migratie van KeePassHTTP-instellingen. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. @@ -1074,24 +1191,24 @@ Wil je de bestaande instellingen nu migreren? Update native messaging manifest files at startup - Native messaging-manifestbestanden bij het opstarten bijwerken + Native messaging-manifestbestanden bij opstarten automatisch bijwerken Use a custom proxy location if you installed a proxy manually. - Gebruik een aangepaste proxy-locatie als je zelf een proxy hebt geïnstalleerd. + Gebruik een aangepaste proxy-locatie als er handmatig een proxy is geïnstalleerd. Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - Aangepaste proxy-locatie toepassen: + Aangepaste proxy-locatie: Custom proxy location field - Handmatig Proxy invulveld + Aangepast proxy-locatieveld Browser for custom proxy file - Blader naar eigen Proxy configuratiebestand + Kies een eigen proxy-configuratiebestand Browse… @@ -1100,11 +1217,11 @@ Wil je de bestaande instellingen nu migreren? Use a custom browser configuration location: - Aangepaste locatie voor de browserconfiguratie gebruiken: + Aangepaste browserconfiguratielocatie gebruiken: Browser type: - Browser-type: + Webbrowser: Toolbar button style @@ -1116,7 +1233,7 @@ Wil je de bestaande instellingen nu migreren? Custom browser location field - Aangepast locatieveld van de browser + Aangepast browserlocatieveld Browse for custom browser path @@ -1124,31 +1241,11 @@ Wil je de bestaande instellingen nu migreren? Custom extension ID: - Aangepast extensie-ID: + Aangepaste extensie-id: Custom extension ID - Aangepast extensie-ID - - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Vanwege de Snap-sandboxing moet je een script uitvoeren waarmee browserintegratie mogelijk wordt. <br /> Je kunt dit script vinden op %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser is nodig om de integratie met de browser te laten werken. <br /> Download het voor %1 en %2 en %3. %4 - - - Please see special instructions for browser extension use below - Raadpleeg onderstaande speciale instructies voor gebruik van browserextensie - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - Fout:</b> De aangepaste proxy-locatie is niet gevonden!<br/>Browserintegratie WERKT NIET zonder de proxy-applicatie. - - - <b>Warning:</b> The following options can be dangerous! - <b>Waarschuwing:</b> De volgende opties kunnen gevaarlijk zijn! + Aangepaste extensie-id Executable Files @@ -1160,22 +1257,62 @@ Wil je de bestaande instellingen nu migreren? Select custom proxy location - Selecteer aangepaste proxy-locatie + Selecteer een aangepaste proxy-locatie Select native messaging host folder location Selecteer de locatie van de native messaging-hostmap + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Toestaan dat keepassxc-proxy alle items uit gekoppelde databases opsomt, inclusief titel, URL en UUID. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Beperkte toegang tot items in gekoppelde databases toestaan (negeert website-toegangsbeperkingen) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Waarschuwing:</b> pas deze instellingen alleen aan indien nodig. + + + The custom proxy location does not exist. + De aangepaste proxy-locatie bestaat niet. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Foutmelding:</b> de aangepaste proxy-locatie bestaat niet. Corrigeer dit op het tabblad geavanceerde instellingen. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Foutmelding:</b> het geïnstalleerde proxy-bestand ontbreekt op de verwachte locatie: %1<br/>Stel een aangepaste proxy-locatie in in de geavanceerde instellingen of installeer het programma opnieuw. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Maakt het gebruik van onveilige http://localhost met passkeys mogelijk voor testdoeleinden. + + + Allow using localhost with passkeys + Het gebruik van localhost toestaan met passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser is nodig om de integratie met de browser te laten werken. <br /> Download deze browserextensie voor %1 en %2 en %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Browsers die met Snap of Flatpak zijn geïnstalleerd, worden niet ondersteund, met uitzondering van Firefox die met Snap is geïnstalleerd. + CloneDialog Clone Entry Options - Opties voor items dupliceren + Opties voor dupliceren Append ' - Clone' to title - Voeg ' - Duplicaat' toe aan naam + ' - Duplicaat' toevoegen aan titel Replace username and password with references @@ -1183,26 +1320,18 @@ Wil je de bestaande instellingen nu migreren? Copy history - Historie kopiëren + Geschiedenis kopiëren CsvImportWidget - - Import CSV fields - CSV-velden importeren - - - filename - bestandsnaam - size, rows, columns grootte, rijen, kolommen Column Association - Kolomverwijzing + Kolomtoewijzing Password @@ -1214,7 +1343,7 @@ Wil je de bestaande instellingen nu migreren? Title - Naam + Titel Group @@ -1254,11 +1383,11 @@ Wil je de bestaande instellingen nu migreren? Text is qualified by - Tekst staat tussen + Tekst wordt gekenmerkt door Text qualification - Tekstkwalificatie + Tekstmarkering Fields are separated by @@ -1266,11 +1395,11 @@ Wil je de bestaande instellingen nu migreren? Field separation - Veldscheiding + Scheidingsteken Comments start with - Commentaar start met + Opmerkingen beginnen met Header lines skipped @@ -1286,15 +1415,15 @@ Wil je de bestaande instellingen nu migreren? Consider '\' an escape character - Beschouw '\' als escape-teken + ‘\’ beschouwen als escapeteken Preview - Voorvertoning + Voorbeeld CSV import preview - CSV import voorbeeld + Csv-import - Voorbeeld Not Present @@ -1304,51 +1433,44 @@ Wil je de bestaande instellingen nu migreren? Column %1 Kolom %1 - - Imported from CSV file - Geïmporteerd uit CSV-bestand - - - Original data: - Originele gegevens: - - - Error(s) detected in CSV file! - Fout(en) gevonden in CSV-bestand! - [%n more message(s) skipped] - [%n meer bericht(en) overgeslagen][%n bericht(en) overgeslagen] + [%n bericht overgeslagen][%n berichten overgeslagen] - Error - Fout + Failed to parse CSV file: %1 + Verwerking CSV-bestand mislukt: %1 - CSV import: writer has errors: -%1 - CSV importeren: schrijver heeft fouten: -%1 + Imported from CSV file: %1 + Geïmporteerd uit CSV-bestand: %1 + + + No Title Selected + Geen titel geselecteerd + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Er is geen titelkolom geselecteerd, items zijn zo moeilijk van elkaar te onderscheiden. +Weet je zeker dat je wilt importeren? + + + Tags + Labels CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte (s)%n byte(s) - %n row(s) - %n rij(en)%n rij(en) + CSV row count + %n rij%n rijen %n column(s) - %n kolom%n kolom(men) + CSV column count + %n kolom%n kolommen @@ -1364,7 +1486,7 @@ Wil je de bestaande instellingen nu migreren? Unable to open file %1. - Kan bestand %1 niet openen. + Bestand %1 kan niet worden geopend. Error while reading the database: %1 @@ -1372,40 +1494,48 @@ Wil je de bestaande instellingen nu migreren? Could not save, database does not point to a valid file. - Kan niet opslaan. Database verwijst niet naar een geldig bestand. + Het opslaan is mislukt, omdat de database niet verwijst naar een geldig bestand. Database save is already in progress. - Database wordt opgeslagen. + De database wordt opgeslagen. Could not save, database has not been initialized! - Niet opgeslagen, database is niet geïnitialiseerd! + Het opslaan is mislukt - de database is niet geïnitialiseerd! Database file has unmerged changes. - Databasebestand heeft niet opgeslagen gegevens. + Databasebestand heeft niet-samengevoegde wijzigingen. %1 Backup database located at %2 %1 -Back-up databestand op %2 +reservekopie van databestand in %2 Key not transformed. This is a bug, please report it to the developers. - Sleutel is niet getransformeerd. Dit is een fout, rapporteer deze alsjeblieft aan de ontwikkelaars! + De sleutel is niet omgezet. Dit is een fout. Rapporteer dit alsjeblieft aan de ontwikkelaars! Recycle Bin Prullenbak + + Database file read error. + Fout bij het lezen van de database. + + + No file path was provided. + Er is geen bestandspad opgegeven. + DatabaseOpenDialog Unlock Database - KeePassXC - Database ontgrendelen - KeePassXC + KeePassXC - Database ontgrendelen @@ -1416,45 +1546,15 @@ Back-up databestand op %2 Enter Password: - Geef wachtwoord: + Voer het wachtwoord in: Password field - Wachtwoord invulveld - - - Enter Additional Credentials (if any): - Voer eventuele aanvullende inloggegevens in: - - - Key File: - Sleutelbestand: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Naast een wachtwoord kan je een geheim bestand gebruiken om de beveiliging van je database te verbeteren. Dit bestand kan worden gegenereerd in de beveiligingsinstellingen van je database.</p><p>Dit is <strong>niet</strong> jouw *.kdbx database-bestand!<br>Laat dit veld leeg als je geen sleutelbestand gebruikt.</p><p>Klik hier voor meer informatie...</p> - - - Key file help - Sleutelbestandhulp + Wachtwoordveld Hardware key slot selection - Hardwaresleutel positie selectie - - - Hardware Key: - Hardwaresleutel: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Je kunt een hardwarebeveiligingssleutel gebruiken, zoals een <strong>YubiKey</strong> of <strong>OnlyKey</strong> met posities (slots) geconfigureerd voor HMAC-SHA1.</p> -<p>Klik voor meer informatie...</p> - - - Hardware key help - Hardwaresleutelhulp + Hardwaresleutel-positieselectie Key file to unlock the database @@ -1462,20 +1562,12 @@ Back-up databestand op %2 Browse for key file - Blader naar sleutelbestand + Kies een sleutelbestand Browse… Bladeren… - - Refresh hardware tokens - Hardwaretoken verversen - - - Refresh - Vernieuwen - Unlock Database Database ontgrendelen @@ -1490,7 +1582,7 @@ Back-up databestand op %2 Please present or touch your YubiKey to continue… - Presenteer je YubiKey of druk er op om door te gaan... + Plaats je YubiKey of druk er op om door te gaan… Database Version Mismatch @@ -1504,63 +1596,55 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - De database die je probeert te openen, was waarschijnlijk + De database die je probeert te openen is waarschijnlijk gemaakt door een nieuwere versie van KeePassXC. -Je kunt toch proberen het te openen, maar het kan onvolledig zijn -en het opslaan van eventuele wijzigingen kan gegevensverlies veroorzaken. +Je kunt proberen om de database alsnog te openen, maar deze kan onvolledig zijn +en het opslaan van eventuele aanpassingen kan tot gegevensverlies leiden. -We raden je aan jouw KeePassXC-installatie bij te werken. +We raden je aan om KeePassXC bij te werken. Open database anyway - Open database toch + Database alsnog openen Database unlock canceled. - Database ontgrendelen geannuleerd. + Ontgrendeling van database afgebroken. Unlock failed and no password given - Ontgrendeling mislukt en geen wachtwoord ingevoerd + Ontgrendeling mislukt: geen wachtwoord ingevoerd Unlocking the database failed and you did not enter a password. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Het ontgrendelen van de database is mislukt en je hebt geen wachtwoord ingevoerd. -Wil je het opnieuw proberen met een "leeg" wachtwoord? + Het ontgrendelen van de database is mislukt omdat er geen wachtwoord is ingevoerd. +Wil je het opnieuw proberen met een ‘leeg’ wachtwoord? -Om deze fout te voorkomen ga je naar "Database instellingen.../Beveiliging" en herstel daar het wachtwoord. +Als je deze foutmelding niet meer wilt zien, ga dan naar ‘Databaseinstellingen… → Beveiliging’ en stel het wachtwoord opnieuw in. Retry with empty password - Probeer opnieuw met leeg wachtwoord - - - Failed to authenticate with Windows Hello - Kan niet worden geverifieerd met Windows Hello - - - Failed to authenticate with Touch ID - Kan niet worden geverifieerd met Touch ID + Opnieuw proberen met leeg wachtwoord Failed to open key file: %1 - Kon sleutelbestand niet openen: %1 + Het sleutelbestand kan niet worden geopend: %1 Old key file format - Oud sleutelbestandsformaat + Verouderd sleutelbestandsformaat You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Je gebruikt een oude sleutelbestandsindeling die KeePassXC<br>in de toekomst mogelijk niet meer ondersteunt.<br><br>Overweeg om een nieuw sleutelbestand te genereren bij:<br><strong>Database > Databasebeveiliging > Sleutelbestand wijzigen.</strong><br> + Je maakt gebruik van een verouderde sleutelbestandsindeling die <br>in de toekomst mogelijk niet meer ondersteund wordt.<br><br>Overweeg om een nieuw sleutelbestand te genereren via <br><strong>Database → Databasebeveiliging → Sleutelbestand wijzigen</strong>.<br> Don't show this warning again - Deze waarschuwing niet meer geven + Deze waarschuwing niet meer weergeven All files @@ -1572,29 +1656,75 @@ Om deze fout te voorkomen ga je naar "Database instellingen.../Beveiliging& Select key file - Kies sleutelbestand + Selecteer een sleutelbestand Cannot use database file as key file - Kan database niet als sleutelbestand gebruiken + Kan database niet gebruiken als sleutelbestand - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Je kunt je database niet als sleutelbestand gebruiken. -Als je geen sleutelbestand hebt laat je het veld leeg. + authenticate to access the database + authenticeren om toegang te krijgen tot de database - Detecting hardware keys… - Hardwaresleutels detecteren... + Failed to authenticate with Quick Unlock: %1 + Snel ontgrendelen is mislukt: %1 - No hardware keys detected - Geen hardwaresleutels gedetecteerd + Select Key File: + Selecteer sleutelbestand: - Select hardware key… - Selecteer hardwaresleutel... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Naast een wachtwoord kun je een geheim bestand gebruiken om de beveiliging van je database te verbeteren. Dit bestand kan worden gegenereerd in de beveiligingsinstellingen van jouw database.</p><p>Dit is <strong>niet</strong> jouw *.kdbx-databasebestand!</p> + + + Use hardware key [Serial: %1] + Gebruik hardwaresleutel [Serienummer: %1] + + + Use hardware key + Hardwaresleutel gebruiken + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Jouw databasebestand is GEEN sleutelbestand! +Als je geen sleutelbestand hebt of niet weet wat dat is, hoef je er geen te selecteren. + + + KeePassXC database file selected + KeePassXC-databasebestand geselecteerd + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Het bestand dat je hebt geselecteerd lijkt op een databasebestand. +Een databasebestand is GEEN sleutelbestand! + +Weet je zeker dat je wilt doorgaan met dit bestand? + + + No hardware keys found. + Geen hardwaresleutels gevonden. + + + Refresh Hardware Keys + Hardwaresleutels vernieuwen + + + Click to add a key file. + Klik om een sleutelbestand toe te voegen. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + Ik heb een <a href="#" style="text-decoration: underline">sleutelbestand</a> + + + Hardware keys found, but no slots are configured. + Hardwaresleutels gevonden, echter zonder posities geconfigureerd. @@ -1606,10 +1736,6 @@ Als je geen sleutelbestand hebt laat je het veld leeg. DatabaseSettingsDialog - - Advanced Settings - Geavanceerde instellingen - General Algemeen @@ -1620,7 +1746,7 @@ Als je geen sleutelbestand hebt laat je het veld leeg. Database Credentials - Databasegegevens + Database inloggegevens Encryption Settings @@ -1634,32 +1760,40 @@ Als je geen sleutelbestand hebt laat je het veld leeg. Maintenance Onderhoud + + KeeShare + KeeShare + + + Secret Service Integration + Integratie met Secret Service + + + Remote Sync + Synchronisatie op afstand + + + Database Settings: %1 + Database-instellingen: %1 + DatabaseSettingsWidgetBrowser KeePassXC-Browser settings - KeePassXC-Browser instellingen - - - Convert KeePassHTTP data - KeePassHTTP-gegevens converteren - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Converteer verouderde KeePassHTTP-attributen naar KeePassXC-Browser-compatibele aangepaste gegevens - - - Refresh database root group ID - Database-rootgroep-ID vernieuwen + KeePassXC-Browser-instellingen Disconnect all browsers - Verbreek de verbinding met alle browsers + Alle browsers loskoppelen Forget all site-specific settings on entries - Vergeet alle site-specifieke instellingen bij items + Alle website-specifieke instellingen van items vergeten + + + Refresh database root group ID + Database-hoofdgroep-id vernieuwen Stored keys @@ -1684,8 +1818,8 @@ Als je geen sleutelbestand hebt laat je het veld leeg. Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Wil je de geselecteerde sleutel echt verwijderen? -Hierdoor werkt de verbinding met de browserextensie mogelijk niet meer. + Wil je de geselecteerde sleutel verwijderen? +Dit kan de verbinding met de browserplug-in belemmeren. Key @@ -1701,85 +1835,80 @@ Hierdoor werkt de verbinding met de browserextensie mogelijk niet meer. Enable Browser Integration to access these settings. - Activeer browserintegratie om deze instellingen te kunnen wijzigen. + Schakel browserintegratie in om deze instellingen te kunnen wijzigen. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - Wil je echt de verbinding met alle browsers verbreken? -Hierdoor werkt de verbinding met de browserextensie mogelijk niet meer. - - - KeePassXC: No keys found - KeePassXC: Geen sleutels gevonden + Wil je alle browsers loskoppelen? +Dit kan de verbinding met de browserplug-in belemmeren. No shared encryption keys found in KeePassXC settings. - Geen gedeelde coderingssleutels gevonden in KeePassXC instellingen. - - - KeePassXC: Removed keys from database - KeePassXC: Sleutels uit database verwijderd + Er zijn geen gedeelde beveiligingssleutels aangetroffen in de KeePassXC-instellingen. Successfully removed %n encryption key(s) from KeePassXC settings. - %n coderingssleutel uit KeePassXC instellingen verwijderd.Er zijn %n coderingssleutel(s) uit KeePassXC-instellingen verwijderd. + Er is %n beveiligingssleutel verwijderd uit de KeePassXC-instellingen.Er zijn %n beveiligingssleutels verwijderd uit de KeePassXC-instellingen. Do you really want forget all site-specific settings on every entry? Permissions to access entries will be revoked. - Wil je echt alle site-specifieke instellingen bij items vergeten? Machtigingen voor toegang zullen worden ingetrokken. + Wil je alle website-specifieke instellingen van alle items vergeten? +Hierdoor worden alle toegangsrechten ingetrokken. Removing stored permissions… - Opgeslagen machtigingen verwijderen… + Verwijderen van opgeslagen toegangsrechten… Abort Afbreken - - KeePassXC: Removed permissions - KeePassXC: machtigingen verwijderd - Successfully removed permissions from %n entry(s). - Machtigingen zijn verwijderd uit %n item(s).Machtigingen zijn verwijderd uit %n item(s). - - - KeePassXC: No entry with permissions found! - KeePassXC: Geen item met machtigingen gevonden! + Er zijn toegangsrechten verwijderd uit %n item.Er zijn toegangsrechten verwijderd uit %n items. The active database does not contain an entry with permissions. - De actieve database bevat geen items met machtigingen. - - - Move KeePassHTTP attributes to custom data - KeePassHTTP-kenmerken naar aangepaste gegevens verplaasen - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Wil je echt alle instellingen voor de oudere browserintegratie veranderen naar de nieuwste standaard? -Dit is nodig om compatibiliteit met de browserextensie te behouden. + De actieve database bevat geen items met toegangsrechten. Refresh database ID - Database-ID vernieuwen + Database-id vernieuwen Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Wilt je echt de database-ID vernieuwen? + Wil je de database-id vernieuwen? Dit is alleen nodig als je database een kopie is van een andere en de browserextensie geen verbinding kan maken. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Converteer verouderde KeePassHTTP-kenmerken naar KeePassXC-Browser-compatibele gegevens + + + No keys found + Geen sleutels gevonden + + + Removed keys from database + Sleutels uit database verwijderd + + + Removed permissions + Toestemmingen verwijderd + + + No entry with permissions found! + Geen item met toestemmingen gevonden! + DatabaseSettingsWidgetDatabaseKey Add additional protection… - Aanvullende beveiliging toevoegen... + Aanvullende bescherming toevoegen… No password set @@ -1789,9 +1918,9 @@ Dit is alleen nodig als je database een kopie is van een andere en de browserext 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? - WAARSCHUWING! Je hebt geen wachtwoord ingesteld. Een database gebruiken zonder wachtwoord wordt sterk afgeraden! + WAARSCHUWING! Je hebt geen wachtwoord ingesteld. Het gebruik van een database zonder wachtwoord wordt sterk afgeraden! -Weet je zeker dat je door wilt gaan zonder een wachtwoord? +Weet je zeker dat je wilt doorgaan zonder wachtwoord? Continue without password @@ -1799,11 +1928,11 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? No encryption key added - Geen coderingssleutel toegevoegd + Geen beveiligingssleutel toegevoegd You must add at least one encryption key to secure your database! - Je moet minstens één coderingssleutel aan je database toevoegen om deze te beveiligen! + Je moet ten minste één beveiligingssleutel aan de database toevoegen om deze te beveiligen! Unknown error @@ -1811,7 +1940,19 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? Failed to change database credentials - Veranderen van databasereferenties is mislukt + Kan de database-inloggegevens niet wijzigen + + + Weak password + Zwak wachtwoord + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Dit is een zwak wachtwoord! Voor een betere bescherming van jouw geheimen moet je een sterker wachtwoord kiezen. + + + The provided password does not meet the minimum quality requirement. + Het opgegeven wachtwoord voldoet niet aan de minimale kwaliteitseisen. @@ -1820,29 +1961,21 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? Decryption Time: Decoderingstijd: - - Change existing decryption time - Huidige decoderingstijd wijzigen - - - Change - Wijzigen - Decryption time in seconds Decoderingstijd in seconden Higher values offer more protection, but opening the database will take longer. - Hogere waarden bieden meer bescherming, maar laten het openen van de database langer duren. + Hogere waarden bieden meer bescherming, maar zorgen voor een langere wachttijd bij het openen. Database format: - Database-indeling: + Databaseindeling: Database format - Database-indeling + Databaseindeling Format cannot be changed: Your database uses KDBX 4 features @@ -1850,7 +1983,7 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? Unless you need to open your database with other programs, always use the latest format. - Tenzij je de database met andere programma's wil openen, gebruik je altijd de nieuwste indeling. + Gebruik altijd de nieuwste indeling, tenzij je de database met andere programma's moet openen. Encryption Algorithm: @@ -1862,15 +1995,15 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? AES: 256 Bit (default) - AES: 256 bit (standaard) + AES: 256-bit (standaard) Twofish: 256 Bit - Twofish: 256 bit + Twofish: 256-bit Key Derivation Function: - Sleutel-afleidingsfunctie: + Sleutelafleidingsfunctie: Key derivation function @@ -1878,11 +2011,11 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? Transform rounds: - Transformatie-iteraties: + Aantal iteraties: Transform rounds - Transformatierondes + Aantal iteraties Memory Usage: @@ -1908,27 +2041,22 @@ Weet je zeker dat je door wilt gaan zonder een wachtwoord? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - ongewijzigd - Number of rounds too high Key transformation rounds - Aantal iteraties te hoog + Het aantal iteraties is te hoog You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - Je gebruikt een zeer groot aantal sleuteltransformatie-iteraties met Argon2. + Je maakt gebruik van een zeer hoog aantal sleuteltransformaties met Argon2. Als je dit aantal aanhoudt, kan het uren, dagen of zelfs langer duren om de database te openen! Understood, keep number - Begrepen, aantal aanhouden + Begrepen - aantal aanhouden Cancel @@ -1937,15 +2065,15 @@ Als je dit aantal aanhoudt, kan het uren, dagen of zelfs langer duren om de data Number of rounds too low Key transformation rounds - Aantal iteraties te laag + Het aantal iteraties is te laag You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - Je gebruikt een zeer laag aantal sleuteltransformatie-iteraties met AES-KDF. + Je maakt gebruik van een zeer laag aantal sleuteltransformaties met AES-KDF. -Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute kracht! +Als je dit aantal aanhoudt, dan is de database niet bestand tegen langdurige brute krachtaanvallen! KDF unchanged @@ -1953,7 +2081,7 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute Failed to transform key with new KDF parameters; KDF unchanged. - Het transformeren van de sleutel met de nieuwe KDF-parameters is mislukt; KDF is ongewijzigd. + Het transformeren van de sleutel met de nieuwe KDF-opties is mislukt. De KDF is ongewijzigd. MiB @@ -1963,22 +2091,34 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute thread(s) Threads for parallel execution (KDF settings) - thread(s)thread(s) + procesprocessen + + + Encryption Settings: + Versleutelingsinstellingen: + + + Basic + Standaard + + + Advanced + Geavanceerd DatabaseSettingsWidgetFdoSecrets Exposed Entries - Beschikbare items + Blootgestelde items Don't expose this database - Deze database niet blootstellen + Database niet blootstellen Expose entries under this group: - Items onder deze groep blootstellen: + Items uit deze groep blootstellen: Enable Secret Service to access these settings. @@ -1989,23 +2129,23 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute DatabaseSettingsWidgetGeneral Database Metadata - Database meta-gegevens + Database-metagegevens Database name: - Naam van de database: + Databasenaam: Database name field - Databasenaamveld + Database-naamveld Database description: - Beschrijving van de database: + Databasebeschrijving: Database description field - Databaseomschrijvingveld + Database-beschrijvingveld Default username: @@ -2013,7 +2153,7 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute Default username field - Standaardgebruikersnaamveld + Standaard gebruikersnaamveld History Settings @@ -2023,17 +2163,9 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute Maximum number of history items per entry Maximum aantal vorige versies per item - - Max. history items: - Max. geschiedenisitems: - Maximum size of history per entry - Maximale grootte van vorige versies per item - - - Max. history size: - Max. geschiedenisgrootte: + Maximale omvang van vorige versies per item MiB @@ -2053,18 +2185,122 @@ Als je dit aantal aanhoudt is je database niet bestand tegen aanvallen met brute Delete Recycle Bin - Verwijder prullenbak + Prullenbak verwijderen Do you want to delete the current recycle bin and all its contents? This action is not reversible. - Wil je de huidige prullenbak en al zijn inhoud verwijderen? -Deze actie is onomkeerbaar. + Weet je zeker dat je de huidige prullenbak, incl. inhoud wilt verwijderen? +Deze actie kan niet ongedaan worden gemaakt. (old) (oud) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Bij het opslaan van deze instelling of het +bewerken van een item zal dit ten koste gaan +van de oudste elementen in de geschiedenis, +waarmee het gespecificeerde maximum aantal +elementen in de geschiedenis bewaard blijft. + + + Limit the amount of history items per entry to: + Aantal geschiedenisitems per item beperken tot: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Bij het opslaan van deze instelling of het +bewerken van een item zal dit ten koste gaan +van de oudste elementen in de geschiedenis, +waarmee de resterende geschiedenis +maximaal de gespecificeerde hoeveelheid bedraagt. + + + Limit the total size of history items per entry to: + Totale grootte van geschiedenisitems per item beperken tot: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Verplaats items naar een prullenbakgroep +in plaats van ze uit de database te verwijderen. +Items die uit de prullenbak worden gewist, +worden uit de database verwijderd. + + + Autosave delay since last change + Vertraging bij automatisch opslaan sinds laatste wijziging + + + Autosave delay + Vertraging bij automatisch opslaan + + + Autosave delay since last change in minutes + Vertraging bij automatisch opslaan sinds laatste wijziging (in minuten) + + + min + min. + + + Autosave delay since last change checkbox + Vertraging bij automatisch opslaan sinds laatste wijziging (selectievakje) + + + Public Database Metadata + Openbare database-metagegevens + + + Warning: the following settings are not encrypted. + Let op: de volgende instellingen zijn niet versleuteld. + + + Display name: + Weergavenaam: + + + Publically visible display name used on the unlock dialog + Openbaar zichtbare weergavenaam gebruikt in het dialoogvenster Ontgrendelen + + + Database public display name + Openbaar zichtbare databasenaam + + + Display color: + Weergavekleur: + + + Publically visible color used on the unlock dialog + Openbaar zichtbare kleur gebruikt in het dialoogvenster Ontgrendelen + + + Database public display color chooser + Openbaar zichtbare databasekleur kiezen + + + Clear + Wissen + + + Display icon: + Weergavepictogram: + + + Select Database Icon + Databasepictogram kiezen + DatabaseSettingsWidgetKeeShare @@ -2086,7 +2322,7 @@ Deze actie is onomkeerbaar. Last Signer - Laatste Ondertekenaar + Laatste ondertekenaar Certificates @@ -2106,15 +2342,15 @@ Deze actie is onomkeerbaar. Delete selected icon(s) - Geselecteerde pictogram(en) verwijderen + Geselecteerde pictogram(men) verwijderen Delete all custom icons not in use by any entry or group - Alle aangepaste pictogrammen verwijderen die niet door een vermelding of groep worden gebruikt + Alle ongebruikte aangepaste pictogrammen verwijderen Purge unused icons - Ongebruikte pictogrammen opschonen + Ongebruikte pictogrammen verwijderen Confirm Deletion @@ -2122,34 +2358,34 @@ Deze actie is onomkeerbaar. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - Tenminste één van de geselecteerde pictogrammen wordt momenteel gebruikt door tenminste één item of groep. De pictogrammen van alle betrokken vermeldingen en groepen worden vervangen door het standaardpictogram. Weet je zeker dat je pictogrammen wilt verwijderen die momenteel in gebruik zijn? + Ten minste één van de geselecteerde pictogrammen wordt momenteel gebruikt door een item of groep. De pictogrammen van alle betrokken items en groepen worden vervangen door het standaardpictogram. Weet je zeker dat je de in gebruik zijnde pictogrammen wilt verwijderen? Custom Icons Are In Use - Aangepaste pictogrammen zijn in gebruik + Aangepaste pictogrammen in gebruik All custom icons are in use by at least one entry or group. - Alle aangepaste pictogrammen worden gebruikt door tenminste één item of groep. + Alle aangepaste pictogrammen zijn in gebruik door ten minste één item of groep. Purged Unused Icons - Ongebruikte pictogrammen gewist + Ongebruikte pictogrammen zijn verwijderd Purged %n icon(s) from the database. - Wist %n-pictogram(en) uit de database.%n Pictogram(en) uit de database gewist. + %n pictogram uit de database verwijderd.%n pictogrammen uit de database verwijderd. DatabaseSettingsWidgetMetaDataSimple Database Name: - Database naam: + Databasenaam: Database name field - Databasenaamveld + Database-naamveld Description: @@ -2157,14 +2393,149 @@ Deze actie is onomkeerbaar. Database description field - Databaseomschrijvingveld + Database-omschrijvingveld + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Synchronisatieopdrachten + + + Remove + Verwijderen + + + Command Settings + Opdrachtinstellingen + + + Name + Naam + + + Save + Opslaan + + + Download + Downloaden + + + Command: + Opdracht: + + + Download command field + Download-opdrachtveld + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + bv.: "sftp user@hostname" of "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Invoer: + + + Download input field + Download-invoerveld + + + Upload + Uploaden + + + Upload command field + Upload-opdrachtveld + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + bv.: "sftp user@hostname" of "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Upload-invoerveld + + + Name cannot be empty. + Naam kan niet leeg zijn. + + + Test + Testen + + + Download command cannot be empty. + Downloadopdracht kan niet leeg zijn. + + + Download failed with error: %1 + Download is mislukt met fout: %1 + + + Download finished, but file %1 could not be found. + Download is klaar, maar bestand %1 is niet gevonden. + + + Download successful. + Download succesvol. + + + Save Remote Settings + Externe instellingen opslaan + + + You have unsaved changes. Do you want to save them? + Er zijn niet-opgeslagen wijzigingen. Wil je deze opslaan? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + bijv.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} wordt gebruikt als tijdelijke aanduiding om de database op een tijdelijke locatie op te slaan +De opdracht moet worden afgesloten. In het geval van `sftp` moet de laatste opdracht `exit` worden verzonden + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + bijv.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} wordt gebruikt als tijdelijke aanduiding om de database op een tijdelijke locatie op te slaan +De opdracht moet worden afgesloten. In het geval van `sftp` moet de laatste opdracht `exit` worden verzonden + + + + Timeout: + Time-out: + + + seconds + seconden DatabaseTabWidget Database creation error - Fout bij het aanmaken van de database: + Fout bij het aanmaken van de database The created database has no key or KDF, refusing to save it. @@ -2186,88 +2557,80 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. Failed to open %1. It either does not exist or is not accessible. - Kon %1 niet openen. Het bestaat niet of is niet toegankelijk. + %1 is niet geopend. De database bestaat niet of is ontoegankelijk. CSV file - CSV-bestand - - - Select CSV file - Selecteer CSV-bestand + Csv-bestand Merge database Database samenvoegen - - KeePass 1 database - KeePass 1-database - - - Open KeePass 1 database - KeePass 1-database openen - - - Open OPVault - OPVault openen - Export database to CSV file - Database exporteren naar CSV-bestand + Database exporteren naar csv-bestand Writing the CSV file failed. - Schrijven van het CSV-bestand mislukt. + Het csv-bestand is niet weggeschreven. Writing the HTML file failed. - Schrijven van het HTML-bestand is mislukt. + Het html-bestand is niet weggeschreven. + + + Export database to XML file + Database exporteren naar XML-bestand + + + XML file + XML-bestand + + + Writing the XML file failed + Het XML-bestand is niet weggeschreven. Export Confirmation - Exporteerbevestiging + Exporteren bevestigen You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Je gaat je database naar een niet-versleuteld bestand exporteren. Dit maakt je wachtwoorden en gevoelige informatie kwetsbaar! Weet je zeker dat je door wil gaan? - - - New Database - Nieuwe database - - - %1 [New Database] - Database tab name modifier - %1 [nieuwe database] + Je staat op het punt om de database naar een onbeveiligd bestand te exporteren. Hierdoor worden de wachtwoorden en gevoelige informatie kwetsbaar! Weet je zeker dat je door wilt gaan? %1 [Locked] Database tab name modifier %1 [vergrendeld] + + %1 [Temporary] + Database tab name modifier + %1 [Tijdelijk] + DatabaseWidget - Database Tags - Database-labels + Searches and Tags + Zoekopdrachten en labels Searching… - Bezig met zoeken… + Zoeken… Shared group… - Gedeelde groep... + Gedeelde groep… Confirm Auto-Type - Auto-type bevestigen + Automatisch invullen bevestigen Perform Auto-Type into the previously active window? - Auto-type uitvoeren in het venster dat zojuist actief was? + Automatisch invullen uitvoeren in het vorige actieve venster? Execute command? @@ -2275,11 +2638,11 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. Do you really want to execute the following command?<br><br>%1<br> - Weet je zeker dat je de volgende opdracht wil uitvoeren? <br><br>%1<br> + Wil je de volgende opdracht uitvoeren? <br><br>%1<br> Remember my choice - Mijn keuze onthouden + Keuze onthouden Delete group @@ -2287,20 +2650,24 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. Do you really want to delete the group "%1" for good? - Weet je zeker dat je de groep "%1" wil verwijderen? + Wil je de groep ‘%1’ voorgoed verwijderen? Move group to recycle bin? - Groep naar prullenbak verplaatsen? + Groep naar de prullenbak verplaatsen? Do you really want to move the group "%1" to the recycle bin? - Weet je zeker dat je de groep '%1' naar de prullenbak wilt verplaatsen? + Wil je ‘%1’ naar de prullenbak verplaatsen? Expired entries Verlopen items + + Entries expiring within %1 day(s) + Items die binnen %1 dag verlopenItems die binnen %1 dagen verlopen + No current database. Geen actuele database. @@ -2315,7 +2682,7 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. Database was not modified by merge operation. - Database werd niet gewijzigd door het samenvoegen. + De database is niet aangepast door het samenvoegen. Search Results (%1) @@ -2323,7 +2690,19 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. No Results - Geen resultaten + Er zijn geen zoekresultaten + + + Save + Opslaan + + + Enter a unique name or overwrite an existing search from the list: + Voer een unieke naam in of overschrijf een bestaande zoekopdracht op de lijst: + + + Save Search + Zoekopdracht opslaan Lock Database? @@ -2336,13 +2715,13 @@ Dit is zeker een fout, rapporteer dit aan de ontwikkelaars. "%1" was modified. Save changes? - "%1" is aangepast. + ‘%1’ is gewijzigd. Wijzigingen opslaan? Database was modified. Save changes? - Database is gewijzigd. + De database is gewijzigd. Wijzigingen opslaan? @@ -2353,26 +2732,6 @@ Wijzigingen opslaan? File has changed Bestand is gewijzigd - - The database file has changed. Do you want to load the changes? - Het database-bestand is gewijzigd. Wil je de aanpassingen inlezen? - - - Merge Request - Samenvoegingsverzoek - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Het databasebestand is veranderd en er zijn niet-opgeslagen wijzigingen. -Wil je de wijzigingen samenvoegen? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Kan het nieuwe databasebestand niet openen tijdens het automatisch opnieuw laden. -Fout: %1 - Disable safe saves? Veilig opslaan uitschakelen? @@ -2380,12 +2739,12 @@ Fout: %1 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 heeft de database meerdere keren niet kunnen opslaan. Dit wordt waarschijnlijk veroorzaakt doordat een synchronisatie-dienst het bestand vergrendeld houdt. + KeePassXC heeft de database meerdere keren niet kunnen opslaan. Dit wordt waarschijnlijk veroorzaakt doordat een synchronisatiedienst het bestand vergrendeld houdt. Veilig opslaan uitschakelen en opnieuw proberen? Writing the database failed: %1 - Het schrijven van de database is mislukt: %1 + De database is niet weggeschreven: %1 Passwords @@ -2401,7 +2760,7 @@ Veilig opslaan uitschakelen en opnieuw proberen? Save database backup - Database-backup opslaan + Reservekopie van database opslaan Empty recycle bin? @@ -2409,15 +2768,100 @@ Veilig opslaan uitschakelen en opnieuw proberen? Are you sure you want to permanently delete everything from your recycle bin? - Weet je zeker dat je alles definitief uit de prullenbak wil verwijderen? + Weet je zeker dat je alles definitief uit de prullenbak wilt verwijderen? Could not find database file: %1 - Databasebestand is niet aangetroffen: %1 + Het databasebestand is niet aangetroffen: %1 - - Entries expiring within %1 day(s) - Items die binnen %1 dag aflopenItems die binnen %1 dag(en) aflopen + + New Database + Nieuwe database + + + %1 [New Database] + Database tab name modifier + %1 [nieuwe database] + + + Remote Sync did not contain any download or upload commands. + Synchronisatie op afstand bevatte geen download- of uploadopdrachten. + + + Remote sync '%1' completed successfully! + Synchronisatie op afstand '%1' met succes voltooid! + + + Remote sync '%1' failed: %2 + Synchronisatie op afstand '%1' mislukt: %2 + + + Error while saving database %1: %2 + Fout bij het opslaan van database %1: %2 + + + Downloading... + Downloaden… + + + Uploading... + Uploaden… + + + Syncing... + Synchroniseren… + + + Remove passkey from entry + Passkey van item verwijderen + + + Do you want to remove the passkey from this entry? + Wil je de passkey van dit item verwijderen? + + + The database file "%1" was modified externally + Het databasebestand "%1" is extern gewijzigd + + + Do you want to load the changes? + Wil je de wijzigingen laden? + + + Reload database + Database opnieuw laden + + + Reloading database… + Database opnieuw laden… + + + Reload canceled + Opnieuw laden geannuleerd + + + Reload successful + Met succes opnieuw geladen + + + Reload pending user action… + Opnieuw laden wacht op actie van gebruiker… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Het databasebestand "%1" is extern gewijzigd.<br>Hoe wil je verder gaan?<br><br>Alle verschillen samenvoegen<br>De wijzigingen op de schijf negeren tot opslaan<br>Niet-opgeslagen wijzigingen negeren + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Het databasebestand "%1" is extern gewijzigd.<br>Hoe wil je verder gaan?<br><br>Alle wijzigingen samenvoegen en opslaan<br>De wijzigingen op de schijf overschrijven<br>Niet-opgeslagen wijzigingen negeren + + + Database file overwritten. + Databasebestand overschreven. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Databasebestand op schijf kan niet worden ontgrendeld met de huidige inloggegevens.<br>Voer nieuwe inloggegevens en/of een hardwaresleutel in om door te gaan. @@ -2436,7 +2880,7 @@ Veilig opslaan uitschakelen en opnieuw proberen? Auto-Type - Auto-type + Automatisch invullen Browser Integration @@ -2452,7 +2896,7 @@ Veilig opslaan uitschakelen en opnieuw proberen? Are you sure you want to remove this URL? - Weet je zeker dat je dit URL wil verwijderen? + Weet je zeker dat je deze URL wil verwijderen? Properties @@ -2470,17 +2914,13 @@ Veilig opslaan uitschakelen en opnieuw proberen? n/a n.v.t. - - (encrypted) - (versleuteld) - Select private key - Kies persoonlijke sleutel + Selecteer een persoonlijke sleutel Entry history - Item geschiedenis + Geschiedenis van het item Add entry @@ -2492,27 +2932,27 @@ Veilig opslaan uitschakelen en opnieuw proberen? Some Browser Integration settings are overridden by group settings. - Sommige instellingen voor browserintegratie worden overschreven door groepsinstellingen. + Sommige instellingen omtrent de browserintegratie worden genegeerd door groepsinstellingen. Invalid Entry - Ongeldige invoer + Ongeldig item An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - Een externe samenvoegbewerking heeft dit item ongeldig gemaakt. -Helaas zijn alle aangebrachte wijzigingen verloren gegaan. + Door een externe samenvoeging is dit item beschadigd. +Helaas zijn alle aangebrachte wijzigingen hierdoor verloren gegaan. Auto-Type Validation Error - Validatiefout bij Auto-type + Validatiefout bij Automatisch invullen An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - Er is een fout opgetreden tijdens het valideren van de aangepaste Auto-type reeks: + Er is een fout opgetreden bij de validatie van de aangepaste invulreeks: %1 Wil je dit corrigeren? @@ -2520,7 +2960,7 @@ Wil je dit corrigeren? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - Er is een fout opgetreden tijdens het valideren van de Auto-type reeks voor %1: + Er is een fout opgetreden bij de validatie van de aangepaste invulreeks ‘%1’: %2 Wil je dit corrigeren? @@ -2534,7 +2974,7 @@ Wil je dit corrigeren? Would you like to save changes to this entry? - Wil je de wijzigingen in dit item opslaan? + Wil je de wijzigingen aan dit item opslaan? New attribute @@ -2546,7 +2986,7 @@ Wil je dit corrigeren? Are you sure you want to remove this attribute? - Weet je zeker dat je dit kenmerk wil verwijderen? + Weet je zeker dat je dit kenmerk wilt verwijderen? Reveal @@ -2554,12 +2994,16 @@ Wil je dit corrigeren? [PROTECTED] Press Reveal to view or edit - [BESCHERMD] Druk op Onthullen om te bekijken of te bewerken + [BEVEILIGD] Klik op ‘Onthullen’ om te tonen of bewerken Hide Verbergen + + %n hour(s) + %n uur%n uren + %n week(s) %n week%n weken @@ -2572,9 +3016,9 @@ Wil je dit corrigeren? %n year(s) %n jaar%n jaren - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Kan SSH-sleutel niet decoderen, zorg ervoor dat het wachtwoord correct is. @@ -2593,7 +3037,7 @@ Wil je dit corrigeren? Add a new attribute - Een nieuw kenmerk toevoegen + Nieuw kenmerk toevoegen Add @@ -2601,7 +3045,7 @@ Wil je dit corrigeren? Remove selected attribute - Gekozen kenmerk verwijderen + Geselecteerd kenmerk verwijderen Remove @@ -2617,15 +3061,15 @@ Wil je dit corrigeren? Toggle attribute protection - Kenmerkbescherming aan/uit + Kenmerkbescherming wisselen Protect - Beveiligen + Beschermen Show a protected attribute - Een beschermd kenmerk weergeven + Beschermd kenmerk weergeven Reveal @@ -2637,7 +3081,7 @@ Wil je dit corrigeren? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - Als deze optie is ingeschakeld, wordt de vermelding niet weergegeven in rapporten zoals Health Check en HIBP, zelfs niet als deze niet voldoet aan de kwaliteitseisen. + Indien aangevinkt, wordt de vermelding niet weergegeven in rapporten zoals Health Check en HIBP, zelfs als deze niet voldoet aan de kwaliteitseisen. Exclude from database reports @@ -2649,7 +3093,7 @@ Wil je dit corrigeren? Foreground color selection - Voorgrondkleurselectie + Selectie voorgrondkleur Background Color: @@ -2657,119 +3101,103 @@ Wil je dit corrigeren? Background color selection - Achtergrondkleurselectie + Selectie achtergrondkleur EditEntryWidgetAutoType Enable Auto-Type for this entry - Auto-type inschakelen voor dit item + Automatisch invullen inschakelen voor dit item Inherit default Auto-Type sequence from the group - Standaard auto-typevolgorde van de groep overnemen + Standaard invulreeks van de groep overnemen Use custom Auto-Type sequence: - Gebruik aangepaste Auto-typevolgorde: + Aangepaste invulreeks gebruiken: Custom Auto-Type sequence - Aangepaste Auto-type tekenreeks + Aangepaste invulreeks Open Auto-Type help webpage - Open Auto-type help-webpagina + Hulppagina over automatisch invullen openen Window Associations - Scherm-koppelingen + Venstertoewijzingen Existing window associations - Bestaande venster koppelingen + Bestaande venstertoewijzingen Add new window association - Voeg venster koppeling toe - - - Remove selected window association - Verwijder scherm koppeling - - - Window title: - Vensternaam: - - - You can use an asterisk (*) to match everything - Je kunt een ster (*) gebruiken om alles te vinden - - - Set the window association title - Stel de venster koppeling titel in - - - You can use an asterisk to match everything - Je kunt een sterretje gebruiken om alles te vinden - - - Use a specific sequence for this association: - Gebruik een specifieke tekenreeks voor deze associatie. - - - Custom Auto-Type sequence for this window - Aangepaste Auto-type tekenreeks voor dit venster + Venstertoewijzing toevoegen + Add item + + + Remove selected window association + Venstertoewijzing verwijderen + - Remove item - + + Window title: + Venstertitel: + + + You can use an asterisk (*) to match everything + Gebruik een asterisk (*) om alles overeen te laten komen + + + Set the window association title + Titel venstertoewijzing instellen + + + You can use an asterisk to match everything + Gebruik een asterisk (*) om alles overeen te laten komen + + + Use a specific sequence for this association: + Specifieke tekenreeks gebruiken bij deze toewijzing: + + + Custom Auto-Type sequence for this window + Aangepaste invulreeks voor dit venster + EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Deze instellingen beïnvloeden het gedrag van de browserextensie voor dit item. - General Algemeen Hide this entry from the browser extension - Verberg dit item in de browserextensie + Dit item verbergen in browserextensie Skip Auto-Submit for this entry Automatisch indienen uitschakelen voor dit item - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Stuur deze instelling alleen naar de browser voor HTTP Auth-dialogen. Indien ingeschakeld, tonen normale aanmeldingsformulieren dit item niet voor selectie. - Use this entry only with HTTP Basic Auth - Gebruik dit item alleen met HTTP Basic Auth - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Stuur deze instelling niet naar de browser voor HTTP Auth-dialoogvensters. Indien ingeschakeld, zullen HTTP-authenticatiedialogen dit item niet tonen voor selectie. + Item alleen gebruiken met HTTP Basic Auth Do not use this entry with HTTP Basic Auth - Gebruik dit item niet met HTTP Basic Auth - - - Additional URL's - Aanvullende URLs + Item niet gebruiken met HTTP Basic Auth Add @@ -2783,24 +3211,40 @@ Wil je dit corrigeren? Edit Bewerken + + These settings affect the entry's behaviour with the browser extension. + Deze instellingen beïnvloeden het gedrag van de invoer met de browserextensie. + + + Additional URLs + Aanvullende URL's + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Stuur deze instelling alleen naar de browser voor HTTP Auth-dialoogvensters. Indien ingeschakeld, zullen normale aanmeldingsformulieren dit item niet als keuze tonen. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Stuur deze instelling niet naar de browser voor HTTP Auth-dialoogvensters. Indien ingeschakeld, zullen HTTP Auth-dialoogvensters dit item niet als keuze tonen. + EditEntryWidgetHistory Entry history selection - Item geschiedenis selectie + Selectie van itemgeschiedenis Show entry at selected history state - Toon het item zoals in geselecteerde vorige versie + Item tonen in geselecteerde geschiedenisstatus Show - Tonen + Weergeven Restore entry to selected history state - Herstel het item naar de geselecteerde vorige versie + Item herstellen in geselecteerde geschiedenisstatus Restore @@ -2808,7 +3252,7 @@ Wil je dit corrigeren? Delete selected history state - Verwijder geselecteerde vorige versie + Geselecteerde geschiedenisstatus verwijderen Delete @@ -2816,7 +3260,7 @@ Wil je dit corrigeren? Delete all history - Verwijder alle vorige versies + Alle vorige versies verwijderen Delete all @@ -2827,92 +3271,88 @@ Wil je dit corrigeren? EditEntryWidgetMain Edit Entry - Invoer bewerken + Item bewerken Notes field - Notities veld - - - Toggle the checkbox to reveal the notes section. - Inschakelen om de notities weer te geven. + Notitieveld Username field - Gebruikersnaam veld - - - Toggle notes visible - Laat notities wel/niet zien. - - - Notes: - Opmerkingen: + Gebruikersnaamveld Expiration field - Vervaldatum veld + Verloopveld Expiration Presets - Vervaldatum voorinstellingen + Verloop-voorinstellingen Expiration presets - Vervaldatum voorinstellingen + Verloop-voorinstellingen Presets - Voorkeuze - - - Password: - Wachtwoord: - - - URL: - URL: + Voorinstellingen Url field - URL veld + URL-veld Download favicon for URL Favicon downloaden voor URL - - Title: - Naam: - Title field - Titel veld - - - Username: - Gebruikersnaam: + Titelveld Password field - Wachtwoord invulveld + Wachtwoordveld Toggle expiration - Vervaldatum wel/niet tonen - - - Expires: - Verloopt: - - - Tags: - Labels: + Verloopdatum tonen/verbergen Tags list Lijst met labels + + &Username: + Gebr&uikersnaam: + + + &Title: + &Titel: + + + &Password: + &Wachtwoord: + + + UR&L: + UR&L: + + + &Notes: + &Notities: + + + Toggle notes visibility + Notities tonen/verbergen + + + T&ags: + L&abels: + + + &Expires: + V&erloopt op: + EditEntryWidgetSSHAgent @@ -2922,7 +3362,7 @@ Wil je dit corrigeren? Remove key from agent when database is closed/locked - Sleutel bij agent wegnemen als de database wordt gesloten/vergrendeld + Sleutel van agent verwijderen als de database wordt gesloten of vergrendeld Comment @@ -2930,7 +3370,7 @@ Wil je dit corrigeren? Add key to agent when database is opened/unlocked - Sleutel aan agent toevoegen wanneer de database wordt geopend/ontgrendeld + Sleutel aan agent toevoegen als de database wordt geopend of ontgrendeld Decrypt @@ -2942,7 +3382,7 @@ Wil je dit corrigeren? Copy to clipboard - Naar klembord kopiëren + Kopiëren naar klembord Public key @@ -2952,19 +3392,6 @@ Wil je dit corrigeren? Private key Persoonlijke sleutel - - External file - Extern bestand - - - Browser for key file - Blader naar sleutelbestand - - - Browse… - Button for opening file dialog - Bladeren… - Attachment Bijlage @@ -2981,13 +3408,30 @@ Wil je dit corrigeren? Remove from agent Van agent verwijderen + + External file + Extern bestand + + + Browser for key file + Browser voor sleutelbestand + + + Browse… + Button for opening file dialog + Bladeren… + + + Generate + Genereren + Select attachment file - Selecteer bijlage bestand + Selecteer een bijlagebestand Require user confirmation when this key is used - Bevestiging van de gebruiker vragen als deze sleutel wordt gebruikt + Bevestiging vragen bij gebruik van deze sleutel n/a @@ -2995,7 +3439,7 @@ Wil je dit corrigeren? Remove key from agent after - Sleutel bij agent wegnemen na + Sleutel bij agent verwijderen na Remove key from agent after specified seconds @@ -3005,6 +3449,10 @@ Wil je dit corrigeren? seconds seconden + + Clear agent + Agent wissen + EditGroupWidget @@ -3016,10 +3464,6 @@ Wil je dit corrigeren? Icon Pictogram - - Browser Integration - Browserintegratie - Properties Eigenschappen @@ -3034,11 +3478,15 @@ Wil je dit corrigeren? Group has unsaved changes - Groep heeft niet-opgeslagen wijzigingen + De groep bevat niet-opgeslagen wijzigingen + + + Browser Integration + Browserintegratie Enable - Activeren + Inschakelen Disable @@ -3051,56 +3499,68 @@ Wil je dit corrigeren? EditGroupWidgetBrowser - - Edit Group - Groep bewerken - These settings affect to the group's behaviour with the browser extension. Deze instellingen zijn van invloed op het gedrag van de groep met de browserextensie. Hide entries from browser extension: - Verberg vermeldingen van browserextensie: + Items verbergen voor browserextensie: Hide entries from browser extension toggle for this and sub groups - Items van deze browserextensie en subgroepen wel/niet verbergen + Items van deze en onderliggende groepen tonen/verbergen voor browserextensie Skip Auto-Submit for entries: - Automatisch indienen overslaan voor inzendingen: + Automatisch indienen overslaan voor items: Skip Auto-Submit toggle for this and sub groups - Automatisch indienen wel/niet overslaan voor deze groep en subgroepen + Automatisch indienen wel/niet overslaan voor deze en onderliggende groepen Use entries only with HTTP Basic Auth: - Gebruik alleen vermeldingen met HTTP Basic Auth: + Alleen items met HTTP Basic Auth: Only HTTP Auth toggle for this and sub groups - Alleen HTTP Auth aan/uit voor deze en subgroepen + Alleen HTTP Auth aan/uit voor deze en onderliggende groepen Do not use entries with HTTP Basic Auth: - Gebruik deze items niet met HTTP Basic Auth: + Items niet gebruiken met HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups - Gebruik geen HTTP Auth aan/iut voor deze en subgroepen + Geen HTTP Auth gebruiken aan/uit voor deze en onderliggende groepen + + + Omit WWW subdomain from matching: + WWW-subdomein negeren in overeenkomsten: + + + Omit WWW subdomain from matching toggle for this and sub groups + WWW-subdomein negeren in overeenkomsten voor deze en onderliggende groepen + + + Restrict matching to given browser key: + Overeenkomst beperken tot gegeven browsersleutel: + + + Restrict matching to given browser key toggle for this and sub groups + Overeenkomst beperken tot gegeven browsersleutel voor deze en onderliggende groepen EditGroupWidgetKeeShare Sharing mode field - Delen modus veld + Deelmodusveld Password field - Wachtwoord invulveld + Wachtwoordveld Type: @@ -3116,11 +3576,11 @@ Wil je dit corrigeren? Path to share file field - Pad naar te delen bestand veld + Pad van het bestandsdeelveld Browse for share file - Blader naar deelbestand + Bladeren naar deelbestand Browse… @@ -3128,7 +3588,7 @@ Wil je dit corrigeren? Clear fields - Wis velden + Velden wissen Clear @@ -3148,13 +3608,13 @@ Wil je dit corrigeren? Synchronize - Synchroniseer + Synchroniseren Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - Deze KeePassXC-versie biedt geen ondersteuning voor het delen van dit container type. -Ondersteund zijn: %1. + Deze KeePassXC-versie biedt geen ondersteuning voor het delen van dit containertype. +Ondersteunde extensies: %1. %1 is already being exported by this database. @@ -3171,15 +3631,15 @@ Ondersteund zijn: %1. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare is momenteel uitgeschakeld. Je kunt importeren/exporteren inschakelen in de instellingen. + KeeShare is momenteel uitgeschakeld. Je kunt importeren en exporteren inschakelen in de instellingen. Database export is currently disabled by application settings. - Database export is momenteel uitgeschakeld in de programma instellingen. + Het exporteren van de database is momenteel uitgeschakeld in de programma-instellingen. Database import is currently disabled by application settings. - Database import is momenteel uitgeschakeld in de programma instellingen. + Het importeren van de database is momenteel uitgeschakeld in de programma-instellingen. KeeShare container @@ -3187,19 +3647,19 @@ Ondersteund zijn: %1. KeeShare signed container - KeeShare ondertekende container + KeeShare-container (ondertekend) Select import source - Selecteer bron voor import + Selecteer een te importeren bron Select export target - Selecteer doel voor export + Selecteer een exportlocatie Select import/export file - Selecteer import-/exportbestand + Selecteer een im-/exportbestand @@ -3210,27 +3670,27 @@ Ondersteund zijn: %1. Toggle expiration - Vervaldatum wel/niet tonen + Verloopdatum tonen/verbergen Expires: - Verloopt: + Verloopt op Name field - Naam veld + Naamveld Expiration field - Vervaldatum veld + Verloopveld Use default Auto-Type sequence of parent group - Gebruik standaard Auto-type volgorde van bovenliggende groep + Standaard invulreeks van de bovenliggende groep gebruiken Auto-Type: - Auto-type: + Automatisch invullen: Search: @@ -3238,19 +3698,19 @@ Ondersteund zijn: %1. Auto-Type toggle for this and sub groups - Auto-type aan/uit voor deze en onderliggende groepen + Automatisch invullen aan/uit voor deze en onderliggende groepen Notes: - Opmerkingen: + Notities: Default auto-type sequence field - Standaard Auto-type tekenreeks veld + Standaard veld voor automatische invulreeks Notes field - Notities veld + Notitiesveld Name: @@ -3258,7 +3718,7 @@ Ondersteund zijn: %1. Set default Auto-Type sequence - Standaard Auto-type tekenreeks instellen + Standaard invulreeks instellen Search toggle for this and sub groups @@ -3277,11 +3737,11 @@ Ondersteund zijn: %1. Choose icon… - Kies pictogram... + Pictogram kiezen… Set the URL to use to search for a favicon - Stel de URL in om naar een favicon te zoeken + Stel de URL in om te zoeken naar een favicon Favicon URL @@ -3297,11 +3757,11 @@ Ondersteund zijn: %1. Apply selected icon to subgroups and entries - Gebruik het geselecteerde pictogram voor onderliggende groepen en items + Geselecteerd pictogram toepassen bij onderliggende groepen en items Apply icon to… - Pictogram toepassen op... + Pictogram toepassen op… Apply to this group only @@ -3317,15 +3777,11 @@ Ondersteund zijn: %1. Also apply to all children - Ook toepassen op alle onderliggenden + Ook toepassen op alle onderliggende items Unable to fetch favicon. - Kan favicon niet ophalen. - - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Je kunt de DuckDuckGo website pictogram dienst inschakelen onder Extra>Instellingen>Beveiliging + De favicon is niet opgehaald. Existing icon selected. @@ -3341,11 +3797,11 @@ Ondersteund zijn: %1. Select Image(s) - Selecteer afbeelding(en) + Afbeelding(en) selecteren Successfully loaded %1 of %n icon(s) - %1 van %n pictogram(men) geladen%1 van %n pictogram(men) geladen + %1 van %n pictogram geladen%1 van %n pictogrammen geladen No icons were loaded @@ -3353,11 +3809,15 @@ Ondersteund zijn: %1. %n icon(s) already exist in the database - %n pictogram(men) al aanwezig in de database%n pictogram(men) al aanwezig in de database + %n pictogram reeds aanwezig in database%n pictogrammen reeds aanwezig in de database The following icon(s) failed: - De volgende pictogram(men) mislukten:De volgende pictogram(men) mislukten: + Het volgende pictogram is mislukt:De volgende pictogrammen zijn mislukt: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Je kunt de dienst DuckDuckGo websitepictogrammen inschakelen onder Programma-instellingen -> Beveiliging @@ -3368,7 +3828,7 @@ Ondersteund zijn: %1. Datetime created - Datum tijd gemaakt + Datum/Tijdstip van aanmaken Modified: @@ -3376,19 +3836,19 @@ Ondersteund zijn: %1. Datetime modified - Datum tijd gewijzigd + Datum/Tijdstip van wijziging Accessed: - Toegang: + Geopend: Datetime accessed - Datum tijd laatste toegang + Datum/Tijdstip van laatste toegang Uuid: - Uuid: + UUID: Unique ID @@ -3396,15 +3856,15 @@ Ondersteund zijn: %1. Plugin Data - Plugin-gegevens: + Plug-ingegevens Plugin data - Plugin-gegevens + Plug-ingegevens Remove selected plugin data - Geselecteerde plugin-gegevens verwijderen + Geselecteerde plug-ingegevens verwijderen Remove @@ -3412,13 +3872,13 @@ Ondersteund zijn: %1. Delete plugin data? - Plugin-gegevens verwijderen? + Plug-ingegevens verwijderen? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. - Weet je zeker dat je de geselecteerde plugin-gegevens wilt verwijderen? -Hierdoor werken de plugins mogelijk niet meer goed. + Wil je de geselecteerde plug-ingegevens verwijderen? +Hierdoor werken de plug-ins mogelijk niet goed meer. Key @@ -3435,12 +3895,45 @@ Hierdoor werken de plugins mogelijk niet meer goed. %1 - Clone %1 - Duplicaat + + Passkey + Passkey + + + Invalid conversion type: %1 + Ongeldig conversietype: %1 + + + Invalid conversion syntax: %1 + Ongeldige conversiesyntaxis: %1 + + + Invalid regular expression syntax %1 +%2 + Ongeldige syntaxis in reguliere expressie %1 +%2 + EntryAttachments Cannot open file "%1" - Kan bestand "%1" niet openen + Bestand ‘%1’ is niet geopend + + + + EntryAttachmentsDialog + + Form + Formulier + + + File name + Bestandsnaam + + + File contents... + Bestandsinhoud… @@ -3480,14 +3973,6 @@ Hierdoor werken de plugins mogelijk niet meer goed. Remove Verwijderen - - Rename selected attachment - Geselecteerde bijlage hernoemen - - - Rename - Hernoemen - Open selected attachment Geselecteerde bijlage openen @@ -3506,11 +3991,11 @@ Hierdoor werken de plugins mogelijk niet meer goed. Select files - Kies bestanden + Bestanden selecteren Confirm remove - Verwijdering bevestigen + Verwijderen bevestigen Are you sure you want to remove %n attachment(s)? @@ -3523,16 +4008,16 @@ Hierdoor werken de plugins mogelijk niet meer goed. Unable to create directory: %1 - Kan de map niet maken: + De map kan niet worden aangemaakt: %1 Are you sure you want to overwrite the existing file "%1" with the attachment? - Weet je zeker dat je het bestaande bestand "%1" met de bijlage wil overschrijven? + Weet je zeker dat je het bestaande bestand ‘%1’ tezamen met de bijlage wil overschrijven? Confirm overwrite - Overschrijving bevestigen + Overschrijven bevestigen Unable to save attachments: @@ -3555,18 +4040,12 @@ Hierdoor werken de plugins mogelijk niet meer goed. Unable to open file(s): %1 - Kan bestand niet openen: %1Kan bestand(en) niet openen: %1 + Kan bestand niet openen: %1Kan bestanden niet openen: %1 Confirm Overwrite Attachment Overschrijven van bijlage bevestigen - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Bijlage "%1" bestaat al. -Bestaande bijlage overschrijven? - Confirm Attachment Bijlage bevestigen @@ -3577,9 +4056,9 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 is een groot bestand (%2 MB). -De database kan erg groot worden en de prestaties verminderen. +De database kan hierdoor erg groot en trager worden. -Weet je zeker dat je dit bestand wilt toevoegen? +Weet je zeker dat je dit bestand wil toevoegen? Attachment modified @@ -3588,7 +4067,7 @@ Weet je zeker dat je dit bestand wilt toevoegen? The attachment '%1' was modified. Do you want to save the changes to your database? - De bijlage '%1' is gewijzigd. + De bijlage ‘%1’ is gewijzigd. Wil je de wijzigingen opslaan in de database? @@ -3598,8 +4077,26 @@ Wil je de wijzigingen opslaan in de database? Saving updated attachment failed. Error: %1 - Opslaan van bijgewerkte bijlage is mislukt. -Fout: %1 + De bijgewerkte bijlage kan niet worden opgeslagen. +Foutmelding: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + De bijlage ‘%1’ bestaat al. +Wil je de bestaande bijlage overschrijven? + + + New + Nieuw + + + Preview + Voorbeeld + + + Failed to preview an attachment: Attachment not found + Geen voorbeeld van bijlage: bijlage niet aangetroffen @@ -3633,7 +4130,7 @@ Fout: %1 Title - Naam + Titel Username @@ -3665,7 +4162,7 @@ Fout: %1 Expiration - Vervaldatum + Verloopdatum TOTP @@ -3681,7 +4178,7 @@ Fout: %1 Auto-Type - Auto-type + Automatisch invullen Tags @@ -3693,7 +4190,7 @@ Fout: %1 Ref: Reference abbreviation - Ref: + Ref.: Never @@ -3705,7 +4202,7 @@ Fout: %1 Title - Naam + Titel Username @@ -3725,19 +4222,19 @@ Fout: %1 Expires - Verloopt + Verloopt op Created - Aangemaakt + Aangemaakt op Modified - Gewijzigd + Gewijzigd op Accessed - Toegang + Geopend op Attachments @@ -3749,11 +4246,11 @@ Fout: %1 Group name - Groepnaam + Groepsnaam Entry title - Titel van het item + Titel van item Password Strength @@ -3773,11 +4270,11 @@ Fout: %1 Last modification date - Datum laatste wijziging + Datum van laatste wijziging Last access date - Datum laatste toegang + Datum van laatste opening Attached files @@ -3795,12 +4292,20 @@ Fout: %1 Has TOTP Heeft TOTP + + Background Color + Achtergrondkleur + + + Group Path + Groepspad + EntryPreviewWidget Display current TOTP value - Toon huidige TOTP-waarde + Huidige TOTP-waarde tonen Close @@ -3815,12 +4320,12 @@ Fout: %1 Wachtwoord - Notes - Notities + URL + URL Expiration - Vervaldatum + Verloopdatum Tags @@ -3835,8 +4340,8 @@ Fout: %1 Gebruikersnaam - URL - URL + Notes + Notities Advanced @@ -3852,7 +4357,7 @@ Fout: %1 Autotype - Auto-type + Automatisch invullen Default Sequence @@ -3886,14 +4391,22 @@ Fout: %1 Never Nooit + + Double click to copy value + Dubbelklik om de waarde te kopiëren + Enabled - Geactiveerd + Ingeschakeld Disabled Uitgeschakeld + + Double click to copy to clipboard + Dubbelklik om te kopiëren naar klembord + EntryURLModel @@ -3901,6 +4414,10 @@ Fout: %1 Invalid URL Ongeldige URL + + Duplicate URL + URL dupliceren + EntryView @@ -3914,29 +4431,34 @@ Fout: %1 Reset to defaults - Standaardwaarden opnieuw instellen + Standaardwaarden herstellen + + + + %1 entry(s)... + + %1 item…+ %1 items… ExportDialog Export options - Exporteer opties + Exportopties Sort entries by... - Items sorteren op... + Items sorteren op… You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Je staat op het punt de database te exporteren naar een niet-versleuteld bestand. -Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! +Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! + database order - database volgorde + databasevolgorde name (ascending) @@ -3952,22 +4474,22 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! Export database to HTML file - Database exporteren naar HTML-bestand + Database exporteren naar html-bestand HTML file - HTML-bestand + Html-bestand FdoSecrets::DBusMgr Failed to deliver message - Kan bericht niet afleveren + Het bericht is niet afgeleverd Failed to send reply on DBus - Kan antwoord niet verzenden op DBus + Geen antwoord verzonden op DBus Unknown @@ -3982,42 +4504,42 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! <i>PID: %1, Executable: %2</i> <i>PID: 1234, Executable: /path/to/exe</i> - <i>PID: %1, Uitvoerbaar bestand: %2</i> + <i>PID: %1, uitvoerbaar bestand: %2</i> Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Een andere secret service is actief (%1).<br/>Stop/verwijder deze en probeer de Secret Service-integratie opnieuw te activeren. + Er is al een andere Secret Service actief (%1).<br/>Stop/Verwijder deze en probeer de integratie met Secret Service opnieuw in te schakelen. Failed to register DBus service at %1.<br/> - Kan DBus-service niet registreren op %1.<br/> + DBus-dienst is niet geregistreerd op %1.<br/> Failed to register service on DBus at path '%1' - Kan service niet registreren op DBus op pad '%1' + De dienst is niet geregistreerd op de DBus-locatie ‘%1’ Failed to register database on DBus under the name '%1' - Registratie van database op DBus onder de naam '%1' mislukt + De database kan niet op DBus geregistreerd worden met de naam ‘%1’ Failed to register session on DBus at path '%1' - Kan sessie niet registreren op DBus op pad '%1' + De sessie kan niet worden geregistreerd op de DBus-locatie ‘%1’ Failed to register item on DBus at path '%1' - Kan item niet registreren op DBus op pad '%1' + Kan item niet registreren op de DBus-locatie ‘%1’ Failed to register prompt object on DBus at path '%1' - Kan object niet registreren op DBus op pad '%1' + Kan object niet registreren op de DBus-locatie ‘%1’ FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - Het item "%1" van de database "%2" werd gebruikt door %3 + Item ‘%1’ uit de database ‘%2’ is gebruikt door %3 @@ -4025,7 +4547,7 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! %n Entry(s) was used by %1 %1 is the name of an application - %n Item is gebruikt door %1%n Items zijn gebruikt door %1 + Er is %n item gebruikt door %1Er zijn %n items gebruikt door %1 @@ -4036,14 +4558,14 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! Non-existing/inaccessible executable path. Please double-check the client is legit. - Niet-bestaand/ontoegankelijk uitvoerbaar pad. Controleer nogmaals of de client legitiem is. + Niet-bestaande/ontoegankelijke locatie van het uitvoerbare bestand. Controleer of de client legitiem is. FdoSecrets::SettingsDatabaseModel Unlock to show - Ontgrendel voor deze informatie + Ontgrendelen om weer te geven None @@ -4080,7 +4602,7 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! HibpDownloader Online password validation failed - Online validatie van wachtwoord is mislukt + Online geldigverklaring van wachtwoord mislukt @@ -4097,7 +4619,7 @@ Dit maakt jouw wachtwoorden en gevoelige informatie kwetsbaar! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. Problemen met het downloaden van pictogrammen? -Je kunt de DuckDuckGo website pictogram dienst inschakelen in de sectie 'Beveiliging' in de instellingen. +Je kunt de pictogrammenservice van de DuckDuckGo-website inschakelen in de sectie Beveiliging van de instellingen. Close @@ -4113,11 +4635,11 @@ Je kunt de DuckDuckGo website pictogram dienst inschakelen in de sectie 'Be Please wait, processing entry list… - Even wachten, de items worden verwerkt... + Even geduld, lijst met items verwerken… Downloading… - Downloaden... + Downloaden… Ok @@ -4129,11 +4651,204 @@ Je kunt de DuckDuckGo website pictogram dienst inschakelen in de sectie 'Be Download Failed - Download is mislukt + Download mislukt Downloading favicons (%1/%2)… - Favicons downloaden (%1/%2)... + Favicons downloaden (%1/%2)… + + + + ImportWizard + + Import Wizard + Import-assistent + + + + ImportWizardPageReview + + WizardPage + Assistent + + + Entry count: %1 + Aantal items: %1 + + + Group + Groep + + + Title + Titel + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + Url + URL + + + Could not load key file. + Kan sleutelbestand niet laden. + + + Could not open remote database. Password or key file may be incorrect. + Kan externe database niet openen. Wachtwoord of sleutelbestand is mogelijk onjuist. + + + + ImportWizardPageSelect + + Form + Formulier + + + Import File Selection + Selectie van importbestand + + + Password: + Wachtwoord: + + + Key File: + Sleutelbestand: + + + Browse… + Bladeren… + + + Import Into: + Importeren naar: + + + New Database + Nieuwe database + + + No unlocked databases available + Geen ontgrendelde databases beschikbaar + + + Existing Database: + Bestaande database: + + + Import File: + Importbestand: + + + Comma Separated Values (.csv) + Komma-gescheiden waarden (.csv) + + + 1Password Export (.1pux) + 1Password-export (.1pux) + + + 1Password Vault (.opvault) + 1Password-kluis (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1-database (.kdb) + + + Open OPVault + OPVault openen + + + Select import file + Selecteer importbestand + + + All files + Alle bestanden + + + Key files + Sleutelbestanden + + + Select key file + Selecteer sleutelbestand + + + Comma Separated Values + Komma-gescheiden waarden + + + 1Password Export + 1Password-export + + + Bitwarden JSON Export + Bitwarden JSON-export + + + 1Password Vault + 1Password-kluis + + + KeePass1 Database + KeePass 1-database + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON Export + + + Temporary Database + Tijdelijke database + + + Command: + Opdracht: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + bv.: "sftp user@hostname" of "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Invoer: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + bv.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} wordt gebruikt als tijdelijke aanduiding om de database op een tijdelijke locatie op te slaan +De opdracht moet worden afgesloten. In het geval van `sftp` moet `exit` als laatste worden verzonden + + + + Remote Database (.kdbx) + Externe database (.kdbx) @@ -4151,7 +4866,7 @@ Je kunt de DuckDuckGo website pictogram dienst inschakelen in de sectie 'Be Kdbx3Reader Missing database headers - Ontbrekende databaseheaders + Ontbrekende databasekoppen Unable to calculate database key @@ -4159,29 +4874,29 @@ Je kunt de DuckDuckGo website pictogram dienst inschakelen in de sectie 'Be Unable to issue challenge-response: %1 - Kan challenge-antwoord niet uitgeven: %1 + Kan geen challenge-response uitbrengen: %1 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Ongeldige inloggegevens, probeer het opnieuw. -Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. + Er zijn ongeldige inloggegevens opgegeven - probeer het opnieuw. +Als dit vaker gebeurt, dan is het databasebestand mogelijk beschadigd. Header doesn't match hash - Header komt niet overeen met hash + Kop komt niet overeen met controlegetal Invalid header id size - Ongeldige grootte van header-ID + Ongeldige grootte van kop-id Invalid header field length: field %1 - Ongeldige headerlengte: veld %1 + Ongeldige koplengte: veld %1 Invalid header data length: field %1, %2 expected, %3 found - Ongeldige lengte van hearder-gegevens: veld %1, %2 verwacht, %3 aangetroffen + Ongeldige lengte van kopgegevens: veld %1. Verwacht: %2, aangetroffen: %3. @@ -4193,7 +4908,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Unable to issue challenge-response: %1 - Kan challenge-antwoord niet uitgeven: %1 + Kan geen challenge-response uitbrengen: %1 Unable to calculate database key @@ -4204,7 +4919,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Kdbx4Reader missing database headers - ontbrekende database-koppen + ontbrekende databasekoppen Unable to calculate database key: %1 @@ -4212,7 +4927,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Invalid header checksum size - Ongeldige grootte van header-controlecijfer + Ongeldige grootte van controlesom kop Header SHA256 mismatch @@ -4221,8 +4936,8 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Ongeldige inloggegevens, probeer het opnieuw. -Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. + Er zijn ongeldige inloggegevens opgegeven - probeer het opnieuw. +Als dit nog een keer gebeurt, dan is het databasebestand mogelijk beschadigd. (HMAC mismatch) @@ -4230,107 +4945,107 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Unknown cipher - Onbekend versleutelingsalgoritme + Onbekende versleuteling Invalid header id size - Ongeldige grootte van header-ID + Ongeldige grootte van kop-id Invalid header field length: field %1 - Ongeldige headerlengte: veld %1 + Ongeldige grootte van kop: veld %1 Invalid header data length: field %1, %2 expected, %3 found - Ongeldige lengte van hearder-gegevens: veld %1, %2 verwacht, %3 aangetroffen + Ongeldige lengte van kopgegevens: veld %1. Verwacht: %2, aangetroffen: %3. Failed to open buffer for KDF parameters in header - Fout bij het openen van de buffer voor KDF-parameters in header + Kan buffer voor KDF-parameters niet openen in kop Unsupported key derivation function (KDF) or invalid parameters - Niet-ondersteunde sleutel-afleidingsfunctie (KDF) of ongeldige parameters + Niet-ondersteunde sleutelafleidingsfunctie (KDF) of ongeldige opties Legacy header fields found in KDBX4 file. - Verouderde header-velden gevonden in KDBX4 bestand. + Verouderde kopvelden aangetroffen in het KDBX4-bestand. Invalid inner header id size - Ongeldige grootte van inner header-id + Ongeldige grootte van binnenste kop-id Invalid inner header field length: field %1 - Ongeldige lengte van het binnenste headerveld: veld %1 + Ongeldige lengte van het binnenste kopveld: veld %1 Invalid inner header data length: field %1, %2 expected, %3 found - Ongeldige gegevenslengte binnenste headertekst: veld %1, %2 verwacht, %3 aangetroffen + Ongeldige lengte van binnenste kopgegevens: veld %1. Verwacht: %2, aangetroffen: %3. Invalid inner header binary size - Ongeldige binaire grootte van inner header + Ongeldige binaire grootte van binnenste kop Unsupported KeePass variant map version. Translation: variant map = data structure for storing meta data - Niet-ondersteunde versie van KeePass variant map. + Niet-ondersteunde versie van de KeePass variant-map. Invalid variant map entry name length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map item naam + Ongeldige lengte van een variant-mapnaam Invalid variant map entry name data Translation: variant map = data structure for storing meta data - Ongeldige data in een variant map item naam + Ongeldige gegevens in een variant-mapnaam Invalid variant map entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map waarde + Ongeldige lengte van een variant-map Invalid variant map entry value data Translation comment: variant map = data structure for storing meta data - Ongeldige data in een variant map waarde + Ongeldige gegevens in een variant-map Invalid variant map Bool entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map Boolean-waarde + Ongeldige lengte van een variant-map Boolean-waarde Invalid variant map Int32 entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map Int32-waarde + Ongeldige lengte van een variant-map Int32-waarde Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map UInt32-waarde + Ongeldige lengte van een variant-map UInt32-waarde Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map Int64-waarde + Ongeldige lengte van een variant-map Int64-waarde Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - Ongeldige lengte van een variant map UInt64-waarde + Ongeldige lengte van een variant-map UInt64-waarde Invalid variant map entry type Translation: variant map = data structure for storing meta data - Ongeldige item-type in variant map + Ongeldige item-type in variant-map Invalid variant map field type size Translation: variant map = data structure for storing meta data - Ongeldige grootte van variant map veld-type + Ongeldige grootte van variant-map veld-type @@ -4351,22 +5066,22 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Failed to serialize KDF parameters variant map Translation comment: variant map = data structure for storing meta data - Fout bij serialisering van KDF-parameters variant map + Fout bij serialisering van KDF-parameters variant-map KdbxReader Invalid cipher uuid length: %1 (length=%2) - Ongeldige versleuteling uuid lengte: %1 (lengte=%2) + Ongeldige versleuteling UUID-lengte: %1 (lengte=%2) Unable to parse UUID: %1 - Geen geldige UUID: %1 + Kan UUID niet verwerken: %1 Unsupported cipher - Niet ondersteund versleutelingsalgoritme + Niet-ondersteunde versleuteling Invalid compression flags length @@ -4374,7 +5089,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Unsupported compression algorithm - Niet ondersteund compressie-algoritme + Niet-ondersteund compressie-algoritme Invalid master seed size @@ -4398,21 +5113,21 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Invalid inner random stream cipher - Ongeldig inner-random-stream versleutelingsalgoritme + Ongeldige interne random-stream versleuteling Failed to read database file. - Lezen van databasebestand is mislukt. + Kan databasebestand niet lezen. The selected file is an old KeePass 1 database (.kdb). 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. - Het gekozen bestand is een oude KeePass 1 database (.kdb). + Het geselecteerde bestand is een oude KeePass 1-database (.kdb). -Je kunt het importeren door te klikken op Database > 'KeePass 1 database importeren'. -Deze actie is niet omkeerbaar. De geïmporteerde database kan niet meer worden geopend met de oude KeePassX versie 0.4. +Je kan de database importeren via Database → ‘KeePass 1-database importeren’. +Let op: deze actie is onomkeerbaar. De geïmporteerde database kan niet meer worden geopend met de oude KeePassX-versie 0.4. Not a KeePass database. @@ -4427,7 +5142,7 @@ Deze actie is niet omkeerbaar. De geïmporteerde database kan niet meer worden g KdbxXmlReader XML parsing failure: %1 - XML leesfout: %1 + XML-verwerkingsfout: %1 No root group @@ -4437,17 +5152,17 @@ Deze actie is niet omkeerbaar. De geïmporteerde database kan niet meer worden g XML error: %1 Line %2, column %3 - XML fout: + XML-fout: %1 -Lijn %2, kolom %3 +Regel %2, kolom %3 Missing icon uuid or data - Ontbrekende pictogram-uuid of -gegevens + Ontbrekende pictogram-UUID of -gegevens Missing custom data key or value - Ontbrekende aangepaste datasleutel of -waarde + Ontbrekende aangepaste gegevenssleutel of -waarde Multiple group elements @@ -4455,7 +5170,7 @@ Lijn %2, kolom %3 Null group uuid - Null groep uuid + Null groep-UUID Invalid group icon number @@ -4471,19 +5186,19 @@ Lijn %2, kolom %3 No group uuid found - Geen groep-uuid gevonden + Geen groep-UUID gevonden Null DeleteObject uuid - Null DeleteObject uuid + Null DeleteObject UUID Missing DeletedObject uuid or time - Ontbrekende DeletedObject uuid of tijd + Ontbrekende DeletedObject UUID of tijd Null entry uuid - Null item uuid + Null item-UUID Invalid entry icon number @@ -4491,15 +5206,15 @@ Lijn %2, kolom %3 History element in history entry - Geschiedenis element in geschiedenis item + Geschiedeniselement in itemgeschiedenis No entry uuid found - Geen item-uuid gevonden + Geen item-UUID gevonden History element with different uuid - Geschiedenis element met ander uuid + Geschiedeniselement met verschillende UUID Duplicate custom attribute found @@ -4507,7 +5222,7 @@ Lijn %2, kolom %3 Entry string key or value missing - Stringsleutel of -waarde ontbreekt in item + Reekssleutel of -waarde ontbreekt in item Entry binary key or value missing @@ -4515,7 +5230,7 @@ Lijn %2, kolom %3 Auto-type association window or sequence missing - Auto-type vensterkoppeling of tekenreeks ontbreekt + Vensterkoppeling of tekenreeks ontbreekt voor automatisch invullen Invalid bool value @@ -4535,11 +5250,11 @@ Lijn %2, kolom %3 Invalid number value - Ongeldig getal + Ongeldige getalwaarde Invalid uuid value - Ongeldige uuid-waarde + Ongeldige UUID-waarde Unable to decompress binary @@ -4555,45 +5270,34 @@ Lijn %2, kolom %3 Private key is an attachment but no attachments provided. - Privésleutel is een bijlage maar er is geen bijlage verstrekt. + De persoonlijke sleutel is een bijlage, maar er is geen bijlage verstrekt. Private key is empty - Privésleutel is leeg + Persoonlijke sleutel is leeg File too large to be a private key - Bestand te groot voor een persoonlijke sleutel + Dit bestand is te groot voor een persoonlijke sleutel Failed to open private key - Persoonlijk sleutelbestand niet kunnen openen - - - - KeePass1OpenWidget - - Import KeePass1 Database - Importeer KeePass1 database - - - Unable to open the database. - Kan database niet openen. + De persoonlijke sleutel is niet geopend KeePass1Reader Unable to read keyfile. - Kan sleutelbestand niet lezen. + Kan het sleutelbestand niet lezen. Not a KeePass database. - Geen KeePass-database + Dit is geen KeePass-database. Unsupported encryption algorithm. - Niet-ondersteund versleutelings-algoritme + Niet-ondersteund versleutelingsalgoritme Unsupported KeePass database version. @@ -4614,7 +5318,7 @@ Lijn %2, kolom %3 Invalid content hash size - Ongeldige grootte van inhoud-hash + Ongeldige grootte van controlegetal inhoud Invalid transform seed size @@ -4626,25 +5330,25 @@ Lijn %2, kolom %3 Unable to construct group tree - Kan groepsstructuur niet opbouwen + Kan de groepsstructuur niet opbouwen Root - Alles + Hoofdgroep Unable to calculate database key - Kan databasesleutel niet berekenen + Kan de databasesleutel niet berekenen unable to seek to content position - kan niet naar positie in inhoud springen + kan niet naar inhoudspositie zoeken Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Ongeldige inloggegevens, probeer het opnieuw. -Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. + Er zijn ongeldige inloggegevens opgegeven - probeer het opnieuw. +Als dit nog een keer gebeurt, dan is het databasebestand mogelijk beschadigd. Key transformation failed @@ -4652,7 +5356,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Invalid group field type number - Ongeldig veld typenummer van groep + Ongeldig veld-typenummer van groep Invalid group field size @@ -4732,7 +5436,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Invalid entry expiry time field size - Ongeldige veldgrootte van verlooptijd + Ongeldige veldgrootte van verloopdatum Invalid entry field type @@ -4747,11 +5451,11 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Inactive share %1 - Niet actieve gedaalde database %1 + Inactieve gedeelde database %1 Imported from %1 - Geïmporteerd vanuit %1 + Geïmporteerd uit %1 Exported to %1 @@ -4763,15 +5467,15 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Import is disabled in settings - Importeren is uitgeschakeld in instellingen + Importeren is uitgeschakeld in de instellingen Export is disabled in settings - Exporteren is uitgeschakeld in instellingen + Exporteren is uitgeschakeld in de instellingen Inactive share - Niet actieve gedeelde database + Inactieve gedeelde database Imported from @@ -4790,11 +5494,11 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. KeyComponentWidget Key Component - Sleutelcomponent + Sleutelonderdeel Key Component Description - Sleutelcomponent beschrijving + Beschrijving sleutelonderdeel Cancel @@ -4802,14 +5506,14 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Key Component set, click to change or remove - Sleutelcomponent verzameling, klik om te wijzigen of verwijderen + Sleutelonderdeel ingesteld - klik om te wijzigen of verwijderen KeyFileEditWidget Generate a new key file - Een nieuw sleutelbestand genereren + Nieuw sleutelbestand genereren Generate @@ -4817,11 +5521,11 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Generate a new key file or choose an existing one to protect your database. - Genereer een nieuw sleutelbestand of kies een bestaand bestand om de database te beschermen. + Genereer een nieuw sleutelbestand of kies een bestaand bestand om de database te beveiligen. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Opmerking: gebruik GEEN bestand dat kan veranderen, omdat ertoe kan leiden dat de database niet ontgrendeld kan worden. + Let op: gebruik GEEN bestand dat gewijzigd kan worden, anders kan de database niet worden ontgrendeld! Browse for key file @@ -4842,7 +5546,7 @@ Als dit vaker gebeurt, is het databasebestand mogelijk beschadigd. Error loading the key file '%1' Message: %2 - Er ging iets fout bij het laden van het sleutelbestand '%1' + Fout bij het laden van sleutelbestand ‘%1’ Bericht: %2 @@ -4851,23 +5555,23 @@ Bericht: %2 Add Key File - Voeg sleutelbestand toe + Sleutelbestand toevoegen Change Key File - Wijzig sleutelbestand + Sleutelbestand wijzigen Remove Key File - Verwijder sleutelbestand + Sleutelbestand verwijderen Key File set, click to change or remove - Sleutelbestand ingesteld, klik om te wijzigen of te verwijderen + Sleutelbestand ingesteld - klik om te wijzigen of te verwijderen <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>Je kunt een sleutelbestand met willekeurige bytes toevoegen voor extra veiligheid.</p> <p>Je moet het sleutelbestand geheim houden en nooit verliezen anders wordt je buitengesloten!</p> + <p>Je kunt, voor extra beveiliging, een sleutelbestand met willekeurige bytes toevoegen.</p> <p>Je moet het sleutelbestand geheim houden en nooit verliezen, anders word je buitengesloten!</p> Key files @@ -4883,15 +5587,15 @@ Bericht: %2 Error creating key file - Er ging iets fout bij het maken van het sleutelbestand + Fout bij aanmaken van sleutelbestand Unable to create key file: %1 - Kan sleutelbestand niet maken: %1 + Kan sleutelbestand niet aanmaken: %1 Select a key file - Kies een sleutelbestand + Selecteer een sleutelbestand Invalid Key File @@ -4899,7 +5603,7 @@ Bericht: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Je kunt de huidige database niet gebruiken als zijn eigen sleutelbestand. Kies een ander bestand of genereer een nieuw sleutelbestand. + Je kunt de huidige database niet gebruiken als eigen sleutelbestand. Kies een ander bestand of genereer een nieuw sleutelbestand. Suspicious Key File @@ -4908,8 +5612,8 @@ Bericht: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Het gekozen sleutelbestand ziet eruit als een wachtwoord databasebestand. Een sleutelbestand moet een statisch bestand zijn dat nooit wijzigt ander verlies je voor altijd toegang tot de database. -Weet je zeker dat je wilt doorgaan met dit bestand? + Het gekozen sleutelbestand ziet er uit als een wachtwoord-databasebestand. Een sleutelbestand dient een statisch bestand te zijn dat nooit wijzigt, anders word je permanent buitengesloten. +Weet je zeker dat je dit bestand wilt gebruiken? @@ -4920,11 +5624,11 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Global shortcut already registered to %1 - Globale snelkoppeling is al geregistreerd bij %1 + Algemene sneltoets is al toegekend aan %1 Could not register global shortcut - Kan algemene snelkoppeling niet registreren + Algemene sneltoets is niet vastgelegd @@ -4937,30 +5641,30 @@ Weet je zeker dat je wilt doorgaan met dit bestand? &Recent Databases &Recente databases - - &Import - &Importeren - &Export &Exporteren &Help - &Help + &Hulp &Entries - &Items + It&ems Copy Att&ribute - Ken&merk kopiëren + Kenme&rk kopiëren TOTP TOTP + + Tags + Labels + &Groups &Groepen @@ -4987,15 +5691,15 @@ Weet je zeker dat je wilt doorgaan met dit bestand? &Check for Updates - &Controleer op updates + &Controleren op updates &Open Database… - Database &openen... + Database &openen… &Save Database - Database op&slaan... + Database op&slaan… &Close Database @@ -5003,59 +5707,39 @@ Weet je zeker dat je wilt doorgaan met dit bestand? &New Database… - &Nieuwe database... - - - Create a new database - Een nieuwe database maken + &Nieuwe database… &Merge From Database… - Database sa&menvoegen... - - - Merge from another KDBX database - Samenvoegen uit een andere KDBX database + Database sa&menvoegen… &New Entry… &Nieuw item… - - Add a new entry - Nieuw item toevoegen - &Edit Entry… - Item &bewerken… - - - View or edit entry - Item bekijken/bewerken + Item b&ewerken… &Delete Entry… - Item &verwijderen… + Item verwij&deren… &New Group… - &Nieuwe Groep… - - - Add a new group - Een nieuwe groep toevoegen + &Nieuwe groep… &Edit Group… - Groep &bewerken… + Groep b&ewerken… &Delete Group… - &Verwijder Groep… + Groep verwij&deren… Download All &Favicons… - Alle &favicons downloaden... + Alle &favicons downloaden… Sort &A-Z @@ -5067,67 +5751,43 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Sa&ve Database As… - Database opslaan &als... + Databas&e opslaan als… Database &Security… - Database-be&veiliging... + Databasebe&veiliging… Database &Reports… - Database-&rapportage... - - - Statistics, health check, etc. - Statistieken, gezondheidscontrole, etc. + Database&rapportage… &Database Settings… - &Database-instellingen - - - Database settings - Database-instellingen + &Databaseinstellingen… &Clone Entry… - Item &dupliceren... + Item dupli&ceren… Move u&p Om&hoog verplaatsen - - Move entry one step up - Hiermee verplaats je een item een positie omhoog. - Move do&wn Om&laag verplaatsen - - Move entry one step down - Hiermee verplaats je een item een positie omlaag. - Copy &Username - &Gebruikersnaam kopiëren - - - Copy username to clipboard - Gebruikersnaam naar klembord kopiëren + Gebr&uikersnaam kopiëren Copy &Password - &Wachtwoord kopiëren - - - Copy password to clipboard - Wachtwoord naar klembord kopiëren + Wachtwoord ko&piëren &Settings - &Instellingen + In&stellingen &Password Generator @@ -5135,7 +5795,7 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Perform &Auto-Type - &Auto-type uitvoeren + &Automatisch invullen Download &Favicon @@ -5155,59 +5815,35 @@ Weet je zeker dat je wilt doorgaan met dit bestand? &Title - &Naam + &Titel - Copy title to clipboard - Naam naar klembord kopiëren - - - &URL - &URL - - - Copy URL to clipboard - URL naar klembord kopiëren + Copy &URL + &URL kopiëren &Notes &Notities - - Copy notes to clipboard - Notities naar klembord kopiëren - &CSV File… - &CSV-bestand... + &CSV-bestand… &HTML File… - &HTML-bestand... + &HTML-bestand… KeePass 1 Database… - KeePass 1 database... - - - Import a KeePass 1 database - Een KeePass 1-database importeren + KeePass 1-database… 1Password Vault… - 1Password kluis... - - - Import a 1Password Vault - Een 1Password kluis importeren + 1Password-kluis… CSV File… - CSV-bestand... - - - Import a CSV file - Een CSV-bestand importeren + CSV-bestand… Show TOTP @@ -5215,7 +5851,7 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Show QR Code - TOTP QR-code tonen + TOTP QR-code weergeven Set up TOTP… @@ -5225,9 +5861,13 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Copy &TOTP &TOTP kopiëren + + Copy Password and TOTP + TOTP en wachtwoord kopiëren + E&mpty recycle bin - Prullenbak leegmaken + Prullenbak le&gen &Donate @@ -5235,27 +5875,23 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Report a &Bug - Meld een &fout + Meld een &Fout &Getting Started - &Aan de slag + Snelstart&gids (EN) Open Getting Started Guide - Open de handleiding Aan de slag + Open de snelstartgids &Online Help - &Online hulp - - - Go to online documentation - Online documentatie + &Online hulp (EN) &User Guide - &Gebruikershandleiding + Gebr&uikershandleiding (EN) Open User Guide @@ -5263,11 +5899,11 @@ Weet je zeker dat je wilt doorgaan met dit bestand? &Keyboard Shortcuts - &Sneltoetsen + &Sneltoetsen (EN) Save Database Backup… - Database-backup opslaan... + Reservekopie van database opslaan… Add key to SSH Agent @@ -5275,11 +5911,11 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Remove key from SSH Agent - Sleutel wegnemen van SSH-agent + Sleutel verwijderen van SSH-agent Compact Mode - Compacte weergave + Compacte modus Automatic @@ -5297,17 +5933,21 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Classic (Platform-native) Klassiek (platform-eigen) + + Show Menubar + Menubalk weergeven + Show Toolbar Werkbalk weergeven Show Preview Panel - Voorbeeldvenster weergeven + Informatiepaneel weergeven Always on Top - Altijd bovenop + Venster altijd bovenop Hide Usernames @@ -5319,7 +5959,11 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Clone Group... - Groep dupliceren... + Groep dupliceren… + + + &XML File… + &XML-bestand… Clear history @@ -5327,35 +5971,33 @@ Weet je zeker dat je wilt doorgaan met dit bestand? Access error for config file %1 - Geen toegang tot configuratiebestand %1 + Toegangsfout voor configuratiebestand %1 Don't show again for this version - Niet meer weergeven voor deze versie + Niet meer tonen voor deze versie 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. - WAARSCHUWING: Je gebruikt een niet-stabiele versie van KeePassXC! -Deze versie is niet bedoeld voor dagelijks gebruik. -Er is een verhoogd risico op beschadiging. Bewaar een back-up van jouw databases. + WAARSCHUWING: je maakt gebruik van een instabiele versie van KeePassXC! +Er is een verhoogd risico op beschadiging. Bewaar een reservekopie van je databases. +Deze versie is niet bedoeld voor dagelijks gebruik. NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - Opmerking: Je gebruikt een pre-release versie van KeePassXC! + LET OP: je maakt gebruik van een pre-release versie van KeePassXC! Houd rekening met fouten en kleine problemen. Deze versie is bedoeld voor testdoeleinden. - 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. - WAARSCHUWING: Jouw Qt-versie kan KeePassXC laten crashen bij gebruik van een schermtoetsenbord! -Wij raden je aan om de AppImage te gebruiken welke beschikbaar is op onze downloadpagina. + No Tags + Geen labels Restore Entry(s) - Vermelding(en) herstellenItem(s) herstellen + Item herstellenItems herstellen Settings @@ -5363,27 +6005,31 @@ Wij raden je aan om de AppImage te gebruiken welke beschikbaar is op onze downlo Check for updates on startup? - Controleren op updates bij het opstarten? + Bij start controleren op updates? Would you like KeePassXC to check for updates on startup? - Wil je dat KeePassXC bij het opstarten controleert op updates? + Wil je dat KeePassXC bij het opstarten op updates controleert? You can always check for updates manually from the application menu. - Je kunt altijd handmatig controleren of er updates zijn vanuit het programmamenu. + Je kunt altijd handmatig controleren of er updates zijn via het programmamenu. Toggle window - Venster openen + Venster tonen/verbergen Quit KeePassXC KeePassXC afsluiten + + %1 Entry(s) + %1 Item%1 Items + Please present or touch your YubiKey to continue… - Presenteer je YubiKey of druk er op om door te gaan... + Plaats je YubiKey of druk er op om door te gaan… Restart Application? @@ -5391,19 +6037,326 @@ Wij raden je aan om de AppImage te gebruiken welke beschikbaar is op onze downlo You must restart the application to apply this setting. Would you like to restart now? - Je moet de applicatie opnieuw opstarten om deze instelling toe te passen. -Wil je KeePassXC nu opnieuw opstarten? + Je moet KeePassXC opnieuw opstarten om deze instelling toe te passen. Wil je dat nu doen? + + + Allow Screen Capture + Schermopname toestaan + + + 1Password 1PUX... + 1Password 1PUX… + + + Import a 1Password 1PUX file + Een 1Password 1PUX-bestand importeren + + + Import… + Importeren… + + + Passkeys… + Passkeys… + + + Import Passkey + Passkey importeren + + + Remote S&ync… + S&ynchronisatie op afstand… + + + Quit Application + Programma afsluiten + + + Open About Dialog + Dialoogvenster 'Over' openen + + + Open Database + Database openen + + + Create Database + Database aanmaken + + + Merge From Database + Samenvoegen uit database + + + Create Entry + Item aanmaken + + + Edit Entry + Invoer bewerken + + + Delete Entry + Item verwijderen + + + Create Group + Groep aanmaken + + + Edit Group + Groep bewerken + + + Delete Group + Groep verwijderen + + + Download All Favicons + Alle favicons downloaden + + + Sort Groups A-Z + Groepen sorteren A-Z + + + Sort Groups Z-A + Groepen sorteren Z-A + + + Save Database As + Database opslaan als + + + Show Database Security + Database-beveiliging weergeven + + + Show Database Reports + Database-rapportage weergeven + + + Show Database Settings + Database-instellingen weergeven + + + Show Passkeys + Passkeys weergeven + + + Clone Entry + Item dupliceren + + + Move Entry Up + Item omhoog verplaatsen + + + Move Entry Down + Item omlaag verplaatsen + + + Copy Username + Gebruikersnaam kopiëren + + + Copy Password + Wachtwoord kopiëren + + + Show Application Settings + Programma-instellingen weergeven + + + Show Password Generator + Wachtwoordgenerator weergeven + + + Remove Passkey From Entry + Passkey van item verwijderen + + + Perform Auto-Type: {USERNAME} + Automatisch invullen: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Automatisch invullen: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Automatisch invullen: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Automatisch invullen: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Automatisch invullen: {TOTP} + + + Copy Title + Titel kopiëren + + + Copy URL + URL kopiëren + + + Copy Notes + Notities kopiëren + + + Export to CSV + Exporteren naar CSV + + + Export to HTML + Exporteren naar HTML + + + Import KeePass1 Database + KeePass1-database importeren + + + Import 1Password Vault + 1Password-kluis importeren + + + Import CSV File + CSV-bestand importeren + + + Show TOTP QR Code + TOTP QR-code weergeven + + + Set up TOTP + TOTP instellen + + + Empty Recycle Bin + Prullenbak legen + + + Open Donation Website + Donatiewebsite openen + + + Open Bug Report + Foutrapportage openen + + + Open Online Documentation + Online documentatie openen + + + Open Keyboard Shortcuts Guide + Sneltoetsengids openen + + + Save Database Backup + Reservekopie van database opslaan + + + SSH Agent: Add Key + SSH-agent: Sleutel toevoegen + + + SSH Agent: Remove Key + SSH-agent: Sleutel verwijderen + + + Toggle Compact Mode + Compacte modus wisselen + + + Set Theme: Automatic + Thema: Automatisch + + + Set Theme: Light + Thema: Licht + + + Set Theme: Dark + Thema: Donker + + + Set Theme: Classic + Thema: Klassiek + + + Toggle Show Menubar + Menubalk tonen/verbergen + + + Toggle Show Toolbar + Werkbalk tonen/verbergen + + + Toggle Show Preview Panel + Informatiepaneel tonen/verbergen + + + Toggle Always on Top + Venster altijd bovenop wisselen + + + Toggle Hide Usernames + Gebruikersnamen tonen/verbergen + + + Toggle Hide Passwords + Wachtwoorden tonen/verbergen + + + Export to XML + Exporteren naar XML + + + Toggle Allow Screen Capture + Schermopname toestaan wisselen + + + Show Group Panel + Navigatiepaneel weergeven + + + Toggle Show Group Panel + Navigatiepaneel tonen/verbergen + + + Setup Remote Sync… + Synchronisatie op afstand instellen… + + + Password Generator + Wachtwoordgenerator + + + E&xpire Entry… + Item laten verlo&pen… + + + Clear SSH Agent + SSH-agent wissen + + + Clear all identities in ssh-agent + Alle identiteiten in SSH-agent wissen ManageDatabase Database settings - Database-instellingen + Databaseinstellingen Edit database settings - Database instellingen bewerken + Databaseinstellingen bewerken Unlock database @@ -5411,7 +6364,7 @@ Wil je KeePassXC nu opnieuw opstarten? Unlock database to show more information - Ontgrendel de database voor meer informatie + Database ontgrendelen om meer informatie weer te geven Lock database @@ -5422,54 +6375,34 @@ Wil je KeePassXC nu opnieuw opstarten? ManageSession Disconnect - Verbreken + Koppeling verbreken Disconnect this application - Deze applicatie loskoppelen + Verbreek de koppeling met dit programma Reset - Opnieuw instellen + Standaardwaarden Reset any remembered decisions for this application - Alle onthouden beslissingen voor deze toepassing opnieuw instellen + Alle instellingen van dit programma opnieuw instellen Merger Creating missing %1 [%2] - Ontbrekende %1 [%2] aanmaken + Aanmaken van ontbrekende %1 [%2] Relocating %1 [%2] - %1 [%2] verplaatsen + Verplaatsen van %1 [%2] Overwriting %1 [%2] - %1 [%2] overschrijven - - - older entry merged from database "%1" - ouder item samengevoegd uit database '%1' - - - Adding backup for older target %1 [%2] - Back-up toevoegen voor ouder doel %1 [%2] - - - Adding backup for older source %1 [%2] - Back-up toevoegen voor oudere bron %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Ouder doel item is opnieuw toegepast over nieuwer bron item %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Ouder bron item is opnieuw toegepast over nieuwer doel item %1 [%2] + Overschrijven van %1 [%2] Synchronizing from newer source %1 [%2] @@ -5481,15 +6414,15 @@ Wil je KeePassXC nu opnieuw opstarten? Deleting child %1 [%2] - Verwijderen van kind %1 [%2] + Verwijderen van onderliggende %1 [%2] Deleting orphan %1 [%2] - Verwijderen wees %1 [%2] + Verwijderen van verouderde %1 [%2] Changed deleted objects - Verwijderde objecten gewijzigd + Gewijzigde verwijderde objecten Adding missing icon %1 @@ -5497,23 +6430,23 @@ Wil je KeePassXC nu opnieuw opstarten? Removed custom data %1 [%2] - Gebruikersinstellingen verwijderd %1 [%2] + Verwijderde aangepaste gegevens %1 [%2] Adding custom data %1 [%2] - Gebruikersinstellingen toegevoegd %1 [%2] + Toevoegen van aangepaste gegevens %1 [%2] NewDatabaseWizard Create a new KeePassXC database… - Nieuwe KeePassXC database aanmaken... + Aanmaken van nieuwe KeePassXC-database… Root Root group - Alles + Hoofdgroep @@ -5528,26 +6461,18 @@ Wil je KeePassXC nu opnieuw opstarten? Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Hier kun je de versleutelingsinstellingen van de database aanpassen. Maak je geen zorgen, je kunt dit later in de database-instellingen wijzigen. - - - Advanced Settings - Geavanceerde instellingen - - - Simple Settings - Eenvoudige instellingen + Hier kun je de versleutelingsinstellingen van de database aanpassen. Dit kan echter ook op een later moment via de databaseinstellingen. NewDatabaseWizardPageDatabaseKey Database Credentials - Databasegegevens + Database-inloggegevens A set of credentials known only to you that protects your database. - Een verzameling referenties die jij alleen kent en die je database beschermt. + Inloggegevens die alleen jij kent en die de database beschermt. @@ -5558,18 +6483,37 @@ Wil je KeePassXC nu opnieuw opstarten? Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Hier kun je de versleutelingsinstellingen van de database aanpassen. Maak je geen zorgen, je kunt dit later in de database-instellingen wijzigen. + Hier kun je de versleutelingsinstellingen van de database aanpassen. Dit kan echter ook op een later moment via de databaseinstellingen. NewDatabaseWizardPageMetaData General Database Information - Algemene database-informatie + Algemene databaseinformatie Please fill in the display name and an optional description for your new database: - Geef de weergavenaam en een optionele beschrijving voor de nieuwe database: + Geef de nieuwe database een weergavenaam en eventueel een beschrijving: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Naam van bijlage kan niet leeg zijn + + + Attachment with the same name already exists + Er bestaat al een bijlage met dezelfde naam + + + Save attachment + Bijlage opslaan + + + New entry attachment + Nieuwe bijlage bij item @@ -5580,22 +6524,22 @@ Wil je KeePassXC nu opnieuw opstarten? Global shortcut already registered to %1 - Globale snelkoppeling is al geregistreerd bij %1 + Algemene sneltoets is al toegekend aan %1 Could not register global shortcut - Kan algemene snelkoppeling niet registreren + Algemene sneltoets is niet vastgelegd OpData01 Invalid OpData01, does not contain header - Ongeldige OpData01, bevat geen header + Ongeldige OpData01: bevat geen kop Unable to read all IV bytes, wanted 16 but got %1 - Kon niet alle IV bytes lezen, gewenst is 16 maar kreeg er %1 + Niet alle IV-bytes kunnen lezen; 16 gewenst maar %1 verkregen Unable to init cipher for opdata01: %1 @@ -5618,15 +6562,6 @@ Wil je KeePassXC nu opnieuw opstarten? %1 bytes niet versleutelde tekst verwacht, %2 aangetroffen - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - De te lezen database heeft geen exemplaar geproduceerd -%1 - - OpVaultReader @@ -5647,7 +6582,7 @@ Wil je KeePassXC nu opnieuw opstarten? Unable to decode masterKey: %1 - Kan hoofdsleutel niet decoderen: %1 + Kan hoofdsleutel niet ontcijferen: %1 Unable to derive master key: %1 @@ -5658,7 +6593,7 @@ Wil je KeePassXC nu opnieuw opstarten? OpenSSHKey Invalid key file, expecting an OpenSSH key - Ongeldig sleutelbestand, er werd een OpenSSH-sleutel verwacht + Ongeldig sleutelbestand; er wordt een OpenSSH-sleutel verwacht PEM boundary mismatch @@ -5670,7 +6605,7 @@ Wil je KeePassXC nu opnieuw opstarten? Key file way too small. - Sleutelbestand veel te klein. + Sleutelbestand is veel te klein. Key file magic header id invalid @@ -5678,31 +6613,35 @@ Wil je KeePassXC nu opnieuw opstarten? Found zero keys - Geen sleutels gevonden + Geen sleutels aangetroffen Failed to read public key. - Lezen publieke sleutel mislukt. + Kan openbare sleutel niet uitlezen. Corrupted key file, reading private key failed - Beschadigd sleutelbestand, lezen persoonlijke sleutel mislukt + Beschadigd bestand, de persoonlijke sleutel is niet uitgelezen Unsupported key type: %1 - Niet ondersteund sleuteltype: %1 + Niet-ondersteund sleuteltype: %1 No private key payload to decrypt - Geen inhoud persoonlijke sleutel om te decoderen + Geen inhoud om persoonlijke sleutel te decoderen Unknown cipher: %1 Onbekende versleuteling: %1 + + AES-256/GCM is currently not supported + AES-256/GCM wordt momenteel niet ondersteund + Passphrase is required to decrypt this key - Wachtwoord(-zin) nodig om deze sleutel te ontcijferen + Er is een wachtwoordzin vereist om deze sleutel te decoderen Key derivation failed: %1 @@ -5710,35 +6649,35 @@ Wil je KeePassXC nu opnieuw opstarten? Cipher IV is too short for MD5 kdf - Versleuteilng IV is te kort om MD5-sleutel te verkrijgen. + Versleuteilng IV is te kort om MD5-sleutel te verkrijgen Unknown KDF: %1 - Onbekende sleutelafleidings-functie: %1 + Onbekende KDF: %1 Failed to initialize cipher: %1 - Kan codering niet initialiseren: %1 + Kan versleuteling niet initialiseren: %1 Decryption failed: %1 - Decodering is mislukt: %1 + Decodering mislukt: %1 Decryption failed, wrong passphrase? - Decodering mislukt, verkeerd wachtwoord(-zin)? + Decodering mislukt. Controleer de wachtwoordzin. Unexpected EOF while reading key - Onverwacht bestandseinde tijdens lezen van de sleutel + Onverwachte EOF bij lezen sleutel Unsupported key part - Niet ondersteund sleutelonderdeel + Niet-ondersteund sleutelonderdeel Unexpected EOF while reading public key - Onverwacht bestandseinde publieke sleutel + Onverwachte EOF bij lezen openbare sleutel Unknown key type: %1 @@ -5746,57 +6685,213 @@ Wil je KeePassXC nu opnieuw opstarten? Unexpected EOF while reading private key - Onverwacht bestandseinde persoonlijke sleutel + Onverwachte EOF bij persoonlijke sleutel Can't write public key as it is empty - Kan publieke sleutel niet opslaan, aangezien deze leeg is + Kan geen openbare sleutel schrijven omdat deze leeg is Unexpected EOF when writing public key - Onverwacht bestandseinde bij schrijven publieke sleutel + Onverwachte EOF bij schrijven openbare sleutel Can't write private key as it is empty - Kan persoonlijke sleutel niet opslaan, aangezien deze leeg is + De persoonlijke sleutel is niet opgeslagen aangezien deze leeg is Unexpected EOF when writing private key - Onverwacht bestandseinde bij schrijven persoonlijke sleutel + Onverwachte EOF bij schrijven persoonlijke sleutel + + + (encrypted) + (versleuteld) - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Wachtwoorden komen niet overeen + SSH Key Generator + SSH-sleutelgenerator - Passwords match so far - Wachtwoorden overeenkomst tot nu toe + Type + Type - Toggle Password (%1) - Wachtwoord schakelen (%1) + Bits + Bits - Generate Password (%1) - Wachtwoord genereren (%1) + Comment + Opmerking + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Passkey Export - Warning: Caps Lock enabled! - Let op: Caps Lock geactiveerd! + Filenames will be generated with title and .passkey file extension. + Bestandsnamen worden gegenereerd met de titel en de bestandsextensie .passkey. + + + Export entries + Items exporteren + + + Export Selected + Selectie exporteren + + + Cancel + Annuleren + + + Export to folder + Exporteer naar map + + + Export the following passkey entries. + De volgende passkey items exporteren: + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC - Passkey Export + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Bestand "%1.passkey" bestaat al. +Wil je het overschrijven? + + + + Cannot open file + Kan bestand niet openen + + + Cannot open file "%1" for writing. + Kan bestand "%1" niet openen om te schrijven. + + + Cannot write to file + Kan niet naar bestand schrijven + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passkey Import + + + Username: %1 + Gebruikersnaam: %1 + + + Group + Groep + + + Database + Database + + + Import Passkey + Passkey importeren + + + Import + Importeren + + + Cancel + Annuleren + + + Entry + Item + + + Create new entry + Nieuw item aanmaken + + + Relying Party: %1 + Vertrouwende partij: %1 + + + Import the following passkey: + De volgende passkey importeren: + + + Import the following passkey to this entry: + De volgende passkeys importeren naar dit item: + + + Default passkeys group (Imported Passkeys) + Standaardgroep voor passkeys (Imported Passkeys) + + + + PasskeyImporter + + Passkey file + Passkey-bestand + + + All files + Alle bestanden + + + Cannot open file + Kan bestand niet openen + + + Cannot open file "%1" for reading. + Kan bestand "%1" niet openen om te lezen. + + + Open passkey file + Passkey-bestand openen + + + Cannot import passkey + Kan passkey niet importeren + + + Cannot import passkey file "%1". Data is missing. + Kan passkey-bestand "%1" niet importeren. Gegevens ontbreken. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Kan passkey-bestand "%1" niet importeren. +De volgende gegevens ontbreken: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Kan passkey-bestand "%1" niet importeren. Persoonlijke sleutel ontbreekt of is ongeldig. PasswordEditWidget Enter password: - Wachtwoord invoeren: + Voer wachtwoord in: Password field - Wachtwoord invulveld + Wachtwoordveld Confirm password: @@ -5804,7 +6899,7 @@ Wil je KeePassXC nu opnieuw opstarten? Repeat password field - Wachtwoord herhaling veld + Veld voor wachtwoordherhaling Password @@ -5824,7 +6919,7 @@ Wil je KeePassXC nu opnieuw opstarten? Password set, click to change or remove - Wachtwoord ingesteld, klik om te wijzigen of verwijderen + Wachtwoord ingesteld - klik om te wijzigen of te verwijderen <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> @@ -5832,7 +6927,7 @@ Wil je KeePassXC nu opnieuw opstarten? Passwords do not match. - Wachtwoorden komen niet overeen. + De wachtwoorden komen niet overeen. @@ -5888,7 +6983,7 @@ Wil je KeePassXC nu opnieuw opstarten? Character Types - Tekens + Tekensoorten Special characters @@ -5896,7 +6991,7 @@ Wil je KeePassXC nu opnieuw opstarten? Quotes - Aanhalingstekens + Dubbele aanhalingstekens Punctuation @@ -5904,11 +6999,11 @@ Wil je KeePassXC nu opnieuw opstarten? Dashes and Slashes - Streepjes en schuine streepjes + Streepjes en schuine strepen Upper-case letters - Hoofdletters + HOOFDLETTERS Numbers @@ -5916,11 +7011,11 @@ Wil je KeePassXC nu opnieuw opstarten? Lower-case letters - Kleine letters + kleine letters Math Symbols - Wiskunde tekens + Wiskundige tekens Extended ASCII @@ -5944,11 +7039,11 @@ Wil je KeePassXC nu opnieuw opstarten? Add non-hex letters to "do not include" list - Voeg niet-hex karakters toe aan de "niet gebruiken" lijst + Voeg niet-hextekens toe aan de ‘niet gebruiken’-lijst Hex Passwords - Hex wachtwoord + Hex-wachtwoorden Hex @@ -5956,27 +7051,23 @@ Wil je KeePassXC nu opnieuw opstarten? Character set to exclude from generated password - Tekenset die niet gebruikt mag worden in het gegenereerde wachtwoord + De tekenset die niet gebruikt mag worden in het gegenereerde wachtwoord Excluded characters - Niet te gebruiken tekens + Uitgesloten tekens Also choose from: Kies ook uit: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Niet te gebruiken karakters: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters - Op elkaar lijkende tekens niet gebruiken + Op elkaar lijkende tekens uitsluiten Pick characters from every group - Gebruik tekens uit iedere groep + Tekens uit iedere groep gebruiken Passphrase @@ -5994,13 +7085,9 @@ Wil je KeePassXC nu opnieuw opstarten? Word Count: Aantal woorden: - - Character Count: - Aantal tekens: - Word Case: - Teken grootte + Hoofdlettergebruik: Delete selected wordlist @@ -6010,10 +7097,6 @@ Wil je KeePassXC nu opnieuw opstarten? Add custom wordlist Aangepaste woordenlijst toevoegen - - character - teken - Close Sluiten @@ -6024,11 +7107,11 @@ Wil je KeePassXC nu opnieuw opstarten? Apply Password - Wachtwoord gebruiken + Wachtwoord toepassen Regenerate password (%1) - Òpnieuw genereren (%1) + Opnieuw genereren (%1) lower case @@ -6040,7 +7123,7 @@ Wil je KeePassXC nu opnieuw opstarten? Title Case - Eerste Letter Als Hoofdletter + Beginhoofdletters (SYSTEM) @@ -6050,60 +7133,14 @@ Wil je KeePassXC nu opnieuw opstarten? Entropy: %1 bit Entropie: %1 bit - - Confirm Delete Wordlist - Verwijdering woordenlijst bevestigen - - - Do you really want to delete the wordlist "%1"? - Wil je de woordenlijst "%1" echt verwijderen? - - - Failed to delete wordlist - Woordenlijst is niet verwijderd - - - Wordlists - Woordenlijsten - - - All files - Alle bestanden - - - Select Custom Wordlist - Aangepaste woordenlijst selecteren - - - Overwrite Wordlist? - Woordenlijst overschrijven? - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - Woordenlijst "%1" bestaat al als een aangepaste woordenlijst. -Wil je deze overschrijven? - - - Failed to add wordlist - Woordenlijst is niet toegevoegd - - - Logograms - Special tekens - - - Special Characters - Speciale tekens - Password Quality: %1 - Kwaliteit: %1 + Wachtwoordsterkte: %1 Poor Password quality - Slecht + Matig Weak @@ -6120,6 +7157,119 @@ Wil je deze overschrijven? Password quality Uitstekend + + Confirm Delete Wordlist + Verwijderen van woordenlijst bevestigen + + + Do you really want to delete the wordlist "%1"? + Wil je de woordenlijst “%1” verwijderen? + + + Failed to delete wordlist + Kan woordenlijst niet verwijderen + + + Wordlists + Woordenlijsten + + + All files + Alle bestanden + + + Select Custom Wordlist + Selecteer aangepaste woordenlijst + + + Overwrite Wordlist? + Woordenlijst overschrijven? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + De woordenlijst “%1” bestaat al als aangepaste woordenlijst. +Wil je deze overschrijven? + + + Failed to add wordlist + Kan woordenlijst niet toevoegen + + + Logograms + Logogrammen + + + Special Characters + Speciale tekens + + + passwordLength + passwordLength + + + Characters: %1 + Karakters: %1 + + + MIXED case + GEmengDe letters + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Uitgesloten tekens: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + De wachtwoorden komen niet overeen + + + Passwords match so far + Overeenkomst van wachtwoorden tot dusver + + + Toggle Password (%1) + Wachtwoord tonen/verbergen (%1) + + + Generate Password (%1) + Wachtwoord genereren (%1) + + + Warning: Caps Lock enabled! + Let op: CapsLock is ingeschakeld! + + + Quality: %1 + Sterkte: %1 + + + Poor + Password quality + Matig + + + Weak + Password quality + Zwak + + + Good + Password quality + Goed + + + Excellent + Password quality + Uitstekend + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Wachtwoorden tonen/verbergen met Ctrl + H. Wachtwoordgenerator openen met Ctrl + G. + PickcharsDialog @@ -6129,11 +7279,26 @@ Wil je deze overschrijven? Select characters to type, navigate with arrow keys, Ctrl + S submits. - Selecteer tekens om te typen, navigeer met pijltoetsen, Ctrl + S verzendt. + Selecteer tekens om te typen, navigeer met de pijltjestoetsen, verstuur met Ctrl + S. Press &Tab between characters - Druk &Tab tussen de tekens + Druk op &Tab tussen de tekens + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Voorbeeld van bijlage bij item + + + No preview available + Geen voorbeeld beschikbaar + + + Image format not supported + Afbeeldingsformaat niet ondersteund @@ -6152,7 +7317,7 @@ Wil je deze overschrijven? Empty - Leeg + Legen Remove @@ -6174,20 +7339,24 @@ Wil je deze overschrijven? Continue Doorgaan + + Continue with weak password + Doorgaan met zwak wachtwoord + QObject Database not opened - Database niet geopend + De database is niet geopend Database hash not available - Database-hashwaarde is niet beschikbaar + Controlegetal van database niet beschikbaar Client public key not received - Openbare sleutel niet ontvangen + De openbare sleutel is niet ontvangen Cannot decrypt message @@ -6195,15 +7364,15 @@ Wil je deze overschrijven? Action cancelled or denied - Actie afgebroken of geweigerd + De actie is afgebroken of geweigerd Message encryption failed. - Berichtcodering is mislukt. + Berichtversleuteling is mislukt. KeePassXC association failed, try again - KeePassXC-koppeling is mislukt, probeer het opnieuw + De KeePassXC-koppeling is mislukt - probeer het opnieuw Encryption key is not recognized @@ -6239,7 +7408,7 @@ Wil je deze overschrijven? Unknown error - Onbekende fout + Onbekende foutmelding Browser Integration @@ -6247,15 +7416,15 @@ Wil je deze overschrijven? Browser Plugin Failure - Fout met browser-extensie + Browserextensie-foutmelding Could not save the native messaging script file for %1. - Kan het native messaging scriptbestand voor %1 niet opslaan. + Kan het native messaging-scriptbestand van %1 niet opslaan. Username for the entry. - Gebruikersnaam voor het item. + De gebruikersnaam van het item. username @@ -6263,7 +7432,7 @@ Wil je deze overschrijven? URL for the entry. - URL voor het item. + De URL van het item. URL @@ -6271,7 +7440,7 @@ Wil je deze overschrijven? Notes for the entry. - Notities bij het item. + De notities bij het item. Notes @@ -6279,7 +7448,7 @@ Wil je deze overschrijven? Prompt for the entry's password. - Vraag om het item's wachtwoord. + Vraag om het wachtwoord van het item. Generate a password for the entry. @@ -6287,31 +7456,31 @@ Wil je deze overschrijven? Add a new entry to a database. - Nieuw item toevoegen aan een database. + Voeg een nieuw item toe aan een database. Path of the entry to add. - Pad van toe te voegen item. + De locatie van het toe te voegen item. Cannot generate a password and prompt at the same time. - Kan geen wachtwoord en prompt op hetzelfde moment genereren! + Kan niet tegelijkertijd een wachtwoord en prompt genereren. Could not create entry with path %1. - Kan geen item maken met pad %1. + Kan geen item aanmaken met de locatie %1. Enter password for new entry: - Voer wachtwoord in voor nieuw item: + Voer het wachtwoord in van het nieuwe item: Writing the database failed %1. - Het schrijven van de database is mislukt %1. + De database kan niet worden weggeschreven %1. Successfully added entry %1. - Item %1 toegevoegd. + Item %1 is toegevoegd. Adds a new group to a database. @@ -6319,7 +7488,7 @@ Wil je deze overschrijven? Path of the group to add. - Pad van de toe te voegen groep. + Locatie van de toe te voegen groep. Group %1 already exists! @@ -6327,15 +7496,15 @@ Wil je deze overschrijven? Group %1 not found. - Groep %1 niet gevonden. + Groep %1 is niet aangetroffen. Successfully added group %1. - Groep %1 toegevoegd. + Groep %1 is toegevoegd. Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - Controleer of er wachtwoorden zijn gelekt en openbaar zijn gemaakt. BESTANDSNAAM moet het pad zijn van een bestand met SHA-1-hashes van gelekte wachtwoorden in HIBP-indeling, zoals beschikbaar op https://haveibeenpwned.com/Passwords. + Controleer of er wachtwoorden zijn gelekt en openbaar zijn gemaakt. BESTANDSNAAM dient de locatie te zijn van een bestand met SHA-1-controlegetallen van gelekte wachtwoorden in HIBP-indeling, zoals beschikbaar op https://haveibeenpwned.com/Passwords. FILENAME @@ -6359,19 +7528,19 @@ Wil je deze overschrijven? Evaluating database entries using okon… - Database-items evalueren met okon... + Database-items evalueren met okon… Failed to open HIBP file %1: %2 - Kon HIBP bestand niet openen %1: %2 + Kan HIBP-bestand %1 niet openen: %2 Evaluating database entries against HIBP file, this will take a while… - Database items evalueren t.o.v. HIBP-bestand, dit kan even duren... + Database-items evalueren met behulp van het HIBP-bestand, dit kan even duren… Password for '%1' has been leaked %2 time(s)! - Wachtwoord voor '%1' is %2 keer gelekt!Wachtwoorden voor '%1' zijn %2 keer gelekt! + Wachtwoord voor '%1' is %2 keer gelekt!Wachtwoord voor '%1' is %2 keer gelekt! Password for '%1' has been leaked! @@ -6411,7 +7580,7 @@ Wil je deze overschrijven? Successfully exported attachment %1 of entry %2 to %3. - Bijlage %1 van item %2 tot en met %3 met succes geëxporteerd. + Bijlage %1 van item %2 met succes geëxporteerd naar %3. Overwrite existing attachments. @@ -6443,11 +7612,11 @@ Wil je deze overschrijven? Successfully imported attachment %1 as %2 to entry %3. - Bijlage %1 met succes als %2 ingevoerd bij %3. + Bijlage %1 met succes als %2 ingevoerd bij item %3. Remove an attachment of an entry. - Verwijder een bijlage van een vermelding. + Verwijder een bijlage van een item. Name of the attachment to be removed. @@ -6455,12 +7624,12 @@ Wil je deze overschrijven? Successfully removed attachment %1 from entry %2. - Bijlage %1 uit vermelding %2 is verwijderd. + Bijlage %1 is van item %2 verwijderd. Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Kopieer het gegeven kenmerk naar het klembord. Dit is "wachtwoord" tenzij anders gespecificeerd. + Kopieer het gegeven kenmerk naar het klembord. Dit is standaard "wachtwoord" tenzij anders gespecificeerd. Copy the current TOTP to the clipboard (equivalent to "-a totp"). @@ -6481,7 +7650,7 @@ Wil je deze overschrijven? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - Time-out voordat het klembord wordt leeg gemaakt (standaard is %1 seconden, gebruik 0 voor onbeperkt). + Time-out voordat het klembord wordt gewist (standaard %1 seconden, gebruik 0 voor onbeperkt). Invalid timeout value %1. @@ -6505,7 +7674,7 @@ Wil je deze overschrijven? Entry with path %1 has no TOTP set up. - Item met pad %1 heeft geen TOTP instellingen. + Item met pad %1 heeft geen TOTP ingesteld. ERROR: attribute %1 is ambiguous, it matches %2. @@ -6521,7 +7690,7 @@ Wil je deze overschrijven? Clearing the clipboard in %1 second(s)... - Het klemboard wordt over %1 seconde(n) gewist...Het klembord wordt over %1 seconde(n) gewist... + Klembord over %1 seconde wissen…Klembord over %1 seconden wissen… Clipboard cleared! @@ -6533,11 +7702,11 @@ Wil je deze overschrijven? Display this help. - Toont deze helptekst. + Toon deze helptekst. Silence password prompt and other secondary outputs. - Wachtwoordprompt en andere bijkomstige meldingen verbergen. + Wachtwoordprompt en andere bijkomstige meldingen dempen. Key file of the database. @@ -6553,7 +7722,7 @@ Wil je deze overschrijven? Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Yubikey-positie en optioneel serienummer dat wordt gebruikt om toegang te krijgen tot de database (bijv. 1: 7370001). + Yubikey-positie en optioneel serienummer dat wordt gebruikt om toegang te krijgen tot de database (bijv. 1:7370001). slot[:serial] @@ -6561,15 +7730,19 @@ Wil je deze overschrijven? Missing positional argument(s). - Er ontbreken positionele argument(en). + Er ontbreken positionele argumenten. Too many arguments provided. Te veel argumenten. + + Path of the database. + Pad naar de database. + Target decryption time in MS for the database. - Beoogde decoderingstijd voor de database [ms]. + Beoogde decoderingstijd voor de database in ms. time @@ -6577,7 +7750,7 @@ Wil je deze overschrijven? Set the key file for the database. - Het sleutelbestand voor de database instellen. + Stel het sleutelbestand in voor de database. Set a password for the database. @@ -6585,11 +7758,7 @@ Wil je deze overschrijven? Create a new database. - Nieuwe database aanmaken - - - Path of the database. - Pad naar de database. + Nieuwe database aanmaken. Invalid decryption time %1. @@ -6636,287 +7805,60 @@ Wil je deze overschrijven? Nieuwe database is aangemaakt - Word count for the diceware passphrase. - Aantal woorden voor de Diceware wachtwoordzin. + Unset the password for the database. + Maak het wachtwoord voor de database ongedaan. - count - CLI parameter - aantal + Unset the key file for the database. + Schakel het sleutelbestand voor de database uit. - Wordlist for the diceware generator. -[Default: EFF English] - Woordenlijst voor de Diceware-generator. -[Standaard: EFF Engels] + Edit a database. + Een database bewerken. - Generate a new random diceware passphrase. - Genereer een nieuwe willekeurige Diceware wachtwoordzin + Cannot use %1 and %2 at the same time. + %1 en %2 kunnen niet tegelijkertijd worden gebruikt. - Invalid word count %1 - Ongeldig aantal woorden %1 + Could not change the database key. + Kan de databasesleutel niet wijzigen. - The word list is too small (< 1000 items) - De woordenlijst is te klein (< 1000 items) - - - Title for the entry. - Naam voor deze entry. - - - title - naam - - - Edit an entry. - Een item bewerken. - - - Path of the entry to edit. - Pad van het te bewerken item. - - - Not changing any field for entry %1. - Geen enkel veld in item %1 is gewijzigd. - - - Enter new password for entry: - Voer nieuw wachtwoord in voor item: + Database was not modified. + De database is niet bewerkt. Writing the database failed: %1 Het schrijven van de database is mislukt: %1 - Successfully edited entry %1. - Item %1 is aangepast. + Successfully edited the database. + De database is bewerkt. - Perform advanced analysis on the password. - Geavanceerde analyse op het wachtwoord uitvoeren. + Cannot remove password: The database does not have a password. + Kan wachtwoord niet verwijderen: De database heeft geen wachtwoord. - Password for which to estimate the entropy. - Wachtwoord waarvoor de entropie geschat moet worden. + Cannot remove file key: The database does not have a file key. + Kan het sleutelbestand niet wissen: De database heeft geen sleutelbestand. - Estimate the entropy of a password. - De entropie van een wachtwoord inschatten. + Loading the new key file failed: %1 + Kan het nieuwe sleutelbestand niet laden: %1 - Length %1 - Lengte %1 + Found unexpected Key type %1 + Onverwacht sleuteltype aangetroffen: ‘%1’ - Entropy %1 - Entropie %1 - - - Log10 %1 - Log10 %1 - - - Multi-word extra bits %1 - Multi-word extra bits %1 - - - Type: Bruteforce - Type: Brute kracht - - - Type: Dictionary - Type: Woordenboek - - - Type: Dict+Leet - Type: Woordenboek + Leet - - - Type: User Words - Type: Gebruikerwoorden - - - Type: User+Leet - Type: Gebruikerwoorden + Leet - - - Type: Repeated - Type: Herhaald - - - Type: Sequence - Type: Reeks - - - Type: Spatial - Type: Ruimtelijk - - - Type: Date - Type: Datum - - - Type: Bruteforce(Rep) - Type: Brute kracht (herh) - - - Type: Dictionary(Rep) - Type: Woordenboek (herh) - - - Type: Dict+Leet(Rep) - Type: Woordenboek + Leet (herh) - - - Type: User Words(Rep) - Type: Gebruikerwoorden (herh) - - - Type: User+Leet(Rep) - Type: Gebruikerwoorden + Leet (herh) - - - Type: Repeated(Rep) - Type: Herhaald (herh) - - - Type: Sequence(Rep) - Type: Reeks (herh) - - - Type: Spatial(Rep) - Type: Ruimtelijk (herh) - - - Type: Date(Rep) - Type: Datum (herh) - - - Type: Unknown (%1) - Type: Onbekend (%1) - - - Entropy %1 (%2) - Entropie %1 (%2) - - - *** Password length (%1) != sum of length of parts (%2) *** - *** Wachtwoordlengte (%1) ! = som van de lengte van de onderdelen (%2) *** - - - Exit interactive mode. - Interactieve modus afsluiten. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formaat om te gebruiken bij het exporteren. Beschikbare keuzes zijn 'xml' of 'csv'. Standaard ingesteld op 'xml'. - - - Exports the content of a database to standard output in the specified format. - Exporteert de inhoud van een database naar standaarduitvoer in de opgegeven indeling. - - - Unable to export database to XML: %1 - Kon de database niet exporteren naar XML: %1 - - - Unsupported format %1 - Niet-ondersteund formaat %1 - - - Length of the generated password - Lengte van het gegenereerde wachtwoord - - - length - lengte - - - Use lowercase characters - Kleine letters gebruiken - - - Use uppercase characters - Hoofdletters gebruiken - - - Use numbers - Getallen gebruiken. - - - Use special characters - Speciale tekens gebruiken - - - Use extended ASCII - Uitgebreide ASCII-tekens gebruiken - - - Exclude character set - Tekenset uitsluiten - - - chars - Tekens - - - Use custom character set - Aangepaste tekenset gebruiken - - - Exclude similar looking characters - Op elkaar lijkende tekens niet gebruiken - - - Include characters from every selected group - Tekens uit iedere geslecteerde groep opnemen - - - Generate a new random password. - Genereer een willekeurig wachtwoord - - - Invalid password length %1 - Ongeldige wachtwoordlengte %1 - - - Invalid password generator after applying all options - Ongeldige wachtwoordgenerator na het toepassen van alle opties - - - Display command help. - Toon helptekst voor opdracht. - - - Available commands: - Beschikbare opdrachten: - - - Import the contents of an XML database. - Importeer de inhoud van een XML-database. - - - Path of the XML database export. - Pad van de XML-database export. - - - Path of the new database. - Pad van de nieuwe database. - - - Unable to import XML database: %1 - Kan XML-database niet importeren: %1 - - - Successfully imported database. - Database is geïmporteerd. + Cannot remove all the keys from a database. + Niet alle sleutels kunnen worden gewist. Show a database's information. - Toon de gegevens van een database. + Informatie van een database weergeven. UUID: @@ -6992,7 +7934,7 @@ Wil je deze overschrijven? Maximum password reuse - Maximaal wachtwoordherbruik + Maximaal hergebruik van wachtwoorden Number of short passwords @@ -7014,6 +7956,273 @@ Wil je deze overschrijven? %1 characters %1 tekens + + Word count for the diceware passphrase. + Aantal woorden voor de Diceware wachtwoordzin. + + + count + CLI parameter + aantal + + + Wordlist for the diceware generator. +[Default: EFF English] + Woordenlijst voor de Diceware-generator. +[Standaard: EFF Engels] + + + Generate a new random diceware passphrase. + Genereer een nieuwe willekeurige Diceware wachtwoordzin + + + Invalid word count %1 + Ongeldig aantal woorden %1 + + + Title for the entry. + Titel van dit item. + + + title + titel + + + Edit an entry. + Een item bewerken. + + + Path of the entry to edit. + Pad van het te bewerken item. + + + Not changing any field for entry %1. + Geen enkel veld wijzigen voor item %1. + + + Enter new password for entry: + Voer nieuw wachtwoord in voor item: + + + Successfully edited entry %1. + Item %1 is aangepast. + + + Perform advanced analysis on the password. + Geavanceerde analyse op het wachtwoord uitvoeren. + + + Password for which to estimate the entropy. + Wachtwoord om de entropie te schatten. + + + Estimate the entropy of a password. + De entropie van een wachtwoord inschatten. + + + Length %1 + Lengte %1 + + + Entropy %1 + Entropie %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Multi-word extra bits %1 + + + Type: Bruteforce + Type: Brute kracht + + + Type: Dictionary + Type: Woordenboek + + + Type: Dict+Leet + Type: Woordenboek + Leet + + + Type: User Words + Type: Gebruikerswoorden + + + Type: User+Leet + Type: Gebruikerswoorden + Leet + + + Type: Repeated + Type: Herhaald + + + Type: Sequence + Type: Reeks + + + Type: Spatial + Type: Ruimtelijk + + + Type: Date + Type: Datum + + + Type: Bruteforce(Rep) + Type: Brute kracht (herh) + + + Type: Dictionary(Rep) + Type: Woordenboek (herh) + + + Type: Dict+Leet(Rep) + Type: Woordenboek + Leet (herh) + + + Type: User Words(Rep) + Type: Gebruikerswoorden (herh) + + + Type: User+Leet(Rep) + Type: Gebruikerswoorden + Leet (herh) + + + Type: Repeated(Rep) + Type: Herhaald (herh) + + + Type: Sequence(Rep) + Type: Reeks (herh) + + + Type: Spatial(Rep) + Type: Ruimtelijk (herh) + + + Type: Date(Rep) + Type: Datum (herh) + + + Type: Unknown (%1) + Type: Onbekend (%1) + + + Entropy %1 (%2) + Entropie %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Wachtwoordlengte (%1) ! = som van de lengte van de onderdelen (%2) *** + + + Exit interactive mode. + Interactieve modus afsluiten. + + + Exports the content of a database to standard output in the specified format. + Exporteert de inhoud van een database naar standaarduitvoer in de opgegeven indeling. + + + Unable to export database to XML: %1 + Kan de database niet exporteren naar XML: %1 + + + Unsupported format %1 + Niet-ondersteund formaat %1 + + + Length of the generated password + Lengte van het gegenereerde wachtwoord + + + length + lengte + + + Use lowercase characters + Kleine letters gebruiken + + + Use uppercase characters + Hoofdletters gebruiken + + + Use numbers + Cijfers gebruiken. + + + Use special characters + Speciale tekens gebruiken + + + Use extended ASCII + Uitgebreide ASCII-tekens gebruiken + + + Exclude character set + Tekenset uitsluiten + + + chars + tekens + + + Use custom character set + Aangepaste tekenset gebruiken + + + Exclude similar looking characters + Op elkaar lijkende tekens uitsluiten + + + Include characters from every selected group + Tekens uit iedere geslecteerde groep opnemen + + + Generate a new random password. + Genereer een willekeurig wachtwoord + + + Invalid password length %1 + Ongeldige wachtwoordlengte %1 + + + Invalid password generator after applying all options + Ongeldige wachtwoordgenerator na toepassing van alle opties + + + Display command help. + Toon helptekst voor opdracht. + + + Available commands: + Beschikbare opdrachten: + + + Import the contents of an XML database. + Importeer de inhoud van een XML-database. + + + Path of the XML database export. + Pad van de XML-database export. + + + Path of the new database. + Pad van de nieuwe database. + + + Unable to import XML database: %1 + Kan XML-database niet importeren: %1 + + + Successfully imported database. + Database is geïmporteerd. + Unknown command %1 Onbekende opdracht %1 @@ -7026,7 +8235,7 @@ Available commands: Beschikbare opdrachten: -: + Name of the command to execute. @@ -7050,7 +8259,7 @@ Beschikbare opdrachten: List database entries. - Lijst van database-items. + Database-items opsommen. Path of the group to list. Default is / @@ -7062,23 +8271,23 @@ Beschikbare opdrachten: Use the same credentials for both database files. - Gebruik dezelfde gegevens voor beide gegevensbestanden. + Gebruik dezelfde inloggegevens voor beide databasebestanden. Key file of the database to merge from. - Sleutelbestand van gegevensbestand om samen te voegen. + Sleutelbestand van de database om uit samen te voegen. Deactivate password key for the database to merge from. - Deactiveer de wachtwoordsleutel voor de database waaruit je wil samenvoegen. + Deactiveer de wachtwoordsleutel voor de database om uit samen te voegen. Only print the changes detected by the merge operation. - Alleen de wijzigingen afdrukken die zijn gedetecteerd door de samenvoegbewerking. + Druk alleen de wijzigingen af die zijn gedetecteerd door de samenvoegbewerking. Yubikey slot for the second database. - YubiKey positie voor de tweede database. + YubiKey-positie voor de tweede database. slot @@ -7104,11 +8313,11 @@ Beschikbare opdrachten: Successfully merged %1 into %2. - %1 en %2 zijn samengevoegd. + %1 is toegevoegd aan %2. Database was not modified by merge operation. - Database werd niet gewijzigd door het samenvoegen. + Database is niet gewijzigd door samenvoeging. Moves an entry to a new group. @@ -7136,7 +8345,7 @@ Beschikbare opdrachten: Open a database. - Open een gegevensbestand. + Open een database. Path of the entry to remove. @@ -7160,7 +8369,7 @@ Beschikbare opdrachten: Cannot remove root group from database. - Kan de hoofdgroep niet verwijderen uit de database. + Kan de hoofdgroep niet uit de database verwijderen. Successfully recycled group %1. @@ -7180,15 +8389,19 @@ Beschikbare opdrachten: Show the entry's current TOTP. - Toon de huidige TOTP van het item. + De huidige TOTP van het item weergeven. Show the protected attributes in clear text. - Toon de beschermde kenmerken in tekst. + De beschermde kenmerken in tekst weergeven. + + + Show all the attributes of the entry. + Alle kenmerken van het item weergeven. Show the attachments of the entry. - Toon de bijlagen van het item. + De bijlagen van het item weergeven. 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. @@ -7200,11 +8413,11 @@ Beschikbare opdrachten: Show an entry's information. - Toon de informatie die hoort bij een item. + Informatie over een item weergeven. Name of the entry to show. - Naam van het item dat getoond moet worden. + Naam van het weer te geven item. ERROR: unknown attribute %1. @@ -7220,23 +8433,23 @@ Beschikbare opdrachten: Failed to open database file %1: not found - Kan het databasebestand %1 niet openen: niet gevonden + Kan databasebestand %1 niet openen: niet gevonden Failed to open database file %1: not a plain file - Kan het databasebestand %1 niet openen: geen gewoon bestand + Kan databasebestand %1 niet openen: geen normaal bestand Failed to open database file %1: not readable - Kan het databasebestand %1 niet openen: niet leesbaar + Kan databasebestand %1 niet openen: niet leesbaar Enter password to unlock %1: - Geef het wachtwoord om %1 te ontgrendelen: + Voer het wachtwoord in om %1 te ontgrendelen: Failed to load key file %1: %2 - Er ging iets fout bij het laden van sleutelbestand %1: %2 + Kan sleutelbestand %1 niet laden: %2 WARNING: You are using an old key file format which KeePassXC may @@ -7244,17 +8457,21 @@ stop supporting in the future. Please consider generating a new key file. WAARSCHUWING: Je gebruikt een oud sleutelbestandsformaat dat KeePassXC -in de toekomst mogelijk niet meer kan ondersteunen. +in de toekomst mogelijk niet meer ondersteunt. Overweeg om een nieuw sleutelbestand te genereren. Invalid YubiKey slot %1 - Ongeldige YubiKey positie %1 + Ongeldige YubiKey-positie %1 Invalid YubiKey serial %1 - Ongeldig YubiKey nummer %1 + Ongeldig YubiKey-nummer %1 + + + Please present or touch your YubiKey to continue. + Plaats je YubiKey of druk er op om door te gaan. Enter password to encrypt database (optional): @@ -7266,15 +8483,15 @@ Overweeg om een nieuw sleutelbestand te genereren. Repeat password: - Herhaal wachtwoord: + Wachtwoord herhalen: Error: Passwords do not match. - Fout: wachtwoorden komen niet overeen. + Fout: Wachtwoorden komen niet overeen. No program defined for clipboard manipulation - Geen programma ingesteld voor klembord manipulatie + Geen programma ingesteld voor manipulatie van klembord All clipping programs failed. Tried %1 @@ -7292,7 +8509,7 @@ Overweeg om een nieuw sleutelbestand te genereren. HIBP file, line %1: parse error - HIBP-bestand, regel %1: fout bij interpreteren + HIBP-bestand, regel %1: verwerkingsfout To use okon, you must provide a post-processed file (e.g. file.okon) @@ -7316,7 +8533,7 @@ Overweeg om een nieuw sleutelbestand te genereren. Password entropy is %1 bits - Wachtwoord-entropie is %1 bits + Entropie van wachtwoord is %1 bits Weak password @@ -7328,7 +8545,7 @@ Overweeg om een nieuw sleutelbestand te genereren. Password is used %1 time(s) - Wachtwoord wordt %1 keer gebruiktWachtwoord wordt %1 keer gebruikt + Wachtwoord is %1 keer gebruiktWachtwoord is %1 keer gebruikt Password has expired @@ -7348,7 +8565,7 @@ Overweeg om een nieuw sleutelbestand te genereren. Password expires in %1 day(s) - Wachtwoord verloopt over %1 dag(en)Wachtwoord verloopt over %1 dag(en) + Wachtwoord verloopt over %1 dagWachtwoord verloopt over %1 dagen Password will expire soon @@ -7356,15 +8573,15 @@ Overweeg om een nieuw sleutelbestand te genereren. Version %1 - Versie %1 + Version %1 Build Type: %1 - Bouwtype: %1 + Build Type: %1 Revision: %1 - Revisie: %1 + Revision: %1 Distribution: %1 @@ -7372,23 +8589,23 @@ Overweeg om een nieuw sleutelbestand te genereren. Debugging mode is disabled. - De foutopsporingsmodus is uitgeschakeld. + Debugging mode is disabled. Debugging mode is enabled. - De foutopsporingsmodus is ingeschakeld. + Debugging mode is enabled. Operating system: %1 CPU architecture: %2 Kernel: %3 %4 - Besturingssysteem: %1 -CPU-architectuur: %2 -Kernelversie: %3 %4 + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 Auto-Type - Auto-type + Automatisch invullen SSH Agent @@ -7408,7 +8625,7 @@ Kernelversie: %3 %4 Secret Service Integration - Integratie van geheime diensten + Integratie met Secret Service None @@ -7416,39 +8633,39 @@ Kernelversie: %3 %4 Enabled extensions: - Geactiveerde extensies: + Enabled extensions: over %1 year(s) - meer dan %1 jaarmeer dan %1 jaar + meer dan %1 jaarmeer dan %1 jaren about %1 month(s) - ongeveer %1 maand(en)ongeveer %1 maand(en) + ongeveer %1 maandongeveer %1 maanden %1 week(s) - %1 week(en)%1 week(en) + %1 week%1 weken %1 day(s) - %1 dag(en)%1 dag(en) + %1 dag%1 dagen %1 hour(s) - %1 uur%1 uur + %1 uur%1 uren %1 minute(s) - %1 minuut(en)%1 minuut(en) + %1 minuut%1 minuten - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan-bibliotheek moet minstens versie 2.11.x zijn. %1.%2.%3 is aangetroffen. + Botan library must be at least %1, found %2.%3.%4 + Botan-bibliotheek moet minstens versie %1 zijn. Aangetroffen: %2.%3.%4 Cryptographic libraries: - Cryptografische bibliotheken: + Cryptographic libraries: AES (%1 rounds) @@ -7456,11 +8673,11 @@ Kernelversie: %3 %4 Argon2%1 (%2 rounds, %3 KB) - Argon2%1 (%2 cycli, %3 KB) + Argon2%1 (%2 iteraties, %3 KB) SymmetricCipher::init: Invalid cipher mode. - SymmetricCipher::init: Ongeldige cijfermodus. + SymmetricCipher::init: Ongeldige versleutelingsmodus. SymmetricCipher::init: Invalid IV size of %1 for %2. @@ -7468,7 +8685,7 @@ Kernelversie: %3 %4 Cipher not initialized prior to use. - Codering niet geïnitialiseerd voor gebruik. + Versleuteling niet geïnitialiseerd voor gebruik. Cannot process 0 length data. @@ -7494,18 +8711,6 @@ Kernelversie: %3 %4 file empty leeg bestand - - malformed string - misvormde tekenreeks - - - missing closing quote - afsluitend aanhalingsteken ontbreekt - - - %1: (row, col) %2,%3 - %1: (rij, col) %2,%3 - AES 256-bit AES 256-bit @@ -7536,15 +8741,15 @@ Kernelversie: %3 %4 Existing single-instance lock file is invalid. Launching new instance. - Het bestaande single-instance vergrendelingsbestand is niet geldig. Een nieuwe instantie wordt gestart. + Het bestaande vergrendelingsbestand voor één-exemplaarmodus is niet geldig. Een nieuw exemplaar wordt gestart. The lock file could not be created. Single-instance mode disabled. - Het vergrendelingsbestand kon niet worden aangemaakt. Single-instance mode uitgeschakeld. + Het vergrendelingsbestand kon niet worden aangemaakt. Eén-exemplaarmodus uitgeschakeld. Clearing the clipboard in %1 second(s)… - Het klembord wissen in %1 seconde(n)…Het klembord wissen in %1 seconde(n)… + Klembord wissen na %1 seconde…Klembord wissen na %1 seconden… Group @@ -7552,7 +8757,7 @@ Kernelversie: %3 %4 Title - Naam + Titel Username @@ -7594,27 +8799,27 @@ Kernelversie: %3 %4 Do you really want to delete the entry "%1" for good? - Weet je zeker dat je item "%1" definitief wil verwijderen? + Wil je item "%1" voorgoed verwijderen? Do you really want to delete %n entry(s) for good? - Wilt u echt %n item(s) voorgoed verwijderen?Wilt je echt %n item(s) voorgoed verwijderen? + Wil je %n item voorgoed verwijderen?Wil je %n items voorgoed verwijderen? Delete entry(s)? - Item(s) verwijderen?Item(s) verwijderen? + Item verwijderen?Items verwijderen? Do you really want to move entry "%1" to the recycle bin? - Weet je zeker dat je item "%1" naar de prullenbak wil verplaatsen? + Wil je item "%1" naar de prullenbak verplaatsen? Do you really want to move %n entry(s) to the recycle bin? - Wil je echt %n entry(s) naar de prullenbak verplaatsen?Wil je echt %n item(s) naar de prullenbak verplaatsen? + Wil je %n item naar de prullenbak verplaatsen?Wil je %n items naar de prullenbak verplaatsen? Move entry(s) to recycle bin? - Item(s) verplaatsen naar prullenbak?Item(s) verplaatsen naar prullenbak? + Item naar prullenbak verplaatsen?Items naar prullenbak verplaatsen? Replace references to entry? @@ -7622,7 +8827,7 @@ Kernelversie: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - Vermelding "%1" heeft %2 referentie(s). Wilt u verwijzingen overschrijven met waarden, dit item overslaan of toch verwijderen?Vermelding "%1" heeft %2 referentie(s). Wilt je deze overschrijven met waarden, dit item overslaan of toch verwijderen? + Item "%1" heeft %2 referentie. Wil je deze overschrijven met waarden, dit item overslaan of toch verwijderen?Item "%1" heeft %2 referenties. Wil je deze overschrijven met waarden, dit item overslaan of toch verwijderen? User name @@ -7650,7 +8855,7 @@ Kernelversie: %3 %4 Checksum mismatch! Key file may be corrupt. - Checksum komt niet overeen! Sleutelbestand is mogelijk beschadigd. + Controlesom komt niet overeen! Sleutelbestand is mogelijk beschadigd. Unexpected key file data! Key file may be corrupt. @@ -7658,7 +8863,7 @@ Kernelversie: %3 %4 KeePassXC - cross-platform password manager - KeepassXC - multi-platform wachtwoordbeheerder + KeePassXC - platformonafhankelijk wachtwoordbeheer filenames of the password databases to open (*.kdbx) @@ -7684,21 +8889,17 @@ Kernelversie: %3 %4 read password of the database from stdin lees wachtwoord van de database uit stdin - - allow app screen recordering and screenshots - Schermafbeeldingen en schermopnamen van de app toestaan - - - Locked databases. - Vergrendelde databases. - Database failed to lock. - Database kan niet worden vergrendeld. + Database is niet vergrendeld. Another instance of KeePassXC is already running. - Een andere instantie van KeePassXC is reeds actief. + Er is al een ander exemplaar van KeePassXC actief. + + + KeePassXC is not running. No open database to lock + KeePassXC is niet actief. Geen databank om te vergrendelen. Fatal error while testing the cryptographic functions. @@ -7708,10 +8909,6 @@ Kernelversie: %3 %4 KeePassXC - Error KeePassXC - Fout - - Warning: Failed to prevent screenshots on a top level window! - Waarschuwing: Schermafbeeldingen van het venster op het hoogste niveau kon niet worden voorkomen! - Database password: Databasewachtwoord: @@ -7735,15 +8932,319 @@ Kernelversie: %3 %4 Kan challenge niet ondertekenen met Windows Hello. - Please present or touch your YubiKey to continue. - + Warning: Failed to block screenshot capture on a top-level window. + Waarschuwing: een schermopname van het venster op het hoogste niveau kon niet worden voorkomen! + + + Invalid Cipher + Ongeldige versleuteling + + + Invalid KDF + Ongeldige KDF + + + Access to all entries is denied + Toegang tot alle items is geweigerd + + + allow screenshots and app recording (Windows/macOS) + Schermopnames toestaan (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Stel het sleutelbestand voor de database in. +Deze optie is verouderd, gebruik in plaats daarvan --set-key-file. + + + Databases have been locked. + Databases zijn vergrendelen. + + + Attestation not supported + Getuigenis niet ondersteund + + + Credential is excluded + Inloggegevens zijn uitgesloten + + + Passkeys request canceled + Passkey-verzoek geannuleerd + + + Invalid user verification + Ongeldige gebruikersverificatie + + + Empty public key + Lege openbare sleutel + + + Invalid URL provided + Ongeldige URL opgegeven + + + Passkeys + Passkeys + + + AES initialization failed + AES-initialisatie mislukt + + + AES encrypt failed + AES-versleuteling mislukt + + + Failed to store in Linux Keyring + Opslaan in Linux-sleutelbos mislukt + + + Polkit returned an error: %1 + Polkit heeft een fout gemeld: %1 + + + Could not locate key in keyring + Geen sleutel aangetroffen in sleutelbos + + + Could not read key in keyring + Lezen van sleutel uit sleutelbos mislukt + + + AES decrypt failed + AES-ontsleuteling mislukt + + + No Polkit authentication agent was available + Er is geen Polkit-agent beschikbaar + + + Polkit authorization failed + Polkit-autorisatie mislukt + + + No Quick Unlock provider is available + Er is geen snelle-ontgrendelingsdienst beschikbaar + + + Failed to init KeePassXC crypto. + KeePassXC-crypto is niet geinitiëerd. + + + Failed to encrypt key data. + Sleutelgegevens zijn niet versleuteld. + + + Failed to get Windows Hello credential. + Geen Windows Hello-referenties verkregen. + + + Failed to decrypt key data. + Sleutelgegevens zijn niet gedecodeerd. + + + Origin is empty or not allowed + De oorsprong is leeg of niet toegestaan + + + Effective domain is not a valid domain + Effectief domein is geen geldig domein + + + Origin and RP ID do not match + Oorsprong en RP ID komen niet overeen + + + No supported algorithms were provided + Er zijn geen ondersteunde algoritmes verstrekt + + + Wait for timer to expire + Wacht tot de timer verloopt + + + Challenge is shorter than required minimum length + De challenge is korter dan de vereiste minimale lengte + + + user.id does not match the required length + user.id voldoet niet aan de vereiste lengte + + + Favorite + Tag for favorite entries + Favoriet + + + File does not exist. + Bestand bestaat niet. + + + Cannot open file: %1 + Kan bestand niet openen: %1 + + + Cannot parse file: %1 at position %2 + Kan bestand %1 niet verwerken op positie %2 + + + Failed to decrypt json file: %1 + Kon JSON-bestand niet decoderen: %1 + + + Invalid encKeyValidation field + Ongeldig encKeyValidation-veld + + + Invalid cipher list within encKeyValidation field + Ongeldige versleutelingslijst in encKeyValidation-veld + + + Wrong password + Incorrect wachtwoord + + + Invalid encrypted data field + Ongeldig versleuteld gegevensveld + + + Invalid cipher list within encrypted data field + Ongeldige versleutelingslijst in versleuteld gegevensveld + + + Cannot initialize cipher + Kan versleuteling niet initialiseren + + + Cannot decrypt data + Kan gegevens niet decoderen + + + Bitwarden Import + Bitwarden-import + + + Archived + Tag for archived entries + Gearchiveerd + + + Invalid 1PUX file format: Not a valid ZIP file. + Ongeldig 1PUX bestandsformaat: Geen geldig ZIP-bestand. + + + Invalid 1PUX file format: Missing export.data + Ongeldige 1PUX bestandsformaat: Ontbrekende export.data + + + 1Password Import + 1Password-import + + + Enter Shortcut + Sneltoets invoeren + + + Action + Actie + + + Shortcuts + Sneltoetsen + + + Unknown passkeys error + Onbekende fout met passkey + + + Invalid KDF iterations, cannot decrypt json file + Ongeldige KDF-iteraties. Kan json-bestand niet decoderen + + + Unsupported format, ensure your Bitwarden export is password-protected + Niet-ondersteund formaat. Zorg ervoor dat de Bitwarden-export met een wachtwoord is beveiligd + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Alleen PBKDF en Argon2 worden ondersteund. Kan het json-bestand niet decoderen + + + Reset Shortcuts + Sneltoetsen opnieuw instellen + + + Double click an action to change its shortcut + Dubbelklik op een actie om de sneltoets te wijzigen + + + Filter... + Filteren… + + + Shortcut Conflict + Sneltoetsenconflict + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Sneltoets %1 conflicteert met '%2'. Sneltoets overschrijven? + + + Cannot generate valid passphrases because the wordlist is too short + Kan geen geldige wachtwoordzinnen genereren omdat de woordenlijst te kort is + + + Encrypted files are not supported. + Versleutelde bestanden worden niet ondersteund + + + Proton Pass Import + Proton Pass Import + + + Delete plugin data? + Plugin-gegevens verwijderen? + + + Delete plugin data from Entry(s)? + Plugin-gegevens uit item verwijderen?Plugin-gegevens uit items verwijderen? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Toe te passen formaat bij het exporteren. Beschikbare keuzes zijn 'xml', 'csv' of 'html'. Standaard ingesteld op 'xml'. + + + start minimized to the system tray + start geminimaliseerd in het systeemvak + + + malformed string, possible unescaped delimiter + misvormde tekenreeks, mogelijk niet-verwerkt scheidingsteken + + + missing closing delimiter + afsluitend scheidingsteken ontbreekt + + + %1, row: %2, column: %3 + %1, rij: %2, kolom: %3 + + + Tags + Labels QtIOCompressor Internal zlib error when compressing: - Interne fout in zlib bij inpakken: + Interne zlib-fout bij comprimeren: Error writing to underlying device: @@ -7759,45 +9260,64 @@ Kernelversie: %3 %4 Internal zlib error when decompressing: - Interne fout in zlib bij uitpakken: + Interne zlib-fout bij decomprimeren: QtIOCompressor::open The gzip format not supported in this version of zlib. - Gzip wordt niet ondersteund in deze versie van zlib. + Het gzip-formaat wordt niet ondersteund in deze versie van zlib. Internal zlib error: - Interne fout in zlib: + Interne zlib-fout: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Opdracht `%1` was niet op tijd klaar. Proces is afgebroken. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Kan samengevoegde database niet uploaden. Opdracht `%1` was niet op tijd klaar. Proces is afgebroken. + + + Invalid download parameters provided. + Ongeldige downloadparameters opgegeven. + + + Command `%1` failed to download database. + Opdracht `%1` heeft de database niet gedownload. + + + Invalid database pointer or upload parameters provided. + Ongeldige database-verwijzing of uploadparameters opgegeven. + + + Command `%1` exited with status code: %2 + Opdracht `%1` is afgesloten met statuscode: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Kan samengevoegde database niet uploaden. Opdracht `%1` is afgesloten met statuscode: %2 ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Verlopen items uitsluiten van het rapport - - - Show only entries which have URL set - Alleen vermeldingen weergeven waarvoor de URL is ingesteld - - - Show only entries which have browser settings in custom data - Alleen vermeldingen weergeven met browserinstellingen in aangepaste gegevens - Double-click entries to edit. Dubbelklik items om deze te bewerken. List of entry URLs - Lijst met vermeldings-URL's + Lijst met item-URL's Entry has no URLs set - Item heeft geen URL ingesteld + Item heeft geen URL Allowed URLs @@ -7821,7 +9341,7 @@ Kernelversie: %3 %4 Please wait, browser statistics is being calculated… - Een ogenblik geduld, browserstatistieken worden verzameld... + Even geduld, browserstatistieken worden verzameld… No entries with a URL, or none has browser extension settings saved. @@ -7829,7 +9349,7 @@ Kernelversie: %3 %4 Title - Naam + Titel Path @@ -7841,53 +9361,62 @@ Kernelversie: %3 %4 Edit Entry… - Item bewerken... + Item bewerken… Delete Entry(s)… - Item(s) verwijderen...Item(s) verwijderen... + Item verwijderen…Items verwijderen… Exclude from reports Uitsluiten van rapportage + + Expire Entry(s)… + Item laten verlopen…Items laten verlopen… + + + Only show entries that have a URL + Alleen items met een URL weergeven + + + Only show entries that have been explicitly allowed or denied + Alleen items weergeven die expliciet zijn toegestaan of geweigerd + + + Show expired entries + Verlopen items weergeven + + + (Expired) + (Verlopen) + + + Delete plugin data from Entry(s)… + Plugin-gegevens uit item verwijderen…Plugin-gegevens uit items verwijderen… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Verlopen items uitsluiten van het rapport + Show expired entries + Verlopen items weergeven - Also show entries that have been excluded from reports - Toon ook vermeldingen die zijn uitgesloten van rapportage + (Expired) + (Verlopen) Hover over reason to show additional details. Double-click entries to edit. - Positioneer de muis boven een item om aanvullende details weer te geven. Dubbelklik een items om het te bewerken. - - - Bad - Password quality - Slecht + Positioneer de muis boven een item om aanvullende details weer te geven. Dubbelklik om het te bewerken. Bad — password must be changed Slecht — wachtwoord moet worden gewijzigd - - Poor - Password quality - Slecht - Poor — password should be changed - Mager — wachtwoord moet worden gewijzigd - - - Weak - Password quality - Zwak + Matig — wachtwoord zou moeten worden gewijzigd Weak — consider changing the password @@ -7903,7 +9432,7 @@ Kernelversie: %3 %4 Please wait, health data is being calculated… - Even geduld, gezondheidsgegevens worden verzameld... + Even geduld, gezondheidsgegevens worden verzameld… Congratulations, everything is healthy! @@ -7911,7 +9440,7 @@ Kernelversie: %3 %4 Title - Naam + Titel Path @@ -7927,22 +9456,30 @@ Kernelversie: %3 %4 Edit Entry… - Item bewerken... + Item bewerken… Delete Entry(s)… - Item(s) verwijderen...Item(s) verwijderen... + Item verwijderen…Items verwijderen… Exclude from reports Uitsluiten van rapportage + + Expire Entry(s)… + Item laten verlopen…Items laten verlopen… + + + Show entries that have been excluded from reports + Items die zijn uitgesloten van rapporten weergeven + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - LET OP: Voor deze rapportage wordt informatie verzonden naar de online dienst Have I Been Pwned (HIBP) (https://haveibeenpwned.com). Als je doorgaat, worden je databasewachtwoorden cryptografisch gehasht en worden de eerste vijf tekens van die hashes op veilige wijze verzonden naar deze dienst. Jouw database blijft veilig en kan uit deze informatie niet worden samengesteld. Het aantal wachtwoorden dat je verzendt en je IP-adres worden wel blootgesteld aan deze dienst. + LET OP: Voor deze rapportage wordt informatie verzonden naar de online dienst Have I Been Pwned (HIBP) (https://haveibeenpwned.com). Als je doorgaat, worden je databasewachtwoorden cryptografisch gehasht en worden de eerste vijf tekens van die controlegetallen op veilige wijze verzonden naar deze dienst. Jouw database blijft veilig en kan uit deze informatie niet worden samengesteld. Het aantal wachtwoorden dat je verzendt en je IP-adres worden wel blootgesteld aan deze dienst. Perform Online Analysis @@ -7950,7 +9487,7 @@ Kernelversie: %3 %4 Also show entries that have been excluded from reports - Toon ook vermeldingen die zijn uitgesloten van rapportage + Vermeldingen die zijn uitgesloten van rapportage ook weergeven This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. @@ -7958,11 +9495,11 @@ Kernelversie: %3 %4 Congratulations, no exposed passwords! - Gefeliciteerd, geen gelekte wachtwoorden! + Gefeliciteerd, geen blootgestelde wachtwoorden! Title - Naam + Titel Path @@ -7970,7 +9507,7 @@ Kernelversie: %3 %4 Password exposed… - Gelekte wachtwoorden... + Wachtwoorden blootgesteld... (Excluded) @@ -7983,7 +9520,7 @@ Kernelversie: %3 %4 once Password exposure amount - eenmalig + een keer up to 10 times @@ -8013,25 +9550,96 @@ Kernelversie: %3 %4 up to a million times Password exposure amount - tot miljoen keer + tot 1 miljoen keer millions of times Password exposure amount - miljoen keer + miljoenen keren Edit Entry… - Item bewerken... + Item bewerken… Delete Entry(s)… - Item(s) verwijderen...Item(s) verwijderen... + Item verwijderen...Items verwijderen… Exclude from reports Uitsluiten van rapportage + + Expire Entry(s)… + Item laten verlopen…Items laten verlopen… + + + + ReportsWidgetPasskeys + + Export + Exporteren + + + Import + Importeren + + + List of entry URLs + Lijst met item-URLs + + + Title + Titel + + + Path + Pad + + + Username + Gebruikersnaam + + + URLs + URLs + + + Edit Entry… + Item bewerken… + + + Delete Entry(s)… + Item verwijderen…Items verwijderen… + + + Relying Party + Vertrouwende partij + + + Show expired entries + Verlopen items weergeven + + + (Expired) + (Verlopen) + + + Export Confirmation + Exporteren bevestigen + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Het passkey-bestand is kwetsbaar voor diefstal en ongeoorloofd gebruik, als het onbeveiligd blijft. Weet je zeker dat je door wilt gaan? + + + Please wait, list of entries with passkeys is being updated… + Even geduld, de lijst met items met passkeys wordt bijgewerkt… + + + No entries with passkeys. + Geen items met passkeys. + ReportsWidgetStatistics @@ -8049,7 +9657,7 @@ Kernelversie: %3 %4 Please wait, database statistics are being calculated… - Even geduld, databasestatistieken worden berekend... + Even geduld, databasestatistieken worden berekend… Database name @@ -8117,11 +9725,11 @@ Kernelversie: %3 %4 Maximum password reuse - Maximaal wachtwoordherbruik + Maximaal hergebruik van wachtwoorden Some passwords are used more than three times. Use unique passwords when possible. - Verscheidene wachtwoorden worden meer dan drie keer gebruikt. Gebruik waar mogelijk unieke wachtwoorden. + Sommige wachtwoorden worden meer dan driemaal gebruikt. Gebruik waar mogelijk unieke wachtwoorden. Number of short passwords @@ -8129,7 +9737,7 @@ Kernelversie: %3 %4 Recommended minimum password length is at least 8 characters. - Aangeraden minimumlengte voor wachtwoorden is 8 tekens. + De aanbevolen minimale wachtwoordlengte is 8 tekens. Number of weak passwords @@ -8145,7 +9753,7 @@ Kernelversie: %3 %4 Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. - Het uitsluiten van vermeldingen uit rapportage, bijv. omdat al bekend is dat ze een slecht wachtwoord hebben, is niet per se een probleem, maar je moet ze wel in de gaten houden. + Het uitsluiten van items uit rapportage, bijv. omdat al bekend is dat ze een slecht wachtwoord hebben, is niet per se een probleem, maar je moet ze wel in de gaten houden. Average password length @@ -8157,7 +9765,7 @@ Kernelversie: %3 %4 Average password length is less than ten characters. Longer passwords provide more security. - Gemiddeld wachtwoordlengte is minder dan tien tekens. Langere wachtwoorden bieden meer veiligheid. + Gemiddeld wachtwoordlengte is minder dan tien tekens. Langere wachtwoorden bieden meer beveiliging. @@ -8176,15 +9784,15 @@ Kernelversie: %3 %4 Key identity ownership conflict. Refusing to add. - Conflict tussen sleutelidentiteit. Geweigerd. + Conflict van identiteitseigendom. Toevoeging geweigerd. Agent refused this identity. Possible reasons include: - Agent weigerde deze identiteit. Mogelijke redenen zijn onder andere: + Agent weigerde deze identiteit. Mogelijke redenen zijn onder meer: The key has already been added. - De sleutel was al toegevoegd. + De sleutel is al toegevoegd. Restricted lifetime is not supported by the agent (check options). @@ -8206,16 +9814,24 @@ Kernelversie: %3 %4 No agent running, cannot list identities. Geen agent actief, kan geen identiteiten opsommen. + + Failed to remove all SSH identities from agent. + Niet alle SSH-identiteiten van de agent verwijderd. + + + All SSH identities removed from agent. + Alle SSH-identiteiten verwijderd van agent. + SearchHelpWidget Search Help - Zoek hulp + Hulp bij zoeken Search terms are as follows: [modifiers][field:]["]term["] - Zoektermen zijn als volgt: [parameters][veld:]["]term["] + Zoektermen zijn als volgt: [modificatoren][veld:]["]term["] Every search term must match (ie, logical AND) @@ -8223,7 +9839,7 @@ Kernelversie: %3 %4 Modifiers - Modifiers + Modificatoren exclude term from results @@ -8270,12 +9886,16 @@ Kernelversie: %3 %4 Search Help - Zoek hulp + Hulp bij zoeken + + + Save Search + Zoekopdracht opslaan Search (%1)… Search placeholder text, %1 is the keyboard shortcut - Zoeken (%1)... + Zoeken (%1)… Case sensitive @@ -8283,7 +9903,7 @@ Kernelversie: %3 %4 Limit search to selected group - Beperk het zoeken tot de geselecteerde groep + Zoekopdrachten beperken tot geselecteerde groep @@ -8328,7 +9948,7 @@ Kernelversie: %3 %4 Enable KeepassXC Freedesktop.org Secret Service integration - De integratie van KeepassXC Freedesktop.org Secret service inschakelen + De integratie van KeepassXC met Freedesktop.org Secret Service inschakelen General @@ -8336,7 +9956,7 @@ Kernelversie: %3 %4 Show notification when passwords are retrieved by clients - Melding weergeven wanneer wachtwoorden worden opgehaald door clients + Melding weergeven wanneer wachtwoorden door clients worden opgehaald <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> @@ -8346,31 +9966,10 @@ Kernelversie: %3 %4 Confirm when passwords are retrieved by clients Bevestigen wanneer wachtwoorden worden opgehaald door clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Deze instelling - overschrijft niet de uitschakeling van prullenbak-meldingen</span></p></body></html> - Confirm when clients request entry deletion Bevestigen wanneer clients de verwijdering van items aanvragen - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Dit verbetert de compatibiliteit met bepaalde toepassingen - die zoeken naar wachtwoorden zonder eerst de database te ontgrendelen.</p><p>Maar dit kan ook leiden tot - crashes van de client als de database niet binnen een bepaalde time-out kan worden ontgrendeld. (Meestal 25s, maar kan een - verschillende waarden die in toepassingen zijn ingesteld.)</p></body></html> - - Prompt to unlock database before searching Vraag voor het zoeken om ontgrendeling van de database @@ -8395,12 +9994,20 @@ Kernelversie: %3 %4 Save current changes to activate the plugin and enable editing of this section. Sla huidige wijzigingen op om de plug-in te activeren en het bewerken van deze sectie mogelijk te maken. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Deze instelling heeft geen voorrang op het uitschakelen van de prompts voor de prullenbak </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Dit verbetert de compatibiliteit met bepaalde applicaties die naar een wachtwoord zoeken zonder eerst de database te ontgrendelen.</p><p> Maar door dit in te schakelen, kan de client ook crashen als de database niet binnen een bepaalde time-out kan worden ontgrendeld. (Meestal 25s, maar kan een andere waarde zijn die is ingesteld in de toepassing.)</p></body></html> + SettingsWidgetKeeShare Active - Activering + Actief Allow KeeShare imports @@ -8412,7 +10019,7 @@ Kernelversie: %3 %4 Allow KeeShare exports - Sta KeeShare exports toe + Exporteren van KeeShare toestaan Allow export @@ -8503,18 +10110,41 @@ Kernelversie: %3 %4 TagModel - All - Alle + Clear Search + Zoekopdracht wissen + + + All Entries + Alle items Expired - Verlopen + Verlopen items Weak Passwords Zwakke wachtwoorden + + TagView + + Remove Search + Zoekopdracht verwijderen + + + Remove Tag + Label verwijderen + + + Confirm Remove Tag + Verwijderen van label bevestigen + + + Remove tag "%1" from all entries in this database? + Label “%1” van alle items wilt verwijderen? + + TotpDialog @@ -8527,7 +10157,7 @@ Kernelversie: %3 %4 Expires in <b>%n</b> second(s) - Verloopt in <b>%n</b> seconde(n)Verloopt over <b>%n</b> seconde(n) + Verloopt in <b>%n</b> secondeVerloopt over <b>%n</b> seconden @@ -8543,7 +10173,7 @@ Kernelversie: %3 %4 There was an error creating the QR code. - Er ging iets fout bij het maken van de QR-code. + Er is een fout opgetreden bij het aanmaken van de QR-code. Closing in %1 seconds. @@ -8554,7 +10184,7 @@ Kernelversie: %3 %4 TotpSetupDialog Setup TOTP - TOTP-instellen + TOTP instellen Secret Key: @@ -8570,11 +10200,11 @@ Kernelversie: %3 %4 Default settings (RFC 6238) - Standaard instellingen (RFC 6238) + Standaard-instellingen (RFC 6238) Steam® settings - Steam® instellingen + Steam®-instellingen Custom settings: @@ -8594,7 +10224,7 @@ Kernelversie: %3 %4 Time step field - Tijd-stap veld + Tijdsinterval veld sec @@ -8621,7 +10251,7 @@ Voorbeeld: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings - Bevestig het verwijderen van de TOTP instellingen + Verwijderen van TOTP-instellingen bevestigen Are you sure you want to delete TOTP settings for this entry? @@ -8663,34 +10293,14 @@ Voorbeeld: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - Je hebt de laatste versie van KeePassXC + Je hebt de meest recente versie van KeePassXC WelcomeWidget Start storing your passwords securely in a KeePassXC database - Sla jouw wachtwoorden veilig op in een KeePassXC-database - - - Create new database - Nieuwe database aanmaken - - - Open existing database - Bestaande database openen - - - Import from KeePass 1 - Importeren vanuit Keepass 1-database - - - Import from 1Password - Van 1Password importeren - - - Import from CSV - Importeren vanuit CSV-bestand + Sla je wachtwoorden veilig op in een KeePassXC-database Recent databases @@ -8704,6 +10314,18 @@ Voorbeeld: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Welkom bij KeePassXC %1 + + Create Database + Database aanmaken + + + Open Database + Database openen + + + Import File + Bestand importeren + WinUtils @@ -8713,60 +10335,29 @@ Voorbeeld: JBSWY3DPEHPK3PXP Global shortcut already registered to %1 - Globale snelkoppeling is al geregistreerd bij %1 + Algemene sneltoets is al toegekend aan %1 Could not register global shortcut - Kan algemene snelkoppeling niet registreren - - - - WindowsHello - - Failed to init KeePassXC crypto. - Kan KeePassXC crypto niet initiëren. - - - Failed to encrypt key data. - Sleutelgegevens kunnen niet worden versleuteld. - - - Failed to get Windows Hello credential. - Kan geen Windows Hello-referenties ophalen. - - - Failed to decrypt key data. - Kan sleutelgegevens niet decoderen. + Algemene sneltoets is niet vastgelegd YubiKey - - %1 No interface, slot %2 - %1 Geen interface, positie %2 - General: Algemeen: Could not find interface for hardware key with serial number %1. Please connect it to continue. - Kan interface voor hardwaresleutel met serienummer %1 niet vinden. Sluit het aan om door te gaan. + Geen interface voor hardwaresleutel met serienummer %1. Sluit het aan om door te gaan. YubiKeyEditWidget - - Refresh hardware tokens - Hardwaretoken verversen - - - Refresh - Vernieuwen - Hardware key slot selection - Hardwaresleutel positie selectie + Selectie hardwaresleutel-positie Could not find any hardware keys! @@ -8774,7 +10365,7 @@ Voorbeeld: JBSWY3DPEHPK3PXP Selected hardware key slot does not support challenge-response! - Geselecteerde hardwaresleutel-positie ondersteunt geen challenge-respons! + Geselecteerde hardwaresleutel-positie ondersteunt geen challenge-response! Challenge-Response @@ -8796,55 +10387,63 @@ Voorbeeld: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Challenge-Response ingesteld, klik om te wijzigen of te verwijderen - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Als je een <a href="https://www.yubico.com/">YubiKey</a> of <a href="https://onlykey.io">OnlyKey</a> bezit, kun je deze gebruiken voor extra beveiliging.</p><p>De sleutel vereist dat een van zijn posities (slots) wordt geprogrammeerd als <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… - Hardwaresleutels detecteren... + Hardwaresleutels detecteren… No hardware keys detected Geen hardwaresleutels gedetecteerd - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Ongeldige positie opgegeven - %2 + Refresh hardware keys + Hardwaresleutels vernieuwen + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Als je <a href="https://www.yubico.com/">YubiKey</a> of <a href="https://onlykey.io">OnlyKey</a> bezit, dan kan je deze gebruiken voor aanvullende beveiliging.</p><p>Een van de positie in de sleutel moet dan worden geprogrammeerd met <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Hardwaresleutels gevonden, echter zonder posities geconfigureerd. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - Positie %3 - The YubiKey PCSC interface has not been initialized. De YubiKey PCSC-interface is niet geïnitialiseerd. - - Hardware key is currently in use. - Hardwaresleutel is momenteel in gebruik. - Could not find or access hardware key with serial number %1. Please present it to continue. - Kan hardwaresleutel met serienummer %1 niet vinden of openen. Presenteer de hardwaresleutel om door te gaan. + Hardwaresleutel met serienummer %1 niet gevonden of geopend. Bied deze aan om door te gaan. Hardware key is locked or timed out. Unlock or re-present it to continue. - De hardwaresleutel is vergrendeld of er is een time-out. Ontgrendel of presenteer het opnieuw om door te gaan. + De hardwaresleutel is vergrendeld of er is een time-out. Ontgrendel deze of bied hem opnieuw aan om door te gaan. Hardware key was not found or is not configured. - De hardwaresleutel is niet gevonden of is niet geconfigureerd. + De hardwaresleutel is niet aangetroffen of is niet geconfigureerd. Failed to complete a challenge-response, the PCSC error code was: %1 - De challenge-response is mislukt, de PCSC fout was: %1 + De challenge-response is niet volbracht. PCSC foutcode: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Positie %3, %4 + + + Press + USB Challenge-Response Key interaction request + Drukken + + + Passive + USB Challenge-Response Key no interaction required + Passief @@ -8853,18 +10452,10 @@ Voorbeeld: JBSWY3DPEHPK3PXP Unknown Onbekend - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Geconfigureerde positie - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Respons - Positie %3 - %4 - Press USB Challenge-Response Key interaction request - Druk + Drukken Passive @@ -8873,19 +10464,15 @@ Voorbeeld: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - De YubiKey USB interface is niet geïnitialiseerd. - - - Hardware key is currently in use. - Hardwaresleutel is momenteel in gebruik. + De YubiKey USB-interface is niet geïnitialiseerd. Could not find hardware key with serial number %1. Please plug it in to continue. - Hardwaresleutel met serienummer %1 niet gevonden. Sluit deze aan om door te gaan. + Hardwaresleutel met serienummer %1 niet aangetroffen. Sluit deze aan om door te gaan. Hardware key timed out waiting for user interaction. - Er is een time-out opgetreden voor de hardwaresleutel tijdens het wachten op gebruikersinteractie. + Time-out bij de hardwaresleutel in afwachting van gebruikersinteractie. A USB error occurred when accessing the hardware key: %1 @@ -8893,7 +10480,17 @@ Voorbeeld: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 - Challenge-response is niet voltooid, de specifieke fout was: %1 + De challenge-response is niet volbracht. De specifieke fout was: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Positie %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Positie %3, %4 \ No newline at end of file diff --git a/share/translations/keepassxc_pl.ts b/share/translations/keepassxc_pl.ts index 5d25aeb95..55b9e4b0c 100644 --- a/share/translations/keepassxc_pl.ts +++ b/share/translations/keepassxc_pl.ts @@ -80,6 +80,10 @@ Details Szczegóły + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Twoja decyzja zostanie zapamiętana na czas, gdy zarówno klient żądający, jak i KeePassXC będą uruchomione. + Remember Zapamiętaj @@ -88,10 +92,6 @@ Allow Selected Zezwól wybranym - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Twoja decyzja zostanie zapamiętana na czas, gdy zarówno klient żądający, jak i KeePassXC będą uruchomione. - Deny All && Future Odmów wszystkim i przyszłym @@ -112,7 +112,7 @@ AgentSettingsWidget Enable SSH Agent integration - Włącz integrację agenta SSH + Włącz integrację z agentem SSH Use Pageant @@ -122,6 +122,10 @@ Use OpenSSH Użyj OpenSSH + + Use both agents + Użyj obu agentów + SSH_AUTH_SOCK override Zastąpienie SSH_AUTH_SOCK @@ -150,10 +154,6 @@ SSH Agent connection is working! Połączenie agenta SSH działa! - - Use both agents - Użyj obu agentów - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Bezpieczeństwo + + This setting cannot be enabled when minimize on unlock is enabled. + To ustawienie nie może być włączone, gdy włączona jest opcja minimalizacji przy odblokowaniu. + Access error for config file %1 Błąd dostępu pliku konfiguracyjnego %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Musisz uruchomić ponownie aplikację, aby ustawić nowy język. Czy chcesz teraz to zrobić? - - Reset Settings? - Zresetować ustawienia? - - - Are you sure you want to reset all general and security settings to default? - Czy na pewno chcesz zresetować wszystkie ustawienia ogólne i zabezpieczeń do domyślnych? - Select backup storage directory Wybierz katalog przechowywania kopii zapasowych + + Confirm Reset + Potwierdź resetowanie + + + Are you sure you want to reset all settings to default? + Czy na pewno chcesz przywrócić wszystkie ustawienia domyślne? + + + Import KeePassXC Settings + Importuj ustawienia KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Nie udało się zaimportować ustawień z %1. To nie jest prawidłowy plik ustawień. + + + Export KeePassXC Settings + Eksportuj ustawienia KeePassXC + + + Small + Mały + + + Normal + Normalny + + + Medium + Średni + + + Large + Duży + + + Custom + Niestandardowy + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Pamiętaj wcześniej używane bazy danych + + recent files + ostatnie pliki + Load previously open databases on startup Załaduj wcześniej otwarte bazy danych podczas uruchamiania @@ -272,25 +312,6 @@ Include beta releases when checking for updates Uwzględnij wersje beta podczas sprawdzania aktualizacji - - On database unlock, show entries that - Po odblokowaniu bazy danych pokaż wpisy, które - - - have expired - On database unlock, show entries that... - wygasły - - - days - On database unlock, show entries that will expire within %1 days - dni - - - will expire within - On database unlock, show entries that... - wygasną w ciągu - File Management Zarządzanie plikami @@ -309,28 +330,16 @@ Automatically reload the database when modified externally - Automatycznie przeładuj bazę danych, gdy zostanie zmodyfikowana zewnętrznie + Automatycznie ładuj ponownie bazę danych, gdy zostanie zmodyfikowana zewnętrznie Backup database file before saving Utwórz kopię zapasową pliku bazy danych przed zapisaniem - - Backup destination - Miejsce docelowe kopii zapasowej - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Określa lokalizację pliku kopii zapasowej bazy danych. Wystąpienia "{DB_FILENAME}" są zastępowane nazwą pliku zapisanej bazy danych bez rozszerzenia. {TIME:<format>} jest zastępowany czasem kopii zapasowej, zobacz https://doc.qt.io/qt-5/qdatetime.html#toString. <format> to domyślnie ciąg formatu "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Wybierz... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Użyj alternatywnej metody zapisywania (może rozwiązać problemy z usługami: Dropbox, Google Drive, GVFS itp.) @@ -408,6 +417,10 @@ Toolbar button style: Styl przycisków paska narzędzi: + + Show passwords in color + Pokaż hasła w kolorze + Use monospaced font for notes Użyj czcionek o stałej szerokości w notatkach @@ -430,7 +443,7 @@ Hide window to system tray when minimized - Schowaj okno do zasobnika podczas minimalizacji + Schowaj okno do zasobnika systemowego podczas minimalizacji Reset settings to default… @@ -493,6 +506,71 @@ Remember last typed entry for: Pamiętaj ostatnio wpisany wpis przez: + + On database unlock, show entries that will expire within + Podczas odblokowania bazy danych pokaż wpisy, które wygasną w ciągu + + + On database unlock, show entries that will expire within + Podczas odblokowania bazy danych pokaż wpisy, które wygasną w ciągu + + + days + number of days warning for password expiration + dni + + + Destination format: + Format docelowy: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> zostaje zastąpiony nazwą pliku zapisanej bazy danych bez rozszerzenia</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> zostaje zastąpiony określonym formatem czasu (domyślnie: dd_MM_yyyy_hh-mm-ss)</p><p>Więcej szczegółów znajdziesz w podręczniku użytkownika</p></body></html> + + + Choose folder... + Wybierz folder... + + + Show confirmation before moving entries to recycle bin + Pokaż potwierdzenie przed przeniesieniem wpisów do kosza + + + Copy data on double clicking field in entry view + Kopiuj dane po dwukrotnym kliknięciu pola w widoku wpisu + + + Show toolbar + Pokaż pasek narzędzi + + + Show the menu bar by pressing the Alt key + Pokaż pasek menu po naciśnięciu klawisza Alt + + + Show menubar + Pokaż pasek menu + + + Import settings… + Importuj ustawienia… + + + Export settings… + Eksportuj ustawienia… + + + Open browser on double clicking URL field in entry view + Otwórz przeglądarkę po dwukrotnym kliknięciu pola adresu URL w widoku wpisu + + + Font size: + Rozmiar czcionki: + + + Font size selection + Wybór rozmiaru czcionki + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Zablokuj bazę danych po zminimalizowaniu okna - - Require password repeat when it is visible - Wymagaj powtórzenia hasła, gdy jest widoczne - Hide passwords when editing them Ukryj hasła podczas ich edycji @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Ukryj hasła w panelu podglądu wpisu - - Hide entry notes by default - Domyślnie ukrywaj wpisy notatek - - - Move entries to recycle bin without confirmation - Przenieś wpisy do kosza bez potwierdzenia - - - Enable double click to copy the username/password entry columns - Włącz podwójne kliknięcie, aby kopiować kolumny wpisów nazwy użytkownika i hasła - Privacy Prywatność @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Użyj usługi DuckDuckGo do pobierania ikon witryn + + Hide TOTP in the entry preview panel + Ukryj TOTP w panelu podglądu wpisu + + + Lock databases when switching user + Zablokuj bazy danych podczas zmiany użytkownika + + + Lock Options + Opcje blokowania + + + Hide notes in the entry preview panel + Ukryj notatki w panelu podglądu wpisu + AutoType @@ -603,7 +681,7 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC wymaga uprawnień Dostępności i Rejestratora ekranu w celu wykonania globalnego autowpisywania. Nagrywanie ekranu jest konieczne, aby użyć tytułu okna do odnajdywania wpisów. Jeśli już udzieliłeś uprawnień, być może będziesz musiał zrestartować KeePassXC. + KeePassXC wymaga uprawnień dostępności i rejestratora ekranu w celu wykonania globalnego autowpisywania. Nagrywanie ekranu jest konieczne, aby użyć tytułu okna do odnajdywania wpisów. Jeśli już udzielono uprawnień, być może będzie wymagane ponowne uruchomienie KeePassXC. Invalid entry provided @@ -626,18 +704,8 @@ Wykryto bardzo duże opóźnienie, maksimum to %1: %2 - Invalid conversion type: %1 - Nieprawidłowy typ konwersji: %1 - - - Invalid conversion syntax: %1 - Nieprawidłowa składnia konwersji: %1 - - - Invalid regular expression syntax %1 -%2 - Nieprawidłowa składnia wyrażenia regularnego %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Wpis nie ma atrybutu dla PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Próba wysłania nieprawidłowego keysym. - Sequence aborted: Caps Lock is on Sekwencja przerwana: Caps Lock jest włączony @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Nie można uzyskać prawidłowego keycode'u dla klawisza: + + Trying to send invalid keyboard symbol. + Próba wysłania nieprawidłowego symbolu klawiaturowego. + AutoTypeSelectDialog @@ -709,7 +777,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - Kliknij dwukrotnie wiersz, aby wykonać autowpisywanie lub znajdź wpis za pomocą wyszukiwania: + Kliknij dwukrotnie wiersz, aby wykonać autowpisywanie, lub znajdź wpis za pomocą wyszukiwania: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -804,13 +872,13 @@ Ctrl+4 - Użyj klawiatury wirtualnej (tylko Windows)</p> Disable for this site Wyłącz dla tej witryny + + Undo + Cofnij + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - Zapisz wpis KeePassXC-Browser - Ok OK @@ -825,25 +893,82 @@ Please select the correct database for saving credentials. Masz wiele otwartych baz danych. Wybierz właściwą bazę danych do zapisania danych uwierzytelniających. + + KeePassXC - Select Database + KeePassXC - Wybierz bazę danych + + + + BrowserPasskeysConfirmationDialog + + Cancel + Anuluj + + + Update + Zaktualizuj + + + Authenticate + Uwierzytelnij + + + Register new + Zarejestruj nowy + + + Register + Zarejestruj + + + Timeout in <b>%n</b> seconds... + Limit czasu za <b>%n</b> sekundę...Limit czasu za <b>%n</b> sekundy...Limit czasu za <b>%n</b> sekund...Limit czasu za <b>%n</b> sekund... + + + Relying Party: %1 + Strona ufająca: %1 + + + Username: %1 + Nazwa użytkownika: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Dane uwierzytelniające klucza dostępu + + + Add to existing entry + Dodaj do istniejącego wpisu + + + Existing passkey found. +Do you want to register a new passkey for: + Znaleziono istniejący klucz dostępu. +Czy chcesz zarejestrować nowy klucz dostępu dla: + + + Select the existing passkey and press Update to replace it. + Wybierz istniejący klucz dostępu i naciśnij przycisk Zaktualizuj, aby go zastąpić. + + + Authenticate passkey credentials for: + Uwierzytelnij dane uwierzytelniające klucza dostępu dla: + + + Do you want to register a passkey for: + Czy chcesz zarejestrować klucz dostępu dla: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Utwórz nową grupę - A request for creating a new group "%1" has been received. Do you want to create this group? Otrzymano żądanie utworzenia nowej grupy "%1". -Czy chcesz stworzyć tę grupę? +Czy chcesz utworzyć tę grupę? - - KeePassXC: New key association request - KeePassXC: Nowe żądanie skojarzenia klucza - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access Zapisz i zezwól na dostęp - - KeePassXC: Overwrite existing key? - KeePassXC: Nadpisać istniejący klucz? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Współdzielony klucz szyfrujący o nazwie "%1" już istnieje. Czy chcesz go nadpisać? - - KeePassXC: Update Entry - KeePassXC: Aktualizacja wpisu - Do you want to update the information in %1 - %2? Czy chcesz uaktualnić informację w %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Usuń wpis - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Czy chcesz usunąć wpis? - Converting attributes to custom data… - Konwertowanie atrybutów na niestandardowe dane... + %1 (Passkey) + %1 (klucz dostępu) - Abort - Zaniechaj + KeePassXC - Create a new group + KeePassXC - Utwórz nową grupę - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Przekonwertowane atrybuty KeePassHTTP + Disable + Wyłącz - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Pomyślnie przekonwertowano atrybuty z %1 wpis(ów). -Przeniesiono %2 klucze do niestandardowych danych. - - - Successfully moved %n keys to custom data. - Pomyślnie przeniesiono %n klucz do niestandardowych danych.Pomyślnie przeniesiono %n klucze do niestandardowych danych.Pomyślnie przeniesiono %n kluczy do niestandardowych danych.Pomyślnie przeniesiono %n kluczy do niestandardowych danych. + KeePassXC - Overwrite existing key? + KeePassXC - Zastąpić istniejący klucz? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nie znaleziono wpisu z atrybutami KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - Zaktualizuj wpis - The active database does not contain an entry with KeePassHTTP attributes. - Aktywna baza danych nie zawiera wpisu z atrybutami KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Usuń wpis - Don't show this warning again - Nie wyświetlaj ponownie tego ostrzeżenia + KeePassXC - New key association request + KeePassXC - Nowa prośba o skojarzenie klucza - KeePassXC: Legacy browser integration settings detected - KeePassXC: Wykryto ustawienia przestarzałej integracji z przeglądarką + Passkey + Klucz dostępu - 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? - Twoje ustawienia KeePassXC-Browser należy przenieść do ustawień bazy danych. -Jest to konieczne, aby utrzymać bieżące połączenia przeglądarki. -Czy chcesz teraz migrować istniejące ustawienia? + KeePassXC - Passkey credentials + KeePassXC - Dane uwierzytelniające klucza dostępu + + + Register a new passkey to this entry: + Zarejestruj nowy klucz dostępu do tego wpisu: + + + KeePassXC - Update passkey + KeePassXC - Zaktualizuj klucz dostępu + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Wpis ma już klucz dostępu. +Czy chcesz zastąpić klucz dostępu w %1 - %2? + + + Register + Zarejestruj @@ -945,7 +1066,7 @@ Czy chcesz teraz migrować istniejące ustawienia? This is required for accessing your databases with KeePassXC-Browser - Wymagane jest to aby uzyskać dostęp do baz danych za pomocą KeePassXC-Browser + Wymagane jest to, aby uzyskać dostęp do baz danych za pomocą KeePassXC-Browser Enable browser integration @@ -955,10 +1076,6 @@ Czy chcesz teraz migrować istniejące ustawienia? General Ogólne - - Browsers installed as snaps are currently not supported. - Przeglądarki zainstalowane jako snapy są obecnie nieobsługiwane. - Enable integration for these browsers: Włącz integrację z tymi przeglądarkami: @@ -1078,20 +1195,20 @@ Czy chcesz teraz migrować istniejące ustawienia? Use a custom proxy location if you installed a proxy manually. - Używaj niestandardowej lokalizacji proxy, jeżeli została zainstalowana ręcznie. + Używaj lokalizacji niestandardowego proxy, jeżeli został zainstalowana ręcznie. Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - Używaj niestandardowej lokalizacji proxy: + Używaj lokalizacji niestandardowego proxy: Custom proxy location field - Niestandardowe pole lokalizacji proxy + Pole lokalizacji niestandardowego proxy Browser for custom proxy file - Przeglądarka niestandardowego pliku proxy + Przeglądaj plik niestandardowego proxy Browse… @@ -1130,26 +1247,6 @@ Czy chcesz teraz migrować istniejące ustawienia? Custom extension ID Identyfikator niestandardowego rozszerzenia - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Ze względu na sandboxing Snap należy uruchomić skrypt, aby umożliwić integrację przeglądarki.<br />Możesz uzyskać ten skrypt z %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser jest niezbędny do integracji przeglądarki. <br />Pobierz go dla %1 oraz %2 i %3. %4 - - - Please see special instructions for browser extension use below - Zobacz poniżej specjalne instrukcje dotyczące używania rozszerzenia przeglądarki - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Błąd:</b> Nie można znaleźć niestandardowej lokalizacji proxy! Integracja przeglądarki NIE DZIAŁA bez aplikacji proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Ostrzeżenie:</b> Poniższe opcje mogą być niebezpieczne! - Executable Files Pliki wykonywalne @@ -1160,12 +1257,52 @@ Czy chcesz teraz migrować istniejące ustawienia? Select custom proxy location - Wybierz niestandardową lokalizację proxy + Wybierz lokalizację niestandardowego proxy Select native messaging host folder location Wybierz lokalizację folderu hosta wiadomości natywnych + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Zezwól keepassxc-proxy na wyświetlanie wszystkich wpisów wraz z tytułem, adresem URL i identyfikatorem UUID w podłączonych bazach danych. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Zezwól na ograniczony dostęp do wszystkich wpisów w podłączonych bazach danych (ignoruje ograniczenia dostępu do witryny) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Ostrzeżenie:</b> Dostosowuj te ustawienia tylko w razie potrzeby. + + + The custom proxy location does not exist. + Lokalizacja niestandardowego proxy nie istnieje. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Błąd:</b> Lokalizacja niestandardowego proxy nie istnieje. Popraw to na karcie ustawień zaawansowanych. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Błąd:</b> Brak pliku wykonywalnego zainstalowanego proxy w oczekiwanej lokalizacji: %1<br/>Ustaw lokalizację niestandardowego proxy w ustawieniach zaawansowanych lub zainstaluj ponownie aplikację. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Umożliwia używanie niezabezpieczonego http://localhost z kluczami dostępu do celów testowych. + + + Allow using localhost with passkeys + Zezwalaj na używanie localhost z kluczami dostępu + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser jest niezbędny do integracji z przeglądarką. <br />Pobierz go dla %1 oraz %2 i %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Przeglądarki zainstalowane przy użyciu pakietów Snap lub Flatpak nie są obsługiwane, z wyjątkiem przeglądarki Firefox zainstalowanej przy użyciu pakietu Snap. + CloneDialog @@ -1175,7 +1312,7 @@ Czy chcesz teraz migrować istniejące ustawienia? Append ' - Clone' to title - Dodaj ' - Klon' do nazwy + Dodaj ' - klon' do nazwy Replace username and password with references @@ -1188,14 +1325,6 @@ Czy chcesz teraz migrować istniejące ustawienia? CsvImportWidget - - Import CSV fields - Importuj pola CSV - - - filename - nazwa pliku - size, rows, columns rozmiar, wiersze, kolumny @@ -1234,7 +1363,7 @@ Czy chcesz teraz migrować istniejące ustawienia? Created - Stworzone + Utworzono Last Modified @@ -1304,50 +1433,43 @@ Czy chcesz teraz migrować istniejące ustawienia? Column %1 Kolumna %1 - - Imported from CSV file - Importowane z pliku CSV - - - Original data: - Oryginalne dane: - - - Error(s) detected in CSV file! - Wykryto błąd lub błędy w pliku CSV! - [%n more message(s) skipped] - [%n więcej komunikat pominięto] [%n więcej komunikatów pominięto] [%n więcej komunikatów pominięto] [%n więcej komunikatów pominięto] + [%n kolejny komunikat pominięto][%n kolejne komunikaty pominięto][%n kolejnych komunikatów pominięto][%n kolejnych komunikatów pominięto] - Error - Błąd + Failed to parse CSV file: %1 + Nie udało się przeanalizować pliku CSV: %1 - CSV import: writer has errors: -%1 - Import CSV: zapisywanie z błędami: -%1 + Imported from CSV file: %1 + Zaimportowano z pliku CSV: %1 + + + No Title Selected + Nie wybrano tytułu + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Nie wybrano kolumny tytułu, wpisy będą trudne do odróżnienia. +Czy na pewno chcesz importować? + + + Tags + Tagi CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bajt%n bajty%n bajtów%n bajtów - %n row(s) + CSV row count %n rząd%n rzędy%n rzędów%n rzędów %n column(s) + CSV column count %n kolumna%n kolumny%n kolumn%n kolumn @@ -1400,6 +1522,14 @@ Zapasowa baza danych znajduje się w %2 Recycle Bin Kosz + + Database file read error. + Błąd odczytu pliku bazy danych. + + + No file path was provided. + Nie podano ścieżki dostępu do pliku. + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Zapasowa baza danych znajduje się w %2 Password field Pole hasła - - Enter Additional Credentials (if any): - Wprowadź dodatkowe dane uwierzytelniające (jeśli istnieją): - - - Key File: - Plik klucza: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Oprócz hasła głównego można użyć pliku sekretnego w celu zwiększenia bezpieczeństwa bazy danych. Ten plik można wygenerować w ustawieniach zabezpieczeń bazy danych.</p><p>To <strong>nie</strong> jest plik bazy danych *. kdbx!<br>Jeśli nie masz pliku klucza, pozostaw to pole puste.</p><p>Kliknij, aby uzyskać więcej informacji…</p> - - - Key file help - Pomoc dotycząca pliku klucza - Hardware key slot selection Wybór gniazda klucza sprzętowego - - Hardware Key: - Klucz sprzętowy: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Możesz użyć sprzętowego klucza bezpieczeństwa, takiego jak <strong>YubiKey</strong> albo <strong>OnlyKey</strong> z gniazdami skonfigurowanymi dla HMAC-SHA1.</p> -<p>Kliknij, aby uzyskać więcej informacji…</p> - - - Hardware key help - Pomoc klucza sprzętowego - Key file to unlock the database Plik klucza do odblokowania bazy danych @@ -1468,14 +1568,6 @@ Zapasowa baza danych znajduje się w %2 Browse… Przeglądaj… - - Refresh hardware tokens - Odśwież tokeny sprzętowe - - - Refresh - Odśwież - Unlock Database Odblokuj bazę danych @@ -1538,14 +1630,6 @@ Aby zapobiec pojawianiu się tego błędu, musisz przejść do "Ustawienia Retry with empty password Spróbuj ponownie z pustym hasłem - - Failed to authenticate with Windows Hello - Nie udało się uwierzytelnić za pomocą Windows Hello - - - Failed to authenticate with Touch ID - Nie udało się uwierzytelnić za pomocą Touch ID - Failed to open key file: %1 Nie można otworzyć pliku klucza: %1 @@ -1579,22 +1663,68 @@ Aby zapobiec pojawianiu się tego błędu, musisz przejść do "Ustawienia Nie można użyć pliku bazy danych jako pliku klucza - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Nie można użyć pliku bazy danych jako pliku klucza. -Jeśli nie masz pliku klucza, pozostaw puste pole. + authenticate to access the database + uwierzytelnij, aby uzyskać dostęp do bazy danych - Detecting hardware keys… - Wykrywanie kluczy sprzętowych… + Failed to authenticate with Quick Unlock: %1 + Nie udało się uwierzytelnić za pomocą szybkiego odblokowania: %1 - No hardware keys detected - Nie wykryto kluczy sprzętowych + Select Key File: + Wybierz plik klucza: - Select hardware key… - Wybierz klucz sprzętowy… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Oprócz hasła głównego można użyć pliku sekretnego w celu zwiększenia bezpieczeństwa bazy danych. Ten plik można wygenerować w ustawieniach zabezpieczeń bazy danych.</p><p>To <strong>nie</strong> jest plik bazy danych *. kdbx!</p> + + + Use hardware key [Serial: %1] + Użyj klucza sprzętowego [Numer seryjny: %1] + + + Use hardware key + Użyj klucza sprzętowego + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Twój plik bazy danych NIE jest plikiem klucza! +Jeśli nie masz pliku klucza lub nie wiesz, czym on jest, nie musisz go wybierać. + + + KeePassXC database file selected + Wybrano plik bazy danych KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Wybrany plik wygląda jak plik bazy danych. +Plik bazy danych NIE jest plikiem klucza! + +Czy na pewno chcesz kontynuować z tym plikiem? + + + No hardware keys found. + Nie znaleziono kluczy sprzętowych. + + + Refresh Hardware Keys + Odśwież klucze sprzętowe + + + Click to add a key file. + Kliknij, aby dodać plik klucza. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Mam plik klucza</a> + + + Hardware keys found, but no slots are configured. + Znaleziono klucze sprzętowe, ale nie skonfigurowano żadnych gniazd. @@ -1606,10 +1736,6 @@ Jeśli nie masz pliku klucza, pozostaw puste pole. DatabaseSettingsDialog - - Advanced Settings - Ustawienia zaawansowane - General Ogólne @@ -1634,6 +1760,22 @@ Jeśli nie masz pliku klucza, pozostaw puste pole. Maintenance Konserwacja + + KeeShare + KeeShare + + + Secret Service Integration + Integracja z usługą sekretną + + + Remote Sync + Zdalna synchronizacja + + + Database Settings: %1 + Ustawienia bazy danych: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ Jeśli nie masz pliku klucza, pozostaw puste pole. KeePassXC-Browser settings Ustawienia KeePassXC-Browser - - Convert KeePassHTTP data - Konwertuj dane KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Konwertuj starsze atrybuty KeePassHTTP na niestandardowe dane zgodne z KeePassXC-Browser - - - Refresh database root group ID - Odśwież identyfikator grupy głównej bazy danych - Disconnect all browsers Rozłącz wszystkie przeglądarki @@ -1661,6 +1791,10 @@ Jeśli nie masz pliku klucza, pozostaw puste pole. Forget all site-specific settings on entries Zapomnij wszystkie ustawienia witryn dla wpisów + + Refresh database root group ID + Odśwież identyfikator grupy głównej bazy danych + Stored keys Przechowywane klucze @@ -1697,7 +1831,7 @@ Może to uniemożliwić połączenie z wtyczką przeglądarki. Created - Stworzone + Utworzono Enable Browser Integration to access these settings. @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. Czy na pewno chcesz rozłączyć wszystkie przeglądarki? Może to uniemożliwić połączenie z wtyczką przeglądarki. - - KeePassXC: No keys found - KeePassXC: Nie znaleziono kluczy - No shared encryption keys found in KeePassXC settings. Nie znaleziono współdzielonych kluczy szyfrujących w ustawieniach KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Usunięto klucze z bazy danych - Successfully removed %n encryption key(s) from KeePassXC settings. Pomyślnie usunięto %n klucz szyfrowania z ustawień KeePassXC.Pomyślnie usunięto %n klucze szyfrowania z ustawień KeePassXC.Pomyślnie usunięto %n kluczy szyfrowania z ustawień KeePassXC.Pomyślnie usunięto %n kluczy szyfrowania z ustawień KeePassXC. @@ -1739,32 +1865,14 @@ Uprawnienia dostępu do wpisów zostaną odwołane. Abort Zaniechaj - - KeePassXC: Removed permissions - KeePassXC: Usunięto uprawnienia - Successfully removed permissions from %n entry(s). Pomyślnie usunięto uprawnienia z %n wpisu.Pomyślnie usunięto uprawnienia z %n wpisów.Pomyślnie usunięto uprawnienia z %n wpisów.Pomyślnie usunięto uprawnienia z %n wpisów. - - KeePassXC: No entry with permissions found! - KeePassXC: Nie znaleziono wpisu z uprawnieniami! - The active database does not contain an entry with permissions. Aktywna baza danych nie zawiera wpisu z uprawnieniami. - - Move KeePassHTTP attributes to custom data - Przenieś atrybuty KeePassHTTP do niestandardowych danych - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Czy na pewno chcesz przekonwertować wszystkie dane przestarzałej integracji z przeglądarką do najnowszego standardu? -Jest to konieczne, aby zachować zgodność z wtyczką przeglądarki. - Refresh database ID Odśwież identyfikator bazy danych @@ -1772,9 +1880,29 @@ Jest to konieczne, aby zachować zgodność z wtyczką przeglądarki. Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Czy naprawdę chcesz odświeżyć identyfikator bazy danych? + Czy na pewno chcesz odświeżyć identyfikator bazy danych? Jest to konieczne tylko wtedy, gdy baza danych jest kopią innej, a rozszerzenie przeglądarki nie może się połączyć. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Konwertuj starsze atrybuty KeePassHTTP na niestandardowe dane zgodne z KeePassXC-Browser + + + No keys found + Nie znaleziono kluczy + + + Removed keys from database + Usunięto klucze z bazy danych + + + Removed permissions + Usunięto uprawnienia + + + No entry with permissions found! + Nie znaleziono wpisu z uprawnieniami! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Czy na pewno chcesz kontynuować bez hasła? Failed to change database credentials Nie udało się zmienić danych uwierzytelniających bazy danych + + Weak password + Słabe hasło + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + To jest słabe hasło! Aby lepiej chronić swoje sekrety, należy wybrać silniejsze hasło. + + + The provided password does not meet the minimum quality requirement. + Podane hasło nie spełnia minimalnych wymagań jakościowych. + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Czy na pewno chcesz kontynuować bez hasła? Decryption Time: Czas odszyfrowania: - - Change existing decryption time - Zmień istniejący czas odszyfrowywania - - - Change - Zmień - Decryption time in seconds Czas odszyfrowania w sekundach @@ -1895,11 +2027,11 @@ Czy na pewno chcesz kontynuować bez hasła? Parallelism: - Paralelizm: + Równoległość: Parallelism - Paralelizm + Równoległość KDBX 4 (recommended) @@ -1909,11 +2041,6 @@ Czy na pewno chcesz kontynuować bez hasła? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - niezmieniony - Number of rounds too high Key transformation rounds @@ -1925,7 +2052,7 @@ Czy na pewno chcesz kontynuować bez hasła? If you keep this number, your database may take hours, days, or even longer to open. Używasz bardzo dużej liczby rund transformacji klucza z Argon2. -Jeśli zachowasz tę liczbę, otworzenie twojej bazy danych może zająć godziny, dni lub nawet dłużej. +Jeśli zachowasz tę liczbę, otworzenie Twojej bazy danych może zająć godziny, dni lub nawet dłużej. Understood, keep number @@ -1946,7 +2073,7 @@ Jeśli zachowasz tę liczbę, otworzenie twojej bazy danych może zająć godzin If you keep this number, your database will not be protected from brute force attacks. Używasz bardzo małej liczby rund transformacji klucza z AES-KDF. -Jeśli zachowasz tę liczbę, twoja baza danych nie będzie chroniona przed atakami siłowymi. +Jeśli zachowasz tę liczbę, Twoja baza danych nie będzie chroniona przed atakami siłowymi. KDF unchanged @@ -1966,6 +2093,18 @@ Jeśli zachowasz tę liczbę, twoja baza danych nie będzie chroniona przed atak Threads for parallel execution (KDF settings) wątek wątki wątków wątków + + Encryption Settings: + Ustawienia szyfrowania: + + + Basic + Podstawowe + + + Advanced + Zaawansowane + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ Jeśli zachowasz tę liczbę, twoja baza danych nie będzie chroniona przed atak Maximum number of history items per entry Maksymalna liczba pozycji historii na wpis - - Max. history items: - Maks. liczba wpisów w historii: - Maximum size of history per entry Maksymalny rozmiar historii na wpis - - Max. history size: - Maks. rozmiar historii: - MiB MiB @@ -2060,12 +2191,114 @@ Jeśli zachowasz tę liczbę, twoja baza danych nie będzie chroniona przed atak Do you want to delete the current recycle bin and all its contents? This action is not reversible. Czy chcesz usunąć bieżący kosz i całą jego zawartość? -To działanie jest nieodwracalne. +Ta czynność jest nieodwracalna. (old) (stare) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Podczas zapisywania tego ustawienia +lub edytowania wpisu najstarsze pozycje +historii wpisu zostaną usunięte, tak że +pozostanie tylko określona liczba wpisów. + + + Limit the amount of history items per entry to: + Ogranicz liczbę pozycji historii na wpis do: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Podczas zapisywania tego ustawienia +lub edytowania wpisu najstarsze pozycje +historii wpisu zostaną usunięte, tak aby +pozostałe pozycje historii sumowały się +co najwyżej do określonej wartości. + + + Limit the total size of history items per entry to: + Ogranicz całkowity rozmiar pozycji historii na wpis do: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Przenieś wpisy do grupy kosza zamiast +usuwać je z bazy danych. Wpisy usunięte +z kosza są usuwane z bazy danych. + + + Autosave delay since last change + Opóźnienie autozapisu od ostatniej zmiany + + + Autosave delay + Opóźnienie autozapisu + + + Autosave delay since last change in minutes + Opóźnienie autozapisu od ostatniej zmiany, w minutach + + + min + min + + + Autosave delay since last change checkbox + Pole wyboru opóźnienia autozapisu od ostatniej zmian + + + Public Database Metadata + Publiczne metadane bazy danych + + + Warning: the following settings are not encrypted. + Ostrzeżenie: poniższe ustawienia nie są szyfrowane. + + + Display name: + Wyświetlana nazwa: + + + Publically visible display name used on the unlock dialog + Publicznie widoczna wyświetlana nazwa używana w oknie dialogowym odblokowywania + + + Database public display name + Wyświetlana nazwa publiczna bazy danych + + + Display color: + Wyświetlany kolor: + + + Publically visible color used on the unlock dialog + Publicznie widoczny kolor używany w oknie dialogowym odblokowywania + + + Database public display color chooser + Selektor wyświetlanego koloru publicznego bazy danych + + + Clear + Wyczyść + + + Display icon: + Wyświetlana ikona: + + + Select Database Icon + Wybierz ikonę bazy danych + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,141 @@ To działanie jest nieodwracalne. Pole opisu bazy danych + + DatabaseSettingsWidgetRemote + + Sync Commands + Polecenia synchronizacji + + + Remove + Usuń + + + Command Settings + Ustawienia poleceń + + + Name + Nazwa + + + Save + Zapisz + + + Download + Pobierz + + + Command: + Polecenie: + + + Download command field + Pole polecenia pobierania + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + np.: "sftp użytkownik@nazwahosta" lub "scp użytkownik@nazwahosta:ZdalnaBazaDanych.kdbx {TEMP_DATABASE}" + + + Input: + Wejście: + + + Download input field + Pole wejścia pobierania + + + Upload + Wyślij + + + Upload command field + Pole polecenia wysyłania + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + np.: "sftp użytkownik@nazwahosta" lub "scp {TEMP_DATABASE} użytkownik@nazwahosta:ZdalnaBazaDanych.kdbx" + + + Upload input field + Pole wejścia wysyłania + + + Name cannot be empty. + Nazwa nie może być pusta. + + + Test + Testuj + + + Download command cannot be empty. + Polecenie pobierania nie może być puste. + + + Download failed with error: %1 + Pobieranie nie powiodło się z błędem: %1 + + + Download finished, but file %1 could not be found. + Pobieranie zostało zakończone, ale nie można znaleźć pliku %1. + + + Download successful. + Pobieranie powiodło się. + + + Save Remote Settings + Zapisz ustawienia zdalne + + + You have unsaved changes. Do you want to save them? + Masz niezapisane zmiany. Czy chcesz je zapisać? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + np.: +get ZdalnaBazaDanych.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} służy jako symbol zastępczy do przechowywania bazy danych w tymczasowej lokalizacji +Polecenie musi się zakończyć. W przypadku `sftp` jako ostatniego polecenia należy wysłać `exit` + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + np.: +put {TEMP_DATABASE} ZdalnaBazaDanych.kdbx +exit +--- +{TEMP_DATABASE} służy jako symbol zastępczy do przechowywania bazy danych w tymczasowej lokalizacji +Polecenie musi się zakończyć. W przypadku `sftp` jako ostatniego polecenia należy wysłać `exit` + + + + Timeout: + Przekroczenie limitu czasu: + + + seconds + sekundy + + DatabaseTabWidget @@ -2191,28 +2559,12 @@ Jest to z pewnością błąd, zgłoś go programistom. CSV file - plik CSV - - - Select CSV file - Wybierz plik CSV + Plik CSV Merge database Scal bazę danych - - KeePass 1 database - Baza danych KeePass 1 - - - Open KeePass 1 database - Otwórz bazę danych KeePass 1 - - - Open OPVault - Otwórz OPVault - Export database to CSV file Eksportuj bazę danych do pliku CSV @@ -2225,34 +2577,42 @@ Jest to z pewnością błąd, zgłoś go programistom. Writing the HTML file failed. Nie udało się zapisać pliku HTML. + + Export database to XML file + Eksportuj bazę danych do pliku XML + + + XML file + Plik XML + + + Writing the XML file failed + Nie udało się zapisać pliku XML + Export Confirmation Potwierdzenie eksportu You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Za chwilę wyeksportujesz bazę danych do niezaszyfrowanego pliku. To narazi twoje hasła i wrażliwe informacje! Jesteś pewien, że chcesz kontynuować? - - - New Database - Nowa baza danych - - - %1 [New Database] - Database tab name modifier - %1 [Nowa baza danych] + Za chwilę wyeksportujesz bazę danych do niezaszyfrowanego pliku. To narazi hasła i wrażliwe informacje! Czy na pewno chcesz kontynuować? %1 [Locked] Database tab name modifier %1 [Zablokowana] + + %1 [Temporary] + Database tab name modifier + %1 [Tymczasowa] + DatabaseWidget - Database Tags - Tagi bazy danych + Searches and Tags + Wyszukiwania i tagi Searching… @@ -2288,7 +2648,7 @@ Jest to z pewnością błąd, zgłoś go programistom. Do you really want to delete the group "%1" for good? - Czy na pewno całkowicie usunąć grupę "%1"? + Czy na pewno chcesz całkowicie usunąć grupę "%1"? Move group to recycle bin? @@ -2302,6 +2662,10 @@ Jest to z pewnością błąd, zgłoś go programistom. Expired entries Wygasłe wpisy + + Entries expiring within %1 day(s) + Wpisy wygasają w ciągu %1 dniaWpisy wygasają w ciągu %1 dniWpisy wygasają w ciągu %1 dniWpisy wygasają w ciągu %1 dni + No current database. Brak bieżącej bazy danych. @@ -2326,6 +2690,18 @@ Jest to z pewnością błąd, zgłoś go programistom. No Results Brak wyników + + Save + Zapisz + + + Enter a unique name or overwrite an existing search from the list: + Wprowadź unikalną nazwę lub zastąp istniejące wyszukiwanie z listy: + + + Save Search + Zapisz wyszukiwanie + Lock Database? Zablokować bazę danych? @@ -2337,7 +2713,7 @@ Jest to z pewnością błąd, zgłoś go programistom. "%1" was modified. Save changes? - "%1" został zmieniony. + "%1" została zmodyfikowana. Zapisać zmiany? @@ -2354,26 +2730,6 @@ Zapisać zmiany? File has changed Plik się zmienił - - The database file has changed. Do you want to load the changes? - Plik bazy danych uległ zmianie. Czy chcesz załadować zmiany? - - - Merge Request - Żądanie scalenia - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Plik bazy danych został zmieniony, a masz niezapisane zmiany. -Czy chcesz scalić twoje zmiany? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Nie można otworzyć nowego pliku bazy danych podczas próby automatycznego przeładowania. -Błąd: %1 - Disable safe saves? Wyłączyć bezpieczne zapisywanie? @@ -2410,15 +2766,100 @@ Wyłączyć bezpieczne zapisywanie i spróbować ponownie? Are you sure you want to permanently delete everything from your recycle bin? - Czy na pewno chcesz nieodwracalnie usunąć wszystko z twojego kosza? + Czy na pewno chcesz nieodwracalnie usunąć wszystko z kosza? Could not find database file: %1 Nie można znaleźć pliku bazy danych: %1 - - Entries expiring within %1 day(s) - Wpisy wygasają w ciągu %1 dniaWpisy wygasają w ciągu %1 dniWpisy wygasają w ciągu %1 dniWpisy wygasają w ciągu %1 dni + + New Database + Nowa baza danych + + + %1 [New Database] + Database tab name modifier + %1 [Nowa baza danych] + + + Remote Sync did not contain any download or upload commands. + Synchronizacja zdalna nie zawierała żadnych poleceń pobierania ani wysyłania. + + + Remote sync '%1' completed successfully! + Zdalna synchronizacja '%1' zakończona pomyślnie! + + + Remote sync '%1' failed: %2 + Zdalna synchronizacja '%1' nie powiodła się: %2 + + + Error while saving database %1: %2 + Błąd podczas zapisywania bazy danych %1: %2 + + + Downloading... + Pobieranie... + + + Uploading... + Wysyłanie... + + + Syncing... + Synchronizowanie... + + + Remove passkey from entry + Usuń klucz dostępu z wpisu + + + Do you want to remove the passkey from this entry? + Czy chcesz usunąć klucz dostępu z tego wpisu? + + + The database file "%1" was modified externally + Plik bazy danych "%1" został zmodyfikowany zewnętrznie + + + Do you want to load the changes? + Czy chcesz załadować zmiany? + + + Reload database + Załaduj ponownie bazę danych + + + Reloading database… + Ponowne ładowanie bazy danych… + + + Reload canceled + Anulowano ponowne ładowanie + + + Reload successful + Ponowne ładowanie powiodło się + + + Reload pending user action… + Załaduj ponownie oczekującą czynność użytkownika… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Plik bazy danych "%1" został zmodyfikowany zewnętrznie.<br>Jak chcesz kontynuować?<br><br>Scal wszystkie zmiany<br>Ignoruj ​​zmiany na dysku do momentu zapisania<br>Odrzuć niezapisane zmiany + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Plik bazy danych "%1" został zmodyfikowany zewnętrznie.<br>Jak chcesz kontynuować?<br><br>Scal wszystkie zmiany, a następnie zapisz<br>Nadpisz zmiany na dysku<br>Odrzuć niezapisane zmiany + + + Database file overwritten. + Plik bazy danych został nadpisany. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Pliku bazy danych na dysku nie można odblokować przy użyciu bieżących danych uwierzytelniających.<br>Aby kontynuować, wprowadź nowe dane uwierzytelniające i/lub obecny klucz sprzętowy. @@ -2471,10 +2912,6 @@ Wyłączyć bezpieczne zapisywanie i spróbować ponownie? n/a nie dotyczy - - (encrypted) - (zaszyfrowane) - Select private key Wybierz klucz prywatny @@ -2561,6 +2998,10 @@ Czy chcesz go poprawić? Hide Ukryj + + %n hour(s) + %n godzina%n godziny%n godzin%n godzin + %n week(s) %n tydzień%n tygodnie%n tygodni%n tygodni @@ -2573,9 +3014,9 @@ Czy chcesz go poprawić? %n year(s) %n rok%n lata%n lat%n lat - - %n hour(s) - %n godzina%n godziny%n godzin%n godzin + + Failed to decrypt SSH key, ensure password is correct. + Nie udało się odszyfrować klucza SSH. Upewnij się, że hasło jest poprawne. @@ -2646,11 +3087,11 @@ Czy chcesz go poprawić? Foreground Color: - Kolor pierwszego planu: + Kolor tekstu: Foreground color selection - Wybór koloru pierwszego planu + Wybór koloru tekstu Background Color: @@ -2685,7 +3126,7 @@ Czy chcesz go poprawić? Window Associations - Skojarzenia okna + Skojarzenia okien Existing window associations @@ -2695,10 +3136,20 @@ Czy chcesz go poprawić? Add new window association Dodaj nowe skojarzenie okna + + + + Add item + + + Remove selected window association Usuń wybrane skojarzenie okna + + - + Remove item + - + Window title: Tytuł okna: @@ -2717,29 +3168,15 @@ Czy chcesz go poprawić? Use a specific sequence for this association: - Użyj określonej sekwencji dla tego powiązania: + Użyj określonej sekwencji dla tego skojarzenia: Custom Auto-Type sequence for this window Niestandardowa sekwencja autowpisywania dla tego okna - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Te ustawienia wpływają na zachowanie wpisu z rozszerzeniem przeglądarki. - General Ogólne @@ -2752,26 +3189,14 @@ Czy chcesz go poprawić? Skip Auto-Submit for this entry Pomiń autoprzesyłanie dla tego wpisu - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Wyślij to ustawienie do przeglądarki tylko w przypadku okien dialogowych uwierzytelniania HTTP. Jeśli ta opcja jest włączona, zwykłe formularze logowania nie będą wyświetlać tego wpisu do wyboru. - Use this entry only with HTTP Basic Auth Użyj tego wpisu tylko w przypadku podstawowego uwierzytelniania HTTP - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Nie wysyłaj tego ustawienia do przeglądarki w przypadku okien dialogowych uwierzytelniania HTTP. Jeśli jest włączone, okna dialogowe uwierzytelniania HTTP nie będą pokazywać tego wpisu do wyboru. - Do not use this entry with HTTP Basic Auth Nie używaj tego wpisu z podstawowym uwierzytelnianiem HTTP - - Additional URL's - Dodatkowe adresy URL - Add Dodaj @@ -2784,6 +3209,22 @@ Czy chcesz go poprawić? Edit Edytuj + + These settings affect the entry's behaviour with the browser extension. + Te ustawienia wpływają na zachowanie wpisu z rozszerzeniem przeglądarki. + + + Additional URLs + Dodatkowe adresy URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Wysyłaj ten wpis do przeglądarki tylko w przypadku okien dialogowych uwierzytelniania HTTP. Jeśli ta opcja jest włączona, zwykłe formularze logowania nie będą wyświetlać tego wpisu do wyboru. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Nie wysyłaj tego wpisu do przeglądarki w przypadku okien dialogowych uwierzytelniania HTTP. Jeśli ta opcja jest włączona, okna dialogowe uwierzytelniania HTTP nie będą pokazywać tego wpisu do wyboru. + EditEntryWidgetHistory @@ -2834,22 +3275,10 @@ Czy chcesz go poprawić? Notes field Pole notatek - - Toggle the checkbox to reveal the notes section. - Przełącz pole wyboru, aby wyświetlić sekcję notatek. - Username field Pole nazwy użytkownika - - Toggle notes visible - Przełącz widoczność notatek - - - Notes: - Notatki: - Expiration field Pole wygaśnięcia @@ -2866,14 +3295,6 @@ Czy chcesz go poprawić? Presets Ustawienia - - Password: - Hasło: - - - URL: - Adres URL: - Url field Pole adresu URL @@ -2882,18 +3303,10 @@ Czy chcesz go poprawić? Download favicon for URL Pobierz ikonę ulubionych dla adresu URL - - Title: - Tytuł: - Title field Pole tytułu - - Username: - Użytkownik: - Password field Pole hasła @@ -2902,18 +3315,42 @@ Czy chcesz go poprawić? Toggle expiration Przełącz wygasanie - - Expires: - Wygasa: - - - Tags: - Tagi: - Tags list Lista tagów + + &Username: + &Nazwa użytkownika: + + + &Title: + &Tytuł: + + + &Password: + &Hasło: + + + UR&L: + Adres UR&L: + + + &Notes: + &Notatki: + + + Toggle notes visibility + Przełącz widoczność notatek + + + T&ags: + T&agi: + + + &Expires: + &Wygasa: + EditEntryWidgetSSHAgent @@ -2953,19 +3390,6 @@ Czy chcesz go poprawić? Private key Klucz prywatny - - External file - Plik zewnętrzny - - - Browser for key file - Przeglądaj plik klucza - - - Browse… - Button for opening file dialog - Przeglądaj… - Attachment Załącznik @@ -2982,6 +3406,23 @@ Czy chcesz go poprawić? Remove from agent Usuń z agenta + + External file + Plik zewnętrzny + + + Browser for key file + Przeglądaj plik klucza + + + Browse… + Button for opening file dialog + Przeglądaj… + + + Generate + Wygeneruj + Select attachment file Wybierz plik załącznika @@ -3006,6 +3447,10 @@ Czy chcesz go poprawić? seconds sekundy + + Clear agent + Wyczyść agenta + EditGroupWidget @@ -3017,10 +3462,6 @@ Czy chcesz go poprawić? Icon Ikona - - Browser Integration - Integracja z przeglądarką - Properties Właściwości @@ -3037,6 +3478,10 @@ Czy chcesz go poprawić? Group has unsaved changes Grupa ma niezapisane zmiany + + Browser Integration + Integracja z przeglądarką + Enable Włącz @@ -3052,10 +3497,6 @@ Czy chcesz go poprawić? EditGroupWidgetBrowser - - Edit Group - Edytuj grupę - These settings affect to the group's behaviour with the browser extension. Te ustawienia wpływają na zachowanie grupy z rozszerzeniem przeglądarki. @@ -3066,7 +3507,7 @@ Czy chcesz go poprawić? Hide entries from browser extension toggle for this and sub groups - Ukryj wpisy przed przełączeniem rozszerzenia przeglądarki dla tej i podgrup + Przełączenie ukrywania wpisów przed rozszerzeniem przeglądarki dla tej i podgrup Skip Auto-Submit for entries: @@ -3074,7 +3515,7 @@ Czy chcesz go poprawić? Skip Auto-Submit toggle for this and sub groups - Pomiń przełączenie autoprzesyłania dla tej i podgrup + Przełączenie pomijania autoprzesyłania dla tej i podgrup Use entries only with HTTP Basic Auth: @@ -3082,7 +3523,7 @@ Czy chcesz go poprawić? Only HTTP Auth toggle for this and sub groups - Tylko przełączenie uwierzytelniania HTTP dla tej i podgrup + Przełączenie tylko uwierzytelniania HTTP dla tej i podgrup Do not use entries with HTTP Basic Auth: @@ -3090,7 +3531,23 @@ Czy chcesz go poprawić? Do not use HTTP Auth toggle for this and sub groups - Nie używaj przełączenia uwierzytelniania HTTP dla tej i podgrup + Przełączenie nieużywania uwierzytelniania HTTP dla tej i podgrup + + + Omit WWW subdomain from matching: + Pomiń subdomenę WWW w dopasowaniu: + + + Omit WWW subdomain from matching toggle for this and sub groups + Przełączenie pomijania subdomeny WWW w dopasowaniu dla tej i podgrup + + + Restrict matching to given browser key: + Ogranicz dopasowanie do danego klucza przeglądarki: + + + Restrict matching to given browser key toggle for this and sub groups + Ogranicz dopasowanie do danego przełącznika klucza przeglądarki dla tej i podgrup @@ -3324,10 +3781,6 @@ Obsługiwane rozszerzenia to: %1. Unable to fetch favicon. Nie można pobrać ikony ulubionych. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Możesz włączyć usługę ikon witryn DuckDuckGo w menu Narzędzia -> Ustawienia -> Bezpieczeństwo - Existing icon selected. Wybrano istniejącą ikonę. @@ -3360,32 +3813,36 @@ Obsługiwane rozszerzenia to: %1. The following icon(s) failed: Niepowodzenie następującej ikony:Niepowodzenie następujących ikon:Niepowodzenie następujących ikon:Niepowodzenie następujących ikon: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Możesz włączyć usługę ikon witryn DuckDuckGo w Ustawienia aplikacji -> Bezpieczeństwo + EditWidgetProperties Created: - Stworzone: + Utworzono: Datetime created - Utworzono datę i godzinę + Data i godzina utworzenia Modified: - Modyfikowane: + Modyfikowano: Datetime modified - Zmodyfikowano datę i godzinę + Data i godzina modyfikowania Accessed: - Ostatnio używane: + Dostęp: Datetime accessed - Ostatnio używano datę i godzinę + Data i godzina dostępu Uuid: @@ -3436,6 +3893,24 @@ Może to spowodować nieprawidłowe działanie wtyczek. %1 - Clone %1 - klon + + Passkey + Klucz dostępu + + + Invalid conversion type: %1 + Nieprawidłowy typ konwersji: %1 + + + Invalid conversion syntax: %1 + Nieprawidłowa składnia konwersji: %1 + + + Invalid regular expression syntax %1 +%2 + Nieprawidłowa składnia wyrażenia regularnego %1 +%2 + EntryAttachments @@ -3444,6 +3919,21 @@ Może to spowodować nieprawidłowe działanie wtyczek. Nie można otworzyć pliku "%1" + + EntryAttachmentsDialog + + Form + Formularz + + + File name + Nazwa pliku + + + File contents... + Zawartość pliku... + + EntryAttachmentsModel @@ -3481,14 +3971,6 @@ Może to spowodować nieprawidłowe działanie wtyczek. Remove Usuń - - Rename selected attachment - Zmień nazwę wybranego załącznika - - - Rename - Zmień nazwę - Open selected attachment Otwórz wybrany załącznik @@ -3566,12 +4048,6 @@ Może to spowodować nieprawidłowe działanie wtyczek. Confirm Overwrite Attachment Potwierdź zastąpienie załącznika - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Załącznik "%1" już istnieje. -Czy chcesz zastąpić istniejący załącznik? - Confirm Attachment Potwierdź załącznik @@ -3606,6 +4082,24 @@ Error: %1 Zapisywanie zaktualizowanego załącznika nie powiodło się. Błąd: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Załącznik "%1" już istnieje. +Czy chcesz zastąpić istniejący załącznik? + + + New + Nowy + + + Preview + Podgląd + + + Failed to preview an attachment: Attachment not found + Nie udało się wyświetlić podglądu załącznika: nie został on znaleziony + EntryAttributesModel @@ -3734,15 +4228,15 @@ Błąd: %1 Created - Stworzone + Utworzono Modified - Modyfikowane + Modyfikowano Accessed - Ostatnio używane + Dostęp Attachments @@ -3800,6 +4294,14 @@ Błąd: %1 Has TOTP Ma TOTP + + Background Color + Kolor tła + + + Group Path + Ścieżka grupy + EntryPreviewWidget @@ -3820,8 +4322,8 @@ Błąd: %1 Hasło - Notes - Notatki + URL + Adres URL Expiration @@ -3840,8 +4342,8 @@ Błąd: %1 Użytkownik - URL - Adres URL + Notes + Notatki Advanced @@ -3891,6 +4393,10 @@ Błąd: %1 Never Nigdy + + Double click to copy value + Kliknij dwukrotnie, aby skopiować wartość + Enabled Włączone @@ -3899,6 +4405,10 @@ Błąd: %1 Disabled Wyłączone + + Double click to copy to clipboard + Kliknij dwukrotnie, aby skopiować do schowka + EntryURLModel @@ -3906,6 +4416,10 @@ Błąd: %1 Invalid URL Nieprawidłowy adres URL + + Duplicate URL + Zduplikowany adres URL + EntryView @@ -3921,6 +4435,10 @@ Błąd: %1 Reset to defaults Przywróć domyślne + + + %1 entry(s)... + + %1 wpis...+ %1 wpisy...+ %1 wpisów...+ %1 wpisów... + ExportDialog @@ -3992,7 +4510,7 @@ To narazi Twoje hasła i poufne informacje na niebezpieczeństwo! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Uruchomiona jest inna usługa sekretna (%1). Zatrzymaj ją/usuń przed ponownym włączeniem Integracji usługi sekretnej. + Uruchomiona jest inna usługa sekretna (%1). Zatrzymaj ją/usuń przed ponownym włączeniem integracji z usługą sekretną. Failed to register DBus service at %1.<br/> @@ -4142,6 +4660,199 @@ Możesz włączyć usługę ikon witryn DuckDuckGo w sekcji bezpieczeństwa usta Pobieranie ikon ulubionych (%1/%2)… + + ImportWizard + + Import Wizard + Kreator importu + + + + ImportWizardPageReview + + WizardPage + WizardPage + + + Entry count: %1 + Liczba wpisów: %1 + + + Group + Grupa + + + Title + Tytuł + + + Username + Użytkownik + + + Password + Hasło + + + Url + Adres URL + + + Could not load key file. + Nie można załadować pliku klucza. + + + Could not open remote database. Password or key file may be incorrect. + Nie można otworzyć zdalnej bazy danych. Hasło lub plik klucza mogą być nieprawidłowe. + + + + ImportWizardPageSelect + + Form + Formularz + + + Import File Selection + Wybór pliku importu + + + Password: + Hasło: + + + Key File: + Plik klucza: + + + Browse… + Przeglądaj… + + + Import Into: + Importuj do: + + + New Database + Nowa baza danych + + + No unlocked databases available + Brak dostępnych odblokowanych baz danych + + + Existing Database: + Istniejąca baza danych: + + + Import File: + Importuj plik: + + + Comma Separated Values (.csv) + Format CSV (.csv) + + + 1Password Export (.1pux) + Eksport 1Password (.1pux) + + + 1Password Vault (.opvault) + Sejf 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Baza danych KeePass 1 (.kdb) + + + Open OPVault + Otwórz OPVault + + + Select import file + Wybierz plik importu + + + All files + Wszystkie pliki + + + Key files + Pliki kluczy + + + Select key file + Wybierz plik klucza + + + Comma Separated Values + Format CSV + + + 1Password Export + Eksport 1Password + + + Bitwarden JSON Export + Eksport JSON Bitwarden + + + 1Password Vault + Sejf 1Password + + + KeePass1 Database + Baza danych KeePass 1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Eksport JSON Proton Pass + + + Temporary Database + Tymczasowa baza danych + + + Command: + Polecenie: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + np.: "sftp użytkownik@nazwahosta" lub "scp użytkownik@nazwahosta:ZdalnaBazaDanych.kdbx {TEMP_DATABASE}" + + + Input: + Wejście: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + np.: +get ZdalnaBazaDanych.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} służy jako symbol zastępczy do przechowywania bazy danych w tymczasowej lokalizacji +Polecenie musi się zakończyć. W przypadku `sftp` jako ostatniego polecenia należy wysłać `exit` + + + + Remote Database (.kdbx) + Zdalna baza danych (.kdbx) + + KMessageWidget @@ -4576,17 +5287,6 @@ Wiersz %2, kolumna %3 Nie udało się otworzyć klucza prywatnego - - KeePass1OpenWidget - - Import KeePass1 Database - Importuj bazę danych KeePass1 - - - Unable to open the database. - Nie można otworzyć bazy danych. - - KeePass1Reader @@ -4930,7 +5630,7 @@ Czy na pewno chcesz kontynuować z tym plikiem? Could not register global shortcut - Nie udało się zarejestrować skrótu globalnego + Nie można zarejestrować skrótu globalnego @@ -4943,10 +5643,6 @@ Czy na pewno chcesz kontynuować z tym plikiem? &Recent Databases &Ostatnie bazy danych - - &Import - &Importuj - &Export &Eksportuj @@ -4967,6 +5663,10 @@ Czy na pewno chcesz kontynuować z tym plikiem? TOTP TOTP + + Tags + Tagi + &Groups &Grupy @@ -5011,34 +5711,18 @@ Czy na pewno chcesz kontynuować z tym plikiem? &New Database… &Nowa baza danych… - - Create a new database - Stwórz nową bazę danych - &Merge From Database… &Scal z bazą danych… - - Merge from another KDBX database - Scal z inną bazą KDBX - &New Entry… &Nowy wpis… - - Add a new entry - Dodaj nowy wpis - &Edit Entry… &Edytuj wpis… - - View or edit entry - Podgląd lub edycja wpisu - &Delete Entry… &Usuń wpis… @@ -5047,10 +5731,6 @@ Czy na pewno chcesz kontynuować z tym plikiem? &New Group… &Nowa grupa… - - Add a new group - Dodaj nową grupę - &Edit Group… &Edytuj grupę… @@ -5083,18 +5763,10 @@ Czy na pewno chcesz kontynuować z tym plikiem? Database &Reports… &Raporty bazy danych… - - Statistics, health check, etc. - Statystyka, kontrola zdrowia itp. - &Database Settings… Ustawienia bazy &danych… - - Database settings - Ustawienia bazy danych - &Clone Entry… &Sklonuj wpis… @@ -5103,41 +5775,25 @@ Czy na pewno chcesz kontynuować z tym plikiem? Move u&p Przesuń w &górę - - Move entry one step up - Przesuń wpis o jeden krok w górę - Move do&wn Przesuń w &dół - - Move entry one step down - Przesuń wpis o jeden krok w dół - Copy &Username Skopi&uj nazwę użytkownika - - Copy username to clipboard - Skopiuj użytkownika do schowka - Copy &Password Skopiuj &hasło - - Copy password to clipboard - Skopiuj hasło do schowka - &Settings &Ustawienia &Password Generator - &Generator hasła + &Generator haseł Perform &Auto-Type @@ -5164,25 +5820,13 @@ Czy na pewno chcesz kontynuować z tym plikiem? &Tytuł - Copy title to clipboard - Skopiuj tytuł do schowka - - - &URL - Adres &URL - - - Copy URL to clipboard - Skopiuj adres URL do schowka + Copy &URL + Skopiuj adres &URL &Notes &Notatki - - Copy notes to clipboard - Skopiuj notatki do schowka - &CSV File… Plik &CSV… @@ -5195,26 +5839,14 @@ Czy na pewno chcesz kontynuować z tym plikiem? KeePass 1 Database… Baza danych KeePass 1… - - Import a KeePass 1 database - Importuj bazę danych KeePass 1 - 1Password Vault… Sejf 1Password… - - Import a 1Password Vault - Importuj sejf 1Password - CSV File… Plik CSV… - - Import a CSV file - Importuj plik CSV - Show TOTP Pokaż TOTP @@ -5231,6 +5863,10 @@ Czy na pewno chcesz kontynuować z tym plikiem? Copy &TOTP Skopiuj &TOTP + + Copy Password and TOTP + Skopiuj hasło i TOTP + E&mpty recycle bin Opróżnij k&osz @@ -5255,10 +5891,6 @@ Czy na pewno chcesz kontynuować z tym plikiem? &Online Help Po&moc online - - Go to online documentation - Przejdź do dokumentacji online - &User Guide Podręcznik uż&ytkownika @@ -5303,6 +5935,10 @@ Czy na pewno chcesz kontynuować z tym plikiem? Classic (Platform-native) Klasyczny (natywny dla platformy) + + Show Menubar + Pokaż pasek menu + Show Toolbar Pokaż pasek narzędzi @@ -5327,6 +5963,10 @@ Czy na pewno chcesz kontynuować z tym plikiem? Clone Group... Sklonuj grupę... + + &XML File… + Plik &XML… + Clear history Wyczyść historię @@ -5354,10 +5994,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - OSTRZEŻENIE: Twoja wersja Qt może powodować awarie KeePassXC z klawiaturą ekranową. -Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania. + No Tags + Bez tagów Restore Entry(s) @@ -5387,6 +6025,10 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Quit KeePassXC Zakończ KeePassXC + + %1 Entry(s) + %1 wpis%1 wpisy%1 wpisów%1 wpisów + Please present or touch your YubiKey to continue… Proszę okazać lub dotknąć swój YubiKey, aby kontynuować… @@ -5399,6 +6041,314 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.You must restart the application to apply this setting. Would you like to restart now? Musisz uruchomić ponownie aplikację, aby zastosować to ustawienie. Czy chcesz teraz to zrobić? + + Allow Screen Capture + Zezwól na przechwytywanie ekranu + + + 1Password 1PUX... + 1PUX 1Password... + + + Import a 1Password 1PUX file + Importuj plik 1PUX 1Password + + + Import… + Importuj… + + + Passkeys… + Klucz dostępu… + + + Import Passkey + Importuj klucz dostępu + + + Remote S&ync… + Zdalna s&ynchronizacja… + + + Quit Application + Zakończ aplikację + + + Open About Dialog + Otwórz okno dialogowe o programie + + + Open Database + Otwórz bazę danych + + + Create Database + Utwórz bazę danych + + + Merge From Database + Scal z bazą danych + + + Create Entry + Utwórz wpis + + + Edit Entry + Edytuj wpis + + + Delete Entry + Usuń wpis + + + Create Group + Utwórz grupę + + + Edit Group + Edytuj grupę + + + Delete Group + Usuń grupę + + + Download All Favicons + Pobierz wszystkie ikony ulubionych + + + Sort Groups A-Z + Sortuj grupy A-Z + + + Sort Groups Z-A + Sortuj grupy Z-A + + + Save Database As + Zapisz bazę danych jako + + + Show Database Security + Pokaż bezpieczeństwo bazy danych + + + Show Database Reports + Pokaż raporty bazy danych + + + Show Database Settings + Pokaż ustawienia bazy danych + + + Show Passkeys + Pokaż klucze dostępu + + + Clone Entry + Sklonuj wpis + + + Move Entry Up + Przesuń wpis w górę + + + Move Entry Down + Przesuń wpis w dół + + + Copy Username + Skopiuj nazwę użytkownika + + + Copy Password + Skopiuj hasło + + + Show Application Settings + Pokaż ustawienia aplikacji + + + Show Password Generator + Pokaż generator haseł + + + Remove Passkey From Entry + Usuń klucz dostępu z wpisu + + + Perform Auto-Type: {USERNAME} + Wykonaj autowpisywanie: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Wykonaj autowpisywanie: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Wykonaj autowpisywanie: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Wykonaj autowpisywanie: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Wykonaj autowpisywanie: {TOTP} + + + Copy Title + Skopiuj tytuł + + + Copy URL + Skopiuj adres URL + + + Copy Notes + Skopiuj notatki + + + Export to CSV + Eksportuj do CSV + + + Export to HTML + Eksportuj do HTML + + + Import KeePass1 Database + Importuj bazę danych KeePass1 + + + Import 1Password Vault + Importuj sejf 1Password + + + Import CSV File + Importuj plik CSV + + + Show TOTP QR Code + Pokaż kod QR TOTP + + + Set up TOTP + Ustaw TOTP + + + Empty Recycle Bin + Opróżnij kosz + + + Open Donation Website + Otwórz witrynę wspomagania + + + Open Bug Report + Otwórz raport o błędzie + + + Open Online Documentation + Otwórz dokumentację online + + + Open Keyboard Shortcuts Guide + Otwórz przewodnik po skrótach klawiaturowych + + + Save Database Backup + Zapisz kopię zapasową bazy danych + + + SSH Agent: Add Key + Agent SSH: Dodaj klucz + + + SSH Agent: Remove Key + Agent SSH: Usuń klucz + + + Toggle Compact Mode + Przełącz tryb kompaktowy + + + Set Theme: Automatic + Ustaw motyw: Automatyczny + + + Set Theme: Light + Ustaw motyw: Jasny + + + Set Theme: Dark + Ustaw motyw: Ciemny + + + Set Theme: Classic + Ustaw motyw: Klasyczny + + + Toggle Show Menubar + Przełącz pokazywanie paska menu + + + Toggle Show Toolbar + Przełącz pokazywanie paska narzędzi + + + Toggle Show Preview Panel + Przełącz pokazywanie panelu podglądu + + + Toggle Always on Top + Przełącz zawsze na wierzchu + + + Toggle Hide Usernames + Przełącz ukrywanie użytkowników + + + Toggle Hide Passwords + Przełącz ukrywanie haseł + + + Export to XML + Eksportuj do XML + + + Toggle Allow Screen Capture + Przełącz zezwalanie na przechwytywanie ekranu + + + Show Group Panel + Pokaż panel grup + + + Toggle Show Group Panel + Przełącz pokazywanie panelu grup + + + Setup Remote Sync… + Skonfiguruj zdalną synchronizację… + + + Password Generator + Generator haseł + + + E&xpire Entry… + Wy&gaś wpis… + + + Clear SSH Agent + Wyczyść agenta SSH + + + Clear all identities in ssh-agent + Wyczyść wszystkie tożsamości w ssh-agent + ManageDatabase @@ -5456,26 +6406,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Overwriting %1 [%2] Nadpisywanie %1 [%2] - - older entry merged from database "%1" - starszy wpis scalony z bazy danych "%1" - - - Adding backup for older target %1 [%2] - Dodawanie kopii zapasowej dla starszego celu %1 [%2] - - - Adding backup for older source %1 [%2] - Dodawanie kopii zapasowej dla starszego źródła %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Ponowne stosowanie starszego wpisu docelowego na nowszym źródle %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Ponowne stosowanie starszego wpisu źródłowego na nowszym celu %1 [%2] - Synchronizing from newer source %1 [%2] Synchronizacja z nowszego źródła %1 [%2] @@ -5535,14 +6465,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Tutaj możesz dostosować ustawienia szyfrowania bazy danych. Nie martw się, możesz je później zmienić w ustawieniach bazy danych. - - Advanced Settings - Ustawienia zaawansowane - - - Simple Settings - Ustawienia proste - NewDatabaseWizardPageDatabaseKey @@ -5577,6 +6499,25 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Uzupełnij wyświetlaną nazwę i opcjonalny opis nowej bazy danych: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Nazwa załącznika nie może być pusta + + + Attachment with the same name already exists + Załącznik o tej samej nazwie już istnieje + + + Save attachment + Zapisz załącznik + + + New entry attachment + Nowy załącznik wpisu + + NixUtils @@ -5589,7 +6530,7 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania. Could not register global shortcut - Nie udało się zarejestrować skrótu globalnego + Nie można zarejestrować skrótu globalnego @@ -5623,15 +6564,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Oczekiwano %1 bajtów czystego tekstu, znaleziono %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Odczyt bazy danych nie wytworzył wystąpienia -%1 - - OpVaultReader @@ -5705,6 +6637,10 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Unknown cipher: %1 Nieznany szyfr: %1 + + AES-256/GCM is currently not supported + AES-256/GCM nie jest obecnie obsługiwany + Passphrase is required to decrypt this key Do odszyfrowania tego klucza wymagane jest hasło @@ -5769,28 +6705,184 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Unexpected EOF when writing private key Nieoczekiwany koniec pliku (EOF) podczas zapisu klucza prywatnego + + (encrypted) + (zaszyfrowane) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Hasła nie są zgodne + SSH Key Generator + Generator kluczy SSH - Passwords match so far - Hasła są do tej pory zgodne + Type + Typ - Toggle Password (%1) - Przełącz hasło (%1) + Bits + Bity - Generate Password (%1) - Wygeneruj hasło (%1) + Comment + Komentarz + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Eksport kluczy dostępu - Warning: Caps Lock enabled! - Ostrzeżenie: włączony Caps Lock! + Filenames will be generated with title and .passkey file extension. + Nazwy plików zostaną wygenerowane z tytułem i rozszerzeniem pliku .passkey. + + + Export entries + Eksportuj wpisy + + + Export Selected + Eksportuj wybrane + + + Cancel + Anuluj + + + Export to folder + Eksportuj do folderu + + + Export the following passkey entries. + Eksportuj następujące wpisy klucza dostępu. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Eksport kluczy dostępu + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Plik "%1.passkey" już istnieje. +Czy chcesz go zastąpić? + + + + Cannot open file + Nie można otworzyć pliku + + + Cannot open file "%1" for writing. + Nie można otworzyć pliku "%1" do zapisu. + + + Cannot write to file + Nie można zapisać do pliku + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Import kluczy dostępu + + + Username: %1 + Nazwa użytkownika: %1 + + + Group + Grupa + + + Database + Baza danych + + + Import Passkey + Importuj klucz dostępu + + + Import + Importuj + + + Cancel + Anuluj + + + Entry + Wpis + + + Create new entry + Utwórz nowy wpis + + + Relying Party: %1 + Strona ufająca: %1 + + + Import the following passkey: + Importuj następujący klucz dostępu: + + + Import the following passkey to this entry: + Importuj następujący klucz dostępu do tego wpisu: + + + Default passkeys group (Imported Passkeys) + Domyślna grupa kluczy dostępu (importowane klucze dostępu) + + + + PasskeyImporter + + Passkey file + Plik klucza dostępu + + + All files + Wszystkie pliki + + + Cannot open file + Nie można otworzyć pliku + + + Cannot open file "%1" for reading. + Nie można otworzyć pliku "%1" do odczytu. + + + Open passkey file + Otwórz plik klucza dostępu + + + Cannot import passkey + Nie można zaimportować klucza dostępu + + + Cannot import passkey file "%1". Data is missing. + Nie można zaimportować pliku klucza dostępu "%1". Brak danych. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Nie można zaimportować pliku klucza dostępu "%1". +Brakuje następujących danych: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Nie można zaimportować pliku klucza dostępu "%1". Brak klucza prywatnego lub jest on źle sformatowany. @@ -5833,7 +6925,7 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania. <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> - <p>Hasło jest podstawową metodą zabezpieczania bazy danych.</p><p>Dobre hasła są długie i niepowtarzalne. KeePassXC może je wygenerować dla ciebie.</p> + <p>Hasło jest podstawową metodą zabezpieczania bazy danych.</p><p>Dobre hasła są długie i niepowtarzalne. KeePassXC może je dla Ciebie wygenerować.</p> Passwords do not match. @@ -5971,10 +7063,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Also choose from: Wybierz także: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Wykluczone znaki: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Wyklucz podobnie wyglądające znaki @@ -5999,10 +7087,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Word Count: Liczba słów: - - Character Count: - Liczba znaków: - Word Case: Rozmiar słowa: @@ -6015,10 +7099,6 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Add custom wordlist Dodaj niestandardową listę słów - - character - znak - Close Zamknij @@ -6055,6 +7135,30 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Entropy: %1 bit Entropia: %1 bity + + Password Quality: %1 + Jakość hasła: %1 + + + Poor + Password quality + Uboga + + + Weak + Password quality + Słaba + + + Good + Password quality + Dobra + + + Excellent + Password quality + Znakomita + Confirm Delete Wordlist Potwierdź usunięcie listy słów @@ -6087,7 +7191,7 @@ Zalecamy korzystanie z AppImage dostępnego na naszej stronie pobierania.Wordlist "%1" already exists as a custom wordlist. Do you want to overwrite it? Lista słów "%1" już istnieje jako niestandardowa lista słów. -Czy chcesz ją nadpisać? +Czy chcesz ją zastąpić? Failed to add wordlist @@ -6102,8 +7206,47 @@ Czy chcesz ją nadpisać? Znaki specjalne - Password Quality: %1 - Jakość hasła: %1 + passwordLength + Długość hasła + + + Characters: %1 + Znaki: %1 + + + MIXED case + MIESZANE litery + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Wykluczone znaki: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Hasła nie są zgodne + + + Passwords match so far + Hasła są do tej pory zgodne + + + Toggle Password (%1) + Przełącz hasło (%1) + + + Generate Password (%1) + Wygeneruj hasło (%1) + + + Warning: Caps Lock enabled! + Ostrzeżenie: Włączony Caps Lock! + + + Quality: %1 + Jakość: %1 Poor @@ -6125,6 +7268,10 @@ Czy chcesz ją nadpisać? Password quality Znakomita + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Przełącz widoczność hasła za pomocą Control + H. Otwórz generator haseł za pomocą Control + G. + PickcharsDialog @@ -6141,6 +7288,21 @@ Czy chcesz ją nadpisać? Naciskaj &Tab między znakami + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Podgląd załącznika wpisu + + + No preview available + Brak podglądu + + + Image format not supported + Format obrazu nie jest obsługiwany + + QMessageBox @@ -6157,7 +7319,7 @@ Czy chcesz ją nadpisać? Empty - Pusty + Opróżnij Remove @@ -6179,6 +7341,10 @@ Czy chcesz ją nadpisać? Continue Kontynuuj + + Continue with weak password + Kontynuuj ze słabym hasłem + QObject @@ -6200,7 +7366,7 @@ Czy chcesz ją nadpisać? Action cancelled or denied - Działanie anulowane lub odrzucone + Czynność anulowana lub odrzucona Message encryption failed. @@ -6216,7 +7382,7 @@ Czy chcesz ją nadpisać? Incorrect action - Nieprawidłowe działanie + Nieprawidłowa czynność Empty message received @@ -6228,7 +7394,7 @@ Czy chcesz ją nadpisać? No logins found - Nie znaleziono danych do logowania + Nie znaleziono danych logowania No groups found @@ -6288,7 +7454,7 @@ Czy chcesz ją nadpisać? Generate a password for the entry. - Wygeneruj hasło dla wpisu. + Wygeneruj hasło do wpisu. Add a new entry to a database. @@ -6506,7 +7672,7 @@ Czy chcesz ją nadpisać? ERROR: Please specify one of --attribute or --totp, not both. - BŁĄD: Proszę określić jeden z --atrybut lub --totp, a nie oba. + BŁĄD: Określ jeden z --attribute lub --totp, a nie oba. Entry with path %1 has no TOTP set up. @@ -6514,7 +7680,7 @@ Czy chcesz ją nadpisać? ERROR: attribute %1 is ambiguous, it matches %2. - BŁĄD: atrybut %1 jest niejednoznaczny, jest zgodny z %2. + BŁĄD: Atrybut %1 jest niejednoznaczny, jest zgodny z %2. Attribute "%1" not found. @@ -6572,6 +7738,10 @@ Czy chcesz ją nadpisać? Too many arguments provided. Podano zbyt wiele argumentów. + + Path of the database. + Ścieżka bazy danych. + Target decryption time in MS for the database. Docelowy czas odszyfrowywania w ms dla bazy danych. @@ -6582,19 +7752,15 @@ Czy chcesz ją nadpisać? Set the key file for the database. - Ustaw plik klucza dla bazy danych. + Ustaw plik klucza do bazy danych. Set a password for the database. - Ustaw hasło bazy danych. + Ustaw hasło do bazy danych. Create a new database. - Stwórz nową bazę danych. - - - Path of the database. - Ścieżka bazy danych. + Utwórz nową bazę danych. Invalid decryption time %1. @@ -6641,283 +7807,56 @@ Czy chcesz ją nadpisać? Pomyślnie utworzono nową bazę danych. - Word count for the diceware passphrase. - Liczba słów dla hasła diceware. + Unset the password for the database. + Usuń hasło do bazy danych. - count - CLI parameter - liczba + Unset the key file for the database. + Usuń plik klucza do bazy danych. - Wordlist for the diceware generator. -[Default: EFF English] - Lista słów dla generatora diceware. -[Domyślna: EFF English] + Edit a database. + Edytuj bazę danych. - Generate a new random diceware passphrase. - Wygeneruj nowe hasło losowe diceware. + Cannot use %1 and %2 at the same time. + Nie można jednocześnie używać %1 i %2. - Invalid word count %1 - Nieprawidłowa liczba wyrazów %1 + Could not change the database key. + Nie można zmienić klucza bazy danych. - The word list is too small (< 1000 items) - Lista wyrazów jest za mała (< 1000 elementów) - - - Title for the entry. - Tytuł dla wpisu. - - - title - tytuł - - - Edit an entry. - Edycja wpisu. - - - Path of the entry to edit. - Ścieżka wpisu do edycji. - - - Not changing any field for entry %1. - Bez zmiany żadnego pola dla wpisu %1. - - - Enter new password for entry: - Wprowadź nowe hasło dls wpisu: + Database was not modified. + Baza danych nie została zmodyfikowana. Writing the database failed: %1 Błąd zapisu bazy danych: %1 - Successfully edited entry %1. - Pomyślnie edytowano wpis %1. + Successfully edited the database. + Pomyślnie edytowano bazę danych. - Perform advanced analysis on the password. - Wykonaj zaawansowaną analizę hasła. + Cannot remove password: The database does not have a password. + Nie można usunąć hasła: baza danych nie ma hasła. - Password for which to estimate the entropy. - Hasło dla którego chcesz oszacować złożoność. + Cannot remove file key: The database does not have a file key. + Nie można usunąć pliku klucza: baza danych nie ma pliku klucza. - Estimate the entropy of a password. - Oszacuj złożoność hasła. + Loading the new key file failed: %1 + Ładowanie nowego pliku klucza nie powiodło się: %1 - Length %1 - Długość %1 + Found unexpected Key type %1 + Znaleziono nieoczekiwany typ %1 klucza - Entropy %1 - Entropia %1 - - - Log10 %1 - Log10 %1 - - - Multi-word extra bits %1 - Dodatkowe bity w wielu wyrazach %1 - - - Type: Bruteforce - Typ: Bruteforce - - - Type: Dictionary - Type: Słownikowy - - - Type: Dict+Leet - Typ: Słownikowy+Leet - - - Type: User Words - Typ: Słowa użytkownika - - - Type: User+Leet - Typ: Użytkownika+Leet - - - Type: Repeated - Typ: Powtarzany - - - Type: Sequence - Typ: Sekwencja - - - Type: Spatial - Typ: Przestrzenny - - - Type: Date - Typ: Data - - - Type: Bruteforce(Rep) - Typ: Bruteforce(Powt.) - - - Type: Dictionary(Rep) - Typ: Słownikowy(Powt.) - - - Type: Dict+Leet(Rep) - Typ: Słownikowy+Leet(Powt.) - - - Type: User Words(Rep) - Typ: Słowa użytkownika(Powt.) - - - Type: User+Leet(Rep) - Typ: Użytkownika+Leet(Powt.) - - - Type: Repeated(Rep) - Typ: Powtarzany(Powt.) - - - Type: Sequence(Rep) - Typ: Sekwencja(Powt.) - - - Type: Spatial(Rep) - Typ: Przestrzenny(Powt.) - - - Type: Date(Rep) - Typ: Data(Powt.) - - - Type: Unknown (%1) - Typ: Nieznany (%1) - - - Entropy %1 (%2) - Entropia %1 (%2) - - - *** Password length (%1) != sum of length of parts (%2) *** - *** Długość hasła (%1) != suma długości części (%2) *** - - - Exit interactive mode. - Wyjdź z trybu interaktywnego. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formatowanie do użycia podczas eksportowania. Dostępne opcje to 'xml' lub 'csv'. Domyślnie wartość 'xml'. - - - Exports the content of a database to standard output in the specified format. - Eksportuje zawartość bazy danych do standardowego wyjścia w określonym formacie. - - - Unable to export database to XML: %1 - Nie można wyeksportować bazy danych do pliku XML: %1 - - - Unsupported format %1 - Nieobsługiwany format %1 - - - Length of the generated password - Długość wygenerowanego hasła - - - length - długość - - - Use lowercase characters - Użyj małych liter - - - Use uppercase characters - Użyj dużych liter - - - Use numbers - Użyj liczb - - - Use special characters - Użyj znaków specjalnych - - - Use extended ASCII - Użyj rozszerzonego ASCII - - - Exclude character set - Wyklucz zestaw znaków - - - chars - znaki - - - Use custom character set - Użyj niestandardowego zestawu znaków - - - Exclude similar looking characters - Wyklucz podobnie wyglądające znaki - - - Include characters from every selected group - Uwzględnij znaki z każdej wybranej grupy - - - Generate a new random password. - Wygeneruj nowe hasło losowe. - - - Invalid password length %1 - Nieprawidłowa długość hasła %1 - - - Invalid password generator after applying all options - Nieprawidłowy generator haseł po zastosowaniu wszystkich opcji - - - Display command help. - Wyświetl pomoc dotyczącą poleceń. - - - Available commands: - Dostępne polecenia: - - - Import the contents of an XML database. - Importuj zawartość bazy danych XML. - - - Path of the XML database export. - Ścieżka eksportu bazy danych XML. - - - Path of the new database. - Ścieżka nowej bazy danych. - - - Unable to import XML database: %1 - Nie można zaimportować bazy danych XML: %1 - - - Successfully imported database. - Pomyślnie zaimportowano bazę danych. + Cannot remove all the keys from a database. + Nie można usunąć wszystkich kluczy z bazy danych. Show a database's information. @@ -7019,6 +7958,273 @@ Czy chcesz ją nadpisać? %1 characters %1 znaków + + Word count for the diceware passphrase. + Liczba słów dla hasła diceware. + + + count + CLI parameter + liczba + + + Wordlist for the diceware generator. +[Default: EFF English] + Lista słów dla generatora diceware. +[Domyślna: EFF English] + + + Generate a new random diceware passphrase. + Wygeneruj nowe hasło losowe diceware. + + + Invalid word count %1 + Nieprawidłowa liczba wyrazów %1 + + + Title for the entry. + Tytuł dla wpisu. + + + title + tytuł + + + Edit an entry. + Edycja wpisu. + + + Path of the entry to edit. + Ścieżka wpisu do edycji. + + + Not changing any field for entry %1. + Bez zmiany żadnego pola dla wpisu %1. + + + Enter new password for entry: + Wprowadź nowe hasło dls wpisu: + + + Successfully edited entry %1. + Pomyślnie edytowano wpis %1. + + + Perform advanced analysis on the password. + Wykonaj zaawansowaną analizę hasła. + + + Password for which to estimate the entropy. + Hasło dla którego chcesz oszacować złożoność. + + + Estimate the entropy of a password. + Oszacuj złożoność hasła. + + + Length %1 + Długość %1 + + + Entropy %1 + Entropia %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + Dodatkowe bity w wielu wyrazach %1 + + + Type: Bruteforce + Typ: Siłowy + + + Type: Dictionary + Type: Słownikowy + + + Type: Dict+Leet + Typ: Słownikowy+Leet + + + Type: User Words + Typ: Słowa użytkownika + + + Type: User+Leet + Typ: Użytkownika+Leet + + + Type: Repeated + Typ: Powtarzany + + + Type: Sequence + Typ: Sekwencja + + + Type: Spatial + Typ: Przestrzenny + + + Type: Date + Typ: Data + + + Type: Bruteforce(Rep) + Typ: Siłowy(Powt.) + + + Type: Dictionary(Rep) + Typ: Słownikowy(Powt.) + + + Type: Dict+Leet(Rep) + Typ: Słownikowy+Leet(Powt.) + + + Type: User Words(Rep) + Typ: Słowa użytkownika(Powt.) + + + Type: User+Leet(Rep) + Typ: Użytkownika+Leet(Powt.) + + + Type: Repeated(Rep) + Typ: Powtarzany(Powt.) + + + Type: Sequence(Rep) + Typ: Sekwencja(Powt.) + + + Type: Spatial(Rep) + Typ: Przestrzenny(Powt.) + + + Type: Date(Rep) + Typ: Data(Powt.) + + + Type: Unknown (%1) + Typ: Nieznany (%1) + + + Entropy %1 (%2) + Entropia %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Długość hasła (%1) != suma długości części (%2) *** + + + Exit interactive mode. + Wyjdź z trybu interaktywnego. + + + Exports the content of a database to standard output in the specified format. + Eksportuje zawartość bazy danych do standardowego wyjścia w określonym formacie. + + + Unable to export database to XML: %1 + Nie można wyeksportować bazy danych do pliku XML: %1 + + + Unsupported format %1 + Nieobsługiwany format %1 + + + Length of the generated password + Długość wygenerowanego hasła + + + length + długość + + + Use lowercase characters + Użyj małych liter + + + Use uppercase characters + Użyj dużych liter + + + Use numbers + Użyj liczb + + + Use special characters + Użyj znaków specjalnych + + + Use extended ASCII + Użyj rozszerzonego ASCII + + + Exclude character set + Wyklucz zestaw znaków + + + chars + znaki + + + Use custom character set + Użyj niestandardowego zestawu znaków + + + Exclude similar looking characters + Wyklucz podobnie wyglądające znaki + + + Include characters from every selected group + Uwzględnij znaki z każdej wybranej grupy + + + Generate a new random password. + Wygeneruj nowe hasło losowe. + + + Invalid password length %1 + Nieprawidłowa długość hasła %1 + + + Invalid password generator after applying all options + Nieprawidłowy generator haseł po zastosowaniu wszystkich opcji + + + Display command help. + Wyświetl pomoc dotyczącą poleceń. + + + Available commands: + Dostępne polecenia: + + + Import the contents of an XML database. + Importuj zawartość bazy danych XML. + + + Path of the XML database export. + Ścieżka eksportu bazy danych XML. + + + Path of the new database. + Ścieżka nowej bazy danych. + + + Unable to import XML database: %1 + Nie można zaimportować bazy danych XML: %1 + + + Successfully imported database. + Pomyślnie zaimportowano bazę danych. + Unknown command %1 Nieznane polecenie %1 @@ -7067,7 +8273,7 @@ Dostępne polecenia: Use the same credentials for both database files. - Użyj tych samych poświadczeń dla obu plików bazy danych. + Użyj tych samych danych uwierzytelniających dla obu plików bazy danych. Key file of the database to merge from. @@ -7191,13 +8397,17 @@ Dostępne polecenia: Show the protected attributes in clear text. Pokaż chronione atrybuty w postaci zwykłego tekstu. + + Show all the attributes of the entry. + Pokaż atrybuty wpisu. + Show the attachments of the entry. Pokaż załączniki wpisu. 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. - Nazwy atrybutów do wyświetlenia. Tą opcję można zastosować więcej niż jeden raz, podając każdy atrybut w osobnym wierszu w określonej kolejności. Jeśli atrybuty nie są określone, wyświetla się podsumowanie domyślnych atrybutów. + Nazwy atrybutów do wyświetlenia. Tę opcję można zastosować więcej niż jeden raz, podając każdy atrybut w osobnym wierszu i w określonej kolejności. Jeśli atrybuty nie są określone, wyświetla się podsumowanie domyślnych atrybutów. attribute @@ -7213,7 +8423,7 @@ Dostępne polecenia: ERROR: unknown attribute %1. - BŁĄD: nieznany atrybut %1. + BŁĄD: Nieznany atrybut %1. No attachments present. @@ -7261,6 +8471,10 @@ Rozważ wygenerowanie nowego pliku klucza. Invalid YubiKey serial %1 Nieprawidłowy numer seryjny YubiKey %1 + + Please present or touch your YubiKey to continue. + Proszę okazać lub dotknąć YubiKey, aby kontynuować. + Enter password to encrypt database (optional): Wprowadź hasło do szyfrowania bazy danych (opcjonalnie): @@ -7275,7 +8489,7 @@ Rozważ wygenerowanie nowego pliku klucza. Error: Passwords do not match. - Błąd: hasła nie są zgodne. + Błąd: Hasła nie są zgodne. No program defined for clipboard manipulation @@ -7309,7 +8523,7 @@ Rozważ wygenerowanie nowego pliku klucza. Error: okon process did not finish - Błąd: proces okon nie zakończył się + Błąd: Proces okon się nie zakończył Failed to load okon processed database: %1 @@ -7413,7 +8627,7 @@ Jądro: %3 %4 Secret Service Integration - Integracja usługi sekretnej + Integracja z usługą sekretną None @@ -7448,8 +8662,8 @@ Jądro: %3 %4 %1 minuta%1 minuty%1 minut%1 minut - Botan library must be at least 2.11.x, found %1.%2.%3 - Biblioteka Botan musi być w wersji co najmniej 2.11.x, znaleziono %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Biblioteka Botan musi być w wersji co najmniej %1, znaleziono %2.%3.%4 Cryptographic libraries: @@ -7499,18 +8713,6 @@ Jądro: %3 %4 file empty plik pusty - - malformed string - nieprawidłowy ciąg - - - missing closing quote - brak cytatu zamknięcia - - - %1: (row, col) %2,%3 - %1: (rząd, kolumna) %2,%3 - AES 256-bit AES 256-bitowy @@ -7581,7 +8783,7 @@ Jądro: %3 %4 Created - Stworzone + Utworzono Benchmark %1 delay @@ -7599,11 +8801,11 @@ Jądro: %3 %4 Do you really want to delete the entry "%1" for good? - Czy na pewno całkowicie usunąć wpis "%1" ? + Czy na pewno chcesz całkowicie usunąć wpis "%1"? Do you really want to delete %n entry(s) for good? - Czy naprawdę chcesz usunąć %n wpis na dobre?Czy naprawdę chcesz usunąć %n wpisy na dobre?Czy naprawdę chcesz usunąć %n wpisów na dobre?Czy naprawdę chcesz usunąć %n wpisów na dobre? + Czy na pewno chcesz całkowicie usunąć %n wpis?Czy na pewno chcesz całkowicie usunąć %n wpisy?Czy na pewno chcesz całkowicie usunąć %n wpisów?Czy na pewno chcesz całkowicie usunąć %n wpisów? Delete entry(s)? @@ -7647,7 +8849,7 @@ Jądro: %3 %4 Statistics - Statystyka + Statystyki Unsupported key file version: %1 @@ -7689,14 +8891,6 @@ Jądro: %3 %4 read password of the database from stdin odczytaj hasło bazy danych z stdin - - allow app screen recordering and screenshots - zezwól na aplikację nagrywania ekranu i zrzuty ekranu - - - Locked databases. - Zablokowane bazy danych. - Database failed to lock. Nie udało się zablokować bazy danych. @@ -7705,6 +8899,10 @@ Jądro: %3 %4 Another instance of KeePassXC is already running. Inna instancja KeePassXC jest już uruchomiona. + + KeePassXC is not running. No open database to lock + KeePassXC nie jest uruchomiony. Brak otwartej bazy danych do zablokowania + Fatal error while testing the cryptographic functions. Błąd krytyczny podczas testowania funkcji kryptograficznych. @@ -7713,10 +8911,6 @@ Jądro: %3 %4 KeePassXC - Error KeePassXC - Błąd - - Warning: Failed to prevent screenshots on a top level window! - Ostrzeżenie: Nie udało się zapobiec zrzutom ekranu w oknie najwyższego poziomu! - Database password: Hasło bazy danych: @@ -7740,8 +8934,312 @@ Jądro: %3 %4 Nie udało się podpisać wyzwania przy użyciu Windows Hello. - Please present or touch your YubiKey to continue. - Proszę okazać lub dotknąć YubiKey, aby kontynuować. + Warning: Failed to block screenshot capture on a top-level window. + Ostrzeżenie: Nie udało się zablokować przechwytywania ekranu okna najwyższego poziomu. + + + Invalid Cipher + Nieprawidłowy szyfr + + + Invalid KDF + Nieprawidłowa KDF + + + Access to all entries is denied + Dostęp do wszystkich wpisów jest zabroniony + + + allow screenshots and app recording (Windows/macOS) + zezwól na zrzuty ekranu i nagrywanie aplikacji (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Ustaw plik klucza do bazy danych. +Ta opcja jest przestarzała, zamiast jej użyj --set-key-file. + + + Databases have been locked. + Bazy danych zostały zablokowane. + + + Attestation not supported + Atestacja nie jest obsługiwana + + + Credential is excluded + Dane uwierzytelniające są wyłączone + + + Passkeys request canceled + Żądanie kluczy dostępu anulowano + + + Invalid user verification + Nieprawidłowa weryfikacja użytkownika + + + Empty public key + Pusty klucz publiczny + + + Invalid URL provided + Podano nieprawidłowy adres URL + + + Passkeys + Klucze dostępu + + + AES initialization failed + Inicjalizacja AES nie powiodła się + + + AES encrypt failed + Szyfrowanie AES nie powiodło się + + + Failed to store in Linux Keyring + Nie udało się zapisać w bazie kluczy systemu Linux + + + Polkit returned an error: %1 + Polkit zwrócił błąd: %1 + + + Could not locate key in keyring + Nie można zlokalizować klucza w bazie kluczy + + + Could not read key in keyring + Nie można odczytać klucza w bazie kluczy + + + AES decrypt failed + Odszyfrowanie AES nie powiodło się + + + No Polkit authentication agent was available + Żaden agent uwierzytelniający Polkit nie był dostępny + + + Polkit authorization failed + Uwierzytelnienie Polkit nie powiodło się + + + No Quick Unlock provider is available + Żaden dostawca szybkiego odblokowania nie jest dostępny + + + Failed to init KeePassXC crypto. + Nie udało się zainicjować krypto KeePassXC. + + + Failed to encrypt key data. + Nie udało się zaszyfrować danych klucza. + + + Failed to get Windows Hello credential. + Nie udało się uzyskać danych uwierzytelniających Windows Hello. + + + Failed to decrypt key data. + Nie udało się odszyfrować danych klucza. + + + Origin is empty or not allowed + Źródło jest puste lub niedozwolone + + + Effective domain is not a valid domain + Domena efektywna nie jest domeną prawidłową + + + Origin and RP ID do not match + Źródło i identyfikator RP nie są zgodne + + + No supported algorithms were provided + Nie zapewniono obsługiwanych algorytmów + + + Wait for timer to expire + Poczekaj, aż upłynie limit czasu + + + Challenge is shorter than required minimum length + Wyzwanie jest krótsze niż wymagana długość minimalna + + + user.id does not match the required length + user.id nie ma wymaganej długości + + + Favorite + Tag for favorite entries + Ulubiony + + + File does not exist. + Plik nie istnieje. + + + Cannot open file: %1 + Nie można otworzyć pliku: %1 + + + Cannot parse file: %1 at position %2 + Nie można przeanalizować pliku: %1 na pozycji %2 + + + Failed to decrypt json file: %1 + Nie udało się odszyfrować pliku JSON: %1 + + + Invalid encKeyValidation field + Nieprawidłowe pole encKeyValidation + + + Invalid cipher list within encKeyValidation field + Nieprawidłowa lista szyfrów w polu encKeyValidation + + + Wrong password + Nieprawidłowe hasło + + + Invalid encrypted data field + Nieprawidłowe pole zaszyfrowanych danych + + + Invalid cipher list within encrypted data field + Nieprawidłowa lista szyfrów w polu zaszyfrowanych danych + + + Cannot initialize cipher + Nie można zainicjować szyfru + + + Cannot decrypt data + Nie można odszyfrować danych + + + Bitwarden Import + Import Bitwarden + + + Archived + Tag for archived entries + Zarchiwizowane + + + Invalid 1PUX file format: Not a valid ZIP file. + Nieprawidłowy format pliku 1PUX: Nie jest to prawidłowy plik ZIP. + + + Invalid 1PUX file format: Missing export.data + Nieprawidłowy format pliku 1PUX: Brak export.data + + + 1Password Import + Import 1Password + + + Enter Shortcut + Wprowadź skrót + + + Action + Czynność + + + Shortcuts + Skróty + + + Unknown passkeys error + Nieznany błąd klucza dostępu + + + Invalid KDF iterations, cannot decrypt json file + Nieprawidłowe iteracje KDF, nie można odszyfrować pliku JSON + + + Unsupported format, ensure your Bitwarden export is password-protected + Nieobsługiwany format. Upewnij się, że eksport Bitwarden jest chroniony hasłem + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Obsługiwane są tylko PBKDF i Argon2, nie można odszyfrować pliku JSON + + + Reset Shortcuts + Zresetuj skróty + + + Double click an action to change its shortcut + Kliknij dwukrotnie czynność, aby zmienić jej skrót + + + Filter... + Filtr... + + + Shortcut Conflict + Konflikt skrótów + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Skrót %1 powoduje konflikt z '%2'. Nadpisać skrót? + + + Cannot generate valid passphrases because the wordlist is too short + Nie można wygenerować prawidłowych haseł, ponieważ lista słów jest zbyt krótka + + + Encrypted files are not supported. + Pliki zaszyfrowane nie są obsługiwane. + + + Proton Pass Import + Import Proton Pass + + + Delete plugin data? + Usunąć dane wtyczki? + + + Delete plugin data from Entry(s)? + Usunąć dane wtyczki z wpisu?Usunąć dane wtyczki z wpisów?Usunąć dane wtyczki z wpisów?Usunąć dane wtyczki z wpisów? + + + Passkey + Klucz dostępu + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Format do użycia podczas eksportowania. Dostępne opcje to 'xml', 'csv' lub 'html'. Domyślnie 'xml'. + + + start minimized to the system tray + uruchom zminimalizowany do zasobnika systemowego + + + malformed string, possible unescaped delimiter + zniekształcony ciąg, prawdopodobnie ogranicznik bez ucieczki + + + missing closing delimiter + brak ogranicznika zamykającego + + + %1, row: %2, column: %3 + %1, wiersz: %2, kolumna: %3 + + + Tags + Tagi @@ -7778,20 +9276,39 @@ Jądro: %3 %4 Błąd wewnętrzny zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Polecenie `%1` nie zostało zakończone na czas. Proces został usunięty. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Nie udało się wysłać scalonej bazy danych. Polecenie `%1` nie zostało zakończone na czas. Proces został usunięty. + + + Invalid download parameters provided. + Podano nieprawidłowe parametry pobierania. + + + Command `%1` failed to download database. + Poleceniu `%1` nie udało się pobrać bazy danych. + + + Invalid database pointer or upload parameters provided. + Podano nieprawidłowy wskaźnik bazy danych lub parametry wysyłania. + + + Command `%1` exited with status code: %2 + Polecenie `%1` zostało zakończone z kodem stanu: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Nie udało się wysłać scalonej bazy danych. Polecenie `%1` zostało zakończone z kodem stanu: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Wyklucz wygasłe wpisy z raportu - - - Show only entries which have URL set - Pokazuj tylko wpisy z ustawionym adresem URL - - - Show only entries which have browser settings in custom data - Pokazuj tylko wpisy, które mają ustawienia przeglądarki w danych niestandardowych - Double-click entries to edit. Kliknij dwukrotnie wpisy, aby edytować. @@ -7856,44 +9373,53 @@ Jądro: %3 %4 Exclude from reports Wyklucz z raportów + + Expire Entry(s)… + Wygaś wpis…Wygaś wpisy…Wygaś wpisy…Wygaś wpisy… + + + Only show entries that have a URL + Pokaż tylko wpisy, które mają adres URL + + + Only show entries that have been explicitly allowed or denied + Pokaż tylko te wpisy, które zostały wyraźnie dozwolone lub odrzucone + + + Show expired entries + Pokaż wygasłe wpisy + + + (Expired) + (Wygasłe) + + + Delete plugin data from Entry(s)… + Usuń dane wtyczki z wpisu…Usuń dane wtyczki z wpisów…Usuń dane wtyczki z wpisów…Usuń dane wtyczki z wpisów… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Wyklucz wygasłe wpisy z raportu + Show expired entries + Pokaż wygasłe wpisy - Also show entries that have been excluded from reports - Pokaż również wpisy, które zostały wykluczone z raportów + (Expired) + (Wygasłe) Hover over reason to show additional details. Double-click entries to edit. Umieść wskaźnik myszy nad powodem, aby wyświetlić dodatkowe szczegóły. Kliknij dwukrotnie wpisy, aby edytować. - - Bad - Password quality - Zła - Bad — password must be changed Złe — hasło musi zostać zmienione - - Poor - Password quality - Uboga - Poor — password should be changed Ubogie — hasło powinno zostać zmienione - - Weak - Password quality - Słaba - Weak — consider changing the password Słabe — rozważ zmianę hasła @@ -7942,6 +9468,14 @@ Jądro: %3 %4 Exclude from reports Wyklucz z raportów + + Expire Entry(s)… + Wygaś wpis…Wygaś wpisy…Wygaś wpisy…Wygaś wpisy… + + + Show entries that have been excluded from reports + Pokaż wpisy, które zostały wykluczone z raportów + ReportsWidgetHibp @@ -8037,6 +9571,77 @@ Jądro: %3 %4 Exclude from reports Wyklucz z raportów + + Expire Entry(s)… + Wygaś wpis…Wygaś wpisy…Wygaś wpisy…Wygaś wpisy… + + + + ReportsWidgetPasskeys + + Export + Eksportuj + + + Import + Importuj + + + List of entry URLs + Lista adresów URL wpisu + + + Title + Tytuł + + + Path + Ścieżka + + + Username + Użytkownik + + + URLs + Adresy URL + + + Edit Entry… + Edytuj wpis… + + + Delete Entry(s)… + Usuń wpis…Usuń wpisy…Usuń wpisy…Usuń wpisy… + + + Relying Party + Strona ufająca + + + Show expired entries + Pokaż wygasłe wpisy + + + (Expired) + (Wygasłe) + + + Export Confirmation + Potwierdzenie eksportu + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Plik klucza dostępu będzie narażony na kradzież i nieupoważnione użycie, jeśli pozostanie niezabezpieczony. Czy na pewno chcesz kontynuować? + + + Please wait, list of entries with passkeys is being updated… + Proszę czekać, lista wpisów z kluczami dostępu jest aktualizowana… + + + No entries with passkeys. + Brak wpisów z kluczami dostępu. + ReportsWidgetStatistics @@ -8054,7 +9659,7 @@ Jądro: %3 %4 Please wait, database statistics are being calculated… - Proszę czekać, statystyki bazy danych są obliczane… + Proszę czekać, trwa obliczanie statystyk bazy danych… Database name @@ -8211,6 +9816,14 @@ Jądro: %3 %4 No agent running, cannot list identities. Żaden agent uruchomiony, nie może wyświetlić listy tożsamości. + + Failed to remove all SSH identities from agent. + Nie udało się usunąć wszystkich tożsamości SSH agenta. + + + All SSH identities removed from agent. + Wszystkie tożsamości SSH zostały usunięte z agenta. + SearchHelpWidget @@ -8277,6 +9890,10 @@ Jądro: %3 %4 Search Help Przeszukaj pomoc + + Save Search + Zapisz wyszukiwanie + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8351,34 +9968,10 @@ Jądro: %3 %4 Confirm when passwords are retrieved by clients Potwierdź, gdy hasła są pobierane przez klientów - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">To ustawienie - nie zastępuje wyłączania monitów dotyczących kosza</span></p></body></html> - - Confirm when clients request entry deletion Potwierdź, gdy klienty zażądają usunięcia wpisu - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Poprawia to kompatybilność z niektórymi aplikacjami, - które szukają hasła bez uprzedniego odblokowania bazy danych.</p><p>Ale włączenie tego może również - spowodować awarię klienta, jeśli bazy danych nie można odblokować w określonym czasie. (Zwykle 25 s, ale - w aplikacjach może to być inna wartość.)</p></body></html> - - Prompt to unlock database before searching Pytaj o odblokowanie bazy danych przed wyszukiwaniem @@ -8403,6 +9996,14 @@ Jądro: %3 %4 Save current changes to activate the plugin and enable editing of this section. Zapisz bieżące zmiany, aby aktywować wtyczkę i włączyć edycję tej sekcji. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>To ustawienie nie zastępuje wyłączenia monitów kosza </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Poprawia to kompatybilność z niektórymi aplikacjami, które szukają hasła bez uprzedniego odblokowania bazy danych.</p><p>Ale włączenie tego może również spowodować awarię klienta, jeśli bazy danych nie można odblokować w określonym czasie (zwykle 25 s, ale w aplikacjach może to być inna wartość). </p></body></html> + SettingsWidgetKeeShare @@ -8416,7 +10017,7 @@ Jądro: %3 %4 Allow import - Zezwól importować + Zezwól na import Allow KeeShare exports @@ -8463,7 +10064,7 @@ Jądro: %3 %4 ShareExport Could not write export container. - Nie udało się zapisać kontenera eksportu. + Nie można zapisać kontenera eksportu. @@ -8511,8 +10112,12 @@ Jądro: %3 %4 TagModel - All - Wszystkie + Clear Search + Wyczyść wyszukiwanie + + + All Entries + Wszystkie wpisy Expired @@ -8523,6 +10128,25 @@ Jądro: %3 %4 Słabe hasła + + TagView + + Remove Search + Usuń wyszukiwanie + + + Remove Tag + Usuń tag + + + Confirm Remove Tag + Potwierdź usunięcie tagu + + + Remove tag "%1" from all entries in this database? + Usunąć tag "%1" ze wszystkich wpisów w tej bazie danych? + + TotpDialog @@ -8615,7 +10239,7 @@ Jądro: %3 %4 digits - cyfry + cyfr Invalid TOTP Secret @@ -8680,29 +10304,9 @@ Przykład: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Zacznij bezpiecznie przechowywać swoje hasła w bazie danych KeePassXC - - Create new database - Stwórz nową bazę danych - - - Open existing database - Otwórz istniejącą bazę danych - - - Import from KeePass 1 - Importuj z KeePass 1 - - - Import from 1Password - Importuj z 1Password - - - Import from CSV - Importuj z CSV - Recent databases - Niedawne bazy danych + Ostatnie bazy danych Open a recent database @@ -8712,6 +10316,18 @@ Przykład: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Witaj w KeePassXC %1 + + Create Database + Utwórz bazę danych + + + Open Database + Otwórz bazę danych + + + Import File + Importuj plik + WinUtils @@ -8725,34 +10341,11 @@ Przykład: JBSWY3DPEHPK3PXP Could not register global shortcut - Nie udało się zarejestrować skrótu globalnego - - - - WindowsHello - - Failed to init KeePassXC crypto. - Nie udało się zainicjować krypto KeePassXC. - - - Failed to encrypt key data. - Nie udało się zaszyfrować danych klucza. - - - Failed to get Windows Hello credential. - Nie udało się uzyskać danych uwierzytelniających Windows Hello. - - - Failed to decrypt key data. - Nie udało się odszyfrować danych klucza. + Nie można zarejestrować skrótu globalnego YubiKey - - %1 No interface, slot %2 - %1 brak interfejsu, gniazdo %2 - General: Ogólne: @@ -8764,14 +10357,6 @@ Przykład: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Odśwież tokeny sprzętowe - - - Refresh - Odśwież - Hardware key slot selection Wybór gniazda klucza sprzętowego @@ -8804,10 +10389,6 @@ Przykład: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Ustawiono wyzwanie-odpowiedź, kliknij, aby zmienić lub usunąć - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Jeśli jesteś właścicielem <a href="https://www.yubico.com/">YubiKey</a> lub <a href="https://onlykey.io">OnlyKey</a>, możesz użyć takiego klucza do zwiększenia bezpieczeństwa.</p><p>Wymaga on zaprogramowania jednego z jego gniazd jako <a href="https://www.yubico.com/products/services-software/challenge-response/">wyzwanie-odpowiedź HMAC-SHA1</a>.</p> - Detecting hardware keys… Wykrywanie kluczy sprzętowych… @@ -8816,31 +10397,28 @@ Przykład: JBSWY3DPEHPK3PXP No hardware keys detected Nie wykryto kluczy sprzętowych - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 określono nieprawidłowe gniazdo - %2 + Refresh hardware keys + Odśwież klucze sprzętowe + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Jeśli jesteś właścicielem <a href="https://www.yubico.com/">YubiKey</a> lub <a href="https://onlykey.io">OnlyKey</a>, możesz użyć takiego klucza do zwiększenia bezpieczeństwa.</p><p>Wymaga on zaprogramowania jednego z jego gniazd w trybie <a href="https://keepassxc.org/docs/#faq-yubikey-howto">wyzwanie-odpowiedź</a>.</p> + + + Hardware keys found, but no slots are configured + Znaleziono klucze sprzętowe, ale nie skonfigurowano żadnych gniazd YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] wyzwanie-odpowiedź - gniazdo %3 - The YubiKey PCSC interface has not been initialized. Interfejs PCSC YubiKey nie został zainicjowany. - - Hardware key is currently in use. - Klucz sprzętowy jest obecnie używany. - Could not find or access hardware key with serial number %1. Please present it to continue. - Nie można znaleźć lub uzyskać dostępu do klucza sprzętowego o numerze seryjnym %1. Proszę go okazać, aby kontynuować. + Nie można znaleźć lub uzyskać dostępu do klucza sprzętowego o numerze seryjnym %1. Proszę go okazać, aby kontynuować. Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8854,6 +10432,21 @@ Przykład: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Nie można ukończyć wyzwania-odpowiedzi, kod błędu PCSC to: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Gniazdo %3, %4 + + + Press + USB Challenge-Response Key interaction request + Naciśnij + + + Passive + USB Challenge-Response Key no interaction required + Pasywny + YubiKeyInterfaceUSB @@ -8861,14 +10454,6 @@ Przykład: JBSWY3DPEHPK3PXP Unknown Nieznany - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] skonfigurowane gniazdo - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] wyzwanie-odpowiedź - gniazdo %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8883,10 +10468,6 @@ Przykład: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. Interfejs USB YubiKey nie został zainicjowany. - - Hardware key is currently in use. - Klucz sprzętowy jest obecnie używany. - Could not find hardware key with serial number %1. Please plug it in to continue. Nie można odnaleźć klucza sprzętowego o numerze seryjnym %1. Podłącz go, aby kontynuować. @@ -8903,5 +10484,15 @@ Przykład: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Nie można ukończyć wyzwania-odpowiedzi, konkretny błąd to: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Gniazdo %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Gniazdo %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_pt_BR.ts b/share/translations/keepassxc_pt_BR.ts index 49d616e44..a81297047 100644 --- a/share/translations/keepassxc_pt_BR.ts +++ b/share/translations/keepassxc_pt_BR.ts @@ -31,11 +31,11 @@ <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> - <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Ver Colaborações no GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Consulte as colaborações no GitHub</a> Debug Info - Informações de Depuração + Informações de depuração Include the following information whenever you report a bug: @@ -43,7 +43,7 @@ Copy to clipboard - Copiar para a área de transferência + Copia para a área de transferência @@ -80,25 +80,25 @@ Details Detalhes + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + A sua escolha será memorizada enquanto o cliente e o KeePassXC estiverem em execução. + Remember Lembrar Allow Selected - Permitir Selecionados - - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - + Permita os selecionados Deny All && Future - + Recusar agora e futuramente Allow All && &Future - + Permitir agora && &futuramente @@ -122,6 +122,10 @@ Use OpenSSH Usar OpenSSH + + Use both agents + Utilize ambos os agentes + SSH_AUTH_SOCK override Sobrescrever SSH_AUTH_SOCK @@ -150,16 +154,12 @@ SSH Agent connection is working! A conexão com o agente SSH está funcionando corretamente! - - Use both agents - - ApplicationSettingsWidget Application Settings - Configurações do Aplicativo + Configurações do aplicativo General @@ -169,6 +169,10 @@ Security Segurança + + This setting cannot be enabled when minimize on unlock is enabled. + Esta configuração não pode ser habilitada quando minimizar ao desbloquear está habilitado. + Access error for config file %1 Erro de acesso para o arquivo de configuração %1 @@ -213,24 +217,56 @@ You must restart the application to set the new language. Would you like to restart now? Você precisa reiniciar o aplicativo para aplicar o novo idioma. Você gostaria de reiniciar agora? - - Reset Settings? - Restaurar Configurações? - - - Are you sure you want to reset all general and security settings to default? - Você tem certeza que deseja restaurar todas as configurações gerais e de segurança para o padrão? - Select backup storage directory - Selecione diretório para armazenar o backup + Selecione o diretório onde o backup será armazenado + + + Confirm Reset + Confirmar Redefinição + + + Are you sure you want to reset all settings to default? + Tem certeza de que deseja redefinir todas as configurações para o padrão? + + + Import KeePassXC Settings + Importar Configurações do KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Falha ao importar configurações de %1; arquivo de configurações inválido. + + + Export KeePassXC Settings + Exportar Configurações do KeePassXC + + + Small + Pequeno + + + Normal + Normal + + + Medium + Médio + + + Large + Grande + + + Custom + Personalizado ApplicationSettingsWidgetGeneral Basic Settings - Configurações Básicas + Configurações básicas Startup @@ -256,6 +292,10 @@ Remember previously used databases Lembrar dos bancos de dados usados anteriormente + + recent files + arquivos recentes + Load previously open databases on startup Carregar bancos de dados previamente abertos na inicialização @@ -272,40 +312,21 @@ Include beta releases when checking for updates Incluir versões betas durante a verificação de atualizações - - On database unlock, show entries that - Ao desbloquear o banco de dados, mostrar entradas que - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - dias - - - will expire within - On database unlock, show entries that... - irá expirar dentro de - File Management - Gerenciamento de Arquivo + Gerenciador de arquivo Automatically save after every change - Salvar automaticamente depois de cada alteração + Salva automaticamente depois de cada alteração Automatically save when locking database - Salvar automaticamente ao bloquear banco de dados + Salva automaticamente ao bloquear banco de dados Automatically save non-data changes when locking database - Salvar automaticamente alterações que não são de dados ao bloquear banco de dados + Salva automaticamente as alterações que não sejam dados ao bloquear o banco de dados Automatically reload the database when modified externally @@ -315,22 +336,10 @@ Backup database file before saving Fazer cópia de segurança do banco de dados antes de salvar - - Backup destination - Destinação do backup - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Especifica a localização para o backup do banco de dados. As ocorrências de "{DB_FILENAME}" serão substituídas pelo nome do arquivo do banco de dados salvo mas sem extensão. {TIME:<format>} será substituído pelo horário do backup. Consulte https://doc.qt.io/qt-5/qdatetime.html#toString. <format> Os valores padrão a utilizar serão "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.antigo.kdbx - - Choose... - Escolher... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Usar método alternativo de salvamento (pode resolver problemas com Dropbox, Google Drive, GVFS, etc) @@ -382,7 +391,7 @@ User Interface - Interface do Usuário + Interface do usuário Toolbar button style @@ -390,7 +399,7 @@ Movable toolbar - Barra de Ferramentas Móvel + Barra de ferramentas móvel Language selection @@ -408,6 +417,10 @@ Toolbar button style: Estilo de botão da barra de ferramentas: + + Show passwords in color + Colorir senhas + Use monospaced font for notes Usar fonte monoespaçada para notas @@ -493,6 +506,71 @@ Remember last typed entry for: Lembrar última entrada digitada para: + + On database unlock, show entries that will expire within + No desbloqueio do banco de dados, mostre as entradas que expirarão dentro + + + On database unlock, show entries that will expire within + No desbloqueio do banco de dados, mostre as entradas que expirarão dentro + + + days + number of days warning for password expiration + dias + + + Destination format: + Formato de destino: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> é substituído pelo nome do arquivo do banco de dados salvo sem extensão</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> é substituído pelo formato de hora especificado (default: dd_MM_yyyy_hh-mm-ss)</p><p>Consulte o Guia do Usuário para obter mais detalhes</p></body></html> + + + Choose folder... + Escolher a pasta: + + + Show confirmation before moving entries to recycle bin + Mostrar confirmação antes de mover entradas para a lixeira + + + Copy data on double clicking field in entry view + Copie os dados no campo de clique duplo na entrada exibida + + + Show toolbar + Mostrar barra de ferramentas + + + Show the menu bar by pressing the Alt key + Mostrar a barra de menu pressionando a tecla Alt + + + Show menubar + Exibir barra de menu + + + Import settings… + Importar configurações... + + + Export settings… + Exportar configurações... + + + Open browser on double clicking URL field in entry view + Abra o navegador clicando duas vezes no campo URL na entrada exibida + + + Font size: + Tamanho da fonte: + + + Font size selection + Seleção do tamanho da fonte + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Bloquear bancos de dados após minimizar a janela - - Require password repeat when it is visible - Requisitar repetição da senha quando visível - Hide passwords when editing them Ocultar senhas ao editá-las @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Ocultar senhas no painel da prévia de entrada - - Hide entry notes by default - Esconder notas de entrada por padrão - - - Move entries to recycle bin without confirmation - Mover entradas para a lixeira sem confirmação - - - Enable double click to copy the username/password entry columns - Ativar duplo clique para copiar a entrada nome de utilizador/palavra-passe - Privacy Privacidade @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Usar o serviço DuckDuckGo para baixar ícones de websites + + Hide TOTP in the entry preview panel + Ocultar TOTP no painel de visualização da entrada + + + Lock databases when switching user + Bloquear bancos de dados ao trocar de usuário + + + Lock Options + Opções de Bloqueio + + + Hide notes in the entry preview panel + Ocultar notas no painel de visualização da entrada + AutoType @@ -626,18 +704,8 @@ Atraso muito longo detetado, o máximo é %1: %2 - Invalid conversion type: %1 - Tipo de conversão inválido: %1 - - - Invalid conversion syntax: %1 - Sintaxe de conversão inválida: %1 - - - Invalid regular expression syntax %1 -%2 - Sintaxe de expressão regular inválida %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + A entrada não tem o atributo para PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Tentando enviar keysym inválida. - Sequence aborted: Caps Lock is on Sequência abortada: Caps Lock está ativo @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Não foi possível obter um código válido para a chave: + + Trying to send invalid keyboard symbol. + Tentando enviar um símbolo inválido de teclado. + AutoTypeSelectDialog @@ -718,7 +786,12 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>Pode utilizar a pesquisa avançada para localizar as entradas nas suas base de dados abertas. Os atalhos abaixo podem ser úteis:<br/> +Ctrl+F - Alterna a pesquisa nas bases de dados<br/> +Ctrl+1 - Escreve o nome do utilizador<br/> +Ctrl+2 - Escreve a senha +Ctrl+3 - Escreve o TOTP<br/> +Ctrl+4 - Utiliza o teclado virtual (apenas no Windows)</p> Search all open databases @@ -762,7 +835,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Use Virtual Keyboard - + Utilize o teclado virtual @@ -799,13 +872,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Desabilitar para este site + + Undo + Desfazer + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Salvar Entrada - Ok Ok @@ -820,13 +893,76 @@ Please select the correct database for saving credentials. Você tem vários bancos de dados abertos. Por favor, selecione o banco de dados correto para salvar as credenciais. + + KeePassXC - Select Database + KeePassXC - Selecionar banco de dados + + + + BrowserPasskeysConfirmationDialog + + Cancel + Cancelar + + + Update + Atualizar + + + Authenticate + Autenticar + + + Register new + Registrar ova + + + Register + Registrar + + + Timeout in <b>%n</b> seconds... + Esgotamento em <b>%n</b> segundos...Esgotamento em <b>%n</b> segundos...Esgotamento em <b>%n</b> segundos... + + + Relying Party: %1 + Parte confiável: %1 + + + Username: %1 + Nome de Usuário: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Credenciais de Chave de Acesso + + + Add to existing entry + Adicionar à entrada já existente + + + Existing passkey found. +Do you want to register a new passkey for: + Uma chave de acesso já existente foi encontrada. +Deseja registrar uma nova chave de acesso para: + + + + + Select the existing passkey and press Update to replace it. + Selecione a chave de acesso existente e pressione atualizar para substituí-la. + + + Authenticate passkey credentials for: + Autenticar credenciais de chave de acesso para: + + + Do you want to register a passkey for: + Deseja registrar uma chave de acesso para: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Crie um novo grupo - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -835,10 +971,6 @@ Do you want to create this group? Você quer criar este grupo? - - KeePassXC: New key association request - KeePassXC: Nova associação de chaves requisitada - You have received an association request for the following database: %1 @@ -855,28 +987,16 @@ chrome-laptop Save and allow access Salvar e permitir acesso - - KeePassXC: Overwrite existing key? - KeePassXC: Substituir chave existente? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Uma chave de criptografia compartilhada com o nome "% 1" já existe. + Uma chave de criptografia compartilhada com o nome "%1" já existe. Você deseja sobrescreve-la? - - KeePassXC: Update Entry - KeePassXC: Atualizar entrada - Do you want to update the information in %1 - %2? Deseja atualizar as informações em %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Excluir entrada - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -886,50 +1006,58 @@ Você quer excluir a entrada? - Converting attributes to custom data… - Convertendo atributos para dados personalizados... + %1 (Passkey) + %1 (Chave de Acesso) - Abort - Cancelar + KeePassXC - Create a new group + KeePassXC - Criar um novo grupo - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Convertido KeePassHTTP atributos + Disable + Desabilitar - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Atributos convertidos com sucesso de %1 entrada(s). -Movido %2 chaves para dados personalizados. - - - Successfully moved %n keys to custom data. - Movido com sucesso %n chaves para dados personalizados.Movido com sucesso %n chaves para dados personalizados. + KeePassXC - Overwrite existing key? + KeePassXC - Sobrescrever chave existente? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nenhuma entrada com os atributos KeePassHTTP encontrados! + KeePassXC - Update Entry + KeePassXC - Atualizar Entrada - The active database does not contain an entry with KeePassHTTP attributes. - O banco de dados ativo não contém uma entrada com atributos KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Excluir entrada - Don't show this warning again - Não mostrar este alerta novamente + KeePassXC - New key association request + KeePassXC – Nova solicitação de associação de chave - KeePassXC: Legacy browser integration settings detected - KeePassXC: Configurações de integração do navegador herdado detectadas + Passkey + Chave de acesso - 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? - As configurações do seu navegador KeePassXC precisam ser movidas para as configurações do banco de dados. -Isso é necessário para manter as conexões atuais do navegador. -Gostaria de migrar suas configurações existentes agora? + KeePassXC - Passkey credentials + KeePassXC - Credenciais de Chave de Acesso + + + Register a new passkey to this entry: + Registrar uma nova chave de acesso para esta entrada: + + + KeePassXC - Update passkey + KeePassXC - Atualizar a chave de acesso + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + A entrada já tem uma chave de acesso. +Deseja substituir a chave de acesso em %1 - %2? + + + Register + Registrar @@ -950,10 +1078,6 @@ Gostaria de migrar suas configurações existentes agora? General Geral - - Browsers installed as snaps are currently not supported. - Navegadores instalados como snaps atualmente não são suportados. - Enable integration for these browsers: Habilitar integração para estes navegadores: @@ -1125,26 +1249,6 @@ Gostaria de migrar suas configurações existentes agora? Custom extension ID ID de extensão personalizado: - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Devido ao sandbox do Snap, você deve executar um script para ativar a integração do navegador.<br />Você pode obter este script de %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - O KeePassXC-Browser é necessário para que a integração com navegador funcione. Faça o download para %1, %2 e %3. %4 - - - Please see special instructions for browser extension use below - Por favor, veja as instruções especiais para o uso da extensão do navegador abaixo - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Erro:</b> O endereço de proxy personalizado não foi encontrado!<br/>A integração com o navegador NÃO IRÁ funcionar sem a aplicação de proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>AVISO:</b> As seguintes opções podem ser perigosas! - Executable Files Arquivos Executáveis @@ -1161,6 +1265,46 @@ Gostaria de migrar suas configurações existentes agora? Select native messaging host folder location Selecione o local da pasta de host de mensagens nativas + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Permitir que keepassxc-proxy liste todas as entradas com os seus títulos, URL e UUID nos bancos de dados conectados. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Permitir acesso limitado a todas as entradas nos bancos de dados conectados (ignorar restrições de acesso aos sites) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Aviso:</b> Ajuste essas configurações apenas se necessário. + + + The custom proxy location does not exist. + O local do proxy personalizado não existe. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Erro:</b> O local do proxy personalizado não existe. Corrija isso na guia de configurações avançadas. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + Erro:</b> O executável do proxy instalado está faltando no local esperado: %1<br/>Defina um local de proxy personalizado nas configurações avançadas ou reinstale o aplicativo. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Permite o uso inseguro de http://localhost com chaves de acesso para fins de teste. + + + Allow using localhost with passkeys + Permite o uso do localhost com as chaves de acesso + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser é necessário para que a integração do navegador funcione. <br />Baixe-o para %1 e %2 e %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Navegadores instalados usando Snap ou Flatpak não são suportados, com exceção do Firefox instalado usando Snap. + CloneDialog @@ -1183,14 +1327,6 @@ Gostaria de migrar suas configurações existentes agora? CsvImportWidget - - Import CSV fields - Importar campos CSV - - - filename - nome do arquivo - size, rows, columns tamanho, linhas, colunas @@ -1299,51 +1435,44 @@ Gostaria de migrar suas configurações existentes agora? Column %1 Coluna %1 - - Imported from CSV file - Importado do arquivo CSV - - - Original data: - Dados originais: - - - Error(s) detected in CSV file! - Erro(s) detectado(s) no arquivo CSV! - [%n more message(s) skipped] - [%n mais mensagem(ns) ignoradas][%n mais mensagem(ns) ignoradas] + [%n mais mensagem(ns) ignoradas][%n mais mensagem(ns) ignoradas][%n mais mensagem(ns) ignoradas] - Error - Erro + Failed to parse CSV file: %1 + Falha ao analisar o arquivo CSV: %1 - CSV import: writer has errors: -%1 - Importação de CSV: o gravador tem erros: -%1 + Imported from CSV file: %1 + Importado do arquivo CSV: %1 + + + No Title Selected + Nenhum Título Selecionado + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Nenhuma coluna de título foi selecionada, será difícil distinguir as entradas. +Tem certeza de que deseja importar? + + + Tags + Etiquetas CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n bytes - %n row(s) - %n linha%n linhas + CSV row count + %n linha%n linhas%n linhas %n column(s) - %n coluna(s)%n coluna(s) + CSV column count + %n coluna(s)%n coluna(s)%n coluna(s) @@ -1395,6 +1524,14 @@ Backup do banco de dados alocado em %2 Recycle Bin Lixeira + + Database file read error. + Erro de leitura do arquivo de banco de dados. + + + No file path was provided. + Nenhum caminho de arquivo foi fornecido. + DatabaseOpenDialog @@ -1417,40 +1554,10 @@ Backup do banco de dados alocado em %2 Password field Campo de senha - - Enter Additional Credentials (if any): - Entre com as credenciais adicionais (se tiver alguma): - - - Key File: - Arquivo-Chave: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Para além da palavra-passe, pode utilizar um ficheiro-chave para aumentar a segurança da sua base de dados. Este ficheiro pode ser gerado nas definições de segurança da sua base de dados..</p><p><strong>Não</strong> pode utilizar ficheiros *.kdbx como ficheiro-chave!<br>Se não quiser utilizar um ficheiro-chave, deixe este campo em branco.</p><p>Clique aqui para mais informação.</p> - - - Key file help - Ajuda do arquivo-chave - Hardware key slot selection Seleção de campo de chave de hardware - - Hardware Key: - Chave de hardware: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Pode utilizar uma chave de segurança como, por exemplo, os dispositivos <strong>YubiKey</strong> ou <strong>OnlyKey</strong> com 'slots' configuradas para HMAC-SHA1.</p> -<p>Clique aqui para mais informações.</p> - - - Hardware key help - Ajuda da chave física - Key file to unlock the database Arquivo-chave para desbloquear banco de dados @@ -1463,14 +1570,6 @@ Backup do banco de dados alocado em %2 Browse… Navegar... - - Refresh hardware tokens - Atualizar os tokens de hardware - - - Refresh - Atualizar - Unlock Database Desbloquear banco de dados @@ -1499,7 +1598,13 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + O banco de dados que está tentando abrir deve ter sido +criado por uma versão mais recente do KeePassXC. + +Você pode tentar abrir o banco de dados mesmo assim, mas, esta poderá não +ser lido corretamente e, possivelmente, irá perder dados. + +Recomendamos que você atualize o KeePassXC para uma versão mais recente. Open database anyway @@ -1527,14 +1632,6 @@ Para impedir que esses erros apareçam, você deve ir em "Configurações d Retry with empty password Tentar novamente com senha vazia - - Failed to authenticate with Windows Hello - Não foi possível autenticar com Windows Hello - - - Failed to authenticate with Touch ID - Não foi possível autenticar com Touch ID - Failed to open key file: %1 Falha ao abrir o arquivo-chave: %1 @@ -1568,22 +1665,68 @@ Para impedir que esses erros apareçam, você deve ir em "Configurações d Não use arquivos de banco de dados (*.kdbx) como arquivo-chave - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Você não pode usar seu arquivo de banco de dados como arquivo-chave. -Se você não tem um arquivo-chave, por favor deixe o campo vazio. + authenticate to access the database + Autentique para acessar o banco de dados - Detecting hardware keys… - Detectando chaves físicas... + Failed to authenticate with Quick Unlock: %1 + Falha ao autenticar com Desbloqueio Rápido: %1 - No hardware keys detected - Nenhuma chave física detectada + Select Key File: + Selecionar Arquivo Chave: - Select hardware key… - Selecionar chave física... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Além de uma senha, você pode usar um arquivo secreto para aumentar a segurança do seu banco de dados. Este arquivo pode ser gerado nas configurações de segurança do seu banco de dados.</p><p>Este <strong>não é</strong> o seu arquivo de banco de dados *.kdbx!</p> + + + Use hardware key [Serial: %1] + Usar uma chave de hardware [Serial: %1] + + + Use hardware key + Usar chave de hardware + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Seu arquivo de banco de dados NÃO é um arquivo-chave! +Caso não tenha um arquivo-chave ou não souber o que é, você não precisa selecionar um. + + + KeePassXC database file selected + Arquivo de banco de dados KeePassXC selecionado + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + O arquivo que você selecionou se parece com um arquivo de banco de dados. +Um arquivo de banco de dados NÃO é um arquivo-chave! + +Tem certeza de que deseja continuar com este arquivo? + + + No hardware keys found. + Nenhuma chave de hardware encontrada. + + + Refresh Hardware Keys + Atualizar Chaves de Hardware + + + Click to add a key file. + Clique para adicionar um arquivo-chave. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Eu tenho um arquivo-chave</a> + + + Hardware keys found, but no slots are configured. + Chaves de hardware encontradas, mas nenhum slot configurado. @@ -1595,10 +1738,6 @@ Se você não tem um arquivo-chave, por favor deixe o campo vazio. DatabaseSettingsDialog - - Advanced Settings - Definições avançadas - General Geral @@ -1623,6 +1762,22 @@ Se você não tem um arquivo-chave, por favor deixe o campo vazio. Maintenance Manutenção + + KeeShare + KeeShare + + + Secret Service Integration + Integração com Secret Service + + + Remote Sync + Sincronização Remota + + + Database Settings: %1 + Configurações do Banco de Dados: %1 + DatabaseSettingsWidgetBrowser @@ -1630,18 +1785,6 @@ Se você não tem um arquivo-chave, por favor deixe o campo vazio. KeePassXC-Browser settings Configurações do KeePassXC-Browser - - Convert KeePassHTTP data - Converter dados KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Atualizar ID do grupo raiz do banco de dados - Disconnect all browsers Desconectar todos os navegadores @@ -1650,6 +1793,10 @@ Se você não tem um arquivo-chave, por favor deixe o campo vazio. Forget all site-specific settings on entries Esqueça todas as configurações específicas do site nas entradas + + Refresh database root group ID + Atualizar ID do grupo raiz do banco de dados + Stored keys Chaves guardadas @@ -1698,21 +1845,13 @@ This may prevent connection to the browser plugin. Você realmente deseja desconectar todos os navegadores? Isso pode impedir a conexão com o plugin do navegador. - - KeePassXC: No keys found - KeePassXC: Nenhuma chave localizada - No shared encryption keys found in KeePassXC settings. Nenhuma chave de criptografia compartilhada encontrada nas configurações do KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: Chaves removidas do banco de dados - Successfully removed %n encryption key(s) from KeePassXC settings. - Removido com sucesso% n chave (s) criptográficas das configurações do KeePassXC.Removido com sucesso% n chave (s) criptográficas das configurações do KeePassXC. + Removido com sucesso% n chave (s) criptográficas das configurações do KeePassXC.Removido com sucesso% n chave (s) criptográficas das configurações do KeePassXC.Removido com sucesso% n chave (s) criptográficas das configurações do KeePassXC. Do you really want forget all site-specific settings on every entry? @@ -1728,32 +1867,14 @@ Permissões para acessar entradas serão revogadas. Abort Cancelar - - KeePassXC: Removed permissions - KeePassXC: Permissões removidas - Successfully removed permissions from %n entry(s). - Permissões removidas com sucesso de %n entrada(s).Permissões removidas com sucesso de %n entrada(s). - - - KeePassXC: No entry with permissions found! - KeePassXC: Nenhuma entrada com permissões localizada! + Permissões removidas com sucesso de %n entrada(s).Permissões removidas com sucesso de %n entrada(s).Permissões removidas com sucesso de %n entrada(s). The active database does not contain an entry with permissions. O banco de dados ativo não contém uma entrada com permissões. - - Move KeePassHTTP attributes to custom data - Mover atributos KeePassHTTP para dados personalizados - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Tem a certeza de que deseja converter os dados legados para a versão mais recente? -Esta atualização é necessária para manter a compatibilidade com o suplemento. - Refresh database ID Atualizar ID da banco de dados @@ -1764,6 +1885,26 @@ This is only necessary if your database is a copy of another and the browser ext Você deseja realmente atualizar o ID do banco de dados? Isto somente é necessário se o seu banco de dados é uma cópia de outro e a extensão do navegador não puder conectar. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Converta os atributos legados do KeePassHTTP para os dados compatíveis com o KeePassXC-Browser + + + No keys found + Nenhuma chave encontrada + + + Removed keys from database + Chaves removidas do banco de dados + + + Removed permissions + Permissões removidas + + + No entry with permissions found! + Nenhuma entrada com permissões encontradas! + DatabaseSettingsWidgetDatabaseKey @@ -1803,6 +1944,18 @@ Tem certeza de que deseja continuar sem uma senha? Failed to change database credentials Falha ao alterar credenciais do banco de dados + + Weak password + Senha fraca + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Esta é uma senha fraca! Para melhor proteção dos seus segredos, você deve escolher uma senha mais forte. + + + The provided password does not meet the minimum quality requirement. + A senha fornecida não atende aos requisitos mínimos de qualidade. + DatabaseSettingsWidgetEncryption @@ -1810,14 +1963,6 @@ Tem certeza de que deseja continuar sem uma senha? Decryption Time: Hora da descriptografia: - - Change existing decryption time - Mudar tempo de descriptografia - - - Change - Alterar - Decryption time in seconds Tempo de descriptografia em segundos @@ -1892,17 +2037,12 @@ Tem certeza de que deseja continuar sem uma senha? KDBX 4 (recommended) - + KDBX 4 (recomendado) KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - inalterado - Number of rounds too high Key transformation rounds @@ -1948,12 +2088,24 @@ Se você manter este número, seu banco de dados não estará protegido de ataqu MiB Abbreviation for Mebibytes (KDF settings) - MiB MiB + MiB MiB MiB thread(s) Threads for parallel execution (KDF settings) - processo(s)processo(s) + processo(s) processo(s) processo(s) + + + Encryption Settings: + Configurações de criptografia: + + + Basic + Básico + + + Advanced + Avançado @@ -2013,18 +2165,10 @@ Se você manter este número, seu banco de dados não estará protegido de ataqu Maximum number of history items per entry Número máximo de histórico dos itens por entrada - - Max. history items: - Máx. itens no histórico: - Maximum size of history per entry Número máximo de histórico dos itens por entrada - - Max. history size: - Tamanho máx. do histórico: - MiB MB @@ -2055,6 +2199,108 @@ Esta ação não é reversível. (old) (antigo) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Quando salvar essa configuração ou editar uma entrada +os itens mais antigo do histórico de uma entrada serão +removidos de forma que apenas a quantidade +de entradas especificada permanecerá + + + Limit the amount of history items per entry to: + Limitar a quantidade de itens no histórico, por entrada, a: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Quando salvar essa configuração ou editar uma entrada +os itens mais antigo do histórico de uma entrada serão +removidos de forma que os itens restantes +serão adicionados até a quantidade máxima especificada + + + Limit the total size of history items per entry to: + Limitar o tamanho total dos itens dos histórico, por entrada, a: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Mover entradas para um grupo lixeira +ao invés de os apagar do banco de dados. +Entradas apagadas da lixeira serão +removidos do banco de dados + + + Autosave delay since last change + Atraso de salvamento automático desde a última alteração + + + Autosave delay + Atraso de salvamento automático + + + Autosave delay since last change in minutes + Atraso de salvamento automático desde a última alteração em minutos + + + min + min + + + Autosave delay since last change checkbox + Atraso de salvamento automático desde a última caixa de seleção + + + Public Database Metadata + Metadados do Banco de Dados Público + + + Warning: the following settings are not encrypted. + Aviso: as configurações a seguir não são criptografadas. + + + Display name: + Nome de exibição: + + + Publically visible display name used on the unlock dialog + Nome de exibição publicamente visível usado na caixa de diálogo de desbloqueio + + + Database public display name + Nome de exibição público do banco de dados + + + Display color: + Cor de exibição: + + + Publically visible color used on the unlock dialog + Cor publicamente visível usada na caixa de diálogo de desbloqueio + + + Database public display color chooser + Seletor de cores de exibição pública do banco de dados + + + Clear + Limpar + + + Display icon: + Ícone de exibição: + + + Select Database Icon + Selecionar o Ícone do Banco de Dados + DatabaseSettingsWidgetKeeShare @@ -2128,7 +2374,7 @@ Esta ação não é reversível. Purged %n icon(s) from the database. - %n ícones removidos da base de dados.%n ícones removidos da base de dados. + %n ícones removidos da base de dados.%n ícones removidos da base de dados.%n ícones removidos da base de dados. @@ -2150,6 +2396,139 @@ Esta ação não é reversível. Campo de descrição do banco de dados + + DatabaseSettingsWidgetRemote + + Sync Commands + Comandos de Sincronização + + + Remove + Remover + + + Command Settings + Configurações de Comando + + + Name + Nome + + + Save + Salvar + + + Download + Baixar + + + Command: + Comando: + + + Download command field + Campo do comando baixar + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + por exemplo: 'sftp user@hostname' ou 'scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}' + + + Input: + Entrada: + + + Download input field + Campo do comando baixar + + + Upload + Enviar + + + Upload command field + Campo do comando enviar + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + por exemplo: 'sftp user@hostname' ou 'scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx' + + + Upload input field + Campo de entrada enviar + + + Name cannot be empty. + O nome não pode ficar vazio. + + + Test + Testar + + + Download command cannot be empty. + O comando de baixar não pode estar vazio. + + + Download failed with error: %1 + Falha ao baixar com erro: %1 + + + Download finished, but file %1 could not be found. + O download foi concluído, mas o arquivo %1 não foi encontrado. + + + Download successful. + Download bem-sucedido. + + + Save Remote Settings + Salvar Configurações Remotas + + + You have unsaved changes. Do you want to save them? + Você tem alterações não salvas. Você quer salvá-los? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + por exemplo: +obtenha DatabaseOnRemote.kdbx {TEMP_DATABASE} +sair +--- +{TEMP_DATABASE} é usado como espaço reservado para armazenar o banco de dados em um local temporário +O comando tem que sair. No caso de `sftp` como último comando `exit` deve ser enviado + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + por exemplo: +coloque {TEMP_DATABASE} DatabaseOnRemote.kdbx +sair +--- +{TEMP_DATABASE} é usado como espaço reservado para armazenar o banco de dados em um local temporário +O comando tem que sair. No caso de `sftp` como último comando `exit` deve ser enviado + + + Timeout: + Esgotamento: + + + seconds + segundos + + DatabaseTabWidget @@ -2182,26 +2561,10 @@ Este é definitivamente um bug, por favor denuncie para os desenvolvedores.CSV file Arquivo CSV - - Select CSV file - Selecionar arquivo CSV - Merge database Juntar banco de dados - - KeePass 1 database - Banco de dados KeePass 1 - - - Open KeePass 1 database - Abrir banco de dados KeePass 1 - - - Open OPVault - Abrir o OPVault - Export database to CSV file Exportar banco de dados para arquivo CSV @@ -2214,6 +2577,18 @@ Este é definitivamente um bug, por favor denuncie para os desenvolvedores.Writing the HTML file failed. Falha ao escrever no arquivo HTML + + Export database to XML file + Exportar o banco de dados para um arquivo XML + + + XML file + Arquivo XML + + + Writing the XML file failed + Gravação do arquivo XML falhou + Export Confirmation Confirmação da Exportação @@ -2222,26 +2597,22 @@ Este é definitivamente um bug, por favor denuncie para os desenvolvedores.You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Você está prestes a exportar o seu banco de dados para um arquivo não criptografado. Isso vai deixar suas senhas e informações confidenciais vulneráveis! Você tem certeza que quer continuar? - - New Database - Novo Banco de Dados - - - %1 [New Database] - Database tab name modifier - %1 [Novo banco de dados] - %1 [Locked] Database tab name modifier %1 [Bloqueada] + + %1 [Temporary] + Database tab name modifier + %1 [Temporário] + DatabaseWidget - Database Tags - Etiquetas do banco de dados + Searches and Tags + Buscas e Etiquetas Searching… @@ -2291,6 +2662,10 @@ Este é definitivamente um bug, por favor denuncie para os desenvolvedores.Expired entries Entradas expiradas + + Entries expiring within %1 day(s) + A entradas que vai caducar dentro de %1 diaAs entradas que vão caducar dentro de %1 diasAs entradas que vão caducar dentro de %1 dia(s) + No current database. Nenhuma banco de dados atual. @@ -2315,6 +2690,18 @@ Este é definitivamente um bug, por favor denuncie para os desenvolvedores.No Results Sem Resultados + + Save + Salvar + + + Enter a unique name or overwrite an existing search from the list: + Digite um nome único ou sobrescreva uma busca existente da lista: + + + Save Search + Salvar Busca + Lock Database? Travar banco de dados? @@ -2343,26 +2730,6 @@ Salvar alterações? File has changed O arquivo foi modificado - - The database file has changed. Do you want to load the changes? - O banco de dados foi alterado. Deseja carregar as alterações? - - - Merge Request - Juntar Pedido - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - O arquivo de banco de dados foi alterado e você tem alterações não salvas. -Você deseja combinar suas alterações? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Não foi possível abrir o novo arquivo de banco de dados ao tentar executar o carregamento automático. -Erro: %1 - Disable safe saves? Desativar armazenamento seguro? @@ -2405,9 +2772,94 @@ Deseja desabilitar salvamento seguro e tentar novamente? Could not find database file: %1 Não foi possível localizar o arquivo do banco de dados: %1 - - Entries expiring within %1 day(s) - + + New Database + Novo Banco de Dados + + + %1 [New Database] + Database tab name modifier + %1 [Novo banco de dados] + + + Remote Sync did not contain any download or upload commands. + A Sincronização Remota não continha nenhum comando de download ou upload. + + + Remote sync '%1' completed successfully! + A sincronização remota '%1' foi concluída com sucesso! + + + Remote sync '%1' failed: %2 + Falha na sincronização remota '%1': %2 + + + Error while saving database %1: %2 + Erro ao salvar o banco de dados %1: %2 + + + Downloading... + Baixando... + + + Uploading... + Enviando... + + + Syncing... + Sincronizando... + + + Remove passkey from entry + Remover a chave de acesso da entrada + + + Do you want to remove the passkey from this entry? + Deseja remover a chave de acesso desta entrada? + + + The database file "%1" was modified externally + O arquivo de banco de dados "%1" foi modificado externamente + + + Do you want to load the changes? + Você quer carregar as alterações? + + + Reload database + Recarregar banco de dados + + + Reloading database… + Recarregando banco de dados... + + + Reload canceled + Recarregar cancelado + + + Reload successful + Recarregar com sucesso + + + Reload pending user action… + Recarregar pendente da ação do usuário... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + Arquivo de banco de dados substituído. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2460,10 +2912,6 @@ Deseja desabilitar salvamento seguro e tentar novamente? n/a n/d - - (encrypted) - (criptografado) - Select private key Escolha uma chave privada @@ -2550,21 +2998,25 @@ Gostaria de a corrigir? Hide Ocultar + + %n hour(s) + %n hora%n horas%n hora(s) + %n week(s) - %n semana(s)%n semana(s) + %n semana(s)%n semana(s)%n semana(s) %n month(s) - %n mese(s)%n mese(s) + %n mese(s)%n mese(s)%n mese(s) %n year(s) - %n ano%n anos + %n ano%n anos%n anos - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Houve uma falha ao descriptografar a chave SSH, verifique se a senha está correta. @@ -2684,10 +3136,20 @@ Gostaria de a corrigir? Add new window association Adicionar nova associação de janela + + + + Add item + + + Remove selected window association Remover a associação de janela selecionada + + - + Remove item + - + Window title: Título da Janela: @@ -2712,23 +3174,9 @@ Gostaria de a corrigir? Custom Auto-Type sequence for this window Sequência de Auto-Digitar personalizada para esta janela - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Essas configurações afetam o comportamento de entrada da extensão do navegador. - General Geral @@ -2741,26 +3189,14 @@ Gostaria de a corrigir? Skip Auto-Submit for this entry Ignorar Auto-Envio para esta entrada - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Envia esta configuração apenas ao navegador para caixas de diálogo de Autenticação HTTP. Se ativado, os formulários de login normais não mostrarão esta entrada para seleção. - Use this entry only with HTTP Basic Auth Usar esta entrada somente com Autenticação HTTP Básica - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Não envia esta configuração para o navegador para caixas de diálogo de Autenticação HTTP. Se ativado, as caixas de diálogo de Autenticação HTTP não mostrarão esta entrada para seleção. - Do not use this entry with HTTP Basic Auth Não usar esta entrada com Autenticação HTTP Básica - - Additional URL's - URL's adicionais - Add Adicionar @@ -2773,6 +3209,22 @@ Gostaria de a corrigir? Edit Editar + + These settings affect the entry's behaviour with the browser extension. + Estas configurações afetam o comportamento da entrada com a extensão do navegador. + + + Additional URLs + URLs adicionais + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Envie esta entrada apenas para o navegador para caixas de diálogo de autenticação HTTP. Se ativado, os formulários de login normais não mostrarão esta entrada para seleção. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Não envie esta entrada ao navegador para caixas de diálogo de autenticação HTTP. Se ativado, as caixas de diálogo HTTP Auth não mostrarão esta entrada para seleção. + EditEntryWidgetHistory @@ -2823,22 +3275,10 @@ Gostaria de a corrigir? Notes field Campo notas - - Toggle the checkbox to reveal the notes section. - Altere a caixa de checagem para revelar a seção de notas. - Username field Campo de usuário - - Toggle notes visible - Alternar visibilidade das notas - - - Notes: - Notas: - Expiration field Campo de expiração @@ -2855,14 +3295,6 @@ Gostaria de a corrigir? Presets Pré-definidos - - Password: - Senha: - - - URL: - URL: - Url field Campo da url @@ -2871,18 +3303,10 @@ Gostaria de a corrigir? Download favicon for URL Baixar favicon para URL - - Title: - Título: - Title field Campo de título - - Username: - Nome de Usuário: - Password field Campo de senha @@ -2891,18 +3315,42 @@ Gostaria de a corrigir? Toggle expiration Alternar expiração - - Expires: - Expira em: - - - Tags: - Etiquetas: - Tags list Lista de etiquetas + + &Username: + &Nome de usuário: + + + &Title: + &Título: + + + &Password: + &Senha: + + + UR&L: + UR&L: + + + &Notes: + &Notas: + + + Toggle notes visibility + Alternar visibilidade das notas + + + T&ags: + T&ags: + + + &Expires: + &Expira em: + EditEntryWidgetSSHAgent @@ -2942,19 +3390,6 @@ Gostaria de a corrigir? Private key Chave privada - - External file - Arquivo externo - - - Browser for key file - Procurar por arquivo-chave - - - Browse… - Button for opening file dialog - Navegar... - Attachment Anexo @@ -2971,6 +3406,23 @@ Gostaria de a corrigir? Remove from agent Remover do agente + + External file + Arquivo externo + + + Browser for key file + Procurar por arquivo-chave + + + Browse… + Button for opening file dialog + Navegar... + + + Generate + Gerar + Select attachment file Selecionar arquivo anexado @@ -2995,6 +3447,10 @@ Gostaria de a corrigir? seconds segundos + + Clear agent + Limpar agente + EditGroupWidget @@ -3006,10 +3462,6 @@ Gostaria de a corrigir? Icon Ícone - - Browser Integration - Integração com o Navegador - Properties Propriedades @@ -3026,6 +3478,10 @@ Gostaria de a corrigir? Group has unsaved changes O grupo tem alterações não salvas + + Browser Integration + Integração com o Navegador + Enable Habilitar @@ -3041,10 +3497,6 @@ Gostaria de a corrigir? EditGroupWidgetBrowser - - Edit Group - Editar Grupo - These settings affect to the group's behaviour with the browser extension. Essas configurações afetam o comportamento do grupo com a extensão para navegadores @@ -3055,31 +3507,47 @@ Gostaria de a corrigir? Hide entries from browser extension toggle for this and sub groups - + Oculta as entradas deste grupo (e dos subgrupos) da extensão do navegador Skip Auto-Submit for entries: - + Ignora o envio automático para as entradas: Skip Auto-Submit toggle for this and sub groups - + Ignora o envio automático para este e para os subgrupos Use entries only with HTTP Basic Auth: - + Utilize as entradas apenas com o HTTP Basic Auth: Only HTTP Auth toggle for this and sub groups - + Apenas o HTTP Basic Auth para este grupo e para os subgrupos Do not use entries with HTTP Basic Auth: - + Não utilize as entradas com o HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups - + Não utilize o HTTP Basic Auth para este grupo e para os subgrupos + + + Omit WWW subdomain from matching: + Omita o subdomínio WWW da correspondência: + + + Omit WWW subdomain from matching toggle for this and sub groups + Omita o subdomínio WWW da correspondência alternada: para este grupo e para os subgrupos + + + Restrict matching to given browser key: + Restringir a correspondência a determinada chave do navegador: + + + Restrict matching to given browser key toggle for this and sub groups + Restringir a correspondência a uma determinada chave do navegador para este e subgrupos @@ -3173,7 +3641,7 @@ Extensões suportadas são: %1 KeeShare container - + Contêiner KeeShare KeeShare signed container @@ -3271,7 +3739,7 @@ Extensões suportadas são: %1 Set the URL to use to search for a favicon - + Defina a URL que será utilizada para procurar pelos 'favicons' Favicon URL @@ -3313,10 +3781,6 @@ Extensões suportadas são: %1 Unable to fetch favicon. Não foi possível obter favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Você pode habilitar o serviço de ícone do site do DuckDuckGo em Ferramentas -> Configurações -> Segurança - Existing icon selected. Ícone existente selecionado. @@ -3335,7 +3799,7 @@ Extensões suportadas são: %1 Successfully loaded %1 of %n icon(s) - Carregado com sucesso %1 de %n ícone(s)Carregado com sucesso %1 de %n ícone(s) + Carregado com sucesso %1 de %n ícone(s)Carregado com sucesso %1 de %n ícone(s)Carregado com sucesso %1 de %n ícone(s) No icons were loaded @@ -3343,11 +3807,15 @@ Extensões suportadas são: %1 %n icon(s) already exist in the database - %n ícone(s) já existe no banco de dados%n ícone(s) já existe no banco de dados + %n ícone(s) já existe no banco de dados%n ícone(s) já existe no banco de dados%n ícone(s) já existe no banco de dados The following icon(s) failed: - O seguinte ícone falhou:O(s) ícone(s) a seguir falharam: + O seguinte ícone falhou:O(s) ícone(s) a seguir falharam:O(s) ícone(s) a seguir falharam: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Você pode ativar o serviço de ícone do site DuckDuckGo em Configurações do Aplicativo -> Segurança @@ -3425,6 +3893,24 @@ Isto pode causar mal funcionamento dos plugins afetados. %1 - Clone %1 - Clone + + Passkey + Chave de acesso + + + Invalid conversion type: %1 + Tipo de conversão inválido: %1 + + + Invalid conversion syntax: %1 + Sintaxe de conversão inválida: %1 + + + Invalid regular expression syntax %1 +%2 + Sintaxe de expressão regular inválida %1 +%2 + EntryAttachments @@ -3433,6 +3919,21 @@ Isto pode causar mal funcionamento dos plugins afetados. Não é possível abrir o arquivo %1. + + EntryAttachmentsDialog + + Form + Formulário + + + File name + Nome do arquivo + + + File contents... + Conteúdo do arquivo... + + EntryAttachmentsModel @@ -3470,14 +3971,6 @@ Isto pode causar mal funcionamento dos plugins afetados. Remove Remover - - Rename selected attachment - Renomear anexo selecionado - - - Rename - Renomear - Open selected attachment Abrir anexo selecionado @@ -3504,7 +3997,7 @@ Isto pode causar mal funcionamento dos plugins afetados. Are you sure you want to remove %n attachment(s)? - Tem certeza que deseja remover anexos de %n?Tem certeza que deseja remover os %n anexo(s)? + Tem certeza que deseja remover anexos de %n?Tem certeza que deseja remover os %n anexo(s)?Tem certeza que deseja remover os %n anexo(s)? Save attachments @@ -3547,17 +4040,13 @@ Isto pode causar mal funcionamento dos plugins afetados. %1 Incapaz de abrir o arquivo (s): %1Não foi possível abrir arquivo(s): +%1Não foi possível abrir arquivo(s): %1 Confirm Overwrite Attachment Confirmar substituição de anexo - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - - Confirm Attachment Confirmar Anexo @@ -3592,6 +4081,24 @@ Error: %1 Falha ao salvar anexo atualizado. Erro: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + O anexo "%1" já existe. +Deseja fazer a substituição do anexo já existente? + + + New + + + + Preview + Visualização + + + Failed to preview an attachment: Attachment not found + Falha ao visualizar um anexo: Anexo não encontrado + EntryAttributesModel @@ -3786,6 +4293,14 @@ Erro: %1 Has TOTP Possui TOTP + + Background Color + Cor de fundo + + + Group Path + Caminho do Grupo + EntryPreviewWidget @@ -3806,8 +4321,8 @@ Erro: %1 Senha - Notes - Notas + URL + URL Expiration @@ -3826,8 +4341,8 @@ Erro: %1 Nome de usuário - URL - URL + Notes + Notas Advanced @@ -3877,6 +4392,10 @@ Erro: %1 Never Nunca + + Double click to copy value + Faça dois cliques para copiar o valor + Enabled Habilitado @@ -3885,6 +4404,10 @@ Erro: %1 Disabled Desabilitado + + Double click to copy to clipboard + Faça dois cliques para copiar o valor + EntryURLModel @@ -3892,6 +4415,10 @@ Erro: %1 Invalid URL URL inválida + + Duplicate URL + URL duplicada + EntryView @@ -3907,6 +4434,10 @@ Erro: %1 Reset to defaults Redefinir as configurações padrões + + + %1 entry(s)... + + %1 entrada...+ %1 entradas...+ %1 entrada(s)... + ExportDialog @@ -3922,7 +4453,8 @@ Erro: %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + Você está prestes a exportar o seu banco de dados para um arquivo não criptografado. +Isso vai deixar as suas senhas e as suas informações confidenciais vulneráveis! database order @@ -4015,7 +4547,7 @@ This will leave your passwords and sensitive information vulnerable! %n Entry(s) was used by %1 %1 is the name of an application - %n entrada foi usada por %1%n entradas foram usadas por %1 + %n entrada foi usada por %1%n entradas foram usadas por %1%n entradas foram usadas por %1 @@ -4126,6 +4658,198 @@ Você pode habilitar o serviço de ícones do DuckDuckGo na seção de seguranç Baixando favicons (%1/%2)… + + ImportWizard + + Import Wizard + Assistente de Importação + + + + ImportWizardPageReview + + WizardPage + Assistente + + + Entry count: %1 + Contagem de registros: %1 + + + Group + Grupo + + + Title + Título + + + Username + Nome de usuário + + + Password + Senha + + + Url + Url + + + Could not load key file. + Não foi possível carregar o arquivo de chave. + + + Could not open remote database. Password or key file may be incorrect. + Não foi possível abrir o banco de dados remoto. A senha ou o arquivo de chave podem estar incorretos. + + + + ImportWizardPageSelect + + Form + Formulário + + + Import File Selection + Importar Arquivo Selecionado + + + Password: + Senha: + + + Key File: + Arquivo-Chave: + + + Browse… + Navegar... + + + Import Into: + Importar Para: + + + New Database + Novo Banco de Dados + + + No unlocked databases available + Não há bancos de dados destrancados disponíveis + + + Existing Database: + Banco de Dados Existente: + + + Import File: + Importar Arquivo: + + + Comma Separated Values (.csv) + Valores separados por vírgulas (.csv) + + + 1Password Export (.1pux) + Exportar 1Password (.1pux) + + + 1Password Vault (.opvault) + Cofre 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Banco de dados KeePass 1 (.kdb) + + + Open OPVault + Abrir o OPVault + + + Select import file + Selecionar o arquivo de importação + + + All files + Todos arquivos + + + Key files + Arquivos-chave + + + Select key file + Escolha o arquivo-chave + + + Comma Separated Values + Valores separados por vírgulas + + + 1Password Export + Exportar 1Password + + + Bitwarden JSON Export + Exportar Bitwarden JSON + + + 1Password Vault + Cofre do 1Password + + + KeePass1 Database + Banco de dados do KeePass1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Exportar para Proton Pass JSON + + + Temporary Database + Banco de Dados Temporário + + + Command: + Comando: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + por exemplo: 'sftp user@hostname' ou 'scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}' + + + Input: + Entrada: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + por exemplo: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} é usado como espaço reservado para armazenar o banco de dados em um local temporário +O comando tem que sair. No caso de `sftp` como último comando `exit` deve ser enviado + + + Remote Database (.kdbx) + Banco de Dados Remoto (.kdbx) + + KMessageWidget @@ -4141,7 +4865,7 @@ Você pode habilitar o serviço de ícones do DuckDuckGo na seção de seguranç Kdbx3Reader Missing database headers - + Falta os cabeçalhos dos bancos de dados Unable to calculate database key @@ -4167,11 +4891,11 @@ Se este erro ocorrer novamente, seu banco de dados pode estar corrompido. Invalid header field length: field %1 - + O comprimento do campo do cabeçalho é inválido: campo %1 Invalid header data length: field %1, %2 expected, %3 found - + O comprimento do campo de dados do cabeçalho é inválido: campo %1, esperado %2 e foi encontrado %3 @@ -4228,11 +4952,11 @@ Se este erro ocorrer novamente, seu banco de dados pode estar corrompido. Invalid header field length: field %1 - + O comprimento do campo do cabeçalho é inválido: campo %1 Invalid header data length: field %1, %2 expected, %3 found - + O comprimento do campo de dados do cabeçalho é inválido: campo %1, esperado %2 e foi encontrado %3 Failed to open buffer for KDF parameters in header @@ -4252,11 +4976,11 @@ Se este erro ocorrer novamente, seu banco de dados pode estar corrompido. Invalid inner header field length: field %1 - + O comprimento do campo interno é inválido: campo %1 Invalid inner header data length: field %1, %2 expected, %3 found - + O comprimento do campo de dados interno é inválido: campo %1, esperado %2 e foi encontrado %3 Invalid inner header binary size @@ -4560,17 +5284,6 @@ Linha %2, coluna %3 Falha ao abrir chave privada - - KeePass1OpenWidget - - Import KeePass1 Database - Importar banco de dados KeePass1 - - - Unable to open the database. - Não foi possível abrir o banco de dados. - - KeePass1Reader @@ -4927,10 +5640,6 @@ Tem certeza que deseja continuar com este arquivo? &Recent Databases &Banco de Dados Recentes - - &Import - &Importar - &Export &Exportar @@ -4951,6 +5660,10 @@ Tem certeza que deseja continuar com este arquivo? TOTP TOTP + + Tags + Etiquetas + &Groups &Grupos @@ -4995,34 +5708,18 @@ Tem certeza que deseja continuar com este arquivo? &New Database… &Novo Banco de Dados... - - Create a new database - Criar um banco de dados - &Merge From Database… &Mesclar do Banco de Dados... - - Merge from another KDBX database - Mesclar de outro banco de dados KDBX - &New Entry… &Nova Entrada... - - Add a new entry - Adicionar uma nova entrada - &Edit Entry… &Editar Entrada… - - View or edit entry - Exibir ou editar entrada - &Delete Entry… &Excluir Entrada… @@ -5031,10 +5728,6 @@ Tem certeza que deseja continuar com este arquivo? &New Group… &Novo Grupo… - - Add a new group - Adicionar a um novo grupo - &Edit Group… &Editar Grupo @@ -5067,18 +5760,10 @@ Tem certeza que deseja continuar com este arquivo? Database &Reports… &Relatórios do Banco de Dados... - - Statistics, health check, etc. - Estatísticas, verificação de saúde, etc. - &Database Settings… Configurações do Banco de &Dados... - - Database settings - Configurações do Banco de Dados - &Clone Entry… &Clonar Entrada... @@ -5087,34 +5772,18 @@ Tem certeza que deseja continuar com este arquivo? Move u&p Mover para &cima - - Move entry one step up - Mover entrada um passo para cima - Move do&wn Move para &baixo - - Move entry one step down - Mover entrada um passo para baixo - Copy &Username Copiar &Nome de Usuário - - Copy username to clipboard - Copiar nome de usuário para área de transferência - Copy &Password Copiar &Senha - - Copy password to clipboard - Copiar senha para área de transferência - &Settings &Configurações @@ -5148,25 +5817,13 @@ Tem certeza que deseja continuar com este arquivo? &Título - Copy title to clipboard - Copiar título para a área de transferência - - - &URL - &URL - - - Copy URL to clipboard - Copiar URL para a área de transferência + Copy &URL + Copiar &URL &Notes &Notas - - Copy notes to clipboard - Copiar notas para a área de transferência - &CSV File… Arquivo &CSV... @@ -5179,26 +5836,14 @@ Tem certeza que deseja continuar com este arquivo? KeePass 1 Database… Banco de dados do KeePass 1... - - Import a KeePass 1 database - Importar banco de dados do KeePass 1 - 1Password Vault… Cofre do 1Password... - - Import a 1Password Vault - Importar cofre 1Password - CSV File… Arquivo CSV... - - Import a CSV file - Importar arquivo CSV - Show TOTP Mostrar TOTP @@ -5215,6 +5860,10 @@ Tem certeza que deseja continuar com este arquivo? Copy &TOTP Copiar &TOTP + + Copy Password and TOTP + Copiar Senha e TOTP + E&mpty recycle bin Esvaziar &lixeira @@ -5239,10 +5888,6 @@ Tem certeza que deseja continuar com este arquivo? &Online Help &Ajuda Online - - Go to online documentation - Ir para documentação online - &User Guide &Guia do usuário @@ -5287,6 +5932,10 @@ Tem certeza que deseja continuar com este arquivo? Classic (Platform-native) Clássico (nativo da plataforma) + + Show Menubar + Exibir Barra de Menu + Show Toolbar Exibir Barra de Ferramentas @@ -5311,6 +5960,10 @@ Tem certeza que deseja continuar com este arquivo? Clone Group... Clonar grupo... + + &XML File… + Arquivo &XML... + Clear history Limpar histórico @@ -5338,14 +5991,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - AVISO: Sua versão do Qt pode fazer com que o KeePassXC trave com um teclado na tela! -Recomendamos que você use o AppImage disponível em nossa página de downloads. + No Tags + Sem Etiquetas Restore Entry(s) - + Restaura a entradaRestaura as entradasRestaura as entrada(s) Settings @@ -5371,6 +6022,10 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Quit KeePassXC Fechar KeePassXC + + %1 Entry(s) + %1 Entradas(s)%1 Entradas(s)%1 Entradas(s) + Please present or touch your YubiKey to continue… Introduza ou toque na sua YubiKey para continuar... @@ -5383,6 +6038,314 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. You must restart the application to apply this setting. Would you like to restart now? Você precisa reiniciar o aplicativo para aplicar esta configuração. Você gostaria de reiniciar agora? + + Allow Screen Capture + Permitir captura de tela + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importar o arquivo 1PUX do 1Password + + + Import… + Importar... + + + Passkeys… + Chaves de Acesso... + + + Import Passkey + Importar Chave de Acesso + + + Remote S&ync… + S&incronização Remota... + + + Quit Application + Sair do Aplicativo + + + Open About Dialog + Abrir a Caixa de Diálogo Sobre + + + Open Database + Abrir Banco de Dados + + + Create Database + Criar Banco de Dados + + + Merge From Database + Mesclar Do Banco de Dados + + + Create Entry + Criar Entrada + + + Edit Entry + Editar Entrada + + + Delete Entry + Excluir Entrada + + + Create Group + Criar Grupo + + + Edit Group + Editar Grupo + + + Delete Group + Excluir Grupo + + + Download All Favicons + Baixar Todos os Favicons + + + Sort Groups A-Z + Ordenar Grupos de A-Z + + + Sort Groups Z-A + Ordenar Grupos de Z-A + + + Save Database As + Salvar Banco de Dados Como + + + Show Database Security + Mostrar Segurança do Banco de Dados + + + Show Database Reports + Mostrar Relatório do Banco de Dados + + + Show Database Settings + Mostrar Configurações do Banco de Dados + + + Show Passkeys + Mostrar Chaves de Acesso + + + Clone Entry + Clonar Entrada + + + Move Entry Up + Mover Entrada para Cima + + + Move Entry Down + Mover Entrada para Baixo + + + Copy Username + Copiar nome de utilizador + + + Copy Password + Copiar senha + + + Show Application Settings + Mostrar Configurações do Aplicativo + + + Show Password Generator + Mostrar Gerador de Senhas + + + Remove Passkey From Entry + Remover a chave de acesso da entrada + + + Perform Auto-Type: {USERNAME} + Executar a Digitação Automática: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Executar a Digitação Automática: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Executar a Digitação Automática: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Executar a Digitação Automática: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Executar a Digitação Automática: {TOTP} + + + Copy Title + Copiar Título + + + Copy URL + Copiar URL + + + Copy Notes + Copiar Notas + + + Export to CSV + Exportar para CSV + + + Export to HTML + Exportar para HTML + + + Import KeePass1 Database + Importar banco de dados KeePass1 + + + Import 1Password Vault + Importar 1Password Vault + + + Import CSV File + Importar arquivo CSV + + + Show TOTP QR Code + Mostrar Código QR TOTP + + + Set up TOTP + Configurar o TOTP + + + Empty Recycle Bin + Esvaziar a Lixeira + + + Open Donation Website + Abrir Site de Doação + + + Open Bug Report + Abrir Rlatório de Erro + + + Open Online Documentation + Abrir Documentação Online + + + Open Keyboard Shortcuts Guide + Abrir Guia de Atalhos do Teclado + + + Save Database Backup + Salvar Backup do Banco de Dados + + + SSH Agent: Add Key + Agente SSH: Adicionar Chave + + + SSH Agent: Remove Key + Agente SSH: Remover Chave + + + Toggle Compact Mode + Alternar para o Modo Compacto + + + Set Theme: Automatic + Definir Tema: Automaticamente + + + Set Theme: Light + Definir Tema: Claro + + + Set Theme: Dark + Definir Tema: Escuro + + + Set Theme: Classic + Definir Tema: Clássico + + + Toggle Show Menubar + Alternar para Mostrar Barra de Menu + + + Toggle Show Toolbar + Alternar para Mostrar Barra de Ferramentas + + + Toggle Show Preview Panel + Alternar para Mostrar Painel de Prévia + + + Toggle Always on Top + Alternar para Sempre na Frente + + + Toggle Hide Usernames + Alternar para Ocultar Nomes de Usuário + + + Toggle Hide Passwords + Alternar para Ocultar as Senhas + + + Export to XML + Exportar para XML + + + Toggle Allow Screen Capture + Alternar para Permitir Captura de Tela + + + Show Group Panel + Mostrar Painel do Grupo + + + Toggle Show Group Panel + Alternar Exibição do Painel do Grupo + + + Setup Remote Sync… + Configurar Sincronização Remota... + + + Password Generator + Gerador de Senha + + + E&xpire Entry… + + + + Clear SSH Agent + Limpar agente SSH + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5419,11 +6382,11 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Reset - + Redefine Reset any remembered decisions for this application - + Redefine quaisquer decisões armazenadas para esta aplicação @@ -5440,26 +6403,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Overwriting %1 [%2] Substituindo %1 [%2] - - older entry merged from database "%1" - entrada mais antiga mesclada do banco de dados "%1" - - - Adding backup for older target %1 [%2] - Adicionando backup para o alvo mais antigo %1 [%2] - - - Adding backup for older source %1 [%2] - Adicionando backup para fonte mais antiga %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Reaplicar entradas alvo antigas em cima da fonte nova %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Reaplicar fonte alvo antiga em cima do alvo novo %1 [%2] - Synchronizing from newer source %1 [%2] Sincronizando de uma fonte mais nova %1 [%2] @@ -5519,14 +6462,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Aqui você pode ajustar as configurações de criptografia do banco de dados. Não se preocupe, você pode alterá-los mais tarde nas configurações do banco de dados. - - Advanced Settings - Definições avançadas - - - Simple Settings - Definições básicas - NewDatabaseWizardPageDatabaseKey @@ -5561,6 +6496,25 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Por favor preencha o nome de exibição e uma descrição opcional para o seu novo banco de dados: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + O nome do anexo não pode estar vazio + + + Attachment with the same name already exists + Anexo com o mesmo nome já existe + + + Save attachment + Salvar anexo + + + New entry attachment + Novo anexo da entrada + + NixUtils @@ -5607,15 +6561,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Experado %1 bytes de clear-text. Encontrados %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Ler banco de dados não produz uma instância -%1 - - OpVaultReader @@ -5689,6 +6634,10 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Unknown cipher: %1 Cifra desconhecida: %1 + + AES-256/GCM is currently not supported + AES-256/GCM não é suportado atualmente + Passphrase is required to decrypt this key Senha é necessária para decriptar esta chave @@ -5719,11 +6668,11 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Unexpected EOF while reading key - + Foi encontrado um EOF inesperado ao ler a chave Unsupported key part - + Parte da chave não compatível Unexpected EOF while reading public key @@ -5753,28 +6702,184 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Unexpected EOF when writing private key EOF inesperado enquanto escrevendp a chave privada. + + (encrypted) + (criptografado) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Senhas não coicidem + SSH Key Generator + Gerador de chave SSH - Passwords match so far - Senhas não coincidem até agora + Type + Tipo - Toggle Password (%1) - Alternar Senha (%1) + Bits + Bits - Generate Password (%1) - Gerar Senha (%1) + Comment + Comentário + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Exportar Chave de Acesso - Warning: Caps Lock enabled! - Alerta: Caps Lock habilitado! + Filenames will be generated with title and .passkey file extension. + Os nomes dos arquivos serão gerados com título e extensão de arquivo .passkey. + + + Export entries + Exportar entradas + + + Export Selected + Exportar Selecionados + + + Cancel + Cancelar + + + Export to folder + Expotar para pasta + + + Export the following passkey entries. + Exportar as seguintes chaves de acesso. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Exportar Chave de Acesso + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Arquivo "%1.passkey" já existe. +Você deseja sobrescrevê-lo? + + + + Cannot open file + Não foi possível abrir o arquivo + + + Cannot open file "%1" for writing. + Não é possível abrir o arquivo "%1" para gravação. + + + Cannot write to file + Não foi possível salvar no arquivo + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Importar Chave de Acesso + + + Username: %1 + Nome de Usuário: %1 + + + Group + Grupo + + + Database + Banco de Dados + + + Import Passkey + Importar Chave de Acesso + + + Import + Importar + + + Cancel + Cancelar + + + Entry + Entrada + + + Create new entry + Criar nova entrada + + + Relying Party: %1 + Parte confiável: %1 + + + Import the following passkey: + importar as seguintes chaves de acesso: + + + Import the following passkey to this entry: + Importar as seguintes chaves de acesso para esta entrada: + + + Default passkeys group (Imported Passkeys) + Grupo de chaves de acesso padrão (chaves de acesso importadas) + + + + PasskeyImporter + + Passkey file + Arquivo de chave de acesso + + + All files + Todos arquivos + + + Cannot open file + Não foi possível abrir o arquivo + + + Cannot open file "%1" for reading. + Não é possível abrir o arquivo "%1" para leitura. + + + Open passkey file + Abrir o arquivo da chave de acesso + + + Cannot import passkey + Não foi possível importar a chave de acesso + + + Cannot import passkey file "%1". Data is missing. + Não foi possível importar o arquivo da chave de acesso "%1". Faltam dados. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Não foi possível importar o arquivo da chave de acesso "%1". +Os seguintes dados estão faltando: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Não foi possível importar o arquivo da chave de acesso "%1". A chave privada está ausente ou malformada. @@ -5955,10 +7060,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Also choose from: Escolher também de: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Caracteres excluídos: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Excluir caracteres semelhantes @@ -5983,10 +7084,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Word Count: Número de Palavras: - - Character Count: - Número de Caracteres: - Word Case: Caixa da palavra: @@ -5999,10 +7096,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Add custom wordlist Adicionar lista de palavras personalizada - - character - caractere - Close Fechar @@ -6039,51 +7132,6 @@ Recomendamos que você use o AppImage disponível em nossa página de downloads. Entropy: %1 bit Entropia: %1 bit - - Confirm Delete Wordlist - Confirmar exclusão da lista de palavras - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - Não foi possível excluir a lista de palavras - - - Wordlists - Lista de palavras - - - All files - Todos arquivos - - - Select Custom Wordlist - Selecionar lista de palavras personalizada - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - Não foi possível adicionar a lista de palavras - - - Logograms - Logo-gramas - - - Special Characters - Caracteres Especiais - Password Quality: %1 Qualidade da senha: %1 @@ -6108,6 +7156,119 @@ Do you want to overwrite it? Password quality Excelente + + Confirm Delete Wordlist + Confirmar exclusão da lista de palavras + + + Do you really want to delete the wordlist "%1"? + Tem a certeza que deseja excluir a lista de palavras "%1"? + + + Failed to delete wordlist + Não foi possível excluir a lista de palavras + + + Wordlists + Lista de palavras + + + All files + Todos arquivos + + + Select Custom Wordlist + Selecionar lista de palavras personalizada + + + Overwrite Wordlist? + Substituir lista de palavras? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + A lista de palavras "%1" já existe como uma lista personalizada. +Tem certeza que deseja substitui-la? + + + Failed to add wordlist + Não foi possível adicionar a lista de palavras + + + Logograms + Logo-gramas + + + Special Characters + Caracteres Especiais + + + passwordLength + + + + Characters: %1 + Caracteres: %1 + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Caracteres excluídos: '0', '1', 'l', 'I', 'O', '|', '﹒', 'B', '8', 'G', '6' + + + + PasswordWidget + + Passwords do not match + Senhas não coicidem + + + Passwords match so far + Senhas não coincidem até agora + + + Toggle Password (%1) + Alternar Senha (%1) + + + Generate Password (%1) + Gerar Senha (%1) + + + Warning: Caps Lock enabled! + Alerta: Caps Lock habilitado! + + + Quality: %1 + Qualidade: %1 + + + Poor + Password quality + Pobre + + + Weak + Password quality + Fraco + + + Good + Password quality + Bom + + + Excellent + Password quality + Excelente + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Alternar a visibilidade da senha usando Control + H. Abrir o gerador de senha usando Control + G. + PickcharsDialog @@ -6124,6 +7285,21 @@ Do you want to overwrite it? Pressione &Tab entre os caracteres + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + Nenhuma prévia disponível + + + Image format not supported + Formato de imagem não suportado + + QMessageBox @@ -6162,6 +7338,10 @@ Do you want to overwrite it? Continue Continuar + + Continue with weak password + Continuar com senha fraca + QObject @@ -6359,7 +7539,7 @@ Do you want to overwrite it? Password for '%1' has been leaked %2 time(s)! - A senha para '%1' foi vazada %2 vez(es)!A senha para '%1' foi vazada %2 vez(es)! + A senha para '%1' foi vazada %2 vez(es)!A senha para '%1' foi vazada %2 vez(es)!A senha para '%1' foi vazada %2 vez(es)! Password for '%1' has been leaked! @@ -6371,7 +7551,7 @@ Do you want to overwrite it? Path of the entry with the target attachment. - + Caminho da entrada com o destino do anexo Name of the attachment to be exported. @@ -6379,7 +7559,7 @@ Do you want to overwrite it? Path to which the attachment should be exported. - + O caminho para onde o anexo que deve ser exportado. Could not find entry with path %1. @@ -6387,27 +7567,27 @@ Do you want to overwrite it? Could not find attachment with name %1. - + Não foi possível encontrar o anexo com o nome %1. No export target given. Please use '--stdout' or specify an 'export-file'. - + Nenhum destino foi informado. Utilize '--stdout' ou especifique um 'arquivo-de-exportação'. Could not open output file %1. - + Não foi possível abrir o arquivo gerado %1. Successfully exported attachment %1 of entry %2 to %3. - + O anexo %1 da entrada %2 foi exportado com sucesso para %3. Overwrite existing attachments. - + Substitui os anexos já existentes Imports an attachment to an entry. - + Importa um anexo para uma entrada. Path of the entry. @@ -6415,35 +7595,35 @@ Do you want to overwrite it? Name of the attachment to be added. - + Nome do anexo que será adicionado. Path of the attachment to be imported. - + O caminho do anexo que será importado. Attachment %1 already exists for entry %2. - + O anexo %1 já existe na entrada %2. Could not open attachment file %1. - + Não foi possível abrir o anexo %1. Successfully imported attachment %1 as %2 to entry %3. - + O anexo %1 foi importado com sucesso como %2 para a entrada %3. Remove an attachment of an entry. - + Remove um anexo de uma entrada. Name of the attachment to be removed. - + O nome do anexo que será excluído. Successfully removed attachment %1 from entry %2. - + O anexo %1 foi excluído da entrada %2. Copy the given attribute to the clipboard. Defaults to "password" if not specified. @@ -6509,7 +7689,7 @@ Do you want to overwrite it? Clearing the clipboard in %1 second(s)... - Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)... + Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)... Clipboard cleared! @@ -6555,6 +7735,10 @@ Do you want to overwrite it? Too many arguments provided. Muitos argumentos fornecidos. + + Path of the database. + Caminho do banco de dados + Target decryption time in MS for the database. Tempo de descriptografia de destino em MS para o banco de dados. @@ -6575,10 +7759,6 @@ Do you want to overwrite it? Create a new database. Criar um novo banco de dados. - - Path of the database. - Caminho do banco de dados - Invalid decryption time %1. Tempo de descriptografia inválido %1. @@ -6623,6 +7803,158 @@ Do you want to overwrite it? Successfully created new database. Novo banco de dados criado com sucesso. + + Unset the password for the database. + Desative a senha do banco de dados. + + + Unset the key file for the database. + Desmarque o arquivo de chave para o banco de dados. + + + Edit a database. + Editar um banco de dados. + + + Cannot use %1 and %2 at the same time. + Não é possível usar %1 e %2 em simultâneo. + + + Could not change the database key. + Não foi possível mudar a chave do banco de dados. + + + Database was not modified. + O banco de dados não foi modificado. + + + Writing the database failed: %1 + Gravação do banco de dados falhou: %1 + + + Successfully edited the database. + Banco de dados editado com sucesso. + + + Cannot remove password: The database does not have a password. + Não é possível remover a senha: O banco de dados não possui uma senha. + + + Cannot remove file key: The database does not have a file key. + Não é possível remover a chave do arquivo: o banco de dados não possui uma chave de arquivo. + + + Loading the new key file failed: %1 + Carregamento do novo arquivo chave falhou: %1 + + + Found unexpected Key type %1 + Tipo de Chave inesperada encontrado %1 + + + Cannot remove all the keys from a database. + Não é possível remover todas as chaves de um banco de dados. + + + Show a database's information. + Mostra as informações de um banco de dados. + + + UUID: + UUID: + + + Name: + Nome: + + + Description: + Descrição: + + + Cipher: + Cifra: + + + KDF: + KDF: + + + Recycle bin is enabled. + A Lixeira está habilitada. + + + Recycle bin is not enabled. + A Lixeira não está habilitada. + + + Location + Localização + + + Database created + Banco de dados criado + + + Last saved + Salvo por último em + + + Unsaved changes + Mudanças não-salvas + + + yes + sim + + + no + não + + + Number of groups + Número de grupos + + + Number of entries + Número de entradas + + + Number of expired entries + Número de entradas expiradas + + + Unique passwords + Senhas únicas + + + Non-unique passwords + Senhas não-únicas + + + Maximum password reuse + Máximo de reusos da senha + + + Number of short passwords + Números de senhas pequenas + + + Number of weak passwords + Número de senhas fracas + + + Entries excluded from reports + Entradas excluídas dos relatórios + + + Average password length + Comprimento médio da senha + + + %1 characters + %1 caracteres + Word count for the diceware passphrase. Contagem de palavra para a frase-chave diceware. @@ -6646,10 +7978,6 @@ Do you want to overwrite it? Invalid word count %1 Contador de palavra %1 inválido - - The word list is too small (< 1000 items) - A lista de palavras é muito pequena (<1000 itens) - Title for the entry. Título para a entrada. @@ -6674,10 +8002,6 @@ Do you want to overwrite it? Enter new password for entry: Digite uma nova senha para entrada: - - Writing the database failed: %1 - Gravação do banco de dados falhou: %1 - Successfully edited entry %1. Entrada editada com sucesso %1. @@ -6798,10 +8122,6 @@ Do you want to overwrite it? Exit interactive mode. Sair do modo interativo. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formato usado ao exportar. Escolhas disponíveis são 'xml' ou 'csv'. O padrão é 'xml'. - Exports the content of a database to standard output in the specified format. Exportar o conteúdo do banco de dados para um padrão de saída no formato especificado. @@ -6902,106 +8222,6 @@ Do you want to overwrite it? Successfully imported database. Banco de dados importado com sucesso. - - Show a database's information. - Mostra as informações de um banco de dados. - - - UUID: - UUID: - - - Name: - Nome: - - - Description: - Descrição: - - - Cipher: - Cifra: - - - KDF: - KDF: - - - Recycle bin is enabled. - A Lixeira está habilitada. - - - Recycle bin is not enabled. - A Lixeira não está habilitada. - - - Location - Localização - - - Database created - Banco de dados criado - - - Last saved - Salvo por último em - - - Unsaved changes - Mudanças não-salvas - - - yes - sim - - - no - não - - - Number of groups - Número de grupos - - - Number of entries - Número de entradas - - - Number of expired entries - Número de entradas expiradas - - - Unique passwords - Senhas únicas - - - Non-unique passwords - Senhas não-únicas - - - Maximum password reuse - Máximo de reusos da senha - - - Number of short passwords - Números de senhas pequenas - - - Number of weak passwords - Número de senhas fracas - - - Entries excluded from reports - Entradas excluídas dos relatórios - - - Average password length - Comprimento médio da senha - - - %1 characters - %1 caracteres - Unknown command %1 Comando desconhecido %1 @@ -7174,9 +8394,13 @@ Comandos disponíveis: Show the protected attributes in clear text. Mostrar os atributos protegidos como texto legível. + + Show all the attributes of the entry. + Mostrar todos os atributos da entrada. + Show the attachments of the entry. - + Mostra os anexos de uma entrada. 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. @@ -7244,6 +8468,10 @@ Por favor, considere gerar um novo arquivo-chave. Invalid YubiKey serial %1 Serial YubiKey inválido %1 + + Please present or touch your YubiKey to continue. + Introduza ou toque na sua YubiKey para continuar. + Enter password to encrypt database (optional): Digite a senha para encriptar seu banco de dados (opcional): @@ -7315,7 +8543,7 @@ Por favor, considere gerar um novo arquivo-chave. Password is used %1 time(s) - A senha foi usada %1 vezesA senha foi usada %1 vezes + A senha foi usada %1 vezesA senha foi usada %1 vezesA senha foi usada %1 vezes Password has expired @@ -7335,7 +8563,7 @@ Por favor, considere gerar um novo arquivo-chave. Password expires in %1 day(s) - A senha expira em %1 diasA senha expira em %1 dias + A senha expira em %1 diasA senha expira em %1 diasA senha expira em %1 dias Password will expire soon @@ -7407,31 +8635,32 @@ Kernel: %3 %4 over %1 year(s) - mais de %1 ano(s)mais de %1 ano(s) + mais de %1 ano(s)mais de %1 ano(s)mais de %1 ano(s) about %1 month(s) - Cerca de %1 mês(es)Cerca de %1 mês(es) + Cerca de %1 mês(es)Cerca de %1 mês(es)Cerca de %1 mês(es) %1 week(s) - %1 semana(s)%1 semana(s) + %1 semana(s)%1 semana(s)%1 semana(s) %1 day(s) - %1 dia(s)%1 dia(s) + %1 dia(s)%1 dia(s)%1 dia(s) %1 hour(s) - %1 hora(s)%1 hora(s) + %1 hora(s)%1 hora(s)%1 hora(s) %1 minute(s) - %1 minuto(s)%1 minuto(s) + %1 minuto(s)%1 minuto(s)%1 minuto(s) - Botan library must be at least 2.11.x, found %1.%2.%3 - A biblioteca Botan deve ser pelo menos, 2.11.x mas foi encontrada %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + A biblioteca Botan deve estar pelo menos na versão %1. +Foi encontrada a versão %2.%3.%4 Cryptographic libraries: @@ -7463,11 +8692,11 @@ Kernel: %3 %4 unknown executable (DBus address %1) - + executável desconhecido (endereço DBus %1) %1 (invalid executable path) - + %1 (o caminho do executável é inválido) NULL device @@ -7481,18 +8710,6 @@ Kernel: %3 %4 file empty arquivo vazio - - malformed string - sequência de caracteres malformada - - - missing closing quote - apóstrofo de fechamento ausente - - - %1: (row, col) %2,%3 - %1: (linha, coluna) %2,%3 - AES 256-bit AES 256-bit @@ -7503,7 +8720,7 @@ Kernel: %3 %4 ChaCha20 256-bit - + ChaCha20 256-bit Argon2d (KDBX 4 – recommended) @@ -7519,7 +8736,7 @@ Kernel: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7531,7 +8748,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)... + Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)...Limpando a área de transferência em %1 segundo(s)... Group @@ -7572,12 +8789,12 @@ Kernel: %3 %4 %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? @@ -7585,11 +8802,11 @@ Kernel: %3 %4 Do you really want to delete %n entry(s) for good? - Tem a certeza de que deseja apagar %n entradas?Tem a certeza de que deseja apagar %n entradas? + Tem a certeza de que deseja apagar %n entradas?Tem a certeza de que deseja apagar %n entradas?Tem a certeza de que deseja apagar %n entradas? Delete entry(s)? - Apagar entrada?Apagar entradas? + Apagar entrada?Apagar entradas?Apagar entradas? Do you really want to move entry "%1" to the recycle bin? @@ -7597,11 +8814,11 @@ Kernel: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - Você deseja realmente mover %n entrada para a lixeira?Você deseja realmente mover %n entrada(s) para a lixeira? + Você deseja realmente mover %n entrada para a lixeira?Você deseja realmente mover %n entrada(s) para a lixeira?Você deseja realmente mover %n entrada(s) para a lixeira? Move entry(s) to recycle bin? - Mover entrada para a lixeira?Mover entradas para a lixeira? + Mover entrada para a lixeira?Mover entradas para a lixeira?Mover entradas para a lixeira? Replace references to entry? @@ -7609,7 +8826,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - A entrada "%1" tem %2 referência(s). Deseja substituir referências por valores, ignorar essa entrada ou excluir mesmo assim?A entrada "%1" tem %2 referência(s). Deseja substituir referências por valores, ignorar essa entrada ou excluir mesmo assim? + A entrada "%1" tem %2 referência(s). Deseja substituir referências por valores, ignorar essa entrada ou excluir mesmo assim?A entrada "%1" tem %2 referência(s). Deseja substituir referências por valores, ignorar essa entrada ou excluir mesmo assim?A entrada "%1" tem %2 referência(s). Deseja substituir referências por valores, ignorar essa entrada ou excluir mesmo assim? User name @@ -7671,14 +8888,6 @@ Kernel: %3 %4 read password of the database from stdin ler a senha do banco de dados da entrada padrão - - allow app screen recordering and screenshots - permitir gravação e capturas de tela do aplicativo - - - Locked databases. - Bancos de dados bloqueados. - Database failed to lock. Falha ao bloquear banco de dados. @@ -7687,6 +8896,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Outra instância do KeePassXC já está rodando. + + KeePassXC is not running. No open database to lock + KeePassXC não está em execução. Não há nenhum banco de dados para bloquear. + Fatal error while testing the cryptographic functions. Erro fatal enquanto testava as funções criptográficas. @@ -7695,10 +8908,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Erro - - Warning: Failed to prevent screenshots on a top level window! - Aviso: Falha ao evitar capturas de tela em uma janela de nível superior! - Database password: Senha do banco de dados: @@ -7719,12 +8928,316 @@ Kernel: %3 %4 Failed to sign challenge using Windows Hello. + Houve uma falha no desafio de autenticação usando o Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Alerta: Falha ao bloquear captura de tela em uma janela. + + + Invalid Cipher + Cifra inválida + + + Invalid KDF + Função de derivação de chave (KDF) inválido + + + Access to all entries is denied + Negar acesso a todas as entradas + + + allow screenshots and app recording (Windows/macOS) + permitir capturas de tela e gravação de aplicativos (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Define o arquivo da chave para o banco de dados. +Essa opção está obsoleta; em vez disso, use --set-key-file. + + + Databases have been locked. + Os bancos de dados foram trancados. + + + Attestation not supported + Atestado não suportado + + + Credential is excluded + Credencial foi excluída + + + Passkeys request canceled + Pedido de Chaves de Acesso cancelado + + + Invalid user verification + Verificação de usuário inválida + + + Empty public key + Chave pública vazia + + + Invalid URL provided + URL inválida fornecida + + + Passkeys + Chaves de Acesso + + + AES initialization failed + Falha na inicialização do AES + + + AES encrypt failed + A criptografia AES falhou + + + Failed to store in Linux Keyring + Falha ao armazenar no Linux Keyring + + + Polkit returned an error: %1 + O Polkit retornou um erro: %1 + + + Could not locate key in keyring + Não foi possível localizar a chave no chaveiro + + + Could not read key in keyring + Não foi possível ler a chave no chaveiro + + + AES decrypt failed + Falha na descriptografia AES + + + No Polkit authentication agent was available + Nenhum agente de autenticação do Polkit estava disponível + + + Polkit authorization failed + Houve uma falha na autorização do Polkit + + + No Quick Unlock provider is available + Nenhum provedor de Desbloqueio Rápido está disponível + + + Failed to init KeePassXC crypto. + Falha ao iniciar a criptografia KeePassXC. + + + Failed to encrypt key data. + Não foi possível cifrar os dados da chave + + + Failed to get Windows Hello credential. + Falha ao obter a credencial do Windows Hello. + + + Failed to decrypt key data. + Não foi possível decifrar os dados da chave. + + + Origin is empty or not allowed + A origem está vazia ou não é permitida + + + Effective domain is not a valid domain + O domínio efetivo não é um domínio válido + + + Origin and RP ID do not match + A origem e a ID do RP não coincidem + + + No supported algorithms were provided + Nenhum algoritmo compatível foi fornecido + + + Wait for timer to expire + Aguarde o temporizador expirar + + + Challenge is shorter than required minimum length + O desafio é mais curto do que a duração mínima exigida + + + user.id does not match the required length + user.id não corresponde ao tamanho necessário + + + Favorite + Tag for favorite entries + Favorito + + + File does not exist. + O arquivo não existe. + + + Cannot open file: %1 + Não é possível abrir o arquivo: %1 + + + Cannot parse file: %1 at position %2 + Não é possível analisar o arquivo: %1 na posição %2 + + + Failed to decrypt json file: %1 + Houve uma falha ao descriptografar o arquivo json: %1 + + + Invalid encKeyValidation field + Campo encKeyValidation inválido + + + Invalid cipher list within encKeyValidation field + Lista de cifras inválida no campo encKeyValidation + + + Wrong password + Senha errada + + + Invalid encrypted data field + Campo de dados criptografados inválido + + + Invalid cipher list within encrypted data field + Lista de cifras inválida no campo de dados criptografados + + + Cannot initialize cipher + Não é possível inicializar a cifra + + + Cannot decrypt data + Não é possível descriptografar os dados + + + Bitwarden Import + Importar do Bitwarden + + + Archived + Tag for archived entries + Arquivado + + + Invalid 1PUX file format: Not a valid ZIP file. + Formato de arquivo 1PUX inválido: Não é um arquivo ZIP válido. + + + Invalid 1PUX file format: Missing export.data + Formato de arquivo 1PUX inválido: Falta export.data + + + 1Password Import + Importar 1Password + + + Enter Shortcut + Digite o Atalho + + + Action + Ação + + + Shortcuts + Atalhos + + + Unknown passkeys error + Chave de acesso com erro desconhecido + + + Invalid KDF iterations, cannot decrypt json file + Iterações KDF inválidas, não é possível descriptografar o arquivo json + + + Unsupported format, ensure your Bitwarden export is password-protected + Formato não suportado, certifique-se de que sua exportação Bitwarden esteja protegida por senha + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Apenas PBKDF e Argon2 são suportados, não é possível descriptografar o arquivo json + + + Reset Shortcuts + Redefinir Atalhos + + + Double click an action to change its shortcut + Clique duas vezes em uma ação para alterar seu atalho + + + Filter... + Filtro... + + + Shortcut Conflict + Conflito de Atalhos + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + O atalho %1 está em conflito com '%2'. Substituir o atalho? + + + Cannot generate valid passphrases because the wordlist is too short + Não é possível gerar senhas válidas porque a lista de palavras é muito curta + + + Encrypted files are not supported. - Please present or touch your YubiKey to continue. + Proton Pass Import + Importar do Proton Pass + + + Delete plugin data? + Apagar dados do plugin? + + + Delete plugin data from Entry(s)? + Excluir dados do plugin da Entrada?Excluir dados do plugin da(s) Entrada(s)?Excluir dados do plugin da(s) Entrada(s)? + + + Passkey + Chave de acesso + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + start minimized to the system tray + iniciar minimizado na bandeja do sistema + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Etiquetas + QtIOCompressor @@ -7760,23 +9273,42 @@ Kernel: %3 %4 Erro interno do zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + Parâmetros de download inválidos fornecidos. + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + Ponteiro de banco de dados ou parâmetros de upload inválidos fornecidos. + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Excluir entradas expiradas do relatório - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + Faça um clique nas entradas para alterar List of entry URLs @@ -7792,7 +9324,7 @@ Kernel: %3 %4 Entry has no Browser Integration settings - + A entrada não possui definições de integração com o navegador Denied URLs @@ -7808,11 +9340,11 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - + Aguarde enquanto as estatísticas estão sendo calculadas... No entries with a URL, or none has browser extension settings saved. - + Não existem entradas com a URL definida ou com as definições de integração com navegador salvas. Title @@ -7832,50 +9364,59 @@ Kernel: %3 %4 Delete Entry(s)… - Excluir entrada...Excluir entradas... + Excluir entrada...Excluir entradas...Excluir entradas... Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + + + + Only show entries that have a URL + Mostrar apenas entradas que tenham a URL + + + Only show entries that have been explicitly allowed or denied + Mostrar apenas entradas que foram explicitamente permitidas ou negadas + + + Show expired entries + Mostrar entradas expiradas + + + (Expired) + (Expirada) + + + Delete plugin data from Entry(s)… + Excluir dados de plugin da Entrada...Excluir dados de plugin(s) da(s) Entrada(s)...Excluir dados de plugin(s) da(s) Entrada(s)... + ReportsWidgetHealthcheck - Exclude expired entries from the report - Excluir entradas expiradas do relatório + Show expired entries + Mostrar entradas expiradas - Also show entries that have been excluded from reports - Exibir também entradas que foram excluídas dos relatórios + (Expired) + (Expirada) Hover over reason to show additional details. Double-click entries to edit. Passe o mouse sobre o motivo para mostrar detalhes adicionais. Clique duas vezes nas entradas para editar. - - Bad - Password quality - Ruim - Bad — password must be changed Ruim — a senha precisa ser mudada - - Poor - Password quality - Pobre - Poor — password should be changed Pobre — a senha precisa ser mudada - - Weak - Password quality - Fraco - Weak — consider changing the password Fraca — considere mudar a senha @@ -7918,12 +9459,20 @@ Kernel: %3 %4 Delete Entry(s)… - Excluir entrada...Excluir entradas... + Excluir entrada...Excluir entradas...Excluir entradas... Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Mostrar entradas que foram excluídas dos relatórios + ReportsWidgetHibp @@ -8013,12 +9562,83 @@ Kernel: %3 %4 Delete Entry(s)… - Excluir entrada...Excluir entradas... + Excluir entrada...Excluir entradas...Excluir entradas... Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Exportar + + + Import + Importar + + + List of entry URLs + Lista de URLs das entradas + + + Title + Título + + + Path + Caminho + + + Username + Nome de usuário + + + URLs + URLs + + + Edit Entry… + Editar entrada... + + + Delete Entry(s)… + Excluir entrada...Excluir entradas...Excluir entradas... + + + Relying Party + Parte confiável + + + Show expired entries + Mostrar entradas expiradas + + + (Expired) + (Expirada) + + + Export Confirmation + Confirmação da Exportação + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + O arquivo de chave de acesso ficará vulnerável a roubo e uso não autorizado caso não seja protegido. Tem certeza de que deseja prosseguir? + + + Please wait, list of entries with passkeys is being updated… + Aguarde, a lista das entradas das chaves de acesso está sendo atualizada... + + + No entries with passkeys. + Não há entradas com chaves de acesso. + ReportsWidgetStatistics @@ -8183,7 +9803,7 @@ Kernel: %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + O agente não é compatível com as chaves de segurança ou o fornecedor da chave de segurança não está disponível. No agent running, cannot remove identity. @@ -8193,6 +9813,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Nenhum agente em execução, não é possível listar identidades. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8259,6 +9887,10 @@ Kernel: %3 %4 Search Help Ajuda com a Busca + + Save Search + Salvar Busca + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8333,29 +9965,13 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Confirmar quando as senhas forem obtidas pelos clientes - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion Confirmar quando os clientes solicitam uma remoção - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching - + Peça o desbloqueio do banco de dados antes de pesquisar Exposed database groups: @@ -8377,6 +9993,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Salve as alterações atuais para ativar o plugin e ativar a edição desta seção. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Essa configuração não substitui a desativação dos avisos da lixeira </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Isso melhora a compatibilidade com determinados aplicativos que buscam a senha sem antes desbloquear o banco de dados.<p>No entanto, esta ativação também pode travar o cliente se o banco de dados não puder ser desbloqueado dentro de um determinado limite de tempo. (Geralmente 25s, mas pode haver um valor diferente definido nos aplicativos.)</p></body></html> + SettingsWidgetKeeShare @@ -8437,7 +10061,7 @@ Kernel: %3 %4 ShareExport Could not write export container. - + Não foi possível escrever no contêiner de exportação @@ -8485,8 +10109,12 @@ Kernel: %3 %4 TagModel - All - Tudo + Clear Search + Limpar Busca + + + All Entries + Todas as Entradas Expired @@ -8497,6 +10125,25 @@ Kernel: %3 %4 Senhas Fracas + + TagView + + Remove Search + Remover Busca + + + Remove Tag + Remover Etiqueta + + + Confirm Remove Tag + Confirmar Remoção da Etiqueta + + + Remove tag "%1" from all entries in this database? + Remover etiqueta "%1" de todas as entradas neste banco de dados? + + TotpDialog @@ -8509,7 +10156,7 @@ Kernel: %3 %4 Expires in <b>%n</b> second(s) - Expira em <b>%n</b> segundo(s)Expira em <b>%n</b> segundo(s) + Expira em <b>%n</b> segundo(s)Expira em <b>%n</b> segundo(s)Expira em <b>%n</b> segundo(s) @@ -8654,26 +10301,6 @@ Exemplo: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Começe a guardar suas senhas de maneira segura em um banco de dados do KeePassXC - - Create new database - Criar novo banco de dados - - - Open existing database - Abrir banco de dados existente - - - Import from KeePass 1 - Importar do KeePass 1 - - - Import from 1Password - Importar do 1Password - - - Import from CSV - Importar arquivo CSV - Recent databases Bancos de dados recentes @@ -8686,6 +10313,18 @@ Exemplo: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bem-vindo ao KeePassXC %1 + + Create Database + Criar Banco de Dados + + + Open Database + Abrir Banco de Dados + + + Import File + Importar Arquivo + WinUtils @@ -8702,50 +10341,19 @@ Exemplo: JBSWY3DPEHPK3PXP Não foi possível registrar o atalho global - - WindowsHello - - Failed to init KeePassXC crypto. - Falha ao iniciar a criptografia KeePassXC. - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - Falha ao obter a credencial do Windows Hello. - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - %1 Sem interface, slot %2 - General: Geral: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + Não foi possível localizar a interface para o dispositivo com o número de série %1. Introduza o seu dispositivo para continuar. YubiKeyEditWidget - - Refresh hardware tokens - Atualizar os tokens de hardware - - - Refresh - Atualizar - Hardware key slot selection Seleção de campo de chave de hardware @@ -8778,10 +10386,6 @@ Exemplo: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Pergunta de segurança definida, clique para alterar ou remover - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Se tiver uma <a href="https://www.yubico.com/">YubiKey</a> ou <a href="https://onlykey.io">Only Key</a>, pode utilizá-la para mais segurança.</p><p>A chave requer que uma das suas ranhuras seja programada como uma <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… Detectando chaves de hardware... @@ -8790,31 +10394,28 @@ Exemplo: JBSWY3DPEHPK3PXP No hardware keys detected Nenhuma chave física detectada - - - YubiKeyInterface - %1 Invalid slot specified - %2 - Slot inválido do %1 especificado - %2 + Refresh hardware keys + Atualizar chaves de hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Resposta-Desafio - Slot %3 - The YubiKey PCSC interface has not been initialized. A interface YubiKey PCSC não foi inicializada. - - Hardware key is currently in use. - A chave de hardware está atualmente em uso. - Could not find or access hardware key with serial number %1. Please present it to continue. - + Não foi possível localizar ou acessar a interface para o dispositivo com o número de série %1. Introduza o seu dispositivo para continuar. Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8826,7 +10427,22 @@ Exemplo: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 - + Houve uma falha ao tentar concluir a pergunta de segurança. O código de erro do PSCSC foi: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Slot %3, %4 + + + Press + USB Challenge-Response Key interaction request + Aperte + + + Passive + USB Challenge-Response Key no interaction required + Passivo @@ -8835,14 +10451,6 @@ Exemplo: JBSWY3DPEHPK3PXP Unknown Desconhecido - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Slot configurado - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Resposta-Desafio - Slot %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8857,10 +10465,6 @@ Exemplo: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. A interface YubiKey USB não foi inicializada. - - Hardware key is currently in use. - A chave de hardware está atualmente em uso. - Could not find hardware key with serial number %1. Please plug it in to continue. Não foi possível encontrar a chave de hardware com o número de série %1. Por favor, conecte-o para continuar. @@ -8877,5 +10481,15 @@ Exemplo: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Falha ao completar o desafio-resposta, o erro específico foi: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Slot %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Slot %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_pt_PT.ts b/share/translations/keepassxc_pt_PT.ts index a3177c723..f15877fe4 100644 --- a/share/translations/keepassxc_pt_PT.ts +++ b/share/translations/keepassxc_pt_PT.ts @@ -15,7 +15,7 @@ KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3. - KeePassXC é distribuído nos termos da GNU General Public License (GPL) versão 2 ou versão 3 (por opção). + KeePassXC é distribuído nos termos da GNU General Public License (GPL) versão 2 ou versão 3 (por opção) Project Maintainers: @@ -23,7 +23,7 @@ Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. - Um agradecimento especial da equipa KeePassXC a debfx por ter criado a aplicação KeePassX. + Um agradecimento especial da equipa KeePassXC a debfx por ter criado a aplicação KeePassX Contributors @@ -54,11 +54,11 @@ Non-existing/inaccessible executable path. Please double-check the client is legit. - O caminho do executável não existe ou não pode ser acedido. Deve verificar se a aplicação utilizada é legítima. + O caminho do executável não existente/acessível. Verifique se a aplicação utilizada é legítima. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">%1 </span>está a solicitar acessos a estas entradas:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>está a solicitar acesso a estas entradas:</p></body></html> Name @@ -80,6 +80,10 @@ Details Detalhes + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + A sua escolha será memorizada enquanto o cliente e o KeePassXC estiverem em execução + Remember Memorizar @@ -88,17 +92,13 @@ Allow Selected Permitir selecionados - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - A sua escolha será memorizada enquanto o cliente e o KeePassXC estiverem em execução. - Deny All && Future - + Recusar agora e futuramente Allow All && &Future - + Permitir agora e futuramente @@ -116,15 +116,19 @@ Use Pageant - Usar Pageant + Utilizar "Pageant" Use OpenSSH - Usar OpenSSH + Utilizar "OpenSSH" + + + Use both agents + Utilizar ambos os agentes SSH_AUTH_SOCK override - Substituição SSH_AUTH_SOCK + Sobreposição SSH_AUTH_SOCK SSH_AUTH_SOCK value @@ -148,11 +152,7 @@ SSH Agent connection is working! - Ligação ao agente SSH a funcionar! - - - Use both agents - Utilizar ambos os agentes + A ligação ao agente SSH está funcional! @@ -169,6 +169,10 @@ Security Segurança + + This setting cannot be enabled when minimize on unlock is enabled. + Esta definição não pode ser ativada se a opção "Minimizar janela após desbloquear a base de dados" estiver ativa. + Access error for config file %1 Erro de acesso ao ficheiro %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Tem que reiniciar a aplicação para aplicar o novo idioma. Reiniciar agora? - - Reset Settings? - Repor definições? - - - Are you sure you want to reset all general and security settings to default? - Tem a certeza de que deseja repor todas as definições para os valores padrão? - Select backup storage directory Selecione o diretório para o backup + + Confirm Reset + Confirmação de reposição + + + Are you sure you want to reset all settings to default? + Tem a certeza de que pretende restaurar as definições padrão? + + + Import KeePassXC Settings + Importar definições KeePassXC + + + Failed to import settings from %1, not a valid settings file. + %1 não é um ficheiro válido e não foi possível importar as definições. + + + Export KeePassXC Settings + Exportar definições KeePassXC + + + Small + Pequeno + + + Normal + Normal + + + Medium + Médio + + + Large + Grande + + + Custom + Personalizado + ApplicationSettingsWidgetGeneral @@ -242,7 +278,7 @@ Automatically launch KeePassXC at system startup - Iniciar KeePassXC ao arrancar o sistema + Iniciar KeePassXC no arranque do sistema operativo Minimize window at application startup @@ -256,9 +292,13 @@ Remember previously used databases Memorizar últimas bases de dados utilizadas + + recent files + ficheiros recentes + Load previously open databases on startup - Ao iniciar, carregar as últimas base de dados utilizadas + Ao iniciar, carregar últimas bases de dados utilizadas Remember database key files and security dongles @@ -272,25 +312,6 @@ Include beta releases when checking for updates Incluir versões beta ao procurar por atualizações - - On database unlock, show entries that - Ao desbloquear a base de dados, mostrar entradas que - - - have expired - On database unlock, show entries that... - caducaram - - - days - On database unlock, show entries that will expire within %1 days - dias - - - will expire within - On database unlock, show entries that... - irão caducar dentro de - File Management Gestão de ficheiros @@ -315,25 +336,13 @@ Backup database file before saving Criar backup da base de dados antes de guardar - - Backup destination - Destino do backup - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Especifica a localização para o backup da base de dados. As ocorrências de "{DB_FILENAME}" serão substituidas pelo nome de ficheiro da base de dados exportada mas sem extensão. {TIME:<format>} será substituido pela hora do backup. Consulte https://doc.qt.io/qt-5/qdatetime.html#toString. <format> Os valores padrão a utilizar serão "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.antiga.kdbx - - Choose... - Escolher... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - Utilizar um método de guardar alternativo (pode resolver problemas com Dropbox, Google Drive, GVFS, etc.) + Utilizar um método de guardar alternativo (pode resolver problemas com Dropbox, Google Drive, GVFS, etc) Temporary file moved into place @@ -369,7 +378,7 @@ Favicon download timeout: - Tempo limite para descarregar o 'favicon': + Tempo limite para descarregar os ícones: Website icon download timeout in seconds @@ -408,6 +417,10 @@ Toolbar button style: Estilo dos botões da barra de ferramentas: + + Show passwords in color + Mostrar palavras-passe a cor + Use monospaced font for notes Utilizar letra mono-espaçada para as notas @@ -418,23 +431,23 @@ Show a system tray icon - Mostrar ícone na bandeja do sistema + Mostrar ícone na área de notificação do sistema Tray icon type - Tipo de ícone na bandeja + Tipo de ícone na área de notificação Tray icon type: - Ícone na bandeja: + Ícone na área de notificação: Hide window to system tray when minimized - Ao minimizar, ocultar janela na bandeja do sistema + Ao minimizar, ocultar janela na área de notificação do sistema Reset settings to default… - Repor definições padrão... + Repor definições padrão… Auto-Type @@ -493,6 +506,71 @@ Remember last typed entry for: Memorizar última entrada digitada durante: + + On database unlock, show entries that will expire within + Ao desbloquear a base de dados, mostrar entradas que caduquem em + + + On database unlock, show entries that will expire within + Ao desbloquear a base de dados, mostrar entradas que caduquem em + + + days + number of days warning for password expiration + dias + + + Destination format: + Formato de destino: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> é substituido pelo nome de ficheiro da base de dados guardada, mas sem extensão</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> é substituido pelo formato de data/hora especificado (padrão: dd_MM_yyyy_hh-mm-ss)</p><p>Consulte o guia de utilizador para mais informações</p></body></html> + + + Choose folder... + Escolha a pasta... + + + Show confirmation before moving entries to recycle bin + Mostrar diálogo de confirmação antes de mover entradas para a reciclagem + + + Copy data on double clicking field in entry view + Copiar dados ao clicar duas vezes no campo + + + Show toolbar + Mostrar barra de ferramentas + + + Show the menu bar by pressing the Alt key + Mostrar barra de menu ao premir a tecla ALT + + + Show menubar + Mostrar barra de menu + + + Import settings… + Importar definições... + + + Export settings… + Exportar definições... + + + Open browser on double clicking URL field in entry view + Abrir navegador ao clicar duas vezes no campo URL + + + Font size: + Tamanho do tipo de letra: + + + Font size selection + Seleção do tamanho do tipo de letra + ApplicationSettingsWidgetSecurity @@ -546,34 +624,18 @@ Lock databases after minimizing the window Bloquear base de dados ao minimizar a janela - - Require password repeat when it is visible - Pedir repetição de palavra-passe mesmo se visível - Hide passwords when editing them Ocultar palavras-passe durante a edição Use placeholder for empty password fields - Utilizar marcadores de posição para campos vazios + Utilizar marcadores de posição para campos vazios de palavra-passe Hide passwords in the entry preview panel Ocultar palavras-passe no painel de pré-visualização de entradas - - Hide entry notes by default - Por definição, ocultar notas da entrada - - - Move entries to recycle bin without confirmation - Mover entradas para a reciclagem sem confirmação - - - Enable double click to copy the username/password entry columns - Ativar duplo clique para copiar a entrada nome de utilizador/palavra-passe - Privacy Privacidade @@ -582,12 +644,28 @@ Use DuckDuckGo service to download website icons Utilizar DuckDuckGo para descarregar os ícones dos sites + + Hide TOTP in the entry preview panel + Ocultar TOTP no painel de pré-visualização + + + Lock databases when switching user + Bloquear base de dados ao trocar de utilizador + + + Lock Options + Opções de bloqueio + + + Hide notes in the entry preview panel + Ocultar notas no painel de pré-visualização + AutoType The requested Auto-Type sequence cannot be used due to an error: - A sequência de escrita automática não pode ser utilizada por causa do seguinte erro: + A sequência de escrita automática não pode ser utilizada devido ao seguinte erro: Auto-Type Error @@ -599,15 +677,15 @@ KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - KeePassXC necessita da permissão 'Accessibility' para poder executar a escrita automática. Se já concedeu esta permissão, pode ser necessário reiniciar a aplicação. + KeePassXC necessita da permissão 'Acessibilidade' para executar a escrita automática. Se já concedeu esta permissão, pode ser necessário reiniciar a aplicação. KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC necessita das permissões 'Accessibility' e 'Screen Recorder' para poder executar a escrita automática. A permissão 'Screen recording' é necessária para associar o titulo da janela às entradas. Se já concedeu estas permissões, pode ser necessário reiniciar a aplicação. + KeePassXC necessita das permissões 'Acessibilidade' e 'Gravador de ecrã' para executar a escrita automática. A permissão 'Gravador de ecrã' é necessária para associar o titulo da janela às entradas. Se já concedeu estas permissões, pode ser necessário reiniciar a aplicação. Invalid entry provided - Disponibilizada uma entrada inválida + Indicou uma entrada inválida Bracket imbalance detected, found extra { or } @@ -626,18 +704,8 @@ Atraso muito longo detetado, o máximo é %1: %2 - Invalid conversion type: %1 - Tipo de conversão inválido: %1 - - - Invalid conversion syntax: %1 - Sintaxe de conversão inválida: %1 - - - Invalid regular expression syntax %1 -%2 - Sintaxe de expressão regular inválida %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + A entrada não tem o atributo para PICKCHARS: %1 Invalid placeholder: %1 @@ -684,22 +752,22 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - A tentar enviar keysym inválida. - Sequence aborted: Caps Lock is on Sequência abortada: Caps Lock está ativo Sequence aborted: Modifier keys held by user - Sequência abortada. Tecla modificadora premida pelo utilizador. + Sequência abortada: tecla modificadora premida pelo utilizador Unable to get valid keycode for key: Não foi possível obter um código válido para a chave: + + Trying to send invalid keyboard symbol. + A tentar enviar um símbolo de teclado inválido. + AutoTypeSelectDialog @@ -719,7 +787,7 @@ Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> <p>Pode utilizar a pesquisa avançada para localizar as entradas nas base de dados abertas. Os atalhos abaixo podem ser úteis:<br/> -Ctrl+F - Alternar pesquisa nas bases de dados<br/> +Ctrl+F - Comutar pesquisa nas bases de dados<br/> Ctrl+1 - Escrever nome de utilizador<br/> Ctrl+2 - Escrever palavra-passe<br/> Ctrl+3 - Escrever TOTP<br/> @@ -731,11 +799,11 @@ Ctrl+4 - Utilizar teclado virtual (apenas Windows)</p> Search… - Pesquisar... + Pesquisar… Type Sequence - Escrever sequência + Sequência Cancel @@ -804,13 +872,13 @@ Ctrl+4 - Utilizar teclado virtual (apenas Windows)</p> Disable for this site Desativar para este site + + Undo + Reverter + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser - Guardar entrada - Ok Ok @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Existem várias bases de dados abertas. Selecione a base de dados correta para guardar as credenciais. + + KeePassXC - Select Database + KeePassXC - Selecionar base de dados + + + + BrowserPasskeysConfirmationDialog + + Cancel + Cancelar + + + Update + Atualizar + + + Authenticate + Autenticar + + + Register new + Registar nova + + + Register + Registar + + + Timeout in <b>%n</b> seconds... + Caduca em <b>%n</b> segundo...Caduca em <b>%n</b> segundos...Caduca em <b>%n</b> segundos... + + + Relying Party: %1 + Entidades fiáveis: %1 + + + Username: %1 + Nome de utilizador: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Credenciais da chave-mestra + + + Add to existing entry + Adicionar à entrada existente + + + Existing passkey found. +Do you want to register a new passkey for: + Chave-mestra existente encontrada. +Pretende registar uma nova chave-mestra para: + + + Select the existing passkey and press Update to replace it. + Selecione a chave-mestra existente e prima "Atualizar" para a substituir. + + + Authenticate passkey credentials for: + Autenticar credenciais de chave-mestra para: + + + Do you want to register a passkey for: + Pretende registar uma chave-mestra para: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Criar um novo grupo - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? Deseja criar este grupo? - - KeePassXC: New key association request - KeePassXC: Pedido de associação da nova chave - You have received an association request for the following database: %1 @@ -860,81 +985,77 @@ chrome-laptop Save and allow access Guardar e permitir acesso - - KeePassXC: Overwrite existing key? - KeePassXC: Substituir chave existente? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Já existe uma chave de cifra partilhada com o nome "%1". Deseja substituir a chave existente? - - KeePassXC: Update Entry - KeePassXC: Atualizar entrada - Do you want to update the information in %1 - %2? Deseja atualizar as informações em %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Eliminar entrada - A request for deleting entry "%1" has been received. Do you want to delete the entry? - Recebido um pedido para a eliminação da entrada "%1". + Recebido um pedido para eliminar a entrada "%1". Deseja eliminar a entrada? - Converting attributes to custom data… - A converter atributos para dados personalizados... + %1 (Passkey) + %1 (chave-mestra) - Abort - Abortar + KeePassXC - Create a new group + KeePassXC - Criar um novo grupo - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Atributos KeePassHTTP convertidos + Disable + Desativar - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Convertidos com sucesso s atributos para %1 entrada(s). -%2 chaves movidas para dados personalizados. - - - Successfully moved %n keys to custom data. - %n chave movida para dados personalizados.%n chaves movidas para dados personalizados. + KeePassXC - Overwrite existing key? + KeePassXC - Substituir chave existente? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Não existem entradas com atributos KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - Atualizar entrada - The active database does not contain an entry with KeePassHTTP attributes. - A base de dados ativa não tem entradas com atributos KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Eliminar entrada - Don't show this warning again - Não mostrar novamente + KeePassXC - New key association request + KeePassXC - Pedido de associação da nova chave - KeePassXC: Legacy browser integration settings detected - KeePassXC: Detetadas definições de integração legada com o navegador + Passkey + Chave-mestra - 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? - Tem que mover as definições KeePassXC-Browser para as definições da base de dados. -Este procedimento é necessário para manter as ligações existentes. -Gostaria de migrar agora as definições? + KeePassXC - Passkey credentials + KeePassXC - Credenciais da chave-mestra + + + Register a new passkey to this entry: + Registar uma nova chave-mestra para esta entrada: + + + KeePassXC - Update passkey + KeePassXC - Atualizar chave-mestra + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + A entrada já tem uma chave-mestra. +Pretende substituir a chave-mestra em %1 - %2? + + + Register + Registar @@ -955,10 +1076,6 @@ Gostaria de migrar agora as definições? General Geral - - Browsers installed as snaps are currently not supported. - Ainda não existe suporte a navegadores no formato Snap. - Enable integration for these browsers: Ativar integração para estes navegadores: @@ -1002,11 +1119,11 @@ Gostaria de migrar agora as definições? Only entries with the same scheme (http://, https://, …) are returned. - Devolver apenas as entradas com o mesmo esquema (http://, https://, ...) + Devolver apenas as entradas com o mesmo esquema (http://, https://, …) Match URL scheme (e.g., https://example.com) - Corresponder ao esquema URL (exemplo: https://example.com) + Corresponder ao esquema URL (exemplo: https://exemplo.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -1026,7 +1143,7 @@ Gostaria de migrar agora as definições? All databases connected to the extension will return matching credentials. - Todas as bases de dados conectadas à extensão devolverão as credenciais coincidentes. + Todas as bases de dados conectadas à extensão devolverão as credenciais coincidentes Search in all opened databases for matching credentials @@ -1054,7 +1171,7 @@ Gostaria de migrar agora as definições? Automatically creating or updating string fields is not supported. - A criação ou atualização dos campos de cadeias não é suportada. + A criação ou atualização dos campos de cadeias não é suportada Return advanced string fields which start with "KPH: " @@ -1062,15 +1179,15 @@ Gostaria de migrar agora as definições? Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Não mostrar janela que sugere a migração das definições KeePassHTTP legadas. + Não mostrar janela que sugere a migração das definições KeePassHTTP legadas Do not prompt for KeePassHTTP settings migration. - Não perguntar para migrar as definições KeePassHTTP. + Não perguntar para migrar as definições KeePassHTTP Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - Ao iniciar, atualizar automaticamente o caminho do KeePassXC ou do binário keepassxc-proxy para os 'sripts' nativos de mensagens. + Ao iniciar, atualizar automaticamente o caminho do KeePassXC ou do binário keepassxc-proxy para os 'sripts' nativos de mensagens Update native messaging manifest files at startup @@ -1078,7 +1195,7 @@ Gostaria de migrar agora as definições? Use a custom proxy location if you installed a proxy manually. - Utilize um proxy personalizado caso o tenha instalado manualmente. + Utilize um proxy personalizado caso o tenha instalado manualmente Use a custom proxy location: @@ -1096,7 +1213,7 @@ Gostaria de migrar agora as definições? Browse… Button for opening file dialog - Procurar... + Procurar… Use a custom browser configuration location: @@ -1130,26 +1247,6 @@ Gostaria de migrar agora as definições? Custom extension ID ID da extensão personalizada - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Devido a 'Snap sandboxing', tem que executar um script para ativar a integração com o navegador.<br />Pode obter o script em %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Necessita de KeePassXC-Browser para que a integração funcione corretamente.<br /> Disponível para %1, %2 e %3. %4 - - - Please see special instructions for browser extension use below - Por favor consulte abaixo as instruções para a utilização da extensão - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Erro:</b> não foi possível encontrar a localização do proxy!<br/> A integração com o navegador não funcionará sem um proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Aviso</b>: as opções seguintes podem ser perigosas! - Executable Files Ficheiros executáveis @@ -1166,6 +1263,46 @@ Gostaria de migrar agora as definições? Select native messaging host folder location Selecione a localização da pasta de mensagens nativas + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Permitir que keepassxc-proxy liste todas as entradas com o seu título, URL e UUID nas bases de dados conectadas + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Permitir acesso limitado a todas as entradas das bases de dados conectadas (ignorar restrições de acesso aos sites) + + + <b>Warning:</b> Only adjust these settings if necessary. + Aviso:</b> apenas deve ajustar estas definições se for necessário + + + The custom proxy location does not exist. + A localização do proxy não existe + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Erro:</b> a localização do proxy personalizado não existe. Corrija a localização nas definições avançadas. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Erro:</b> o executáveldo proxy instalado não existe na localização esperada: %1<br/>Defina a localização do proxy nas definições avançadas ou, em alternativa, reinstale a aplicação. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Permite utilizar http://localhost inseguro com chaves-mestras para efeitos de teste. + + + Allow using localhost with passkeys + Permitir utilização de "localhost" com chaves-mestras + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Requer KeePassXC-Browser para que a integração com o navegador de Internet funcione. <br />Descarregue-o para %1 e %2 e %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Com exceção do Firefox Snap, quaisquer navegadores instalados na forma de Snap ou Flatpak não são suportados. + CloneDialog @@ -1188,14 +1325,6 @@ Gostaria de migrar agora as definições? CsvImportWidget - - Import CSV fields - Importar campos do CSV - - - filename - nome do ficheiro - size, rows, columns tamanho, linhas, colunas @@ -1304,51 +1433,44 @@ Gostaria de migrar agora as definições? Column %1 Coluna %1 - - Imported from CSV file - Importada de ficheiro CSV - - - Original data: - Dados originais: - - - Error(s) detected in CSV file! - Detetado(s) erro(s) no ficheiro CSV! - [%n more message(s) skipped] - [%n mensagem ignorada][%n mensagens ignoradas] + [%n mensagem ignorada][%n mensagens ignoradas][%n mensagens ignoradas] - Error - Erro + Failed to parse CSV file: %1 + Falha ao processar o ficheiro CSV: %1 - CSV import: writer has errors: -%1 - Importação CSV com erros: -%1 + Imported from CSV file: %1 + Importado do ficheiro CSV: %1 + + + No Title Selected + Nenhum título selecionado + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Não selecionou um título de coluna e, assim, será difícil distinguir as entradas. +Tem a certeza de que pretende continuar com a importação? + + + Tags + Etiquetas CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n bytes - %n row(s) - %n linha%n linhas + CSV row count + %n linha%n linhas%n linhas %n column(s) - %n coluna%n colunas + CSV column count + %n coluna%n colunas%n colunas @@ -1360,11 +1482,11 @@ Gostaria de migrar agora as definições? File %1 does not exist. - Ficheiro %1 não existe. + Ficheiro %1 não existe Unable to open file %1. - Não foi possível abrir o ficheiro %1. + Não foi possível abrir o ficheiro %1 Error while reading the database: %1 @@ -1372,11 +1494,11 @@ Gostaria de migrar agora as definições? Could not save, database does not point to a valid file. - Não foi possível guardar porque a base de dados não indica um ficheiro válido. + Não foi possível guardar porque a base de dados não indica um ficheiro válido Database save is already in progress. - A base de dados já está a ser guardada. + A base de dados já está a ser guardada Could not save, database has not been initialized! @@ -1384,13 +1506,13 @@ Gostaria de migrar agora as definições? Database file has unmerged changes. - A base de dados tem alterações não guardadas. + A base de dados tem alterações não guardadas %1 Backup database located at %2 %1 -Backup localizado em %2 +Backup localizada em %2 Key not transformed. This is a bug, please report it to the developers. @@ -1400,6 +1522,14 @@ Backup localizado em %2 Recycle Bin Reciclagem + + Database file read error. + Erro de leitura do ficheiro da base de dados. + + + No file path was provided. + Não indicou o caminho do ficheiro. + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup localizado em %2 Password field Campo Palavra-passe - - Enter Additional Credentials (if any): - Introduza as credenciais adicionais (se existentes): - - - Key File: - Ficheiro-chave: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Para além da palavra-passe, pode utilizar um ficheiro-chave para aumentar a segurança da sua base de dados. Este ficheiro pode ser gerado nas definições de segurança da sua base de dados..</p><p><strong>Não</strong> pode utilizar ficheiros *.kdbx como ficheiro-chave!<br>Se não quiser utilizar um ficheiro-chave, deixe este campo em branco.</p><p>Clique aqui para mais informação.</p> - - - Key file help - Ajuda para ficheiros-chave - Hardware key slot selection Seleção de 'slot' para a chave de hardware - - Hardware Key: - Chave de hardware: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Pode utilizar um dispositivo de segurança tais como <strong>YubiKey</strong> ou <strong>OnlyKey</strong> com ranhuras configuradas para HMAC-SHA1.</p> -<p>Clique aqui para mais informações.</p> - - - Hardware key help - Ajuda para chaves de hardware - Key file to unlock the database Ficheiro-chave para desbloquear a base de dados @@ -1466,15 +1566,7 @@ Backup localizado em %2 Browse… - Procurar... - - - Refresh hardware tokens - Recarregar 'tokens' de hardware - - - Refresh - Recarregar + Procurar… Unlock Database @@ -1490,7 +1582,7 @@ Backup localizado em %2 Please present or touch your YubiKey to continue… - Introduza ou toque na sua YubiKey para continuar... + Introduza ou toque na sua YubiKey para continuar… Database Version Mismatch @@ -1518,7 +1610,7 @@ Deve atualizar KeePassXC para a versão mais recente. Database unlock canceled. - Cancelou o desbloqueio da base de dados. + Cancelou o desbloqueio da base de dados Unlock failed and no password given @@ -1538,14 +1630,6 @@ Para impedir que este erro surja novamente, deve aceder a "Definições da Retry with empty password Tentar com palavra-passe vazia - - Failed to authenticate with Windows Hello - Não foi possível autenticar com Windows Hello - - - Failed to authenticate with Touch ID - Não foi possível autenticar com Touch ID - Failed to open key file: %1 Não foi possível abrir o ficheiro-chave: %1 @@ -1579,22 +1663,68 @@ Para impedir que este erro surja novamente, deve aceder a "Definições da Não pode utilizar uma base de dados como ficheiro-chave - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Não pode utilizar o ficheiro da sua base de dados como ficheiro-chave. -Se não quiser utilizar um ficheiro-chave, deixe este campo em branco. + authenticate to access the database + autentique-se para aceder à base de dados - Detecting hardware keys… - A detetar chaves de hardware... + Failed to authenticate with Quick Unlock: %1 + Não foi possível autenticar com desbloqueio rápido: %1 - No hardware keys detected - Não foram detetadas chaves de hardware + Select Key File: + Ficheiro-chave selecionado: - Select hardware key… - Selecione a chave de hardware... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Além de uma palavra-passe, pode utilizar um ficheiro secreto para melhorar a segurança da sua base de dados. Este ficheiro pode ser gerado nas definições de segurança da sua base de dados.</p><p>Este <strong>não</strong> é o seu ficheiro de base de dados *.kdbx!</p> + + + Use hardware key [Serial: %1] + Utilizar chave de hardware [Nº de série: %1] + + + Use hardware key + Utilizar chave de hardware + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + O seu ficheiro de base de dados NÃO é um ficheiro-chave! +Se não tiver um ficheiro-chave ou não souber o que é, não tem de selecionar um. + + + KeePassXC database file selected + Ficheiro de base de dados KeePassXC selecionado + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + O ficheiro que selecionou parece ser um ficheiro de base de dados. +Um ficheiro de base de dados NÃO é um ficheiro-chave! + +Tem a certeza de que pretende continuar com este ficheiro? + + + No hardware keys found. + Não foram encontradas chaves de hardware. + + + Refresh Hardware Keys + Recarregar chaves de hardware + + + Click to add a key file. + Clique para adicionar um ficheiro-chave. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Eu tenho um ficheiro-chave</a> + + + Hardware keys found, but no slots are configured. + A chave física foi encontrada mas não está configurada. @@ -1606,10 +1736,6 @@ Se não quiser utilizar um ficheiro-chave, deixe este campo em branco. DatabaseSettingsDialog - - Advanced Settings - Definições avançadas - General Geral @@ -1634,6 +1760,22 @@ Se não quiser utilizar um ficheiro-chave, deixe este campo em branco.Maintenance Manutenção + + KeeShare + KeeShare + + + Secret Service Integration + Integração 'Secret Service' + + + Remote Sync + Sincronização remota + + + Database Settings: %1 + Definições da base de dados: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ Se não quiser utilizar um ficheiro-chave, deixe este campo em branco.KeePassXC-Browser settings Definições KeePassXC-Browser - - Convert KeePassHTTP data - Converter dados KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Converter atributos legados KeePassHTTP para dados compatíveis com KeePassXC-Browser - - - Refresh database root group ID - Recarregar ID do grupo raiz da base de dados - Disconnect all browsers Desconectar de todos os navegadores @@ -1661,13 +1791,17 @@ Se não quiser utilizar um ficheiro-chave, deixe este campo em branco.Forget all site-specific settings on entries Esquecer definições específicas dos sites (nas entradas) + + Refresh database root group ID + Recarregar ID do grupo raiz da base de dados + Stored keys Chaves guardadas Stored browser keys - Chaves armazenadas + Chaves do navegador guardadas Remove selected key @@ -1679,12 +1813,12 @@ Se não quiser utilizar um ficheiro-chave, deixe este campo em branco. Delete the selected key? - Apagar chave selecionada? + Eliminar chave selecionada? Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Tem a certeza de que deseja apagar a chave selecionada? + Tem a certeza de que deseja eliminar a chave selecionada? Esta ação pode impedir a ligação ao suplemento. @@ -1701,7 +1835,7 @@ Esta ação pode impedir a ligação ao suplemento. Enable Browser Integration to access these settings. - Ative a integração com o navegador para aceder a estas definições. + Ative a integração com o navegador para aceder a estas definições Do you really want to disconnect all browsers? @@ -1709,21 +1843,13 @@ This may prevent connection to the browser plugin. Tem a certeza de que deseja desconectar todos os navegadores? Esta ação pode interferir com a ligação ao suplemento. - - KeePassXC: No keys found - KeePassXC: Nenhuma chave encontrada - No shared encryption keys found in KeePassXC settings. - Não foram encontradas chaves de cifra nas definições do KeePassXC. - - - KeePassXC: Removed keys from database - KeePassXC: Chaves removidas da base de dados + Não foram encontradas chaves de cifra nas definições do KeePassXC Successfully removed %n encryption key(s) from KeePassXC settings. - %n chave de cifra removida das definições do KeePassXC.%n chaves de cifra removidas das definições do KeePassXC. + %n chave de cifra removida das definições do KeePassXC%n chaves de cifra removidas das definições do KeePassXC%n chaves de cifra removidas das definições do KeePassXC Do you really want forget all site-specific settings on every entry? @@ -1733,37 +1859,19 @@ Serão removidas todas as permissões para aceder às entradas. Removing stored permissions… - A remover permissões guardadas... + A remover permissões guardadas… Abort Abortar - - KeePassXC: Removed permissions - KeePassXC: Permissões removidas - Successfully removed permissions from %n entry(s). - Removidas com sucesso as permissões de %n entrada.Removidas com sucesso as permissões de %n entradas. - - - KeePassXC: No entry with permissions found! - KeePassXC: Não existem entradas com permissões! + Removidas com sucesso as permissões de %n entradaRemovidas com sucesso as permissões de %n entradasRemovidas com sucesso as permissões de %n entradas The active database does not contain an entry with permissions. - A base de dados ativa não contém qualquer entrada com permissões. - - - Move KeePassHTTP attributes to custom data - Mover atributos KeePassHTTP para dados personalizados - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Tem a certeza de que deseja converter os dados legados para a versão mais recente? -Esta atualização é necessária para manter a compatibilidade com o suplemento. + A base de dados ativa não contém qualquer entrada com permissões Refresh database ID @@ -1775,12 +1883,32 @@ This is only necessary if your database is a copy of another and the browser ext Tem a certeza de que deseja recarregar a ID da base de dados? Esta ação apenas será necessária se a sua base de dados for uma cópia de outra e não for possível estabelecer ligação ao navegador. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Converter atributos legados KeePassHTTP para dados compatíveis com KeePassXC-Browser + + + No keys found + Não existem chaves + + + Removed keys from database + Chaves removidas da base de dados + + + Removed permissions + Permissões removidas + + + No entry with permissions found! + Encontrada nova entrada com permissões! + DatabaseSettingsWidgetDatabaseKey Add additional protection… - Adicionar proteção extra... + Adicionar proteção extra… No password set @@ -1812,7 +1940,19 @@ Tem a certeza de que deseja continuar? Failed to change database credentials - Não foi possível alterar as credenciais + Falha ao alterar as credenciais da base de dados + + + Weak password + Palavra-passe fraca + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Esta palavra-passe é insegura. Para proteger os seus segredos, deve utilizar uma palavra-passe mais segura. + + + The provided password does not meet the minimum quality requirement. + A palavra-passe indicada não cumpre os requisitos mínimos de qualidade. @@ -1821,21 +1961,13 @@ Tem a certeza de que deseja continuar? Decryption Time: Tempo para decifrar: - - Change existing decryption time - Alterar tempo para decifrar - - - Change - Alterar - Decryption time in seconds Tempo para decifrar (segundos) Higher values offer more protection, but opening the database will take longer. - Valores mais altos oferecem mais proteção mas também pode demorar mais tempo para abrir a base de dados. + Valores mais altos oferecem mais proteção mas a base de dados demorará mais tempo a abrir Database format: @@ -1847,11 +1979,11 @@ Tem a certeza de que deseja continuar? Format cannot be changed: Your database uses KDBX 4 features - O formato não pode ser alterado. A base de dados utiliza recursos KDBX 4. + O formato não pode ser alterado: a base de dados utiliza recursos KDBX 4. Unless you need to open your database with other programs, always use the latest format. - A menos que necessite de abrir a base de dados em outras aplicações, deve utilizar sempre o formato mais recente. + A menos que necessite de abrir a base de dados em outras aplicações, deve utilizar sempre o formato mais recente Encryption Algorithm: @@ -1909,11 +2041,6 @@ Tem a certeza de que deseja continuar? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - inalterado - Number of rounds too high Key transformation rounds @@ -1959,12 +2086,24 @@ Se mantiver este número, a sua base de dados pode ser desbloqueada muito facilm MiB Abbreviation for Mebibytes (KDF settings) - MiB MiB + MiB MiB MiB thread(s) Threads for parallel execution (KDF settings) - processo processos + processo processos processos + + + Encryption Settings: + Definições de cifra: + + + Basic + Básica + + + Advanced + Avançado @@ -1983,14 +2122,14 @@ Se mantiver este número, a sua base de dados pode ser desbloqueada muito facilm Enable Secret Service to access these settings. - Ative 'Secret Service' para aceder a estas definições. + Ative 'Secret Service' para aceder a estas definições DatabaseSettingsWidgetGeneral Database Metadata - Meta-dados da base de dados + Metadados da base de dados Database name: @@ -2024,18 +2163,10 @@ Se mantiver este número, a sua base de dados pode ser desbloqueada muito facilm Maximum number of history items per entry Número máximo de itens de histórico por entrada - - Max. history items: - Número máximo de itens no histórico: - Maximum size of history per entry Tamanho de histórico por entrada - - Max. history size: - Tamanho máximo para o histórico: - MiB MiB @@ -2066,6 +2197,108 @@ Esta ação é irreversível. (old) (antiga) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Ao guardar esta definição ou editar uma entrada, +os itens mais antigos do histórico de uma entrada +serão removidos e apenas o número máximo +especificado das entradas permanecem. + + + Limit the amount of history items per entry to: + Limitar número de itens no histórico, por entrada, a: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Ao guardar esta definição ou editar uma entrada, +os itens mais antigos do histórico de uma entrada +serão removidos de modo a que os itens de histórico +sejam adicionados, no máximo, até ao valor especificado. + + + Limit the total size of history items per entry to: + Limitar tamanho total dos itens no histórico, por entrada, a: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Mover entradas para um grupo de reciclagem +em vez de os remover da base de dados. +As entradas eliminadas da reciclagem serão +removidas da base de dados. + + + Autosave delay since last change + Atraso para gravação automática após a última alteração + + + Autosave delay + Atraso para gravação automática + + + Autosave delay since last change in minutes + Atraso para gravação automática após a última alteração (minutos) + + + min + min + + + Autosave delay since last change checkbox + Atraso para gravação automática após a última alteração da caixa de seleção + + + Public Database Metadata + Metadados públicos da base de dados + + + Warning: the following settings are not encrypted. + Aviso: as definições seguintes não serão cifradas. + + + Display name: + Nome mostrado: + + + Publically visible display name used on the unlock dialog + Nome mostrado no diálogo de desbloqueio + + + Database public display name + Nome público da base de dados: + + + Display color: + Cor mostrada: + + + Publically visible color used on the unlock dialog + Cor exibida no diálogo de desbloqueio + + + Database public display color chooser + Seletor de cores para a base de dados + + + Clear + Limpar + + + Display icon: + Ícone mostrado: + + + Select Database Icon + Selecione o ícone da base de dados + DatabaseSettingsWidgetKeeShare @@ -2107,11 +2340,11 @@ Esta ação é irreversível. Delete selected icon(s) - Eliminar ícones selecionados + Remover ícones selecionados Delete all custom icons not in use by any entry or group - Eliminar todos os ícones personalizados que não estejam a ser usados + Remover todos os ícones personalizados que não estejam a ser usados Purge unused icons @@ -2131,7 +2364,7 @@ Esta ação é irreversível. All custom icons are in use by at least one entry or group. - Todos os ícones personalizados estão a ser utilizados por uma entrada ou grupo. + Todos os ícones personalizados estão a ser utilizados por uma entrada ou grupo Purged Unused Icons @@ -2139,7 +2372,7 @@ Esta ação é irreversível. Purged %n icon(s) from the database. - %n ícone removido da base de dados.%n ícones removidos da base de dados. + %n ícone removido da base de dados%n ícones removidos da base de dados%n ícones removidos da base de dados @@ -2161,6 +2394,140 @@ Esta ação é irreversível. Campo Descrição da base de dados + + DatabaseSettingsWidgetRemote + + Sync Commands + Comandos de sincronização + + + Remove + Remover + + + Command Settings + Definições do comando + + + Name + Nome + + + Save + Guardar + + + Download + Descarregar + + + Command: + Comando: + + + Download command field + Campo de comando de descargas + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + por exemplo: "sftp user@hostname" ou "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Entrada: + + + Download input field + Campo de entrada para descargas + + + Upload + Carregar + + + Upload command field + Campo de comando para envio + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + por exemplo: "sftp user@hostname" ou "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Campo de introdução de carregamento + + + Name cannot be empty. + O nome não pode estar vazio. + + + Test + Testar + + + Download command cannot be empty. + O comando de descarga não pode estar vazio. + + + Download failed with error: %1 + A descarga falhou com o erro: %1 + + + Download finished, but file %1 could not be found. + A descarga foi concluída, mas não foi possível encontrar o ficheiro %1. + + + Download successful. + Descarga efetuada + + + Save Remote Settings + Guardar definições remotas + + + You have unsaved changes. Do you want to save them? + Tem alterações por guardar. Pretende guardá-las? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + por exemplo: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} é utilizado como marcador de posição para guardar a base de dados numa localização temporária +O comando tem que ser bem sucedido. No caso do 'sftp', o último comando 'exit' tem de ser enviado + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + por exemplo: +coloque {TEMP_DATABASE} DatabaseOnRemote.kdbx +sair +--- +{TEMP_DATABASE} é usado como espaço reservado para armazenar o banco de dados em um local temporário +O comando tem que sair. No caso de `sftp` como último comando `exit` deve ser enviado + + + Timeout: + Tempo limite: + + + seconds + segundos + + DatabaseTabWidget @@ -2193,37 +2560,33 @@ Existe aqui um erro que deve ser reportado aos programadores. CSV file Ficheiro CSV - - Select CSV file - Selecionar ficheiro CSV - Merge database Combinar base de dados - - KeePass 1 database - Base de dados do KeePass 1 - - - Open KeePass 1 database - Abrir base de dados do KeePass 1 - - - Open OPVault - Open OPVault - Export database to CSV file Exportar base de dados para ficheiro CSV Writing the CSV file failed. - Não foi possível escrever no ficheiro CSV. + Não foi possível escrever no ficheiro CSV Writing the HTML file failed. - Não foi possível escrever no ficheiro HTML. + Não foi possível escrever no ficheiro HTML + + + Export database to XML file + Exportar base de dados para ficheiro XML + + + XML file + Ficheiro XML + + + Writing the XML file failed + Não foi possível escrever o ficheiro XML Export Confirmation @@ -2233,34 +2596,30 @@ Existe aqui um erro que deve ser reportado aos programadores. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Está prestes a exportar a sua base de dados para um ficheiro não cifrado. As suas palavras-passe e informações pessoais ficarão vulneráveis. Tem a certeza de que deseja continuar? - - New Database - Nova base de dados - - - %1 [New Database] - Database tab name modifier - %1 [Nova base de dados] - %1 [Locked] Database tab name modifier %1 [Bloqueada] + + %1 [Temporary] + Database tab name modifier + %1 [temporário] + DatabaseWidget - Database Tags - Etiquetas da base de dados + Searches and Tags + Pesquisa e etiquetas Searching… - A pesquisar... + A pesquisar… Shared group… - Grupo partilhado... + Grupo partilhado… Confirm Auto-Type @@ -2284,11 +2643,11 @@ Existe aqui um erro que deve ser reportado aos programadores. Delete group - Apagar grupo + Eliminar grupo Do you really want to delete the group "%1" for good? - Tem a certeza de que deseja apagar permanentemente o grupo "%1"? + Tem a certeza de que deseja eliminar permanentemente o grupo "%1"? Move group to recycle bin? @@ -2302,21 +2661,25 @@ Existe aqui um erro que deve ser reportado aos programadores. Expired entries Entradas caducadas + + Entries expiring within %1 day(s) + Entradas a caducar dentro de %1 diaEntradas a caducar dentro de %1 diasEntradas a caducar dentro de %1 dias + No current database. - Nenhuma base de dados. + Nenhuma base de dados No source database, nothing to do. - Não existe base de dados de origem, nada para fazer. + Não existe base de dados de origem Successfully merged the database files. - Bases de dados combinadas com sucesso. + Bases de dados combinadas com sucesso Database was not modified by merge operation. - A base de dados não foi modificada pela combinação. + A base de dados não foi modificada pela combinação Search Results (%1) @@ -2326,6 +2689,18 @@ Existe aqui um erro que deve ser reportado aos programadores. No Results Não há resultados + + Save + Guardar + + + Enter a unique name or overwrite an existing search from the list: + Introduza um nome exclusivo ou substitua uma pesquisa da lista: + + + Save Search + Guardar pesquisa + Lock Database? Bloquear base de dados? @@ -2337,13 +2712,13 @@ Existe aqui um erro que deve ser reportado aos programadores. "%1" was modified. Save changes? - "%1" foi modificada. + "%1" foi modificada Guardar alterações? Database was modified. Save changes? - A base de dados foi modificada. + A base de dados foi modificada Guardar alterações? @@ -2354,26 +2729,6 @@ Guardar alterações? File has changed Ficheiro alterado - - The database file has changed. Do you want to load the changes? - O ficheiro da base de dados foi alterado. Deseja carregar as alterações? - - - Merge Request - Pedido de combinação - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - A base de dados foi alterada e tem alterações não guardadas. -Deseja combinar as suas alterações? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Não foi possível abrir a nova base de dados durante o carregamento. -Erro: %1 - Disable safe saves? Desativar salvaguardas? @@ -2410,15 +2765,100 @@ Desativar salvaguardas e tentar novamente? Are you sure you want to permanently delete everything from your recycle bin? - Tem a certeza de que deseja apagar permanentemente os itens da reciclagem? + Tem a certeza de que deseja eliminar permanentemente os itens da reciclagem? Could not find database file: %1 - Não foi possível encontrar a base de dados: %1 + Não foi possível encontrar o ficheiro da base de dados: %1 - - Entries expiring within %1 day(s) - Entradas a caducar dentro de %1 diaEntradas a caducar dentro de %1 dias + + New Database + Nova base de dados + + + %1 [New Database] + Database tab name modifier + %1 [Nova base de dados] + + + Remote Sync did not contain any download or upload commands. + A sincronização remota não continha quaisquer comandos de descarga ou carregamento. + + + Remote sync '%1' completed successfully! + A sincronização remota '%1' foi concluída com sucesso! + + + Remote sync '%1' failed: %2 + A sincronização remota '%1' falhou: %2 + + + Error while saving database %1: %2 + Erro ao guardar a base de dados %1: %2 + + + Downloading... + A descarregar... + + + Uploading... + A carregar... + + + Syncing... + A sincronizar... + + + Remove passkey from entry + Remover chave-mestra da entrada + + + Do you want to remove the passkey from this entry? + Deseja remover a chave-mestra desta entrada? + + + The database file "%1" was modified externally + O ficheiro da base de dados "%1" foi alterado externamente + + + Do you want to load the changes? + Deseja carregar as alterações? + + + Reload database + Recarregar base de dados + + + Reloading database… + A recarregar base de dados… + + + Reload canceled + Recarga cancelada + + + Reload successful + Recarga efetuada + + + Reload pending user action… + Recarga pendente de uma ação do utilizador… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + O ficheiro da base de dados "%1" foi alterado externamente.<br>Como pretende continuar?<br><br>Combinar todas as alterações<br>Ignorar alterações no disco até guardar<br>Descartar alterações não guardadas + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + O ficheiro da base de dados "%1" foi alterado externamente.<br>Como pretende continuar?<br><br>Combinar todas as alterações e guardar<br>Substituir alterações no disco<br>Descartar alterações não guardadas + + + Database file overwritten. + Ficheiro de base de dados substituído. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + O ficheiro da base de dados no disco não pode ser desbloqueado com as credenciais atuais.<br>Introduza as novas credenciais e/ou a chave de hardware para continuar. @@ -2471,10 +2911,6 @@ Desativar salvaguardas e tentar novamente? n/a n/d - - (encrypted) - (cifrada) - Select private key Selecionar chave privada @@ -2493,7 +2929,7 @@ Desativar salvaguardas e tentar novamente? Some Browser Integration settings are overridden by group settings. - Algumas definições da integração com o navegador foram substituídas pelas definições do grupo. + Algumas definições da integração com o navegador foram substituídas pelas definições do grupo Invalid Entry @@ -2521,13 +2957,13 @@ Gostaria de a corrigir? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - Ocorreu um erro ao validar a sequência personalizada de escrita automática para %1. + Ocorreu um erro ao validar a sequência personalizada de escrita automática para "%1". %2 Gostaria de a corrigir? Entry updated successfully. - Entrada atualizada com sucesso. + Entrada atualizada com sucesso Unsaved Changes @@ -2555,27 +2991,31 @@ Gostaria de a corrigir? [PROTECTED] Press Reveal to view or edit - [PROTEGIDA] Por favor revele para ver ou editar + [PROTEGIDO] Utilize o botão 'Mostrar' para ver ou editar Hide Ocultar + + %n hour(s) + %n hora%n horas%n horas + %n week(s) - %n semana%n semanas + %n semana%n semanas%n semanas %n month(s) - %n mês%n meses + %n mês%n meses%n meses %n year(s) - %n ano%n anos + %n ano%n anos%n anos - - %n hour(s) - %n hora%n horas + + Failed to decrypt SSH key, ensure password is correct. + Falha ao decifrar a chave SSH, verifique se a palavra-passe está correta. @@ -2618,7 +3058,7 @@ Gostaria de a corrigir? Toggle attribute protection - Alternar proteção do atributo + Comutar proteção do atributo Protect @@ -2638,7 +3078,7 @@ Gostaria de a corrigir? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - Se marcado, a entrada não aparecerá em relatórios como Health Check e HIBP, mesmo que não corresponda aos requisitos de qualidade. + Se ativa, a entrada não aparecerá em relatórios como Health Check e HIBP, mesmo que não corresponda aos requisitos de qualidade. Exclude from database reports @@ -2669,11 +3109,11 @@ Gostaria de a corrigir? Inherit default Auto-Type sequence from the group - Herdar sequência de auto escrita padrão deste grupo + Herdar sequência de escrita automática padrão deste grupo Use custom Auto-Type sequence: - Utilizar sequência de auto escrita personalizada: + Utilizar sequência de escrita automática personalizada: Custom Auto-Type sequence @@ -2695,10 +3135,20 @@ Gostaria de a corrigir? Add new window association Adicionar nova associação + + + + Add item + + + Remove selected window association Remover associação selecionada + + - + Remove item + - + Window title: Título da janela: @@ -2723,23 +3173,9 @@ Gostaria de a corrigir? Custom Auto-Type sequence for this window Sequência personalizada de escrita automática para esta janela - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Estas definições afetam o comportamento da entrada com a extensão do navegador. - General Geral @@ -2752,26 +3188,14 @@ Gostaria de a corrigir? Skip Auto-Submit for this entry Ignorar submissão automática para esta entrada - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Apenas enviar esta definição para o navegador em diálogos HTTP Auth. Se ativa, os formulários normais de acesso não mostrarão esta entrada para seleção. - Use this entry only with HTTP Basic Auth Apenas utilizar esta entrada com HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Não enviar esta definição para o navegador em diálogos de HTTP Auth. Se ativa, as caixas de diálogo HTTP Auth não mostrarão esta entrada. - Do not use this entry with HTTP Basic Auth Não utilizar esta entrada com HTTP Basic Auth - - Additional URL's - URL(s) extra - Add Adicionar @@ -2784,6 +3208,22 @@ Gostaria de a corrigir? Edit Editar + + These settings affect the entry's behaviour with the browser extension. + Estas definições afetam o comportamento da entrada com a extensão do navegador. + + + Additional URLs + URL adicionais + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Enviar esta entrada ao navegador apenas para diálogos de autenticação HTTP. Se ativa, esta entrada não aparecerá nos formulários normais de autenticação. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Não enviar esta entrada ao navegador apenas para diálogos de autenticação HTTP. Se ativa, esta entrada não aparecerá nos de autenticação HTTP. + EditEntryWidgetHistory @@ -2809,19 +3249,19 @@ Gostaria de a corrigir? Delete selected history state - Apagar estado do histórico selecionado + Eliminar estado do histórico selecionado Delete - Apagar + Eliminar Delete all history - Apagar todo o histórico + Eliminar todo o histórico Delete all - Apagar tudo + Eliminar tudo @@ -2834,22 +3274,10 @@ Gostaria de a corrigir? Notes field Campo Notas - - Toggle the checkbox to reveal the notes section. - Alternar caixa de seleção para mostrar a secção de notas. - Username field Campo Nome de utilizador - - Toggle notes visible - Alternar visibilidade das notas - - - Notes: - Notas: - Expiration field Campo Caduca @@ -2866,54 +3294,62 @@ Gostaria de a corrigir? Presets Predefinições - - Password: - Palavra-passe: - - - URL: - URL: - Url field Campo URL Download favicon for URL - Descarregar 'favicon' para o URL - - - Title: - Título: + Descarregar ícone deste URL Title field Campo Título - - Username: - Nome de utilizador: - Password field Campo Palavra-passe Toggle expiration - Alternar caducidade - - - Expires: - Caduca: - - - Tags: - Etiquetas: + Comutar caducidade Tags list Lista de etiquetas + + &Username: + Nome de &utilizador: + + + &Title: + &Título: + + + &Password: + &Palavra-passe: + + + UR&L: + UR&L: + + + &Notes: + &Notas: + + + Toggle notes visibility + Comutar exibição das notas + + + T&ags: + Etiquet&as: + + + &Expires: + &Caduca: + EditEntryWidgetSSHAgent @@ -2953,19 +3389,6 @@ Gostaria de a corrigir? Private key Chave privada - - External file - Ficheiro externo - - - Browser for key file - Explorador para ficheiro-chave - - - Browse… - Button for opening file dialog - Procurar... - Attachment Anexo @@ -2982,6 +3405,23 @@ Gostaria de a corrigir? Remove from agent Remover do agente + + External file + Ficheiro externo + + + Browser for key file + Explorador para ficheiro-chave + + + Browse… + Button for opening file dialog + Procurar… + + + Generate + Gerar + Select attachment file Selecionar anexo @@ -3006,6 +3446,10 @@ Gostaria de a corrigir? seconds segundos + + Clear agent + Limpar agente + EditGroupWidget @@ -3017,10 +3461,6 @@ Gostaria de a corrigir? Icon Ícone - - Browser Integration - Integração com o navegador - Properties Propriedades @@ -3037,6 +3477,10 @@ Gostaria de a corrigir? Group has unsaved changes Grupo tem alterações por guardar + + Browser Integration + Integração com o navegador + Enable Ativar @@ -3052,13 +3496,9 @@ Gostaria de a corrigir? EditGroupWidgetBrowser - - Edit Group - Editar grupo - These settings affect to the group's behaviour with the browser extension. - Estas definições afetam o comportamento do grupo em relação à integração com navegadores. + Estas definições afetam o comportamento do grupo em relação à integração com navegadores Hide entries from browser extension: @@ -3070,7 +3510,7 @@ Gostaria de a corrigir? Skip Auto-Submit for entries: - Ignorar submissão automática para as entredas: + Ignorar submissão automática para as entradas: Skip Auto-Submit toggle for this and sub groups @@ -3092,6 +3532,22 @@ Gostaria de a corrigir? Do not use HTTP Auth toggle for this and sub groups Não utilizar HTTP Basic Auth para este grupo (e subgrupos) + + Omit WWW subdomain from matching: + Omitir subdomínio WWW da correspondência: + + + Omit WWW subdomain from matching toggle for this and sub groups + Omitir subdomínio WWW do alternador de correspondência: para isto e subgrupos + + + Restrict matching to given browser key: + Restringir ocorrência a uma chave do navegador: + + + Restrict matching to given browser key toggle for this and sub groups + Restringir a correspondência a uma determinada chave do navegador para este e os seus subgrupos + EditGroupWidgetKeeShare @@ -3125,7 +3581,7 @@ Gostaria de a corrigir? Browse… - Procurar... + Procurar… Clear fields @@ -3159,15 +3615,15 @@ As extensões suportadas são: %1. %1 is already being exported by this database. - %1 já está a ser exportado para esta base de dados. + %1 já está a ser exportado para esta base de dados %1 is already being imported by this database. - %1 já está a ser importado para esta base de dados. + %1 já está a ser importado para esta base de dados %1 is being imported and exported by different groups in this database. - %1 está a ser importada e exportada por grupos distintos desta base de dados. + %1 está a ser importada e exportada por grupos distintos desta base de dados KeeShare is currently disabled. You can enable import/export in the application settings. @@ -3176,11 +3632,11 @@ As extensões suportadas são: %1. Database export is currently disabled by application settings. - As suas definições não permitem a exportação de bases de dados. + As suas definições não permitem a exportação de bases de dados Database import is currently disabled by application settings. - As suas definições não permitem a importação de bases de dados. + As suas definições não permitem a importação de bases de dados KeeShare container @@ -3211,7 +3667,7 @@ As extensões suportadas são: %1. Toggle expiration - Alternar caducidade + Comutar caducidade Expires: @@ -3278,23 +3734,23 @@ As extensões suportadas são: %1. Choose icon… - Escolher ícone... + Escolher ícone… Set the URL to use to search for a favicon - Defina o URL a utilizar para procurar 'favicons' + Defina o URL a utilizar para procurar o ícone de favoritos Favicon URL - URL de 'favicon' + URL do ícone Download favicon for URL - Descarregar 'favicon' para o URL + Descarregar ícone deste URL Download favicon - Descarregar 'favicon' + Descarregar ícone Apply selected icon to subgroups and entries @@ -3302,7 +3758,7 @@ As extensões suportadas são: %1. Apply icon to… - Aplicar ícone a... + Aplicar ícone a… Apply to this group only @@ -3322,15 +3778,11 @@ As extensões suportadas são: %1. Unable to fetch favicon. - Não foi possível obter o 'favicon'. - - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Pode ativar o serviço DuckDuckGo em Ferramentas -> Definições -> Segurança + Não foi possível obter o ícone Existing icon selected. - Selecionou um ícone existente. + Selecionou um ícone existente Images @@ -3346,7 +3798,7 @@ As extensões suportadas são: %1. Successfully loaded %1 of %n icon(s) - %1 de %n ícone carregados com sucesso%1 de %n ícones carregados com sucesso + %1 de %n ícone carregados com sucesso%1 de %n ícones carregados com sucesso%1 de %n ícones carregados com sucesso No icons were loaded @@ -3354,11 +3806,15 @@ As extensões suportadas são: %1. %n icon(s) already exist in the database - %n ícone já existe na sua base de dados%n ícones já existem na sua base de dados + %n ícone já existe na sua base de dados%n ícones já existem na sua base de dados%n ícones já existem na sua base de dados The following icon(s) failed: - Falha no seguinte ícone:Falha nos seguintes ícones: + Falha no seguinte ícone:Falha nos seguintes ícones:Falha nos seguintes ícones: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Pode ativar o serviço DuckDuckGo em Ferramentas -> Definições -> Segurança @@ -3413,12 +3869,12 @@ As extensões suportadas são: %1. Delete plugin data? - Apagar dados do suplemento? + Eliminar dados do suplemento? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. - Tem a certeza de que deseja apagar os dados do suplemento? + Tem a certeza de que deseja Eliminar os dados do suplemento? Esta ação pode implicar um funcionamento errático. @@ -3436,12 +3892,45 @@ Esta ação pode implicar um funcionamento errático. %1 - Clone %1 - Clone + + Passkey + Chave-mestra + + + Invalid conversion type: %1 + Tipo de conversão inválido: %1 + + + Invalid conversion syntax: %1 + Sintaxe de conversão inválida: %1 + + + Invalid regular expression syntax %1 +%2 + Sintaxe de expressão regular inválida %1 +%2 + EntryAttachments Cannot open file "%1" - Não foi possível abrir o ficheiro %1. + Não foi possível abrir o ficheiro "%1" + + + + EntryAttachmentsDialog + + Form + Formulário + + + File name + Nome do ficheiro + + + File contents... + Conteúdo do ficheiro... @@ -3481,14 +3970,6 @@ Esta ação pode implicar um funcionamento errático. Remove Remover - - Rename selected attachment - Mudar nome do anexo selecioando - - - Rename - Mudar nome - Open selected attachment Abrir anexo selecionado @@ -3515,7 +3996,7 @@ Esta ação pode implicar um funcionamento errático. Are you sure you want to remove %n attachment(s)? - Tem a certeza de que deseja remover %n anexo?Tem a certeza de que deseja remover %n anexos? + Tem a certeza de que deseja remover %n anexo?Tem a certeza de que deseja remover %n anexos?Tem a certeza de que deseja remover %n anexos? Save attachments @@ -3558,18 +4039,13 @@ Esta ação pode implicar um funcionamento errático. %1 Não foi possível abrir o ficheiro: %1Não foi possível abrir os ficheiros: +%1Não foi possível abrir os ficheiros: %1 Confirm Overwrite Attachment Confirmação de substituição de anexo - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - O anexo "%1" já existe. -Deseja substituir o anexo existente? - Confirm Attachment Confirmar anexo @@ -3601,9 +4077,27 @@ Deseja guardar as alterações efetuadas à base de dados? Saving updated attachment failed. Error: %1 - Não foi possível guardar o anexo alterado. + Não foi possível guardar o anexo alterado Erro: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + O anexo "%1" já existe +Deseja substituir o anexo existente? + + + New + Novo + + + Preview + Pré-visualização + + + Failed to preview an attachment: Attachment not found + Falha ao pré-visualizar: anexo não encontrado + EntryAttributesModel @@ -3798,6 +4292,14 @@ Erro: %1 Has TOTP Tem TOTP + + Background Color + Cor de fundo + + + Group Path + Caminho do grupo + EntryPreviewWidget @@ -3818,8 +4320,8 @@ Erro: %1 Palavra-passe - Notes - Notas + URL + URL Expiration @@ -3838,8 +4340,8 @@ Erro: %1 Nome de utilizador - URL - URL + Notes + Notas Advanced @@ -3889,6 +4391,10 @@ Erro: %1 Never Nunca + + Double click to copy value + Duplo clique para copiar o valor + Enabled Ativada @@ -3897,6 +4403,10 @@ Erro: %1 Disabled Desativada + + Double click to copy to clipboard + Dois cliques para copiar para a área de transferência + EntryURLModel @@ -3904,6 +4414,10 @@ Erro: %1 Invalid URL URL inválido + + Duplicate URL + URL está duplicado + EntryView @@ -3919,6 +4433,10 @@ Erro: %1 Reset to defaults Repor predefinições + + + %1 entry(s)... + + %1 entrada...+ %1 entradas...+ %1 entradas... + ExportDialog @@ -3928,7 +4446,7 @@ Erro: %1 Sort entries by... - Ordenar entradas por... + Ordenar entradas por… You are about to export your database to an unencrypted file. @@ -3994,7 +4512,7 @@ As suas palavras-passe e informações pessoais ficarão vulneráveis! Failed to register DBus service at %1.<br/> - Não foi possível registar o serviços DBus em %1.<br/> + Não foi possível registar o serviços DBus em %1<br/> Failed to register service on DBus at path '%1' @@ -4029,7 +4547,7 @@ As suas palavras-passe e informações pessoais ficarão vulneráveis! %n Entry(s) was used by %1 %1 is the name of an application - %n entrada foi utilizada por %1%n entradas foram utilizadas por %1 + %n entrada foi utilizada por %1%n entradas foram utilizadas por %1%n entradas foram utilizadas por %1 @@ -4091,7 +4609,7 @@ As suas palavras-passe e informações pessoais ficarão vulneráveis! IconDownloaderDialog Download Favicons - Descarregar 'favicons' + Descarregar ícones Cancel @@ -4100,7 +4618,7 @@ As suas palavras-passe e informações pessoais ficarão vulneráveis! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - Problemas para descarregar ícones? + Problemas ao descarregar os ícones? Pode ativar o serviço DuckDuckGo na secção 'Segurança' das definições. @@ -4117,11 +4635,11 @@ Pode ativar o serviço DuckDuckGo na secção 'Segurança' das defini Please wait, processing entry list… - Por favor aguarde, estamos a processar a lista de entradas... + Por favor aguarde, estamos a processar a lista de entradas… Downloading… - A descarregar... + A descarregar… Ok @@ -4137,7 +4655,200 @@ Pode ativar o serviço DuckDuckGo na secção 'Segurança' das defini Downloading favicons (%1/%2)… - A descarregar (%1/%2)... + A descarregar o ícone (%1/%2)… + + + + ImportWizard + + Import Wizard + Assistente de importação + + + + ImportWizardPageReview + + WizardPage + Assistente + + + Entry count: %1 + Número de entradas: %1 + + + Group + Grupo + + + Title + Título + + + Username + Nome de utilizador + + + Password + Palavra-passe + + + Url + URL + + + Could not load key file. + Não foi possível carregar o ficheiro-chave. + + + Could not open remote database. Password or key file may be incorrect. + Não foi possível abrir a base de dados remota. Palavra-passe ou ficheiro-chave inválidos. + + + + ImportWizardPageSelect + + Form + Formulário + + + Import File Selection + Importar seleção + + + Password: + Palavra-passe: + + + Key File: + Ficheiro-chave: + + + Browse… + Procurar… + + + Import Into: + Importar para: + + + New Database + Nova base de dados + + + No unlocked databases available + Não existem bases de dados desbloqueadas disponíveis + + + Existing Database: + Base de dados existente: + + + Import File: + Importar ficheiro: + + + Comma Separated Values (.csv) + Valores separados por vírgula (.csv) + + + 1Password Export (.1pux) + Exportação 1Password (.1pux) + + + 1Password Vault (.opvault) + Cofre 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Base de dados KeePass 1 (.kdb) + + + Open OPVault + Open OPVault + + + Select import file + Selecione o ficheiro + + + All files + Todos os ficheiros + + + Key files + Ficheiros-chave + + + Select key file + Selecione o ficheiro-chave + + + Comma Separated Values + Valores separados por vírgula + + + 1Password Export + Exportação 1Password + + + Bitwarden JSON Export + Exportação JSON do Bitwarden + + + 1Password Vault + Cofre 1Password + + + KeePass1 Database + Base de dados KeePass 1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Exportação JSON para Proton Pass + + + Temporary Database + Base de dados temporária + + + Command: + Comando: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + por exemplo: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Entrada: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + eexemplo: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} é utilizado como marcador de posição para guardar a base de dados numa localização temporária +O comando tem que terminar (exit). No caso de `sftp` o último comando tem que ser `exit`. + + + + Remote Database (.kdbx) + Base de dados remota (.kdbx) @@ -4193,7 +4904,7 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada. Invalid symmetric cipher IV size. IV = Initialization Vector for symmetric cipher - Tamanho inválido da cifra simétrica IV. + Tamanho inválido da cifra simétrica IV Unable to issue challenge-response: %1 @@ -4258,7 +4969,7 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada. Legacy header fields found in KDBX4 file. - Encontrados campos legados no ficheiro KDBX4. + Encontrados campos legados no ficheiro KDBX4 Invalid inner header id size @@ -4279,7 +4990,7 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada. Unsupported KeePass variant map version. Translation: variant map = data structure for storing meta data - Versão não suportada da variente de mapa KeePass. + Versão não suportada da variente de mapa KeePass Invalid variant map entry name length @@ -4341,12 +5052,12 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada.Kdbx4Writer Invalid symmetric cipher algorithm. - Algoritmo inválido de cifra simétrica. + Algoritmo inválido de cifra simétrica Invalid symmetric cipher IV size. IV = Initialization Vector for symmetric cipher - Tamanho inválido da cifra simétrica IV. + Tamanho inválido da cifra simétrica IV Unable to calculate database key: %1 @@ -4406,7 +5117,7 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada. Failed to read database file. - Não foi possível ler o ficheiro da base de dados. + Não foi possível ler o ficheiro da base de dados The selected file is an old KeePass 1 database (.kdb). @@ -4415,16 +5126,16 @@ 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. O ficheiro selecionado é uma base de dados do KeePass 1 (.kdb). -Pode importá-la clicando em Base de dados > 'Importar base de dados do KeePass 1...'. +Pode importá-la clicando em Base de dados > 'Importar base de dados do KeePass 1…'. Esta é uma migração unidirecional. Não será possível abrir a base de dados importada com a versão 0.4 do KeePassX. Not a KeePass database. - Não é uma base de dados do KeePass. + Não é uma base de dados do KeePass Unsupported KeePass 2 database version. - Versão da base de dados KeePass2 não suportada. + Versão da base de dados KeePass2 não suportada @@ -4555,11 +5266,11 @@ Linha %2, coluna %3 KeeAgentSettings Invalid KeeAgent settings file structure. - Estrutura inválida no ficheiro de definições KeeAgent. + Estrutura inválida no ficheiro de definições KeeAgent Private key is an attachment but no attachments provided. - Chave privada é um anexo mas o anexo não foi indicado. + Chave privada é um anexo mas o anexo não foi indicado Private key is empty @@ -4574,34 +5285,23 @@ Linha %2, coluna %3 Não foi possível abrir a chave privada - - KeePass1OpenWidget - - Import KeePass1 Database - Importar base de dados do KeePass 1 - - - Unable to open the database. - Não foi possível abrir a base de dados. - - KeePass1Reader Unable to read keyfile. - Não foi possível ler o ficheiro-chave. + Não foi possível ler o ficheiro-chave Not a KeePass database. - Não é uma base de dados do KeePass. + Não é uma base de dados do KeePass Unsupported encryption algorithm. - Algoritmo de cifra não suportado. + Algoritmo de cifra não suportado Unsupported KeePass database version. - Versão da base de dados KeePass não suportada. + Versão da base de dados KeePass não suportada Unable to read encryption IV @@ -4833,7 +5533,7 @@ Caso isto volte a acontecer, pode ser que a base de dados esteja danificada. Browse… - Procurar... + Procurar… Old key file format @@ -4883,7 +5583,7 @@ Mensagem: %2 Create Key File… - Criar ficheiro-chave... + Criar ficheiro-chave… Error creating key file @@ -4941,10 +5641,6 @@ Tem a certeza de que deseja utilizar este ficheiro? &Recent Databases Bases de dados &recentes - - &Import - &Importar - &Export &Exportar @@ -4965,6 +5661,10 @@ Tem a certeza de que deseja utilizar este ficheiro? TOTP TOTP + + Tags + Etiquetas + &Groups &Grupos @@ -4995,7 +5695,7 @@ Tem a certeza de que deseja utilizar este ficheiro? &Open Database… - Abrir base de dad&os... + Abrir base de dad&os… &Save Database @@ -5007,59 +5707,39 @@ Tem a certeza de que deseja utilizar este ficheiro? &New Database… - &Nova base de dados... - - - Create a new database - Criar uma nova base de dados + &Nova base de dados… &Merge From Database… - Co&mbinar da base de dados... - - - Merge from another KDBX database - Combinar com outra base de dados KDBX + Co&mbinar da base de dados… &New Entry… - &Nova entrada... - - - Add a new entry - Adicionar uma nova entrada + &Nova entrada… &Edit Entry… - &Editar entrada... - - - View or edit entry - Ver ou editar entrada + &Editar entrada… &Delete Entry… - Apagar entra&da... + Eliminar entra&da… &New Group… - &Novo grupo... - - - Add a new group - Adicionar um novo grupo + &Novo grupo… &Edit Group… - &Editar grupo... + &Editar grupo… &Delete Group… - Apagar g&rupo... + Eliminar g&rupo… Download All &Favicons… - Descarregar todos os '&favicons'... + Descarregar &todos os ícones… Sort &A-Z @@ -5071,64 +5751,40 @@ Tem a certeza de que deseja utilizar este ficheiro? Sa&ve Database As… - G&uardar base de dados como... + G&uardar base de dados como… Database &Security… - &Segurança da base de dados... + &Segurança da base de dados… Database &Reports… - &Relatórios da base de dados... - - - Statistics, health check, etc. - Estatísticas, verificações, etc. + &Relatórios da base de dados… &Database Settings… - &Definições da base de dados... - - - Database settings - Definições da base de dados + &Definições da base de dados… &Clone Entry… - &Clonar entrada... + &Clonar entrada… Move u&p Mover para &cima - - Move entry one step up - Move a entrada para cima - Move do&wn Mover para &baixo - - Move entry one step down - Move a entrada para baixo - Copy &Username Copiar nome de &utilizador - - Copy username to clipboard - Copiar nome de utilizador para a área de transferência - Copy &Password Copiar &palavra-passe - - Copy password to clipboard - Copiar palavra-passe para a área de transferência - &Settings Definiçõe&s @@ -5143,7 +5799,7 @@ Tem a certeza de que deseja utilizar este ficheiro? Download &Favicon - Descarregar '&favicon' + &Descarregar ícone Open &URL @@ -5162,56 +5818,32 @@ Tem a certeza de que deseja utilizar este ficheiro? &Título - Copy title to clipboard - Copiar título para a área de transferência - - - &URL - &URL - - - Copy URL to clipboard - Copiar URL para a área de transferência + Copy &URL + Copiar &URL &Notes &Notas - - Copy notes to clipboard - Copiar notas para a área de transferência - &CSV File… - Ficheiro &CSV... + Ficheiro &CSV… &HTML File… - Ficheiro &HTML... + Ficheiro &HTML… KeePass 1 Database… - Base de dados do KeePass 1... - - - Import a KeePass 1 database - Importar base de dados do KeePass 1 + Base de dados do KeePass 1… 1Password Vault… - Cofre 1Password... - - - Import a 1Password Vault - Importar um cofre 1Password + Cofre 1Password… CSV File… - Ficheiro CSV... - - - Import a CSV file - Importar ficheiro CSV + Ficheiro CSV… Show TOTP @@ -5223,12 +5855,16 @@ Tem a certeza de que deseja utilizar este ficheiro? Set up TOTP… - Configurar TOTP... + Configurar TOTP… Copy &TOTP Copiar &TOTP + + Copy Password and TOTP + Copiar palavra-passe e TOTP + E&mpty recycle bin Limpar reciclage&m @@ -5243,20 +5879,16 @@ Tem a certeza de que deseja utilizar este ficheiro? &Getting Started - &Iniciação + &Introdução Open Getting Started Guide - Abrir guia de iniciação + Abrir guia de introdução &Online Help Ajuda &online - - Go to online documentation - Aceder à documentação online - &User Guide Guia de &utilizador @@ -5271,7 +5903,7 @@ Tem a certeza de que deseja utilizar este ficheiro? Save Database Backup… - Guardar cópia de segurança da base de dados... + Guardar backup da base de dados… Add key to SSH Agent @@ -5301,6 +5933,10 @@ Tem a certeza de que deseja utilizar este ficheiro? Classic (Platform-native) Clássico (nativo do SO) + + Show Menubar + Mostrar barra de menus + Show Toolbar Mostrar barra de ferramentas @@ -5323,7 +5959,11 @@ Tem a certeza de que deseja utilizar este ficheiro? Clone Group... - Clonar grupo... + Clonar grupo… + + + &XML File… + Ficheiro &XML… Clear history @@ -5342,7 +5982,7 @@ Tem a certeza de que deseja utilizar este ficheiro? There is a high risk of corruption, maintain a backup of your databases. This version is not meant for production use. AVISO: está a utilizar uma versão instável do KeePassXC! -Existe um risco elevado de corrupção de ficheiros. Deve criar uma cópia de segurança da base de dados. +Existe um risco elevado de corrupção de ficheiros. Deve criar um backup da base de dados. Esta versão não deve ser utilizada em ambientes de produção. @@ -5352,14 +5992,12 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - AVISO: a versão Qt do seu sistema pode causar o encerramento do KeePassXC se estiver a utilizar o teclado no ecrã (On-Screen Keyboard)! -Recomendamos que utilize a versão AppImage disponível no nosso site. + No Tags + Sem etiquetas Restore Entry(s) - Restaurar entradaRestaurar entradas + Restaurar entradaRestaurar entradasRestaurar entradas Settings @@ -5375,19 +6013,23 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. You can always check for updates manually from the application menu. - Também pode verificar se existem atualizações através do menu da aplicação. + Também pode verificar se existem atualizações através do menu da aplicação Toggle window - Alternar janela + Comutar janela Quit KeePassXC Sair do KeePassXC + + %1 Entry(s) + %1 entrada%1 entradas%1 entradas + Please present or touch your YubiKey to continue… - Introduza ou toque na sua YubiKey para continuar... + Introduza ou toque na sua YubiKey para continuar… Restart Application? @@ -5397,6 +6039,314 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.You must restart the application to apply this setting. Would you like to restart now? Tem que reiniciar a aplicação para aplicar as alterações. Gostaria de o fazer agora? + + Allow Screen Capture + Permitir captura de ecrã + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importar um ficheiro 1Password 1PUX + + + Import… + Importar… + + + Passkeys… + Chaves-mestras... + + + Import Passkey + Importar chave-mestra + + + Remote S&ync… + S&incronização remota... + + + Quit Application + Sair da aplicação + + + Open About Dialog + Abrir caixa de diálogo Acerca + + + Open Database + Abrir base de dados + + + Create Database + Criar base de dados + + + Merge From Database + Combinar da base de dados + + + Create Entry + Criar entrada + + + Edit Entry + Editar entrada + + + Delete Entry + Eliminar entrada + + + Create Group + Criar grupo + + + Edit Group + Editar grupo + + + Delete Group + Eliminar grupo + + + Download All Favicons + Descarregar todos os ícones + + + Sort Groups A-Z + Ordenar grupos de A->Z + + + Sort Groups Z-A + Ordenar grupos de Z->A + + + Save Database As + Guardar base de dados como + + + Show Database Security + Mostrar segurança da base de dados + + + Show Database Reports + Mostrar relatórios da base de dados + + + Show Database Settings + Mostrar definições da base de dados + + + Show Passkeys + Mostrar chaves-mestras + + + Clone Entry + Clonar entrada + + + Move Entry Up + Mover para cima + + + Move Entry Down + Mover para baixo + + + Copy Username + Copiar nome de utilizador + + + Copy Password + Copiar palavra-passe + + + Show Application Settings + Mostrar definições da base de dados + + + Show Password Generator + Mostrar gerador de palavras-passe + + + Remove Passkey From Entry + Remover a chave-mestra da entrada + + + Perform Auto-Type: {USERNAME} + Executar escrita automática: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Executar escrita automática: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Execute escrita automática: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Execute escrita automática: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Executar escrita automática: {TOTP} + + + Copy Title + Copiar título + + + Copy URL + Copiar URL + + + Copy Notes + Copiar notas + + + Export to CSV + Exportar para CSV + + + Export to HTML + Exportar para HTML + + + Import KeePass1 Database + Importar base de dados do KeePass 1 + + + Import 1Password Vault + Importar cofre 1Password + + + Import CSV File + Importar ficheiro CSV + + + Show TOTP QR Code + Mostrar código QR TOTP + + + Set up TOTP + Configurar TOTP + + + Empty Recycle Bin + Esvaziar reciclagem + + + Open Donation Website + Abrir site de donativos + + + Open Bug Report + Abrir relatório de erros + + + Open Online Documentation + Abrir documentação on-line + + + Open Keyboard Shortcuts Guide + Abrir guia de atalhos de teclado + + + Save Database Backup + Guardar backup da base de dados + + + SSH Agent: Add Key + Agente SSH: Adicionar chave + + + SSH Agent: Remove Key + Agente SSH: Remover chave + + + Toggle Compact Mode + Comutar "Modo compacto" + + + Set Theme: Automatic + Definir tema: Automático + + + Set Theme: Light + Definir tema: Claro + + + Set Theme: Dark + Definir tema: Escuro + + + Set Theme: Classic + Definir tema: Clássico + + + Toggle Show Menubar + Comutar "Mostrar barra de menus" + + + Toggle Show Toolbar + Comutar "Mostrar barra de ferramentas" + + + Toggle Show Preview Panel + Comutar "Mostrar painel de pré-visualização" + + + Toggle Always on Top + Comutar "Sempre na frente" + + + Toggle Hide Usernames + Comutar "Ocultar nome de utilizador" + + + Toggle Hide Passwords + Comutar "Ocultar palavras-passe" + + + Export to XML + Exportar para XML + + + Toggle Allow Screen Capture + Comutar "Permitir captura de ecrã" + + + Show Group Panel + Mostrar painel Grupo + + + Toggle Show Group Panel + Comutar exibição do painel Grupo + + + Setup Remote Sync… + Configurar a sincronização remota… + + + Password Generator + Gerador de palavras-passe + + + E&xpire Entry… + E&xpirar entrada… + + + Clear SSH Agent + Limpar agente SSH + + + Clear all identities in ssh-agent + Limpar todas as identidades no ssh-agent + ManageDatabase @@ -5454,26 +6404,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Overwriting %1 [%2] A substituir %1 [%2] - - older entry merged from database "%1" - entrada antiga combinada da base de dados %1 - - - Adding backup for older target %1 [%2] - A adicionar backup para o destino antigo %1 [%2] - - - Adding backup for older source %1 [%2] - A adicionar backup para a origem antiga %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - A reaplicar a entrada de destino antiga na origem recente %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - A reaplicar a entrada de origem antiga no destinio recente %1 [%2] - Synchronizing from newer source %1 [%2] A sincronizar da origem recente %1 [%2] @@ -5492,7 +6422,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Changed deleted objects - Objetos apagados alterados + Objetos elimnados alterados Adding missing icon %1 @@ -5511,7 +6441,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.NewDatabaseWizard Create a new KeePassXC database… - Criar uma nova base de dados do KeePassXC... + Criar uma nova base de dados do KeePassXC… Root @@ -5533,14 +6463,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Aqui pode ajustar as definições de cifra da sua base de dados. Não se preocupe porque, a qualquer momento, poderá alterar esta opção nas definições da base de dados. - - Advanced Settings - Definições avançadas - - - Simple Settings - Definições básicas - NewDatabaseWizardPageDatabaseKey @@ -5550,7 +6472,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. A set of credentials known only to you that protects your database. - Um conjunto de credenciais só suas e que protegem a base de dados. + Um conjunto de credenciais só suas e que protegem a base de dados @@ -5572,7 +6494,26 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Please fill in the display name and an optional description for your new database: - Preencha o nome de exibição e uma descrição extra para a sua nova base de dados: + Preencha o nome e uma descrição adicional para a sua nova base de dados: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + O nome do anexo não pode estar vazio + + + Attachment with the same name already exists + Já existe um anexo com este nome + + + Save attachment + Guardar anexo + + + New entry attachment + Anexo da nova entrada @@ -5621,15 +6562,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Esperados %1 bytes de 'clear-text' mas foram encontrados %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - A leitura da base de dados não produziu uma instância -%1 - - OpVaultReader @@ -5673,7 +6605,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Key file way too small. - Ficheiro-chave muito pequeno. + Ficheiro-chave muito pequeno Key file magic header id invalid @@ -5685,7 +6617,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Failed to read public key. - Não foi possível ler a chave pública. + Não foi possível ler a chave pública Corrupted key file, reading private key failed @@ -5703,6 +6635,10 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Unknown cipher: %1 Cifra desconhecida: %1 + + AES-256/GCM is currently not supported + AES-256/GCM não é suportado atualmente + Passphrase is required to decrypt this key Necessita de uma frase-chave para decifrar esta chave @@ -5767,28 +6703,184 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Unexpected EOF when writing private key EOF inesperado ao escrever a chave privada + + (encrypted) + (cifrada) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Disparidade nas palavras-passe + SSH Key Generator + Gerador de chaves SSH - Passwords match so far - Correspondências até agora + Type + Tipo - Toggle Password (%1) - Alternar palavra-passe (%1) + Bits + Bits - Generate Password (%1) - Gerar palavra-passe (%1) + Comment + Comentário + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Exportação de chave-mestra - Warning: Caps Lock enabled! - Aviso: Caps Lock ativado! + Filenames will be generated with title and .passkey file extension. + O nome do ficheiro será criado com o título e a extensão .passkey + + + Export entries + Exportar entradas + + + Export Selected + Exportar seleção + + + Cancel + Cancelar + + + Export to folder + Exportar para a pasta + + + Export the following passkey entries. + Exportar as seguintes entradas de chaves-mestras. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Exportação de chave-mestra + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + O ficheiro "%1.passkey" já existe. +Deseja substituir o ficheiro existente? + + + + Cannot open file + Não foi possível abrir o ficheiro + + + Cannot open file "%1" for writing. + Não foi possível abrir o ficheiro "%1" para escrita + + + Cannot write to file + Não foi possível escrever para o ficheiro + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Importação de chave-mestra + + + Username: %1 + Nome de utilizador: %1 + + + Group + Grupo + + + Database + Base de dados + + + Import Passkey + Importar chave-mestra + + + Import + Importar + + + Cancel + Cancelar + + + Entry + Entrada + + + Create new entry + Criar nova entrada + + + Relying Party: %1 + Entidades fiáveis: %1 + + + Import the following passkey: + Importar a seguinte chave-mestra: + + + Import the following passkey to this entry: + Importar a seguinte chave-mestra para esta entrada: + + + Default passkeys group (Imported Passkeys) + Grupo de chaves-mestras predefinidas (chaves-mestras importadas) + + + + PasskeyImporter + + Passkey file + Ficheiro de chave-mestra + + + All files + Todos os ficheiros + + + Cannot open file + Não foi possível abrir o ficheiro + + + Cannot open file "%1" for reading. + Não foi possível abrir o ficheiro "%1" para leitura. + + + Open passkey file + Abrir o ficheiro da chave-mestra + + + Cannot import passkey + Não é possível importar a chave-mestra + + + Cannot import passkey file "%1". Data is missing. + Não é possível importar o ficheiro da chave-mestra "%1". Os dados estão em falta. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Não é possível importar o ficheiro da chave-mestra "%1". +Faltam os seguintes dados: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Não é possível importar o ficheiro da chave-mestra "%1". A chave privada está em falta ou malformada. @@ -5799,7 +6891,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Password field - Campo Palavra-passe + Campo palavra-passe Confirm password: @@ -5807,7 +6899,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Repeat password field - Campo Repetição de palavra-passe + Campo repetição de palavra-passe Password @@ -5835,7 +6927,7 @@ Recomendamos que utilize a versão AppImage disponível no nosso site. Passwords do not match. - Disparidade nas palavras-passe. + Disparidade nas palavras-passe @@ -5969,10 +7061,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Also choose from: Escolher também de: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Caracteres excluídos: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Excluir caracteres semelhantes @@ -5997,10 +7085,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Word Count: Número de palavras: - - Character Count: - Número de caracteres: - Word Case: Tipo de letra: @@ -6013,10 +7097,6 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Add custom wordlist Adicionar lista personalizada - - character - carácter - Close Fechar @@ -6053,6 +7133,30 @@ Recomendamos que utilize a versão AppImage disponível no nosso site.Entropy: %1 bit Entropia: %1 bit + + Password Quality: %1 + Qualidade da palavra-passe: %1 + + + Poor + Password quality + + + + Weak + Password quality + Fraca + + + Good + Password quality + Boa + + + Excellent + Password quality + Excelente + Confirm Delete Wordlist Confirmação de eliminação @@ -6093,15 +7197,54 @@ Tem a certeza de que a deseja substituir? Logograms - Logo-gramas + Logogramas Special Characters Caracteres especiais - Password Quality: %1 - Qualidade da palavra-passe: %1 + passwordLength + TamanhoPalavraPasse + + + Characters: %1 + Caracteres: %1 + + + MIXED case + Maiúsculas e minúsculas + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Caracteres excluídos: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Disparidade nas palavras-passe + + + Passwords match so far + Correspondências até agora + + + Toggle Password (%1) + Comutar palavra-passe (%1) + + + Generate Password (%1) + Gerar palavra-passe (%1) + + + Warning: Caps Lock enabled! + Aviso: tecla de bloqueio de maiúsculas está ativa! + + + Quality: %1 + Qualidade: %1 Poor @@ -6123,6 +7266,10 @@ Tem a certeza de que a deseja substituir? Password quality Excelente + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Comutar exibição da palavra-passe com Ctrl + H. Abra o gerador de palavras-passe com Ctrl + G. + PickcharsDialog @@ -6139,6 +7286,21 @@ Tem a certeza de que a deseja substituir? Prima &Tab entre os caracteres + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Pré-visualizar anexo + + + No preview available + Pré-visualização indisponível + + + Image format not supported + Formato de imagem não suportado + + QMessageBox @@ -6147,7 +7309,7 @@ Tem a certeza de que a deseja substituir? Delete - Apagar + Eliminar Move @@ -6177,6 +7339,10 @@ Tem a certeza de que a deseja substituir? Continue Continuar + + Continue with weak password + Continuar com palavra-passe insegura + QObject @@ -6202,11 +7368,11 @@ Tem a certeza de que a deseja substituir? Message encryption failed. - Não foi possível cifrar a mensagem. + Não foi possível cifrar a mensagem KeePassXC association failed, try again - Não foi possível associar KeePassXC. Por favor tente novamente. + Não foi possível associar o KeePassXC. Por favor tente novamente Encryption key is not recognized @@ -6254,11 +7420,11 @@ Tem a certeza de que a deseja substituir? Could not save the native messaging script file for %1. - Não foi possível guardar o script de mensagens nativas para %1. + Não foi possível guardar o script de mensagens nativas para %1 Username for the entry. - Nome de utilizador para a entrada. + Nome de utilizador para a entrada username @@ -6266,7 +7432,7 @@ Tem a certeza de que a deseja substituir? URL for the entry. - URL para a entrada. + URL para a entrada URL @@ -6282,27 +7448,27 @@ Tem a certeza de que a deseja substituir? Prompt for the entry's password. - Pedir palavra-passe para a entrada. + Pedir palavra-passe para a entrada Generate a password for the entry. - Gerar palavra-passe para a entrada. + Gerar palavra-passe para a entrada Add a new entry to a database. - Adicionar entrada à base de dados. + Adicionar entrada à base de dados Path of the entry to add. - Caminho da entrada a adicionar. + Caminho da entrada a adicionar Cannot generate a password and prompt at the same time. - Não pode utilizar as opções "Gerar palavra-passe" e "Pedir palavra-passe" ao mesmo tempo". + Não pode utilizar as opções "Gerar palavra-passe" e "Pedir palavra-passe" ao mesmo tempo Could not create entry with path %1. - Não foi possível criar a entrada com o caminho %1. + Não foi possível criar a entrada com o caminho %1 Enter password for new entry: @@ -6310,19 +7476,19 @@ Tem a certeza de que a deseja substituir? Writing the database failed %1. - Não foi possível escrever na base de dados %1. + Não foi possível escrever na base de dados %1 Successfully added entry %1. - Entrada %1 adicionada com sucesso. + Entrada %1 adicionada com sucesso Adds a new group to a database. - Adiciona um novo grupo à base de dados. + Adiciona um novo grupo à base de dados Path of the group to add. - Caminho do grupo a adicionar. + Caminho do grupo a adicionar Group %1 already exists! @@ -6334,7 +7500,7 @@ Tem a certeza de que a deseja substituir? Successfully added group %1. - Grupo %1 adicionado com sucesso. + Grupo %1 adicionado com sucesso Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. @@ -6354,7 +7520,7 @@ Tem a certeza de que a deseja substituir? Analyze passwords for weaknesses and problems. - Analisar qualidade e problemas das palavras-passe. + Analisar qualidade e problemas das palavras-passe Cannot find HIBP file: %1 @@ -6362,7 +7528,7 @@ Tem a certeza de que a deseja substituir? Evaluating database entries using okon… - A avaliar entradas da base de dados com okon... + A avaliar entradas da base de dados com okon… Failed to open HIBP file %1: %2 @@ -6370,11 +7536,11 @@ Tem a certeza de que a deseja substituir? Evaluating database entries against HIBP file, this will take a while… - A avaliar as entradas da base de dados contra o ficheiro HIBP, por favor aguarde... + A avaliar as entradas da base de dados contra o ficheiro HIBP, por favor aguarde… Password for '%1' has been leaked %2 time(s)! - A palavra-passe para '%1' foi exposta %2 vez!A palavra-passe para '%1' foi exposta %2 vezes! + A palavra-passe para '%1' foi exposta %2 vez!A palavra-passe para '%1' foi exposta %2 vezes!A palavra-passe para '%1' foi exposta %2 vezes! Password for '%1' has been leaked! @@ -6398,23 +7564,23 @@ Tem a certeza de que a deseja substituir? Could not find entry with path %1. - Não foi possível encontrar a entrada com o caminho %1. + Não foi possível encontrar a entrada com o caminho %1 Could not find attachment with name %1. - Não foi possível encontrar o anexo com o nome "%1". + Não foi possível encontrar o anexo com o nome "%1" No export target given. Please use '--stdout' or specify an 'export-file'. - Não indicou o destino. Utilize '--stdout' ou especifique um 'export-file'. + Não indicou o destino. Utilize '--stdout' ou especifique um 'export-file' Could not open output file %1. - Não foi possível abrir %1. + Não foi possível abrir %1 Successfully exported attachment %1 of entry %2 to %3. - O anexo "%1" da entrada "%2" foi exportado para "%3". + O anexo "%1" da entrada "%2" foi exportado para "%3" Overwrite existing attachments. @@ -6422,7 +7588,7 @@ Tem a certeza de que a deseja substituir? Imports an attachment to an entry. - Importa um anexo para uma entrada. + Importa um anexo para uma entrada Path of the entry. @@ -6438,19 +7604,19 @@ Tem a certeza de que a deseja substituir? Attachment %1 already exists for entry %2. - O anexo "%1" já existe na entrada "%2". + O anexo "%1" já existe na entrada "%2" Could not open attachment file %1. - Não foi possível abrir o anexo %1. + Não foi possível abrir o anexo "%1" Successfully imported attachment %1 as %2 to entry %3. - O anexo "%1" foi importado como "%2" para a entrada "%3". + O anexo "%1" foi importado como "%2" para a entrada "%3" Remove an attachment of an entry. - Remove um anexo de uma entrada. + Remove um anexo de uma entrada Name of the attachment to be removed. @@ -6458,37 +7624,37 @@ Tem a certeza de que a deseja substituir? Successfully removed attachment %1 from entry %2. - O anexo "%1" foi removido da entrada "%2". + O anexo "%1" foi removido da entrada "%2" Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Copiar atributo para a área de transferÊncia. Utiliza "password" se nenhum for especificado. + Copiar atributo para a área de transferência. Utiliza "password" se nenhum for especificado. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - Copiar TOTP para a área de transferência (equivalente a "-a totp"). + Copiar TOTP para a área de transferência (equivalente a "-a totp") Must match only one entry, otherwise a list of possible matches is shown. - Deve corresponder apenas a uma entrada, caso contrário é mostrada uma lista de possíveis correspondências. + Deve corresponder apenas a uma entrada, caso contrário é mostrada uma lista de possíveis correspondências Copy an entry's attribute to the clipboard. - Copiar atributo de uma entrada para a área de transferência. + Copiar atributo de uma entrada para a área de transferência Path of the entry to clip. clip = copy to clipboard - Caminho da entrada a copiar. + Caminho da entrada a copiar Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - Tempo limite antes de limpar a área de transferência (o padrão é %1 segundos, definir para 0 para ilimitado). + Tempo limite antes de limpar a área de transferência (o padrão é %1 segundos, definir para 0 para ilimitado) Invalid timeout value %1. - Valor limite inválido %1. + Valor limite inválido %1 Multiple entries matching: @@ -6500,23 +7666,23 @@ Tem a certeza de que a deseja substituir? Entry %1 not found. - Entrada %1 não encontrada. + Entrada %1 não encontrada ERROR: Please specify one of --attribute or --totp, not both. - ERRO: tem que especificar --attribute ou --totp, mas não ambos. + ERRO: tem que especificar --attribute ou --totp, mas não ambos Entry with path %1 has no TOTP set up. - A entrada com o caminho %1 não tem uma TOTP configurada. + A entrada com o caminho %1 não tem uma TOTP configurada ERROR: attribute %1 is ambiguous, it matches %2. - ERRO: atributo %1 é ambíguo porque coincide com %2. + ERRO: atributo %1 é ambíguo porque coincide com %2 Attribute "%1" not found. - Atributo %1 não encontrado. + Atributo "%1" não encontrado Entry's "%1" attribute copied to the clipboard! @@ -6524,7 +7690,7 @@ Tem a certeza de que a deseja substituir? Clearing the clipboard in %1 second(s)... - A área de transferência será limpa dentro de %1 segundo...A área de transferência será limpa dentro de %1 segundos... + A área de transferência será limpa dentro de %1 segundo…A área de transferência será limpa dentro de %1 segundos…A área de transferência será limpa dentro de %1 segundos… Clipboard cleared! @@ -6532,19 +7698,19 @@ Tem a certeza de que a deseja substituir? Close the currently opened database. - Fechar a base de dados aberta. + Fechar base de dados aberta Display this help. - Mostra esta ajuda. + Mostra esta ajuda Silence password prompt and other secondary outputs. - Silenciar pedidos de palavra-passe e outros resultados secundários. + Silenciar pedidos de palavra-passe e outros resultados secundários Key file of the database. - Ficheiro-chave da base de dados. + Ficheiro-chave da base de dados path @@ -6552,11 +7718,11 @@ Tem a certeza de que a deseja substituir? Deactivate password key for the database. - Desativar chave de segurança para a base de dados. + Desativar chave de segurança para a base de dados Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Slot Yubikey e número de série (opcional) para aceder à base de dados (exemplo 1:7370001). + Slot Yubikey e número de série (opcional) para aceder à base de dados (exemplo 1:7370001) slot[:serial] @@ -6564,15 +7730,19 @@ Tem a certeza de que a deseja substituir? Missing positional argument(s). - Argumento posicional em falta. + Argumento posicional em falta Too many arguments provided. - Indicou demasiados argumentos. + Indicou demasiados argumentos + + + Path of the database. + Caminho da base de dados Target decryption time in MS for the database. - Duração (em ms) para decifrar a base de dados. + Duração (em ms) para decifrar a base de dados time @@ -6580,35 +7750,31 @@ Tem a certeza de que a deseja substituir? Set the key file for the database. - Definir um ficheiro-chave para a base de dados. + Definir um ficheiro-chave para a base de dados Set a password for the database. - Definir uma palavra-passe para a base de dados. + Definir uma palavra-passe para a base de dados Create a new database. - Criar uma nova base de dados. - - - Path of the database. - Caminho da base de dados. + Criar uma nova base de dados Invalid decryption time %1. - Duração inválida %1. + Duração inválida %1 Target decryption time must be between %1 and %2. - A duração para decifrar tem que estar entre %1 e%2. + A duração para decifrar tem que estar entre %1 e%2 Failed to set database password. - Não foi possível definir a palavra-passe para a base de dados. + Não foi possível definir a palavra-passe para a base de dados Loading the key file failed - Não foi possível carregar o ficheiro-chave. + Não foi possível carregar o ficheiro-chave No key is set. Aborting database creation. @@ -6616,31 +7782,183 @@ Tem a certeza de que a deseja substituir? Benchmarking key derivation function for %1ms delay. - Função de derivação de chave para um atraso de %1 ms. + Função de derivação de chave para um atraso de %1 ms Setting %1 rounds for key derivation function. - A definir %1 ciclos para a função de derivação da chave. + A definir %1 ciclos para a função de derivação da chave error while setting database key derivation settings. - erro ao definir as definições de derivação da chave. + erro ao definir as definições de derivação da chave File %1 already exists. - Ficheiro %1 já existe. + Ficheiro %1 já existe Failed to save the database: %1. - Não foi possível guardar a base de dados: %1. + Não foi possível guardar a base de dados: %1 Successfully created new database. - A base de dados foi criada com sucesso. + A base de dados foi criada com sucesso + + + Unset the password for the database. + Não definir palavra-passe para a base de dados + + + Unset the key file for the database. + Não definir ficheiro-chave para a base de dados + + + Edit a database. + Editar base de dados + + + Cannot use %1 and %2 at the same time. + Não pode usar %1 e %2 em simultâneo + + + Could not change the database key. + Não foi possível alterar a chave da base de dados + + + Database was not modified. + A base de dados não foi modificada + + + Writing the database failed: %1 + Não foi possível escrever na base de dados: %1 + + + Successfully edited the database. + Base de dados editada com sucesso + + + Cannot remove password: The database does not have a password. + Não pode remover a palavra-passe: a base de dados não a tem + + + Cannot remove file key: The database does not have a file key. + Não pode remover o ficheiro-chave: a base de dados não o tem + + + Loading the new key file failed: %1 + Falha ao carregar a nova chave do ficheiro: %1 + + + Found unexpected Key type %1 + Encontrado um tipo de chave inesperado: %1 + + + Cannot remove all the keys from a database. + Não pode remover todas as chaves de uma base de dados + + + Show a database's information. + Mostrar informação da base de dados + + + UUID: + UUID: + + + Name: + Nome: + + + Description: + Descrição: + + + Cipher: + Cifra: + + + KDF: + KDF: + + + Recycle bin is enabled. + Reciclagem ativada + + + Recycle bin is not enabled. + Reciclagem desativada + + + Location + Localização + + + Database created + Base de dados criada + + + Last saved + Última gravação + + + Unsaved changes + Alterações por guardar + + + yes + sim + + + no + não + + + Number of groups + Número de grupos + + + Number of entries + Numero de entradas + + + Number of expired entries + Número de entradas caducadas + + + Unique passwords + Palavras-passe unívocas + + + Non-unique passwords + Palavras-passe não unívocas + + + Maximum password reuse + Número máximo de reutilizações + + + Number of short passwords + Número de palavras-passes curtas + + + Number of weak passwords + Número de palavras-passe fracas + + + Entries excluded from reports + Entradas excluídas dos relatórios + + + Average password length + Tamanho médio das palavras-passe + + + %1 characters + %1 caracteres Word count for the diceware passphrase. - Número de palavras para a frase-chave. + Número de palavras para a frase-chave count @@ -6650,24 +7968,20 @@ Tem a certeza de que a deseja substituir? Wordlist for the diceware generator. [Default: EFF English] - Lista de palavras para o gerador. + Lista de palavras para o gerador [Padrão: EFF inglês] Generate a new random diceware passphrase. - Gerar uma frase-chave baseada em dados (diceware). + Gerar uma frase-chave baseada em dados (diceware) Invalid word count %1 Número de palavras inválido: %1 - - The word list is too small (< 1000 items) - A lista de palavras é muito pequena (< 1000 itens) - Title for the entry. - Título para a entrada. + Título para a entrada title @@ -6675,39 +7989,35 @@ Tem a certeza de que a deseja substituir? Edit an entry. - Editar entrada. + Editar entrada Path of the entry to edit. - Caminho da entrada a editar. + Caminho da entrada a editar Not changing any field for entry %1. - Não foi alterado qualquer campo para a entrada %1. + Não foi alterado qualquer campo para a entrada %1 Enter new password for entry: Introduza a nova palavra-passe da entrada: - - Writing the database failed: %1 - Não foi possível escrever na base de dados: %1 - Successfully edited entry %1. - Entrada %1 editada com sucesso. + Entrada %1 editada com sucesso Perform advanced analysis on the password. - Executar análise avançada da palavra-passe. + Executar análise avançada da palavra-passe Password for which to estimate the entropy. - Palavra-passe para a qual será estimada a entropia. + Palavra-passe para a qual será estimada a entropia Estimate the entropy of a password. - Estimar entropia da palavra-passe. + Estimar entropia da palavra-passe Length %1 @@ -6811,15 +8121,11 @@ Tem a certeza de que a deseja substituir? Exit interactive mode. - Sair do modo interativo. - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formato a utilizar para a exportação. As opções possíveis são 'xml' e 'csv'. Por definição, é utilizado o formato 'XML'. + Sair do modo interativo Exports the content of a database to standard output in the specified format. - Exporta o conteúdo da base de dados para o formato especificado. + Exporta o conteúdo da base de dados para o formato especificado Unable to export database to XML: %1 @@ -6879,7 +8185,7 @@ Tem a certeza de que a deseja substituir? Generate a new random password. - Gerar nova palavra-passe aleatória. + Gerar nova palavra-passe aleatória Invalid password length %1 @@ -6891,7 +8197,7 @@ Tem a certeza de que a deseja substituir? Display command help. - Mostra a ajuda para os comandos. + Mostra a ajuda para os comandos Available commands: @@ -6899,15 +8205,15 @@ Tem a certeza de que a deseja substituir? Import the contents of an XML database. - Importar conteúdo de uma base de dados no formato XML. + Importar conteúdo de uma base de dados no formato XML Path of the XML database export. - Caminho para guardar a base de dados em XML. + Caminho para guardar a base de dados em XML Path of the new database. - Caminho da nova base de dados. + Caminho da nova base de dados Unable to import XML database: %1 @@ -6915,107 +8221,7 @@ Tem a certeza de que a deseja substituir? Successfully imported database. - Base de dados importada com sucesso. - - - Show a database's information. - Mostrar informação da base de dados. - - - UUID: - UUID: - - - Name: - Nome: - - - Description: - Descrição: - - - Cipher: - Cifra: - - - KDF: - KDF: - - - Recycle bin is enabled. - Reciclagem ativada. - - - Recycle bin is not enabled. - Reciclagem desativada. - - - Location - Localização - - - Database created - Base de dados criada - - - Last saved - Última gravação - - - Unsaved changes - Alterações por guardar - - - yes - sim - - - no - não - - - Number of groups - Número de grupos - - - Number of entries - Numero de entradas - - - Number of expired entries - Número de entradas caducadas - - - Unique passwords - Palavras-passe unívocas - - - Non-unique passwords - Palavras-passe não unívocas - - - Maximum password reuse - Número máximo de reutilizações - - - Number of short passwords - Número de palavras-passes curtas - - - Number of weak passwords - Número de palavras-passe fracas - - - Entries excluded from reports - Entradas excluídas dos relatórios - - - Average password length - Tamanho médio das palavras-passe - - - %1 characters - %1 caracteres + Base de dados importada com sucesso Unknown command %1 @@ -7033,11 +8239,11 @@ Comandos disponíveis: Name of the command to execute. - Nome do comando a executar. + Nome do comando a executar Displays debugging information. - Mostra a informação de depuração. + Mostra a informação de depuração Invalid command %1. @@ -7049,11 +8255,11 @@ Comandos disponíveis: Flattens the output to single lines. - Restringe o resultado para uma linha única. + Restringe o resultado para uma linha única List database entries. - Listar entradas da base de dados. + Listar entradas da base de dados Path of the group to list. Default is / @@ -7061,27 +8267,27 @@ Comandos disponíveis: Cannot find group %1. - Não foi possível encontrar o grupo %1. + Não foi possível encontrar o grupo %1 Use the same credentials for both database files. - Utilizar as mesmas credenciais para ambos os ficheiros de bases de dados. + Utilizar as mesmas credenciais para ambos os ficheiros de bases de dados Key file of the database to merge from. - Ficheiro-chave da base de dados para a combinação. + Ficheiro-chave da base de dados para a combinação Deactivate password key for the database to merge from. - Desativar palavra-passe da base de dados de origem. + Desativar palavra-passe da base de dados de origem Only print the changes detected by the merge operation. - Imprimir apenas as alterações detetadas pela operação de combinação. + Imprimir apenas as alterações detetadas pela operação de combinação Yubikey slot for the second database. - 'Slot' Yubikey para a segunda base de dados. + 'Slot' Yubikey para a segunda base de dados slot @@ -7089,11 +8295,11 @@ Comandos disponíveis: Merge two databases. - Combinar duas bases de dados. + Combinar duas bases de dados Path of the database to merge from. - Caminho da base de dados de origem para a combinação. + Caminho da base de dados de origem para a combinação Error reading merge file: @@ -7107,43 +8313,43 @@ Comandos disponíveis: Successfully merged %1 into %2. - %1 combinado com sucesso para %2. + %1 combinado com sucesso para %2 Database was not modified by merge operation. - A base de dados não foi modificada pela combinação. + A base de dados não foi modificada pela combinação Moves an entry to a new group. - Move uma entrada para outro grupo. + Move uma entrada para outro grupo Path of the entry to move. - Caminho da entrada a mover. + Caminho da entrada a mover Path of the destination group. - Caminho do grupo de destino. + Caminho do grupo de destino Could not find group with path %1. - Não foi possível encontrar o grupo no caminho %1. + Não foi possível encontrar o grupo no caminho %1 Entry is already in group %1. - O grupo %1 já possui esta entrada. + O grupo %1 já possui esta entrada Successfully moved entry %1 to group %2. - Entrada %1 movida com sucesso para o grupo %2. + Entrada %1 movida com sucesso para o grupo %2 Open a database. - Abrir base de dados. + Abrir base de dados Path of the entry to remove. - Caminho da entrada a remover. + Caminho da entrada a remover Unable to save database to file: %1 @@ -7151,47 +8357,51 @@ Comandos disponíveis: Successfully recycled entry %1. - Entrada %1 movida para a reciclagem. + Entrada %1 movida para a reciclagem Successfully deleted entry %1. - A entrada %1 foi apagada. + A entrada %1 foi eliminada Path of the group to remove. - Caminho do grupo a remover. + Caminho do grupo a remover Cannot remove root group from database. - Não é possível remover o grupo raiz da base de dados. + Não é possível remover o grupo raiz da base de dados Successfully recycled group %1. - Grupo %1 enviado para a reciclagem. + Grupo %1 enviado para a reciclagem Successfully deleted group %1. - O gripo %1 foi apagado. + O grupo %1 foi eliminado Find entries quickly. - Localizar entradas rapidamente. + Localizar entradas rapidamente Search term. - Termo de pesquisa. + Termo de pesquisa Show the entry's current TOTP. - Mostrar TOTP da entrada atual. + Mostrar TOTP da entrada atual Show the protected attributes in clear text. - Mostrar atributos protegidos em 'clear-text'. + Mostrar atributos protegidos em 'clear-text' + + + Show all the attributes of the entry. + Mostrar todos os atributos da entrada Show the attachments of the entry. - Mostra o anexo de uma entrada. + Mostra o anexo de uma entrada 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. @@ -7203,19 +8413,19 @@ Comandos disponíveis: Show an entry's information. - Mostrar informações de uma entrada. + Mostrar informações de uma entrada Name of the entry to show. - Nome da entrada a mostrar. + Nome da entrada a mostrar ERROR: unknown attribute %1. - Erro: atributo desconhecido %1. + Erro: atributo desconhecido %1 No attachments present. - Não existem anexos. + Não existem anexos Attachments: @@ -7259,6 +8469,10 @@ Deve considerar a geração de um novo ficheiro-chave. Invalid YubiKey serial %1 N.º de série YubiKey inválido %1 + + Please present or touch your YubiKey to continue. + Introduza ou toque na sua YubiKey para continuar + Enter password to encrypt database (optional): Introduza a palavra-passe para cifrar a base de dados (opcional): @@ -7273,7 +8487,7 @@ Deve considerar a geração de um novo ficheiro-chave. Error: Passwords do not match. - Erro: disparidade nas palavras-passe. + Erro: disparidade nas palavras-passe No program defined for clipboard manipulation @@ -7331,7 +8545,7 @@ Deve considerar a geração de um novo ficheiro-chave. Password is used %1 time(s) - Palavra-passe utilizada %1 vezePalavra-passe utilizada %1 vezes + Palavra-passe utilizada %1 vezePalavra-passe utilizada %1 vezesPalavra-passe utilizada %1 vezes Password has expired @@ -7351,7 +8565,7 @@ Deve considerar a geração de um novo ficheiro-chave. Password expires in %1 day(s) - Palavra-passe caduca dentro de %1 diaPalavra-passe caduca dentro de %1 dias + Palavra-passe caduca dentro de %1 diaPalavra-passe caduca dentro de %1 diasPalavra-passe caduca dentro de %1 dias Password will expire soon @@ -7375,11 +8589,11 @@ Deve considerar a geração de um novo ficheiro-chave. Debugging mode is disabled. - Modo de depuração desativado. + Modo de depuração desativado Debugging mode is enabled. - Modo de depuração ativado. + Modo de depuração ativado Operating system: %1 @@ -7423,31 +8637,31 @@ Kernel: %3 %4 over %1 year(s) - %1 ano%1 anos + %1 ano%1 anos%1 anos about %1 month(s) - aproximadamente há %1 mês%1 meses + aproximadamente há %1 mês%1 meses%1 meses %1 week(s) - %1 semana%1 semanas + %1 semana%1 semanas%1 semanas %1 day(s) - %1 dia%1 dias + %1 dia%1 dias%1 dias %1 hour(s) - %1 horas1 hora + %1 horas1 hora1 hora %1 minute(s) - %1 minuto%1 minutos + %1 minuto%1 minutos%1 minutos - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan library tem que ser, pelo menos, 2.11.x mas foi encontrada %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + A biblioteca Botan tem que estar na V %1 e foi encontrada %2.%3.%4 Cryptographic libraries: @@ -7463,19 +8677,19 @@ Kernel: %3 %4 SymmetricCipher::init: Invalid cipher mode. - SymmetricCipher::init: Modo de cifra inválido. + SymmetricCipher::init: Modo de cifra inválido SymmetricCipher::init: Invalid IV size of %1 for %2. - SymmetricCipher::init: Tamanho IV inválido de %1 para %2. + SymmetricCipher::init: Tamanho IV inválido de %1 para %2 Cipher not initialized prior to use. - Cifra não iniciada antes da utilização. + Cifra não iniciada antes da utilização Cannot process 0 length data. - Não pode processar dados com dimensão 0. + Não pode processar dados com dimensão 0 unknown executable (DBus address %1) @@ -7497,18 +8711,6 @@ Kernel: %3 %4 file empty ficheiro vazio - - malformed string - cadeira mal fomada - - - missing closing quote - carácter de fecho em falta - - - %1: (row, col) %2,%3 - %1: (linha, coluna) %2,%3 - AES 256-bit AES 256-bit @@ -7547,7 +8749,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - A área de transferência será limpa dentro de %1 segundo...A área de transferência será limpa dentro de %1 segundos... + A área de transferência será limpa dentro de %1 segundo…A área de transferência será limpa dentro de %1 segundos…A área de transferência será limpa dentro de %1 segundos… Group @@ -7588,12 +8790,12 @@ Kernel: %3 %4 %1 ms milliseconds - %1 ms%1 ms + %1 ms%1 ms%1 ms %1 s seconds - %1 s%1 s + %1 s%1 s%1 s Do you really want to delete the entry "%1" for good? @@ -7601,11 +8803,11 @@ Kernel: %3 %4 Do you really want to delete %n entry(s) for good? - Tem a certeza de que deseja eliminar %n entrada?Tem a certeza de que deseja eliminar %n entradas? + Tem a certeza de que deseja eliminar %n entrada?Tem a certeza de que deseja eliminar %n entradas?Tem a certeza de que deseja eliminar %n entradas? Delete entry(s)? - Eliminar entrada?Eliminar entradas? + Eliminar entrada?Eliminar entradas?Eliminar entradas? Do you really want to move entry "%1" to the recycle bin? @@ -7613,11 +8815,11 @@ Kernel: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - Tem a certeza de que deseja mover %n entrada para a reciclagem?Tem a certeza de que deseja mover %n entradas para a reciclagem? + Tem a certeza de que deseja mover %n entrada para a reciclagem?Tem a certeza de que deseja mover %n entradas para a reciclagem?Tem a certeza de que deseja mover %n entradas para a reciclagem? Move entry(s) to recycle bin? - Mover entrada para a reciclagem?Mover entradas para a reciclagem? + Mover entrada para a reciclagem?Mover entradas para a reciclagem?Mover entradas para a reciclagem? Replace references to entry? @@ -7625,7 +8827,7 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - A entrada "%1" tem %2 referência. Deseja substituir a referência com valores, ignorar ou apagar a entrada?A entrada "%1" tem %2 referências. Deseja substituir as referências com valores, ignorar a entrada ou eliminar? + A entrada "%1" tem %2 referência. Deseja substituir a referência com valores, ignorar ou eliminar?A entrada "%1" tem %2 referências. Deseja substituir as referências com valores, ignorar ou eliminar?A entrada "%1" tem %2 referências. Deseja substituir as referências com valores, ignorar ou eliminar? User name @@ -7687,34 +8889,26 @@ Kernel: %3 %4 read password of the database from stdin ler palavra-passe da base de dados a partir de stdin - - allow app screen recordering and screenshots - permitir a gravação de ecrã e capturas de ecrã da aplicação - - - Locked databases. - Bases de dados bloqueadas. - Database failed to lock. - Não foi possível desbloquear a base de dados. + Não foi possível desbloquear a base de dados Another instance of KeePassXC is already running. - Já está em execução uma instância do KeePassXC. + Já está em execução uma instância do KeePassXC + + + KeePassXC is not running. No open database to lock + KeePassXC não está em execução. Não há nenhuma base de dados para bloquear Fatal error while testing the cryptographic functions. - Erro fatal ao testar as funções de criptografia. + Erro fatal ao testar as funções de criptografia KeePassXC - Error KeePassXC - Erro - - Warning: Failed to prevent screenshots on a top level window! - Aviso: falha ao evitar capturas de ecrã numa janela de nível superior! - Database password: Palavra-passe da base de dados: @@ -7738,8 +8932,312 @@ Kernel: %3 %4 Não foi possível iniciar sessão com Windows Hello - Please present or touch your YubiKey to continue. - Introduza ou toque na sua YubiKey para continuar. + Warning: Failed to block screenshot capture on a top-level window. + Aviso: falha ao bloquear a captura de ecrã na janela de nível superior, + + + Invalid Cipher + Cifra inválida + + + Invalid KDF + Função de derivação de chave inválida + + + Access to all entries is denied + Não permitir acesso às entradas + + + allow screenshots and app recording (Windows/macOS) + permitir captura de ecrã e gravação de aplicações (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Define o ficheiro chave para a base de dados. +Esta opção está obsoleta, em vez disso use --set-key-file. + + + Databases have been locked. + As bases de dados foram bloqueadas. + + + Attestation not supported + Atestado não suportado + + + Credential is excluded + Credencial excluída + + + Passkeys request canceled + Cancelado o pedido de chaves-mestras + + + Invalid user verification + Verificação de utilizador inválida + + + Empty public key + Chave pública vazia + + + Invalid URL provided + URL inválido + + + Passkeys + Chaves-mestras + + + AES initialization failed + Falha na inicialização AES + + + AES encrypt failed + Falha ao cifrar com AES + + + Failed to store in Linux Keyring + Não foi possível guardar no chaveiro Linux + + + Polkit returned an error: %1 + 'Polkit' devolveu um erro: %1 + + + Could not locate key in keyring + Não foi possível localizar a chave no chaveiro + + + Could not read key in keyring + Não foi possível ler a chave no chaveiro + + + AES decrypt failed + Falha ao decifrar com AES + + + No Polkit authentication agent was available + Não foi encontrado qualquer agente de autenticação 'Polkit' + + + Polkit authorization failed + Não foi possível autorizar com 'Polkit' + + + No Quick Unlock provider is available + Não existe qualquer fornecedor de desbloqueio rápido + + + Failed to init KeePassXC crypto. + Não foi possível iniciar a criptografia KeePassXC + + + Failed to encrypt key data. + Não foi possível cifrar os dados da chave + + + Failed to get Windows Hello credential. + Não foi possível obter a credencial Windows Hello + + + Failed to decrypt key data. + Não foi possível decifrar os dados da chave + + + Origin is empty or not allowed + Origem vazia ou não permitida + + + Effective domain is not a valid domain + O domínio efetivo não é válido + + + Origin and RP ID do not match + A origem e a ID do RP não coincidem + + + No supported algorithms were provided + Não foram fornecidos algoritmos suportados + + + Wait for timer to expire + Esperar pela caducidade do temporizador + + + Challenge is shorter than required minimum length + O desafio é menor do que o tamanho mínimo permitido + + + user.id does not match the required length + user.id não coincide com o tamanho necessário + + + Favorite + Tag for favorite entries + Favoritas + + + File does not exist. + O ficheiro não existe + + + Cannot open file: %1 + Não foi possível abrir o ficheiro: %1 + + + Cannot parse file: %1 at position %2 + Não é possível processar o ficheiro: %1 na posição %2 + + + Failed to decrypt json file: %1 + Falha ao decifrar o ficheiro json: %1 + + + Invalid encKeyValidation field + Campo encKeyValidation inválido + + + Invalid cipher list within encKeyValidation field + Lista de cifras inválida no campo encKeyValidation + + + Wrong password + Palavra-passe errada + + + Invalid encrypted data field + Campo de dados cifrado inválido + + + Invalid cipher list within encrypted data field + Lista de cifras inválida dentro do campo de dados cifrados + + + Cannot initialize cipher + Não é possível inicializar a cifra + + + Cannot decrypt data + Não foi possível decifrar os dados + + + Bitwarden Import + Importação Bitwarden + + + Archived + Tag for archived entries + Arquivada + + + Invalid 1PUX file format: Not a valid ZIP file. + Formato de ficheiro 1PUX inválido: não é um ficheiro ZIP válido. + + + Invalid 1PUX file format: Missing export.data + Formato de ficheiro 1PUX inválido: export.data em falta + + + 1Password Import + Importação 1Password + + + Enter Shortcut + Digite o atalho + + + Action + Ação + + + Shortcuts + Atalhos + + + Unknown passkeys error + Erro desconhecido de chaves-mestras + + + Invalid KDF iterations, cannot decrypt json file + Interações KDF inválidas, não é possível decifrar o ficheiro .json + + + Unsupported format, ensure your Bitwarden export is password-protected + Formato não suportado. Verifique se a exportação Bitwarden está protegida por palavra-passe. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Apenas existe suporte para PBKDF e Argon2. Não foi possível decifrar o ficheiro json. + + + Reset Shortcuts + Repor atalhos + + + Double click an action to change its shortcut + Dois cliques na ação para alterar o atalho + + + Filter... + Filtro... + + + Shortcut Conflict + Conflito de atalhos + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + O atalho %1 está em conflito com '%2'. Substituir atalho? + + + Cannot generate valid passphrases because the wordlist is too short + Não foi possível gerar uma frase-chave válida porque a lista de palavras é pequena + + + Encrypted files are not supported. + Os ficheiros cifrados não não suportados. + + + Proton Pass Import + Importação de Proton Pass + + + Delete plugin data? + Eliminar dados do suplemento? + + + Delete plugin data from Entry(s)? + Eliminar dados do suplemento da entrada?Eliminar dados do suplemento das entradas?Eliminar dados do suplemento das entradas? + + + Passkey + Chave-mestra + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Formato a utilizar para a exportação. As escolhas possíveis são: 'xml', 'csv' e 'html'. Por omissão, é utilizado o formato 'xml'. + + + start minimized to the system tray + Iniciar minimizado na bandeja do sistema + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Etiquetas @@ -7769,27 +9267,46 @@ Kernel: %3 %4 QtIOCompressor::open The gzip format not supported in this version of zlib. - O formato gzip não é suportado por esta versão zlib. + O formato gzip não é suportado por esta versão zlib Internal zlib error: Erro interno zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + O comando `%1` não terminou a tempo. O processo foi interrompido. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Houve uma falha ao enviar a base de dados combinada. O comando `%1` não foi concluído a tempo. O processo foi interrompido. + + + Invalid download parameters provided. + Foram fornecidos parâmetros de descarregamento inválidos. + + + Command `%1` failed to download database. + O comando `%1` não conseguiu descarregar a base de dados. + + + Invalid database pointer or upload parameters provided. + O ponteiro da base de dados ou os parâmetros de carregamento fornecidos são inválidos. + + + Command `%1` exited with status code: %2 + O comando `%1` foi encerrado com o código de estado: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Houve uma falha ao carregar a base de dados combinada. O comando `%1` foi encerrado com o código de estado: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Excluir do relatório as entradas caducadas - - - Show only entries which have URL set - Mostrar apenas as entradas com URL definido - - - Show only entries which have browser settings in custom data - Mostrar apenas as entradas que possuam definições do navegador em dados personalizados - Double-click entries to edit. Duplo clique nas entradas para editar @@ -7824,11 +9341,11 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - Por favor aguarde enquanto as estatísticas estão a ser calculadas... + Por favor aguarde enquanto as estatísticas estão a ser calculadas… No entries with a URL, or none has browser extension settings saved. - Não existem entradas com URL definido ou com definições de integração com navegador guardadas. + Não existem entradas com URL definido ou com definições de integração com navegador guardadas Title @@ -7844,54 +9361,63 @@ Kernel: %3 %4 Edit Entry… - Editar entrada... + Editar entrada… Delete Entry(s)… - Eliminar entrada...Eliminar entradas... + Eliminar entrada…Eliminar entradas…Eliminar entradas… Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + Expirar entrada...Expirar entradas...Expirar entradas... + + + Only show entries that have a URL + Mostrar apenas as entradas que tenham um URL + + + Only show entries that have been explicitly allowed or denied + Mostrar apenas as entradas que foram, explicitamente, permitidas ou recusadas + + + Show expired entries + Mostrar entradas caducadas + + + (Expired) + (Caducadas) + + + Delete plugin data from Entry(s)… + Eliminar dados do suplemento da entrada…Eliminar dados do suplemento das entradas…Eliminar dados do suplemento das entradas… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Excluir do relatório as entradas caducadas + Show expired entries + Mostrar entradas caducadas - Also show entries that have been excluded from reports - Incluir também as entradas que tenham sido excluídas dos relatórios + (Expired) + (Caducadas) Hover over reason to show additional details. Double-click entries to edit. Passe com o rato pelo motivo para obter mais informação. Clique duas vezes na entrada para editar. - - Bad - Password quality - - Bad — password must be changed Má - deve alterar a palavra-passe - - Poor - Password quality - - Poor — password should be changed Fraquinha - deve alterar a palavra-passe - - Weak - Password quality - Fraca - Weak — consider changing the password Fraca - considere alterar a palavra-passe @@ -7906,7 +9432,7 @@ Kernel: %3 %4 Please wait, health data is being calculated… - Por favor aguarde, os dados estão a ser calculados... + Por favor aguarde, os dados estão a ser calculados… Congratulations, everything is healthy! @@ -7934,12 +9460,20 @@ Kernel: %3 %4 Delete Entry(s)… - Eliminar entrada...Eliminar entradas... + Eliminar entrada…Eliminar entradas…Eliminar entradas… Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + Expirar entrada...Expirar entradas...Expirar entradas... + + + Show entries that have been excluded from reports + Mostrar entradas que tenham sido excluídas dos relatórios + ReportsWidgetHibp @@ -7973,7 +9507,7 @@ Kernel: %3 %4 Password exposed… - Palavra-passe exposta... + Palavra-passe exposta… (Excluded) @@ -8025,22 +9559,93 @@ Kernel: %3 %4 Edit Entry… - Editar entrada... + Editar entrada… Delete Entry(s)… - Eliminar entrada...Eliminar entradas... + Eliminar entrada…Eliminar entradas…Eliminar entradas… Exclude from reports Excluir dos relatórios + + Expire Entry(s)… + Expirar entrada...Expirar entradas...Expirar entradas... + + + + ReportsWidgetPasskeys + + Export + Exportar + + + Import + Importar + + + List of entry URLs + Lista dos URL das entradas + + + Title + Título + + + Path + Caminho + + + Username + Nome de utilizador + + + URLs + URL + + + Edit Entry… + Editar entrada… + + + Delete Entry(s)… + Eliminar entrada…Eliminar entradas…Eliminar entradas… + + + Relying Party + Entidades fiáveis + + + Show expired entries + Mostrar entradas caducadas + + + (Expired) + (Caducadas) + + + Export Confirmation + Confirmação de exportação + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + O ficheiro ficará vulnerável a roubo e a utilização não autorizada, se a deixar sem segurança. Tem a certeza de que deseja continuar? + + + Please wait, list of entries with passkeys is being updated… + Aguarde, a lista de entradas com chaves-mestras está a ser atualizada… + + + No entries with passkeys. + Não há entradas com chaves-mestras. + ReportsWidgetStatistics Hover over lines with error icons for further information. - Passe com o rato por cima das linhas com o erro para mais informações. + Passe com o rato por cima das linhas com o erro para mais informações Name @@ -8052,7 +9657,7 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - Por favor aguarde. Estamos a calcular as estatísticas da base de dados... + Por favor aguarde. Estamos a calcular as estatísticas da base de dados… Database name @@ -8088,7 +9693,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - A base de dados foi modificada mas as alterações ainda não foram guardadas. + A base de dados foi modificada mas as alterações ainda não foram guardadas Number of groups @@ -8175,7 +9780,7 @@ Kernel: %3 %4 No agent running, cannot add identity. - O agente não está em execução e não é possível adicionar a identidade. + O agente não está em execução por isso não é possível adicionar a identidade. Key identity ownership conflict. Refusing to add. @@ -8203,18 +9808,26 @@ Kernel: %3 %4 No agent running, cannot remove identity. - O agente não está em execução e não é possível remover a identidade. + O agente não está em execução por isso não é possível remover a identidade. No agent running, cannot list identities. - Nenhum agente em execução, não é possível listar as identidades. + O agente não está em execução por isso não é possível listar as identidades. + + + Failed to remove all SSH identities from agent. + Falha ao remover todas as identidades SSH do agente. + + + All SSH identities removed from agent. + Todas as identidades SSH foram removidas do agente. SearchHelpWidget Search Help - Pesquisar na ajuda + Ajuda sobre pesquisas Search terms are as follows: [modifiers][field:]["]term["] @@ -8273,12 +9886,16 @@ Kernel: %3 %4 Search Help - Pesquisar na ajuda + Ajuda sobre pesquisas + + + Save Search + Guardar pesquisa Search (%1)… Search placeholder text, %1 is the keyboard shortcut - Pesquisar (%1)... + Pesquisar (%1)… Case sensitive @@ -8349,30 +9966,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Confirmar quando as palavras-passe forem obtidas pelos clientes - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p>Esta definição não substitui a desativação das perguntas relativas à Reciclagem<span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;"></p></body></html> - Confirm when clients request entry deletion Confirmar quando os clientes solicitam uma remoção - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Melhora a compatibilidade com aplicações que procuram por palavras-passe, mas sem desbloquear a base de dados.</p><p> -Mas esta ativação também pode implicar o encerramento da aplicação se a base de dados não puder ser desbloqueada dentro do tempo limite (normalmente 25 seg., embora possa ser definido outro tempo limite em algumas aplicações).</p></body></html> - - Prompt to unlock database before searching Pedir desbloqueio da base de dados antes de pesquisar @@ -8395,7 +9992,15 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas Save current changes to activate the plugin and enable editing of this section. - Guarde as alterações atuais para ativar o plugin e permitir a edição desta secção. + Guarde as alterações atuais para ativar o plugin e permitir a edição desta secção + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Esta definição não substitui a desativação dos avisos de esvaziar a reciclagem </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Isso melhora a compatibilidade com certas aplicações que procuram a palavra-passe sem desbloquear a base de dados primeiro.</p><p>Mas ativar isso também pode travar o cliente se a base de dados não puder ser desbloqueada dentro de um determinado tempo limite. (Normalmente 25s, mas pode ser um valor diferente definido em aplicações.) </p></body></html> @@ -8457,7 +10062,7 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas ShareExport Could not write export container. - Não foi possível gravar o contentor. + Não foi possível gravar o contentor @@ -8505,8 +10110,12 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas TagModel - All - Tudo + Clear Search + Limpar pesquisa + + + All Entries + Todas as entradas Expired @@ -8517,6 +10126,25 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas Palavras-passe fracas + + TagView + + Remove Search + Remover pesquisa + + + Remove Tag + Remover etiqueta + + + Confirm Remove Tag + Confirmação de remoção + + + Remove tag "%1" from all entries in this database? + Tem a certeza de que deseja remover a etiqueta "%1" de todas as entradas desta base de dados? + + TotpDialog @@ -8529,7 +10157,7 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas Expires in <b>%n</b> second(s) - Caduca dentro de <b>%n</b> segundoCaduca dentro de <b>%n</b> segundos + Caduca dentro de <b>%n</b> segundoCaduca dentro de <b>%n</b> segundosCaduca dentro de <b>%n</b> segundos @@ -8541,15 +10169,15 @@ Mas esta ativação também pode implicar o encerramento da aplicação se a bas NOTE: These TOTP settings are custom and may not work with other authenticators. TOTP QR code dialog warning - Nota: estas definições TOTP são personalizadas e podem não funcionar com outros autenticadores. + Nota: estas definições TOTP são personalizadas e podem não funcionar com outros autenticadores There was an error creating the QR code. - Ocorreu um erro ao criar o código QR. + Ocorreu um erro ao criar o código QR Closing in %1 seconds. - A fechar dentro de %1 segundos. + A fechar dentro de %1 segundos @@ -8626,7 +10254,7 @@ Example: JBSWY3DPEHPK3PXP Are you sure you want to delete TOTP settings for this entry? - Tem a certeza de que deseja remover as definições TOTP desta entrada? + Tem a certeza de que deseja eliminar as definições TOTP desta entrada? @@ -8644,7 +10272,7 @@ Example: JBSWY3DPEHPK3PXP Checking for updates… - A procurar atualizações... + A procurar atualizações… Close @@ -8664,7 +10292,7 @@ Example: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - A sua versão KeePassXC é a mais recente. + A sua versão KeePassXC é a mais recente @@ -8673,26 +10301,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Armazene as suas palavras-passe em segurança com o KeePassXC - - Create new database - Criar nova base de dados - - - Open existing database - Abrir base de dados existente - - - Import from KeePass 1 - Importar de KeePass 1 - - - Import from 1Password - Importar de 1Password - - - Import from CSV - Importar de ficheiro CSV - Recent databases Bases de dados recentes @@ -8705,6 +10313,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bem-vindo ao KeePassXC %1 + + Create Database + Criar base de dados + + + Open Database + Abrir base de dados + + + Import File + Importar ficheiro: + WinUtils @@ -8721,31 +10341,8 @@ Example: JBSWY3DPEHPK3PXP Não foi possível definir o atalho global - - WindowsHello - - Failed to init KeePassXC crypto. - Não foi possível iniciar a criptografia KeePassXC - - - Failed to encrypt key data. - Não foi possível cifrar os dados da chave - - - Failed to get Windows Hello credential. - Não foi possível obter a credencial Windows Hello - - - Failed to decrypt key data. - Não foi possível decifrar os dados da chave - - YubiKey - - %1 No interface, slot %2 - %1 sem interface, ranhura %2 - General: Geral: @@ -8757,14 +10354,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Recarregar 'tokens' de hardware - - - Refresh - Recarregar - Hardware key slot selection Seleção de 'slot' para a chave de hardware @@ -8797,39 +10386,32 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Pregunta de segurança definida. Clique para alterar ou remover. - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Se tiver um <a href="https://www.yubico.com/">YubiKey</a> ou <a href="https://onlykey.io">Only Key</a>, pode utilizá-lo para mais segurança.</p><p>A chave requer que uma das suas ranhuras seja programada como <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… - A detetar chaves de hardware... + A detetar chaves de hardware… No hardware keys detected Não foram detetadas chaves de hardware - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Especificou uma ranhura inválida - %2 + Refresh hardware keys + Recarregar chaves de hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Se tiver uma <a href="https://www.yubico.com/">YubiKey</a> ou <a href="https://onlykey.io">Only Key</a>, pode utilizar para manter uma segurança adicional.</p><p>A chave requer que uma das suas ranhuras seja programada como <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + A chave física foi encontrada mas não está configurada. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Pergunta de segurança - Ranhura %3 - The YubiKey PCSC interface has not been initialized. - A interface YubiKey PCSC não foi inicializada. - - - Hardware key is currently in use. - O dispositivo de segurança está a ser utilizado. + A interface YubiKey PCSC não foi inicializada Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8841,11 +10423,26 @@ Example: JBSWY3DPEHPK3PXP Hardware key was not found or is not configured. - A chave física não foi encontrada ou não está configurada. + A chave física não foi encontrada ou não está configurada Failed to complete a challenge-response, the PCSC error code was: %1 - Erro ao tentar concluir a pergunta de segurança. O código de erro PSCSC foi: %1. + Erro ao tentar concluir a pergunta de segurança. O código de erro PSCSC foi: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Ranhura %3, %4 + + + Press + USB Challenge-Response Key interaction request + Prima + + + Passive + USB Challenge-Response Key no interaction required + Passiva @@ -8854,14 +10451,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Desconhecido - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Ranhura configurada - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Pergunta de segurança - Ranhura %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8874,11 +10463,7 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - A interface YubiKey USB não foi inicializada. - - - Hardware key is currently in use. - O dispositivo de segurança está a ser utilizado. + A interface YubiKey USB não foi inicializada Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8886,7 +10471,7 @@ Example: JBSWY3DPEHPK3PXP Hardware key timed out waiting for user interaction. - Tempo limite excedido ou à espera de interação do utilizador. + Tempo limite excedido ou à espera de interação do utilizador A USB error occurred when accessing the hardware key: %1 @@ -8894,7 +10479,17 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 - Erro ao tentar concluir a pergunta de segurança. O erro foi: %1. + Erro ao tentar concluir a pergunta de segurança. O erro foi: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Ranhura %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Ranhura %3, %4 \ No newline at end of file diff --git a/share/translations/keepassxc_ro.ts b/share/translations/keepassxc_ro.ts index eb4fc2f9c..b9744cb6e 100644 --- a/share/translations/keepassxc_ro.ts +++ b/share/translations/keepassxc_ro.ts @@ -58,7 +58,8 @@ <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">%1 </span>solicită acces la următoarele intrări: +</p></body></html> Name @@ -78,34 +79,34 @@ Details - - - - Remember - - - - Allow Selected - + Detalii Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - + Decizia dvs. va fi reținută pe toată durata în care rulează atât clientul solicitant cât și KeePassXC. + + + Remember + Reține + + + Allow Selected + Permiteți selectate Deny All && Future - + Refuză toate && în viitor Allow All && &Future - + Permite toate && &în viitor AccessControlDialog::DenyButton Deny for this program - + Refuză pentru acest program @@ -122,6 +123,10 @@ Use OpenSSH + + Use both agents + + SSH_AUTH_SOCK override @@ -150,10 +155,6 @@ SSH Agent connection is working! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +170,10 @@ Security Securitate + + This setting cannot be enabled when minimize on unlock is enabled. + Această setare nu poate fi activată atunci când este activată funcția de minimizare la deblocare. + Access error for config file %1 Eroare de acces pentru fisier de configurare %1 @@ -199,30 +204,62 @@ Monochrome (light) - + Monochrome (luminos) Monochrome (dark) - + Monochrome (întunecat) Colorful - + Colorată You must restart the application to set the new language. Would you like to restart now? - - - - Reset Settings? - Resetare Setări? - - - Are you sure you want to reset all general and security settings to default? - Sigur resetați în mod implicit toate setările generale și de securitate ? + Trebuie să reporniți aplicația pentru a seta noua limbă. Doriți să reporniți acum? Select backup storage directory + Selectați directorul de stocare de backup + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom @@ -242,7 +279,7 @@ Automatically launch KeePassXC at system startup - + Lansarea automată a KeePassXC la pornirea sistemului Minimize window at application startup @@ -256,6 +293,10 @@ Remember previously used databases Retine bazele de date utilizate anterior + + recent files + fișiere recente + Load previously open databases on startup la pornirea incărcarea bazelor de date deschise anterior @@ -272,25 +313,6 @@ Include beta releases when checking for updates Includere versiuni beta la verificarea actualizărilor - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management Gestionare fișiere @@ -301,11 +323,11 @@ Automatically save when locking database - + Salvare automată la blocarea bazei de date Automatically save non-data changes when locking database - + Salvare automată a modificărilor fără date atunci când se blochează baza de date Automatically reload the database when modified externally @@ -315,33 +337,21 @@ Backup database file before saving Fă copie de rezervă fișierului bazei de date înainte de salvare - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - Choose... - - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Temporary file moved into place - + Fișierul temporar a fost mutat la locul său Directly write to database file (dangerous) - + Scrierea directă în fișierul bazei de date (periculos) Entry Management @@ -382,7 +392,7 @@ User Interface - + Interfața cu utilizatorul Toolbar button style @@ -406,11 +416,15 @@ Toolbar button style: - + Stilul butonului din bara de instrumente: + + + Show passwords in color + Afișați parolele în culori Use monospaced font for notes - + Utilizați un font monospațiat pentru note Minimize instead of app exit @@ -422,11 +436,11 @@ Tray icon type - + Tipul de pictogramă din tavă Tray icon type: - + Tipul de pictogramă din tavă: Hide window to system tray when minimized @@ -434,43 +448,43 @@ Reset settings to default… - + Resetați setările la valorile implicite... Auto-Type - Auto tiparire + Auto-tastare Use entry title to match windows for global Auto-Type - Utilizarea titlului inregistrarii pentru a se potrivi cu ferestrele pentru auto-tiparire globala + Utilizează titlul înregistrării pentru a se potrivi cu ferestrele pentru auto-tastare globală Use entry URL to match windows for global Auto-Type - Utilizați URL-ul din inregistrare pentru a se potrivi Windows pentru autotiparire globala + Utilizează URL-ul din înregistrare pentru a se potrivi cu ferestrele pentru auto-tastare globală Always ask before performing Auto-Type - Întrebați întotdeauna înainte de a efectua auto-tiparire + Întreabă întotdeauna înainte de a efectua auto-tastare Hide expired entries from Auto-Type - + Ascunde din auto-tastare înregistrările expirate Re-lock previously locked database after performing Auto-Type - Re-Lock bazei de date blocate anterior după efectuarea auto-Type + Încuie din nou baza de dată blocată anterior după efectuarea auto-tastării Auto-Type start delay: - + Întârziere la pornire pentru auto-tastare: Global Auto-Type shortcut: - + Scurtătură globală pentru auto-tastare: Auto-type start delay milliseconds - Auto-tip de pornire întârziere milisecunde + Milisecunde de întârziere la pornire pentru auto-tastare ms @@ -479,18 +493,83 @@ Auto-Type typing delay: - + Întârziere la tastare pentru auto-tastare: Global auto-type shortcut - Comandă rapidă de tip auto global + Scurtătură globală pentru auto-tastare Auto-type character typing delay milliseconds - Tipul de auto-tastare întârziere milisecunde + Milisecunde de întârziere la auto-tastare de caracter Remember last typed entry for: + Țineți minte ultima intrare introdusă pentru: + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + zile + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection @@ -536,7 +615,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Activați deblocarea rapidă a bazei de date (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed @@ -546,34 +625,18 @@ Lock databases after minimizing the window Blocarea bazelor de date după Minimizarea ferestrei - - Require password repeat when it is visible - - Hide passwords when editing them - + Ascundeți parolele atunci când le editați Use placeholder for empty password fields - + Utilizați un marcaj pentru câmpurile de parolă goale Hide passwords in the entry preview panel Ascunderea parolelor în panoul de previzualizare inregistrarii - - Hide entry notes by default - Ascundere implicită notei inregistrarii - - - Move entries to recycle bin without confirmation - - - - Enable double click to copy the username/password entry columns - - Privacy Confidențialitate @@ -582,16 +645,32 @@ Use DuckDuckGo service to download website icons Utilizați serviciul DuckDuckGo pentru a descărca pictogramele site-ului + + Hide TOTP in the entry preview panel + Ascundeți TOTP în panoul de previzualizare a intrării + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType The requested Auto-Type sequence cannot be used due to an error: - + Secvența de auto-tastare cerută nu poate fi folosită din cauza unei erori: Auto-Type Error - + Eroare de auto-tastare Permission Required @@ -603,11 +682,11 @@ KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - + KeePassXC necesită permisiunile de accesibilitate și înregistrare de ecran pentru a efectua auto-tastare la nivel global. Înregistrarea ecranului este necesară pentru a folosi titlul ferestrelor pentru a găsi înregistrări. Dacă ați acordat deja permisiunea, poate fi nevoie să reporniți KeePassXC. Invalid entry provided - + Intrare invalidă furnizată Bracket imbalance detected, found extra { or } @@ -626,16 +705,7 @@ - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 + Entry does not have attribute for PICKCHARS: %1 @@ -683,13 +753,9 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + Secvență anulată: Caps Lock este activat Sequence aborted: Modifier keys held by user @@ -699,16 +765,20 @@ Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog Auto-Type - KeePassXC - Auto-tip-KeePassXC + Auto-tastare - KeePassXC Double click a row to perform Auto-Type or find an entry using the search: - + Dați dublu clic pe un rând pentru a efectua auto-tastare sau pentru a găsi o înregistrare folosind căutarea: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -717,15 +787,20 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + Puteți utiliza interogări de căutare avansate pentru a găsi orice intrare în bazele de date deschise. Următoarele scurtături sunt utile: +Ctrl+F - Comutarea căutării în baza de date +Ctrl+1 - Introduceți numele de utilizator +Ctrl+2 - Introduceți parola +Ctrl+3 - Introduceți TOTP +Ctrl+4 - Folosiți tastatura virtuală (numai pentru Windows) Search all open databases - + Căutați în toate bazele de date deschise Search… - + Căutare... Type Sequence @@ -749,15 +824,15 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Copy Username - + Copiați numele de utilizator Copy Password - + Copiați parola Copy TOTP - + Copiați TOTP Use Virtual Keyboard @@ -768,43 +843,43 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> BrowserAccessControlDialog KeePassXC - Browser Access Request - + KeePassXC - Solicitare de acces la browser %1 is requesting access to the following entries: - + %1 solicită acces la următoarele intrări: Remember access to checked entries - + Rețineți accesul la intrările verificate Remember - + Reține Allow access to entries - + Permiteți accesul la intrări Allow Selected - + Permiteți selectate Deny All - + Refuză toate Disable for this site + Dezactivați pentru acest site + + + Undo BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-browser-ul salvare inregistrarii - Ok Ok @@ -819,13 +894,75 @@ Please select the correct database for saving credentials. Aveți mai multe baze de date deschise. Selectați baza de date corectă pentru salvarea acreditărilor. + + KeePassXC - Select Database + KeePassXC - Selectați baza de date + + + + BrowserPasskeysConfirmationDialog + + Cancel + Anulare + + + Update + + + + Authenticate + + + + Register new + Înregistrare nouă + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + KeePassXC - Cheie de acces pentru acreditări + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + S-a găsit o cheie de acces existentă. +Doriți să înregistrați o nouă cheie de acces pentru: + + + + Select the existing passkey and press Update to replace it. + Selectați cheia de acces existentă și apăsați Actualizare pentru a o înlocui. + + + Authenticate passkey credentials for: + Autentificați acreditările cu cheie de acces pentru: + + + Do you want to register a passkey for: + Doriți să înregistrați o cheie de acces pentru: + BrowserService - - KeePassXC: Create a new group - KeePassXC: crearea unui grup nou - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -833,10 +970,6 @@ Do you want to create this group? S-a primit o solicitare de creare a unui grup nou "%1". Doriți să creați acest grup? - - KeePassXC: New key association request - KeePassXC: noua cerere de asociere cheie - You have received an association request for the following database: %1 @@ -853,79 +986,75 @@ chrome-laptop. Save and allow access Salvează și permite acces - - KeePassXC: Overwrite existing key? - KeePassXC: Suprascriere cheie existentă? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Există deja o cheie de criptare partajată cu numele "%1" . Doriți să o suprascrieți? - - KeePassXC: Update Entry - KeePassXC: actualizare intrare - Do you want to update the information in %1 - %2? Actualizați informațiile în %1 - %2 ? - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? + A fost primită o cerere de ștergere a intrării "%1". +Doriți să ștergeți această intrare? + + + %1 (Passkey) + %1 (Cheie de acces) + + + KeePassXC - Create a new group + KeePassXC - Creare grup nou + + + Disable + Dezactivează + + + KeePassXC - Overwrite existing key? - Converting attributes to custom data… - Conversia atributelor in date particularizate... + KeePassXC - Update Entry + - Abort - Anulează + KeePassXC - Delete entry + KeePassXC - Ștergeți intrarea - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: conversia atributelor KeePassHTTP + KeePassXC - New key association request + KeePassXC - Solicitare nouă de asociere chei - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Atributele convertite cu succes din %1 intrare (i). -S-au mutat %2 chei la date particularizate. - - - Successfully moved %n keys to custom data. - S-au mutat cu succes% n chei la date particularizate.S-au mutat cu succes% n chei la date particularizate.S-au mutat cu succes %n chei la date particularizate. + Passkey + Cheie de acces - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: n-a fost găsita nici o intrare cu KeePassHTTP atribute ! + KeePassXC - Passkey credentials + KeePassXC - Cheie de acces pentru acreditări - The active database does not contain an entry with KeePassHTTP attributes. - Baza de date activă nu conține nici o intrare cu atributele KeePassHTTP. + Register a new passkey to this entry: + Înregistrați o nouă cheie de acces pentru această intrare: - Don't show this warning again - Nu mai afișa acest avertisment + KeePassXC - Update passkey + KeePassXC - Actualizare cheie de acces - KeePassXC: Legacy browser integration settings detected - KeePassXC: Au fost detectate setările moștenite de integrare a browserului + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + - 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? - Setările KeePassXC-browser trebuie mutate în setările bazei de date. -Acest lucru este necesar pentru a menține conexiunile browser-ului curent. -Migrați acum setările existente? + Register + @@ -946,10 +1075,6 @@ Migrați acum setările existente? General General - - Browsers installed as snaps are currently not supported. - Browserele instalate ca snaps nu sunt acceptate momentan. - Enable integration for these browsers: Activați integrarea pentru aceste browsere: @@ -985,11 +1110,11 @@ Migrați acum setările existente? Show a notification when credentials are requested Credentials mean login data requested via browser extension - + Afișează o notificare atunci când sunt solicitate acreditări Request to unlock the database if it is locked - + Cerere de deblocare a bazei de date în cazul în care aceasta este blocată Only entries with the same scheme (http://, https://, …) are returned. @@ -1022,7 +1147,7 @@ Migrați acum setările existente? Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - + Căutați în toate bazele de date deschise pentru acreditările corespunzătoare Advanced @@ -1087,7 +1212,7 @@ Migrați acum setările existente? Browse… Button for opening file dialog - + Răsfoiți... Use a custom browser configuration location: @@ -1121,26 +1246,6 @@ Migrați acum setările existente? Custom extension ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Datorită snap sandboxing, trebuie să executați un script pentru a activa integrarea browser-ului.<br>Puteți obține acest script de la % 1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - - - - Please see special instructions for browser extension use below - Vă rugăm să consultați instrucțiunile speciale pentru utilizarea extensiei browserului de mai jos - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - - <b>Warning:</b> The following options can be dangerous! - <b>Avertizare:</b> Următoarele opțiuni pot fi periculoase! - Executable Files Fișiere executabile @@ -1157,12 +1262,52 @@ Migrați acum setările existente? Select native messaging host folder location + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog Clone Entry Options - + Opțiuni de intrare pentru clonare Append ' - Clone' to title @@ -1179,14 +1324,6 @@ Migrați acum setările existente? CsvImportWidget - - Import CSV fields - Importă câmpuri CSV - - - filename - nume fișier - size, rows, columns dimensiune, rânduri, coloane @@ -1295,50 +1432,42 @@ Migrați acum setările existente? Column %1 - - Imported from CSV file - Importat din fișier CSV - - - Original data: - Datele originale: - - - Error(s) detected in CSV file! - Eroare (i) detectată în fișierul CSV! - [%n more message(s) skipped] [% n mai mult mesaj (e) ignorate][% n mai mult mesaj (e) ignorate][%n mai mult mesaj (e) ignorate] - Error - Eroare + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - Import CSV: scriitor are erori: -%1 + Imported from CSV file: %1 + Importat dintr-un fișier CSV: %1 + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + Etichete CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - % n byte (e)% n byte (e)%n byte (e) - %n row(s) + CSV row count % n rând (e)% n rând (e)%n rând (uri) %n column(s) + CSV column count % n coloană (e)% n coloană (e)%n coloană (e) @@ -1367,11 +1496,11 @@ Migrați acum setările existente? Database save is already in progress. - + Salvarea bazei de date este deja în curs de desfășurare. Could not save, database has not been initialized! - + Nu s-a putut salva, baza de date nu a fost inițializată! Database file has unmerged changes. @@ -1385,12 +1514,20 @@ Baza de date de rezervă localizată la %2 Key not transformed. This is a bug, please report it to the developers. - + Cheia nu a fost transformată. Aceasta este o eroare, vă rugăm să o raportați dezvoltatorilor. Recycle Bin Coș de gunoi + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1413,42 +1550,13 @@ Baza de date de rezervă localizată la %2 Password field Câmp parola - - Enter Additional Credentials (if any): - Introduceți acreditări suplimentare (dacă există): - - - Key File: - Fișier cheie: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Ajutor de fișiere cheie - Hardware key slot selection Selectarea sloturilor pentru cheie hardware - - Hardware Key: - Cheie hardware: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Ajutor cheie hardware - Key file to unlock the database - + Fișier cheie pentru deblocarea bazei de date Browse for key file @@ -1456,19 +1564,11 @@ Baza de date de rezervă localizată la %2 Browse… - - - - Refresh hardware tokens - Actualizați jetoane hardware - - - Refresh - Actualizează + Răsfoiți... Unlock Database - + Deblocare bază de date Cancel @@ -1476,7 +1576,7 @@ Baza de date de rezervă localizată la %2 Unlock - + Deblocare Please present or touch your YubiKey to continue… @@ -1484,7 +1584,7 @@ Baza de date de rezervă localizată la %2 Database Version Mismatch - + Nepotrivire de versiune a bazei de date The database you are trying to open was most likely @@ -1494,15 +1594,21 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + Baza de date pe care încercați să o deschideți a fost cel mai probabil +creată de o versiune mai nouă a KeePassXC. + +Puteți încerca să o deschideți oricum, dar este posibil să fie incompletă +iar salvarea oricăror modificări poate atrage pierderi de date. + +Vă recomandăm să vă actualizați instalarea KeePassXC. Open database anyway - + Deschideți oricum baza de date Database unlock canceled. - + Deblocarea bazei de date a fost anulată. Unlock failed and no password given @@ -1522,14 +1628,6 @@ Pentru a preveni apariția acestei erori, trebuie să accesați „Setări baza Retry with empty password Încercați din nou cu parola goală - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Nu a putut fi deschis fișierul cheii: %1 @@ -1563,21 +1661,67 @@ Pentru a preveni apariția acestei erori, trebuie să accesați „Setări baza Nu se poate utiliza fișierul bazei de date ca fișier cheie - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Nu puteți utiliza fișierul dvs. de bază de date ca fișier cheie. -Dacă nu aveți un fișier cheie, lăsați câmpul gol. + authenticate to access the database + autentificare pentru a accesa baza de date - Detecting hardware keys… + Failed to authenticate with Quick Unlock: %1 - No hardware keys detected + Select Key File: - Select hardware key… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>În plus față de o parolă, puteți utiliza un fișier secret pentru a spori securitatea bazei de date. Acest fișier poate fi generat în setările de securitate ale bazei dvs. de date.</p><p>Acesta<strong> nu este</strong> fișierul dvs. de bază de date *.kdbx!</p> + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Fișierul bazei dvs. de date NU este un fișier cheie! +Dacă nu aveți un fișier cheie sau nu știți ce este acesta, nu trebuie să selectați unul. + + + KeePassXC database file selected + Fișier bază de date KeePassXC selectat + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Fișierul pe care l-ați selectat arată ca un fișier de bază de date. +Un fișier de bază de date NU este un fișier cheie! + +Sunteți sigur că doriți să continuați cu acest fișier?. + + + No hardware keys found. + + + + Refresh Hardware Keys + Reîmprospătarea tastelor hardware + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. @@ -1590,10 +1734,6 @@ Dacă nu aveți un fișier cheie, lăsați câmpul gol. DatabaseSettingsDialog - - Advanced Settings - Setări avansate - General General @@ -1604,7 +1744,7 @@ Dacă nu aveți un fișier cheie, lăsați câmpul gol. Database Credentials - + Credențiale pentru baza de date Encryption Settings @@ -1618,6 +1758,22 @@ Dacă nu aveți un fișier cheie, lăsați câmpul gol. Maintenance + + KeeShare + De la KeeShare + + + Secret Service Integration + Integrarea serviciilor secrete + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1625,18 +1781,6 @@ Dacă nu aveți un fișier cheie, lăsați câmpul gol. KeePassXC-Browser settings Setări KeePassXC-Browser - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - - Disconnect all browsers Deconectează toate navigatoarele web @@ -1645,6 +1789,10 @@ Dacă nu aveți un fișier cheie, lăsați câmpul gol. Forget all site-specific settings on entries Uita toate setările specifice site-ului pe intrările + + Refresh database root group ID + Împrospătați ID-ul grupului rădăcină al bazei de date + Stored keys Taste memorate @@ -1693,18 +1841,10 @@ This may prevent connection to the browser plugin. Chiar doriți să deconectați toate browserele? Acest lucru poate împiedica conectarea la plugin-ul browser-ului. - - KeePassXC: No keys found - KeePassXC: nu s-au găsit chei - No shared encryption keys found in KeePassXC settings. Nu sunt găsite chei de criptare partajate în setările KeePassXC. - - KeePassXC: Removed keys from database - KeePassXC: cheile sterse din baza de date - Successfully removed %n encryption key(s) from KeePassXC settings. S-a eliminat cu succes% n cheie de criptare din setările KeePassXC.S-a eliminat cu succes% n cheie de criptare din setările KeePassXC.S-a eliminat cu succes %n chei de criptare din setările KeePassXC. @@ -1723,38 +1863,42 @@ Permisiunile de accesare a intrărilor vor fi revocate. Abort Anulează - - KeePassXC: Removed permissions - KeePassXC: permisiuni eliminate - Successfully removed permissions from %n entry(s). Permisiuni eliminate cu succes de la% n intrare (e).Permisiuni eliminate cu succes de la% n intrare (e).Permisiuni eliminate cu succes pentru %n intrare(i). - - KeePassXC: No entry with permissions found! - KeePassXC: nici o intrare cu permisiuni găsit! - The active database does not contain an entry with permissions. Baza de date activă nu conține o intrare cu permisiuni. - - Move KeePassHTTP attributes to custom data - Mutarea atributelor KeePassHTTP la date particularizate - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID - + Actualizați ID-ul bazei de date Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. + Chiar doriți să reîmprospătați ID-ul bazei de date? +Acest lucru este necesar doar dacă baza de date este o copie a alteia și extensia browserului nu se poate conecta. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + + No keys found + + + + Removed keys from database + Chei eliminate din baza de date + + + Removed permissions + + + + No entry with permissions found! @@ -1794,6 +1938,18 @@ Sigur continuați fără parolă? Failed to change database credentials + Nu s-a reușit modificarea credențialelor bazei de date + + + Weak password + + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. @@ -1803,14 +1959,6 @@ Sigur continuați fără parolă? Decryption Time: Timp de decriptare: - - Change existing decryption time - Modificați timpul de decriptare existent - - - Change - Schimba - Decryption time in seconds Timpul de decriptare în secunde @@ -1833,7 +1981,7 @@ Sigur continuați fără parolă? Unless you need to open your database with other programs, always use the latest format. - + Cu excepția cazului în care aveți nevoie să vă deschideți baza de date cu alte programe, utilizați întotdeauna cel mai recent format. Encryption Algorithm: @@ -1891,11 +2039,6 @@ Sigur continuați fără parolă? KDBX 3 - - unchanged - Database decryption time is unchanged - Neschimbat - Number of rounds too high Key transformation rounds @@ -1905,7 +2048,9 @@ Sigur continuați fără parolă? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - + Folosiți un număr foarte mare de runde de transformare a cheilor cu Argon2. + +Dacă păstrați acest număr, este posibil ca deschiderea bazei dvs. de date să dureze ore, zile sau chiar mai mult. Understood, keep number @@ -1944,6 +2089,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) filet (e)filet (e)thread(s) + + Encryption Settings: + + + + Basic + + + + Advanced + Avansat + DatabaseSettingsWidgetFdoSecrets @@ -1953,7 +2110,7 @@ If you keep this number, your database will not be protected from brute force at Don't expose this database - + Nu expuneți această bază de date Expose entries under this group: @@ -1968,7 +2125,7 @@ If you keep this number, your database will not be protected from brute force at DatabaseSettingsWidgetGeneral Database Metadata - + Metadatele bazei de date Database name: @@ -2002,18 +2159,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Numărul maxim de articole istorice pe intrare - - Max. history items: - Max. elemente de istorie: - Maximum size of history per entry Mărimea maximă a istoricului pe intrare - - Max. history size: - Max. Dimensiune istorie: - MiB Mib @@ -2044,6 +2193,102 @@ Această acțiune nu este reversibilă. (old) (vechi) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Mutarea intrărilor într-un grup de coș de gunoi +în loc să le ștergeți din baza de date. +Înregistrările șterse din coșul de gunoi sunt +eliminate din baza de date. + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + Min + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Golește + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2085,11 +2330,11 @@ Această acțiune nu este reversibilă. Delete selected icon(s) - + Ștergeți pictogramele selectate Delete all custom icons not in use by any entry or group - + Ștergeți toate pictogramele personalizate care nu sunt utilizate de nicio intrare sau grup Purge unused icons @@ -2101,7 +2346,7 @@ Această acțiune nu este reversibilă. At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + Cel puțin una dintre pictogramele selectate este utilizată în prezent de cel puțin o intrare sau un grup. Pictogramele tuturor intrărilor și grupurilor afectate vor fi înlocuite cu pictograma implicită. Sunteți sigur că doriți să ștergeți pictogramele care sunt utilizate în prezent? Custom Icons Are In Use @@ -2139,6 +2384,129 @@ Această acțiune nu este reversibilă. Câmpul descrierii bazei de date + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Înlătură + + + Command Settings + + + + Name + Nume + + + Save + Salvează + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + secunde + + DatabaseTabWidget @@ -2171,26 +2539,10 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< CSV file Fișier CSV - - Select CSV file - Selectați fișierul CSV - Merge database Îmbină baza de date - - KeePass 1 database - Bază de date KeePass 1 - - - Open KeePass 1 database - Deschide bază de date KeePass 1 - - - Open OPVault - - Export database to CSV file Exportă baza de date în fișier CSV @@ -2203,6 +2555,18 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< Writing the HTML file failed. Scrierea fișierului HTML a eșuat. + + Export database to XML file + + + + XML file + + + + Writing the XML file failed + + Export Confirmation Confirmare la export @@ -2211,30 +2575,26 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Ești pe cale să exporti baza de date într-un fișier necriptat. Acest lucru va lăsa parolele și informațiile dvs. sensibile vulnerabile! Esti sigur ca vrei sa continui? - - New Database - Bază de date nouă - - - %1 [New Database] - Database tab name modifier - %1 [bază de date nouă] - %1 [Locked] Database tab name modifier %1 [blocat] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - + Searches and Tags + Căutări și etichete Searching… - + Se caută... Shared group… @@ -2242,11 +2602,11 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< Confirm Auto-Type - + Confirmă auto-tastarea Perform Auto-Type into the previously active window? - + Efectuează Auto-tastare în fereastra activă anterior? Execute command? @@ -2278,7 +2638,11 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< Expired entries - + Intrări expirate + + + Entries expiring within %1 day(s) + No current database. @@ -2304,6 +2668,18 @@ Acest lucru este cu siguranta un bug, vă rugăm să raporteze la dezvoltatori.< No Results Nu sunt rezultate + + Save + Salvează + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + Salvați căutarea + Lock Database? Blocarea bazei de date? @@ -2332,26 +2708,6 @@ Salvați modificările? File has changed Fișierul a fost modificat - - The database file has changed. Do you want to load the changes? - Fișierul bazei de date a fost modificat. Doriți să încărcați ultimele modificări? - - - Merge Request - Cerere îmbinare - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Fișierul bazei de date s-a modificat și aveți modificări nesalvate. -Doriți să îmbinați modificările? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Imposibil de deschis noul fișier bază de date în timp ce încercați să autoreload. -Eroare: %1 - Disable safe saves? Dezactivați salvarea sigură? @@ -2380,7 +2736,7 @@ Dezactivați salvarea sigură și încercați din nou? Save database backup - + Salvare copie de siguranță a bazei de date Empty recycle bin? @@ -2394,9 +2750,94 @@ Dezactivați salvarea sigură și încercați din nou? Could not find database file: %1 - - Entries expiring within %1 day(s) - + + New Database + Bază de date nouă + + + %1 [New Database] + Database tab name modifier + %1 [bază de date nouă] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Descărcarea... + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2415,7 +2856,7 @@ Dezactivați salvarea sigură și încercați din nou? Auto-Type - Auto tiparire + Auto-tastare Browser Integration @@ -2449,10 +2890,6 @@ Dezactivați salvarea sigură și încercați din nou? n/a nu se aplică - - (encrypted) - (criptat) - Select private key Selectați cheia privată @@ -2484,19 +2921,23 @@ Unfortunately, any changes made have been lost. Auto-Type Validation Error - + Eroare de validare la Auto-tastare An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + A apărut o eroare la validarea secvenței de Auto-tastare personalizare: +%1 +Doriți să o corectați? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + A apărut o eroare la validarea secvenței de Auto-tastare pentru "%1": +%2 +Doriți să o corectați? Entry updated successfully. @@ -2528,12 +2969,16 @@ Would you like to correct it? [PROTECTED] Press Reveal to view or edit - + Apăsați Revelați pentru a vizualiza sau edita Hide Ascunde + + %n hour(s) + + %n week(s) % n săptămână (i)% n săptămână (i)%n săptămână(i) @@ -2546,9 +2991,9 @@ Would you like to correct it? %n year(s) % n an (i)% n an (i)%n an(i) - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2615,7 +3060,7 @@ Would you like to correct it? Exclude from database reports - + Excludere din rapoartele bazei de date Foreground Color: @@ -2638,23 +3083,23 @@ Would you like to correct it? EditEntryWidgetAutoType Enable Auto-Type for this entry - Activare tiparire automat pentru această intrare + Activează auto-tastare pentru această înregistrare Inherit default Auto-Type sequence from the group - + Moștenește secvența implicită de Auto-tastare de la grup Use custom Auto-Type sequence: - + Folosește secvență de Auto-tastare personalizată: Custom Auto-Type sequence - Secvență personalizată Auto-Type + Secvență personalizată de Auto-tastare Open Auto-Type help webpage - Deschideți pagina web de ajutor Auto-Type + Deschide pagina web de ajutor pentru Auto-tastare Window Associations @@ -2668,10 +3113,20 @@ Would you like to correct it? Add new window association Adăugați asociere fereastră nouă + + + + Add item + + + Remove selected window association Eliminați asocierea ferestrei selectată + + - + Remove item + - + Window title: Titlu fereastră: @@ -2694,25 +3149,11 @@ Would you like to correct it? Custom Auto-Type sequence for this window - Secvență personalizată de tip automat pentru această fereastră - - - + - Add item - + - - - - - Remove item - - + Secvență personalizată de Auto-tastare pentru această fereastră EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Aceste setări afectează comportamentul intrării cu extensia browserului. - General General @@ -2725,26 +3166,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Sariți la Trimitere automată pentru această intrare - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - - Use this entry only with HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - - Do not use this entry with HTTP Basic Auth - - Additional URL's - Adresa URL suplimentară - Add Adaugă @@ -2757,6 +3186,22 @@ Would you like to correct it? Edit Editați + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2801,28 +3246,16 @@ Would you like to correct it? EditEntryWidgetMain Edit Entry - + Editați intrarea Notes field Câmpul de note - - Toggle the checkbox to reveal the notes section. - Comutați caseta de selectare pentru a dezvălui secțiunea de note. - Username field Câmpul utilizatorului - - Toggle notes visible - Notele de comutare sunt vizibile - - - Notes: - - Expiration field Câmp de expirare @@ -2839,14 +3272,6 @@ Would you like to correct it? Presets Presetări - - Password: - Parola: - - - URL: - URL: - Url field Câmp url @@ -2855,18 +3280,10 @@ Would you like to correct it? Download favicon for URL Descărcați favicon pentru URL - - Title: - Titlu: - Title field Câmpul titlu - - Username: - Nume utilizator: - Password field Câmp parola @@ -2875,16 +3292,40 @@ Would you like to correct it? Toggle expiration Combate expirarea - - Expires: - - - - Tags: - - Tags list + Listă de etichete + + + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2926,19 +3367,6 @@ Would you like to correct it? Private key Cheie privată - - External file - Fișier extern - - - Browser for key file - Browser pentru fișierul cheie - - - Browse… - Button for opening file dialog - - Attachment Atașament @@ -2955,6 +3383,23 @@ Would you like to correct it? Remove from agent Elimină din agent + + External file + Fișier extern + + + Browser for key file + Browser pentru fișierul cheie + + + Browse… + Button for opening file dialog + Răsfoiți... + + + Generate + Generează + Select attachment file Selectați fișierul de atașament @@ -2979,6 +3424,10 @@ Would you like to correct it? seconds secunde + + Clear agent + + EditGroupWidget @@ -2990,10 +3439,6 @@ Would you like to correct it? Icon Icon - - Browser Integration - Integrare cu browserul - Properties Proprietăți @@ -3010,6 +3455,10 @@ Would you like to correct it? Group has unsaved changes + + Browser Integration + Integrare cu browserul + Enable Activează @@ -3025,10 +3474,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - - These settings affect to the group's behaviour with the browser extension. @@ -3065,6 +3510,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3098,7 +3559,7 @@ Would you like to correct it? Browse… - + Răsfoiți... Clear fields @@ -3200,15 +3661,15 @@ Extensiile acceptate sunt: %1. Use default Auto-Type sequence of parent group - + Folosește secvența implicită de Auto-tastare a grupului părinte Auto-Type: - + Auto-tastare: Search: - + Căutare: Auto-Type toggle for this and sub groups @@ -3220,7 +3681,7 @@ Extensiile acceptate sunt: %1. Default auto-type sequence field - Câmpul de secvență implicit de tip automat + Câmpul de secvență implicit de auto-tastare Notes field @@ -3232,7 +3693,7 @@ Extensiile acceptate sunt: %1. Set default Auto-Type sequence - + Setează secvența implicită de Auto-tastare Search toggle for this and sub groups @@ -3297,10 +3758,6 @@ Extensiile acceptate sunt: %1. Unable to fetch favicon. Nu pot descărca favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Puteți activa serviciul de pictogramă a site-ului web DuckDuckGo în Instrumente -> Setări -> Securitate - Existing icon selected. Pictograma existentă selectată. @@ -3333,6 +3790,10 @@ Extensiile acceptate sunt: %1. The following icon(s) failed: Pictograma (ele) următoare nu a reușit:Pictograma (ele) următoare nu a reușit:Pictograma(e) următoare nu au reușit: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3409,6 +3870,23 @@ Acest lucru poate provoca moduluri afectate la defecțiune. %1 - Clone %1 - Clona + + Passkey + Cheie de acces + + + Invalid conversion type: %1 + + + + Invalid conversion syntax: %1 + + + + Invalid regular expression syntax %1 +%2 + + EntryAttachments @@ -3417,6 +3895,21 @@ Acest lucru poate provoca moduluri afectate la defecțiune. + + EntryAttachmentsDialog + + Form + Formular + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3454,14 +3947,6 @@ Acest lucru poate provoca moduluri afectate la defecțiune. Remove Înlătură - - Rename selected attachment - - - - Rename - - Open selected attachment Deschideți atașamentul selectat @@ -3538,11 +4023,6 @@ Acest lucru poate provoca moduluri afectate la defecțiune. Confirm Overwrite Attachment - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - - Confirm Attachment @@ -3561,7 +4041,8 @@ Are you sure to add this file? The attachment '%1' was modified. Do you want to save the changes to your database? - + Atașamentul '%1' a fost modificat. +Doriți să salvați modificările în baza de date? Saving attachment failed @@ -3572,6 +4053,23 @@ Do you want to save the changes to your database? Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + + New + + + + Preview + Previzualizare + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3652,11 +4150,11 @@ Error: %1 Auto-Type - Auto tiparire + Auto-tastare Tags - + Etichete @@ -3766,6 +4264,14 @@ Error: %1 Has TOTP + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3786,8 +4292,8 @@ Error: %1 Parola - Notes - Notițe + URL + URL Expiration @@ -3795,19 +4301,19 @@ Error: %1 Tags - + Etichete Tags list - + Listă de etichete Username Nume utilizator - URL - URL + Notes + Notițe Advanced @@ -3823,7 +4329,7 @@ Error: %1 Autotype - autotipie + Auto-tastare Default Sequence @@ -3857,6 +4363,10 @@ Error: %1 Never Niciodată + + Double click to copy value + Dublu clic pentru a copia valoarea + Enabled Activat @@ -3865,6 +4375,10 @@ Error: %1 Disabled Dezactivat + + Double click to copy to clipboard + Dublu clic pentru a copia în clipboard + EntryURLModel @@ -3872,6 +4386,10 @@ Error: %1 Invalid URL URL invalid + + Duplicate URL + + EntryView @@ -3887,6 +4405,10 @@ Error: %1 Reset to defaults Resetare la valorile implicite + + + %1 entry(s)... + + ExportDialog @@ -4050,7 +4572,7 @@ This will leave your passwords and sensitive information vulnerable! HibpDownloader Online password validation failed - + Validarea parolei online a eșuat @@ -4083,11 +4605,11 @@ Puteți activa serviciul pictogramelor site-ului web DuckDuckGo în secțiunea d Please wait, processing entry list… - + Vă rugăm să așteptați, se procesează lista de intrări... Downloading… - + Se descarcă... Ok @@ -4103,6 +4625,193 @@ Puteți activa serviciul pictogramelor site-ului web DuckDuckGo în secțiunea d Downloading favicons (%1/%2)… + Se descarcă pictogramele (%1/%2)... + + + + ImportWizard + + Import Wizard + Asistent de import + + + + ImportWizardPageReview + + WizardPage + Pagină de start + + + Entry count: %1 + Numărul de intrări: %1 + + + Group + Grup + + + Title + Titlu + + + Username + Nume utilizator + + + Password + Parolă + + + Url + URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + De la + + + Import File Selection + Selectarea fișierului de import + + + Password: + Parola: + + + Key File: + Fișier cheie: + + + Browse… + Răsfoiți... + + + Import Into: + Importați în: + + + New Database + Bază de date nouă + + + No unlocked databases available + Nu sunt disponibile baze de date deblocate + + + Existing Database: + Bază de date existentă: + + + Import File: + Importați fișierul: + + + Comma Separated Values (.csv) + Valori separate prin virgulă (.csv) + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + + + + Select import file + Selectați fișierul de import + + + All files + Toate fișierele + + + Key files + Fișiere cheie + + + Select key file + Selectați fișier cheie + + + Comma Separated Values + Valori separate prin virgulă + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) @@ -4379,7 +5088,10 @@ Dacă reîncepe, atunci fișierul dvs. de bază de date poate fi corupt. - + Fișierul selectat este o bază de date veche KeePass 1 (.kdb). + +Puteți să o importați făcând clic pe Bază de date > „Import KeePass 1 database...”. +Aceasta este o migrare unidirecțională. Nu veți putea deschide baza de date importată cu vechea versiune KeePassX 0.4. Not a KeePass database. @@ -4430,7 +5142,7 @@ Linia %2, coloana %3 Invalid EnableAutoType value - Valoare nevalidă pentru permite AutoTiparire + Valoare invalidă pentru permiterea auto-tastării Invalid EnableSearching value @@ -4482,7 +5194,7 @@ Linia %2, coloana %3 Auto-type association window or sequence missing - Lipsă de fereastra de asociere de tiparire auto sau secvența + Lipsește fereastra de asociere sau secvența de auto-tastare Invalid bool value @@ -4537,17 +5249,6 @@ Linia %2, coloana %3 Deschiderea cheii private a eșuat - - KeePass1OpenWidget - - Import KeePass1 Database - Importați baza de date KeePass1 - - - Unable to open the database. - Nu pot deschide baza de date. - - KeePass1Reader @@ -4784,11 +5485,11 @@ Dacă reîncepe, atunci fișierul dvs. de bază de date poate fi corupt. Generate a new key file or choose an existing one to protect your database. - + Generați un nou fișier cheie sau alegeți unul existent pentru a vă proteja baza de date. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + Notă: NU utilizați un fișier care se poate modifica, deoarece acest lucru vă va împiedica să deblocați baza de date. Browse for key file @@ -4796,7 +5497,7 @@ Dacă reîncepe, atunci fișierul dvs. de bază de date poate fi corupt. Browse… - + Răsfoiți... Old key file format @@ -4834,7 +5535,7 @@ Mesaj: %2 <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>Puteți adăuga un fișier cheie care conține octeți aleatori pentru o securitate suplimentară.</p><p>Trebuie să îl păstrați secret și să nu îl pierdeți niciodată, altfel veți fi blocat.</p> Key files @@ -4904,10 +5605,6 @@ Sigur doriți să continuați cu acest fișier? &Recent Databases &Baze de date recente - - &Import - &Import - &Export &Export @@ -4918,16 +5615,20 @@ Sigur doriți să continuați cu acest fișier? &Entries - + &Intrări Copy Att&ribute - + Copiați at&ributul TOTP TOTP + + Tags + Etichete + &Groups &Grupuri @@ -4938,11 +5639,11 @@ Sigur doriți să continuați cu acest fișier? View - + Vizualizați Theme - + Temă &Quit @@ -4972,45 +5673,25 @@ Sigur doriți să continuați cu acest fișier? &New Database… &Bază de date nouă... - - Create a new database - Crearea unei baze de date noi - &Merge From Database… - - - - Merge from another KDBX database - Îmbinare dintr-o altă bază de date KDBX + &Îmbinare din bază de date... &New Entry… - - - - Add a new entry - Adăugarea unei noi intrări + &Intrare nouă... &Edit Entry… - - - - View or edit entry - Vizualizarea sau editarea intrării + &Editare intrare &Delete Entry… - + &Ștergeți intrarea... &New Group… - - - - Add a new group - Adăugarea unui grup nou + &Grup nou... &Edit Group… @@ -5018,11 +5699,11 @@ Sigur doriți să continuați cu acest fișier? &Delete Group… - + &Ștergeți grupul... Download All &Favicons… - + Descărcare toate &favicoanele... Sort &A-Z @@ -5034,63 +5715,39 @@ Sigur doriți să continuați cu acest fișier? Sa&ve Database As… - + &Salvare bază de date ca... Database &Security… - + Securitate bază de date... Database &Reports… - - - - Statistics, health check, etc. - + &Rapoarte bază de date... &Database Settings… Setări bază de &date... - - Database settings - Setări bază de date - &Clone Entry… - + &Intrare clonă... Move u&p - - Move entry one step up - - Move do&wn - - Move entry one step down - - Copy &Username - - - - Copy username to clipboard - Copiere nume utilizator în Clipboard + Copiați &numele de utilizator Copy &Password - - - - Copy password to clipboard - Copiere parolă în Clipboard + Copiați &parola &Settings @@ -5102,11 +5759,11 @@ Sigur doriți să continuați cu acest fișier? Perform &Auto-Type - Efectuați și &Auto-Tiparire + Efectuează &Auto-tastare Download &Favicon - + Descărcare &favicon Open &URL @@ -5114,36 +5771,24 @@ Sigur doriți să continuați cu acest fișier? &Lock Database - + &Blocați baza de date Lock &All Databases - + Blocați &toate bazele de date &Title &Titlu - Copy title to clipboard - Copiere titlu în Clipboard - - - &URL - &URL - - - Copy URL to clipboard - Copiere URL în Clipboard + Copy &URL + Copiați &URL-ul &Notes &Notițe - - Copy notes to clipboard - Copierea notelor în Clipboard - &CSV File… @@ -5156,33 +5801,21 @@ Sigur doriți să continuați cu acest fișier? KeePass 1 Database… - - Import a KeePass 1 database - Importul unei baze de date KeePass 1 - 1Password Vault… - - Import a 1Password Vault - Import 1Password Vault - CSV File… Fișier CSV... - - Import a CSV file - Importul unui fișier CSV - Show TOTP - + Afișare TOTP Show QR Code - + Afișare cod QR Set up TOTP… @@ -5192,6 +5825,10 @@ Sigur doriți să continuați cu acest fișier? Copy &TOTP Copiază &TOTP + + Copy Password and TOTP + Copiați parola și TOTP + E&mpty recycle bin coș de r&eciclare gol @@ -5202,7 +5839,7 @@ Sigur doriți să continuați cu acest fișier? Report a &Bug - + Raportați o eroare &Getting Started @@ -5214,11 +5851,7 @@ Sigur doriți să continuați cu acest fișier? &Online Help - - - - Go to online documentation - + &Ajutor online &User Guide @@ -5234,7 +5867,7 @@ Sigur doriți să continuați cu acest fișier? Save Database Backup… - + Salvați copia de siguranță a bazei de date... Add key to SSH Agent @@ -5246,35 +5879,39 @@ Sigur doriți să continuați cu acest fișier? Compact Mode - + Modul compact Automatic - + Automată Light - + Deschisă Dark - + Întunecată Classic (Platform-native) - + Clasică (platformă-nativă) + + + Show Menubar + Afișați meniul Show Toolbar - + Afișați bara de instrumente Show Preview Panel - + Afișare panou de previzualizare Always on Top - + Mereu deasupra Hide Usernames @@ -5286,6 +5923,10 @@ Sigur doriți să continuați cu acest fișier? Clone Group... + Clonează grupul... + + + &XML File… @@ -5298,13 +5939,15 @@ Sigur doriți să continuați cu acest fișier? Don't show again for this version - + Nu se afișează din nou pentru această versiune 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. - + AVERTISMENT: Folosiți o versiune instabilă a KeePassXC. +Există un risc ridicat de corupție, păstrați o copie de siguranță a bazelor de date. +Această versiune nu este destinată utilizării în producție. NOTE: You are using a pre-release version of KeePassXC. @@ -5312,9 +5955,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - + No Tags + Fără etichete Restore Entry(s) @@ -5344,6 +5986,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Părăsiți KeePassXC + + %1 Entry(s) + + Please present or touch your YubiKey to continue… @@ -5356,6 +6002,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + Importare cheie de acces + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + Deschideți baza de date + + + Create Database + Creați o bază de date + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Editați intrarea + + + Delete Entry + + + + Create Group + + + + Edit Group + + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Copiați numele de utilizator + + + Copy Password + Copiați parola + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Importați baza de date KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + Comutați afișare meniu + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Generator de parole + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5396,7 +6350,7 @@ We recommend you use the AppImage available on our downloads page. Reset any remembered decisions for this application - + Resetează toate deciziile reținute pentru această aplicație @@ -5413,26 +6367,6 @@ We recommend you use the AppImage available on our downloads page. Overwriting %1 [%2] Suprascrierea %1 [%2] - - older entry merged from database "%1" - intrare mai veche îmbinată din baza de date "%1" - - - Adding backup for older target %1 [%2] - Adăugarea copiei de rezervă pentru ținta mai veche %1 [%2] - - - Adding backup for older source %1 [%2] - Adăugarea copiei de rezervă pentru sursa mai veche %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Reaplicarea intrării țintă mai vechi în partea de sus a sursei mai noi %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Reaplicarea intrării sursei mai vechi în partea de sus a țintei mai noi %1 [%2] - Synchronizing from newer source %1 [%2] Sincronizarea din sursa mai nouă %1 [%2] @@ -5470,7 +6404,7 @@ We recommend you use the AppImage available on our downloads page. NewDatabaseWizard Create a new KeePassXC database… - + Crearea unei noi baze de date KeePassXC... Root @@ -5492,24 +6426,16 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Aici aveți posibilitatea să ajustați setările de criptare a bazei de date. Nu vă faceți griji, le puteți modifica mai târziu în setările bazei de date. - - Advanced Settings - Setări avansate - - - Simple Settings - Setări simple - NewDatabaseWizardPageDatabaseKey Database Credentials - + Credențiale pentru baza de date A set of credentials known only to you that protects your database. - + Un set de credențiale cunoscute doar de dvs. care vă protejează baza de date. @@ -5534,6 +6460,25 @@ We recommend you use the AppImage available on our downloads page. Vă rugăm să completați numele afișat și o descriere opțională pentru noua bază de date: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Salvează atașament + + + New entry attachment + + + NixUtils @@ -5580,15 +6525,6 @@ We recommend you use the AppImage available on our downloads page. Se așteaptă %1 octeți de text clar, %2 găsit - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Citirea bazei de date nu a produs o instanță -%1 - - OpVaultReader @@ -5662,6 +6598,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Cifru necunoscut: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key Passphrase este necesar pentru a decripta această tastă @@ -5726,29 +6666,183 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key EOF neașteptate atunci când scrierea cheie privată + + (encrypted) + (criptat) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - parolele nu se potrivesc - - - Passwords match so far - Parolele se potrivesc până acum - - - Toggle Password (%1) + SSH Key Generator - Generate Password (%1) + Type + Tip + + + Bits - Warning: Caps Lock enabled! + Comment + Comentariu + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Export de chei de acces + + + Filenames will be generated with title and .passkey file extension. + + Export entries + Exportul intrărilor + + + Export Selected + + + + Cancel + Anulare + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC - Export de chei de acces + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Import cheie de acces + + + Username: %1 + + + + Group + Grup + + + Database + Bază de date + + + Import Passkey + Importare cheie de acces + + + Import + Import + + + Cancel + Anulare + + + Entry + Intrare + + + Create new entry + Creați o intrare nouă + + + Relying Party: %1 + + + + Import the following passkey: + Importați următoarea cheie de acces: + + + Import the following passkey to this entry: + Importați următoarea cheie de acces în această intrare: + + + Default passkeys group (Imported Passkeys) + Grup de chei de acces implicite (chei de acces importate) + + + + PasskeyImporter + + Passkey file + Fișier cheie de acces + + + All files + Toate fișierele + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + Deschidere fișier cheie de acces + + + Cannot import passkey + Nu se poate importa cheia de acces + + + Cannot import passkey file "%1". Data is missing. + Nu se poate importa fișierul de chei de acces "%1". Datele lipsesc. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Nu se poate importa fișierul de chei de acces "%1". +Următoarele date lipsesc: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Nu se poate importa fișierul de chei de acces "%1". Cheia privată lipsește sau este deformată. + PasswordEditWidget @@ -5928,10 +7022,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Caractere excluse: "0", "1", "l", "I", "O", "|", "." - Exclude look-alike characters Exclude caractere asemănătoare @@ -5956,26 +7046,18 @@ We recommend you use the AppImage available on our downloads page. Word Count: Număr cuvinte: - - Character Count: - - Word Case: Registrul cuvântelor Delete selected wordlist - + Ștergerea listei de cuvinte selectate Add custom wordlist - - character - - Close Închide @@ -6012,17 +7094,41 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Entropie: %1 bit + + Password Quality: %1 + Calitate parolă: %1 + + + Poor + Password quality + Inacceptabil + + + Weak + Password quality + Slab + + + Good + Password quality + Bun + + + Excellent + Password quality + Excelent + Confirm Delete Wordlist - + Confirmați ștergerea listei de cuvinte Do you really want to delete the wordlist "%1"? - + Chiar doriți să ștergeți lista de cuvinte "%1"? Failed to delete wordlist - + Nu s-a reușit ștergerea listei de cuvinte Wordlists @@ -6058,8 +7164,47 @@ Do you want to overwrite it? Caractere speciale - Password Quality: %1 - Calitate parolă: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + parolele nu se potrivesc + + + Passwords match so far + Parolele se potrivesc până acum + + + Toggle Password (%1) + + + + Generate Password (%1) + + + + Warning: Caps Lock enabled! + Avertisment: Caps Lock este activat! + + + Quality: %1 + Poor @@ -6081,6 +7226,10 @@ Do you want to overwrite it? Password quality Excelent + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6097,6 +7246,21 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6135,6 +7299,10 @@ Do you want to overwrite it? Continue Continua + + Continue with weak password + + QObject @@ -6421,19 +7589,19 @@ Do you want to overwrite it? Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - + Copiați atributul dat în clipboard. Valoarea implicită este "password" dacă nu este specificată. Copy the current TOTP to the clipboard (equivalent to "-a totp"). - + Copiați TOTP-ul curent în clipboard (echivalent cu "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. - + Trebuie să corespundă unei singure intrări, în caz contrar se afișează o listă de posibile corespondențe. Copy an entry's attribute to the clipboard. - + Copiați atributul unei intrări în clipboard. Path of the entry to clip. @@ -6442,7 +7610,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + Timpul de așteptare înainte de ștergerea clipboardului (valoarea implicită este %1 secunde, setată la 0 pentru nelimitat). Invalid timeout value %1. @@ -6450,7 +7618,7 @@ Do you want to overwrite it? Multiple entries matching: - + Potrivirea mai multor intrări: Using matching entry: %1 @@ -6478,7 +7646,7 @@ Do you want to overwrite it? Entry's "%1" attribute copied to the clipboard! - + Atributul "%1" al intrării a fost copiat în clipboard! Clearing the clipboard in %1 second(s)... @@ -6528,6 +7696,10 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + Calea către baza de date + Target decryption time in MS for the database. @@ -6548,10 +7720,6 @@ Do you want to overwrite it? Create a new database. Creează o bază de date nouă. - - Path of the database. - Calea către baza de date - Invalid decryption time %1. @@ -6596,6 +7764,158 @@ Do you want to overwrite it? Successfully created new database. Noua bază de date a fost creată cu succes. + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + + + + Database was not modified. + + + + Writing the database failed: %1 + Scrierea bazei de date nu a reușit: %1 + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + Încărcarea noului fișier cheie a eșuat: %1 + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + Afișare informații despre o bază de date. + + + UUID: + UUID: + + + Name: + Nume: + + + Description: + Descriere: + + + Cipher: + Cifru: + + + KDF: + KDF: + + + Recycle bin is enabled. + + + + Recycle bin is not enabled. + + + + Location + Locație + + + Database created + Baza de date creată + + + Last saved + Ultima salvare + + + Unsaved changes + Modificări salvate + + + yes + da + + + no + Nu + + + Number of groups + Număr de grupuri + + + Number of entries + Numărul de intrări + + + Number of expired entries + Numărul de intrări expirate + + + Unique passwords + Parole unice + + + Non-unique passwords + Parole non-unice + + + Maximum password reuse + Reutilizarea maximă a parolei + + + Number of short passwords + Număr de parole scurte + + + Number of weak passwords + Număr de parole slabe + + + Entries excluded from reports + Mențiuni excluse din rapoarte + + + Average password length + Lungimea medie a parolei + + + %1 characters + %1 caractere + Word count for the diceware passphrase. Word conta pentru fraza de acces diceware. @@ -6619,10 +7939,6 @@ Do you want to overwrite it? Invalid word count %1 Număr de cuvinte nevalide %1 - - The word list is too small (< 1000 items) - Lista de cuvinte este prea mică (<1000 de articole) - Title for the entry. Titlu pentru intrare. @@ -6647,10 +7963,6 @@ Do you want to overwrite it? Enter new password for entry: Introduceți parola nouă pentru intrare: - - Writing the database failed: %1 - Scrierea bazei de date nu a reușit: %1 - Successfully edited entry %1. Intrare editată cu succes %1. @@ -6771,10 +8083,6 @@ Do you want to overwrite it? Exit interactive mode. Ieșiți din modul interactiv. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - - Exports the content of a database to standard output in the specified format. Exportă conținutul unei baze de date până la ieșirea standard în formatul specificat. @@ -6875,106 +8183,6 @@ Do you want to overwrite it? Successfully imported database. Baza de date importată cu succes. - - Show a database's information. - - - - UUID: - UUID: - - - Name: - Nume: - - - Description: - Descriere: - - - Cipher: - Cifru: - - - KDF: - KDF: - - - Recycle bin is enabled. - - - - Recycle bin is not enabled. - - - - Location - Locație - - - Database created - - - - Last saved - Ultima salvare - - - Unsaved changes - Modificări salvate - - - yes - da - - - no - Nu - - - Number of groups - Număr de grupuri - - - Number of entries - Numărul de intrări - - - Number of expired entries - Numărul de intrări expirate - - - Unique passwords - Parole unice - - - Non-unique passwords - Parole non-unice - - - Maximum password reuse - Reutilizarea maximă a parolei - - - Number of short passwords - Număr de parole scurte - - - Number of weak passwords - Număr de parole slabe - - - Entries excluded from reports - - - - Average password length - Lungimea medie a parolei - - - %1 characters - %1 caractere - Unknown command %1 Comanda necunoscută %1 @@ -7147,6 +8355,10 @@ Comenzi disponibile: Show the protected attributes in clear text. Afișează atributele protejate într-un text clar. + + Show all the attributes of the entry. + Afișare toate atributele intrării. + Show the attachments of the entry. @@ -7204,7 +8416,10 @@ Comenzi disponibile: stop supporting in the future. Please consider generating a new key file. - + AVERTISMENT: Folosiți un format de fișier cheie vechi, pe care KeePassXC +s-ar putea să nu îl mai suporte în viitor. + +Vă rugăm să luați în considerare generarea unui nou fișier cheie. Invalid YubiKey slot %1 @@ -7214,13 +8429,17 @@ Please consider generating a new key file. Invalid YubiKey serial %1 + + Please present or touch your YubiKey to continue. + + Enter password to encrypt database (optional): Introduceți parola pentru criptarea bazei de date (opțional): Do you want to create a database with an empty password? [y/N]: - + Doriți să creați o bază de date cu o parolă goală? [y/N]: Repeat password: @@ -7345,7 +8564,7 @@ Nucleu (Kernel): %3 %4 Auto-Type - Auto tiparire + Auto-tastare SSH Agent @@ -7361,7 +8580,7 @@ Nucleu (Kernel): %3 %4 Quick Unlock - + Deblocare rapidă Secret Service Integration @@ -7400,7 +8619,7 @@ Nucleu (Kernel): %3 %4 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7451,18 +8670,6 @@ Nucleu (Kernel): %3 %4 file empty fișier gol - - malformed string - șir incorect - - - missing closing quote - lipsă citat de închidere - - - %1: (row, col) %2,%3 - % 1: (rând, col) %2,%3 - AES 256-bit AES 256-biți @@ -7551,7 +8758,7 @@ Nucleu (Kernel): %3 %4 Do you really want to delete the entry "%1" for good? - + Chiar doriți să ștergeți definitiv intrarea "%1"? Do you really want to delete %n entry(s) for good? @@ -7631,7 +8838,7 @@ Nucleu (Kernel): %3 %4 lock all open databases - + blochează toate bazele de date deschise key file of the database @@ -7641,22 +8848,18 @@ Nucleu (Kernel): %3 %4 read password of the database from stdin citi parola bazei de date de la stdin - - allow app screen recordering and screenshots - - - - Locked databases. - - Database failed to lock. - + Nu s-a reușit blocarea bazei de date. Another instance of KeePassXC is already running. O altă instanță a KeePassXC este deja în execuție. + + KeePassXC is not running. No open database to lock + KeePassXC nu rulează. Nu există o bază de date deschisă pentru a fi blocată + Fatal error while testing the cryptographic functions. Eroare fatală în timpul testării funcțiilor criptografice. @@ -7665,10 +8868,6 @@ Nucleu (Kernel): %3 %4 KeePassXC - Error KeePassXC - Eroare - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Parolă bază de date: @@ -7692,9 +8891,312 @@ Nucleu (Kernel): %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + Avertisment: Nu s-a reușit blocarea capturării capturii de ecran pe o fereastră de nivel superior. + + + Invalid Cipher + + Invalid KDF + + + + Access to all entries is denied + Accesul la toate intrările este interzis + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + Bazele de date au fost blocate. + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Ștergeți datele modulului? + + + Delete plugin data from Entry(s)? + + + + Passkey + Cheie de acces + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Etichete + QtIOCompressor @@ -7730,23 +9232,42 @@ Nucleu (Kernel): %3 %4 Eroare internă zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + Faceți dublu clic pe intrări pentru a le edita. List of entry URLs @@ -7782,7 +9303,7 @@ Nucleu (Kernel): %3 %4 No entries with a URL, or none has browser extension settings saved. - + Nu există intrări cu o adresă URL sau niciuna nu are setările extensiilor de browser salvate. Title @@ -7808,44 +9329,53 @@ Nucleu (Kernel): %3 %4 Exclude from reports + + Expire Entry(s)… + + + + Only show entries that have a URL + Afișați numai intrările care au un URL + + + Only show entries that have been explicitly allowed or denied + Afișează numai intrările care au fost permise sau refuzate în mod explicit + + + Show expired entries + Afișați intrările expirate + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - + Show expired entries + Afișați intrările expirate - Also show entries that have been excluded from reports + (Expired) Hover over reason to show additional details. Double-click entries to edit. - - - - Bad - Password quality - + Treceți peste motiv pentru a afișa detalii suplimentare. Faceți dublu clic pe intrări pentru a le edita. Bad — password must be changed - - Poor - Password quality - Inacceptabil - Poor — password should be changed - - Weak - Password quality - Slab - Weak — consider changing the password @@ -7894,6 +9424,14 @@ Nucleu (Kernel): %3 %4 Exclude from reports + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -7989,6 +9527,77 @@ Nucleu (Kernel): %3 %4 Exclude from reports + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Export + + + Import + Import + + + List of entry URLs + + + + Title + Titlu + + + Path + Cale + + + Username + Nume utilizator + + + URLs + + + + Edit Entry… + + + + Delete Entry(s)… + + + + Relying Party + + + + Show expired entries + Afișați intrările expirate + + + (Expired) + + + + Export Confirmation + Confirmare la export + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + Vă rugăm să așteptați, lista de intrări cu chei de acces este în curs de actualizare... + + + No entries with passkeys. + Nu există intrări cu chei de acces. + ReportsWidgetStatistics @@ -8022,7 +9631,7 @@ Nucleu (Kernel): %3 %4 Database created - + Baza de date creată Last saved @@ -8098,7 +9707,7 @@ Nucleu (Kernel): %3 %4 Entries excluded from reports - + Mențiuni excluse din rapoarte Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. @@ -8153,7 +9762,7 @@ Nucleu (Kernel): %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + Cheile de securitate nu sunt acceptate de agent sau furnizorul de chei de securitate nu este disponibil. No agent running, cannot remove identity. @@ -8163,6 +9772,14 @@ Nucleu (Kernel): %3 %4 No agent running, cannot list identities. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8229,10 +9846,14 @@ Nucleu (Kernel): %3 %4 Search Help Căutare ajutor + + Save Search + Salvați căutarea + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + Căutare (%1)... Case sensitive @@ -8293,39 +9914,23 @@ Nucleu (Kernel): %3 %4 Show notification when passwords are retrieved by clients - + Afișare notificare atunci când parolele sunt recuperate de către clienți <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + Dacă este activată, orice încercare de a citi o parolă trebuie confirmată. În caz contrar, clienții pot citi parolele fără confirmare atunci când baza de date este deblocată. Această opțiune se referă numai la accesul la parola unei intrări. Clienții pot oricând să enumere elementele din bazele de date expuse și să interogheze atributele acestora. Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching - + Solicitare de deblocare a bazei de date înainte de căutare Exposed database groups: @@ -8347,6 +9952,14 @@ Nucleu (Kernel): %3 %4 Save current changes to activate the plugin and enable editing of this section. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Acest lucru îmbunătățește compatibilitatea cu anumite aplicații care caută parola fără să deblocheze mai întâi baza de date.</p><p>Dar activarea acestui lucru poate duce la blocarea clientului dacă baza de date nu poate fi deblocată într-un anumit interval de timp. (De obicei 25s, dar poate fi o valoare diferită stabilită în aplicații).  + SettingsWidgetKeeShare @@ -8414,7 +10027,7 @@ Nucleu (Kernel): %3 %4 ShareImport Successful import - + Import reușit @@ -8455,8 +10068,12 @@ Nucleu (Kernel): %3 %4 TagModel - All - + Clear Search + Ștergeți căutarea + + + All Entries + Toate intrările Expired @@ -8467,6 +10084,25 @@ Nucleu (Kernel): %3 %4 + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? + Eliminați eticheta "%1" din toate intrările din această bază de date? + + TotpDialog @@ -8611,7 +10247,7 @@ Exemplu: JBSWY3DPEHPK3PXP <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>O nouă versiune este disponibilă.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. You have the latest version of KeePassXC @@ -8624,26 +10260,6 @@ Exemplu: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Începeți să stocați parolele în siguranță într-o bază de date KeePassXC - - Create new database - Creează o bază de date nouă - - - Open existing database - Deschide bază de date existentă - - - Import from KeePass 1 - Importă din KeePass 1 - - - Import from 1Password - Importă de la 1Password - - - Import from CSV - Importă din CSV - Recent databases Baze de date recente @@ -8656,6 +10272,18 @@ Exemplu: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Bun venit la KeePassXC %1 + + Create Database + Creați o bază de date + + + Open Database + Deschideți o bază de date + + + Import File + Fișier de import + WinUtils @@ -8672,31 +10300,8 @@ Exemplu: JBSWY3DPEHPK3PXP - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: @@ -8708,14 +10313,6 @@ Exemplu: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Actualizați jetoane hardware - - - Refresh - Actualizează - Hardware key slot selection Selectarea sloturilor pentru cheie hardware @@ -8748,10 +10345,6 @@ Exemplu: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… @@ -8760,35 +10353,32 @@ Exemplu: JBSWY3DPEHPK3PXP No hardware keys detected - - - YubiKeyInterface - %1 Invalid slot specified - %2 + Refresh hardware keys + Reîmprospătarea tastelor hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - - Could not find or access hardware key with serial number %1. Please present it to continue. Hardware key is locked or timed out. Unlock or re-present it to continue. - + Cheia hardware este blocată sau a expirat. Deblocați-o sau prezentați-o din nou pentru a continua. Hardware key was not found or is not configured. @@ -8798,6 +10388,21 @@ Exemplu: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Apasă + + + Passive + USB Challenge-Response Key no interaction required + Pasiv + YubiKeyInterfaceUSB @@ -8805,14 +10410,6 @@ Exemplu: JBSWY3DPEHPK3PXP Unknown Necunoscut - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8827,10 +10424,6 @@ Exemplu: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - - Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8847,5 +10440,15 @@ Exemplu: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_ru.ts b/share/translations/keepassxc_ru.ts index 603f7bec8..a6816c8c7 100644 --- a/share/translations/keepassxc_ru.ts +++ b/share/translations/keepassxc_ru.ts @@ -11,11 +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;">ошибках</a> по https://github.com + Сообщить об ошибках: <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 версии 2-ой или 3-ей (на ваше усмотрение). Project Maintainers: @@ -23,7 +23,7 @@ Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. - Команда KeePassXC выражает особую благодарность debfx за создание оригинального KeePassX. + Команда KeePassXC выражает особую благодарность debfx за создание изначального KeePassX. Contributors @@ -35,7 +35,7 @@ Debug Info - Отладочная информация + Отладочные сведения Include the following information whenever you report a bug: @@ -54,7 +54,7 @@ Non-existing/inaccessible executable path. Please double-check the client is legit. - Предоставьте этому получателю возможность выдавать пользователям доступ к отчетам + Несуществующий/недоступный путь к исполняемому файлу. Перепроверьте подлинность клиента. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> @@ -80,6 +80,10 @@ Details Подробности + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Ваше решение будет сохранено на все время, пока запущены и запрашивающий клиент, и KeePassXC. + Remember Запомнить @@ -88,17 +92,13 @@ Allow Selected Разрешить выбранные - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Ваше решение будет сохранено на все время, пока запущены и запрашивающий клиент, и KeePassXC. - Deny All && Future Запретить все && будущие Allow All && &Future - Разрешить все && будущие + Разрешить все && &будущие @@ -122,13 +122,17 @@ Use OpenSSH Использовать OpenSSH + + Use both agents + Использовать оба агента + SSH_AUTH_SOCK override - переопределить SSH_AUTH_SOCK + Переопределить SSH_AUTH_SOCK SSH_AUTH_SOCK value - значение SSH_AUTH_SOCK + Значение SSH_AUTH_SOCK (empty) @@ -140,19 +144,15 @@ SSH_SK_PROVIDER override - SSH_SK_PROVIDER переопределить + Переопределить SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Отсутствуют сокеты агента SSH. Убедитесь, что переменная окружения SSL_AUTH_SOCK определена или переопределите её значение. + Отсутствуют сокеты SSH-агента. Убедитесь, что переменная SSL_AUTH_SOCK определена или переопределите её значение. SSH Agent connection is working! - Соединение с агентом SSH активно. - - - Use both agents - Использовать оба агента + Соединение с SSH-агентом активно! @@ -169,6 +169,10 @@ Security Безопасность + + This setting cannot be enabled when minimize on unlock is enabled. + Эту настройку нельзя включить, если включена функция сворачивания при разблокировке. + Access error for config file %1 Ошибка доступа к файлу конфигурации %1 @@ -211,20 +215,52 @@ You must restart the application to set the new language. Would you like to restart now? - Вы должны перезапустить приложение, чтобы установить новый язык. Хотите перезапустить сейчас? - - - Reset Settings? - Сбросить настройки? - - - Are you sure you want to reset all general and security settings to default? - Действительно сбросить все общие параметры и параметры безопасности к значениям, заданным по умолчанию? + Необходимо перезапустить приложение, чтобы установить новый язык. Перезапустить сейчас? Select backup storage directory Выбрать папку для резервной копии + + Confirm Reset + Подтвердить сброс + + + Are you sure you want to reset all settings to default? + Сбросить все параметры по умолчанию? + + + Import KeePassXC Settings + Импортировать настройки KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Не удалось импортировать настройки из %1, не корректный файл настроек. + + + Export KeePassXC Settings + Экспортировать настройки KeePassXC + + + Small + Маленький + + + Normal + Обычный + + + Medium + Средний + + + Large + Большой + + + Custom + Пользовательский + ApplicationSettingsWidgetGeneral @@ -242,7 +278,7 @@ Automatically launch KeePassXC at system startup - Автоматически запуск KeePassXC при запуске системы + Автоматически запускать KeePassXC при загрузке системы Minimize window at application startup @@ -250,19 +286,23 @@ Minimize window after unlocking database - Минимизировать окно после разблокирования базы данных + Сворачивать окно после разблокировки базы данных Remember previously used databases Запоминать ранее использованные базы данных + + recent files + недавние файлы + Load previously open databases on startup Загружать прошлые базы данных при запуске Remember database key files and security dongles - Запоминать для баз данных файлы-ключи и аппаратные ключи безопасности + Запоминать файлы-ключи баз данных и аппаратные ключи безопасности Check for updates at application startup once per week @@ -270,26 +310,7 @@ Include beta releases when checking for updates - Включать в проверку обновлений бета-релизы - - - On database unlock, show entries that - При разблокировке базы данных показать записи, которые - - - have expired - On database unlock, show entries that... - истекли - - - days - On database unlock, show entries that will expire within %1 days - дни - - - will expire within - On database unlock, show entries that... - истекает в течение + Включить в проверку обновлений бета-релизы File Management @@ -301,11 +322,11 @@ Automatically save when locking database - Автоматическое сохранение при блокировке базы данных + Автоматически сохранять при блокировке базы данных Automatically save non-data changes when locking database - Автоматическое сохранение изменений, не связанных с данными, при блокировке базы данных. + Автоматически сохранять изменения, не связанные с данными, при блокировке базы данных Automatically reload the database when modified externally @@ -315,29 +336,17 @@ Backup database file before saving Создавать резервную копию базы данных перед сохранением - - Backup destination - Путь к резервной копии - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Указывает местоположение файла резервной копии базы данных. Встречающиеся "{DB_FILENAME}" заменяются именем файла сохранённой базы данных без расширения. {TIME:} заменяется временем резервного копирования, см. https://doc.qt.io/qt-5/qdatetime.html#toString. По умолчанию используется строка формата "дд_ММ_ггг_чч-мм-сс". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Выбрать... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Использовать альтернативный метод хранения (может решить проблемы с Dropbox, Google Drive, GVFS и т.д.) Temporary file moved into place - Временный файл перемещен на место + Временный файл перемещён на место Directly write to database file (dangerous) @@ -357,7 +366,7 @@ Hide window when copying to clipboard - Скрывать окно после копирования в буфер обмена: + Скрывать окно после копирования в буфер обмена Minimize @@ -373,7 +382,7 @@ Website icon download timeout in seconds - Тайм-аут получения значков веб-сайтов, задаётся в секундах + Тайм-аут получения значков веб-сайтов в секундах sec @@ -408,6 +417,10 @@ Toolbar button style: Внешний вид кнопок панели инструментов: + + Show passwords in color + Показывать пароли в цвете + Use monospaced font for notes Использовать для заметок моноширинный шрифт @@ -418,7 +431,7 @@ Show a system tray icon - Значок в области уведомлений + Показывать значок в области уведомлений Tray icon type @@ -434,7 +447,7 @@ Reset settings to default… - Сбросить настройки по умолчанию... + Сбросить параметры по умолчанию... Auto-Type @@ -470,7 +483,7 @@ Auto-type start delay milliseconds - Задержка начала автоввода, задаётся в милисекундах + Задержка начала автоввода, задаётся в миллисекундах ms @@ -483,7 +496,7 @@ Global auto-type shortcut - Комбинация клавиш для глобального автоввода: + Комбинация клавиш для глобального автоввода Auto-type character typing delay milliseconds @@ -491,7 +504,72 @@ Remember last typed entry for: - Запомнить последнюю введенную запись для: + Запомнить последнюю введённую запись для: + + + On database unlock, show entries that will expire within + При разблокировке базы данных показать записи, срок действия которых истекает в течение + + + On database unlock, show entries that will expire within + При разблокировке базы данных показать записи, срок действия которых истекает в течение + + + days + number of days warning for password expiration + дн. + + + Destination format: + Формат назначения: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span>заменяется именем файла сохраненной базы данных без расширения</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span>заменяется на указанный формат времени (по умолчанию: dd_MM_yyy_hh-mm-ss)</p><p>Подробнее см. в руководстве пользователя</p></body></html> + + + Choose folder... + Выбрать папку... + + + Show confirmation before moving entries to recycle bin + Показывать подтверждение перед перемещением записей в корзину + + + Copy data on double clicking field in entry view + Копировать данные при двойном щелчке на поле в режиме просмотра записи + + + Show toolbar + Отображать панель инструментов + + + Show the menu bar by pressing the Alt key + Отобразить меню при нажатии клавишу Alt + + + Show menubar + Отображать меню + + + Import settings… + Импортировать настройки... + + + Export settings… + Экспортировать настройки... + + + Open browser on double clicking URL field in entry view + Открывать URL-адрес в браузере при двойном щелчке по столбцу в режиме просмотра записей + + + Font size: + Размер шрифта: + + + Font size selection + Выбор размера шрифта @@ -546,10 +624,6 @@ Lock databases after minimizing the window Блокировать базы данных при сворачивании окна - - Require password repeat when it is visible - Требовать повтора пароля, когда он виден - Hide passwords when editing them Скрыть пароли при их редактировании @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Скрывать пароли в панели предварительного просмотра записи - - Hide entry notes by default - По умолчанию скрывать примечания записи - - - Move entries to recycle bin without confirmation - Переместить записи в корзину без подтверждения - - - Enable double click to copy the username/password entry columns - Разрешить копирование столбцов записей имени пользователя и пароля по двойному щелчку - Privacy Конфиденциальность @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Использовать DuckDuckGo для загрузки значков + + Hide TOTP in the entry preview panel + Скрыть TOTP на панели предварительного просмотра записей + + + Lock databases when switching user + Блокировать базы данных при переключении пользователя + + + Lock Options + Параметры блокировки + + + Hide notes in the entry preview panel + Скрыть заметки на панели предпросмотра + AutoType @@ -626,18 +704,8 @@ Обнаружена слишком большая задержка, допускается не более %1: %2 - Invalid conversion type: %1 - Недопустимый тип преобразования: %1 - - - Invalid conversion syntax: %1 - Недопустимый синтаксис преобразования: %1 - - - Invalid regular expression syntax %1 -%2 - Недопустимый синтаксис регулярного выражения %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Запись не имеет атрибута PICKCHARS: %1 Invalid placeholder: %1 @@ -671,7 +739,7 @@ Title - Имя записи + Название Username @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Попытка отправить неверный символ клавиши. - Sequence aborted: Caps Lock is on Последовательность прервана: включён режим CAPS LOCK @@ -698,14 +762,18 @@ Unable to get valid keycode for key: - Не удалось получить корректный код клавиши для клавиши: + Не удалось получить корректный код клавиши для клавиши: + + + Trying to send invalid keyboard symbol. + Попытка отправить неверный символ клавиши. AutoTypeSelectDialog Auto-Type - KeePassXC - Автоввод - KeePassXC + Автоввод — KeePassXC Double click a row to perform Auto-Type or find an entry using the search: @@ -718,12 +786,12 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>Вы можете использовать расширенные поисковые запросы, чтобы найти любую запись в открытых вами базах данных. Полезно использовать следующие сочетания клавиш:<br/> + <p>Вы можете использовать расширенные поисковые запросы, чтобы найти любую запись в открытых вами базах данных. Можно использовать следующие комбинации клавиш:<br/> Ctrl+F — включить или отключить поиск по базам данных<br/> Ctrl+1 — ввести имя пользователя<br/> Ctrl+2 — ввести пароль<br/> Ctrl+3 — ввести TOTP<br/> -Ctrl+4 - использовать виртуальную клавиатуру (только для Windows)</p> +Ctrl+4 — использовать виртуальную клавиатуру (только для Windows)</p> Search all open databases @@ -804,13 +872,13 @@ Ctrl+4 - использовать виртуальную клавиатуру ( Disable for this site Отключить для этого сайта + + Undo + Отменить + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser - сохранить запись - Ok OK @@ -825,25 +893,82 @@ Please select the correct database for saving credentials. У вас открыто несколько баз данных. Выберите нужную базу для сохранения учётных данных. + + KeePassXC - Select Database + KeePassXC - Выбрать базу данных + + + + BrowserPasskeysConfirmationDialog + + Cancel + Отмена + + + Update + Обновить + + + Authenticate + Аутентификация + + + Register new + Зарегистрировать новый + + + Register + Зарегистрироваться + + + Timeout in <b>%n</b> seconds... + Тайм-аут через <b>%n</b> секунду...Тайм-аут через <b>%n</b> секунды...Тайм-аут через <b>%n</b> секунд...Тайм-аут через <b>%n</b> секунд... + + + Relying Party: %1 + Доверенная сторона: %1 + + + Username: %1 + Имя пользователя: %1 + + + KeePassXC - Passkey credentials + KeePassXC - учетные данные Passkey + + + Add to existing entry + Добавить к существующей записи + + + Existing passkey found. +Do you want to register a new passkey for: + Существующий passkey найден. +Хотите зарегистрировать новый passkey для: + + + Select the existing passkey and press Update to replace it. + Выберите существующий passkey и нажмите Обновить, чтобы заменить его. + + + Authenticate passkey credentials for: + Аутентификация учетных данных passkey для: + + + Do you want to register a passkey for: + Вы хотите зарегистрировать passkey для: + BrowserService - - 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". + Получен запрос на создание новой группы «%1». Создать эту группу? - - KeePassXC: New key association request - KeePassXC: Запрос на ассоциацию нового ключа - You have received an association request for the following database: %1 @@ -859,81 +984,77 @@ chrome-laptop. Save and allow access Сохранить и разрешить доступ - - KeePassXC: Overwrite existing key? - KeePassXC: Перезаписать существующий ключ? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Общий секретный ключ с именем "%1" уже существует. + Общий секретный ключ с именем «%1» уже существует. Вы действительно хотите его перезаписать? - - KeePassXC: Update Entry - KeePassXC: Обновить запись - Do you want to update the information in %1 - %2? Обновить информацию в %1 — %2? - - KeePassXC: Delete entry - KeePassXC: Удалить запись - A request for deleting entry "%1" has been received. Do you want to delete the entry? - Получен запрос на удаление записи "%1". + Получен запрос на удаление записи «%1». Удалить эту запись? - Converting attributes to custom data… - Преобразование атрибутов в пользовательских данных... + %1 (Passkey) + %1 (Passkey) - Abort - Прервать + KeePassXC - Create a new group + KeePassXC - Создать новую группу - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Атрибуты KeePassHTTP преобразованы + Disable + Выключено - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Успешно преобразованы атрибуты из %1 записи(ей). -Перемещено ключей в пользовательские данные: %2. - - - Successfully moved %n keys to custom data. - Успешно переехал %n ключи пользовательских данных.Успешно переехал %n ключи пользовательских данных.Успешно переехал %n ключи пользовательских данных.Успешно перемещено ключей в пользовательские данные: %n. + KeePassXC - Overwrite existing key? + KeePassXC - Перезаписать существующий ключ? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Не найдено записи с атрибутами KeePassHTTP! + KeePassXC - Update Entry + KeePassXC - Обновить Запись - The active database does not contain an entry with KeePassHTTP attributes. - В активной базе данных нет записи с атрибутами KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Удалить запись - Don't show this warning again - Не показывать это предупреждение + KeePassXC - New key association request + KeePassXC - Запрос на ассоциацию нового ключа - KeePassXC: Legacy browser integration settings detected - KeePassXC: Обнаружена устаревшая интеграция с браузером + Passkey + Passkey - 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-Browser требуется переместить в настройки базы данных. -Это необходимо, чтобы поддерживать текущие подключения браузера. -Хотите перенести настройки сейчас? + KeePassXC - Passkey credentials + KeePassXC - учетные данные Passkey + + + Register a new passkey to this entry: + Зарегистрировать новый passkey для этой записи: + + + KeePassXC - Update passkey + KeePassXC - Обновить passkey + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + У записи уже есть passkey. +Хотите перезаписать passkey в %1 - %2? + + + Register + Зарегистрироваться @@ -954,10 +1075,6 @@ Would you like to migrate your existing settings now? General Общие - - Browsers installed as snaps are currently not supported. - Браузеры, установленные в виде snap-пакетов, в настоящее время не поддерживаются. - Enable integration for these browsers: Включить интеграцию для браузеров: @@ -1025,7 +1142,7 @@ Would you like to migrate your existing settings now? All databases connected to the extension will return matching credentials. - Получать результаты поиска из всех подключённых баз данных + Получать результаты поиска из всех подключённых баз данных. Search in all opened databases for matching credentials @@ -1057,7 +1174,7 @@ Would you like to migrate your existing settings now? Return advanced string fields which start with "KPH: " - Возвращать дополнительные строковые поля, начинающиеся с "KPH: " + Возвращать дополнительные строковые поля, начинающиеся с «KPH: » Don't display the popup suggesting migration of legacy KeePassHTTP settings. @@ -1065,7 +1182,7 @@ Would you like to migrate your existing settings now? Do not prompt for KeePassHTTP settings migration. - Не показывать напоминание о переносе устаревших параметров KeePassHTTP + Не показывать напоминание о переносе устаревших параметров KeePassHTTP. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. @@ -1129,26 +1246,6 @@ Would you like to migrate your existing settings now? Custom extension ID Пользовательский идентификатор расширения - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Так как Snap это песочница, для включения браузерной интеграции нужно выполнить сценарий.<br />Этот сценарий можно получить с %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Для интеграции требуется установить расширение для браузера «KeePassXC-Browser». <br />Установите его для %1, %2 и %3. %4 - - - Please see special instructions for browser extension use below - Ознакомьтесь с инструкциями по использованию расширения браузера ниже - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Внимание:</b> не удалось найти заданное пользователем расположение прокси.<br/> Интеграция с браузером НЕ РАБОТАЕТ без приложения прокси. - - - <b>Warning:</b> The following options can be dangerous! - <b>ВНИМАНИЕ:</b> Следующие параметры могут быть опасны! - Executable Files Исполняемые файлы @@ -1165,6 +1262,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location Выбрать расположение папки native messaging + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Разрешить keepassxc-proxy перечислять все записи с их названием, URL и UUID в подключенных базах данных. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Разрешить ограниченный доступ ко всем записям в подключенных базах данных (игнорирует ограничения доступа к сайту) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Предупреждение:</b> изменяйте эти настройки только при необходимости. + + + The custom proxy location does not exist. + Пользовательское расположение прокси-сервера не существует. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Ошибка:</b> пользовательское расположение прокси-сервера не существует. Исправьте это во вкладке дополнительных настроек. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Ошибка:</b> Установленный исполняемый файл прокси отсутствует в ожидаемом месте: %1<br/> Укажите собственное расположение прокси-сервера в дополнительных настройках или переустановите приложение. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Позволяет использовать небезопасный http://localhost с passkeys для тестирования. + + + Allow using localhost with passkeys + Разрешить использование localhost с passkeys + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Для интеграции с браузерами требуется KeePassXC-Browser. <br />Загрузите его для %1 и %2 и %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Браузеры, установленные с помощью Snap или Flatpak, не поддерживаются, за исключением Firefox, установленного с помощью Snap. + CloneDialog @@ -1174,7 +1311,7 @@ Would you like to migrate your existing settings now? Append ' - Clone' to title - Добавить к названию « - клон» + Добавить к названию « — клон» Replace username and password with references @@ -1187,17 +1324,9 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Импорт полей CSV - - - filename - имя файла - size, rows, columns - размер, строк, столбцов + размер, строк, столбцов Column Association @@ -1213,7 +1342,7 @@ Would you like to migrate your existing settings now? Title - Заголовок + Название Group @@ -1303,49 +1432,43 @@ Would you like to migrate your existing settings now? Column %1 Столбец %1 - - Imported from CSV file - Импортировано из CSV-файла - - - Original data: - Исходные данные: - - - Error(s) detected in CSV file! - Ошибки в CSV-файле! - [%n more message(s) skipped] [%n больше сообщений пропущен][%n больше сообщений пропущен][%n больше сообщений пропущен][пропущено сообщений: %n] - Error - Ошибка + Failed to parse CSV file: %1 + Ошибка при разборе файла CSV: %1 - CSV import: writer has errors: -%1 - Импорт CSV: запись с ошибками - %1 + Imported from CSV file: %1 + Импортировано из CSV-файла: %1 + + + No Title Selected + Не выбрано название + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Не выбрано название столбца, записи будет трудно различить. +Хотите импортировать? + + + Tags + Теги CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n байт(ов)%n байт(ов)%n байт(ов)%n байт - %n row(s) + CSV row count %n строка%n строк%n строк%n строк %n column(s) + CSV column count %n столбцов%n столбцов%n столбцов%n столбцов @@ -1362,7 +1485,7 @@ Would you like to migrate your existing settings now? Unable to open file %1. - Невозможно открыть файл %1. + Не удалось открыть файл %1. Error while reading the database: %1 @@ -1382,13 +1505,13 @@ Would you like to migrate your existing settings now? Database file has unmerged changes. - Файл базы данных имеет несинхронизированные изменения + Файл базы данных имеет несинхронизированные изменения. %1 Backup database located at %2 %1 -Расположение резервной копии базы данных: «%2» +Расположение резервной копии базы данных: «%2» Key not transformed. This is a bug, please report it to the developers. @@ -1398,12 +1521,20 @@ Backup database located at %2 Recycle Bin Корзина + + Database file read error. + Ошибка чтения файла базы данных. + + + No file path was provided. + Не указан путь к файлу. + DatabaseOpenDialog Unlock Database - KeePassXC - Разблокировать базу данных - KeePassXC + Разблокировать базу данных — KeePassXC @@ -1420,60 +1551,22 @@ Backup database located at %2 Password field Поле пароля - - Enter Additional Credentials (if any): - Дополнительные механизмы аутентификации: - - - Key File: - Файл-ключ: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Для усиления защиты базы данных в дополнение к основному паролю возможно использовать секретный файл. Такой файл может быть создан в разделе «Безопасность» диалога параметров базы данных.</p><p>Файл-ключ <strong>не является</strong> файлом базы данных в формате *.kdbx!<br>Если файл-ключ не используется, оставьте это поле пустым.</p><p>Нажмите для получения дополнительных сведений…</p> - - - Key file help - Справка о файле-ключе - Hardware key slot selection Выбор слота аппаратного ключа - - Hardware Key: - Аппаратный ключ: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Возможно использовать аппаратные ключи безопасности, такие как <strong>Yubikey</strong> или <strong>OneKey</strong> со слотами, настроенными в режиме HMAC-SHA1.</p> -<p>Нажмите здесь для получения дополнительных сведений…</p> - - - Hardware key help - Помощь по аппаратному ключу - Key file to unlock the database Файл-ключ для разблокирования базы данных Browse for key file - Открыть диалога выбора файла-ключа + Открыть диалог выбора файла-ключа Browse… Обзор... - - Refresh hardware tokens - Перечитать токены - - - Refresh - Обновить - Unlock Database Разблокировать базу данных @@ -1508,7 +1601,7 @@ We recommend you update your KeePassXC installation. Вы всё равно можете попробовать открыть её, но она может быть неполной и сохранение любых изменений может привести к потере данных. -Рекомендуем вам обновить KeePassXC. +Рекомендуется обновить KeePassXC. Open database anyway @@ -1536,14 +1629,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password Попробовать ещё раз с пустым паролем - - Failed to authenticate with Windows Hello - Не удалось пройти аутентификацию с помощью Windows Hello - - - Failed to authenticate with Touch ID - Не удалось пройти аутентификацию с помощью Touch ID - Failed to open key file: %1 Ошибка при открытии файла-ключа: %1 @@ -1554,7 +1639,7 @@ To prevent this error from appearing, you must go to "Database Settings / S You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - Вы используете файл-ключ устаревшего формата, поддержка которого в KeePassXC <br>может быть прекращена в будущем.<br><br>Рекомендуется создать новый файл ключ: перейдите в раздел<br><strong>База данных &gt; Безопасность базы данных &gt; Изменить файл-ключ.</strong><br> + Используется файл-ключ устаревшего формата, поддержка которого в KeePassXC <br>может быть прекращена в будущем.<br><br>Рекомендуется создать новый файл ключ: перейдите в раздел<br><strong>База данных &gt; Безопасность базы данных &gt; Изменить файл-ключ.</strong><br> Don't show this warning again @@ -1577,21 +1662,68 @@ To prevent this error from appearing, you must go to "Database Settings / S Файл базы данных не может быть файлом-ключом - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Файл базы данных не может быть использован в качестве файла-ключа. Если файл-ключ не используется, оставьте это поле пустым. + authenticate to access the database + аутентифицироваться для доступа к базе данных - Detecting hardware keys… - Обнаружение аппаратных ключей... + Failed to authenticate with Quick Unlock: %1 + Не удалось пройти аутентификацию с помощью Quick Unlock: %1 - No hardware keys detected - Аппаратные ключи не обнаружены + Select Key File: + Выберите файл-ключ: - Select hardware key… - Выберите аппаратный ключ... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Кроме пароля, вы можете использовать секретный файл для усиления безопасности вашей базы данных. Этот файл может быть сгенерирован в настройках безопасности вашей базы данных. </p><p>Это <strong>не</strong> ваш файл базы данных *.kdbx!</p> + + + Use hardware key [Serial: %1] + Использовать аппаратный ключ [Серийный номер: %1] + + + Use hardware key + Выберите аппаратный ключ + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Ваш файл базы данных НЕ файл-ключ! +Если у вас нет ключевого файла или вы не знаете, что это такое, вам не нужно его выбирать. + + + KeePassXC database file selected + Выбран файл базы данных KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Выбранный вами файл похож на файл базы данных. +Файл базы данных НЕ файл-ключ! + +Вы уверены, что хотите продолжить с этим файлом? + + + No hardware keys found. + Аппаратные ключи не найдены. + + + Refresh Hardware Keys + Обновить аппаратные ключи + + + Click to add a key file. + Нажмите, чтобы добавить файл-ключ. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">У меня есть файл-ключ</a> + + + Hardware keys found, but no slots are configured. + Аппаратные ключи найдены, но ни один слот не настроен. @@ -1603,10 +1735,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Дополнительные параметры - General Общие @@ -1631,24 +1759,28 @@ If you do not have a key file, please leave the field empty. Maintenance Обслуживание + + KeeShare + KeeShare + + + Secret Service Integration + Интеграция с секретной службой + + + Remote Sync + Удалённая синхронизация + + + Database Settings: %1 + Параметры базы данных: %1 + DatabaseSettingsWidgetBrowser KeePassXC-Browser settings - Настройки KeePassXC-Browser - - - Convert KeePassHTTP data - Преобразование данных KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Преобразование устаревших атрибутов KeePassHTTP в пользовательские данные, совместимые с KeePassXC-Browser - - - Refresh database root group ID - Обновление идентификатора корневой записи базы данных + Параметры KeePassXC-Browser Disconnect all browsers @@ -1656,7 +1788,11 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries - Забыть все настройки записей для конкретных сайтов + Забыть все параметры записей для конкретных сайтов + + + Refresh database root group ID + Обновление идентификатора корневой записи базы данных Stored keys @@ -1706,18 +1842,10 @@ This may prevent connection to the browser plugin. Вы действительно хотите отключить все браузеры? Это может помешать подключению к плагину браузера. - - KeePassXC: No keys found - KeePassXC: Ключи не найдены - No shared encryption keys found in KeePassXC settings. В настройках KeePassXC нет общих ключей шифрования. - - KeePassXC: Removed keys from database - KeePassXC: Ключи удалены из базы данных - Successfully removed %n encryption key(s) from KeePassXC settings. Успешно удалён %n ключ шифрования из настроек KeePassXC.Успешно удалёны %n ключа шифрования из настроек KeePassXC.Успешно удалёны %n ключей шифрования из настроек KeePassXC.Успешно удалено ключей шифрования из настроек KeePassXC: %n. @@ -1736,32 +1864,14 @@ Permissions to access entries will be revoked. Abort Прервать - - KeePassXC: Removed permissions - KeePassXC: Разрешения удалены - Successfully removed permissions from %n entry(s). Успешно удалено разрешение от %n записи.Успешно удалены разрешения от %n записей.Успешно удалены разрешения от %n записей.Успешно удалены разрешения из %n шт. записей. - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Действительно привести все устаревшие данные интеграции браузера к новому стандарту? -Это необходимо для поддержания совместимости с подключаемым модулем браузера. - Refresh database ID Обновление идентификатора базы данных @@ -1772,6 +1882,26 @@ This is only necessary if your database is a copy of another and the browser ext Действительно хотите перезагруить ID базы данных? Это необходимо только если ваша база является копией другой и браузерное расширение не может подключиться. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Преобразование устаревших атрибутов KeePassHTTP в пользовательские данные, совместимые с KeePassXC-Browser + + + No keys found + Ключи не найдены + + + Removed keys from database + Ключи удалены из базы данных + + + Removed permissions + Разрешения удалены + + + No entry with permissions found! + Записи с разрешениями не найдены! + DatabaseSettingsWidgetDatabaseKey @@ -1811,6 +1941,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Не получилось изменить учётные данные базы + + Weak password + Слабый пароль + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Это слабый пароль! Для лучшей защиты ваших секретов вам следует выбрать более надежный пароль. + + + The provided password does not meet the minimum quality requirement. + Предоставленный пароль не соответствует минимальным требованиям к качеству. + DatabaseSettingsWidgetEncryption @@ -1818,17 +1960,9 @@ Are you sure you want to continue without a password? Decryption Time: Время расшифровки: - - Change existing decryption time - Изменить время расшифровывания - - - Change - Изменить - Decryption time in seconds - Время расшифровывания в секундах + Время расшифровки в секундах Higher values offer more protection, but opening the database will take longer. @@ -1844,7 +1978,7 @@ Are you sure you want to continue without a password? Format cannot be changed: Your database uses KDBX 4 features - Формат не может быть изменен: ваша база данных использует функции KDBX 4 + Формат не может быть изменён: ваша база данных использует функции KDBX 4 Unless you need to open your database with other programs, always use the latest format. @@ -1880,7 +2014,7 @@ Are you sure you want to continue without a password? Transform rounds - Раундов преобразования: + Циклов преобразования Memory Usage: @@ -1906,11 +2040,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - без изменений - Number of rounds too high Key transformation rounds @@ -1963,6 +2092,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) потоков потоков потоков потоков + + Encryption Settings: + Настройки шифрования: + + + Basic + Основной + + + Advanced + Дополнительные + DatabaseSettingsWidgetFdoSecrets @@ -2015,24 +2156,16 @@ If you keep this number, your database will not be protected from brute force at History Settings - Настройки истории + Параметры истории Maximum number of history items per entry Максимальное количество событий истории для каждой из записей - - Max. history items: - Максимум записей в истории: - Maximum size of history per entry Максимальный размер событий истории для каждой из записей - - Max. history size: - Максимальный размер истории: - MiB МиБ @@ -2063,6 +2196,108 @@ This action is not reversible. (old) (устар.) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + При сохранении этой настройки или редактировании +записи самые старые элементы истории записи +будут удалены так, что останется только +указанное максимальное количество записей. + + + Limit the amount of history items per entry to: + Ограничение числа элементов истории на одну запись: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + При сохранении этой настройки или редактировании +записи самые старые элементы истории записей +будут удалены так, что оставшиеся элементы +истории не превысят указанное количество. + + + Limit the total size of history items per entry to: + Ограничение общего размера элементов истории на одну запись: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Перемещать записи в корзину группы +вместо удаления их из базы данных. +Записи, удалённые из корзины, +также удаляются из базы данных. + + + Autosave delay since last change + Задержка автосохранения с последнего изменения + + + Autosave delay + Задержка автосохранения + + + Autosave delay since last change in minutes + Задержка автосохранения с последнего изменения в минутах + + + min + мин + + + Autosave delay since last change checkbox + Задержка автосохранения с последнего изменения галочки + + + Public Database Metadata + Метаданные публичной базы данных + + + Warning: the following settings are not encrypted. + Внимание: следующие параметры не зашифрованы. + + + Display name: + Отображаемое имя: + + + Publically visible display name used on the unlock dialog + Публичное отображаемое имя, используемое в диалоге разблокировки + + + Database public display name + Публичное имя базы данных + + + Display color: + Отображаемый цвет: + + + Publically visible color used on the unlock dialog + Публично видимый цвет, используемый в диалоге разблокировки + + + Database public display color chooser + Выбор цвета для публичного отображения базы данных + + + Clear + Очистить + + + Display icon: + Отображаемый значок: + + + Select Database Icon + Выбрать значок базы данных + DatabaseSettingsWidgetKeeShare @@ -2093,7 +2328,7 @@ This action is not reversible. > Breadcrumb separator - > + > @@ -2116,7 +2351,7 @@ This action is not reversible. Confirm Deletion - Подтверждение удаление + Подтверждение удаления At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? @@ -2158,6 +2393,141 @@ This action is not reversible. Поле описания базы данных + + DatabaseSettingsWidgetRemote + + Sync Commands + Команды синхронизации + + + Remove + Удалить + + + Command Settings + Параметры команд + + + Name + Имя + + + Save + Сохранить + + + Download + Загрузить + + + Command: + Команда: + + + Download command field + Поле команды загрузки + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Например: "sftp user@hostname" или "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Ввод: + + + Download input field + Поле ввода загрузки + + + Upload + Выгрузить + + + Upload command field + Поле команды выгрузки + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + Например: "sftp user@hostname" или "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Поле команды выгрузки + + + Name cannot be empty. + Имя не может быть пустым. + + + Test + Тест + + + Download command cannot be empty. + Команда загрузки не может быть пустой. + + + Download failed with error: %1 + Загрузка завершилась с ошибкой: %1 + + + Download finished, but file %1 could not be found. + Загрузка завершена, но файл %1 не найден. + + + Download successful. + Загрузка завершена. + + + Save Remote Settings + Сохранить удаленные параметры + + + You have unsaved changes. Do you want to save them? + У вас есть несохраненные изменения. Хотите сохранить их? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Например: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} используется в качестве заполнителя для хранения базы данных во временном месте. +Команда должна завершиться. В случае с `sftp` в качестве последней команды необходимо отправить `exit`. + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Например: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} используется в качестве заполнителя для хранения базы данных во временном месте. +Команда должна завершиться. В случае с `sftp` в качестве последней команды необходимо отправить `exit`. + + + + Timeout: + Таймаут: + + + seconds + сек + + DatabaseTabWidget @@ -2190,26 +2560,10 @@ This is definitely a bug, please report it to the developers. CSV file Файл CSV - - Select CSV file - Выберите CSV-файл - Merge database Объединить базу данных - - KeePass 1 database - База данных KeePass 1 - - - Open KeePass 1 database - Открыть базу данных KeePass 1 - - - Open OPVault - Открыть OPVault - Export database to CSV file Экспортировать базу данных в файл CSV @@ -2220,36 +2574,44 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. - Ошибка записи HTML файла. + Ошибка записи HTML-файла. + + + Export database to XML file + Экспорт базы данных в файл XML + + + XML file + XML-файл + + + Writing the XML file failed + Ошибка записи XML-файла Export Confirmation - Подтверждение экспортирования + Подтверждение экспорта You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - При продолжении, будет выполнен экспорт базы данных в незашифрованный файл, что делает доступными содержащиеся в нём пароли и другие чувствительные данные. Продолжить экспортирование? - - - New Database - Новая база данных - - - %1 [New Database] - Database tab name modifier - %1 [новая база данных] + При продолжении будет выполнен экспорт базы данных в незашифрованный файл, что делает доступными содержащиеся в нём пароли и другие чувствительные данные. Продолжить экспорт? %1 [Locked] Database tab name modifier %1 [заблокировано] + + %1 [Temporary] + Database tab name modifier + %1 [Временный] + DatabaseWidget - Database Tags - Теги базы данных + Searches and Tags + Поиск и теги Searching… @@ -2293,12 +2655,16 @@ This is definitely a bug, please report it to the developers. Do you really want to move the group "%1" to the recycle bin? - Вы действительно хотите переместить группу "%1" в корзину? + Вы действительно хотите переместить группу «%1» в корзину? Expired entries Просроченные записи + + Entries expiring within %1 day(s) + Записи, истекающие в течение %1 дняЗаписи, истекающие в течение %1 днейЗаписи, истекающие в течение %1 днейЗаписи, истекающие в течение %1 дней + No current database. Нет текущей базы данных. @@ -2323,13 +2689,25 @@ This is definitely a bug, please report it to the developers. No Results Нет результатов + + Save + Сохранить + + + Enter a unique name or overwrite an existing search from the list: + Введите уникальное имя или замените существующую поисковую строку из списка: + + + Save Search + Сохранить поиск + Lock Database? Заблокировать базу данных? You are editing an entry. Discard changes and lock anyway? - Вы сейчас редактируете запись. Отменить изменения и всё равно заблокировать? + Вы редактируете запись. Заблокировать базу и не сохранять внесённые изменения? "%1" was modified. @@ -2351,26 +2729,6 @@ Save changes? 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? - База данных была изменена, есть несохранённые изменения. -Объединить изменения? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Не удалось открыть новый файл базы данных при попытке автоматически загрузить повторно. -Ошибка: %1 - Disable safe saves? Отключить безопасное сохранение? @@ -2413,9 +2771,94 @@ Disable safe saves and try again? Could not find database file: %1 Не удалось найти файл базы данных: %1 - - Entries expiring within %1 day(s) - Записи, истекающие в течение %1 дняЗаписи, истекающие в течение %1 днейЗаписи, истекающие в течение %1 днейЗаписи, истекающие в течение %1 дней + + New Database + Новая база данных + + + %1 [New Database] + Database tab name modifier + %1 [новая база данных] + + + Remote Sync did not contain any download or upload commands. + Удаленная синхронизация не содержала команд загрузки или выгрузки. + + + Remote sync '%1' completed successfully! + Удаленная синхронизация '%1' успешно завершена! + + + Remote sync '%1' failed: %2 + Удаленная синхронизация '%1' не удалась: %2 + + + Error while saving database %1: %2 + Ошибка при сохранении базы данных %1: %2 + + + Downloading... + Загрузка... + + + Uploading... + Выгрузка... + + + Syncing... + Синхронизация... + + + Remove passkey from entry + Удалить passkey из записи + + + Do you want to remove the passkey from this entry? + Удалить passkey из этой записи? + + + The database file "%1" was modified externally + Файл базы данных "%1" был изменен извне + + + Do you want to load the changes? + Вы хотите загрузить изменения? + + + Reload database + Перезагрузить базу данных + + + Reloading database… + Перезагрузка базы данных... + + + Reload canceled + Перезагрузка отменена + + + Reload successful + Перезагрузка завершена + + + Reload pending user action… + Перезагрузка в ожидании действия пользователя... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Файл базы данных "%1" был изменен извне.<br>Как вы хотите поступить?<br><br>Объединить все изменения<br>Игнорировать изменения на диске до сохранения<br>Отменить несохраненные изменения + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Файл базы данных "%1" был изменен извне.<br>Как вы хотите поступить?<br><br>Объединить все изменения и сохранить<br>Перезаписать изменения на диске<br>Отменить несохраненные изменения + + + Database file overwritten. + Файл базы данных перезаписан. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Файл базы данных на диске не может быть разблокирован с текущими учетными данными.<br>Введите новые учетные данные и/или используйте аппаратный ключ для продолжения. @@ -2454,7 +2897,7 @@ Disable safe saves and try again? Properties - Параметры + Свойства History @@ -2468,10 +2911,6 @@ Disable safe saves and try again? n/a н/д - - (encrypted) - (зашифровано) - Select private key Выберите закрытый (личный) ключ @@ -2490,7 +2929,7 @@ Disable safe saves and try again? Some Browser Integration settings are overridden by group settings. - Некоторые настройки интеграции c браузером могут быть переопределены настройками группы. + Некоторые параметры интеграции c браузером могут быть переопределены настройками группы. Invalid Entry @@ -2517,7 +2956,7 @@ Would you like to correct it? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - При проверке последовательности автоввода для "%1" произошла ошибка: + При проверке последовательности автоввода для «%1» произошла ошибка: %2 Внести исправления? @@ -2527,7 +2966,7 @@ Would you like to correct it? Unsaved Changes - Несохраненные изменения + Несохранённые изменения Would you like to save changes to this entry? @@ -2557,6 +2996,10 @@ Would you like to correct it? Hide Скрыть + + %n hour(s) + %n час%n часа%n часов%n часов + %n week(s) %n нед%n нед%n нед%n нед. @@ -2569,9 +3012,9 @@ Would you like to correct it? %n year(s) %n год%n лет%n лет%n лет - - %n hour(s) - %n час%n часа%n часов%n часов + + Failed to decrypt SSH key, ensure password is correct. + Не удалось расшифровать ключ SSH, проверьте правильность пароля. @@ -2622,7 +3065,7 @@ Would you like to correct it? Show a protected attribute - Показать защищённый атрибут + Показать защищённый атрибут Reveal @@ -2638,7 +3081,7 @@ Would you like to correct it? Exclude from database reports - Исключить из отчетов + Исключить из отчётов Foreground Color: @@ -2691,10 +3134,20 @@ Would you like to correct it? Add new window association Добавить ассоциацию с окном + + + + Add item + + + Remove selected window association Удалить выбранную ассоциацию с окном + + - + Remove item + - + Window title: Заголовок окна: @@ -2719,23 +3172,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Пользовательская последовательность автоввода для этого окна - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Эти параметры влияют на данные, возвращаемые при запросе из расширения браузера. - General Общие @@ -2748,25 +3187,13 @@ Would you like to correct it? Skip Auto-Submit for this entry Не использовать автоматическую отправку данных форм для этой записи - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Отправлять эту настройку только браузерным диалогам для HTTP Auth. Если включено, обычные формы авторизации не покажут запись среди вариантов выбора. - Use this entry only with HTTP Basic Auth Использовать эту запись только при обычной проверке подлинности HTTP - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Не отправлять эту настройку в браузер для HTTP Auth диалогов. Если включено, данные диалоги не покажутся для этой записи для выбора. - Do not use this entry with HTTP Basic Auth - Не использовать эту запись для базовой HTTP авторизации - - - Additional URL's - Дополнительные URL-адреса + Не использовать эту запись для базовой HTTP-авторизации Add @@ -2780,6 +3207,22 @@ Would you like to correct it? Edit Изменить + + These settings affect the entry's behaviour with the browser extension. + Эти параметры влияют на данные, возвращаемые при запросе из расширения для браузера. + + + Additional URLs + Дополнительные URL-адреса + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Отправлять эту запись только браузерным диалогам HTTP Auth. Если включено, обычные формы авторизации не покажут запись среди вариантов выбора. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Не отправлять эту запись браузерным диалогам HTTP Auth. Если включено, в этих диалогах не будет выбора данной записи. + EditEntryWidgetHistory @@ -2830,22 +3273,10 @@ Would you like to correct it? Notes field Поле заметок - - Toggle the checkbox to reveal the notes section. - Включите для отображения раздела примечаний. - Username field Поле имени пользователя - - Toggle notes visible - Скрыть или показать заметку - - - Notes: - Примечания: - Expiration field Поле ввода окончания срока действия @@ -2862,14 +3293,6 @@ Would you like to correct it? Presets Предустановки - - Password: - Пароль: - - - URL: - URL-адрес: - Url field Поле URL-адреса @@ -2878,18 +3301,10 @@ Would you like to correct it? Download favicon for URL Загрузить значок сайта для URL-адреса - - Title: - Название: - Title field Поле названия - - Username: - Имя пользователя: - Password field Поле пароля @@ -2898,18 +3313,42 @@ Would you like to correct it? Toggle expiration Использовать срок окончания действия - - Expires: - Истекает: - - - Tags: - Теги: - Tags list Список тегов + + &Username: + &Имя пользователя: + + + &Title: + &Название: + + + &Password: + &Пароль: + + + UR&L: + UR&L: + + + &Notes: + &Заметки: + + + Toggle notes visibility + Видимость заметки + + + T&ags: + Т&еги: + + + &Expires: + &Истекает: + EditEntryWidgetSSHAgent @@ -2949,19 +3388,6 @@ Would you like to correct it? Private key Закрытый (личный) ключ - - External file - Внешний файл - - - Browser for key file - Выбор файла-ключа - - - Browse… - Button for opening file dialog - Обзор... - Attachment Вложение @@ -2978,6 +3404,23 @@ Would you like to correct it? Remove from agent Убрать из агента + + External file + Внешний файл + + + Browser for key file + Выбор файла-ключа + + + Browse… + Button for opening file dialog + Обзор... + + + Generate + Генерировать + Select attachment file Выберите файл вложения @@ -3002,6 +3445,10 @@ Would you like to correct it? seconds с + + Clear agent + Очистить агент + EditGroupWidget @@ -3013,13 +3460,9 @@ Would you like to correct it? Icon Значок - - Browser Integration - Интеграция с браузером - Properties - Параметры + Свойства Add group @@ -3031,7 +3474,11 @@ Would you like to correct it? Group has unsaved changes - Группа имеет несохраненные изменения + Группа имеет несохранённые изменения + + + Browser Integration + Интеграция с браузером Enable @@ -3048,13 +3495,9 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Редактировать группу - These settings affect to the group's behaviour with the browser extension. - Эти настройки влияют на взаимодействие с расширением браузера. + Эти параметры влияют на взаимодействие с расширением браузера. Hide entries from browser extension: @@ -3066,11 +3509,11 @@ Would you like to correct it? Skip Auto-Submit for entries: - Не использовать Авто-Отправку для записей: + Не использовать автоотправку для записей: Skip Auto-Submit toggle for this and sub groups - Не использовать Авто-Отправку для этой группы и её подгрупп + Не использовать автооправку для этой группы и её подгрупп Use entries only with HTTP Basic Auth: @@ -3082,12 +3525,28 @@ Would you like to correct it? Do not use entries with HTTP Basic Auth: - Не используйте записи с HTTP Basic Auth: + Не использовать записи с HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups Не использовать HTTP Auth для этой группы и её подгрупп + + Omit WWW subdomain from matching: + Исключить субдомен WWW из сопоставления: + + + Omit WWW subdomain from matching toggle for this and sub groups + Исключить субдомен WWW из переключателя соответствия для этой группы и подгрупп + + + Restrict matching to given browser key: + Ограничить сопоставление по заданному ключу браузера: + + + Restrict matching to given browser key toggle for this and sub groups + Ограничить сопоставление данным переключателем клавиши браузера для этой и подгрупп + EditGroupWidgetKeeShare @@ -3150,7 +3609,8 @@ Would you like to correct it? Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. - Установленная версия KeePassXC не поддерживает совместное использование контейнера такого типа. Список поддерживаемых расширений: %1. + Установленная версия KeePassXC не поддерживает совместное использование +контейнера такого типа. Список поддерживаемых расширений: %1. %1 is already being exported by this database. @@ -3179,7 +3639,7 @@ Supported extensions are: %1. KeeShare container - KeeShare контейнер + Контейнер KeeShare KeeShare signed container @@ -3222,7 +3682,7 @@ Supported extensions are: %1. Use default Auto-Type sequence of parent group - &Использовать последовательность по умолчанию автоввода родительской группы + Использовать последовательность по умолчанию для автоввода родительской группы Auto-Type: @@ -3238,7 +3698,7 @@ Supported extensions are: %1. Notes: - Примечания: + Заметки: Default auto-type sequence field @@ -3277,11 +3737,11 @@ Supported extensions are: %1. Set the URL to use to search for a favicon - Указать URL-адрес для поиска значка. + Указать URL-адрес для поиска значка Favicon URL - Favicon URL + Значок сайта для URL Download favicon for URL @@ -3289,7 +3749,7 @@ Supported extensions are: %1. Download favicon - Скачать значок сайта + Загрузить значок сайта Apply selected icon to subgroups and entries @@ -3319,10 +3779,6 @@ Supported extensions are: %1. Unable to fetch favicon. Не удалось получить значок. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Возможно использовать службу поиска значков сайта DuckDuckGo в меню «Сервис» → «Параметры» → «Безопасность» - Existing icon selected. Выбран существующий значок. @@ -3355,6 +3811,10 @@ Supported extensions are: %1. The following icon(s) failed: Следующий значок потерпел неудачу:Следующие значки потерпели неудачу:Следующие значки потерпели неудачу:Ошибки в следующих значках: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Вы можете включить службу значков сайта DuckDuckGo в Настроках приложения -> Безопасность + EditWidgetProperties @@ -3392,11 +3852,11 @@ Supported extensions are: %1. Plugin Data - Данные плагинов + Данные подключаемого модуля Plugin data - Данные подключаемого модуля + Данные подключаемого модуля Remove selected plugin data @@ -3408,13 +3868,13 @@ Supported extensions are: %1. Delete plugin data? - Удалить данные плагинов? + Удалить данные модулей? Do you really want to delete the selected plugin data? This may cause the affected plugins to malfunction. - Вы действительно хотите удалить выбранные данные плагинов? -Это может привести к сбоям плагинов. + Вы действительно хотите удалить выбранные данные модулей? +Это может привести к сбоям модулей. Key @@ -3429,14 +3889,47 @@ This may cause the affected plugins to malfunction. Entry %1 - Clone - %1 - клон + %1 — клон + + + Passkey + Passkey + + + Invalid conversion type: %1 + Недопустимый тип преобразования: %1 + + + Invalid conversion syntax: %1 + Недопустимый синтаксис преобразования: %1 + + + Invalid regular expression syntax %1 +%2 + Недопустимый синтаксис регулярного выражения %1 +%2 EntryAttachments Cannot open file "%1" - Невозможно открыть файл "%1". + Не удалось открыть файл "%1" + + + + EntryAttachmentsDialog + + Form + Форма + + + File name + Имя файла + + + File contents... + Содержимое файла... @@ -3476,14 +3969,6 @@ This may cause the affected plugins to malfunction. Remove Удалить - - Rename selected attachment - Переименовать выбранное вложение - - - Rename - Переименовать - Open selected attachment Открыть выбранное вложение @@ -3524,7 +4009,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to overwrite the existing file "%1" with the attachment? - Вы действительно хотите перезаписать имеющийся файл "%1" с вложением? + Вы действительно хотите перезаписать имеющийся файл «%1» с вложением? Confirm overwrite @@ -3561,12 +4046,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment Подтвердить перезапись вложения - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Вложение "%1" уже существует. -Хотите перезаписать существующее вложение? - Confirm Attachment Подтвердить вложение @@ -3588,7 +4067,7 @@ Are you sure to add this file? The attachment '%1' was modified. Do you want to save the changes to your database? - Вложение "%1" было изменено. + Вложение «%1» было изменено. Сохранить изменения в базе данных? @@ -3601,6 +4080,24 @@ Error: %1 Не удалось сохранить обновлённое вложение. Ошибка: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Вложение «%1» уже существует. +Перезаписать существующее вложение? + + + New + Новый + + + Preview + Просмотр + + + Failed to preview an attachment: Attachment not found + Не удалось просмотреть вложение: Вложение не найдено + EntryAttributesModel @@ -3633,7 +4130,7 @@ Error: %1 Title - Имя записи + Название Username @@ -3649,7 +4146,7 @@ Error: %1 Notes - Примечания + Заметки Custom Attributes @@ -3705,7 +4202,7 @@ Error: %1 Title - Имя записи + Название Username @@ -3721,7 +4218,7 @@ Error: %1 Notes - Примечания + Заметки Expires @@ -3761,7 +4258,7 @@ Error: %1 Entry notes - Примечания записи + Заметки к записи Entry expires at @@ -3795,6 +4292,14 @@ Error: %1 Has TOTP Использует TOTP + + Background Color + Цвет фона + + + Group Path + Путь группы + EntryPreviewWidget @@ -3815,8 +4320,8 @@ Error: %1 Пароль - Notes - Примечания + URL + URL-адрес Expiration @@ -3835,8 +4340,8 @@ Error: %1 Логин - URL - URL-адрес + Notes + Заметки Advanced @@ -3886,6 +4391,10 @@ Error: %1 Never Никогда + + Double click to copy value + Дважды щёлкните левой кнопкой мыши, чтобы скопировать значение + Enabled Включено @@ -3894,6 +4403,10 @@ Error: %1 Disabled Отключено + + Double click to copy to clipboard + Дважды щёлкните, чтобы скопировать в буфер обмена + EntryURLModel @@ -3901,6 +4414,10 @@ Error: %1 Invalid URL Неверный URL + + Duplicate URL + Повторяющийся URL-адрес + EntryView @@ -3914,7 +4431,11 @@ Error: %1 Reset to defaults - Сброс в стандартные значения + Восстановить значения по умолчанию + + + + %1 entry(s)... + + %1 запись...+ %1 записей...+ %1 записей...+ %1 записей... @@ -3931,7 +4452,8 @@ Error: %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - При продолжении, будет выполнен экспорт базы данных в незашифрованный файл. Пароли и другие чувствительные данные в базе будут уязвимыми. + При продолжении будет выполнен экспорт базы данных в незашифрованный файл. +Пароли и другие чувствительные данные в базе будут уязвимыми. database order @@ -3951,11 +4473,11 @@ This will leave your passwords and sensitive information vulnerable! Export database to HTML file - Экспортировать базу данных в HTML файл + Экспортировать базу данных в HTML-файл HTML file - HTML файл + HTML-файл @@ -3985,7 +4507,7 @@ This will leave your passwords and sensitive information vulnerable! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Запущен другой Secret Service (%1)<br/>Пожалуйста отключите/удалите его перед тем как включать интеграцию с ним. + Запущен другой Secret Service (%1)<br/>Пожалуйста отключите или удалите его перед тем как включать интеграцию с ним. Failed to register DBus service at %1.<br/> @@ -3993,23 +4515,23 @@ This will leave your passwords and sensitive information vulnerable! Failed to register service on DBus at path '%1' - Ошибка при регистрации службы в DBus по пути '%1' + Ошибка при регистрации службы в DBus по пути «%1» Failed to register database on DBus under the name '%1' - Ошибка при регистрации базы в DBus под именем '%1' + Ошибка при регистрации базы в DBus под именем «%1» Failed to register session on DBus at path '%1' - Ошибка при регистрации сессии в DBus по пути '%1' + Ошибка при регистрации сессии в DBus по пути «%1» Failed to register item on DBus at path '%1' - Ошибка при регистрации службы в DBus по пути '%1' + Ошибка при регистрации службы в DBus по пути «%1» Failed to register prompt object on DBus at path '%1' - Ошибка при регистрации объекта приглашения в DBus по пути '%1' + Ошибка при регистрации объекта приглашения в DBus по пути «%1» @@ -4035,7 +4557,7 @@ This will leave your passwords and sensitive information vulnerable! Non-existing/inaccessible executable path. Please double-check the client is legit. - Предоставьте этому получателю возможность выдавать пользователям доступ к отчетам + Несуществующий/недоступный путь к исполняемому файлу. Перепроверьте подлинность клиента. @@ -4072,14 +4594,14 @@ This will leave your passwords and sensitive information vulnerable! %1 - Clone - %1 - клон + %1 — клон HibpDownloader Online password validation failed - Не удалось проверить пароли онлайн + Не удалось проверить пароль онлайн @@ -4135,6 +4657,199 @@ You can enable the DuckDuckGo website icon service in the security section of th Получение значков (%1 из %2)… + + ImportWizard + + Import Wizard + Мастер импорта + + + + ImportWizardPageReview + + WizardPage + Страница мастера + + + Entry count: %1 + Количество записей: %1 + + + Group + Группа + + + Title + Название + + + Username + Имя пользователя + + + Password + Пароль + + + Url + URL-адрес + + + Could not load key file. + Не удалось загрузить файл-ключ. + + + Could not open remote database. Password or key file may be incorrect. + Не удалось открыть удаленную базу данных. Пароль или файл-ключ могут быть неверными. + + + + ImportWizardPageSelect + + Form + Форма + + + Import File Selection + Выбор файла импорта + + + Password: + Пароль: + + + Key File: + Файл-ключ: + + + Browse… + Обзор... + + + Import Into: + Импортировать в: + + + New Database + Новая база данных + + + No unlocked databases available + Нет разблокированных баз данных + + + Existing Database: + Существующая база данных: + + + Import File: + Импортировать файл: + + + Comma Separated Values (.csv) + Значения, разделенные запятыми (.csv) + + + 1Password Export (.1pux) + Экспорт из 1Password (.1pux) + + + 1Password Vault (.opvault) + Хранилище 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + База данных KeePass 1 (.kdb) + + + Open OPVault + Открыть OPVault + + + Select import file + Выберите файл для импорта + + + All files + Все файлы + + + Key files + Файлы-ключи + + + Select key file + Выберите файл-ключ + + + Comma Separated Values + Значения, разделенные запятыми + + + 1Password Export + Экспорт из 1Password + + + Bitwarden JSON Export + Экспорт из Bitwarden в JSON + + + 1Password Vault + Хранилище 1Password + + + KeePass1 Database + База данных KeePass1 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Экспорт из Proton Pass в JSON + + + Temporary Database + Временная база данных + + + Command: + Команда: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Например: "sftp user@hostname" или "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Ввод: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + Например: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} используется в качестве заполнителя для хранения базы данных во временном месте. +Команда должна завершиться. В случае с `sftp` в качестве последней команды необходимо отправить `exit`. + + + + Remote Database (.kdbx) + Удалённая база данных (.kdbx) + + KMessageWidget @@ -4215,7 +4930,7 @@ If this reoccurs, then your database file may be corrupt. Header SHA256 mismatch - Несоответствие SHA256 заголовка + Несоответствие заголовка SHA256 Invalid credentials were provided, please try again. @@ -4249,7 +4964,7 @@ If this reoccurs, then your database file may be corrupt. Unsupported key derivation function (KDF) or invalid parameters - Функция формирования ключа (ФФК) не поддерживается, либо неверные параметры + Функция формирования ключа (ФФК) не поддерживается, либо параметры неверны Legacy header fields found in KDBX4 file. @@ -4304,22 +5019,22 @@ If this reoccurs, then your database file may be corrupt. Invalid variant map Int32 entry value length Translation: variant map = data structure for storing meta data - Недопустимая длина Int32 значения в структуре метаданных + Недопустимая длина значения Int32 в структуре метаданных Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - Недопустимая длина UInt32 значения в структуре метаданных + Недопустимая длина значения UInt32 в структуре метаданных Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - Недопустимая длина Int64 значения в структуре метаданных + Недопустимая длина значения Int64 в структуре метаданных Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - Недопустимая длина UInt64 значения в структуре метаданных + Недопустимая длина значения UInt64 в структуре метаданных Invalid variant map entry type @@ -4350,7 +5065,7 @@ If this reoccurs, then your database file may be corrupt. Failed to serialize KDF parameters variant map Translation comment: variant map = data structure for storing meta data - Ошибка сериализации ФФК параметров структуры матаданных + Ошибка сериализации ФФК параметров структуры метаданных @@ -4415,7 +5130,7 @@ This is a one-way migration. You won't be able to open the imported databas Not a KeePass database. - Не база данных KeePass. + Это не база данных KeePass. Unsupported KeePass 2 database version. @@ -4478,7 +5193,7 @@ Line %2, column %3 Missing DeletedObject uuid or time - Нет UUID или времени для DeletedObject + Нет UUID или времени для DeletedObject Null entry uuid @@ -4502,7 +5217,7 @@ Line %2, column %3 Duplicate custom attribute found - Обнаружен повторяющиеся пользовательский атрибут + Обнаружен повторяющийся пользовательский атрибут Entry string key or value missing @@ -4522,7 +5237,7 @@ Line %2, column %3 Invalid date time value - Недопустимое значение даты/времени + Недопустимое значение даты/времени Invalid color value @@ -4550,7 +5265,7 @@ Line %2, column %3 KeeAgentSettings Invalid KeeAgent settings file structure. - Неверная структура файла параметров KeeAgent + Неверная структура файла параметров KeeAgent. Private key is an attachment but no attachments provided. @@ -4569,17 +5284,6 @@ Line %2, column %3 Не удалось открыть закрытый ключ - - KeePass1OpenWidget - - Import KeePass1 Database - Импортировать базу данных в формате KeePass1 - - - Unable to open the database. - Невозможно открыть базу данных. - - KeePass1Reader @@ -4647,7 +5351,7 @@ If this reoccurs, then your database file may be corrupt. Key transformation failed - Не удалось выполнить преобразование ключа + Не удалось выполнить преобразование ключа Invalid group field type number @@ -4766,7 +5470,7 @@ If this reoccurs, then your database file may be corrupt. Export is disabled in settings - Возможность экспорировать отключена в параметрах программы + Возможность экспортировать отключена в параметрах программы Inactive share @@ -4820,11 +5524,11 @@ If this reoccurs, then your database file may be corrupt. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Внимание: изменение файла приведёт к невозможности разблокировать базу данных! + Внимание: изменение файла приведёт к невозможности разблокировать базу данных. Browse for key file - Открыть диалога выбора файла-ключа + Открыть диалог выбора файла-ключа Browse… @@ -4836,13 +5540,13 @@ If this reoccurs, then your database file may be corrupt. You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - ВНИМАНИЕ: Вы используете файл-ключ устаревшего формата, поддержка которого может быть прекращена в будущем. + ВНИМАНИЕ: Используется файл-ключ устаревшего формата, поддержка которого может быть прекращена в будущем. По возможности создайте новый ключевой файл. Error loading the key file '%1' Message: %2 - Ошибка загрузки ключевого файла '%1' + Ошибка загрузки файла-ключа «%1» Сообщение: %2 @@ -4924,7 +5628,7 @@ Are you sure you want to continue with this file? Could not register global shortcut - Невозможно зарегистрировать глобальную горячую клавишу + Не удалось зарегистрировать глобальную горячую клавишу @@ -4937,10 +5641,6 @@ Are you sure you want to continue with this file? &Recent Databases &Недавние базы данных - - &Import - &Импорт - &Export &Экспорт @@ -4961,6 +5661,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + Теги + &Groups &Группы @@ -5003,36 +5707,20 @@ Are you sure you want to continue with this file? &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 - Показать/изменить запись - &Delete Entry… &Удалить запись… @@ -5041,10 +5729,6 @@ Are you sure you want to continue with this file? &New Group… &Создать группу… - - Add a new group - Добавить новую группу - &Edit Group… &Изменить группу… @@ -5077,17 +5761,9 @@ Are you sure you want to continue with this file? Database &Reports… &Отчёты по базе данных… - - Statistics, health check, etc. - Статистика, проверка безопасности… - &Database Settings… - Параметры базы данных… - - - Database settings - Параметры базы данных + &Параметры базы данных… &Clone Entry… @@ -5097,34 +5773,18 @@ Are you sure you want to continue with this file? Move u&p Переместить &выше - - Move entry one step up - Переместить запись выше на одну позицию - Move do&wn Переместить &ниже - - Move entry one step down - Переместить запись ниже на одну позицию - Copy &Username Скопировать &имя пользователя - - Copy username to clipboard - Скопировать логин в буфер обмена - Copy &Password Скопировать п&ароль - - Copy password to clipboard - Скопировать пароль в буфер обмена - &Settings &Параметры @@ -5151,31 +5811,19 @@ Are you sure you want to continue with this file? Lock &All Databases - Заблокировать &Все Базы + Заблокировать &все базы &Title Назван&ие - Copy title to clipboard - Скопировать название в буфер обмена - - - &URL - &URL-адрес - - - Copy URL to clipboard - Скопировать URL-адрес в буфер обмена + Copy &URL + Скопировать &адрес &Notes - &Примечания - - - Copy notes to clipboard - Скопировать примечания в буфер обмена + &Заметки &CSV File… @@ -5189,25 +5837,13 @@ Are you sure you want to continue with this file? KeePass 1 Database… База данных KeePass 1… - - Import a KeePass 1 database - Импортировать базу данных KeePass 1 - 1Password Vault… Хранилище 1Password… - - Import a 1Password Vault - Импортировать хранилище 1Password - CSV File… - Файл &CSV... - - - Import a CSV file - Импортировать файл CSV + Файл CSV... Show TOTP @@ -5225,6 +5861,10 @@ Are you sure you want to continue with this file? Copy &TOTP Скопировать &TOTP + + Copy Password and TOTP + Скопировать пароль и TOTP + E&mpty recycle bin О&чистить корзину @@ -5249,10 +5889,6 @@ Are you sure you want to continue with this file? &Online Help Справка в &интернете - - Go to online documentation - Перейти к онлайн документации - &User Guide &Руководство пользователя @@ -5271,11 +5907,11 @@ Are you sure you want to continue with this file? Add key to SSH Agent - Добавить ключ к SSH-агент + Добавить ключ к SSH-агенту Remove key from SSH Agent - Убрать ключ из агента SSH + Убрать ключ из SSH-агента Compact Mode @@ -5295,15 +5931,19 @@ Are you sure you want to continue with this file? Classic (Platform-native) - Классическая (платформо-зависимая) + Классическая (зависимая от платформы) + + + Show Menubar + Отображать меню Show Toolbar - Показать панель инструментов + Отображать панель инструментов Show Preview Panel - Показывать панель предварительного просмотра + Отображать панель предпросмотра Always on Top @@ -5321,6 +5961,10 @@ Are you sure you want to continue with this file? Clone Group... Клонировать группу... + + &XML File… + Файл &XML… + Clear history Очистить историю @@ -5348,10 +5992,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 при работе с экранной клавиатурой. -Рекомендуется использовать AppImage с нашей страницы загрузок. + No Tags + Нет тегов Restore Entry(s) @@ -5381,9 +6023,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Закрыть KeePassXC + + %1 Entry(s) + %1 запись%1 записи%1 записей%1 запись(и) + Please present or touch your YubiKey to continue… - Пожалуйста, поднесите или коснитесь YubiKey, чтобы продолжить... + Поднесите или коснитесь YubiKey, чтобы продолжить... Restart Application? @@ -5393,6 +6039,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Требуется перезапуск приложения для применения этого параметра. Выполнить перезапуск сейчас? + + Allow Screen Capture + Разрешить скриншоты + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Импортировать 1PUX файл из 1Password + + + Import… + Импорт… + + + Passkeys… + Passkeys… + + + Import Passkey + Импорт Passkey + + + Remote S&ync… + Удаленная с&инхронизация… + + + Quit Application + Закрыть приложение + + + Open About Dialog + Открыть диалог «О программе» + + + Open Database + Открыть базу данных + + + Create Database + Создать базу данных + + + Merge From Database + Объединить из базы данных + + + Create Entry + Создать запись + + + Edit Entry + Редактировать запись + + + Delete Entry + Удалить запись + + + Create Group + Создать группу + + + Edit Group + Редактировать группу + + + Delete Group + Удалить группу + + + Download All Favicons + Загрузить значки сайтов для всех записей + + + Sort Groups A-Z + Сортировать группы А-Я + + + Sort Groups Z-A + Сортировать группы Я-А + + + Save Database As + Сохранить базу данных как + + + Show Database Security + Безопасность базы данных + + + Show Database Reports + Отчёты по базе данных + + + Show Database Settings + Параметры базы данных + + + Show Passkeys + Показать Passkey + + + Clone Entry + Клонировать запись + + + Move Entry Up + Переместить выше + + + Move Entry Down + Переместить ниже + + + Copy Username + Скопировать имя пользователя + + + Copy Password + Скопировать пароль + + + Show Application Settings + Открыть параметры приложения + + + Show Password Generator + Открыть генератор паролей + + + Remove Passkey From Entry + Удалить passkey из записи + + + Perform Auto-Type: {USERNAME} + Автоматический ввод: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Автоматический ввод: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Автоматический ввод: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Автоматический ввод: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Автоматический ввод: {TOTP} + + + Copy Title + Скопировать название + + + Copy URL + Скопировать URL + + + Copy Notes + Скопировать заметки + + + Export to CSV + Экспорт в CSV + + + Export to HTML + Экспорт в HTML + + + Import KeePass1 Database + Импортировать базу данных в формате KeePass1 + + + Import 1Password Vault + Импорт хранилища 1Password + + + Import CSV File + Импорт CSV-файла + + + Show TOTP QR Code + Показать QR-код TOTP + + + Set up TOTP + Настроить TOTP + + + Empty Recycle Bin + Очистить корзину + + + Open Donation Website + Открыть сайт для пожертвований + + + Open Bug Report + Открыть отчёт об ошибке + + + Open Online Documentation + Открыть онлайн-документацию + + + Open Keyboard Shortcuts Guide + Открыть руководство по сочетаниям клавиш + + + Save Database Backup + Сохранить резервную копию базы + + + SSH Agent: Add Key + SSH-агент: добавить ключ + + + SSH Agent: Remove Key + SSH-агент: убрать ключ + + + Toggle Compact Mode + Компактный режим + + + Set Theme: Automatic + Установить тему: Автоматически + + + Set Theme: Light + Установить тему: Светлая + + + Set Theme: Dark + Установить тему: Тёмная + + + Set Theme: Classic + Установить тему: Классическая + + + Toggle Show Menubar + Отображать меню + + + Toggle Show Toolbar + Отображать панель инструментов + + + Toggle Show Preview Panel + Отображать панель предварительного просмотра + + + Toggle Always on Top + Всегда поверх других окон + + + Toggle Hide Usernames + Скрыть логины + + + Toggle Hide Passwords + Скрыть пароли + + + Export to XML + Экспорт в XML + + + Toggle Allow Screen Capture + Разрешить скриншоты + + + Show Group Panel + Отображать панель групп + + + Toggle Show Group Panel + Отображать панель групп + + + Setup Remote Sync… + Настройка удаленной синхронизации… + + + Password Generator + Генератор паролей + + + E&xpire Entry… + И&стекает запись... + + + Clear SSH Agent + Очистить SSH-агент + + + Clear all identities in ssh-agent + Очистить все идентификаторы в ssh-агенте + ManageDatabase @@ -5433,7 +6387,7 @@ We recommend you use the AppImage available on our downloads page. Reset any remembered decisions for this application - Сбросить все сохраненные решения для этого приложения + Сбросить все сохранённые решения для этого приложения @@ -5450,26 +6404,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5488,7 +6422,7 @@ We recommend you use the AppImage available on our downloads page. Changed deleted objects - Изменены удалённые объекты + Удалённые объекты изменены Adding missing icon %1 @@ -5496,11 +6430,11 @@ We recommend you use the AppImage available on our downloads page. Removed custom data %1 [%2] - Пользовательские данные %1 [%2] удалены + Пользовательские данные %1 [%2] удалены Adding custom data %1 [%2] - Добавление пользовательских данные %1 [%2] + Добавление пользовательских данных %1 [%2] @@ -5527,15 +6461,7 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Здесь можно настроить параметры шифрования базы данных. Их можно будет изменить позже в настройках базы данных. - - - Advanced Settings - Дополнительные параметры - - - Simple Settings - Простые настройки + Здесь можно настроить параметры шифрования базы данных. Их можно будет изменить позже в параметрах базы данных. @@ -5557,7 +6483,7 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Здесь можно настроить параметры шифрования базы данных. Их можно будет изменить позже в настройках базы данных. + Здесь можно настроить параметры шифрования базы данных. Их можно будет изменить позже в параметрах базы данных. @@ -5571,6 +6497,25 @@ We recommend you use the AppImage available on our downloads page. Заполните отображаемое имя и, при желании, описание новой базы данных: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Имя вложения не может быть пустым + + + Attachment with the same name already exists + Вложение с таким же именем уже существует + + + Save attachment + Сохранить вложение + + + New entry attachment + Новое вложение записи + + NixUtils @@ -5617,15 +6562,6 @@ We recommend you use the AppImage available on our downloads page. Ожидалось %1 байт простого текста, найдено %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Невозможно создать базу данных из прочитанного файла -%1 - - OpVaultReader @@ -5673,7 +6609,7 @@ We recommend you use the AppImage available on our downloads page. Key file magic header id invalid - Недопустимый идентификатор заголовка файла-ключа. + Недопустимый идентификатор заголовка файла-ключа Found zero keys @@ -5699,6 +6635,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Неподдерживаемый шифр: %1 + + AES-256/GCM is currently not supported + AES-256/GCM в настоящее время не поддерживается + Passphrase is required to decrypt this key Для расшифровки этого ключа требуется пароль @@ -5763,28 +6703,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Неожиданный конец файла при записи закрытого (личного) ключа + + (encrypted) + (зашифровано) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Пароли не совпадают + SSH Key Generator + Генератор ключей SSH - Passwords match so far - Количество совпавших паролей + Type + Тип - Toggle Password (%1) - Скрыть или показать пароль (%1) + Bits + Биты - Generate Password (%1) - Сгенерировать пароль (%1) + Comment + Комментарий + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Экспорт Passkey - Warning: Caps Lock enabled! - Внимание: включен режим CAPS LOCK. + Filenames will be generated with title and .passkey file extension. + Имена файлов будут сгенерированы с заголовком и расширением файла .passkey + + + Export entries + Экспорт записей + + + Export Selected + Экспорт выбранного + + + Cancel + Отмена + + + Export to folder + Экспортировать в папку + + + Export the following passkey entries. + Экспортировать следующие записи passkey. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Passkey Экспорт + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Файл "%1.passkey" уже существует. +Вы хотите перезаписать его? + + + + Cannot open file + Не удается открыть файл + + + Cannot open file "%1" for writing. + Не удается открыть файл "%1" для записи. + + + Cannot write to file + Не удается записать в файл + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passkey Импорт + + + Username: %1 + Имя пользователя: %1 + + + Group + Группа + + + Database + Хранилище + + + Import Passkey + Импорт Passkey + + + Import + Импортировать + + + Cancel + Отмена + + + Entry + Запись + + + Create new entry + Создать новую запись + + + Relying Party: %1 + Доверенная сторона: %1 + + + Import the following passkey: + Импортировать следующий passkey: + + + Import the following passkey to this entry: + Импортировать следующий passkey в эту запись: + + + Default passkeys group (Imported Passkeys) + Группа passkeys по умолчанию (Импортированные Passkeys) + + + + PasskeyImporter + + Passkey file + Passkey файл + + + All files + Все файлы + + + Cannot open file + Не удается открыть файл + + + Cannot open file "%1" for reading. + Не могу открыть файл "%1" для чтения. + + + Open passkey file + Открыть passkey файл + + + Cannot import passkey + Не удаётся импортировать passkey + + + Cannot import passkey file "%1". Data is missing. + Не удаётся импортировать passkey файл "%1". Данные отсутствуют. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Не удаётся импортировать passkey файл "%1". +Следующие данные отсутствуют: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Не удаётся импортировать passkey файл "%1". Приватный ключ отсутствует или поврежден. @@ -5827,7 +6923,7 @@ We recommend you use the AppImage available on our downloads page. <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> - <p>Пароль - это основной метод защиты базы данных.</p><p>Хороший пароль должен быть длинным и уникальным. KeePassXC может сгенерировать его сам.</p> + <p>Пароль — это основной метод защиты базы данных.</p><p>Хороший пароль должен быть длинным и уникальным. KeePassXC может сгенерировать его сам.</p> Passwords do not match. @@ -5903,7 +6999,7 @@ We recommend you use the AppImage available on our downloads page. Dashes and Slashes - Тире и слэши + Тире и косые черты Upper-case letters @@ -5935,7 +7031,7 @@ We recommend you use the AppImage available on our downloads page. Additional characters to use for the generated password - Дополнительные символы + Дополнительные символы для созданного пароля Additional characters @@ -5959,16 +7055,12 @@ We recommend you use the AppImage available on our downloads page. Excluded characters - Исключенные символы + Исключённые символы Also choose from: Дополнительные символы: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Исключить символы: «0», «1», «l», «I», «O», «|», «﹒» - Exclude look-alike characters Не использовать визуально схожие символы @@ -5993,10 +7085,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Количество слов: - - Character Count: - Количество символов: - Word Case: Регистр слов: @@ -6007,11 +7095,7 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist - Добавить пользовательский словарь - - - character - символ + Добавить свой словарь Close @@ -6049,52 +7133,6 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Энтропия: %1 бит - - Confirm Delete Wordlist - Подтвердить удаление словаря - - - Do you really want to delete the wordlist "%1"? - Вы действительно хотите удалить словарь "%1"? - - - Failed to delete wordlist - Не удалось удалить словарь - - - Wordlists - Словарь - - - All files - Все файлы - - - Select Custom Wordlist - Выберите пользовательский словарь - - - Overwrite Wordlist? - Переписать словарь? - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - Список слов "%1" уже настраиваемый. -Вы хотите его перезаписать? - - - Failed to add wordlist - Не удалось добавить словарь - - - Logograms - Логограммы - - - Special Characters - Специальные символы - Password Quality: %1 Качество пароля: %1 @@ -6119,12 +7157,125 @@ Do you want to overwrite it? Password quality Отличный + + Confirm Delete Wordlist + Подтвердить удаление словаря + + + Do you really want to delete the wordlist "%1"? + Вы действительно хотите удалить словарь «%1»? + + + Failed to delete wordlist + Не удалось удалить словарь + + + Wordlists + Словарь + + + All files + Все файлы + + + Select Custom Wordlist + Выберите свой словарь + + + Overwrite Wordlist? + Переписать словарь? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Список слов «%1» уже настраиваемый. +Вы хотите его перезаписать? + + + Failed to add wordlist + Не удалось добавить словарь + + + Logograms + Логограммы + + + Special Characters + Специальные символы + + + passwordLength + Длина пароля + + + Characters: %1 + Символы: %1 + + + MIXED case + СМЕШАННЫЙ регистр + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Исключить символы: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Пароли не совпадают + + + Passwords match so far + Количество совпавших паролей + + + Toggle Password (%1) + Скрыть или показать пароль (%1) + + + Generate Password (%1) + Сгенерировать пароль (%1) + + + Warning: Caps Lock enabled! + Внимание: CAPS LOCK включён. + + + Quality: %1 + Качество: %1 + + + Poor + Password quality + Плохой + + + Weak + Password quality + Слабый + + + Good + Password quality + Хороший + + + Excellent + Password quality + Отличный + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Переключить видимость пароля Ctrl + H. Открыть генератор паролей Ctrl + G. + PickcharsDialog KeePassXC - Pick Characters - KeePassXC - Выбор символов + KeePassXC — Выбор символов Select characters to type, navigate with arrow keys, Ctrl + S submits. @@ -6135,6 +7286,21 @@ Do you want to overwrite it? Нажимать &Tab между символами + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Предварительный просмотр вложения записи + + + No preview available + Предварительный просмотр недоступен + + + Image format not supported + Формат изображения не поддерживается + + QMessageBox @@ -6173,6 +7339,10 @@ Do you want to overwrite it? Continue Продолжить + + Continue with weak password + Продолжить со слабыми паролем + QObject @@ -6262,7 +7432,7 @@ Do you want to overwrite it? URL for the entry. - URL-адрес для записи + URL-адрес для записи. URL @@ -6274,7 +7444,7 @@ Do you want to overwrite it? Notes - Примечания + Заметки Prompt for the entry's password. @@ -6374,7 +7544,7 @@ Do you want to overwrite it? Password for '%1' has been leaked! - Пароль для '%1' был замечен в утечке! + Пароль для «%1» был замечен в утечке! Export an attachment of an entry. @@ -6390,7 +7560,7 @@ Do you want to overwrite it? Path to which the attachment should be exported. - Путь куда будет экспортировано вложение. + Путь, куда будет экспортировано вложение. Could not find entry with path %1. @@ -6402,7 +7572,7 @@ Do you want to overwrite it? No export target given. Please use '--stdout' or specify an 'export-file'. - Цель экспорта не указана. Пожалуйста, используйте '--stdout' или укажите 'export-file'. + Цель экспорта не указана. Используйте «--stdout» или укажите «export-file». Could not open output file %1. @@ -6459,7 +7629,7 @@ Do you want to overwrite it? Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Скопировать указанный аттрибут в буфер обмена. Если аттрибут не указан, используется пароль. + Скопировать указанный атрибут в буфер обмена. Если атрибут не указан, используется пароль. Copy the current TOTP to the clipboard (equivalent to "-a totp"). @@ -6471,7 +7641,7 @@ Do you want to overwrite it? Copy an entry's attribute to the clipboard. - Скопировать в буфер обмена аттрибуты записи. + Скопировать в буфер обмена атрибуты записи. Path of the entry to clip. @@ -6480,7 +7650,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - Время ожидания очистки буфера обмена (по умолчанию составляет %1 (в секундах), для снятия ограничений установите равным нулю). + Время ожидания очистки буфера обмена (по умолчанию составляет %1 (в секундах), для снятия ограничений установите равным нулю). Invalid timeout value %1. @@ -6508,15 +7678,15 @@ Do you want to overwrite it? ERROR: attribute %1 is ambiguous, it matches %2. - ОШИБКА: аттрибут %1 неоднозначный, он соответствует %2. + ОШИБКА: аттрибут %1 неоднозначный, он соответствует %2. Attribute "%1" not found. - Аттрибут «%1» не найден. + Атрибут «%1» не найден. Entry's "%1" attribute copied to the clipboard! - Аттрибуты записи «%1» скопированы в буфер обмена. + Атрибуты записи «%1» скопированы в буфер обмена. Clearing the clipboard in %1 second(s)... @@ -6532,7 +7702,7 @@ Do you want to overwrite it? Display this help. - Показать эту помощь. + Показать эту справку. Silence password prompt and other secondary outputs. @@ -6548,11 +7718,11 @@ Do you want to overwrite it? Deactivate password key for the database. - Отключить использования парольного ключа базой данных. + Отключить использование парольного ключа базой данных. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Номер слота ключа Yubikey и дополнительный серийный номер для доступа к базе данных (например: :7370001). + Номер слота ключа Yubikey и дополнительный серийный номер для доступа к базе данных (например: 1:7370001). slot[:serial] @@ -6566,6 +7736,10 @@ Do you want to overwrite it? Too many arguments provided. Слишком много аргументов. + + Path of the database. + Путь к базе данных. + Target decryption time in MS for the database. Целевое время расшифровывания базы данных в миллисекундах. @@ -6586,10 +7760,6 @@ Do you want to overwrite it? Create a new database. Создать новую базу данных. - - Path of the database. - Путь к базе данных. - Invalid decryption time %1. Неверное время расшифровывания %1. @@ -6604,7 +7774,7 @@ Do you want to overwrite it? Loading the key file failed - Ошибка загрузки ключевого файла + Ошибка загрузки файла-ключа No key is set. Aborting database creation. @@ -6616,7 +7786,7 @@ Do you want to overwrite it? Setting %1 rounds for key derivation function. - Для функции формирования ключа задано использование %1 раундов. + Для функции формирования ключа задано использование раундов: %1. error while setting database key derivation settings. @@ -6634,6 +7804,158 @@ Do you want to overwrite it? Successfully created new database. Новая база данных успешно создана. + + Unset the password for the database. + Сбросить пароль для базы данных. + + + Unset the key file for the database. + Сбросить ключ-файл для базы данных. + + + Edit a database. + Редактировать базу данных. + + + Cannot use %1 and %2 at the same time. + Невозможно использовать %1 и %2 одновременно. + + + Could not change the database key. + Не удалось изменить ключ базы данных. + + + Database was not modified. + База данных не была изменена. + + + Writing the database failed: %1 + Ошибка записи базы данных: %1 + + + Successfully edited the database. + База данных успешно изменена. + + + Cannot remove password: The database does not have a password. + Невозможно удалить пароль: у базы данных нет пароля. + + + Cannot remove file key: The database does not have a file key. + Невозможно удалить файл-ключ: в базе данных нет файла-ключа. + + + Loading the new key file failed: %1 + Загрузка нового файла-ключа не удалась: %1 + + + Found unexpected Key type %1 + Обнаружен неожиданный тип ключа %1 + + + Cannot remove all the keys from a database. + Невозможно удалить все ключи из базы данных. + + + Show a database's information. + Показать сведения о базе данных. + + + UUID: + UUID: + + + Name: + Имя: + + + Description: + Описание: + + + Cipher: + Шифрование: + + + KDF: + KDF: + + + Recycle bin is enabled. + Использование корзины включено. + + + Recycle bin is not enabled. + Использование корзины не включено. + + + Location + Расположение + + + Database created + База данных создана + + + Last saved + Последнее сохранение + + + Unsaved changes + Несохранённые изменения + + + yes + да + + + no + нет + + + Number of groups + Количество групп + + + Number of entries + Количество записей + + + Number of expired entries + Количество истёкших записей + + + Unique passwords + Уникальные пароли + + + Non-unique passwords + Неуникальные пароли + + + Maximum password reuse + Максимальное количество повторных использований пароля + + + Number of short passwords + Количество коротких паролей + + + Number of weak passwords + Количество ненадёжных паролей + + + Entries excluded from reports + Исключённые из отчёта записи + + + Average password length + Средняя длина пароля + + + %1 characters + %1 символов + Word count for the diceware passphrase. Количество слов для парольной фразы. @@ -6657,10 +7979,6 @@ Do you want to overwrite it? Invalid word count %1 Количество неверных слов: %1 - - The word list is too small (< 1000 items) - Словарь слишком маленький (< 1000 слов) - Title for the entry. Название записи. @@ -6683,11 +8001,7 @@ Do you want to overwrite it? Enter new password for entry: - Введите новый пароль для записи: - - - Writing the database failed: %1 - Ошибка записи базы данных: %1 + Введите новый пароль для записи: Successfully edited entry %1. @@ -6775,7 +8089,7 @@ Do you want to overwrite it? Type: User+Leet(Rep) - Тип: Пользователь + замена букв цифрами и знаками (повт.) + Тип: пользователь + замена букв цифрами и знаками (повт.) Type: Repeated(Rep) @@ -6809,10 +8123,6 @@ Do you want to overwrite it? Exit interactive mode. Покинуть интерактивный режим. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Выбор формата файла для экспорта. Возможные варианты: XML (по умолчанию) или CSV. - Exports the content of a database to standard output in the specified format. Экспорт базы данных в заданном формате на устройство стандартного вывода. @@ -6899,7 +8209,7 @@ Do you want to overwrite it? Path of the XML database export. - Путь для экспорта базы данных в формат XML + Путь для экспорта базы данных в формат XML. Path of the new database. @@ -6913,106 +8223,6 @@ Do you want to overwrite it? Successfully imported database. База данных успешно импортирована. - - Show a database's information. - Показать сведения о базе данных. - - - UUID: - UUID: - - - Name: - Имя: - - - Description: - Описание: - - - Cipher: - Шифрование: - - - KDF: - KDF: - - - Recycle bin is enabled. - Использование корзины включено. - - - Recycle bin is not enabled. - Использование корзины не включено. - - - Location - Расположение - - - Database created - База данных создана - - - Last saved - Последнее сохранение - - - Unsaved changes - Несохраненные изменения - - - yes - да - - - no - нет - - - Number of groups - Количество групп - - - Number of entries - Количество записей - - - Number of expired entries - Количество истёкших записей - - - Unique passwords - Уникальные пароли - - - Non-unique passwords - Неуникальные пароли - - - Maximum password reuse - Максимальное количество повторных использований пароля - - - Number of short passwords - Количество коротких паролей - - - Number of weak passwords - Количество ненадёжных паролей - - - Entries excluded from reports - Исключённые из отчёта записи - - - Average password length - Средняя длина пароля - - - %1 characters - %1 символов - Unknown command %1 Неизвестная команда %1 @@ -7061,7 +8271,7 @@ Available commands: Use the same credentials for both database files. - Используйте те же учетные данные для обоих файлов базы данных. + Используйте те же учётные данные для обоих файлов базы данных. Key file of the database to merge from. @@ -7069,11 +8279,11 @@ Available commands: Deactivate password key for the database to merge from. - Отключить использования парольного ключа для объединяемой базы данных. + Отключить использование парольного ключа для объединяемой базы данных. Only print the changes detected by the merge operation. - Не выполнять объединение, а только сообщать о найденных изменениях + Не выполнять объединение, а только сообщать о найденных изменениях. Yubikey slot for the second database. @@ -7185,13 +8395,17 @@ Available commands: Show the protected attributes in clear text. Показать защищённый атрибут в виде простого текста. + + Show all the attributes of the entry. + Показать все атрибуты записи. + Show the attachments of the entry. Показать все вложения записи. 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 @@ -7231,7 +8445,7 @@ Available commands: Enter password to unlock %1: - Введите пароль для разблокировки %1: + Введите пароль для разблокировки %1: Failed to load key file %1: %2 @@ -7255,9 +8469,13 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Неверный серийный номер Yubikey %1 + + Please present or touch your YubiKey to continue. + Подключите или коснитесь YubiKey для продолжения. + Enter password to encrypt database (optional): - Введите пароль для шифрования базы данных (необязательно): + Введите пароль для шифрования базы данных (необязательно): Do you want to create a database with an empty password? [y/N]: @@ -7265,11 +8483,11 @@ Please consider generating a new key file. Repeat password: - Повторите пароль: + Повторите пароль: Error: Passwords do not match. - Ошибка: пароли не совпадают + Ошибка: пароли не совпадают. No program defined for clipboard manipulation @@ -7278,7 +8496,8 @@ Please consider generating a new key file. All clipping programs failed. Tried %1 - Ни одна программа копирования не сработала. Пробовали %1 + Ни одна программа копирования не сработала. Пробовали %1 + Creating KeyFile %1 failed: %2 @@ -7298,15 +8517,15 @@ Please consider generating a new key file. Could not start okon process: %1 - Невозможно запустить процесс поиска через okon + Невозможно запустить процесс поиска через okon: %1 Error: okon process did not finish - Процесс поиска через okon завершился с ошибкой + Процесс поиска через okon завершился ошибкой Failed to load okon processed database: %1 - Не удалось загрузить базу okon + Не удалось загрузить базу okon: %1 Very weak password @@ -7374,7 +8593,7 @@ Please consider generating a new key file. Debugging mode is enabled. - Режим отладки включен. + Режим отладки включён. Operating system: %1 @@ -7418,7 +8637,7 @@ Kernel: %3 %4 over %1 year(s) - over %1 годаover %1 летover %1 летover %1 лет + более %1 годаболее %1 летболее %1 летболее %1 лет about %1 month(s) @@ -7441,8 +8660,8 @@ Kernel: %3 %4 %1 мин.%1 мин.%1 мин.%1 мин. - Botan library must be at least 2.11.x, found %1.%2.%3 - Необходима библиотека Botan версии не ниже 2.11.x, а обнаружена версия %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Библиотека Botan должна быть не менее %1, найдено %2.%3.%4 Cryptographic libraries: @@ -7492,18 +8711,6 @@ Kernel: %3 %4 file empty пустой файл - - malformed string - Неправильная строка - - - missing closing quote - Отсутствует закрывающая кавычка - - - %1: (row, col) %2,%3 - %1: (строка, столбец) %2,%3 - AES 256-bit AES 256 бит @@ -7518,7 +8725,7 @@ Kernel: %3 %4 Argon2d (KDBX 4 – recommended) - Argon2d (KDBX 4 – рекомендуемок) + Argon2d (KDBX 4 — рекомендуемое) Argon2id (KDBX 4) @@ -7648,15 +8855,15 @@ Kernel: %3 %4 Checksum mismatch! Key file may be corrupt. - Несоответствие хэша! Возможно, ключ-файл повреждён + Несоответствие хэша! Возможно, ключ-файл повреждён. Unexpected key file data! Key file may be corrupt. - Неожиданные данные в файле-ключе! Вероятно, он повреждён + Неожиданные данные в файле-ключе! Вероятно, он повреждён. KeePassXC - cross-platform password manager - KeePassXC - кроссплатформенный менеджер паролей + KeePassXC — кроссплатформенный менеджер паролей filenames of the password databases to open (*.kdbx) @@ -7664,11 +8871,11 @@ Kernel: %3 %4 path to a custom config file - путь к своему файлу настроек + путь к своему файлу параметров path to a custom local config file - Путь к пользовательскому файлу настроек + путь к пользовательскому локальному файлу параметров lock all open databases @@ -7682,14 +8889,6 @@ Kernel: %3 %4 read password of the database from stdin читать пароли базы данных с stdin - - allow app screen recordering and screenshots - разрешить запись и снимки экрана приложения - - - Locked databases. - Базы данных заблокированы. - Database failed to lock. Не удалось заблокировать базы данных. @@ -7698,17 +8897,17 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Другой экземпляр KeePassXC уже запущен. + + KeePassXC is not running. No open database to lock + KeePassXC не запущен. Нет открытой базы данных для блокировки + Fatal error while testing the cryptographic functions. Неустранимая ошибка при тестировании криптографических функций. KeePassXC - Error - Ошибка - KeePassXC - - - Warning: Failed to prevent screenshots on a top level window! - Внимание: не удалось запретить снимки экрана для окна верхнего уровня! + Ошибка — KeePassXC Database password: @@ -7726,22 +8925,326 @@ Kernel: %3 %4 Failed to create Windows Hello credential. - Не удалось создать учетные данные Windows Hello. + Не удалось создать учётные данные Windows Hello. Failed to sign challenge using Windows Hello. Не удалось подписать вызов с помощью Windows Hello. - Please present or touch your YubiKey to continue. - + Warning: Failed to block screenshot capture on a top-level window. + Предупреждение: не удалось заблокировать скриншот в окне верхнего уровня. + + + Invalid Cipher + Неверный шифр + + + Invalid KDF + Недействительный ФФК + + + Access to all entries is denied + Доступ ко всем записям запрещён + + + allow screenshots and app recording (Windows/macOS) + разрешить снимки экрана и запись приложений (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Установить файл-ключ для базы данных. +Эта опция устарела, вместо неё используйте --set-key-file. + + + Databases have been locked. + Базы данных заблокированы. + + + Attestation not supported + Аттестация не поддерживается + + + Credential is excluded + Учётные данные исключены + + + Passkeys request canceled + Запрос на создание Passkeys отменён + + + Invalid user verification + Неверная проверка пользователя + + + Empty public key + Пустой публичный ключ + + + Invalid URL provided + Неверный URL-адрес + + + Passkeys + Passkeys + + + AES initialization failed + Ошибка при инициализации AES + + + AES encrypt failed + Ошибка шифрования AES + + + Failed to store in Linux Keyring + Не удалось сохранить в Linux Keyring + + + Polkit returned an error: %1 + Polkit вернул ошибку: %1 + + + Could not locate key in keyring + Не удалось найти ключ в keyring + + + Could not read key in keyring + Не удалось прочитать ключ в keyring + + + AES decrypt failed + Не удалось расшифровать AES + + + No Polkit authentication agent was available + Агент аутентификации Polkit был недоступен + + + Polkit authorization failed + Ошибка авторизации Polkit + + + No Quick Unlock provider is available + Служба быстрой разблокировки не доступна + + + Failed to init KeePassXC crypto. + Не удалось инициализировать криптографию KeePassXC. + + + Failed to encrypt key data. + Не удалось зашифровать данные ключа. + + + Failed to get Windows Hello credential. + Не удалось получить учётные данные Windows Hello. + + + Failed to decrypt key data. + Не удалось расшифровать данные ключа. + + + Origin is empty or not allowed + Источник пуст или не разрешён + + + Effective domain is not a valid domain + Эффективный домен не допустимый домен + + + Origin and RP ID do not match + Bcnjxybr и RP ID не совпадают + + + No supported algorithms were provided + Не было предоставлено поддерживаемых алгоритмов + + + Wait for timer to expire + Дождитесь истечения таймера + + + Challenge is shorter than required minimum length + Вызов короче требуемой минимальной длины + + + user.id does not match the required length + user.id не соответствует требуемой длине + + + Favorite + Tag for favorite entries + Избранное + + + File does not exist. + Файл не существует. + + + Cannot open file: %1 + Не удается открыть файл: %1 + + + Cannot parse file: %1 at position %2 + Не удается разобрать файл: %1 в позиции %2 + + + Failed to decrypt json file: %1 + Не удалось расшифровать файл json: %1 + + + Invalid encKeyValidation field + Неверное поле encKeyValidation + + + Invalid cipher list within encKeyValidation field + Неверный список шифров в поле encKeyValidation + + + Wrong password + Неверный пароль + + + Invalid encrypted data field + Недопустимое поле зашифрованных данных + + + Invalid cipher list within encrypted data field + Неверный список шифров в поле зашифрованных данных + + + Cannot initialize cipher + Не удается инициализировать шифр + + + Cannot decrypt data + Не удается расшифровать данные + + + Bitwarden Import + Импорт из Bitwarden + + + Archived + Tag for archived entries + Архивировано + + + Invalid 1PUX file format: Not a valid ZIP file. + Неверный формат файла 1PUX: Недопустимый ZIP-файл. + + + Invalid 1PUX file format: Missing export.data + Неверный формат файла 1PUX: отсутствует export.data + + + 1Password Import + Импорт из 1Password + + + Enter Shortcut + Введите комбинацию + + + Action + Действие + + + Shortcuts + Комбинации клавиш + + + Unknown passkeys error + Неизвестная ошибка passkeys + + + Invalid KDF iterations, cannot decrypt json file + Недопустимые итерации KDF, невозможно расшифровать json-файл + + + Unsupported format, ensure your Bitwarden export is password-protected + Неподдерживаемый формат. Убедитесь, что экспорт Bitwarden защищен паролем + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Поддерживаются только PBKDF и Argon2, невозможно расшифровать json-файл + + + Reset Shortcuts + Сброс комбинаций + + + Double click an action to change its shortcut + Дважды щелкните по действию, чтобы изменить его комбинацию + + + Filter... + Фильтр... + + + Shortcut Conflict + Конфликт комбинации + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Комбинация клавиш %1 конфликтует с '%2'. Перезаписать комбинацию? + + + Cannot generate valid passphrases because the wordlist is too short + Не удалось создать правильную парольную фразу, список слов слишком короткий + + + Encrypted files are not supported. + Зашифрованные файлы не поддерживаются. + + + Proton Pass Import + Импорт из Proton Pass + + + Delete plugin data? + Удалить данные модулей? + + + Delete plugin data from Entry(s)? + Удалить данные плагина из записи?Удалить данные плагина из записей?Удалить данные плагина из записей?Удалить данные плагина из записей? + + + Passkey + Ключ доступа + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Формат, который будет использоваться при экспорте. Доступны следующие варианты: 'xml', 'csv' или 'html'. По умолчанию используется 'xml'. + + + start minimized to the system tray + запустить скрыв в системном трее + + + malformed string, possible unescaped delimiter + некорректная строка, возможно, неэкранированный разделитель + + + missing closing delimiter + отсутствует закрывающий разделитель + + + %1, row: %2, column: %3 + %1, строка: %2, столбец: %3 + + + Tags + Теги QtIOCompressor Internal zlib error when compressing: - Внутренняя ошибка zlib при сжатии: + Внутренняя ошибка zlib при сжатии: Error writing to underlying device: @@ -7757,7 +9260,7 @@ Kernel: %3 %4 Internal zlib error when decompressing: - Внутренняя ошибка zlib при распаковке: + Внутренняя ошибка zlib при распаковке: @@ -7768,30 +9271,49 @@ Kernel: %3 %4 Internal zlib error: - Внутренняя ошибка zlib: + Внутренняя ошибка zlib: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Команда `%1` не завершилась вовремя. Процесс был завершен. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Не удалось загрузить объединенную базу данных. Команда `%1` не завершилась вовремя. Процесс был завершен. + + + Invalid download parameters provided. + Указаны недопустимые параметры загрузки. + + + Command `%1` failed to download database. + Команде `%1` не удалось загрузить базу данных. + + + Invalid database pointer or upload parameters provided. + Неверный указатель базы данных или указанные параметры выгрузки. + + + Command `%1` exited with status code: %2 + Команда `%1` завершилась с кодом состояния: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Не удалось загрузить объединенную базу данных. Команда `%1` завершилась с кодом состояния: %2 ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Исключить истёкшие записи из отчёта - - - Show only entries which have URL set - Показывать только те записи, для которых задан URL - - - Show only entries which have browser settings in custom data - Показывать только те записи, которые имеют настройки браузера в пользовательских данных - Double-click entries to edit. - Дважды щелкните записи для редактирования. + Дважды щёлкните левой кнопкой мыши по записи для редактирования. List of entry URLs - Список URL записей + Список записей URL Entry has no URLs set @@ -7799,19 +9321,19 @@ Kernel: %3 %4 Allowed URLs - Разрешенные URL + Разрешённые URL Entry has no Browser Integration settings - У записи нет настроек интеграции с браузером + У записи нет параметров интеграции с браузером Denied URLs - Запрещенные URL + Запрещённые URL (Excluded) - (Исключено) + (Исключено) This entry is being excluded from reports @@ -7819,15 +9341,15 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - Пожалуйста, подождите, идет подсчет статистики браузера... + Подождите, идет подсчёт статистики браузера... No entries with a URL, or none has browser extension settings saved. - Нет записей с URL, или ни в одной из них не сохранены настройки расширения браузера. + Нет записей с URL, или ни в одной из них не сохранены параметры расширения браузера. Title - Заголовок + Название Path @@ -7847,53 +9369,62 @@ Kernel: %3 %4 Exclude from reports - Исключить из отчетов + Исключить из отчётов + + + Expire Entry(s)… + Истекает запись...Истекают записи...Истекает записей...Истекает записей... + + + Only show entries that have a URL + Показывать только записи с URL-адресом + + + Only show entries that have been explicitly allowed or denied + Показывать только записи, которые были явно разрешены или запрещены + + + Show expired entries + Показать просроченные записи + + + (Expired) + (Истекший) + + + Delete plugin data from Entry(s)… + Удалить данные плагина из записи...Удалить данные плагина из записей..Удалить данные плагина из записей..Удалить данные плагина из записей.. ReportsWidgetHealthcheck - Exclude expired entries from the report - Исключить истёкшие записи из отчёта + Show expired entries + Показать просроченные записи - Also show entries that have been excluded from reports - Также показать записи, которые были исключены из отчётов + (Expired) + (Истекший) Hover over reason to show additional details. Double-click entries to edit. - Наведите курсор чтобы просмотреть дополнительные сведения. Для редактирования записи щелкните два раза левой кнопкой мыши. - - - Bad - Password quality - Плохой + Наведите курсор, чтобы просмотреть дополнительные сведения. Для редактирования записи дважды щёлкните левой кнопкой мыши. Bad — password must be changed Плохой — пароль должен быть изменён - - Poor - Password quality - Слабый - Poor — password should be changed - Так себе — пароль следует изменить - - - Weak - Password quality - Слабый + Слабый — пароль следует изменить Weak — consider changing the password - Слабый — пароль желательно изменить + Очень слабый — пароль желательно изменить (Excluded) - (Исключено) + (Исключено) This entry is being excluded from reports @@ -7909,7 +9440,7 @@ Kernel: %3 %4 Title - Заголовок + Название Path @@ -7933,7 +9464,15 @@ Kernel: %3 %4 Exclude from reports - Исключить из отчетов + Исключить из отчётов + + + Expire Entry(s)… + Истекает запись...Истекают записи...Истекает записей...Истекает записей... + + + Show entries that have been excluded from reports + Показать записи, которые были исключены из отчетов @@ -7952,7 +9491,7 @@ Kernel: %3 %4 This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - Эта сборка KeePassXC не имеет сетевых функций. Сеть необходима для проверки паролей по базе данных "Have I Been Pwned". + Эта сборка KeePassXC не имеет сетевых функций. Сеть необходима для проверки паролей по базе данных «Have I Been Pwned». Congratulations, no exposed passwords! @@ -7960,7 +9499,7 @@ Kernel: %3 %4 Title - Заголовок + Название Path @@ -7972,7 +9511,7 @@ Kernel: %3 %4 (Excluded) - (Исключено) + (Исключено) This entry is being excluded from reports @@ -8028,7 +9567,78 @@ Kernel: %3 %4 Exclude from reports - Исключить из отчетов + Исключить из отчётов + + + Expire Entry(s)… + Истекает запись...Истекают записи...Истекает записей...Истекает записей... + + + + ReportsWidgetPasskeys + + Export + Экспортируется + + + Import + Импортировать + + + List of entry URLs + Список записей URL + + + Title + Название + + + Path + Путь + + + Username + Логин + + + URLs + URL-адреса + + + Edit Entry… + Изменить запись… + + + Delete Entry(s)… + Удаление записи...Удаление записей...Удаление записей...Удаление записей... + + + Relying Party + Доверенная сторона + + + Show expired entries + Показать просроченные записи + + + (Expired) + (Истекший) + + + Export Confirmation + Подтверждение экспорта + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Если оставить passkey файл без защиты, он будет уязвим для кражи и несанкционированного использования. Вы уверены, что хотите продолжить? + + + Please wait, list of entries with passkeys is being updated… + Пожалуйста, подождите, список записей с passkeys обновляется... + + + No entries with passkeys. + Нет записей c passkeys. @@ -8071,7 +9681,7 @@ Kernel: %3 %4 Unsaved changes - Несохраненные изменения + Несохранённые изменения yes @@ -8119,7 +9729,7 @@ Kernel: %3 %4 Some passwords are used more than three times. Use unique passwords when possible. - Некоторые пароли используются более трёх раз. Используйте уникальные пароли, когда это возможно. + Некоторые пароли используются более трёх раз. Используйте уникальные пароли, когда это возможно. Number of short passwords @@ -8135,7 +9745,7 @@ Kernel: %3 %4 Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - Рекомендуется использовать длинные пароли, состоящие из случайных символов с уровнями безопасности «хорошо» или «отлично». + Рекомендуется использовать длинные пароли, состоящие из случайных символов с уровнями безопасности «хорошо» или «отлично». Entries excluded from reports @@ -8186,11 +9796,11 @@ Kernel: %3 %4 Restricted lifetime is not supported by the agent (check options). - Ограничение по времени не поддерживается этим агентом (проверьте настройки). + Ограничение по времени не поддерживается этим агентом (проверьте параметры). A confirmation request is not supported by the agent (check options). - Запрос подтверждения не поддерживается этим агентом (проверьте настройки). + Запрос подтверждения не поддерживается этим агентом (проверьте параметры). Security keys are not supported by the agent or the security key provider is unavailable. @@ -8202,7 +9812,15 @@ Kernel: %3 %4 No agent running, cannot list identities. - Ни один агент не запущен, идентификационные данные недоступны. + Агент не запущен, идентификационные данные недоступны. + + + Failed to remove all SSH identities from agent. + Ошибка при удалении всех SSH-идентификаторов из агента + + + All SSH identities removed from agent. + Все SSH-идентификаторы удалены из агента. @@ -8217,7 +9835,7 @@ Kernel: %3 %4 Every search term must match (ie, logical AND) - Каждое поисковое выражение должно иметь соответствие (т.е. логическое И) + Каждое поисковое выражение должно иметь соответствие (то есть логическое И) Modifiers @@ -8270,6 +9888,10 @@ Kernel: %3 %4 Search Help Поиск в Справке + + Save Search + Сохранить поиск + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8322,11 +9944,11 @@ Kernel: %3 %4 SettingsWidgetFdoSecrets Options - Опции + Параметры Enable KeepassXC Freedesktop.org Secret Service integration - Включить интеграцию KeepassXC со службой Freedesktop.org Secret Service + Включить интеграцию KeepassXC со службой «Freedesktop.org Secret Service» General @@ -8344,29 +9966,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients Подтверждать получение паролей клиентами - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Этот параметр не подавляет запросы на прекращение использования корзины</span></p></body></html> - Confirm when clients request entry deletion Подтверждать запрос удаления записей клиентами - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Это улучшает совместимость с некоторыми приложениями, -которые ищут пароль без предварительной разблокировки базы данных.</p><p>Включение параметра может также -вызвать сбой клиента, если база данных не может быть разблокирована в течение определенного тайм-аута. (Обычно 25 с, другое значение устанавливается в приложениях.)</p></body></html> - - Prompt to unlock database before searching Предложение разблокировать базу данных перед началом поиска @@ -8385,12 +9988,20 @@ Kernel: %3 %4 <b>Warning:</b> - <b>Внимание:</b> + <b>Внимание:</b> Save current changes to activate the plugin and enable editing of this section. Сохраните изменения для активации подключаемого модуля и редактирования этого раздела. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Этот параметр не отменяет отключение подсказок корзины</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Это улучшает совместимость с некоторыми приложениями, которые ищут пароль без предварительной разблокировки базы данных.</p><p>Но включение этой функции может привести к аварийному завершению работы клиента, если база данных не может быть разблокирована в течение определенного таймаута. (Обычно 25 с, но в приложениях может быть установлено другое значение).</p></body></html> + SettingsWidgetKeeShare @@ -8499,8 +10110,12 @@ Kernel: %3 %4 TagModel - All - Все + Clear Search + Очистить поиск + + + All Entries + Все записи Expired @@ -8511,6 +10126,25 @@ Kernel: %3 %4 Слабые пароли + + TagView + + Remove Search + Удалить поиск + + + Remove Tag + Удалить тег + + + Confirm Remove Tag + Подтвердить удаление тега + + + Remove tag "%1" from all entries in this database? + Удалить тег «%1» из всех записей в этой базе данных? + + TotpDialog @@ -8535,7 +10169,7 @@ Kernel: %3 %4 NOTE: These TOTP settings are custom and may not work with other authenticators. TOTP QR code dialog warning - * Эти параметры TOTP - пользовательские, они могут не работать с другими средствами проверки подлинности. + * Эти параметры TOTP — пользовательские, они могут не работать с другими средствами проверки подлинности. There was an error creating the QR code. @@ -8574,11 +10208,11 @@ Kernel: %3 %4 Custom settings: - Пользовательские параметры + Параметры пользователя: Custom Settings - Особые настройки + Особые параметры Algorithm: @@ -8595,7 +10229,7 @@ Kernel: %3 %4 sec Seconds - сек + сек Code size: @@ -8667,26 +10301,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Начать безопасное хранение ваших паролей в базе данных KeePassXC - - Create new database - Создать новую базу данных - - - Open existing database - Открыть имеющуюся базу данных - - - Import from KeePass 1 - Импорт из KeePass 1 - - - Import from 1Password - Импорт из 1Password - - - Import from CSV - Импорт из CSV - Recent databases Недавние базы данных @@ -8699,6 +10313,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Вас приветствует KeePassXC %1 + + Create Database + Создать базу данных + + + Open Database + Открыть базу данных + + + Import File + Импортировать файл + WinUtils @@ -8715,34 +10341,11 @@ Example: JBSWY3DPEHPK3PXP Невозможно зарегистрировать глобальную горячую клавишу - - WindowsHello - - Failed to init KeePassXC crypto. - Не удалось инициализировать криптографию KeePassXC. - - - Failed to encrypt key data. - Не удалось зашифровать данные ключа. - - - Failed to get Windows Hello credential. - Не удалось получить учетные данные Windows Hello. - - - Failed to decrypt key data. - Не удалось расшифровать данные ключа. - - YubiKey - - %1 No interface, slot %2 - %1 Без интерфейса, слот %2 - General: - Общий: + Общий: Could not find interface for hardware key with serial number %1. Please connect it to continue. @@ -8751,14 +10354,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Перечитать токены - - - Refresh - Обновить - Hardware key slot selection Выбор слота аппаратного ключа @@ -8791,10 +10386,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Вызов-ответ установлен, нажмите, чтобы изменить или удалить - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Если у вас есть <a href="https://www.yubico.com/">YubiKey</a> или <a href="https://onlykey.io">OnlyKey</a>, его можно использовать для дополнительной безопасности.</p><p>Для работы ключа необходимо, чтобы один из его слотов был запрограммирован как <a href="https://www.yubico.com/products/services-software/challenge-response/">вызов-ответ HMAC-SHA1</a>.</p> - Detecting hardware keys… Обнаружение аппаратных ключей... @@ -8803,35 +10394,32 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Аппаратные ключи не обнаружены - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 указан неверный слот — %2 + Refresh hardware keys + Обновить аппаратные ключи + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Если у вас есть <a href="https://www.yubico.com/">YubiKey</a> или <a href="https://onlykey.io">OnlyKey</a>, его можно использовать как дополнительную защиту.</p><p>Для работы ключа необходимо, чтобы один из его слотов был запрограммирован как <a href="https://keepassxc.org/docs/#faq-yubikey-howto">вызов-ответ</a>.</p> + + + Hardware keys found, but no slots are configured + Аппаратные ключи найдены, но ни один слот не настроен. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Вызов-ответ - слот %3 - The YubiKey PCSC interface has not been initialized. Интерфейс YubiKey PCSC не был инициализирован. - - Hardware key is currently in use. - Аппаратный ключ уже используется. - Could not find or access hardware key with serial number %1. Please present it to continue. Не удалось найти или получить доступ к аппаратному ключу с серийным номером %1. Подключите его для продолжения. Hardware key is locked or timed out. Unlock or re-present it to continue. - Аппаратный ключ заблокирован или истек срок его действия. Разблокируйте или подключите его повторно, чтобы продолжить. + Аппаратный ключ заблокирован или истёк срок его действия. Разблокируйте или подключите его повторно, чтобы продолжить. Hardware key was not found or is not configured. @@ -8841,6 +10429,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Не удалось завершить вызов-ответ, код ошибки PCSC: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Слот %3, %4 + + + Press + USB Challenge-Response Key interaction request + Нажать + + + Passive + USB Challenge-Response Key no interaction required + Пассивная + YubiKeyInterfaceUSB @@ -8848,14 +10451,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Неизвестен - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Настроенный слот - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Вызов-ответ - слот %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8870,17 +10465,13 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. USB-интерфейс YubiKey не был инициализирован. - - Hardware key is currently in use. - Аппаратный ключ уже используется. - Could not find hardware key with serial number %1. Please plug it in to continue. Для продолжения работы подключите аппаратный ключ с серийным номером %1. Hardware key timed out waiting for user interaction. - Тайм-аут аппаратного ключа во время ожидания действий пользователя. + Ожидание аппаратного ключа истекло во время взаимодействия с пользователем. A USB error occurred when accessing the hardware key: %1 @@ -8890,5 +10481,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Не удалось завершить обмен «вызов—ответ»: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Слот %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Слот %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_si.ts b/share/translations/keepassxc_si.ts new file mode 100644 index 000000000..ed896116f --- /dev/null +++ b/share/translations/keepassxc_si.ts @@ -0,0 +1,10457 @@ + + + AboutDialog + + About KeePassXC + කීපාස්එක්ස්සී ගැන + + + About + පිළිබඳව + + + 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> + + + KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3. + KeePassXC GNU General Public License (GPL) අනුවාදය 2 හෝ (ඔබේ අභිමතය පරිදි) අනුවාදය 3 හි කොන්දේසි යටතේ බෙදා හරිනු ලැබේ. + + + Project Maintainers: + ව්‍යාපෘතිය නඩත්තුකරුවන්: + + + Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. + KeePassXC කණ්ඩායමේ විශේෂ ස්තුතිය මුල් KeePassX නිර්මාණය කිරීම සඳහා debfx වෙත යන්න. + + + Contributors + දායකයින් + + + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">දායකත්‍ව ගිට්හබ් හි බලන්න</a> + + + Debug Info + නිදොස්කරණ තොරතුරු + + + Include the following information whenever you report a bug: + ඔබ දෝෂයක් වාර්තා කරන සෑම විටම පහත තොරතුරු ඇතුළත් කරන්න: + + + Copy to clipboard + පසුරු පුවරුවට පිටපතක් + + + + AccessControlDialog + + KeePassXC - Access Request + KeePassXC - ප්‍රවේශ ඉල්ලීම + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + නොපවතින / ප්‍රවේශ විය නොහැකි ක්‍රියාත්මක කළ හැකි මාර්ගය. කරුණාකර සේවාදායකයා නීත්‍යානුකූල දැයි දෙවරක් පරීක්ෂා කරන්න. + + + <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>පහත ඇතුළත් කිරීම් සඳහා ප්‍රවේශය ඉල්ලා සිටී:</p></body></html> + + + Name + නම + + + PID + PID + + + Executable + ක්රියාත්මක කළ හැකි + + + Command Line + විධාන රේඛාව + + + Details + විස්තර + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + ඉල්ලන සේවාලාභියා සහ KeePassXC යන දෙකම ක්‍රියාත්මක වන කාලය සඳහා ඔබේ තීරණය මතක තබා ගනු ඇත. + + + Remember + මතක තබාගන්න + + + Allow Selected + තේරීම් සඳහා ඉඩදෙන්න + + + Deny All && Future + සියල්ල && අනාගතය ප්‍රතික්ෂේප කරන්න + + + Allow All && &Future + සියලු && &අනාගතයට ඉඩ දෙන්න + + + + AccessControlDialog::DenyButton + + Deny for this program + මෙම වැඩසටහන සඳහා ප්රතික්ෂේප කරන්න + + + + AgentSettingsWidget + + Enable SSH Agent integration + SSH නියෝජිත අනුකලනය සබල කරන්න + + + Use Pageant + Pageant භාවිතා කරන්න + + + Use OpenSSH + OpenSSH භාවිතය + + + Use both agents + නියෝත දෙකම භාවිතය + + + SSH_AUTH_SOCK override + SSH_AUTH_SOCK අභිබවා යාම + + + SSH_AUTH_SOCK value + SSH_AUTH_SOCK අගය + + + (empty) + (හිස්) + + + SSH_SK_PROVIDER value + SSH_SK_PROVIDER අගය + + + SSH_SK_PROVIDER override + SSH_SK_PROVIDER අභිබවා යයි + + + No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. + SSH නියෝජිත සොකට් නොමැත. SSH_AUTH_SOCK පරිසර විචල්‍යයක් පවතින බව සහතික කර ගන්න හෝ ප්‍රතික්‍ෂේප කිරීමක් සකසන්න. + + + SSH Agent connection is working! + SSH නියෝජිත සම්බන්ධතාවය ක්‍රියා කරයි! + + + + ApplicationSettingsWidget + + Application Settings + යෙදුමේ සැකසුම් + + + General + සාමාන්‍ය + + + Security + ආරක්‍ෂාව + + + This setting cannot be enabled when minimize on unlock is enabled. + + + + Access error for config file %1 + වින්‍යාස ගොනුව %1සඳහා ප්‍රවේශ දෝෂයකි + + + Icon only + නිරූපකය පමණි + + + Text only + පෙළ පමණි + + + Text beside icon + නිරූපකය අසල පෙළ + + + Text under icon + නිරූපකය යටතේ පෙළ + + + Follow style + ශෛලිය අනුගමනය කරන්න + + + Monochrome + ඒකවර්ණ + + + Monochrome (light) + ඒකවර්ණ (ආලෝකය) + + + Monochrome (dark) + ඒකවර්ණ (අඳුරු) + + + Colorful + වර්ණවත් + + + You must restart the application to set the new language. Would you like to restart now? + නව භාෂාව සැකසීමට ඔබ යෙදුම නැවත ආරම්භ කළ යුතුය. ඔබ දැන් නැවත ආරම්භ කිරීමට කැමතිද? + + + Select backup storage directory + උපස්ථ ගබඩා නාමාවලිය තෝරන්න + + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + + + + ApplicationSettingsWidgetGeneral + + Basic Settings + මූලික සැකසුම් + + + Startup + පණ ගන්වන්න + + + Start only a single instance of KeePassXC + KeePassXC හි එක් අවස්ථාවක් පමණක් ආරම්භ කරන්න + + + Automatically launch KeePassXC at system startup + පද්ධති ආරම්භයේදී KeePassXC ස්වයංක්‍රීයව දියත් කරන්න + + + Minimize window at application startup + යෙදුම් ආරම්භයේදී කවුළුව අවම කරන්න + + + Minimize window after unlocking database + දත්ත සමුදාය අගුළු හැරීමෙන් පසු කවුළුව අවම කරන්න + + + Remember previously used databases + කලින් භාවිතා කළ දත්ත සමුදායන් මතක තබා ගන්න + + + recent files + මෑත ගොනු + + + Load previously open databases on startup + ආරම්භයේදී පෙර විවෘත දත්ත සමුදායන් පූරණය කරන්න + + + Remember database key files and security dongles + දත්ත සමුදා යතුරු ගොනු සහ ආරක්ෂක ඩොංගල් මතක තබා ගන්න + + + Check for updates at application startup once per week + සතියකට වරක් යෙදුම් ආරම්භයේදී යාවත්කාලීන සඳහා පරීක්ෂා කරන්න + + + Include beta releases when checking for updates + යාවත්කාලීන සඳහා පරීක්ෂා කිරීමේදී බීටා නිකුතු ඇතුළත් කරන්න + + + File Management + ගොනු කළමනාකරණය + + + Automatically save after every change + සෑම වෙනස්කමකටම පසු ස්වයංක්‍රීයව සුරකින්න + + + Automatically save when locking database + දත්ත සමුදාය අගුලු දැමීමේදී ස්වයංක්‍රීයව සුරකින්න + + + Automatically save non-data changes when locking database + දත්ත සමුදාය අගුලු දැමීමේදී දත්ත නොවන වෙනස්කම් ස්වයංක්‍රීයව සුරකින්න + + + Automatically reload the database when modified externally + බාහිරව වෙනස් කළ විට දත්ත සමුදාය ස්වයංක්‍රීයව නැවත පූරණය කරන්න + + + Backup database file before saving + සුරැකීමට පෙර දත්තසමුදාය උපස්ථ කරන්න + + + {DB_FILENAME}.old.kdbx + {DB_FILENAME}.old.kdbx + + + Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) + විකල්ප ඉතිරි කිරීමේ ක්‍රමයක් භාවිතා කරන්න (ඩ්‍රොප්බොක්ස්, ගූගල් ඩ්‍රයිව්, ජීවීඑෆ්එස්, ආදිය සමඟ ගැටලු විසඳා ගත හැක) + + + Temporary file moved into place + තාවකාලික ගොනුව ස්ථානයට ගෙන යන ලදී + + + Directly write to database file (dangerous) + දත්ත සමුදා ගොනුවට කෙලින්ම ලියන්න (භයානක) + + + Entry Management + නිවේශිත කළමනාකරණය + + + Use group icon on entry creation + ඇතුල්වීම නිර්මාණය කිරීමේදී කණ්ඩායම් නිරූපකය භාවිතා කරන්න + + + Minimize when opening a URL + ඒ.ස.නි. ඇරීමේදී හකුළන්න + + + Hide window when copying to clipboard + පසුරු පුවරුවට පිටපත් වන විට කවුළුව සඟවන්න + + + Minimize + හකුළන්න + + + Drop to background + පසුබිමට දමන්න + + + Favicon download timeout: + Favicon බාගැනීමේ කල් ඉකුත්වීම: + + + Website icon download timeout in seconds + වෙබ් අඩවි නිරූපකය බාගත කිරීමේ කාලය තත්පර කිහිපයකින් අවසන් වේ + + + sec + Seconds + තත්. + + + User Interface + පරිශ්‍රීලක අතුරුමුහුණත + + + Toolbar button style + මෙවලම් තීරු බොත්තම් විලාසය + + + Movable toolbar + චංචල මෙවලම් තීරුව + + + Language selection + භාෂාව තේරීම + + + Language: + භාෂාව: + + + (restart program to activate) + (සක්රිය කිරීමට වැඩසටහන නැවත ආරම්භ කරන්න) + + + Toolbar button style: + මෙවලම් තීරු බොත්තම් විලාසය: + + + Show passwords in color + + + + Use monospaced font for notes + සටහන් සඳහා ඒකපුද්ගල අකුරු භාවිතා කරන්න + + + Minimize instead of app exit + යෙදුම් පිටවීම වෙනුවට අවම කරන්න + + + Show a system tray icon + පද්ධති තැටි නිරූපකයක් පෙන්වන්න + + + Tray icon type + තැටි නිරූපක වර්ගය + + + Tray icon type: + තැටි නිරූපක වර්ගය: + + + Hide window to system tray when minimized + අවම කළ විට පද්ධති තැටියට කවුළුව සඟවන්න + + + Reset settings to default… + සැකසුම් පෙරනිමි…වෙත නැවත සකසන්න + + + Auto-Type + ස්වයං ලිවීම + + + Use entry title to match windows for global Auto-Type + ගෝලීය ස්වයංක්‍රීය වර්ගය සඳහා කවුළු ගැලපීමට ඇතුල් වීමේ මාතෘකාව භාවිතා කරන්න + + + Use entry URL to match windows for global Auto-Type + ගෝලීය ස්වයංක්‍රීය වර්ගය සඳහා කවුළු ගැලපීමට ඇතුළත් කිරීමේ URL භාවිතා කරන්න + + + Always ask before performing Auto-Type + ස්වයංක්‍රීය ටයිප් කිරීමට පෙර සෑම විටම අසන්න + + + Hide expired entries from Auto-Type + ස්වයංක්‍රීය ටයිප් වෙතින් කල් ඉකුත් වූ ඇතුළත් කිරීම් සඟවන්න + + + Re-lock previously locked database after performing Auto-Type + ස්වයංක්‍රීය ටයිප් කිරීමෙන් පසු කලින් අගුලු දැමූ දත්ත සමුදාය නැවත අගුළු දමන්න + + + Auto-Type start delay: + ස්වයංක්‍රීය ටයිප් ආරම්භක ප්‍රමාදය: + + + Global Auto-Type shortcut: + ගෝලීය ස්වයං ලිවීමේ කෙටිමග: + + + Auto-type start delay milliseconds + ස්වයංක්‍රීය-වර්ගය ආරම්භය ප්‍රමාදය මිලි තත්පර + + + ms + Milliseconds + තත්. + + + Auto-Type typing delay: + ස්වයං ලිවීමේ ප්‍රමාදය: + + + Global auto-type shortcut + ගෝලීය ස්වයං ලිවීමේ කෙටිමග + + + Auto-type character typing delay milliseconds + ස්වයංක්‍රීය අක්ෂර ටයිප් කිරීම මිලි තත්පර ප්‍රමාදය + + + Remember last typed entry for: + අවසන් වරට ටයිප් කළ ප්‍රවේශය මතක තබා ගන්න: + + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + දවස් + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + + + + ApplicationSettingsWidgetSecurity + + Timeouts + කල් ඉකුත්වීම් + + + Database lock timeout seconds + දත්ත සමුදාය අගුලු දැමීමේ කාලය අවසන් තත්පර + + + sec + Seconds + තත්. + + + Clear clipboard after + පසුරු පුවරුව මැකීම + + + Clear search query after + සෙවුම් විමසුම මැකීම + + + min + Minutes + විනා. + + + Clipboard clear seconds + ක්ලිප්බෝඩ් පැහැදිලි තත්පර + + + Lock databases after inactivity of + අක්‍රිය වීමෙන් පසු දත්ත සමුදායන් අගුළු දමන්න + + + Convenience + පහසුව + + + Enable database quick unlock (Touch ID / Windows Hello) + දත්ත සමුදාය ඉක්මන් අගුලු හැරීම සබල කරන්න (ස්පර්ශ හැඳුනුම්පත / වින්ඩෝස් හෙලෝ) + + + Lock databases when session is locked or lid is closed + සැසිය අගුලු දමා ඇති විට හෝ පියන වසා ඇති විට දත්ත සමුදායන් අගුළු දමන්න + + + Lock databases after minimizing the window + කවුළුව අවම කිරීමෙන් පසු දත්ත සමුදායන් අගුළු දමන්න + + + Hide passwords when editing them + මුරපද සංස්කරණය කිරීමේදී ඒවා සඟවන්න + + + Use placeholder for empty password fields + හිස් මුරපද ක්ෂේත්‍ර සඳහා ස්ථාන දරණ භාවිතා කරන්න + + + Hide passwords in the entry preview panel + ඇතුල්වීමේ පෙරදසුන් පැනලයේ මුරපද සඟවන්න + + + Privacy + රහස්‍යතාව + + + Use DuckDuckGo service to download website icons + වෙබ් අඩවි අයිකන බාගැනීමට DuckDuckGo සේවාව භාවිතා කරන්න + + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + + + + AutoType + + The requested Auto-Type sequence cannot be used due to an error: + දෝෂයක් හේතුවෙන් ඉල්ලා ඇති ස්වයංක්‍රීය-වර්ග අනුපිළිවෙල භාවිතා කළ නොහැක: + + + Auto-Type Error + ස්වයං ලිවීමේ දෝෂයකි + + + Permission Required + අවසරය අවශ්‍යයි + + + KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. + ප්‍රවේශ මට්ටමේ ස්වයංක්‍රීය වර්ගය සිදු කිරීම සඳහා KeePassXC හට ප්‍රවේශ්‍යතා අවසරය අවශ්‍ය වේ. ඔබ දැනටමත් අවසර ලබා දී ඇත්නම්, ඔබට KeePassXC නැවත ආරම්භ කිරීමට සිදු විය හැක. + + + KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. + ගෝලීය ස්වයංක්‍රීය වර්ගය සිදු කිරීම සඳහා KeePassXC හට ප්‍රවේශ්‍යතා සහ තිර රෙකෝඩර අවසරය අවශ්‍ය වේ. ඇතුළත් කිරීම් සොයා ගැනීමට කවුළු මාතෘකාව භාවිතා කිරීමට තිර පටිගත කිරීම අවශ්‍ය වේ. ඔබ දැනටමත් අවසර ලබා දී ඇත්නම්, ඔබට KeePassXC නැවත ආරම්භ කිරීමට සිදු විය හැක. + + + Invalid entry provided + සැපයූ නිවේශිතය වලංගු නොවේ + + + Bracket imbalance detected, found extra { or } + වරහන් අසමතුලිතතාව අනාවරණය විය, අමතර { or }ක් සොයා ගන්නා ලදී + + + Too many repetitions detected, max is %1: %2 + බොහෝ පුනරාවර්තන අනාවරණය වී ඇත, උපරිමය %1: %2වේ + + + Very slow key press detected, max is %1: %2 + ඉතා මන්දගාමී යතුරු එබීම අනාවරණය විය, උපරිමය %1: %2වේ + + + Very long delay detected, max is %1: %2 + ඉතා දිගු ප්‍රමාදයක් අනාවරණය විය, උපරිමය %1: %2වේ + + + Entry does not have attribute for PICKCHARS: %1 + ප්‍රවේශයට PICKCHARS සඳහා ගුණාංග නොමැත: %1 + + + Invalid placeholder: %1 + වලංගු නොවන ස්ථාන දරණ: %1 + + + + AutoTypeAssociationsModel + + Window + කවුළුව + + + Sequence + අනුපිළිවෙල + + + (empty) + (හිස්) + + + Default sequence + පෙරනිමි අනුපිළිවෙල + + + + AutoTypeMatchModel + + Group + සමූහය + + + Title + සිරැසිය + + + Username + පරිශීලක නාමය + + + Sequence + අනුපිළිවෙල + + + + AutoTypePlatformX11 + + Sequence aborted: Caps Lock is on + අනුපිළිවෙල ගබ්සා විය: Caps Lock ක්‍රියාත්මකයි + + + Sequence aborted: Modifier keys held by user + අනුපිළිවෙල ගබ්සා කරන ලදී: පරිශීලකයා සතුව ඇති විකරණයක යතුරු + + + Unable to get valid keycode for key: + යතුර සඳහා වලංගු යතුරු කේතය ලබා ගත නොහැක: + + + Trying to send invalid keyboard symbol. + + + + + AutoTypeSelectDialog + + Auto-Type - KeePassXC + ස්වයං ලිවීම - KeePassXC + + + Double click a row to perform Auto-Type or find an entry using the search: + ස්වයංක්‍රීය ටයිප් කිරීමට හෝ සෙවුම භාවිතයෙන් ප්‍රවේශයක් සොයා ගැනීමට පේළියක් දෙවරක් ක්ලික් කරන්න: + + + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> + <p>ඔබට ඔබගේ විවෘත දත්ත සමුදායේ ඇති ඕනෑම ප්‍රවේශයක් සොයා ගැනීමට උසස් සෙවුම් විමසුම් භාවිතා කළ හැක. පහත කෙටිමං ප්‍රයෝජනවත් වේ:<br/> +Ctrl+F - දත්ත සමුදා සෙවීම ටොගල් කරන්න<br/> +Ctrl+1 - පරිශීලක නාමය ටයිප් කරන්න<br/> +Ctrl+2 - මුරපදය ටයිප් කරන්න<br/> +Ctrl+3 - ටයිප් කරන්න TOTP<br/> +Ctrl+4 - Virtual Keyboard භාවිතා කරන්න (Wind පමණි)</p> + + + Search all open databases + විවෘත සියළු දත්තසමුදා සොයන්න + + + Search… + සොයන්න… + + + Type Sequence + අනුපිළිවෙල ටයිප් කරන්න + + + Cancel + අවලංගු + + + Type {USERNAME} + {USERNAME}වර්ගය + + + Type {PASSWORD} + {PASSWORD}වර්ගය + + + Type {TOTP} + {TOTP}වර්ගය + + + Copy Username + පරිශීලක නාමයේ පිටපතක් + + + Copy Password + මුරපදයේ පිටපතක් + + + Copy TOTP + TOTP පිටපතක් + + + Use Virtual Keyboard + අතථ්‍ය යතුරුපුවරුව භාවිතය + + + + BrowserAccessControlDialog + + KeePassXC - Browser Access Request + KeePassXC - අතිරික්සුවට ප්‍රවේශය ඉල්ලීම + + + %1 is requesting access to the following entries: + %1 පහත ඇතුළත් කිරීම් සඳහා ප්‍රවේශය ඉල්ලා සිටී: + + + Remember access to checked entries + පරීක්ෂා කළ ඇතුළත් කිරීම් වෙත ප්‍රවේශය මතක තබා ගන්න + + + Remember + මතක තබාගන්න + + + Allow access to entries + නිවේශිත වෙත ප්‍රවේශයට ඉඩදෙන්න + + + Allow Selected + තේරීම් සඳහා ඉඩදෙන්න + + + Deny All + සියල්ල ප්‍රතික්ෂේප කරන්න + + + Disable for this site + මෙම අඩවියට අබල කරන්න + + + Undo + + + + + BrowserEntrySaveDialog + + Ok + හරි + + + Cancel + අවලංගු + + + You have multiple databases open. +Please select the correct database for saving credentials. + ඔබට බහු දත්ත සමුදායන් විවෘතව ඇත. +කරුණාකර අක්තපත්‍ර සුරැකීමට නිවැරදි දත්ත සමුදාය තෝරන්න. + + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + අවලංගු කරන්න + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + + + + BrowserService + + A request for creating a new group "%1" has been received. +Do you want to create this group? + + නව කණ්ඩායමක් "%1" නිර්මාණය කිරීම සඳහා ඉල්ලීමක් ලැබී ඇත. +ඔබට මෙම කණ්ඩායම නිර්මාණය කිරීමට අවශ්‍යද? + + + + You have received an association request for the following database: +%1 + +Give the connection a unique name or ID, for example: +chrome-laptop. + ඔබට පහත දත්ත සමුදාය සඳහා සංගම් ඉල්ලීමක් ලැබී ඇත: +%1 + +සම්බන්ධතාවයට අනන්‍ය නමක් හෝ හැඳුනුම්පතක් දෙන්න, උදාහරණයක් ලෙස: +chrome-laptop. + + + Save and allow access + සුරකින්න හා ප්‍රවේශයට ඉඩදෙන්න + + + A shared encryption key with the name "%1" already exists. +Do you want to overwrite it? + "%1" නම සහිත හවුල් සංකේතාංකන යතුරක් දැනටමත් පවතී. +ඔබට එය උඩින් ලිවීමට අවශ්‍යද? + + + Do you want to update the information in %1 - %2? + ඔබට %1 - %2තුළ තොරතුරු යාවත්කාලීන කිරීමට අවශ්‍යද? + + + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + + "%1" ප්‍රවේශය මකා දැමීම සඳහා ඉල්ලීමක් ලැබී ඇත. +ඔබට ප්‍රවේශය මකා දැමීමට අවශ්‍යද? + + + + %1 (Passkey) + + + + KeePassXC - Create a new group + + + + Disable + අක්රිය කරන්න + + + KeePassXC - Overwrite existing key? + + + + KeePassXC - Update Entry + + + + KeePassXC - Delete entry + + + + KeePassXC - New key association request + + + + Passkey + + + + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + + + + + BrowserSettingsWidget + + Dialog + ඩයලොග් + + + This is required for accessing your databases with KeePassXC-Browser + KeePassXC-Browser සමඟින් ඔබගේ දත්ත සමුදායන් වෙත ප්‍රවේශ වීමට මෙය අවශ්‍ය වේ + + + Enable browser integration + අතිරික්සු අනුකලනය සබල කරන්න + + + General + සාමාන්‍ය + + + Enable integration for these browsers: + මෙම බ්‍රව්සර් සඳහා ඒකාබද්ධ කිරීම සබල කරන්න: + + + Vivaldi + විවාල්ඩි + + + &Edge + &එඩ්ගේ + + + Firefox + ෆයර්ෆොක්ස් + + + Tor Browser + ටෝර් අතිරික්සුව + + + Brave + බ්‍රේව් + + + Google Chrome + ගූගල් ක්‍රෝම් + + + Chromium + ක්‍රෝමියම් + + + Show a notification when credentials are requested + Credentials mean login data requested via browser extension + අක්තපත්‍ර ඉල්ලා සිටින විට දැනුම්දීමක් පෙන්වන්න + + + Request 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://example.com) + ගැලපෙන URL යෝජනා ක්‍රමය (උදා, https://example.com) + + + Only returns the best matches for a specific URL instead of all entries for the whole domain. + සම්පූර්ණ වසම සඳහා සියලුම ඇතුළත් කිරීම් වෙනුවට නිශ්චිත URL සඳහා හොඳම ගැලපීම් පමණක් ලබා දෙයි. + + + Return only best-matching credentials + හොඳම ගැලපෙන අක්තපත්‍ර පමණක් ආපසු දෙන්න + + + Returns expired credentials. String [expired] is added to the title. + කල් ඉකුත් වූ අක්තපත්‍ර ආපසු ලබා දෙයි. මාතෘකාවට [expired] String එකතු කර ඇත. + + + Allow returning expired credentials + කල් ඉකුත් වූ අක්තපත්‍ර ආපසු ලබා දීමට ඉඩ දෙන්න + + + All databases connected to the extension will return matching credentials. + දිගුවට සම්බන්ධ සියලුම දත්ත සමුදායන් ගැලපෙන අක්තපත්‍ර ලබා දෙනු ඇත. + + + Search in all opened databases for matching credentials + Credentials mean login data requested via browser extension + ගැලපෙන අක්තපත්‍ර සඳහා විවෘත කර ඇති සියලුම දත්ත සමුදායන් තුළ සොයන්න + + + Advanced + වැඩිදුර + + + Never ask before accessing credentials + Credentials mean login data requested via browser extension + අක්තපත්‍රවලට ප්‍රවේශ වීමට පෙර කිසිවිටෙක අසන්න එපා + + + Never ask before updating credentials + Credentials mean login data requested via browser extension + අක්තපත්‍ර යාවත්කාලීන කිරීමට පෙර කිසි විටෙකත් අසන්න එපා + + + Do not ask permission for HTTP Basic Auth + An extra HTTP Basic Auth setting + HTTP Basic Auth සඳහා අවසර ඉල්ලන්න එපා + + + Automatically creating or updating string fields is not supported. + තන්තු ක්ෂේත්‍ර ස්වයංක්‍රීයව සෑදීම හෝ යාවත්කාලීන කිරීම සඳහා සහය නොදක්වයි. + + + Return advanced string fields which start with "KPH: " + "KPH: "න් ආරම්භ වන උසස් පෙළ ක්ෂේත්‍ර ආපසු දෙන්න + + + Don't display the popup suggesting migration of legacy KeePassHTTP settings. + පැරණි'සැකසුම් සංක්‍රමණය යෝජනා කරන උත්පතන සංදර්ශනය නොකරන්න. + + + Do not prompt for KeePassHTTP settings migration. + KeePassHTTP සැකසුම් සංක්‍රමණය සඳහා විමසන්න එපා. + + + Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. + KeePassXC හෝ Keepassxc-proxy ද්විමය මාර්ගය ස්වයංක්‍රීයව ස්වදේශීය පණිවිඩ යැවීමේ ස්ක්‍රිප්ට් වෙත ආරම්භයේදී යාවත්කාලීන කරයි. + + + Update native messaging manifest files at startup + ආරම්භයේදී ස්වදේශීය පණිවිඩකරණ මැනිෆෙස්ට් ගොනු යාවත්කාලීන කරන්න + + + Use a custom proxy location if you installed a proxy manually. + ඔබ අතින් ප්‍රොක්සියක් ස්ථාපනය කර ඇත්නම් අභිරුචි ප්‍රොක්සි ස්ථානයක් භාවිතා කරන්න. + + + Use a custom proxy location: + Meant is the proxy for KeePassXC-Browser + අභිරුචි ප්‍රොක්සි ස්ථානයක් භාවිතා කරන්න: + + + Custom proxy location field + අභිරුචි ප්‍රොක්සි ස්ථාන ක්ෂේත්‍රය + + + Browser for custom proxy file + අභිරුචි ප්‍රොක්සි ගොනුව සඳහා බ්‍රව්සරය + + + Browse… + Button for opening file dialog + පිරික්සන්න... + + + Use a custom browser configuration location: + අභිරුචි බ්‍රවුසර වින්‍යාස කිරීමේ ස්ථානයක් භාවිතා කරන්න: + + + Browser type: + බ්‍රවුසර වර්ගය: + + + Toolbar button style + මෙවලම් තීරු බොත්තම් විලාසය + + + Config Location: + මානකරන ස්ථානය: + + + Custom browser location field + අභිරුචි බ්‍රවුසර ස්ථාන ක්ෂේත්‍රය + + + Browse for custom browser path + අභිරුචි බ්‍රව්සර් මාර්ගය සඳහා බ්‍රවුස් කරන්න + + + Custom extension ID: + අභිරුචි දිගු ID: + + + Custom extension ID + අභිරුචි දිගු ID + + + Executable Files + ක්‍රියාත්මක කළ හැකි ගොනු + + + All Files + සියළුම ගොනු + + + Select custom proxy location + අභිරුචි ප්‍රතියුක්ත ස්ථානය තෝරන්න + + + Select native messaging host folder location + ස්වදේශීය පණිවිඩ ධාරක ෆෝල්ඩර ස්ථානය තෝරන්න + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + + + + CloneDialog + + Clone Entry Options + ක්ලෝන ඇතුළත් කිරීමේ විකල්ප + + + Append ' - Clone' to title + මාතෘකාවට ' - ක්ලෝන' එකතු කරන්න + + + Replace username and password with references + පරිශීලක නාමය සහ මුරපදය යොමු සමඟ ප්‍රතිස්ථාපනය කරන්න + + + Copy history + ඉතිහාසයේ පිටපතක් + + + + CsvImportWidget + + size, rows, columns + ප්‍රමාණය, පේළි, තීරු + + + Column Association + තීරු සංගමය + + + Password + මුරපදය + + + Username + පරිශීලක නාමය + + + Title + සිරැසිය + + + Group + සමූහය + + + URL + ඒ.ස.නි. + + + Notes + සටහන් + + + TOTP + TOTP + + + Created + සෑදිණි + + + Last Modified + අවසාන සංශෝධනය + + + Icon + නිරූපකය + + + Encoding + කේතනය + + + Codec + කෝඩෙක් + + + Text is qualified by + පෙළ සුදුසුකම් ලබා ඇත + + + Text qualification + පෙළ සුදුසුකම් + + + Fields are separated by + ක්ෂේත්ර වෙන් කරනු ලැබේ + + + Field separation + ක්ෂේත්ර වෙන් කිරීම + + + Comments start with + අදහස් ආරම්භ වේ + + + Header lines skipped + ශීර්ෂ රේඛා මඟ හැරිණි + + + Number of header lines to discard + ඉවත දැමිය යුතු ශීර්ෂ රේඛා ගණන + + + First line has field names + පළමු පේළියේ ක්ෂේත්‍ර නාම ඇත + + + Consider '\' an escape character + '\' ගැලවීමේ අක්ෂරයක් ලෙස සලකන්න + + + Preview + පෙරදසුන + + + CSV import preview + CSV ආයාත පෙරදසුන + + + Not Present + පැමිණ නැත + + + Column %1 + තීරුව %1 + + + [%n more message(s) skipped] + [තව පණිවිඩ%n ක් මඟ හැරිණි][තව පණිවිඩ%n ක් මඟ හැරිණි] + + + Failed to parse CSV file: %1 + + + + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + අනන්‍යන + + + + CsvParserModel + + %n row(s) + CSV row count + පේළි %nපේළි %n + + + %n column(s) + CSV column count + තීරු %nතීරු %n + + + + Database + + Passwords + Root group name + මුරපද + + + File %1 does not exist. + %1 ගොනුව නොපවතී. + + + Unable to open file %1. + %1 ගොනුව ඇරීමට නොහැකිය. + + + Error while reading the database: %1 + දත්තසමුදාය කියවීමේදී දෝෂයකි: %1 + + + Could not save, database does not point to a valid file. + සුරැකීමට නොහැකි විය, දත්ත සමුදාය වලංගු ගොනුවකට යොමු නොවේ. + + + Database save is already in progress. + දත්ත සමුදාය සුරැකීම දැනටමත් සිදු වෙමින් පවතී. + + + Could not save, database has not been initialized! + සුරැකීමට නොහැකි විය, දත්ත සමුදාය ආරම්භ කර නොමැත! + + + Database file has unmerged changes. + දත්ත සමුදා ගොනුව ඒකාබද්ධ නොකළ වෙනස්කම් ඇත. + + + %1 +Backup database located at %2 + %1 +උපස්ථ දත්ත සමුදාය %2හි පිහිටා ඇත + + + Key not transformed. This is a bug, please report it to the developers. + යතුර පරිවර්තනය කර නැත. මෙය දෝෂයකි, කරුණාකර එය සංවර්ධකයන්ට වාර්තා කරන්න. + + + Recycle Bin + ප්‍රතිචක්‍රීකරණ බඳුන + + + Database file read error. + + + + No file path was provided. + + + + + DatabaseOpenDialog + + Unlock Database - KeePassXC + දත්ත සමුදාය අගුළු හරින්න - KeePassXC + + + + DatabaseOpenWidget + + Unlock KeePassXC Database + KeePassXC දත්ත සමුදාය අගුළු හරින්න + + + Enter Password: + මුරපදය ඇතුළත් කරන්න: + + + Password field + මුරපද ක්‍ෂේත්‍රය + + + Hardware key slot selection + දෘඪාංග යතුරු තව් තෝරාගැනීම + + + Key file to unlock the database + දත්ත සමුදාය අගුළු ඇරීමට යතුරු ගොනුව + + + Browse for key file + යතුරු ගොනුව සඳහා බ්‍රවුස් කරන්න + + + Browse… + පිරික්සන්න... + + + Unlock Database + දත්තසමුදාය අගුළු හරින්න + + + Cancel + අවලංගු + + + Unlock + අගුළු හරින්න + + + Please present or touch your YubiKey to continue… + …ඉදිරියට යාමට කරුණාකර ඔබේ YubiKey ඉදිරිපත් කරන්න හෝ ස්පර්ශ කරන්න + + + Database Version Mismatch + දත්ත සමුදාය අනුවාද නොගැලපීම + + + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. + ඔබ විවෘත කිරීමට උත්සාහ කරන දත්ත සමුදාය බොහෝ විට KeePassXC හි නව අනුවාදයක් විසින් නිර්මාණය කරන ලද +විය හැකිය. + +ඔබට එය කෙසේ හෝ විවෘත කිරීමට උත්සාහ කළ හැක, නමුත් එය අසම්පූර්ණ +විය හැකි අතර යම් වෙනස්කම් සුරැකීමෙන් දත්ත අහිමි විය හැක. + +ඔබගේ KeePassXC ස්ථාපනය යාවත්කාලීන කිරීමට අපි නිර්දේශ කරමු. + + + Open database anyway + කෙසේ හෝ දත්ත සමුදාය විවෘත කරන්න + + + Database unlock canceled. + දත්ත සමුදාය අගුලු හැරීම අවලංගු කරන ලදී. + + + Unlock failed and no password given + අගුලු හැරීම අසාර්ථක වූ අතර මුරපදයක් ලබා දී නොමැත + + + Unlocking the database failed and you did not enter a password. +Do you want to retry with an "empty" password instead? + +To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. + දත්ත සමුදාය අගුළු හැරීම අසාර්ථක වූ අතර ඔබ මුරපදයක් ඇතුළත් නොකළේය. +ඔබට ඒ වෙනුවට හිස් "මුරපදයක් සමඟ නැවත උත්සාහ කිරීමට" ? + +මෙම දෝෂය දිස්වීම වැළැක්වීම සඳහා, ඔබ "දත්ත සමුදා සැකසුම් / ආරක්ෂාව" වෙත ගොස් ඔබගේ මුරපදය යළි සැකසිය යුතුය. + + + Retry with empty password + හිස් මුරපදය සමඟ නැවත උත්සාහ කරන්න + + + Failed to open key file: %1 + යතුරු ගොනුව විවෘත කිරීමට අසමත් විය: %1 + + + Old key file format + පැරණි යතුරු ගොනු ආකෘතිය + + + You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> + ඔබ භාවිතා කරන්නේ පැරණි යතුරු ගොනු ආකෘතියක් වන අතර අනාගතයේදී KeePassXC<br>සහාය දීම නතර කළ හැක.<br><br>කරුණාකර නව යතුරු ගොනුවක් ජනනය කිරීම සලකා බලන්න:<br><strong>දත්ත සමුදාය &gt; දත්ත සමුදා ආරක්ෂාව &gt; යතුරු ගොනුව වෙනස් කරන්න.</strong><br> + + + Don't show this warning again + මෙම අනතුරු'නැවත පෙන්වන්න එපා + + + All files + සියළුම ගොනු + + + Key files + යතුරු ගොනු + + + Select key file + යතුරු ගොනුව තෝරන්න + + + Cannot use database file as key file + දත්ත සමුදා ගොනුව යතුරු ගොනුවක් ලෙස භාවිතා කළ නොහැක + + + authenticate to access the database + + + + Failed to authenticate with Quick Unlock: %1 + + + + Select Key File: + + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + + + + + DatabaseSettingWidgetMetaData + + Passwords + මුරපද + + + + DatabaseSettingsDialog + + General + ජනරාල් + + + Security + ආරක්‍ෂාව + + + Database Credentials + දත්ත සමුදා අක්තපත්ර + + + Encryption Settings + සංකේතන සැකසුම් + + + Browser Integration + බ්රවුසර ඒකාබද්ධ කිරීම + + + Maintenance + නඩත්තු + + + KeeShare + KeeShare + + + Secret Service Integration + රහස් සේවා ඒකාබද්ධ කිරීම + + + Remote Sync + + + + Database Settings: %1 + + + + + DatabaseSettingsWidgetBrowser + + KeePassXC-Browser settings + KeePassXC-Browser සැකසුම් + + + Disconnect all browsers + සියලුම බ්‍රව්සර් විසන්ධි කරන්න + + + Forget all site-specific settings on entries + ඇතුළත් කිරීම් වල සියලුම අඩවි-විශේෂිත සැකසුම් අමතක කරන්න + + + Refresh database root group ID + දත්ත සමුදා මූල කණ්ඩායම් හැඳුනුම්පත නැවුම් කරන්න + + + Stored keys + ගබඩා කළ යතුරු + + + Stored browser keys + ගබඩා කර ඇති බ්‍රව්සර් යතුරු + + + Remove selected key + තෝරාගත් යතුර ඉවත් කරන්න + + + Remove + ඉවතලන්න + + + Delete the selected key? + තෝරාගත් යතුර මකන්නද? + + + Do you really want to delete the selected key? +This may prevent connection to the browser plugin. + ඔබට ඇත්තටම තෝරාගත් යතුර මැකීමට අවශ්‍යද? +මෙය බ්‍රවුසර ප්ලගිනයට සම්බන්ධ වීම වැළැක්විය හැක. + + + Key + යතුර + + + Value + අගය + + + Created + නිර්මාණය කළා + + + Enable Browser Integration to access these settings. + මෙම සිටුවම් වෙත ප්‍රවේශ වීමට බ්‍රවුසර අනුකලනය සක්‍රීය කරන්න. + + + Do you really want to disconnect all browsers? +This may prevent connection to the browser plugin. + ඔබට සැබවින්ම සියලුම බ්‍රව්සර් විසන්ධි කිරීමට අවශ්‍යද? +මෙය බ්‍රවුසර ප්ලගිනයට සම්බන්ධ වීම වැළැක්විය හැක. + + + No shared encryption keys found in KeePassXC settings. + KeePassXC සැකසීම් තුළ හවුල් සංකේතාංකන යතුරු හමු නොවීය. + + + Successfully removed %n encryption key(s) from KeePassXC settings. + KeePassXC සිටුවම් වලින් %n සංකේතාංකන යතුර(ය) සාර්ථකව ඉවත් කරන ලදී.KeePassXC සිටුවම් වලින් %n සංකේතාංකන යතුර(ය) සාර්ථකව ඉවත් කරන ලදී. + + + Do you really want forget all site-specific settings on every entry? +Permissions to access entries will be revoked. + ඔබට සැබවින්ම සෑම ප්‍රවේශයකම සියලුම අඩවි-විශේෂිත සැකසුම් අමතක කිරීමට අවශ්‍යද? +ඇතුළත් කිරීම්වලට ප්‍රවේශ වීමට ඇති අවසර අවලංගු කෙරේ. + + + Removing stored permissions… + ගබඩා කළ අවසර ඉවත් කිරීම… + + + Abort + ගබ්සා කරන්න + + + Successfully removed permissions from %n entry(s). + ඇතුළත් කිරීම් %n කින් අවසර සාර්ථකව ඉවත් කරන ලදී.ඇතුළත් කිරීම් %n කින් අවසර සාර්ථකව ඉවත් කරන ලදී. + + + The active database does not contain an entry with permissions. + සක්‍රිය දත්ත ගබඩාවේ අවසර සහිත ප්‍රවේශයක් අඩංගු නොවේ. + + + Refresh database ID + දත්ත සමුදා හැඳුනුම්පත නැවුම් කරන්න + + + Do you really want refresh the database ID? +This is only necessary if your database is a copy of another and the browser extension cannot connect. + ඔබට ඇත්තටම දත්ත සමුදා හැඳුනුම්පත නැවුම් කිරීමට අවශ්‍යද? +මෙය අවශ්‍ය වන්නේ ඔබගේ දත්ත සමුදාය වෙනත් පිටපතක් නම් සහ බ්‍රවුසර දිගුව සම්බන්ධ කළ නොහැකි නම් පමණි. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + පැරණි KeePassHTTP ගුණාංග KeePassXC-බ්‍රවුසරයට ගැළපෙන අභිරුචි දත්ත බවට පරිවර්තනය කරන්න + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + + + + DatabaseSettingsWidgetDatabaseKey + + Add additional protection… + අමතර ආරක්ෂාවක් එක් කරන්න… + + + 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? + අවවාදයයි! ඔබ මුරපදයක් සකසා නැත. මුරපදයක් නොමැතිව දත්ත සමුදායක් භාවිතා කිරීම දැඩි ලෙස අධෛර්යමත් වේ! + +ඔබට මුරපදයක් නොමැතිව ඉදිරියට යාමට අවශ්‍ය බව විශ්වාසද? + + + Continue without password + මුරපදය නොමැතිව ඉදිරියට යන්න + + + No encryption key added + සංකේතාංකන යතුරක් එක් කර නැත + + + You must add at least one encryption key to secure your database! + ඔබගේ දත්ත සමුදාය සුරක්ෂිත කිරීමට ඔබ අවම වශයෙන් එක් සංකේතාංකන යතුරක් එක් කළ යුතුය! + + + Unknown error + නොදන්නා දෝෂයකි + + + Failed to change database credentials + දත්ත සමුදා අක්තපත්‍ර වෙනස් කිරීමට අසමත් විය + + + Weak password + දුර්වල මුරපදය + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + + + + DatabaseSettingsWidgetEncryption + + Decryption Time: + විසංකේතන කාලය: + + + Decryption time in seconds + තත්පර වලින් විකේතන කාලය + + + Higher values offer more protection, but opening the database will take longer. + ඉහළ අගයන් වැඩි ආරක්ෂාවක් ලබා දෙයි, නමුත් දත්ත සමුදාය විවෘත කිරීමට වැඩි කාලයක් ගතවනු ඇත. + + + Database format: + දත්ත සමුදා ආකෘතිය: + + + Database format + දත්ත සමුදා ආකෘතිය + + + Format cannot be changed: Your database uses KDBX 4 features + ආකෘතිය වෙනස් කළ නොහැක: ඔබගේ දත්ත සමුදාය KDBX 4 විශේෂාංග භාවිතා කරයි + + + Unless you need to open your database with other programs, always use the latest format. + ඔබට වෙනත් වැඩසටහන් සමඟ ඔබේ දත්ත සමුදාය විවෘත කිරීමට අවශ්‍ය නම් මිස, සෑම විටම නවතම ආකෘතිය භාවිතා කරන්න. + + + Encryption Algorithm: + සංකේතාංකන ඇල්ගොරිතම: + + + Encryption algorithm + සංකේතාංකන ඇල්ගොරිතම + + + AES: 256 Bit (default) + AES: 256 Bit (පෙරනිමිය) + + + Twofish: 256 Bit + මාළු දෙක: 256 බිට් + + + Key Derivation Function: + ප්රධාන ව්යුත්පන්න කාර්යය: + + + Key derivation function + ප්රධාන ව්යුත්පන්න කාර්යය + + + Transform rounds: + පරිවර්තන වට: + + + Transform rounds + වටකුරු පරිවර්තනය කරන්න + + + Memory Usage: + මතකය භාවිතය: + + + Memory usage + මතකය භාවිතය + + + Parallelism: + සමාන්තරකරණය: + + + Parallelism + සමාන්තරවාදය + + + KDBX 4 (recommended) + KDBX 4 (නිර්දේශිත) + + + KDBX 3 + KDBX 3 + + + Number of rounds too high + Key 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, days, or even longer to open. + ඔබ Argon2 සමඟ යතුරු පරිවර්තන වට ඉතා ඉහළ සංඛ්‍යාවක් භාවිතා කරයි. + +ඔබ මෙම අංකය තබා ගන්නේ නම්, ඔබේ දත්ත සමුදාය විවෘත කිරීමට පැය, දින හෝ ඊටත් වඩා වැඩි කාලයක් ගතවනු ඇත. + + + Understood, keep number + තේරුණා, අංකය තබා ගන්න + + + Cancel + අවලංගු + + + Number of rounds too low + Key transformation rounds + වට ගණන ඉතා අඩුය + + + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. + ඔබ AES-KDF සමඟ යතුරු පරිවර්තන වට ඉතා අඩු සංඛ්‍යාවක් භාවිතා කරයි. + +ඔබ මෙම අංකය තබා ගන්නේ නම්, ඔබේ දත්ත ගබඩාව බෲට් බල ප්‍රහාර වලින් ආරක්ෂා නොවනු ඇත. + + + KDF unchanged + KDF නොවෙනස්ව ඇත + + + Failed to transform key with new KDF parameters; KDF unchanged. + නව KDF පරාමිති සමඟ යතුර පරිවර්තනය කිරීමට අසමත් විය; KDF නොවෙනස්ව ඇත. + + + MiB + Abbreviation for Mebibytes (KDF settings) + MiB MiB + + + thread(s) + Threads for parallel execution (KDF settings) + නූල්(ය) නූල්(ය) + + + Encryption Settings: + + + + Basic + + + + Advanced + වැඩිදුර + + + + DatabaseSettingsWidgetFdoSecrets + + Exposed Entries + නිරාවරණය වූ ඇතුළත් කිරීම් + + + Don't expose this database + මෙම දත්ත'හෙළිදරව් නොකරන්න + + + Expose entries under this group: + මෙම කණ්ඩායම යටතේ ඇතුළත් කිරීම් හෙළි කරන්න: + + + Enable Secret Service to access these settings. + මෙම සැකසීම් වෙත ප්‍රවේශ වීමට රහස් සේවාව සබල කරන්න. + + + + DatabaseSettingsWidgetGeneral + + Database Metadata + දත්ත සමුදා පාරදත්ත + + + Database name: + දත්ත සමුදායේ නම: + + + Database name field + දත්ත සමුදා නාම ක්ෂේත්‍රය + + + Database description: + දත්ත සමුදා විස්තරය: + + + Database description field + දත්ත සමුදා විස්තර ක්ෂේත්‍රය + + + Default username: + පෙරනිමි පරිශීලක නාමය: + + + Default username field + පෙරනිමි පරිශීලක නාම ක්ෂේත්‍රය + + + History Settings + ඉතිහාස සැකසුම් + + + Maximum number of history items per entry + එක් ප්‍රවේශයකට ඉතිහාස අයිතම උපරිම සංඛ්‍යාව + + + Maximum size of history per entry + එක් ප්‍රවේශයකට ඉතිහාසයේ උපරිම ප්‍රමාණය + + + MiB + MiB + + + Use recycle bin + ප්රතිචක්රීකරණ බඳුනක් භාවිතා කරන්න + + + Additional Database Settings + අතිරේක දත්ත සමුදා සැකසුම් + + + Enable compression (recommended) + සම්පීඩනය සබල කරන්න (නිර්දේශිත) + + + Delete Recycle Bin + ප්‍රතිචක්‍රීකරණ බඳුන මකන්න + + + Do you want to delete the current recycle bin and all its contents? +This action is not reversible. + ඔබට වත්මන් ප්‍රතිචක්‍රීකරණ බඳුන සහ එහි සියලුම අන්තර්ගතයන් මැකීමට අවශ්‍යද? +මෙම ක්‍රියාව ආපසු හැරවිය නොහැක. + + + (old) + (පරණ) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + විනා. + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + පැහැදිලිව + + + Display icon: + + + + Select Database Icon + + + + + DatabaseSettingsWidgetKeeShare + + Sharing + බෙදාගැනීම + + + Breadcrumb + පාන් කුඩු + + + Type + ලියන්න + + + Path + මාර්ගය + + + Last Signer + අවසාන අත්සන් කරන්නා + + + Certificates + සහතික + + + > + Breadcrumb separator + > + + + + DatabaseSettingsWidgetMaintenance + + Manage Custom Icons + අභිරුචි අයිකන කළමනාකරණය කරන්න + + + Delete selected icon(s) + තෝරාගත් නිරූපක(ය) මකන්න + + + Delete all custom icons not in use by any entry or group + කිසිදු ප්‍රවේශයක් හෝ කණ්ඩායමක් භාවිතා නොකරන සියලුම අභිරුචි අයිකන මකන්න + + + Purge unused icons + භාවිතයට නොගත් අයිකන ඉවත් කරන්න + + + Confirm Deletion + මකාදැමීම තහවුරු කරන්න + + + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? + අවම වශයෙන් තෝරාගත් අයිකනවලින් එකක් වත් දැනට අවම වශයෙන් එක් ප්‍රවේශයක් හෝ කණ්ඩායමක් විසින් භාවිතා කරයි. බලපෑමට ලක් වූ සියලුම ඇතුළත් කිරීම් සහ කණ්ඩායම්වල අයිකන පෙරනිමි නිරූපකය මගින් ප්‍රතිස්ථාපනය වේ. දැනට භාවිතයේ පවතින අයිකන මැකීමට අවශ්‍ය බව ඔබට විශ්වාසද? + + + Custom Icons Are In Use + අභිරුචි අයිකන භාවිතයේ පවතී + + + All custom icons are in use by at least one entry or group. + සියලුම අභිරුචි අයිකන අවම වශයෙන් එක් ප්‍රවේශයක් හෝ කණ්ඩායමක් විසින් භාවිත කෙරේ. + + + Purged Unused Icons + භාවිතයට නොගත් අයිකන ඉවත් කර ඇත + + + Purged %n icon(s) from the database. + දත්ත සමුදායෙන් %n නිරූපක(ය) ඉවත් කරන ලදී.දත්ත සමුදායෙන් %n නිරූපක(ය) ඉවත් කරන ලදී. + + + + DatabaseSettingsWidgetMetaDataSimple + + Database Name: + දත්ත සමුදායේ නම: + + + Database name field + දත්ත සමුදා නාම ක්ෂේත්‍රය + + + Description: + සවිස්තරය: + + + Database description field + දත්තසමුදායේ විස්තර ක්‍ෂේත්‍රය + + + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + ඉවතලන්න + + + Command Settings + + + + Name + නම + + + Save + සුරකින්න + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + තත්පර + + + + DatabaseTabWidget + + 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 එකක් නොමැත, එය සුරැකීම ප්‍රතික්ෂේප කරයි. +මෙය නියත වශයෙන්ම දෝෂයකි, කරුණාකර එය සංවර්ධකයන්ට වාර්තා කරන්න. + + + KeePass 2 Database + KeePass 2 දත්තසමුදාය + + + All files + සියළුම ගොනු + + + Open database + දත්තසමුදාය අරින්න + + + Failed to open %1. It either does not exist or is not accessible. + %1විවෘත කිරීමට අසමත් විය. එය නොපවතී හෝ ප්රවේශ විය නොහැක. + + + CSV file + CSV ගොනුව + + + Merge database + දත්තසමුදාය ඒකාබද්ධය + + + Export database to CSV file + දත්තසමුදාය CSV ගොනුවකට නිර්යාතය + + + Writing the CSV file failed. + CSV ගොනුව ලිවීම අසාර්ථක විය. + + + Writing the HTML file failed. + HTML ගොනුව ලිවීමට අසමත් විය. + + + Export database to XML file + + + + XML file + + + + Writing the XML file failed + + + + Export Confirmation + අපනයන තහවුරු කිරීම + + + You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? + ඔබ ඔබේ දත්ත සමුදාය සංකේතනය නොකළ ගොනුවකට අපනයනය කිරීමට සූදානම් වේ. මෙය ඔබගේ මුරපද සහ සංවේදී තොරතුරු අවදානමට ලක් කරයි! ඔබට දිගටම කරගෙන යාමට අවශ්‍ය බව විශ්වාසද? + + + %1 [Locked] + Database tab name modifier + %1 [Locked] + + + %1 [Temporary] + Database tab name modifier + + + + + DatabaseWidget + + Searches and Tags + + + + Searching… + සොයමින්… + + + Shared group… + බෙදාගත් කණ්ඩායම… + + + Confirm Auto-Type + ස්වයං ලිවීම තහවුරුව + + + Perform Auto-Type into the previously active window? + කලින් සක්‍රිය කවුළුවට ස්වයංක්‍රීය ටයිප් කරන්නද? + + + Execute command? + විධානය ක්‍රියාත්මක කරන්නද? + + + Do you really want to execute the following command?<br><br>%1<br> + ඔබට ඇත්තටම පහත විධානය ක්‍රියාත්මක කිරීමට අවශ්‍යද?<br><br>%1<br> + + + Remember my choice + තේරීම මතක තබාගන්න + + + Delete group + සමූහය මකන්න + + + Do you really want to delete the group "%1" for good? + ඔබට සැබවින්ම "%1" කණ්ඩායම යහපත සඳහා මකා දැමීමට අවශ්‍යද? + + + Move group to recycle bin? + කණ්ඩායම ප්‍රතිචක්‍රීකරණ බඳුනට ගෙන යන්නද? + + + Do you really want to move the group "%1" to the recycle bin? + ඔබට ඇත්තටම "%1" කණ්ඩායම ප්‍රතිචක්‍රීකරණ බඳුනට ගෙන යාමට අවශ්‍යද? + + + Expired entries + ඉකුත් වූ නිවේශිත + + + Entries expiring within %1 day(s) + නිවේශිත දවස් %1 කින් ඉකුත් වේනිවේශිත දවස් %1 කින් ඉකුත් වේ + + + No current database. + වත්මන් දත්ත සමුදාය නැත. + + + No source database, nothing to do. + මූලාශ්‍ර දත්ත ගබඩාවක් නැත, කිරීමට කිසිවක් නැත. + + + Successfully merged the database files. + දත්ත සමුදා ගොනු සාර්ථකව ඒකාබද්ධ කරන ලදී. + + + Database was not modified by merge operation. + දත්ත සමුදාය ඒකාබද්ධ කිරීමේ මෙහෙයුම මගින් වෙනස් කර නැත. + + + Search Results (%1) + සෙවුම් ප්‍රතිඵල (%1) + + + No Results + ප්‍රතිපල නැත + + + Save + සුරකින්න + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + + + + Lock Database? + දත්තසමුදාය අගුළු දමන්නද? + + + You are editing an entry. Discard changes and lock anyway? + ඔබ ප්‍රවේශයක් සංස්කරණය කරමින් සිටී. කෙසේ වෙතත් වෙනස්කම් ඉවත දමා අගුලු දමන්නද? + + + "%1" was modified. +Save changes? + "%1" වෙනස් කරන ලදී. +වෙනස්කම් සුරකින්නද? + + + Database was modified. +Save changes? + දත්ත සමුදාය වෙනස් කරන ලදී. +වෙනස්කම් සුරකින්නද? + + + Save changes? + වෙනස්කම් සුරකින්නද? + + + File has changed + ගොනුව වෙනස් වී ඇත + + + Disable 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 + දත්ත සමුදාය ලිවීම අසාර්ථක විය: %1 + + + Passwords + මුරපද + + + Save database as + ලෙස දත්තසමුදාය සුරකින්න + + + KeePass 2 Database + KeePass 2 දත්තසමුදාය + + + Save database backup + දත්තසමුදායේ උපස්ථයක් සුරකින්න + + + Empty recycle bin? + ප්‍රතිචක්‍රීකරණ බඳුන හිස්ද? + + + Are you sure you want to permanently delete everything from your recycle bin? + ඔබේ ප්‍රතිචක්‍රීකරණ බඳුනෙන් සියල්ල ස්ථිරවම මැකීමට අවශ්‍ය බව ඔබට විශ්වාසද? + + + Could not find database file: %1 + දත්ත සමුදා ගොනුව සොයා ගැනීමට නොහැකි විය: %1 + + + New Database + නව දත්තසමුදාය + + + %1 [New Database] + Database tab name modifier + %1 [නව දත්තසමුදාය] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + + EditEntryWidget + + Entry + නිවේශිතය + + + Advanced + වැඩිදුර + + + Icon + නිරූපකය + + + Auto-Type + ස්වයං ලිවීම + + + Browser Integration + අතිරික්සුවට අනුකලනය + + + <empty URL> + <empty URL> + + + Confirm Removal + ඉවත් කිරීම තහවුරු කරන්න + + + Are you sure you want to remove this URL? + ඔබට මෙම URL ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද? + + + Properties + ගුණාංග + + + History + ඉතිහාසය + + + SSH Agent + SSH නියෝතය + + + n/a + අ/නොවේ + + + Select private key + පෞද්. යතුර තෝරන්න + + + Entry history + නිවේශිතයේ ඉතිහාසය + + + Add entry + නිවේශිතයක් යොදන්න + + + Edit entry + නිවේශිතය සංස්කරණය + + + Some Browser Integration settings are overridden by group settings. + සමහර Browser Integration සැකසුම් කණ්ඩායම් සිටුවම් මගින් ප්‍රතික්‍ෂේප කර ඇත. + + + Invalid Entry + වලංගු නොවන ඇතුල්වීමක් + + + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. + බාහිර ඒකාබද්ධ කිරීමේ මෙහෙයුමක් මෙම ප්‍රවේශය අවලංගු කර ඇත. +අවාසනාවන්ත ලෙස, කරන ලද ඕනෑම වෙනස්කමක් නැති වී ඇත. + + + Auto-Type Validation Error + ස්වයං-වර්ගය වලංගු කිරීමේ දෝෂය + + + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? + අභිරුචි ස්වයං-වර්ග අනුපිළිවෙල වලංගු කිරීමේදී දෝෂයක් ඇති විය: +%1 +ඔබ එය නිවැරදි කිරීමට කැමතිද? + + + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? + "%1": +%2 +සඳහා ස්වයංක්‍රීය-වර්ග අනුපිළිවෙල වලංගු කිරීමේදී දෝෂයක් ඇති විය ඔබ එය නිවැරදි කිරීමට කැමතිද? + + + Entry updated successfully. + ඇතුල්වීම සාර්ථකව යාවත්කාලීන කරන ලදී. + + + Unsaved Changes + නොසුරැකි වෙනස්කම් + + + Would you like to save changes to this entry? + ඔබ මෙම ප්‍රවේශයට වෙනස්කම් සුරැකීමට කැමතිද? + + + New attribute + නව ගුණාංගය + + + New attribute %1 + නව ගුණාංගය %1 + + + Are you sure you want to remove this attribute? + ඔබට මෙම ගුණාංගය ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද? + + + Reveal + හෙළි කරන්න + + + [PROTECTED] Press Reveal to view or edit + [PROTECTED] බැලීමට හෝ සංස්කරණය කිරීමට Reveal ඔබන්න + + + Hide + සඟවන්න + + + %n hour(s) + පැය %nපැය %n + + + %n week(s) + සති %nසති %n + + + %n month(s) + මාස %nමාස %n + + + %n year(s) + වසර %nවසර %n + + + Failed to decrypt SSH key, ensure password is correct. + + + + + EditEntryWidgetAdvanced + + Additional attributes + අමතර ගුණාංග + + + Attribute selection + ගුණාංග තේරීම + + + Attribute value + ගුණාංග අගය + + + Add a new attribute + නව ගුණාංගයක් එක් කරන්න + + + Add + එකතු + + + Remove selected attribute + තෝරාගත් උපලක්ෂණ ඉවත් කරන්න + + + Remove + ඉවතලන්න + + + Edit attribute name + ගුණාංග නාමය සංස්කරණය කරන්න + + + Edit Name + නම සංස්කරණය + + + Toggle attribute protection + ගුණාංග ආරක්ෂාව ටොගල් කරන්න + + + Protect + ආරක්ෂා කරන්න + + + Show a protected attribute + ආරක්ෂිත ගුණාංගයක් පෙන්වන්න + + + Reveal + හෙළි කරන්න + + + Attachments + ඇමුණුම් + + + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. + පරීක්ෂා කළහොත්, ප්‍රවේශය තත්ත්ව අවශ්‍යතා සමඟ't නොගැලපේ වුවද සෞඛ්‍ය පරීක්‍ෂණය සහ HIBP වැනි වාර්තාවල දිස් නොවේ. + + + Exclude from database reports + දත්ත සමුදා වාර්තා වලින් බැහැර කරන්න + + + Foreground Color: + පෙරබිම් වර්ණය: + + + Foreground color selection + පෙරබිම වර්ණ තේරීම + + + Background Color: + පසුබිම් වර්ණය: + + + Background color selection + පසුබිම් වර්ණ තේරීම + + + + EditEntryWidgetAutoType + + Enable Auto-Type for this entry + මෙම ප්‍රවේශය සඳහා ස්වයංක්‍රීය වර්ගය සබල කරන්න + + + Inherit default Auto-Type sequence from the group + සමූහයෙන් පෙරනිමි ස්වයංක්‍රීය-වර්ග අනුපිළිවෙල උරුම කර ගන්න + + + Use custom Auto-Type sequence: + අභිරුචි ස්වයං-වර්ග අනුපිළිවෙල භාවිතා කරන්න: + + + Custom Auto-Type sequence + අභිරුචි ස්වයං-වර්ග අනුපිළිවෙල + + + Open Auto-Type help webpage + ස්වයංක්‍රීය ටයිප් උදවු වෙබ් පිටුව විවෘත කරන්න + + + Window Associations + කවුළු සංගම් + + + Existing window associations + පවතින කවුළු සංගම් + + + Add new window association + නව කවුළු ඇසුරක් එක් කරන්න + + + + + Add item + + + + + Remove selected window association + තෝරාගත් කවුළු සම්බන්ධය ඉවත් කරන්න + + + - + Remove item + - + + + Window title: + කවුළු මාතෘකාව: + + + You can use an asterisk (*) to match everything + සෑම දෙයක්ම ගැලපීමට ඔබට තරු ලකුණ (*) භාවිතා කළ හැකිය + + + Set the window association title + කවුළු සංගම් මාතෘකාව සකසන්න + + + You can use an asterisk to match everything + සෑම දෙයක්ම ගැලපීමට ඔබට තරු ලකුණක් භාවිතා කළ හැකිය + + + Use a specific sequence for this association: + මෙම සංගමය සඳහා නිශ්චිත අනුපිළිවෙලක් භාවිතා කරන්න: + + + Custom Auto-Type sequence for this window + මෙම කවුළුව සඳහා අභිරුචි ස්වයංක්‍රීය ටයිප් අනුපිළිවෙල + + + + EditEntryWidgetBrowser + + General + ජනරාල් + + + Hide this entry from the browser extension + බ්‍රවුසර දිගුවෙන් මෙම ප්‍රවේශය සඟවන්න + + + Skip Auto-Submit for this entry + මෙම ප්‍රවේශය සඳහා ස්වයංක්‍රීය ඉදිරිපත් කිරීම මඟ හරින්න + + + Use this entry only with HTTP Basic Auth + මෙම ප්‍රවේශය HTTP Basic Auth සමඟ පමණක් භාවිතා කරන්න + + + Do not use this entry with HTTP Basic Auth + HTTP Basic Auth සමඟ මෙම ප්‍රවේශය භාවිතා නොකරන්න + + + Add + එකතු + + + Remove + ඉවතලන්න + + + Edit + සංස්කරණය + + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + + + + EditEntryWidgetHistory + + Entry history selection + ඇතුළත් වීමේ ඉතිහාසය තේරීම + + + Show entry at selected history state + තෝරාගත් ඉතිහාස තත්වයේ ප්‍රවේශය පෙන්වන්න + + + Show + පෙන්වන්න + + + Restore entry to selected history state + තෝරාගත් ඉතිහාස තත්ත්වයට ප්‍රවේශය ප්‍රතිසාධනය කරන්න + + + Restore + ප්‍රත්‍යර්පණය + + + Delete selected history state + තෝරාගත් ඉතිහාස තත්ත්වය මකන්න + + + Delete + මකන්න + + + Delete all history + සියලුම ඉතිහාසය මකන්න + + + Delete all + සියල්ල මකන්න + + + + EditEntryWidgetMain + + Edit Entry + ඇතුළත් කිරීම සංස්කරණය කරන්න + + + Notes field + සටහන් ක්ෂේත්රය + + + Username field + පරිශීලක නාම ක්ෂේත්රය + + + Expiration field + කල් ඉකුත් වීමේ ක්ෂේත්රය + + + Expiration Presets + කල් ඉකුත් වීමේ පෙරසිටුවීම් + + + Expiration presets + කල් ඉකුත් වීමේ පෙරසිටුවීම් + + + Presets + පෙරසිටුවීම් + + + Url field + Url ක්ෂේත්රය + + + Download favicon for URL + URL සඳහා favicon බාගන්න + + + Title field + මාතෘකා ක්ෂේත්රය + + + Password field + මුරපද ක්ෂේත්‍රය + + + Toggle expiration + කල් ඉකුත්වීම ටොගල් කරන්න + + + Tags list + ටැග් ලැයිස්තුව + + + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: + + + + + EditEntryWidgetSSHAgent + + Form + පෝරමය + + + Remove key from agent when database is closed/locked + දත්ත සමුදාය වසා ඇති විට / අගුලු දමා ඇති විට නියෝජිතයාගෙන් යතුර ඉවත් කරන්න + + + Comment + අදහස් දක්වන්න + + + Add key to agent when database is opened/unlocked + දත්ත සමුදාය විවෘත කරන විට / අගුලු හරින විට නියෝජිතයාට යතුර එක් කරන්න + + + Decrypt + විකේතනය කරන්න + + + Fingerprint + ඇඟිලි සලකුණ + + + Copy to clipboard + පසුරු පුවරුවට පිටපත් කරන්න + + + Public key + පොදු යතුර + + + Private key + පුද්ගලික යතුර + + + Attachment + ඇමුණුම + + + External key file + බාහිර යතුරු ගොනුව + + + Add to agent + නියෝජිතයාට එකතු කරන්න + + + Remove from agent + නියෝජිතයාගෙන් ඉවත් කරන්න + + + External file + බාහිර ගොනුව + + + Browser for key file + යතුරු ගොනුව සඳහා බ්‍රව්සරය + + + Browse… + Button for opening file dialog + පිරික්සන්න... + + + Generate + උත්පාදනය කරන්න + + + Select attachment file + ඇමුණුම් ගොනුව තෝරන්න + + + Require user confirmation when this key is used + මෙම යතුර භාවිතා කරන විට පරිශීලක තහවුරු කිරීම අවශ්‍ය වේ + + + n/a + අ/නොවේ + + + Remove key from agent after + පසුව නියෝජිතයාගෙන් යතුර ඉවත් කරන්න + + + Remove key from agent after specified seconds + නිශ්චිත තත්පර වලින් පසුව නියෝජිතයාගෙන් යතුර ඉවත් කරන්න + + + seconds + තත්පර + + + Clear agent + + + + + EditGroupWidget + + Group + සමූහය + + + Icon + නිරූපකය + + + Properties + දේපළ + + + Add group + කණ්ඩායම එකතු කරන්න + + + Edit group + කණ්ඩායම සංස්කරණය කරන්න + + + Group has unsaved changes + සමූහයට නොසුරැකි වෙනස්කම් ඇත + + + Browser Integration + බ්රවුසර ඒකාබද්ධ කිරීම + + + Enable + සබල කරන්න + + + Disable + අක්රිය කරන්න + + + Inherit from parent group (%1) + මාපිය කණ්ඩායමෙන් උරුමය (%1) + + + + EditGroupWidgetBrowser + + These settings affect to the group's behaviour with the browser extension. + මෙම සැකසීම් බ්‍රවුසර දිගුව සමඟ'කණ්ඩායමේ හැසිරීමට බලපායි. + + + Hide entries from browser extension: + බ්‍රවුසර දිගුවෙන් ඇතුළත් කිරීම් සඟවන්න: + + + Hide entries from browser extension toggle for this and sub groups + මෙම සහ උප කණ්ඩායම් සඳහා බ්‍රවුසර දිගු ටොගලයෙන් ඇතුළත් කිරීම් සඟවන්න + + + Skip Auto-Submit for entries: + ඇතුළත් කිරීම් සඳහා ස්වයංක්‍රීයව ඉදිරිපත් කිරීම මඟ හරින්න: + + + Skip Auto-Submit toggle for this and sub groups + මෙය සහ උප කණ්ඩායම් සඳහා ස්වයංක්‍රීය ඉදිරිපත් කිරීම ටොගලය මඟ හරින්න + + + Use entries only with HTTP Basic Auth: + HTTP මූලික Auth සමඟ පමණක් ඇතුළත් කිරීම් භාවිතා කරන්න: + + + Only HTTP Auth toggle for this and sub groups + මෙම සහ උප කණ්ඩායම් සඳහා HTTP Auth පමණක් ටොගල කරන්න + + + Do not use entries with HTTP Basic Auth: + HTTP මූලික Auth සමඟ ඇතුළත් කිරීම් භාවිතා නොකරන්න: + + + Do not use HTTP Auth toggle for this and sub groups + මෙය සහ උප කණ්ඩායම් සඳහා HTTP Auth ටොගල් භාවිතා නොකරන්න + + + Omit WWW subdomain from matching: + WWW උප වසම ගැලපීමෙන් ඉවත් කරන්න: + + + Omit WWW subdomain from matching toggle for this and sub groups + මෙය සහ උප කණ්ඩායම් සඳහා ගැළපෙන ටොගල් වලින් WWW උප වසම ඉවත් කරන්න + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + EditGroupWidgetKeeShare + + Sharing mode field + බෙදාගැනීමේ මාදිලියේ ක්ෂේත්‍රය + + + Password field + මුරපද ක්ෂේත්‍රය + + + Type: + වර්ගය: + + + Password: + මුරපදය: + + + Path: + මාර්ගය: + + + Path to share file field + ගොනු ක්ෂේත්‍රය බෙදා ගැනීමට මාර්ගය + + + Browse for share file + ගොනු බෙදාගැනීම සඳහා බ්‍රවුස් කරන්න + + + Browse… + පිරික්සන්න... + + + Clear fields + හිස් ක්ෂේත්ර + + + Clear + පැහැදිලිව + + + Inactive + අක්රියයි + + + Import + ආනයන + + + Export + අපනයන + + + Synchronize + සමමුහුර්ත කරන්න + + + Your KeePassXC version does not support sharing this container type. +Supported extensions are: %1. + ඔබගේ KeePassXC අනුවාදය මෙම බහාලුම් වර්ගය බෙදා ගැනීමට සහාය නොදක්වයි. +සහාය දක්වන දිගු වන්නේ: %1. + + + %1 is already being exported by this database. + %1 දැනටමත් මෙම දත්ත සමුදාය මගින් අපනයනය කෙරේ. + + + %1 is already being imported by this database. + %1 දැනටමත් මෙම දත්ත සමුදාය මගින් ආයාත කෙරේ. + + + %1 is being imported and exported by different groups in this database. + %1 මෙම දත්ත ගබඩාවේ විවිධ කණ්ඩායම් විසින් ආනයනය සහ අපනයනය කරනු ලැබේ. + + + KeeShare is currently disabled. You can enable import/export in the application settings. + KeeShare is a proper noun + KeeShare දැනට අබල කර ඇත. යෙදුම් සැකසීම් තුළ ඔබට ආයාත/අපනයනය සබල කළ හැක. + + + Database export is currently disabled by application settings. + යෙදුම් සැකසීම් මගින් දත්ත සමුදාය අපනයනය දැනට අබල කර ඇත. + + + Database import is currently disabled by application settings. + යෙදුම් සැකසීම් මගින් දත්ත සමුදා ආයාත කිරීම දැනට අබල කර ඇත. + + + KeeShare container + KeeShare කන්ටේනරය + + + KeeShare signed container + KeeShare අත්සන් කළ බහාලුම + + + Select import source + ආනයන මූලාශ්‍රය තෝරන්න + + + Select export target + අපනයන ඉලක්කය තෝරන්න + + + Select import/export file + ආයාත/අපනයන ගොනුව තෝරන්න + + + + EditGroupWidgetMain + + Edit Group + කණ්ඩායම සංස්කරණය කරන්න + + + Toggle expiration + කල් ඉකුත්වීම ටොගල් කරන්න + + + Expires: + කල් ඉකුත් වේ: + + + Name field + ක්ෂේත්‍රය නම් කරන්න + + + Expiration field + කල් ඉකුත් වීමේ ක්ෂේත්රය + + + Use default Auto-Type sequence of parent group + මාපිය කණ්ඩායමේ පෙරනිමි ස්වයං-වර්ග අනුපිළිවෙල භාවිතා කරන්න + + + Auto-Type: + ස්වයං-වර්ගය: + + + Search: + සොයන්න: + + + Auto-Type toggle for this and sub groups + මෙය සහ උප කණ්ඩායම් සඳහා ස්වයංක්‍රීය ටයිප් ටොගල කරන්න + + + Notes: + සටහන්: + + + Default auto-type sequence field + පෙරනිමි ස්වයං-වර්ග අනුපිළිවෙල ක්ෂේත්රය + + + Notes field + සටහන් ක්ෂේත්රය + + + Name: + නම: + + + Set default Auto-Type sequence + පෙරනිමි ස්වයං-වර්ග අනුපිළිවෙල සකසන්න + + + Search toggle for this and sub groups + මෙය සහ උප කණ්ඩායම් සඳහා සෙවුම් ටොගල් කරන්න + + + + EditWidgetIcons + + Use default icon + පෙරනිමි නිරූපකය භාවිතා කරන්න + + + Use custom icon + අභිරුචි නිරූපකය භාවිතා කරන්න + + + Choose icon… + අයිකනය…තෝරන්න + + + Set the URL to use to search for a favicon + ෆේවිකොන් සෙවීමට භාවිතා කිරීමට URL එක සකසන්න + + + Favicon URL + Favicon URL + + + Download favicon for URL + URL සඳහා favicon බාගන්න + + + Download favicon + Favicon බාගන්න + + + Apply selected icon to subgroups and entries + තෝරාගත් නිරූපකය උප සමූහ සහ ඇතුළත් කිරීම් සඳහා යොදන්න + + + Apply icon to… + නිරූපකය…වෙත යොදන්න + + + Apply to this group only + මෙම සමූහයට පමණක් අයදුම් කරන්න + + + Also apply to child groups + ළමා කණ්ඩායම් සඳහා ද අදාළ වේ + + + Also apply to child entries + ළමා ඇතුළත් කිරීම් සඳහා ද අදාළ වේ + + + Also apply to all children + සියලුම දරුවන්ටද අදාළ වේ + + + Unable to fetch favicon. + ෆේවිකොන් ලබා ගැනීමට නොහැකි විය. + + + Existing icon selected. + පවතින නිරූපකය තෝරා ඇත. + + + Images + රූප + + + All files + සියලුම ගොනු + + + Select Image(s) + රූප(ය) තෝරන්න + + + Successfully loaded %1 of %n icon(s) + අයිකන(ය) %n කින් %1 ක් සාර්ථකව පූරණය කරන ලදීඅයිකන(ය) %n කින් %1 ක් සාර්ථකව පූරණය කරන ලදී + + + No icons were loaded + අයිකන කිසිවක් පූරණය කර නැත + + + %n icon(s) already exist in the database + %n නිරූපක(ය) දැනටමත් දත්ත ගබඩාවේ පවතී%n නිරූපක(ය) දැනටමත් දත්ත ගබඩාවේ පවතී + + + The following icon(s) failed: + පහත නිරූපකය(ය) අසාර්ථක විය:පහත නිරූපකය(ය) අසාර්ථක විය: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + + + + EditWidgetProperties + + Created: + සාදන ලදී: + + + Datetime created + දින වේලාව නිර්මාණය කරන ලදී + + + Modified: + වෙනස් කරන ලද: + + + Datetime modified + දිනය වෙනස් කරන ලදී + + + Accessed: + ප්රවේශ විය: + + + Datetime accessed + දින වේලාව ප්‍රවේශ විය + + + Uuid: + Uuid: + + + Unique ID + අද්විතීය හැඳුනුම්පත + + + Plugin Data + ප්ලගින දත්ත + + + Plugin data + ප්ලගින දත්ත + + + Remove selected plugin data + තෝරාගත් ප්ලගින දත්ත ඉවත් කරන්න + + + Remove + ඉවතලන්න + + + 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 - ක්ලෝනය + + + Passkey + + + + Invalid conversion type: %1 + වලංගු නොවන පරිවර්තන වර්ගය: %1 + + + Invalid conversion syntax: %1 + අවලංගු පරිවර්තන වාක්‍ය ඛණ්ඩය: %1 + + + Invalid regular expression syntax %1 +%2 + වලංගු නොවන නිත්‍ය ප්‍රකාශන වාක්‍ය ඛණ්ඩ %1 +%2 + + + + EntryAttachments + + Cannot open file "%1" + "%1"ගොනුව විවෘත කළ නොහැක + + + + EntryAttachmentsDialog + + Form + පෝරමය + + + File name + + + + File contents... + + + + + EntryAttachmentsModel + + Name + නම + + + Size + ප්රමාණය + + + + EntryAttachmentsWidget + + Form + පෝරමය + + + Attachments + ඇමුණුම් + + + Add new attachment + නව ඇමුණුමක් එක් කරන්න + + + Add + එකතු + + + Remove selected attachment + තෝරාගත් ඇමුණුම ඉවත් කරන්න + + + Remove + ඉවතලන්න + + + Open selected attachment + තෝරාගත් ඇමුණුම විවෘත කරන්න + + + Open + විවෘත + + + Save selected attachment to disk + තෝරාගත් ඇමුණුම තැටියට සුරකින්න + + + Save + සුරකින්න + + + Select files + ගොනු තෝරන්න + + + Confirm remove + ඉවත් කිරීම තහවුරු කරන්න + + + Are you sure you want to remove %n attachment(s)? + ඔබට ඇමුණුම්(ය) %n ක් ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?ඔබට ඇමුණුම්(ය) %n ක් ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද? + + + Save attachments + ඇමුණුම් සුරකින්න + + + Unable to create directory: +%1 + නාමාවලිය සෑදිය නොහැක: +%1 + + + Are you sure you want to overwrite the existing file "%1" with the attachment? + ඇමුණුම සමඟ පවතින ගොනු "%1" උඩින් ලිවීමට අවශ්‍ය බව ඔබට විශ්වාසද? + + + Confirm overwrite + උඩින් ලිවීම තහවුරු කරන්න + + + Unable to save attachments: +%1 + ඇමුණුම් සුරැකීමට නොහැක: +%1 + + + Unable to open attachment: +%1 + ඇමුණුම විවෘත කළ නොහැක: +%1 + + + Unable to open attachments: +%1 + ඇමුණුම් විවෘත කළ නොහැක: +%1 + + + Unable to open file(s): +%1 + ගොනු (ය) විවෘත කළ නොහැක: +%1ගොනු (ය) විවෘත කළ නොහැක: +%1 + + + Confirm Overwrite Attachment + උඩින් ලිවීමේ ඇමුණුම තහවුරු කරන්න + + + Confirm Attachment + ඇමුණුම තහවුරු කරන්න + + + %1 is a big file (%2 MB). +Your database may get very large and reduce performance. + +Are you sure to add this file? + %1 යනු විශාල ගොනුවකි (%2 MB). +ඔබේ දත්ත සමුදාය ඉතා විශාල වී කාර්ය සාධනය අඩු විය හැක. + +ඔබට මෙම ගොනුව එක් කිරීමට විශ්වාසද? + + + Attachment modified + ඇමුණුම වෙනස් කරන ලදී + + + The attachment '%1' was modified. +Do you want to save the changes to your database? + ඇමුණුම '%1' වෙනස් කරන ලදී. +ඔබගේ දත්ත ගබඩාවේ වෙනස්කම් සුරැකීමට ඔබට අවශ්‍යද? + + + Saving attachment failed + ඇමුණුම සුරැකීම අසාර්ථක විය + + + Saving updated attachment failed. +Error: %1 + යාවත්කාලීන ඇමුණුම සුරැකීම අසාර්ථක විය. +දෝෂය: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + ඇමුණුම "%1" දැනටමත් පවතී. +පවතින ඇමුණුම උඩින් ලිවීමට ඔබ කැමතිද? + + + New + + + + Preview + පෙරදසුන + + + Failed to preview an attachment: Attachment not found + + + + + EntryAttributesModel + + Name + නම + + + + EntryHistoryModel + + Current (%1) + වත්මන් (%1) + + + Last modified + අවසන් වරට වෙනස් කරන ලදී + + + Age + වයස + + + Difference + වෙනස + + + Size + ප්රමාණය + + + Title + ශීර්ෂය + + + Username + පරිශීලක නාමය + + + Password + මුරපදය + + + URL + ඒ.ස.නි. + + + Notes + සටහන් + + + Custom Attributes + අභිරුචි ගුණාංග + + + Icon + නිරූපකය + + + Color + වර්ණ + + + Expiration + කල් ඉකුත්වීම + + + TOTP + TOTP + + + Custom Data + අභිරුචි දත්ත + + + Attachments + ඇමුණුම් + + + Auto-Type + ස්වයං ලිවීම + + + Tags + අනන්‍යන + + + + EntryModel + + Ref: + Reference abbreviation + යොමු: + + + Never + කවදාවත් + + + Group + සමූහය + + + Title + සිරැසිය + + + Username + පරිශීලක නාමය + + + Password + මුරපදය + + + URL + ඒ.ස.නි. + + + Notes + සටහන් + + + Expires + ඉකුත් වීම + + + Created + සාදන ලදි + + + Modified + සංශෝධිතයි + + + Accessed + ප්‍රවේශ විය + + + Attachments + ඇමුණුම් + + + Size + ප්‍රමාණය + + + Group name + සමූහයේ නම + + + Entry title + ඇතුල්වීමේ මාතෘකාව + + + Password Strength + මුරපදයේ ශක්තිය + + + Entry notes + ඇතුල්වීමේ සටහන් + + + Entry expires at + ඇතුල්වීම කල් ඉකුත් වේ + + + Creation date + සෑදූ දිනය + + + Last modification date + අවසාන සංශෝධිත දිනය + + + Last access date + අවසාන ප්‍රවේශ දිනය + + + Attached files + අමුණා ඇති ගොනු + + + Entry size + ඇතුල්වීමේ ප්රමාණය + + + Has attachments + ඇමුණුම් ඇත + + + Has TOTP + TOTP ඇත + + + Background Color + + + + Group Path + + + + + EntryPreviewWidget + + Display current TOTP value + වත්මන් TOTP අගය පෙන්වන්න + + + Close + වසන්න + + + General + ජනරාල් + + + Password + මුරපදය + + + URL + ඒ.ස.නි. + + + Expiration + ඉකුත් වීම + + + Tags + අනන්‍යන + + + Tags list + අනන්‍යන ලේඛනය + + + Username + පරිශීලක නාමය + + + Notes + සටහන් + + + Advanced + වැඩිදුර + + + Attachments + ඇමුණුම් + + + Attributes + ගුණාංග + + + Autotype + ස්වයං ලිවීම + + + Default Sequence + පෙරනිමි අනුපිළිවෙල + + + Window + කවුළුව + + + Sequence + අනුපිළිවෙල + + + Searching + සොයමින් + + + Share + බෙදාගන්න + + + Search + සොයන්න + + + Clear + පැහැදිලිව + + + Never + කවදාවත් + + + Double click to copy value + අගය පිටපත් කිරීමට දෙවරක් ක්ලික් කරන්න + + + Enabled + සබල කර ඇත + + + Disabled + ආබාධිතයි + + + Double click to copy to clipboard + + + + + EntryURLModel + + Invalid URL + වලංගු නැති URL + + + Duplicate URL + + + + + EntryView + + Fit to window + කවුළුවට ගැලපේ + + + Fit to contents + අන්තර්ගතයට ගැලපේ + + + Reset to defaults + පෙරනිමියට යළි පිහිටුවන්න + + + + %1 entry(s)... + + + + + ExportDialog + + Export options + අපනයන විකල්ප + + + Sort entries by... + ඇතුළත් කිරීම් අනුපිළිවෙළට සකසන්න... + + + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + + ඔබ ඔබේ දත්ත සමුදාය සංකේතනය නොකළ ගොනුවකට අපනයනය කිරීමට සූදානම් වේ. +මෙය ඔබගේ මුරපද සහ සංවේදී තොරතුරු අවදානමට ලක් කරයි! + + + + database order + දත්ත සමුදා අනුපිළිවෙල + + + name (ascending) + නම (ආරෝහණ) + + + name (descending) + නම (බැසීම) + + + unknown + නොදන්නා + + + Export database to HTML file + දත්ත සමුදාය HTML ගොනුවට අපනයනය කරන්න + + + HTML file + HTML ගොනුව + + + + FdoSecrets::DBusMgr + + Failed to deliver message + පණිවිඩය ලබා දීමට අසමත් විය + + + Failed to send reply on DBus + DBus හි පිළිතුරු යැවීමට අසමත් විය + + + Unknown + Unknown PID + නොදන්නා + + + Unknown + Unknown executable path + නොදන්නා + + + <i>PID: %1, Executable: %2</i> + <i>PID: 1234, Executable: /path/to/exe</i> + <i>PID: %1, ක්‍රියාත්මක කළ හැකි: %2</i> + + + Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. + තවත් රහස් සේවාවක් ක්‍රියාත්මක වේ (%1).<br/>කරුණාකර රහස් සේවා ඒකාබද්ධ කිරීම නැවත සක්‍රිය කිරීමට පෙර එය නවත්වන්න/ඉවත් කරන්න. + + + Failed to register DBus service at %1.<br/> + %1ට DBus සේවාව ලියාපදිංචි කිරීමට අසමත් විය.<br/> + + + Failed to register service on DBus at path '%1' + '%1'මාර්ගයේ DBus හි සේවාව ලියාපදිංචි කිරීමට අපොහොසත් විය + + + Failed to register database on DBus under the name '%1' + '%1'නමින් DBus හි දත්ත සමුදාය ලියාපදිංචි කිරීමට අපොහොසත් විය + + + Failed to register session on DBus at path '%1' + '%1'මාර්ගයේදී DBus හි සැසිය ලියාපදිංචි කිරීමට අපොහොසත් විය + + + Failed to register item on DBus at path '%1' + '%1'මාර්ගයේ DBus හි අයිතමය ලියාපදිංචි කිරීමට අසමත් විය + + + Failed to register prompt object on DBus at path '%1' + '%1'මාර්ගයේ DBus හි ඉක්මන් වස්තුව ලියාපදිංචි කිරීමට අසමත් විය + + + + FdoSecrets::Item + + Entry "%1" from database "%2" was used by %3 + දත්ත සමුදාය "%2" වෙතින් "%1" ඇතුළත් කිරීම %3විසින් භාවිතා කරන ලදී + + + + FdoSecrets::Service + + %n Entry(s) was used by %1 + %1 is the name of an application + %n ඇතුළත් කිරීම් (ය) %1විසින් භාවිතා කරන ලදී%n ඇතුළත් කිරීම් (ය) %1විසින් භාවිතා කරන ලදී + + + + FdoSecrets::SettingsClientModel + + Unknown + නොදන්නා + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + නොපවතින / ප්‍රවේශ විය නොහැකි ක්‍රියාත්මක කළ හැකි මාර්ගය. කරුණාකර සේවාදායකයා නීත්‍යානුකූල දැයි දෙවරක් පරීක්ෂා කරන්න. + + + + FdoSecrets::SettingsDatabaseModel + + Unlock to show + පෙන්වීමට අගුලු හරින්න + + + None + කිසිවක් නැත + + + + FdoSecrets::UnlockPrompt + + %1 (PID: %2) + %1 (PID: %2) + + + + FdoSecretsPlugin + + <b>Fdo Secret Service:</b> %1 + <b>Fdo රහස් සේවාව:</b> %1 + + + + Group + + [empty] + group has no children + [empty] + + + %1 - Clone + %1 - ක්ලෝනය + + + + HibpDownloader + + Online password validation failed + සබැඳි මුරපදය වලංගු කිරීම අසාර්ථක විය + + + + IconDownloaderDialog + + Download Favicons + Favicons බාගන්න + + + Cancel + අවලංගු + + + Having trouble downloading icons? +You can enable the DuckDuckGo website icon service in the security section of the application settings. + අයිකන බාගැනීමේ ගැටලුවක් තිබේද? +ඔබට යෙදුම් සැකසුම් වල ආරක්ෂක අංශයේ DuckDuckGo වෙබ් අඩවි අයිකන සේවාව සබල කළ හැක. + + + Close + වසන්න + + + URL + ඒ.ස.නි. + + + Status + තත්‍වය + + + Please wait, processing entry list… + කරුණාකර රැඳී සිටින්න, ප්‍රවේශ ලැයිස්තුව…සකසමින් + + + Downloading… + බාගැනෙමින්… + + + Ok + හරි + + + Already Exists + දැනටමත් පවතී + + + Download Failed + බාගැනීමට අසමත් විය + + + Downloading favicons (%1/%2)… + …බාගත කිරීම (%2)%1 + + + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + විශාරද පිටුව + + + Entry count: %1 + + + + Group + සමූහය + + + Title + සිරැසිය + + + Username + පරිශීලක නාමය + + + Password + මුරපදය + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + පෝරමය + + + Import File Selection + + + + Password: + මුරපදය: + + + Key File: + යතුරු ගොනුව: + + + Browse… + පිරික්සන්න... + + + Import Into: + + + + New Database + නව දත්තසමුදාය + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + OPVault අරින්න + + + Select import file + + + + All files + සියළුම ගොනු + + + Key files + යතුරු ගොනු + + + Select key file + යතුරු ගොනුව තෝරන්න + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + + + KMessageWidget + + &Close + &වසන්න + + + Close message + පණිවිඩය වසන්න + + + + Kdbx3Reader + + Missing database headers + දත්ත සමුදා ශීර්ෂ අස්ථානගත වී ඇත + + + Unable to calculate database key + දත්ත සමුදා යතුර ගණනය කළ නොහැක + + + Unable to issue challenge-response: %1 + අභියෝග-ප්‍රතිචාරය නිකුත් කළ නොහැක: %1 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + වලංගු නොවන අක්තපත්‍ර සපයා ඇත, කරුණාකර නැවත උත්සාහ කරන්න. +මෙය නැවත සිදු වුවහොත්, ඔබගේ දත්ත සමුදා ගොනුව දූෂිත විය හැක. + + + Header doesn't match hash + 'හැෂ් සමඟ නොගැලපේ + + + Invalid header id size + වලංගු නොවන ශීර්ෂ ID ප්‍රමාණය + + + Invalid header field length: field %1 + වලංගු නොවන ශීර්ෂ ක්ෂේත්‍ර දිග: ක්ෂේත්‍ර %1 + + + Invalid header data length: field %1, %2 expected, %3 found + වලංගු නොවන ශීර්ෂ දත්ත දිග: ක්ෂේත්‍ර %1, %2 අපේක්ෂිත, %3 හමු විය + + + + Kdbx3Writer + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + වලංගු නොවන සමමිතික කේතාංක IV ප්‍රමාණය. + + + Unable to issue challenge-response: %1 + අභියෝග-ප්‍රතිචාරය නිකුත් කළ නොහැක: %1 + + + Unable to calculate database key + දත්ත සමුදා යතුර ගණනය කළ නොහැක + + + + Kdbx4Reader + + missing database headers + දත්ත සමුදා ශීර්ෂ අතුරුදහන් + + + Unable to calculate database key: %1 + දත්ත සමුදා යතුර ගණනය කළ නොහැක: %1 + + + Invalid header checksum size + වලංගු නොවන ශීර්ෂ චෙක්සම් ප්‍රමාණය + + + Header SHA256 mismatch + ශීර්ෂය SHA256 නොගැලපීම + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + වලංගු නොවන අක්තපත්‍ර සපයා ඇත, කරුණාකර නැවත උත්සාහ කරන්න. +මෙය නැවත සිදු වුවහොත්, ඔබගේ දත්ත සමුදා ගොනුව දූෂිත විය හැක. + + + (HMAC mismatch) + (HMAC නොගැලපීම) + + + Unknown cipher + නොදන්නා කේතාංකය + + + Invalid header id size + වලංගු නොවන ශීර්ෂ ID ප්‍රමාණය + + + Invalid header field length: field %1 + වලංගු නොවන ශීර්ෂ ක්ෂේත්‍ර දිග: ක්ෂේත්‍ර %1 + + + Invalid header data length: field %1, %2 expected, %3 found + වලංගු නොවන ශීර්ෂ දත්ත දිග: ක්ෂේත්‍ර %1, %2 අපේක්ෂිත, %3 හමු විය + + + 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. + KDBX4 ගොනුවේ පැරණි ශීර්ෂ ක්ෂේත්‍ර හමු විය. + + + Invalid inner header id size + වලංගු නොවන අභ්‍යන්තර ශීර්ෂ ID ප්‍රමාණය + + + Invalid inner header field length: field %1 + අවලංගු අභ්‍යන්තර ශීර්ෂ ක්ෂේත්‍ර දිග: ක්ෂේත්‍ර %1 + + + Invalid inner header data length: field %1, %2 expected, %3 found + වලංගු නොවන අභ්‍යන්තර ශීර්ෂ දත්ත දිග: ක්ෂේත්‍ර %1, %2 අපේක්ෂිත, %3 හමු විය + + + Invalid inner header binary size + අවලංගු අභ්‍යන්තර ශීර්ෂ ද්විමය ප්‍රමාණය + + + Unsupported KeePass variant map version. + Translation: variant map = data structure for storing meta data + සහාය නොදක්වන KeePass ප්‍රභේද සිතියම් අනුවාදය. + + + Invalid variant map entry name length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ඇතුළත් කිරීමේ නම දිග + + + Invalid variant map entry name data + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ඇතුළත් නාම දත්ත + + + Invalid variant map entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ඇතුළත් කිරීමේ අගය දිග + + + Invalid variant map entry value data + Translation comment: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ඇතුළත් කිරීමේ අගය දත්ත + + + Invalid variant map Bool entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියමක් Bool ඇතුල් වීමේ අගය දිග + + + Invalid variant map Int32 entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම Int32 ඇතුළත් කිරීමේ අගය දිග + + + Invalid variant map UInt32 entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම UInt32 ප්‍රවේශ අගය දිග + + + Invalid variant map Int64 entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම Int64 ඇතුළත් කිරීමේ අගය දිග + + + Invalid variant map UInt64 entry value length + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම UInt64 ප්‍රවේශ අගය දිග + + + Invalid variant map entry type + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ඇතුළත් කිරීමේ වර්ගය + + + Invalid variant map field type size + Translation: variant map = data structure for storing meta data + වලංගු නොවන ප්‍රභේද සිතියම් ක්ෂේත්‍ර වර්ග ප්‍රමාණය + + + + Kdbx4Writer + + Invalid symmetric cipher algorithm. + වලංගු නොවන සමමිතික කේතාංක ඇල්ගොරිතම. + + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + වලංගු නොවන සමමිතික කේතාංක IV ප්‍රමාණය. + + + Unable to calculate database key: %1 + දත්ත සමුදා යතුර ගණනය කළ නොහැක: %1 + + + Failed to serialize KDF parameters variant map + Translation comment: variant map = data structure for storing meta data + KDF පරාමිති ප්‍රභේද සිතියම අනුක්‍රමික කිරීමට අසමත් විය + + + + KdbxReader + + Invalid cipher uuid length: %1 (length=%2) + වලංගු නොවන කේතාංක uuid දිග: %1 (දිග=%2) + + + Unable to parse UUID: %1 + UUID විග්‍රහ කළ නොහැක: %1 + + + Unsupported 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 + අවලංගු අහඹු ප්‍රවාහ හැඳුනුම්පත ප්‍රමාණය + + + Invalid inner random stream cipher + අවලංගු අභ්‍යන්තර අහඹු ප්‍රවාහ කේතාංකය + + + Failed to read database file. + දත්ත සමුදා ගොනුව කියවීමට අසමත් විය. + + + The selected file is an old KeePass 1 database (.kdb). + +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). + +Database > 'Import KeePass 1 database…' මත ක්ලික් කිරීමෙන් ඔබට එය ආයාත කළ හැක. +මෙය එක්-මාර්ග සංක්‍රමණයකි. පැරණි KeePassX 0.4 අනුවාදය සමඟ ආනයනය කරන ලද දත්ත ගබඩාව විවෘත කිරීමට ඔබට't නොහැකි විය. + + + Not a KeePass database. + KeePass දත්ත ගබඩාවක් නොවේ. + + + Unsupported KeePass 2 database version. + සහාය නොදක්වන KeePass 2 දත්ත සමුදා අනුවාදය. + + + + KdbxXmlReader + + XML parsing failure: %1 + XML විග්‍රහ කිරීමේ අසාර්ථකත්වය: %1 + + + No root group + මූල කණ්ඩායමක් නොමැත + + + XML error: +%1 +Line %2, column %3 + XML දෝෂය: +%1 +පේළිය %2, තීරුව %3 + + + Missing icon uuid or data + අයිකනය uuid හෝ දත්ත අතුරුදහන් + + + Missing custom data key or value + අභිරුචි දත්ත යතුර හෝ අගය අස්ථානගත වී ඇත + + + Multiple group elements + බහු කණ්ඩායම් අංග + + + Null group uuid + Null group uuid + + + Invalid group icon number + වලංගු නොවන කණ්ඩායම් අයිකන අංකය + + + Invalid EnableAutoType value + වලංගු නොවන EnableAutoType අගය + + + Invalid EnableSearching value + වලංගු නොවන EnableSearching අගය + + + No group uuid found + uuid සමූහයක් හමු නොවිණි + + + Null DeleteObject uuid + ශුන්‍ය DeleteObject uuid + + + Missing DeletedObject uuid or time + DeletedObject uuid හෝ වේලාව අස්ථානගත වී ඇත + + + Null entry uuid + ශුන්‍ය ප්‍රවේශය uuid + + + Invalid entry icon number + වලංගු නොවන ඇතුළත් කිරීම් නිරූපක අංකයක් + + + History element in history entry + ඉතිහාසය ඇතුළත් කිරීමේදී ඉතිහාස අංගය + + + No entry uuid found + ඇතුල්වීම් uuid හමු නොවිණි + + + History element with different uuid + විවිධ uuid සහිත ඉතිහාස අංගය + + + Duplicate custom attribute found + අනුපිටපත් අභිරුචි උපලක්ෂණයක් හමු විය + + + Entry string key or value missing + ඇතුළත් කිරීමේ තන්තු යතුර හෝ අගය අස්ථානගත වී ඇත + + + Entry binary key or value missing + ඇතුල්වීමේ ද්විමය යතුර හෝ අගය අස්ථානගත වී ඇත + + + Auto-type association window or sequence missing + ස්වයංක්‍රීය-වර්ග ආශ්‍රිත කවුළුව හෝ අනුපිළිවෙල අතුරුදහන් + + + Invalid bool value + වලංගු නොවන bool අගය + + + Invalid date time value + වලංගු නොවන දින කාල අගය + + + Invalid color value + වලංගු නොවන වර්ණ අගය + + + Invalid color rgb part + වලංගු නොවන වර්ණ rgb කොටස + + + Invalid number value + වලංගු නොවන අංක අගය + + + Invalid uuid value + වලංගු නොවන uuid අගයක් + + + Unable to decompress binary + Translator meant is a binary data inside an entry + ද්විමය විසංයෝජනය කළ නොහැක + + + + KeeAgentSettings + + Invalid KeeAgent settings file structure. + වලංගු නොවන KeeAgent සැකසුම් ගොනු ව්‍යුහය. + + + Private key is an attachment but no attachments provided. + පුද්ගලික යතුර ඇමුණුමක් වන නමුත් ඇමුණුම් සපයා නැත. + + + Private key is empty + පුද්ගලික යතුර හිස් ය + + + File too large to be a private key + පුද්ගලික යතුරක් වීමට ගොනුව විශාල වැඩිය + + + Failed to open private key + පුද්ගලික යතුර විවෘත කිරීමට අසමත් විය + + + + KeePass1Reader + + Unable to read keyfile. + යතුරු ගොනුව කියවීමට නොහැක. + + + Not a KeePass database. + KeePass දත්ත ගබඩාවක් නොවේ. + + + Unsupported encryption algorithm. + සහාය නොදක්වන සංකේතාංකන ඇල්ගොරිතම. + + + Unsupported KeePass database version. + සහාය නොදක්වන KeePass දත්ත සමුදා අනුවාදය. + + + Unable to read encryption IV + IV = Initialization Vector for symmetric cipher + IV සංකේතනය කියවීමට නොහැක + + + Invalid 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 + කණ්ඩායම් ගසක් තැනීමට නොහැක + + + Root + මූල + + + Unable to calculate database key + දත්ත සමුදා යතුර ගණනය කළ නොහැක + + + unable to seek to content position + අන්තර්ගත ස්ථානය සෙවීමට නොහැක + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + වලංගු නොවන අක්තපත්‍ර සපයා ඇත, කරුණාකර නැවත උත්සාහ කරන්න. +මෙය නැවත සිදු වුවහොත්, ඔබගේ දත්ත සමුදා ගොනුව දූෂිත විය හැක. + + + Key transformation failed + ප්රධාන පරිවර්තනය අසාර්ථක විය + + + Invalid group field type number + වලංගු නොවන කණ්ඩායම් ක්ෂේත්‍ර වර්ග අංකය + + + Invalid group field size + වලංගු නොවන කණ්ඩායම් ක්ෂේත්‍ර ප්‍රමාණය + + + Read group field data doesn't match size + කණ්ඩායම් ක්ෂේත්‍ර දත්ත කියවන්න't ප්‍රමාණයට නොගැලපේ + + + Incorrect group id field size + වැරදි කණ්ඩායම් id ක්ෂේත්‍ර ප්‍රමාණය + + + 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 + ප්‍රවේශ ක්ෂේත්‍ර දත්ත කියවන්න't ප්‍රමාණයට නොගැලපේ + + + Invalid entry UUID field size + වලංගු නොවන ප්‍රවේශයක් UUID ක්ෂේත්‍ර ප්‍රමාණය + + + Invalid entry group id field size + වලංගු නොවන ප්‍රවේශ කණ්ඩායම් id ක්ෂේත්‍ර ප්‍රමාණය + + + 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 + වලංගු නොවන ප්‍රවේශ ක්ෂේත්‍ර වර්ගය + + + + KeeShare + + Invalid sharing reference + වලංගු නොවන බෙදාගැනීමේ යොමුව + + + Inactive share %1 + අක්‍රිය බෙදාගැනීම %1 + + + Imported from %1 + %1සිට ආනයනය කරන ලදී + + + Exported to %1 + %1වෙත අපනයනය කරන ලදී + + + Synchronized with %1 + %1සමඟ සමමුහුර්ත කර ඇත + + + Import is disabled in settings + සැකසීම් තුළ ආයාත කිරීම අබල කර ඇත + + + Export is disabled in settings + සැකසුම් තුළ අපනයනය අක්‍රිය කර ඇත + + + Inactive share + අක්රිය කොටස + + + Imported from + වෙතින් ආනයනය කරන ලදී + + + Exported to + වෙත අපනයනය කරන ලදී + + + Synchronized with + සමග සමමුහුර්ත කර ඇත + + + + KeyComponentWidget + + Key Component + ප්රධාන සංරචකය + + + Key Component Description + ප්රධාන සංරචක විස්තරය + + + Cancel + අවලංගු කරන්න + + + Key Component set, click to change or remove + ප්රධාන සංරචක කට්ටලය, වෙනස් කිරීමට හෝ ඉවත් කිරීමට ක්ලික් කරන්න + + + + KeyFileEditWidget + + Generate a new key file + නව යතුරු ගොනුවක් ජනනය කරන්න + + + Generate + උත්පාදනය කරන්න + + + Generate a new key file or choose an existing one to protect your database. + ඔබගේ දත්ත සමුදාය ආරක්ෂා කිරීම සඳහා නව යතුරු ගොනුවක් උත්පාදනය කරන්න හෝ පවතින එකක් තෝරන්න. + + + Note: Do NOT use a file that may change as that will prevent you from unlocking your database. + සටහන: ඔබගේ දත්ත සමුදාය අගුළු හැරීමෙන් ඔබව වළක්වන බැවින් වෙනස් විය හැකි ගොනුවක් භාවිතා නොකරන්න. + + + Browse for key file + යතුරු ගොනුව සඳහා බ්‍රවුස් කරන්න + + + Browse… + …බ්‍රවුස් කරන්න + + + Old key file format + පැරණි යතුරු ගොනු ආකෘතිය + + + You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. + ඔබ KeePassXC<br>අනාගතයේදී සහාය දීම නතර කළ හැකි පැරණි ආකෘතියකින් යතුරු ගොනුවක් තෝරාගෙන ඇත.<br><br>කරුණාකර ඒ වෙනුවට නව යතුරු ගොනුවක් ජනනය කිරීම සලකා බලන්න. + + + Error loading the key file '%1' +Message: %2 + යතුරු ගොනුව '%1' පූරණය කිරීමේ දෝෂයකි +පණිවිඩය: %2 + + + Key File + යතුරු ගොනුව + + + Add Key File + යතුරු ගොනුව එක් කරන්න + + + Change Key File + යතුරු ගොනුව වෙනස් කරන්න + + + Remove Key File + යතුරු ගොනුව ඉවත් කරන්න + + + Key File set, click to change or remove + යතුරු ගොනු කට්ටලය, වෙනස් කිරීමට හෝ ඉවත් කිරීමට ක්ලික් කරන්න + + + <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>ඔබ එය රහසිගතව තබා ගත යුතු අතර කිසි විටෙකත් එය නැති කර නොගත යුතුය, නැතහොත් ඔබව අගුලු දමනු ඇත.</p> + + + Key files + ප්රධාන ගොනු + + + All files + සියලුම ගොනු + + + Create Key File… + …යතුරු ගොනුව සාදන්න + + + Error creating key file + යතුරු ගොනුව සෑදීමේ දෝෂයකි + + + Unable to create key file: %1 + යතුරු ගොනුව සෑදිය නොහැක: %1 + + + Select a key file + යතුරු ගොනුවක් තෝරන්න + + + Invalid Key File + වලංගු නොවන යතුරු ගොනුව + + + You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. + ඔබට වත්මන් දත්ත සමුදාය එහිම යතුරු ගොනුවක් ලෙස භාවිතා කළ නොහැක. කරුණාකර වෙනත් ගොනුවක් තෝරන්න හෝ නව යතුරු ගොනුවක් ජනනය කරන්න. + + + Suspicious Key File + සැක සහිත යතුරු ගොනුව + + + The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. +Are you sure you want to continue with this file? + තෝරාගත් යතුරු ගොනුව මුරපද දත්ත සමුදා ගොනුවක් ලෙස පෙනේ. ප්‍රධාන ගොනුවක් කිසිදා වෙනස් නොවන ස්ථිතික ගොනුවක් විය යුතුය නැතහොත් ඔබට සදහටම ඔබගේ දත්ත සමුදායට ප්‍රවේශය අහිමි වනු ඇත. +ඔබට මෙම ගොනුව දිගටම කරගෙන යාමට අවශ්‍ය බව විශ්වාසද? + + + + MacUtils + + Invalid key code + වලංගු නොවන යතුරු කේතය + + + Global shortcut already registered to %1 + ගෝලීය කෙටිමඟ දැනටමත් %1වෙත ලියාපදිංචි කර ඇත + + + Could not register global shortcut + ගෝලීය කෙටිමං ලියාපදිංචි කිරීමට නොහැකි විය + + + + MainWindow + + &Database + &දත්ත සමුදාය + + + &Recent Databases + &මෑත දත්ත සමුදායන් + + + &Export + &අපනයන + + + &Help + &උදව් + + + &Entries + &ඇතුල්වීම් + + + Copy Att&ribute + උපහාරය පිටපත් කරන්න + + + TOTP + TOTP + + + Tags + අනන්‍යන + + + &Groups + &කණ්ඩායම් + + + &Tools + &මෙවලම් + + + View + දැක්ම + + + Theme + තේමාව + + + &Quit + &ඉවත් + + + &About + &ගැන + + + &Check for Updates + යාවත්කාලීන සඳහා &පරීක්ෂා කරන්න + + + &Open Database… + &දත්ත සමුදාය…විවෘත කරන්න + + + &Save Database + &දත්ත සමුදාය සුරකින්න + + + &Close Database + &දත්ත සමුදාය වසන්න + + + &New Database… + &නව දත්ත සමුදාය… + + + &Merge From Database… + දත්ත සමුදාය…වෙතින් & ඒකාබද්ධ කරන්න + + + &New Entry… + &නව ප්‍රවේශය… + + + &Edit Entry… + ප්‍රවේශය &සංස්කරණය කරන්න… + + + &Delete Entry… + &මකන්න ඇතුල්වීම… + + + &New Group… + &නව කණ්ඩායම… + + + &Edit Group… + …කණ්ඩායම සංස්කරණය කරන්න + + + &Delete Group… + …කණ්ඩායම මකන්න + + + Download All &Favicons… + සියලුම &Favicons…බාගන්න + + + Sort &A-Z + &A-Z වර්ග කරන්න + + + Sort &Z-A + &Z-A වර්ග කරන්න + + + Sa&ve Database As… + දත්ත සමුදාය…ලෙස සුරකින්න + + + Database &Security… + දත්ත සමුදාය සහ ආරක්ෂාව… + + + Database &Reports… + දත්ත සමුදාය සහ වාර්තා… + + + &Database Settings… + &දත්ත සමුදාය සැකසීම්… + + + &Clone Entry… + &ක්ලෝන ප්‍රවේශය… + + + Move u&p + u&p ගෙනයන්න + + + Move do&wn + පහළට ගෙන යන්න + + + Copy &Username + &පරිශීලක නාමය පිටපත් කරන්න + + + Copy &Password + & මුරපදය පිටපත් කරන්න + + + &Settings + &සැකසුම් + + + &Password Generator + &මුරපද උත්පාදක යන්ත්රය + + + Perform &Auto-Type + &ස්වයං-වර්ගය ඉටු කරන්න + + + Download &Favicon + &Favicon බාගන්න + + + Open &URL + &URL විවෘත කරන්න + + + &Lock Database + &දත්ත සමුදාය අගුළු දමන්න + + + Lock &All Databases + සියලුම දත්ත සමුදායන් අගුළු දමන්න + + + &Title + &ශීර්ෂය + + + Copy &URL + + + + &Notes + &සටහන් + + + &CSV File… + &CSV ගොනුව… + + + &HTML File… + &HTML ගොනුව… + + + KeePass 1 Database… + KeePass 1 දත්ත සමුදාය… + + + 1Password Vault… + 1මුරපද සුරක්ෂිතාගාරය… + + + CSV File… + CSV ගොනුව… + + + Show TOTP + TOTP පෙන්වන්න + + + Show QR Code + QR කේතය පෙන්වන්න + + + Set up TOTP… + TOTP…සකසන්න + + + Copy &TOTP + &TOTP පිටපත් කරන්න + + + Copy Password and TOTP + + + + E&mpty recycle bin + හිස්&ප්‍රතිචක්‍රීකරණ බඳුන + + + &Donate + පරිත්‍යාග කරන්න + + + Report a &Bug + දෝෂය වාර්තා + + + &Getting Started + &ඇරඹේ + + + Open Getting Started Guide + ආරම්භක මාර්ගෝපදේශය විවෘත කරන්න + + + &Online Help + &ඔන්ලයින් උදව් + + + &User Guide + &පරිශීලක මාර්ගෝපදේශය + + + Open User Guide + පරිශීලක මාර්ගෝපදේශය විවෘත කරන්න + + + &Keyboard Shortcuts + &යතුරු පුවරු කෙටිමං + + + Save Database Backup… + දත්ත සමුදා උපස්ථ…සුරකින්න + + + Add key to SSH Agent + SSH නියෝජිතයා වෙත යතුර එක් කරන්න + + + Remove key from SSH Agent + SSH නියෝජිතයාගෙන් යතුර ඉවත් කරන්න + + + Compact Mode + සංයුක්ත මාදිලිය + + + Automatic + ස්වයංක්රීය + + + Light + ආලෝකය + + + Dark + අඳුරු + + + Classic (Platform-native) + සම්භාව්‍ය (වේදිකාව-දේශීය) + + + Show Menubar + + + + Show Toolbar + මෙවලම් තීරුව පෙන්වන්න + + + Show Preview Panel + පෙරදසුන් පැනලය පෙන්වන්න + + + Always on Top + සෑම විටම ඉහළින් + + + Hide Usernames + පරිශීලක නාම සඟවන්න + + + Hide Passwords + මුරපද සඟවන්න + + + Clone Group... + ක්ලෝන සමූහය... + + + &XML File… + + + + Clear history + ඉතිහාසය පැහැදිලි කරන්න + + + Access error for config file %1 + වින්‍යාස ගොනුව %1සඳහා ප්‍රවේශ දෝෂයකි + + + Don't show again for this version + මෙම'සඳහා නැවත පෙන්වන්න එපා + + + 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 හි අස්ථායී ගොඩනැගීමක් භාවිතා කරයි. +දූෂණය වීමේ ඉහළ අවදානමක් ඇත, ඔබේ දත්ත සමුදායේ උපස්ථයක් පවත්වා ගන්න. +මෙම අනුවාදය නිෂ්පාදන භාවිතය සඳහා නොවේ. + + + NOTE: You are using a pre-release version of KeePassXC. +Expect some bugs and minor issues, this version is meant for testing purposes. + සටහන: ඔබ KeePassXC හි පූර්ව නිකුතුවක් භාවිතා කරයි. +සමහර දෝෂ සහ සුළු ගැටළු බලාපොරොත්තු වන්න, මෙම අනුවාදය පරීක්ෂණ අරමුණු සඳහා අදහස් කෙරේ. + + + No Tags + + + + Restore Entry(s) + ප්‍රවේශ(යන්) ප්‍රතිසාධනය කරන්නප්‍රවේශ(යන්) ප්‍රතිසාධනය කරන්න + + + Settings + සැකසුම් + + + 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. + යෙදුම් මෙනුවෙන් ඔබට සැම විටම යාවත්කාලීනයන් අතින් පරීක්ෂා කළ හැක. + + + Toggle window + කවුළුව ටොගල් කරන්න + + + Quit KeePassXC + KeePassXC වලින් ඉවත් වන්න + + + %1 Entry(s) + + + + Please present or touch your YubiKey to continue… + …ඉදිරියට යාමට කරුණාකර ඔබේ YubiKey ඉදිරිපත් කරන්න හෝ ස්පර්ශ කරන්න + + + Restart Application? + යෙදුම නැවත ආරම්භ කරන්නද? + + + You must restart the application to apply this setting. Would you like to restart now? + මෙම සැකසුම යෙදීමට ඔබ යෙදුම නැවත ආරම්භ කළ යුතුය. ඔබ දැන් නැවත ආරම්භ කිරීමට කැමතිද? + + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + ඇතුළත් කිරීම සංස්කරණය කරන්න + + + Delete Entry + + + + Create Group + + + + Edit Group + කණ්ඩායම සංස්කරණය කරන්න + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + පරිශීලක නාමය පිටපත් කරන්න + + + Copy Password + මුරපදය පිටපත් කරන්න + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + KeePass1 දත්ත සමුදාය ආයාත කරන්න + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + + + + ManageDatabase + + Database settings + දත්ත සමුදා සැකසුම් + + + Edit database settings + දත්ත සමුදා සැකසුම් සංස්කරණය කරන්න + + + Unlock database + දත්ත සමුදාය අගුළු හරින්න + + + Unlock database to show more information + වැඩි විස්තර පෙන්වීමට දත්ත සමුදාය අගුළු හරින්න + + + Lock database + දත්ත සමුදාය අගුළු දමන්න + + + + ManageSession + + Disconnect + විසන්ධි කරන්න + + + Disconnect this application + මෙම යෙදුම විසන්ධි කරන්න + + + Reset + යළි පිහිටුවන්න + + + Reset any remembered decisions for this application + මෙම යෙදුම සඳහා මතක තබා ගත් තීරණ නැවත සකසන්න + + + + Merger + + Creating missing %1 [%2] + අතුරුදහන් %1 [%2]නිර්මාණය කිරීම + + + Relocating %1 [%2] + %1 [%2]නැවත ස්ථානගත කිරීම + + + Overwriting %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 + නැතිවූ නිරූපකය %1එකතු කිරීම + + + Removed custom data %1 [%2] + අභිරුචි දත්ත ඉවත් කරන ලදී %1 [%2] + + + Adding custom data %1 [%2] + අභිරුචි දත්ත එකතු කිරීම %1 [%2] + + + + NewDatabaseWizard + + Create a new KeePassXC database… + නව KeePassXC දත්ත සමුදායක් සාදන්න… + + + Root + Root group + මූල + + + + NewDatabaseWizardPage + + WizardPage + විශාරද පිටුව + + + Encryption Settings + සංකේතාංකන සැකසුම් + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + මෙහිදී ඔබට දත්ත සමුදා සංකේතාංකන සැකසුම් සකස් කළ හැක.'නොවන්න, ඔබට ඒවා පසුව දත්ත සමුදා සැකසුම් තුළ වෙනස් කළ හැක. + + + + NewDatabaseWizardPageDatabaseKey + + Database Credentials + දත්ත සමුදා අක්තපත්ර + + + A set of credentials known only to you that protects your database. + ඔබගේ දත්ත සමුදාය ආරක්ෂා කරන ඔබ පමණක් දන්නා අක්තපත්‍ර කට්ටලයක්. + + + + NewDatabaseWizardPageEncryption + + Encryption Settings + සංකේතාංකන සැකසුම් + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + මෙහිදී ඔබට දත්ත සමුදා සංකේතාංකන සැකසුම් සකස් කළ හැක.'නොවන්න, ඔබට ඒවා පසුව දත්ත සමුදා සැකසුම් තුළ වෙනස් කළ හැක. + + + + NewDatabaseWizardPageMetaData + + General Database Information + සාමාන්ය දත්ත සමුදා තොරතුරු + + + Please fill in the display name and an optional description for your new database: + කරුණාකර ඔබගේ නව දත්ත සමුදාය සඳහා සංදර්ශක නාමය සහ විකල්ප විස්තරයක් පුරවන්න: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + + + NixUtils + + Password Manager + මුරපද කළමනාකරු + + + Global shortcut already registered to %1 + ගෝලීය කෙටිමඟ දැනටමත් %1වෙත ලියාපදිංචි කර ඇත + + + Could not register global shortcut + ගෝලීය කෙටිමං ලියාපදිංචි කිරීමට නොහැකි විය + + + + OpData01 + + Invalid OpData01, does not contain header + වලංගු නොවන OpData01, ශීර්ෂකය අඩංගු නොවේ + + + Unable to read all IV bytes, wanted 16 but got %1 + සියලුම IV බයිට් කියවීමට නොහැකි විය, 16 අවශ්‍ය නමුත් %1ලැබුණි + + + Unable to init cipher for opdata01: %1 + opdata01: %1සඳහා කේතාංකය ආරම්භ කළ නොහැක + + + Unable to read all HMAC signature bytes + සියලුම HMAC අත්සන් බයිට් කියවීමට නොහැක + + + Malformed OpData01 due to a failed HMAC + අසාර්ථක HMAC නිසා OpData01 විකෘති වී ඇත + + + Unable to process clearText in place + තැන තැන clearText සැකසීමට නොහැක + + + Expected %1 bytes of clear-text, found %2 + පැහැදිලි-පෙළ බයිට් %1 ක් බලාපොරොත්තු විය, %2හමු විය + + + + OpVaultReader + + Directory .opvault must exist + නාමාවලිය .opvault පැවතිය යුතුය + + + Directory .opvault must be readable + නාමාවලිය .opvault කියවිය හැකි විය යුතුය + + + Directory .opvault/default must exist + නාමාවලිය .opvault/default පැවතිය යුතුය + + + Directory .opvault/default must be readable + නාමාවලිය .opvault/default කියවිය හැකි විය යුතුය + + + Unable to decode masterKey: %1 + masterKey විකේතනය කළ නොහැක: %1 + + + Unable to derive master key: %1 + ප්‍රධාන යතුර ව්‍යුත්පන්න කළ නොහැක: %1 + + + + OpenSSHKey + + Invalid key file, expecting an OpenSSH key + වලංගු නොවන යතුරු ගොනුවක්, OpenSSH යතුරක් අපේක්ෂා කරයි + + + PEM boundary mismatch + PEM මායිම් නොගැලපීම + + + Base64 decoding failed + Base64 විකේතනය අසාර්ථක විය + + + Key file way too small. + යතුරු ගොනු මාර්ගය කුඩා වැඩිය. + + + Key file magic header id invalid + යතුරු ගොනු මැජික් ශීර්ෂ id වලංගු නොවේ + + + Found zero keys + බිංදු යතුරු හමු විය + + + Failed to read public key. + පොදු යතුර කියවීමට අසමත් විය. + + + Corrupted key file, reading private key failed + දූෂිත යතුරු ගොනුව, පුද්ගලික යතුර කියවීම අසාර්ථක විය + + + Unsupported key type: %1 + සහාය නොදක්වන යතුරු වර්ගය: %1 + + + No private key payload to decrypt + විකේතනය කිරීමට පුද්ගලික යතුරු ගෙවීමක් නොමැත + + + Unknown cipher: %1 + නොදන්නා කේතාංකය: %1 + + + AES-256/GCM is currently not supported + + + + Passphrase is required to decrypt this key + මෙම යතුර විකේතනය කිරීමට මුරපදය අවශ්‍ය වේ + + + Key derivation failed: %1 + ප්‍රධාන ව්‍යුත්පන්නය අසාර්ථක විය: %1 + + + Cipher IV is too short for MD5 kdf + කේතාංක IV MD5 kdf සඳහා කෙටි වැඩිය + + + Unknown KDF: %1 + නොදන්නා KDF: %1 + + + Failed to initialize cipher: %1 + කේතාංකය ආරම්භ කිරීමට අසමත් විය: %1 + + + Decryption failed: %1 + විකේතනය අසාර්ථක විය: %1 + + + Decryption failed, wrong passphrase? + විකේතනය අසාර්ථකයි, වැරදි මුර-වැකිකඩද? + + + Unexpected EOF while reading key + යතුර කියවන අතරතුර අනපේක්ෂිත EOF + + + Unsupported key part + සහාය නොදක්වන ප්රධාන කොටස + + + Unexpected EOF while reading public key + පොදු යතුර කියවන අතරතුර අනපේක්ෂිත EOF + + + Unknown key type: %1 + නොදන්නා යතුරු වර්ගය: %1 + + + 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 + + + (encrypted) + (සංකේතිතයි) + + + + OpenSSHKeyGenDialog + + SSH Key Generator + + + + Type + ලියන්න + + + Bits + + + + Comment + අදහස් දක්වන්න + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + + + + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + අවලංගු කරන්න + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + සමූහය + + + Database + + + + Import Passkey + + + + Import + ආනයන + + + Cancel + අවලංගු කරන්න + + + Entry + නිවේශිතය + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + සියළුම ගොනු + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + + + + + PasswordEditWidget + + Enter password: + මුරපදය ඇතුළත් කරන්න: + + + Password field + මුරපද ක්ෂේත්‍රය + + + Confirm password: + මුරපදය තහවුරු කරන්න: + + + Repeat password field + මුරපද ක්ෂේත්‍රය නැවත කරන්න + + + Password + මුරපදය + + + Add Password + මුරපදය එක් කරන්න + + + Change Password + මුරපදය වෙනස් කරන්න + + + Remove Password + මුරපදය ඉවත් කරන්න + + + Password set, click to change or remove + මුරපදය සකසා, වෙනස් කිරීමට හෝ ඉවත් කිරීමට ක්ලික් කරන්න + + + <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> + <p>මුරපදයක් යනු ඔබගේ දත්ත සමුදාය සුරක්ෂිත කිරීමේ මූලික ක්‍රමයයි.</p><p>හොඳ මුරපද දිගු සහ අද්විතීය වේ. KeePassXC ඔබ වෙනුවෙන් එකක් ජනනය කළ හැක.</p> + + + Passwords do not match. + මුරපද නොගැලපේ. + + + + PasswordGeneratorWidget + + Generate Password + මුරපදය ජනනය කරන්න + + + strength + Password strength + ශක්තිය + + + entropy + එන්ට්රොපිය + + + Generated password + ජනනය කළ මුරපදය + + + %p% + %p% + + + Regenerate password + මුරපදය නැවත උත්පාදනය කරන්න + + + Copy password + මුරපදය පිටපත් කරන්න + + + Password + මුරපදය + + + &Length: + &දිග: + + + Password length + මුරපද දිග + + + Switch to advanced mode + උසස් මාදිලියට මාරු වන්න + + + Advanced + උසස් + + + Character Types + චරිත වර්ග + + + Special characters + විශේෂ චරිත + + + Quotes + උපුටා දැක්වීම් + + + Punctuation + විරාම ලකුණු + + + Dashes and Slashes + ඩෑෂ් සහ ස්ලැෂ් + + + Upper-case letters + ලොකු අකුරු + + + Numbers + අංක + + + Lower-case letters + සිම්පල් අකුරු + + + Math Symbols + ගණිත සංකේත + + + Extended ASCII + විස්තීරණ ASCII + + + Braces + වරහන් + + + Do not include: + ඇතුළත් නොකරන්න: + + + Additional characters to use for the generated password + උත්පාදනය කරන ලද මුරපදය සඳහා භාවිතා කිරීමට අමතර අක්ෂර + + + Additional characters + අමතර චරිත + + + Add non-hex letters to "do not include" list + "ට හෙක්ස් නොවන අකුරු එකතු කරන්න" ලැයිස්තුවක් ඇතුළත් නොකරන්න + + + Hex Passwords + Hex මුරපද + + + Hex + හෙක්ස් + + + Character set to exclude from generated password + උත්පාදනය කරන ලද මුරපදයෙන් බැහැර කිරීමට අක්ෂර කට්ටලය + + + Excluded characters + බැහැර කළ චරිත + + + Also choose from: + මේවායින් ද තෝරන්න: + + + Exclude look-alike characters + පෙනුමට සමාන අක්ෂර බැහැර කරන්න + + + Pick characters from every group + සෑම කණ්ඩායමකින්ම චරිත තෝරන්න + + + Passphrase + මුරපදය + + + Word Separator: + වචන බෙදුම්කරු: + + + Wordlist: + වචන ලැයිස්තුව: + + + Word Count: + වචන ගණන: + + + Word Case: + වචන නඩුව: + + + Delete selected wordlist + තෝරාගත් වචන ලැයිස්තුව මකන්න + + + Add custom wordlist + අභිරුචි වචන ලැයිස්තුව එක් කරන්න + + + Close + වසන්න + + + Esc + පිට වීම + + + Apply Password + මුරපදය යොදන්න + + + Regenerate password (%1) + මුරපදය නැවත උත්පාදනය කරන්න (%1) + + + lower case + කුඩා නඩුව + + + UPPER CASE + ඉහළ නඩුව + + + Title Case + මාතෘකා නඩුව + + + (SYSTEM) + (පද්ධතියක්) + + + Entropy: %1 bit + එන්ට්රොපි: %1 බිට් + + + Password Quality: %1 + මුරපදයේ ගුණාත්මකභාවය: %1 + + + Poor + Password quality + දුප්පත් + + + Weak + Password quality + දුර්වල + + + Good + Password quality + යහපත + + + Excellent + Password quality + විශිෂ්ටයි + + + Confirm Delete Wordlist + Wordlist මකන්න තහවුරු කරන්න + + + Do you really want to delete the wordlist "%1"? + ඔබට ඇත්තටම වචන ලැයිස්තුව "%1"මකා දැමීමට අවශ්‍යද? + + + Failed to delete wordlist + වචන ලැයිස්තුව මැකීමට අසමත් විය + + + Wordlists + වචන ලැයිස්තු + + + All files + සියලුම ගොනු + + + Select Custom Wordlist + අභිරුචි වචන ලැයිස්තුව තෝරන්න + + + Overwrite Wordlist? + Wordlist උඩින් ලියන්නද? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Wordlist "%1" දැනටමත් අභිරුචි වචන ලැයිස්තුවක් ලෙස පවතී. +ඔබට එය උඩින් ලිවීමට අවශ්‍යද? + + + Failed to add wordlist + වචන ලැයිස්තුව එක් කිරීමට අසමත් විය + + + Logograms + ලාංඡන + + + Special Characters + විශේෂ චරිත + + + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + මුරපද නොගැලපේ + + + Passwords match so far + මුරපද මෙතෙක් ගැලපේ + + + Toggle Password (%1) + මුරපදය ටොගල් කරන්න (%1) + + + Generate Password (%1) + මුරපදය ජනනය කරන්න (%1) + + + Warning: Caps Lock enabled! + අවවාදයයි: Caps Lock සබලයි! + + + Quality: %1 + ගුණාත්මකභාවය: %1 + + + Poor + Password quality + දුප්පත් + + + Weak + Password quality + දුර්වල + + + Good + Password quality + යහපත + + + Excellent + Password quality + විශිෂ්ටයි + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + + + + PickcharsDialog + + KeePassXC - Pick Characters + KeePassXC - අක්ෂර තෝරන්න + + + Select characters to type, navigate with arrow keys, Ctrl + S submits. + ටයිප් කිරීමට අක්ෂර තෝරන්න, ඊතල යතුරු සමඟ සැරිසැරීමට, Ctrl + S ඉදිරිපත් කරයි. + + + Press &Tab between characters + අක්ෂර අතර ටැබ් ඔබන්න + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + + + QMessageBox + + Overwrite + උඩින් ලියන්න + + + Delete + මකන්න + + + Move + චලනය කරන්න + + + Empty + හිස් + + + Remove + ඉවත් කරන්න + + + Skip + මඟ හරින්න + + + Disable + අක්රිය කරන්න + + + Merge + ඒකාබද්ධ කරන්න + + + Continue + දිගටම කරගෙන යන්න + + + Continue with weak password + + + + + QObject + + Database not opened + දත්ත සමුදාය විවෘත කර නැත + + + Database hash not available + දත්ත සමුදාය හැෂ් නොමැත + + + Client public key not received + සේවාලාභී පොදු යතුර ලැබී නැත + + + Cannot decrypt message + පණිවිඩය විකේතනය කළ නොහැක + + + Action cancelled or denied + ක්‍රියාව අවලංගු කර හෝ ප්‍රතික්ෂේප කරන ලදී + + + Message encryption failed. + පණිවිඩ සංකේතනය අසාර්ථක විය. + + + KeePassXC association failed, try again + KeePassXC සංගමය අසාර්ථක විය, නැවත උත්සාහ කරන්න + + + Encryption key is not recognized + සංකේතාංකන යතුර හඳුනාගෙන නොමැත + + + Incorrect action + වැරදි ක්‍රියාවක් + + + Empty message received + හිස් පණිවිඩයක් ලැබී ඇත + + + No URL provided + URL සපයා නැත + + + No logins found + පිවිසුම් කිසිවක් හමු නොවිණි + + + No groups found + කණ්ඩායම් කිසිවක් හමු නොවීය + + + Cannot create new group + නව කණ්ඩායමක් සෑදිය නොහැක + + + No valid UUID provided + වලංගු UUID සපයා නැත + + + Unknown error + නොදන්නා දෝෂයකි + + + Browser Integration + බ්රවුසර ඒකාබද්ධ කිරීම + + + Browser Plugin Failure + බ්‍රව්සර් ප්ලගින අසමත් වීම + + + Could not save the native messaging script file for %1. + ස්වදේශීය පණිවිඩ යැවීමේ ස්ක්‍රිප්ට් ගොනුව %1සඳහා සුරැකීමට නොහැකි විය. + + + Username for the entry. + ඇතුල්වීම සඳහා පරිශීලක නාමය. + + + username + පරිශීලක නාමය + + + URL for the entry. + ඇතුළත් කිරීම සඳහා URL. + + + URL + URL + + + Notes for the entry. + ඇතුල්වීම සඳහා සටහන්. + + + Notes + සටහන් + + + Prompt for the entry's password. + 's මුරපදය ඇතුළත් කිරීම සඳහා විමසන්න. + + + Generate a password for the entry. + ඇතුල්වීම සඳහා මුරපදයක් සාදන්න. + + + Add a new entry to a database. + දත්ත සමුදායකට නව ප්‍රවේශයක් එක් කරන්න. + + + Path of the entry to add. + එකතු කිරීමට ඇතුල් වීමේ මාර්ගය. + + + Cannot generate a password and prompt at the same time. + මුරපදයක් සහ එකවර විමසීමක් ජනනය කළ නොහැක. + + + Could not create entry with path %1. + මාර්ගය %1සමඟ ප්‍රවේශය නිර්මාණය කළ නොහැක. + + + Enter password for new entry: + නව ප්‍රවේශය සඳහා මුරපදය ඇතුළත් කරන්න: + + + Writing the database failed %1. + දත්ත සමුදාය ලිවීම අසාර්ථක විය %1. + + + Successfully added entry %1. + ප්‍රවේශය %1සාර්ථකව එකතු කරන ලදී. + + + Adds a new group to a database. + දත්ත සමුදායකට නව කණ්ඩායමක් එක් කරයි. + + + Path of the group to add. + එකතු කිරීමට සමූහයේ මාර්ගය. + + + Group %1 already exists! + %1 කණ්ඩායම දැනටමත් පවතී! + + + Group %1 not found. + %1 කණ්ඩායම හමු නොවීය. + + + Successfully added group %1. + %1කණ්ඩායම සාර්ථකව එකතු කරන ලදී. + + + Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. + මුරපද ප්‍රසිද්ධියේ කාන්දු වී ඇත්දැයි පරීක්ෂා කරන්න. https://haveibeenpwned.com/Passwords වෙතින් ලබා ගත හැකි පරිදි, HIBP ආකෘතියෙන් කාන්දු වූ මුරපද වල SHA-1 හැෂ් ලැයිස්තුගත කරන ගොනුවක මාර්ගය FILENAME විය යුතුය. + + + FILENAME + ගොනුවේ නම + + + Path to okon-cli to search a formatted HIBP file + ආකෘතිගත HIBP ගොනුවක් සෙවීමට okon-cli වෙත මාර්ගය + + + okon-cli + okon-cli + + + Analyze passwords for weaknesses and problems. + දුර්වලතා සහ ගැටළු සඳහා මුරපද විශ්ලේෂණය කරන්න. + + + Cannot find HIBP file: %1 + HIBP ගොනුව සොයාගත නොහැක: %1 + + + Evaluating database entries using okon… + okon…භාවිතයෙන් දත්ත සමුදා ඇතුළත් කිරීම් ඇගයීම + + + Failed to open HIBP file %1: %2 + HIBP ගොනුව %1: %2විවෘත කිරීමට අසමත් විය + + + Evaluating database entries against HIBP file, this will take a while… + HIBP ගොනුවට එරෙහිව දත්ත සමුදා ප්‍රවේශයන් ඇගයීම, මෙයට…කාලයක් ගතවනු ඇත + + + Password for '%1' has been leaked %2 time(s)! + '%1' සඳහා මුරපදය %2 වතාවක් (ය) කාන්දු වී ඇත!'%1' සඳහා මුරපදය %2 වතාවක් (ය) කාන්දු වී ඇත! + + + Password for '%1' has been leaked! + '%1' සඳහා මුරපදය කාන්දු වී ඇත! + + + Export an attachment of an entry. + ප්‍රවේශයක ඇමුණුමක් අපනයනය කරන්න. + + + Path of the entry with the target attachment. + ඉලක්ක ඇමුණුම සමඟ ඇතුල් වීමේ මාර්ගය. + + + Name of the attachment to be exported. + අපනයනය කළ යුතු ඇමුණුමේ නම. + + + Path to which the attachment should be exported. + ඇමුණුම අපනයනය කළ යුතු මාර්ගය. + + + Could not find entry with path %1. + මාර්ගය %1සමඟ ප්රවේශය සොයාගත නොහැකි විය. + + + Could not find attachment with name %1. + නම %1සමඟ ඇමුණුමක් සොයාගත නොහැකි විය. + + + No export target given. Please use '--stdout' or specify an 'export-file'. + අපනයන ඉලක්කයක් ලබා දී නොමැත. කරුණාකර '--stdout' භාවිතා කරන්න හෝ 'අපනයන-ගොනු'සඳහන් කරන්න. + + + Could not open output file %1. + ප්‍රතිදාන ගොනුව %1විවෘත කිරීමට නොහැකි විය. + + + Successfully exported attachment %1 of entry %2 to %3. + ප්‍රවේශ %2 සිට %3දක්වා ඇමුණුම %1 සාර්ථකව අපනයනය කරන ලදී. + + + Overwrite existing attachments. + පවතින ඇමුණුම් උඩින් ලියන්න. + + + Imports an attachment to an entry. + ප්‍රවේශයකට ඇමුණුමක් ආයාත කරයි. + + + Path of the entry. + ඇතුල්වීමේ මාර්ගය. + + + Name of the attachment to be added. + එකතු කළ යුතු ඇමුණුමේ නම. + + + Path of the attachment to be imported. + ආනයනය කළ යුතු ඇමුණුමේ මාර්ගය. + + + Attachment %1 already exists for entry %2. + ඇමුණුම %1 ප්‍රවේශ %2සඳහා දැනටමත් පවතී. + + + Could not open attachment file %1. + ඇමුණුම් ගොනුව %1විවෘත කිරීමට නොහැකි විය. + + + Successfully imported attachment %1 as %2 to entry %3. + ඇමුණුම %1 %2 ලෙස ප්‍රවේශ %3වෙත සාර්ථකව ආයාත කරන ලදී. + + + Remove an attachment of an entry. + ප්‍රවේශයක ඇමුණුමක් ඉවත් කරන්න. + + + Name of the attachment to be removed. + ඉවත් කළ යුතු ඇමුණුමේ නම. + + + Successfully removed attachment %1 from entry %2. + ප්‍රවේශය %2වෙතින් ඇමුණුම %1 සාර්ථකව ඉවත් කරන ලදී. + + + Copy the given attribute to the clipboard. Defaults to "password" if not specified. + Don't translate "password", it refers to the attribute. + ලබා දී ඇති ගුණාංගය පසුරු පුවරුවට පිටපත් කරන්න. නිශ්චිතව දක්වා නොමැති නම් "මුරපදය" වෙත පෙරනිමි. + + + Copy the current TOTP to the clipboard (equivalent to "-a totp"). + වත්මන් TOTP පසුරු පුවරුවට පිටපත් කරන්න ( "-a totp"ට සමාන). + + + Must match only one entry, otherwise a list of possible matches is shown. + එක් ප්‍රවේශයක් පමණක් ගැළපිය යුතුය, එසේ නොමැති නම් හැකි ගැළපීම් ලැයිස්තුවක් පෙන්වනු ලැබේ. + + + Copy an entry's attribute to the clipboard. + ප්‍රවේශ's ගුණාංගයක් පසුරු පුවරුවට පිටපත් කරන්න. + + + Path of the entry to clip. + clip = copy to clipboard + ක්ලිප් වෙත පිවිසීමේ මාර්ගය. + + + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). + පසුරු පුවරුව හිස් කිරීමට පෙර කල් ඉකුත්වීම (පෙරනිමිය තත්පර %1 , අසීමිත සඳහා 0 ලෙස සකසා ඇත). + + + Invalid timeout value %1. + වලංගු නොවන කල් ඉකුත්වීමේ අගය %1. + + + Multiple entries matching: + බහු ඇතුළත් කිරීම් ගැලපීම: + + + Using matching entry: %1 + ගැළපෙන ප්‍රවේශය භාවිතා කරමින්: %1 + + + Entry %1 not found. + ඇතුල්වීම %1 හමු නොවීය. + + + ERROR: Please specify one of --attribute or --totp, not both. + දෝෂය: කරුණාකර --attribute හෝ --totp වලින් එකක් සඳහන් කරන්න, දෙකම නොවේ. + + + Entry with path %1 has no TOTP set up. + %1 මාර්ගය සමඟින් ඇතුල් වීමට TOTP පිහිටුවීමක් නොමැත. + + + ERROR: attribute %1 is ambiguous, it matches %2. + දෝෂය: ගුණාංගය %1 අපැහැදිලි ය, එය %2ට ගැලපේ. + + + Attribute "%1" not found. + "%1" ගුණාංගය හමු නොවීය. + + + Entry's "%1" attribute copied to the clipboard! + ඇතුල්වීම's "%1" ගුණාංගය පසුරු පුවරුවට පිටපත් කරන ලදී! + + + Clearing the clipboard in %1 second(s)... + පසුරු පුවරුව තත්පර %1 කින් හිස් කරමින්...පසුරු පුවරුව තත්පර %1 කින් හිස් කරමින්... + + + Clipboard cleared! + පසුරු පුවරුව හිස් කරන ලදී! + + + Close the currently opened database. + දැනට විවෘත කර ඇති දත්ත සමුදාය වසන්න. + + + Display this help. + මෙම උපකාරය පෙන්වන්න. + + + Silence password prompt and other secondary outputs. + මුරපද විමසුම සහ අනෙකුත් ද්විතියික ප්‍රතිදානයන් නිහඬ කරන්න. + + + Key file of the database. + දත්ත සමුදායේ ප්රධාන ගොනුව. + + + path + මාර්ගය + + + Deactivate password key for the database. + දත්ත සමුදාය සඳහා මුරපද යතුර අක්රිය කරන්න. + + + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). + දත්ත සමුදායට ප්‍රවේශ වීමට භාවිතා කරන Yubikey slot සහ විකල්ප අනුක්‍රමික (උදා, 1:7370001). + + + slot[:serial] + තව්[:serial] + + + Missing positional argument(s). + ස්ථානීය තර්ක(ය) මග හැරී ඇත. + + + Too many arguments provided. + බොහෝ තර්ක සපයා ඇත. + + + Path of the database. + දත්ත සමුදායේ මාර්ගය. + + + Target decryption time in MS for the database. + දත්ත සමුදාය සඳහා MS හි ඉලක්කගත විකේතන කාලය. + + + time + කාලය + + + Set the key file for the database. + දත්ත සමුදාය සඳහා යතුරු ගොනුව සකසන්න. + + + Set a password for the database. + දත්ත සමුදාය සඳහා මුරපදයක් සකසන්න. + + + Create a new database. + නව දත්ත සමුදායක් සාදන්න. + + + Invalid decryption time %1. + වලංගු නොවන විකේතන කාලය %1. + + + Target decryption time must be between %1 and %2. + ඉලක්ක විකේතන කාලය %1 සහ %2අතර විය යුතුය. + + + Failed to set database password. + දත්ත සමුදා මුරපදය සැකසීමට අසමත් විය. + + + Loading the key file failed + යතුරු ගොනුව පූරණය කිරීම අසාර්ථක විය + + + No key is set. Aborting database creation. + යතුරක් සකසා නැත. දත්ත සමුදාය නිර්මාණය කිරීම නවතා දැමීම. + + + Benchmarking key derivation function for %1ms delay. + %1ms ප්‍රමාදය සඳහා යතුර ව්‍යුත්පන්න ශ්‍රිතය මිණුම් සලකුණු කිරීම. + + + Setting %1 rounds for key derivation function. + යතුරු ව්‍යුත්පන්න ශ්‍රිතය සඳහා වට %1 ක් සැකසීම. + + + error while setting database key derivation settings. + දත්ත සමුදා යතුරු ව්‍යුත්පන්න සැකසුම් සැකසීමේදී දෝෂයකි. + + + File %1 already exists. + ගොනුව %1 දැනටමත් පවතී. + + + Failed to save the database: %1. + දත්ත සමුදාය සුරැකීමට අසමත් විය: %1. + + + Successfully created new database. + නව දත්ත සමුදාය සාර්ථකව නිර්මාණය කරන ලදී. + + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + + + + Database was not modified. + + + + Writing the database failed: %1 + දත්ත සමුදාය ලිවීම අසාර්ථක විය: %1 + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + දත්ත සමුදාය's තොරතුරු පෙන්වන්න. + + + UUID: + UUID: + + + Name: + නම: + + + Description: + විස්තර: + + + Cipher: + කේතාංකය: + + + KDF: + KDF: + + + Recycle bin is enabled. + ප්‍රතිචක්‍රීකරණ බඳුන සක්‍රීය කර ඇත. + + + Recycle bin is not enabled. + ප්‍රතිචක්‍රීකරණ බඳුන සක්‍රීය කර නැත. + + + Location + ස්ථානය + + + Database created + දත්ත සමුදාය නිර්මාණය කරන ලදී + + + Last saved + අවසන් වරට සුරකින ලදී + + + Unsaved changes + නොසුරකින ලද වෙනස්කම් + + + yes + ඔව් + + + no + නැත + + + Number of groups + කණ්ඩායම් ගණන + + + Number of entries + ඇතුළත් කිරීම් ගණන + + + Number of expired entries + කල් ඉකුත් වූ ඇතුළත් කිරීම් ගණන + + + Unique passwords + අද්විතීය මුරපද + + + Non-unique passwords + අද්විතීය නොවන මුරපද + + + Maximum password reuse + උපරිම මුරපදය නැවත භාවිතා කිරීම + + + Number of short passwords + කෙටි මුරපද ගණන + + + Number of weak passwords + දුර්වල මුරපද ගණන + + + Entries excluded from reports + ඇතුළත් කිරීම් වාර්තා වලින් බැහැර කර ඇත + + + Average password length + සාමාන්ය මුරපද දිග + + + %1 characters + අක්ෂර %1 යි + + + Word count for the diceware passphrase. + ඩයිස්වෙයාර් මුර-වැකිකඩ සඳහා වචන ගණන. + + + count + CLI parameter + ගණන් කරන්න + + + Wordlist for the diceware generator. +[Default: EFF English] + ඩයිස්වෙයාර් උත්පාදක සඳහා වචන ලැයිස්තුව. +[පෙරනිමිය: EFF ඉංග්‍රීසි] + + + Generate a new random diceware passphrase. + නව සසම්භාවී ඩයිස්වෙයාර් මුරපදයක් ජනනය කරන්න. + + + Invalid word count %1 + වලංගු නොවන වචන ගණන %1 + + + Title for the entry. + ඇතුල්වීම සඳහා මාතෘකාව. + + + title + ශීර්ෂය + + + Edit an entry. + ප්‍රවේශයක් සංස්කරණය කරන්න. + + + Path of the entry to edit. + සංස්කරණය කිරීමට ඇතුල්වීමේ මාර්ගය. + + + Not changing any field for entry %1. + ඇතුල්වීම %1සඳහා කිසිදු ක්ෂේත්‍රයක් වෙනස් නොකරයි. + + + Enter new password for entry: + ඇතුල්වීම සඳහා නව මුරපදය ඇතුළත් කරන්න: + + + Successfully edited entry %1. + ප්‍රවේශය %1සාර්ථකව සංස්කරණය කරන ලදී. + + + Perform advanced analysis on the password. + මුරපදය මත උසස් විශ්ලේෂණයක් සිදු කරන්න. + + + Password for which to estimate the entropy. + එන්ට්රොපිය තක්සේරු කිරීමට මුරපදය. + + + Estimate the entropy of a password. + මුරපදයක එන්ට්‍රොපිය ඇස්තමේන්තු කරන්න. + + + Length %1 + දිග %1 + + + Entropy %1 + එන්ට්රොපි %1 + + + Log10 %1 + ලොගය 10 %1 + + + Multi-word extra bits %1 + බහු වචන අමතර බිටු %1 + + + Type: Bruteforce + වර්ගය: Bruteforce + + + Type: Dictionary + වර්ගය: ශබ්දකෝෂය + + + Type: Dict+Leet + වර්ගය: Dict+Leet + + + Type: User Words + වර්ගය: පරිශීලක වචන + + + Type: User+Leet + වර්ගය: User+Leet + + + Type: Repeated + වර්ගය: නැවත නැවතත් + + + Type: Sequence + වර්ගය: අනුපිළිවෙල + + + Type: Spatial + වර්ගය: අවකාශීය + + + Type: Date + වර්ගය: දිනය + + + Type: Bruteforce(Rep) + වර්ගය: Bruteforce(නියෝජිත) + + + Type: Dictionary(Rep) + වර්ගය: ශබ්දකෝෂය(නියෝජිත) + + + Type: Dict+Leet(Rep) + වර්ගය: Dict+Leet(Rep) + + + Type: User Words(Rep) + වර්ගය: පරිශීලක වචන (Rep) + + + Type: User+Leet(Rep) + වර්ගය: User+Leet(Rep) + + + Type: Repeated(Rep) + වර්ගය: නැවත නැවතත් (Rep) + + + Type: Sequence(Rep) + වර්ගය: අනුපිළිවෙල (නියෝජිත) + + + Type: Spatial(Rep) + වර්ගය: අවකාශීය (නියෝජිත) + + + Type: Date(Rep) + වර්ගය: දිනය (නියෝජිත) + + + Type: Unknown (%1) + වර්ගය: නොදන්නා (%1) + + + Entropy %1 (%2) + එන්ට්රොපි %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** මුරපද දිග (%1) != කොටස්වල දිග එකතුව (%2) *** + + + Exit interactive mode. + අන්තර්ක්‍රියාකාරී මාදිලියෙන් පිටවන්න. + + + Exports the content of a database to standard output in the specified format. + දත්ත සමුදායක අන්තර්ගතය නියමිත ආකෘතියේ සම්මත ප්‍රතිදානයට අපනයනය කරයි. + + + Unable to export database to XML: %1 + XML වෙත දත්ත සමුදාය අපනයනය කළ නොහැක: %1 + + + Unsupported format %1 + සහාය නොදක්වන ආකෘතිය %1 + + + Length of the generated password + ජනනය කරන ලද මුරපදයේ දිග + + + length + දිග + + + Use lowercase characters + කුඩා අකුරු භාවිතා කරන්න + + + Use uppercase characters + ලොකු අකුරු භාවිතා කරන්න + + + Use numbers + අංක භාවිතා කරන්න + + + Use special characters + විශේෂ අක්ෂර භාවිතා කරන්න + + + Use extended ASCII + දිගු ASCII භාවිතා කරන්න + + + Exclude character set + අක්ෂර කට්ටලය බැහැර කරන්න + + + chars + අක්ෂර + + + Use custom character set + අභිරුචි අක්ෂර කට්ටලය භාවිතා කරන්න + + + Exclude similar looking characters + සමාන පෙනුමක් ඇති අක්ෂර බැහැර කරන්න + + + Include characters from every selected group + තෝරාගත් සෑම කණ්ඩායමකින්ම අක්ෂර ඇතුළත් කරන්න + + + Generate a new random password. + නව අහඹු මුරපදයක් ජනනය කරන්න. + + + Invalid password length %1 + වලංගු නොවන මුරපද දිග %1 + + + Invalid password generator after applying all options + සියලුම විකල්ප යෙදීමෙන් පසු වලංගු නොවන මුරපද උත්පාදක යන්ත්රය + + + Display command help. + විධාන උපකාරය පෙන්වන්න. + + + Available commands: + පවතින විධාන: + + + Import the contents of an XML database. + XML දත්ත සමුදායක අන්තර්ගතය ආයාත කරන්න. + + + Path of the XML database export. + XML දත්ත සමුදාය අපනයනය කිරීමේ මාර්ගය. + + + Path of the new database. + නව දත්ත සමුදායේ මාර්ගය. + + + Unable to import XML database: %1 + XML දත්ත සමුදාය ආයාත කළ නොහැක: %1 + + + Successfully imported database. + දත්ත සමුදාය සාර්ථකව ආනයනය කරන ලදී. + + + Unknown command %1 + නොදන්නා විධානය %1 + + + + +Available commands: + + + +පවතින විධාන: + + + + Name of the command to execute. + ක්‍රියාත්මක කළ යුතු විධානයේ නම. + + + Displays debugging information. + දෝශ නිරාකරණ තොරතුරු පෙන්වයි. + + + Invalid command %1. + වලංගු නොවන විධාන %1. + + + Recursively list the elements of the group. + සමූහයේ මූලද්‍රව්‍ය පුනරාවර්තන ලෙස ලැයිස්තුගත කරන්න. + + + Flattens the output to single lines. + ප්‍රතිදානය තනි පේළියකට සමතලා කරයි. + + + List database entries. + දත්ත සමුදා ඇතුළත් කිරීම් ලැයිස්තුගත කරන්න. + + + Path of the group to list. Default is / + ලැයිස්තුගත කිරීමට සමූහයේ මාර්ගය. පෙරනිමිය වන්නේ / + + + Cannot find group %1. + %1කණ්ඩායම සොයාගත නොහැක. + + + Use the same credentials for both database files. + දත්ත සමුදා ගොනු දෙකම සඳහා එකම අක්තපත්‍ර භාවිතා කරන්න. + + + Key file of the database to merge from. + ඒකාබද්ධ කිරීමට දත්ත සමුදායේ යතුරු ගොනුව. + + + Deactivate password key for the database to merge from. + දත්ත සමුදාය ඒකාබද්ධ කිරීම සඳහා මුරපද යතුර අක්‍රිය කරන්න. + + + Only print the changes detected by the merge operation. + ඒකාබද්ධ කිරීමේ මෙහෙයුමෙන් අනාවරණය කරගත් වෙනස්කම් පමණක් මුද්‍රණය කරන්න. + + + Yubikey slot for the second database. + දෙවන දත්ත සමුදාය සඳහා Yubikey තව්. + + + slot + තව් + + + Merge two databases. + දත්ත සමුදායන් දෙකක් ඒකාබද්ධ කරන්න. + + + Path of the database to merge from. + ඒකාබද්ධ කිරීමට දත්ත සමුදායේ මාර්ගය. + + + Error reading merge file: +%1 + ඒකාබද්ධ ගොනුව කියවීමේ දෝෂයකි: +%1 + + + Unable to save database to file : %1 + ගොනුව වෙත දත්ත සමුදාය සුරැකිය නොහැක: %1 + + + Successfully merged %1 into %2. + %1 %2සාර්ථකව ඒකාබද්ධ කරන ලදී. + + + Database was not modified by merge operation. + දත්ත සමුදාය ඒකාබද්ධ කිරීමේ මෙහෙයුම මගින් වෙනස් කර නැත. + + + Moves an entry to a new group. + නව කණ්ඩායමකට ප්‍රවේශයක් ගෙන යයි. + + + Path of the entry to move. + චලනය කිරීමට ඇතුල් වීමේ මාර්ගය. + + + Path of the destination group. + ගමනාන්ත සමූහයේ මාර්ගය. + + + Could not find group with path %1. + %1මාර්ගය සහිත කණ්ඩායමක් සොයා ගැනීමට නොහැකි විය. + + + Entry is already in group %1. + ඇතුල්වීම දැනටමත් %1කාණ්ඩයේ ඇත. + + + Successfully moved entry %1 to group %2. + ප්‍රවේශය %1 %2කණ්ඩායමට සාර්ථකව ගෙන යන ලදී. + + + Open a database. + දත්ත සමුදායක් විවෘත කරන්න. + + + Path of the entry to remove. + ඉවත් කිරීමට ඇතුල් වීමේ මාර්ගය. + + + Unable to save database to file: %1 + ගොනුව වෙත දත්ත සමුදාය සුරැකිය නොහැක: %1 + + + Successfully recycled entry %1. + ප්‍රවේශය %1සාර්ථකව ප්‍රතිචක්‍රීකරණය කරන ලදී. + + + Successfully deleted entry %1. + ප්‍රවේශය %1සාර්ථකව මකා දමන ලදී. + + + Path of the group to remove. + ඉවත් කිරීමට සමූහයේ මාර්ගය. + + + Cannot remove root group from database. + දත්ත සමුදායෙන් root කණ්ඩායම ඉවත් කළ නොහැක. + + + Successfully recycled group %1. + %1කාණ්ඩය සාර්ථකව ප්‍රතිචක්‍රීකරණය කරන ලදී. + + + Successfully deleted group %1. + %1කණ්ඩායම සාර්ථකව මකා දමන ලදී. + + + Find entries quickly. + ඉක්මනින් ඇතුළත් කිරීම් සොයන්න. + + + Search term. + සොයන්න කාලීන. + + + Show the entry's current TOTP. + 's වත්මන් TOTP ප්‍රවේශය පෙන්වන්න. + + + Show the protected attributes in clear text. + ආරක්ෂිත ගුණාංග පැහැදිලි පෙළකින් පෙන්වන්න. + + + Show all the attributes of the entry. + + + + Show the attachments of the entry. + ප්‍රවේශයේ ඇමුණුම් පෙන්වන්න. + + + 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 + ගුණාංගය + + + Show an entry's information. + 's තොරතුරු ඇතුළත් කිරීමක් පෙන්වන්න. + + + Name of the entry to show. + පෙන්වීමට ඇතුළත් කිරීමේ නම. + + + ERROR: unknown attribute %1. + දෝෂය: නොදන්නා ගුණාංගය %1. + + + No attachments present. + ඇමුණුම් නොමැත. + + + Attachments: + ඇමුණුම්: + + + Failed to open database file %1: not found + දත්ත සමුදා ගොනුව %1විවෘත කිරීමට අපොහොසත් විය : හමු නොවීය + + + Failed to open database file %1: not a plain file + දත්ත සමුදා ගොනුව විවෘත කිරීමට අසමත් විය %1: සරල ගොනුවක් නොවේ + + + Failed to open database file %1: not readable + දත්ත සමුදා ගොනුව %1විවෘත කිරීමට අසමත් විය : කියවිය නොහැක + + + Enter password to unlock %1: + %1අගුළු ඇරීමට මුරපදය ඇතුළත් කරන්න: + + + Failed to load key file %1: %2 + යතුරු ගොනුව %1: %2පූරණය කිරීමට අසමත් විය + + + WARNING: You are using an old key file format which KeePassXC may +stop supporting in the future. + +Please consider generating a new key file. + අවවාදයයි: ඔබ භාවිතා කරන්නේ පැරණි යතුරු ගොනු ආකෘතියක් වන අතර එය අනාගතයේදී KeePassXC +සහාය දීම නැවැත්විය හැකිය. + +කරුණාකර නව යතුරු ගොනුවක් උත්පාදනය කිරීම සලකා බලන්න. + + + Invalid YubiKey slot %1 + වලංගු නොවන YubiKey තව් %1 + + + Invalid YubiKey serial %1 + වලංගු නොවන YubiKey අනුක්‍රමික %1 + + + Please present or touch your YubiKey to continue. + ඉදිරියට යාමට ඔබගේ YubiKey ඉදිරිපත් කරන්න හෝ ස්පර්ශ කරන්න. + + + Enter password to encrypt database (optional): + දත්ත සමුදාය සංකේතනය කිරීමට මුරපදය ඇතුළත් කරන්න (විකල්ප): + + + Do you want to create a database with an empty password? [y/N]: + ඔබට හිස් මුරපදයකින් දත්ත සමුදායක් සෑදීමට අවශ්‍යද? [y/N]: + + + Repeat password: + මුරපදය නැවත කරන්න: + + + Error: Passwords do not match. + දෝෂය: මුරපද නොගැලපේ. + + + No program defined for clipboard manipulation + ක්ලිප්බෝඩ් හැසිරවීම සඳහා කිසිදු වැඩසටහනක් අර්ථ දක්වා නොමැත + + + All clipping programs failed. Tried %1 + + සියලුම ක්ලිපින් වැඩසටහන් අසාර්ථක විය. +උත්සාහ %1 + + + Creating KeyFile %1 failed: %2 + KeyFile %1 නිර්මාණය කිරීම අසාර්ථක විය: %2 + + + Loading KeyFile %1 failed: %2 + KeyFile %1 පූරණය කිරීම අසාර්ථක විය: %2 + + + HIBP file, line %1: parse error + HIBP ගොනුව, පේළිය %1: විග්‍රහ කිරීමේ දෝෂය + + + To use okon, you must provide a post-processed file (e.g. file.okon) + okon භාවිතා කිරීමට, ඔබ පසු-සකසන ලද ගොනුවක් සැපයිය යුතුය (උදා: file.okon) + + + Could not start okon process: %1 + okon ක්‍රියාවලිය ආරම්භ කළ නොහැක: %1 + + + Error: okon process did not finish + දෝෂය: okon ක්‍රියාවලිය අවසන් නොවීය + + + Failed to load okon processed database: %1 + okon සැකසූ දත්ත සමුදාය පූරණය කිරීමට අසමත් විය: %1 + + + Very weak password + ඉතා දුර්වල මුරපදය + + + Password entropy is %1 bits + මුරපද එන්ට්‍රොපිය බිටු %1 කි + + + Weak password + දුර්වල මුරපදය + + + Used in %1/%2 + %1හි භාවිතා%2 + + + Password is used %1 time(s) + මුරපදය %1 වරක් (ය) භාවිතා වේමුරපදය %1 වරක් (ය) භාවිතා වේ + + + Password has expired + මුරපදය කල් ඉකුත් වී ඇත + + + Password expiry was %1 + මුරපද කල් ඉකුත්වීම %1විය + + + Password expires on %1 + මුරපදය %1දිනෙන් කල් ඉකුත් වේ + + + Password is about to expire + මුරපදය කල් ඉකුත් වීමට ආසන්නයි + + + Password expires in %1 day(s) + මුරපදය දින %1 කින් කල් ඉකුත් වේමුරපදය දින %1 කින් කල් ඉකුත් වේ + + + Password will expire soon + මුරපදය ඉක්මනින් කල් ඉකුත් වේ + + + Version %1 + අනුවාදය %1 + + + Build Type: %1 + ගොඩනැගීමේ වර්ගය: %1 + + + Revision: %1 + සංශෝධනය: %1 + + + Distribution: %1 + බෙදා හැරීම: %1 + + + Debugging mode is disabled. + නිදොස් කිරීමේ මාදිලිය අබල කර ඇත. + + + Debugging mode is enabled. + නිදොස් කිරීමේ මාදිලිය සබල කර ඇත. + + + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 + මෙහෙයුම් පද්ධතිය: %1 +CPU ගෘහ නිර්මාණ ශිල්පය: %2 +කර්නලය: %3 %4 + + + Auto-Type + ස්වයංක්‍රීය වර්ගය + + + SSH Agent + SSH නියෝජිතයා + + + KeeShare + KeeShare + + + YubiKey + යූබිකේ + + + Quick Unlock + ඉක්මන් අගුලු හැරීම + + + Secret Service Integration + රහස් සේවා ඒකාබද්ධ කිරීම + + + None + කිසිවක් නැත + + + Enabled extensions: + සබල කළ දිගු: + + + over %1 year(s) + වසර %1 කට වැඩි (ය)වසර %1 කට වැඩි (ය) + + + about %1 month(s) + මාස %1 (ය) පමණමාස %1 (ය) පමණ + + + %1 week(s) + සති %1 (ය)සති %1 (ය) + + + %1 day(s) + දින %1 (ය)දින %1 (ය) + + + %1 hour(s) + පැය %1 (ය)පැය %1 (ය) + + + %1 minute(s) + මිනිත්තු %1 (ය)මිනිත්තු %1 (ය) + + + Botan library must be at least %1, found %2.%3.%4 + + + + Cryptographic libraries: + ගුප්ත ලේඛන පුස්තකාල: + + + AES (%1 rounds) + AES (වට%1) + + + Argon2%1 (%2 rounds, %3 KB) + Argon2%1 ( වට%2 , %3 KB) + + + SymmetricCipher::init: Invalid cipher mode. + SymmetricCipher::init: වලංගු නොවන කේතාංක මාදිලිය. + + + SymmetricCipher::init: Invalid IV size of %1 for %2. + සමමිතික කේතාංකය::init: වලංගු නොවන IV ප්‍රමාණය %1 සඳහා %2. + + + Cipher not initialized prior to use. + කේතාංකය භාවිතයට පෙර ආරම්භ කර නැත. + + + Cannot process 0 length data. + 0 දිග දත්ත සැකසීමට නොහැක. + + + unknown executable (DBus address %1) + නොදන්නා ක්‍රියාත්මක කළ හැකි (DBus ලිපිනය %1) + + + %1 (invalid executable path) + %1 (වලංගු නොවන ක්‍රියාත්මක කළ හැකි මාර්ගය) + + + NULL device + NULL උපාංගය + + + error reading from device + උපාංගයෙන් කියවීමේ දෝෂයකි + + + file empty + ගොනුව හිස් + + + AES 256-bit + AES 256-bit + + + Twofish 256-bit + Twofish 256-bit + + + ChaCha20 256-bit + ChaCha20 256-bit + + + Argon2d (KDBX 4 – recommended) + Argon2d (KDBX 4 - නිර්දේශිත) + + + Argon2id (KDBX 4) + Argon2id (KDBX 4) + + + AES-KDF (KDBX 4) + AES-KDF (KDBX 4) + + + AES-KDF (KDBX 3) + AES-KDF (KDBX 3) + + + Existing single-instance lock file is invalid. Launching new instance. + පවතින තනි-උදාහරණ අගුළු ගොනුව වලංගු නොවේ. නව අවස්ථාවක් දියත් කිරීම. + + + The lock file could not be created. Single-instance mode disabled. + අගුළු ගොනුව සෑදිය නොහැක. තනි අවස්ථා මාදිලිය අබල කර ඇත. + + + Clearing the clipboard in %1 second(s)… + තත්පර %1 කින් පසුරු පුවරුව හිස් කිරීම…තත්පර %1 කින් පසුරු පුවරුව හිස් කිරීම… + + + Group + සමූහය + + + Title + ශීර්ෂය + + + Username + පරිශීලක නාමය + + + Password + මුරපදය + + + TOTP + TOTP + + + Icon + නිරූපකය + + + Last Modified + අවසන් වරට වෙනස් කරන ලදී + + + Created + නිර්මාණය කළා + + + Benchmark %1 delay + මිණුම් ලකුණ %1 ප්‍රමාදය + + + %1 ms + milliseconds + %1 ms%1 ms + + + %1 s + seconds + %1 තත්%1 තත් + + + Do you really want to delete the entry "%1" for good? + ඔබට ඇත්ත වශයෙන්ම "%1" ප්‍රවේශය යහපත සඳහා මකා දැමීමට අවශ්‍යද? + + + Do you really want to delete %n entry(s) for good? + ඔබට ඇත්තටම හොඳ සඳහා %n ඇතුළත් කිරීම්(ය) මැකීමට අවශ්‍යද?ඔබට ඇත්තටම හොඳ සඳහා %n ඇතුළත් කිරීම්(ය) මැකීමට අවශ්‍යද? + + + Delete entry(s)? + ඇතුළත් කිරීම්(න්) මකන්නද?ඇතුළත් කිරීම්(න්) මකන්නද? + + + 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 ක් ගෙන යාමට අවශ්‍යද?ඔබට ඇත්තටම ප්‍රතිචක්‍රීකරණ බඳුනට ඇතුල්වීම්(ය) %n ක් ගෙන යාමට අවශ්‍යද? + + + Move entry(s) to recycle bin? + ප්‍රවේශය(ය) ප්‍රතිචක්‍රීකරණ බඳුනට ගෙන යන්නද?ඇතුළත් කිරීම්(ය) ප්‍රතිචක්‍රීකරණ බඳුනට ගෙන යන්නද? + + + 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 ඇත. ඔබට අගයන් සමඟ යොමු නැවත ලිවීමට, මෙම ප්‍රවේශය මඟ හැරීමට හෝ කෙසේ හෝ මකා දැමීමට අවශ්‍යද?"%1" ප්‍රවේශයට යොමු(ය) %2 ඇත. ඔබට අගයන් සමඟ යොමු නැවත ලිවීමට, මෙම ප්‍රවේශය මඟ හැරීමට හෝ කෙසේ හෝ මකා දැමීමට අවශ්‍යද? + + + User name + පරිශීලක නාමය + + + Browser Statistics + බ්රවුසර සංඛ්යා ලේඛන + + + Health Check + සෞඛ්ය පරීක්ෂාව + + + HIBP + HIBP + + + Statistics + සංඛ්යාලේඛන + + + Unsupported key file version: %1 + සහාය නොදක්වන යතුරු ගොනු අනුවාදය: %1 + + + Checksum mismatch! Key file may be corrupt. + චෙක්සම් නොගැලපීම! යතුරු ගොනුව දූෂිත විය හැක. + + + Unexpected key file data! Key file may be corrupt. + අනපේක්ෂිත යතුරු ගොනු දත්ත! යතුරු ගොනුව දූෂිත විය හැක. + + + KeePassXC - cross-platform password manager + KeePassXC - හරස් වේදිකා මුරපද කළමනාකරු + + + filenames of the password databases to open (*.kdbx) + විවෘත කිරීමට මුරපද දත්ත සමුදායේ ගොනු නාම (*.kdbx) + + + path to a custom config file + අභිරුචි වින්‍යාස ගොනුවකට මාර්ගය + + + path to a custom local config file + අභිරුචි දේශීය වින්‍යාස ගොනුවකට මාර්ගය + + + lock all open databases + සියලුම විවෘත දත්ත සමුදායන් අගුළු දමන්න + + + key file of the database + දත්ත සමුදායේ ප්රධාන ගොනුව + + + read password of the database from stdin + stdin වෙතින් දත්ත සමුදායේ මුරපදය කියවන්න + + + Database failed to lock. + දත්ත සමුදාය අගුළු දැමීමට අසමත් විය. + + + Another instance of KeePassXC is already running. + KeePassXC හි තවත් අවස්ථාවක් දැනටමත් ක්‍රියාත්මක වේ. + + + KeePassXC is not running. No open database to lock + + + + Fatal error while testing the cryptographic functions. + ගුප්ත ලේඛන කාර්යයන් පරීක්ෂා කිරීමේදී මාරාන්තික දෝෂයක්. + + + KeePassXC - Error + KeePassXC - දෝෂයකි + + + Database password: + දත්ත සමුදා මුරපදය: + + + Invalid Settings + TOTP + වලංගු නොවන සැකසුම් + + + Invalid Key + TOTP + වලංගු නොවන යතුර + + + Failed to create Windows Hello credential. + Windows Hello අක්තපත්‍රය සෑදීමට අසමත් විය. + + + Failed to sign challenge using Windows Hello. + Windows Hello භාවිතයෙන් අභියෝගයට අත්සන් කිරීමට අසමත් විය. + + + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + KeePassXC crypto ආරම්භ කිරීමට අසමත් විය. + + + Failed to encrypt key data. + ප්රධාන දත්ත සංකේතනය කිරීමට අසමත් විය. + + + Failed to get Windows Hello credential. + Windows Hello අක්තපත්‍ර ලබා ගැනීමට අසමත් විය. + + + Failed to decrypt key data. + ප්රධාන දත්ත විකේතනය කිරීමට අසමත් විය. + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + ප්ලගින දත්ත මකන්නද? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + අනන්‍යන + + + + QtIOCompressor + + Internal 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::open + + The gzip format not supported in this version of zlib. + zlib හි මෙම අනුවාදයේ gzip ආකෘතිය සහාය නොදක්වයි. + + + Internal zlib error: + අභ්‍යන්තර zlib දෝෂය: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + + + ReportsWidgetBrowserStatistics + + Double-click entries to edit. + සංස්කරණය කිරීමට ඇතුළත් කිරීම් ද්විත්ව ක්ලික් කරන්න. + + + List of entry URLs + ඇතුල්වීමේ URL ලැයිස්තුව + + + Entry has no URLs set + ප්‍රවේශයට URL සකසා නැත + + + Allowed URLs + අවසර ලත් URL + + + Entry has no Browser Integration settings + ප්‍රවේශයට බ්‍රවුසර් ඒකාබද්ධ කිරීමේ සැකසුම් නොමැත + + + Denied URLs + ප්‍රතික්ෂේප කළ URL + + + (Excluded) + (බැහැර) + + + This entry is being excluded from reports + මෙම ප්‍රවේශය වාර්තා වලින් බැහැර කෙරේ + + + Please wait, browser statistics is being calculated… + කරුණාකර රැඳී සිටින්න, බ්‍රවුසර සංඛ්‍යාලේඛන ගණනය කෙරේ… + + + No entries with a URL, or none has browser extension settings saved. + URL එකක් සහිත ඇතුළත් කිරීම් නැත, නැතහොත් කිසිවකට බ්‍රවුසර දිගු සැකසුම් සුරැකී නැත. + + + Title + ශීර්ෂය + + + Path + මාර්ගය + + + URLs + URLs + + + Edit Entry… + ප්‍රවේශය…සංස්කරණය කරන්න + + + Delete Entry(s)… + ඇතුළත් කිරීම් (ය)…මකන්නඇතුළත් කිරීම් (ය)…මකන්න + + + Exclude from reports + වාර්තා වලින් බැහැර කරන්න + + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + + + + ReportsWidgetHealthcheck + + Show expired entries + + + + (Expired) + + + + Hover over reason to show additional details. Double-click entries to edit. + අමතර විස්තර පෙන්වීමට හේතුව මත සැරිසරන්න. සංස්කරණය කිරීමට ඇතුළත් කිරීම් ද්විත්ව ක්ලික් කරන්න. + + + Bad — password must be changed + නරකයි - මුරපදය වෙනස් කළ යුතුය + + + Poor — password should be changed + දුර්වල - මුරපදය වෙනස් කළ යුතුය + + + Weak — consider changing the password + දුර්වලයි - මුරපදය වෙනස් කිරීම සලකා බලන්න + + + (Excluded) + (බැහැර) + + + This entry is being excluded from reports + මෙම ප්‍රවේශය වාර්තා වලින් බැහැර කෙරේ + + + Please wait, health data is being calculated… + කරුණාකර රැඳී සිටින්න, සෞඛ්‍ය දත්ත ගණනය කෙරේ… + + + Congratulations, everything is healthy! + සුභ පැතුම්, හැම දෙයක්ම සෞඛ්ය සම්පන්නයි! + + + Title + ශීර්ෂය + + + Path + මාර්ගය + + + Score + ලකුණු + + + Reason + හේතුව + + + Edit Entry… + ප්‍රවේශය…සංස්කරණය කරන්න + + + Delete Entry(s)… + ඇතුළත් කිරීම් (ය)…මකන්නඇතුළත් කිරීම් (ය)…මකන්න + + + Exclude from reports + වාර්තා වලින් බැහැර කරන්න + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + + + + ReportsWidgetHibp + + CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. + අවවාදයයි: මෙම වාර්තාවට Have I Been Pwned online සේවාව (https://haveibeenpwned.com) වෙත තොරතුරු යැවීම අවශ්‍ය වේ. ඔබ ඉදිරියට ගියහොත්, ඔබගේ දත්ත සමුදා මුරපද ගුප්ත ලේඛනගතව හැෂ් කරනු ලබන අතර එම හැෂ් වල පළමු අක්ෂර පහ මෙම සේවාව වෙත ආරක්ෂිතව යවනු ලැබේ. ඔබගේ දත්ත සමුදාය ආරක්ෂිතව පවතින අතර මෙම තොරතුරු වලින් නැවත සකස් කළ නොහැක. කෙසේ වෙතත්, ඔබ යවන මුරපද ගණන සහ ඔබගේ IP ලිපිනය මෙම සේවාවට නිරාවරණය වේ. + + + Perform Online Analysis + මාර්ගගත විශ්ලේෂණය සිදු කරන්න + + + Also show entries that have been excluded from reports + වාර්තාවලින් බැහැර කර ඇති ඇතුළත් කිරීම් ද පෙන්වන්න + + + This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. + KeePassXC හි මෙම ගොඩනැගීමට ජාල ක්‍රියාකාරකම් නොමැත. Have I Been Pwned දත්ත සමුදායට එරෙහිව ඔබගේ මුරපද පරීක්ෂා කිරීමට ජාලකරණය අවශ්‍ය වේ. + + + Congratulations, no exposed passwords! + සුභ පැතුම්, නිරාවරණය වූ මුරපද නැත! + + + Title + ශීර්ෂය + + + Path + මාර්ගය + + + Password exposed… + මුරපදය නිරාවරණය… + + + (Excluded) + (බැහැර) + + + This entry is being excluded from reports + මෙම ප්‍රවේශය වාර්තා වලින් බැහැර කෙරේ + + + once + Password exposure amount + වරක් + + + up to 10 times + Password exposure amount + 10 වතාවක් දක්වා + + + up to 100 times + Password exposure amount + 100 වතාවක් දක්වා + + + up to 1000 times + Password exposure amount + 1000 වාරයක් දක්වා + + + up to 10,000 times + Password exposure amount + 10,000 වාරයක් දක්වා + + + up to 100,000 times + Password exposure amount + 100,000 වාරයක් දක්වා + + + up to a million times + Password exposure amount + මිලියන වාරයක් දක්වා + + + millions of times + Password exposure amount + මිලියන වාරයක් + + + Edit Entry… + ප්‍රවේශය…සංස්කරණය කරන්න + + + Delete Entry(s)… + ඇතුළත් කිරීම් (ය)…මකන්නඇතුළත් කිරීම් (ය)…මකන්න + + + Exclude from reports + වාර්තා වලින් බැහැර කරන්න + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + අපනයන + + + Import + ආනයන + + + List of entry URLs + ඇතුල්වීමේ URL ලැයිස්තුව + + + Title + සිරැසිය + + + Path + මාර්ගය + + + Username + පරිශීලක නාමය + + + URLs + URLs + + + Edit Entry… + ප්‍රවේශය…සංස්කරණය කරන්න + + + Delete Entry(s)… + ඇතුළත් කිරීම් (ය)…මකන්නඇතුළත් කිරීම් (ය)…මකන්න + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + අපනයන තහවුරු කිරීම + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + + + + ReportsWidgetStatistics + + Hover over lines with error icons for further information. + වැඩිදුර තොරතුරු සඳහා දෝෂ නිරූපක සහිත රේඛා මත සැරිසරන්න. + + + Name + නම + + + Value + වටිනාකම + + + Please wait, database statistics are being calculated… + කරුණාකර රැඳී සිටින්න, දත්ත සමුදා සංඛ්‍යාලේඛන ගණනය කෙරේ… + + + Database name + දත්ත සමුදායේ නම + + + Description + විස්තර + + + Location + ස්ථානය + + + Database created + දත්ත සමුදාය නිර්මාණය කරන ලදී + + + Last saved + අවසන් වරට සුරකින ලදී + + + Unsaved changes + නොසුරකින ලද වෙනස්කම් + + + yes + ඔව් + + + no + නැත + + + The database was modified, but the changes have not yet been saved to disk. + දත්ත සමුදාය වෙනස් කර ඇත, නමුත් වෙනස්කම් තවමත් තැටියට සුරැකී නැත. + + + Number of groups + කණ්ඩායම් ගණන + + + Number of entries + ඇතුළත් කිරීම් ගණන + + + Number of expired entries + කල් ඉකුත් වූ ඇතුළත් කිරීම් ගණන + + + The database contains entries that have expired. + දත්ත සමුදායේ කල් ඉකුත් වූ ඇතුළත් කිරීම් අඩංගු වේ. + + + Unique passwords + අද්විතීය මුරපද + + + Non-unique passwords + අද්විතීය නොවන මුරපද + + + More than 10% of passwords are reused. Use unique passwords when possible. + මුරපද වලින් 10% කට වඩා නැවත භාවිතා වේ. හැකි විට අද්විතීය මුරපද භාවිතා කරන්න. + + + Maximum password reuse + උපරිම මුරපදය නැවත භාවිතා කිරීම + + + Some passwords are used more than three times. Use unique passwords when possible. + සමහර මුරපද තුන් වතාවකට වඩා භාවිතා වේ. හැකි විට අද්විතීය මුරපද භාවිතා කරන්න. + + + Number of short passwords + කෙටි මුරපද ගණන + + + Recommended minimum password length is at least 8 characters. + නිර්දේශිත අවම මුරපද දිග අවම වශයෙන් අක්ෂර 8 කි. + + + Number of weak passwords + දුර්වල මුරපද ගණන + + + Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. + 'හොඳ' හෝ 'විශිෂ්ට'ශ්‍රේණිගත කිරීමක් සහිත දිගු, සසම්භාවී මුරපද භාවිතා කිරීම නිර්දේශ කරන්න. + + + Entries excluded from reports + ඇතුළත් කිරීම් වාර්තා වලින් බැහැර කර ඇත + + + Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. + වාර්තා වලින් ඇතුළත් කිරීම් හැර, උදා: ඒවායේ දුර්වල මුරපදයක් ඇති බව දන්නා නිසා,'t අනිවාර්යයෙන්ම ගැටලුවක් නොවන නමුත් ඔබ ඒවා ගැන අවධානයෙන් සිටිය යුතුය. + + + Average password length + සාමාන්ය මුරපද දිග + + + %1 characters + අක්ෂර %1 යි + + + Average password length is less than ten characters. Longer passwords provide more security. + සාමාන්‍ය මුරපද දිග අක්ෂර දහයකට වඩා අඩුය. දිගු මුරපද වැඩි ආරක්ෂාවක් සපයයි. + + + + SSHAgent + + Agent connection failed. + නියෝජිත සම්බන්ධතාවය අසාර්ථක විය. + + + Agent protocol error. + නියෝජිත ප්‍රොටෝකෝල දෝෂයකි. + + + No agent running, cannot add identity. + කිසිදු නියෝජිතයෙකු ක්‍රියාත්මක නොවේ, අනන්‍යතාවය එක් කළ නොහැක. + + + Key identity ownership conflict. Refusing to add. + ප්‍රධාන අනන්‍යතා හිමිකාරිත්ව ගැටුම. එකතු කිරීම ප්රතික්ෂේප කිරීම. + + + 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). + තහවුරු කිරීමේ ඉල්ලීමක් නියෝජිතයා විසින් සහාය නොදක්වයි (විකල්ප පරීක්ෂා කරන්න). + + + Security keys are not supported by the agent or the security key provider is unavailable. + ආරක්ෂක යතුරු නියෝජිතයා විසින් සහාය නොදක්වයි හෝ ආරක්ෂක යතුරු සපයන්නා නොමැත. + + + No agent running, cannot remove identity. + කිසිදු නියෝජිතයෙකු ක්‍රියාත්මක නොවේ, අනන්‍යතාවය ඉවත් කළ නොහැක. + + + No agent running, cannot list identities. + කිසිදු නියෝජිතයෙකු ක්‍රියාත්මක නොවේ, අනන්‍යතා ලැයිස්තුගත කළ නොහැක. + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + + + + SearchHelpWidget + + Search Help + උදව් සොයන්න + + + Search terms are as follows: [modifiers][field:]["]term["] + සෙවුම් පද පහත පරිදි වේ: [modifiers][ක්ෂේත්‍රය:]["]කාලීන["] + + + Every search term must match (ie, logical AND) + සෑම සෙවුම් පදයක්ම ගැලපිය යුතුය (එනම් තාර්කික සහ) + + + Modifiers + වෙනස් කරන්නන් + + + exclude term from results + ප්‍රතිඵල වලින් වාරය බැහැර කරන්න + + + match term exactly + පදය හරියටම ගලපන්න + + + use regex in term + regex භාවිතා කරන්න + + + Fields + ක්ෂේත්ර + + + Term Wildcards + කාලීන Wildcards + + + match anything + ඕනෑම දෙයක් ගැලපේ + + + match one + එකක් ගැලපෙනවා + + + logical OR + තාර්කික OR + + + Examples + උදාහරණ + + + + SearchWidget + + Search + සොයන්න + + + Search Help + උදව් සොයන්න + + + Save Search + + + + Search (%1)… + Search placeholder text, %1 is the keyboard shortcut + සොයන්න (%1)… + + + Case sensitive + විෂය සංවේදී + + + Limit search to selected group + තෝරාගත් කණ්ඩායමකට සෙවීම සීමා කරන්න + + + + SettingsClientModel + + Application + අයදුම්පත + + + PID + PID + + + DBus Address + DBus ලිපිනය + + + Manage + කළමනාකරණය කරන්න + + + + SettingsDatabaseModel + + File Name + ගොනුවේ නම + + + Group + සමූහය + + + Manage + කළමනාකරණය කරන්න + + + + SettingsWidgetFdoSecrets + + Options + විකල්ප + + + Enable KeepassXC Freedesktop.org Secret Service integration + KeepassXC Freedesktop.org රහස් සේවා ඒකාබද්ධ කිරීම සබල කරන්න + + + General + ජනරාල් + + + Show notification when passwords are retrieved by clients + ගනුදෙනුකරුවන් විසින් මුරපද ලබා ගන්නා විට දැනුම්දීම පෙන්වන්න + + + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> + <html><head/><body><p>සබල කර ඇත්නම්, මුරපදයක් කියවීමට ගන්නා ඕනෑම උත්සාහයක් තහවුරු කළ යුතුය. එසේ නොමැති නම්, දත්ත සමුදාය අගුළු හරින විට සේවාදායකයින්ට තහවුරු කිරීමකින් තොරව මුරපද කියවිය හැක.</p><p>මෙම විකල්පය ප්‍රවේශයක මුරපදයට ප්‍රවේශය පමණක් ආවරණය කරයි. සේවාදායකයින්ට සෑම විටම නිරාවරණය වන දත්ත සමුදායේ අයිතම ගණන් කළ හැකි අතර ඒවායේ ගුණාංග විමසිය හැකිය.</p></body></html> + + + Confirm when passwords are retrieved by clients + ගනුදෙනුකරුවන් විසින් මුරපද ලබා ගන්නා විට තහවුරු කරන්න + + + Confirm when clients request entry deletion + සේවාලාභීන් ප්‍රවේශ මකාදැමීම ඉල්ලා සිටින විට තහවුරු කරන්න + + + Prompt to unlock database before searching + සෙවීමට පෙර දත්ත සමුදාය අගුළු ඇරීමට විමසන්න + + + Exposed database groups: + නිරාවරණය වූ දත්ත සමුදා කණ්ඩායම්: + + + Authorization + අවසර දීම + + + These applications are currently connected: + මෙම යෙදුම් දැනට සම්බන්ධ වී ඇත: + + + <b>Warning:</b> + <b>අවවාදයයි:</b> + + + Save current changes to activate the plugin and enable editing of this section. + ප්ලගිනය සක්‍රිය කිරීමට වත්මන් වෙනස්කම් සුරකින්න සහ මෙම කොටස සංස්කරණය කිරීම සබල කරන්න. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + + + + SettingsWidgetKeeShare + + Active + ක්රියාකාරී + + + Allow KeeShare imports + KeeShare ආයාත කිරීමට ඉඩ දෙන්න + + + Allow import + ආනයනයට ඉඩ දෙන්න + + + Allow KeeShare exports + KeeShare අපනයනයට ඉඩ දෙන්න + + + Allow export + අපනයනයට ඉඩ දෙන්න + + + Only show warnings and errors + අනතුරු ඇඟවීම් සහ දෝෂ පමණක් පෙන්වන්න + + + Own certificate + තමන්ගේම සහතිකය + + + Signer: + අත්සන් කරන්නා: + + + Generate new certificate + නව සහතිකයක් සාදන්න + + + Generate + උත්පාදනය කරන්න + + + Fingerprint: + ඇඟිලි සලකුණ: + + + Signer name field + අත්සන් කරන්නාගේ නම් ක්ෂේත්‍රය + + + Fingerprint + ඇඟිලි සලකුණ + + + + ShareExport + + Could not write export container. + අපනයන බහාලුම් ලිවීමට නොහැකි විය. + + + + ShareImport + + Successful import + සාර්ථක ආනයනය + + + + ShareObserver + + Import from %1 failed (%2) + %1 සිට ආයාත කිරීම අසාර්ථක විය (%2) + + + Import from %1 successful (%2) + %1 සිට ආයාත කිරීම සාර්ථකයි (%2) + + + Imported from %1 + %1සිට ආනයනය කරන ලදී + + + Multiple import source path to %1 in %2 + %2න් %1 වෙත බහු ආයාත මූලාශ්‍ර මාර්ගය + + + Conflicting export target path %1 in %2 + ගැටුම්කාරී අපනයන ඉලක්ක මාර්ගය %1 න් %2 + + + Export to %1 failed (%2) + %1 ට අපනයනය අසාර්ථක විය (%2) + + + Export to %1 successful (%2) + %1 ට අපනයනය සාර්ථකයි (%2) + + + Export to %1 + %1වෙත අපනයනය කරන්න + + + + TagModel + + Clear Search + + + + All Entries + + + + Expired + කල් ඉකුත් වී ඇත + + + Weak Passwords + දුර්වල මුරපද + + + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? + + + + + TotpDialog + + Timed Password + කාලානුරූපී මුරපදය + + + Copy + පිටපත් කරන්න + + + Expires in <b>%n</b> second(s) + තත්පර <b>%n</b> (තත්පර) කින් කල් ඉකුත් වේතත්පර <b>%n</b> (තත්පර) කින් කල් ඉකුත් වේ + + + + TotpExportSettingsDialog + + Copy + පිටපත් කරන්න + + + 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 කේතය සෑදීමේදී දෝෂයක් ඇති විය. + + + Closing in %1 seconds. + තත්පර %1 කින් වසා දමයි. + + + + TotpSetupDialog + + Setup TOTP + TOTP සකසන්න + + + Secret Key: + රහස් යතුර: + + + Secret key must be in Base32 format + රහස් යතුර Base32 ආකෘතියෙන් විය යුතුය + + + Secret key field + රහස් යතුරු ක්ෂේත්රය + + + Default settings (RFC 6238) + පෙරනිමි සැකසුම් (RFC 6238) + + + Steam® settings + Steam® සැකසුම් + + + Custom settings: + අභිරුචි සැකසුම්: + + + Custom Settings + අභිරුචි සැකසුම් + + + Algorithm: + ඇල්ගොරිතම: + + + Time step: + කාල පියවර: + + + Time step field + කාල පියවර ක්ෂේත්‍රය + + + sec + Seconds + තත්පර + + + Code size: + කේත ප්රමාණය: + + + digits + ඉලක්කම් + + + Invalid TOTP Secret + වලංගු නොවන TOTP රහස + + + You have entered an invalid secret key. The key must be in Base32 format. +Example: JBSWY3DPEHPK3PXP + ඔබ අවලංගු රහස් යතුරක් ඇතුළත් කර ඇත. යතුර Base32 ආකෘතියෙන් විය යුතුය. +උදාහරණය: JBSWY3DPEHPK3PXP + + + Confirm Remove TOTP Settings + TOTP සැකසීම් ඉවත් කිරීම තහවුරු කරන්න + + + Are you sure you want to delete TOTP settings for this entry? + ඔබට මෙම ප්‍රවේශය සඳහා TOTP සැකසීම් මැකීමට අවශ්‍ය බව විශ්වාසද? + + + + URLEdit + + Invalid URL + වලංගු නැති URL + + + + UpdateCheckDialog + + Checking for updates + යාවත්කාලීන සඳහා පරීක්ෂා කරමින් + + + Checking for updates… + යාවත්කාලීන සඳහා පරීක්ෂා කිරීම… + + + Close + වසන්න + + + Software Update + මෘදුකාංග යාවත්කාලීන කිරීම + + + An error occurred when trying to retrieve update information, please try again later. + යාවත්කාලීන තොරතුරු ලබා ගැනීමට උත්සාහ කිරීමේදී දෝෂයක් ඇති විය, කරුණාකර පසුව නැවත උත්සාහ කරන්න. + + + <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. + <strong>නව අනුවාදයක් තිබේ.</strong><br/>KeePassXC %1 <a href="https://keepassxc.org/download/">මෙතැනින් බාගත හැකිය</a>. + + + You have the latest version of KeePassXC + ඔබට KeePassXC හි නවතම අනුවාදය ඇත + + + + WelcomeWidget + + Start storing your passwords securely in a KeePassXC database + ඔබගේ මුරපද KeePassXC දත්ත ගබඩාවක ආරක්ෂිතව ගබඩා කිරීම අරඹන්න + + + Recent databases + මෑත දත්ත සමුදායන් + + + Open a recent database + මෑත දත්ත සමුදායක් විවෘත කරන්න + + + Welcome to KeePassXC %1 + KeePassXC %1වෙත සාදරයෙන් පිළිගනිමු + + + Create Database + + + + Open Database + + + + Import File + + + + + WinUtils + + Invalid key code + වලංගු නොවන යතුරු කේතය + + + Global shortcut already registered to %1 + ගෝලීය කෙටිමඟ දැනටමත් %1වෙත ලියාපදිංචි කර ඇත + + + Could not register global shortcut + ගෝලීය කෙටිමං ලියාපදිංචි කිරීමට නොහැකි විය + + + + YubiKey + + General: + ජනරාල්: + + + Could not find interface for hardware key with serial number %1. Please connect it to continue. + අනුක්‍රමික අංක %1සහිත දෘඪාංග යතුර සඳහා අතුරු මුහුණත සොයා ගැනීමට නොහැකි විය. ඉදිරියට යාමට කරුණාකර එය සම්බන්ධ කරන්න. + + + + YubiKeyEditWidget + + Hardware key slot selection + දෘඪාංග යතුරු තව් තෝරාගැනීම + + + Could not find any hardware keys! + දෘඪාංග යතුරු කිසිවක් සොයා ගැනීමට නොහැකි විය! + + + Selected hardware key slot does not support challenge-response! + තෝරාගත් දෘඪාංග යතුරු ස්ලට් අභියෝග-ප්‍රතිචාර සඳහා සහය නොදක්වයි! + + + Challenge-Response + අභියෝග-ප්‍රතිචාරය + + + Add Challenge-Response + අභියෝග-ප්‍රතිචාර එක් කරන්න + + + Change Challenge-Response + අභියෝග-ප්‍රතිචාරය වෙනස් කරන්න + + + Remove Challenge-Response + අභියෝග-ප්‍රතිචාර ඉවත් කරන්න + + + Challenge-Response set, click to change or remove + අභියෝග-ප්‍රතිචාර කට්ටලය, වෙනස් කිරීමට හෝ ඉවත් කිරීමට ක්ලික් කරන්න + + + Detecting hardware keys… + දෘඪාංග යතුරු හඳුනාගැනීම… + + + No hardware keys detected + දෘඩාංග යතුරු අනාවරණය කර නොමැත + + + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + + + + + YubiKeyInterfacePCSC + + The YubiKey PCSC interface has not been initialized. + YubiKey PCSC අතුරුමුහුණත ආරම්භ කර නොමැත. + + + Could not find or access hardware key with serial number %1. Please present it to continue. + අනුක්‍රමික අංක %1සහිත දෘඪාංග යතුර සොයා ගැනීමට හෝ ප්‍රවේශ වීමට නොහැකි විය. ඉදිරියට යාමට කරුණාකර එය ඉදිරිපත් කරන්න. + + + Hardware key is locked or timed out. Unlock or re-present it to continue. + දෘඪාංග යතුර අගුලු දමා හෝ කල් ඉකුත් වී ඇත. දිගටම කරගෙන යාමට එය අගුළු හරින්න හෝ නැවත ඉදිරිපත් කරන්න. + + + Hardware key was not found or is not configured. + දෘඪාංග යතුර හමු නොවීය හෝ වින්‍යාස කර නොමැත. + + + Failed to complete a challenge-response, the PCSC error code was: %1 + අභියෝග-ප්‍රතිචාරයක් සම්පූර්ණ කිරීමට අපොහොසත් විය, PCSC දෝෂ කේතය: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + ඔබන්න + + + Passive + USB Challenge-Response Key no interaction required + නිෂ්ක්රීය + + + + YubiKeyInterfaceUSB + + Unknown + නොදන්නා + + + Press + USB Challenge-Response Key interaction request + ඔබන්න + + + Passive + USB Challenge-Response Key no interaction required + නිෂ්ක්රීය + + + The YubiKey USB interface has not been initialized. + YubiKey USB අතුරුමුහුණත ආරම්භ කර නොමැත. + + + Could not find hardware key with serial number %1. Please plug it in to continue. + අනුක්‍රමික අංක %1සහිත දෘඪාංග යතුර සොයා ගැනීමට නොහැකි විය. ඉදිරියට යාමට කරුණාකර එය පේනුගත කරන්න. + + + Hardware key timed out waiting for user interaction. + දෘඪාංග යතුර පරිශීලක අන්තර්ක්‍රියා සඳහා රැඳී සිටීමේ කාලය අවසන් විය. + + + A USB error occurred when accessing the hardware key: %1 + දෘඪාංග යතුරට පිවිසීමේදී USB දෝෂයක් ඇති විය: %1 + + + Failed to complete a challenge-response, the specific error was: %1 + අභියෝග ප්‍රතිචාරයක් සම්පූර්ණ කිරීමට අපොහොසත් විය, නිශ්චිත දෝෂය වූයේ: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + \ No newline at end of file diff --git a/share/translations/keepassxc_sk.ts b/share/translations/keepassxc_sk.ts index 26c0412fa..3539d4d4b 100644 --- a/share/translations/keepassxc_sk.ts +++ b/share/translations/keepassxc_sk.ts @@ -80,6 +80,10 @@ Details Podrobnosti + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + + Remember Zapamätať @@ -88,10 +92,6 @@ Allow Selected Povoliť vybraným - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future @@ -122,6 +122,10 @@ Use OpenSSH Použiť OpenSSH + + Use both agents + + SSH_AUTH_SOCK override Prepísanie SSH_AUTH_SOCK @@ -150,10 +154,6 @@ SSH Agent connection is working! Spojenie Agenta SSH funkčné! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Bezpečnosť + + This setting cannot be enabled when minimize on unlock is enabled. + + Access error for config file %1 Chyba prístupu ku konfiguračnému súboru %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Musíte reštartovať aplikáciu, aby sa tieto zmeny prejavili. Chcete ju reštartovať teraz? - - Reset Settings? - Resetovať nastavenia? - - - Are you sure you want to reset all general and security settings to default? - Naozaj chcete obnoviť všetky všeobecné nastavenia na predvolené hodnoty? - Select backup storage directory Vyberte priečinok pre uloženie zálohy + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Zapamätať si predtým používané databázy + + recent files + + Load previously open databases on startup Načítanie predtým otvorených databáz pri spustení @@ -272,25 +312,6 @@ Include beta releases when checking for updates Pri kontrole aktualizácii zahrnúť pred-vydania - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management Správa súborov @@ -315,22 +336,10 @@ Backup database file before saving Zálohovať databázu pri každom uložení - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - Choose... - - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Štýl tlačidiel panela nástrojov: + + Show passwords in color + + Use monospaced font for notes Na poznámky použiť písmo Monospace @@ -493,6 +506,71 @@ Remember last typed entry for: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Zamknúť databázu pri minimalizovaní okna - - Require password repeat when it is visible - Vyžadovať opakovanie hesla, aj ak je viditeľné - Hide passwords when editing them Skryť heslo pri jeho úprave @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Skryť heslá v paneli ukážky položky - - Hide entry notes by default - Predvolene skryť poznámky položky - - - Move entries to recycle bin without confirmation - Položky presunúť do koša bez potvrdenia - - - Enable double click to copy the username/password entry columns - Povoliť kopírovanie stĺpcov používateľské meno/heslo dvojklikom - Privacy Súkromie @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Používať služby DuckDuckGo na stiahnutie ikon webových stránok + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,18 +704,8 @@ Zistené príliš dlhé čakanie, maximum je %1: %2 - Invalid conversion type: %1 - Neplatný typ konverzie: %1 - - - Invalid conversion syntax: %1 - Neplatná syntax konverzie: %1 - - - Invalid regular expression syntax %1 -%2 - Neplatná syntax regulárneho výrazu %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Pokúša sa poslať neplatný symbol klávesy - Sequence aborted: Caps Lock is on Postupnosť zrušená: je zapnutý Caps Lock @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Nemožno získať platný klávesový kód klávesy: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -799,13 +867,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Zakázať tejto stránke + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Uložiť položku - Ok Ok @@ -820,13 +888,73 @@ Please select the correct database for saving credentials. Máte otvorených viac databáz. Prosím, vyberte správnu databázu na uloženie prihlasovacích údajov. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Zrušiť + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC: Vytvoriť novú skupinu - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -835,10 +963,6 @@ Do you want to create this group? Chcete vytvoriť túto skupinu? - - KeePassXC: New key association request - KeePassXC: Nová požiadavka priradenia kľúča - You have received an association request for the following database: %1 @@ -855,28 +979,16 @@ chrome-laptop. Save and allow access Uložiť a povoliť prístup - - KeePassXC: Overwrite existing key? - KeePassXC: Prepísať existujúci kľúč? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Zdieľaný šifrovací kľúč s menom „%1” už existuje. Chcete ho prepísať? - - KeePassXC: Update Entry - KeePassXC: Upraviť položku - Do you want to update the information in %1 - %2? Chcete upraviť informácie v %1 – %2? - - KeePassXC: Delete entry - KeePassXC: Odstrániť položku - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -886,50 +998,57 @@ Chcete odstrániť položku? - Converting attributes to custom data… - Konvertovanie atribútov na vlastné dáta… + %1 (Passkey) + - Abort - Zrušiť + KeePassXC - Create a new group + - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Konvertované atribúty KeePassHTTP + Disable + Vypnúť - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Úspešne skonvertované atribúty z %1 položky(iek). -Do vlastných dát presunuté %2 kľúče. - - - Successfully moved %n keys to custom data. - Úspešne presunutý %n kľúč do vlastných dát.Úspešne presunuté %n kľúče do vlastných dát.Úspešne presunutých %n kľúčov do vlastných dát.Úspešne presunutých %n kľúčov do vlastných dát. + KeePassXC - Overwrite existing key? + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Nenájdená žiadna položka s atribútmi KeePassHTTP! + KeePassXC - Update Entry + - The active database does not contain an entry with KeePassHTTP attributes. - Aktívna databáza neobsahuje žiadnu položku s atribútmi KeePassHTTP. + KeePassXC - Delete entry + - Don't show this warning again - Nezobrazovať znova toto upozornenie + KeePassXC - New key association request + - KeePassXC: Legacy browser integration settings detected - KeePassXC: Zistené staré nastavenia integrácie prehliadača + Passkey + - 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? - Je potrebné presunúť vaše nastavenia KeePassXC-Browser do nastavenia databázovy. -Je to potrebné kvôli správe aktuálnych pripojení prehliadača. -Chcete teraz migrovať svoje nastavenia? + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + @@ -950,10 +1069,6 @@ Chcete teraz migrovať svoje nastavenia? General Všeobecné - - Browsers installed as snaps are currently not supported. - Boli nainštalované prehliadače lebo "snaps" momentálne nie sú podporované. - Enable integration for these browsers: Zapnúť integráciu v týchto prehliadačoch: @@ -1125,26 +1240,6 @@ Chcete teraz migrovať svoje nastavenia? Custom extension ID Vlastné ID rozšírenia - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Kvôli ochrane Snap v sandboxe, musíte na povolenie integrácie prehliadača spustiť skript.<br />Skript môžete získať z %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Na fungovanie integrácie s prehliadačom je potrebný KeePassXC-Browser.<br /> Stiahnite ho pre %1 a %2. %3. %4 - - - Please see special instructions for browser extension use below - Prosím, pozrite si špeciálne inštrukcie na použite integrácie prehliadača nižšie - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Chyba:</b> Vlastné umiestnenie proxy nemožno nájsť!<br/>Integrácia prehliadača NEBUDE FUNGOVAŤ bez aplikácie proxy. - - - <b>Warning:</b> The following options can be dangerous! - <b>Upozornenie:</b> nasledujúce voľby môžu byť nebezpečné! - Executable Files Spustiteľné súbory @@ -1161,6 +1256,46 @@ Chcete teraz migrovať svoje nastavenia? Select native messaging host folder location Vyberte umiestnenie zložky hostiteľa správe medzi prehliadačom a KeePassXC + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1183,14 +1318,6 @@ Chcete teraz migrovať svoje nastavenia? CsvImportWidget - - Import CSV fields - Importovať polia CSV - - - filename - meno súboru - size, rows, columns veľkosť, riadky, stĺpce @@ -1299,50 +1426,42 @@ Chcete teraz migrovať svoje nastavenia? Column %1 Stĺpec %1 - - Imported from CSV file - Importované zo súboru CSV - - - Original data: - Pôvodné dáta: - - - Error(s) detected in CSV file! - V súbore CSV zistená chyba(y)! - [%n more message(s) skipped] [%n ďalšia správa preskočená][%n ďalšie správy preskočené[%n ďalších správ preskočených][%n ďalších správ preskočených] - Error - Chyba + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - Import CSV: chyby zápisu: -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bajt%n bajty%n bajtov%n bajt(y) - %n row(s) + CSV row count %n riadok%n riadky%n riadkov%n riadkov %n column(s) + CSV column count %n stĺpec%n stĺpce%n stĺpcov%n stĺpcov @@ -1395,6 +1514,14 @@ Zálohovať databázu nachádzajúcu sa na %2 Recycle Bin Kôš + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1417,40 +1544,10 @@ Zálohovať databázu nachádzajúcu sa na %2 Password field Pole pre heslo - - Enter Additional Credentials (if any): - Zadajte dodatočné prihlasovacie údaje (ak treba): - - - Key File: - Súbor kľúča: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Ako doplnok hesla môžete, na zvýšenie bezpečnosti databázy, použiť tajný súbor. Tento súbor môže byť vygenerovaný v nastaveniach bezpečnosti databázy.</p><p>Tento súbor <strong>nie je</strong> súbor vašej databázy *.kdbx!<br>Ak nemáte súbor kľúča, nechajte toto pole prázdne.</p><p>Kliknite na ďalšie informácie…</p> - - - Key file help - Pomocník súbora kľúčov - Hardware key slot selection Výber slotu hardvérového kľúča - - Hardware Key: - Hardvérový kľúč: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Môžete použiť hardvérový bezpečnostný kľúč ako <strong>Yubikey</strong> alebo <strong>OnlyKey</strong> so slotmi nakonfigurovanými pre HMAC-SHA1.</p> -<p>Kliknite pre viac informácií...</p> - - - Hardware key help - Pomocník pre hardvérový kľúč - Key file to unlock the database Súbor kľúča na odomknutie databázy @@ -1463,14 +1560,6 @@ Zálohovať databázu nachádzajúcu sa na %2 Browse… Prechádzať… - - Refresh hardware tokens - Obnoviť hardvérové tokeny - - - Refresh - Obnoviť - Unlock Database @@ -1527,14 +1616,6 @@ Ak chcete zabrániť zobrazovaniu tejto chyby, musíte ísť do "Nastavenia Retry with empty password Skúsiť znova s prázdnym heslom - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Nepodarilo sa otvoriť kľúčový súbor: %1 @@ -1568,22 +1649,64 @@ Ak chcete zabrániť zobrazovaniu tejto chyby, musíte ísť do "Nastavenia Súbor databázy nemožno použiť ako súbor kľúča - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Nemôžete použiť svoju databázu ako súbor kľúča. -Ak nemáte súbor kľúča, prosím nechajte toto pole prázdne. + authenticate to access the database + - Detecting hardware keys… - Detekcia hardvérových kľúčov… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - Nenájdené žiadne hardvérové kľúče + Select Key File: + - Select hardware key… - Zvoľte hardvérový kľúč… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + @@ -1595,10 +1718,6 @@ Ak nemáte súbor kľúča, prosím nechajte toto pole prázdne. DatabaseSettingsDialog - - Advanced Settings - Pokročilé nastavenia - General Všeobecné @@ -1623,6 +1742,22 @@ Ak nemáte súbor kľúča, prosím nechajte toto pole prázdne. Maintenance Údržba + + KeeShare + KeeShare + + + Secret Service Integration + Integrácia Tajnej služby + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1630,18 +1765,6 @@ Ak nemáte súbor kľúča, prosím nechajte toto pole prázdne. KeePassXC-Browser settings Nastavenia KeePassXC-Browser - - Convert KeePassHTTP data - Konvertovať dáta KeePassHTTP - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Konvertovať KeePassHTTP atribúty do formátu kompatibilného s KeePassXC-Browser - - - Refresh database root group ID - Obnoviť ID koreňovej skupiny databázy - Disconnect all browsers Odpojiť všetky prehliadače @@ -1650,6 +1773,10 @@ Ak nemáte súbor kľúča, prosím nechajte toto pole prázdne. Forget all site-specific settings on entries Zabudnúť všetky nastavenia položiek špecifické pre stránky + + Refresh database root group ID + Obnoviť ID koreňovej skupiny databázy + Stored keys Uložené kľúče @@ -1698,18 +1825,10 @@ This may prevent connection to the browser plugin. Naozaj chcete odpojiť všetky prehliadače? Môže to brániť pripojeniu zásuvného modulu prehliadača. - - KeePassXC: No keys found - KeePassXC: Nenájdené žiadne kľúče - No shared encryption keys found in KeePassXC settings. V nastavení KeePassXC neboli nájdené zdieľané šifrovacie kľúče. - - KeePassXC: Removed keys from database - KeePassXC: Klúče odstránené z databázy - Successfully removed %n encryption key(s) from KeePassXC settings. Úspešne odstránený %n šifrovací kľúč z nastavení KeePassXC.Úspešne odstránené %n šifrovacie kľúče z nastavení KeePassXC.Úspešne odstránených %n šifrovacích kľúčov z nastavení KeePassXC.Úspešne odstránených %n šifrovacích kľúčov z nastavení KeePassXC. @@ -1728,32 +1847,14 @@ Povolenia na prístup k položkám budú odvolané. Abort Zrušiť - - KeePassXC: Removed permissions - KeePassXC: Povolenia odstránené - Successfully removed permissions from %n entry(s). Úspešne odstránené povolenia z %n položky.Úspešne odstránené povolenia z %n položiek.Úspešne odstránené povolenia z %n položiek.Úspešne odstránené povolenia z %n položky. - - KeePassXC: No entry with permissions found! - KeePassXC: Nenájdená žiadna položka s povoleniami! - The active database does not contain an entry with permissions. Aktívna databáza neobsahuje položku s povoleniami. - - Move KeePassHTTP attributes to custom data - Presunúť atribúty KeePassHTTP do vlastných dát - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Naozaj chcete konvertovať všetky staré dáta integrácie prehliadača do najnovšej normy? -Je to potrebné kvôli udržaniu kompatibility so zásuvným modulom prehliadača. - Refresh database ID Obnoviť ID databázy @@ -1764,6 +1865,26 @@ This is only necessary if your database is a copy of another and the browser ext Naozaj chcete obnoviť ID databázy? Toto je potrebné len ak je vaša databáza kópiou inej a doplnok prehliadača sa nemôže pripojiť. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Konvertovať KeePassHTTP atribúty do formátu kompatibilného s KeePassXC-Browser + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + DatabaseSettingsWidgetDatabaseKey @@ -1803,6 +1924,18 @@ Naozaj chcete pokračovať bez hesla? Failed to change database credentials Zlyhala zmena prihlasovacích údajov databázy + + Weak password + Slabé heslo + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1810,14 +1943,6 @@ Naozaj chcete pokračovať bez hesla? Decryption Time: Čas dešifrovania: - - Change existing decryption time - Zmeniť existujúci čas dešifrovania - - - Change - Zmeniť - Decryption time in seconds Čas dešifrovania v sekundách @@ -1898,11 +2023,6 @@ Naozaj chcete pokračovať bez hesla? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - bez zmeny - Number of rounds too high Key transformation rounds @@ -1955,6 +2075,18 @@ Ak ponecháte toto číslo, môže byť prelomenie ochrany databázy príliš je Threads for parallel execution (KDF settings) vláknovláknavlákien vlákien + + Encryption Settings: + + + + Basic + + + + Advanced + Pokročilé + DatabaseSettingsWidgetFdoSecrets @@ -2013,18 +2145,10 @@ Ak ponecháte toto číslo, môže byť prelomenie ochrany databázy príliš je Maximum number of history items per entry Maximálny počet histórie na položku - - Max. history items: - Max. položiek histórie: - Maximum size of history per entry Maximálna veľkosť histórie na položku - - Max. history size: - Max. veľkosť histórie: - MiB MiB @@ -2055,6 +2179,99 @@ Táto akcia nie je reverzibilná. (old) (staré) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + min + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Vymazať + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2150,6 +2367,129 @@ Táto akcia nie je reverzibilná. Pole popisu databázy + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Odstrániť + + + Command Settings + + + + Name + Názov + + + Save + Uložiť + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + sekundy + + DatabaseTabWidget @@ -2182,26 +2522,10 @@ Toto je určite chyba, prosím nahláste ju vývojárom. CSV file Súbor CSV - - Select CSV file - Zvoľte súbor CSV - Merge database Zlúčiť databázu - - KeePass 1 database - Databáza KeePass 1 - - - Open KeePass 1 database - Otvoriť databázu KeePass 1 - - - Open OPVault - Otvoriť OPVault - Export database to CSV file Exportovať databázu do súboru CSV @@ -2214,6 +2538,18 @@ Toto je určite chyba, prosím nahláste ju vývojárom. Writing the HTML file failed. Zápis do súboru HTML zlyhal. + + Export database to XML file + + + + XML file + + + + Writing the XML file failed + + Export Confirmation Potvrdenie exportu @@ -2222,25 +2558,21 @@ Toto je určite chyba, prosím nahláste ju vývojárom. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Chystáte sa exportovať svoju databázu do nešifrovaného súboru. Takto necháte svoje heslá a citlivé informácie nechránené! Naozaj chcete pokračovať? - - New Database - Nová databáza - - - %1 [New Database] - Database tab name modifier - %1 [Nová databáza] - %1 [Locked] Database tab name modifier %1 [Zamknutá] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags + Searches and Tags @@ -2291,6 +2623,10 @@ Toto je určite chyba, prosím nahláste ju vývojárom. Expired entries + + Entries expiring within %1 day(s) + + No current database. Žiadna otvorená databáza. @@ -2315,6 +2651,18 @@ Toto je určite chyba, prosím nahláste ju vývojárom. No Results Žiadne výsledky + + Save + Uložiť + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + + Lock Database? Zamknúť databázu? @@ -2343,26 +2691,6 @@ Uložiť zmeny? File has changed Súbor bol zmenený - - The database file has changed. Do you want to load the changes? - Súbor databázy bol zmenený. Chcete načítať zmeny? - - - Merge Request - Požiadavka zlúčenia - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Súbor databázy bol zmenený a Vy máte neuložené zmeny. -Chcete zlúčiť svoje zmeny? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Nemožno otvoriť nový databázový súbor počas pokusu o automatické opätovné načítanie. -Chyba: %1 - Disable safe saves? Vypnúť bezpečné ukladanie? @@ -2405,9 +2733,94 @@ Vypnúť bezpečné ukladanie a skúsiť znova? Could not find database file: %1 Nemožno nájsť súbor databázy: %1 - - Entries expiring within %1 day(s) - + + New Database + Nová databáza + + + %1 [New Database] + Database tab name modifier + %1 [Nová databáza] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Sťahovanie… + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2460,10 +2873,6 @@ Vypnúť bezpečné ukladanie a skúsiť znova? n/a neznáme - - (encrypted) - (šifrované) - Select private key Zvoľte súkromný kľúč @@ -2549,6 +2958,10 @@ Chcete to opraviť? Hide Skryť + + %n hour(s) + + %n week(s) %n týždeň%n týždne%n týždňov%n týždňov @@ -2561,9 +2974,9 @@ Chcete to opraviť? %n year(s) %n rok%n roky%n rokov%n rokov - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2683,10 +3096,20 @@ Chcete to opraviť? Add new window association Pridať nové priradenia okna + + + + Add item + + + Remove selected window association Odstrániť vybrané priradenia okna + + - + Remove item + - + Window title: Názov okna: @@ -2711,23 +3134,9 @@ Chcete to opraviť? Custom Auto-Type sequence for this window Vlastná postupnosť Automatického vypĺňania tohoto okna - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Tieto nastavenia ovplyvňujú správanie položky s doplnkom prehliadača. - General Všeobecné @@ -2740,26 +3149,14 @@ Chcete to opraviť? Skip Auto-Submit for this entry Zapnúť Automatické vypĺňanie pre túto položku - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Toto nastavenie posielať do prehliadača len pre dialógy HTTP Auth. Ak je zapnuté, bežné prihlasovacie formuláre nebudú na výber poskytovať túto položku. - Use this entry only with HTTP Basic Auth Použiť položku len pre HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Toto nastavenie neposielať do prehliadača pre dialógy HTTP Auth. Ak je zapnuté, bežné prihlasovacie formuláre nebudú na výber poskytovať túto položku. - Do not use this entry with HTTP Basic Auth Nepoužiť túto položku pre HTTP Basic Auth - - Additional URL's - Ďalšie URL - Add Pridať @@ -2772,6 +3169,22 @@ Chcete to opraviť? Edit Upraviť + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2822,22 +3235,10 @@ Chcete to opraviť? Notes field Pole poznámok - - Toggle the checkbox to reveal the notes section. - Prepnite zaškrtávacie pole na odkrytie sekcie poznámok. - Username field Pole použ. mena - - Toggle notes visible - Prepnúť tobrazenie poznámok - - - Notes: - Poznámky: - Expiration field Pole doby platnosti @@ -2854,14 +3255,6 @@ Chcete to opraviť? Presets Predvoľby - - Password: - Heslo: - - - URL: - URL: - Url field Pole URL @@ -2870,18 +3263,10 @@ Chcete to opraviť? Download favicon for URL Stiahnuť ikonu URL - - Title: - Názov: - Title field Pole nadpisu - - Username: - Použ. meno: - Password field Pole pre heslo @@ -2891,15 +3276,39 @@ Chcete to opraviť? Prepnúť dobu platnosti - Expires: - Platí do: - - - Tags: + Tags list - Tags list + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2941,19 +3350,6 @@ Chcete to opraviť? Private key Súkromný kľúč - - External file - Externý súbor - - - Browser for key file - Vybrať súbor kľúča - - - Browse… - Button for opening file dialog - Prechádzať… - Attachment Príloha @@ -2970,6 +3366,23 @@ Chcete to opraviť? Remove from agent Odstrániť z agenta + + External file + Externý súbor + + + Browser for key file + Vybrať súbor kľúča + + + Browse… + Button for opening file dialog + Prechádzať… + + + Generate + Generovať + Select attachment file Zvoľte súbor prílohy @@ -2994,6 +3407,10 @@ Chcete to opraviť? seconds sekundy + + Clear agent + + EditGroupWidget @@ -3005,10 +3422,6 @@ Chcete to opraviť? Icon Ikona - - Browser Integration - Integrácia prehliadača - Properties Vlastnosti @@ -3025,6 +3438,10 @@ Chcete to opraviť? Group has unsaved changes Skupina má neuložené zmeny + + Browser Integration + Integrácia prehliadača + Enable Zapnúť @@ -3040,10 +3457,6 @@ Chcete to opraviť? EditGroupWidgetBrowser - - Edit Group - Upraviť skupinu - These settings affect to the group's behaviour with the browser extension. Tieto nastavenia ovplyvňujú správanie skupiny s doplnkom prehliadača. @@ -3080,6 +3493,22 @@ Chcete to opraviť? Do not use HTTP Auth toggle for this and sub groups Nepoužívať HTTP Auth pre túto a podriadené skupiny + + Omit WWW subdomain from matching: + + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3312,10 +3741,6 @@ Podporované rozšírenia sú: %1. Unable to fetch favicon. Nemožno stiahnuť ikonu stránky - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Môžete zapnúť webovú službu ikon DuckDuckGo v Nástroje -> Nastavenie -> Bezpečnosť - Existing icon selected. Zvolená existujúca ikona. @@ -3348,6 +3773,10 @@ Podporované rozšírenia sú: %1. The following icon(s) failed: Nasledujúca ikona zlyhala:Nasledujúce ikony zlyhali:Nasledujúce ikony zlyhali:Nasledujúce ikony zlyhali: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3424,6 +3853,24 @@ Môže to spôsobiť nefunkčnosť dotknutých zásuvných modulov.%1 - Clone %1 – Klon + + Passkey + + + + Invalid conversion type: %1 + Neplatný typ konverzie: %1 + + + Invalid conversion syntax: %1 + Neplatná syntax konverzie: %1 + + + Invalid regular expression syntax %1 +%2 + Neplatná syntax regulárneho výrazu %1 +%2 + EntryAttachments @@ -3432,6 +3879,21 @@ Môže to spôsobiť nefunkčnosť dotknutých zásuvných modulov.Nemožno otvoriť súbor „%1”. + + EntryAttachmentsDialog + + Form + Formulár + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3469,14 +3931,6 @@ Môže to spôsobiť nefunkčnosť dotknutých zásuvných modulov.Remove Odstrániť - - Rename selected attachment - Premenovať zvolenú prílohu - - - Rename - Premenovať - Open selected attachment Otvoriť zvolenú prílohu @@ -3554,12 +4008,6 @@ Môže to spôsobiť nefunkčnosť dotknutých zásuvných modulov.Confirm Overwrite Attachment Potvrďte Prepísanie Prílohy - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Príloha "%1" už existuje. -Prepísať existujúcu prílohu? - Confirm Attachment Potvrdiť prílohu @@ -3594,6 +4042,24 @@ Error: %1 Uloženie aktualizovanej prílohy zlyhalo. Chyba: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Príloha "%1" už existuje. +Prepísať existujúcu prílohu? + + + New + + + + Preview + Ukážka + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3788,6 +4254,14 @@ Chyba: %1 Has TOTP Má TOTP + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3808,8 +4282,8 @@ Chyba: %1 Heslo - Notes - Poznámky + URL + URL Expiration @@ -3828,8 +4302,8 @@ Chyba: %1 Použ. meno: - URL - URL + Notes + Poznámky Advanced @@ -3879,6 +4353,10 @@ Chyba: %1 Never Nikdy + + Double click to copy value + + Enabled Zapnuté @@ -3887,6 +4365,10 @@ Chyba: %1 Disabled Vypnuté + + Double click to copy to clipboard + + EntryURLModel @@ -3894,6 +4376,10 @@ Chyba: %1 Invalid URL Neplatná URL + + Duplicate URL + + EntryView @@ -3909,6 +4395,10 @@ Chyba: %1 Reset to defaults Obnoviť predvolené + + + %1 entry(s)... + + ExportDialog @@ -4130,6 +4620,193 @@ V bezpečnostnej sekcii nastavení aplikácie môžete zapnúť webovú službu Sťahovanie ikon (%1/%2)… + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + Stránka sprievodcu + + + Entry count: %1 + + + + Group + Skupina + + + Title + Nadpis + + + Username + Používateľské meno + + + Password + Heslo + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Formulár + + + Import File Selection + + + + Password: + Heslo: + + + Key File: + Súbor kľúča: + + + Browse… + Prechádzať… + + + Import Into: + + + + New Database + Nová databáza + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Otvoriť OPVault + + + Select import file + + + + All files + Všetky súbory + + + Key files + Súbory kľúčov + + + Select key file + Zvoľte súbor kľúča + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4565,17 +5242,6 @@ Riadok %2, stĺpec %3 Zlyhalo otvorenie súkromného kľúča - - KeePass1OpenWidget - - Import KeePass1 Database - Importovať databázu KeePass 1 - - - Unable to open the database. - Nemožno otvoriť databázu. - - KeePass1Reader @@ -4932,10 +5598,6 @@ Naozaj chcete pokračovať s týmto súborom? &Recent Databases &Nedávne databázy - - &Import - &Import - &Export &Exportovať @@ -4956,6 +5618,10 @@ Naozaj chcete pokračovať s týmto súborom? TOTP TOTP + + Tags + + &Groups &Skupiny @@ -5000,34 +5666,18 @@ Naozaj chcete pokračovať s týmto súborom? &New Database… &Nová databáza… - - Create a new database - Vytvoriť novú databázu - &Merge From Database… &Zlúčiť z databázou… - - Merge from another KDBX database - Zlúčiť s inou databázou KDBX - &New Entry… &Nová položka… - - Add a new entry - Pridať novú položku - &Edit Entry… &Upraviť položku… - - View or edit entry - Zobraziť alebo upraviť položku - &Delete Entry… O&dstrániť položku… @@ -5036,10 +5686,6 @@ Naozaj chcete pokračovať s týmto súborom? &New Group… &Nová skupina… - - Add a new group - Pridať novú skupinu - &Edit Group… &Upraviť skupinu… @@ -5072,18 +5718,10 @@ Naozaj chcete pokračovať s týmto súborom? Database &Reports… &Hlásenia databázy… - - Statistics, health check, etc. - Štatistiky, kontrola zdravia, apod. - &Database Settings… Nastavenia &databázy… - - Database settings - Nastavenia databázy - &Clone Entry… &Klonovať položku… @@ -5092,34 +5730,18 @@ Naozaj chcete pokračovať s týmto súborom? Move u&p &Posunúť vyššie - - Move entry one step up - Posunie položku o jedno vyššie - Move do&wn &Posunúť nižšie - - Move entry one step down - Posunie položku o jedno nižšie - Copy &Username Kopírovať po&už. meno - - Copy username to clipboard - Skopíruje používateľské meno do schránky - Copy &Password Kopírovať &heslo - - Copy password to clipboard - Skopíruje heslo do schránky - &Settings Na&stavenia @@ -5153,25 +5775,13 @@ Naozaj chcete pokračovať s týmto súborom? &Názov - Copy title to clipboard - Kopírovať názov do schránky - - - &URL - &URL - - - Copy URL to clipboard - Kopírovať URL do schránky + Copy &URL + &Notes &Poznámky - - Copy notes to clipboard - Kopírovať poznámky do schránky - &CSV File… Súbor &CSV… @@ -5184,26 +5794,14 @@ Naozaj chcete pokračovať s týmto súborom? KeePass 1 Database… Databáza KeePass 1 - - Import a KeePass 1 database - Importovať databázu KeePass 1… - 1Password Vault… Úložisko 1Password... - - Import a 1Password Vault - Importovať z úložiska 1Password - CSV File… Súbor CSV… - - Import a CSV file - Importovať súbor CSV… - Show TOTP Zobraziť TOTP @@ -5220,6 +5818,10 @@ Naozaj chcete pokračovať s týmto súborom? Copy &TOTP Kopírovať &TOTP + + Copy Password and TOTP + + E&mpty recycle bin V&yprázdniť kôš @@ -5244,10 +5846,6 @@ Naozaj chcete pokračovať s týmto súborom? &Online Help Pomocník &online - - Go to online documentation - Prejsť na dokumentáciu on-line - &User Guide &Používateľská príručka @@ -5292,6 +5890,10 @@ Naozaj chcete pokračovať s týmto súborom? Classic (Platform-native) Klasický (podľa platformy) + + Show Menubar + + Show Toolbar Zobraziť panel nástrojov @@ -5316,6 +5918,10 @@ Naozaj chcete pokračovať s týmto súborom? Clone Group... Klonovať skupinu… + + &XML File… + + Clear history Vymazať históriu @@ -5343,10 +5949,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - UPOZORNENIE: Vaša verzia Qt môže spôsobiť pád KeePassXC s klávesnicou na obrazovke! -Odporúčame použiť AppImage dostupný na našej stránke sťahovaní. + No Tags + Restore Entry(s) @@ -5376,6 +5980,10 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Quit KeePassXC Skončiť KeePassXC + + %1 Entry(s) + + Please present or touch your YubiKey to continue… Prosím, pripojte alebo stlačte tlačidlo svojho YubiKey na pokračovanie*… @@ -5388,6 +5996,314 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.You must restart the application to apply this setting. Would you like to restart now? Musíte reštartovať aplikáciu, aby sa tieto zmeny prejavili. Chcete ju reštartovať teraz? + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Upraviť položku + + + Delete Entry + + + + Create Group + + + + Edit Group + Upraviť skupinu + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + Kopírovať použ. meno + + + Copy Password + Kopírovať heslo + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Importovať databázu KeePass 1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Generátor hesla + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5445,26 +6361,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Overwriting %1 [%2] Prepísanie %1 [%2] - - older entry merged from database "%1" - staršia položka zlúčená z databázy „%1” - - - Adding backup for older target %1 [%2] - Pridávanie zálohy staršieho cieľa %1 [%2] - - - Adding backup for older source %1 [%2] - Pridávanie zálohy staršieho zdroja %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Aplikujem položku staršieho cieľa na novší zdroj %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Aplikujem položku staršieho zdroja na novší cieľ %1 [%2] - Synchronizing from newer source %1 [%2] Synchronizujem z novšieho zdroja %1 [%2] @@ -5524,14 +6420,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Tu môžete prispôsobiť nastavenia šifrovania databázy. Nebojte sa, neskôr ich môžete zmeniť v nastavení databázy. - - Advanced Settings - Pokročilé nastavenia - - - Simple Settings - Jednoduché nastavenia - NewDatabaseWizardPageDatabaseKey @@ -5566,6 +6454,25 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Prosím, vyplňte meno a prípadne aj popis svojej novej databázy: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5612,15 +6519,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Očakávaných %1 B prostého textu, nájdených %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Čítanie databázy neposkytuje inštanciu -%1 - - OpVaultReader @@ -5694,6 +6592,10 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Unknown cipher: %1 Neznáma šifra: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key Na dešifrovanie tohoto kľúča je potrebná tajná veta @@ -5758,28 +6660,180 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Unexpected EOF when writing private key Neočakávaný koniec súboru pri zápise súkromného kľúča + + (encrypted) + (šifrované) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Heslá sa nezhodujú. + SSH Key Generator + - Passwords match so far - Heslá sa zhodujú až potiaľ + Type + Typ - Toggle Password (%1) - Prepnúť heslo (%1) + Bits + - Generate Password (%1) - Generovať heslo (%1) + Comment + Komentár + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - Upozornenie: Caps Lock zapnutý! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Zrušiť + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + Skupina + + + Database + + + + Import Passkey + + + + Import + Importovať + + + Cancel + Zrušiť + + + Entry + Položka + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Všetky súbory + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5960,10 +7014,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Also choose from: Tiež vybrať z: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Vynechané znaky: „0”, „1”, „l”, „I”, „O”, „|”, „﹒” - Exclude look-alike characters Vynechať podobne vyzerajúce znaky @@ -5988,10 +7038,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Word Count: Počet slov: - - Character Count: - Počet znakov: - Word Case: Slová veľkými: @@ -6004,10 +7050,6 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Add custom wordlist Pridať vlastný zoznam slov - - character - znak - Close Zatvoriť @@ -6044,6 +7086,30 @@ Odporúčame použiť AppImage dostupný na našej stránke sťahovaní.Entropy: %1 bit Náhodnosť: %1 b + + Password Quality: %1 + Kvalita hesla: %1 + + + Poor + Password quality + Slabé + + + Weak + Password quality + Slabé + + + Good + Password quality + Dobré + + + Excellent + Password quality + Výbroné + Confirm Delete Wordlist @@ -6090,8 +7156,47 @@ Do you want to overwrite it? Špeciálne znaky - Password Quality: %1 - Kvalita hesla: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Heslá sa nezhodujú. + + + Passwords match so far + Heslá sa zhodujú až potiaľ + + + Toggle Password (%1) + Prepnúť heslo (%1) + + + Generate Password (%1) + Generovať heslo (%1) + + + Warning: Caps Lock enabled! + Upozornenie: Caps Lock zapnutý! + + + Quality: %1 + Poor @@ -6113,6 +7218,10 @@ Do you want to overwrite it? Password quality Výbroné + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6129,6 +7238,21 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6167,6 +7291,10 @@ Do you want to overwrite it? Continue Pokračovať + + Continue with weak password + + QObject @@ -6560,6 +7688,10 @@ Do you want to overwrite it? Too many arguments provided. Príliš veľa argumentov. + + Path of the database. + Cesta k databáze. + Target decryption time in MS for the database. Cieľový čas dešifrovania databázy v ms. @@ -6580,10 +7712,6 @@ Do you want to overwrite it? Create a new database. Vytvoriť novú databázu. - - Path of the database. - Cesta k databáze. - Invalid decryption time %1. Neplatný čas dešifrovania %1. @@ -6628,6 +7756,158 @@ Do you want to overwrite it? Successfully created new database. Úspešne vytvorená nová databáza. + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + + + + Database was not modified. + + + + Writing the database failed: %1 + Zápis do databázy zlyhal: %1 + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + Zobraziť informácie databázy. + + + UUID: + UUID: + + + Name: + Názov: + + + Description: + Popis: + + + Cipher: + Šifra: + + + KDF: + KDF: + + + Recycle bin is enabled. + Odpadkový kôš je zapnutý. + + + Recycle bin is not enabled. + Odpadkový kôš nie je zapnutý. + + + Location + Umiestnenie + + + Database created + Databáza vytvorená + + + Last saved + Naposledy uložené + + + Unsaved changes + Neuložené zmeny + + + yes + áno + + + no + nie + + + Number of groups + Počet skupín + + + Number of entries + Počet položiek + + + Number of expired entries + Počet položiek po dobe platnosti + + + Unique passwords + Jedinečné heslá + + + Non-unique passwords + Nie jedinečné heslá + + + Maximum password reuse + Maximálny počet opakovane použitých hesiel + + + Number of short passwords + Počet krátkych hesiel + + + Number of weak passwords + Počet slabých hesiel + + + Entries excluded from reports + Položky vylúčené z hlásení + + + Average password length + Priemerná dĺžka hesla + + + %1 characters + %1 znakov + Word count for the diceware passphrase. Počet slov pre diceware tajnú vetu. @@ -6651,10 +7931,6 @@ Do you want to overwrite it? Invalid word count %1 Neplatný počet slov %1 - - The word list is too small (< 1000 items) - Zoznam slov je príliš krátky (< 1000 položiek) - Title for the entry. Názov položky. @@ -6679,10 +7955,6 @@ Do you want to overwrite it? Enter new password for entry: Zadajte nové heslo položky: - - Writing the database failed: %1 - Zápis do databázy zlyhal: %1 - Successfully edited entry %1. Úspešne upravená položka %1. @@ -6803,10 +8075,6 @@ Do you want to overwrite it? Exit interactive mode. Ukončiť interaktívny režim. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Formát exportu. Dostupné voľby sú „xml” alebo „csv”. Predvolene „xml”. - Exports the content of a database to standard output in the specified format. Exportuje obsah databázy na štandardný výstup v zadanom formáte. @@ -6907,106 +8175,6 @@ Do you want to overwrite it? Successfully imported database. Úspešne importovaná databáza. - - Show a database's information. - Zobraziť informácie databázy. - - - UUID: - UUID: - - - Name: - Názov: - - - Description: - Popis: - - - Cipher: - Šifra: - - - KDF: - KDF: - - - Recycle bin is enabled. - Odpadkový kôš je zapnutý. - - - Recycle bin is not enabled. - Odpadkový kôš nie je zapnutý. - - - Location - Umiestnenie - - - Database created - Databáza vytvorená - - - Last saved - Naposledy uložené - - - Unsaved changes - Neuložené zmeny - - - yes - áno - - - no - nie - - - Number of groups - Počet skupín - - - Number of entries - Počet položiek - - - Number of expired entries - Počet položiek po dobe platnosti - - - Unique passwords - Jedinečné heslá - - - Non-unique passwords - Nie jedinečné heslá - - - Maximum password reuse - Maximálny počet opakovane použitých hesiel - - - Number of short passwords - Počet krátkych hesiel - - - Number of weak passwords - Počet slabých hesiel - - - Entries excluded from reports - Položky vylúčené z hlásení - - - Average password length - Priemerná dĺžka hesla - - - %1 characters - %1 znakov - Unknown command %1 Neznáma príkaz %1 @@ -7179,6 +8347,10 @@ Dostupné príkazy: Show the protected attributes in clear text. Zobraziť chránené atribúty ako prostý text. + + Show all the attributes of the entry. + + Show the attachments of the entry. @@ -7249,6 +8421,10 @@ Prosím, zvážte vygenerovanie nového súboru kľúča. Invalid YubiKey serial %1 Neplatné sériové číslo Yubikey %1 + + Please present or touch your YubiKey to continue. + + Enter password to encrypt database (optional): Zadajte heslo na zašifrovanie databázy (voliteľné): @@ -7435,8 +8611,8 @@ Jadro: %3 %4 - Botan library must be at least 2.11.x, found %1.%2.%3 - Knižnica Botan musí byť aspoň 2.11.x, nájdené %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Cryptographic libraries: @@ -7486,18 +8662,6 @@ Jadro: %3 %4 file empty prázdny súbor - - malformed string - zlý formát reťazca - - - missing closing quote - chýba koncová úvodzovka - - - %1: (row, col) %2,%3 - %1: (riadok, stĺpec) %2, %3 - AES 256-bit AES 256b @@ -7676,14 +8840,6 @@ Jadro: %3 %4 read password of the database from stdin čítať heslo databázy zo stdin - - allow app screen recordering and screenshots - - - - Locked databases. - Zamknuté databázy. - Database failed to lock. Zamknutie databázy zlyhalo. @@ -7692,6 +8848,10 @@ Jadro: %3 %4 Another instance of KeePassXC is already running. Už je spustená iná inštancia KeePassXC. + + KeePassXC is not running. No open database to lock + + Fatal error while testing the cryptographic functions. Fatálna chyba pri testovaní kryptografických funkcií. @@ -7700,10 +8860,6 @@ Jadro: %3 %4 KeePassXC - Error KeePassXC – Chyba - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Heslo databázy: @@ -7727,7 +8883,310 @@ Jadro: %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Odstrániť dáta zásuvného modulu? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags @@ -7765,20 +9224,39 @@ Jadro: %3 %4 Interná chyba zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Vylúčiť vypršané položky z hlásenia - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. @@ -7843,44 +9321,53 @@ Jadro: %3 %4 Exclude from reports Vylúčiť z hlásení + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - Vylúčiť vypršané položky z hlásenia + Show expired entries + - Also show entries that have been excluded from reports - Zobraziť aj položky vylúčené z hlásení + (Expired) + Hover over reason to show additional details. Double-click entries to edit. Prejdite myšou na príčinou, na zobrazenie dodatočných podrobností. Dvojklikom na položku ju upravíte. - - Bad - Password quality - Zlé - Bad — password must be changed Zlé — heslo treba zmeniť - - Poor - Password quality - Biedne - Poor — password should be changed Biedne — heslo by ste mali zmeniť - - Weak - Password quality - Slabé - Weak — consider changing the password Slabé — zvážte zmenu hesla @@ -7929,6 +9416,14 @@ Jadro: %3 %4 Exclude from reports Vylúčiť z hlásení + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -8024,6 +9519,77 @@ Jadro: %3 %4 Exclude from reports Vylúčiť z hlásení + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Export + + + Import + Importovať + + + List of entry URLs + + + + Title + Nadpis + + + Path + Cesta + + + Username + Používateľské meno + + + URLs + + + + Edit Entry… + Upraviť položku… + + + Delete Entry(s)… + Odstrániť položku…Odstrániť položky…Odstrániť položky…Odstrániť položky… + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + Potvrdenie exportu + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8198,6 +9764,14 @@ Jadro: %3 %4 No agent running, cannot list identities. Nie je spustený agent, nemožno získať zoznam identít. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8264,6 +9838,10 @@ Jadro: %3 %4 Search Help Hľadať v pomocníkovi + + Save Search + + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8338,26 +9916,10 @@ Jadro: %3 %4 Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching @@ -8382,6 +9944,14 @@ Jadro: %3 %4 Save current changes to activate the plugin and enable editing of this section. Uložte aktuálne zmeny na aktiváciu zásuvného modulu a zapnutie úpravy tejto sekcie. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8490,7 +10060,11 @@ Jadro: %3 %4 TagModel - All + Clear Search + + + + All Entries @@ -8502,6 +10076,25 @@ Jadro: %3 %4 + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? + + + TotpDialog @@ -8659,26 +10252,6 @@ Napríklad: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Začnite ukladať svoje heslá bezpečne v databáze KeePassXC - - Create new database - Vytvoriť novú databázu - - - Open existing database - Otvoriť existujúcu databázu - - - Import from KeePass 1 - Importovať z KeePass 1 - - - Import from 1Password - Importovať z 1Password - - - Import from CSV - Importované z CSV - Recent databases Nedávne databázy @@ -8691,6 +10264,18 @@ Napríklad: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Vitajte v KeePassXC %1 + + Create Database + + + + Open Database + + + + Import File + + WinUtils @@ -8707,31 +10292,8 @@ Napríklad: JBSWY3DPEHPK3PXP Nemožno registrovať globálnu klávesovú skratku - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: @@ -8743,14 +10305,6 @@ Napríklad: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Obnoviť hardvérové tokeny - - - Refresh - Obnoviť - Hardware key slot selection Výber slotu hardvérového kľúča @@ -8783,10 +10337,6 @@ Napríklad: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… Detekcia hardvérových kľúčov… @@ -8795,28 +10345,25 @@ Napríklad: JBSWY3DPEHPK3PXP No hardware keys detected Nenájdené žiadne hardvérové kľúče - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 zadaný neplatný slot – %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - Hardvérový kľúč je práve používaný. - Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8833,6 +10380,21 @@ Napríklad: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Stlačiť + + + Passive + USB Challenge-Response Key no interaction required + Pasívne + YubiKeyInterfaceUSB @@ -8840,14 +10402,6 @@ Napríklad: JBSWY3DPEHPK3PXP Unknown Neznámy - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8862,10 +10416,6 @@ Napríklad: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - Hardvérový kľúč je práve používaný. - Could not find hardware key with serial number %1. Please plug it in to continue. Nemožno nájsť hardvérový kľúč so sériovým číslom %1. Prosím, pripojte ho na pokračovanie. @@ -8882,5 +10432,15 @@ Napríklad: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Zlyhalo dokončenie výzvy.odpovede, konkrétna chyba bola: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_sq.ts b/share/translations/keepassxc_sq.ts new file mode 100644 index 000000000..41f7e88b9 --- /dev/null +++ b/share/translations/keepassxc_sq.ts @@ -0,0 +1,10480 @@ + + + AboutDialog + + About KeePassXC + Mbi KeePassXC-ën + + + About + Mbi + + + Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a> + Njoftoni të meta te: <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 shpërndahet sipas kushteve të licencës GNU General Public License (GPL) version 2 ose (në dorën tuaj) version 3. + + + Project Maintainers: + Mirëmbajtës Projekti: + + + Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. + Falënderime speciale nga ekipi KeePassXC për debfx për krijimin e KeePassX-it origjinal. + + + Contributors + Kontribues + + + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> + <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">Shihni Kontribues në GitHub</a> + + + Debug Info + Hollësi Diagnostikimi + + + Include the following information whenever you report a bug: + Përfshini hollësitë vijuese, kurdo që raportoni një të metë: + + + Copy to clipboard + Kopjoje në të papastër + + + + AccessControlDialog + + KeePassXC - Access Request + KeePassXC - Kërkesë Hyrjeje + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Shteg të ekzekutueshmi që s’ekziston/ ku s’mund të hyhet. Ju lutemi, rikontrolloni që klienti është i ligjshëm. + + + <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">%1 </span>po kërkon hyrje te zërat vijues:</p></body></html> + + + Name + Emër + + + PID + PID + + + Executable + I ekzekutueshëm + + + Command Line + Rresht Urdhrash + + + Details + Hollësi + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Vendimi juaj do të mbahet mend për kohëzgjatjen, teksa xhirojnë që të dy, klienti DHE KeePassXC-ja. + + + Remember + Mbaje mend + + + Allow Selected + Lejo të Përzgjedhurin + + + Deny All && Future + Moho Krejt të && Ardhmet + + + Allow All && &Future + Lejo Krejt të && Ardhmet + + + + AccessControlDialog::DenyButton + + Deny for this program + Mohoje për këtë program + + + + AgentSettingsWidget + + Enable SSH Agent integration + Aktivizo integrim Agjenti SSH + + + Use Pageant + Përdor Pageant + + + Use OpenSSH + Përdor OpenSSH + + + Use both agents + Përdoru të dy agjentët + + + SSH_AUTH_SOCK override + Anashkalim SSH_AUTH_SOCK + + + SSH_AUTH_SOCK value + Vlerë SSH_AUTH_SOCK + + + (empty) + (e zbrazët) + + + SSH_SK_PROVIDER value + Vlerë SSH_SK_PROVIDER + + + SSH_SK_PROVIDER override + Anashkalim SSH_SK_PROVIDER + + + No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. + S’ka kanal Agjenti SSH të passhëm. Ose sigurohuni se ndryshorja SSH_AUTH_SOCK e mjedisit ekziston, ose caktoni për të një anashkalim. + + + SSH Agent connection is working! + Lidhja e Agjentit SSH funksionon! + + + + ApplicationSettingsWidget + + Application Settings + Rregullime Aplikacioni + + + General + Të përgjithshme + + + Security + Siguri + + + This setting cannot be enabled when minimize on unlock is enabled. + Ky rregullim s’mund të aktivizohet, kur është aktivizuar “Minimizoje gjatë shkyçjes”. + + + Access error for config file %1 + Gabim hyrjeje në kartelë formësimi %1 + + + Icon only + Vetëm ikonë + + + Text only + Vetëm tekst + + + Text beside icon + Tekst në krah të ikonës + + + Text under icon + Tekst nën ikonë + + + Follow style + Ndiq stilin + + + Monochrome + Njëngjyrësh + + + Monochrome (light) + Njëngjyrësh (i çelët) + + + Monochrome (dark) + Njëngjyrësh (i errët) + + + Colorful + Shumëngjyrësh + + + You must restart the application to set the new language. Would you like to restart now? + Që të caktoni gjuhën e re, duhet të rinisni aplikacionin. Do të donit të riniset tani? + + + Select backup storage directory + Përzgjidhni drejtori depozitë kopjeruajtjesh + + + Confirm Reset + Ripohoni Kthimin te Parazgjedhja + + + Are you sure you want to reset all settings to default? + Jeni i sigurt se doni të kthehen krejt rregullimet te parazgedhjet? + + + Import KeePassXC Settings + Importo Rregullime KeePassXC + + + Failed to import settings from %1, not a valid settings file. + S’u arrit të importoheshin rregullime nga %1, s’është kartelë rregullimesh e vlefshme. + + + Export KeePassXC Settings + Eksporto Rregullime KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + + + + ApplicationSettingsWidgetGeneral + + Basic Settings + Rregullime Bazë + + + Startup + Nisje + + + Start only a single instance of KeePassXC + Nis vetëm një instancë njëshe të KeePassXC-së + + + Automatically launch KeePassXC at system startup + Hape automatikisht KeePassXC-në gjatë nisjes së sistemit + + + Minimize window at application startup + Minimizoje dritaren gjatë nisjes së aplikacionit + + + Minimize window after unlocking database + Minimizoje dritaren, pas shkyçjes së bazës së të dhënave + + + Remember previously used databases + Mbaj mend baza të dhënash të mëparshme + + + recent files + kartela së fundi + + + Load previously open databases on startup + Ngarko gjatë nisjes baza të dhënash të hapura më parë + + + Remember database key files and security dongles + Mbaj mend kartela kyçesh baze të dhënash dhe marifetesh sigurie + + + Check for updates at application startup once per week + Kontrollo një herë në javë për përditësime gjatë nisjes së aplikacionit + + + Include beta releases when checking for updates + Kur kontrollohet për përditësime, përfshi hedhje beta në qarkullim + + + File Management + Administrim Kartelash + + + Automatically save after every change + Ruaje automatikisht pas çdo ndryshimi + + + Automatically save when locking database + Ruaje automatikisht, kur kyçet bazë të dhënash + + + Automatically save non-data changes when locking database + Ruaj automatikisht ndryshime jo të dhënash, kur kyçet bazë të dhënash + + + Automatically reload the database when modified externally + Ringarko automatikisht bazën e të dhënave, kur ndryshohet nga jashtë + + + Backup database file before saving + Kopjeruani kartelën e bazës tuaj të të dhënave, përpara ruajtjes + + + {DB_FILENAME}.old.kdbx + {DB_FILENAME}.old.kdbx + + + Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) + Përdorni metodë alternative ruajtje (mund të zgjidhë probleme me Dropbox, Google Drive, GVFS, etj.) + + + Temporary file moved into place + Kartela e përkohshme u vu në vend + + + Directly write to database file (dangerous) + Shkruaj drejtpërsëdrejti te kartelë baze të dhënash (e rrezikshme) + + + Entry Management + Administrim Zërash + + + Use group icon on entry creation + Përdor ikonë grupi gjatë krijimi zëri + + + Minimize when opening a URL + Minimizoje, kur hapet një URL + + + Hide window when copying to clipboard + Fshihe dritaren, kur kopjohet te e papastër + + + Minimize + Minimizoje + + + Drop to background + Lëre në sfond + + + Favicon download timeout: + Mbarim kohe shkarkimi favikone: + + + Website icon download timeout in seconds + Mbarim kohe shkarkimi ikonash sajtesh, në sekonda + + + sec + Seconds + sek + + + User Interface + Ndërfaqe Përdoruesi + + + Toolbar button style + Stil butonash paneli + + + Movable toolbar + Panel i lëvizshëm + + + Language selection + Përzgjedhje gjuhe + + + Language: + Gjuhë: + + + (restart program to activate) + (që të aktivizohet, rinisni programin) + + + Toolbar button style: + Stil butonash paneli: + + + Show passwords in color + Shfaqi fjalëkalimet me ngjyra + + + Use monospaced font for notes + Për shënime përdor shkronja Monospace + + + Minimize instead of app exit + Minimizoje, në vend se të dilet nga aplikacioni + + + Show a system tray icon + Shfaq ikonë shtylle sistemi + + + Tray icon type + Lloj ikone paneli + + + Tray icon type: + Lloj ikone paneli: + + + Hide window to system tray when minimized + Fshihe dritaren te shtyllë sistemi, kur minimizohet + + + Reset settings to default… + Rikthe rregullimet te parazgjedhjet… + + + Auto-Type + Vetë-Shtype + + + Use entry title to match windows for global Auto-Type + Përdor titull zëri për kërkim dritaresh me përputhjeje, për Vetë-shtypje globale + + + Use entry URL to match windows for global Auto-Type + Përdor URL zëri për kërkim dritaresh me përputhjeje, për Vetë-shtypje globale + + + Always ask before performing Auto-Type + Pyet përherë, para kryerjes së Vetë-Shtypjes + + + Hide expired entries from Auto-Type + Fshih nga Vetë-Shtypje zëra të skaduar + + + Re-lock previously locked database after performing Auto-Type + Pas kryerjes së Vetë-Shtypjes, rikyç bazë të dhënash të kyçur më parë + + + Auto-Type start delay: + Vonesë nisjeje Vetë-Shtypjeje: + + + Global Auto-Type shortcut: + Shkurtore globale Vetë-Shtypjeje: + + + Auto-type start delay milliseconds + Milisekonda vonese nisjeje Vetë-Shtypjeje + + + ms + Milliseconds + ms + + + Auto-Type typing delay: + Vonesë shtypjeje vetë-shtypjeje: + + + Global auto-type shortcut + Shkurtore globale vetë-shtypjeje + + + Auto-type character typing delay milliseconds + Milisekonda vonese shtypjeje shenjash Vetë-Shtypjeje + + + Remember last typed entry for: + Mbaje mend zërin e fundit të shtypur për: + + + On database unlock, show entries that will expire within + Kur shkyçet bazë të dhënash, shfaq zëra që do të skadojnë brenda + + + On database unlock, show entries that will expire within + Kur shkyçet bazë të dhënash, shfaq zëra që do të skadojnë brenda + + + days + number of days warning for password expiration + ditësh + + + Destination format: + Format vendmbërritje: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> zëvendësohet me emrin e kartelës të bazës së të dhënave të ruajtur, pa zgjatim</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> zëvendësohet me formatin e përcaktuar të kohës (parazgjedhje: dd_MM_yyyy_hh-mm-ss)</p><p>Për më tepër hollësi, shihni Udhërrëfyes Përdoruesi</p></body></html> + + + Choose folder... + Zgjidhni dosje… + + + Show confirmation before moving entries to recycle bin + Shfaq hap ripohimi para kalimit të zërave te koshi i riciklimeve + + + Copy data on double clicking field in entry view + Me dyklikim të një fushe, te pamja e zërit, kopjo të dhënat + + + Show toolbar + Shfaq panelin + + + Show the menu bar by pressing the Alt key + Shfaq shtyllë menuje, kur shtypet tasti Alt + + + Show menubar + Shfaq shtyllë menuje + + + Import settings… + Importoni rregullime… + + + Export settings… + Eksportoni rregullime… + + + Open browser on double clicking URL field in entry view + Me dyklikim të fushës së URL-së, te pamja e zërit, hap shfletuesin + + + Font size: + + + + Font size selection + + + + + ApplicationSettingsWidgetSecurity + + Timeouts + Mbarime kohe + + + Database lock timeout seconds + Sekonda mbarimi kohe kyçjeje baze të dhënash + + + sec + Seconds + sek + + + Clear clipboard after + Spastro të papastrën pas + + + Clear search query after + Spastro kërkesë kërkimi pas + + + min + Minutes + min + + + Clipboard clear seconds + Sekonda spastrimi baze të dhënash + + + Lock databases after inactivity of + Kyçi bazat e të dhënave pas mosveprimi prej + + + Convenience + Leverdi + + + Enable database quick unlock (Touch ID / Windows Hello) + Aktivizo shkyçje të shpejtë baze të dhënash (Touch ID / Windows Hello) + + + Lock databases when session is locked or lid is closed + Kyçi bazat e të dhënave, kur kyçet sesioni, ose mbyllet kapaku i portativit + + + Lock databases after minimizing the window + Kyçi bazat e të dhënave pas minimizimit të dritares + + + Hide passwords when editing them + Fshihi fjalëkalimet, kur përpunohen + + + Use placeholder for empty password fields + Për fusha të zbrazëta fjalëkalimesh përdor vendmbajtëse + + + Hide passwords in the entry preview panel + Fshihi fjalëkalimet, te paneli i paraparjes së zërave + + + Privacy + Privatësi + + + Use DuckDuckGo service to download website icons + Për të shkarkuar ikona sajtesh përdor shërbimin DuckDuckGo + + + Hide TOTP in the entry preview panel + Fshih TOTP, te paneli i paraparjes së zërave + + + Lock databases when switching user + Kyçi bazat e të dhënave, kur ndërrohet përdorues + + + Lock Options + Mundësi Kyçjeje + + + Hide notes in the entry preview panel + Fshihi shënimet, te paneli i paraparjes së zërave + + + + AutoType + + The requested Auto-Type sequence cannot be used due to an error: + Sekuenca e kërkuar për Vetë-shtypje s’mund të përdoret, për shkak të një gabimi: + + + Auto-Type Error + Gabim Vetë-Shtypje + + + Permission Required + Lypset Leje + + + KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. + KeePassXC-ja lyp leje Përdorimi Nga Persona Me Aftësi të Kufizuara, që të mund të kryejë Vetë-Shtypje të nivelit elementar. Nëse e keni akorduar tashmë lejen, mund t’ju duhet të rinisni KeePassXC-në. + + + KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. + KeePassXC-ja lyp leje Përdorimi Nga Persona Me Aftësi të Kufizuara dhe Regjistruesi Ekrani, që të mund të kryejë Vetë-Shtypje globale. Regjistrimi i Ekranit është i nevojshëm për të përdorur titullin e dritares për të gjetur zëra. Nëse e keni akorduar tashmë lejen, mund t’ju duhet të rinisni KeePassXC-në. + + + Invalid entry provided + U dha zë i pavlefshëm + + + Bracket imbalance detected, found extra { or } + U pikas kllapë e pambyllur, u gjet { ose } ekstra + + + Too many repetitions detected, max is %1: %2 + U pikasën shumë përsëritje, maksimumi është %1: %2 + + + Very slow key press detected, max is %1: %2 + U pikas shtypje shumë e ngadaltë tastesh, maksimumi është %1: %2 + + + Very long delay detected, max is %1: %2 + U pikas shtypje shumë e gjatë tastesh, maksimumi është %1: %2 + + + Entry does not have attribute for PICKCHARS: %1 + Zëri s’ka atribut për PICKCHARS: %1 + + + Invalid placeholder: %1 + Vendmbajtëse e pavlefshme: %1 + + + + AutoTypeAssociationsModel + + Window + Dritare + + + Sequence + Sekuencë + + + (empty) + (e zbrazët) + + + Default sequence + Sekuencë parazgjedhje + + + + AutoTypeMatchModel + + Group + Grup + + + Title + Titull + + + Username + Emër përdoruesi + + + Sequence + Sekuencë + + + + AutoTypePlatformX11 + + Sequence aborted: Caps Lock is on + Sekuenca u ndërpre: Caps Lock është aktiv + + + Sequence aborted: Modifier keys held by user + Sekuenca u ndërpre: Taste ndryshues shtypur nga përdoruesi + + + Unable to get valid keycode for key: + S’arrihet të merret kod i vlefshëm tasti për tastin: + + + Trying to send invalid keyboard symbol. + Po provohet të dërgohet simbol i pavlefshëm tastiere. + + + + AutoTypeSelectDialog + + Auto-Type - KeePassXC + Vetë-Shtypje - KeePassXC + + + Double click a row to perform Auto-Type or find an entry using the search: + Dyklikoni mbi një rresht, që të kryhet Vetë-Shtypje, ose gjeni një zë duke përdorur kërkimin: + + + <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> +Ctrl+F - Toggle database search<br/> +Ctrl+1 - Type username<br/> +Ctrl+2 - Type password<br/> +Ctrl+3 - Type TOTP<br/> +Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> + <p>Mund të përdorni kërkim të thelluar, për të gjetur çfarëdo zëri në bazat tuaja të hapura të të dhënave. Janë të dobishme shkurtoret vijuese:<br/> +Ctrl+F - Hap/Mbyll kërkim në bazë të dhënash<br/> +Ctrl+1 - Shtypni emër përdoruesi<br/> +Ctrl+2 - Shtypni fjalëkalim<br/> +Ctrl+3 - Shtypni TOTP<br/> +Ctrl+4 - Përdorni Tastierë Virtuale (Vetëm në Windows)</p> + + + Search all open databases + Kërko në krejt bazat e hapura të të dhënave + + + Search… + Kërkoni… + + + Type Sequence + Shtypni Sekuencë + + + Cancel + Anuloje + + + Type {USERNAME} + Shtypni {EMËR_PËRDORUESI} + + + Type {PASSWORD} + Shtypni {FJALËKALIM} + + + Type {TOTP} + Shtypni {TOTP} + + + Copy Username + Kopjo Emër Përdoruesi + + + Copy Password + Kopjo Fjalëkalimin + + + Copy TOTP + Kopjo TOTP + + + Use Virtual Keyboard + Përdor Tastierë Virtuale + + + + BrowserAccessControlDialog + + KeePassXC - Browser Access Request + KeePassXC - Kërkesë Për Hyrje Nga Shfletues + + + %1 is requesting access to the following entries: + %1 po kërkon të hyjë te zërat vijuese: + + + Remember access to checked entries + Mbaj mend hyrje te zërat e me shenjë + + + Remember + Mbaje mend + + + Allow access to entries + Lejoni hyrje te zëra + + + Allow Selected + Lejo të Përzgjedhurën + + + Deny All + Mohoji Krejt + + + Disable for this site + Çaktivizoje për këtë sajt + + + Undo + Zhbëje + + + + BrowserEntrySaveDialog + + Ok + Ok + + + Cancel + Anuloje + + + You have multiple databases open. +Please select the correct database for saving credentials. + Keni të hapura disa baza të dhënash. +Ju lutemi, përzgjidhni bazën e saktë të të dhënave për ruajtje kredencialesh. + + + KeePassXC - Select Database + KeePassXC - Përzgjidhni Bazë të Dhënash + + + + BrowserPasskeysConfirmationDialog + + Cancel + Anuloje + + + Update + Përditësoje + + + Authenticate + Bëni mirëfilltësimin + + + Register new + Regjistroni të ri + + + Register + Regjistroje + + + Timeout in <b>%n</b> seconds... + Mbarim kohe në <b>%n</b> sekondë…Mbarim kohe në <b>%n</b> sekonda… + + + Relying Party: %1 + + + + Username: %1 + Emër përdoruesi: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Kredenciale kyçkalimi + + + Add to existing entry + Shtoje te zë ekzistues + + + Existing passkey found. +Do you want to register a new passkey for: + U gjet kyçkalim ekzistues. +Doni të regjistrohet një kyçkalim i ri për: + + + Select the existing passkey and press Update to replace it. + Përzgjidhni kyçkalimin ekzistues dhe shtypni Përditësoje, që të zëvendësohet. + + + Authenticate passkey credentials for: + Bëj mirëfilltësimin e kredencialeve të kodkalimit për: + + + Do you want to register a passkey for: + Doni të regjistrohet një kyçkalim për: + + + + BrowserService + + A request for creating a new group "%1" has been received. +Do you want to create this group? + + Është marrë një kërkesë për krijimin e një grupi të ri “%1”. +Doni të krijohet ky grup? + + + + You have received an association request for the following database: +%1 + +Give the connection a unique name or ID, for example: +chrome-laptop. + Keni marrë një kërkesë përshoqërimi për bazën vijuese të të dhënave: +%1 + +Jepini lidhje një emër ose ID unike, për shembull: +chrome-laptop. + + + Save and allow access + Ruaje dhe lejo hyrje + + + A shared encryption key with the name "%1" already exists. +Do you want to overwrite it? + Ka tashmë një kyç të përbashkët fshehtëzimi me emrin “%1”. +Doni të mbishkruhet? + + + Do you want to update the information in %1 - %2? + Doni të përditësohet informacioni në %1 - %2 kb? + + + A request for deleting entry "%1" has been received. +Do you want to delete the entry? + + Është marrë një kërkesë për fshirjen e zërit “%1”. +Doni të fshihet zëri? + + + + %1 (Passkey) + %1 (Kyçkalim) + + + KeePassXC - Create a new group + KeePassXC - Krijoni një grup të ri + + + Disable + Çaktivizoje + + + KeePassXC - Overwrite existing key? + KeePassXC - Të mbishkruhet kyçi ekzistues? + + + KeePassXC - Update Entry + KeePassXC - Përditësoje Zërin + + + KeePassXC - Delete entry + KeePassXC - Fshije zërin + + + KeePassXC - New key association request + KeePassXC - Kërkesë për përshoqërim të ri kyçi + + + Passkey + Kyçkalim + + + KeePassXC - Passkey credentials + KeePassXC - Kredenciale kyçkalimi + + + Register a new passkey to this entry: + Regjistroni një kyçkalim të ri për këtë zë: + + + KeePassXC - Update passkey + KeePassXC - Përditësoni kyçkalim + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Zëri ka tashmë një kyçkalim. +Doni të mbishkruhet kyçkalimi te %1 - %2? + + + Register + Regjistroje + + + + BrowserSettingsWidget + + Dialog + Dialog + + + This is required for accessing your databases with KeePassXC-Browser + Kjo është e domosdoshme për të hyrë në bazat tuaja të të dhënave me Shfletuesin KeePassXC + + + Enable browser integration + Aktivizoni integrim shfletuesi + + + General + Të përgjithshme + + + Enable integration for these browsers: + Aktivizo integrim për këta shfletues: + + + Vivaldi + Vivaldi + + + &Edge + &Edge + + + Firefox + Firefox + + + Tor Browser + Shfletuesi Tor + + + Brave + Brave + + + Google Chrome + Google Chrome + + + Chromium + Chromium + + + Show a notification when credentials are requested + Credentials mean login data requested via browser extension + Shfaq një njoftim, kur lypsen kredenciale + + + Request to unlock the database if it is locked + Kërko të shkyçet baza e të dhënave, nëse është e kyçur + + + Only entries with the same scheme (http://, https://, …) are returned. + Sillen vetëm zëra me të njëjtën skemë (http://, https://, …). + + + Match URL scheme (e.g., https://example.com) + Kërko përkim me skemë URL-je (p.sh., https://example.com) + + + Only returns the best matches for a specific URL instead of all entries for the whole domain. + Sillen vetëm përkimet më të mira për një URL të dhënë, në vend se krejt zërat për përkatësinë si e tërë. + + + Return only best-matching credentials + Sill vetëm kredencialet që përputhen më mirë + + + Returns expired credentials. String [expired] is added to the title. + Sjell kredenciale të skaduara. Te titulli shtohet vargu [expired]. + + + Allow returning expired credentials + Lejo sjellje kredencialesh të skaduara + + + All databases connected to the extension will return matching credentials. + Krejt bazat e të dhënave të lidhura me zgjerimin do të sjellin kredenciale me përkim. + + + Search in all opened databases for matching credentials + Credentials mean login data requested via browser extension + Kërko në krejt bazat e hapura të të dhënave për kredenciale me përkim + + + Advanced + Të mëtejshme + + + Never ask before accessing credentials + Credentials mean login data requested via browser extension + Mos pyet kurrë para hyrjes në kredenciale + + + Never ask before updating credentials + Credentials mean login data requested via browser extension + Mos pyet kurrë para përditësimit të kredencialeve + + + Do not ask permission for HTTP Basic Auth + An extra HTTP Basic Auth setting + Mos kërko leje për Mirëfillësim HTTP Elementar + + + Automatically creating or updating string fields is not supported. + Nuk mbulohet krijim apo përditësim i automatizuar i fushave të vargjeve. + + + Return advanced string fields which start with "KPH: " + Sill fusha të thelluara vargjesh që fillojnë me “KPH: ” + + + Don't display the popup suggesting migration of legacy KeePassHTTP settings. + Mos e shfaq flluskën që sugjeron migrim të rregullimeve të dikurshme për KeePassHTTP. + + + Do not prompt for KeePassHTTP settings migration. + Mos pyet për migrim rregullimesh për KeePassHTTP. + + + Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. + + + + Update native messaging manifest files at startup + + + + Use a custom proxy location if you installed a proxy manually. + Përdorni një vendndodhje vetjake ndërmjetësi, nëse instaluat dorazi një ndërmjetës. + + + Use a custom proxy location: + Meant is the proxy for KeePassXC-Browser + Përdor një vendndodhje vetjake ndërmjetësi: + + + Custom proxy location field + Fushë vendndodhjeje vetjake ndërmjetësi + + + Browser for custom proxy file + Shfletues për kartelë vetjake ndërmjetësi + + + Browse… + Button for opening file dialog + Shfletoni… + + + Use a custom browser configuration location: + Përdor një vendndodhje vetjake formësimi shfletuesi: + + + Browser type: + Lloj shfletuesi: + + + Toolbar button style + Stil butoni paneli + + + Config Location: + Vendndodhje Formësimi: + + + Custom browser location field + Fushë vendndodhjeje vetjake shfletuesi + + + Browse for custom browser path + Shfletoni për shteg shfletuesi vetjak + + + Custom extension ID: + ID zgjerimi vetjak: + + + Custom extension ID + ID zgjerimi vetjak + + + Executable Files + Kartela të Ekzekutueshmish + + + All Files + Krejt Kartelat + + + Select custom proxy location + Përzgjidhni vendndodhje ndërmjetësi vetjak + + + Select native messaging host folder location + + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Kujdes:</b> Këto rregullime përimtojini vetëm nëse është e nevojshme. + + + The custom proxy location does not exist. + Vendndodhja e ndërmjetësit vetjak s’ekziston. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Gabim:</b> Vendndodhja e ndërmjetësit vetjak s’ekziston. Ndreqeni këtë te skeda e rregullimeve të mëtejshme. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Gabim:</b> I ekzekutueshmi për ndërmjetësin e instaluar mungon te vendndodhja e pritur: %1<br/>Ju lutemi, caktoni një vendndodhje ndërmjetësi vetjak, te rregullimet e mëtejshme, ose riinstaloni aplikacionin. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Lejon përdorim http://localhost jo të siguruar me kodkalime, për qëllime testimi. + + + Allow using localhost with passkeys + Lejo përdorim localhost-i me kodkalime + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Që të funksionojë integrimi i shfletuesit, është i nevojshëm Shfletuesi KeePassXC. <br />Shkarkojeni për %1 dhe %2 dhe %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + + + + CloneDialog + + Clone Entry Options + Mundësi Klonimi Zëri + + + Append ' - Clone' to title + Shto “ - Clone” te titulli + + + Replace username and password with references + Zëvendëso emër përdoruesi dhe fjalëkalim me referenca + + + Copy history + Kopjoji historikun + + + + CsvImportWidget + + size, rows, columns + madhësi, rreshta, shtylla + + + Column Association + Përshoqërim Shtyllash + + + Password + Fjalëkalim + + + Username + Emër përdoruesi + + + Title + Titull + + + Group + Grup + + + URL + URL + + + Notes + Shënime + + + TOTP + TOTP + + + Created + Krijuar Më + + + Last Modified + Ndryshuar Së Fundi Më + + + Icon + Ikonë + + + Encoding + Kodim + + + Codec + Kodek + + + Text is qualified by + + + + Text qualification + + + + Fields are separated by + Fushat ndahen me + + + Field separation + Ndarje fushash + + + Comments start with + Komentet fillojnë me + + + Header lines skipped + U anashkaluan rreshta kryesh + + + Number of header lines to discard + Numër rreshtash kryesh për t’u anashkaluar + + + First line has field names + Rreshti i parë përmban emra fushash + + + Consider '\' an escape character + Konsideroje '\' shenjë paraprijëse + + + Preview + Paraparje + + + CSV import preview + Paraparje importimi CSV + + + Not Present + Jo i Pranishëm + + + Column %1 + Shtylla %1 + + + [%n more message(s) skipped] + [%n mesazh tjetër i anashkaluar][%n mesazhe të tjerë të anashkaluar] + + + Failed to parse CSV file: %1 + S’u arrit të analizohej kartelë CSV: %1 + + + Imported from CSV file: %1 + Importuar nga kartelë CSV: %1 + + + No Title Selected + S’u Përzgjodh Titull + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + S’u përzgjodh shtyllë titujsh, do të jetë e vështirë të dallohen zërat njëri nga tjetri. +Jeni i sigurt se doni të importohet? + + + Tags + Etiketa + + + + CsvParserModel + + %n row(s) + CSV row count + %n rresht%n rreshta + + + %n column(s) + CSV column count + %n shtyllë%n shtylla + + + + Database + + Passwords + Root group name + Fjalëkalime + + + File %1 does not exist. + Kartela %1 s’ekziston. + + + Unable to open file %1. + S’arrihet të hapet kartela %1. + + + Error while reading the database: %1 + Gabim gjatë leximit të bazës së të dhënave: %1 + + + Could not save, database does not point to a valid file. + S’u ruajt dot, baza e të dhënave s’tregon ndonjë kartelë të vlefshme. + + + Database save is already in progress. + Ruajtja e bazës së të dhënave është në kryerje e sipër. + + + Could not save, database has not been initialized! + S’u ruajt dot, baza e të dhënave s’është gatitur! + + + Database file has unmerged changes. + Kartela e bazës së të dhënave ka ndryshime të papërziera. + + + %1 +Backup database located at %2 + %1 +Kopjeruaj bazë të dhënash që gjendet te %2 + + + Key not transformed. This is a bug, please report it to the developers. + Kyçi s’u shndërrua. Kjo është një e metë, ju lutemi, njoftojuani zhvilluesve. + + + Recycle Bin + Kosh Riciklimesh + + + Database file read error. + + + + No file path was provided. + + + + + DatabaseOpenDialog + + Unlock Database - KeePassXC + Shkyçni Bazë të Dhënash - KeePassXC + + + + DatabaseOpenWidget + + Unlock KeePassXC Database + Shkyçni Bazë të Dhënash KeePassXC + + + Enter Password: + Jepni Fjalëkalim: + + + Password field + Fushë fjalëkalimi + + + Hardware key slot selection + Përzgjedhje vendi kyçi hardware + + + Key file to unlock the database + Kartelë kyçi për të shkyçur bazën e të dhënave + + + Browse for key file + Shfletoni për kartelë kyçi + + + Browse… + Shfletoni… + + + Unlock Database + Shkyçe Bazën e të Dhënave + + + Cancel + Anuloje + + + Unlock + Shkyçe + + + Please present or touch your YubiKey to continue… + Ju lutemi, që të vazhdohet, paraqitni, ose prekni YubiKey-në tuaj… + + + Database Version Mismatch + Mospërputhje Versioni Baze të Dhënash + + + The database you are trying to open was most likely +created by a newer version of KeePassXC. + +You can try to open it anyway, but it may be incomplete +and saving any changes may incur data loss. + +We recommend you update your KeePassXC installation. + Gjasat janë që baza e të dhënave që po provoni të hapni +të qe krijuar nga një version më i ri i KeePassXC-së. + +Mund të provoni ta hapni, sido që të jetë, por mund të +jetë e paplotë dhe ruajtja e çfarëdo ndryshimesh mund +të sjellë humbje të dhënash. + +Rekomandojmë të përditësoni instalimin tuaj të KeePassXC-së. + + + Open database anyway + Hape bazën e të dhënave, sido qoftë + + + Database unlock canceled. + Shkyçja e bazës së të dhënave u anulua. + + + Unlock failed and no password given + Shkyçja dështoi dhe s’u dha fjalëkalim + + + Unlocking the database failed and you did not enter a password. +Do you want to retry with an "empty" password instead? + +To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. + Shkyçja e bazës së të dhënave dështoi dhe s’dhatë fjalëkalim. +Në vend të kësaj, doni të riprovohet me një fjalëkalim “të zbrazët”? + +Që të pengoni shfaqjen e këtij gabimi, duhet të kaloni te “Rregullime baze të dhënash / Siguri” dhe të ricaktoni fjalëkalimin tuaj. + + + Retry with empty password + Riprovo me fjalëkalim të zbrazët + + + Failed to open key file: %1 + S’u arrit të hapej kartelë kyç: %1 + + + Old key file format + Format i vjetër kartele kyçi + + + You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> + Po përdorni një format të vjetër kartelash kyçesh, të cilin KeePassXC-ja mund <br>të reshtë ta mbulojë në të ardhmen.<br><br>Ju lutemi, shihni mundësinë e prodhimit të një kartelë të re kyçi, duke kaluar te:<br><strong>Bazë të dhënash &gt; Siguri Baze të Dhënash &gt; Ndryshoni Kartelë Kyç.</strong><br> + + + Don't show this warning again + Mos e shfaq më këtë sinjalizim + + + All files + Tërë kartelat + + + Key files + Kartela kyçesh + + + Select key file + Përzgjidhni kartelë kyçi + + + Cannot use database file as key file + S’mund të përdoret kartelë baze të dhënash si kartelë kyçi + + + authenticate to access the database + që të hyni në bazën e të dhënave, bëni mirëfilltësimin + + + Failed to authenticate with Quick Unlock: %1 + S’u arri të bëhej mirëfilltësimi me Shkyçje të Shpejtë: %1 + + + Select Key File: + Përzgjidhni Kartelë Kyçi: + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Tej një fjalëkalimi, mund të përdorni një kartelë të fshehtë për të thelluar sigurinë e bazës suaj të të dhënave. Kjo kartelë mund të prodhohet që nga rregullimet e sigurisë së bazës suaj të të dhënave.</p><p>Kjo <strong>nuk</strong> është kartela juaj *.kdbx e bazës së të dhënave!</p> + + + Use hardware key [Serial: %1] + Përdor kyç hardware [Serial: %1] + + + Use hardware key + Përdor kyç hardware + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Kartela juaj e bazës së të dhënave NUK është kartelë kyçi! +Nëse s’keni një kartelë kyçi, ose s’e dini se ç’është një e tillë, s’ju duhet të përzgjidhni një. + + + KeePassXC database file selected + U përzgjodh kartelë baze të dhënash KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Kartela që përzgjodhët, duket si kartelë baze të dhënash. +Një kartelë baze të dhënash NUK është kartelë kyçi! + +Jeni i sigurt se doni të vazhdohet me këtë kartelë? + + + No hardware keys found. + S’u gjet kyç hardware. + + + Refresh Hardware Keys + Rifresko Kyçe Hardware + + + Click to add a key file. + Klikoni që të shtohet një kartelë kyç. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Kam një kartelë kyç</a> + + + Hardware keys found, but no slots are configured. + + + + + DatabaseSettingWidgetMetaData + + Passwords + Fjalëkalime + + + + DatabaseSettingsDialog + + General + Të përgjithshme + + + Security + Siguri + + + Database Credentials + Kredenciale Baze të Dhënash + + + Encryption Settings + Rregullime Fshehtëzimi + + + Browser Integration + Integrim Shfletuesi + + + Maintenance + Mirëmbajtje + + + KeeShare + KeeShare + + + Secret Service Integration + Integrim Shërbimi të Fshehtash + + + Remote Sync + Njëkohësim i Largët + + + Database Settings: %1 + Rregullime Baze të Dhënash: %1 + + + + DatabaseSettingsWidgetBrowser + + KeePassXC-Browser settings + Rregullime për KeePassXC-Browser + + + Disconnect all browsers + Shkëputi krejt shfletuesit + + + Forget all site-specific settings on entries + Harro krejt rregullimet specifike për sajte, te zërat + + + Refresh database root group ID + Rifresko ID grupi rrënjë baze të dhënash + + + Stored keys + Kyçe të depozituar + + + Stored browser keys + Kyçe shfletuesi të depozituar + + + Remove selected key + Hiqe kyçin e përzgjedhur + + + Remove + Hiqe + + + Delete the selected key? + Të fshihet kyçi i përzgjedhur? + + + Do you really want to delete the selected key? +This may prevent connection to the browser plugin. + Doni vërtet të fshihet kyçi i përzgjedhur? +Kjo mund të pengojë lidhjen me shtojcën e shfletuesit. + + + Key + Kyç + + + Value + Vlerë + + + Created + Krijuar më + + + Enable Browser Integration to access these settings. + Që të hyni në këto rregullime, aktivizoni Integrim Shfletuesish. + + + Do you really want to disconnect all browsers? +This may prevent connection to the browser plugin. + Doni vërtet të shkëputen krejt shfletuesit? +Kjo mund të pengojë lidhjen me shtojcën e shfletuesit. + + + No shared encryption keys found in KeePassXC settings. + Te rregullimet e KeePassXC-së s’u gjetën kyçe të përbashkët fshehtëzimi. + + + Successfully removed %n encryption key(s) from KeePassXC settings. + U hoq me sukses %n kyç fshehtëzimi që nga rregullimet e KeePassXC-së.U hoqën me sukses %n kyçe fshehtëzimi që nga rregullimet e KeePassXC-së. + + + Do you really want forget all site-specific settings on every entry? +Permissions to access entries will be revoked. + Doni vërtet të harrohen krejt rregullimet specifike për sajte, në çdo zë? +Do të shfuqizohen leje për përdorim të zërave. + + + Removing stored permissions… + Po hiqen leje të depozituara… + + + Abort + Ndërprite + + + Successfully removed permissions from %n entry(s). + U hoq me sukses leje nga %n zë.U hoqën me sukses leje nga %n zëra. + + + The active database does not contain an entry with permissions. + Baza aktive e të dhënave s’përmban zë me leje. + + + Refresh database ID + Rifresko ID baze të dhënash + + + Do you really want refresh the database ID? +This is only necessary if your database is a copy of another and the browser extension cannot connect. + Doni vërtet të rifreskohet ID-ja e bazës së të dhënave? +Kjo është e nevojshme vetëm nëse baza juaj e të dhënave është një kopje e një tjetre dhe zgjerimi i shfletuesit s’bën dot lidhjen. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Shndërroni atribute KeePassHTTP të dikurshëm në të dhëna vetjake të përputhshme me KeePassXC-Browser + + + No keys found + S’u gjetën kyçe + + + Removed keys from database + U hoqën kyçe nga baza e të dhënave + + + Removed permissions + U hoqën leje + + + No entry with permissions found! + S’u gjet zë me leje! + + + + DatabaseSettingsWidgetDatabaseKey + + Add additional protection… + Shtoni mbrojtje shtesë… + + + No password set + S’u caktua fjalëkalim + + + 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? + KUJDES! S’keni caktuar fjalëkalim. Përdorimi i një baze të dhënash pa një fjalëkalim shkurajohet me forcë! + +Jeni i sigurt se doni të vazhdohet pa një fjalëkalim? + + + Continue without password + Vazhdo pa fjalëkalim + + + No encryption key added + S’u shtua kyç fshehtëzimi + + + You must add at least one encryption key to secure your database! + Duhet të shtoni të paktën një kyç fshehtëzimi që të siguroni bazën tuaj të të dhënave! + + + Unknown error + Gabim i panjohur + + + Failed to change database credentials + S’u arrit të ndryshohen kredenciale baze të dhënash + + + Weak password + Fjalëkalim i dobët + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Ky është një fjalëkalim i dobët! Për mbrojtje më të mirë të të fshehtave tuaja, duhet të zgjidhni një fjalëkalim më të fortë. + + + The provided password does not meet the minimum quality requirement. + Fjalëkalimi i dhënë s’plotëson domosdoshmëritë minimum për cilësinë. + + + + DatabaseSettingsWidgetEncryption + + Decryption Time: + Kohë Shfshehtëzimi: + + + Decryption time in seconds + Kohë shfshehtëzimi në sekonda + + + Higher values offer more protection, but opening the database will take longer. + Vlera më të mëdha ofrojnë më tepër mbrojtje, por hapja e bazës së të dhënave do të zgjasë më shumë. + + + Database format: + Format baze të dhënash: + + + Database format + Format baze të dhënash + + + Format cannot be changed: Your database uses KDBX 4 features + Formati s’mund të ndryshohet: Baza juaj e të dhënave përdor veçoritë KDBX 4 + + + Unless you need to open your database with other programs, always use the latest format. + Hiq rastin kur ju duhet të hapni bazën tuaj të të dhënave me programe të tjerë, përdorni përherë formatin më të ri. + + + Encryption Algorithm: + Algoritëm Fshehtëzimi: + + + Encryption algorithm + Algoritëm fshehtëzimi + + + AES: 256 Bit (default) + AES: 256 Bit (parazgjedhje) + + + Twofish: 256 Bit + Twofish: 256 Bit + + + Key Derivation Function: + Funksion Derivimi Kyçesh: + + + Key derivation function + Funksion derivimi kyçesh + + + Transform rounds: + Raunde shndërrimi: + + + Transform rounds + Raunde shndërrimi + + + Memory Usage: + Përdorim Kujtese: + + + Memory usage + Përdorim kujtese + + + Parallelism: + Paralelizëm: + + + Parallelism + Paralelizëm + + + KDBX 4 (recommended) + KDBX 4 (i rekomanduar) + + + KDBX 3 + KDBX 3 + + + Number of rounds too high + Key transformation rounds + Numër shumë i madh raundesh + + + You are using a very high number of key transform rounds with Argon2. + +If you keep this number, your database may take hours, days, or even longer to open. + Po përdorni një numër shumë të madh raundesh shndërrimi kyçi me Argon2. + +Nëse mbani këtë numër, do të duhen orë, ditë ose dhe më gjatë që të hapet baza juaj e të dhënave. + + + Understood, keep number + E mora vesh, mbaje numrin + + + Cancel + Anuloje + + + Number of rounds too low + Key transformation rounds + Numër shumë i vogël raundesh + + + You are using a very low number of key transform rounds with AES-KDF. + +If you keep this number, your database will not be protected from brute force attacks. + Po përdorni një numër shumë të vogël raundesh shndërrimi kyçi me AES-KDF. + +Nëse mbani këtë numër, baza juaj e të dhënave s’do të mbrohet nga sulme hyrjeje me zor. + + + KDF unchanged + FDK i pandryshuar + + + Failed to transform key with new KDF parameters; KDF unchanged. + S’u arrit të shndërrohet kyç me parametra FPK të rinj, FPK i pandryshuar. + + + MiB + Abbreviation for Mebibytes (KDF settings) + MiB MiB + + + thread(s) + Threads for parallel execution (KDF settings) + rrjedhë rrjedha + + + Encryption Settings: + Rregullime Fshehtëzimi: + + + Basic + Elementare + + + Advanced + Të mëtejshme + + + + DatabaseSettingsWidgetFdoSecrets + + Exposed Entries + Zëra të Ekspozuar + + + Don't expose this database + Mos ekspozo këtë bazë të dhënash + + + Expose entries under this group: + Ekspozo zëra nën këtë grup: + + + Enable Secret Service to access these settings. + Aktivizo hyrjen e Shërbimit të Fshehtë te këto rregullime. + + + + DatabaseSettingsWidgetGeneral + + Database Metadata + Tejtëdhëna Baze të Dhënash + + + Database name: + Emër baze të dhënash: + + + Database name field + Fushë emri baze të dhënash + + + Database description: + Përshkrim baze të dhënash: + + + Database description field + Fushë përshkrimi baze të dhënash + + + Default username: + Emër parazgjedhje përdoruesi: + + + Default username field + Fushë emri parazgjedhje përdoruesi + + + History Settings + Rregullime Historiku + + + Maximum number of history items per entry + Numër maksimum objektesh historiku për zë + + + Maximum size of history per entry + Madhësi maksimum historiku për zë + + + MiB + MiB + + + Use recycle bin + Përdor kosh riciklimesh + + + Additional Database Settings + Rregullime shtesë Baze të Dhënash + + + Enable compression (recommended) + Aktivizoni ngjeshje (e rekomanduar) + + + Delete Recycle Bin + Fshi Kosh Riciklimesh + + + Do you want to delete the current recycle bin and all its contents? +This action is not reversible. + Doni të fshihet koshi i tanishëm i riciklimeve dhe krejt lënda e tij? +Ky veprim s’është i prapakthyeshëm. + + + (old) + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Kur ruhet ky rregullim, ose përpunohet një zë +objektet më të vjetër të historikut të një zëri +do të hiqen, që e shumta të mbetet vetëm sasia + e përcaktuar e zërave. + + + Limit the amount of history items per entry to: + Kufizoje sasinë e objekteve të historikut për zë në: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Kur ruhet ky rregullim, ose përpunohet një zë +objektet më të vjetër të historikut të një zëri +do të hiqen, që objektet e mbetur te historiku +të jenë e shumta deri sa sasia e përcaktuar. + + + Limit the total size of history items per entry to: + Kufizoje sasinë e objekteve të historikut gjithsej për zë në: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Kaloji zërat te një grup koshi riciklimi +në vend se t’i fshish nga baza e të dhënave. +Zërat e fshirë nga koshi i riciklimeve +hiqen nga baza e të dhënave. + + + Autosave delay since last change + Vonesë vetëruajtje që nga ndryshimi i fundit + + + Autosave delay + Vonesë vetëruajtjeje + + + Autosave delay since last change in minutes + Vonesë vetëruajtje që nga ndryshimi i fundit, në minuta + + + min + min + + + Autosave delay since last change checkbox + Vonesë vetëruajtje që nga ndryshimi i fundit, kutizë + + + Public Database Metadata + Tejtëdhëna Baze të Dhënash Publike + + + Warning: the following settings are not encrypted. + Kujdes: rregullimet vijuese s’janë të fshehtëzuara. + + + Display name: + Emër në ekran: + + + Publically visible display name used on the unlock dialog + Emër në ekran i dukshëm publikisht, i përdorur te dialogu i shkyçjeve + + + Database public display name + Emër publik në ekran baze të dhënash + + + Display color: + Ngjyrë ekrani: + + + Publically visible color used on the unlock dialog + Ngjyrë e dukshme publikisht, e përdorur te dialogu i shkyçjeve + + + Database public display color chooser + Zgjedhës ngjyre shfaqjeje publike baze të dhënash + + + Clear + Spastroji + + + Display icon: + Ikonë shfaqjeje: + + + Select Database Icon + Përzgjidhni Ikonë Baze të Dhënash + + + + DatabaseSettingsWidgetKeeShare + + Sharing + Ndarje me të tjerë + + + Breadcrumb + + + + Type + Lloj + + + Path + Shteg + + + Last Signer + Nënshkruesi i Fundit + + + Certificates + Dëshmi + + + > + Breadcrumb separator + > + + + + DatabaseSettingsWidgetMaintenance + + Manage Custom Icons + Administroni Ikona Vetjake + + + Delete selected icon(s) + Fshi ikonën (at) e përzgjedhur + + + Delete all custom icons not in use by any entry or group + Fshi krejt ikonat vetjake jo në përdorim nga ndonjë zë apo grup + + + Purge unused icons + Spastro ikona të papërdorura + + + Confirm Deletion + Ripohoni Fshirjen + + + At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? + Të paktën një nga ikonat e përzgjedhura është aktualisht në përdorim nga të paktën një zë ose grup. Ikonat e krejt zërave dhe grupeve të prekur do të zëvendësohen nga ikona parazgjedhje. Jeni i sigurt se doni të fshihen ikonat që janë aktualisht në përdorim? + + + Custom Icons Are In Use + Ikonat Vetjake Janë Në Përdorim + + + All custom icons are in use by at least one entry or group. + Krejt ikonat vetjake janë në përdorim nga të paktën një zë, ose një grup. + + + Purged Unused Icons + U Spastruan Ikona të Papërdorura + + + Purged %n icon(s) from the database. + U spastrua %n ikonë nga baza e të dhënave.U spastruan %n ikona nga baza e të dhënave. + + + + DatabaseSettingsWidgetMetaDataSimple + + Database Name: + Emër Baze të Dhënash: + + + Database name field + Fushë emri baze të dhënash + + + Description: + Përshkrim: + + + Database description field + Fushë përshkrimi baze të dhënash + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Urdhra njëkohësimi + + + Remove + Hiqe + + + Command Settings + Rregullime Urdhri + + + Name + Emër + + + Save + Ruaje + + + Download + Shkarkoje + + + Command: + Urdhër: + + + Download command field + Fushë urdhri shkarkimi + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + p.sh.: "sftp user@hostname" ose "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + + + + Download input field + + + + Upload + Ngarkim + + + Upload command field + Fushë urdhri ngarkimi + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + e.g.: "sftp user@hostname" ose "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + + + + Name cannot be empty. + Emri s’mund të jetë i zbrazët. + + + Test + + + + Download command cannot be empty. + Urdhri i shkarkimit s’mund të jetë i zbrazët. + + + Download failed with error: %1 + Shkarkimi dështoi me gabimin: %1 + + + Download finished, but file %1 could not be found. + Shkarkimi përfundoi, por s’u gjeta kartela %1. + + + Download successful. + Shkarkim i suksesshëm + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + Keni ndryshime të paruajtura. Doni të ruhen? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + Mbarime kohe: + + + seconds + sekonda + + + + DatabaseTabWidget + + Database creation error + Gabim krijimi baze të dhënash + + + The created database has no key or KDF, refusing to save it. +This is definitely a bug, please report it to the developers. + Baza e të dhënave e krijuar s’ka kyç, apo KDF, po hidhet poshtë ruajtja e saj. +Kjo është përfundimisht një e metë, ju lutemi, njoftojuani zhvilluesve. + + + KeePass 2 Database + Bazë të Dhënash Keepass 2 + + + All files + Tërë kartelat + + + Open database + Hap bazë të dhënash + + + Failed to open %1. It either does not exist or is not accessible. + S’u arrit të hapet %1. Ose s’ekziston, ose s’kapet dot. + + + CSV file + Kartelë CSV + + + Merge database + Përzje bazë të dhënash + + + Export database to CSV file + Eksportoje bazën e të dhënave në kartelë CSV + + + Writing the CSV file failed. + Shkrimi te kartela CSV dështoi. + + + Writing the HTML file failed. + Shkrimi te kartela HTML dështoi. + + + Export database to XML file + Eksportoje bazën e të dhënave te kartelë XML + + + XML file + Kartelë XML + + + Writing the XML file failed + Shkrimi te kartela XML dështoi + + + Export Confirmation + Ripohim Eksportimi + + + You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? + Ju ndan një hap nga eksportimi i bazës suaj të të dhënave te një kartelë e pafshehtëzuar. Kjo do t’i lërë të cenueshme fjalëkalimet dhe informacione me spec tuajat! Jeni i sigurt se doni të vazhdohet? + + + %1 [Locked] + Database tab name modifier + %1 [E kyçur] + + + %1 [Temporary] + Database tab name modifier + %1 [E përkohshme] + + + + DatabaseWidget + + Searches and Tags + Kërkime dhe Etiketa + + + Searching… + Po kërkohet… + + + Shared group… + Grup i përbashkët… + + + Confirm Auto-Type + Ripohoni Vetë-Shtypje + + + Perform Auto-Type into the previously active window? + Të kryhet Vetë-shtypje te dritarja e mëparshme aktive? + + + Execute command? + Të përmbushet urdhri? + + + Do you really want to execute the following command?<br><br>%1<br> + Doni vërtet të ekzekutohet urdhri vijues?<br><br>%1<br> + + + Remember my choice + Mbaje mend zgjedhjen time + + + Delete group + Fshije grupin + + + Do you really want to delete the group "%1" for good? + Doni vërtet të fshihet përgjithmonë grupi “%1”? + + + Move group to recycle bin? + Të shpihet grupi te koshi i riciklimeve? + + + Do you really want to move the group "%1" to the recycle bin? + Doni vërtet të shpihet grupi “%1” te koshi i riciklimeve? + + + Expired entries + Zëra të skaduar + + + Entries expiring within %1 day(s) + Zëra që skadojnë brenda %1 diteZëra që skadojnë brenda %1 ditësh + + + No current database. + S’ka bazë të tanishme të dhënash. + + + No source database, nothing to do. + S’ka bazë të dhënash burim, s’ka ç’bëhet. + + + Successfully merged the database files. + Kartelat e bazave të të dhënave u përzjenë me sukses. + + + Database was not modified by merge operation. + Baza e të dhënave s’u ndryshua nga veprimi i përzierjes. + + + Search Results (%1) + Përfundime Kërkimi (%1) + + + No Results + S’ka Përfundime + + + Save + Ruaje + + + Enter a unique name or overwrite an existing search from the list: + Jepni një emër unik, ose mbishkruani një kërkim ekzistues prej listës: + + + Save Search + Ruaje Kërkimin + + + Lock Database? + Të kyçet Baza e të Dhënave? + + + You are editing an entry. Discard changes and lock anyway? + Po përpunoni një zë. Të hidhen tej ndryshimet dhe të kyçet, sido qoftë? + + + "%1" was modified. +Save changes? + “%1” u ndryshua. +Të ruhen ndryshimet? + + + Database was modified. +Save changes? + Baza e të dhënave u ndryshua. +Të ruhen ndryshimet? + + + Save changes? + Të ruhen ndryshimet? + + + File has changed + Kartela ka ndryshuar + + + Disable safe saves? + Të çaktivizohen ruajtje të parrezik? + + + 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 ka dështuar disa herë të ruajë bazën e të dhënave. Kjo ka gjasa të jetë shkaktuar nga shërbime njëkohësimi kartelash që ruajnë një kyçje te kartela që duhet ruajtur. +Të çaktivizohet ruajtje të parrezik dhe të riprovohet? + + + Writing the database failed: %1 + Shkrimi te baza e të dhënave dështoi: %1 + + + Passwords + Fjalëkalime + + + Save database as + Ruaje bazën e të dhënave si + + + KeePass 2 Database + Bazë të Dhënash Keepass 2 + + + Save database backup + Ruani kopjeruajtje baze të dhënash + + + Empty recycle bin? + Të zbrazet koshi i riciklimeve? + + + Are you sure you want to permanently delete everything from your recycle bin? + Jeni i sigurt se doni të fshihet përgjithmonë gjithçka prej koshit tuaj të riciklimeve? + + + Could not find database file: %1 + S’u gjet dot kartelë baze të dhënash: %1 + + + New Database + Bazë e re të Dhënash + + + %1 [New Database] + Database tab name modifier + %1 [Bazë e Re të Dhënash] + + + Remote Sync did not contain any download or upload commands. + Njëkohësimi i Largët s’përmbante ndonjë urdhër shkarkimi ose ngarkimi. + + + Remote sync '%1' completed successfully! + Njëkohësimi i largët “%1” u plotësua me sukses! + + + Remote sync '%1' failed: %2 + Njëkohësimi i largët “%1” dështoi: %2 + + + Error while saving database %1: %2 + Gabim gjatë ruajtjes së bazës së të dhënave: %1: %2 + + + Downloading... + Po shkarkohet… + + + Uploading... + Po ngarkohet… + + + Syncing... + Po njëkohësohet… + + + Remove passkey from entry + Hiq kodkalim nga zëri + + + Do you want to remove the passkey from this entry? + Doni të hiqet kyçkalimi nga ky zë? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + + + + + EditEntryWidget + + Entry + + + + Advanced + Të mëtejshme + + + Icon + Ikonë + + + Auto-Type + Vetë-Shtype + + + Browser Integration + Integrim Shfletuesi + + + <empty URL> + <URL e zbrazët> + + + Confirm Removal + Ripohoni Heqjen + + + Are you sure you want to remove this URL? + Jeni i sigurt se doni të hiqet kjo URL? + + + Properties + Veti + + + History + Historik + + + SSH Agent + Agjent SSH + + + n/a + n/a + + + Select private key + Përzgjidhni kyç privat + + + Entry history + Historik zëri + + + Add entry + Shtoni zë + + + Edit entry + Përpunoni zë + + + Some Browser Integration settings are overridden by group settings. + Disa rregullime Integrimi Shfletuesi mbikalohen nga rregullime grupi. + + + Invalid Entry + Zë i Pavlefshëm + + + An external merge operation has invalidated this entry. +Unfortunately, any changes made have been lost. + Një veprim i jashtëm përzierjeje e ka bërë të pavlefshëm këtë zë. +Mjerisht, mund të jenë humbur çfarëdo ndryshimesh. + + + Auto-Type Validation Error + Gabim Vlerësimi Vetë-Shtypjeje + + + An error occurred while validating the custom Auto-Type sequence: +%1 +Would you like to correct it? + Ndodhi një gabim teksa vlerësohej sekuenca vetjake e Vetë-Shtypjes: +%1 +Do të donit të ndreqet? + + + An error occurred while validating the Auto-Type sequence for "%1": +%2 +Would you like to correct it? + Ndodhi një gabim teksa vlerësohej sekuenca vetjake e Vetë-Shtypjes për “%1”: +%2 +Do të donit të ndreqet? + + + Entry updated successfully. + Zëri u përditësua me sukses. + + + Unsaved Changes + Ndryshime të Paruajtura + + + Would you like to save changes to this entry? + Doni të ruhen ndryshimet te ky zë? + + + New attribute + Atribut i ri + + + New attribute %1 + Atribut i ri %1 + + + Are you sure you want to remove this attribute? + Jeni i sigurt se doni të hiqet ky atribut? + + + Reveal + Shfaqe + + + [PROTECTED] Press Reveal to view or edit + [I MBROJTUR] Që ta shihni, ose përpunoni, shtypni “Shfaqe” + + + Hide + Fshihe + + + %n hour(s) + %n orë%n orë + + + %n week(s) + %n javë%n javë + + + %n month(s) + %n muaj%n muaj + + + %n year(s) + %n vit%n vjet + + + Failed to decrypt SSH key, ensure password is correct. + S’u arrit të shfshehtëzohej kyç, sigurohuni se fjalëkalimi është i saktë. + + + + EditEntryWidgetAdvanced + + Additional attributes + Atribute shtesë + + + Attribute selection + Përzgjedhje atributesh + + + Attribute value + Vlerë atributi + + + Add a new attribute + Shtoni atribut të ri + + + Add + Shtoje + + + Remove selected attribute + Hiqe atributin e përzgjedhur + + + Remove + Hiqe + + + Edit attribute name + Përpunoni emër atributi + + + Edit Name + Përpunoni Emrin + + + Toggle attribute protection + Aktivizo/çaktivizo mbrojtje atributi + + + Protect + Mbroje + + + Show a protected attribute + Shfaq një atribut të mbrojtur + + + Reveal + Shfaqe + + + Attachments + Bashkëngjitje + + + If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. + Në iu vëntë shenjë, zëri s’do të shfaqet në raporte të tillë si Kontroll Shëndeti dhe HIBP, edhe nëse s’plotëson domosdoshmëritë e cilësisë. + + + Exclude from database reports + Përjashto nga raporte bazash të dhënash + + + Foreground Color: + Ngjyrë e Përparme: + + + Foreground color selection + Përzgjedhje ngjyre të përparme + + + Background Color: + Ngjyrë Sfondi: + + + Background color selection + Përzgjedhje ngjyre sfondi + + + + EditEntryWidgetAutoType + + Enable Auto-Type for this entry + Aktivizoni Vetë-Shtypje për këtë zë + + + Inherit default Auto-Type sequence from the group + Trashëgo prej grupit sekuencë parazgjedhje Vetë-Shtypje + + + Use custom Auto-Type sequence: + Përdor sekuencë vetjake Vetë-Shtypjeje: + + + Custom Auto-Type sequence + Sekuencë vetjake Vetë-Shtypjeje + + + Open Auto-Type help webpage + Hap faqe ndihme për Vetë-Shtypje + + + Window Associations + Përshoqërime Dritaresh + + + Existing window associations + Përshoqërime ekzistuese dritaresh + + + Add new window association + Shtoni një përshoqërim të ri dritareje + + + + + Add item + + + + + Remove selected window association + Hiqe përshoqërimin e përzgjedhur të dritares + + + - + Remove item + - + + + Window title: + Titull dritareje: + + + You can use an asterisk (*) to match everything + Mund të përdorni një yllth (*) për kërkim përkimesh për gjithçka + + + Set the window association title + Caktoni titull përshoqërimi dritareje + + + You can use an asterisk to match everything + Mund të përdorni një yllth për kërkim përkimesh për gjithçka + + + Use a specific sequence for this association: + Përdorni një sekuencë specifike për këtë përshoqërim: + + + Custom Auto-Type sequence for this window + Sekuencë vetjake Vetë-Shtypjeje për këtë dritare + + + + EditEntryWidgetBrowser + + General + Të përgjithshme + + + Hide this entry from the browser extension + Fshihe këtë zë nga zgjerimi i shfletuesit + + + Skip Auto-Submit for this entry + Anashkalo Vetë-Parashtrim për këtë zë + + + Use this entry only with HTTP Basic Auth + Këtë zë përdore vetëm me Mirëfilltësim Elementar HTTP + + + Do not use this entry with HTTP Basic Auth + Mos e përdor këtë zë me Mirëfilltësim Elementar HTTP + + + Add + Shtoje + + + Remove + Hiqe + + + Edit + Përpunojeni + + + These settings affect the entry's behaviour with the browser extension. + Këto rregullime prekin sjelljen e zërit me zgjerimin e shfletuesit. + + + Additional URLs + URL-ra shtesë + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Këtë zë dërgoje te shfletuesi vetëm për dialogë Mirëfilltësimesh HTTP. Në u aktivizoftë, formularët normalë të hyrjes s’do ta shfaqin këtë zë për përzgjedhje. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Mos e dërgo këtë zë te shfletuesi për dialogë Mirëfilltësimesh HTTP. Në u aktivizoftë, dialogët e Mirëfilltësimeve HTTPf s’do ta shfaqin këtë zë për përzgjedhje. + + + + EditEntryWidgetHistory + + Entry history selection + Përzgjedhje historiku zërash + + + Show entry at selected history state + Shfaqe zërin në gjendjen e përzgjedhur të historikut + + + Show + Shfaq + + + Restore entry to selected history state + Riktheje zërin në gjendjen e përzgjedhur të historikut + + + Restore + Riktheje + + + Delete selected history state + Fshi gjendje të përzgjedhur historiku + + + Delete + Fshije + + + Delete all history + Fshi krejt historikun + + + Delete all + Fshiji krejt + + + + EditEntryWidgetMain + + Edit Entry + Përpunoni Zërin + + + Notes field + Fushë shënimesh + + + Username field + Fushë emri përdoruesi + + + Expiration field + Fushë skadimi + + + Expiration Presets + Paracaktime Skadimi + + + Expiration presets + Paracaktime skadimi + + + Presets + Paracaktime + + + Url field + Fushë URL-sh + + + Download favicon for URL + URL shkarkimi favikone + + + Title field + Fushë titulli + + + Password field + Fushë fjalëkalimi + + + Toggle expiration + Shfaq/fshih skadim + + + Tags list + Listë etiketash + + + &Username: + &Emër përdoruesi: + + + &Title: + &Titull: + + + &Password: + &Fjalëkalim: + + + UR&L: + UR&L: + + + &Notes: + Shën&ime: + + + Toggle notes visibility + Shfaq/fshih shënime + + + T&ags: + &Etiketa: + + + &Expires: + &Skadon më: + + + + EditEntryWidgetSSHAgent + + Form + Formular + + + Remove key from agent when database is closed/locked + Hiqe kyçin nga agjenti, kur mbyllet/kyçet baza e të dhënave + + + Comment + Koment + + + Add key to agent when database is opened/unlocked + Shtoje kyçin te agjenti, kur baza e të dhënave është e hapur/e shkyçur + + + Decrypt + Shfshehtëzoje + + + Fingerprint + Shenja gishtash + + + Copy to clipboard + Kopjoje në të papastër + + + Public key + Kyç publik + + + Private key + Kyç privat + + + Attachment + Bashkëngjitje + + + External key file + Kartelë e jashtme kyçi + + + Add to agent + Shtoje te agjent + + + Remove from agent + Hiqe prej agjenti + + + External file + Kartelë e jashtme + + + Browser for key file + Shfletues për kartelë kyçi + + + Browse… + Button for opening file dialog + Shfletoni… + + + Generate + Prodhoje + + + Select attachment file + Përzgjidhni kartelë bashkëngjitje + + + Require user confirmation when this key is used + Kërko doemos ripohim nga përdoruesi, kur përdoret ky kyç + + + n/a + n/a + + + Remove key from agent after + Hiqe kyçin nga agjenti pas + + + Remove key from agent after specified seconds + Hiqe kyçin nga agjenti pas sekondave të specifikuara + + + seconds + sekonda + + + Clear agent + + + + + EditGroupWidget + + Group + Grup + + + Icon + Ikonë + + + Properties + Veti + + + Add group + Shtoni grup + + + Edit group + Përpunoni grup + + + Group has unsaved changes + Grupi ka ndryshime të paruajtura + + + Browser Integration + Integrim Shfletuesi + + + Enable + Aktivizoje + + + Disable + Çaktivizoje + + + Inherit from parent group (%1) + Trashëgoje prej grupi mëmë (%1) + + + + EditGroupWidgetBrowser + + These settings affect to the group's behaviour with the browser extension. + Këto rregullime prekin sjelljen e grupit me zgjerimin e shfletuesit. + + + Hide entries from browser extension: + Fshihi zërat nga zgjerimi i shfletuesit: + + + Hide entries from browser extension toggle for this and sub groups + + + + Skip Auto-Submit for entries: + Anashkalo Vetëparashtrim për zërat: + + + Skip Auto-Submit toggle for this and sub groups + + + + Use entries only with HTTP Basic Auth: + Përdori zërat vetëm me Mirëfilltësim Elementar HTTP: + + + Only HTTP Auth toggle for this and sub groups + + + + Do not use entries with HTTP Basic Auth: + Mos përdor zëra me Mirëfilltësim Elementar HTTP: + + + Do not use HTTP Auth toggle for this and sub groups + + + + Omit WWW subdomain from matching: + Lër jashtë kërkimit për përkim nënpërkatësinë WWW: + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + EditGroupWidgetKeeShare + + Sharing mode field + Fushë mënyre ndarjeje me të tjerë + + + Password field + Fushë fjalëkalimi + + + Type: + Lloj: + + + Password: + Fjalëkalim: + + + Path: + Shteg: + + + Path to share file field + Fushë shtegu për të ndarë kartelë me të tjerë + + + Browse for share file + Shfletoni për kartelë për ndarje + + + Browse… + Shfletoni… + + + Clear fields + Spastroji fushat + + + Clear + Spastroji + + + Inactive + Joaktive + + + Import + Importo + + + Export + Eksporto + + + Synchronize + Njëkohësoje + + + Your KeePassXC version does not support sharing this container type. +Supported extensions are: %1. + Versioni juaj i KeePassXC-së nuk mbulon ndarje të këtij lloji kontejneri. +Zgjatimet e mbuluara janë: %1. + + + %1 is already being exported by this database. + %1 po eksportohet tashmë nga kjo bazë të dhënash. + + + %1 is already being imported by this database. + %1 po importohet tashmë nga kjo bazë të dhënash. + + + %1 is being imported and exported by different groups in this database. + %1 po importohet dhe eksportohet nga grupe të ndryshëm në këtë bazë të dhënash. + + + KeeShare is currently disabled. You can enable import/export in the application settings. + KeeShare is a proper noun + KeeShare është aktualisht i çaktivizuar. Mund të aktivizoni importim/eksportim që nga rregullime aplikacioni. + + + Database export is currently disabled by application settings. + Eksportimi i bazës së të dhënave është aktualisht i çaktivizuar që nga rregullime aplikacioni. + + + Database import is currently disabled by application settings. + Importimi i bazës së të dhënave është aktualisht i çaktivizuar që nga rregullime aplikacioni. + + + KeeShare container + Kontejner KeeShare + + + KeeShare signed container + Kontejner KeeShare i nënshkruar + + + Select import source + Përzgjidhni burim importimi + + + Select export target + Përzgjidhni objekt eksportimi + + + Select import/export file + Përzgjidhni kartelë importim/eksportimi + + + + EditGroupWidgetMain + + Edit Group + Përpunoni Grup + + + Toggle expiration + Shfaq/fshih skadim + + + Expires: + Skadon më: + + + Name field + Fushë emri + + + Expiration field + Fushë skadimi + + + Use default Auto-Type sequence of parent group + Përdor sekuencë Vetë-Shtypjeje parazgjedhje të grupit mëmë + + + Auto-Type: + Vetë-Shtypje: + + + Search: + Kërko: + + + Auto-Type toggle for this and sub groups + + + + Notes: + Shënime: + + + Default auto-type sequence field + Fushë sekuence vetë-shtypjeje parazgjedhje + + + Notes field + Fushë shënimesh + + + Name: + Emër: + + + Set default Auto-Type sequence + Caktoni sekuencë Vetë-Shtypjeje parazgjedhje + + + Search toggle for this and sub groups + + + + + EditWidgetIcons + + Use default icon + Përdor ikonë parazgjedhje + + + Use custom icon + Përdor ikonë vetjake + + + Choose icon… + Zgjidhni ikonë… + + + Set the URL to use to search for a favicon + Caktoni URL-në për t’u përdorur që të kërkohet një favikonë + + + Favicon URL + URL favikone + + + Download favicon for URL + URL shkarkimi favikone + + + Download favicon + Shkarko favikonë + + + Apply selected icon to subgroups and entries + Aplikojeni ikonën e përzgjedhur te nëngrupe dhe zëra + + + Apply icon to… + Aplikoni ikonë te… + + + Apply to this group only + Aplikoje vetëm te ky grup + + + Also apply to child groups + Aplikoje edhe te grupe pjella + + + Also apply to child entries + Aplikoje edhe te zëra pjella + + + Also apply to all children + Aplikoje edhe te krejt pjellat + + + Unable to fetch favicon. + S’arrihet të sillet favikonë. + + + Existing icon selected. + U përzgjodh ikonë ekzistuese. + + + Images + Figura + + + All files + Krejt kartelat + + + Select Image(s) + Përzgjidhni Figurë(a) + + + Successfully loaded %1 of %n icon(s) + U ngarkua me sukses %1 nga %n ikonëU ngarkua me sukses %1 nga %n ikona + + + No icons were loaded + S’u ngarkuan ikona + + + %n icon(s) already exist in the database + Te baza e të dhënave ekziston tashmë %n ikonëTe baza e të dhënave ekzistojnë tashmë %n ikona + + + The following icon(s) failed: + Ikona vijuese dështoi:Ikonat vijuese dështuan: + + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Mund të aktivizoni shërbim ikonash sajti DuckDuckGo që nga Rregullime Aplikacioni -> Siguri + + + + EditWidgetProperties + + Created: + Krijuar më: + + + Datetime created + Datë dhe kohë kur u krijua + + + Modified: + Ndryshuar më: + + + Datetime modified + Datë dhe kohë kur u ndryshua + + + Accessed: + Përdorur më: + + + Datetime accessed + Datë dhe kohë kur u përdor + + + Uuid: + Uuid: + + + Unique ID + ID Unike + + + Plugin Data + Të dhëna Shtojce + + + Plugin data + Të dhëna shtojce + + + Remove selected plugin data + Hiq të dhëna shtojce të përzgjedhur + + + Remove + Hiqe + + + Delete plugin data? + Të hiqen të dhëna shtojce? + + + Do you really want to delete the selected plugin data? +This may cause the affected plugins to malfunction. + Doni vërtet të fshihen të dhënat e shtojcës së përzgjedhur? +Kjo mund të bëjë të punojnë keq shtojcat e prekura. + + + Key + Kyç + + + Value + Vlerë + + + + Entry + + %1 - Clone + %1 - Klonoje + + + Passkey + Kyçkalim + + + Invalid conversion type: %1 + Lloj i pavlefshëm shndërrimi: %1 + + + Invalid conversion syntax: %1 + Sintaksë e pavlefshme shndërrimi: %1 + + + Invalid regular expression syntax %1 +%2 + Sintaksë e pavlefshme shprehjeje të rregullt: %1 +%2 + + + + EntryAttachments + + Cannot open file "%1" + S’hapet dot kartela “%1” + + + + EntryAttachmentsDialog + + Form + Formular + + + File name + + + + File contents... + + + + + EntryAttachmentsModel + + Name + Emër + + + Size + Madhësi + + + + EntryAttachmentsWidget + + Form + Formular + + + Attachments + Bashkëngjitje + + + Add new attachment + Shtoni bashkëngjitje të re + + + Add + Shtoje + + + Remove selected attachment + Hiqe bashkëngjitjen e përzgjedhur + + + Remove + Hiqe + + + Open selected attachment + Hape bashkëngjitjen e përzgjedhur + + + Open + Hape + + + Save selected attachment to disk + Ruaje në disk bashkëngjitjen e përzgjedhur + + + Save + Ruaje + + + Select files + Përzgjidhni kartela + + + Confirm remove + Ripohoni heqjen + + + Are you sure you want to remove %n attachment(s)? + Jeni i sigurt se doni të hiqet %n bashkëngjitje?Jeni i sigurt se doni të hiqen %n bashkëngjitje? + + + Save attachments + Ruaji bashkëngjitjet + + + Unable to create directory: +%1 + S’arrihet të krijohet drejtori: +%1 + + + Are you sure you want to overwrite the existing file "%1" with the attachment? + Jeni i sigurt se doni të mbishkruhet kartela ekzistuese “%1” me bashkëngjitjen? + + + Confirm overwrite + Ripohoni mbishkrimin + + + Unable to save attachments: +%1 + S’arrihet të ruhen bashkëngjitje: +%1 + + + Unable to open attachment: +%1 + S’arrihet të hapen bashkëngjitje: +%1 + + + Unable to open attachments: +%1 + S’arrihet të hapen bashkëngjitje: +%1 + + + Unable to open file(s): +%1 + S’arrihet të hapet kartelë: +%1S’arrihet të hapen kartela: +%1 + + + Confirm Overwrite Attachment + Ripohoni Mbishkrim Bashkëngjitjeje + + + Confirm Attachment + Ripohoni Bashkëngjitje + + + %1 is a big file (%2 MB). +Your database may get very large and reduce performance. + +Are you sure to add this file? + %1 është një kartelë e madhe (%2 MB). +Baza juaj e të dhënave mund të bëhet shumë e madhe dhe të bjerë funksionimi. + +Jeni i sigurt se doni të shtohet kjo kartelë? + + + Attachment modified + Bashkëngjitja u ndryshua + + + The attachment '%1' was modified. +Do you want to save the changes to your database? + Bashkëngjitja “%1” u ndryshua. +Doni të ruhen ndryshimet te baza juaj e të dhënave? + + + Saving attachment failed + Dështoi ruajtja e bashkëngjitjes + + + Saving updated attachment failed. +Error: %1 + Dështoi ruajtja e bashkëngjitjes së përditësuar. +Gabim: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Ka tashmë një bashkëngjitje “%1”. +Doni të mbishkruhet bashkëngjitja ekzistuese? + + + New + + + + Preview + Paraparje + + + Failed to preview an attachment: Attachment not found + + + + + EntryAttributesModel + + Name + Emër + + + + EntryHistoryModel + + Current (%1) + I tanishmi (%1) + + + Last modified + Ndryshuar së fundi më + + + Age + Moshë + + + Difference + Diferencë + + + Size + Madhësi + + + Title + Titull + + + Username + Emër përdoruesi + + + Password + Fjalëkalim + + + URL + URL + + + Notes + Shënime + + + Custom Attributes + Atribute Vetjake + + + Icon + Ikonë + + + Color + Ngjyrë + + + Expiration + Skadim + + + TOTP + TOTP + + + Custom Data + Të dhëna Vetjake + + + Attachments + Bashkëngjitje + + + Auto-Type + Vetë-Shtype + + + Tags + Etiketa + + + + EntryModel + + Ref: + Reference abbreviation + Ref: + + + Never + Kurrë + + + Group + Grup + + + Title + Titull + + + Username + Emër përdoruesi + + + Password + Fjalëkalim + + + URL + URL + + + Notes + Shënime + + + Expires + Skadon më + + + Created + Krijuar më + + + Modified + Ndryshuar më + + + Accessed + Përdorur më + + + Attachments + Bashkëngjitje + + + Size + Madhësi + + + Group name + Emër grupi + + + Entry title + Titull zëri + + + Password Strength + Fortësi Fjalëkalimi + + + Entry notes + Shënime zëri + + + Entry expires at + Zëri skadon më + + + Creation date + Datë krijimi + + + Last modification date + Datë ndryshimi së fundi + + + Last access date + Data e përdorimit të fundit + + + Attached files + Kartela të bashkëngjitura + + + Entry size + Madhësi zëri + + + Has attachments + Ka bashkëngjitje + + + Has TOTP + Ka TOTP + + + Background Color + Ngjyrë Sfondi + + + Group Path + + + + + EntryPreviewWidget + + Display current TOTP value + Shfaq vlerën e tanishme TOTP + + + Close + Mbylle + + + General + Të përgjithshme + + + Password + Fjalëkalim + + + URL + URL + + + Expiration + Skadim + + + Tags + Etiketa + + + Tags list + Listë etiketash + + + Username + Emër përdoruesi + + + Notes + Shënime + + + Advanced + Të mëtejshme + + + Attachments + Bashkëngjitje + + + Attributes + Atribute + + + Autotype + Vetë-shtype + + + Default Sequence + Sekuencë Parazgjedhje + + + Window + Dritare + + + Sequence + Sekuencë + + + Searching + Po kërkohet + + + Share + Ndaje me të tjerë + + + Search + Kërko + + + Clear + Spastroje + + + Never + Kurrë + + + Double click to copy value + Që t’i kopjohet vlera, dyklikojeni + + + Enabled + E aktivizuar + + + Disabled + E çaktivizuar + + + Double click to copy to clipboard + Që të kopjohet, dyklikojeni + + + + EntryURLModel + + Invalid URL + URL e pavlefshme + + + Duplicate URL + URL e përsëdytur + + + + EntryView + + Fit to window + Sa ta nxërë dritarja + + + Fit to contents + Sa ta nxërë lënda + + + Reset to defaults + Riktheje te parazgjedhjet + + + + %1 entry(s)... + + %1 zë…+ %1 zëra… + + + + ExportDialog + + Export options + Mundësi Eksportimi + + + Sort entries by... + Renditi zërat sipas… + + + You are about to export your database to an unencrypted file. +This will leave your passwords and sensitive information vulnerable! + + Ju ndan një hap nga eksportimi i bazës suaj të të dhënave si një kartelë e pafshehtëzuar. +Kjo do t’i lërë të cenueshme fjalëkalimet tuaja dhe informacione me spec! + + + + database order + renditje baze të dhënash + + + name (ascending) + emrash (në rend rritës) + + + name (descending) + emrash (në rend zbritës) + + + unknown + e panjohur + + + Export database to HTML file + Eksportoje bazën e të dhënave te kartelë HTML + + + HTML file + Kartelë HTML + + + + FdoSecrets::DBusMgr + + Failed to deliver message + S’u arrit të dërgohej mesazhe + + + Failed to send reply on DBus + S’u arrit të dërgohej përgjigje në DBUS + + + Unknown + Unknown PID + I panjohur + + + Unknown + Unknown executable path + I panjohur + + + <i>PID: %1, Executable: %2</i> + <i>PID: 1234, Executable: /path/to/exe</i> + <i>PID: %1, I ekzekutueshëm: %2</i> + + + Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. + Po xhiron një tjetër shërbim i fshehtë (%1).<br/>Ju lutemi, ndaleni/hiqeni, para se të riaktivizohet Integrimi i Shërbimit të Fshehtë. + + + Failed to register DBus service at %1.<br/> + S’u arrit të regjistrohej shërbim DBus në %1.<br/> + + + Failed to register service on DBus at path '%1' + S’u arrit të regjistrohej shërbim DBus në shtegun '%1' + + + Failed to register database on DBus under the name '%1' + S’u arrit të regjistrohej bazë të dhënash te DBus nën emrin '%1' + + + Failed to register session on DBus at path '%1' + S’u arrit të regjistrohej sesion te DBus në shtegun '%1' + + + Failed to register item on DBus at path '%1' + S’u arrit të regjistrohej objekt te DBus në shtegun '%1' + + + Failed to register prompt object on DBus at path '%1' + S’u arrit të regjistrohej objekt prompt te DBus në shtegun '%1' + + + + FdoSecrets::Item + + Entry "%1" from database "%2" was used by %3 + Nga %3 u përdor zëri “%1” pre bazës së të dhënave “%2” + + + + FdoSecrets::Service + + %n Entry(s) was used by %1 + %1 is the name of an application + Nga %1 qe përdorur %n zëNga %1 qenë përdorur %n zëra + + + + FdoSecrets::SettingsClientModel + + Unknown + I panjohur + + + Non-existing/inaccessible executable path. Please double-check the client is legit. + Shteg të ekzekutueshmi që s’ekziston/ ku s’mund të hyhet. Ju lutemi, rikontrolloni që klienti është i ligjshëm. + + + + FdoSecrets::SettingsDatabaseModel + + Unlock to show + Që të shfaqet, shkyçeni + + + None + Asnjë + + + + FdoSecrets::UnlockPrompt + + %1 (PID: %2) + %1 (PID: %2) + + + + FdoSecretsPlugin + + <b>Fdo Secret Service:</b> %1 + <b>Shërbim të Fshehtash Fdo:</b> %1 + + + + Group + + [empty] + group has no children + [i zbrazët] + + + %1 - Clone + %1 - Klonoje + + + + HibpDownloader + + Online password validation failed + Dështoi vlerësimi në internet i fjalëkalimit + + + + IconDownloaderDialog + + Download Favicons + Shkarko Favikona + + + Cancel + Anuloje + + + Having trouble downloading icons? +You can enable the DuckDuckGo website icon service in the security section of the application settings. + Keni probleme me shkarkim ikonash? +Mund të aktivizoni shërbimin e ikonave të sajteve nga DuckDuckGo, te pjesa e sigurisë në rregullimet e aplikacionit. + + + Close + Mbylle + + + URL + URL + + + Status + Gjendje + + + Please wait, processing entry list… + Ju lutemi, prisni, po përpunohet listë zërash… + + + Downloading… + Po shkarkohet… + + + Ok + Ok + + + Already Exists + Ekziston Tashmë + + + Download Failed + Shkarkimi Dështoi + + + Downloading favicons (%1/%2)… + Po shkarkohen favikona (%1/%2)… + + + + ImportWizard + + Import Wizard + Ndihmës Importimesh + + + + ImportWizardPageReview + + WizardPage + Faqe Ndihmësi + + + Entry count: %1 + Numër zërash: %1 + + + Group + Grup + + + Title + Titull + + + Username + Emër përdoruesi + + + Password + Fjalëkalim + + + Url + URL + + + Could not load key file. + S’u ngarkua dot kartelë kyç. + + + Could not open remote database. Password or key file may be incorrect. + S’u hap dot bazë e largët të dhënash. Mund të jenë të pasaktë fjalëkalimi ose kartela kyç. + + + + ImportWizardPageSelect + + Form + Formular + + + Import File Selection + Përzgjedhje Kartele Importimi + + + Password: + Fjalëkalim: + + + Key File: + Kartelë Kyçi: + + + Browse… + Shfletoni… + + + Import Into: + Importoje Te: + + + New Database + Bazë e re të Dhënash + + + No unlocked databases available + S’ka baza të dhënash të shkyçura + + + Existing Database: + Bazë Ekzistuese të Dhënash: + + + Import File: + Importo Kartelë: + + + Comma Separated Values (.csv) + Vlera Ndarë Me Presje (.csv) + + + 1Password Export (.1pux) + Eksportim 1Password (.1pux) + + + 1Password Vault (.opvault) + Kasafortë 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + Bazë të dhënash KeePass 1 (.kdb) + + + Open OPVault + Hap OPVault + + + Select import file + Përzgjidhni kartelë importimi + + + All files + Krejt kartelat + + + Key files + Kartela kyçesh + + + Select key file + Përzgjidhni kartelë kyçi + + + Comma Separated Values + Vlera Ndarë Me Presje + + + 1Password Export + Eksportim 1Password + + + Bitwarden JSON Export + Eksportim Bitwarden JSON + + + 1Password Vault + Kasafortë 1Password + + + KeePass1 Database + Bazë të Dhënash Keepass1 + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + Bazë e përkohshme të Dhënash + + + Command: + Urdhër: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + p.sh.: "sftp user@hostname" ose "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + Bazë të Dhënash e Largët (.kdbx) + + + + KMessageWidget + + &Close + &Mbylle + + + Close message + Mbylle mesazhin + + + + Kdbx3Reader + + Missing database headers + Mungojnë krye baze të dhënash + + + Unable to calculate database key + S’arrihet të llogaritet kyç baze të dhënash + + + Unable to issue challenge-response: %1 + S’arrihet të emetohet pyetje-përgjigje: %1 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + U dhanë kredenciale të pavlefshme, ju lutemi, riprovoni. +Nëse kjo ndodh sërish, ahere baza juaj e të dhënave mund të jetë e dëmtuar. + + + Header doesn't match hash + Kryet s’përputhen me hashin + + + Invalid header id size + Madhësi e pavlefshme ID-je kryesh + + + Invalid header field length: field %1 + Gjatësi e pavlefshme fushe kryesh: fushë %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Gjatësi e pavlefshme të dhënash kryesh: fushë %1, pritej %2, u gjet %3 + + + + Kdbx3Writer + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Madhësi e pavlefshme Vektori simetrik gatitjeje shifre. + + + Unable to issue challenge-response: %1 + S’arrihet të emetohet pyetje-përgjigje: %1 + + + Unable to calculate database key + S’arrihet të llogaritet kyç baze të dhënash + + + + Kdbx4Reader + + missing database headers + mungojnë krye baze të dhënash + + + Unable to calculate database key: %1 + S’arrihet të llogaritet kyç baze të dhënash: %1 + + + Invalid header checksum size + Madhësi e pavlefshme checksum-i kryesh + + + Header SHA256 mismatch + Mospërputhje kryesh SHA256 + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + U dhanë kredenciale të pavlefshme, ju lutemi, riprovoni. +Nëse kjo ndodh sërish, ahere baza juaj e të dhënave mund të jetë e dëmtuar. + + + (HMAC mismatch) + (Mospërputhje HMAC) + + + Unknown cipher + Shifër e panjohur + + + Invalid header id size + Madhësi e pavlefshme ID-je kryesh + + + Invalid header field length: field %1 + Gjatësi e pavlefshme fushe kryesh: fushë %1 + + + Invalid header data length: field %1, %2 expected, %3 found + Gjatësi e pavlefshme të dhënash kryesh: fushë %1, pritej %2, u gjet %3 + + + Failed to open buffer for KDF parameters in header + S’u arrit të hapet “buffer” për parametra KDFte kryet + + + Unsupported key derivation function (KDF) or invalid parameters + Funksion i pambuluar derivimi kyçesh (KDF), ose parametra të pavlefshëm + + + Legacy header fields found in KDBX4 file. + U gjetën fusha kryesh të dikurshme në kartelë KDBX4. + + + Invalid inner header id size + Madhësi ID-je kryesh të brendshme + + + Invalid inner header field length: field %1 + Gjatësi e pavlefshme fushe kryesh të brendshme: fusha %1 + + + Invalid inner header data length: field %1, %2 expected, %3 found + Gjatësi e pavlefshme fushe kryesh të brendshme: fusha %1, pritej %2, u gjet %3 + + + Invalid inner header binary size + + + + Unsupported KeePass variant map version. + Translation: variant map = data structure for storing meta data + + + + Invalid variant map entry name length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map entry name data + Translation: variant map = data structure for storing meta data + + + + Invalid variant map entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map entry value data + Translation comment: variant map = data structure for storing meta data + + + + Invalid variant map Bool entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map Int32 entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map UInt32 entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map Int64 entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map UInt64 entry value length + Translation: variant map = data structure for storing meta data + + + + Invalid variant map entry type + Translation: variant map = data structure for storing meta data + + + + Invalid variant map field type size + Translation: variant map = data structure for storing meta data + + + + + Kdbx4Writer + + Invalid symmetric cipher algorithm. + Algoritëm i pavlefshëm shifre simetrike. + + + Invalid symmetric cipher IV size. + IV = Initialization Vector for symmetric cipher + Madhësi e pavlefshme Vektori Gatitjeje shifre simetrike. + + + Unable to calculate database key: %1 + S’arrihet të llogaritet kyç baze të dhënash: %1 + + + Failed to serialize KDF parameters variant map + Translation comment: variant map = data structure for storing meta data + + + + + KdbxReader + + Invalid cipher uuid length: %1 (length=%2) + Gjatësi e pavlefshme UUID-je shifre: %1 (gjatësi=%2) + + + Unable to parse UUID: %1 + S’arrihet të analizohet UUID: %1 + + + Unsupported cipher + Shifër e pambuluar + + + Invalid compression flags length + + + + Unsupported compression algorithm + Algoritëm i pambuluar ngjeshjesh + + + Invalid master seed size + + + + Invalid transform seed size + + + + Invalid transform rounds size + Madhësi e pavlefshme raundesh shndërrimi + + + Invalid start bytes size + Madhësi e pavlefshme bajtesh fillimi + + + Invalid random stream id size + + + + Invalid inner random stream cipher + + + + Failed to read database file. + S’u arrit të lexohej kartelë baze të dhënash. + + + The selected file is an old KeePass 1 database (.kdb). + +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. + Kartela e përzgjedhur është një bazë e vjetër të dhënash KeePass 1 (.kdb). + +Mund ta importoni duke klikuar te Bazë të dhënash > “Importoni bazë të dhënash KeePass 1…”. +Ky është një migrim me një kah. S’do të jeni në gjendje të hapni bazën e importuar të të dhënave me versionin e vjetër KeePassX 0.4. + + + Not a KeePass database. + S’është bazë të dhënash Keepass-i. + + + Unsupported KeePass 2 database version. + Version i pambuluar baze të dhënash KeePass 2. + + + + KdbxXmlReader + + XML parsing failure: %1 + Dështim analizimi XML-je: %1 + + + No root group + S’ka grup rrënjë + + + XML error: +%1 +Line %2, column %3 + Gabim XML: +%1 +Rreshti %2, shtylla %3 + + + Missing icon uuid or data + Mungon UUID ose të dhëna ikone + + + Missing custom data key or value + Mungon kyç, ose vlerë të dhënash vetjake + + + Multiple group elements + + + + Null group uuid + + + + Invalid group icon number + Numër i pavlefshëm ikonash grupi + + + Invalid EnableAutoType value + Vlerë EnableAutoType e pavlefshme + + + Invalid EnableSearching value + Vlerë EnableSearching e pavlefshme + + + No group uuid found + S’u gjet grup UUID + + + Null DeleteObject uuid + + + + Missing DeletedObject uuid or time + Mungon UUID ose kohë për DeletedObject + + + Null entry uuid + + + + Invalid entry icon number + Numër i pavlefshëm ikone zëri + + + History element in history entry + Element historiku te zë historiku + + + No entry uuid found + S’u gjet UUID zëri + + + History element with different uuid + Element historiku me UUDI të ndryshme + + + Duplicate custom attribute found + U gjet atribut vetjak i përsëdytur + + + Entry string key or value missing + + + + Entry binary key or value missing + + + + Auto-type association window or sequence missing + Mungon dritare ose sekuencë përshoqërimi Vetë-shtypjeje + + + Invalid bool value + Vlerë buelane e pavlefshme + + + Invalid date time value + Vlerë e pavlefshme date kohe + + + Invalid color value + Vlerë e pavlefshme ngjyre + + + Invalid color rgb part + Pjesë e pavlefshme RGB ngjyre + + + Invalid number value + Vlerë e pavlefshme numri + + + Invalid uuid value + Vlerë UUID e pavlefshme + + + Unable to decompress binary + Translator meant is a binary data inside an entry + S’arrihet të çngjeshet dyor + + + + KeeAgentSettings + + Invalid KeeAgent settings file structure. + Strukturë e pavlefshme kartele rregullimesh KeeAgent. + + + Private key is an attachment but no attachments provided. + Kyçi privat është një bashkëngjitje, por bashkëngjitje s’u dhanë. + + + Private key is empty + Kyçi privat është i zbrazët + + + File too large to be a private key + Kartelë shumë e madhe për të qenë një kyç privat + + + Failed to open private key + S’u arrit të hapej kyç privat + + + + KeePass1Reader + + Unable to read keyfile. + S’arrihet të lexohet kartelë kyç. + + + Not a KeePass database. + S’është bazë të dhënash Keepass-i. + + + Unsupported encryption algorithm. + Algoritëm i pambuluar fshehtëzimesh. + + + Unsupported KeePass database version. + Version i pambuluar baze të dhënash KeePass. + + + Unable to read encryption IV + IV = Initialization Vector for symmetric cipher + S’arrihet të lexohet VG fshehtëzimi + + + Invalid number of groups + Numër i pavlefshëm grupesh + + + Invalid number of entries + Numër i pavlefshëm zërash + + + Invalid content hash size + Madhësi e pavlefshme hashi lënde + + + Invalid transform seed size + + + + Invalid number of transform rounds + Numër i pavlefshëm raundesh shndërrimi + + + Unable to construct group tree + + + + Root + Rrënjë + + + Unable to calculate database key + S’arrihet të llogaritet kyç baze të dhënash + + + unable to seek to content position + + + + Invalid credentials were provided, please try again. +If this reoccurs, then your database file may be corrupt. + U dhanë kredenciale të pavlefshme, ju lutemi, riprovoni. +Nëse kjo ndodh sërish, ahere baza juaj e të dhënave mund të jetë e dëmtuar. + + + Key transformation failed + Shndërrimi i kyçit dështoi + + + Invalid group field type number + Numër i pavlefshëm lloji fushe grupi + + + Invalid group field size + Madhësi fushe grupi e pavlefshme + + + Read group field data doesn't match size + + + + Incorrect group id field size + Madhësi e pasaktë fushe ID-je grupi + + + Incorrect group creation time field size + Madhësi e pasaktë fushe kohe krijimi grupi + + + Incorrect group modification time field size + Madhësi e pasaktë fushe kohe ndryshimi grupi + + + Incorrect group access time field size + Madhësi e pasaktë fushe kohe përdorimi grupi + + + Incorrect group expiry time field size + Madhësi e pasaktë fushe kohe skadimi grupi + + + Incorrect group icon field size + Madhësi e pasaktë fushe ikone grupi + + + Incorrect group level field size + Madhësi e pasaktë fushe niveli grupi + + + Invalid group field type + Lloj i pavlefshëm fushe grupi + + + Missing group id or level + Mungon ID ose nivel grupi + + + Missing entry field type number + Mungon numër lloji fushe zëri + + + Invalid entry field size + Madhësi e pavlefshme fushe zëri + + + Read entry field data doesn't match size + + + + Invalid entry UUID field size + Madhësi e pavlefshme fushe UUID zëri + + + Invalid entry group id field size + Madhësi e pavlefshme fushe ID-je grupi zëri + + + Invalid entry icon field size + Madhësi e pavlefshme fushe ikone zëri + + + Invalid entry creation time field size + Madhësi e pavlefshme fushe kohe krijimi zëri + + + Invalid entry modification time field size + Madhësi e pavlefshme fushe kohe ndryshimi zëri + + + Invalid entry expiry time field size + Madhësi e pavlefshme fushe kohe skadimi zëri + + + Invalid entry field type + Madhësi e pavlefshme fushe zëri + + + + KeeShare + + Invalid sharing reference + + + + Inactive share %1 + + + + Imported from %1 + Importuar nga %1 + + + Exported to %1 + Eksportuar te %1 + + + Synchronized with %1 + Njëkohësuar me %1 + + + Import is disabled in settings + Importimi është i çaktivizuar te rregullimet + + + Export is disabled in settings + Eksportimi është i çaktivizuar te rregullimet + + + Inactive share + + + + Imported from + Importuar nga + + + Exported to + Eksportuar te + + + Synchronized with + Njëkohësuar me + + + + KeyComponentWidget + + Key Component + Përbërës Kyçi + + + Key Component Description + Përshkrim Përbërësi Kyçi + + + Cancel + Anuloje + + + Key Component set, click to change or remove + Përbërësi i Kyçit u ujdis, klikoni për ta ndryshuar, ose hequr + + + + KeyFileEditWidget + + Generate a new key file + Prodhoni një kartelë të re kyçi + + + Generate + Prodhoje + + + Generate a new key file or choose an existing one to protect your database. + Prodhoni një kartelë të re kyçi, ose zgjidhni nëj ekzistuese, që të mbroni bazën tuaj të të dhënave. + + + Note: Do NOT use a file that may change as that will prevent you from unlocking your database. + Shënim: MOS përdorni një kartelë që mund të ndryshojë, ngaqë kjo do t’ju pengojë të shkyçni bazën tuaj të të dhënave. + + + Browse for key file + Shfletoni për kartelë kyçi + + + Browse… + Shfletoni… + + + Old key file format + Format i vjetër kartele kyçi + + + You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. + Përzgjodhët një kartelë kyçi në një format të vjetër. të cilin KeePassXC-ja<br>mund të reshtë së mbuluari në të ardhmen.<br><br>Ju lutemi, në vend të kësaj, shihni mundësinë e prodhimit të një kartele të re. + + + Error loading the key file '%1' +Message: %2 + Gabim në ngarkimin e kartelës së kyçit “%1” +Mesazh: %2 + + + Key File + Kartelë Kyçi + + + Add Key File + Shtoni Kartelë Kyçi + + + Change Key File + Ndryshoni Kartelë Kyçi + + + Remove Key File + Hiqni Kartelë Kyçi + + + Key File set, click to change or remove + Kartela e Kyçit u ujdis, klikoni që ta ndryshoni, ose hiqni + + + <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>Mund të shtoni një kartelë kyçi që përmban bajte kuturu, për më tepër siguri.</p><p>Duhet ta mbani të fshehtë dhe të mos e humbni kurrë, përndryshe do të kyçeni jashtë.</p> + + + Key files + Kartela kyçesh + + + All files + Krejt kartelat + + + Create Key File… + Krijoni Kartelë Kyçi… + + + Error creating key file + Gabim krijimi kartele kyçi + + + Unable to create key file: %1 + S’arrihet të krijohet kartelë kyçi: +%1 + + + Select a key file + Përzgjidhni kartelë kyçi + + + Invalid Key File + Kartelë e Pavlefshme Kyçi + + + You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. + S’mund të përdorni bazën e tanishme të të dhënave si kartelë kyçi për veten. Ju lutemi, zgjidhni një kartelë tjetër, ose prodhoni një kartelë të re kyçi. + + + Suspicious Key File + Kartelë Kyçi e Dyshimtë + + + The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. +Are you sure you want to continue with this file? + Kartela e zgjedhur e kyçit duket si një kartelë fjalëkalimi baze të dhënash. Një kartelë kyçi duhet të jetë një kartelë statike që nuk ndryshon kurrë, ose përndryshe do të humbni përgjithmonë hyrjen te baza juaj e të dhënave. +Jeni i sigurt se doni të vazhdohet me këtë kartelë? + + + + MacUtils + + Invalid key code + Kod i pavlefshëm kyçi + + + Global shortcut already registered to %1 + Shkurtore globale e regjistruar tashmë te %1 + + + Could not register global shortcut + S’u regjistrua dot shkurtore globale + + + + MainWindow + + &Database + &Bazë të dhënash + + + &Recent Databases + Baza të dhënash Së &Fundi + + + &Export + &Eksporto + + + &Help + &Ndihmë + + + &Entries + &Zëra + + + Copy Att&ribute + Kopjo Atri&but + + + TOTP + TOTP + + + Tags + Etiketa + + + &Groups + &Grupe + + + &Tools + &Mjete + + + View + Shihni + + + Theme + Temë + + + &Quit + &Mbylle + + + &About + &Mbi + + + &Check for Updates + &Kontrollo për Përditësime + + + &Open Database… + &Hapni Bazë të Dhënash… + + + &Save Database + &Ruaje Bazën e të Dhënave + + + &Close Database + Mby&lle Bazën e të Dhënave + + + &New Database… + Bazë e R&e të Dhënash… + + + &Merge From Database… + &Përzieni Prej Baze të Dhënash… + + + &New Entry… + Zë i &Ri… + + + &Edit Entry… + Përp&unoni Zë… + + + &Delete Entry… + &Fshini Zë… + + + &New Group… + &Grup i Ri… + + + &Edit Group… + &Përpunoni Grup… + + + &Delete Group… + &Fshini Grup… + + + Download All &Favicons… + Shkarkoni Krejt F&avikonat… + + + Sort &A-Z + Renditi sipas &A-Z + + + Sort &Z-A + Renditi sipas &Z-A + + + Sa&ve Database As… + R&uajeni Bazën e të Dhënave Si… + + + Database &Security… + &Siguri Baze të Dhënash… + + + Database &Reports… + &Raporte Baze të Dhënash… + + + &Database Settings… + Rregullime &Baze të Dhënash… + + + &Clone Entry… + &Klononi Zë… + + + Move u&p + &Ngjite sipër + + + Move do&wn + Zbrite &poshtë + + + Copy &Username + &Kopjo Emër Përdoruesi + + + Copy &Password + Kopjo &Fjalëkalimin + + + &Settings + &Rregullime + + + &Password Generator + Prodhues &Fjalëkalimesh + + + Perform &Auto-Type + kryej &Vetë-Shtypje + + + Download &Favicon + Shkarko F&avikonë + + + Open &URL + Hape &URL-në + + + &Lock Database + &Kyçe Bazën e të Dhënave + + + Lock &All Databases + Kyçi &Krejt Bazat e të Dhënave + + + &Title + &Titull + + + Copy &URL + Kopjoji &URL-në + + + &Notes + Shëni&me + + + &CSV File… + Kartelë &CSV… + + + &HTML File… + Kartelë &HTML… + + + KeePass 1 Database… + Bazë të Dhënash Keepass 1… + + + 1Password Vault… + Kasafortë 1Password… + + + CSV File… + Kartelë CSV… + + + Show TOTP + Shfaq TOTP + + + Show QR Code + Shfaq kod QR + + + Set up TOTP… + Ujdisni TOTP… + + + Copy &TOTP + Kopjo &TOTP + + + Copy Password and TOTP + Kopjo Fjalëkalim dhe TOTP + + + E&mpty recycle bin + &Zbraz koshin e riciklimeve + + + &Donate + &Dhuroni + + + Report a &Bug + Njofto një të &Metë + + + &Getting Started + &Si T’ia Fillohet + + + Open Getting Started Guide + Hap Udhërrëfyes Si T’ia Fillohet + + + &Online Help + Ndihmë Në &Internet + + + &User Guide + &Udhërrëfyes Përdoruesi + + + Open User Guide + Hap Udhërrëfyes Përdoruesi + + + &Keyboard Shortcuts + Shkurtore &Tastiere + + + Save Database Backup… + Ruani Kopjeruajtje Baze të Dhënash… + + + Add key to SSH Agent + Shtoni kyç te Agjent SSH + + + Remove key from SSH Agent + Hiqni kyç nga Agjent SSH + + + Compact Mode + Mënyra Kompakte + + + Automatic + Automatike + + + Light + E çelët + + + Dark + E errët + + + Classic (Platform-native) + Klasike(E brendshme e platformës) + + + Show Menubar + Shfaq shtyllë menush + + + Show Toolbar + Shfaq Panel + + + Show Preview Panel + Shfaq Panel Paraparjesh + + + Always on Top + Përherë në Krye + + + Hide Usernames + Fshihi Emrat e Përdoruesve + + + Hide Passwords + Fshihi Fjalëkalimet + + + Clone Group... + Klononi Grup… + + + &XML File… + Kartelë &XML… + + + Clear history + Spastroje historikun + + + Access error for config file %1 + Gabim hyrjeje në kartelë formësimi %1 + + + Don't show again for this version + Mos e shfaq më për këtë version + + + 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. + KUJDES: Po përdorni një montim të paqëndrueshëm të KeePassXC-së. +Ka një rrezik të lartë dëmtimi, mbani një kopjeruajtje të bazave tuaja të të dhënave. +Ky version s’është menduar për përdorim të vërtetë. + + + NOTE: You are using a pre-release version of KeePassXC. +Expect some bugs and minor issues, this version is meant for testing purposes. + SHËNIM: Po përdorni një version paraqarkullim të KeePassXC-së. +Prisni ca të meta dhe probleme të vogla, ky version është menduar për qëllime testimi. + + + No Tags + Pa Etiketa + + + Restore Entry(s) + Riktheje ZërinRiktheji Zërat + + + Settings + Rregullime + + + Check for updates on startup? + Të kontrollohet për përditësime gjatë nisjes? + + + Would you like KeePassXC to check for updates on startup? + Doni që KeePassXC-ja gjatë nisjes të kontrollojë për përditësime? + + + You can always check for updates manually from the application menu. + Mundeni përherë të kontrolloni dorazi për përditësime, që nga menuja e aplikacionit. + + + Toggle window + Shfaq/Fshih dritare + + + Quit KeePassXC + Mbylle KeePassXC-ën + + + %1 Entry(s) + %1 Zë%1 Zëra + + + Please present or touch your YubiKey to continue… + Ju lutemi, që të vazhdohet, paraqitni, ose prekni YubiKey-n tuaj… + + + Restart Application? + Të riniset Aplikacioni? + + + You must restart the application to apply this setting. Would you like to restart now? + Që të aplikohet ky rregullim duhet të rinisni aplikacionin. Doni të riniset tani? + + + Allow Screen Capture + Lejo Regjistrim Ekrani + + + 1Password 1PUX... + 1Password 1PUX… + + + Import a 1Password 1PUX file + Importoni një kartelë 1Password 1PUX + + + Import… + Importoni… + + + Passkeys… + Kyçkalime… + + + Import Passkey + Importoni Kyçkalim + + + Remote S&ync… + &Njëkohësim i Largët… + + + Quit Application + Mbylle Aplikacionin + + + Open About Dialog + Hap Dialogun “Mbi” + + + Open Database + Hap Bazë të Dhënash + + + Create Database + Krijo Bazë të Dhënash + + + Merge From Database + Përzieni Prej Baze të Dhënash + + + Create Entry + Krijoni Zë + + + Edit Entry + Përpunoni Zërin + + + Delete Entry + Fshini Zë + + + Create Group + Krijoni Grup + + + Edit Group + Përpunoni Grup + + + Delete Group + Fshije Grupin + + + Download All Favicons + Shkarkoji Krejt Favikonat + + + Sort Groups A-Z + Renditi Grupet sipas A-Z + + + Sort Groups Z-A + Renditi Grupet sipas Z-A + + + Save Database As + Ruaje Bazën e të Dhënave Si + + + Show Database Security + Shfaq Siguri Baze të Dhënash + + + Show Database Reports + Shfaq Raporte Baze të Dhënash + + + Show Database Settings + Shfaq Rregullime Baze të Dhënash + + + Show Passkeys + Shfaq Kyçkalime + + + Clone Entry + Klonoje Zërin + + + Move Entry Up + Ngjite Zërin Sipër + + + Move Entry Down + Zbrite Zërin Poshtë + + + Copy Username + Kopjo Emër Përdoruesi + + + Copy Password + Kopjo Fjalëkalimin + + + Show Application Settings + Shfaq Rregullime Aplikacioni + + + Show Password Generator + Shfaq Prodhues Fjalëkalimesh + + + Remove Passkey From Entry + Hiq Kyçkalim Nga Zëri + + + Perform Auto-Type: {USERNAME} + Kryej Vetë-shtypje: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Kryej Vetë-shtypje: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Kryej Vetë-shtypje: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Kryej Vetë-shtypje: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Kryej Vetë-shtypje: {TOTP} + + + Copy Title + Kopjo Titullin + + + Copy URL + Kopjo URL-në + + + Copy Notes + Kopjo Shënime + + + Export to CSV + Eksportoje si CSV + + + Export to HTML + Eksportoje si HTML + + + Import KeePass1 Database + Importo Bazë të Dhënash Keepass 1 + + + Import 1Password Vault + Importo Kasafortë 1Password + + + Import CSV File + Importo Kartelë CSV + + + Show TOTP QR Code + Shfaq Kod QR TOTP + + + Set up TOTP + Ujdisni TOTP + + + Empty Recycle Bin + Zbraz Koshin e Riciklimeve + + + Open Donation Website + Hap Sajt Dhurimesh + + + Open Bug Report + Hap Njoftim të Metash + + + Open Online Documentation + Hap Dokumentin Në Internet + + + Open Keyboard Shortcuts Guide + Hap Udhërrëfyes Shkurtoresh Tastiere + + + Save Database Backup + Ruani Kopjeruajtje Baze të Dhënash + + + SSH Agent: Add Key + Agjent SSH: Shtoni Kyç + + + SSH Agent: Remove Key + Agjent SSH: Hiqni Kyç + + + Toggle Compact Mode + Aktivizo/Çaktivizo Mënyrën Kompakte + + + Set Theme: Automatic + Caktoni Temë: Automatikisht + + + Set Theme: Light + Caktoni Temë: E çelët + + + Set Theme: Dark + Caktoni Temë: E errët + + + Set Theme: Classic + Caktoni Temë: Klasike + + + Toggle Show Menubar + Shfaq/Fshih Shtyllë menush + + + Toggle Show Toolbar + Shfaq/Fshih Panel + + + Toggle Show Preview Panel + Shfaq/Fshih Panel Paraparjesh + + + Toggle Always on Top + Shfaq/Fshih “Përherë Sipër” + + + Toggle Hide Usernames + Shfaq/Fshih “Fshihi Emrat e Përdoruesve” + + + Toggle Hide Passwords + Shfaq/Fshih “Fshihi Fjalëkalimet” + + + Export to XML + Eksportoje si XML + + + Toggle Allow Screen Capture + Aktivizo/Çaktivizo “Lejo Regjistrim Ekrani” + + + Show Group Panel + Shfaq Panel Grupesh + + + Toggle Show Group Panel + Shfaq/Fshih Panel Grupesh + + + Setup Remote Sync… + Ujdisni Njëkohësim të Largët… + + + Password Generator + + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + + + + ManageDatabase + + Database settings + Rregullime baze të dhënash + + + Edit database settings + Përpunoni rregullime baze të dhënash + + + Unlock database + Shkyçe bazën e të dhënave + + + Unlock database to show more information + Që të shfaqen më tepër hollësi, shkyçni bazën e të dhënave + + + Lock database + Kyçe bazën e të dhënave + + + + ManageSession + + Disconnect + Shkëpute + + + Disconnect this application + Shkëpute këtë aplikacion + + + Reset + Riktheje te parazgjedhja + + + Reset any remembered decisions for this application + Rikthe te parazgjedhje cilindo vendim të mbajtur mend për këtë aplikacion + + + + Merger + + Creating missing %1 [%2] + Po krijohet %1 [%2] që mungon + + + Relocating %1 [%2] + Po zhvendoset %1 [%2] + + + Overwriting %1 [%2] + Po mbishkruhet %1 [%2] + + + Synchronizing from newer source %1 [%2] + Po njëkohësohet prej burimi më të ri %1 [%2] + + + Synchronizing from older source %1 [%2] + Po njëkohësohet prej burimi më të vjetër %1 [%2] + + + Deleting child %1 [%2] + Po fshihet pjella %1 [%2] + + + Deleting orphan %1 [%2] + Po fshihet %1 jetim [%2] + + + Changed deleted objects + U ndryshuan objekte të fshirë + + + Adding missing icon %1 + Po shtohet ikonë %1 që mungon + + + Removed custom data %1 [%2] + U hoqën të dhëna vetjake %1 [%2] + + + Adding custom data %1 [%2] + U shtuan të dhëna vetjake %1 [%2] + + + + NewDatabaseWizard + + Create a new KeePassXC database… + Krijoni bazë të re të dhënash KeePassXC… + + + Root + Root group + Rrënjë + + + + NewDatabaseWizardPage + + WizardPage + Faqe Ndihmësi + + + Encryption Settings + Rregullime Fshehtëzimi + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Këtu mund të përimtoni rregullime fshehtëzimi bazash të dhënash. Mos u merakosni, mund t’i ndryshoni më vonë te rregullimet e bazës së të dhënave. + + + + NewDatabaseWizardPageDatabaseKey + + Database Credentials + Kredenciale Baze të Dhënash + + + A set of credentials known only to you that protects your database. + Një grup kredencialesh që i dini vetëm ju, që mbrojnë bazën tuaj të të dhënave. + + + + NewDatabaseWizardPageEncryption + + Encryption Settings + Rregullime Fshehtëzimi + + + Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. + Këtu mund të përimtoni rregullime fshehtëzimi bazash të dhënash. Mos u merakosni, mun t’i ndryshoni më vonë te rregullimet e bazës së të dhënave. + + + + NewDatabaseWizardPageMetaData + + General Database Information + Hollësi të Përgjithshme Baze të Dhënash + + + Please fill in the display name and an optional description for your new database: + Ju lutemi, plotësoni emrin për në ekran dhe një përshkrim opsional për bazën tuaj të re të të dhënave: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + + + NixUtils + + Password Manager + Përgjegjës Fjalëkalimesh + + + Global shortcut already registered to %1 + Shkurtore globale e regjistruar tashmë te %1 + + + Could not register global shortcut + S’u regjistrua dot shkurtore globale + + + + OpData01 + + Invalid OpData01, does not contain header + OpData01 të pavlefshme, s’përmban krye + + + Unable to read all IV bytes, wanted 16 but got %1 + S’arrihet të lexohen krejt bajtet e Gatitjes së Vektorit, duheshin 16, por u morën %1 + + + Unable to init cipher for opdata01: %1 + S’arrihet të gatitet shifër për opdata01: %1 + + + Unable to read all HMAC signature bytes + S’arrihet të lexohen krejt bajtet e nënshkrimit HMAC + + + Malformed OpData01 due to a failed HMAC + OpData01 të keqformuara, për shkak të një HMAC-u të dështuar + + + Unable to process clearText in place + + + + Expected %1 bytes of clear-text, found %2 + Priteshin %1 bajte teksti të lexueshëm, u morën %2 + + + + OpVaultReader + + Directory .opvault must exist + Drejtoria .opvault duhet të ekzistojë + + + Directory .opvault must be readable + Drejtoria .opvault duhet të jetë e lexueshme + + + Directory .opvault/default must exist + Drejtoria .opvault/default duhet të ekzistojë + + + Directory .opvault/default must be readable + Drejtoria .opvault/default duhet të jetë e lexueshme + + + Unable to decode masterKey: %1 + S’arrihet të shkodohet masterKey: %1 + + + Unable to derive master key: %1 + S’arrihet të derivohet kyç i përgjithshëm: %1 + + + + OpenSSHKey + + Invalid key file, expecting an OpenSSH key + Kartelë e pavlefshme kyçesh, pritej një kyç OpenSSH + + + PEM boundary mismatch + + + + Base64 decoding failed + Dështoi shkodim Base64 + + + Key file way too small. + Kartelë kyçi tejet e vockël. + + + Key file magic header id invalid + + + + Found zero keys + U gjetën zero kyçe + + + Failed to read public key. + S’u arrit të lexohej kyç publik. + + + Corrupted key file, reading private key failed + Kartelë kyçi e dëmtuar, leximi i kyçit privat dështoi + + + Unsupported key type: %1 + Lloj i pambuluar kyçesh: %1 + + + No private key payload to decrypt + + + + Unknown cipher: %1 + Shifër e panjohur: %1 + + + AES-256/GCM is currently not supported + AES-256/GCM hëpërhë s’mbulohet + + + Passphrase is required to decrypt this key + Që të shfshehtëzohet ky kyç, lypset frazëkalim + + + Key derivation failed: %1 + Derivimi i kyçit dështoi: %1 + + + Cipher IV is too short for MD5 kdf + Shifra IV është shumë e shkurtër për fdk MD5 + + + Unknown KDF: %1 + FDK i panjohur: %1 + + + Failed to initialize cipher: %1 + S’u arrit të gatitej shifra: %1 + + + Decryption failed: %1 + Fshehtëzimi dështoi: %1 + + + Decryption failed, wrong passphrase? + Fshehtëzimi dështoi, frazëkalim i gabuar? + + + Unexpected EOF while reading key + EOF i papritur teksa lexohej kyçi + + + Unsupported key part + Pjesë kyçi që s’mbulohet + + + Unexpected EOF while reading public key + EOF i papritur teksa lexohej kyç publik + + + Unknown key type: %1 + Lloj i panjohur kyçi: %1 + + + Unexpected EOF while reading private key + EOF i papritur teksa lexohej kyç privat + + + Can't write public key as it is empty + S’shkruhet dot kyç publik, ngaqë është i zbrazët + + + Unexpected EOF when writing public key + EOF i papritur, kur shkruhej kyç publik + + + Can't write private key as it is empty + S’shkruhet dot kyç privat, ngaqë është i zbrazët + + + Unexpected EOF when writing private key + EOF i papritur, kur shkruhej kyç privat + + + (encrypted) + (i fshehtëzuar) + + + + OpenSSHKeyGenDialog + + SSH Key Generator + Prodhues Kyçi SSH + + + Type + Lloj + + + Bits + Bite + + + Comment + Koment + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Eksportim Kyçkalimi + + + Filenames will be generated with title and .passkey file extension. + Emrat e kartelave do të prodhohen me titull dhe zgjatim .passkey për kartelat. + + + Export entries + Eksporto zëra + + + Export Selected + U përzgjodh Eksport + + + Cancel + Anuloje + + + Export to folder + Eksportoje në dosje + + + Export the following passkey entries. + Eksporto zërat vijues të kyçkalimeve. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Eksportim Kyçkalimi + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Ka tashmë një kartelë “%1.passkey”. +Doni të mbishkruhet? + + + + Cannot open file + S’hapet dot kartela + + + Cannot open file "%1" for writing. + S’hapet dot kartela “%1” për shkrim. + + + Cannot write to file + S’shkruhet dot te kartela + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Importim Kyçkalimi + + + Username: %1 + Emër Përdoruesi: %1 + + + Group + Grup + + + Database + Bazë të dhënash + + + Import Passkey + Importoni Kyçkalim + + + Import + Importo + + + Cancel + Anuloje + + + Entry + + + + Create new entry + Krijoni zë të ri + + + Relying Party: %1 + + + + Import the following passkey: + Importo kyçkalimin vijues: + + + Import the following passkey to this entry: + Importo kyçkalimin vijues te ky zë: + + + Default passkeys group (Imported Passkeys) + Grup parazgjedhje kyçkalimesh (Kyçkalime të Importuar) + + + + PasskeyImporter + + Passkey file + Kartelë kyçi + + + All files + Krejt kartelat + + + Cannot open file + S’hapet dot kartela + + + Cannot open file "%1" for reading. + S’hapet dot kartela “%1” për lexim. + + + Open passkey file + Hap kartelë kyçi + + + Cannot import passkey + S’importohet dot kyçkalim + + + Cannot import passkey file "%1". Data is missing. + S’importohet dot kartelë kyçkalimi “%1”. Mungojnë të dhëna. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + S’importohet dot kartelë kyçkalimi “%1”. +Mungojnë të dhënat vijues: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + S’importohet dot kartelë kyçkalimi “%1”. Mungon, ose është i keqformuar kyçi privat. + + + + PasswordEditWidget + + Enter password: + Jepni fjalëkalim: + + + Password field + Fushë fjalëkalimi + + + Confirm password: + Ripohoni fjalëkalimin: + + + Repeat password field + Fushë përsëritjeje fjalëkalimi + + + Password + Fjalëkalim + + + Add Password + Shtoni Fjalëkalim + + + Change Password + Ndryshoni Fjalëkalimin + + + Remove Password + Hiqe Fjalëkalimin + + + Password set, click to change or remove + Fjalëkalimi u caktua, klikoni që ta ndryshoni, ose hiqni + + + <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> + <p>Një fjalëkalim përbën metodën parësore për sigurimin e bazës suaj të të dhënave.</p><p>Fjalëkalimet e mirë janë të gjatë dhe unikë. KeePassXC-ja mund të prodhojë një të tillë për ju.</p> + + + Passwords do not match. + Fjalëkalimet s’përputhen. + + + + PasswordGeneratorWidget + + Generate Password + Prodho Fjalëkalimin + + + strength + Password strength + fortësi + + + entropy + entropi + + + Generated password + Fjalëkalim i prodhuar + + + %p% + %p% + + + Regenerate password + Riprodho fjalëkalimin + + + Copy password + Kopjo fjalëkalimin + + + Password + Fjalëkalim + + + &Length: + &Gjatësi: + + + Password length + Gjatësi fjalëkalimi + + + Switch to advanced mode + Kaloni nën mënyrën e thelluar + + + Advanced + E thelluar + + + Character Types + Lloje Shenjash + + + Special characters + Shenja speciale + + + Quotes + Citime + + + Punctuation + Pikësim + + + Dashes and Slashes + Vija ndarëse dhe Pjerrake + + + Upper-case letters + Shkronja të mëdha + + + Numbers + Numra + + + Lower-case letters + Shkronja të vogla + + + Math Symbols + Simbole Matematike + + + Extended ASCII + ASCII e zgjeruar + + + Braces + Kllapa + + + Do not include: + Mos përfshi: + + + Additional characters to use for the generated password + Shenja shtesë për tu përdorur për fjalëkalimin e prodhuar + + + Additional characters + Shenja shtesë + + + Add non-hex letters to "do not include" list + Shto shkronja jo gjashtëmbëdhjetëshe te listë “mos përfshi” + + + Hex Passwords + Fjalëkalime Gjashtëmbëdhjetësh + + + Hex + Gjashtëmbëdhjetësh + + + Character set to exclude from generated password + Shenja për t’u përjashtuar nga fjalëkalimi i prodhuar + + + Excluded characters + Shenja të përjashtuara + + + Also choose from: + Zgjidh edhe prej: + + + Exclude look-alike characters + Përjashto shenja të ngjashme + + + Pick characters from every group + Merr shenja nga çdo grup + + + Passphrase + Frazëkalim + + + Word Separator: + Ndarës Fjalësh: + + + Wordlist: + Listë fjalësh: + + + Word Count: + Numër Fjalësh: + + + Word Case: + Shkronja për Fjalën: + + + Delete selected wordlist + Fshi listë të përzgjedhur fjalësh + + + Add custom wordlist + Shtoni listë vetjake fjalësh + + + Close + Mbylle + + + Esc + Esc + + + Apply Password + Apliko Fjalëkalimin + + + Regenerate password (%1) + Riprodho fjalëkalimin (%1) + + + lower case + të vogla + + + UPPER CASE + TË MËDHA + + + Title Case + Shkronja për Titullin: + + + (SYSTEM) + (SISTEM) + + + Entropy: %1 bit + Entropi: %1 bit + + + Password Quality: %1 + Cilësi Fjalëkalimesh: %1 + + + Poor + Password quality + Shumë i dobët + + + Weak + Password quality + I dobët + + + Good + Password quality + I mirë + + + Excellent + Password quality + I shkëlqyer + + + Confirm Delete Wordlist + Ripohoni Fshirje Liste Fjalësh + + + Do you really want to delete the wordlist "%1"? + Doni vërtet të fshihet lista e fjalëve “%1”? + + + Failed to delete wordlist + S’u arrit të fshihet listë fjalësh + + + Wordlists + Lista fjalësh + + + All files + Tërë kartelat + + + Select Custom Wordlist + Përzgjidhni Listë Vetjake Fjalësh + + + Overwrite Wordlist? + Të mbishkruhet Listë Fjalësh? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Lista e fjalëve “%1”ekziston si një listë vetjake fjalësh. +Doni të mbishkruhet? + + + Failed to add wordlist + S’u arrit të shtohet listë fjalësh + + + Logograms + Logograme + + + Special Characters + Shenja Speciale + + + passwordLength + + + + Characters: %1 + Shenja: %1 + + + MIXED case + Shkronja TË PËRZIERA + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Shenja të përjashtuara: “0”, “1”, “l”, “I”, “O”, “|”, “﹒”, “B”, “8”, “G”, “6” + + + + PasswordWidget + + Passwords do not match + Fjalëkalimet s’përputhen + + + Passwords match so far + Fjalëkalimet përputhen deri këtu + + + Toggle Password (%1) + Shfaq/Fshih Fjalëkalim (%1) + + + Generate Password (%1) + Prodhoje Fjalëkalimin (%1) + + + Warning: Caps Lock enabled! + Kujdes: Caps Lock aktiv! + + + Quality: %1 + Cilësi: %1 + + + Poor + Password quality + Shumë i dobët + + + Weak + Password quality + I dobët + + + Good + Password quality + I mirë + + + Excellent + Password quality + I shkëlqyer + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Ndryshoni dukshmërinë e fjalëkalimit duke përdorur Ctrl + H. Hapni prodhuesin e fjalëkalimeve duke përdorur Ctrl + G. + + + + PickcharsDialog + + KeePassXC - Pick Characters + KeePassXC - Zgjidhni Shenja + + + Select characters to type, navigate with arrow keys, Ctrl + S submits. + Përzgjidhni shenja për shtypje, lëvizni me tastet shigjetë, Ctrl + S bën parashtrimin. + + + Press &Tab between characters + Shtypni tastin &Tab mes shenjave + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + + + QMessageBox + + Overwrite + Mbishkruaje + + + Delete + Fshije + + + Move + Lëvizeni + + + Empty + I zbrazët + + + Remove + Hiqe + + + Skip + Anashkaloje + + + Disable + Çaktivizoje + + + Merge + Përzieji + + + Continue + Vazhdo + + + Continue with weak password + Vazhdo me fjalëkalim të dobët + + + + QObject + + Database not opened + Bazë të dhënash jo e hapur + + + Database hash not available + S’ka hash baze të dhënash + + + Client public key not received + S’u mor kyç publik klienti + + + Cannot decrypt message + S’shfshehtëzohet dot mesazhi + + + Action cancelled or denied + Veprimi u anulua, ose s’u pranua + + + Message encryption failed. + Fshehtëzimi i mesazhit dështoi. + + + KeePassXC association failed, try again + Përshoqërimi i KeePassXC-së dështoi, riprovoni + + + Encryption key is not recognized + Kyçi i fshehtëzimit s’njihet + + + Incorrect action + Veprim i pavlefshëm + + + Empty message received + U mor mesazh i zbrazët + + + No URL provided + S’u dha URL + + + No logins found + S’u gjetën kredenciale hyrjesh + + + No groups found + S’u gjetën grupe + + + Cannot create new group + S’mund të krijohet grup i ri + + + No valid UUID provided + S’u dha UUID i vlefshëm + + + Unknown error + Gabim i panjohur + + + Browser Integration + Integrim Shfletuesi + + + Browser Plugin Failure + Dështim Shtojce Shfletuesi + + + Could not save the native messaging script file for %1. + + + + Username for the entry. + Emër përdoruesi për zërin. + + + username + emër përdoruesi + + + URL for the entry. + URL për zërin. + + + URL + URL + + + Notes for the entry. + Shënime mbi zërin. + + + Notes + Shënime + + + Prompt for the entry's password. + Kërko fjalëkalimin e zërit. + + + Generate a password for the entry. + Prodho një fjalëkalim për zërin. + + + Add a new entry to a database. + Shtoni një zë të ri te një bazë të dhënash. + + + Path of the entry to add. + Shteg zëri për t’u shtuar. + + + Cannot generate a password and prompt at the same time. + + + + Could not create entry with path %1. + S’u krijua dot zë me shteg %1. + + + Enter password for new entry: + Jepni fjalëkalim për zë të ri: + + + Writing the database failed %1. + Shkrimi i bazës së të dhënave dështoi %1. + + + Successfully added entry %1. + U shtua me sukses zëri %1. + + + Adds a new group to a database. + Shton një grup të ri te një bazë të dhënash. + + + Path of the group to add. + Shteg grupi për t’u shtuar. + + + Group %1 already exists! + Grupi %1 ekziston tashmë! + + + Group %1 not found. + S’u gjet grupi %1. + + + Successfully added group %1. + Grupi %1 u shtua me sukses. + + + Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. + Kontrolloni nëse ka rrjedhur publikisht çfarëdo fjalëkalimi. EMËRKARTELE duhet të jetë shtegu i një kartele që radhit hashe SHA-1 të fjalëkalimeve që janë komprometuar, në format, si gjenden te https://haveibeenpwned.com/Passwords. + + + FILENAME + EMËR KARTELE + + + Path to okon-cli to search a formatted HIBP file + Shteg për te okon-cli për të kërkuar një kartelë të formatuar si HIBP + + + okon-cli + okon-cli + + + Analyze passwords for weaknesses and problems. + Analizoni fjalëkalime për dobësi dhe probleme. + + + Cannot find HIBP file: %1 + S’gjendet dot kartelë HIBP: %1 + + + Evaluating database entries using okon… + Po peshohen zëra baze të dhënash duke përdorur okon… + + + Failed to open HIBP file %1: %2 + S’u arrit të hapej kartelë HIBP %1: %2 + + + Evaluating database entries against HIBP file, this will take a while… + Po peshohen zëra baze të dhënash kundrejt kartele HIBP, kjo do të zgjasë ca… + + + Password for '%1' has been leaked %2 time(s)! + Fjalëkalimi për “%1” ka rrjedhur %2 herë!Fjalëkalimi për “%1” ka rrjedhur %2 herë! + + + Password for '%1' has been leaked! + Fjalëkalimi për “%1” ka rrjedhur! + + + Export an attachment of an entry. + Eksportoni një bashkëngjitje të një zëri. + + + Path of the entry with the target attachment. + Shteg i zërit me bashkëngjitjen e synuar. + + + Name of the attachment to be exported. + Emër i bashkëngjitjes për t’u eksportuar. + + + Path to which the attachment should be exported. + Shteg te i cili duhet eksportuar bashkëngjitja. + + + Could not find entry with path %1. + S’u gjet dot zë me shtegun %1. + + + Could not find attachment with name %1. + S’u gjet dot bashkëngjitje me emrin %1. + + + No export target given. Please use '--stdout' or specify an 'export-file'. + S’u dha objektiv eksportimi. Ju lutemi, përdorni “--stdout”, ose specifikoni një “kartelë-eksportimi”. + + + Could not open output file %1. + S’u hap dot kartela output %1. + + + Successfully exported attachment %1 of entry %2 to %3. + U eksportua me sukses bashkëngjitja %1 e zërit %2 te %3. + + + Overwrite existing attachments. + Mbishkruaj bashkëngjitje ekzistuese. + + + Imports an attachment to an entry. + Importon një bashkëngjitje te një zë. + + + Path of the entry. + Shteg i zërit. + + + Name of the attachment to be added. + Emër i bashkëngjitjes për t’u shtuar. + + + Path of the attachment to be imported. + Shteg i bashkëngjitjes për t’u importuar. + + + Attachment %1 already exists for entry %2. + Bashkëngjitja %1 ekziston tashmë për zërin %2. + + + Could not open attachment file %1. + S’u hap dot kartela bashkëngjitje %1. + + + Successfully imported attachment %1 as %2 to entry %3. + U importua me sukses bashkëngjitja %1 e zërit %2 te %3. + + + Remove an attachment of an entry. + Hiqni një bashkëngjitje të një zëri. + + + Name of the attachment to be removed. + Emër i bashkëngjitjes për t’u hequr. + + + Successfully removed attachment %1 from entry %2. + U hoq me sukses bashkëngjitja %1 nga zëri %2. + + + Copy the given attribute to the clipboard. Defaults to "password" if not specified. + Don't translate "password", it refers to the attribute. + Kopjoje në të papastër atributin e dhënë. Si parazgjedhje merr vlerën “password”, nëse nuk specifikohet. + + + Copy the current TOTP to the clipboard (equivalent to "-a totp"). + Kopjo në të papastër TOTP e tanishëm (e njëvlershme me “-a totp”). + + + Must match only one entry, otherwise a list of possible matches is shown. + Duhet të gjejë përkim vetëm me një zë, përndryshe shfaqet një listë përkimesh të mundshëm. + + + Copy an entry's attribute to the clipboard. + Kopjo në të papastër atributin e një zëri. + + + Path of the entry to clip. + clip = copy to clipboard + Shteg zëri për t’u kopjuar në të papastër. + + + Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). + Mbarim kohe para se të pastrohet e papastra (parazgjedhja është %1 sekonda, vëreni 0 për të qenë e pakufizuar). + + + Invalid timeout value %1. + Vlerë e pavlefshme mbarimi kohe %1. + + + Multiple entries matching: + Përputhje me një numër zërash: + + + Using matching entry: %1 + Po përdoret zëri me përputhjes: %1 + + + Entry %1 not found. + S’u gjet zëri %1. + + + ERROR: Please specify one of --attribute or --totp, not both. + GABIM: Ju lutemi, specifikoni një nga --attribute ose --totp, jo që të dy. + + + Entry with path %1 has no TOTP set up. + Zëri me shtegun %1 s’ka TOTP të ujdisur. + + + ERROR: attribute %1 is ambiguous, it matches %2. + GABIM: atributi %1 është i dykuptimtë, përkon me %2. + + + Attribute "%1" not found. + S’u gjet atribut “%1”. + + + Entry's "%1" attribute copied to the clipboard! + Atributi i zërit “%1” u kopjua te e papastra! + + + Clearing the clipboard in %1 second(s)... + Po spastrohet e papastra pas %1 sekonde…Po spastrohet e papastra pas %1 sekondash… + + + Clipboard cleared! + E papastra u spastrua! + + + Close the currently opened database. + Mbylle bazën e të dhënash aktualisht të hapur. + + + Display this help. + Shfaq këtë ndihmë. + + + Silence password prompt and other secondary outputs. + + + + Key file of the database. + Kartelë kyçi i bazës së të dhënave. + + + path + shteg + + + Deactivate password key for the database. + Çaktivizo kyç fjalëkalimi për bazën e të dhënave. + + + Yubikey slot and optional serial used to access the database (e.g., 1:7370001). + Vend për Yubikey dhe serial opsional të përdorur për të hyrë te baza e të dhënave (p.sh., 1:7370001). + + + slot[:serial] + + + + Missing positional argument(s). + Mungon argument(e) pozicional. + + + Too many arguments provided. + U dhanë shumë argumente. + + + Path of the database. + Shteg i bazës së të dhënave. + + + Target decryption time in MS for the database. + Kohë shfshehtëzimi e synuar, në MS, për bazën e të dhënave. + + + time + kohë + + + Set the key file for the database. + Caktoni kartelën e kyçit për bazën e të dhënave. + + + Set a password for the database. + Caktoni një fjalëkalim për bazën e të dhënave. + + + Create a new database. + Krijoni bazë të re të dhënash. + + + Invalid decryption time %1. + Kohë e pavlefshme shfshehtëzimi %1. + + + Target decryption time must be between %1 and %2. + Koha e synuar për shfshehtëzimin duhet të jetë mes %1 dhe %2. + + + Failed to set database password. + S’u arrit të caktohet fjalëkalim baze të dhënash. + + + Loading the key file failed + Dështoi ngarkimi i kartelës së kyçit + + + No key is set. Aborting database creation. + S’është ujdisur ndonjë kyç. Po ndërpritet krijimi i bazës së të dhënave. + + + Benchmarking key derivation function for %1ms delay. + Po vlerësohet funksioni i derivimit të kyçit për vonesë %1ms. + + + Setting %1 rounds for key derivation function. + Po caktohen %1 raunde për funksion derivimi kyçesh. + + + error while setting database key derivation settings. + gabim teksa ujdiseshin rregullime derivimi kyçi baze të dhënash. + + + File %1 already exists. + Kartela %1 ekziston tashmë. + + + Failed to save the database: %1. + S’u arrit të ruhej baza e të dhënave: %1. + + + Successfully created new database. + U krijua me sukses bazë e re të dhënash. + + + Unset the password for the database. + Hiqe fjalëkalimin për bazën e të dhënave. + + + Unset the key file for the database. + Hiqe kartelën e kyçit për bazën e të dhënave. + + + Edit a database. + Përpunoni një bazë të dhënash. + + + Cannot use %1 and %2 at the same time. + S’mund të përdoret %1 dhe %2 në të njëjtën kohë. + + + Could not change the database key. + S’u ndryshua dot kyçi i bazës së të dhënave. + + + Database was not modified. + Baza e të dhënave s’u ndryshua. + + + Writing the database failed: %1 + Shkrimi te baza e të dhënave dështoi: %1 + + + Successfully edited the database. + Baza e të dhënave u përpunua me sukses. + + + Cannot remove password: The database does not have a password. + S’hiqet dot fjalëkalim: Baza e të dhënave s’ka fjalëkalim. + + + Cannot remove file key: The database does not have a file key. + S’hiqet dot kyç kartele: Baza e të dhënave s’ka kyç kartele. + + + Loading the new key file failed: %1 + Dështoi ngarkimi i kartelës së re të kyçit: %1 + + + Found unexpected Key type %1 + U gjet lloj i papritur %1 Kyçi + + + Cannot remove all the keys from a database. + S’mund të hiqen krejt kyçet nga një bazë të dhënash. + + + Show a database's information. + Shfaq hollësi të një baze të dhënash. + + + UUID: + UUID: + + + Name: + Emër: + + + Description: + Përshkrim: + + + Cipher: + Shifër: + + + KDF: + FDK: + + + Recycle bin is enabled. + Koshi i hedhurinave është aktivizuar. + + + Recycle bin is not enabled. + Koshi i hedhurinave s’është aktivizuar. + + + Location + Vendndodhje + + + Database created + Baza e të dhënave u krijua + + + Last saved + Ruajtur së fundi më + + + Unsaved changes + Ndryshime të paruajtura + + + yes + po + + + no + jo + + + Number of groups + Numër grupesh + + + Number of entries + Numër zërash + + + Number of expired entries + Numër zërash të skaduar + + + Unique passwords + Fjalëkalime unikë + + + Non-unique passwords + Fjalëkalime jo unikë + + + Maximum password reuse + Maksimum ripërdorimi fjalëkalimi + + + Number of short passwords + Numër fjalëkalimesh të shkurtër + + + Number of weak passwords + Numër fjalëkalimet të dobët + + + Entries excluded from reports + Zëra të përjashtuar nga raporte + + + Average password length + Gjatësi mesatare fjalëkalimesh + + + %1 characters + %1 shenja + + + Word count for the diceware passphrase. + Numër fjalësh për frazëkalim Diceware. + + + count + CLI parameter + numër + + + Wordlist for the diceware generator. +[Default: EFF English] + Listë fjalësh për prodhuesin Diceware. +[Parazgjedhje: EFF English] + + + Generate a new random diceware passphrase. + Prodho një frazëkalim të ri kuturu Diceware. + + + Invalid word count %1 + Numër i pavlefshëm fjalësh %1 + + + Title for the entry. + Titull për zërin. + + + title + titull + + + Edit an entry. + Përpunoni një zë. + + + Path of the entry to edit. + Shteg i zërit për t’u përpunuar. + + + Not changing any field for entry %1. + S’po ndryshohet ndonjë fushë për zërin %1. + + + Enter new password for entry: + Jepni fjalëkalim të ri për zërin: + + + Successfully edited entry %1. + Zëri %1 u përpunua me sukses. + + + Perform advanced analysis on the password. + Kryeni analizë të thelluar mbi fjalëkalimin. + + + Password for which to estimate the entropy. + Fjalëkalim për të cilin të vlerësohet entropia. + + + Estimate the entropy of a password. + Vlerësoni entropinë e një fjalëkalimi. + + + Length %1 + Gjatësi %1 + + + Entropy %1 + Entropi %1 + + + Log10 %1 + Log10 %1 + + + Multi-word extra bits %1 + + + + Type: Bruteforce + Lloj: Hyrje me zor + + + Type: Dictionary + Lloj: Fjalorth + + + Type: Dict+Leet + + + + Type: User Words + Lloj: Fjalë Përdoruesi + + + Type: User+Leet + + + + Type: Repeated + Lloj : I përsëritur + + + Type: Sequence + Lloj: Sekuencë + + + Type: Spatial + Lloj: Hapësinore + + + Type: Date + Lloj: Datë + + + Type: Bruteforce(Rep) + + + + Type: Dictionary(Rep) + + + + Type: Dict+Leet(Rep) + + + + Type: User Words(Rep) + + + + Type: User+Leet(Rep) + + + + Type: Repeated(Rep) + + + + Type: Sequence(Rep) + + + + Type: Spatial(Rep) + + + + Type: Date(Rep) + + + + Type: Unknown (%1) + Lloj: I panjohur (%1) + + + Entropy %1 (%2) + Entropi %1 (%2) + + + *** Password length (%1) != sum of length of parts (%2) *** + *** Gjatësi fjalëkalimi (%1) != shuma e gjatësisë së pjesëve (%2) *** + + + Exit interactive mode. + Dil nga mënyra me ndërveprim. + + + Exports the content of a database to standard output in the specified format. + Eksportoje lëndën e një bazë të dhënash te output-i standard në formatin e treguar. + + + Unable to export database to XML: %1 + S’arrihet të eksportohet bazë të dhënash në XML: %1 + + + Unsupported format %1 + Format %1 i pambuluar + + + Length of the generated password + Gjatësi e fjalëkalimit të prodhuar + + + length + gjatësi + + + Use lowercase characters + Përdor shenja me të vogla + + + Use uppercase characters + Përdor shenja me të mëdha + + + Use numbers + Përdor numra + + + Use special characters + Përdor shenja speciale + + + Use extended ASCII + Përdor ASCII të zgjeruar + + + Exclude character set + Përjashto grup shenjash + + + chars + shenja + + + Use custom character set + Përdorni shkronja të përshtatura + + + Exclude similar looking characters + Përjashto shenja që janë të ngjashme + + + Include characters from every selected group + Përfshi shenja nga çdo grup i përzgjedhur + + + Generate a new random password. + Prodho një fjalëkalim të ri kuturu. + + + Invalid password length %1 + Gjatësi %1 e pavlefshme fjalëkalimi + + + Invalid password generator after applying all options + Prodhues i pavlefshëm fjalëkalimi, pas aplikimit të tërë mundësive + + + Display command help. + Shfaq ndihmë urdhri. + + + Available commands: + Urdhra të gatshëm: + + + Import the contents of an XML database. + Importo lëndën e një baze të dhënash XML. + + + Path of the XML database export. + Shteg eksportimi baze të dhënash XML. + + + Path of the new database. + Shteg i bazës së re të të dhënave. + + + Unable to import XML database: %1 + S’arrihet të importohet bazë të dhënash XML: %1 + + + Successfully imported database. + U importua me sukses bazë të dhënash. + + + Unknown command %1 + Urdhër %1 i panjohur + + + + +Available commands: + + + +Urdhra të gatshëm: + + + + Name of the command to execute. + Emër i urdhrit që duhet përmbushur. + + + Displays debugging information. + Shfaq të dhëna diagnostikimi. + + + Invalid command %1. + Urdhër %1 i pavlefshëm. + + + Recursively list the elements of the group. + Paraqit në mënyrë rekursive elementët e grupit. + + + Flattens the output to single lines. + + + + List database entries. + Paraqit zëra baze të dhënash. + + + Path of the group to list. Default is / + Shteg për te grupi për paraqitje. Parazgjedhja është / + + + Cannot find group %1. + S’gjendet dot grupi %1. + + + Use the same credentials for both database files. + Përdor të njëjtat kredenciale për të dyja kartelat e bazës së të dhënave. + + + Key file of the database to merge from. + Kartelë kyç i bazës së të dhënave prej nga të bëhet përzierja. + + + Deactivate password key for the database to merge from. + Çaktivizoje kyçin e fjalëkalimit për bazën e të dhënave prej nga bëhet përzierje. + + + Only print the changes detected by the merge operation. + Shtyp vetëm ndryshimet e pikasura nga veprimi i përzierjes. + + + Yubikey slot for the second database. + Vend Yubikey për bazën e dytë të të dhënave. + + + slot + + + + Merge two databases. + Përzieji dy bazat e të dhënave. + + + Path of the database to merge from. + Shteg i bazës së të dhënave prej nga të përzihet. + + + Error reading merge file: +%1 + Gabim gjatë leximit të kartelës përzierje: +%1 + + + Unable to save database to file : %1 + S’arrihet të ruhet bazë të dhënash te kartelë: %1 + + + Successfully merged %1 into %2. + %1 u përzje me sukses te %2. + + + Database was not modified by merge operation. + Baza e të dhënave s’u ndryshua nga veprimi i përzierjes. + + + Moves an entry to a new group. + E kalon një zë te një grup i ri. + + + Path of the entry to move. + Shteg i zërit për t’u lëvizur. + + + Path of the destination group. + Shteg i grupit vendmbërritje. + + + Could not find group with path %1. + S’u gjet dot grup me shtegun %1. + + + Entry is already in group %1. + Zëri gjendet tashmë te grupi %1. + + + Successfully moved entry %1 to group %2. + Zëri %1 u shpu me sukses te grupi %2. + + + Open a database. + Hap një bazë të dhënash. + + + Path of the entry to remove. + Shteg i zërit për t’u hequr. + + + Unable to save database to file: %1 + S’arrihet të ruhet bazë të dhënash te kartelë: %1 + + + Successfully recycled entry %1. + Zëri %1 u riciklua me sukses. + + + Successfully deleted entry %1. + Zëri %1 u fshi me sukses. + + + Path of the group to remove. + Shteg i grupit për t’u hequr. + + + Cannot remove root group from database. + S’hiqet dot grupi rrënjë nga baza e të dhënave. + + + Successfully recycled group %1. + Grupi %1 u riciklua me sukses. + + + Successfully deleted group %1. + Grupi %1 u fshi me sukses. + + + Find entries quickly. + Gjeni shpejt zëra. + + + Search term. + Term kërkimi. + + + Show the entry's current TOTP. + Shfaq TOTP aktual të zërit. + + + Show the protected attributes in clear text. + Atributet e mbrojtura shfaqi si tekst i lexueshëm. + + + Show all the attributes of the entry. + Shfaq krejt atributet e zërit. + + + Show the attachments of the entry. + Shfaq bashkëngjitjen e zërit. + + + 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. + Emrat e atributeve për t’u shfaqur. Kjo mundësi mund të jepet më shumë se një herë, me çdo atribut të shfaqur një për rresht sipas rendit të dhënë. Nëse nuk specifikohen atribute, jepet një përmbledhje e atributeve parazgjedhje. + + + attribute + atribut + + + Show an entry's information. + Shfaqe hollësitë e një zëri. + + + Name of the entry to show. + Emër i zërit për t’u shfaqur. + + + ERROR: unknown attribute %1. + GABIM: atribut i panjohur %1. + + + No attachments present. + Pa bashkëngjitje të pranishme. + + + Attachments: + Bashkëngjitje: + + + Failed to open database file %1: not found + S’u arrit të hapej kartelë baze të dhënash %1: s’u gjet + + + Failed to open database file %1: not a plain file + S’u arrit të hapej kartelë baze të dhënash %1: jo kartelë e thjeshtë + + + Failed to open database file %1: not readable + S’u arrit të hapej kartelë baze të dhënash %1: jo e lexueshme + + + Enter password to unlock %1: + Që të shkyçet %1, jepni fjalëkalimin: + + + Failed to load key file %1: %2 + S’u arrit të ngarkohej kartelë kyçi %1: %2 + + + WARNING: You are using an old key file format which KeePassXC may +stop supporting in the future. + +Please consider generating a new key file. + KUJDES: po përdorni një format të vjetër kartelash kyçi, të cilin KeePassXC-ja mund +të reshtë së mbuluari në të ardhmen. + +Ju lutemi, shihni mundësinë e prodhimit të një kartele të re kyçi. + + + Invalid YubiKey slot %1 + Vend i pavlefshëm për YubiKey %1 + + + Invalid YubiKey serial %1 + Serial i pavlefshëm për YubiKey %1 + + + Please present or touch your YubiKey to continue. + + + + Enter password to encrypt database (optional): + Jepni fjalëkalim që të fshehtëzohet bazë të dhënash (opsionale): + + + Do you want to create a database with an empty password? [y/N]: + Doni të krijohet një bazë të dhënash me një fjalëkalim të zbrazët? [y/N]: + + + Repeat password: + Rijepeni fjalëkalimin: + + + Error: Passwords do not match. + Gabim: Fjalëkalimet s’përputhen. + + + No program defined for clipboard manipulation + S’ka të përcaktuar program për manipulim të papastre + + + All clipping programs failed. Tried %1 + + Dështuan krejt programet e kopjimit në të papastër. U provuan %1 + + + + Creating KeyFile %1 failed: %2 + Krijimi i Kartelës së kyçit %1 dështoi: %2 + + + Loading KeyFile %1 failed: %2 + Ngarkimi Kartelës së kyçit %1 dështoi: %2 + + + HIBP file, line %1: parse error + Kartelë HIBP, rreshti %1: gabim analizimi + + + To use okon, you must provide a post-processed file (e.g. file.okon) + Që të përdorni okon, duhet të jepni një kartelë të pas-përpunuar (p.sh. kartelë.okon) + + + Could not start okon process: %1 + S’u nis dot proces okon: %1 + + + Error: okon process did not finish + Gabim: procesi okon s’përfundoi + + + Failed to load okon processed database: %1 + S’u arrit të ngarkohet bazë të dhënash e përpunuar me okon: %1 + + + Very weak password + Fjalëkalim shumë i dobët + + + Password entropy is %1 bits + Entropia e fjalëkalimit është %1 bite + + + Weak password + Fjalëkalim i dobët + + + Used in %1/%2 + Përdorur te %1/%2 + + + Password is used %1 time(s) + Fjalëkalimi është përdorur %1 herëFjalëkalimi është përdorur %1 herë + + + Password has expired + Fjalëkalimi ka skaduar + + + Password expiry was %1 + Data e skadimit të fjalëkalimit qe %1 + + + Password expires on %1 + Fjalëkalimi skadon më %1 + + + Password is about to expire + Fjalëkalimi edhe pak edhe skadon + + + Password expires in %1 day(s) + Fjalëkalim skadon pas %1 diteFjalëkalim skadon pas %1 ditësh + + + Password will expire soon + Fjalëkalimi do të skadojë së shpejti + + + Version %1 + Version %1 + + + Build Type: %1 + Lloj Montimi: %1 + + + Revision: %1 + Rishikim: %1 + + + Distribution: %1 + Shpërndarje: %1 + + + Debugging mode is disabled. + Mënyra diagnostikim është e çaktivizuar. + + + Debugging mode is enabled. + Mënyra diagnostikim është e aktivizuar. + + + Operating system: %1 +CPU architecture: %2 +Kernel: %3 %4 + Sistem operativ: %1 +Arkitekturë CPU-je: %2 +Kernel: %3 %4 + + + Auto-Type + Vetë-Shtypje + + + SSH Agent + Agjent SSH + + + KeeShare + KeeShare + + + YubiKey + YubiKey + + + Quick Unlock + Shkyçje e Shpejtë + + + Secret Service Integration + Integrim Shërbimi të Fshehtash + + + None + Asnjë + + + Enabled extensions: + Zgjerime të aktivizuara: + + + over %1 year(s) + mbi %1 vitmbi %1 vjet + + + about %1 month(s) + mbi %1 muajmbi %1 muaj + + + %1 week(s) + %1 javë%1 javë + + + %1 day(s) + %1 ditë%1 ditë + + + %1 hour(s) + %1 orë%1 orë + + + %1 minute(s) + %1 minutë%1 minuta + + + Botan library must be at least %1, found %2.%3.%4 + Bilbioteka Botan duhet të jetë të paktën %1, u gjet %2.%3.%4 + + + Cryptographic libraries: + Biblioteka kriptografike: + + + AES (%1 rounds) + AES (%1 raunde) + + + Argon2%1 (%2 rounds, %3 KB) + Argon2%1 (%2 raunde, %3 KB) + + + SymmetricCipher::init: Invalid cipher mode. + SymmetricCipher::init: Mënyrë shifre e pavlefshme. + + + SymmetricCipher::init: Invalid IV size of %1 for %2. + SymmetricCipher::init: Madhësi e pavlefshme IV prej %1 për %2. + + + Cipher not initialized prior to use. + Shifër jo e bërë gati para përdorimit. + + + Cannot process 0 length data. + S’mund të përpunohen të dhëna me gjatësi 0. + + + unknown executable (DBus address %1) + i ekzekutueshëm i panjohur (adresë DBus %1) + + + %1 (invalid executable path) + %1 (shteg i pavlefshëm të ekzekutueshmi) + + + NULL device + Pajisje NULL + + + error reading from device + gabim gjatë leximit nga pajisja + + + file empty + kartelë e zbrazët + + + AES 256-bit + AES 256-bit + + + Twofish 256-bit + Twofish 256-bit + + + ChaCha20 256-bit + ChaCha20 256-bit + + + Argon2d (KDBX 4 – recommended) + Argon2d (KDBX 4 – e rekomanduar) + + + Argon2id (KDBX 4) + Argon2id (KDBX 4) + + + AES-KDF (KDBX 4) + AES-KDF (KDBX 4) + + + AES-KDF (KDBX 3) + AES-KDF (KDBX 3) + + + Existing single-instance lock file is invalid. Launching new instance. + Kartela e kyçjes për instancë njëshe ekzistuese është e pavlefshme. Po niset instancë e re. + + + The lock file could not be created. Single-instance mode disabled. + S’u krijua dot kartela e kyçjes. U çaktivizua mënyra instancë njëshe. + + + Clearing the clipboard in %1 second(s)… + Po spastrohet e papastra pas %1 sekonde…Po spastrohet e papastra pas %1 sekondash… + + + Group + Grup + + + Title + Titull + + + Username + Emër përdoruesi + + + Password + Fjalëkalim + + + TOTP + TOTP + + + Icon + Ikonë + + + Last Modified + Ndryshuar Së Fundi Më + + + Created + Krijuar më + + + Benchmark %1 delay + Vlerëso vonesë %1 + + + %1 ms + milliseconds + %1 ms%1 ms + + + %1 s + seconds + %1 s%1 s + + + Do you really want to delete the entry "%1" for good? + Doni vërtet të fshihet përgjithmonë zëri “%1”? + + + Do you really want to delete %n entry(s) for good? + Doni vërtet të fshihet përgjithmonë %n zë?Doni vërtet të fshihet përgjithmonë %n zëra? + + + Delete entry(s)? + Të fshihet zëri?Të fshihet zërat? + + + Do you really want to move entry "%1" to the recycle bin? + Doni vërtet të shpihet zëri “%1” te koshi i riciklimeve? + + + Do you really want to move %n entry(s) to the recycle bin? + Doni vërtet të shpihet %n zë te koshi i riciklimeve?Doni vërtet të shpihet %n zëra te koshi i riciklimeve? + + + Move entry(s) to recycle bin? + Të shpihet zëri te koshi i hedhurinave?Të shpihet zërat te koshi i hedhurinave? + + + Replace references to entry? + Të zëvendësohen referenca ndaj zërit? + + + Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? + Zëri “%1” ka %2 referencë(a). Doni të mbishkruhen referencat me vlera, të anashkalohet ky zë, apo të fshihet sido qoftë?Zëri “%1” ka %2 referenca. Doni të mbishkruhen referencat me vlera, të anashkalohet ky zë, apo të fshihet sido qoftë? + + + User name + Emër përdoruesi + + + Browser Statistics + Statistika Shfletuesi + + + Health Check + Kontroll Shëndeti + + + HIBP + HIBP + + + Statistics + Statistika + + + Unsupported key file version: %1 + Version i pambuluar kartele kyçesh: %1 + + + Checksum mismatch! Key file may be corrupt. + Mospërputhje checksum-i! Kartela e kyçit mund të jetë e dëmtuar. + + + Unexpected key file data! Key file may be corrupt. + Të dhëna të papritura kartele kyçi! Kartela e kyçit mund të jetë e dëmtuar. + + + KeePassXC - cross-platform password manager + KeePassXC - përgjegjës ndërplatformësh fjalëkalimesh + + + filenames of the password databases to open (*.kdbx) + emrat e kartelave të bazës së të dhënave të fjalëkalimeve për t’u hapur (*.kdbx) + + + path to a custom config file + shteg për te kartelë formësimi vetjak + + + path to a custom local config file + shteg për te kartelë vendore formësimi vetjak + + + lock all open databases + kyçi krejt bazat e hapura të të dhënave + + + key file of the database + kartelë kyçi i bazës së të dhënave + + + read password of the database from stdin + fjalëkalimin e bazës së të dhënave lexoje prej stdin-it + + + Database failed to lock. + S’u arrit të kyçej bazë të dhënash. + + + Another instance of KeePassXC is already running. + Ka tashmë në xhirim e sipër një instancë të KeePassXC-së. + + + KeePassXC is not running. No open database to lock + KeePassXC-ja s’po xhiron. S’ka të hapur bazë të dhënash, që të kyçet + + + Fatal error while testing the cryptographic functions. + Gabim fatal teksa testoheshin funksione kriptografike. + + + KeePassXC - Error + KeePassXC - Gabim + + + Database password: + Fjalëkalim baze të dhënash: + + + Invalid Settings + TOTP + Rregullime të Pavlefshme + + + Invalid Key + TOTP + Kyç i Pavlefshëm + + + Failed to create Windows Hello credential. + S’u arrit të krijohet kredencial Windows Hello. + + + Failed to sign challenge using Windows Hello. + S’u arrit të nënshkruhet sfidë duke përdorur Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Kujdes: S’u arrit të bllokohet bërje fotoje ekrani në një dritare të nivelit të epërm. + + + Invalid Cipher + Shifër e Pavlefshme + + + Invalid KDF + FDK i Pavlefshëm + + + Access to all entries is denied + Është mohuar hyrja te krejt zërat + + + allow screenshots and app recording (Windows/macOS) + lejo foto ekrani dhe regjistrim nga aplikacione (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Ujdisni kartelën kyç për bazën e të dhënave. +Kjo mundësi është nxjerrë nga përdorimi, në vend të saj përdorni --set-key-file. + + + Databases have been locked. + Bazat e të Dhënave janë kyçur. + + + Attestation not supported + + + + Credential is excluded + Kredenciali është përjashtuar + + + Passkeys request canceled + Kërkesa për kyçkalime u anulua + + + Invalid user verification + Verifikim i pavlefshëm përdoruesi + + + Empty public key + Kyç publik i zbrazët + + + Invalid URL provided + U dha URL e pavlefshme + + + Passkeys + Kyçkalime + + + AES initialization failed + Dështoi gatitja AES + + + AES encrypt failed + Fshehtëzimi AES dështoi + + + Failed to store in Linux Keyring + S’u arrit të depozitohej në Varg Kyçesh Linux + + + Polkit returned an error: %1 + Polkit u përgjigj me një gabim: %1 + + + Could not locate key in keyring + S’u lokalizua dot kyç te varg kyçesh + + + Could not read key in keyring + S’u lexua dot kyç te varg kyçesh + + + AES decrypt failed + Shfshehtëzimi AES dështoi + + + No Polkit authentication agent was available + S’ka agjent mirëfilltësimesh Polkit + + + Polkit authorization failed + Autorizimi Polkit dështoi + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + S’u arrit të gatitet kriptografi KeePassXC-je. + + + Failed to encrypt key data. + S’u arrit të fshehtëzohen të dhëna kyçi. + + + Failed to get Windows Hello credential. + S’u arrit të merret kredencial Windows Hello. + + + Failed to decrypt key data. + S’u arrit të shfshehtëzohen të dhëna kyçi. + + + Origin is empty or not allowed + Origjina është e zbrazët, ose nuk lejohet + + + Effective domain is not a valid domain + Përkatësia efektive s’është përkatësi e vlefshme + + + Origin and RP ID do not match + ID-të origjinës dhe RP s’përputhen + + + No supported algorithms were provided + S’u dhanë algoritme të mbuluar + + + Wait for timer to expire + Prisni të skadojë kohëmatësi + + + Challenge is shorter than required minimum length + Sfida është më e shkurtër se gjatësi minimum e domosdoshme + + + user.id does not match the required length + user.id nuk plotëson gjatësinë e domosdoshme + + + Favorite + Tag for favorite entries + Të parapëlqyer + + + File does not exist. + Kartela s’ekziston. + + + Cannot open file: %1 + S’hapet dot kartelë: %1 + + + Cannot parse file: %1 at position %2 + S’analizohet dot kartelë: %1 në pozicionin %2 + + + Failed to decrypt json file: %1 + S’u arrit të shfshehtëzohet kartelë json: %1 + + + Invalid encKeyValidation field + Fushë encKeyValidation e pavlefshme + + + Invalid cipher list within encKeyValidation field + Listë e pavlefshme shifre brenda fushës encKeyValidation + + + Wrong password + Fjalëkalim i gabuar + + + Invalid encrypted data field + Fushë e pavlefshme të dhënash të fshehtëzuara + + + Invalid cipher list within encrypted data field + Listë e pavlefshme shifre brenda fushe të dhënash të fshehtëzuara + + + Cannot initialize cipher + S’gatitet dot shifër + + + Cannot decrypt data + S’shfshehtëzohen dot të dhëna + + + Bitwarden Import + Importim Bitwarden + + + Archived + Tag for archived entries + Të arkivuar + + + Invalid 1PUX file format: Not a valid ZIP file. + Format i pavlefshëm kartele 1PUX: S’është kartelë ZIP e vlefshme. + + + Invalid 1PUX file format: Missing export.data + Format i pavlefshëm kartele 1PUX: Mungojnë export.data + + + 1Password Import + Importim 1Password + + + Enter Shortcut + Jepni Shkurtore + + + Action + Veprim + + + Shortcuts + Shkurtore + + + Unknown passkeys error + Gabim i panjohur kyçkalimesh + + + Invalid KDF iterations, cannot decrypt json file + Numër përsëritjesh KDF i pavlefshëm, s’mund të shfshehtëzohet kartelë json + + + Unsupported format, ensure your Bitwarden export is password-protected + Format i pambuluar, sigurohuni se eksportimi juaj Bitwarden është i mbrojtur me fjalëkalim + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Mbulohen vetëm PBKDF dhe Argon2, s’mund të shfshehtëzohet kartelë json + + + Reset Shortcuts + Riktheji Shkurtoret te Parazgjedhjet + + + Double click an action to change its shortcut + Që t’i ndryshoni shkurtoren, dyklikoni mbi një veprim + + + Filter... + Filtrojini… + + + Shortcut Conflict + Përplasje Shkurtoresh + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Shkurtorja %1 përplaset me “%2”. Të mbishkruhet shkurtorja? + + + Cannot generate valid passphrases because the wordlist is too short + S’prodhohen dot frazëkalime të vlefshëm, ngaqë lista e fjalëve është shumë e shkurtër + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Të fshihen të dhëna shtojce? + + + Delete plugin data from Entry(s)? + Të fshihen të dhëna shtojce nga Zëri?Të fshihen të dhëna shtojce nga Zërat? + + + Passkey + Kyçkalim + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Etiketa + + + + QtIOCompressor + + Internal zlib error when compressing: + Gabim i brendshëm zlib-i gjatë ngjeshjeje: + + + Error writing to underlying device: + Gabim gjatë shkrimi te pajisja nën të: + + + Error opening underlying device: + Gabim hapjeje pajisjeje nën të: + + + Error reading data from underlying device: + Gabim gjatë leximit të të dhënave prej pajisjeje nën të: + + + Internal zlib error when decompressing: + Gabim i brendshëm zlib-i gjatë çngjeshjeje: + + + + QtIOCompressor::open + + The gzip format not supported in this version of zlib. + Formati gzip nuk mbulohet në këtë version të zlib-it. + + + Internal zlib error: + Gabim i brendshëm zlib-i: + + + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Urdhri `%1` s’përfundoi në kohë. Procesi u asgjësua. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + S’u arrit të ngarkohej bazë të dhënash. Urdhri `%1` s’përfundoi në kohë. Procesi u asgjësua. + + + Invalid download parameters provided. + U dhanë parametra të pavlefshëm shkarkimi. + + + Command `%1` failed to download database. + Urdhri `%1` s’arriti të shkarkojë bazën e të dhënave. + + + Invalid database pointer or upload parameters provided. + U dha shteg naze të dhënash, ose parametra ngarkimi të pavlefshëm. + + + Command `%1` exited with status code: %2 + Urdhri `%1` mbaroi me kod gjendjeje: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + S’u arritën të ngarkohet baza e të dhënave e përzierë. Urdhri `%1` mbaroi me kod gjendjeje: %2 + + + + ReportsWidgetBrowserStatistics + + Double-click entries to edit. + Që t’i përpunoni, dyklikoni mbi zëra. + + + List of entry URLs + Listë URL-sh zëri + + + Entry has no URLs set + Zëri s’ka të ujdisur URL + + + Allowed URLs + URL-ra të Lejuara + + + Entry has no Browser Integration settings + Zëri s’ka rregullime Integrimi Shfletuesish + + + Denied URLs + URL të mohuara + + + (Excluded) + (Përjashtuar) + + + This entry is being excluded from reports + Ky zë po përjashtohet nga raporte + + + Please wait, browser statistics is being calculated… + Ju lutemi, prisni, statistikat po llogariten… + + + No entries with a URL, or none has browser extension settings saved. + S’ka zëra me URL, ose asnjë prej tyre s’ka të ruajtura rregullime zgjerimi shfletuesi. + + + Title + Titull + + + Path + Shteg + + + URLs + URL-ra + + + Edit Entry… + Përpunoni Zë… + + + Delete Entry(s)… + Fshini Zë…Fshini Zëra… + + + Exclude from reports + Përjashto nga raporte + + + Expire Entry(s)… + + + + Only show entries that have a URL + Shfaq vetëm zëra që kanë një URL + + + Only show entries that have been explicitly allowed or denied + Shfaq vetëm zëra që janë lejuar, ose mohuar shprehimisht + + + Show expired entries + Shfaq zëra të skaduar + + + (Expired) + (Skaduar) + + + Delete plugin data from Entry(s)… + Fshini të dhëna shtojce nga Zëri…Fshini të dhëna shtojce nga Zëra… + + + + ReportsWidgetHealthcheck + + Show expired entries + Shfaq zëra të skaduar + + + (Expired) + (Skaduar) + + + Hover over reason to show additional details. Double-click entries to edit. + Për hollësi shtesë, kalojeni kursorin sipër arsyeje. Për t’i përpunuar, dyklikoni mbi zëra. + + + Bad — password must be changed + I keq — fjalëkalimi duhet ndryshuar + + + Poor — password should be changed + Shumë i dobët — fjalëkalimi duhet ndryshuar + + + Weak — consider changing the password + I dobët — shihni mundësinë e ndryshimit të fjalëkalimit + + + (Excluded) + (Përjashtuar) + + + This entry is being excluded from reports + Ky zë po përjashtohet nga raporte + + + Please wait, health data is being calculated… + Ju lutemi, prisni, të dhënat mbi shëndetin po llogariten… + + + Congratulations, everything is healthy! + Përgëzime, gjithçka është shëndoshë si molla! + + + Title + Titull + + + Path + Shteg + + + Score + Pikë + + + Reason + Arsye + + + Edit Entry… + Përpunoni Zë… + + + Delete Entry(s)… + Fshini Zë…Fshini Zëra… + + + Exclude from reports + Përjashto nga raporte + + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Shfaq zëra që janë përjashtuar nga raporte + + + + ReportsWidgetHibp + + CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. + HAPNI SYTË: Ky raport lyp dërgim informacioni te shërbimi internetor “Have I Been Pwned” (https://haveibeenpwned.com). Nëse vazhdoni, për fjalëkalimet e bazës suaj të të dhënave do të prodhohen hashe kriptografikë dhe pesë shenjat e para të këtyre hasheve do t’i dërgohen në mënyrë të siguruar këtij shërbimi. Baza juaj e të dhënave mbetet e siguruar dhe s’mund të rindërtohet nisur nga ky informacion. Por, numri i fjalëkalimeve që dërgoni dhe adresa juaj IP do t’i ekspozohen këtij shërbimi. + + + Perform Online Analysis + Kryej Analizë Në Internet + + + Also show entries that have been excluded from reports + Shfaq gjithashtu zëra që janë përjashtuar nga raporte + + + This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. + Ky montim i KeePassXC-së s’ka funksione rrjeti. Punimi në rrjet është i domosdoshëm për të kontrolluar fjalëkalimet tuaj me bazat e të dhënave të shërbimit “I Been Pwned”. + + + Congratulations, no exposed passwords! + Përgëzime, pa fjalëkalime të ekspozuar! + + + Title + Titull + + + Path + Shteg + + + Password exposed… + Fjalëkalim i ekspozuar… + + + (Excluded) + (Përjashtuar) + + + This entry is being excluded from reports + Ky zë po përjashtohet nga raporte + + + once + Password exposure amount + një herë + + + up to 10 times + Password exposure amount + deri në 10 herë + + + up to 100 times + Password exposure amount + deri në 100 herë + + + up to 1000 times + Password exposure amount + deri në 1000 herë + + + up to 10,000 times + Password exposure amount + deri në 10000 herë + + + up to 100,000 times + Password exposure amount + deri në 100000 herë + + + up to a million times + Password exposure amount + deri në një milion herë + + + millions of times + Password exposure amount + miliona herë + + + Edit Entry… + Përpunoni Zë… + + + Delete Entry(s)… + Fshini Zë…Fshini Zëra… + + + Exclude from reports + Përjashto nga raporte + + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Eksporto + + + Import + Importo + + + List of entry URLs + Listë URL-sh zëri + + + Title + Titull + + + Path + Shteg + + + Username + Emër përdoruesi + + + URLs + URL-ra + + + Edit Entry… + Përpunoni Zë… + + + Delete Entry(s)… + Fshini Zë…Fshini Zëra… + + + Relying Party + + + + Show expired entries + Shfaq zëra të skaduar + + + (Expired) + (Skaduar) + + + Export Confirmation + Ripohim Eksportimi + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Kartela e kyçkalimit do të jetë e cenueshme përballë vjedhjesh dhe përdorimi të paautorizuar. Jeni i sigurt se doni të vazhdohet? + + + Please wait, list of entries with passkeys is being updated… + Ju lutemi, prisni, lista e zërave me kyçkalime po përditësohet… + + + No entries with passkeys. + S’ka zëra me kyçkalime. + + + + ReportsWidgetStatistics + + Hover over lines with error icons for further information. + Për informacion të mëtejshëm, kaloni kursorin përsipër rreshta me ikona gabimesh. + + + Name + Emër + + + Value + Vlerë + + + Please wait, database statistics are being calculated… + Ju lutemi, prisni, statistikat për bazë të dhënash po llogariten… + + + Database name + Emër baze të dhënash + + + Description + Përshkrim + + + Location + Vendndodhje + + + Database created + Baza e të dhënave u krijua + + + Last saved + Ruajtur së fundi më + + + Unsaved changes + Ndryshime të paruajtura + + + yes + po + + + no + jo + + + The database was modified, but the changes have not yet been saved to disk. + Baza e të dhënave qe ndryshuar, por ndryshimet s’janë ruajtur ende në disk. + + + Number of groups + Numër grupesh + + + Number of entries + Numër zërash + + + Number of expired entries + Numër zërash të skaduar + + + The database contains entries that have expired. + Baza e të dhënave përmban zëra që kanë skaduar. + + + Unique passwords + Fjalëkalime unikë + + + Non-unique passwords + Fjalëkalime jo unikë + + + More than 10% of passwords are reused. Use unique passwords when possible. + Më shumë se 10% e fjalëkalimeve janë ripërdorur. Përdorni fjalëkalime unikë, kur do të mundet. + + + Maximum password reuse + Maksimum ripërdorimi fjalëkalimi + + + Some passwords are used more than three times. Use unique passwords when possible. + Disa fjalëkalime janë përdorur më shumë se tre herë. Përdorni fjalëkalime unikë, kur do të mundet. + + + Number of short passwords + Numër fjalëkalimesh të shkurtër + + + Recommended minimum password length is at least 8 characters. + Gjatësia minimum e rekomanduar për fjalëkalimet është të paktën 8 shenja. + + + Number of weak passwords + Numër fjalëkalimet të dobët + + + Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. + Rekomando përdorimin e fjalëkalimeve të gjatë, kuturu, me vlerësim “i mirë”, ose “i shkëlqyer”. + + + Entries excluded from reports + Zëra të përjashtuar nga raporte + + + Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. + Po përjashtohen zëra nga raporte, p.sh., ngaqë dihet se kanë fjalëkalim të dobët, s’është doemos një problem, por duhet t’i vëzhgoni. + + + Average password length + Gjatësi mesatare fjalëkalimesh + + + %1 characters + %1 shenja + + + Average password length is less than ten characters. Longer passwords provide more security. + Gjatësia mesatare e fjalëkalimeve është më pak se dhjetë shenja. Fjalëkalimet më të gjatë japin më tepër siguri. + + + + SSHAgent + + Agent connection failed. + Lidhja e agjentit dështoi. + + + Agent protocol error. + Gabim protokolli agjenti. + + + No agent running, cannot add identity. + S’ka agjent në punë, s’shtohet dot identitet. + + + Key identity ownership conflict. Refusing to add. + Përplasje pronësie identiteti kyçi. S’po pranohet shtim. + + + Agent refused this identity. Possible reasons include: + Agjenti nuk e pranoi këtë identitet. Në arsyet e mundshme përfshihen: + + + The key has already been added. + Kyçi është shtuar tashmë. + + + Restricted lifetime is not supported by the agent (check options). + Jetëgjatësi e kufizuar nuk mbulohet nga agjenti (shihni mundësitë). + + + A confirmation request is not supported by the agent (check options). + Një kërkesë ripohimi s’mbulohet nga agjenti (shihni mundësitë). + + + Security keys are not supported by the agent or the security key provider is unavailable. + Kyçet e sigurisë nuk mbulohen nga agjenti, ose shërbimi i kyçeve të sigurisë s’është i kapshëm. + + + No agent running, cannot remove identity. + S’ka agjent në punë, s’hiqet dot identitet. + + + No agent running, cannot list identities. + S’ka agjent në punë, s’paraqiten dot identitete. + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + + + + SearchHelpWidget + + Search Help + Ndihmë Kërkimi + + + Search terms are as follows: [modifiers][field:]["]term["] + Termat e kërkimit janë si vijon: [ndryshues][fushë:]["]term["] + + + Every search term must match (ie, logical AND) + Duhet të ketë përkim për krejt termat e kërkimit (d.m.th., DHE logjike) + + + Modifiers + Ndryshues + + + exclude term from results + përjashto term nga përfundime + + + match term exactly + përputhje saktësisht me termin + + + use regex in term + përdor shprehje të rregullt në term_Regex + + + Fields + Fusha + + + Term Wildcards + Shenja të Gjithëpushtetshme Termi + + + match anything + përputhje me ç’të jetë + + + match one + përputhje me një + + + logical OR + OR logjik + + + Examples + Shembuj + + + + SearchWidget + + Search + Kërko + + + Search Help + Ndihmë Kërkimi + + + Save Search + Ruaje Kërkimin + + + Search (%1)… + Search placeholder text, %1 is the keyboard shortcut + Kërkim (%1)… + + + Case sensitive + Siç është shkruar + + + Limit search to selected group + Kufizoje kërkimin te grupi i përzgjedhur + + + + SettingsClientModel + + Application + Aplikacion + + + PID + PID + + + DBus Address + Adresë DBus + + + Manage + Administroni + + + + SettingsDatabaseModel + + File Name + Emër Kartele + + + Group + Grup + + + Manage + Administroni + + + + SettingsWidgetFdoSecrets + + Options + Mundësi + + + Enable KeepassXC Freedesktop.org Secret Service integration + Aktivizo integrimin me Shërbimin e Fshehtë KeepassXC të Freedesktop.org + + + General + Të përgjithshme + + + Show notification when passwords are retrieved by clients + Shfaq njoftim, kur merren fjalëkalime nga klientë + + + <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> + <html><head/><body><p>Në u aktivizoftë, çdo përpjekje për të lexuar një fjalëkalim duhet ripohuar. Përndryshe, klientë mund të lexojnë fjalëkalime pa u ripohuar, kur baza e të dhënave është e shkyçur.</p><p>Kjo mundësi mbulon vetëm hyrjen te fjalëkalimi i një zëri. Klientët munden përherë t’i numërtojnë objektet e bazave të ekspozuara të të dhënave dhe të bëjnë kërkim te atributet e tyre.</p></body></html> + + + Confirm when passwords are retrieved by clients + Kërko për ripohim, kur merren fjalëkalime nga klientë + + + Confirm when clients request entry deletion + Kërko për ripohim, kur klientë kërkojnë fshirje zëri + + + Prompt to unlock database before searching + Shfaq hap shkyçjeje baze të dhënash para kërkimi + + + Exposed database groups: + Grupe bazash të dhënash të ekspozuar: + + + Authorization + Autorizim + + + These applications are currently connected: + Këto aplikacione janë aktualisht të lidhura: + + + <b>Warning:</b> + <b>Kujdes:</b> + + + Save current changes to activate the plugin and enable editing of this section. + Që të aktivizohet shtojca dhe të aktivizohet përpunimi i kësaj pjese, ruani ndryshimet e tanishme. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Ky zë s’anashkalon çaktivizim dialogësh koshi riciklimi </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Kjo përmirëson përputhjen me disa aplikacione të cilët kërkojnë për fjalëkalime pa shkyçur së pari bazën e të dhënave.</p><p>Por aktivizimi i kësaj mund të sjellë vithisjen e klientit, nëse baza e të dhënave s’mund të shkyçet brenda një afati të caktuar mbarimi kohe. (Zakonisht 25s, por mund të jetë vlerë e vendosur ndryshe te aplikacionet.) </p></body></html> + + + + SettingsWidgetKeeShare + + Active + Aktiv + + + Allow KeeShare imports + Lejo importime KeeShare + + + Allow import + Lejo importim + + + Allow KeeShare exports + Lejo eksportime KeeShare + + + Allow export + Lejo eksportim + + + Only show warnings and errors + Shfaq vetëm sinjalizime dhe gabime + + + Own certificate + Dëshmi e vetes + + + Signer: + Nënshkrues: + + + Generate new certificate + Prodho dëshmi të re + + + Generate + Prodhoje + + + Fingerprint: + Shenja gishtash: + + + Signer name field + Fushë emri nënshkruesi + + + Fingerprint + Shenja gishtash + + + + ShareExport + + Could not write export container. + S’u shkrua dot një kontejner eksporti. + + + + ShareImport + + Successful import + Importim i suksesshëm + + + + ShareObserver + + Import from %1 failed (%2) + S’u arrit të importohej %1 (%2) + + + Import from %1 successful (%2) + Importim i suksesshëm nga %1 (%2) + + + Imported from %1 + Importuar nga %1 + + + Multiple import source path to %1 in %2 + Shteg burimesh të shumtë importimi te %1 në %2 + + + Conflicting export target path %1 in %2 + Shteg objektivi eksportimi me përplasje %1 në %2 + + + Export to %1 failed (%2) + Eksportimi te %1 dështoi (%2) + + + Export to %1 successful (%2) + Eksportimi te %1 qe i suksesshëm (%2) + + + Export to %1 + Eksporto te %1 + + + + TagModel + + Clear Search + Spastro Kërkimin + + + All Entries + Krejt Zërat + + + Expired + Ka skaduar + + + Weak Passwords + Fjalëkalim i Dobët + + + + TagView + + Remove Search + Hiqe Kërkimin + + + Remove Tag + Hiqe Etiketën + + + Confirm Remove Tag + Ripohoni Heqje Etikete + + + Remove tag "%1" from all entries in this database? + Të hiqet etiketa “%1” prej krejt zërave te kjo bazë të dhënash? + + + + TotpDialog + + Timed Password + Fjalëkalim Me Kohëskadim + + + Copy + Kopjoje + + + Expires in <b>%n</b> second(s) + Skadon pas <b>%n</b> sekondeSkadon pas <b>%n</b> sekondash + + + + TotpExportSettingsDialog + + Copy + Kopjoje + + + NOTE: These TOTP settings are custom and may not work with other authenticators. + TOTP QR code dialog warning + SHËNIM: Këto rregullime TOTP janë vetjake dhe mund të mos punojnë me mirëfilltësues të tjerë. + + + There was an error creating the QR code. + Pati një gabim teksa krijohej kodi QR. + + + Closing in %1 seconds. + Do të mbyllet pas %1 sekondash. + + + + TotpSetupDialog + + Setup TOTP + Ujdisni TOTP + + + Secret Key: + Kyç i Fshehtë: + + + Secret key must be in Base32 format + Kyçi i fshehtë duhet të jetë nën formatin Base32 + + + Secret key field + Fushë kyçi të fshehtë + + + Default settings (RFC 6238) + Rregullime parazgjedhje (RFC 6238) + + + Steam® settings + Rregullime për Steam® + + + Custom settings: + Rregullime vetjake: + + + Custom Settings + Rregullime Vetjake + + + Algorithm: + Algoritëm: + + + Time step: + Hap kohor: + + + Time step field + Fushë hapi kohor + + + sec + Seconds + sek + + + Code size: + Madhësi kodi: + + + digits + shifra + + + Invalid TOTP Secret + E fshehtë TOTP e pavlefshme + + + You have entered an invalid secret key. The key must be in Base32 format. +Example: JBSWY3DPEHPK3PXP + Keni dhënë një kyç të fshehtë të pavlefshëm. Kyçi duhet të jetë në formatin Base32. +Shembull: JBSWY3DPEHPK3PXP + + + Confirm Remove TOTP Settings + Rregullime për “Ripohoni Heqje TOTP + + + Are you sure you want to delete TOTP settings for this entry? + Jeni i sigurt se doni të fshihen rregullime TOTP për këtë zë? + + + + URLEdit + + Invalid URL + URL e pavlefshme + + + + UpdateCheckDialog + + Checking for updates + Po kontrollohet për përditësime + + + Checking for updates… + Po kontrollohet për përditësime… + + + Close + Mbylle + + + Software Update + Përditësim Software-i + + + An error occurred when trying to retrieve update information, please try again later. + Ndodhi një gabim, kur provohej të përditësohej informacion, ju lutemi, riprovoni më vonë. + + + <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. + <strong>Ka të gatshëm një version të ri.</strong><br/>KeePassXC %1 mund të <a href="https://keepassxc.org/download/">shkarkohet këtu</a>. + + + You have the latest version of KeePassXC + Keni versionin më të ri të KeePassXC-së + + + + WelcomeWidget + + Start storing your passwords securely in a KeePassXC database + Filloni t’i depozitoni fjalëkalimet tuaj në mënyrë të siguruar te një bazë të dhënash KeePassXC + + + Recent databases + Baza të dhënash së fundi + + + Open a recent database + Hapni një bazë të dhënash së fundi + + + Welcome to KeePassXC %1 + Mirë se vini te KeePassXC %1 + + + Create Database + Krijo Bazë të Dhënash + + + Open Database + Hap Bazë të Dhënash + + + Import File + Importo Kartelë + + + + WinUtils + + Invalid key code + Kod i pavlefshëm kyçi + + + Global shortcut already registered to %1 + Shkurtore globale e regjistruar tashmë te %1 + + + Could not register global shortcut + S’u regjistrua dot shkurtore globale + + + + YubiKey + + General: + Të përgjithshme: + + + Could not find interface for hardware key with serial number %1. Please connect it to continue. + S’u gjet dot ndërfaqe për kyçin hardware me numrin serial %1. Ju lutemi, që të vazhdohet, lidheni. + + + + YubiKeyEditWidget + + Hardware key slot selection + Përzgjedhje vendi kyçi hardware + + + Could not find any hardware keys! + S’u gjet dot ndonjë kyç hardware! + + + Selected hardware key slot does not support challenge-response! + Kanali i përzgjedhur për kyç hardware nuk mbulon sfidë-përgjigje! + + + Challenge-Response + Pyetje-Përgjigje + + + Add Challenge-Response + Shtoni Pyetje-Përgjigje + + + Change Challenge-Response + Ndryshoni Pyetje-Përgjigje + + + Remove Challenge-Response + Hiqni Pyetje-Përgjigje + + + Challenge-Response set, click to change or remove + Pyetje-Përgjigje u ujdis, klikoni që ta ndryshoni, ose hiqni + + + Detecting hardware keys… + Po pikasen kyçe hardware… + + + No hardware keys detected + S’u pikasën kyçe hardware + + + Refresh hardware keys + Rifresko kyçe hardware + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Nëse keni një <a href="https://www.yubico.com/">YubiKey</a> ose <a href="https://onlykey.io">OnlyKey</a>, mund ta përdorni për siguri të mëtejshme.</p><p>Kyçi lyp që një nga kanalet e tij të programohet me <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + + + + + YubiKeyInterfacePCSC + + The YubiKey PCSC interface has not been initialized. + Ndërfaqja PCSC YubiKey s’është gatitur. + + + Could not find or access hardware key with serial number %1. Please present it to continue. + S’u gjet dot, ose s’u përdor dot kyç hardware me numër serial %1. Që të vazhdohet, ju lutemi, silleni. + + + Hardware key is locked or timed out. Unlock or re-present it to continue. + Kyçi hardware është i kyçur, ose mbaroi koha. Që të vazhdohet, shkyçeni, ose riparaqiteni. + + + Hardware key was not found or is not configured. + S’u gjet, ose s’është formësuar kyç hardware. + + + Failed to complete a challenge-response, the PCSC error code was: %1 + S’u arrit të plotësohet një hap sfidë-përgjigje, kodi i gabimit PCSC qe: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Kanali %3, %4 + + + Press + USB Challenge-Response Key interaction request + Shtypeni + + + Passive + USB Challenge-Response Key no interaction required + Pasiv + + + + YubiKeyInterfaceUSB + + Unknown + E panjohur + + + Press + USB Challenge-Response Key interaction request + Shtypeni + + + Passive + USB Challenge-Response Key no interaction required + Pasiv + + + The YubiKey USB interface has not been initialized. + Ndërfaqja USB YubiKey s’është gatitur. + + + Could not find hardware key with serial number %1. Please plug it in to continue. + S’u gjet dot kyç hardware me numër serial %1. Që të vazhdohet, ju lutemi, vendoseni. + + + Hardware key timed out waiting for user interaction. + Kyçit hardware i mbaroi koha në pritje të ndërveprimit nga përdorues. + + + A USB error occurred when accessing the hardware key: %1 + Ndodhi një gabim USB teksa trajtohej kyçi hardware: %1 + + + Failed to complete a challenge-response, the specific error was: %1 + S’u arrit të plotësohet një hap sfidë-përgjigje, kodi specifik qe: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Vendi %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Vendi %3, %4 + + + \ No newline at end of file diff --git a/share/translations/keepassxc_sr.ts b/share/translations/keepassxc_sr.ts index 5ffacc18a..36384a200 100644 --- a/share/translations/keepassxc_sr.ts +++ b/share/translations/keepassxc_sr.ts @@ -80,6 +80,10 @@ Details + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + + Remember Запамти @@ -88,10 +92,6 @@ Allow Selected Дозволи одабрано - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future @@ -122,6 +122,10 @@ Use OpenSSH + + Use both agents + + SSH_AUTH_SOCK override SSH_AUTH_SOCK прегажење @@ -150,10 +154,6 @@ SSH Agent connection is working! Веза SSH агента ради! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Сигурност + + This setting cannot be enabled when minimize on unlock is enabled. + + Access error for config file %1 Грешка приликом приступа конфигурационој датотеци %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Морате поново покренути апликацију да бисте поставили нови језик. Поново покренути сада? - - Reset Settings? - Ресетовати подешавања? - - - Are you sure you want to reset all general and security settings to default? - Да ли сте сигурни да желите да вратите све опште и безбедносне поставке на подразумеване? - Select backup storage directory + + Confirm Reset + + + + Are you sure you want to reset all settings to default? + + + + Import KeePassXC Settings + + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Запамти последњу употребљену базу података + + recent files + + Load previously open databases on startup На покретање, учитај последњу отворену базу података @@ -272,25 +312,6 @@ Include beta releases when checking for updates Укључити бета издања приликом провере ажурирања - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - - File Management Управљање датотекама @@ -315,22 +336,10 @@ Backup database file before saving Направити резервну копију базе података пре сачувавања - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - - {DB_FILENAME}.old.kdbx - - Choose... - - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Стил дугмета на траци са алаткама: + + Show passwords in color + + Use monospaced font for notes За белешке користите једноструки фонт @@ -493,6 +506,71 @@ Remember last typed entry for: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + + + + Destination format: + + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + + + + Export settings… + + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Закључај базе података након минимизирање прозора - - Require password repeat when it is visible - Захтева понављање лозинке када је видљива - Hide passwords when editing them Сакрити лозинке када се уређују @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Сакриј лозинке на табли за преглед уноса - - Hide entry notes by default - Подразумевано сакриј белешке о уносу - - - Move entries to recycle bin without confirmation - Премести ставке у корпу за отпатке без потрвде - - - Enable double click to copy the username/password entry columns - - Privacy Приватност @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons За преузимање икона веб страница користите DuckDuckGo + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType @@ -626,16 +704,7 @@ - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 + Entry does not have attribute for PICKCHARS: %1 @@ -683,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on @@ -699,6 +764,10 @@ Unable to get valid keycode for key: + + Trying to send invalid keyboard symbol. + + AutoTypeSelectDialog @@ -798,13 +867,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site Онемогући за овај сајт + + Undo + + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Сачувај унос - Ok У реду @@ -819,13 +888,73 @@ Please select the correct database for saving credentials. Отворено вам је више база података. Изаберите тачну базу података за чување акредитива. + + KeePassXC - Select Database + + + + + BrowserPasskeysConfirmationDialog + + Cancel + Откажи + + + Update + + + + Authenticate + + + + Register new + + + + Register + + + + Timeout in <b>%n</b> seconds... + + + + Relying Party: %1 + + + + Username: %1 + + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC: Направите нову групу - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -834,10 +963,6 @@ Do you want to create this group? Да ли желите да направите ову групу? - - KeePassXC: New key association request - KeePassXC: Нови захтев за придруживање кључа - You have received an association request for the following database: %1 @@ -854,28 +979,16 @@ chrome-laptop. Save and allow access Сачувај и дозволи приступ - - KeePassXC: Overwrite existing key? - KeePassXC: Препиши постојећи кључ? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? Дељен кључ за шифровање са именом „% 1“ већ постоји. Да ли желите да га препишете? - - KeePassXC: Update Entry - KeePassXC: Ажурирање уноса - Do you want to update the information in %1 - %2? Да ли желите да ажурирате информације у %1 - %2? - - KeePassXC: Delete entry - - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -883,50 +996,57 @@ Do you want to delete the entry? - Converting attributes to custom data… - Претварање атрибута у прилагођене податке... + %1 (Passkey) + - Abort - Прекид + KeePassXC - Create a new group + - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Конвертовани KeePassHTTP атрибути + Disable + Онемогући - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Атрибути су успешно претворени из %1 уноса. -Премештени %2 кључева у прилагођене податке. - - - Successfully moved %n keys to custom data. - Премештено %n кључа у прилагођене податке.Премештено %n кључа у прилагођене податке.Премештено %n кључа у прилагођене податке. + KeePassXC - Overwrite existing key? + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Нема уноса са KeePassHTTP атрибута! + KeePassXC - Update Entry + - The active database does not contain an entry with KeePassHTTP attributes. - Активна база података не садржи унос са KeePassHTTP атрибути. + KeePassXC - Delete entry + - Don't show this warning again - Не приказуј више ово упозорење + KeePassXC - New key association request + - KeePassXC: Legacy browser integration settings detected - KeePassXC: Откривена су стара подешавања интеграције прегледача + Passkey + - 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-Browser подешавања треба преместити у поставке базе података. -Ово је неопходно за одржавање тренутних веза са прегледачем. -Да ли желите да мигрирате своја постојећа подешавања сада? + KeePassXC - Passkey credentials + + + + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + @@ -947,10 +1067,6 @@ Would you like to migrate your existing settings now? General Опште - - Browsers installed as snaps are currently not supported. - Прегледници инсталирани као брзи тренутно нису подржани. - Enable integration for these browsers: Омогућите интеграцију ових прегледача: @@ -1122,26 +1238,6 @@ Would you like to migrate your existing settings now? Custom extension ID ИД прилагођеног додатка - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Због Snap sandboxing-а, морате покренути скрипт да бисте омогућили интеграцију прегледача.<br />Овај скрипт можете добити од %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser је потребан да би интеграција прегледача функционисала. <br />Преузмите га за %1 и %2 и %3. %4 - - - Please see special instructions for browser extension use below - Молимо погледајте посебна упутства за употребу додатка прегледача у наставку - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - </b>Грешка:</b> Није могуће пронаћи прилагођену локацију проки сервера!<br/>Интеграција прегледача НЕЋЕ РАДИТИ без проки апликације. - - - <b>Warning:</b> The following options can be dangerous! - <b>Упозорење:</b> Следеће опције могу бити опасне! - Executable Files Извршне датотеке @@ -1158,6 +1254,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location Изабери место фасцикле матичног хоста размене порука + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + + CloneDialog @@ -1180,14 +1316,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - Увези CSV поља - - - filename - датотека - size, rows, columns величина, редови, колоне @@ -1296,50 +1424,42 @@ Would you like to migrate your existing settings now? Column %1 Колона %1 - - Imported from CSV file - Увезено из CSV датотеке - - - Original data: - Изворни подаци: - - - Error(s) detected in CSV file! - Откривене су грешке у CSV датотеци! - [%n more message(s) skipped] [%n прескочене поруке][%n прескочене поруке][%n прескочене поруке] - Error - Грешка + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - CSV увоз: има грешке: -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n бајт(ова)%n бајт(ова)%n бајт(ова) - %n row(s) + CSV row count %n ред(ова)%n ред(ова)%n ред(ова) %n column(s) + CSV column count %n колона(е)%n колона(е)%n колона(е) @@ -1392,6 +1512,14 @@ Backup database located at %2 Recycle Bin Корпа за отпатке + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1414,39 +1542,10 @@ Backup database located at %2 Password field Поље лозинке - - Enter Additional Credentials (if any): - Унети додатне акредитиве (ако постоје): - - - Key File: - Кључ-Датотека: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Помоћ за Кључ-Датотеку - Hardware key slot selection Избор слота хардверског кључа - - Hardware Key: - Кључ хардвера: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Помоћ кључ хардвера - Key file to unlock the database Кључ-Датотека за откључавање базе података @@ -1459,14 +1558,6 @@ Backup database located at %2 Browse… - - Refresh hardware tokens - Освежи хардверске токене - - - Refresh - Освежи - Unlock Database @@ -1523,14 +1614,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password Покушај поново са празном лозинком - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 Отварање Кључ-Датотеке није успело: %1 @@ -1564,22 +1647,64 @@ To prevent this error from appearing, you must go to "Database Settings / S Датотека базе података не може се користити као Кључ-Датотеку - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Датотека базе података не може се користити као Кључ-Датотека. -Ако немате Кључ-Датотеку, оставите поље празно. + authenticate to access the database + - Detecting hardware keys… - Откривање хардверских кључева… + Failed to authenticate with Quick Unlock: %1 + - No hardware keys detected - Нема хардверских кључева + Select Key File: + - Select hardware key… - одабирање хардверских кључева… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + + Use hardware key [Serial: %1] + + + + Use hardware key + + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + + Hardware keys found, but no slots are configured. + @@ -1591,10 +1716,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Напредна подешавања - General Опште @@ -1619,6 +1740,22 @@ If you do not have a key file, please leave the field empty. Maintenance + + KeeShare + KeeShare + + + Secret Service Integration + Интеграција тајног сервиса + + + Remote Sync + + + + Database Settings: %1 + + DatabaseSettingsWidgetBrowser @@ -1626,18 +1763,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-Browser подешавања - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Освежите ИД матичне групе базе података - Disconnect all browsers Искључите све прегледаче @@ -1646,6 +1771,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries Заборавите све специфичне поставке за локацију на уносима + + Refresh database root group ID + Освежите ИД матичне групе базе података + Stored keys Сачувани кључеви @@ -1694,18 +1823,10 @@ This may prevent connection to the browser plugin. Да ли стварно желите да искључите све прегледаче? Ово може спречити везу са додатком за прегледач. - - KeePassXC: No keys found - KeePassXC: Нису пронађени кључеви - No shared encryption keys found in KeePassXC settings. Није пронађен ниједан дељени кључ за шифровање у подешавањима KeePassXC-а. - - KeePassXC: Removed keys from database - KeePassXC: Уклоњени кључеви из базе података - Successfully removed %n encryption key(s) from KeePassXC settings. Успешно уклоњено %n кључ(ови) за шифровање из подешавањаУспешно уклоњено %n кључ(ови) за шифровање из подешавањаУспешно уклоњено %n кључ(ови) за шифровање из подешавања @@ -1724,31 +1845,14 @@ Permissions to access entries will be revoked. Abort Прекид - - KeePassXC: Removed permissions - KeePassXC: Уклоњене дозволе - Successfully removed permissions from %n entry(s). Успешно уклоњене дозволе са %n унос(а).Успешно уклоњене дозволе са %n унос(а).Успешно уклоњене дозволе са %n унос(а). - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID Освежите ИД базе података @@ -1759,6 +1863,26 @@ This is only necessary if your database is a copy of another and the browser ext Да ли стварно желите да освежите ИД базе података? То је неопходно само ако је ваша база података копија друге и ако екстензија прегледача не може да се повеже. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + + + + No keys found + + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! + + DatabaseSettingsWidgetDatabaseKey @@ -1798,6 +1922,18 @@ Are you sure you want to continue without a password? Failed to change database credentials Неуспешна промена акредитива базе података + + Weak password + Слаба лозинка + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. + + DatabaseSettingsWidgetEncryption @@ -1805,14 +1941,6 @@ Are you sure you want to continue without a password? Decryption Time: Време дешифровања: - - Change existing decryption time - Променити постојеће време дешифровања - - - Change - Променити - Decryption time in seconds Време дешифровања у секундама @@ -1893,11 +2021,6 @@ Are you sure you want to continue without a password? KDBX 3 - - unchanged - Database decryption time is unchanged - непромењено - Number of rounds too high Key transformation rounds @@ -1946,6 +2069,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) нит(а) нит(а) нит(а) + + Encryption Settings: + + + + Basic + + + + Advanced + Напредно + DatabaseSettingsWidgetFdoSecrets @@ -2004,18 +2139,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry Максималан број историјских предмета по уносу - - Max. history items: - Максималан број ставки из историје: - Maximum size of history per entry Максимална величина историје по уносу - - Max. history size: - Максималан број ставки у историји: - MiB MiB @@ -2046,6 +2173,99 @@ This action is not reversible. (old) (старо) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + + + + Limit the amount of history items per entry to: + + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + + + + Limit the total size of history items per entry to: + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + мин + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + Очисти + + + Display icon: + + + + Select Database Icon + + DatabaseSettingsWidgetKeeShare @@ -2141,6 +2361,129 @@ This action is not reversible. Поље „Опис“ базе података + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + Уклони + + + Command Settings + + + + Name + Име + + + Save + Сними + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + секунди + + DatabaseTabWidget @@ -2173,26 +2516,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV датотека - - Select CSV file - Одабрати CSV датотеку - Merge database Споји базу података - - KeePass 1 database - KeePass 1 база података - - - Open KeePass 1 database - Отвори KeePass 1 базу података - - - Open OPVault - Отворити OPVault - Export database to CSV file Извези базу података у CSV датотеку @@ -2205,6 +2532,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. Писање HTML датотеке није успело. + + Export database to XML file + + + + XML file + + + + Writing the XML file failed + + Export Confirmation Потврда извоза @@ -2213,25 +2552,21 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Спремате се да извезете своју базу података у нешифрирану датотеку. Ово ће ваше лозинке и осетљиве информације учинити рањивим! Да ли сте сигурни да желите да наставите? - - New Database - Нова база података - - - %1 [New Database] - Database tab name modifier - %1 [Нова база података] - %1 [Locked] Database tab name modifier %1 [Блокирано] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags + Searches and Tags @@ -2282,6 +2617,10 @@ This is definitely a bug, please report it to the developers. Expired entries + + Entries expiring within %1 day(s) + + No current database. Нема тренутне базе података. @@ -2306,6 +2645,18 @@ This is definitely a bug, please report it to the developers. No Results Нема резултата + + Save + Сними + + + Enter a unique name or overwrite an existing search from the list: + + + + Save Search + + Lock Database? Закључати базу података? @@ -2334,26 +2685,6 @@ Save changes? 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? - Датотека базе података се променила, а ви имате насачуване промене. -Да ли желите да спојите своје промене? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Није било могуће отворити нову датотеку базе података приликом аутоматског учитавања. -Грешка: %1 - Disable safe saves? Онемогућити сигурна сачувавања? @@ -2396,9 +2727,94 @@ Disable safe saves and try again? Could not find database file: %1 Није могуће пронаћи датотеку базе података: %1 - - Entries expiring within %1 day(s) - + + New Database + Нова база података + + + %1 [New Database] + Database tab name modifier + %1 [Нова база] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + Преузимање... + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2451,10 +2867,6 @@ Disable safe saves and try again? n/a / - - (encrypted) - (шифровано) - Select private key Одаберите приватни кључ @@ -2537,6 +2949,10 @@ Would you like to correct it? Hide Сакриј + + %n hour(s) + + %n week(s) %n недеља(е)%n недеља(е)%n недеља(е) @@ -2549,9 +2965,9 @@ Would you like to correct it? %n year(s) %n година(е)%n година(е)%n година(е) - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2671,10 +3087,20 @@ Would you like to correct it? Add new window association Додати нову асоцијацију прозора + + + + Add item + + + Remove selected window association Уклонити одабрану асоцијацију прозора + + - + Remove item + - + Window title: Наслов прозора: @@ -2699,23 +3125,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window Прилагођена секвенца ауто-куцања за овај прозор - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Ова подешавања утичу на понашање уноса са додатком прегледача. - General Опште @@ -2728,26 +3140,14 @@ Would you like to correct it? Skip Auto-Submit for this entry Прескочи аутоматско слање за овај унос - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Пошаљи ово подешавање у прегледач само за HTTP Auth дијалоге. Ако је омогућено, уобичајени обрасци за пријаву неће приказивати овај унос за избор. - Use this entry only with HTTP Basic Auth Користите овај унос само уз HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Не шаљи ову поставку претраживачу за HTTP Auth дијалоге. Ако је омогућено, HTTP Auth дијалози неће приказати овај унос за избор. - Do not use this entry with HTTP Basic Auth Не користите овај унос са HTTP Basic Auth - - Additional URL's - Додатне URL-ове - Add Додај @@ -2760,6 +3160,22 @@ Would you like to correct it? Edit Уредити + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory @@ -2810,22 +3226,10 @@ Would you like to correct it? Notes field Поље белешке - - Toggle the checkbox to reveal the notes section. - Штиклирај поље жа потврду да бисте приказали секцију за белешке. - Username field Поље корисничког имена - - Toggle notes visible - Пребаци видљивост белешке - - - Notes: - Белешке: - Expiration field Поље истека @@ -2842,14 +3246,6 @@ Would you like to correct it? Presets Предефинисани - - Password: - Лозинка: - - - URL: - URL: - Url field Поље URL @@ -2858,18 +3254,10 @@ Would you like to correct it? Download favicon for URL Преузети иконицу за URL - - Title: - Наслов: - Title field Поље наслова - - Username: - Корисничко име: - Password field Поље лозинке @@ -2879,15 +3267,39 @@ Would you like to correct it? Пребацити датум истека - Expires: - Истиче: - - - Tags: + Tags list - Tags list + &Username: + + + + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2929,19 +3341,6 @@ Would you like to correct it? Private key Приватни кључ - - External file - Спољашња датотека - - - Browser for key file - Претраживач за Кључ-Датотеку - - - Browse… - Button for opening file dialog - - Attachment Прилог @@ -2958,6 +3357,23 @@ Would you like to correct it? Remove from agent Уклони са агента + + External file + Спољашња датотека + + + Browser for key file + Претраживач за Кључ-Датотеку + + + Browse… + Button for opening file dialog + + + + Generate + Генериши + Select attachment file Одабрати прилог @@ -2982,6 +3398,10 @@ Would you like to correct it? seconds секунди + + Clear agent + + EditGroupWidget @@ -2993,10 +3413,6 @@ Would you like to correct it? Icon Икона - - Browser Integration - Интеграција са прегледачем - Properties Особине @@ -3013,6 +3429,10 @@ Would you like to correct it? Group has unsaved changes + + Browser Integration + Интеграција са прегледачем + Enable Омогући @@ -3028,10 +3448,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Уредити групу - These settings affect to the group's behaviour with the browser extension. @@ -3068,6 +3484,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups + + Omit WWW subdomain from matching: + + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups + + EditGroupWidgetKeeShare @@ -3300,10 +3732,6 @@ Supported extensions are: %1. Unable to fetch favicon. Неуспело добављање иконе са сајта. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Услугу икона DuckDuckGo-а можете омогућити у Алати -> Подешавања -> Безбедност - Existing icon selected. Изабрана је постојећа икона. @@ -3336,6 +3764,10 @@ Supported extensions are: %1. The following icon(s) failed: Следеће иконе нису успеле:Следеће иконе нису успеле:Следеће иконе нису успеле: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3412,6 +3844,23 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Клон + + Passkey + + + + Invalid conversion type: %1 + + + + Invalid conversion syntax: %1 + + + + Invalid regular expression syntax %1 +%2 + + EntryAttachments @@ -3420,6 +3869,21 @@ This may cause the affected plugins to malfunction. + + EntryAttachmentsDialog + + Form + Форма + + + File name + + + + File contents... + + + EntryAttachmentsModel @@ -3457,14 +3921,6 @@ This may cause the affected plugins to malfunction. Remove Уклони - - Rename selected attachment - Преименуј одабрни прилог - - - Rename - Преименуј - Open selected attachment Отворити одабрани прилог @@ -3541,11 +3997,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - - Confirm Attachment Потврдити прилог @@ -3578,6 +4029,23 @@ Do you want to save the changes to your database? Error: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + + + + New + + + + Preview + Преглед + + + Failed to preview an attachment: Attachment not found + + EntryAttributesModel @@ -3772,6 +4240,14 @@ Error: %1 Has TOTP Има једнократну лозинку + + Background Color + + + + Group Path + + EntryPreviewWidget @@ -3792,8 +4268,8 @@ Error: %1 Лозинка - Notes - Белешке + URL + URL Expiration @@ -3812,8 +4288,8 @@ Error: %1 Корисничко име - URL - URL + Notes + Белешке Advanced @@ -3863,6 +4339,10 @@ Error: %1 Never Никада + + Double click to copy value + + Enabled Омогућено @@ -3871,6 +4351,10 @@ Error: %1 Disabled Онемогућено + + Double click to copy to clipboard + + EntryURLModel @@ -3878,6 +4362,10 @@ Error: %1 Invalid URL Погрешна URL + + Duplicate URL + + EntryView @@ -3893,6 +4381,10 @@ Error: %1 Reset to defaults Вратити на подразумевано + + + %1 entry(s)... + + ExportDialog @@ -4112,6 +4604,193 @@ You can enable the DuckDuckGo website icon service in the security section of th + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + Чаробњак + + + Entry count: %1 + + + + Group + Група + + + Title + Наслов + + + Username + Корисничко име + + + Password + Лозинка + + + Url + + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + Форма + + + Import File Selection + + + + Password: + Лозинка: + + + Key File: + Кључ-Датотека: + + + Browse… + + + + Import Into: + + + + New Database + Нова база података + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + + + + Bitwarden (.json) + + + + KeePass 1 Database (.kdb) + + + + Open OPVault + Отворити OPVault + + + Select import file + + + + All files + Све датотеке + + + Key files + Кључ-Датотеке + + + Select key file + Одаберите кључ-датотеку + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) + + + KMessageWidget @@ -4543,17 +5222,6 @@ Line %2, column %3 Неуспешно отварање приватног кључа - - KeePass1OpenWidget - - Import KeePass1 Database - Увоз KeePass1 базе података - - - Unable to open the database. - Није могуће отворити базу података. - - KeePass1Reader @@ -4910,10 +5578,6 @@ Are you sure you want to continue with this file? &Recent Databases Скорашње базе података - - &Import - &Увези - &Export Извоз @@ -4934,6 +5598,10 @@ Are you sure you want to continue with this file? TOTP Једнократна лозинка + + Tags + + &Groups Групе @@ -4978,34 +5646,18 @@ Are you sure you want to continue with this file? &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 - Види или уреди унос - &Delete Entry… Обрисати унос... @@ -5014,10 +5666,6 @@ Are you sure you want to continue with this file? &New Group… Нова група... - - Add a new group - Додај нову групу - &Edit Group… Променити групу... @@ -5050,18 +5698,10 @@ Are you sure you want to continue with this file? Database &Reports… - - Statistics, health check, etc. - Статистика, здравствена провера итд. - &Database Settings… Подешавања базе података... - - Database settings - Подешавања базе података - &Clone Entry… Направи дупликат уноса... @@ -5070,34 +5710,18 @@ Are you sure you want to continue with this file? Move u&p Премести на горе - - Move entry one step up - Премести унос за један корак горе - Move do&wn Премести на доле - - Move entry one step down - Премести унос за један корак надоле - Copy &Username Копирај корисничко име - - Copy username to clipboard - Копирај корисничко име - Copy &Password Копирај лозинку - - Copy password to clipboard - Копирај лозинку - &Settings Подешавања @@ -5131,25 +5755,13 @@ Are you sure you want to continue with this file? Наслов - Copy title to clipboard - Копирај назив - - - &URL - &URL - - - Copy URL to clipboard - Копирај URL + Copy &URL + &Notes Белешке - - Copy notes to clipboard - Копирај белешке - &CSV File… CSV датотека… @@ -5162,26 +5774,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 база података… - - Import a KeePass 1 database - Увези KeePass 1 базу података - 1Password Vault… 1Password сеф… - - Import a 1Password Vault - Увоз из 1Password сефа - CSV File… CSV датотека… - - Import a CSV file - Увези CSV датотеку - Show TOTP Прикажи TOTP @@ -5198,6 +5798,10 @@ Are you sure you want to continue with this file? Copy &TOTP Копирај &TOTP + + Copy Password and TOTP + + E&mpty recycle bin Испразни корпу за отпатке @@ -5222,10 +5826,6 @@ Are you sure you want to continue with this file? &Online Help Помоћ на мрежи - - Go to online documentation - Идите на документацију на мрежи - &User Guide Упутство за употребу @@ -5270,6 +5870,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Класично (изворно са платформе) + + Show Menubar + + Show Toolbar Прикажи траку са алаткама @@ -5294,6 +5898,10 @@ Are you sure you want to continue with this file? Clone Group... + + &XML File… + + Clear history Очисти историју @@ -5318,8 +5926,7 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. + No Tags @@ -5350,6 +5957,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Напусти KeePassXC + + %1 Entry(s) + + Please present or touch your YubiKey to continue… @@ -5362,6 +5973,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Морате поново покренути апликацију да бисте применили ово подешавање. Да ли желите да се поново покренете сада? + + Allow Screen Capture + + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + + + + Create Database + + + + Merge From Database + + + + Create Entry + + + + Edit Entry + Измени унос + + + Delete Entry + + + + Create Group + + + + Edit Group + Уредити групу + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + + + + Copy Password + + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + Увоз KeePass1 базе података + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + Генератор Лозинки + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5419,26 +6338,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5498,14 +6397,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Овде можете прилагодити поставке шифровања базе података. Не брините, касније их можете променити у подешавањима базе података. - - Advanced Settings - Напредна подешавања - - - Simple Settings - Једноставна подешавања - NewDatabaseWizardPageDatabaseKey @@ -5540,6 +6431,25 @@ We recommend you use the AppImage available on our downloads page. Унесите име за приказ и опциони опис за вашу нову базу података: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Сними прилог + + + New entry attachment + + + NixUtils @@ -5586,15 +6496,6 @@ We recommend you use the AppImage available on our downloads page. - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Читање базе података није произвело инстанцу -%1 - - OpVaultReader @@ -5668,6 +6569,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Непознат шифрарник: %1 + + AES-256/GCM is currently not supported + + Passphrase is required to decrypt this key За дешифровање овог кључа потребна је приступна фраза @@ -5732,28 +6637,180 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Неочекиван крај датотеке приликом уписивања приватног кључа + + (encrypted) + (енкриптовано) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Лозинке се не поклапају + SSH Key Generator + - Passwords match so far - Лозинке се до сада подударају + Type + Тип - Toggle Password (%1) - Пребаци лозинку (%1) + Bits + - Generate Password (%1) - Генериши лозинку (%1) + Comment + Коментар + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! - Упозорење: Тастер за велика слова је упаљен! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + Откажи + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + + + + Group + Група + + + Database + + + + Import Passkey + + + + Import + Увези + + + Cancel + Откажи + + + Entry + Унос + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + Све датотеке + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. + @@ -5934,10 +6991,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Такође бирати између: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Изузети знакови: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Изостави сличне карактере @@ -5962,10 +7015,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: Број Фраза: - - Character Count: - Број карактера: - Word Case: Слово реченица: @@ -5978,10 +7027,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist - - character - карактера - Close Затвори @@ -6018,6 +7063,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit Ентропија: %1 бит + + Password Quality: %1 + Квалитет Лозинке: %1 + + + Poor + Password quality + Слаб + + + Weak + Password quality + Слаб + + + Good + Password quality + Добар + + + Excellent + Password quality + Одличан + Confirm Delete Wordlist @@ -6064,13 +7133,52 @@ Do you want to overwrite it? Посебни карактери - Password Quality: %1 - Квалитет Лозинке: %1 + passwordLength + + + + Characters: %1 + + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + Лозинке се не поклапају + + + Passwords match so far + Лозинке се до сада подударају + + + Toggle Password (%1) + Пребаци лозинку (%1) + + + Generate Password (%1) + Генериши лозинку (%1) + + + Warning: Caps Lock enabled! + Упозорење: Тастер за велика слова је упаљен! + + + Quality: %1 + Poor Password quality - Слаб + Бедан Weak @@ -6087,6 +7195,10 @@ Do you want to overwrite it? Password quality Одличан + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog @@ -6103,6 +7215,21 @@ Do you want to overwrite it? + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported + + + QMessageBox @@ -6141,6 +7268,10 @@ Do you want to overwrite it? Continue Настави + + Continue with weak password + + QObject @@ -6534,6 +7665,10 @@ Do you want to overwrite it? Too many arguments provided. + + Path of the database. + Путања до базе података. + Target decryption time in MS for the database. Циљно време дешифровања басе података у МС. @@ -6554,10 +7689,6 @@ Do you want to overwrite it? Create a new database. Креирајте нову базу података. - - Path of the database. - Путања до базе података. - Invalid decryption time %1. Неважеће време дешифровања %1. @@ -6602,6 +7733,158 @@ Do you want to overwrite it? Successfully created new database. Успешно направљена нова база података. + + Unset the password for the database. + + + + Unset the key file for the database. + + + + Edit a database. + + + + Cannot use %1 and %2 at the same time. + + + + Could not change the database key. + + + + Database was not modified. + + + + Writing the database failed: %1 + Писање базе података није успело: %1 + + + Successfully edited the database. + + + + Cannot remove password: The database does not have a password. + + + + Cannot remove file key: The database does not have a file key. + + + + Loading the new key file failed: %1 + + + + Found unexpected Key type %1 + + + + Cannot remove all the keys from a database. + + + + Show a database's information. + Прикажите информације о бази података. + + + UUID: + UUID: + + + Name: + Име: + + + Description: + Опис: + + + Cipher: + Шифра: + + + KDF: + KDF: + + + Recycle bin is enabled. + Канта за отпад је омогућена. + + + Recycle bin is not enabled. + Канта за отпад је онемогућена. + + + Location + Смештај + + + Database created + + + + Last saved + Последње сачувавање + + + Unsaved changes + Несачуване промене + + + yes + да + + + no + не + + + Number of groups + Број група + + + Number of entries + Број уноса + + + Number of expired entries + Број уноса који су истекли + + + Unique passwords + Јединствене лозинке + + + Non-unique passwords + Дупликатне лозинке + + + Maximum password reuse + Максимална поновна употреба лозинке + + + Number of short passwords + Број кратких лозинки + + + Number of weak passwords + Број слабих лозинки + + + Entries excluded from reports + Уноси изузети из извештаја + + + Average password length + Просечна дужина лозинке + + + %1 characters + %1 карактера + Word count for the diceware passphrase. Број речи за фразу као коцкице. @@ -6624,10 +7907,6 @@ Do you want to overwrite it? Invalid word count %1 Неважеће бројање речи %1 - - The word list is too small (< 1000 items) - Листа речи је премала (<1000 предмета) - Title for the entry. Наслов уноса. @@ -6652,10 +7931,6 @@ Do you want to overwrite it? Enter new password for entry: Унети нову лозинку за унос: - - Writing the database failed: %1 - Писање базе података није успело: %1 - Successfully edited entry %1. Унос %1 је успешно уређен. @@ -6776,10 +8051,6 @@ Do you want to overwrite it? Exit interactive mode. Изађите из интерактивног режима. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - - Exports the content of a database to standard output in the specified format. Извози садржај базе података на стандардни излаз у наведеном формату. @@ -6880,106 +8151,6 @@ Do you want to overwrite it? Successfully imported database. Успешан увоз базе података. - - Show a database's information. - Прикажите информације о бази података. - - - UUID: - UUID: - - - Name: - Име: - - - Description: - Опис: - - - Cipher: - Шифра: - - - KDF: - KDF: - - - Recycle bin is enabled. - Канта за отпад је омогућена. - - - Recycle bin is not enabled. - Канта за отпад је онемогућена. - - - Location - Смештај - - - Database created - - - - Last saved - Последње сачувавање - - - Unsaved changes - Несачуване промене - - - yes - да - - - no - не - - - Number of groups - Број група - - - Number of entries - Број уноса - - - Number of expired entries - Број уноса који су истекли - - - Unique passwords - Јединствене лозинке - - - Non-unique passwords - Дупликатне лозинке - - - Maximum password reuse - Максимална поновна употреба лозинке - - - Number of short passwords - Број кратких лозинки - - - Number of weak passwords - Број слабих лозинки - - - Entries excluded from reports - Уноси изузети из извештаја - - - Average password length - Просечна дужина лозинке - - - %1 characters - %1 карактера - Unknown command %1 Непозната команда %1 @@ -7152,6 +8323,10 @@ Available commands: Show the protected attributes in clear text. Прикажите заштићене атрибуте у чистом тексту. + + Show all the attributes of the entry. + + Show the attachments of the entry. @@ -7222,6 +8397,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Неважећи YubiKey серијал %1 + + Please present or touch your YubiKey to continue. + + Enter password to encrypt database (optional): Унесите лозинку за шифровање базе података (опционално): @@ -7408,7 +8587,7 @@ Kernel: %3 %4 - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 @@ -7459,18 +8638,6 @@ Kernel: %3 %4 file empty датотека је празна - - malformed string - неисправна ниска - - - missing closing quote - недостаје завршни наводник - - - %1: (row, col) %2,%3 - %1: (линије, колоне) %2,%3 - AES 256-bit AES 256-бит @@ -7649,14 +8816,6 @@ Kernel: %3 %4 read password of the database from stdin - - allow app screen recordering and screenshots - - - - Locked databases. - - Database failed to lock. @@ -7665,6 +8824,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. Друга инстанца KeePassXC апликације је већ активна. + + KeePassXC is not running. No open database to lock + + Fatal error while testing the cryptographic functions. @@ -7673,10 +8836,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Грешка - - Warning: Failed to prevent screenshots on a top level window! - - Database password: Лозинка базе података: @@ -7700,7 +8859,310 @@ Kernel: %3 %4 - Please present or touch your YubiKey to continue. + Warning: Failed to block screenshot capture on a top-level window. + + + + Invalid Cipher + + + + Invalid KDF + + + + Access to all entries is denied + + + + allow screenshots and app recording (Windows/macOS) + + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + + + + Failed to encrypt key data. + + + + Failed to get Windows Hello credential. + + + + Failed to decrypt key data. + + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + + + + Cannot open file: %1 + + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + Обрисати податке о додатку? + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags @@ -7738,20 +9200,39 @@ Kernel: %3 %4 Интерна zlib грешка: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. @@ -7816,44 +9297,53 @@ Kernel: %3 %4 Exclude from reports Изузети из извештаја + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + + + + (Expired) + + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report + Show expired entries - Also show entries that have been excluded from reports - Такође прикажи уносе који су изузети из извештаја + (Expired) + Hover over reason to show additional details. Double-click entries to edit. Пређите преко разлога да бисте приказали додатне детаље. Двапут кликните на уносе за уређивање. - - Bad - Password quality - Баш лоше - Bad — password must be changed Баш лоше — лозинка мора бити промењена - - Poor - Password quality - Бедан - Poor — password should be changed Лоше — лозинку треба променити - - Weak - Password quality - Слаб - Weak — consider changing the password Слабо — размислите о промени лозинке @@ -7902,6 +9392,14 @@ Kernel: %3 %4 Exclude from reports Изузети из извештаја + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp @@ -7997,6 +9495,77 @@ Kernel: %3 %4 Exclude from reports Изузети из извештаја + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Извоз + + + Import + Увези + + + List of entry URLs + + + + Title + Наслов + + + Path + Путања + + + Username + Корисничко име + + + URLs + + + + Edit Entry… + + + + Delete Entry(s)… + + + + Relying Party + + + + Show expired entries + + + + (Expired) + + + + Export Confirmation + Потврда извоза + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics @@ -8171,6 +9740,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Ниједан агент није покренут, не може да наведе идентитете. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8237,6 +9814,10 @@ Kernel: %3 %4 Search Help Претражи помоћ + + Save Search + + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8311,26 +9892,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - - Confirm when clients request entry deletion - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - - Prompt to unlock database before searching @@ -8355,6 +9920,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Сачувајте тренутне промене да бисте активирали додатак и омогућите уређивање ове секције. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + + SettingsWidgetKeeShare @@ -8463,7 +10036,11 @@ Kernel: %3 %4 TagModel - All + Clear Search + + + + All Entries @@ -8475,6 +10052,25 @@ Kernel: %3 %4 + + TagView + + Remove Search + + + + Remove Tag + + + + Confirm Remove Tag + + + + Remove tag "%1" from all entries in this database? + + + TotpDialog @@ -8632,26 +10228,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Почните да безбедно складиштите лозинке у KeePassXC бази података - - Create new database - Креирајте нову базу података - - - Open existing database - Отворити постојећу базу података - - - Import from KeePass 1 - Увоз из KeePass 1 - - - Import from 1Password - Увоз из 1Password - - - Import from CSV - Увоз из CSV - Recent databases Недавне базе података @@ -8664,6 +10240,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Добродошли у KeePassXC %1 + + Create Database + + + + Open Database + + + + Import File + + WinUtils @@ -8680,31 +10268,8 @@ Example: JBSWY3DPEHPK3PXP Није могуће регистровати глобалну пречицу - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - - - YubiKey - - %1 No interface, slot %2 - - General: @@ -8716,14 +10281,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Освежи хардверске токене - - - Refresh - Освежи - Hardware key slot selection Избор слота хардверског кључа @@ -8756,10 +10313,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - - Detecting hardware keys… Откривање хардверских кључева… @@ -8768,28 +10321,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Нема хардверских кључева - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 погрешан слот - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - Hardware key is currently in use. - Тренутно се користи хардверски кључ. - Could not find or access hardware key with serial number %1. Please present it to continue. @@ -8806,6 +10356,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + + + Press + USB Challenge-Response Key interaction request + Притисни + + + Passive + USB Challenge-Response Key no interaction required + Пасивно + YubiKeyInterfaceUSB @@ -8813,14 +10378,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Непознато - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8835,10 +10392,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - Hardware key is currently in use. - Тренутно се користи хардверски кључ. - Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8855,5 +10408,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + + \ No newline at end of file diff --git a/share/translations/keepassxc_sv.ts b/share/translations/keepassxc_sv.ts index 120ab2ca8..341ae3813 100644 --- a/share/translations/keepassxc_sv.ts +++ b/share/translations/keepassxc_sv.ts @@ -80,6 +80,10 @@ Details Detaljerat + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Ditt beslut kommer att sparas under den tid som både den begärande klienten OCH KeePassXC körs. + Remember Kom ihåg @@ -88,10 +92,6 @@ Allow Selected Tillåt markerade - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Ditt beslut kommer att sparas under den tid som både den begärande klienten OCH KeePassXC körs. - Deny All && Future Neka alla && framtida @@ -122,6 +122,10 @@ Use OpenSSH Använd OpenSSH + + Use both agents + Använd båda agenterna + SSH_AUTH_SOCK override SSH_AUTH_SOCK åsidosättning @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH-tjänstens anslutning arbetar! - - Use both agents - Använd båda agenterna - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security Säkerhet + + This setting cannot be enabled when minimize on unlock is enabled. + Denna inställning kan inte aktiveras om minimering vid upplåsning är aktiverad. + Access error for config file %1 Åtkomstfel för konfigurationsfil %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? Du måste starta om programmet för att tillämpa det nya språket. Vill du starta om nu? - - Reset Settings? - Vill du återställa inställningarna? - - - Are you sure you want to reset all general and security settings to default? - Vill du verkligen återställa alla allmäna och säkerhetsinställningar till standardinställning? - Select backup storage directory Välj lagringsplats för säkerhetskopior + + Confirm Reset + Bekräfta återställning + + + Are you sure you want to reset all settings to default? + Vill du verkligen återställa alla inställningar till standardinställning? + + + Import KeePassXC Settings + Importera KeePassXC-inställningar + + + Failed to import settings from %1, not a valid settings file. + Kunde inte importera inställningar från %1, ingen giltig inställningsfil. + + + Export KeePassXC Settings + Exportera KeePassXC-inställningar + + + Small + Liten + + + Normal + Normal + + + Medium + Medium + + + Large + Stor + + + Custom + Anpassad + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases Kom ihåg tidigare databaser + + recent files + tidigare filer + Load previously open databases on startup Läs in tidigare öppna databaser vid programstart @@ -272,25 +312,6 @@ Include beta releases when checking for updates Inkludera betaversioner vid sökning efter uppdateringar - - On database unlock, show entries that - Vid databasupplåsning, visa poster som - - - have expired - On database unlock, show entries that... - har upphört att gälla - - - days - On database unlock, show entries that will expire within %1 days - dagar - - - will expire within - On database unlock, show entries that... - löper ut inom - File Management Filhantering @@ -315,22 +336,10 @@ Backup database file before saving Säkerhetskopiera databasfilen innan den sparas - - Backup destination - Säkerhetskopieringsmål - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Anger platsen för databasens säkerhetskopia. Förekomster av {DB_FILENAME}" ersätts med filnamnet för den sparade databasen utan filtillägg. {TIME:<format>} ersätts med säkerhetskopieringstiden, se https://doc.qt.io/qt-5/qdatetime.html#toString. <format> standard för att formatera strängen "dd_MM_yyyy_hh-mm-ss". - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Välj... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Använd alternativ lagringsmetod (Kan lösa problem med Dropbox, Google Drive, GVFS, etc.) @@ -408,6 +417,10 @@ Toolbar button style: Knappstil för verktygsfält: + + Show passwords in color + Visa lösenord i färg + Use monospaced font for notes Använd teckensnitt med fast teckenbredd för anteckningar @@ -493,6 +506,71 @@ Remember last typed entry for: Kom ihåg senast inmatade post för: + + On database unlock, show entries that will expire within + Vid databasupplåsning, visa poster som förfaller inom + + + On database unlock, show entries that will expire within + Vid databasupplåsning, visa poster som förfaller inom + + + days + number of days warning for password expiration + dagar + + + Destination format: + Målformat: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> är ersatt av filnamnet för den sparade database utan filnamnstillägg.</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> år ersatt av specificerat tidsformat (standard: dd_MM_yyyy_hh-mm-ss).</p><p>Se användarmanualen för fler detaljer.</p></body></html> + + + Choose folder... + Välj mapp... + + + Show confirmation before moving entries to recycle bin + Visa bekräftelse innan poster flyttas till papperskorgen + + + Copy data on double clicking field in entry view + Kopiera data vid dubbelklick på fält i postvyn + + + Show toolbar + Visa verktygsfält + + + Show the menu bar by pressing the Alt key + Visa menyfältet genom att trycka på Alt-tangenten + + + Show menubar + Visa menyfält + + + Import settings… + Importera inställningar... + + + Export settings… + Exportera inställningar... + + + Open browser on double clicking URL field in entry view + Öppna webbläsare vid dubbelklick på URL i postvyn + + + Font size: + Teckenstorlek: + + + Font size selection + Teckenstorleksval + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window Lås databaserna när fönstret minimeras - - Require password repeat when it is visible - Kräv lösenordsupprepning när det är synligt - Hide passwords when editing them Dölj lösenord när de redigeras @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel Dölj lösenord i förhandsgranskningsrutan - - Hide entry notes by default - Dölj posters anteckningar som standard - - - Move entries to recycle bin without confirmation - Flytta poster till papperskorgen utan bekräftelse - - - Enable double click to copy the username/password entry columns - Aktivera dubbelklick för att kopiera kolumnerna för användarnamn/lösenord - Privacy Integritet @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons Använd DuckDuckGo för att ladda ner webbplatsikoner + + Hide TOTP in the entry preview panel + Dölj TOTP i förhandsgranskningspanelen + + + Lock databases when switching user + Lås databaserna vid byte av användare + + + Lock Options + Låsningsalternativ + + + Hide notes in the entry preview panel + Dölj anteckningar posters förhandgranskningspanel + AutoType @@ -626,18 +704,8 @@ Mycket lång fördröjning, max är %1: %2 - Invalid conversion type: %1 - Ogiltig konverteringstyp: %1 - - - Invalid conversion syntax: %1 - Ogiltig konverteringssyntax: %1 - - - Invalid regular expression syntax %1 -%2 - Ogiltig regular expression-syntax: %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Posten har inget attribut för PICKCHARS: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Försöker skicka en ogiltig tangentbordssymbol - Sequence aborted: Caps Lock is on Sekvensen avbröts: Caps Lock är på @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Kunde inte hämta giltig nyckelkod för nyckeln: + + Trying to send invalid keyboard symbol. + Försöker skicka ogiltig tangentbordssymbol. + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - Använd virtuellt tangentbord (Endast Windows)</p> Disable for this site Inaktivera för denna sida + + Undo + Ångra + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser spara post - Ok OK @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. Du ha flera databaser öppna. Välj rätt databas för att spara inloggningsuppgifterna. + + KeePassXC - Select Database + KeePassXC - Välj databas + + + + BrowserPasskeysConfirmationDialog + + Cancel + Avbryt + + + Update + Uppdatera + + + Authenticate + Autentisera + + + Register new + Registrera ny + + + Register + Registrera + + + Timeout in <b>%n</b> seconds... + Tidsgränsen löper ut om <b>%n</b> sekund...Tidsgränsen löper ut om <b>%n</b> sekunder... + + + Relying Party: %1 + Förlitande part: %1 + + + Username: %1 + Användarnamn: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Passnyckeluppgifter + + + Add to existing entry + Lägg till i befintlig post + + + Existing passkey found. +Do you want to register a new passkey for: + Befintlig passnyckel hittad. +Vill du registrera en ny passnyckel för: + + + Select the existing passkey and press Update to replace it. + Markera den befintliga passnyckeln och tryck "Uppdatera" för att ersätta den. + + + Authenticate passkey credentials for: + Autentisera passnyckeluppgifter för: + + + Do you want to register a passkey for: + Vill du registrera passnyckel för: + BrowserService - - KeePassXC: Create a new group - KeePassXC: Skapa en ny grupp - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? Vill du skapa denna grupp? - - KeePassXC: New key association request - KeePassXC: Ny nyckelassocieringsbegäran - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop. Save and allow access Spara och tillåt åtkomst - - KeePassXC: Overwrite existing key? - KeePassXC: Vill du skriva över befintlig nyckel? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? En delad krypteringsnyckel med namnet "%1" finns redan. Vill du skriva över den? - - KeePassXC: Update Entry - KeePassXC: Uppdatera post - Do you want to update the information in %1 - %2? Vill du uppdatera informationen i %1 - %2? - - KeePassXC: Delete entry - KeePassXC: Ta bort post - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Vill du ta bort posten? - Converting attributes to custom data… - Konverterar attribut till anpassad data... + %1 (Passkey) + %1 (Passnyckel) - Abort - Avbryt + KeePassXC - Create a new group + KeePassXC - Skapa en ny grupp - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Konverterade KeePassHTTP-attribut + Disable + Inaktivera - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Konverterade attribut från %1 post(er). -Flyttade %2 nycklar till anpassad data. - - - Successfully moved %n keys to custom data. - Flyttade %n nyckel till anpassad data.Flyttade %n nycklar till anpassad data. + KeePassXC - Overwrite existing key? + KeePassXC - Vill du skriva över befintlig nyckel? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Hittade ingen post med KeePassHTTP-attribut! + KeePassXC - Update Entry + KeePassXC - Uppdatera post - The active database does not contain an entry with KeePassHTTP attributes. - Den aktiva databasen innehåller inte någon post med KeePassHTTP-attribut. + KeePassXC - Delete entry + KeePassXC - Ta bort post - Don't show this warning again - Visa inte denna varning igen + KeePassXC - New key association request + KeePassXC - Ny nyckelassocieringsbegäran - KeePassXC: Legacy browser integration settings detected - KeePassXC: Föråldrade inställningar för webbläsarintegrering har identifierats + Passkey + Passnyckel - 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? - Dina inställningar för KeePassXC-Browser behöver flyttas in i databasinställningarna. -Detta är nödvändigt för att behålla dina aktuella webbläsaranslutningar. -Vill du migrera dina befintliga inställningar nu? + KeePassXC - Passkey credentials + KeePassXC - Passnyckeluppgifter + + + Register a new passkey to this entry: + Registrera en ny passnyckel för denna post: + + + KeePassXC - Update passkey + KeePassXC - Uppdatera Passnyckel + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Posten har redan en passnyckel. +Vill du skriva över passnyckeln i %1 - %2? + + + Register + Registrera @@ -955,10 +1076,6 @@ Vill du migrera dina befintliga inställningar nu? General Allmänt - - Browsers installed as snaps are currently not supported. - Webbläsare installerade via Snap, stöds för närvarande inte. - Enable integration for these browsers: Aktivera integrering i dessa webbläsare: @@ -1130,26 +1247,6 @@ Vill du migrera dina befintliga inställningar nu? Custom extension ID Anpassat tilläggs-ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - På grund av Snaps sandlådeteknik, måste du köra ett skript för att aktivera webbläsarintegration.<br />Du kan hämta skriptet från %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - KeePassXC-Browser behövs för att webbläsarintegrationen ska fungera. <br />Ladda ner dent för %1 och %2 och %3. %4 - - - Please see special instructions for browser extension use below - Se specialinstruktioner för webbläsarintegreringens användning nedan - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Fel:</b> Det går inte att hitta den anpassade proxyplatsen!<br/>Webbläsarintegration KOMMER INTE ATT FUNGERA utan proxyprogrammet. - - - <b>Warning:</b> The following options can be dangerous! - <b>Varning:</b> Följande alternativ kan vara farliga! - Executable Files Körbara filer @@ -1166,6 +1263,46 @@ Vill du migrera dina befintliga inställningar nu? Select native messaging host folder location Välj plats för den inbyggda värdmappen för meddelanden + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Tillåt keepassxc-proxy att lista alla poster med titel, URL och UUID i anslutna databaser. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Tillåt begränsad åtkomst till alla poster i anslutna databaser (ignorerar begränsningar för webbplatsåtkomst) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Varning!</b> Justera dessa inställningar endast om nödvändigt. + + + The custom proxy location does not exist. + Den anpassade proxyplatsen finns inte. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Fel:</b> Den anpassade proxyplatsen finns inte. Korrigera det i avancerade inställningar. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Fel:</b> Den installerade körbara proxyfilen saknas på den förväntade platsen: %1<br/>Ange en anpassad proxyplats i de avancerade inställningarna eller installera om programmet. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Tillåter användning av osäker http://localhost med passnycklar för teständamål. + + + Allow using localhost with passkeys + Tillåt användning av localhost med passnycklar + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser behövs för att webbläsarintegrationen ska fungera. <br />Ladda ner det för %1 och %2 och %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Webbläsare som är installerade via Snap eller Flatpak stöds inte, med Firefox via Snap som enda undantag. + CloneDialog @@ -1188,14 +1325,6 @@ Vill du migrera dina befintliga inställningar nu? CsvImportWidget - - Import CSV fields - Importera CSV-fält - - - filename - filnamn - size, rows, columns storlek, rader, kolumner @@ -1304,50 +1433,43 @@ Vill du migrera dina befintliga inställningar nu? Column %1 Kolumn %1 - - Imported from CSV file - Importerat från CSV-fil - - - Original data: - Ursprunglig data: - - - Error(s) detected in CSV file! - Fel upptäckta i CSV-fil! - [%n more message(s) skipped] [%n meddelande hoppades över][%n meddelanden hoppades över] - Error - Fel + Failed to parse CSV file: %1 + CSV-filen kunde inte tolkas: %1 - CSV import: writer has errors: -%1 - CSV-import: Skrivare har fel: -%1 + Imported from CSV file: %1 + Importerat från CSV-fil: %1 + + + No Title Selected + Ingen titel vald + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Ingen titelkolumn valdes, Posterna kommer att bli svåra att särskilja. +Vill du verkligen importera? + + + Tags + Taggar CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n byte%n byte - %n row(s) + CSV row count %n rad%n rader %n column(s) + CSV column count %n kolumn%n kolumner @@ -1376,7 +1498,7 @@ Vill du migrera dina befintliga inställningar nu? Database save is already in progress. - Dtabasens sparande pågår redan. + Databasens sparande pågår redan. Could not save, database has not been initialized! @@ -1400,6 +1522,14 @@ Säkerhetskopierad databas hittad i %2 Recycle Bin Papperskorg + + Database file read error. + Kunde inte läsa databasfilen. + + + No file path was provided. + Ingen filsökväg angavs. + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Säkerhetskopierad databas hittad i %2 Password field Lösenord - - Enter Additional Credentials (if any): - Ange fler autentiseringsuppgifter (om det finns några): - - - Key File: - Nyckelfil: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Som tillägg till ett lösenord, kan du använda en hemlig fil för att förbättra säkerheten i din databas. En sådan fil kan genereras i databasens säkerhetsinställningar.</p><p>Detta är <strong>inte</strong> din *.kdbx-databasfil!<br>Om du inte har någon nyckelfil, lämnar du fältet tomt.</p><p>Klicka för mer information...</p> - - - Key file help - Nyckelfilshjälp - Hardware key slot selection Val av plats för hårdvarunyckel - - Hardware Key: - Hårdvarunyckel: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>Du kan använda en hårdvarunyckel såsom <strong>YubiKey</strong> eller <strong>OnlyKey</strong> med anslutningsplatser konfigurerade för HMAC-SHA1.</p> -<p>Klicka för mer information...</p> - - - Hardware key help - Hjälp med hårdvarunyckel - Key file to unlock the database Nyckelfil för att låsa upp databasen @@ -1468,14 +1568,6 @@ Säkerhetskopierad databas hittad i %2 Browse… Bläddra… - - Refresh hardware tokens - Uppdatera hårdvaru-tokens - - - Refresh - Uppdatera - Unlock Database Lås upp databasen @@ -1539,14 +1631,6 @@ För att förhindra att detta fel uppstår igen, måste du gå till "Databa Retry with empty password Försök med tomt lösenord - - Failed to authenticate with Windows Hello - Kunde inte autentisera med Windows Hello - - - Failed to authenticate with Touch ID - Kunde inte autentisera med Touch ID - Failed to open key file: %1 Kunde inte öppna nyckelfil: %1 @@ -1580,22 +1664,68 @@ För att förhindra att detta fel uppstår igen, måste du gå till "Databa Kan inte använda en databasfil som nyckelfil - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Du kan inte använda din databasfil som nyckelfil. -Om du inte har någon nyckelfil, lämnar du fältet tomt. + authenticate to access the database + autentisera för åtkomst till databasen - Detecting hardware keys… - Identifierar hårdvarunycklar... + Failed to authenticate with Quick Unlock: %1 + Kunde inte autentisera med Quick Unlock: %1 - No hardware keys detected - Inga hårdvarunycklar identifierade + Select Key File: + Välj nyckelfil: - Select hardware key… - Välj hårdvarunyckel... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Som tillägg till ett lösenord, kan du använda en hemlig fil för att förbättra säkerheten i din databas. En sådan fil kan genereras i databasens säkerhetsinställningar.</p><p>Detta är <strong>inte</strong> din *.kdbx-databasfil!</p> + + + Use hardware key [Serial: %1] + Använd hårdvarunyckel [Serienummer: %1] + + + Use hardware key + Använd hårdvarunyckel + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Din databasfil är INTE en nyckelfil! +Om du inte har någon nyckelfil eller inte vet vad det är, behöver du inte välja något. + + + KeePassXC database file selected + KeePassXC databasfil vald + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Filen du valde ser ut som en databasfil. +En databasfil är INTE en nyckelfil! + +Vill du verkligen fortsätta med den här filen? + + + No hardware keys found. + Inga hårdvarunycklar hittades. + + + Refresh Hardware Keys + Uppdatera hårdvarunycklar + + + Click to add a key file. + Klicka för att lägga till en nyckelfil. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Jag har en nyckelfil</a> + + + Hardware keys found, but no slots are configured. + Hårdvarunycklar hittades, men inga anslutningsplatser är konfigurerade. @@ -1607,10 +1737,6 @@ Om du inte har någon nyckelfil, lämnar du fältet tomt. DatabaseSettingsDialog - - Advanced Settings - Avancerade inställningar - General Allmänt @@ -1635,6 +1761,22 @@ Om du inte har någon nyckelfil, lämnar du fältet tomt. Maintenance Underhåll + + KeeShare + KeeShare + + + Secret Service Integration + Secret Service-integration + + + Remote Sync + Fjärrsynkronisering + + + Database Settings: %1 + Databasinställningar: %1 + DatabaseSettingsWidgetBrowser @@ -1642,18 +1784,6 @@ Om du inte har någon nyckelfil, lämnar du fältet tomt. KeePassXC-Browser settings KeePassXC-Browser-inställningar - - Convert KeePassHTTP data - Konvertera KeePassHTTP-data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Konvertera äldre KeePassHTTP-attribut till KeePassXC-Browser-kompatibel anpassad data - - - Refresh database root group ID - Uppdatera databasens rotgrupps-ID - Disconnect all browsers Koppla bort alla webbläsare @@ -1662,6 +1792,10 @@ Om du inte har någon nyckelfil, lämnar du fältet tomt. Forget all site-specific settings on entries Glöm alla sidspecifika inställningar i befintliga poster + + Refresh database root group ID + Uppdatera databasens rotgrupps-ID + Stored keys Lagrade nycklar @@ -1710,18 +1844,10 @@ This may prevent connection to the browser plugin. Vill du verkligen koppla bort alla webbläsare? Detta kan förhindra anslutning till webbläsartillägget. - - KeePassXC: No keys found - KeePassXC: Inga nycklar hittades - No shared encryption keys found in KeePassXC settings. Inga delade krypteringsnycklar hittades i KeePassXC:s inställningar. - - KeePassXC: Removed keys from database - KeePassXC: Tog bort nycklar från databasen - Successfully removed %n encryption key(s) from KeePassXC settings. Tog bort %n krypteringsnyckel från KeePassXC:s inställningar.Tog bort %n krypteringsnycklar från KeePassXC:s inställningar. @@ -1740,32 +1866,14 @@ Behörighet att komma åt posterna kommer att återkallas. Abort Avbryt - - KeePassXC: Removed permissions - KeePassXC: Tog bort behörigheter - Successfully removed permissions from %n entry(s). Tog bort behörighet från %n post.Tog bort behörigheter från %n poster. - - KeePassXC: No entry with permissions found! - KeePassXC: Ingen post med behörigheter hittades! - The active database does not contain an entry with permissions. Den aktiva databasen innehåller ingen post med behörigheter. - - Move KeePassHTTP attributes to custom data - Flytta KeePassHTTP-attribut till anpassad data - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Vill du verkligen flytta all äldre webbläsarintegrationsdata till den senaste standarden? -Detta är nödvändigt för att få kompatibilitet med webbläsartillägget. - Refresh database ID Uppdatera databas-ID @@ -1776,6 +1884,26 @@ This is only necessary if your database is a copy of another and the browser ext Vill du verkligen uppdatera databas-ID? Detta är bara nödvändigt om databasen är en kopia av en annan och webbläsartillägget inte kan ansluta. + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Konvertera äldre KeePassHTTP-attribut till KeePassXC-Browser-kompatibel anpassad data + + + No keys found + Inga nycklar hittades + + + Removed keys from database + Tog bort nycklar från databasen + + + Removed permissions + Tog bort behörigheter + + + No entry with permissions found! + Ingen post med behörigheter hittades! + DatabaseSettingsWidgetDatabaseKey @@ -1815,6 +1943,18 @@ Vill du verkligen fortsätta utan lösenord? Failed to change database credentials Kunde inte ändra databasens inloggningsuppgifter + + Weak password + Svagt lösenord + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Detta är ett svagt lösenord! För att bättre skydda dina hemligheter, bör du välja ett starkare lösenord. + + + The provided password does not meet the minimum quality requirement. + Det angivna lösenordet möter inte lägsta kvalitetskrav. + DatabaseSettingsWidgetEncryption @@ -1822,14 +1962,6 @@ Vill du verkligen fortsätta utan lösenord? Decryption Time: Dekrypteringstid: - - Change existing decryption time - Ändra befintlig avkrypteringstid - - - Change - Ändra - Decryption time in seconds Avkrypteringstid i sekunder @@ -1910,11 +2042,6 @@ Vill du verkligen fortsätta utan lösenord? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - oförändrad - Number of rounds too high Key transformation rounds @@ -1967,6 +2094,18 @@ Om du behåller detta antal, kommer din databas inte att vara skyddad mot brute Threads for parallel execution (KDF settings) tråd trådar + + Encryption Settings: + Krypteringsinställningar: + + + Basic + Grundläggande + + + Advanced + Avancerat + DatabaseSettingsWidgetFdoSecrets @@ -2025,18 +2164,10 @@ Om du behåller detta antal, kommer din databas inte att vara skyddad mot brute Maximum number of history items per entry Max antal historikobjekt per post - - Max. history items: - Max antal historikposter: - Maximum size of history per entry Max historikstorlek per post - - Max. history size: - Maximal historikstorlek: - MiB MiB @@ -2067,6 +2198,108 @@ Denna åtgärd kan inte ångras. (old) (gammal) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + När du sparar den här inställningen eller redigerar +en post kommer de äldsta historikobjekten i en +post att tas bort, så att endast den angivna mängden +poster blir kvar som mest. + + + Limit the amount of history items per entry to: + Begränsa antalet historikobjekt per post till: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + När du sparar den här inställningen eller redigerar en +post kommer de äldsta historiska objekten i en post att +tas bort så att de återstående historikobjekten läggs +till det angivna beloppet som högst. + + + Limit the total size of history items per entry to: + Begränsa antalet historikobjekt per post till: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Flytta poster till en papperskorgsgrupp +i stället för att ta bort dem från databasen. +Poster som tas bort från papperskorgen +tas också bort från databasen. + + + Autosave delay since last change + Fördröjning av automatiskt sparande sedan senaste ändring + + + Autosave delay + Fördröjning av automatiskt sparande + + + Autosave delay since last change in minutes + Fördröjning av automatiskt sparande sedan senaste ändring i minuter + + + min + min + + + Autosave delay since last change checkbox + Kryssruta för fördröjning av automatiskt sparande sedan senaste ändring + + + Public Database Metadata + Offentlig databas metadata + + + Warning: the following settings are not encrypted. + Varning! Följande inställningar är inte krypterade. + + + Display name: + Visningsnamn: + + + Publically visible display name used on the unlock dialog + Offentligt synligt visningsnamn i upplåsningsdialogen. + + + Database public display name + Databasens offentliga visningsnamn + + + Display color: + Visningsfärg: + + + Publically visible color used on the unlock dialog + Offentligt synlig visningsfärg i upplåsningsdialogen. + + + Database public display color chooser + Databasens offentliga visningsfärgsväljare + + + Clear + Rensa + + + Display icon: + Visningsikon: + + + Select Database Icon + Välj databasikon + DatabaseSettingsWidgetKeeShare @@ -2162,6 +2395,141 @@ Denna åtgärd kan inte ångras. Databasens beskrivning + + DatabaseSettingsWidgetRemote + + Sync Commands + Synkroniseringskommandon + + + Remove + Ta bort + + + Command Settings + Kommandoinställningar + + + Name + Namn + + + Save + Spara + + + Download + Ladda ner + + + Command: + Kommando: + + + Download command field + Nerladdningskommando + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + t.ex.: "sftp user@hostname" eller "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Indata: + + + Download input field + Nerladdningens indata + + + Upload + Ladda upp + + + Upload command field + Uppladdningskommando + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + t.ex.: "sftp user@hostname" eller "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Uppladdningens indata + + + Name cannot be empty. + Namnet kan inte vara tomt + + + Test + Testa + + + Download command cannot be empty. + Nerladdningskommandot kan inte vara tomt. + + + Download failed with error: %1 + Nerladdningen misslyckades med felet: %1 + + + Download finished, but file %1 could not be found. + Nerladdning slutförd, men filen %1 kunde inte hittas. + + + Download successful. + Nerladdning slutförd. + + + Save Remote Settings + Spara fjärrinställningar + + + You have unsaved changes. Do you want to save them? + Du har osparade ändringar. Vill du spara dem? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + t.ex.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} används som platshållare för att lagra databasen på en tillfällig plats +Kommandot måste avslutas. Om "sftp" är det sista kommandot måste "exit" sändas + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + t.ex.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} används som platshållare för att lagra databasen på en tillfällig plats +Kommandot måste avslutas. Om "sftp" är det sista kommandot måste "exit" sändas + + + + Timeout: + Tidsgräns: + + + seconds + sekunder + + DatabaseTabWidget @@ -2194,26 +2562,10 @@ Detta är definitivt ett programfel, rapportera det till utvecklarna.CSV file CSV-fil - - Select CSV file - Välj CSV-fil - Merge database Slå samman databas - - KeePass 1 database - KeePass 1-databas - - - Open KeePass 1 database - Öppna KeePass 1-databas - - - Open OPVault - Öppna OPVault - Export database to CSV file Exportera databasen till en CSV-fil @@ -2226,6 +2578,18 @@ Detta är definitivt ett programfel, rapportera det till utvecklarna.Writing the HTML file failed. Kunde inte skriva HTML-filen. + + Export database to XML file + Exportera databas till XML-fil + + + XML file + XML-fil + + + Writing the XML file failed + Kunde inte skriva XML-filen + Export Confirmation Exportbekräftelse @@ -2234,26 +2598,22 @@ Detta är definitivt ett programfel, rapportera det till utvecklarna.You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? Du är på väg att exportera din databas till en okrypterad fil. Detta kommer att lämna dina lösenord annan känslig information i ett sårbart skick (klartext). Vill du verkligen fortsätta? - - New Database - Ny databas - - - %1 [New Database] - Database tab name modifier - %1 [Ny databas] - %1 [Locked] Database tab name modifier %1 [Låst] + + %1 [Temporary] + Database tab name modifier + %1 [Temporary] + DatabaseWidget - Database Tags - Databastaggar + Searches and Tags + Sök och taggar Searching… @@ -2303,6 +2663,10 @@ Detta är definitivt ett programfel, rapportera det till utvecklarna.Expired entries Utgångna poster + + Entries expiring within %1 day(s) + Poster som löper ut inom %1 dagPoster som löper ut inom %1 dagar + No current database. Ingen aktuell databas. @@ -2327,6 +2691,18 @@ Detta är definitivt ett programfel, rapportera det till utvecklarna.No Results Inget resultat + + Save + Spara + + + Enter a unique name or overwrite an existing search from the list: + Ange ett unikt namn eller skriv över en befintlig sökning från listan: + + + Save Search + Spara sökning + Lock Database? Vill du låsa databasen? @@ -2355,26 +2731,6 @@ Vill du spara ändringarna? File has changed Filen har ändrats - - The database file has changed. Do you want to load the changes? - Databasfilen har ändrats. Vill du läsa in ändringarna? - - - Merge Request - Slå samman begäran - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Databasfilen har ändrats och du har osparade ändringar. -Vill du slå samman dina ändringar? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Kunde inte öppna den nya databasen vid försök att läsa in automatisk. -Fel: %1 - Disable safe saves? Vill du inaktivera "Spara säkert"? @@ -2417,9 +2773,94 @@ Vill du inaktivera "Spara säkert" och försöka igen? Could not find database file: %1 Kunde inte hitta databasfilen: %1 - - Entries expiring within %1 day(s) - Poster som löper ut inom %1 dagPoster som löper ut inom %1 dagar + + New Database + Ny databas + + + %1 [New Database] + Database tab name modifier + %1 [Ny databas] + + + Remote Sync did not contain any download or upload commands. + Fjärrsynkroniseringen innehöll inga ner- eller uppladdningskommandon. + + + Remote sync '%1' completed successfully! + Fjärrsynkronisering "%1" slutförd! + + + Remote sync '%1' failed: %2 + Fjärrsynkronisering "%1" misslyckades: %2 + + + Error while saving database %1: %2 + Fel när databas %1 skulle sparas: %2 + + + Downloading... + Laddar ner... + + + Uploading... + Laddar upp... + + + Syncing... + Synkroniserar... + + + Remove passkey from entry + Ta bort passnyckeln från posten + + + Do you want to remove the passkey from this entry? + Vill du ta bort passnyckeln från den här posten? + + + The database file "%1" was modified externally + Databasfilen "%1" har ändrats externt + + + Do you want to load the changes? + Vill du läsa in ändringarna? + + + Reload database + Uppdatera databasen + + + Reloading database… + Uppdaterar databasen... + + + Reload canceled + Uppdateringen avbröts + + + Reload successful + Uppdatering slutförd + + + Reload pending user action… + Uppdatera väntande åtgärd... + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + Databasfilen "%1" har ändrats externt.<br>Hur vill du fortsätta?<br><br>Vill du slå samman alla ändringar?<br>Ignorera ändringar på disk tills du sparar?<br>Ignorera ändringar som inte har sparats? + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + Databasfilen "%1" har ändrats externt.<br>Hur vill du fortsätta?<br><br>Vill du slå samman alla ändringar och spara?<br>Skriva över ändringar på disk?<br>Skippa osparade ändringar? + + + Database file overwritten. + Databasfilen har skrivits över. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Databasfilen på disk kan inte låsas upp med aktuella inloggningsuppgifter. <br>Ange nya uppgifter och/eller hårdvarunyckel för att fortsätta. @@ -2472,10 +2913,6 @@ Vill du inaktivera "Spara säkert" och försöka igen? n/a n/a - - (encrypted) - (krypterad) - Select private key Välj privat nyckel @@ -2562,6 +2999,10 @@ Vill du korrigera det? Hide Dölj + + %n hour(s) + %1 timma%n timmar + %n week(s) %n vecka%n veckor @@ -2574,9 +3015,9 @@ Vill du korrigera det? %n year(s) %n år%n år - - %n hour(s) - %1 timma%1 timmar + + Failed to decrypt SSH key, ensure password is correct. + Kunde inte avkryptera SSH-nyckel, tillse att lösenordet är korrekt. @@ -2696,10 +3137,20 @@ Vill du korrigera det? Add new window association Lägg till ny fönsterassociation + + + + Add item + + + Remove selected window association Ta bort markerad fönsterassociation + + - + Remove item + - + Window title: Fönstertitel: @@ -2724,23 +3175,9 @@ Vill du korrigera det? Custom Auto-Type sequence for this window Anpassad autoskrivsekvens för detta fönster - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Dessa inställningar påverkar posternas beteende i webbläsartillägget. - General Allmänt @@ -2753,26 +3190,14 @@ Vill du korrigera det? Skip Auto-Submit for this entry Undanta autoskriv för den här posten - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Skicka bara den här inställningen till webbläsaren för HTTP-autentisering. Vid aktivering visas inte den här posten i normala inloggningsformulär. - Use this entry only with HTTP Basic Auth Använd den här posten endast med HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Skicka inte den här inställningen till webbläsaren för HTTP-autentisering. Vid aktivering visas inte den här posten för markering. - Do not use this entry with HTTP Basic Auth Använd inte här posten med HTTP Basic Auth - - Additional URL's - Ytterligare URL:er - Add Lägg till @@ -2785,6 +3210,22 @@ Vill du korrigera det? Edit Redigera + + These settings affect the entry's behaviour with the browser extension. + Dessa inställningar påverkar postens beteende med webbläsartillägget. + + + Additional URLs + Ytterligare URL:er + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Skicka bara den här inställningen till webbläsaren för HTTP-autentisering. Vid aktivering visas inte den här posten i normala inloggningsformulär. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Skicka inte denna post till webbläsaren för HTTP-autentisering. Vid aktivering visas inte den här posten för markering. + EditEntryWidgetHistory @@ -2835,22 +3276,10 @@ Vill du korrigera det? Notes field Anteckningar - - Toggle the checkbox to reveal the notes section. - Klicka i kryssrutan för att visa anteckningssektionen. - Username field Användarnamn - - Toggle notes visible - Visa/Dölj anteckningar - - - Notes: - Anteckningar: - Expiration field Förfaller @@ -2867,14 +3296,6 @@ Vill du korrigera det? Presets Förinställningar - - Password: - Lösenord: - - - URL: - URL: - Url field URL @@ -2883,18 +3304,10 @@ Vill du korrigera det? Download favicon for URL Ladda ner favicon för URL:en - - Title: - Titel: - Title field Titel - - Username: - Användarnamn: - Password field Lösenord @@ -2903,18 +3316,42 @@ Vill du korrigera det? Toggle expiration Förfallodag på/av - - Expires: - Förfaller: - - - Tags: - Taggar: - Tags list Tagglista + + &Username: + &Användarnamn: + + + &Title: + &Titel: + + + &Password: + &Lösenord: + + + UR&L: + &URL: + + + &Notes: + A&nteckningar: + + + Toggle notes visibility + Visa/Dölj anteckningar + + + T&ags: + Ta&ggar: + + + &Expires: + &Förfaller: + EditEntryWidgetSSHAgent @@ -2954,19 +3391,6 @@ Vill du korrigera det? Private key Privat nyckel - - External file - Extern fil - - - Browser for key file - Bläddra efter nyckelfil - - - Browse… - Button for opening file dialog - Bläddra… - Attachment Bilaga @@ -2983,6 +3407,23 @@ Vill du korrigera det? Remove from agent Ta bort från bakgrundstjänsten + + External file + Extern fil + + + Browser for key file + Bläddra efter nyckelfil + + + Browse… + Button for opening file dialog + Bläddra… + + + Generate + Generera + Select attachment file Välj bilagefil @@ -3007,6 +3448,10 @@ Vill du korrigera det? seconds sekunder + + Clear agent + Rensa agent + EditGroupWidget @@ -3018,10 +3463,6 @@ Vill du korrigera det? Icon Ikon - - Browser Integration - Webbläsarintegration - Properties Egenskaper @@ -3038,6 +3479,10 @@ Vill du korrigera det? Group has unsaved changes Grupp har osparade ändringar + + Browser Integration + Webbläsarintegration + Enable Aktivera @@ -3053,10 +3498,6 @@ Vill du korrigera det? EditGroupWidgetBrowser - - Edit Group - Redigera grupp - These settings affect to the group's behaviour with the browser extension. Dessa inställningar påverkar gruppens beteende med webbläsartillägget. @@ -3093,6 +3534,22 @@ Vill du korrigera det? Do not use HTTP Auth toggle for this and sub groups Använd inte HTTP Auth-växlingsknappen för denna och undergrupper + + Omit WWW subdomain from matching: + Utelämna WWW-underdomänen från matchning: + + + Omit WWW subdomain from matching toggle for this and sub groups + Utelämna WWW-underdomän från matchningväxling för denna och undergrupper + + + Restrict matching to given browser key: + Begränsa matchning till angiven webbläsarnyckel: + + + Restrict matching to given browser key toggle for this and sub groups + Begränsa matchning till en viss webbläsarnyckel för denna och undergrupper + EditGroupWidgetKeeShare @@ -3325,10 +3782,6 @@ Filtyper som stöds är: %1. Unable to fetch favicon. Kunde inte hämta favicon. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Du kan aktivera ikontjänsten från DuckDuckGo under Verktyg -> Inställningar -> Säkerhet - Existing icon selected. Befintlig ikon vald. @@ -3361,6 +3814,10 @@ Filtyper som stöds är: %1. The following icon(s) failed: Följande ikon misslyckades:Följande ikoner misslyckades: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Du kan aktivera ikontjänsten från DuckDuckGo under Programinställningar -> Säkerhet + EditWidgetProperties @@ -3437,6 +3894,24 @@ Det kan medföra att de berörda tilläggen inte fungerar. %1 - Clone %1 - Klona + + Passkey + Passnyckel + + + Invalid conversion type: %1 + Ogiltig konverteringstyp: %1 + + + Invalid conversion syntax: %1 + Ogiltig konverteringssyntax: %1 + + + Invalid regular expression syntax %1 +%2 + Ogiltig regular expression-syntax: %1 +%2 + EntryAttachments @@ -3445,6 +3920,21 @@ Det kan medföra att de berörda tilläggen inte fungerar. Kan inte öppna filen "%1" + + EntryAttachmentsDialog + + Form + Formulär + + + File name + Filnamn + + + File contents... + Filinnehåll + + EntryAttachmentsModel @@ -3482,14 +3972,6 @@ Det kan medföra att de berörda tilläggen inte fungerar. Remove Ta bort - - Rename selected attachment - Byt namn på markerad bilaga - - - Rename - Byt namn - Open selected attachment Öppna markerad bilaga @@ -3564,12 +4046,6 @@ Det kan medföra att de berörda tilläggen inte fungerar. Confirm Overwrite Attachment Bekräfta överskrivning av bilaga - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - Bilagan "%1" finns redan. -Vill du skriva över den befintliga bilagan? - Confirm Attachment Bekräfta bilaga @@ -3604,6 +4080,24 @@ Error: %1 Kunde inte spara uppdaterad bilaga. Fel: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Bilagan "%1" finns redan. +Vill du skriva över den befintliga bilagan? + + + New + Nytt + + + Preview + Förhandsgranska + + + Failed to preview an attachment: Attachment not found + Kunde inte förhandsgranska en bilaga: Bilagan hittades inte + EntryAttributesModel @@ -3798,6 +4292,14 @@ Fel: %1 Has TOTP Har TOTP + + Background Color + Bakgrundsfärg + + + Group Path + Gruppsökväg + EntryPreviewWidget @@ -3818,8 +4320,8 @@ Fel: %1 Lösenord - Notes - Anteckningar + URL + URL Expiration @@ -3838,8 +4340,8 @@ Fel: %1 Användarnamn - URL - URL + Notes + Anteckningar Advanced @@ -3889,6 +4391,10 @@ Fel: %1 Never Aldrig + + Double click to copy value + Dubbelklick för att kopiera värde + Enabled Aktiverad @@ -3897,6 +4403,10 @@ Fel: %1 Disabled Inaktiverad + + Double click to copy to clipboard + Dubbelklicka för att kopiera till urklipp + EntryURLModel @@ -3904,6 +4414,10 @@ Fel: %1 Invalid URL Ogiltig URL + + Duplicate URL + Duplicera URL + EntryView @@ -3919,6 +4433,10 @@ Fel: %1 Reset to defaults Återställ till standardvärden + + + %1 entry(s)... + + %1 post...+ %1 poster... + ExportDialog @@ -4139,6 +4657,199 @@ Du kan aktivera ikontjänsten från DuckDuckGo, i säkerhetssektionen av program Laddar ner favikoner (%1/%2)… + + ImportWizard + + Import Wizard + Importguide + + + + ImportWizardPageReview + + WizardPage + Guidesida + + + Entry count: %1 + Antal poster: %1 + + + Group + Grupp + + + Title + Titel + + + Username + Användarnamn + + + Password + Lösenord + + + Url + URL + + + Could not load key file. + Kunde inte läsa in nyckelfil. + + + Could not open remote database. Password or key file may be incorrect. + Kunde inte öppna fjärrdatabas. Lösenord eller nyckelfil kan vara felaktig. + + + + ImportWizardPageSelect + + Form + Formulär + + + Import File Selection + Val av importfil + + + Password: + Lösenord: + + + Key File: + Nyckelfil: + + + Browse… + Bläddra… + + + Import Into: + Importera till: + + + New Database + Ny databas + + + No unlocked databases available + Inga upplåsta databaser tillgängliga + + + Existing Database: + Befintlig databas: + + + Import File: + Importera fil: + + + Comma Separated Values (.csv) + Kommaseparerade värden (.csv) + + + 1Password Export (.1pux) + 1Password-export (.1pux) + + + 1Password Vault (.opvault) + 1Password-valv (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1-databas (.kdb) + + + Open OPVault + Öppna OPVault + + + Select import file + Välj importfil + + + All files + Alla filer + + + Key files + Nyckelfiler + + + Select key file + Välj nyckelfil + + + Comma Separated Values + Kommaseparerade värden + + + 1Password Export + 1Password-export + + + Bitwarden JSON Export + Bitwarden JSON-export + + + 1Password Vault + 1Password-valv + + + KeePass1 Database + KeePass 1-databas + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON-export + + + Temporary Database + Temporär databas + + + Command: + Kommando: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + t.ex.: "sftp user@hostname" eller "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Indata: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + t.ex.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} används som platshållare för att lagra databasen på en tillfällig plats +Kommandot måste avslutas. Om "sftp" är sista kommentar måste "exit" sändas + + + + Remote Database (.kdbx) + Fjärrdatabas (.kdbx) + + KMessageWidget @@ -4180,11 +4891,11 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid header field length: field %1 - + Ogiltig storlek på sidhuvudets fältlängd: Fält %1 Invalid header data length: field %1, %2 expected, %3 found - + Ogiltig rubrikdatalängd: fältet %1, %2 förväntat, %3 hittades @@ -4229,7 +4940,7 @@ Om detta upprepas, kan din databasfil vara skadad. (HMAC mismatch) - (HMAC matchningsfel) + (HMAC-matchningsfel) Unknown cipher @@ -4241,11 +4952,11 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid header field length: field %1 - + Ogiltig storlek på sidhuvudets fältlängd: Fält %1 Invalid header data length: field %1, %2 expected, %3 found - + Ogiltig rubrikdatalängd: fältet %1, %2 förväntat, %3 hittades Failed to open buffer for KDF parameters in header @@ -4265,11 +4976,11 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid inner header field length: field %1 - + Ogiltig längd på inre sidhuvudfält: Fält %1 Invalid inner header data length: field %1, %2 expected, %3 found - + Ogiltig datalängd för inre rubrik: fält %1, %2 förväntat, %3 hittades Invalid inner header binary size @@ -4283,57 +4994,57 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid variant map entry name length Translation: variant map = data structure for storing meta data - + Ogiltig inmatningsnamnslängd för variantkarta Invalid variant map entry name data Translation: variant map = data structure for storing meta data - + Ogiltig inmatningsnamnsdata för variantkarta Invalid variant map entry value length Translation: variant map = data structure for storing meta data - + Ogiltig inmatningsvärdeslängd för variantkarta Invalid variant map entry value data Translation comment: variant map = data structure for storing meta data - + Ogiltig inmatningsvärdesdata för variantkarta Invalid variant map Bool entry value length Translation: variant map = data structure for storing meta data - + Ogiltig Bool-inmatningsvärdeslängd för variantkarta Invalid variant map Int32 entry value length Translation: variant map = data structure for storing meta data - + Ogiltig Int32-inmatningsvärdeslängd för variantkarta Invalid variant map UInt32 entry value length Translation: variant map = data structure for storing meta data - + Ogiltig UInt32-inmatningsvärdeslängd för variantkarta Invalid variant map Int64 entry value length Translation: variant map = data structure for storing meta data - + Ogiltig Int64-inmatningsvärdeslängd för variantkarta Invalid variant map UInt64 entry value length Translation: variant map = data structure for storing meta data - + Ogiltig UInt64-inmatningsvärdeslängd för variantkarta Invalid variant map entry type Translation: variant map = data structure for storing meta data - + Ogiltig inmatningstyp för variantkarta Invalid variant map field type size Translation: variant map = data structure for storing meta data - + Ogiltig fälttypstorlek för variantkarta @@ -4373,7 +5084,7 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid compression flags length - + Ogiltig längd på komprimeringsflaggor Unsupported compression algorithm @@ -4393,15 +5104,15 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid start bytes size - + Ogiltig startbytestorlek Invalid random stream id size - + Ogiltig storlek på slumpmässig ström-id Invalid inner random stream cipher - + Ogiltigt inre slumpmässigt strömchiffer Failed to read database file. @@ -4573,17 +5284,6 @@ Rad %2, kolumn: %3 Kunde inte öppna privat nyckel - - KeePass1OpenWidget - - Import KeePass1 Database - Importera KeePass1-databas - - - Unable to open the database. - Kan inte öppna databasen. - - KeePass1Reader @@ -4655,7 +5355,7 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid group field type number - + Ogiltigt fältstypnummer för grupp Invalid group field size @@ -4663,27 +5363,27 @@ Om detta upprepas, kan din databasfil vara skadad. Read group field data doesn't match size - + Inläst fältdata för grupp stämmer inte med storleken Incorrect group id field size - + Felaktig fältstorlek för grupp-id Incorrect group creation time field size - + Felaktig fältstorlek för gruppskapandetid Incorrect group modification time field size - + Felaktig fältstorlek för gruppändringstid Incorrect group access time field size - + Felaktig fältstorlek för gruppåtkomsttid Incorrect group expiry time field size - + Felaktig fältstorlek för grupputgångstid Incorrect group icon field size @@ -4703,7 +5403,7 @@ Om detta upprepas, kan din databasfil vara skadad. Missing entry field type number - + Typnummer för inmatningsfält saknas Invalid entry field size @@ -4715,7 +5415,7 @@ Om detta upprepas, kan din databasfil vara skadad. Invalid entry UUID field size - + Ogiltig fältstorlek för inmatnings-UUID Invalid entry group id field size @@ -4940,10 +5640,6 @@ Vill du verkligen fortsätta med den här filen? &Recent Databases &Tidigare databaser - - &Import - &Importera - &Export &Exportera @@ -4964,6 +5660,10 @@ Vill du verkligen fortsätta med den här filen? TOTP TOTP + + Tags + Taggar + &Groups &Grupper @@ -5008,34 +5708,18 @@ Vill du verkligen fortsätta med den här filen? &New Database… &Ny databas... - - Create a new database - Skapa en ny databas - &Merge From Database… S&lå samman från databas... - - Merge from another KDBX database - Infoga från annan KDBX-databas - &New Entry… &Ny post... - - Add a new entry - Lägg till en ny post - &Edit Entry… &Redigera post... - - View or edit entry - Visa eller redigera posten - &Delete Entry… &Ta bort post... @@ -5044,10 +5728,6 @@ Vill du verkligen fortsätta med den här filen? &New Group… &Ny grupp... - - Add a new group - Lägg till en ny grupp - &Edit Group… &Redigera grupp... @@ -5080,18 +5760,10 @@ Vill du verkligen fortsätta med den här filen? Database &Reports… Databas&rapporter… - - Statistics, health check, etc. - Statistik, hälsokontroll, etc. - &Database Settings… &Databasinställningar... - - Database settings - Databasinställningar - &Clone Entry… &Klona post... @@ -5100,34 +5772,18 @@ Vill du verkligen fortsätta med den här filen? Move u&p Flytta u&pp - - Move entry one step up - Flytta upp posten ett steg - Move do&wn Flytta &ner - - Move entry one step down - Flytta ner posten ett steg - Copy &Username Kopiera an&vändarnamn - - Copy username to clipboard - Kopiera användarnamn till urklipp - Copy &Password Kopiera &lösenord - - Copy password to clipboard - Kopiera lösenord till urklipp - &Settings &Inställningar @@ -5161,25 +5817,13 @@ Vill du verkligen fortsätta med den här filen? &Titel - Copy title to clipboard - Kopiera titel till urklipp - - - &URL - &URL - - - Copy URL to clipboard - Kopiera URL till urklipp + Copy &URL + Kopiera &URL &Notes &Anteckningar - - Copy notes to clipboard - Kopiera anteckningar till urklipp - &CSV File… &CSV-fil... @@ -5192,26 +5836,14 @@ Vill du verkligen fortsätta med den här filen? KeePass 1 Database… KeePass 1-databas… - - Import a KeePass 1 database - Importera en KeePass1-databas - 1Password Vault… 1Password Vault… - - Import a 1Password Vault - Importera ett 1Password-valv - CSV File… CSV-file… - - Import a CSV file - Importera en CSV-fil - Show TOTP Visa TOTP @@ -5228,6 +5860,10 @@ Vill du verkligen fortsätta med den här filen? Copy &TOTP Kopiera &TOTP + + Copy Password and TOTP + Kopiera lösenord och TOTP + E&mpty recycle bin T&öm papperskorg @@ -5252,10 +5888,6 @@ Vill du verkligen fortsätta med den här filen? &Online Help &Online-hjälp - - Go to online documentation - Gå till online-dokumentationen - &User Guide &Användarmanual @@ -5300,6 +5932,10 @@ Vill du verkligen fortsätta med den här filen? Classic (Platform-native) Klassisk (Platfformsintegration) + + Show Menubar + Visa menyfält + Show Toolbar Visa verktygsfält @@ -5324,6 +5960,10 @@ Vill du verkligen fortsätta med den här filen? Clone Group... Klona grupp… + + &XML File… + &XML-fil... + Clear history Rensa historiken @@ -5351,10 +5991,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - VARNING! Din Qt-version kan orsaka att KeePassXC kraschar med ett skärmtangentbord. -Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssida. + No Tags + Inga taggar Restore Entry(s) @@ -5384,6 +6022,10 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Quit KeePassXC Avsluta KeePassXC + + %1 Entry(s) + %1 post%1 poster + Please present or touch your YubiKey to continue… Presentera eller rör vid din YubiKey för att fortsätta... @@ -5396,6 +6038,314 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi You must restart the application to apply this setting. Would you like to restart now? Du måste starta om programmet för att tillämpa den här inställningen. Vill du starta om nu? + + Allow Screen Capture + Tillåt skärmklipp + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Importera en 1Password 1PUX-fil + + + Import… + Importera... + + + Passkeys… + Passnycklar... + + + Import Passkey + Importera passnyckel + + + Remote S&ync… + Fjärrs&ynkronisering... + + + Quit Application + Avsluta programmet + + + Open About Dialog + Öppna Om-sidan + + + Open Database + Öppna databas + + + Create Database + Skapa databas + + + Merge From Database + Infoga från databas + + + Create Entry + Skapa post + + + Edit Entry + Redigera post + + + Delete Entry + Ta bort post + + + Create Group + Skapa grupp + + + Edit Group + Redigera grupp + + + Delete Group + Ta bort grupp + + + Download All Favicons + Ladda ner alla favikoner + + + Sort Groups A-Z + Sortera grupper A-Z + + + Sort Groups Z-A + Sortera grupper Z-A + + + Save Database As + Spara databas som + + + Show Database Security + Visa databassäkerhet + + + Show Database Reports + Visa databasrapporter + + + Show Database Settings + Visa databasinställningar + + + Show Passkeys + Visa passnycklar + + + Clone Entry + Klona post + + + Move Entry Up + Flytta upp post + + + Move Entry Down + Flytta ner post + + + Copy Username + Kopiera användarnamn + + + Copy Password + Kopiera lösenord + + + Show Application Settings + Visa programinställningar + + + Show Password Generator + Visa lösenordsgenerator + + + Remove Passkey From Entry + Ta bort passnyckeln från posten + + + Perform Auto-Type: {USERNAME} + Utför autoskriv: {ANVÄNDARNAMN} + + + Perform Auto-Type: {USERNAME}{ENTER} + Utför autoskriv: {ANVÄNDARNAMN}{RETUR} + + + Perform Auto-Type: {PASSWORD} + Utför autoskriv: {LÖSENORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Utför autoskriv: {LÖSENORD}{RETUR} + + + Perform Auto-Type: {TOTP} + Utför autoskriv: {TOTP} + + + Copy Title + Kopiera titel + + + Copy URL + Kopiera URL + + + Copy Notes + Kopiera anteckningar + + + Export to CSV + Exportera till CSV + + + Export to HTML + Exportera till HTML + + + Import KeePass1 Database + Importera KeePass1-databas + + + Import 1Password Vault + Importera ett 1Password-valv + + + Import CSV File + Importera en CSV-fil + + + Show TOTP QR Code + Visa TOTP QR-kod + + + Set up TOTP + Konfigurera TOTP + + + Empty Recycle Bin + Töm papperskorgen + + + Open Donation Website + Öppna donationssidan + + + Open Bug Report + Öppna felrapport + + + Open Online Documentation + Öppna online-dokumentation + + + Open Keyboard Shortcuts Guide + Öppna guiden för tangentbordgenvägar + + + Save Database Backup + Spara säkerhetskopia av databasen + + + SSH Agent: Add Key + SSH Agent: Lägg till nyckel + + + SSH Agent: Remove Key + SSH Agent: Ta bort nyckel + + + Toggle Compact Mode + Kompaktläge PÅ/AV + + + Set Theme: Automatic + Ange tema: Automatiskt + + + Set Theme: Light + Ange tema: Ljust + + + Set Theme: Dark + Ange tema: Mörkt + + + Set Theme: Classic + Ange tema: Klassiskt + + + Toggle Show Menubar + Menyfält på/av + + + Toggle Show Toolbar + Visa/Dölj verktygsfält + + + Toggle Show Preview Panel + Visa/Dölj förhandsgranskningspanel + + + Toggle Always on Top + Alltid överst PÅ/AV + + + Toggle Hide Usernames + Visa/Dölj användarnamn + + + Toggle Hide Passwords + Visa/Dölj lösenord + + + Export to XML + Exportera till XML + + + Toggle Allow Screen Capture + Tillåt/Neka skärmklipp + + + Show Group Panel + Visa gruppanel + + + Toggle Show Group Panel + Visa/Dölj gruppanel + + + Setup Remote Sync… + Ställ in fjärrsynkronisering... + + + Password Generator + Lösenordsgenerator + + + E&xpire Entry… + Post &utgår... + + + Clear SSH Agent + Rensa SSH-agent + + + Clear all identities in ssh-agent + Ta bort alla identiteter i SSH-agenten + ManageDatabase @@ -5453,26 +6403,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Overwriting %1 [%2] Skriver över %1[%2] - - older entry merged from database "%1" - äldre post infogad från databas "%1" - - - Adding backup for older target %1 [%2] - Lägger till säkerhetskopia från äldre mål %1 [%2] - - - Adding backup for older source %1 [%2] - Lägger till säkerhetskopia från äldre källa %1 [%2] - - - Reapplying older target entry on top of newer source %1 [%2] - Återanvänder äldre målpost ovanpå nyare källa %1 [%2] - - - Reapplying older source entry on top of newer target %1 [%2] - Återanvänder äldre källpost ovanpå nyare mål %1 [%2] - Synchronizing from newer source %1 [%2] Synkroniserar från nyare källa %1 [%2] @@ -5532,14 +6462,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. Här kan du justera inställningarna för databaskrypteringen. Oroa dig inte, du kan ändra dem senare, i databasinställningarna. - - Advanced Settings - Avancerade inställningar - - - Simple Settings - Förenklade inställningar - NewDatabaseWizardPageDatabaseKey @@ -5574,6 +6496,25 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Fyll i visningsnamnet och en frivillig beskrivning för din nya databas: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Bilagans namn kan inte vara tomt + + + Attachment with the same name already exists + Det finns redan en bilaga med samma namn + + + Save attachment + Spara bifogad fil + + + New entry attachment + Ny postbilaga + + NixUtils @@ -5620,15 +6561,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Förväntade %1 byte klartext, hittade %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Läsning av databas producerade inte någon instans -%1 - - OpVaultReader @@ -5702,6 +6634,10 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Unknown cipher: %1 Okänt chiffer: %1 + + AES-256/GCM is currently not supported + AES-256/GCM stöds för närvarande inte + Passphrase is required to decrypt this key Lösenordsfras krävs för att avkryptera denna nyckel @@ -5766,28 +6702,184 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Unexpected EOF when writing private key Oväntad EOF, vid skrivning av privat nyckel + + (encrypted) + (krypterad) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Lösenorden stämmer inte överens + SSH Key Generator + SSH-nyckelgenerator - Passwords match so far - Lösenorden stämmer så långt + Type + Typ - Toggle Password (%1) - Växla lösenord (%1) + Bits + Bitar - Generate Password (%1) - Generera lösenord (%1) + Comment + Kommentar + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Passnyckelexport - Warning: Caps Lock enabled! - Varning! Caps Lock aktiverat! + Filenames will be generated with title and .passkey file extension. + Filnamn genereras med namn och .passkey som filnamnstillägg. + + + Export entries + Exportera poster + + + Export Selected + Exportera markerade + + + Cancel + Avbryt + + + Export to folder + Exportera till mapp + + + Export the following passkey entries. + Exportera följande passnyckelposter. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Passnyckelexport + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Filen "%1.passkey" finns redan. +Vill du skriva över den? + + + + Cannot open file + Kan inte öppna fil + + + Cannot open file "%1" for writing. + Kan inte öppna filen "%1" för skrivning. + + + Cannot write to file + Kan inte skriva till fil + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Passnyckelimport + + + Username: %1 + Användarnamn: %1 + + + Group + Grupp + + + Database + Databas + + + Import Passkey + Importera passnyckel + + + Import + Importera + + + Cancel + Avbryt + + + Entry + Post + + + Create new entry + Skapa ny post + + + Relying Party: %1 + Förlitande part: %1 + + + Import the following passkey: + Importera följande passnyckel: + + + Import the following passkey to this entry: + Importera följande passnyckel till denna post: + + + Default passkeys group (Imported Passkeys) + Ordinarie passnyckelgrupp (Importerade passnycklar) + + + + PasskeyImporter + + Passkey file + Passnyckelfil + + + All files + Alla filer + + + Cannot open file + Kan inte öppna fil + + + Cannot open file "%1" for reading. + Kan inte öppna filen "%1" för läsning. + + + Open passkey file + Öppna passnyckelfil + + + Cannot import passkey + Kan inte importera passnyckel + + + Cannot import passkey file "%1". Data is missing. + Kan inte importera passnyckelfil "%1". Data saknas. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Kan inte importera passnyckelfil "%1". +Följande data saknas: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Kan inte importera passnyckelfil "%1". Privat nyckel saknas eller är felaktig. @@ -5968,10 +7060,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Also choose from: Välj också från: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Undanta tecknen: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Undanta tecken som liknar varandra @@ -5996,10 +7084,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Word Count: Antal ord: - - Character Count: - Antal tecken: - Word Case: Skiftläge: @@ -6012,10 +7096,6 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Add custom wordlist Lägg till anpassad ordlista - - character - tecken - Close Stäng @@ -6052,6 +7132,30 @@ Vi rekommenderar att du använder den AppImage som finns på vår nerladdningssi Entropy: %1 bit Entropi: %1 bitar + + Password Quality: %1 + Lösenordskvalitet: %1 + + + Poor + Password quality + Dålig + + + Weak + Password quality + Svag + + + Good + Password quality + Bra + + + Excellent + Password quality + Utmärkt + Confirm Delete Wordlist Bekräfta borttagning av ordlista @@ -6099,8 +7203,47 @@ Vill du skriva över den? Specialtecken - Password Quality: %1 - Lösenordskvalitet: %1 + passwordLength + Lösenordslängd + + + Characters: %1 + Tecken: %1 + + + MIXED case + BLANDAT fall + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Undantagna tecken: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Lösenorden stämmer inte överens + + + Passwords match so far + Lösenorden stämmer så långt + + + Toggle Password (%1) + Växla lösenord (%1) + + + Generate Password (%1) + Generera lösenord (%1) + + + Warning: Caps Lock enabled! + Varning! Caps Lock aktiverat! + + + Quality: %1 + Kvalitet: %1 Poor @@ -6122,6 +7265,10 @@ Vill du skriva över den? Password quality Utmärkt + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Visa/Dölj lösenord med Ctrl+H. Öppna lösenordsgeneratorn med Ctrl+G. + PickcharsDialog @@ -6138,6 +7285,21 @@ Vill du skriva över den? Tryck &TAB mellen tecken + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Förhandsgranska postbilaga + + + No preview available + Ingen förhandsgranskning tillgänglig + + + Image format not supported + Bildformatet stöds inte + + QMessageBox @@ -6176,6 +7338,10 @@ Vill du skriva över den? Continue Fortsätt + + Continue with weak password + Fortsätt med svagt lösenord + QObject @@ -6569,6 +7735,10 @@ Vill du skriva över den? Too many arguments provided. För många argument. + + Path of the database. + Sökväg till databasen. + Target decryption time in MS for the database. Målets avkrypteringstid i ms för databasen. @@ -6589,10 +7759,6 @@ Vill du skriva över den? Create a new database. Skapa en ny databas. - - Path of the database. - Sökväg till databasen. - Invalid decryption time %1. Ogiltig avkrypteringstid %1. @@ -6637,6 +7803,158 @@ Vill du skriva över den? Successfully created new database. Ny databas skapad. + + Unset the password for the database. + Ta bort lösenordet för databasen. + + + Unset the key file for the database. + Ta bort nyckelfilen för databasen. + + + Edit a database. + Redigera en databas. + + + Cannot use %1 and %2 at the same time. + Kan inte använda %1 och %2 på samma gång. + + + Could not change the database key. + Kunde inte ändra databasnyckeln. + + + Database was not modified. + Databasen är inte ändrad. + + + Writing the database failed: %1 + Kunde inte skriva databas: %1 + + + Successfully edited the database. + Databasen redigerades korrekt. + + + Cannot remove password: The database does not have a password. + Kan inte ta bort lösenordet. Databasen har inget lösenord. + + + Cannot remove file key: The database does not have a file key. + Kan inte ta bort nyckelfilen. Databasen har ingen nyckelfil. + + + Loading the new key file failed: %1 + Inläsning av den nya nyckeln misslyckades: %1 + + + Found unexpected Key type %1 + Identifierade oväntad nyckeltyp %1 + + + Cannot remove all the keys from a database. + Kan inte ta bort alla nycklarna från en databas. + + + Show a database's information. + Visa en databas information. + + + UUID: + UUID: + + + Name: + Namn: + + + Description: + Beskrivning: + + + Cipher: + Chiffer: + + + KDF: + KDF: + + + Recycle bin is enabled. + Papperskorgen är aktiverad. + + + Recycle bin is not enabled. + Papperskorgen är inte aktiverad. + + + Location + Plats + + + Database created + Databas skapad + + + Last saved + Senast sparad + + + Unsaved changes + Osparade ändringar + + + yes + Ja + + + no + Nej + + + Number of groups + Antal grupper + + + Number of entries + Antal poster + + + Number of expired entries + Antal förfallna poster + + + Unique passwords + Unika lösenord + + + Non-unique passwords + Icke unika lösenord + + + Maximum password reuse + Max antal återanvända lösenord + + + Number of short passwords + Antal korta lösenord + + + Number of weak passwords + Antal svaga lösenord + + + Entries excluded from reports + Poster undantagna från rapporter + + + Average password length + Genomsnittlig lösenordslängd + + + %1 characters + %1 tecken + Word count for the diceware passphrase. Antal ord för lösenordsfrasen. @@ -6660,10 +7978,6 @@ Vill du skriva över den? Invalid word count %1 Ogiltigt antal ord %1 - - The word list is too small (< 1000 items) - Ordlistan är för liten (<1000 objekt) - Title for the entry. Titel för posten. @@ -6688,10 +8002,6 @@ Vill du skriva över den? Enter new password for entry: Ange nytt lösenord för posten: - - Writing the database failed: %1 - Kunde inte skriva databas: %1 - Successfully edited entry %1. Redigerade posten %1. @@ -6812,10 +8122,6 @@ Vill du skriva över den? Exit interactive mode. Avsluta interaktivt läge. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Format att använda vid export. Tillgängliga alternativ är "xml" eller "csv". Standardvärdet är "xml". - Exports the content of a database to standard output in the specified format. Exporterar innehållet i en databas till standardutdata i angivet format. @@ -6916,106 +8222,6 @@ Vill du skriva över den? Successfully imported database. Databas importera. - - Show a database's information. - Visa en databas information. - - - UUID: - UUID: - - - Name: - Namn: - - - Description: - Beskrivning: - - - Cipher: - Chiffer: - - - KDF: - KDF: - - - Recycle bin is enabled. - Papperskorgen är aktiverad. - - - Recycle bin is not enabled. - Papperskorgen är inte aktiverad. - - - Location - Plats - - - Database created - Databas skapad - - - Last saved - Senast sparad - - - Unsaved changes - Osparade ändringar - - - yes - Ja - - - no - Nej - - - Number of groups - Antal grupper - - - Number of entries - Antal poster - - - Number of expired entries - Antal förfallna poster - - - Unique passwords - Unika lösenord - - - Non-unique passwords - Icke unika lösenord - - - Maximum password reuse - Max antal återanvända lösenord - - - Number of short passwords - Antal korta lösenord - - - Number of weak passwords - Antal svaga lösenord - - - Entries excluded from reports - Poster undantagna från rapporter - - - Average password length - Genomsnittlig lösenordslängd - - - %1 characters - %1 tecken - Unknown command %1 Okänt kommando %1 @@ -7188,6 +8394,10 @@ Tillgängliga kommandon: Show the protected attributes in clear text. Visa de skyddade attributen i klartext. + + Show all the attributes of the entry. + Visa alla attribut för posten. + Show the attachments of the entry. Visa bilagor i posten. @@ -7258,6 +8468,10 @@ inte kommer att stödja i framtiden. Invalid YubiKey serial %1 Ogiltigt YubiKey serienummer %1 + + Please present or touch your YubiKey to continue. + Anslut eller tryck på din YubiKey för att fortsätta. + Enter password to encrypt database (optional): Ange lösenord för att avkryptera databasen (valfritt): @@ -7445,8 +8659,8 @@ Kärna: %3 %4 %1 minut%1 minuter - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan-biblioteket måste vara lägst 2.11.x, hittade %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan-biblioteket måste vara lägst %1, hittade %2.%3.%4 Cryptographic libraries: @@ -7496,18 +8710,6 @@ Kärna: %3 %4 file empty filen är tom - - malformed string - felaktigt uppbyggd sträng - - - missing closing quote - saknar avslutande citationstecken - - - %1: (row, col) %2,%3 - %1: (rad, kolumn) %2,%3 - AES 256-bit AES 256-bit @@ -7686,14 +8888,6 @@ Kärna: %3 %4 read password of the database from stdin hämta databaslösenordet från stdin - - allow app screen recordering and screenshots - Tillåt programskärminspelning och skärmbilder - - - Locked databases. - Låste databaser. - Database failed to lock. Databas kunde inte låsas. @@ -7702,6 +8896,10 @@ Kärna: %3 %4 Another instance of KeePassXC is already running. En annan instans av KeePassXC körs redan. + + KeePassXC is not running. No open database to lock + KeePassXC körs inte. Det finns ingen öppen databas att låsa. + Fatal error while testing the cryptographic functions. Allvarligt fel vid test av kryptografiska funktioner. @@ -7710,10 +8908,6 @@ Kärna: %3 %4 KeePassXC - Error KeePassXC - Fel - - Warning: Failed to prevent screenshots on a top level window! - Varning! Kunde inte förhindra skärmklipp i ett fönster på den översta nivån! - Database password: Databaslösenord: @@ -7737,8 +8931,312 @@ Kärna: %3 %4 Kunde inte signera challenge med Windows Hello - Please present or touch your YubiKey to continue. - Anslut eller tryck på din YubiKey för att fortsätta. + Warning: Failed to block screenshot capture on a top-level window. + Varning! Kunde inte blockera skärmklipp i ett fönster på översta nivån! + + + Invalid Cipher + Ogiltigt shiffer + + + Invalid KDF + Ogiltig KDF + + + Access to all entries is denied + Åtkomst till alla poster är nekad + + + allow screenshots and app recording (Windows/macOS) + tillåt skärmklipp och programinspelning (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Ange nyckelfil för databasen. +Det här alternativet är föråldrat, använd --set-key-file istället. + + + Databases have been locked. + Databaserna har låsts. + + + Attestation not supported + Attestering stöds inte + + + Credential is excluded + Autentiseringsuppgift undantas + + + Passkeys request canceled + Begäran om passnycklar avbruten + + + Invalid user verification + Ogiltig användarverifiering + + + Empty public key + Tom offentlig nyckel + + + Invalid URL provided + Ogiltig URL angiven + + + Passkeys + Passnycklar + + + AES initialization failed + AES-start misslyckades + + + AES encrypt failed + AES-kryptering misslyckades + + + Failed to store in Linux Keyring + Kunde inte lagra i Linux nyckelring + + + Polkit returned an error: %1 + Polkit returnerade ett fel: %1 + + + Could not locate key in keyring + Kunde inte hitta nyckel i nyckelring + + + Could not read key in keyring + Kunde inte läsa nyckel i nyckelring + + + AES decrypt failed + AES-avkryptering misslyckades + + + No Polkit authentication agent was available + Ingen Polkit autentiseringsagent är tillgänglig + + + Polkit authorization failed + Polkit-autentisering misslyckades + + + No Quick Unlock provider is available + Ingen Quick Unlock-leverantör är tillgänglig + + + Failed to init KeePassXC crypto. + Kunde inte starta KeePassXC-krypto. + + + Failed to encrypt key data. + Kunde inte kryptera nyckeldata. + + + Failed to get Windows Hello credential. + Kunde inte hämta Windows Hello inloggningsuppgifter. + + + Failed to decrypt key data. + Kunde inte avkryptera nyckeldata. + + + Origin is empty or not allowed + Ursprung är tomt eller inte tillåtet + + + Effective domain is not a valid domain + Effektiv domän är ingen giltig domän + + + Origin and RP ID do not match + Ursprung och RP-ID matchar inte + + + No supported algorithms were provided + Inga algoritmer som stöds tillhandahölls + + + Wait for timer to expire + Vänta tills tiduret löper ut + + + Challenge is shorter than required minimum length + Utmaningen är kortare än den minimilängd söm krävs + + + user.id does not match the required length + user.id matchar inte den längd som krävs + + + Favorite + Tag for favorite entries + Favorit + + + File does not exist. + Filen finns inte. + + + Cannot open file: %1 + Kan inte öppna filen: %1 + + + Cannot parse file: %1 at position %2 + Kan inte tolka filen: %1 på position %2 + + + Failed to decrypt json file: %1 + Kunde inte avkryptera json-fil: %1 + + + Invalid encKeyValidation field + Ogiltigt encKeyValidation-fält + + + Invalid cipher list within encKeyValidation field + Ogiltig chifferlista i encKeyValidation-fältet + + + Wrong password + Fel lösenord + + + Invalid encrypted data field + Ogiltigt krypterat datafält + + + Invalid cipher list within encrypted data field + Ogiltig chifferlista i krypterat datafält + + + Cannot initialize cipher + Kan inte initiera chiffer + + + Cannot decrypt data + Kan inte avkryptera data + + + Bitwarden Import + Bitwarden-import + + + Archived + Tag for archived entries + Arkiverat + + + Invalid 1PUX file format: Not a valid ZIP file. + Ogiltigt 1PUX-filformat: Inte en giltig ZIP-fil. + + + Invalid 1PUX file format: Missing export.data + Ogiltigt 1PUX-filformat: Exportdata saknas + + + 1Password Import + 1Password-import + + + Enter Shortcut + Ange genväg + + + Action + Åtgärd + + + Shortcuts + Genvägar + + + Unknown passkeys error + Okänt passnyckelfel + + + Invalid KDF iterations, cannot decrypt json file + Ogiltiga KDF-upprepningar, kan inte avkryptera json-filen. + + + Unsupported format, ensure your Bitwarden export is password-protected + Formatet stöds inte, tillse att din Bitwarden-export är lösenordsskyddad. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Endast PBKDF och Argon2 stöds, kan inte avkryptera json-filen. + + + Reset Shortcuts + Återställ genvägar + + + Double click an action to change its shortcut + Dubbelklicka på åtgärden för att ändra genväg + + + Filter... + Filter... + + + Shortcut Conflict + Genvägskonflikt + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Genväg %1 står i konflikt med "%2". Vill du skriva över genvägen?? + + + Cannot generate valid passphrases because the wordlist is too short + Kan inte generera giltiga lösenordsfraser för att ordlistan är för kort + + + Encrypted files are not supported. + Krypterade filer stöds inte. + + + Proton Pass Import + Proton Pass-import + + + Delete plugin data? + Vill du ta bort tilläggsdata? + + + Delete plugin data from Entry(s)? + Vill du ta bort insticksdata från post?Vill du ta bort insticksdata från poster? + + + Passkey + Passnyckel + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Format att använda vid export. Tillgängliga alternativ är "xml", "csv" eller "html". Standardvärdet är "xml". + + + start minimized to the system tray + starta minimerad i systemfältet + + + malformed string, possible unescaped delimiter + felaktig sträng, möjligen ej utkommenterad avgränsare + + + missing closing delimiter + saknar avslutande avgränsare + + + %1, row: %2, column: %3 + %1, rad: %2, kolumn: %3 + + + Tags + Taggar @@ -7775,20 +9273,39 @@ Kärna: %3 %4 Internt zlib-fel: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Kommandot "%1" slutfördes inte i tid. Processen dödades. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Det gick inte att ladda upp den sammanslagna databasen. Kommandot %1 slutfördes inte i tid. Processen dödades. + + + Invalid download parameters provided. + Ogiltiga nerladdningsparametrar har angetts. + + + Command `%1` failed to download database. + Kunde inte ladda ner databasen med kommandot "%1". + + + Invalid database pointer or upload parameters provided. + Ogiltiga databaspekare eller uppladdningsparametrar har angetts. + + + Command `%1` exited with status code: %2 + Kommandot "%1" avslutades med statuskod: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Det gick inte att ladda upp den sammanslagna databasen. Kommandot "%1" avslutades med statuskod: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Undanta utgångna poster från rapporten - - - Show only entries which have URL set - Visa endast poster med angiven URL - - - Show only entries which have browser settings in custom data - Visa endast poster med webbläsarinställningar i anpassad data - Double-click entries to edit. Dubbelklicka på poster för att redigera. @@ -7853,44 +9370,53 @@ Kärna: %3 %4 Exclude from reports Undanta från rapporter + + Expire Entry(s)… + Post utgår...Poster utgår... + + + Only show entries that have a URL + Visa endast poster som har en URL + + + Only show entries that have been explicitly allowed or denied + Visa endast poster som uttryckligen har tillåtits eller nekats + + + Show expired entries + Visa förfallna poster + + + (Expired) + (Förfallen) + + + Delete plugin data from Entry(s)… + Tar bort insticksdata från post…Tar bort insticksdata från poster… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Undanta utgångna poster från rapporten + Show expired entries + Visa förfallna poster - Also show entries that have been excluded from reports - Visa också poster som har undantagits från rapporter + (Expired) + (Förfallen) Hover over reason to show additional details. Double-click entries to edit. Håll muspekaren över anledning, för att visa fler detaljer. Dubbelklicka på posten för att redigera. - - Bad - Password quality - Usel - Bad — password must be changed Usel — Lösenordet måste ändras - - Poor - Password quality - Dålig - Poor — password should be changed Dålig — Lösenordet måste ändras - - Weak - Password quality - Svag - Weak — consider changing the password Svag — Överväg att ändra lösenordet @@ -7939,6 +9465,14 @@ Kärna: %3 %4 Exclude from reports Undanta från rapporter + + Expire Entry(s)… + Post utgår...Poster utgår... + + + Show entries that have been excluded from reports + Visa poster som har undantagits från rapporter + ReportsWidgetHibp @@ -8034,6 +9568,77 @@ Kärna: %3 %4 Exclude from reports Undanta från rapporter + + Expire Entry(s)… + Post utgår...Poster utgår... + + + + ReportsWidgetPasskeys + + Export + Exportera + + + Import + Importera + + + List of entry URLs + Lista över posters URL:er + + + Title + Titel + + + Path + Sökväg + + + Username + Användarnamn + + + URLs + URL:er + + + Edit Entry… + Redigera post… + + + Delete Entry(s)… + Ta bort post…Ta bort poster… + + + Relying Party + Förlitande part + + + Show expired entries + Visa förfallna poster + + + (Expired) + (Förfallen) + + + Export Confirmation + Exportbekräftelse + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Passnyckelfilen kommer att vara sårbar för stöld och obehörig användning om den lämnas oskyddad. Vill du verkligen fortsätta? + + + Please wait, list of entries with passkeys is being updated… + Vänta! Listan över poster med passnycklar uppdateras... + + + No entries with passkeys. + Det finns inga poster med passnycklar. + ReportsWidgetStatistics @@ -8208,6 +9813,14 @@ Kärna: %3 %4 No agent running, cannot list identities. Tjänsten körs inte, kan inte lista identiteter. + + Failed to remove all SSH identities from agent. + Kunde inte ta bort alla SSH-identiteter från agenten. + + + All SSH identities removed from agent. + Alla SSH-identiteter borttagna från agenten. + SearchHelpWidget @@ -8274,6 +9887,10 @@ Kärna: %3 %4 Search Help Sökhjälp + + Save Search + Spara sökning + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8348,33 +9965,10 @@ Kärna: %3 %4 Confirm when passwords are retrieved by clients Bekräfta när lösenord tas emot av klienter - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Denna inställning åsidosätter inte -inaktivering av papperskorgsmeddelanden</span></p></body></html> - - Confirm when clients request entry deletion Bekräfta när klienter begär borttagning av poster - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Detta förbättrar kompatibiliteten med vissa program -som söker efter lösenord utan att först låsa upp databasen.</p><p> -Men aktivering av detta kan också få klienten att krascha om databasen -inte kan låsas upp inom en viss tidsgräns (Vanligen 25s, men kan vara ett annar värde, angivet i programmet.)</p></body></html> - Prompt to unlock database before searching Begär att databasen låses upp före sökning @@ -8399,6 +9993,14 @@ inte kan låsas upp inom en viss tidsgräns (Vanligen 25s, men kan vara ett anna Save current changes to activate the plugin and enable editing of this section. Spara aktuella ändringar för att aktivera insticksmodulen och aktivera redigering av det här avsnittet. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Den här inställningen åsidosätter inte inaktivering av avisering från papperskorgen</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Detta förbättrar kompatibiliteten med vissa program som söker efter lösenord utan att först låsa upp databasen.</p><p>Men aktivering av detta kan också få klienten att krascha om databasen inte kan låsas upp inom en viss tidsgräns (Vanligen 25s, men kan vara ett annat värde, angivet i programmet.) </p></body></html> + SettingsWidgetKeeShare @@ -8507,8 +10109,12 @@ inte kan låsas upp inom en viss tidsgräns (Vanligen 25s, men kan vara ett anna TagModel - All - Alla + Clear Search + Rensa sökning + + + All Entries + Alla poster Expired @@ -8519,6 +10125,25 @@ inte kan låsas upp inom en viss tidsgräns (Vanligen 25s, men kan vara ett anna Svaga lösenord + + TagView + + Remove Search + Ta bort sökning + + + Remove Tag + Ta bort tagg + + + Confirm Remove Tag + Bekräfta borttagning av tagg + + + Remove tag "%1" from all entries in this database? + Vill di ta bort taggen "%1" från alla poster i databasen? + + TotpDialog @@ -8667,7 +10292,7 @@ Exempel: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - Du har den senastew versionen av KeePassXC + Du har den senaste versionen av KeePassXC @@ -8676,26 +10301,6 @@ Exempel: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database Börja spara dina lösenord säkert, i en KeePassXC-databas. - - Create new database - Skapa ny databas - - - Open existing database - Öppna befintlig databas - - - Import from KeePass 1 - Importera från KeePass 1 - - - Import from 1Password - Importera från 1Password - - - Import from CSV - Importera från CSV - Recent databases Tidigare databaser @@ -8708,6 +10313,18 @@ Exempel: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 Välkommen till KeePassXC %1 + + Create Database + Skapa databas + + + Open Database + Öppna databas + + + Import File + Importera fil + WinUtils @@ -8724,31 +10341,8 @@ Exempel: JBSWY3DPEHPK3PXP Kunde inte registrera systemövergripande genväg - - WindowsHello - - Failed to init KeePassXC crypto. - Kunde inte starta KeePassXC-krypto. - - - Failed to encrypt key data. - Kunde inte kryptera nyckeldata. - - - Failed to get Windows Hello credential. - Kunde inte hämta Windows Hello inloggningsuppgifter. - - - Failed to decrypt key data. - Kunde inte avkryptera nyckeldata. - - YubiKey - - %1 No interface, slot %2 - %1 Inget gränssnitt, plats %2 - General: Allmänt: @@ -8760,14 +10354,6 @@ Exempel: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Uppdatera hårdvaru-tokens - - - Refresh - Uppdatera - Hardware key slot selection Val av plats för hårdvarunyckel @@ -8800,10 +10386,6 @@ Exempel: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove Challenge-Response angiven, klicka för att ändra eller ta bort - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Om du äger en <a href="https://www.yubico.com/">YubiKey</a> eller en <a href="https://onlykey.io">OnlyKey</a>, kan du använda den för ytterligare säkerhet.</p><p>Nyckeln kräver att en av dess ianslutningsplatser programmeras som <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - Detecting hardware keys… Identifierar hårdvarunycklar... @@ -8812,28 +10394,25 @@ Exempel: JBSWY3DPEHPK3PXP No hardware keys detected Inga hårdvarunycklar identifierade - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Ogiltig plats specificerad - %2 + Refresh hardware keys + Uppdatera hårdvarunycklar + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Om du äger en <a href="https://www.yubico.com/">YubiKey</a> eller en <a href="https://onlykey.io">OnlyKey</a>, kan du använda den för ytterligare säkerhet.</p><p>Nyckeln kräver att en av dess anslutningsplatser programmeras som <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + Hardware keys found, but no slots are configured + Hårdvarunycklar hittades, men inga anslutningsplatser är konfigurerade. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] Challenge-Response - Plats %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC-gränssnittet har inte startats. - - Hardware key is currently in use. - Hårdvarunyckel används för närvarande. - Could not find or access hardware key with serial number %1. Please present it to continue. Kunde inte hitta eller komma åt hårdvarunyckeln med serienummer %1. Var snäll och anslut den för att fortsätta. @@ -8850,6 +10429,21 @@ Exempel: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 Det gick inte att slutföra en challenge-response, PCSC-felkoden var: %1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Kortplats %3, %4 + + + Press + USB Challenge-Response Key interaction request + Tryck + + + Passive + USB Challenge-Response Key no interaction required + Passiv + YubiKeyInterfaceUSB @@ -8857,14 +10451,6 @@ Exempel: JBSWY3DPEHPK3PXP Unknown Okänd - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] Konfigurerad plats - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] Challenge-Response - Plats %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8879,10 +10465,6 @@ Exempel: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB-gränssnittet har inte startats. - - Hardware key is currently in use. - Hårdvarunyckel används för närvarande. - Could not find hardware key with serial number %1. Please plug it in to continue. Kunde hitta hårdvarunyckel med serienummer %1. Anslut den för att fortsätta. @@ -8899,5 +10481,15 @@ Exempel: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 Kunde inte slutföra en challenge-response, det specifika felet var: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Kortplats %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Kortplats %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_th.ts b/share/translations/keepassxc_th.ts index f142dda43..9d97be0a9 100644 --- a/share/translations/keepassxc_th.ts +++ b/share/translations/keepassxc_th.ts @@ -80,6 +80,10 @@ Details รายละเอียด + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + การตัดสินใจของคุณจะถูกจำเอาไว้ในระหว่างที่ไคลเอนต์ที่ร้องขอ และ KeePassXC ทั้งคู่กำลังทำงานอยู่ + Remember จำ @@ -88,17 +92,13 @@ Allow Selected อนุญาตสำหรับที่เลือก - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - - Deny All && Future - + ปฏิเสธทั้งหมด && อนาคต Allow All && &Future - + อนุญาตทั้งหมด && &อนาคต @@ -122,6 +122,10 @@ Use OpenSSH ใช้ OpenSSH + + Use both agents + ใช้ทั้งสองตัวเลือก + SSH_AUTH_SOCK override แทนที่ SSH_AUTH_SOCK @@ -140,7 +144,7 @@ SSH_SK_PROVIDER override - แทนที่ SSH_SK_PROVIDER  + แทนที่ SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. @@ -150,10 +154,6 @@ SSH Agent connection is working! การเชื่อมต่อ SSH Agent ใช้งานได้! - - Use both agents - - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security ความปลอดภัย + + This setting cannot be enabled when minimize on unlock is enabled. + ไม่สามารถเปิดใช้การตั้งค่านี้เมื่อเปิดใช้การย่อขนาดเมื่อปลดล็อก + Access error for config file %1 มีข้อผิดพลาดในการเข้าถึงแฟ้มตั้งค่า %1 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? คุณจะต้องเริ่มแอปใหม่เพื่อตั้งภาษาใหม่ คุณต้องการจะเริ่มแอปใหม่ตอนนี้หรือไม่? - - Reset Settings? - ล้างการตั้งค่าหรือไม่? - - - Are you sure you want to reset all general and security settings to default? - คุณแน่ใจหรือไม่ว่าต้องการคืนค่าทั่วไปและค่าความปลอดภัยสู่ค่าเริ่มต้น - Select backup storage directory เลือกไดเรกทอรีจัดเก็บข้อมูลสำรอง + + Confirm Reset + ยืนยันการล้างค่า + + + Are you sure you want to reset all settings to default? + คุณแน่ใจหรือไม่ที่จะล้างการตั้งค่าทั้งหมดไปเป็นค่าปริยาย? + + + Import KeePassXC Settings + นำเข้าการตั้งค่า KeePassXC + + + Failed to import settings from %1, not a valid settings file. + + + + Export KeePassXC Settings + ส่งออกการตั้งค่า KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom + + ApplicationSettingsWidgetGeneral @@ -234,7 +270,7 @@ Startup - เริ่มต้น + เริ่มระบบ Start only a single instance of KeePassXC @@ -246,7 +282,7 @@ Minimize window at application startup - ย่อหน้าต่างเล็กสุดตอนเริ่มแอป + ย่อหน้าต่างลงเล็กสุดตอนเริ่มโปรแกรม Minimize window after unlocking database @@ -256,6 +292,10 @@ Remember previously used databases จำฐานข้อมูลที่เคยใช้คราวก่อน ๆ + + recent files + แฟ้มล่าสุด + Load previously open databases on startup แสดงฐานข้อมูลที่เคยเปิดใช้ในตอนเริ่มโปรแกรม @@ -266,31 +306,12 @@ Check for updates at application startup once per week - ตรวจหาการปรับรุ่นสัปดาห์ละครั้งขณะเปิดแอป + ตรวจหาการปรับรุ่นสัปดาห์ละครั้งขณะเริ่มโปรแกรม Include beta releases when checking for updates ให้ตรวจหารุ่นทดสอบเบตาด้วย ขณะตรวจหาการปรับรุ่น - - On database unlock, show entries that - ในการปลดล็อกฐานข้อมูล ให้แสดงรายการที่ - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - วัน - - - will expire within - On database unlock, show entries that... - จะหมดอายุภายใน - File Management การจัดการแฟ้ม @@ -315,33 +336,21 @@ Backup database file before saving สำรองแฟ้มฐานข้อมูลก่อนการบันทึก - - Backup destination - ปลายทางข้อมูลสํารอง - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - ระบุตำแหน่งไฟล์สำรองฐานข้อมูล รายการของ "{DB_FILENAME}" จะถูกแทนที่ด้วยชื่อไฟล์ของฐานข้อมูลที่บันทึกไว้โดยไม่มีส่วนขยาย {TIME:<format>} จะถูกแทนที่ด้วยเวลาสำรอง โปรดดูที่ https://doc.qt.io/qt-5/qdatetime.html#toString <format> ค่าเริ่มต้นในการจัดรูปแบบสตริง "dd_MM_yyyy_hh-mm-ss" - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - เลือก... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) ใช้วิธีการบันทึกแบบอื่น (อาจแก้ปัญหากับ Dropbox, Google Drive, GVFS เป็นต้น) Temporary file moved into place - + แฟ้มชั่วคราวได้ย้ายไปอีกที่หนึ่ง Directly write to database file (dangerous) - เขียนลงไฟล์ฐานข้อมูลโดยตรง (อันตราย) + เขียนลงแฟ้มฐานข้อมูลโดยตรง (อันตราย) Entry Management @@ -408,6 +417,10 @@ Toolbar button style: รูปแบบปุ่มบนแถบเครื่องมือ: + + Show passwords in color + แสดงรหัสผ่านเป็นสี + Use monospaced font for notes ใช้ฟอนต์ความกว้างคงที่สำหรับบันทึก @@ -493,6 +506,71 @@ Remember last typed entry for: จำรายการที่พิมพ์ล่าสุดสำหรับ: + + On database unlock, show entries that will expire within + + + + On database unlock, show entries that will expire within + + + + days + number of days warning for password expiration + วัน + + + Destination format: + รูปแบบปลายทาง: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + + + + Choose folder... + เลือกโฟลเดอร์... + + + Show confirmation before moving entries to recycle bin + + + + Copy data on double clicking field in entry view + + + + Show toolbar + แสดงแถบเครื่องมือ + + + Show the menu bar by pressing the Alt key + + + + Show menubar + + + + Import settings… + นำเข้าการตั้งค่า... + + + Export settings… + ส่งออกการตั้งค่า... + + + Open browser on double clicking URL field in entry view + + + + Font size: + + + + Font size selection + + ApplicationSettingsWidgetSecurity @@ -502,7 +580,7 @@ Database lock timeout seconds - + จำนวนวินาทีก่อนจะหมดเวลาและล็อกฐานข้อมูล sec @@ -536,7 +614,7 @@ Enable database quick unlock (Touch ID / Windows Hello) - + เปิดใช้งานระบบการปลดล็อกฐานข้อมูลที่รวดเร็ว Lock databases when session is locked or lid is closed @@ -546,34 +624,18 @@ Lock databases after minimizing the window ล็อคฐานข้อมูลหลังย่อหน้าต่างลง - - Require password repeat when it is visible - ต้องใส่รหัสผ่านซ้ำเมื่อมองเห็นได้ - Hide passwords when editing them ซ่อนรหัสผ่านขณะที่แก้ไข Use placeholder for empty password fields - + ใช้ข้อความตัวอย่างในช่องรหัสผ่านที่ว่างไว้ Hide passwords in the entry preview panel ซ่อนรหัสผ่านในแผงแสดงตัวอย่างรายการ - - Hide entry notes by default - ซ่อนบันทึกรายการเป็นค่าตั้งต้น - - - Move entries to recycle bin without confirmation - ย้ายรายการไปยังถังขยะโดยไม่ต้องยืนยัน - - - Enable double click to copy the username/password entry columns - เปิดใช้งานดับเบิลคลิกเพื่อคัดลอกคอลัมน์ชื่อผู้ใช้/รหัสผ่าน - Privacy ความเป็นส่วนตัว @@ -582,16 +644,32 @@ Use DuckDuckGo service to download website icons ใช้บริการของ DuckDuckGo เพื่อดาวน์โหลดไอคอนของเว็บไซต์ + + Hide TOTP in the entry preview panel + + + + Lock databases when switching user + + + + Lock Options + + + + Hide notes in the entry preview panel + + AutoType The requested Auto-Type sequence cannot be used due to an error: - + การใช้งานการพิมพ์โดยอัตโนมัติ ไม่สามารถดำเนินการได้เนื่องจากมีข้อผิดพลาด Auto-Type Error - + การพิมพ์อัตโนมัติมีข้อผิดพลาด Permission Required @@ -599,48 +677,39 @@ KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - + KeePassXC ต้องการสิทธิ์การเข้าถึงเพื่อดำเนินการพิมพ์อัตโนมัติระดับเริ่มต้น หากคุณอนุญาตสิทธิ์การเข้าถึงอยู่แล้ว คุณอาจต้องรีสตาร์ท KeePassXC KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - + KeePassXC ต้องการสิทธิ์การเข้าถึงและตัวบันทึกหน้าจอเพื่อดำเนินการพิมพ์อัตโนมัติในส่วนกลาง การบันทึกหน้าจอจำเป็นต้องใช้ชื่อหน้าต่างเพื่อค้นหารายการ หากคุณอนุญาตสิทธิ์การเข้าถึงอยู่แล้ว คุณอาจต้องรีสตาร์ท KeePassXC Invalid entry provided - + ข้อมูลที่นำเข้าในระบบไม่ถูกต้อง Bracket imbalance detected, found extra { or } - + พบวงเล็บปีกกาที่ไม่ได้เปิดหรือปิด มี { หรือ } เกินมา Too many repetitions detected, max is %1: %2 - + ตรวจพบความซ้ำมากเกินไป มากสุด %1: %2 Very slow key press detected, max is %1: %2 - + ตรวจพบการกดปุ่มที่ช้ามาก สูงสุดคือ %1: %2 Very long delay detected, max is %1: %2 - + ตรวจพบความหน่วงที่ยาวมาก มากสุด 1%: 2% - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + รายการไม่มีแอตทริบิวต์สำหรับ PICKCHARS: %1 Invalid placeholder: %1 - + ข้อความตัวอย่างไม่ถูกต้อง: 1% @@ -683,20 +752,20 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + การใส่ข้อมูลตามลำดับถูกยกเลิก: ปุ่ม Caps Lock อยู่ระหว่างการเปิดใช้งาน Sequence aborted: Modifier keys held by user - + ลำดับถูกยกเลิก: คีย์ตัวแก้ไขที่ผู้ใช้ครอบครองอยู่ Unable to get valid keycode for key: + ไม่สามารถรับรหัสคีย์ที่ถูกต้องสำหรับคีย์: + + + Trying to send invalid keyboard symbol. @@ -708,7 +777,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - + ดับเบิลคลิกที่แถวเพื่อทำการพิมพ์อัตโนมัติหรือค้นหารายการโดยใช้การค้นหา: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -717,11 +786,22 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p> คุณสามารถ +ใช้ +ข้อความ +ค้นหา +ขั้นสูง +เพื่อ +ค้นหารายการใด ๆ ในฐานข้อมูลที่เปิดอยู่ของคุณ ทางลัดต่อไปนี้เป็นประโยชน์สำหรับคุณ: <br/> +Ctrl + F - สลับการค้นหาฐานข้อมูล <br/> +Ctrl +1 - พิมพ์ชื่อผู้ใช้ <br/> +Ctrl +2 - พิมพ์รหัสผ่าน <br/> +Ctrl +3 - พิมพ์ TOTP <br/> +Ctrl + 4 - ใช้แป้นพิมพ์เสมือน (Windows เท่านั้น) </p> Search all open databases - + ค้นหาจากฐานข้อมูลเปิดทั้งหมด Search… @@ -729,7 +809,7 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type Sequence - + พิมพ์ ลำดับ Cancel @@ -737,31 +817,31 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - + พิมพ์ [ชื่อผู้ใช้] Type {PASSWORD} - + พิมพ์ {รหัสผ่าน} Type {TOTP} - + พิมพ์ {รหัสผ่านแบบใช้ครั้งเดียวตามเวลา} Copy Username - + คัดลอก ชื่อผู้ใช้ Copy Password - + คัดลอก รหัสผ่าน Copy TOTP - + คัดลอก {รหัสผ่านแบบใช้ครั้งเดียวตามเวลา} Use Virtual Keyboard - + ใช้แป้นพิมพ์เสมือน @@ -798,13 +878,13 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Disable for this site ปิดใช้สำหรับไซต์เหล่านี้ + + Undo + เลิกทำ + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - เบราว์เซอร์ KeePassXC บันทึกข้อมูล - Ok โอเค @@ -818,13 +898,73 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Please select the correct database for saving credentials. คุณเปิดหลายฐานข้อมูล กรุณาเลือกฐานข้อมูลที่ถูกต้องเพื่อบันทึกข้อมูลของคุณ + + KeePassXC - Select Database + KeePassXC - เลือกฐานข้อมูล + + + + BrowserPasskeysConfirmationDialog + + Cancel + ยกเลิก + + + Update + ปรับปรุง + + + Authenticate + + + + Register new + ลงทะเบียนใหม่ + + + Register + ลงทะเบียน + + + Timeout in <b>%n</b> seconds... + หมดเวลาใน <b>%n</b> วินาที... + + + Relying Party: %1 + + + + Username: %1 + ชื่อผู้ใช้: %1 + + + KeePassXC - Passkey credentials + + + + Add to existing entry + + + + Existing passkey found. +Do you want to register a new passkey for: + + + + Select the existing passkey and press Update to replace it. + + + + Authenticate passkey credentials for: + + + + Do you want to register a passkey for: + + BrowserService - - KeePassXC: Create a new group - KeePassXC สร้างกลุ่มใหม่ - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -833,10 +973,6 @@ Do you want to create this group? คุณต้องการสร้างกลุ่มนี้หรือไม่? - - KeePassXC: New key association request - KeePassXC คำขอกุญแจที่เชื่อมโยงใหม่ - You have received an association request for the following database: %1 @@ -852,77 +988,76 @@ chrome-laptop Save and allow access บันทึกและอนุญาตให้เข้าถึง - - KeePassXC: Overwrite existing key? - KeePassXC เขียนทับกุญแจที่มีอยู่เดิม - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? กุญแจถอดรหัสลับที่ถูกแบ่งปันด้วยชื่อ "%1" มีอยู่ก่อนแล้ว คุณต้องการเขียนทับมันหรือไม่? - - KeePassXC: Update Entry - KeePassXC ปรับปรุงรายการ - Do you want to update the information in %1 - %2? - คุณต้องการปรับปรุงข้อมูลใน %1 - %2 หรือไม่? - - - KeePassXC: Delete entry - + คุณต้องการปรับปรุงข้อมูลใน %1 - %2 ให้ทันสมัยหรือไม่? A request for deleting entry "%1" has been received. Do you want to delete the entry? + ได้รับคำขอให้ลบรายการ "% 1" แล้ว +คุณต้องการลบรายการหรือไม่ + + + + %1 (Passkey) - Converting attributes to custom data… - กำลังแปลงคุณสมบัติต่างๆเป็นข้อมูลที่กำหนดเอง ... + KeePassXC - Create a new group + KeePassXC - สร้างกลุ่มใหม่ - Abort - หยุด + Disable + ปิดใช้ - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: แปลงคุณลักษณะของ KeePassHTTP + KeePassXC - Overwrite existing key? + - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - แปลงคุณสมบัติจาก %1 รายการสำเร็จ -ย้ายกุญแจ %2 ดอกไปยังข้อมูลที่กำหนดเอง - - - Successfully moved %n keys to custom data. - ย้ายกุญแจ %n ไปยังข้อมูลที่กำหนดเองได้สำเร็จ + KeePassXC - Update Entry + - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC ไม่พบรายการที่มีคุณสมบัติ KeePassHTTP + KeePassXC - Delete entry + - The active database does not contain an entry with KeePassHTTP attributes. - ฐานข้อมูลที่ยังใช้งานอยู่ไม่มีรายการตามคุณสมบัติ KeePassHTTP. + KeePassXC - New key association request + - Don't show this warning again - ไม่ต้องแสดงคำเตือนนี้อีก + Passkey + - KeePassXC: Legacy browser integration settings detected - KeePassXC ตรวจพบการตั้งค่าการรวมเบราว์เซอร์ดั้งเดิม + KeePassXC - Passkey credentials + - 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 ของคุณต้องถูกย้ายไปสู่การตั้งค่าฐานข้อมูล นี่จำเป็นต่อการรักษาการเชื่อมต่อเบราว์เซอร์ปัจจุบันของคุณ คุณต้องการย้ายการตั้งค่าที่มีอยู่แล้วตอนนี้หรือไม่ + Register a new passkey to this entry: + + + + KeePassXC - Update passkey + + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + + + + Register + ลงทะเบียน @@ -943,10 +1078,6 @@ Would you like to migrate your existing settings now? General ทั่วไป - - Browsers installed as snaps are currently not supported. - ยังไม่รองรับเบราว์เซอร์ที่ถูกติดตั้งจาก Snap - Enable integration for these browsers: เปิดการใช้เบราว์เซอร์เหล่านี้ร่วมกับ @@ -982,19 +1113,19 @@ Would you like to migrate your existing settings now? Show a notification when credentials are requested Credentials mean login data requested via browser extension - + แสดงการแจ้งเตือนเมื่อมีการร้องขอข้อมูลประจำตัว Request 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://example.com) - + จับคู่รูปแบบ URL (เช่น https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. @@ -1002,24 +1133,24 @@ Would you like to migrate your existing settings now? Return only best-matching credentials - + ส่งคืนข้อมูลประจำตัวที่ตรงกันมากที่สุดเท่านั้น Returns expired credentials. String [expired] is added to the title. - + ส่งคืนข้อมูลรับรองที่หมดอายุ เพิ่มสตริง [หมดอายุแล้ว] ในชื่อเรื่อง Allow returning expired credentials - + อนุญาตให้ส่งคืนข้อมูลประจำตัวที่หมดอายุแล้ว All databases connected to the extension will return matching credentials. - + ฐานข้อมูลทั้งหมดที่เชื่อมต่อกับส่วนขยายจะส่งคืนข้อมูลประจำตัวที่ตรงกัน Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - + ค้นหาในฐานข้อมูลที่เปิดอยู่ทั้งหมดสำหรับข้อมูลประจำตัวที่ตรงกัน Advanced @@ -1028,17 +1159,17 @@ Would you like to migrate your existing settings now? Never ask before accessing credentials Credentials mean login data requested via browser extension - + อย่าถามก่อนเข้าถึงข้อมูลประจำตัว Never ask before updating credentials Credentials mean login data requested via browser extension - + อย่าถามก่อนที่จะอัปเดตข้อมูลประจำตัว Do not ask permission for HTTP Basic Auth An extra HTTP Basic Auth setting - + ไม่ต้องขออนุญาต HTTP Basic Auth Automatically creating or updating string fields is not supported. @@ -1046,23 +1177,23 @@ Would you like to migrate your existing settings now? Return advanced string fields which start with "KPH: " - + ส่งคืนฟิลด์สตริงขั้นสูงที่ขึ้นต้นด้วย "KPH:" Don't display the popup suggesting migration of legacy KeePassHTTP settings. - + อย่าแสดงป๊อปอัพแนะนำการย้ายการตั้งค่า KeePassHTTP เดิม Do not prompt for KeePassHTTP settings migration. - + อย่าส่งคำสั่งขอย้ายการตั้งค่า KeePassHTTP Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - ปรับปรุงข้อมูล KeePassXC หรือเส้นทางของไบนารี keepassxc-proxy โดยอัตโนมัติไปยังการส่งข้อความฉบับดั้งเดิมเมื่อเริ่มต้น + ปรับปรุงข้อมูลเส้นทางไบนารีของ KeePassXC หรือ keepassxc-proxy ไปยังสคริปต์ native messaging โดยอัตโนมัติเมื่อเริ่มระบบ Update native messaging manifest files at startup - + อัปเดตไฟล์รายการส่งข้อความดั้งเดิมเมื่อเริ่มต้น Use a custom proxy location if you installed a proxy manually. @@ -1071,11 +1202,11 @@ Would you like to migrate your existing settings now? Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - + ใช้ตำแหน่งพร็อกซีที่กำหนดเอง: Custom proxy location field - + ฟิลด์ตำแหน่งพร็อกซีที่กำหนดเอง Browser for custom proxy file @@ -1104,7 +1235,7 @@ Would you like to migrate your existing settings now? Custom browser location field - + ฟิลด์ตำแหน่งเบราว์เซอร์ที่กำหนดเอง Browse for custom browser path @@ -1112,31 +1243,11 @@ Would you like to migrate your existing settings now? Custom extension ID: - + รหัสส่วนขยายที่กำหนดเอง: Custom extension ID - - - - 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 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - จำเป็นต้องมีโปรแกรม KeePassXC-Browser เพื่อให้การผสานกับเบราว์เซอร์ทำงานได้ <br />ดาวน์โหลดมันสำหรับ %1 และ %2 และ %3 %4 - - - Please see special instructions for browser extension use below - โปรดดูคำแนะนำพิเศษสำหรับการใช้งานส่วนขยายเบราว์เซอร์ด้านล่าง - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - - - - <b>Warning:</b> The following options can be dangerous! - <b> คำเตือน </b> ตัวเลือกต่อไปนี้อาจจะอันตราย + รหัสส่วนขยายที่กำหนดเอง Executable Files @@ -1152,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location + เลือกตำแหน่งโฟลเดอร์โฮสต์การส่งข้อความดั้งเดิม + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + + <b>Warning:</b> Only adjust these settings if necessary. + + + + The custom proxy location does not exist. + + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + + Allow using localhost with passkeys + + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. @@ -1159,7 +1310,7 @@ Would you like to migrate your existing settings now? CloneDialog Clone Entry Options - + ตัวเลือกรายการโคลน Append ' - Clone' to title @@ -1176,21 +1327,13 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - นำเข้าฟิลด์ CSV - - - filename - ชื่อแฟ้ม - size, rows, columns ขนาด, แถว, หลัก Column Association - + การรวมคอลัมน์ Password @@ -1292,50 +1435,42 @@ Would you like to migrate your existing settings now? Column %1 คอลัมน์ %1 - - Imported from CSV file - นำเข้าจากแฟ้ม CSV แล้ว - - - Original data: - ข้อมูลต้นฉบับ - - - Error(s) detected in CSV file! - พบข้อผิดพลาดในแฟ้ม CSV - [%n more message(s) skipped] [อีก %n ข้อความถูกข้าม] - Error - ผิดพลาด + Failed to parse CSV file: %1 + - CSV import: writer has errors: -%1 - นำเข้า CSV: ตัวเขียนมีข้อผิดพลาด: -%1 + Imported from CSV file: %1 + + + + No Title Selected + + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + + + + Tags + แท็ก CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1 %2 %3 - - - %n byte(s) - %n ไบท์ - %n row(s) + CSV row count %n แถว %n column(s) + CSV column count %n คอลัมน์ @@ -1368,7 +1503,7 @@ Would you like to migrate your existing settings now? Could not save, database has not been initialized! - + ไม่สามารถบันทึกข้อมูลได้ ฐานข้อมูลไม่ได้รับการเริ่ม Database file has unmerged changes. @@ -1382,12 +1517,20 @@ Backup database located at %2 Key not transformed. This is a bug, please report it to the developers. - + คีย์ไม่ได้ถูกแปลง นี่เป็นข้อผิดพลาด กรุณารายงานไปยังผู้พัฒนา Recycle Bin ถังขยะ + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog @@ -1410,42 +1553,13 @@ Backup database located at %2 Password field ช่องรหัสผ่าน - - Enter Additional Credentials (if any): - - - - Key File: - แฟ้มกุญแจ: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - ช่วยเหลือเรื่องแฟ้มกุญแจ - Hardware key slot selection - - - - Hardware Key: - กุญแจฮาร์ดแวร์: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - + การเลือกช่องคีย์ฮาร์ดแวร์ Key file to unlock the database - + ไฟล์คีย์เพื่อปลดล็อกฐานข้อมูล Browse for key file @@ -1455,17 +1569,9 @@ Backup database located at %2 Browse… เลือกดู... - - Refresh hardware tokens - - - - Refresh - รีเฟรช - Unlock Database - + ปลดล็อค ฐานข้อมูล Cancel @@ -1473,15 +1579,15 @@ Backup database located at %2 Unlock - + ปลดล็อค Please present or touch your YubiKey to continue… - + กรุณาแสดงหรือสัมผัส YubiKey ของคุณเพื่อดำเนินการต่อ… Database Version Mismatch - + ฐานข้อมูลแต่ละเวอร์ชั่นไม่ตรงกัน The database you are trying to open was most likely @@ -1491,39 +1597,40 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + ฐานข้อมูลที่คุณกำลังพยายามเปิด +น่าจะถูกสร้างโดย KeePassXC เวอร์ชันใหม่กว่า + +คุณสามารถลองเปิดดูได้ แต่อาจไม่สมบูรณ์ +และการบันทึกการเปลี่ยนแปลงใด ๆ อาจทำให้ข้อมูลสูญหายได้ + +เราขอแนะนำให้คุณอัปเดตการติดตั้ง KeePassXC ของคุณ Open database anyway - + ยืนยันในการเปิดฐานข้อมูล Database unlock canceled. - + การปลดล็อคฐานข้อมูลถูกยกเลิก Unlock failed and no password given - + การปลดล็อคไม่สำเร็จ ไม่มีการใส่รหัสผ่าน Unlocking the database failed and you did not enter a password. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - + การปลดล็อกฐานข้อมูลล้มเหลว และคุณไม่ได้ป้อนรหัสผ่าน +คุณต้องการลองใหม่โดยใช้รหัสผ่าน "ว่าง" แทนหรือไม่ + +เพื่อป้องกันไม่ให้ข้อผิดพลาดนี้ปรากฏขึ้น คุณต้องไปที่ "การตั้งค่าฐานข้อมูล / การรักษาความปลอดภัย" และรีเซ็ตรหัสผ่านของคุณ Retry with empty password ลองด้วยรหัสผ่านว่างเปล่า - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 ไม่สามารถเปิดแฟ้มกุญแจได้: %1 @@ -1534,7 +1641,8 @@ To prevent this error from appearing, you must go to "Database Settings / S You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - + คุณกำลังใช้รูปแบบไฟล์คีย์เก่าซึ่ง KeePassXC อาจ<br>หยุดรองรับในอนาคต +<br><br>กรุณาพิจารณาสร้างไฟล์คีย์ใหม่โดยไปที่:<br><strong>ฐานข้อมูล &gt; การรักษาความปลอดภัยของฐานข้อมูล &gt; เปลี่ยนไฟล์คีย์</strong><br> Don't show this warning again @@ -1557,21 +1665,64 @@ To prevent this error from appearing, you must go to "Database Settings / S ไม่สามารถใช้แฟ้มฐานข้อมูลเป็นแฟ้มกุญแจได้ - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. + authenticate to access the database + รับรองความถูกต้องเพื่อเข้าถึงฐานข้อมูล + + + Failed to authenticate with Quick Unlock: %1 - Detecting hardware keys… - กำลังตรวจหากุญแจฮาร์ดแวร์... + Select Key File: + เลือกแฟ้มกุญแจ: - No hardware keys detected - ตรวจไม่พบกุญแจฮาร์ดแวร์ + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + - Select hardware key… - เลือกกุญแจฮาร์ดแวร์... + Use hardware key [Serial: %1] + + + + Use hardware key + ใช้กุญแจฮาร์ดแวร์ + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + + + + KeePassXC database file selected + + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + + + + No hardware keys found. + + + + Refresh Hardware Keys + + + + Click to add a key file. + คลิกเพื่อเพิ่มแฟ้มกุญแจ + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">ฉันมีแฟ้มกุญแจ</a> + + + Hardware keys found, but no slots are configured. + @@ -1583,10 +1734,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - การตั้งค่าขั้นสูง - General ทั่วไป @@ -1597,7 +1744,7 @@ If you do not have a key file, please leave the field empty. Database Credentials - + ข้อมูลประจำตัวฐานข้อมูล Encryption Settings @@ -1609,6 +1756,22 @@ If you do not have a key file, please leave the field empty. Maintenance + ซ่อมบำรุง + + + KeeShare + KeeShare + + + Secret Service Integration + การผสานรวมบริการลับ + + + Remote Sync + + + + Database Settings: %1 @@ -1618,18 +1781,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings การตั้งค่าของเบราว์เซอร์ KeePassXC - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - - Disconnect all browsers หยุดการเชื่อมต่อกับทุกเบราว์เซอร์ @@ -1638,6 +1789,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries ไม่จำการตั้งค่าเฉพาะสำหรับทุกไซต์บนรายการ + + Refresh database root group ID + รีเฟรชรหัสกลุ่มรูทของฐานข้อมูล + Stored keys กุญแจที่ถูกเก็บไว้ @@ -1686,18 +1841,10 @@ This may prevent connection to the browser plugin. คุณต้องการหยุดการเชื่อมต่อกับทุกเบราวเซอร์หรือไม่ สิ่งนี้อาจทำให้การเชื่อมต่อกับโปรแกรมเสริมบนเบราว์เซอร์มีปัญหา - - KeePassXC: No keys found - KeePassXC: ไม่พบกุญแจ - No shared encryption keys found in KeePassXC settings. ไม่พบการแบ่งปันกุญแจที่ถูกเข้ารหัสลับแล้วในการตั้งค่า KeePassXC - - KeePassXC: Removed keys from database - KeePassXC: กุญแจถูกลบออกจากฐานข้อมูล - Successfully removed %n encryption key(s) from KeePassXC settings. ลบ %n กุญแจเข้ารหัสลับจากการตั้งค่า KeePassXC สำเร็จ @@ -1716,38 +1863,42 @@ Permissions to access entries will be revoked. Abort ยกเลิกการทำงาน - - KeePassXC: Removed permissions - KeePassXC: การอนุญาตถูกลบออก - Successfully removed permissions from %n entry(s). ลบการอนุญาตจากรายการ %n - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - - Refresh database ID - + รีเฟรช ฐานข้อมูลการยืนยันตัวตน Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. + คุณต้องการรีเฟรชรหัสฐานข้อมูลหรือไม่? +สิ่งนี้จำเป็นเฉพาะในกรณีที่ฐานข้อมูลของคุณเป็นสำเนาของฐานข้อมูลอื่นและส่วนขยายของเบราว์เซอร์ไม่สามารถเชื่อมต่อได้ + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + แปลงแอตทริบิวต์ KeePassHTTP เดิมเป็นข้อมูลที่กำหนดเองที่เข้ากันได้กับ KeePassXC-Browser + + + No keys found + ไม่พบกุญแจ + + + Removed keys from database + + + + Removed permissions + + + + No entry with permissions found! @@ -1755,7 +1906,7 @@ This is only necessary if your database is a copy of another and the browser ext DatabaseSettingsWidgetDatabaseKey Add additional protection… - + เพิ่มการป้องกันอีกขั้น No password set @@ -1787,6 +1938,18 @@ Are you sure you want to continue without a password? Failed to change database credentials + เปลี่ยนข้อมูลประจำตัวฐานข้อมูลไม่สำเร็จ + + + Weak password + รหัสผ่านอ่อนแอ + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + + + + The provided password does not meet the minimum quality requirement. @@ -1796,14 +1959,6 @@ Are you sure you want to continue without a password? Decryption Time: เวลาการเข้ารหัสลับ - - Change existing decryption time - - - - Change - เปลี่ยนแปลง - Decryption time in seconds เวลาถอดรหัสลับ หน่วยเป็นวินาที @@ -1822,11 +1977,11 @@ Are you sure you want to continue without a password? Format cannot be changed: Your database uses KDBX 4 features - + ไม่สามารถเปลี่ยนรูปแบบได้: ฐานข้อมูลของคุณใช้คุณสมบัติ KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + เว้นแต่คุณจะต้องเปิดฐานข้อมูลด้วยโปรแกรมอื่น ให้ใช้รูปแบบล่าสุดเสมอ Encryption Algorithm: @@ -1850,7 +2005,7 @@ Are you sure you want to continue without a password? Key derivation function - + ฟังก์ชันได้มาของคีย์ Transform rounds: @@ -1858,7 +2013,7 @@ Are you sure you want to continue without a password? Transform rounds - + เปลี่ยนแปลงรอบ Memory Usage: @@ -1874,20 +2029,15 @@ Are you sure you want to continue without a password? Parallelism - + ความเท่าเทียม KDBX 4 (recommended) - + KDBX 4 (แนะนำ) KDBX 3 - - - - unchanged - Database decryption time is unchanged - ไม่เปลี่ยนแปลง + KDBX 3 Number of rounds too high @@ -1898,7 +2048,8 @@ Are you sure you want to continue without a password? You are using a very high number of key transform rounds with Argon2. If you keep this number, your database may take hours, days, or even longer to open. - + คุณกำลังใช้รอบการแปลงคีย์จำนวนมากกับ Argon2 +หากคุณเก็บหมายเลขนี้ไว้ ฐานข้อมูลของคุณอาจใช้เวลาในการเปิดหลายชั่วโมง นานเป็นวัน หรือนานกว่านั้น Understood, keep number @@ -1917,7 +2068,8 @@ If you keep this number, your database may take hours, days, or even longer to o You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + คุณกำลังใช้รอบการแปลงคีย์จำนวนต่ำมากกับ AES-KDF +หากคุณเก็บหมายเลขนี้ไว้ ฐานข้อมูลของคุณจะไม่ได้รับการปกป้องจากการโจมตีด้วยกำลังประทุษร้าย KDF unchanged @@ -1937,31 +2089,43 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) thread(s) + + Encryption Settings: + + + + Basic + พื้นฐาน + + + Advanced + ขั้นสูง + DatabaseSettingsWidgetFdoSecrets Exposed Entries - + รายการที่เปิดเผย Don't expose this database - + อย่าเปิดเผยฐานข้อมูลนี้ Expose entries under this group: - + แสดงรายการภายใต้กลุ่มนี้: Enable Secret Service to access these settings. - + เปิดใช้งาน Secret Service เพื่อเข้าถึงการตั้งค่าเหล่านี้ DatabaseSettingsWidgetGeneral Database Metadata - + เมทาดาทาฐานข้อมูล Database name: @@ -1993,19 +2157,11 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry - - - - Max. history items: - จำนวนมากสุดของรายการประวัติ + จำนวนรายการประวัติสูงสุดต่อรายการ Maximum size of history per entry - - - - Max. history size: - ขนาดมากสุดของรายการประวัติ + ขนาดประวัติต่อรายการสูงสุด MiB @@ -2021,7 +2177,7 @@ If you keep this number, your database will not be protected from brute force at Enable compression (recommended) - + เปิดใช้งานการบีบอัด (แนะนำ) Delete Recycle Bin @@ -2030,12 +2186,114 @@ If you keep this number, your database will not be protected from brute force at Do you want to delete the current recycle bin and all its contents? This action is not reversible. - + คุณต้องการลบถังรีไซเคิลปัจจุบันและเนื้อหาทั้งหมดหรือไม่? การดำเนินการนี้ไม่สามารถย้อนกลับได้ (old) (เก่า) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + เมื่อบันทึกการตั้งค่านี้หรือแก้ไขรายการ +รายการประวัติศาสตร์ที่เก่าแก่ที่สุดของรายการจะเป็น +เอาออกตามจำนวนที่กำหนดเท่านั้น +ของรายการยังคงอยู่มากที่สุด + + + Limit the amount of history items per entry to: + จำกัดจำนวนรายการประวัติต่อรายการที่: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + เมื่อบันทึกการตั้งค่านี้หรือแก้ไขรายการ + รายการประวัติที่เก่าที่สุดของรายการจะถูกลบ + เพื่อให้รายการประวัติที่เหลือรวมกัน +ได้มากที่สุดตามจำนวนที่ระบุ + + + Limit the total size of history items per entry to: + จำกัดขนาดรวมของรายการประวัติต่อรายการเป็น: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + ย้ายรายการไปยังกลุ่มถังรีไซเคิล +แทนที่จะลบออกจากฐานข้อมูล +รายการที่ถูกลบออกจากถังรีไซเคิล +ถูกลบออกจากฐานข้อมูล + + + Autosave delay since last change + + + + Autosave delay + + + + Autosave delay since last change in minutes + + + + min + นาที + + + Autosave delay since last change checkbox + + + + Public Database Metadata + + + + Warning: the following settings are not encrypted. + + + + Display name: + ชื่อแสดง: + + + Publically visible display name used on the unlock dialog + + + + Database public display name + + + + Display color: + + + + Publically visible color used on the unlock dialog + + + + Database public display color chooser + + + + Clear + ล้าง + + + Display icon: + ไอคอนแสดง: + + + Select Database Icon + เลือกไอคอนฐานข้อมูล + DatabaseSettingsWidgetKeeShare @@ -2073,43 +2331,43 @@ This action is not reversible. DatabaseSettingsWidgetMaintenance Manage Custom Icons - + จัดการไอคอนที่กำหนดเอง Delete selected icon(s) - + ลบไอคอนที่เลือกไว้ Delete all custom icons not in use by any entry or group - + ลบไอคอนแบบกำหนดเองทั้งหมดที่ไม่ได้ใช้งานโดยรายการหรือกลุ่มใด ๆ Purge unused icons - + ล้างไอคอนที่ไม่ได้ใช้ Confirm Deletion - + ยืนยันการลบ At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + ไอคอนที่เลือกไว้อย่างน้อยหนึ่งรายการได้มีการนำไปใช้งานอยู่ในขณะนี้โดยอย่างน้อยหนึ่งรายการหรือหนึ่งกลุ่ม ไอคอนของรายการและกลุ่มที่ได้รับผลกระทบทั้งหมดจะแทนที่ด้วยไอคอนเริ่มต้น คุณแน่ใจหรือไม่ว่าต้องการลบไอคอนที่กำลังใช้งานอยู่ Custom Icons Are In Use - + มีการใช้งานไอคอนแบบกำหนดเอง All custom icons are in use by at least one entry or group. - + ไอคอนที่กำหนดเองทั้งหมดมีการใช้งานอย่างน้อยหนึ่งรายการหรือหนึ่งกลุ่ม Purged Unused Icons - + ล้างไอคอนที่ไม่ได้ใช้แล้ว Purged %n icon(s) from the database. - + ล้างไอคอน %n ออกจากฐานข้อมูล @@ -2131,6 +2389,129 @@ This action is not reversible. ช่องคำอธิบายฐานข้อมูล + + DatabaseSettingsWidgetRemote + + Sync Commands + + + + Remove + ลบออก + + + Command Settings + + + + Name + ชื่อ + + + Save + บันทึก + + + Download + + + + Command: + + + + Download command field + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + Download input field + + + + Upload + + + + Upload command field + + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + Upload input field + + + + Name cannot be empty. + + + + Test + + + + Download command cannot be empty. + + + + Download failed with error: %1 + + + + Download finished, but file %1 could not be found. + + + + Download successful. + + + + Save Remote Settings + + + + You have unsaved changes. Do you want to save them? + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + Timeout: + + + + seconds + วินาที + + DatabaseTabWidget @@ -2163,26 +2544,10 @@ This is definitely a bug, please report it to the developers. CSV file แฟ้ม CSV - - Select CSV file - เลือกแฟ้ม CSV - Merge database ผสานฐานข้อมูล - - KeePass 1 database - ฐานข้อมูล KeePass 1 - - - Open KeePass 1 database - เปิดฐานข้อมูล KeePass 1 - - - Open OPVault - เปิด OPVault - Export database to CSV file ส่งออกฐานข้อมูลเป็นแฟ้ม CSV @@ -2193,7 +2558,19 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. - + การเขียนไฟล์ HTML ล้มเหลว + + + Export database to XML file + ส่งออกฐานข้อมูลเป็นไฟล์ XML + + + XML file + ไฟล์ XML + + + Writing the XML file failed + การเขียนไฟล์ XML ล้มเหลว Export Confirmation @@ -2203,26 +2580,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? คุณกำลังจะส่งออกฐานข้อมูลของคุณไปยังแฟ้มที่ไม่ได้เข้ารหัสลับ นี่จะทำให้รหัสผ่านและข้อมูลอ่อนไหวของคุณตกอยู่ในอันตราย! คุณแน่ใจหรือไม่ว่าจะดำเนินการต่อ? - - New Database - ฐานข้อมูลใหม่ - - - %1 [New Database] - Database tab name modifier - %1 [ฐานข้อมูลใหม่] - %1 [Locked] Database tab name modifier %1 [ถูกล็อก] + + %1 [Temporary] + Database tab name modifier + + DatabaseWidget - Database Tags - + Searches and Tags + การค้นหาและแท็ก Searching… @@ -2230,15 +2603,15 @@ This is definitely a bug, please report it to the developers. Shared group… - + กลุ่มที่แชร์… Confirm Auto-Type - + ยืนยันการพิมพ์อัตโนมัติ Perform Auto-Type into the previously active window? - + ดำเนินการพิมพ์อัตโนมัติในหน้าต่างที่ใช้งานก่อนหน้านี้หรือไม่? Execute command? @@ -2270,7 +2643,11 @@ This is definitely a bug, please report it to the developers. Expired entries - + ข้อมูลที่นำเข้าสู่ระบบที่หมดอายุแล้ว + + + Entries expiring within %1 day(s) + รายการจะหมดอายุภายใน %1 วัน No current database. @@ -2296,6 +2673,18 @@ This is definitely a bug, please report it to the developers. No Results ไม่มีผลลัพธ์ + + Save + บันทึก + + + Enter a unique name or overwrite an existing search from the list: + ป้อนชื่อเฉพาะหรือเขียนทับการค้นหาที่มีอยู่จากรายการ: + + + Save Search + บันทึกการค้นหา + Lock Database? ล็อคฐานข้อมูลหรือไม่ @@ -2324,26 +2713,6 @@ Save changes? 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? - แฟ้มฐานข้อมูลเปลี่ยนไปแล้ว และคุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก -คุณต้องการผสานการเปลี่ยนแปลงของคุณหรือไม่? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - ไม่สามารถเปิดแฟ้มฐานข้อมูลใหม่ขณะพยายามโหลดใหม่โดยอัตโนมัติ -ข้อผิดพลาด: %1 - Disable safe saves? ปิดการบันทึกแบบปลอดภัยหรือไม่ @@ -2351,7 +2720,7 @@ Error: %1 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 บันทึกฐานข้อมูลไม่สำเร็จหลายครั้ง นี่อาจมีสาเหตุจากบริการเชื่อมประสานแฟ้มได้ล็อกแฟ้มที่จะบันทึกอยู่ + KeePassXC บันทึกฐานข้อมูลไม่สำเร็จอยู่หลายครั้ง สิ่งนี้อาจเกิดจากบริการเชื่อมประสานแฟ้มได้ล็อกแฟ้มที่จะบันทึกอยู่ ปิดใช้การบันทึกแบบปลอดภัยและลองอีกครั้งหรือไม่? @@ -2386,9 +2755,94 @@ Disable safe saves and try again? Could not find database file: %1 ไม่พบแฟ้มฐานข้อมูล: %1 - - Entries expiring within %1 day(s) - + + New Database + ฐานข้อมูลใหม่ + + + %1 [New Database] + Database tab name modifier + %1 [ฐานข้อมูลใหม่] + + + Remote Sync did not contain any download or upload commands. + + + + Remote sync '%1' completed successfully! + + + + Remote sync '%1' failed: %2 + + + + Error while saving database %1: %2 + + + + Downloading... + กำลังดาวน์โหลด... + + + Uploading... + + + + Syncing... + + + + Remove passkey from entry + + + + Do you want to remove the passkey from this entry? + + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2441,10 +2895,6 @@ Disable safe saves and try again? n/a n/a - - (encrypted) - (เข้ารหัสลับอยู่) - Select private key เลือกกุญแจส่วนตัว @@ -2463,7 +2913,7 @@ Disable safe saves and try again? Some Browser Integration settings are overridden by group settings. - + การตั้งค่าการผสานรวมเบราว์เซอร์บางอย่างถูกแทนที่ด้วยการตั้งค่ากลุ่ม Invalid Entry @@ -2472,23 +2922,28 @@ Disable safe saves and try again? An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - + การดำเนินการผสานภายนอกทำให้รายการนี้ไม่ถูกต้อง +ขออภัย การเปลี่ยนแปลงใด ๆ ที่เกิดขึ้น ได้สูญหายไป Auto-Type Validation Error - + ข้อผิดพลาดในการตรวจสอบการพิมพ์อัตโนมัติ An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + เกิดข้อผิดพลาดขณะตรวจสอบลําดับการพิมพ์อัตโนมัติแบบกําหนดเอง: +%1 +คุณต้องการแก้ไขหรือไม่ An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + มีข้อผิดพลาดเกิดขึ้นขณะตรวจสอบลําดับการพิมพ์อัตโนมัติสําหรับ "%1": +%2 +คุณต้องการแก้ไขหรือไม่ Entry updated successfully. @@ -2520,12 +2975,16 @@ Would you like to correct it? [PROTECTED] Press Reveal to view or edit - + [ป้องกัน] กดเปิดเผยเพื่อดูหรือแก้ไข Hide ซ่อน + + %n hour(s) + %n ชั่วโมง + %n week(s) %n สัปดาห์ @@ -2538,9 +2997,9 @@ Would you like to correct it? %n year(s) %n ปี - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + @@ -2551,11 +3010,11 @@ Would you like to correct it? Attribute selection - + การเลือกแอตทริบิวต์ Attribute value - + ค่าแอตทริบิวต์ Add a new attribute @@ -2603,11 +3062,11 @@ Would you like to correct it? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + หากเลือก รายการจะไม่ปรากฏในรายงาน เช่น การตรวจสุขภาพ และ HIBP แม้ว่าจะไม่ตรงกับข้อกำหนดด้านคุณภาพก็ตาม Exclude from database reports - + แยกออกจากรายงานฐานข้อมูล Foreground Color: @@ -2634,19 +3093,19 @@ Would you like to correct it? Inherit default Auto-Type sequence from the group - + สืบทอดลำดับประเภทอัตโนมัติเริ่มต้นจากกลุ่ม Use custom Auto-Type sequence: - + ใช้ลำดับประเภทอัตโนมัติแบบกำหนดเอง: Custom Auto-Type sequence - + ลำดับประเภทอัตโนมัติแบบกำหนดเอง Open Auto-Type help webpage - + เปิดหน้าเว็บช่วยเหลือประเภทอัตโนมัติ Window Associations @@ -2654,57 +3113,53 @@ Would you like to correct it? Existing window associations - + การเชื่อมโยงหน้าต่างที่มีอยู่ Add new window association - - - - Remove selected window association - - - - Window title: - หัวเรื่องของหน้าต่าง - - - You can use an asterisk (*) to match everything - - - - Set the window association title - - - - You can use an asterisk to match everything - - - - Use a specific sequence for this association: - ใช้ลำดับเฉพาะในการเชื่อมโยง - - - Custom Auto-Type sequence for this window - + เพิ่มการเชื่อมโยงหน้าต่างใหม่ + Add item + + + Remove selected window association + ลบการเชื่อมโยงหน้าต่างที่เลือก + - Remove item - + + Window title: + หัวเรื่องของหน้าต่าง + + + You can use an asterisk (*) to match everything + คุณสามารถใช้เครื่องหมายดอกจัน (*) เพื่อจับคู่ทุกอย่าง + + + Set the window association title + ตั้งชื่อเรื่องการเชื่อมโยงหน้าต่าง + + + You can use an asterisk to match everything + คุณสามารถใช้เครื่องหมายดอกจันเพื่อจับคู่ทุกอย่าง + + + Use a specific sequence for this association: + ใช้ลำดับเฉพาะในการเชื่อมโยง + + + Custom Auto-Type sequence for this window + ลำดับประเภทอัตโนมัติแบบกำหนดเองสำหรับหน้าต่างนี้ + EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - การตั้งค่าเหล่านี้จะส่งผลต่อพฤติกรรมการป้อนข้อมูลด้วยส่วนเสริมในเบราว์เซอร์ - General ทั่วไป @@ -2715,27 +3170,15 @@ Would you like to correct it? Skip Auto-Submit for this entry - - - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - + ข้ามการส่งอัตโนมัติสำหรับรายการนี้ Use this entry only with HTTP Basic Auth - - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - + ใช้รายการกับ HTTP Basic Auth เท่านั้น: Do not use this entry with HTTP Basic Auth - - - - Additional URL's - URL เพิ่มเติม + อย่าใช้รายการนี้กับ HTTP Basic Auth Add @@ -2749,16 +3192,32 @@ Would you like to correct it? Edit แก้ไข + + These settings affect the entry's behaviour with the browser extension. + + + + Additional URLs + URL เพิ่มเติม + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + + EditEntryWidgetHistory Entry history selection - + การเลือกประวัติการเข้า Show entry at selected history state - + แสดงรายการในสถานะประวัติที่เลือก Show @@ -2766,7 +3225,7 @@ Would you like to correct it? Restore entry to selected history state - + กู้คืนรายการไปยังสถานะประวัติที่เลือก Restore @@ -2799,46 +3258,26 @@ Would you like to correct it? Notes field ช่องบันทึก - - Toggle the checkbox to reveal the notes section. - สลับกล่องกาเครื่องหมายเพื่อแสดงส่วนบันทึก - Username field ช่องชื่อผู้ใช้ - - Toggle notes visible - สลับให้เห็นบันทึก - - - Notes: - บันทึก: - Expiration field ช่องวันหมดอายุ Expiration Presets - + วันหมดอายุของพรีเซ็ต Expiration presets - + วันหมดอายุของพรีเซ็ต Presets ค่าปรับแต่งสำเร็จรูป - - Password: - รหัสผ่าน - - - URL: - URL: - Url field ช่องข้อมูล URL @@ -2847,18 +3286,10 @@ Would you like to correct it? Download favicon for URL ดาวน์โหลด favicon สำหรับ URL - - Title: - หัวเรื่อง - Title field ช่องหัวเรื่อง - - Username: - ชื่อผู้ใช้งาน - Password field ช่องรหัสผ่าน @@ -2868,15 +3299,39 @@ Would you like to correct it? สลับวันหมดอายุ - Expires: - หมดอายุ: + Tags list + รายชื่อแท็กต่างๆ: - Tags: + &Username: - Tags list + &Title: + + + + &Password: + + + + UR&L: + + + + &Notes: + + + + Toggle notes visibility + + + + T&ags: + + + + &Expires: @@ -2918,19 +3373,6 @@ Would you like to correct it? Private key กุญแจส่วนตัว - - External file - แฟ้มภายนอก - - - Browser for key file - เรียกดูแฟ้มกุญแจ - - - Browse… - Button for opening file dialog - เลือกดู... - Attachment แฟ้มแนบ @@ -2947,6 +3389,23 @@ Would you like to correct it? Remove from agent ลบออกจากตัวแทน + + External file + แฟ้มภายนอก + + + Browser for key file + เรียกดูแฟ้มกุญแจ + + + Browse… + Button for opening file dialog + เลือกดู... + + + Generate + สร้าง + Select attachment file เลือกแฟ้มแนบ @@ -2965,12 +3424,16 @@ Would you like to correct it? Remove key from agent after specified seconds - + ลบคีย์ออกจากตัวแทนหลังจากวินาทีที่ระบุ seconds วินาที + + Clear agent + + EditGroupWidget @@ -2982,10 +3445,6 @@ Would you like to correct it? Icon ไอคอน - - Browser Integration - การทำงานร่วมกับเบราว์เซอร์ - Properties คุณสมบัติ @@ -3000,7 +3459,11 @@ Would you like to correct it? Group has unsaved changes - + กลุ่มมีการเปลี่ยนแปลงที่ไม่ได้บันทึก + + + Browser Integration + การทำงานร่วมกับเบราว์เซอร์ Enable @@ -3017,44 +3480,56 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - แก้ไขกลุ่ม - These settings affect to the group's behaviour with the browser extension. - + การตั้งค่าเหล่านี้ส่งผลต่อพฤติกรรมของกลุ่มด้วยส่วนขยายของเบราว์เซอร์ Hide entries from browser extension: - + ซ่อนรายการจากส่วนขยายเบราว์เซอร์: Hide entries from browser extension toggle for this and sub groups - + ซ่อนรายการจากการสลับส่วนขยายของเบราว์เซอร์สำหรับกลุ่มนี้และกลุ่มย่อย Skip Auto-Submit for entries: - + ข้ามการส่งอัตโนมัติสำหรับรายการ: Skip Auto-Submit toggle for this and sub groups - + ข้ามการสลับส่งอัตโนมัติสำหรับกลุ่มนี้และกลุ่มย่อย Use entries only with HTTP Basic Auth: - + ปใช้รายการกับ HTTP Basic Auth เท่านั้น: Only HTTP Auth toggle for this and sub groups - + สลับเฉพาะ HTTP Auth สำหรับกลุ่มนี้และกลุ่มย่อย Do not use entries with HTTP Basic Auth: - + อย่าใช้รายการที่มี HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups + อย่าใช้การสลับ HTTP Auth สำหรับกลุ่มนี้และกลุ่มย่อย + + + Omit WWW subdomain from matching: + ละเว้นโดเมนย่อย WWW จากการจับคู่: + + + Omit WWW subdomain from matching toggle for this and sub groups + ละเว้นโดเมนย่อย WWW จากการสลับการจับคู่สำหรับกลุ่มนี้และกลุ่มย่อย + + + Restrict matching to given browser key: + + + + Restrict matching to given browser key toggle for this and sub groups @@ -3062,7 +3537,7 @@ Would you like to correct it? EditGroupWidgetKeeShare Sharing mode field - + ฟิลด์โหมดการแชร์ Password field @@ -3082,7 +3557,7 @@ Would you like to correct it? Path to share file field - + เส้นทางเพื่อแชร์ฟิลด์ไฟล์ Browse for share file @@ -3137,19 +3612,19 @@ Supported extensions are: %1. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - + KeeShare ถูกปิดใช้งานอยู่ในขณะนี้ คุณสามารถเปิดใช้งานการนำเข้า/ส่งออกในการตั้งค่าแอปพลิเคชัน Database export is currently disabled by application settings. - + ขณะนี้ การส่งออกฐานข้อมูลถูกปิดใช้งานโดยการตั้งค่าแอปพลิเคชัน Database import is currently disabled by application settings. - + ขณะนี้ การนำเข้าฐานข้อมูลถูกปิดใช้งานโดยการตั้งค่าแอปพลิเคชัน KeeShare container - + คอนเทนเนอร์ KeeShare KeeShare signed container @@ -3192,7 +3667,7 @@ Supported extensions are: %1. Use default Auto-Type sequence of parent group - + ใช้ลำดับประเภทอัตโนมัติเริ่มต้นของกลุ่มหลัก Auto-Type: @@ -3204,7 +3679,7 @@ Supported extensions are: %1. Auto-Type toggle for this and sub groups - + สลับการพิมพ์อัตโนมัติสําหรับกลุ่มนี้และกลุ่มย่อย Notes: @@ -3212,7 +3687,7 @@ Supported extensions are: %1. Default auto-type sequence field - + ฟิลด์ลำดับประเภทอัตโนมัติเริ่มต้น Notes field @@ -3224,11 +3699,11 @@ Supported extensions are: %1. Set default Auto-Type sequence - + ตั้งค่าลำดับประเภทอัตโนมัติเริ่มต้น Search toggle for this and sub groups - + สลับการค้นหาสำหรับกลุ่มนี้และกลุ่มย่อย @@ -3247,11 +3722,11 @@ Supported extensions are: %1. Set the URL to use to search for a favicon - + ตั้งค่า URL เพื่อใช้ค้นหา favicon Favicon URL - + Favicon URL Download favicon for URL @@ -3267,7 +3742,7 @@ Supported extensions are: %1. Apply icon to… - + ปรับใช้ไอคอนกับ… Apply to this group only @@ -3289,10 +3764,6 @@ Supported extensions are: %1. Unable to fetch favicon. ไม่สามารถดึงข้อมูล favicon ได้ - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - - Existing icon selected. ไอคอนที่มีอยู่แล้วถูกเลือก @@ -3325,6 +3796,10 @@ Supported extensions are: %1. The following icon(s) failed: ไอคอนต่อไปนี้ล้มเหลว + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + + EditWidgetProperties @@ -3401,11 +3876,44 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Clone + + Passkey + + + + Invalid conversion type: %1 + ประเภทคอนเวอร์ชันไม่ถูกต้อง: %1 + + + Invalid conversion syntax: %1 + ลักษณะคอนเวอร์ชันไม่ถูกต้อง: %1 + + + Invalid regular expression syntax %1 +%2 + ลักษณะการถ่ายทอดทั่วไปไม่ถูกต้อง %1 +%2 + EntryAttachments Cannot open file "%1" + เปิดแฟ้ม "%1" ไม่ได้ + + + + EntryAttachmentsDialog + + Form + จาก + + + File name + + + + File contents... @@ -3446,14 +3954,6 @@ This may cause the affected plugins to malfunction. Remove ลบออก - - Rename selected attachment - - - - Rename - เปลี่ยนชื่อ - Open selected attachment เปิดแฟ้มแนบที่เลือก @@ -3526,12 +4026,7 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + ยืนยันการเขียนทับไฟล์แนบ Confirm Attachment @@ -3549,20 +4044,40 @@ Are you sure to add this file? Attachment modified - + เอกสารแนบได้รับการแก้ไขแล้ว The attachment '%1' was modified. Do you want to save the changes to your database? - + เอกสารแนบ '%1' ถูกแก้ไข +คุณต้องการบันทึกการเปลี่ยนแปลงในฐานข้อมูลของคุณหรือไม่? Saving attachment failed - + การบันทึกเอกสารแนบล้มเหลว Saving updated attachment failed. Error: %1 + การบันทึกเอกสารแนบที่อัปเดตล้มเหลว +ข้อผิดพลาด: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + มีเอกสารแนบ "%1" อยู่แล้ว +คุณต้องการเขียนทับไฟล์แนบที่มีอยู่หรือไม่ + + + New + + + + Preview + ดูตัวอย่าง + + + Failed to preview an attachment: Attachment not found @@ -3577,7 +4092,7 @@ Error: %1 EntryHistoryModel Current (%1) - + ปัจจุบัน (%1) Last modified @@ -3617,7 +4132,7 @@ Error: %1 Custom Attributes - + แอตทริบิวต์ที่กำหนดเอง Icon @@ -3637,7 +4152,7 @@ Error: %1 Custom Data - + ข้อมูลที่กำหนดเอง Attachments @@ -3649,7 +4164,7 @@ Error: %1 Tags - + แท็ก @@ -3721,7 +4236,7 @@ Error: %1 Password Strength - + ความแข็งแรงของรหัสผ่าน Entry notes @@ -3757,6 +4272,14 @@ Error: %1 Has TOTP + มีรหัสผ่านแบบใช้ครั้งเดียวตามเวลา + + + Background Color + + + + Group Path @@ -3764,7 +4287,7 @@ Error: %1 EntryPreviewWidget Display current TOTP value - + แสดงค่า TOTP ปัจจุบัน Close @@ -3779,8 +4302,8 @@ Error: %1 รหัสผ่าน - Notes - บันทึก + URL + URL Expiration @@ -3788,19 +4311,19 @@ Error: %1 Tags - + แท็ก Tags list - + รายชื่อแท็กต่างๆ: Username ชื่อผู้ใช้ - URL - URL + Notes + บันทึก Advanced @@ -3820,7 +4343,7 @@ Error: %1 Default Sequence - + ลำดับปริยาย Window @@ -3850,6 +4373,10 @@ Error: %1 Never ไม่เลย + + Double click to copy value + ดับเบิลคลิกเพื่อคัดลอกค่า + Enabled เปิดใช้ @@ -3858,6 +4385,10 @@ Error: %1 Disabled ปิดใช้ + + Double click to copy to clipboard + + EntryURLModel @@ -3865,6 +4396,10 @@ Error: %1 Invalid URL URL ผิดรูปแบบ + + Duplicate URL + + EntryView @@ -3880,34 +4415,40 @@ Error: %1 Reset to defaults เริ่มใหม่เป็นค่าเริ่มต้น + + + %1 entry(s)... + + ExportDialog Export options - + ส่งออกตัวเลือก Sort entries by... - + เรียงลำดับรายการด้วย... You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + คุณกำลังจะส่งออกฐานข้อมูลของคุณไปยังไฟล์ที่ไม่ได้เข้ารหัส +การดำเนินการนี้จะทำให้รหัสผ่านและข้อมูลที่ละเอียดอ่อนของคุณมีความเสี่ยง! + database order - + ลำดับฐานข้อมูล name (ascending) - + ชื่อ (จากล่างสุดไปบนสุด) name (descending) - + ชื่อ (จากบนสุดไปล่างสุด) unknown @@ -3926,11 +4467,11 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::DBusMgr Failed to deliver message - + การส่งข้อความไม่สำเร็จ Failed to send reply on DBus - + ไม่สามารถส่งการตอบกลับบน DBus Unknown @@ -3945,35 +4486,35 @@ This will leave your passwords and sensitive information vulnerable! <i>PID: %1, Executable: %2</i> <i>PID: 1234, Executable: /path/to/exe</i> - + <i> PID: % 1, ปฏิบัติการได้: % 2 </i> Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - + บริการลับอื่นกำลังทำงานอยู่ (%1)<br/>กรุณาหยุด/ลบออกก่อนที่จะเปิดใช้งานการผสานรวมบริการลับอีกครั้ง Failed to register DBus service at %1.<br/> - + ไม่สามารถลงทะเบียนบริการ DBus ที่ %1<br/> Failed to register service on DBus at path '%1' - + ไม่สามารถลงทะเบียนบริการบน DBus ที่เส้นทาง '%1' Failed to register database on DBus under the name '%1' - + ไม่สามารถลงทะเบียนฐานข้อมูลบน DBus ภายใต้ชื่อ '%1' Failed to register session on DBus at path '%1' - + ไม่สามารถลงทะเบียนเซสชันบน DBus ที่เส้นทาง '%1' Failed to register item on DBus at path '%1' - + ไม่สามารถลงทะเบียนรายการบน DBus ที่เส้นทาง '%1' Failed to register prompt object on DBus at path '%1' - + ไม่สามารถลงทะเบียนออบเจ็กต์พรอมต์บน DBus ที่เส้นทาง '%1' @@ -4017,14 +4558,14 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::UnlockPrompt %1 (PID: %2) - + %1 (PID: %2) FdoSecretsPlugin <b>Fdo Secret Service:</b> %1 - + <b>บริการลับ Fdo:</b> %1 @@ -4043,14 +4584,14 @@ This will leave your passwords and sensitive information vulnerable! HibpDownloader Online password validation failed - + การตรวจสอบรหัสผ่านออนไลน์ล้มเหลว IconDownloaderDialog Download Favicons - + ดาวน์โหลด Favicons Cancel @@ -4059,7 +4600,7 @@ This will leave your passwords and sensitive information vulnerable! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - + มีปัญหาในการดาวน์โหลดไอคอน? คุณสามารถเปิดใช้บริการไอคอนเว็บไซต์ DuckDuckGo ได้ในส่วนการรักษาความปลอดภัยของการตั้งค่าแอปพลิเคชัน Close @@ -4075,7 +4616,7 @@ You can enable the DuckDuckGo website icon service in the security section of th Please wait, processing entry list… - + กรุณารอสักครู่ กำลังประมวลผลรายการ… Downloading… @@ -4095,6 +4636,193 @@ You can enable the DuckDuckGo website icon service in the security section of th Downloading favicons (%1/%2)… + กำลังดาวน์โหลด favicons (%1/%2)… + + + + ImportWizard + + Import Wizard + + + + + ImportWizardPageReview + + WizardPage + วิซาร์ดเพจ + + + Entry count: %1 + + + + Group + กลุ่ม + + + Title + หัวข้อ + + + Username + ชื่อผู้ใช้ + + + Password + รหัสผ่าน + + + Url + URL + + + Could not load key file. + + + + Could not open remote database. Password or key file may be incorrect. + + + + + ImportWizardPageSelect + + Form + จาก + + + Import File Selection + + + + Password: + รหัสผ่าน + + + Key File: + แฟ้มกุญแจ: + + + Browse… + เลือกดู... + + + Import Into: + ส่งออกไปยัง: + + + New Database + ฐานข้อมูลใหม่ + + + No unlocked databases available + + + + Existing Database: + + + + Import File: + นำเข้าแฟ้ม: + + + Comma Separated Values (.csv) + + + + 1Password Export (.1pux) + + + + 1Password Vault (.opvault) + 1Password Vault (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + + + + Open OPVault + เปิด OPVault + + + Select import file + + + + All files + ทุกแฟ้ม + + + Key files + แฟ้มกุญแจ + + + Select key file + เลือกแฟ้มกุญแจ + + + Comma Separated Values + + + + 1Password Export + + + + Bitwarden JSON Export + + + + 1Password Vault + + + + KeePass1 Database + + + + Proton Pass (.json) + + + + Proton Pass JSON Export + + + + Temporary Database + + + + Command: + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + Input: + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + Remote Database (.kdbx) @@ -4113,20 +4841,21 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - + ไม่มีส่วนหัวของฐานข้อมูล Unable to calculate database key - + ไม่สามารถคำนวณคีย์ฐานข้อมูล Unable to issue challenge-response: %1 - + ไม่สามารถออกคำตอบที่ท้าทายได้: %1 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + ข้อมูลประจำตัวไม่ถูกต้อง กรุณาลองอีกครั้ง +หากสิ่งนี้เกิดขึ้นอีก แสดงว่าไฟล์ฐานข้อมูลของคุณอาจเสียหาย Header doesn't match hash @@ -4138,11 +4867,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + ความยาวฟิลด์ส่วนหัวไม่ถูกต้อง: ฟิลด์ %1 Invalid header data length: field %1, %2 expected, %3 found - + ความยาวข้อมูลส่วนหัวไม่ถูกต้อง: ฟิลด์ %1, %2 ที่คาดคิด, %3 พบ @@ -4154,11 +4883,11 @@ If this reoccurs, then your database file may be corrupt. Unable to issue challenge-response: %1 - + ไม่สามารถออกคำตอบที่ท้าทายได้: %1 Unable to calculate database key - + ไม่สามารถคำนวณคีย์ฐานข้อมูล @@ -4169,7 +4898,7 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key: %1 - + ไม่สามารถคำนวณคีย์ฐานข้อมูล: %1 Invalid header checksum size @@ -4182,11 +4911,12 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + ข้อมูลประจำตัวไม่ถูกต้อง กรุณาลองอีกครั้งหากสิ่งนี้เกิดขึ้นอีก + แสดงว่าไฟล์ฐานข้อมูลของคุณอาจเสียหาย (HMAC mismatch) - + (HMAC ไม่ตรงกัน) Unknown cipher @@ -4198,11 +4928,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + ความยาวฟิลด์ส่วนหัวไม่ถูกต้อง: ฟิลด์ %1 Invalid header data length: field %1, %2 expected, %3 found - + ความยาวข้อมูลส่วนหัวไม่ถูกต้อง: ฟิลด์ %1, %2 ที่คาดไว้, %3 พบ Failed to open buffer for KDF parameters in header @@ -4222,11 +4952,11 @@ If this reoccurs, then your database file may be corrupt. Invalid inner header field length: field %1 - + ความยาวฟิลด์ส่วนหัวภายในไม่ถูกต้อง: ฟิลด์ %1 Invalid inner header data length: field %1, %2 expected, %3 found - + ความยาวข้อมูลส่วนหัวภายในไม่ถูกต้อง: ฟิลด์ %1, %2 ที่คาดไว้, %3 พบ Invalid inner header binary size @@ -4306,7 +5036,7 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key: %1 - + ไม่สามารถคำนวณคีย์ฐานข้อมูล: %1 Failed to serialize KDF parameters variant map @@ -4369,7 +5099,10 @@ If this reoccurs, then your database file may be corrupt. 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 เวอร์ชันเก่าได้ Not a KeePass database. @@ -4508,11 +5241,11 @@ Line %2, column %3 KeeAgentSettings Invalid KeeAgent settings file structure. - + โครงสร้างไฟล์การตั้งค่า KeeAgent ไม่ถูกต้อง Private key is an attachment but no attachments provided. - + คีย์ส่วนตัวเป็นเอกสารแนบ แต่ไม่มีเอกสารแนบมาให้ Private key is empty @@ -4527,17 +5260,6 @@ Line %2, column %3 ล้มเหลวระหว่างการเปิดกุญแจส่วนตัว - - KeePass1OpenWidget - - Import KeePass1 Database - - - - Unable to open the database. - ไม่สามารถเปิดฐานข้อมูลดังกล่าว - - KeePass1Reader @@ -4591,7 +5313,7 @@ Line %2, column %3 Unable to calculate database key - + ไม่สามารถคำนวณคีย์ฐานข้อมูล unable to seek to content position @@ -4600,7 +5322,8 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - + ข้อมูลประจำตัวไม่ถูกต้อง กรุณาลองอีกครั้งหากสิ่งนี้เกิดขึ้นอีก + แสดงว่าไฟล์ฐานข้อมูลของคุณอาจเสียหาย Key transformation failed @@ -4668,7 +5391,7 @@ If this reoccurs, then your database file may be corrupt. Invalid entry UUID field size - + ขนาดฟิลด์ UUID ของรายการไม่ถูกต้อง Invalid entry group id field size @@ -4699,11 +5422,11 @@ If this reoccurs, then your database file may be corrupt. KeeShare Invalid sharing reference - + การอ้างอิงการแชร์ไม่ถูกต้อง Inactive share %1 - + การแชร์ที่ไม่ได้ใช้งาน %1 Imported from %1 @@ -4719,15 +5442,15 @@ If this reoccurs, then your database file may be corrupt. Import is disabled in settings - + การนำเข้าถูกปิดใช้งานในการตั้งค่า Export is disabled in settings - + การส่งออกถูกปิดใช้งานในการตั้งค่า Inactive share - + การแชร์ที่ไม่ได้ใช้งาน Imported from @@ -4773,11 +5496,11 @@ If this reoccurs, then your database file may be corrupt. Generate a new key file or choose an existing one to protect your database. - + สร้างไฟล์คีย์ใหม่หรือเลือกไฟล์ที่มีอยู่เพื่อปกป้องฐานข้อมูลของคุณ Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + หมายเหตุ: อย่าใช้ไฟล์ที่อาจเปลี่ยนแปลง เนื่องจากจะทำให้คุณไม่สามารถปลดล็อกฐานข้อมูลได้ Browse for key file @@ -4793,7 +5516,7 @@ If this reoccurs, then your database file may be corrupt. You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - + คุณเลือกไฟล์คีย์ในรูปแบบเก่าซึ่ง KeePassXC<br>อาจหยุดรองรับในอนาคต<br><br>กรุณาพิจารณาสร้างไฟล์คีย์ใหม่แทน Error loading the key file '%1' @@ -4807,23 +5530,23 @@ Message: %2 Add Key File - + เพิ่มแฟ้มกุญแจ Change Key File - + เปลี่ยนแฟ้มกุญแจ Remove Key File - + ลบแฟ้มกุญแจ Key File set, click to change or remove - + ชุดไฟล์คีย์ คลิกเพื่อเปลี่ยนหรือลบ <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> คุณต้องเก็บไว้เป็นความลับและไม่ทำหาย มิฉะนั้นคุณจะถูกล็อค </p> Key files @@ -4835,7 +5558,7 @@ Message: %2 Create Key File… - + สร้างแฟ้มกุญแจ... Error creating key file @@ -4855,7 +5578,7 @@ Message: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - + คุณไม่สามารถใช้ฐานข้อมูลปัจจุบันเป็นไฟล์คีย์ของตัวเองได้ กรุณาเลือกไฟล์อื่นหรือสร้างไฟล์คีย์ใหม่ Suspicious Key File @@ -4864,22 +5587,23 @@ Message: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - + ไฟล์คีย์ที่เลือกดูเหมือนไฟล์ฐานข้อมูลรหัสผ่าน ไฟล์คีย์ต้องเป็นไฟล์คงที่ซึ่งไม่เคยเปลี่ยนแปลง มิฉะนั้น คุณจะสูญเสียการเข้าถึงฐานข้อมูลของคุณตลอดไป +คุณแน่ใจหรือไม่ว่าต้องการดำเนินการกับไฟล์นี้ต่อ? MacUtils Invalid key code - + แฟ้มกุญแจไม่ถูกต้อง Global shortcut already registered to %1 - + ทางลัดส่วนกลางได้ลงทะเบียน %1 . แล้ว Could not register global shortcut - + ไม่สามารถลงทะเบียนทางลัดของส่วนกลาง @@ -4890,11 +5614,7 @@ Are you sure you want to continue with this file? &Recent Databases - - - - &Import - &นำเข้า + &ฐานข้อมูลล่าสุด &Export @@ -4910,12 +5630,16 @@ Are you sure you want to continue with this file? Copy Att&ribute - + คัดลอกแอตทริบิวต์ TOTP TOTP + + Tags + แท็ก + &Groups กลุ่ม (&G) @@ -4930,7 +5654,7 @@ Are you sure you want to continue with this file? Theme - + หัวข้อ &Quit @@ -4942,7 +5666,7 @@ Are you sure you want to continue with this file? &Check for Updates - &ตรวจหาการปรับปรุง + &ตรวจหาการปรับรุ่น &Open Database… @@ -4960,34 +5684,18 @@ Are you sure you want to continue with this file? &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 - ดู หรือ แก้ไขรายการ - &Delete Entry… &ลบรายการ... @@ -4996,10 +5704,6 @@ Are you sure you want to continue with this file? &New Group… กลุ่มให&ม่... - - Add a new group - เพิ่มกลุ่มใหม่ - &Edit Group… แ&ก้ไขกลุ่ม... @@ -5010,7 +5714,7 @@ Are you sure you want to continue with this file? Download All &Favicons… - + ดาวน์โหลด &Favicons ทั้งหมด… Sort &A-Z @@ -5022,64 +5726,40 @@ Are you sure you want to continue with this file? Sa&ve Database As… - + บันทึกฐานข้อมูลเป็น… Database &Security… - + ฐานข้อมูลและการรักษาความปลอดภัย… Database &Reports… - - - - Statistics, health check, etc. - + ฐานข้อมูลและรายงาน… &Database Settings… - - - - Database settings - การตั้งค่าฐานข้อมูล + &การตั้งค่าฐานข้อมูล &Clone Entry… - + &คัดลอกรายการ… Move u&p ขยับ&ขึ้น - - Move entry one step up - - Move do&wn ขยับ&ลง - - Move entry one step down - - Copy &Username คัดลอก&ชื่อผู้ใช้ - - Copy username to clipboard - คัดลอกชื่อผู้ใช้ไปคลิปบอร์ด - Copy &Password คัดลอก&รหัสผ่าน - - Copy password to clipboard - คัดลอกรหัสผ่านไปคลิปบอร์ด - &Settings การตั้งค่า (&S) @@ -5094,7 +5774,7 @@ Are you sure you want to continue with this file? Download &Favicon - + ดาวน์โหลด &Favicon Open &URL @@ -5102,36 +5782,24 @@ Are you sure you want to continue with this file? &Lock Database - + &ล็อคฐานข้อมูล Lock &All Databases - + ล็อกและฐานข้อมูลทั้งหมด &Title หัวเรื่อง (&T) - Copy title to clipboard - คัดลอกหัวเรื่องไปยังคลิปบอร์ด - - - &URL - URL (&U) - - - Copy URL to clipboard - คัดลอก URL ไปยัง คลิปบอร์ด + Copy &URL + คัดลอก &URL &Notes บันทึก (&N) - - Copy notes to clipboard - คัดลอกข้อมูลไปยังคลิปบอร์ด - &CSV File… แฟ้ม &CSV... @@ -5144,26 +5812,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… ฐานข้อมูล KeePass 1... - - Import a KeePass 1 database - นำเข้า ฐานข้อมูล KeePass1... - 1Password Vault… - - - - Import a 1Password Vault - นำเข้า Vault ของ 1Password + 1 ห้องเก็บรหัสผ่าน… CSV File… แฟ้ม CSV... - - Import a CSV file - นำเข้า แฟ้ม CSV - Show TOTP แสดง TOTP @@ -5174,12 +5830,16 @@ Are you sure you want to continue with this file? Set up TOTP… - + ตั้งค่า TOTP... Copy &TOTP คัดลอก &TOTP + + Copy Password and TOTP + คัดลอกรหัสผ่านและ TOTP + E&mpty recycle bin ล้างถังรีไซเคิล @@ -5194,47 +5854,43 @@ Are you sure you want to continue with this file? &Getting Started - + &เริ่มต้นใช้งาน Open Getting Started Guide - + เปิดคู่มือเริ่มต้นใช้งาน &Online Help ช่วยเหลือ&ออนไลน์ - - Go to online documentation - - &User Guide - + &คู่มือผู้ใช้ Open User Guide - + เปิดคู่มือผู้ใช้ &Keyboard Shortcuts - + &แป้นพิมพ์ลัด Save Database Backup… - + บันทึกการสำรองฐานข้อมูล… Add key to SSH Agent - + เพิ่มคีย์ไปยัง SSH Agent Remove key from SSH Agent - + ลบคีย์ออกจาก SSH Agent Compact Mode - + โหมดกระชับ Automatic @@ -5250,6 +5906,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) + คลาสสิก (แพลตฟอร์มเนทีฟ) + + + Show Menubar @@ -5258,11 +5918,11 @@ Are you sure you want to continue with this file? Show Preview Panel - + แสดงแผงดูตัวอย่าง Always on Top - + อยู่ด้านบนตลอด Hide Usernames @@ -5274,7 +5934,11 @@ Are you sure you want to continue with this file? Clone Group... - + โคลนกลุ่ม... + + + &XML File… + แฟ้ม &XML… Clear history @@ -5286,27 +5950,29 @@ Are you sure you want to continue with this file? Don't show again for this version - + ไม่ต้องแสดงอีกสำหรับเวอร์ชันนี้ 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 รุ่นที่ไม่เสถียร +มีความเสี่ยงสูงที่จะเกิดข้อผิดพลาด สำรองข้อมูลฐานข้อมูลของคุณ +เวอร์ชันนี้ไม่ได้มีไว้สำหรับการใช้งานจริง NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - + หมายเหตุ: คุณกำลังใช้ KeePassXC รุ่นก่อนเผยแพร่ +คาดว่าจะมีจุดบกพร่องและปัญหาเล็กน้อย เวอร์ชันนี้มีไว้เพื่อวัตถุประสงค์ในการทดสอบ - 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. - + No Tags + ไม่มีแท็ก Restore Entry(s) - + นำรายการกลับมาใหม่หรือไม่? Settings @@ -5318,7 +5984,7 @@ We recommend you use the AppImage available on our downloads page. Would you like KeePassXC to check for updates on startup? - คุณอยากให้ KeePassXC ตรวจหาการปรับรุ่นเมื่อเริ่มโปรแกรมหรือไม่? + คุณต้องการให้ KeePassXC ตรวจหาการปรับรุ่นเมื่อเริ่มโปรแกรมหรือไม่? You can always check for updates manually from the application menu. @@ -5332,9 +5998,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC ออกจาก KeePassXC + + %1 Entry(s) + %1 รายการ + Please present or touch your YubiKey to continue… - + กรุณาแสดงหรือสัมผัส YubiKey ของคุณเพื่อดำเนินการต่อ… Restart Application? @@ -5344,6 +6014,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? คุณจะต้องเริ่มแอปใหม่เพื่อใช้การตั้งค่านี้ คุณต้องการจะเริ่มแอปใหม่ตอนนี้หรือไม่? + + Allow Screen Capture + อนุญาตให้จับภาพหน้าจอ + + + 1Password 1PUX... + + + + Import a 1Password 1PUX file + + + + Import… + นำเข้า... + + + Passkeys… + + + + Import Passkey + + + + Remote S&ync… + + + + Quit Application + + + + Open About Dialog + + + + Open Database + เปิดฐานข้อมูล + + + Create Database + สร้างฐานข้อมูล + + + Merge From Database + + + + Create Entry + + + + Edit Entry + แก้ไขรายการ + + + Delete Entry + + + + Create Group + + + + Edit Group + แก้ไขกลุ่ม + + + Delete Group + + + + Download All Favicons + + + + Sort Groups A-Z + + + + Sort Groups Z-A + + + + Save Database As + + + + Show Database Security + + + + Show Database Reports + + + + Show Database Settings + + + + Show Passkeys + + + + Clone Entry + + + + Move Entry Up + + + + Move Entry Down + + + + Copy Username + คัดลอก ชื่อผู้ใช้ + + + Copy Password + คัดลอก รหัสผ่าน + + + Show Application Settings + + + + Show Password Generator + + + + Remove Passkey From Entry + + + + Perform Auto-Type: {USERNAME} + + + + Perform Auto-Type: {USERNAME}{ENTER} + + + + Perform Auto-Type: {PASSWORD} + + + + Perform Auto-Type: {PASSWORD}{ENTER} + + + + Perform Auto-Type: {TOTP} + + + + Copy Title + + + + Copy URL + + + + Copy Notes + + + + Export to CSV + + + + Export to HTML + + + + Import KeePass1 Database + นำเข้าฐานข้อมูล KeePass1 + + + Import 1Password Vault + + + + Import CSV File + + + + Show TOTP QR Code + + + + Set up TOTP + + + + Empty Recycle Bin + + + + Open Donation Website + + + + Open Bug Report + + + + Open Online Documentation + + + + Open Keyboard Shortcuts Guide + + + + Save Database Backup + + + + SSH Agent: Add Key + + + + SSH Agent: Remove Key + + + + Toggle Compact Mode + + + + Set Theme: Automatic + + + + Set Theme: Light + + + + Set Theme: Dark + + + + Set Theme: Classic + + + + Toggle Show Menubar + + + + Toggle Show Toolbar + + + + Toggle Show Preview Panel + + + + Toggle Always on Top + + + + Toggle Hide Usernames + + + + Toggle Hide Passwords + + + + Export to XML + + + + Toggle Allow Screen Capture + + + + Show Group Panel + + + + Toggle Show Group Panel + + + + Setup Remote Sync… + + + + Password Generator + ตัวสร้างรหัสผ่าน + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase @@ -5361,7 +6339,7 @@ We recommend you use the AppImage available on our downloads page. Unlock database to show more information - + ปลดล็อกฐานข้อมูลเพื่อแสดงข้อมูลเพิ่มเติม Lock database @@ -5376,15 +6354,15 @@ We recommend you use the AppImage available on our downloads page. Disconnect this application - + หยุดการเชื่อมต่อกับแอปพลิเคชันนี้ Reset - + รีเซ็ท Reset any remembered decisions for this application - + รีเซ็ตการตัดสินใจที่จดจำไว้สำหรับแอปพลิเคชันนี้ @@ -5401,26 +6379,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5447,18 +6405,18 @@ We recommend you use the AppImage available on our downloads page. Removed custom data %1 [%2] - + ลบข้อมูลที่กำหนดเอง %1 [%2] Adding custom data %1 [%2] - + กำลังเพิ่มข้อมูลที่กำหนดเอง %1 [%2] NewDatabaseWizard Create a new KeePassXC database… - + สร้างฐานข้อมูล KeePassXC ใหม่… Root @@ -5480,24 +6438,16 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. ที่นี่คุณสามารถปรับการตั้งค่าการเข้ารหัสฐานข้อมูล ไม่ต้องกังวลคุณสามารถเปลี่ยนได้ในภายหลังในการตั้งค่า ฐานข้อมูล - - Advanced Settings - การตั้งค่าขั้นสูง - - - Simple Settings - การตั้งค่าพื้นฐาน - NewDatabaseWizardPageDatabaseKey Database Credentials - + ข้อมูลประจำตัวฐานข้อมูล A set of credentials known only to you that protects your database. - + ชุดของข้อมูลประจําตัวที่คุณรู้จักเท่านั้นที่ปกป้องฐานข้อมูลของคุณ @@ -5522,6 +6472,25 @@ We recommend you use the AppImage available on our downloads page. กรุณากรอกชื่อที่แสดง และคำอธิบายเพิ่มเติมสำหรับ ฐานข้อมูล ใหม่ของคุณ + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + + + + New entry attachment + + + NixUtils @@ -5530,77 +6499,69 @@ We recommend you use the AppImage available on our downloads page. Global shortcut already registered to %1 - + ทางลัดส่วนกลางได้ลงทะเบียน %1 . แล้ว Could not register global shortcut - + ไม่สามารถลงทะเบียนทางลัดของส่วนกลาง OpData01 Invalid OpData01, does not contain header - + OpData01 ไม่ถูกต้อง ไม่มีส่วนหัว Unable to read all IV bytes, wanted 16 but got %1 - + ไม่สามารถอ่าน IV ไบต์ทั้งหมดได้ ต้องการ 16 แต่ได้ %1 Unable to init cipher for opdata01: %1 - + ไม่สามารถเริ่มต้นการเข้ารหัสสำหรับ opdata01: %1 Unable to read all HMAC signature bytes - + ไม่สามารถอ่านลายเซ็น HMAC ทั้งหมด Malformed OpData01 due to a failed HMAC - + OpData01 ที่มีรูปแบบไม่ถูกต้องเนื่องจาก HMAC ล้มเหลว Unable to process clearText in place - + ไม่สามารถประมวลผล clearText ได้ Expected %1 bytes of clear-text, found %2 - - - - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - + ต้องการ %1 ไบต์ของข้อความที่ชัดเจน พบ %2 OpVaultReader Directory .opvault must exist - + ต้องมีไดเรกทอรี .opvault Directory .opvault must be readable - + ไดเร็กทอรี .opvault จะต้องสามารถอ่านได้ Directory .opvault/default must exist - + ต้องมีไดเร็กทอรี .opvault/default Directory .opvault/default must be readable - + ไดเร็กทอรี .opvault/default ต้องอ่านได้ Unable to decode masterKey: %1 - + ไม่สามารถถอดรหัสมาสเตอร์คีย์: %1 Unable to derive master key: %1 - + ไม่สามารถรับมาสเตอร์คีย์ได้: %1 @@ -5649,13 +6610,17 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 การเข้ารหัสที่ไม่รู้จัก: %1 + + AES-256/GCM is currently not supported + ไม่รองรับ AES -256/GCM ในขณะนี้ + Passphrase is required to decrypt this key จำเป็นต้องใช้วลีรหัสผ่านเพื่อถอดรหัสผ่านกุญแจนี้ Key derivation failed: %1 - + การได้มาของคีย์ล้มเหลว: %1 Cipher IV is too short for MD5 kdf @@ -5667,11 +6632,11 @@ We recommend you use the AppImage available on our downloads page. Failed to initialize cipher: %1 - + ไม่สามารถเริ่มต้นการเข้ารหัส: %1 Decryption failed: %1 - + การปลดรหัสล้มเหลว: %1 Decryption failed, wrong passphrase? @@ -5679,11 +6644,11 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF while reading key - + EOF ที่ไม่คาดคิดขณะอ่านคีย์ Unsupported key part - + ส่วนคีย์ที่ไม่รองรับ Unexpected EOF while reading public key @@ -5713,27 +6678,179 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key เกิด EOF ที่ไม่คาดคิดขณะเขียนกุญแจส่วนตัว + + (encrypted) + (เข้ารหัสลับอยู่) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - รหัสผ่านไม่ตรงกัน + SSH Key Generator + - Passwords match so far - รหัสผ่านยังตรงกันอยู่ + Type + ชนิด - Toggle Password (%1) - สลับรหัสผ่าน (%1) + Bits + - Generate Password (%1) - สร้างรหัสผ่าน (%1) + Comment + ข้อคิดเห็น + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + - Warning: Caps Lock enabled! + Filenames will be generated with title and .passkey file extension. + + + + Export entries + + + + Export Selected + + + + Cancel + ยกเลิก + + + Export to folder + + + + Export the following passkey entries. + + + + + PasskeyExporter + + KeePassXC: Passkey Export + + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + + + + Cannot open file + + + + Cannot open file "%1" for writing. + + + + Cannot write to file + + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + + + + Username: %1 + ชื่อผู้ใช้: %1 + + + Group + กลุ่ม + + + Database + ฐานข้อมูล + + + Import Passkey + + + + Import + นำเข้า + + + Cancel + ยกเลิก + + + Entry + รายการ + + + Create new entry + + + + Relying Party: %1 + + + + Import the following passkey: + + + + Import the following passkey to this entry: + + + + Default passkeys group (Imported Passkeys) + + + + + PasskeyImporter + + Passkey file + + + + All files + ทุกแฟ้ม + + + Cannot open file + + + + Cannot open file "%1" for reading. + + + + Open passkey file + + + + Cannot import passkey + + + + Cannot import passkey file "%1". Data is missing. + + + + Cannot import passkey file "%1". +The following data is missing: +%2 + + + + Cannot import passkey file "%1". Private key is missing or malformed. @@ -5753,7 +6870,7 @@ We recommend you use the AppImage available on our downloads page. Repeat password field - + ทำซ้ำฟิลด์รหัสผ่าน Password @@ -5761,19 +6878,19 @@ We recommend you use the AppImage available on our downloads page. Add Password - + ใส่รหัสผ่าน Change Password - + เปลี่ยนรหัสผ่าน Remove Password - + ลบรหัสผ่าน Password set, click to change or remove - + รหัสผ่านได้รับการติดตั้ง กดเพื่อเปลี่ยน หรือลบ <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> @@ -5886,11 +7003,11 @@ We recommend you use the AppImage available on our downloads page. Additional characters to use for the generated password - + อักขระเพิ่มเติมที่จะใช้สำหรับรหัสผ่านที่สร้างขึ้น Additional characters - + ตัวอักษรเพิ่มเติม Add non-hex letters to "do not include" list @@ -5914,11 +7031,7 @@ We recommend you use the AppImage available on our downloads page. Also choose from: - - - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - อักขระที่ยกเว้น: "0", "1", "l", "I", "O", "|", "﹒" + เลือกจาก: Exclude look-alike characters @@ -5944,25 +7057,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: จำนวนคำ: - - Character Count: - - Word Case: - + กรณีคำศัพท์: Delete selected wordlist - + ลบรายการคำศัพท์ที่เลือก Add custom wordlist - - - - character - + เพิ่มรายการคําที่กําหนดเอง Close @@ -5982,69 +7087,24 @@ We recommend you use the AppImage available on our downloads page. lower case - + ตัวพิมพ์เล็ก UPPER CASE - + ตัวพิมพ์ใหญ่ Title Case - + กรณีชื่อเรื่อง (SYSTEM) - + (ระบบ) Entropy: %1 bit เอนโทรปี: %1 บิต - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - ทุกไฟล์ - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - สัญลักษณ์หรือตัวอักษรที่ใช้แทนคำ - - - Special Characters - อักขระพิเศษ - Password Quality: %1 คุณภาพรหัสผ่าน: %1 @@ -6069,19 +7129,147 @@ Do you want to overwrite it? Password quality ดีมาก + + Confirm Delete Wordlist + ยืนยันการลบรายการคำศัพท์ + + + Do you really want to delete the wordlist "%1"? + คุณต้องการลบรายการคำศัพท์ "%1" หรือไม่? + + + Failed to delete wordlist + ลบรายการคำศัพท์ไม่สำเร็จ + + + Wordlists + รายการคำศัพท์ + + + All files + ทุกแฟ้ม + + + Select Custom Wordlist + เลือกรายการคำศัพท์ที่กำหนดเอง + + + Overwrite Wordlist? + เขียนทับรายการคำศัพท์? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + มีรายการคำศัพท์ "%1" เป็นรายการคำศัพท์ที่กำหนดเองอยู่แล้ว +คุณต้องการเขียนทับหรือไม่? + + + Failed to add wordlist + เพิ่มรายการคำศัพท์ไม่สำเร็จ + + + Logograms + สัญลักษณ์หรือตัวอักษรที่ใช้แทนคำ + + + Special Characters + อักขระพิเศษ + + + passwordLength + + + + Characters: %1 + ตัวอักขระ: %1 + + + MIXED case + + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + + PasswordWidget + + Passwords do not match + รหัสผ่านไม่ตรงกัน + + + Passwords match so far + รหัสผ่านยังตรงกันอยู่ + + + Toggle Password (%1) + สลับรหัสผ่าน (%1) + + + Generate Password (%1) + สร้างรหัสผ่าน (%1) + + + Warning: Caps Lock enabled! + คำเตือน: เปิดใช้งาน Caps Lock แล้ว! + + + Quality: %1 + คุณภาพ: %1 + + + Poor + Password quality + แย่ + + + Weak + Password quality + อ่อนแอ + + + Good + Password quality + ดี + + + Excellent + Password quality + ดีมาก + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + PickcharsDialog KeePassXC - Pick Characters - + KeePassXC - เลือกอักขระ Select characters to type, navigate with arrow keys, Ctrl + S submits. - + เลือกอักขระที่จะพิมพ์ นำทางด้วยปุ่มลูกศร Ctrl + S เพื่อส่ง Press &Tab between characters + กด &Tab ระหว่างอักขระ + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported @@ -6123,6 +7311,10 @@ Do you want to overwrite it? Continue ทำต่อ + + Continue with weak password + + QObject @@ -6184,7 +7376,7 @@ Do you want to overwrite it? No valid UUID provided - + ไม่ได้ระบุ UUID ที่ถูกต้อง Unknown error @@ -6200,7 +7392,7 @@ Do you want to overwrite it? Could not save the native messaging script file for %1. - + ไม่สามารถบันทึกไฟล์สคริปต์การส่งข้อความดั้งเดิมสำหรับ %1 Username for the entry. @@ -6220,7 +7412,7 @@ Do you want to overwrite it? Notes for the entry. - + บันทึกช่วยจำสำหรับรายการ Notes @@ -6244,7 +7436,7 @@ Do you want to overwrite it? Cannot generate a password and prompt at the same time. - + ไม่สามารถสร้างรหัสผ่านและพรอมต์พร้อมกันได้ Could not create entry with path %1. @@ -6264,11 +7456,11 @@ Do you want to overwrite it? Adds a new group to a database. - + เพิ่มกลุ่มใหม่ไปยังฐานข้อมูล Path of the group to add. - + เส้นทางของกลุ่มที่จะเพิ่ม Group %1 already exists! @@ -6284,7 +7476,7 @@ Do you want to overwrite it? Check if any passwords have been publicly leaked. FILENAME must be the path of a file listing SHA-1 hashes of leaked passwords in HIBP format, as available from https://haveibeenpwned.com/Passwords. - + ตรวจสอบว่ารหัสผ่านใดรั่วไหลสู่สาธารณะหรือไม่ FILENAME ต้องเป็นเส้นทางของไฟล์ที่แสดงรายการแฮช SHA-1 ของรหัสผ่านที่รั่วในรูปแบบ HIBP ตามที่สามารถใช้ได้จาก https://haveibeenpwned.com/Passwords FILENAME @@ -6292,23 +7484,23 @@ Do you want to overwrite it? Path to okon-cli to search a formatted HIBP file - + เส้นทางไปยัง okon-cli เพื่อค้นหาไฟล์ HIBP ที่จัดรูปแบบ okon-cli - + okon-cli Analyze passwords for weaknesses and problems. - + วิเคราะห์รหัสผ่านสำหรับจุดอ่อนและปัญหา Cannot find HIBP file: %1 - + ไม่พบไฟล์ HIBP: %1 Evaluating database entries using okon… - + กำลังประเมินรายการฐานข้อมูลโดยใช้ okon… Failed to open HIBP file %1: %2 @@ -6316,31 +7508,31 @@ Do you want to overwrite it? Evaluating database entries against HIBP file, this will take a while… - + กำลังประเมินรายการฐานข้อมูลเทียบกับไฟล์ HIBP ซึ่งจะใช้เวลาสักครู่… Password for '%1' has been leaked %2 time(s)! - + รหัสผ่านสำหรับ '%1' รั่วไหลไปแล้ว %2 ครั้ง! Password for '%1' has been leaked! - + รหัสผ่านสำหรับ '%1' รั่วไหล! Export an attachment of an entry. - + ส่งออกเอกสารแนบของรายการ Path of the entry with the target attachment. - + เส้นทางของรายการที่มีเอกสารแนบเป้าหมาย Name of the attachment to be exported. - + ชื่อของเอกสารแนบที่จะส่งออก Path to which the attachment should be exported. - + เส้นทางที่ควรส่งออกเอกสารแนบ Could not find entry with path %1. @@ -6348,80 +7540,80 @@ Do you want to overwrite it? Could not find attachment with name %1. - + ไม่พบเอกสารแนบที่มีชื่อ %1 No export target given. Please use '--stdout' or specify an 'export-file'. - + ไม่ได้ระบุเป้าหมายการส่งออก กรุณาใช้ '--stdout' หรือระบุ 'export-file' Could not open output file %1. - + ไม่สามารถเปิดไฟล์ผลลัพธ์ %1 Successfully exported attachment %1 of entry %2 to %3. - + ส่งออกเอกสารแนบ %1 ของรายการ %2 ถึง %3 เรียบร้อยแล้ว Overwrite existing attachments. - + เขียนทับเอกสารแนบที่มีอยู่ Imports an attachment to an entry. - + นำเข้าเอกสารแนบกับรายการ Path of the entry. - + เส้นทางของรายการ Name of the attachment to be added. - + ชื่อของเอกสารแนบที่จะเพิ่ม Path of the attachment to be imported. - + เส้นทางของไฟล์แนบที่จะนำเข้า Attachment %1 already exists for entry %2. - + เอกสารแนบ %1 มีอยู่แล้วสำหรับรายการ %2 Could not open attachment file %1. - + ไม่สามารถเปิดไฟล์เอกสารแนบ %1 Successfully imported attachment %1 as %2 to entry %3. - + นำเข้าเอกสารแนบ %1 เป็น %2 ไปยังรายการ %3 เรียบร้อยแล้ว Remove an attachment of an entry. - + ลบเอกสารแนบของรายการ Name of the attachment to be removed. - + ชื่อของเอกสารแนบที่จะลบออก Successfully removed attachment %1 from entry %2. - + ลบเอกสารแนบ %1 ออกจากรายการ %2 เรียบร้อยแล้ว Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - + คัดลอกแอตทริบิวต์ที่กำหนดไปยังคลิปบอร์ด ค่าเริ่มต้นคือ "รหัสผ่าน" หากไม่ได้ระบุ Copy the current TOTP to the clipboard (equivalent to "-a totp"). - + คัดลอก TOTP ปัจจุบันไปยังคลิปบอร์ด (เทียบเท่ากับ "-a totp") Must match only one entry, otherwise a list of possible matches is shown. - + ต้องตรงกันเพียงรายการเดียว มิฉะนั้น รายการที่ตรงกันที่เป็นไปได้จะแสดงขึ้น Copy an entry's attribute to the clipboard. - + คัดลอกแอตทริบิวต์ของรายการไปยังคลิปบอร์ด Path of the entry to clip. @@ -6430,7 +7622,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + หมดเวลาก่อนที่จะล้างคลิปบอร์ด (ค่าเริ่มต้นคือ %1 วินาที ตั้งค่าเป็น 0 เพื่อไม่จำกัด) Invalid timeout value %1. @@ -6438,11 +7630,11 @@ Do you want to overwrite it? Multiple entries matching: - + การจับคู่หลายรายการ: Using matching entry: %1 - + การใช้รายการที่ตรงกัน: %1 Entry %1 not found. @@ -6450,7 +7642,7 @@ Do you want to overwrite it? ERROR: Please specify one of --attribute or --totp, not both. - + ข้อผิดพลาด: กรุณาระบุ --attribute หรือ --totp อย่างใดอย่างหนึ่ง ไม่ใช่ทั้งสองอย่าง Entry with path %1 has no TOTP set up. @@ -6458,15 +7650,15 @@ Do you want to overwrite it? ERROR: attribute %1 is ambiguous, it matches %2. - + ข้อผิดพลาด: แอตทริบิวต์ %1 ไม่ชัดเจน ซึ่งตรงกับ %2 Attribute "%1" not found. - + ไม่พบแอตทริบิวต์ "%1" Entry's "%1" attribute copied to the clipboard! - + คัดลอกแอตทริบิวต์ "%1" ของรายการไปยังคลิปบอร์ดแล้ว! Clearing the clipboard in %1 second(s)... @@ -6478,7 +7670,7 @@ Do you want to overwrite it? Close the currently opened database. - + ปิดฐานข้อมูลที่เปิดอยู่ในปัจจุบัน Display this help. @@ -6498,27 +7690,31 @@ Do you want to overwrite it? Deactivate password key for the database. - + ปิดใช้งานคีย์รหัสผ่านสำหรับฐานข้อมูล Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - + สล็อต Yubikey และซีเรียลเสริมที่ใช้เพื่อเข้าถึงฐานข้อมูล (เช่น 1:7370001) slot[:serial] - + สล็อต[:serial] Missing positional argument(s). - + ไม่มีอาร์กิวเมนต์ตำแหน่ง Too many arguments provided. - + มีอาร์กิวเมนต์มากเกินไป + + + Path of the database. + เส้นทางของฐานข้อมูล Target decryption time in MS for the database. - + เวลาถอดรหัสเป้าหมายใน MS สำหรับฐานข้อมูล time @@ -6526,31 +7722,27 @@ Do you want to overwrite it? Set the key file for the database. - + ตั้งค่าไฟล์คีย์สำหรับฐานข้อมูล Set a password for the database. - + สร้างรหัสผ่านสำหรับรายการ Create a new database. สร้างฐานข้อมูลใหม่ - - Path of the database. - เส้นทางของฐานข้อมูล - Invalid decryption time %1. - + เวลาถอดรหัสไม่ถูกต้อง %1 Target decryption time must be between %1 and %2. - + เวลาถอดรหัสเป้าหมายต้องอยู่ระหว่าง %1 ถึง %2 Failed to set database password. - + การตั้งรหัสผ่านสำหรับฐานข้อมูลล้มเหลว Loading the key file failed @@ -6562,15 +7754,15 @@ Do you want to overwrite it? Benchmarking key derivation function for %1ms delay. - + ฟังก์ชันการได้มาของคีย์การเปรียบเทียบสำหรับการหน่วงเวลา %1ms Setting %1 rounds for key derivation function. - + การตั้งค่า %1 รอบสำหรับฟังก์ชันการได้มาของคีย์ error while setting database key derivation settings. - + ข้อผิดพลาดขณะตั้งค่าการได้มาของคีย์ฐานข้อมูล File %1 already exists. @@ -6584,6 +7776,158 @@ Do you want to overwrite it? Successfully created new database. การสร้างฐานข้อมูลใหม่ประสบความสำเร็จ + + Unset the password for the database. + ยกเลิกการตั้งค่ารหัสผ่านสำหรับฐานข้อมูล + + + Unset the key file for the database. + ยกเลิกการตั้งค่าไฟล์คีย์สำหรับฐานข้อมูล + + + Edit a database. + แก้ไขฐานข้อมูล + + + Cannot use %1 and %2 at the same time. + ไม่สามารถใช้ %1 และ %2 ในเวลาเดียวกัน + + + Could not change the database key. + ไม่สามารถเปลี่ยนคีย์ฐานข้อมูล + + + Database was not modified. + ฐานข้อมูลไม่ถูกแก้ไข + + + Writing the database failed: %1 + การเขียนฐานข้อมูลล้มเหลว: %1 + + + Successfully edited the database. + แก้ไขฐานข้อมูลเรียบร้อยแล้ว + + + Cannot remove password: The database does not have a password. + ไม่สามารถลบรหัสผ่าน: ฐานข้อมูลไม่มีรหัสผ่าน + + + Cannot remove file key: The database does not have a file key. + ไม่สามารถลบคีย์ไฟล์: ฐานข้อมูลไม่มีคีย์ไฟล์ + + + Loading the new key file failed: %1 + การโหลดไฟล์คีย์ใหม่ล้มเหลว: %1 + + + Found unexpected Key type %1 + พบประเภทคีย์ที่ไม่คาดคิด %1 + + + Cannot remove all the keys from a database. + ไม่สามารถลบคีย์ทั้งหมดออกจากฐานข้อมูลได้ + + + Show a database's information. + แสดงฐานข้อมูลของรายการ + + + UUID: + UUID: + + + Name: + ชื่อ: + + + Description: + คำอธิบาย + + + Cipher: + Cipher: + + + KDF: + KDF: + + + Recycle bin is enabled. + เปิดใช้งานถังรีไซเคิลแล้ว + + + Recycle bin is not enabled. + ไม่ได้เปิดใช้งานถังรีไซเคิล + + + Location + ที่ตั้ง + + + Database created + ฐานข้อมูลได้รับการสร้าง + + + Last saved + บันทึกครั้งสุดท้าย + + + Unsaved changes + ความเปลี่ยนแปลงที่ยังไม่ได้บันทึก + + + yes + ใช่ + + + no + ไม่ + + + Number of groups + จำนวนกลุ่ม + + + Number of entries + จำนวนรายการ + + + Number of expired entries + จำนวนรายการที่หมดอายุ + + + Unique passwords + รหัสผ่านที่ไม่ซ้ำ + + + Non-unique passwords + รหัสผ่านที่ซ้ำ + + + Maximum password reuse + ใช้รหัสผ่านซ้ำได้สูงสุด + + + Number of short passwords + จำนวนรหัสผ่านขนาดสั้น + + + Number of weak passwords + จำนวนรหัสผ่านที่อ่อนแอ + + + Entries excluded from reports + รายการที่ไม่รวมอยู่ในรายงาน + + + Average password length + ความยาวของรหัสผ่านโดยสังเขป + + + %1 characters + %1 ตัวอักษร + Word count for the diceware passphrase. จำนวนคำสำหรับวลีรหัสผ่าน diceware @@ -6607,10 +7951,6 @@ Do you want to overwrite it? Invalid word count %1 จำนวนคำไม่ถูกรูปแบบ %1 - - The word list is too small (< 1000 items) - - Title for the entry. หัวเรื่องสำหรับรายการ @@ -6635,10 +7975,6 @@ Do you want to overwrite it? Enter new password for entry: ใส่รหัสผ่านใหม่สำหรับรายการ - - Writing the database failed: %1 - การเขียนฐานข้อมูลล้มเหลว: %1 - Successfully edited entry %1. แก้ไขรายการ %1 สำเร็จ @@ -6745,7 +8081,7 @@ Do you want to overwrite it? Type: Unknown (%1) - + ชนิด: ไม่ทราบ (%1) Entropy %1 (%2) @@ -6757,15 +8093,11 @@ Do you want to overwrite it? Exit interactive mode. - - - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - + ออกจากโหมดโต้ตอบ Exports the content of a database to standard output in the specified format. - + ส่งออกเนื้อหาของฐานข้อมูลไปยังเอาต์พุตมาตรฐานในรูปแบบที่ระบุ Unable to export database to XML: %1 @@ -6813,7 +8145,7 @@ Do you want to overwrite it? Use custom character set - + ใช้ชุดอักขระที่กำหนดเอง Exclude similar looking characters @@ -6833,11 +8165,11 @@ Do you want to overwrite it? Invalid password generator after applying all options - + ตัวสร้างรหัสผ่านไม่ถูกต้องหลังจากใช้ตัวเลือกทั้งหมด Display command help. - + แสดงคำสั่งช่วยเหลือ Available commands: @@ -6845,15 +8177,15 @@ Do you want to overwrite it? Import the contents of an XML database. - + นำเข้าเนื้อหาของฐานข้อมูล XML Path of the XML database export. - + เส้นทางของการส่งออกฐานข้อมูล XML Path of the new database. - + เส้นทางของฐานข้อมูลใหม่ Unable to import XML database: %1 @@ -6861,107 +8193,7 @@ Do you want to overwrite it? Successfully imported database. - - - - Show a database's information. - - - - UUID: - - - - Name: - - - - Description: - - - - Cipher: - - - - KDF: - - - - Recycle bin is enabled. - - - - Recycle bin is not enabled. - - - - Location - ที่ตั้ง - - - Database created - - - - Last saved - บันทึกครั้งสุดท้าย - - - Unsaved changes - ความเปลี่ยนแปลงที่ยังไม่ได้บันทึก - - - yes - ใช่ - - - no - ไม่ - - - Number of groups - จำนวนกลุ่ม - - - Number of entries - จำนวนรายการ - - - Number of expired entries - จำนวนรายการที่หมดอายุ - - - Unique passwords - รหัสผ่านที่ไม่ซ้ำ - - - Non-unique passwords - รหัสผ่านที่ซ้ำ - - - Maximum password reuse - ใช้รหัสผ่านซ้ำได้สูงสุด - - - Number of short passwords - จำนวนรหัสผ่านขนาดสั้น - - - Number of weak passwords - จำนวนรหัสผ่านที่อ่อนแอ - - - Entries excluded from reports - - - - Average password length - - - - %1 characters - %1 ตัวอักษร + การสร้างฐานข้อมูลใหม่ประสบความสำเร็จ Unknown command %1 @@ -6983,7 +8215,7 @@ Available commands: Displays debugging information. - + แสดงข้อมูลการดีบัก Invalid command %1. @@ -6995,7 +8227,7 @@ Available commands: Flattens the output to single lines. - + ปรับเอาต์พุตให้เป็นบรรทัดเดียว List database entries. @@ -7019,15 +8251,15 @@ Available commands: Deactivate password key for the database to merge from. - + ปิดใช้งานรหัสรหัสผ่านสำหรับฐานข้อมูลที่จะผสานรวมจาก Only print the changes detected by the merge operation. - + พิมพ์เฉพาะการเปลี่ยนแปลงที่ตรวจพบโดยการดำเนินการผสานรวม Yubikey slot for the second database. - + สล็อต Yubikey สำหรับฐานข้อมูลที่สอง slot @@ -7061,15 +8293,15 @@ Available commands: Moves an entry to a new group. - + ย้ายรายการไปยังกลุ่มใหม่ Path of the entry to move. - + เส้นทางของรายการที่จะย้าย Path of the destination group. - + เส้นทางของกลุ่มปลายทาง Could not find group with path %1. @@ -7105,11 +8337,11 @@ Available commands: Path of the group to remove. - + เส้นทางของกลุ่มที่จะลบ Cannot remove root group from database. - + ไม่สามารถลบกลุ่มรูทออกจากฐานข้อมูล Successfully recycled group %1. @@ -7133,11 +8365,15 @@ Available commands: Show the protected attributes in clear text. - + แสดงแอตทริบิวต์ที่ได้รับการป้องกันในข้อความธรรมดา + + + Show all the attributes of the entry. + แสดงคุณสมบัติทั้งหมดของรายการ Show the attachments of the entry. - + แสดงเอกสารแนบของรายการ 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. @@ -7161,11 +8397,11 @@ Available commands: No attachments present. - + ไม่พบเอกสารแนบ Attachments: - + เอกสารที่แนบมาด้วย Failed to open database file %1: not found @@ -7192,7 +8428,10 @@ Available commands: stop supporting in the future. Please consider generating a new key file. - + คำเตือน: คุณกำลังใช้รูปแบบไฟล์คีย์เก่าซึ่ง KeePassXC อาจ +หยุดสนับสนุนในอนาคต + +กรุณาพิจารณาสร้างไฟล์คีย์ใหม่ Invalid YubiKey slot %1 @@ -7202,13 +8441,17 @@ Please consider generating a new key file. Invalid YubiKey serial %1 เลขชุด YubiKey ไม่ถูกรูปแบบ %1 + + Please present or touch your YubiKey to continue. + กรุณาแสดงหรือสัมผัส YubiKey ของคุณเพื่อดำเนินการต่อ + Enter password to encrypt database (optional): - + ป้อนรหัสผ่านเพื่อเข้ารหัสฐานข้อมูล (ไม่บังคับ): Do you want to create a database with an empty password? [y/N]: - + คุณต้องการสร้างฐานข้อมูลด้วยรหัสผ่านเปล่าหรือไม่? [y/N]: Repeat password: @@ -7225,7 +8468,8 @@ Please consider generating a new key file. All clipping programs failed. Tried %1 - + โปรแกรมตัดคลิปล้มเหลวทั้งหมด ลองใช้ %1 + Creating KeyFile %1 failed: %2 @@ -7241,63 +8485,63 @@ Please consider generating a new key file. To use okon, you must provide a post-processed file (e.g. file.okon) - + หากต้องการใช้ okon คุณต้องจัดเตรียมไฟล์หลังการประมวลผล (เช่น file.okon) Could not start okon process: %1 - + ไม่สามารถเริ่มกระบวนการ okon: %1 Error: okon process did not finish - + ข้อผิดพลาด: กระบวนการ okon ไม่เสร็จสิ้น Failed to load okon processed database: %1 - + ไม่สามารถโหลดฐานข้อมูลที่ประมวลผล okon: %1 Very weak password - + รหัสผ่านอ่อนแอมาก Password entropy is %1 bits - + เอนโทรปีรหัสผ่านคือ %1 บิต Weak password - + รหัสผ่านอ่อนแอ Used in %1/%2 - + ใช้ใน %1/%2 Password is used %1 time(s) - + มีการใช้รหัสผ่าน %1 ครั้ง Password has expired - + รหัสผ่านหมดอายุแล้ว Password expiry was %1 - + รหัสผ่านหมดอายุแล้วเมื่อ %1 Password expires on %1 - + รหัสผ่านจะหมดอายุเมื่อ %1 Password is about to expire - + รหัสผ่านกำลังจะหมดอายุ Password expires in %1 day(s) - + รหัสผ่านจะหมดอายุใน %1 วัน Password will expire soon - + รหัสผ่านกำลังจะหมดอายุเร็วๆ นี้ Version %1 @@ -7349,11 +8593,11 @@ Kernel: %3 %4 Quick Unlock - + ปลดล็อกอย่างเร็ว Secret Service Integration - + การผสานรวมบริการลับ None @@ -7365,35 +8609,35 @@ Kernel: %3 %4 over %1 year(s) - + มากกว่า %1 ปี about %1 month(s) - + ประมาณ %1 เดือน %1 week(s) - + %1 สัปดาห์ %1 day(s) - + %1 วัน %1 hour(s) - + %1 ชั่วโมง %1 minute(s) - + %1 นาที - Botan library must be at least 2.11.x, found %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 Cryptographic libraries: - + ไลบรารีการเข้ารหัสลับ: AES (%1 rounds) @@ -7401,31 +8645,31 @@ Kernel: %3 %4 Argon2%1 (%2 rounds, %3 KB) - + Argon2% 1 (%2 รอบ ,%3 KB) SymmetricCipher::init: Invalid cipher mode. - + SymmetricCipher::init: โหมดการเข้ารหัสไม่ถูกต้อง SymmetricCipher::init: Invalid IV size of %1 for %2. - + SymmetricCipher::init: ขนาด IV ที่ไม่ถูกต้องของ %1 สำหรับ %2 Cipher not initialized prior to use. - + Cipher ไม่ได้เริ่มต้นก่อนใช้งาน Cannot process 0 length data. - + ไม่สามารถประมวลผลข้อมูลความยาว 0 unknown executable (DBus address %1) - + การดำเนินการที่ไม่รู้จัก (ที่อยู่ DBus %1) %1 (invalid executable path) - + %1 (เส้นทางปฏิบัติการไม่ถูกต้อง) NULL device @@ -7439,18 +8683,6 @@ Kernel: %3 %4 file empty แฟ้มว่างเปล่า - - malformed string - รูปแบบสตริงไม่ถูกต้อง - - - missing closing quote - เครื่องหมายปิดคำพูดหายไป - - - %1: (row, col) %2,%3 - %1: (row, col) %2,%3 - AES 256-bit AES 256 บิต @@ -7461,15 +8693,15 @@ Kernel: %3 %4 ChaCha20 256-bit - + ChaCha20 256 บิต Argon2d (KDBX 4 – recommended) - + Argon2d (KDBX 4 – แนะนํา) Argon2id (KDBX 4) - + Argon2id (KDBX 4) AES-KDF (KDBX 4) @@ -7477,7 +8709,7 @@ Kernel: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7489,7 +8721,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - + กำลังล้างคลิปบอร์ดใน %1 วินาที… Group @@ -7539,23 +8771,23 @@ Kernel: %3 %4 Do you really want to delete the entry "%1" for good? - + คุณต้องการลบรายการ "%1" ตลอดไปหรือไม่? Do you really want to delete %n entry(s) for good? - + คุณต้องการลบรายการ %n ตลอดไปหรือไม่? Delete entry(s)? - + ลบรายการหรือไม่? 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 ไปที่ถังรีไซเคิลหรือไม่? Move entry(s) to recycle bin? @@ -7563,31 +8795,31 @@ Kernel: %3 %4 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 รายการ คุณต้องการเขียนทับการอ้างอิงด้วยค่า ข้ามรายการนี้ หรือลบต่อไปหรือไม่? User name - + ชื่อผู้ใช้ Browser Statistics - + สถิติของเบราว์เซอร์ Health Check - + ตรวจสุขภาพ HIBP - + HIBP Statistics - + สถิติ Unsupported key file version: %1 @@ -7595,11 +8827,11 @@ Kernel: %3 %4 Checksum mismatch! Key file may be corrupt. - + Checksum ไม่ตรงกัน! ไฟล์คีย์อาจเสียหาย Unexpected key file data! Key file may be corrupt. - + ข้อมูลไฟล์คีย์โดยไม่คาดคิด! ไฟล์คีย์อาจเสียหาย KeePassXC - cross-platform password manager @@ -7615,11 +8847,11 @@ Kernel: %3 %4 path to a custom local config file - + เส้นทางไปยังไฟล์ปรับแต่งในเครื่องที่กำหนดเอง lock all open databases - + ล็อคฐานข้อมูลเปิดทั้งหมด key file of the database @@ -7629,22 +8861,18 @@ Kernel: %3 %4 read password of the database from stdin อ่านรหัสผ่านของฐานข้อมูลจาก stdin - - allow app screen recordering and screenshots - - - - Locked databases. - - Database failed to lock. - + การล็อคฐานข้อมูลไม่สำเร็จ Another instance of KeePassXC is already running. แอป KeePassXC อีกตัวกำลังทำงานอยู่ + + KeePassXC is not running. No open database to lock + KeePassXC ไม่ทำงาน ไม่มีฐานข้อมูลแบบเปิดให้ล็อก + Fatal error while testing the cryptographic functions. เกิดข้อผิดพลาดร้ายแรงขณะทดสอบฟังก์ชั่นการเข้ารหัส @@ -7653,10 +8881,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - ข้อผิดพลาด - - Warning: Failed to prevent screenshots on a top level window! - - Database password: รหัสผ่านฐานข้อมูล @@ -7673,16 +8897,319 @@ Kernel: %3 %4 Failed to create Windows Hello credential. - + สร้างข้อมูลรับรอง Windows Hello ไม่สำเร็จ Failed to sign challenge using Windows Hello. + ไม่สามารถลงชื่อชาเลนจ์โดยใช้ Windows Hello + + + Warning: Failed to block screenshot capture on a top-level window. + คำเตือน: ไม่สามารถบล็อกการจับภาพหน้าจอในหน้าต่างระดับบนสุด + + + Invalid Cipher + Cipher ไม่ถูกต้อง + + + Invalid KDF + KDF ไม่ถูกต้อง + + + Access to all entries is denied - Please present or touch your YubiKey to continue. + allow screenshots and app recording (Windows/macOS) + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + + + + Databases have been locked. + + + + Attestation not supported + + + + Credential is excluded + + + + Passkeys request canceled + + + + Invalid user verification + + + + Empty public key + + + + Invalid URL provided + + + + Passkeys + + + + AES initialization failed + + + + AES encrypt failed + + + + Failed to store in Linux Keyring + + + + Polkit returned an error: %1 + + + + Could not locate key in keyring + + + + Could not read key in keyring + + + + AES decrypt failed + + + + No Polkit authentication agent was available + + + + Polkit authorization failed + + + + No Quick Unlock provider is available + + + + Failed to init KeePassXC crypto. + ไม่สามารถเริ่มต้นการเข้ารหัสใน KeePassXC + + + Failed to encrypt key data. + เข้ารหัสกุญแจข้อมูลไม่สำเร็จ + + + Failed to get Windows Hello credential. + ไม่สามารถรับข้อมูลประจำตัวของบริการ Windows Hello + + + Failed to decrypt key data. + ถอดรหัสกุญแจข้อมูลไม่สำเร็จ + + + Origin is empty or not allowed + + + + Effective domain is not a valid domain + + + + Origin and RP ID do not match + + + + No supported algorithms were provided + + + + Wait for timer to expire + + + + Challenge is shorter than required minimum length + + + + user.id does not match the required length + + + + Favorite + Tag for favorite entries + + + + File does not exist. + ไม่มีแฟ้ม + + + Cannot open file: %1 + เปิดแฟ้มไม่ได้: %1 + + + Cannot parse file: %1 at position %2 + + + + Failed to decrypt json file: %1 + + + + Invalid encKeyValidation field + + + + Invalid cipher list within encKeyValidation field + + + + Wrong password + รหัสผ่านผิด + + + Invalid encrypted data field + + + + Invalid cipher list within encrypted data field + + + + Cannot initialize cipher + + + + Cannot decrypt data + + + + Bitwarden Import + + + + Archived + Tag for archived entries + + + + Invalid 1PUX file format: Not a valid ZIP file. + + + + Invalid 1PUX file format: Missing export.data + + + + 1Password Import + + + + Enter Shortcut + + + + Action + + + + Shortcuts + + + + Unknown passkeys error + + + + Invalid KDF iterations, cannot decrypt json file + + + + Unsupported format, ensure your Bitwarden export is password-protected + + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + + + + Reset Shortcuts + + + + Double click an action to change its shortcut + + + + Filter... + + + + Shortcut Conflict + + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + + + + Cannot generate valid passphrases because the wordlist is too short + + + + Encrypted files are not supported. + + + + Proton Pass Import + + + + Delete plugin data? + ลบข้อมูลโปรแกรมเสริมหรือไม่ + + + Delete plugin data from Entry(s)? + + + + Passkey + + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + แท็ก + QtIOCompressor @@ -7718,43 +9245,62 @@ Kernel: %3 %4 ความผิดพลาดภายในของ zlib + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + + + + Invalid download parameters provided. + + + + Command `%1` failed to download database. + + + + Invalid database pointer or upload parameters provided. + + + + Command `%1` exited with status code: %2 + + + + Failed to upload merged database. Command `%1` exited with status code: %2 + + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + คลิก 2 ครั้ง ที่รายการเพื่อแก้ไข List of entry URLs - + ที่อยู่เว็ปของการนำข้อมูลเข้าสู่ระบบ Entry has no URLs set - + รายการไม่มีที่อยู่เว็ป Allowed URLs - + ที่อยู่เว็ปที่ได้รับการอนุญาต Entry has no Browser Integration settings - + รายการไม่มีการตั้งค่าการผสานรวมเบราว์เซอร์ Denied URLs - + ที่อยู่เว็ปที่ถูกปฏิเสธ (Excluded) @@ -7766,11 +9312,11 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - + กรุณารอ กำลังคำนวณสถิติเบราว์เซอร์… No entries with a URL, or none has browser extension settings saved. - + ไม่มีรายการที่มี URL หรือไม่มีการบันทึกการตั้งค่าส่วนขยายของเบราว์เซอร์ Title @@ -7782,58 +9328,67 @@ Kernel: %3 %4 URLs - + ที่อยู่เว็ป Edit Entry… - + แก้ไขการนำข้อมูลเข้าสู่ระบบ Delete Entry(s)… - + ลบรายการหรือไม่? Exclude from reports ไม่นับรวมในรายงาน + + Expire Entry(s)… + + + + Only show entries that have a URL + + + + Only show entries that have been explicitly allowed or denied + + + + Show expired entries + แสดงรายการที่หมดอายุ + + + (Expired) + (หมดอายุ) + + + Delete plugin data from Entry(s)… + + ReportsWidgetHealthcheck - Exclude expired entries from the report - + Show expired entries + แสดงรายการที่หมดอายุ - Also show entries that have been excluded from reports - + (Expired) + (หมดอายุ) Hover over reason to show additional details. Double-click entries to edit. - - - - Bad - Password quality - เลวร้าย + วางเมาส์เหนือเหตุผลเพื่อแสดงรายละเอียดเพิ่มเติม ดับเบิลคลิกที่รายการเพื่อแก้ไข Bad — password must be changed เลวร้าย — ต้องเปลี่ยนรหัสผ่าน - - Poor - Password quality - แย่ - Poor — password should be changed แย่ — ควรเปลี่ยนรหัสผ่าน - - Weak - Password quality - อ่อนแอ - Weak — consider changing the password อ่อนแอ — ควรพิจารณารหัสผ่านใหม่ @@ -7848,7 +9403,7 @@ Kernel: %3 %4 Please wait, health data is being calculated… - + โปรดรอ ระหว่างที่การตรวจสุขภาพกำลังดำเนินการ Congratulations, everything is healthy! @@ -7872,34 +9427,42 @@ Kernel: %3 %4 Edit Entry… - + แก้ไขการนำข้อมูลเข้าสู่ระบบ Delete Entry(s)… - + ลบรายการหรือไม่? Exclude from reports ไม่นับรวมในรายงาน + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - + ข้อควรระวัง: รายงานฉบับนี้จำเป็นต้องส่งข้อมูลไปยังบริการออนไลน์ Have I been Pwned (https://haveibeenpwned.com) หากคุณดำเนินการต่อ รหัสผ่านฐานข้อมูลของคุณจะถูกแฮชแบบเข้ารหัส และอักขระห้าตัวแรกของแฮชเหล่านั้นจะถูกส่งไปยังบริการนี้อย่างปลอดภัย ฐานข้อมูลของคุณยังคงปลอดภัยและไม่สามารถสร้างขึ้นใหม่จากข้อมูลนี้ได้ อย่างไรก็ตาม จำนวนรหัสผ่านที่คุณส่งและที่อยู่ IP ของคุณจะถูกเปิดเผยต่อบริการนี้ Perform Online Analysis - + แสดงการวิเคราะห์ข้อมูลออนไลน์ Also show entries that have been excluded from reports - + แสดงรายการที่ถูกกันออกไปจากรายงาน This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - + KeePassXC รุ่นนี้ไม่มีฟังก์ชันเครือข่าย จำเป็นต้องมีการสร้างเครือข่ายเพื่อตรวจสอบรหัสผ่านของคุณกับฐานข้อมูล Have I been Pwned Congratulations, no exposed passwords! @@ -7928,61 +9491,132 @@ Kernel: %3 %4 once Password exposure amount - + ครั้งหนึ่ง up to 10 times Password exposure amount - + จนถึง 10 ครั้ง up to 100 times Password exposure amount - + ได้ถึง 100 ครั้ง up to 1000 times Password exposure amount - + ได้ถึง 1000 ครั้ง up to 10,000 times Password exposure amount - + ได้ถึง 10,000 ครั้ง up to 100,000 times Password exposure amount - + ได้ถึง 100,000 ครั้ง up to a million times Password exposure amount - + ได้ถึง 1,000,000 ครั้ง millions of times Password exposure amount - + ได้หลายล้านเท่า Edit Entry… - + แก้ไขการนำข้อมูลเข้าสู่ระบบ Delete Entry(s)… - + ลบรายการหรือไม่? Exclude from reports ไม่นับรวมในรายงาน + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + ส่งออก + + + Import + นำเข้า + + + List of entry URLs + ที่อยู่เว็ปของรายการ + + + Title + หัวข้อ + + + Path + เส้นทาง + + + Username + ชื่อผู้ใช้ + + + URLs + ที่อยู่เว็ป + + + Edit Entry… + แก้ไขรายการ + + + Delete Entry(s)… + ลบรายการ... + + + Relying Party + + + + Show expired entries + แสดงรายการที่หมดอายุ + + + (Expired) + (หมดอายุ) + + + Export Confirmation + ยืนยันการส่งออก + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + + + + Please wait, list of entries with passkeys is being updated… + + + + No entries with passkeys. + + ReportsWidgetStatistics Hover over lines with error icons for further information. - + วางเมาส์เหนือบรรทัดที่มีไอคอนข้อผิดพลาดเพื่อดูข้อมูลเพิ่มเติม Name @@ -7994,7 +9628,7 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - + กรุณารอสักครู่ กำลังคำนวณสถิติฐานข้อมูล… Database name @@ -8010,7 +9644,7 @@ Kernel: %3 %4 Database created - + ฐานข้อมูลได้รับการสร้าง Last saved @@ -8030,7 +9664,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - + ฐานข้อมูลได้รับการแก้ไข แต่การเปลี่ยนแปลงยังไม่ได้บันทึกลงดิสก์ Number of groups @@ -8066,7 +9700,7 @@ Kernel: %3 %4 Some passwords are used more than three times. Use unique passwords when possible. - + รหัสผ่านบางรหัสถูกใช้มากกว่าสามครั้ง ใช้รหัสผ่านเฉพาะเมื่อเป็นไปได้ Number of short passwords @@ -8074,7 +9708,7 @@ Kernel: %3 %4 Recommended minimum password length is at least 8 characters. - + ความยาวของรหัสผ่านที่แนะนำคือ 8 ตัวอักษรเป็นอย่างตํ่า Number of weak passwords @@ -8082,19 +9716,19 @@ Kernel: %3 %4 Recommend using long, randomized passwords with a rating of 'good' or 'excellent'. - + แนะนำให้ใช้รหัสผ่านแบบสุ่มแบบยาว ๆ โดยให้คะแนนเป็น 'ดี' หรือ 'ดีเยี่ยม' Entries excluded from reports - + รายการที่ไม่รวมอยู่ในรายงาน Excluding entries from reports, e. g. because they are known to have a poor password, isn't necessarily a problem but you should keep an eye on them. - + การแยกรายการออกจากรายงาน เช่น เนื่องจากเป็นที่ทราบกันดีว่ามีรหัสผ่านที่ไม่รัดกุม จึงไม่จำเป็นต้องเป็นปัญหา แต่คุณควรจับตาดูให้ดี Average password length - + ความยาวของรหัสผ่านโดยสังเขป %1 characters @@ -8102,7 +9736,7 @@ Kernel: %3 %4 Average password length is less than ten characters. Longer passwords provide more security. - + ความยาวรหัสผ่านโดยเฉลี่ยน้อยกว่าสิบอักขระ รหัสผ่านที่ยาวขึ้นจะให้ความปลอดภัยมากยิ่งขึ้น @@ -8121,7 +9755,7 @@ Kernel: %3 %4 Key identity ownership conflict. Refusing to add. - + ความขัดแย้งในการเป็นเจ้าของข้อมูลประจำตัวที่สำคัญ การปฏิเสธที่จะเพิ่ม Agent refused this identity. Possible reasons include: @@ -8141,7 +9775,7 @@ Kernel: %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + ตัวแทนไม่รองรับคีย์รักษาความปลอดภัยหรือผู้ให้บริการคีย์รักษาความปลอดภัยไม่พร้อมใช้งาน No agent running, cannot remove identity. @@ -8149,6 +9783,14 @@ Kernel: %3 %4 No agent running, cannot list identities. + ไม่มีตัวแทนทำงาน ไม่สามารถระบุตัวตนได้ + + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. @@ -8217,10 +9859,14 @@ Kernel: %3 %4 Search Help ตัวช่วยค้นหา + + Save Search + บันทึกการค้นหา + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + ค้นหา (%1)… Case sensitive @@ -8243,7 +9889,7 @@ Kernel: %3 %4 DBus Address - + ที่อยู่ DBus Manage @@ -8273,7 +9919,7 @@ Kernel: %3 %4 Enable KeepassXC Freedesktop.org Secret Service integration - + เปิดใช้งานการผสานรวมบริการลับ KeepassXC Freedesktop.org General @@ -8281,43 +9927,27 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - + แสดงการแจ้งเตือนเมื่อลูกค้าดึงรหัสผ่าน <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html> <head/> <body> <p> หากเปิดใช้งาน ความพยายามใด ๆ ในการอ่านรหัสผ่านจะต้องได้รับการยืนยัน มิฉะนั้นลูกค้าสามารถอ่านรหัสผ่านได้โดยไม่ต้องยืนยันเมื่อฐานข้อมูลได้รับการปลดล็อค </p> <p> ตัวเลือกนี้ครอบคลุมเฉพาะการเข้าถึงรหัสผ่านของรายการเท่านั้น ลูกค้าสามารถแจกแจงรายการของฐานข้อมูลที่เปิดเผยและสืบค้นแอตทริบิวต์ของเขาได้เสมอ </p> </body> </html> Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + ยืนยันเมื่อลูกค้านำรหัสผ่านกลับมาได้สำเร็จ Confirm when clients request entry deletion - - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - + ยืนยันเมื่อลูกค้าร้องขอการลบรายการ Prompt to unlock database before searching - + แจ้งให้ปลดล็อกฐานข้อมูลก่อนค้นหา Exposed database groups: - + กลุ่มฐานข้อมูลที่เปิดเผย: Authorization @@ -8325,7 +9955,7 @@ Kernel: %3 %4 These applications are currently connected: - + แอปพลิเคชันเหล่านี้กำลังอยู่ระหว่างการเชื่อมต่อ <b>Warning:</b> @@ -8333,6 +9963,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. + บันทึกการเปลี่ยนแปลงปัจจุบันเพื่อเปิดใช้งานปลั๊กอิน และเปิดใช้งานการแก้ไขส่วนนี้ + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> @@ -8360,7 +9998,7 @@ Kernel: %3 %4 Only show warnings and errors - + แสดงผลแค่การเตือนและข้อผิดพลาด Own certificate @@ -8372,7 +10010,7 @@ Kernel: %3 %4 Generate new certificate - + สร้างใบรับรองใหม่ Generate @@ -8384,7 +10022,7 @@ Kernel: %3 %4 Signer name field - + ฟิลด์ชื่อผู้ลงนาม Fingerprint @@ -8395,14 +10033,14 @@ Kernel: %3 %4 ShareExport Could not write export container. - + ไม่สามารถเขียนคอนเทนเนอร์การส่งออก ShareImport Successful import - + การนำข้อมูลเข้าสู่ระบบสำเร็จ @@ -8429,7 +10067,7 @@ Kernel: %3 %4 Export to %1 failed (%2) - ส่งออกไป %1 ล้มเหลว (%2) + ส่งออกไป %1 ไม่สำเร็จ (%2) Export to %1 successful (%2) @@ -8443,16 +10081,39 @@ Kernel: %3 %4 TagModel - All - + Clear Search + ล้างการค้นหา + + + All Entries + รายการทั้งหมด Expired - + หมดอายุแล้ว Weak Passwords - + รหัสผ่านอ่อนแอ + + + + TagView + + Remove Search + ลบการค้นหา + + + Remove Tag + ลบแท็ก + + + Confirm Remove Tag + ยืนยันการลบแท็ก + + + Remove tag "%1" from all entries in this database? + ลบแท็ก "%1" ออกจากรายการทั้งหมดในฐานข้อมูลนี้หรือไม่? @@ -8502,23 +10163,23 @@ Kernel: %3 %4 Secret key must be in Base32 format - + คีย์ลับต้องอยู่ในรูปแบบ Base32 Secret key field - + ช่องคีย์ลับ Default settings (RFC 6238) - + การตั้งค่าเริ่มต้น Steam® settings - + การตั้งค่าสตีม Custom settings: - + การตั้งค่าแบบปรับแต่งเอง Custom Settings @@ -8534,7 +10195,7 @@ Kernel: %3 %4 Time step field - + ช่องหัวเรื่อง sec @@ -8551,12 +10212,13 @@ Kernel: %3 %4 Invalid TOTP Secret - + ข้อมูลลับของ TOTP ไม่ถูกต้อง You have entered an invalid secret key. The key must be in Base32 format. Example: JBSWY3DPEHPK3PXP - + คุณป้อนรหัสลับที่ไม่ถูกต้อง รหัสต้องอยู่ในรูปแบบเลขฐาน 32 +ตัวอย่าง: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings @@ -8578,11 +10240,11 @@ Example: JBSWY3DPEHPK3PXP UpdateCheckDialog Checking for updates - &ตรวจหาการปรับรุ่น + ตรวจหาการปรับรุ่น Checking for updates… - + กำลังตรวจหาการปรับรุ่น... Close @@ -8594,15 +10256,15 @@ Example: JBSWY3DPEHPK3PXP An error occurred when trying to retrieve update information, please try again later. - + เกิดข้อผิดพลาดขณะพยายามดึงข้อมูลปรับรุ่น โปรดลองอีกครั้งในภายหลัง <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>เวอร์ชันใหม่พร้อมแล้ว</strong><br/>KeePassXC %1 <a href="https://keepassxc.org/download/">สามารถดาวน์โหลด ได้ที่นี่</a> You have the latest version of KeePassXC - + คุณมี KeePassXC เวอร์ชันล่าสุด @@ -8611,26 +10273,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database เริ่มเก็บรหัสผ่านของคุณให้ปลอดภัยในฐานข้อมูลของ KeePassXC - - Create new database - สร้างฐานข้อมูลใหม่ - - - Open existing database - เปิดฐานข้อมูลที่มีอยู่ - - - Import from KeePass 1 - นำเข้าจาก KeePass 1 - - - Import from 1Password - นำเข้าจาก 1Password - - - Import from CSV - นำเข้าจาก CSV - Recent databases ฐานข้อมูลที่เพิ่งใช้ @@ -8643,101 +10285,78 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 ยินดีต้อนรับสู่ KeePassXC %1 + + Create Database + สร้างฐานข้อมูล + + + Open Database + เปิดฐานข้อมูล + + + Import File + นำเข้าแฟ้ม + WinUtils Invalid key code - + แฟ้มกุญแจไม่ถูกต้อง Global shortcut already registered to %1 - + ทางลัดส่วนกลางได้ลงทะเบียน %1 . แล้ว Could not register global shortcut - - - - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - + ไม่สามารถลงทะเบียนทางลัดของส่วนกลาง YubiKey - - %1 No interface, slot %2 - - General: - + ทั่วไป: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + ไม่พบส่วนติดต่อสำหรับรหัสฮาร์ดแวร์ที่มีหมายเลขซีเรียล %1 โปรดเชื่อมต่อเพื่อดำเนินการต่อ YubiKeyEditWidget - - Refresh hardware tokens - - - - Refresh - เรียกใหม่ - Hardware key slot selection - + การเลือกช่องคีย์ฮาร์ดแวร์ Could not find any hardware keys! - + ไม่พบคีย์ฮาร์ดแวร์ใดๆ! Selected hardware key slot does not support challenge-response! - + ช่องของคีย์ฮาร์ดแวร์ที่เลือก ไม่สนับสนุนรหัสสอบถาม-รหัสตอบกลับ Challenge-Response - + รหัสสอบถาม-รหัสตอบกลับ Add Challenge-Response - + เพิ่ม รหัสสอบถาม-รหัสตอบกลับ Change Challenge-Response - + เปลี่ยน รหัสสอบถาม-รหัสตอบกลับ Remove Challenge-Response - + ลบ รหัสสอบถาม-รหัสตอบกลับ Challenge-Response set, click to change or remove - - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + รหัสสอบถาม-รหัสตอบกลับ ได้ตั้งค่า คลิกเพื่อเปลี่ยนหรือลบ Detecting hardware keys… @@ -8747,44 +10366,56 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected ตรวจไม่พบกุญแจฮาร์ดแวร์ - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 ช่องที่ไม่ถูกรูปแบบถูกระบุมา - %2 + Refresh hardware keys + + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + + + + Hardware keys found, but no slots are configured + YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - - - Hardware key is currently in use. - ใช้กุญแจฮาร์ดแวร์อยู่ + ส่วนติดต่อของ YubiKey PCSC ยังไม่ได้เริ่มต้น Could not find or access hardware key with serial number %1. Please present it to continue. - + ไม่พบหรือเข้าถึงรหัสฮาร์ดแวร์ที่มีหมายเลขซีเรียล %1 โปรดแสดงมันเพื่อดำเนินการต่อ Hardware key is locked or timed out. Unlock or re-present it to continue. - + กุญแจฮาร์ดแวร์ถูกล็อคหรือหมดเวลา กรุณาปลดล็อกหรือดำเนินการใหม่เพื่อดำเนินการต่อ Hardware key was not found or is not configured. - + ไม่พบกุญแจของฮาร์ดแวร์ หรือไม่ได้กำหนดค่าไว้ Failed to complete a challenge-response, the PCSC error code was: %1 + ดำเนินการไม่สำเร็จ รหัสสอบถาม-รหัสตอบกลับ, ข้อผิดพลาดของ PCSC: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + + Press + USB Challenge-Response Key interaction request + กด + + + Passive + USB Challenge-Response Key no interaction required + แพสซีฟ + YubiKeyInterfaceUSB @@ -8792,14 +10423,6 @@ Example: JBSWY3DPEHPK3PXP Unknown ไม่รู้จัก - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8812,26 +10435,32 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - - - Hardware key is currently in use. - ใช้กุญแจฮาร์ดแวร์อยู่ + ส่วนติดต่อของ USB YubiKey ยังไม่ได้เริ่มต้น Could not find hardware key with serial number %1. Please plug it in to continue. - + ไม่สามารถค้นหา กุญแจฮาร์ดแวร์ ด้วยหมายเลขซีเรียลที่มี %1 กรุณาเสียบปลั๊กเพื่อดำเนินการต่อ Hardware key timed out waiting for user interaction. - + กุญแจฮาร์ดแวร์ได้หมดเวลารอการโต้ตอบกับผู้ใช้ A USB error occurred when accessing the hardware key: %1 - + เกิดข้อผิดพลาด USB เมื่อมีการเข้าถึงกุญแจฮาร์ดแวร์ : 1% Failed to complete a challenge-response, the specific error was: %1 + ข้อผิดพลาด รหัสสอบถาม-รหัสตอบกลับ ข้อผิดพลาดเฉพาะที่: 1 % + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + + + + %1 [%2] - Slot %3, %4 + YubiKey display fields diff --git a/share/translations/keepassxc_tr.ts b/share/translations/keepassxc_tr.ts index f1d37bb06..f4c254f0a 100644 --- a/share/translations/keepassxc_tr.ts +++ b/share/translations/keepassxc_tr.ts @@ -80,6 +80,10 @@ Details Ayrıntılar + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Kararınız, hem istekte bulunan istemci hem de KeePassXC çalışırken hatırlanacak. + Remember Hatırla @@ -88,10 +92,6 @@ Allow Selected Seçilmişlere izin ver - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - Kararınız, hem istekte bulunan istemci hem de KeePassXC çalışırken hatırlanacak. - Deny All && Future Tümünü ve gelecektekileri reddet @@ -122,6 +122,10 @@ Use OpenSSH OpenSSH kullanılsın + + Use both agents + İki uygulama da kullanılsın + SSH_AUTH_SOCK override SSH_AUTH_SOCK değişikliği @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH istemci bağlantısı çalışıyor! - - Use both agents - İki uygulama da kullanılsın - ApplicationSettingsWidget @@ -169,17 +169,21 @@ Security Güvenlik + + This setting cannot be enabled when minimize on unlock is enabled. + Kilit açıldığında küçültülsün seçeneği açıkken bu seçenek açılamaz. + Access error for config file %1 %1 yapılandırma dosyasına erişim sorunu Icon only - Yalnız simge + Yalnızca simge Text only - Yalnız yazı + Yalnızca yazı Text beside icon @@ -211,20 +215,52 @@ You must restart the application to set the new language. Would you like to restart now? - Yeni dilin etkin olması için uygulamayı yeniden başlatmalısınız. Şimdi yeniden başlatılsın mı? - - - Reset Settings? - Ayarlar sıfırlansın mı? - - - Are you sure you want to reset all general and security settings to default? - Tüm genel ve güvenlik ayarlarını varsayılan değerlerine döndürmek istediğinize emin misiniz? + Yeni dilin kullanıma alınması için uygulamayı yeniden başlatmalısınız. Şimdi yeniden başlatılsın mı? Select backup storage directory Yedek kayıt klasörünü seçin + + Confirm Reset + Sıfırlamayı onayla + + + Are you sure you want to reset all settings to default? + Tüm ayarları varsayılan değerlerine döndürmek istediğinize emin misiniz? + + + Import KeePassXC Settings + KeePassXC ayarlarını içe aktar + + + Failed to import settings from %1, not a valid settings file. + Ayarlar %1 üzerinden içe aktarılamadı. Dosya geçerli bir ayar dosyası değil. + + + Export KeePassXC Settings + KeePassXC ayarlarını dışa aktar + + + Small + Küçük + + + Normal + Normal + + + Medium + Orta + + + Large + Büyük + + + Custom + Özel + ApplicationSettingsWidgetGeneral @@ -250,19 +286,23 @@ Minimize window after unlocking database - Veritabanı kilidi açıldığında simge durumuna küçültülsün + Veri tabanı kilidi açıldığında simge durumuna küçültülsün Remember previously used databases - Kullanılan veritabanları hatırlansın + Kullanılan veri tabanları hatırlansın + + + recent files + son kullanılan dosya Load previously open databases on startup - Başlangıçta son kullanılan veritabanları yüklensin + Başlangıçta son kullanılan veri tabanları yüklensin Remember database key files and security dongles - Veritabanı anahtar dosyaları ve güvenlik donanımları hatırlansın + Veri tabanı anahtar dosyaları ve e-anahtarlar hatırlansın Check for updates at application startup once per week @@ -272,25 +312,6 @@ Include beta releases when checking for updates Güncelleme denetimine beta sürümleri de katılsın - - On database unlock, show entries that - Veritabanının kilidi açıldığında, şu kayıtlar görüntülensin - - - have expired - On database unlock, show entries that... - süresi geçmiş - - - days - On database unlock, show entries that will expire within %1 days - gün - - - will expire within - On database unlock, show entries that... - Süresinin geçmesine - File Management Dosya yönetimi @@ -301,36 +322,24 @@ Automatically save when locking database - Veritabanı kilitlendiğinde otomatik olarak kaydedilsin + Veri tabanı kilitlendiğinde otomatik olarak kaydedilsin Automatically save non-data changes when locking database - Veritabanı kilitlendiğinde veri dışı değişiklikleri otomatik olarak kaydedilsin + Veri tabanı kilitlendiğinde veri dışı değişiklikleri otomatik olarak kaydedilsin Automatically reload the database when modified externally - Dışarıda değiştirildiğinde veritabanını otomatik olarak yeniden yüklensin + Dışarıda değiştirildiğinde veri tabanını otomatik olarak yeniden yüklensin Backup database file before saving - Kaydetmeden önce veritabanı dosyası yedeklensin - - - Backup destination - Yedek hedefi - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - Veritabanı yedek dosyasının konumunu belirtir. "{DB_FILENAME}" kodu, kayıtlı veritabanının uzantısı olmayan dosya adı, {TIME:<format>} kodu, yedekleme zamanı ile değiştirilir. https://doc.qt.io/qt-5/qdatetime.html#toString adresine bakabilirsiniz.<format> Varsayılan biçem dizgesi "dd_MM_yyyy_hh-mm-ss". + Kaydetmeden önce veri tabanı dosyası yedeklensin {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - Seçin… - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) Alternatif kayıt yöntemi kullanılsın (Dropbox, Google Drive, GVFS, vb ile yaşanan sorunları çözebilir) @@ -341,7 +350,7 @@ Directly write to database file (dangerous) - Doğrudan veritabanı dosyasına yazılsın (tehlikeli) + Doğrudan veri tabanı dosyasına yazılsın (tehlikeli) Entry Management @@ -349,7 +358,7 @@ Use group icon on entry creation - Kayıt oluşturulurken grup simgesi kullanılsın + Kayıt eklenirken grup simgesi kullanılsın Minimize when opening a URL @@ -373,12 +382,12 @@ Website icon download timeout in seconds - Saniye olarak web sitesi simgesi indirme zaman aşımı süresi + Saniye olarak site simgesi indirme zaman aşımı süresi sec Seconds - sn + sn User Interface @@ -408,6 +417,10 @@ Toolbar button style: Araç çubuğu düğme biçemi: + + Show passwords in color + Parolalar renkli görüntülensin + Use monospaced font for notes Notlarda sabit aralıklı yazı tipi kullanılsın @@ -458,7 +471,7 @@ Re-lock previously locked database after performing Auto-Type - Otomatik yazma sonrasında önceden kilitli veritabanı yeniden kilitlensin + Otomatik yazma sonrasında önceden kilitli veri tabanı yeniden kilitlensin Auto-Type start delay: @@ -475,7 +488,7 @@ ms Milliseconds - ms + ms Auto-Type typing delay: @@ -493,6 +506,71 @@ Remember last typed entry for: Son yazılmış kaydın hatırlanma süresi: + + On database unlock, show entries that will expire within + Veri tabanının kilidi açıldığında, şu zaman içinde süresi dolacak kayıtlar görüntülensin + + + On database unlock, show entries that will expire within + Veri tabanının kilidi açıldığında, şu zaman içinde süresi dolacak kayıtlar görüntülensin + + + days + number of days warning for password expiration + gün + + + Destination format: + Hedef biçimi: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> yerinde uzantısı olmadan kaydedilmiş veri tabanının dosya adı görüntülenir </p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> yerinde belirtilen saat biçimi görüntülenir (varsayılan değer: dd_MM_yyyy_hh-mm-ss)</p><p>Ayrıntılı bilgi almak için kullanıcı rehberine bakın</p></body></html> + + + Choose folder... + Klasör seçin... + + + Show confirmation before moving entries to recycle bin + Kayıtlar geri dönüşüm kutusuna taşınmadan önce onay istensin + + + Copy data on double clicking field in entry view + Kayıt görünümünde alana çift tıklandığında veriler kopyalansın + + + Show toolbar + Araç çubuğunu görüntüle + + + Show the menu bar by pressing the Alt key + Alt tuşuna basıldığında menü çubuğu görüntülensin + + + Show menubar + Araç çubuğu görüntülensin + + + Import settings… + Ayarları içe aktar… + + + Export settings… + Ayarları dışa aktar… + + + Open browser on double clicking URL field in entry view + Kayıt görünümünde adres alanına çift tıklandığında tarayıcı açılsın + + + Font size: + Yazı boyutu: + + + Font size selection + Yazı boyutu seçimi + ApplicationSettingsWidgetSecurity @@ -502,7 +580,7 @@ Database lock timeout seconds - Veritabanı kilidi zaman aşımı saniyesi + Veri tabanı kilidi zaman aşımı saniyesi sec @@ -528,7 +606,7 @@ Lock databases after inactivity of - Vertiabanları şu kadar zaman sonra kilitlensin + Veri tabanları şu kadar zaman sonra kilitlensin Convenience @@ -536,19 +614,15 @@ Enable database quick unlock (Touch ID / Windows Hello) - Kilit hızlı açılabilsin (Touch ID / Windows Hello) + Veri tabanı kilidi hızlı açılabilsin (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed - Oturum kilitlendiğinde ya da kapak kapatıldığında veritabanları kilitlensin + Oturum kilitlendiğinde ya da kapak kapatıldığında veri tabanları kilitlensin Lock databases after minimizing the window - Simge durumuna küçültüldüğünde veritabanları kilitlensin - - - Require password repeat when it is visible - Görünür olduğunda parola yinelemesi istensin + Simge durumuna küçültüldüğünde veri tabanları kilitlensin Hide passwords when editing them @@ -562,25 +636,29 @@ Hide passwords in the entry preview panel Kayıt ön izleme panosunda parolalar gizlensin - - Hide entry notes by default - Kayıt notları varsayılan olarak gizlensin - - - Move entries to recycle bin without confirmation - Kayıtlar çöp kutusuna atılırken onay istenmesin - - - Enable double click to copy the username/password entry columns - Kullanıcı adı/parola kaydı sütunlarını kopyalamak için çift tıklama kullanılsın - Privacy Gizlilik Use DuckDuckGo service to download website icons - Web sitesi simgelerini indirmek için DuckDuckGo kullanılsın + Site simgelerini indirmek için DuckDuckGo kullanılsın + + + Hide TOTP in the entry preview panel + Tek kullanımlık parola kayıt ön izleme panosunda gizlensin + + + Lock databases when switching user + Kullanıcı değiştirildiğinde veri tabanları kilitlensin + + + Lock Options + Seçenekleri kilitle + + + Hide notes in the entry preview panel + Notlar kayıt ön izleme panosunda gizlensin @@ -626,18 +704,8 @@ Çok uzun gecikme algılandı. En fazla %1: %2 - Invalid conversion type: %1 - Dönüşüm türü geçersiz: %1 - - - Invalid conversion syntax: %1 - Dönüşüm söz dizimi geçersiz: %1 - - - Invalid regular expression syntax %1 -%2 - Kurallı ifade sözdizimi geçersiz %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + Kayıtta PICKCHARS için öznitelik yok: %1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - Geçersiz tuş simgesi gönderilmeye çalışıldı. - Sequence aborted: Caps Lock is on Sıra kesildi: Büyük harf tuşu açık @@ -700,6 +764,10 @@ Unable to get valid keycode for key: Tuş için geçerli bir tuş kodu alınamadı: + + Trying to send invalid keyboard symbol. + Geçersiz klavye simgesi gönderilmeye çalışıldı. + AutoTypeSelectDialog @@ -718,16 +786,16 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - <p>Açık veritabanlarından bir kayıt bulmak için gelişmiş arama sorguları kullanabilirsiniz. Şu kısayol tuşları kullanışlıdır:<br/> -Ctrl+F - Veritabanı aramasını değşitir<br/> + <p>Açık veri tabanlarından bir kayıt bulmak için gelişmiş arama sorguları kullanabilirsiniz. Şu kısayol tuşları kullanışlıdır:<br/> +Ctrl+F - Veri tabanı aramasını değşitir<br/> Ctrl+1 - Kullanıcı adını yaz<br/> Ctrl+2 - Parolayı yaz<br/> Ctrl+3 - Tek kullanımlık parolayı yaz<br/> -Ctrl+4 - Sanal tuş takımını kullan (yalnız Windows)</p> +Ctrl+4 - Sanal klavyeyi kullan (yalnızca Windows)</p> Search all open databases - Tüm açık veritabanlarında ara + Tüm açık veri tabanlarında ara Search… @@ -767,7 +835,7 @@ Ctrl+4 - Sanal tuş takımını kullan (yalnız Windows)</p> Use Virtual Keyboard - Sanal tuş takımını kullan + Sanal klavyeyi kullan @@ -802,15 +870,15 @@ Ctrl+4 - Sanal tuş takımını kullan (yalnız Windows)</p> Disable for this site - Bu site için devre dışı bırak + Bu site için kapat + + + Undo + Geri al BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser kaydı kaydet - Ok Tamam @@ -822,35 +890,92 @@ Ctrl+4 - Sanal tuş takımını kullan (yalnız Windows)</p> You have multiple databases open. Please select the correct database for saving credentials. - Çok sayıda açık veritabanı var. -Lütfen kimlik bilgilerinin kaydedileceği doğru veritabanını seçin. + Çok sayıda açık veri tabanı var. +Lütfen kimlik bilgilerinin kaydedileceği doğru veri tabanını seçin. + + + KeePassXC - Select Database + KeePassXC - Veri tabanını seçme + + + + BrowserPasskeysConfirmationDialog + + Cancel + İptal + + + Update + Güncelle + + + Authenticate + İzin ver + + + Register new + Yeni kaydet + + + Register + Kaydet + + + Timeout in <b>%n</b> seconds... + <b>%n</b> saniye sonra süresi dolacak...<b>%n</b> saniye sonra süresi dolacak... + + + Relying Party: %1 + Güvenilen taraf: %1 + + + Username: %1 + Kullanıcı adı: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Geçiş anahtarı kimlik doğrulama bilgileri + + + Add to existing entry + Var olan kayda ekle + + + Existing passkey found. +Do you want to register a new passkey for: + Var olan bir geçiş anahtarı bulundu. +Şunun için yeni bir geçiş anahtarı kaydetmek ister misiniz: + + + Select the existing passkey and press Update to replace it. + Var olan geçiş anahtarını seçin ve değiştirmek için Güncelle üzerine basın. + + + Authenticate passkey credentials for: + Şunun için geçiş anahtarı kimlik doğrulama bilgilerine izin verilsin: + + + Do you want to register a passkey for: + Şunun için geçiş anahtarı kaydetmek ister misiniz: BrowserService - - KeePassXC: Create a new group - KeePassXC: Yeni bir grup oluştur - A request for creating a new group "%1" has been received. Do you want to create this group? - "%1" adında yeni bir grup oluşturma isteği alındı. -Bu grubun oluşturulmasını ister misiniz? + "%1" adında yeni bir grup ekleme isteği alındı. +Bu grubun eklenmesini ister misiniz? - - KeePassXC: New key association request - KeePassXC: Yeni anahtar ilişkilendirme isteği - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Şu veritabanı için bir ilişkilendirme isteği aldınız: + Şu veri tabanı için bir ilişkilendirme isteği aldınız: %1 Bağlantıya eşsiz bir ad ya da kimlik verin. Örnek: @@ -860,28 +985,16 @@ linux-laptop. Save and allow access Kaydet ve erişime izin ver - - KeePassXC: Overwrite existing key? - KeePassXC: Var olan anahtarın üzerine yazılsın mı? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? "%1" adıyla paylaşılan bir şifreleme anahtarı zaten var. Üzerine yazılmasını ister misiniz? - - KeePassXC: Update Entry - KeePassXC: Kaydı güncelle - Do you want to update the information in %1 - %2? %1 -%2 bilgilerini güncellemek istiyor musunuz? - - KeePassXC: Delete entry - KeePassXC: Kaydı sil - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Bu kaydın silinmesini ister misiniz? - Converting attributes to custom data… - Öznitelikler özel verilere dönüştürüyor… + %1 (Passkey) + %1 (geçiş anahtarı) - Abort - Vazgeç + KeePassXC - Create a new group + KeePassXC - Yeni bir grup ekle - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Dönüştürülmüş KeePassHTTP öznitelikleri + Disable + Kapat - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - %1 kaydın öznitelikleri dönüştürüldü. -%2 anahtar özel verilere taşındı. - - - Successfully moved %n keys to custom data. - %n anahtar özel verilere taşındı.%n anahtar özel verilere taşındı. + KeePassXC - Overwrite existing key? + KeePassXC - Var olan anahtarın üzerine yazılsın mı? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: KeePassHTTP özniteliklerine uyan bir kayıt bulunamadı! + KeePassXC - Update Entry + KeePassXC - Kaydı güncelle - The active database does not contain an entry with KeePassHTTP attributes. - Etkin veritabanında KeePassHTTP özniteliklerine uyan bir kayıt bulunamadı. + KeePassXC - Delete entry + KeePassXC - Kaydı sil - Don't show this warning again - Bu uyarı bir daha görüntülenmesin + KeePassXC - New key association request + KeePassXC - Yeni anahtar ilişkilendirme isteği - KeePassXC: Legacy browser integration settings detected - KeePassXC: Eski tarayıcı bütünleşme ayarları algılandı + Passkey + Geçiş anahtarı - 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-Browser ayarlarınızın veritabanı ayarlarına taşınması gerekiyor. -Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidir. -Şimdi var olan ayarlarınızı taşımak ister misiniz? + KeePassXC - Passkey credentials + KeePassXC - Geçiş anahtarı kimlik doğrulama bilgileri + + + Register a new passkey to this entry: + Şu kayıt için yeni bir geçiş anahtarı kaydet: + + + KeePassXC - Update passkey + KeePassXC - Geçiş anahtarı kaydını güncelle + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Kaydın zaten bir geçiş anahtarı kaydı var. +%1 - %2 geçiş anahtarı kaydını değiştirmek istiyor musunuz? + + + Register + Kaydet @@ -945,7 +1066,7 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi This is required for accessing your databases with KeePassXC-Browser - KeePassXC-Browser tarafından veritabanlarınıza erişilmesi için gereklidir. + KeePassXC-Browser tarafından veri tabanlarınıza erişilmesi için gereklidir. Enable browser integration @@ -955,10 +1076,6 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi General Genel - - Browsers installed as snaps are currently not supported. - Anlık olarak kurulan tarayıcılar henüz desteklenmiyor. - Enable integration for these browsers: Şu tarayıcılar için bütünleşme kullanılsın: @@ -998,11 +1115,11 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Request to unlock the database if it is locked - Veritabanı kilitliyse, kilidin açılması istensin + Veri tabanı kilitliyse, kilidin açılması istensin Only entries with the same scheme (http://, https://, …) are returned. - Yalnız aynı bağlantıya uygun (http://, https://, …) sonuçlar döndürülür. + Yalnızca aynı bağlantıya uygun (http://, https://, …) sonuçlar döndürülür. Match URL scheme (e.g., https://example.com) @@ -1010,11 +1127,11 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Only returns the best matches for a specific URL instead of all entries for the whole domain. - Etki alanındaki tüm kayıtlar yerine yalnız belirli bir adrese uygun olan kayıtları döndürür. + Etki alanındaki tüm kayıtlar yerine yalnızca belirli bir adrese uygun olan kayıtları döndürür. Return only best-matching credentials - Yalnız en uygun kimlik bilgileri döndürülsün + Yalnızca en uygun kimlik bilgileri döndürülsün Returns expired credentials. String [expired] is added to the title. @@ -1026,12 +1143,12 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi All databases connected to the extension will return matching credentials. - Uzantıya bağlı tüm veritabanları uyan kimlik bilgilerini döndürür. + Eklentiye bağlı tüm veri tabanları uyan kimlik bilgilerini döndürür. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Tüm açık veritabanlarında uygun kimlik bilgileri aransın + Tüm açık veri tabanlarında uygun kimlik bilgileri aransın Advanced @@ -1124,31 +1241,11 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Custom extension ID: - Özel uzantı kimliği: + Özel eklenti kimliği: Custom extension ID - Özel uzantı kimliği - - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Geçici kum havuzu kullanılması nedeniyle, tarayıcı bütünleşmesini kullanmak için bir betik çalıştırmalısınız.<br />Bu betiği %1 adresinden alabilirsiniz. - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Tarayıcı bütünleşmesinin çalışması için KeePassXC-Browser gereklidir. <br />%1, %2 ve %3 tarayıcıları için indirebilirsiniz. %4 - - - Please see special instructions for browser extension use below - Lütfen aşağıdan tarayıcı uzantısı kullanımı ile ilgili özel yönergelere bakın - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Hata:</b> Özel vekil sunucu konumu bulunamadı!<br/>Tarayıcı bütünleşmesi vekil sunucu uygulaması olmadan ÇALIŞMAZ. - - - <b>Warning:</b> The following options can be dangerous! - <b>Uyarı:</b> Aşağıdaki seçenekler tehlikeli olabilir! + Özel eklenti kimliği Executable Files @@ -1166,6 +1263,46 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Select native messaging host folder location Yerel iletişim sunucusu klasörünün konumunu seçin + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Bağlı veri tabanlarındaki tüm kayıtların başlıklarının, adreslerinin ve UUID değerlerinin keepassxc-proxy tarafından görülmesine izin verir. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Bağlı veri tabanlarındaki tüm kayıtlara sınırlı erişim izin verilsin (site erişim kısıtlamalarını yok sayar) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Uyarı:</b> Bu ayarları yalnızca gerekli olduğunda değiştirin. + + + The custom proxy location does not exist. + Özel vekil sunucu konumu bulunamadı. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Hata:</b> Özel vekil sunucu konumu bulunamadı. Bu sorunu gelişmiş ayarlar sekmesinden düzeltin. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Hata:</b> Kurulmuş vekil sunucunun çalıştırılan dosyası beklenen konumda değil: %1<br/>Lütfen gelişmiş ayarlar bölümünden bir özel vekil sunucu konumu ayarlayın ya da uygulamayı yeniden kurun. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Deneme amacıyla geçiş anahtarları ile güvenli olmayan http://localhost kullanılabilsin. + + + Allow using localhost with passkeys + Geçiş anahtarları ile localhost kullanılabilsin + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + Tarayıcı bütünleşmesinin çalışması için KeePassXC-Browser gereklidir. <br />%1, %2 ve %3 tarayıcıları için indirebilirsiniz. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + Snap veya Flatpak ile kurulan tarayıcılar, Snap ile kurulan Firefox dışında, desteklenmiyor. + CloneDialog @@ -1188,14 +1325,6 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi CsvImportWidget - - Import CSV fields - CSV alanlarını içe aktar - - - filename - dosya adı - size, rows, columns boyut, satır, sütun @@ -1304,50 +1433,43 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Column %1 %1. sütun - - Imported from CSV file - CSV dosyasından içe aktarıldı - - - Original data: - Özgün veriler: - - - Error(s) detected in CSV file! - CSV dosyasında sorunlar bulundu! - [%n more message(s) skipped] [%n diğer ileti atlandı][%n diğer ileti atlandı] - Error - Hata + Failed to parse CSV file: %1 + CSV dosyası işlenemedi: %1 - CSV import: writer has errors: -%1 - CSV içe aktarma: Yazıcı hataları var: -%1 + Imported from CSV file: %1 + CSV dosyasından içe aktarıldı: %1 + + + No Title Selected + Herhangi bir başlık seçilmemiş + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Herhangi bir başlık sütunu seçilmemiş. Kayıtları ayırmak zor olacak. +İçe aktarmak istediğinize emin misiniz? + + + Tags + Etiketler CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n bayt%n bayt - %n row(s) + CSV row count %n satır%n satır %n column(s) + CSV column count %n sütun%n sütun @@ -1368,29 +1490,29 @@ Bu işlem, var olan tarayıcı bağlantılarınızın korunması için gereklidi Error while reading the database: %1 - Veritabanı okunurken sorun çıktı: %1 + Veri tabanı okunurken sorun çıktı: %1 Could not save, database does not point to a valid file. - Kaydedilemedi. Veritabanı geçerli bir dosyayı göstermiyor. + Kaydedilemedi. Veri tabanı geçerli bir dosyayı göstermiyor. Database save is already in progress. - Veritabanı kaydediliyor. + Veri tabanı kaydediliyor. Could not save, database has not been initialized! - Kaydedilemedi. Veritabanı hazırlanamadı! + Kaydedilemedi. Veri tabanı hazırlanamadı! Database file has unmerged changes. - Veritabanı dosyasında birleştirilmemiş değişiklikler var. + Veri tabanı dosyasında birleştirilmemiş değişiklikler var. %1 Backup database located at %2 %1 -Yedek veritabanının konumu %2 +Yedek veri tabanının konumu %2 Key not transformed. This is a bug, please report it to the developers. @@ -1400,19 +1522,27 @@ Yedek veritabanının konumu %2 Recycle Bin Çöp kutusu + + Database file read error. + Veri tabanı dosyası okunurken sorun çıktı + + + No file path was provided. + Herhangi bir dosya yolu belirtilmemiş. + DatabaseOpenDialog Unlock Database - KeePassXC - Veritabanı kilidini aç - KeePassXC + Veri tabanı kilidini aç - KeePassXC DatabaseOpenWidget Unlock KeePassXC Database - KeePassXC veritabanının kilidini açın + KeePassXC veri tabanının kilidini açın Enter Password: @@ -1422,43 +1552,13 @@ Yedek veritabanının konumu %2 Password field Parola alanı - - Enter Additional Credentials (if any): - Ek kimlik doğrulama bilgileri verin (varsa): - - - Key File: - Anahtar dosyası: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>Veritabanınızın güvenliğini artırmak için parolaya ek olarak gizli bir dosya kullanabilirsiniz. Bu dosyayı veritabanınızın güvenlik ayarları bölümünden oluşturulabilirsiniz.</p><p>Bu dosya, *.kdbx veritabanı dosyanızdan <strong>farklıdır</strong>. Bir anahtar dosyanız yoksa bu alanı boş bırakın.<p>Ayrıntılı bilgi almak için tıklayın…</p> - - - Key file help - Anahtar dosyası yardımı - Hardware key slot selection Donanımsal anahtar yuvası seçimi - - Hardware Key: - Donanımsal anahtar: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p> <strong>YubiKey</strong> ya da <strong>OnlyKey</strong> gibi donanımsal güvenlik anahtarlarını HMAC-SHA1 için ayarlanmış yuvalarda kullanabilirsiniz.</p> -<p>Ayrıntılı bilgi almak için tıklayın…</p> - - - Hardware key help - Donanımsal anahtar yardımı - Key file to unlock the database - Veritabanını açacak anahtar dosyası + Veri tabanını açacak anahtar dosyası Browse for key file @@ -1468,17 +1568,9 @@ Yedek veritabanının konumu %2 Browse… Göz at… - - Refresh hardware tokens - Donanımsal doğrulayıcıları yenile - - - Refresh - Yenile - Unlock Database - Veritabanı kilidini aç + Veri tabanı kilidini aç Cancel @@ -1494,7 +1586,7 @@ Yedek veritabanının konumu %2 Database Version Mismatch - Veritabanı sürümü uyuşmazlığı + Veri tabanı sürümü uyuşmazlığı The database you are trying to open was most likely @@ -1504,21 +1596,21 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - Açmaya çalıştığınız veritabanı büyük olasılıkla daha yeni bir + Açmaya çalıştığınız veri tabanı büyük olasılıkla daha yeni bir KeePassXC sürümü tarafından oluşturulmuş. -Yine de açmayı deneyebilirsiniz, ancak eksik olabilir ve +Yine de açmayı deneyebilirsiniz. Ancak eksik olabilir ve herhangi bir değişikliği kaydetmek veri kaybına neden olabilir. KeePassXC kurulumunuzu güncellemeniz önerilir. Open database anyway - Veritabanını gene de aç + Veri tabanını gene de aç Database unlock canceled. - Veritabanı kilidinin açılması iptal edildi. + Veri tabanı kilidinin açılması iptal edildi. Unlock failed and no password given @@ -1529,23 +1621,15 @@ KeePassXC kurulumunuzu güncellemeniz önerilir. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Veritabanının kilidi açılamadı ve herhangi bir parola yazmadınız. + Veri tabanının kilidi açılamadı ve herhangi bir parola yazmadınız. Boş bir parola ile yeniden denemek ister misiniz ? -Bu sorunu engellemek için, "Veritabanı ayarları / Güvenlik" bölümüne giderek parolanızı sıfırlayın. +Bu sorunu engellemek için, "Veri tabanı ayarları / Güvenlik" bölümüne giderek parolanızı sıfırlayın. Retry with empty password Boş parola ile yeniden dene - - Failed to authenticate with Windows Hello - Windows Hello ile kimlik doğrulanamadı - - - Failed to authenticate with Touch ID - Touch ID ile kimlik doğrulanamadı - Failed to open key file: %1 Anahtar dosyası açılamadı: %1 @@ -1556,7 +1640,7 @@ Bu sorunu engellemek için, "Veritabanı ayarları / Güvenlik" bölü You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - KeePassXC tarafından gelecekte desteklenmeyebilecek<br> eski bir anahtar dosyası biçimi kullanıyorsunuz.<br><br>Lütfen şuradan yeni bir anahtar dosyası oluşturmayı değerlendirin:<br><strong>Veritabanı &gt; Veritabanı güvenliği &gt; Anahtar dosyasını değiştir.</strong><br> + KeePassXC tarafından gelecekte desteklenmeyebilecek<br> eski bir anahtar dosyası biçimi kullanıyorsunuz.<br><br>Lütfen şuradan yeni bir anahtar dosyası oluşturmayı değerlendirin:<br><strong>Veri tabanı &gt; Veri tabanı güvenliği &gt; Anahtar dosyasını değiştir.</strong><br> Don't show this warning again @@ -1576,25 +1660,71 @@ Bu sorunu engellemek için, "Veritabanı ayarları / Güvenlik" bölü Cannot use database file as key file - Veritabanı dosyası anahtar dosyası olarak kullanılamaz + Veri tabanı dosyası anahtar dosyası olarak kullanılamaz - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Veritabanı dosyanızı bir anahtar dosyası olarak kullanamazsınız. -Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. + authenticate to access the database + veri tabanına erişim kimlik doğrulaması - Detecting hardware keys… - Donanımsal anahtarlar algılanıyor… + Failed to authenticate with Quick Unlock: %1 + Hızlı kilit açma için kimlik doğrulanamadı: %1 - No hardware keys detected - Herhangi bir donanımsal anahtar algılanamadı + Select Key File: + Anahtar dosyasını seçin: - Select hardware key… - Donanımsal anahtarı seçin… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>Veri tabanınızın güvenliğini artırmak için parolaya ek olarak gizli bir dosya kullanabilirsiniz. Bu dosyayı veri tabanınızın güvenlik ayarları bölümünden oluşturabilirsiniz.</p><p>Bu dosya, *.kdbx veri tabanı dosyanız <strong>değildir</strong>. + + + Use hardware key [Serial: %1] + Donanımsal anahtar kullanılsın [Seri: %1] + + + Use hardware key + Donanımsal anahtar kullanılsın + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Veri tabanı dosyanız bir anahtar dosyası DEĞİLDİR! +Anahtar dosyanız yoksa ya da ne olduğunu bilmiyorsanız bir şey seçmek zorunda değilsiniz. + + + KeePassXC database file selected + KeePassXC veri tabanı dosyası seçilmiş + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Seçtiğiniz dosya bir veri tabanı dosyası gibi görünüyor. +Bir veri tabanı dosyası bir anahtar dosyası DEĞİLDİR! + +Bu dosya ile ilerlemek istediğinize emin misiniz? + + + No hardware keys found. + Herhangi bir donanımsal anahtar bulunamadı. + + + Refresh Hardware Keys + Donanımsal anahtarları yenile + + + Click to add a key file. + Bir anahtar dosyası eklemek için tıklayın. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">Bir anahtar dosyam var</a> + + + Hardware keys found, but no slots are configured. + Donanımsal anahtar bulundu. Ancak herhangi bir yuva yapılandırılmamış. @@ -1606,10 +1736,6 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. DatabaseSettingsDialog - - Advanced Settings - Gelişmiş ayarlar - General Genel @@ -1620,7 +1746,7 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. Database Credentials - Veritabanı kimlik doğrulama bilgileri + Veri tabanı kimlik doğrulama bilgileri Encryption Settings @@ -1634,6 +1760,22 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. Maintenance Bakım + + KeeShare + KeeShare + + + Secret Service Integration + Gizli hizmet bütünleşmesi + + + Remote Sync + Uzak eşitleme + + + Database Settings: %1 + Veri tabanı ayarları: %1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. KeePassXC-Browser settings KeePassXC-Browser ayarları - - Convert KeePassHTTP data - KeePassHTTP verilerini dönüştür - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - Eski KeePassHTTP öznitelikleri KeePassXC-Browser uyumlu özel verilere taşınsın - - - Refresh database root group ID - Veritabanı kök grup kimliğini yenile - Disconnect all browsers Tüm tarayıcıların bağlantısını kes @@ -1661,6 +1791,10 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. Forget all site-specific settings on entries Kayıtlardaki tüm siteye özgü ayarlar unutulsun + + Refresh database root group ID + Veri tabanı kök grup kimliğini yenile + Stored keys Kaydedilmiş anahtarlar @@ -1684,8 +1818,8 @@ Bir anahtar dosyanız yoksa, lütfen alanı boş bırakın. Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Seçilmiş anahtarı kaldırmak istediğinizden emin misiniz? -Bu işlem, tarayıcı uzantısı ile bağlantı kurulmasını engelleyebilir. + Seçilmiş anahtarı kaldırmak istediğinize emin misiniz? +Bu işlem, tarayıcı eklentisi ile bağlantı kurulmasını engelleyebilir. Key @@ -1701,26 +1835,18 @@ Bu işlem, tarayıcı uzantısı ile bağlantı kurulmasını engelleyebilir. Enable Browser Integration to access these settings. - Bu ayarlara erişmek için tarayıcı bütünleşmesini etkinleştirin. + Bu ayarlara erişmek için tarayıcı bütünleşmesini açın. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. Tüm tarayıcıların bağlantısını kesmek istiyor musunuz? -Bu işlem, tarayıcı uzantısının bağlantı kurmasını engelleyebilir. - - - KeePassXC: No keys found - KeePassXC: Herhangi bir anahtar bulunamadı +Bu işlem, tarayıcı eklentisinin bağlantı kurmasını engelleyebilir. No shared encryption keys found in KeePassXC settings. KeePassXC ayarlarında paylaşılan bir şifreleme anahtarı bulunamadı. - - KeePassXC: Removed keys from database - KeePassXC: Anahtarlar veritabanından kaldırıldı - Successfully removed %n encryption key(s) from KeePassXC settings. %n şifreleme anahtarı KeePassXC ayarlarından kaldırıldı.%n şifreleme anahtarı KeePassXC ayarlarından kaldırıldı. @@ -1739,41 +1865,43 @@ Kayıtlara erişme izinleri kaldırılacak. Abort İptal - - KeePassXC: Removed permissions - KeePassXC: İzinler kaldırıldı - Successfully removed permissions from %n entry(s). %n kaydın izinleri kaldırıldı.%n kaydın izinleri kaldırıldı. - - KeePassXC: No entry with permissions found! - KeePassXC: İzni olan bir kayıt bulunamadı! - The active database does not contain an entry with permissions. - Etkin veritabanında, izni olan bir kayıt yok. - - - Move KeePassHTTP attributes to custom data - KeePassHTTP özniteliklerini özel verilere taşı - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - Tüm eski tarayıcı bütünleşme verilerini en son standarda taşımak istediğinize emin misiniz? -Bu işlem tarayıcı uzantısıyla uyumluluğu korumak için gereklidir. + Etkin veri tabanında, izinleri olan bir kayıt yok. Refresh database ID - Veritabanı kimliğini yenile + Veri tabanı kimliğini yenile Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Veritabanı kimliğini yenilemek istediğiniz emin misiniz? -Bu işlem yalnız veritabanınız başka bir veritabanının kopyası ise ve tarayıcı uzantısı bağlanmtı kuramıyorsa gerekir. + Veri tabanı kimliğini yenilemek istediğiniz emin misiniz? +Bu işlem yalnızca veri tabanınız başka bir veri tabanının kopyası ise ve tarayıcı eklentisi bağlantı kuramıyorsa gerekir. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Eski KeePassHTTP öznitelikleri KeePassXC-Browser uyumlu özel verilere taşınsın + + + No keys found + Herhangi bir anahtar bulunamadı + + + Removed keys from database + Anahtarlar veri tabanından kaldırıldı + + + Removed permissions + İzinler kaldırıldı + + + No entry with permissions found! + İzinleri olan bir kayıt bulunamadı! @@ -1790,7 +1918,7 @@ Bu işlem yalnız veritabanınız başka bir veritabanının kopyası ise ve tar 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? - UYARI! Bir parola ayarlamamışsınız. Parolası olmayan bir veritabanını kullanmanız kesinlikle önerilmez! + UYARI! Bir parola ayarlamamışsınız. Parolası olmayan bir veri tabanını kullanmanız kesinlikle önerilmez! Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? @@ -1804,7 +1932,7 @@ Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? You must add at least one encryption key to secure your database! - Veritabanınızı korumak için en az bir şifreleme anahtarı eklemelisiniz! + Veri tabanınızı korumak için en az bir şifreleme anahtarı eklemelisiniz! Unknown error @@ -1812,7 +1940,19 @@ Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? Failed to change database credentials - Veritabanı kimlik doğrulama bilgileri değiştirilemedi + Veri tabanı kimlik doğrulama bilgileri değiştirilemedi + + + Weak password + Parola kolay + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Bu parola kolay! Bilgilerinizi daha iyi korumak için daha zor bir parola seçmelisiniz. + + + The provided password does not meet the minimum quality requirement. + Belirtilen parola en düşük kalite gereksinimini karşılamıyor. @@ -1821,37 +1961,29 @@ Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? Decryption Time: Şifre çözme süresi: - - Change existing decryption time - Var olan şifre çözme süresini değiştir - - - Change - Değiştir - Decryption time in seconds Saniye olarak şifre çözme süresi Higher values offer more protection, but opening the database will take longer. - Daha yüksek değerler daha fazla koruma sağlar. Ancak veritabanını açmak daha uzun sürer. + Daha yüksek değerler daha fazla koruma sağlar. Ancak veri tabanını açmak daha uzun sürer. Database format: - Veritabanı biçimi: + Veri tabanı biçimi: Database format - Veritabanı biçimi + Veri tabanı biçimi Format cannot be changed: Your database uses KDBX 4 features - Biçim değiştirilemez: Veritabanınız KDBX 4 özelliklerini kullanıyor + Biçim değiştirilemez: Veri tabanınız KDBX 4 özelliklerini kullanıyor Unless you need to open your database with other programs, always use the latest format. - Veritabanınızı başka uygulamalarla açmanız gerekmedikçe, her zaman en güncel biçimi kullanın. + Veri tabanınızı başka uygulamalarla açmanız gerekmedikçe, her zaman en güncel biçimi kullanın. Encryption Algorithm: @@ -1909,11 +2041,6 @@ Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - değişmedi - Number of rounds too high Key transformation rounds @@ -1925,7 +2052,7 @@ Bir parola ayarlamadan ilerlemek istediğinize emin misiniz? If you keep this number, your database may take hours, days, or even longer to open. Argon2 ile çok yüksek sayıda anahtar dönüştürme turu kullanıyorsunuz. -Bu değeri kullanmayı sürdürürseniz, veritabanınızın açılması saatler, günler ya da daha uzun sürebilir! +Bu değeri kullanmayı sürdürürseniz, veri tabanınızın açılması saatler, günler ya da daha uzun sürebilir! Understood, keep number @@ -1946,7 +2073,7 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınızın açılması saatler, If you keep this number, your database will not be protected from brute force attacks. AES-KDF ile çok düşük sayıda anahtar dönüştürme turu kullanıyorsunuz. -Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırısı ile kolayca açılabilir! +Bu değeri kullanmayı sürdürürseniz, veri tabanınız kaba kuvvet saldırısı ile kolayca açılabilir! KDF unchanged @@ -1966,6 +2093,18 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırıs Threads for parallel execution (KDF settings) işlem işlem + + Encryption Settings: + Şifreleme ayarları: + + + Basic + Temel + + + Advanced + Gelişmiş + DatabaseSettingsWidgetFdoSecrets @@ -1975,7 +2114,7 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırıs Don't expose this database - Bu veritabanı açığa çıkarılmasın + Bu veri tabanı açığa çıkarılmasın Expose entries under this group: @@ -1990,23 +2129,23 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırıs DatabaseSettingsWidgetGeneral Database Metadata - Veritabanı üst verileri + Veri tabanı üst verileri Database name: - Veritabanı adı: + Veri tabanı adı: Database name field - Veritabanı ad alanı + Veri tabanı ad alanı Database description: - Veritabanı açıklaması: + Veri tabanı açıklaması: Database description field - Veritabanı açıklama alanı + Veri tabanı açıklama alanı Default username: @@ -2024,18 +2163,10 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırıs Maximum number of history items per entry Her kayıt için en fazla geçmiş ögesi sayısı - - Max. history items: - En fazla geçmiş ögesi: - Maximum size of history per entry Her kayıt için en fazla geçmiş boyutu - - Max. history size: - En fazla geçmiş boyutu: - MiB MiB @@ -2046,7 +2177,7 @@ Bu değeri kullanmayı sürdürürseniz, veritabanınız kaba kuvvet saldırıs Additional Database Settings - Ek veritabanı ayarları + Ek veri tabanı ayarları Enable compression (recommended) @@ -2066,6 +2197,108 @@ Bu işlem geri alınamaz. (old) (eski) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Bu ayar kaydedildiğinde ya da bir kayıt +düzenlenirken, bir kayıttaki en eski +geçmiş ögeleri kaldırılır. Böylece yalnızca +belirtilen sayıda kayıt tutulur + + + Limit the amount of history items per entry to: + Her kayıt için tutulacak geçmiş ögesi sayısı: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Bu ayar kaydedildiğinde ya da bir kayıt +düzenlenirken, bir kayıttaki en eski geçmiş +ögeleri, tutulacak geçmiş ögelerinin toplamı +en fazla belirtilen sayıda olacak şekilde kaldırılır. + + + Limit the total size of history items per entry to: + Her kayıt için tutulacak toplam geçmiş ögesi sayısı: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Kayıtları veri tabanından silmek yerine +çöp kutusu grubuna taşıyın. +Çöp kutusundan silinen kayıtlar +veri tabanından kaldırılır. + + + Autosave delay since last change + Son değişiklikten sonraki otomatik kaydetme gecikmesi + + + Autosave delay + Otomatik kaydetme gecikmesi + + + Autosave delay since last change in minutes + Dakika olarak son değişiklikten sonraki otomatik kaydetme gecikmesi + + + min + dk + + + Autosave delay since last change checkbox + Son değişiklikten sonraki otomatik kaydetme gecikmesi işaret kutusu + + + Public Database Metadata + Herkese açık veri tabanı üst verileri + + + Warning: the following settings are not encrypted. + Uyarı: Şu ayarlar şifrelenmez. + + + Display name: + Görüntülenecek ad: + + + Publically visible display name used on the unlock dialog + Kilit açma penceresinde herkese açık olarak görüntülenen ad + + + Database public display name + Veri tabanının herkese açık görüntülenecek adı + + + Display color: + Görüntülenme rengi: + + + Publically visible color used on the unlock dialog + Kilit açma penceresinde herkese açık olarak görüntülenecek renk + + + Database public display color chooser + Veri tabanının herkese açık görüntülenecek renginin seçicisi + + + Clear + Temizle + + + Display icon: + Görüntülenecek simge: + + + Select Database Icon + Veri tabanı simgesini seçin + DatabaseSettingsWidgetKeeShare @@ -2139,18 +2372,18 @@ Bu işlem geri alınamaz. Purged %n icon(s) from the database. - Veritabanından %n simge silindi.Veritabanından %n simge silindi. + Veri tabanından %n simge silindi.Veri tabanından %n simge silindi. DatabaseSettingsWidgetMetaDataSimple Database Name: - Veritabanı adı: + Veri tabanı adı: Database name field - Veritabanı ad alanı + Veri tabanı ad alanı Description: @@ -2158,24 +2391,159 @@ Bu işlem geri alınamaz. Database description field - Veritabanı açıklama alanı + Veri tabanı açıklama alanı + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Eşitleme komutları + + + Remove + Kaldır + + + Command Settings + Komut ayarları + + + Name + Ad + + + Save + Kaydet + + + Download + İndir + + + Command: + Komut: + + + Download command field + İndirme komutu alanı + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Örnek: "sftp kullaniciadi@sunucu" ya da "scp kullaniciadi@sunucu:UzakVeriTabanı.kdbx {TEMP_DATABASE}" + + + Input: + Giriş: + + + Download input field + İndirme giriş alanı + + + Upload + Yükle + + + Upload command field + Yükleme komutu alanı + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + Örnek: "sftp kullaniciadi@sunucu" ya da "scp {TEMP_DATABASE} kullaniciadi@sunucu:UzakVeriTabanı.kdbx" + + + Upload input field + Yükleme giriş alanı + + + Name cannot be empty. + Ad boş olamaz. + + + Test + Sına + + + Download command cannot be empty. + İndirme komutu boş olamaz. + + + Download failed with error: %1 + İndirme sırasında sorun çıktı: %1 + + + Download finished, but file %1 could not be found. + İndirme tamamlandı ancak %1 dosyası bulunamadı. + + + Download successful. + İndirme tamamlandı. + + + Save Remote Settings + Uzak ayarları kaydet + + + You have unsaved changes. Do you want to save them? + Kaydedilmemiş değişiklikler var. Kaydetmek ister misiniz? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Örnek: +get UzakVeriTabani.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} veri tabanını geçici bir konuma kaydetmek için yer belirtci olarak kullanılır +`sftp` kullanıldığında son komutun `exit` olması gerektiğinden, komutta exit bulunmalıdır. + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Örnek: +put {TEMP_DATABASE} UzakVeriTabani.kdbx +exit +--- +{TEMP_DATABASE} veri tabanını geçici bir konuma kaydetmek için yer belirtci olarak kullanılır +`sftp` kullanıldığında son komutun `exit` olması gerektiğinden, komutta exit bulunmalıdır. + + + + Timeout: + Zaman aşımı: + + + seconds + saniye DatabaseTabWidget Database creation error - Veritabanı oluşturma hatası + Veri tabanı oluşturma hatası The created database has no key or KDF, refusing to save it. This is definitely a bug, please report it to the developers. - Oluşturulan veritabanı, anahtarı ya da anahtar türetme işlevi olmadığından kaydedilmedi. + Oluşturulan veri tabanı, anahtarı ya da anahtar türetme işlevi olmadığından kaydedilmedi. Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin. KeePass 2 Database - KeePass 2 veritabanı + KeePass 2 veri tabanı All files @@ -2183,7 +2551,7 @@ Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin. Open database - Veritabanını aç + Veri tabanını aç Failed to open %1. It either does not exist or is not accessible. @@ -2193,29 +2561,13 @@ Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin.CSV file CSV dosyası - - Select CSV file - CSV dosyası seçin - Merge database - Veritabanını birleştir - - - KeePass 1 database - KeePass 1 veritabanı - - - Open KeePass 1 database - KeePass 1 veritabanı aç - - - Open OPVault - OPVault aç + Veri tabanını birleştir Export database to CSV file - Veritabanını CSV olarak dışa aktar + Veri tabanını CSV olarak dışa aktar Writing the CSV file failed. @@ -2225,34 +2577,42 @@ Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin.Writing the HTML file failed. HTML dosyası yazılamadı. + + Export database to XML file + Veri tabanını XML dosyasına aktar + + + XML file + XML dosyası + + + Writing the XML file failed + XML dosyası yazılamadı + Export Confirmation - Dışa aktarım onayı + Dışa aktarma onayı You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Veritabanınızı şifrelenmemiş bir dosya olarak dışa aktarmak üzeresiniz. Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! İlerlemek istediğinize emin misiniz? - - - New Database - Yeni veritabanı - - - %1 [New Database] - Database tab name modifier - %1 [Yeni veritabanı] + Veri tabanınızı şifrelenmemiş bir dosya olarak dışa aktarmak üzeresiniz. Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! İlerlemek istediğinize emin misiniz? %1 [Locked] Database tab name modifier %1 [Kilitli] + + %1 [Temporary] + Database tab name modifier + %1 [Temporary] + DatabaseWidget - Database Tags - Veritabanı etiketleri + Searches and Tags + Aramalar ve etiketler Searching… @@ -2302,21 +2662,25 @@ Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin.Expired entries Süresi geçmiş kayıtlar + + Entries expiring within %1 day(s) + %1 gün içinde süresi geçecek kayıtlar%1 gün içinde süresi geçecek kayıtlar + No current database. - Geçerli bir veritabanı yok. + Geçerli bir veri tabanı yok. No source database, nothing to do. - Kaynak veritabanı olmadığından yapılacak bir şey yok. + Kaynak veri tabanı olmadığından yapılacak bir şey yok. Successfully merged the database files. - Veritabanı dosyaları birleştirildi. + Veri tabanı dosyaları birleştirildi. Database was not modified by merge operation. - Birleştirme işlemi veritabanını değiştirmedi. + Birleştirme işlemi veri tabanını değiştirmedi. Search Results (%1) @@ -2326,9 +2690,21 @@ Bu kesinlikle bir uygulama hatasıdır. Lütfen geliştiricilere bildirin.No Results Uygun bir sonuç bulunamadı + + Save + Kaydet + + + Enter a unique name or overwrite an existing search from the list: + Eşsiz bir ad yazın ya da listede var olan bir aramayı değiştirin: + + + Save Search + Aramayı kaydet + Lock Database? - Veritabanı kilitlensin mi? + Veri tabanı kilitlensin mi? You are editing an entry. Discard changes and lock anyway? @@ -2343,7 +2719,7 @@ Değişiklikler kaydedilsin mi? Database was modified. Save changes? - Veritabanı değiştirilmiş. + Veri tabanı değiştirilmiş. Değişiklikler kaydedilsin mi? @@ -2354,39 +2730,19 @@ Değişiklikler kaydedilsin mi? File has changed Dosya değişmiş - - The database file has changed. Do you want to load the changes? - Veritabanı dosyası değiştirilmiş. Değişiklikleri yüklemek ister misiniz? - - - Merge Request - Birleştirme isteği - - - The database file has changed and you have unsaved changes. -Do you want to merge your changes? - Veritabanı dosyası değiştirilmiş ve kaydedilmemiş değişiklikleriniz var. -Değişikliklerinizi birleştirmek ister misiniz? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Otomatik yüklenmeye çalışılırken yeni veritabanı dosyası açılamadı. -Hata: %1 - Disable safe saves? - Güvenli kaydetme devre dışı bırakılsın mı? + Güvenli kaydetme kapatılsın mı? 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 birkaç kez veritabanını kaydedemedi. Bu durum genellikle kaydedilen bir dosyayı kilitleyen dosya eşitleme hizmetlerinden kaynaklanır. -Güvenli kaydetme devre dışı bırakılarak yeniden denensin mi? + KeePassXC birkaç kez veri tabanını kaydedemedi. Bu durum genellikle kaydedilen bir dosyayı kilitleyen dosya eşitleme hizmetlerinden kaynaklanır. +Güvenli kaydetme kapatılarak yeniden denensin mi? Writing the database failed: %1 - Veritabanına yazılamadı: %1 + Veri tabanına yazılamadı: %1 Passwords @@ -2394,15 +2750,15 @@ Güvenli kaydetme devre dışı bırakılarak yeniden denensin mi? Save database as - Veritabanını farklı kaydet + Veri tabanını farklı kaydet KeePass 2 Database - KeePass 2 veritabanı + KeePass 2 veri tabanı Save database backup - Veritabanı yedeğini kaydet + Veri tabanı yedeğini kaydet Empty recycle bin? @@ -2414,11 +2770,96 @@ Güvenli kaydetme devre dışı bırakılarak yeniden denensin mi? Could not find database file: %1 - Veritabanı dosyası bulunamadı: %1 + Veri tabanı dosyası bulunamadı: %1 - - Entries expiring within %1 day(s) - %1 gün içinde süresi geçecek kayıtlar%1 gün içinde süresi geçecek kayıtlar + + New Database + Yeni veri tabanı + + + %1 [New Database] + Database tab name modifier + %1 [Yeni veri tabanı] + + + Remote Sync did not contain any download or upload commands. + Uzak eşitlemede herhangi bir indirme ya da yükleme komutu bulunmuyor. + + + Remote sync '%1' completed successfully! + '%1' uzak eşitlemesi tamamlandı! + + + Remote sync '%1' failed: %2 + '%1' uzak eşitlemesi tamamlanamadı: %2 + + + Error while saving database %1: %2 + %1 veri tabanı kaydedilirken sorun çıktı: %2 + + + Downloading... + İndiriliyor... + + + Uploading... + Yükleniyor... + + + Syncing... + Eşitleniyor... + + + Remove passkey from entry + Kaydın geçiş anahtarını kaldır + + + Do you want to remove the passkey from this entry? + Geçiş anahtarını bu kayıttan kaldırmak istediğinize emin misiniz? + + + The database file "%1" was modified externally + "%1" veri tabanı dosyası dışarıdan değiştirilmiş + + + Do you want to load the changes? + Değişiklikleri yüklemek ister misiniz? + + + Reload database + Veri tabanını yeniden yükle + + + Reloading database… + Veri tabanı yeniden yükleniyor… + + + Reload canceled + Yeniden yükleme iptal edildi + + + Reload successful + Yeniden yüklendi + + + Reload pending user action… + Yeniden yükleme için kullanıcı işlemi bekleniyor… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + "%1" veri tabanı dosyası dışarıdan değiştirilmiş.<br>Nasıl ilerlemek istersiniz?<br><br>Tüm değişiklikler birleştirilsin<br>Kaydedilinceye kadar diskteki değişiklikler yok sayılsın<br>Kaydedilmemiş değişiklikler silinsin + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + "%1" veri tabanı dosyası dışarıdan değiştirilmiş.<br>Nasıl ilerlemek istersiniz?<br><br>Tüm değişiklikler birleştirilsin ve kaydedilsin<br>Diskteki değişikliklerin üzerine yazılsın<br>Kaydedilmemiş değişiklikler silinsin + + + Database file overwritten. + Veri tabanı dosyasının üzerine yazıldı. + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + Diskteki veri tabanı dosyası geçerli kimlik doğrulama bilgileriyle açılamadı.<br>İlerlemek için yeni kimlik doğrulama bilgilerini yazın ve/veya geçerli donanım anahtarını kullanın. @@ -2471,10 +2912,6 @@ Güvenli kaydetme devre dışı bırakılarak yeniden denensin mi? n/a yok - - (encrypted) - (şifrelenmiş) - Select private key Kişisel anahtarı seçin @@ -2502,8 +2939,8 @@ Güvenli kaydetme devre dışı bırakılarak yeniden denensin mi? An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - Bu kayıt bir dış birleştirme işlemi ile devre dışı bırakılmış. -Maalesef yapılmış değişiklikler kaybolacak. + Bu kayıt bir dış birleştirme işlemi ile geçersiz kılınmış. +Ne yazık ki yapılmış değişiklikler kaybolacak. Auto-Type Validation Error @@ -2561,6 +2998,10 @@ Düzeltmek ister misiniz? Hide Gizle + + %n hour(s) + %n saat%n saat + %n week(s) %n hafta%n hafta @@ -2573,9 +3014,9 @@ Düzeltmek ister misiniz? %n year(s) %n yıl%n yıl - - %n hour(s) - %n saat%n saat + + Failed to decrypt SSH key, ensure password is correct. + SSH anahtarının şifresi çözülemedi. Parolanın doğru olduğundan emin olun. @@ -2642,7 +3083,7 @@ Düzeltmek ister misiniz? Exclude from database reports - Veritabanını raporlarına katılmasın + Veri tabanı raporlarına katılmasın Foreground Color: @@ -2695,10 +3136,20 @@ Düzeltmek ister misiniz? Add new window association Yeni pencere ilişkilendirmesi ekle + + + + Add item + + + Remove selected window association Seçilmiş pencere ilişkilendirmesini kaldır + + - + Remove item + - + Window title: Pencere başlığı: @@ -2723,55 +3174,29 @@ Düzeltmek ister misiniz? Custom Auto-Type sequence for this window Bu pencere için özel otomatik yazma sırası - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Bu ayarlar, kaydın tarayıcı uzantısındaki davranışını etkiler. - General Genel Hide this entry from the browser extension - Bu kayıt tarayıcı uzantısında gizlensin + Bu kayıt tarayıcı eklentisinde gizlensin Skip Auto-Submit for this entry Bu kayıt için otomatik gönderim yapılmasın - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Bu ayar tarayıcıya yalnız HRRP Auth pencereleri için gönderilir. Bu seçenek etkinleştirildiğinde, bu kayıt normal oturum açma formlarında seçilmek üzere görüntülenmez. - Use this entry only with HTTP Basic Auth - Bu kayıt yalnız HTTP temel kimlik doğrulaması ile kullanılsın - - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Bu ayar tarayıcıya HTTP kimlik doğrulama pencereleri için gönderilmez. Bu seçenek etkinleştirildiğinde, bu kayıt HTTP kimlik doğrulama pencerelerinde seçilmek üzere görüntülenmez. + Bu kayıt yalnızca HTTP temel kimlik doğrulaması ile kullanılsın Do not use this entry with HTTP Basic Auth Bu kayıt HTTP temel kimlik doğrulaması ile kullanılmasın - - Additional URL's - Ek adresler - Add Ekle @@ -2784,6 +3209,22 @@ Düzeltmek ister misiniz? Edit Düzenle + + These settings affect the entry's behaviour with the browser extension. + Bu ayarlar, kaydın tarayıcı eklentisindeki davranışını etkiler. + + + Additional URLs + Ek adresler + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Bu kayıt tarayıcıya yalnızca HRRP Auth pencereleri için gönderilir. Bu seçenek açıldığında, bu kayıt normal oturum açma formlarında seçilmek üzere görüntülenmez. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Bu kayıt tarayıcıya HTTP kimlik doğrulama pencereleri için gönderilmez. Bu seçenek açıldığında, bu kayıt HTTP kimlik doğrulama pencerelerinde seçilmek üzere görüntülenmez. + EditEntryWidgetHistory @@ -2834,22 +3275,10 @@ Düzeltmek ister misiniz? Notes field Notlar alanı - - Toggle the checkbox to reveal the notes section. - Notlar bölümünün görüntülenmesi için kutu işaretini değiştirin. - Username field Kullanıcı adı alanı - - Toggle notes visible - Notların görünürlüğünü değiştir - - - Notes: - Notlar - Expiration field Geçerlilik sonu alanı @@ -2866,14 +3295,6 @@ Düzeltmek ister misiniz? Presets Hazır ayarlar - - Password: - Parola: - - - URL: - Adres: - Url field Adres alanı @@ -2882,18 +3303,10 @@ Düzeltmek ister misiniz? Download favicon for URL Adresin site simgesini indir - - Title: - Başlık: - Title field Başlık alanı - - Username: - Kullanıcı adı: - Password field Parola alanı @@ -2902,18 +3315,42 @@ Düzeltmek ister misiniz? Toggle expiration Geçerlilik sonunu aç/kapat - - Expires: - Geçerlilik sonu: - - - Tags: - Etiketler: - Tags list Etiket listesi + + &Username: + &Kullanıcı adı: + + + &Title: + &Başlık: + + + &Password: + &Parola: + + + UR&L: + &Adres: + + + &Notes: + &Notlar: + + + Toggle notes visibility + Notların görünürlüğünü değiştir + + + T&ags: + &Etiketler: + + + &Expires: + &Geçerlilik sonu: + EditEntryWidgetSSHAgent @@ -2923,7 +3360,7 @@ Düzeltmek ister misiniz? Remove key from agent when database is closed/locked - Veritabanı kapalıyken/kilitliyken anahtar uygulamadan kaldırılsın + Veri tabanı kapalıyken/kilitliyken anahtar uygulamadan kaldırılsın Comment @@ -2931,7 +3368,7 @@ Düzeltmek ister misiniz? Add key to agent when database is opened/unlocked - Veritabanı açıkken/kilitlenmemişken anahtar uygulamaya eklensin + Veri tabanı açıkken/kilitlenmemişken anahtar uygulamaya eklensin Decrypt @@ -2953,19 +3390,6 @@ Düzeltmek ister misiniz? Private key Kişisel anahtar - - External file - Dış dosya - - - Browser for key file - Anahtar dosyası için tarayıcı - - - Browse… - Button for opening file dialog - Göz at… - Attachment Ek dosya @@ -2982,6 +3406,23 @@ Düzeltmek ister misiniz? Remove from agent Uygulamadan kaldır + + External file + Dış dosya + + + Browser for key file + Anahtar dosyası için tarayıcı + + + Browse… + Button for opening file dialog + Göz at… + + + Generate + Oluştur + Select attachment file Ek dosyayı seç @@ -3006,6 +3447,10 @@ Düzeltmek ister misiniz? seconds saniye + + Clear agent + Uygulamayı temizle + EditGroupWidget @@ -3017,10 +3462,6 @@ Düzeltmek ister misiniz? Icon Simge - - Browser Integration - Tarayıcı bütünleşmesi - Properties Özellikler @@ -3037,13 +3478,17 @@ Düzeltmek ister misiniz? Group has unsaved changes Grupta kaydedilmemiş değişiklikler var + + Browser Integration + Tarayıcı bütünleşmesi + Enable - Etkinleştir + Disable - Devre dışı bırak + Kapat Inherit from parent group (%1) @@ -3052,21 +3497,17 @@ Düzeltmek ister misiniz? EditGroupWidgetBrowser - - Edit Group - Grubu düzenle - These settings affect to the group's behaviour with the browser extension. - Bu ayarlar, grubun tarayıcı uzantısındaki davranışını etkiler. + Bu ayarlar, grubun tarayıcı eklentisindeki davranışını etkiler. Hide entries from browser extension: - Tarayıcı uzantısında gizlenecek kayıtlar: + Tarayıcı eklentisinde gizlenecek kayıtlar: Hide entries from browser extension toggle for this and sub groups - Kayıtlar bu grup ve alt gruplarında tarayıcı uzantısından gizlenir + Kayıtlar bu grup ve alt gruplarında tarayıcı eklentisinden gizlenir Skip Auto-Submit for entries: @@ -3082,7 +3523,7 @@ Düzeltmek ister misiniz? Only HTTP Auth toggle for this and sub groups - Bu grup ve alt gruplarında yalnız HTTP kimlik doğrulaması kullanılır + Bu grup ve alt gruplarında yalnızca HTTP kimlik doğrulaması kullanılır Do not use entries with HTTP Basic Auth: @@ -3092,12 +3533,28 @@ Düzeltmek ister misiniz? Do not use HTTP Auth toggle for this and sub groups Bu grup ve alt gruplarında HTTP kimlik doğrulaması kullanılmaz + + Omit WWW subdomain from matching: + WWW alt etki alanı eşleşmeye katılmasın: + + + Omit WWW subdomain from matching toggle for this and sub groups + Bu alt grupları için WWW alt etki alanının eşleşmeye katılma durumunu değiştirir + + + Restrict matching to given browser key: + Eşleşme belirtilen tarayıcı anahtarı ile kısıtlansın: + + + Restrict matching to given browser key toggle for this and sub groups + Eşleşmeyi belirtilen tarayıcı anahtarı ile kısıtlama bu ve alt grupları için değiştirilsin + EditGroupWidgetKeeShare Sharing mode field - Paylaşma kipi alanı + Paylaşım kipi alanı Password field @@ -3137,7 +3594,7 @@ Düzeltmek ister misiniz? Inactive - Devre dışı + Etkisiz Import @@ -3155,32 +3612,32 @@ Düzeltmek ister misiniz? Your KeePassXC version does not support sharing this container type. Supported extensions are: %1. Kullandığınız KeePassXC sürümü bu kapsayıcı türünün paylaşılmasını desteklemiyor. -Desteklenen uzantılar: %1. +Desteklenen eklentiler: %1. %1 is already being exported by this database. - %1 zaten bu veritabanından dışa aktarılıyor. + %1 zaten bu veri tabanından dışa aktarılıyor. %1 is already being imported by this database. - %1 zaten bu veritabanı içine aktarılıyor. + %1 zaten bu veri tabanı içine aktarılıyor. %1 is being imported and exported by different groups in this database. - %1 bu veritabanındaki farklı gruplar tarafından içe/dışa aktarılıyor. + %1 bu veri tabanındaki farklı gruplar tarafından içe/dışa aktarılıyor. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare şu anda devre dışı. Uygulama ayarları bölümünden içe/dışa aktarmayı etkinleştirebilirsiniz. + KeeShare şu anda kapalı. Uygulama ayarları bölümünden içe/dışa aktarmayı açabilirsiniz. Database export is currently disabled by application settings. - Veritabanı dışa aktarma özelliği uygulama ayarlarından devre dışı bırakılmış. + Veri tabanı dışa aktarma özelliği uygulama ayarlarından kapatılmış. Database import is currently disabled by application settings. - Veritabanı içe aktarma özelliği uygulama ayarlarından devre dışı bırakılmış. + Veri tabanı içe aktarma özelliği uygulama ayarlarından kapatılmış. KeeShare container @@ -3306,7 +3763,7 @@ Desteklenen uzantılar: %1. Apply to this group only - Yalnız bu gruba uygula + Yalnızca bu gruba uygula Also apply to child groups @@ -3324,10 +3781,6 @@ Desteklenen uzantılar: %1. Unable to fetch favicon. Site simgesi alınamadı. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - DuckDuckGo site simgesi hizmetini Araçlar -> Ayarlar -> Güvenlik bölümünden etkinleştirebilirsiniz - Existing icon selected. Var olan simge seçildi. @@ -3354,12 +3807,16 @@ Desteklenen uzantılar: %1. %n icon(s) already exist in the database - %n simge veritabanında zaten var%n simge veritabanında zaten var + %n simge veri tabanında zaten var%n simge veri tabanında zaten var The following icon(s) failed: Şu simgeler alınamadı:Şu simgeler alınamadı: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + DuckDuckGo site simgesi hizmetini Uygulama ayarları -> Güvenlik bölümünden açabilirsiniz + EditWidgetProperties @@ -3436,6 +3893,24 @@ Bu işlem etkilenecek eklentilerin bozulmasına neden olabilir. %1 - Clone Kopya - %1 + + Passkey + Geçiş anahtarı + + + Invalid conversion type: %1 + Dönüşüm türü geçersiz: %1 + + + Invalid conversion syntax: %1 + Dönüşüm söz dizimi geçersiz: %1 + + + Invalid regular expression syntax %1 +%2 + Kurallı ifade sözdizimi geçersiz %1 +%2 + EntryAttachments @@ -3444,6 +3919,21 @@ Bu işlem etkilenecek eklentilerin bozulmasına neden olabilir. "%1" dosyası açılamadı + + EntryAttachmentsDialog + + Form + Form + + + File name + Dosya adı + + + File contents... + Dosya içerikleri... + + EntryAttachmentsModel @@ -3481,14 +3971,6 @@ Bu işlem etkilenecek eklentilerin bozulmasına neden olabilir. Remove Kaldır - - Rename selected attachment - Seçilmiş ek dosyayı yeniden adlandır - - - Rename - Yeniden adlandır - Open selected attachment Seçilmiş ek dosyayı aç @@ -3564,12 +4046,6 @@ Bu işlem etkilenecek eklentilerin bozulmasına neden olabilir. Confirm Overwrite Attachment Ek dosya üzerine yazmayı onayla - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - "%1" ek dosyası zaten var. -Var olan ek dosyanın üzerine yazılmasını ister misiniz? - Confirm Attachment Ek dosyayı onayla @@ -3580,7 +4056,7 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 büyük bir dosya (%2 MB). -Veritabanının çok büyümesine ve başarımın düşmesine neden olabilir. +Veri tabanının çok büyümesine ve başarımın düşmesine neden olabilir. Bu dosyayı eklemek istediğinize emin misiniz? @@ -3592,7 +4068,7 @@ Bu dosyayı eklemek istediğinize emin misiniz? The attachment '%1' was modified. Do you want to save the changes to your database? '%1' ek dosyası değiştirildi. -Değişiklikleri veritabanına kaydetmek ister misiniz? +Değişiklikleri veri tabanına kaydetmek ister misiniz? Saving attachment failed @@ -3604,6 +4080,24 @@ Error: %1 Güncellenmiş ek dosya kaydedilemedi. Hata: %1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + "%1" ek dosyası zaten var. +Var olan ek dosyanın üzerine yazılmasını ister misiniz? + + + New + Yeni + + + Preview + Ön izleme + + + Failed to preview an attachment: Attachment not found + Bir ek dosya ön izlemesi görüntülenemedi: Ek dosya bulunamadı + EntryAttributesModel @@ -3798,6 +4292,14 @@ Hata: %1 Has TOTP Tek kullanımlık parola var + + Background Color + Arka plan rengi + + + Group Path + Grup yolu + EntryPreviewWidget @@ -3818,8 +4320,8 @@ Hata: %1 Parola - Notes - Notlar + URL + Adres Expiration @@ -3838,8 +4340,8 @@ Hata: %1 Kullanıcı adı - URL - Adres + Notes + Notlar Advanced @@ -3889,13 +4391,21 @@ Hata: %1 Never Asla + + Double click to copy value + Değeri kopyalamak için çift tıklayın + Enabled - Etkin + Açık Disabled - Devre dışı + Kapalı + + + Double click to copy to clipboard + Panoya kopyalamak için çift tıklayın @@ -3904,6 +4414,10 @@ Hata: %1 Invalid URL Geçersiz adres + + Duplicate URL + Adresi kopyala + EntryView @@ -3919,6 +4433,10 @@ Hata: %1 Reset to defaults Varsayılanlara sıfırla + + + %1 entry(s)... + + %1 kayıt...+ %1 kayıt... + ExportDialog @@ -3934,13 +4452,13 @@ Hata: %1 You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - Veritabanını şifrelenmemiş bir dosya olarak dışa aktarmak üzeresiniz. + Veri tabanını şifrelenmemiş bir dosya olarak dışa aktarmak üzeresiniz. Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! database order - veritabanı sıralaması + veri tabanı sıralaması name (ascending) @@ -3956,7 +4474,7 @@ Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! Export database to HTML file - Veritabanını HTML olarak dışa aktar + Veri tabanını HTML olarak dışa aktar HTML file @@ -3990,7 +4508,7 @@ Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! Another secret service is running (%1).<br/>Please stop/remove it before re-enabling the Secret Service Integration. - Başka bir gizli hizmet çalışıyor (%1).<br/>Gizli hizmet bütünleşmesini yeniden etkinleştirmeden önce bu hizmeti durdurun ya da kaldırın. + Başka bir gizli hizmet çalışıyor (%1).<br/>Gizli hizmet bütünleşmesini yeniden açmadan önce bu hizmeti durdurun ya da kaldırın. Failed to register DBus service at %1.<br/> @@ -4021,7 +4539,7 @@ Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - "%2" veritabanındaki "%1" kaydı %3 tarafından kullanıldı + "%2" veri tabanındaki "%1" kaydı %3 tarafından kullanıldı @@ -4084,7 +4602,7 @@ Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! HibpDownloader Online password validation failed - Parola çevrimiçi olarak onaylanamadı + Parola çevrim içi olarak onaylanamadı @@ -4101,7 +4619,7 @@ Bu işlem, parolalarınızı ve önemli bilgilerinizi korumasız kılacak! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. Simgeleri indirmede sorun mu yaşıyorsunuz? -Uygulama ayarlarındaki güvenlik bölümünden DuckDuckGo web sitesi simge hizmetini etkinleştirin. +Uygulama ayarlarındaki güvenlik bölümünden DuckDuckGo site simge hizmetini açın. Close @@ -4140,6 +4658,198 @@ Uygulama ayarlarındaki güvenlik bölümünden DuckDuckGo web sitesi simge hizm Site simgeleri indiriliyor (%1/%2)… + + ImportWizard + + Import Wizard + İçe aktarma yardımcısı + + + + ImportWizardPageReview + + WizardPage + Yardımcı sayfası + + + Entry count: %1 + Kayıt sayısı: %1 + + + Group + Grup + + + Title + Başlık + + + Username + Kullanıcı adı + + + Password + Parola + + + Url + Adres + + + Could not load key file. + Anahtar dosyası yüklenemedi. + + + Could not open remote database. Password or key file may be incorrect. + Uzak veri tabanı açılamadı. Parola ya da anahtar dosyası doğru olmayabilir. + + + + ImportWizardPageSelect + + Form + Form + + + Import File Selection + İçe aktarma dosyası seçimi + + + Password: + Parola: + + + Key File: + Anahtar dosyası: + + + Browse… + Göz at… + + + Import Into: + Şuraya içe aktar: + + + New Database + Yeni veri tabanı + + + No unlocked databases available + Kullanılabilecek kilitlenmemiş bir veri tabanı yok + + + Existing Database: + Var olan veri tabanı: + + + Import File: + İçe aktarma dosyası: + + + Comma Separated Values (.csv) + Virgül ile ayrılmış değerler (.csv) + + + 1Password Export (.1pux) + 1Password dışa aktarımı (.1pux) + + + 1Password Vault (.opvault) + 1Password kasası (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 veri tabanı (.kdb) + + + Open OPVault + OPVault aç + + + Select import file + İçe aktarma dosyasını seçin + + + All files + Tüm dosyalar + + + Key files + Anahtar dosyaları + + + Select key file + Anahtar dosyasını seçin + + + Comma Separated Values + Virgül ile ayrılmış değerler + + + 1Password Export + 1Password dışa aktarımı + + + Bitwarden JSON Export + Bitwarden JSON dışa aktarımı + + + 1Password Vault + 1Password dışa aktarımı + + + KeePass1 Database + KeePass1 veri tabanı + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON dışa aktarımı + + + Temporary Database + Geçici veri tabanı + + + Command: + Komut: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + Örnek: "sftp kullaniciadi@sunucu" ya da "scp kullaniciadi@sunucu:UzakVeriTabanı.kdbx {TEMP_DATABASE}" + + + Input: + Giriş: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + Örnek: +get UzakVeriTabanı.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE}, veri tabanını geçici bir konumda depolamak için yer belirtici olarak kullanılır +Komuttan çıkılması gerekir. `sftp` durumunda son komut olarak `exit` gönderilmelidir + + + Remote Database (.kdbx) + Uzak veri tabanı (.kdbx) + + KMessageWidget @@ -4155,21 +4865,21 @@ Uygulama ayarlarındaki güvenlik bölümünden DuckDuckGo web sitesi simge hizm Kdbx3Reader Missing database headers - Veritabanı üst bilgileri eksik + Veri tabanı üst bilgileri eksik Unable to calculate database key - Veritabanı anahtarı hesaplanamadı + Veri tabanı anahtarı hesaplanamadı Unable to issue challenge-response: %1 - Soru-yanıt gönderilemedi: %1 + Soru/yanıt gönderilemedi: %1 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Belirtilen kimlik doğrulama bilgileri geçersiz. Lütfen yeniden deneyin. -Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir. +Bu sorunla yeniden karşılaşırsanız, veri tabanı dosyası bozulmuş olabilir. Header doesn't match hash @@ -4197,22 +4907,22 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Unable to issue challenge-response: %1 - Soru-yanıt gönderilemedi: %1 + Soru/yanıt gönderilemedi: %1 Unable to calculate database key - Veritabanı anahtarı hesaplanamadı + Veri tabanı anahtarı hesaplanamadı Kdbx4Reader missing database headers - veritabanı üst bilgileri eksik + veri tabanı üst bilgileri eksik Unable to calculate database key: %1 - Veritabanı anahtarı hesaplanamadı: %1 + Veri tabanı anahtarı hesaplanamadı: %1 Invalid header checksum size @@ -4226,7 +4936,7 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Belirtilen kimlik doğrulama bilgileri geçersiz. Lütfen yeniden deneyin. -Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir. +Bu sorunla yeniden karşılaşırsanız, veri tabanı dosyası bozulmuş olabilir. (HMAC mismatch) @@ -4350,7 +5060,7 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Unable to calculate database key: %1 - Veritabanı anahtarı hesaplanamadı: %1 + Veri tabanı anahtarı hesaplanamadı: %1 Failed to serialize KDF parameters variant map @@ -4406,7 +5116,7 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Failed to read database file. - Veritabanı dosyası okunamadı. + Veri tabanı dosyası okunamadı. The selected file is an old KeePass 1 database (.kdb). @@ -4415,16 +5125,16 @@ 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. Seçilmiş dosya eski bir KeePass 1 veri tabanıdır (.kdb). -Veritabanı > İçe aktar… > KeePass 1 veritabanı üzerine tıklayarak içe aktarabilirsiniz. -Bu aktarım tek yönlüdür. İçe aktarılan veritabanını eski KeePassX 0.4 sürümüyle açamazsınız. +Veri tabanı > İçe aktar… > KeePass 1 veri tabanı üzerine tıklayarak içe aktarabilirsiniz. +Bu aktarım tek yönlüdür. İçe aktarılan veri tabanını eski KeePassX 0.4 sürümüyle açamazsınız. Not a KeePass database. - Bir KeePass veritabanı değil. + Bir KeePass veri tabanı değil. Unsupported KeePass 2 database version. - Desteklenmeyen KeePass 2 veritabanı sürümü. + Desteklenmeyen KeePass 2 veri tabanı sürümü. @@ -4499,7 +5209,7 @@ Line %2, column %3 No entry uuid found - Kayıdın eşsiz kodu bulunamadı + Kaydın eşsiz kodu bulunamadı History element with different uuid @@ -4574,17 +5284,6 @@ Line %2, column %3 Kişisel anahtar açılamadı - - KeePass1OpenWidget - - Import KeePass1 Database - KeePass 1 veritabanını içe aktar - - - Unable to open the database. - Veritabanı açılamadı. - - KeePass1Reader @@ -4593,7 +5292,7 @@ Line %2, column %3 Not a KeePass database. - Bir KeePass veritabanı değil. + Bir KeePass veri tabanı değil. Unsupported encryption algorithm. @@ -4601,7 +5300,7 @@ Line %2, column %3 Unsupported KeePass database version. - KeePass veritabanı sürümü desteklenmiyor. + KeePass veri tabanı sürümü desteklenmiyor. Unable to read encryption IV @@ -4638,7 +5337,7 @@ Line %2, column %3 Unable to calculate database key - Veritabanı anahtarı hesaplanamadı + Veri tabanı anahtarı hesaplanamadı unable to seek to content position @@ -4648,7 +5347,7 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. Belirtilen kimlik doğrulama bilgileri geçersiz. Lütfen yeniden deneyin. -Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir. +Bu sorunla yeniden karşılaşırsanız, veri tabanı dosyası bozulmuş olabilir. Key transformation failed @@ -4656,7 +5355,7 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Invalid group field type number - Grup alanı türünün numarası geçersiz + Grup alanı türü numarası geçersiz Invalid group field size @@ -4668,31 +5367,31 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Incorrect group id field size - Grup kodu alanının boyutu hatalı + Grup kodu alanının boyutu uygunsuz Incorrect group creation time field size - Grup oluşturulma zamanı alanının boyutu hatalı + Grup oluşturulma zamanı alanının boyutu uygunsuz Incorrect group modification time field size - Grup değiştirilme zamanı alanının boyutu hatalı + Grup değiştirilme zamanı alanının boyutu uygunsuz Incorrect group access time field size - Grup erişilme zamanı alanının boyutu hatalı + Grup erişilme zamanı alanının boyutu uygunsuz Incorrect group expiry time field size - Grup geçerlilik sonu alanının boyutu hatalı + Grup geçerlilik sonu alanının boyutu uygunsuz Incorrect group icon field size - Grup simge alanının boyutu geçersiz + Grup simge alanının boyutu uygunsuz Incorrect group level field size - Grup düzey alanının boyutu geçersiz + Grup düzey alanının boyutu uygunsuz Invalid group field type @@ -4704,7 +5403,7 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Missing entry field type number - Kayıt alanının türü numarası eksik + Kayıt alanı türü numarası eksik Invalid entry field size @@ -4767,11 +5466,11 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Import is disabled in settings - İçe aktarma özelliği ayarlardan devre dışı bırakılmış + İçe aktarma özelliği ayarlardan kapatılmış Export is disabled in settings - Dışa aktarma özelliği ayarlardan devre dışı bırakılmış + Dışa aktarma özelliği ayarlardan kapatılmış Inactive share @@ -4821,11 +5520,11 @@ Bu sorunla yeniden karşılaşırsanız, veritabanı dosyası bozulmuş olabilir Generate a new key file or choose an existing one to protect your database. - Veritabanını korumak için yeni bir anahtar dosyası oluşturun ya da var olan birini seçin. + Veri tabanını korumak için yeni bir anahtar dosyası oluşturun ya da var olan birini seçin. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - Not: Veritabanının kilidinin açılmasını engelleyeceği için içeriği değişebilecek bir dosya kullanmayın! + Not: Veri tabanının kilidinin açılmasını engelleyeceği için içeriği değişebilecek bir dosya kullanmayın! Browse for key file @@ -4903,7 +5602,7 @@ Message: %2 You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Var olan veritabanını kendi anahtar dosyası olarak kullanamazsınız. Lütfen başka bir dosya seçin ya da yeni bir anahtar dosyası oluşturun. + Var olan veri tabanını kendi anahtar dosyası olarak kullanamazsınız. Lütfen başka bir dosya seçin ya da yeni bir anahtar dosyası oluşturun. Suspicious Key File @@ -4912,7 +5611,7 @@ Message: %2 The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Seçilmiş anahtar dosyası bir parola veritabanı dosyasına benziyor. Anahtar dosya, içeriği sabit ve değişmeyen bir dosya olmalıdır. Yoksa veritabanına erişimi sonsuza kadar kaybedersiniz. + Seçilmiş anahtar dosyası bir parola veri tabanı dosyasına benziyor. Anahtar dosya, içeriği sabit ve değişmeyen bir dosya olmalıdır. Yoksa veri tabanına erişimi sonsuza kadar kaybedersiniz. Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? @@ -4935,15 +5634,11 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? MainWindow &Database - &Veritabanı + &Veri tabanı &Recent Databases - &Son kullanılan veritabanları - - - &Import - İç&e aktar + &Son kullanılan veri tabanları &Export @@ -4965,6 +5660,10 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? TOTP Tek kullanımlık parola + + Tags + Etiketler + &Groups &Gruplar @@ -4995,48 +5694,32 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? &Open Database… - &Veritabanı aç… + &Veri tabanı aç… &Save Database - Veritabanını &kaydet + Veri tabanını &kaydet &Close Database - Veritabanını ka&pat + Veri tabanını ka&pat &New Database… - &Yeni veritabanı… - - - Create a new database - Yeni bir veritabanı oluştur + &Yeni veri tabanı… &Merge From Database… - &Veritabanıyla birleştir… - - - Merge from another KDBX database - Başka bir KDBX veritabanıyla birleştir + &Veri tabanıyla birleştir… &New Entry… Kayıt &ekle… - - Add a new entry - Yeni kayıt ekle - &Edit Entry… Kaydı &düzenle… - - View or edit entry - Kaydı görüntüle ya da düzenle - &Delete Entry… Kaydı &sil… @@ -5045,10 +5728,6 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? &New Group… Grup &ekle… - - Add a new group - Yeni bir grup ekle - &Edit Group… Grubu &düzenle… @@ -5071,27 +5750,19 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Sa&ve Database As… - &Veritabanını farklı kaydet… + &Veri tabanını farklı kaydet… Database &Security… - &Veritabanı güvenliği… + &Veri tabanı güvenliği… Database &Reports… - Veritabanı &raporları… - - - Statistics, health check, etc. - İstatistikler, sağlık taraması vb. + Veri tabanı &raporları… &Database Settings… - &Veritabanı ayarları… - - - Database settings - Veritabanı ayarları + &Veri tabanı ayarları… &Clone Entry… @@ -5101,34 +5772,18 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Move u&p &Yukarı taşı - - Move entry one step up - Kaydı bir sıra yukarı taşır - Move do&wn &Aşağı taşı - - Move entry one step down - Kaydı bir sıra aşağı taşır - Copy &Username &Kullanıcı adını kopyala - - Copy username to clipboard - Kullanıcı adını panoya kopyala - Copy &Password &Parolayı kopyala - - Copy password to clipboard - Parolayı panoya kopyala - &Settings &Ayarlar @@ -5151,36 +5806,24 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? &Lock Database - Veritabanını &kilitle + Veri tabanını &kilitle Lock &All Databases - &Tüm veritabanlarını kilitle + &Tüm veri tabanlarını kilitle &Title &Başlık - Copy title to clipboard - Başlığı panoya kopyala - - - &URL - &Adres - - - Copy URL to clipboard - Adresi panoya kopyala + Copy &URL + &Adresi kopyala &Notes &Notlar - - Copy notes to clipboard - Notları panoya kopyala - &CSV File… &CSV dosyası… @@ -5191,28 +5834,16 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? KeePass 1 Database… - KeePass 1 veritabanı… - - - Import a KeePass 1 database - KeePass 1 veritabanını içe aktar + KeePass 1 veri tabanı… 1Password Vault… 1Password kasası… - - Import a 1Password Vault - 1Password kasasını içe aktar - CSV File… CSV dosyası… - - Import a CSV file - CSV dosyasını içe aktar - Show TOTP Tek kullanımlık parolayı görüntüle @@ -5229,6 +5860,10 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Copy &TOTP &Tek kullanımlık parolayı kopyala + + Copy Password and TOTP + Parola ve tek kullanımlık parolayı kopyala + E&mpty recycle bin Çöpü b&oşalt @@ -5239,7 +5874,7 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Report a &Bug - Hata &bildir + Hata &bildirin &Getting Started @@ -5251,11 +5886,7 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? &Online Help - &Çevrimiçi yardım - - - Go to online documentation - Çevrimiçi belgelere git + &Çevrim içi yardım &User Guide @@ -5267,11 +5898,11 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? &Keyboard Shortcuts - &Tuş takımı kısayolları + &Klavye kısayolları Save Database Backup… - Veritabanı yedeği kaydet… + Veri tabanı yedeği kaydet… Add key to SSH Agent @@ -5301,6 +5932,10 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Classic (Platform-native) Klasik (sistem için doğal) + + Show Menubar + Menü çubuğu görüntülensin + Show Toolbar Araç çubuğu görüntülensin @@ -5325,6 +5960,10 @@ Bu dosyayı kullanarak ilerlemek istediğinize emin misiniz? Clone Group... Grubu kopyala… + + &XML File… + &XML dosyası… + Clear history Geçmişi temizle @@ -5352,10 +5991,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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. - UYARI: Kullandığınız Qt sürümü KeePassXC ekran tuş takımının çökmesine neden olabilir. -KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir. + No Tags + Herhangi bir etiket yok Restore Entry(s) @@ -5385,6 +6022,10 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Quit KeePassXC KeePassXC uygulamasından çık + + %1 Entry(s) + %1 kayıt%1 kayıt + Please present or touch your YubiKey to continue… Lütfen, ilerlemek için YubiKey anahtarını takın ya da üzerindeki düğmeye dokunun… @@ -5395,30 +6036,338 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< You must restart the application to apply this setting. Would you like to restart now? - Bu ayarın etkin olması için uygulamayı yeniden başlatmalısınız. Şimdi yeniden başlatmak ister misiniz ? + Bu ayarın açılması için uygulamayı yeniden başlatmalısınız. Şimdi yeniden başlatmak ister misiniz ? + + + Allow Screen Capture + Ekran görüntüsü alınabilsin + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + 1Password 1PUX dosyasını içe aktar + + + Import… + İçe aktar… + + + Passkeys… + Geçiş anahtarları… + + + Import Passkey + Geçiş anahtarı içe aktar + + + Remote S&ync… + &Uzak eşitleme… + + + Quit Application + Uygulamadan çık + + + Open About Dialog + Hakkında bilgilerini görüntüle + + + Open Database + Veri tabanını aç + + + Create Database + Veri tabanı oluştur + + + Merge From Database + Veri tabanından aktar + + + Create Entry + Kayıt ekle + + + Edit Entry + Kaydı düzenle + + + Delete Entry + Kaydı sil + + + Create Group + Grup ekle + + + Edit Group + Grubu düzenle + + + Delete Group + Grubu sil + + + Download All Favicons + Tüm site simgelerini indir + + + Sort Groups A-Z + Grupları sırala A-Z + + + Sort Groups Z-A + Grupları sırala Z-A + + + Save Database As + Veri tabanını farklı kaydet + + + Show Database Security + Veri tabanı güvenliğini görüntüle + + + Show Database Reports + Veri tabanı raporlarını görüntüle + + + Show Database Settings + Veri tabanı ayarlarını görüntüle + + + Show Passkeys + Geçiş anahtarlarını görüntüle + + + Clone Entry + Kaydı kopyala + + + Move Entry Up + Kaydı yukarı taşı + + + Move Entry Down + Kaydı aşağı taşı + + + Copy Username + Kullanıcı adını kopyala + + + Copy Password + Parolayı kopyala + + + Show Application Settings + Uygulama ayarlarını görüntüle + + + Show Password Generator + Parola oluşturucuyu görüntüle + + + Remove Passkey From Entry + Kaydın geçiş anahtarını kaldır + + + Perform Auto-Type: {USERNAME} + Otomatik yaz: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Otomatik yaz: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Otomatik yaz: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Otomatik yaz: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Otomatik yaz: {TOTP} + + + Copy Title + Başlığı kopyala + + + Copy URL + Adresi kopyala + + + Copy Notes + Notları kopyala + + + Export to CSV + CSV olarak dışa aktar + + + Export to HTML + HTML olarak dışa aktar + + + Import KeePass1 Database + KeePass 1 veri tabanını içe aktar + + + Import 1Password Vault + 1Password kasasını içe aktar + + + Import CSV File + CSV dosyasından içe aktar + + + Show TOTP QR Code + Tek kullanımlık ya da QR kodu görüntüle + + + Set up TOTP + Tek kullanımlık parolayı ayarla + + + Empty Recycle Bin + Çöp kutusunu boşalt + + + Open Donation Website + Bağış sitesini aç + + + Open Bug Report + Hata bildirimini aç + + + Open Online Documentation + Çevrim içi belgeleri aç + + + Open Keyboard Shortcuts Guide + Klavye kısayolları rehberini aç + + + Save Database Backup + Veri tabanı yedeğini kaydet + + + SSH Agent: Add Key + SSH aracısı: Anahtar ekle + + + SSH Agent: Remove Key + SSH aracısı: Anahtarı kaldır + + + Toggle Compact Mode + Küçük kipi aç/kapat + + + Set Theme: Automatic + Temayı ayarla: Otomatik + + + Set Theme: Light + Temayı ayarla: Açık + + + Set Theme: Dark + Temayı ayarla: Koyu + + + Set Theme: Classic + Temayı ayarla: Klasik + + + Toggle Show Menubar + Menü çubuğunu görüntüle/gizle + + + Toggle Show Toolbar + Araç çubuğunu görüntüle/gizle + + + Toggle Show Preview Panel + Ön izleme panosunu görüntüle/gizle + + + Toggle Always on Top + Her zaman üstteyi aç/kapat + + + Toggle Hide Usernames + Kullanıcı adlarını görüntüle/gizle + + + Toggle Hide Passwords + Parolaları görüntüle/gizle + + + Export to XML + XML olarak dışa aktar + + + Toggle Allow Screen Capture + Ekran görüntüsü almayı aç/kapat + + + Show Group Panel + Grup panosu görüntülensin + + + Toggle Show Group Panel + Grup panosunu görüntüle/gizle + + + Setup Remote Sync… + Uzak eşitlemeyi kur... + + + Password Generator + Parola oluşturucu + + + E&xpire Entry… + Kayıt &geçerlilik süresi… + + + Clear SSH Agent + SSH uygulamasını temizle + + + Clear all identities in ssh-agent + SSH uygulamasındaki tüm kimlikleri temizle ManageDatabase Database settings - Veritabanı ayarları + Veri tabanı ayarları Edit database settings - Veritabanı ayarlarını düzenle + Veri tabanı ayarlarını düzenle Unlock database - Veritabanı kilidini aç + Veri tabanı kilidini aç Unlock database to show more information - Daha fazla bilgi görmek için veritabanı kilidini açın + Daha fazla bilgi görmek için veri tabanı kilidini açın Lock database - Veritabanını kilitle + Veri tabanını kilitle @@ -5454,26 +6403,6 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Overwriting %1 [%2] %1 [%2] üzerine yazılıyor - - older entry merged from database "%1" - eski kayıt "%1" veritabanıyla birleştirildi - - - Adding backup for older target %1 [%2] - %1 [%2] eski hedefi için yedek ekleniyor - - - Adding backup for older source %1 [%2] - %1 [%2] eski kaynağı için yedekleme ekleniyor - - - Reapplying older target entry on top of newer source %1 [%2] - %1 [%2] eski hedef kaydı yeni kaynağın üstüne yeniden uygulanıyor - - - Reapplying older source entry on top of newer target %1 [%2] - %1 [%2] eski kaynak kaydı yeni hedefin üstüne yeniden uygulanıyor - Synchronizing from newer source %1 [%2] %1 [%2] yeni kaynaktan eşitleniyor @@ -5511,7 +6440,7 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< NewDatabaseWizard Create a new KeePassXC database… - Yeni bir KeePassXC veritabanı oluştur… + Yeni bir KeePassXC veri tabanı oluştur… Root @@ -5531,26 +6460,18 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Veritabanı şifreleme ayarlarını buradan düzenleyebilirsiniz. Endişelenmeyin, bu ayarları daha sonra veritabanı ayarlarından değiştirebilirsiniz. - - - Advanced Settings - Gelişmiş ayarlar - - - Simple Settings - Temel ayarlar + Veri tabanı şifreleme ayarlarını buradan düzenleyebilirsiniz. Endişelenmeyin, bu ayarları daha sonra veri tabanı ayarlarından değiştirebilirsiniz. NewDatabaseWizardPageDatabaseKey Database Credentials - Veritabanı kimlik doğrulama bilgileri + Veri tabanı kimlik doğrulama bilgileri A set of credentials known only to you that protects your database. - Veritabanınızı koruyan, yalnız sizin bildiğiniz kimlik doğrulama bilgileri kümesi + Veri tabanınızı koruyan, yalnızca sizin bildiğiniz kimlik doğrulama bilgileri kümesi @@ -5561,18 +6482,37 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Veritabanı şifreleme ayarlarını buradan düzenleyebilirsiniz. Endişelenmeyin, bu ayarları daha sonra veritabanı ayarlarından değiştirebilirsiniz. + Veri tabanı şifreleme ayarlarını buradan düzenleyebilirsiniz. Endişelenmeyin, bu ayarları daha sonra veri tabanı ayarlarından değiştirebilirsiniz. NewDatabaseWizardPageMetaData General Database Information - Genel veritabanı bilgileri + Genel veri tabanı bilgileri Please fill in the display name and an optional description for your new database: - Lütfen yeni veritabanı için görüntülenecek bir ad ve isteğe bağlı bir açıklama yazın: + Lütfen yeni veri tabanı için görüntülenecek bir ad ve isteğe bağlı bir açıklama yazın: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + Ek dosya adı boş olamaz + + + Attachment with the same name already exists + Aynı adlı bir ek dosya zaten var + + + Save attachment + Ek dosyayı kaydet + + + New entry attachment + Yeni kayıt ek dosyası @@ -5621,15 +6561,6 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< %1 bayt düz metin bekleniyordu, %2 bulundu - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Veritabanı okuması bir kopya oluşturmadı -%1 - - OpVaultReader @@ -5703,9 +6634,13 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Unknown cipher: %1 Şifreleme bilinmiyor: %1 + + AES-256/GCM is currently not supported + AES-256/GCM şu anda desteklenmiyor + Passphrase is required to decrypt this key - Bu anahtarın şifresini çözmek için parola gerekiyor + Bu anahtarın şifresini çözmek için parola ifadesi gerekiyor Key derivation failed: %1 @@ -5729,7 +6664,7 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Decryption failed, wrong passphrase? - Şifre çözülemedi. Parola yanlış olabilir mi? + Şifre çözülemedi. Parola ifadesi yanlış olabilir mi? Unexpected EOF while reading key @@ -5767,28 +6702,184 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Unexpected EOF when writing private key Kişisel anahtar yazılırken dosya beklenmedik şekilde sonlandı + + (encrypted) + (şifrelenmiş) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Parola ile onayı aynı değil + SSH Key Generator + SSH anahtar oluşturucu - Passwords match so far - Parola ile onayı şimdilik aynı + Type + Tür - Toggle Password (%1) - Parolayı görüntüle/gizle (%1) + Bits + Bit - Generate Password (%1) - Parola oluştur (%1) + Comment + Yorum + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Geçiş anahtarı dışa aktar - Warning: Caps Lock enabled! - Uyarı: Büyük harf kilidine basılmış! + Filenames will be generated with title and .passkey file extension. + Dosya adları başlık ve .passkey uzantısı ile oluşturulacak. + + + Export entries + Kayıtları dışa aktar + + + Export Selected + Seçilmişleri dışa aktar + + + Cancel + İptal + + + Export to folder + Klasöre dışa aktar + + + Export the following passkey entries. + Şu geçiş anahtarı kayıtlarını dışa aktar. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Geçiş anahtarı dışa aktarma + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + "%1.passkey" dosyası zaten var. +Üzerine yazılmasını ister misiniz? + + + + Cannot open file + Dosya açılamadı + + + Cannot open file "%1" for writing. + "%1" dosyası yazılmak üzere açılamadı. + + + Cannot write to file + Dosyaya yazılamadı + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Geçiş anahtarı içe aktarma + + + Username: %1 + Kullanıcı adı: %1 + + + Group + Grup + + + Database + Veri tabanı + + + Import Passkey + Geçiş anahtarı içe aktar + + + Import + İçe aktar + + + Cancel + İptal + + + Entry + Kayıt + + + Create new entry + Yeni kayıt ekle + + + Relying Party: %1 + Güvenilen taraf: %1 + + + Import the following passkey: + Şu geçiş anahtarı kaydını içe aktar: + + + Import the following passkey to this entry: + Bu kayıt için şu geçiş anahtarı kaydını içe aktar: + + + Default passkeys group (Imported Passkeys) + Varsayılan geçiş anahtarı grubu (içe aktarılmış geçiş anahtarları) + + + + PasskeyImporter + + Passkey file + Geçiş anahtarı dosyası + + + All files + Tüm dosyalar + + + Cannot open file + Dosya açılamadı + + + Cannot open file "%1" for reading. + "%1" dosyası okunmak üzere açılamadı. + + + Open passkey file + Geçiş anahtarı dosyasını aç + + + Cannot import passkey + Geçiş anahtarı içe aktarılamadı + + + Cannot import passkey file "%1". Data is missing. + "%1" geçiş anahtarı dosyası içe aktarılamadı. Veriler eksik. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + "%1" geçiş anahtarı dosyası içe aktarılamadı. +Şu veriler eksik: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + "%1" geçiş anahtarı dosyası içe aktarılamadı. Kişisel anahtar eksik ya da bozuk. @@ -5831,7 +6922,7 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< <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> - <p>Parola, veritabanınızın güvenliğini sağlamak için ilk yöntemdir.</p><p>Zor parolalar uzun ve benzersiz olur. KeePassXC sizin için bir parola üretebilir.</p> + <p>Parola, veri tabanınızın güvenliğini sağlamak için ilk yöntemdir.</p><p>Zor parolalar uzun ve benzersiz olur. KeePassXC sizin için bir parola üretebilir.</p> Passwords do not match. @@ -5969,10 +7060,6 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Also choose from: Aynı şuradan seçilsin: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Katılmayacak karakterler: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Benzer görünen karakterler katılmasın @@ -5983,7 +7070,7 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Passphrase - Parola + Parola ifadesi Word Separator: @@ -5997,10 +7084,6 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Word Count: Sözcük sayısı: - - Character Count: - Karakter sayısı: - Word Case: Sözcük biçimi: @@ -6013,10 +7096,6 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Add custom wordlist Özel sözcük listesi ekle - - character - karakter - Close Kapat @@ -6053,6 +7132,30 @@ KeePassXC indirme sayfasında bulunan AppImage paketini kullanmanız önerilir.< Entropy: %1 bit Entropi: %1 bit + + Password Quality: %1 + Parola kalitesi: %1 + + + Poor + Password quality + Çok kolay + + + Weak + Password quality + Kolay + + + Good + Password quality + Zor + + + Excellent + Password quality + Çok zor + Confirm Delete Wordlist Sözcük listesini silmeyi onayla @@ -6100,8 +7203,47 @@ Do you want to overwrite it? Özel karakterler - Password Quality: %1 - Parola kalitesi: %1 + passwordLength + parolaUzunluğu + + + Characters: %1 + Karakter sayısı: %1 + + + MIXED case + Büyük/küçük karışık + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Katılmayacak karakterler: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Parola ile onayı aynı değil + + + Passwords match so far + Parola ile onayı şimdilik aynı + + + Toggle Password (%1) + Parolayı görüntüle/gizle (%1) + + + Generate Password (%1) + Parola oluştur (%1) + + + Warning: Caps Lock enabled! + Uyarı: Büyük harf kilidine basılmış! + + + Quality: %1 + Kalite: %1 Poor @@ -6123,6 +7265,10 @@ Do you want to overwrite it? Password quality Çok zor + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Control + H ile parola görünürlüğünü değiştirebilir, Control + G ile parola üretecini açabilirsiniz. + PickcharsDialog @@ -6139,6 +7285,21 @@ Do you want to overwrite it? Karakterler arasında &Sekme gönderilsin + + PreviewEntryAttachmentsDialog + + Preview entry attachment + Kayıt ek dosyaları ön izlemesi + + + No preview available + Ön izleme yok + + + Image format not supported + Görsel biçimi desteklenmiyor + + QMessageBox @@ -6167,7 +7328,7 @@ Do you want to overwrite it? Disable - Devre dışı bırak + Kapat Merge @@ -6177,16 +7338,20 @@ Do you want to overwrite it? Continue İlerle + + Continue with weak password + Kolay parola ile ilerle + QObject Database not opened - Veritabanı açılmadı + Veri tabanı açılmadı Database hash not available - Veritabanı karması kullanılamıyor + Veri tabanı karması kullanılamıyor Client public key not received @@ -6214,7 +7379,7 @@ Do you want to overwrite it? Incorrect action - Hatalı işlem + Uygunsuz işlem Empty message received @@ -6234,7 +7399,7 @@ Do you want to overwrite it? Cannot create new group - Yeni grup oluşturulamadı + Yeni grup eklenemedi No valid UUID provided @@ -6250,7 +7415,7 @@ Do you want to overwrite it? Browser Plugin Failure - Tarayıcı uzantısı sorunu + Tarayıcı eklentisi sorunu Could not save the native messaging script file for %1. @@ -6290,7 +7455,7 @@ Do you want to overwrite it? Add a new entry to a database. - Veritabanına yeni bir kayıt ekle. + Veri tabanına yeni bir kayıt ekle. Path of the entry to add. @@ -6310,7 +7475,7 @@ Do you want to overwrite it? Writing the database failed %1. - %1 veritabanına yazılamadı. + %1 veri tabanına yazılamadı. Successfully added entry %1. @@ -6318,7 +7483,7 @@ Do you want to overwrite it? Adds a new group to a database. - Veritabanına yeni bir grup ekler. + Veri tabanına yeni bir grup ekler. Path of the group to add. @@ -6362,7 +7527,7 @@ Do you want to overwrite it? Evaluating database entries using okon… - Veritabanı kayıtları okon kullanılarak değerlendiriliyor… + Veri tabanı kayıtları okon kullanılarak değerlendiriliyor… Failed to open HIBP file %1: %2 @@ -6370,7 +7535,7 @@ Do you want to overwrite it? Evaluating database entries against HIBP file, this will take a while… - Veritabanı kayıtları HIBP dosyası kullanılarak değerlendiriliyor. Bu işlem zaman alabilir… + Veri tabanı kayıtları HIBP dosyası kullanılarak değerlendiriliyor. Bu işlem zaman alabilir… Password for '%1' has been leaked %2 time(s)! @@ -6471,7 +7636,7 @@ Do you want to overwrite it? Must match only one entry, otherwise a list of possible matches is shown. - Yalnız bir kayıt ile eşleşmelidir. Yoksa olası eşleşmelerin listesi görüntülenir. + Yalnızca bir kayıt ile eşleşmelidir. Yoksa olası eşleşmelerin listesi görüntülenir. Copy an entry's attribute to the clipboard. @@ -6532,7 +7697,7 @@ Do you want to overwrite it? Close the currently opened database. - Şu anda açık olan veritabanını kapat. + Şu anda açık olan veri tabanını kapat. Display this help. @@ -6544,7 +7709,7 @@ Do you want to overwrite it? Key file of the database. - Veritabanının anahtar dosyası. + Veri tabanının anahtar dosyası. path @@ -6552,11 +7717,11 @@ Do you want to overwrite it? Deactivate password key for the database. - Veritabanı için parola anahtarını devre dışı bırakır. + Veri tabanı için parola anahtarını etkisizleştirir. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Veritabanına erişmek için kullanılan Yubikey yuvası ve isteğe bağlı seri numarası (1:7370001 gibi). + Veri tabanına erişmek için kullanılan Yubikey yuvası ve isteğe bağlı seri numarası (1:7370001 gibi). slot[:serial] @@ -6570,9 +7735,13 @@ Do you want to overwrite it? Too many arguments provided. Gerekenden fazla sayıda değişken belirtildi. + + Path of the database. + Veri tabanının yolu. + Target decryption time in MS for the database. - ms olarak veritabanı şifresini çözme süresi hedefi. + Milisaniye olarak veri tabanı şifresini çözme süresi hedefi. time @@ -6580,19 +7749,15 @@ Do you want to overwrite it? Set the key file for the database. - Veritabanı için anahtar dosyasını belirleyin. + Veri tabanı için anahtar dosyasını belirleyin. Set a password for the database. - Veritabanı için bir parola belirleyin. + Veri tabanı için bir parola belirleyin. Create a new database. - Yeni bir veritabanı oluştur. - - - Path of the database. - Veritabanının yolu. + Yeni bir veri tabanı oluştur. Invalid decryption time %1. @@ -6604,7 +7769,7 @@ Do you want to overwrite it? Failed to set database password. - Veritabanı parolası ayarlanamadı. + Veri tabanı parolası ayarlanamadı. Loading the key file failed @@ -6612,7 +7777,7 @@ Do you want to overwrite it? No key is set. Aborting database creation. - Herhangi bir anahtar ayarlanmamış. Veritabanı oluşturulmayacak. + Herhangi bir anahtar ayarlanmamış. Veri tabanı oluşturulmayacak. Benchmarking key derivation function for %1ms delay. @@ -6624,7 +7789,7 @@ Do you want to overwrite it? error while setting database key derivation settings. - veritabanı anahtar türetme ayarları yapılırken sorun çıktı. + veri tabanı anahtar türetme ayarları yapılırken sorun çıktı. File %1 already exists. @@ -6632,15 +7797,167 @@ Do you want to overwrite it? Failed to save the database: %1. - Veritabanı kaydedilemedi: %1. + Veri tabanı kaydedilemedi: %1. Successfully created new database. - Yeni veritabanı oluşturuldu. + Yeni veri tabanı oluşturuldu. + + + Unset the password for the database. + Veri tabanının parolasını kaldır. + + + Unset the key file for the database. + Veri tabanının anahtar dosyasını kaldır. + + + Edit a database. + Bir veri tabanını düzenle. + + + Cannot use %1 and %2 at the same time. + %1 ve %2 aynı anda kullanılamaz. + + + Could not change the database key. + Veri tabanı anahtarı değiştirilemedi. + + + Database was not modified. + Veri tabanı değiştirilmedi. + + + Writing the database failed: %1 + Veri tabanına yazılamadı: %1 + + + Successfully edited the database. + Veri tabanı düzenlendi. + + + Cannot remove password: The database does not have a password. + Parola kaldırılamadı. Veri tabanının bir parolası yok. + + + Cannot remove file key: The database does not have a file key. + Dosya anahtarı kaldırılamadı. Veri tabanının bir dosya anahtarı yok. + + + Loading the new key file failed: %1 + Yeni anahtar dosyası yüklenemedi: %1 + + + Found unexpected Key type %1 + Beklenmeyen %1 anahtar türü bulundu + + + Cannot remove all the keys from a database. + Bir veri tabanındaki tüm anahtarlar kaldırılamaz. + + + Show a database's information. + Bir veri tabanının bilgilerini görüntüler. + + + UUID: + Eşsiz kod: + + + Name: + Ad: + + + Description: + Açıklama: + + + Cipher: + Şifre: + + + KDF: + Anahtar türetme işlevi: + + + Recycle bin is enabled. + Çöp kutusu kullanılıyor. + + + Recycle bin is not enabled. + Çöp kutusu kullanılmıyor. + + + Location + Konum + + + Database created + Veri tabanı oluşturuldu + + + Last saved + Son kaydedilme + + + Unsaved changes + Kaydedilmemiş değişiklikler + + + yes + evet + + + no + hayır + + + Number of groups + Grup sayısı + + + Number of entries + Kayıt sayısı + + + Number of expired entries + Süresi geçmiş kayıt sayısı + + + Unique passwords + Eşsiz parolalar + + + Non-unique passwords + Eşsiz olmayan parolalar + + + Maximum password reuse + Aynı parolanın en fazla kullanımı + + + Number of short passwords + Kısa parola sayısı + + + Number of weak passwords + Kolay parola sayısı + + + Entries excluded from reports + Raporlara katılmayan kayıtlar + + + Average password length + Ortalama parola uzunluğu + + + %1 characters + %1 karakter Word count for the diceware passphrase. - Diceware parolasındaki sözcük sayısı. + Zar atma parola ifadesindeki sözcük sayısı. count @@ -6650,21 +7967,17 @@ Do you want to overwrite it? Wordlist for the diceware generator. [Default: EFF English] - Diceware oluşturucu için sözcük listesi. + Zar atma üreteci için sözcük listesi. [Varsayılan: EFF İngilizce] Generate a new random diceware passphrase. - Yeni bir rastgele diceware parolası oluştur. + Yeni bir rastgele zar atma parola ifadesi oluştur. Invalid word count %1 Geçersiz sözcük sayısı %1 - - The word list is too small (< 1000 items) - Sözcük listesi çok küçük (< 1000 öge) - Title for the entry. Kaydın başlığı. @@ -6689,10 +8002,6 @@ Do you want to overwrite it? Enter new password for entry: Kayıt için yeni parolayı yazın: - - Writing the database failed: %1 - Veritabanına yazılamadı: %1 - Successfully edited entry %1. %1 kaydı düzenlendi. @@ -6813,17 +8122,13 @@ Do you want to overwrite it? Exit interactive mode. Etkileşimli kipten çık. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Dışa aktarmada kullanılacak biçim. Kullanılabilecek seçenekler 'xml' ya da 'csv'. Varsayılan biçim: 'xml'. - Exports the content of a database to standard output in the specified format. - Bir veritabanının içeriğini belirtilen biçimde standart çıkışa aktarır. + Bir veri tabanının içeriğini belirtilen biçimde standart çıkışa aktarır. Unable to export database to XML: %1 - Veritabanı XML olarak dışa aktarılamadı: %1 + Veri tabanı XML olarak dışa aktarılamadı: %1 Unsupported format %1 @@ -6899,123 +8204,23 @@ Do you want to overwrite it? Import the contents of an XML database. - Bir XML veritabanını içe aktarır. + Bir XML veri tabanını içe aktarır. Path of the XML database export. - XML veritabanının dışa aktarılacağı dosya yolu. + XML veri tabanının dışa aktarılacağı dosya yolu. Path of the new database. - Yeni veritabanının yolu. + Yeni veri tabanının yolu. Unable to import XML database: %1 - XML veritabanı içe aktarılamadı: %1 + XML veri tabanı içe aktarılamadı: %1 Successfully imported database. - Veritabanı içe aktarıldı. - - - Show a database's information. - Bir veritabanının bilgilerini görüntüler. - - - UUID: - Eşsiz kod: - - - Name: - Ad: - - - Description: - Açıklama: - - - Cipher: - Şifre: - - - KDF: - Anahtar türetme işlevi: - - - Recycle bin is enabled. - Çöp kutusu kullanılıyor. - - - Recycle bin is not enabled. - Çöp kutusu kullanılmıyor. - - - Location - Konum - - - Database created - Veritabanı oluşturuldu - - - Last saved - Son kaydedilme - - - Unsaved changes - Kaydedilmemiş değişiklikler - - - yes - evet - - - no - hayır - - - Number of groups - Grup sayısı - - - Number of entries - Kayıt sayısı - - - Number of expired entries - Süresi geçmiş kayıt sayısı - - - Unique passwords - Eşsiz parolalar - - - Non-unique passwords - Eşsiz olmayan parolalar - - - Maximum password reuse - Aynı parolanın en fazla kullanımı - - - Number of short passwords - Kısa parola sayısı - - - Number of weak passwords - Kolay parola sayısı - - - Entries excluded from reports - Raporlara katılmayan kayıtlar - - - Average password length - Ortalama parola uzunluğu - - - %1 characters - %1 karakter + Veri tabanı içe aktarıldı. Unknown command %1 @@ -7053,7 +8258,7 @@ Kullanılabilecek komutlar: List database entries. - Veritabanı kayıtlarını listele. + Veri tabanı kayıtlarını listele. Path of the group to list. Default is / @@ -7065,15 +8270,15 @@ Kullanılabilecek komutlar: Use the same credentials for both database files. - İki veritabanı dosyası için de aynı kimlik doğrulama bilgileri kullanılır. + İki veri tabanı dosyası için de aynı kimlik doğrulama bilgileri kullanılır. Key file of the database to merge from. - Birleştirilecek veritabanının anahtar dosyası. + Birleştirilecek veri tabanının anahtar dosyası. Deactivate password key for the database to merge from. - Birleştirilecek veritabanının parola anahtarını devre dışı bırakır. + Birleştirilecek veri tabanının parola anahtarını etkisizleştirir. Only print the changes detected by the merge operation. @@ -7081,7 +8286,7 @@ Kullanılabilecek komutlar: Yubikey slot for the second database. - İkinci veritabanının Yubikey yuvası. + İkinci veri tabanının Yubikey yuvası. slot @@ -7089,11 +8294,11 @@ Kullanılabilecek komutlar: Merge two databases. - İki veritabanını birleştir. + İki veri tabanını birleştir. Path of the database to merge from. - Birleştirilecek veritabanının yolu. + Birleştirilecek veri tabanının yolu. Error reading merge file: @@ -7103,15 +8308,15 @@ Kullanılabilecek komutlar: Unable to save database to file : %1 - Veritabanı dosyaya kaydedilemedi: %1 + Veri tabanı dosyaya kaydedilemedi: %1 Successfully merged %1 into %2. - %1 veritabanı %2 ile birleştirildi. + %1 veri tabanı %2 ile birleştirildi. Database was not modified by merge operation. - Birleştirme işlemi veritabanını değiştirmedi. + Birleştirme işlemi veri tabanını değiştirmedi. Moves an entry to a new group. @@ -7139,7 +8344,7 @@ Kullanılabilecek komutlar: Open a database. - Bir veritabanı açar. + Bir veri tabanı açar. Path of the entry to remove. @@ -7147,7 +8352,7 @@ Kullanılabilecek komutlar: Unable to save database to file: %1 - Veritabanı dosyaya kaydedilemedi: %1 + Veri tabanı dosyaya kaydedilemedi: %1 Successfully recycled entry %1. @@ -7163,7 +8368,7 @@ Kullanılabilecek komutlar: Cannot remove root group from database. - Kök grup veritabanından kaldırılamaz. + Kök grup veri tabanından kaldırılamaz. Successfully recycled group %1. @@ -7189,6 +8394,10 @@ Kullanılabilecek komutlar: Show the protected attributes in clear text. Korumalı öznitelikleri düz metin olarak görüntüler. + + Show all the attributes of the entry. + Kaydın tüm özniteliklerini görüntüler. + Show the attachments of the entry. Kaydın ek dosyalarını görüntüler. @@ -7223,15 +8432,15 @@ Kullanılabilecek komutlar: Failed to open database file %1: not found - %1 veritabanı dosyası açılamadı: Bulunamadı + %1 veri tabanı dosyası açılamadı: Bulunamadı Failed to open database file %1: not a plain file - %1 veritabanı dosyası açılamadı: Basit metin dosyası değil + %1 veri tabanı dosyası açılamadı: Basit metin dosyası değil Failed to open database file %1: not readable - %1 veritabanı dosyası açılamadı: Okunamadı + %1 veri tabanı dosyası açılamadı: Okunamadı Enter password to unlock %1: @@ -7259,13 +8468,17 @@ Lütfen bu dosyayı kullanmak yerine yeni bir anahtar dosyası oluşturmayı de Invalid YubiKey serial %1 %1 YubiKey seri numarası geçersiz + + Please present or touch your YubiKey to continue. + Lütfen, ilerlemek için YubiKey anahtarını takın ya da üzerindeki düğmeye dokunun. + Enter password to encrypt database (optional): - Veritabanını şifrelemek için parolayı yazın (isteğe bağlı): + Veri tabanını şifrelemek için parolayı yazın (isteğe bağlı): Do you want to create a database with an empty password? [y/N]: - Parolası boş olan bir veritabanı oluşturmak ister misiniz? [e/H]: + Parolası boş olan bir veri tabanı oluşturmak ister misiniz? [e/H]: Repeat password: @@ -7311,7 +8524,7 @@ Lütfen bu dosyayı kullanmak yerine yeni bir anahtar dosyası oluşturmayı de Failed to load okon processed database: %1 - Okon tarafından işlenmiş veritabanı yüklenemedi: %1 + Okon tarafından işlenmiş veri tabanı yüklenemedi: %1 Very weak password @@ -7375,11 +8588,11 @@ Lütfen bu dosyayı kullanmak yerine yeni bir anahtar dosyası oluşturmayı de Debugging mode is disabled. - Hata ayıklama kipi devre dışı. + Hata ayıklama kipi kapalı. Debugging mode is enabled. - Hata ayıklama kipi etkin. + Hata ayıklama kipi açık. Operating system: %1 @@ -7419,7 +8632,7 @@ Kernel: %3 %4 Enabled extensions: - Etkin eklentiler: + Kullanımdaki eklentiler: over %1 year(s) @@ -7446,8 +8659,8 @@ Kernel: %3 %4 %1 dakika%1 dakika - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan kitaplığının sürümü en az2.11.x olmalı. Bulunan: %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan kitaplığının sürümü en az %1 olmalı. Bulunan: %2.%3.%4 Cryptographic libraries: @@ -7471,7 +8684,7 @@ Kernel: %3 %4 Cipher not initialized prior to use. - Şifre kullanmadan önce hazırlanmadı. + Şifre kullanılmadan önce hazırlanamadı. Cannot process 0 length data. @@ -7497,18 +8710,6 @@ Kernel: %3 %4 file empty dosya boş - - malformed string - dizge bozuk - - - missing closing quote - tırnak kapatma eksik - - - %1: (row, col) %2,%3 - %1: (satır, sütun) %2,%3 - AES 256-bit AES 256-bit @@ -7543,7 +8744,7 @@ Kernel: %3 %4 The lock file could not be created. Single-instance mode disabled. - Kilit dosyası oluşturulamadı. Tek kopya kipi devre dışı bırakıldı. + Kilit dosyası oluşturulamadı. Tek kopya kipi kapatıldı. Clearing the clipboard in %1 second(s)… @@ -7665,7 +8866,7 @@ Kernel: %3 %4 filenames of the password databases to open (*.kdbx) - açılacak parola veritabanlarının dosya adları (*.kdbx) + açılacak parola veri tabanlarının dosya adları (*.kdbx) path to a custom config file @@ -7677,32 +8878,28 @@ Kernel: %3 %4 lock all open databases - tüm açık veritabanlarını kilitle + tüm açık veri tabanlarını kilitle key file of the database - veritabanının anahtar dosyası + veri tabanının anahtar dosyası read password of the database from stdin - veritabanının parolası stdin üzerinden okunsun - - - allow app screen recordering and screenshots - uygulamanın ekran kaydı yapmasına ve ekran görüntüleri almasına izin ver - - - Locked databases. - Kilitli veritabanları. + veri tabanının parolası stdin üzerinden okunsun Database failed to lock. - Veritabanı kilitlenemedi. + Veri tabanı kilitlenemedi. Another instance of KeePassXC is already running. Başka bir KeePassXC kopyası zaten çalışıyor. + + KeePassXC is not running. No open database to lock + KeePassXC çalışmıyor. Kilitenebilecek bir açık veri tabanı yok + Fatal error while testing the cryptographic functions. Şifreleme işlevleri sınanırken ciddi bir sorun çıktı. @@ -7711,13 +8908,9 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - Hata - - Warning: Failed to prevent screenshots on a top level window! - UYARI: Üst düzey bir pencerede ekran görüntüsü alınması engellenemedi! - Database password: - Veritabanı parolası: + Veri tabanı parolası: Invalid Settings @@ -7738,8 +8931,312 @@ Kernel: %3 %4 Soru Windows Hello kullanılarak imzalanamadı. - Please present or touch your YubiKey to continue. - Lütfen, ilerlemek için YubiKey anahtarını takın ya da üzerindeki düğmeye dokunun. + Warning: Failed to block screenshot capture on a top-level window. + Uyarı: Üst düzey bir pencerede ekran görüntüsü alınması engellenemedi! + + + Invalid Cipher + Şifreleyici geçersiz + + + Invalid KDF + Anahtar türetme işlevi geçersiz + + + Access to all entries is denied + Tüm kayıtlara erişim reddedilsin + + + allow screenshots and app recording (Windows/macOS) + ekran görüntüsü ve uygulama kaydı alınabilsin (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Veri tabanının anahtar dosyasını ayarla. +Bu seçenekler kullanımdan kaldırıldı. yerine --set-key-file kullanın. + + + Databases have been locked. + Veri tabanları kilitlendi. + + + Attestation not supported + Sertifika desteklenmiyor + + + Credential is excluded + Kimlik doğrulama bilgileri katılmadı + + + Passkeys request canceled + Geçiş anahtarları isteği iptal edildi + + + Invalid user verification + Kullanıcı doğrulaması geçersiz + + + Empty public key + Herkese açık anahtar boş + + + Invalid URL provided + Belirtilen adres geçersiz + + + Passkeys + Geçiş anahtarları + + + AES initialization failed + AES hazırlanamadı + + + AES encrypt failed + AES şifreleme işlemi yapılamadı + + + Failed to store in Linux Keyring + Linux anahtarlığına kaydedilemedi + + + Polkit returned an error: %1 + Polkit sorunu çıktı: %1 + + + Could not locate key in keyring + Anahtar anahtarlıkta bulunamadı + + + Could not read key in keyring + Anahtar anahtarlıktan okunamadı + + + AES decrypt failed + AES şifre çözme işlemi yapılamadı + + + No Polkit authentication agent was available + Kullanılabilecek bir Polkit kimlik doğrulama aracısı yok + + + Polkit authorization failed + Polkit kimliği doğrulanamadı + + + No Quick Unlock provider is available + Kullanılabilecek bir hızlı kilit açma hizmeti sağlayıcısı yok + + + Failed to init KeePassXC crypto. + KeePassXC şifrelemesi hazırlanamadı. + + + Failed to encrypt key data. + Anahtar verileri şifrelenemedi. + + + Failed to get Windows Hello credential. + Windows Hello kimlik doğrulama bilgileri alınamadı + + + Failed to decrypt key data. + Anahtar verilerinin şifresi çözülemedi + + + Origin is empty or not allowed + Kaynak boş ya da izin verilmiyor + + + Effective domain is not a valid domain + Etkin etki alanı geçerli bir etki alanı değil + + + Origin and RP ID do not match + Kaynak ve RO kimliği aynı değil + + + No supported algorithms were provided + Desteklenen bir algoritma belirtilmemiş + + + Wait for timer to expire + Zamanlayıcının sona ermesini bekleyin + + + Challenge is shorter than required minimum length + Yanıt gerekli en kısa uzunluktan daha kısa + + + user.id does not match the required length + user.id istenilen uzunluğa uygun değil + + + Favorite + Tag for favorite entries + Sık kullanılanlara ekle + + + File does not exist. + Dosya bulunamadı + + + Cannot open file: %1 + Dosya açılamadı: %1 + + + Cannot parse file: %1 at position %2 + Dosya işlenemedi: %1, %2 konumunda + + + Failed to decrypt json file: %1 + JSON dosyasının kodu çözülemedi: %1 + + + Invalid encKeyValidation field + encKeyValidation alanı geçersiz + + + Invalid cipher list within encKeyValidation field + encKeyValidation alanındaki şifreleyici listesi geçersiz + + + Wrong password + Parola yanlış + + + Invalid encrypted data field + Şifrelenmiş veri alanı geçersiz + + + Invalid cipher list within encrypted data field + Şifrelenmiş veri alanındaki şifreleyici listesi geçersiz + + + Cannot initialize cipher + Şifreleyici hazırlanamadı + + + Cannot decrypt data + Verilerin şifresi çözülemedi + + + Bitwarden Import + Bitwarden içe aktarımı + + + Archived + Tag for archived entries + Arşivlenmiş + + + Invalid 1PUX file format: Not a valid ZIP file. + 1PUX dosyasının biçimi geçersiz: ZIP dosyası geçersiz. + + + Invalid 1PUX file format: Missing export.data + 1PUX dosyasının biçimi geçersiz: export.data eksik + + + 1Password Import + 1Password içe aktarımı + + + Enter Shortcut + Kısayolu yazın + + + Action + İşlem + + + Shortcuts + Kısayollar + + + Unknown passkeys error + Bilinmeyen geçiş anahtarları sorunu + + + Invalid KDF iterations, cannot decrypt json file + Anahtar türetme işlevi döngüleri geçersiz. JSON dosyasının şifresi çözülemedi + + + Unsupported format, ensure your Bitwarden export is password-protected + Biçim desteklenmiyor. Bitwarden dışa aktarımınızın parola ile korunduğundan emin olun + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Yalnızca PBKDF ve Argon2 desteklenir. JSON dosyasının şifresi çözülemedi + + + Reset Shortcuts + Kısayolları sıfırla + + + Double click an action to change its shortcut + Kısayolunu değiştirmek istediğiniz işleme çift tıklayın + + + Filter... + Süz... + + + Shortcut Conflict + Kısayol çakışması + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + %1 kısayolu '%2' ile çakışıyor. Kısayol değiştirilsin mi? + + + Cannot generate valid passphrases because the wordlist is too short + Sözcük listesi çok kısa olduğundan geçerli parola ifadeleri oluşturulamıyor + + + Encrypted files are not supported. + Şifrelenmiş dosyalar desteklenmez. + + + Proton Pass Import + Proton Pass içe aktarma + + + Delete plugin data? + Eklenti verileri silinsin mi? + + + Delete plugin data from Entry(s)? + Kayıtlardan eklenti verileri silinsin mi?Kayıtlardan eklenti verileri silinsin mi? + + + Passkey + Geçiş anahtarı + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + Dışa aktarmada kullanılacak biçim. Kullanılabilecek seçenekler 'xml', 'csv' ya da 'html'. Varsayılan biçim: 'xml'. + + + start minimized to the system tray + sistem tepsisine küçültülmüş olarak başlatılsın + + + malformed string, possible unescaped delimiter + dizge bozuk, büyük olasılıkla kaçış karakteri olmayan tırnak var + + + missing closing delimiter + kapanış tırnağı eksik + + + %1, row: %2, column: %3 + %1, %2. satır, %3. sütun + + + Tags + Etiketler @@ -7776,20 +9273,39 @@ Kernel: %3 %4 İç zlib sorunu çıktı: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + `%1` komutu zamanında tamamlanamadı. İşlem sonlandırıldı. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Birleştirilen veri tabanı yüklenemedi. `%1` komutu zamanında tamamlanamadı. İşlem sonlandırıldı. + + + Invalid download parameters provided. + Belirtilen indirme parametreleri geçersiz. + + + Command `%1` failed to download database. + `%1` komutu veri tabanını indiremedi. + + + Invalid database pointer or upload parameters provided. + Veri tabanı göstergesi ya da belirtilen yükleme parametreleri geçersiz. + + + Command `%1` exited with status code: %2 + `%1` komutundan şu durum kodu ile çıkıldı: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Birleştirilen veri tabanı yüklenemedi. `%1` komutundan şu durum kodu ile çıkıldı: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - Süresi geçmiş kayıtlar rapora katılmasın - - - Show only entries which have URL set - Yalnız adresi olan kayıtlar görüntülensin - - - Show only entries which have browser settings in custom data - Yalnız özel verilerinde tarayıcı ayarları olan kayıtlar görüntülensin - Double-click entries to edit. Düzenlemek için kayıtlara çift tıklayın. @@ -7828,7 +9344,7 @@ Kernel: %3 %4 No entries with a URL, or none has browser extension settings saved. - Adresi olan bir kayıt yok ya da hiç bir kayıt için tarayıcı uzantısı ayarları yapılmamış. + Adresi olan bir kayıt yok ya da hiç bir kayıt için tarayıcı eklentisi ayarları yapılmamış. Title @@ -7854,44 +9370,53 @@ Kernel: %3 %4 Exclude from reports Raporlara katılmasın + + Expire Entry(s)… + Kayıt geçerlilik süresi…Kayıtların geçerlilik süresi… + + + Only show entries that have a URL + Yalnızca adresi olan kayıtlar görüntülensin + + + Only show entries that have been explicitly allowed or denied + Yalnızca açıkça izin kabul ya da red edilen kayıtlar görüntülensin + + + Show expired entries + Süresi geçmiş kayıtlar görüntülensin + + + (Expired) + (Süresi geçmiş) + + + Delete plugin data from Entry(s)… + Kayıtlardan eklenti verileri silinsin…Kayıtlardan eklenti verileri silinsin… + ReportsWidgetHealthcheck - Exclude expired entries from the report - Süresi geçmiş kayıtlar rapora katılmasın + Show expired entries + Süresi geçmiş kayıtlar görüntülensin - Also show entries that have been excluded from reports - Raporlara katılmayan kayıtlar da görüntülensin + (Expired) + (Süresi geçmiş) Hover over reason to show additional details. Double-click entries to edit. Ayrıntıları görüntülemek için fareyi neden üzerinde gezdirin. Kaydı düzenlemek için çift tıklayın. - - Bad - Password quality - Kötü - Bad — password must be changed Kötü — Parola mutlaka değiştirilmeli - - Poor - Password quality - Çok kolay - Poor — password should be changed Çok kolay — Parola değiştirilmeli - - Weak - Password quality - Kolay - Weak — consider changing the password Kolay — Parolayı değiştirmeyi değerlendirin @@ -7940,16 +9465,24 @@ Kernel: %3 %4 Exclude from reports Raporlara katılmasın + + Expire Entry(s)… + Kayıt geçerlilik süresi…Kayıtların geçerlilik süresi… + + + Show entries that have been excluded from reports + Raporlara katılmayan kayıtlar görüntülensin + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - UYARI: Bu rapor için "Have I Been Pwned" çevrimiçi hizmetine (https://haveibeenpwned.com) bilgi gönderilmesi gerekir. İlerlediğinizde, veritabanı parolalarınız şifreli olarak karıştırılır ve bu karmanın ilk beş karakteri güvenli olarak bu hizmete gönderilir. Veritabanınız güvende kalır ve gönderilen bilgiler ile yeniden oluşturulamaz. Yalnız, gönderdiğiniz parolaların sayısı ve IP adresiniz bu hizmete bildirilir. + UYARI: Bu rapor için "Have I Been Pwned" çevrim içi hizmetine (https://haveibeenpwned.com) bilgi gönderilmesi gerekir. İlerlediğinizde, veri tabanı parolalarınız şifreli olarak karıştırılır ve bu karmanın ilk beş karakteri güvenli olarak bu hizmete gönderilir. Veri tabanınız güvende kalır ve gönderilen bilgiler ile yeniden oluşturulamaz. Yalnızca, gönderdiğiniz parolaların sayısı ve IP adresiniz bu hizmete bildirilir. Perform Online Analysis - Çevrimiçi incelemeden geçirin + Çevrim içi incelemeden geçirin Also show entries that have been excluded from reports @@ -7957,7 +9490,7 @@ Kernel: %3 %4 This build of KeePassXC does not have network functions. Networking is required to check your passwords against Have I Been Pwned databases. - Bu KeePassXC yapımında ağ özellikleri bulunmaz. Parolalarınızın Have I Been Pwned veritabanlarıyla incelenebilmesi için ağ özelliği gereklidir. + Bu KeePassXC yapımında ağ özellikleri bulunmaz. Parolalarınızın Have I Been Pwned veri tabanlarıyla incelenebilmesi için ağ özelliği gereklidir. Congratulations, no exposed passwords! @@ -8035,6 +9568,77 @@ Kernel: %3 %4 Exclude from reports Raporlara katılmasın + + Expire Entry(s)… + Kayıt geçerlilik süresi…Kayıtların geçerlilik süresi… + + + + ReportsWidgetPasskeys + + Export + Dışa aktar + + + Import + İçe aktar + + + List of entry URLs + Kayıt adreslerinin listesi + + + Title + Başlık + + + Path + Yol + + + Username + Kullanıcı adı + + + URLs + Adresler + + + Edit Entry… + Kaydı düzenle… + + + Delete Entry(s)… + Kaydı sil…Kayıtları sil… + + + Relying Party + Güvenilen taraf + + + Show expired entries + Süresi geçmiş kayıtlar görüntülensin + + + (Expired) + (Süresi geçmiş) + + + Export Confirmation + Dışa aktarma onayı + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Geçiş anahtarı dosyası, güvenli duruma getirilmeden bırakılırsa hırsızlığa ve yetkisiz kullanıma karşı savunmasız kalır. İlerlemek istediğinize emin misiniz? + + + Please wait, list of entries with passkeys is being updated… + Lütfen geçiş anahtarı bulunan kayıtların listesi güncellenirken bekleyin... + + + No entries with passkeys. + Geçiş anahtarı bulunan bir kayıt yok. + ReportsWidgetStatistics @@ -8052,11 +9656,11 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - Lütfen veritabanı istatistikleri hesaplanırken bekleyin… + Lütfen veri tabanı istatistikleri hesaplanırken bekleyin… Database name - Veritabanı adı + Veri tabanı adı Description @@ -8068,7 +9672,7 @@ Kernel: %3 %4 Database created - Veritabanı oluşturuldu + Veri tabanı oluşturuldu Last saved @@ -8088,7 +9692,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - Veritabanı değiştirilmiş, ancak değişiklikler henüz diske kaydedilmemiş. + Veri tabanı değiştirilmiş, ancak değişiklikler henüz diske kaydedilmemiş. Number of groups @@ -8104,7 +9708,7 @@ Kernel: %3 %4 The database contains entries that have expired. - Veritabanında süresi geçmiş kayıtlar var. + Veri tabanında süresi geçmiş kayıtlar var. Unique passwords @@ -8209,6 +9813,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Çalışan bir uygulama yok. Kimlikler listelenemedi. + + Failed to remove all SSH identities from agent. + Uygulamadaki tüm SSH kimlikleri silinemedi. + + + All SSH identities removed from agent. + Uygulamadaki tüm SSH kimlikleri silindi. + SearchHelpWidget @@ -8275,6 +9887,10 @@ Kernel: %3 %4 Search Help Yardım ara + + Save Search + Aramayı kaydet + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8343,47 +9959,23 @@ Kernel: %3 %4 <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - <html><head/><body><p>Bu seçenek etkinleştirildiğinde, herhangi bir parola okuma girişimi onaylanmalıdır. Yoksa, veritabanı kilidi açıldığında uygulamalar parolaları onay almadan okuyabilir.</p><p>Bu seçenek yalnız bir kaydın parolasına erişim iznini kapsar. Uygualamalar her zaman açıkta kalan veritabanlarının ögelerini öğrenebilir ve özniteliklerini sorgulayabilir.</p></body></html> + <html><head/><body><p>Bu seçenek açıldığında, herhangi bir parola okuma girişimi onaylanmalıdır. Yoksa, veri tabanı kilidi açıldığında uygulamalar parolaları onay almadan okuyabilir.</p><p>Bu seçenek yalnızca bir kaydın parolasına erişim iznini kapsar. Uygulamalar her zaman açıkta kalan veri tabanlarının ögelerini öğrenebilir ve özniteliklerini sorgulayabilir.</p></body></html> Confirm when passwords are retrieved by clients Uygulamalar parola istediğinde onay sorulsun - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">Bu seçenek çöp - kutusu sorularını devre dışı bırakmaz</span></p></body></html> - - Confirm when clients request entry deletion Uygulamalar kayıt silmek istediğinde onay sorulsun - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>Böylece, önce veritabanı kilidini açmadan - parola arayan belirli uygulamalar ile daha iyi uyumluluk sağlanabilir.</p><p>Ancak bu seçenek etkinleştirildiğinde, - belirli bir süre içinde veritabanının kilidi açılamazsa uygulama çökebilir. (Genellikle 25s. Ancak uygulamalarda - farklı bir değer ayarlanmış olabilir.)</p></body></html> - - Prompt to unlock database before searching - Aramadan önce veritabanı kilidinin açılması istensin + Aramadan önce veri tabanı kilidinin açılması istensin Exposed database groups: - Açığa çıkarılan veritabanı grupları: + Açığa çıkmış veri tabanı grupları: Authorization @@ -8399,7 +9991,15 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. - Eklentiyi etkinleştirmek için yapılmış değişiklikleri kaydedin ve bu bölümü düzenlemeyi etkinleştirin. + Eklentiyi kullanıma almak için yapılmış değişiklikleri kaydedin ve bu bölümü düzenlemeyi açın. + + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Bu ayar, geri dönüşüm kutusu sorularının kapatılmasını değiştirmez </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Böylece, önce veri tabanı kilidini açmadan parola arayan belirli uygulamalar ile daha iyi uyumluluk sağlanabilir.</p><p>Ancak bu seçenek açıldığında, belirli bir süre içinde veri tabanının kilidi açılamazsa uygulama çökebilir. (Genellikle 25s. Ancak uygulamalarda farklı bir değer ayarlanmış olabilir.)</p></body></html> @@ -8426,7 +10026,7 @@ Kernel: %3 %4 Only show warnings and errors - Yalnız uyarılar ve hatalar görüntülensin + Yalnızca uyarılar ve hatalar görüntülensin Own certificate @@ -8509,8 +10109,12 @@ Kernel: %3 %4 TagModel - All - Tümü + Clear Search + Aramayı temizle + + + All Entries + Tüm kayıtlar Expired @@ -8521,6 +10125,25 @@ Kernel: %3 %4 Kolay parolalar + + TagView + + Remove Search + Aramayı sil + + + Remove Tag + Etiketi sil + + + Confirm Remove Tag + Etiketi silmeyi onayla + + + Remove tag "%1" from all entries in this database? + "%1" etiketini bu veri tabanındaki tüm kayıtlardan silmek istediğinize emin misiniz? + + TotpDialog @@ -8605,7 +10228,7 @@ Kernel: %3 %4 sec Seconds - sn + sn Code size: @@ -8631,7 +10254,7 @@ Example: JBSWY3DPEHPK3PXP Are you sure you want to delete TOTP settings for this entry? - Bu kayıdın tek kullanımlık parola ayarlarını silmek istediğinize emin misiniz ? + Bu kaydın tek kullanımlık parola ayarlarını silmek istediğinize emin misiniz ? @@ -8676,40 +10299,32 @@ Example: JBSWY3DPEHPK3PXP WelcomeWidget Start storing your passwords securely in a KeePassXC database - Parolalarınızı KeePassXC veritabanında güvende tutmaya başlayın - - - Create new database - Yeni veritabanı oluştur - - - Open existing database - Var olan veritabanını aç - - - Import from KeePass 1 - KeePass 1 içe aktar - - - Import from 1Password - 1Password içe aktar - - - Import from CSV - CSV içe aktar + Parolalarınızı KeePassXC veri tabanında güvende tutmaya başlayın Recent databases - Son veritabanları + Son veri tabanları Open a recent database - Son kullanılan veritabanını aç + Son kullanılan veri tabanını aç Welcome to KeePassXC %1 KeePassXC %1 sürümüne hoş geldiniz + + Create Database + Veri tabanı oluştur + + + Open Database + Veri tabanını aç + + + Import File + İçe aktarma dosyası + WinUtils @@ -8726,31 +10341,8 @@ Example: JBSWY3DPEHPK3PXP Genel kısayol kaydı oluşturulamadı - - WindowsHello - - Failed to init KeePassXC crypto. - KeePassXC şifrelemesi hazırlanamadı. - - - Failed to encrypt key data. - Anahtar verileri şifrelenemedi. - - - Failed to get Windows Hello credential. - Windows Hello kimlik doğrulama bilgileri alınamadı - - - Failed to decrypt key data. - Anahtar verilerinin şifresi çözülemedi - - YubiKey - - %1 No interface, slot %2 - %1 arabirimi yok, %2. yuva - General: Genel: @@ -8762,14 +10354,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - Donanımsal doğrulayıcıları yenile - - - Refresh - Yenile - Hardware key slot selection Donanımsal anahtar yuvası seçimi @@ -8780,31 +10364,27 @@ Example: JBSWY3DPEHPK3PXP Selected hardware key slot does not support challenge-response! - Seçilmiş donanımsal anahtar yuvası soru-yanıt özelliğini desteklemiyor! + Seçilmiş donanımsal anahtar yuvası soru/yanıt özelliğini desteklemiyor! Challenge-Response - Soru-yanıt + Soru/yanıt Add Challenge-Response - Soru-yanıt ekle + Soru/yanıt ekle Change Challenge-Response - Soru-yanıtı değiştir + Soru/yanıtı değiştir Remove Challenge-Response - Soru-yanıtı kaldır + Soru/yanıtı kaldır Challenge-Response set, click to change or remove - Soru-yanıt ayarlandı. Değiştirmek ya da kaldırmak için tıklayın - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>Bir <a href="https://www.yubico.com/">YubiKey</a> ya da <a href="https://onlykey.io">OnlyKey</a> aygıtınız varsa, ek güvenlik sağlamak için kullanabilirsiniz.</p><p>Anahtar yuvalarından birinin <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Soru-Yanıt</a> olarak programlanması gerekir.</p> + Soru/yanıt ayarlandı. Değiştirmek ya da kaldırmak için tıklayın Detecting hardware keys… @@ -8814,28 +10394,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Herhangi bir donanımsal anahtar algılanamadı - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 Belirtilen yuva geçersiz - %2 + Refresh hardware keys + Donanımsal anahtarları yenile + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Bir <a href="https://www.yubico.com/">YubiKey</a> ya da <a href="https://onlykey.io">OnlyKey</a> aygıtınız varsa, ek güvenlik sağlamak için kullanabilirsiniz.</p><p>Anahtar yuvalarından birinin <a href="https://www.yubico.com/products/services-software/challenge-response/">soru/yanıt</a> olarak programlanması gerekir.</p> + + + Hardware keys found, but no slots are configured + Donanımsal anahtar bulundu. Ancak herhangi bir yuva yapılandırılmamış YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] soru-yanıt - %3. yuva - The YubiKey PCSC interface has not been initialized. YubiKey PCSC arayüzü başlatılamadı. - - Hardware key is currently in use. - Donanımsal anahtar kullanılıyor. - Could not find or access hardware key with serial number %1. Please present it to continue. %1 seri numaralı donanım anahtarı bulunamadı ya da erişilemiyor. Lütfen ilerlemek için anahtarı takın. @@ -8850,7 +10427,22 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 - Bir soru-yanıt tamamlanamadı. PCSC hata kodu: %1 + Bir soru/yanıt tamamlanamadı. PCSC hata kodu: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Yuva %3, %4 + + + Press + USB Challenge-Response Key interaction request + Basın + + + Passive + USB Challenge-Response Key no interaction required + Pasif @@ -8859,14 +10451,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Bilinmiyor - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] yapılandırılmış yuva - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] soru-yanıt - %3. yuva - %4 - Press USB Challenge-Response Key interaction request @@ -8881,10 +10465,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB arayüzü başlatılamadı. - - Hardware key is currently in use. - Donanımsal anahtar kullanılıyor. - Could not find hardware key with serial number %1. Please plug it in to continue. %1 seri numaralı donanımsal anahtar bulunamadı. Lütfen ilerlemek için anahtarı takın. @@ -8899,7 +10479,17 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 - Soru-yanıt tamamlanamadı. Oluşan hata: %1 + Soru/yanıt tamamlanamadı. Oluşan hata: %1 + + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Yuva %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Yuva %3, %4 \ No newline at end of file diff --git a/share/translations/keepassxc_uk.ts b/share/translations/keepassxc_uk.ts index 2f39cb5a3..8c34fa432 100644 --- a/share/translations/keepassxc_uk.ts +++ b/share/translations/keepassxc_uk.ts @@ -11,7 +11,7 @@ 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. @@ -19,15 +19,15 @@ Project Maintainers: - Супровідники проекту: + Супровідники проєкту: Special thanks from the KeePassXC team go to debfx for creating the original KeePassX. - Команда KeePassXC щиро дякує debfx за створення первісної версії KeePassX. + Команда KeePassXC щиро дякує debfx за створення оригінальної версії KeePassX. Contributors - Спільнота + Помічники <a href="https://github.com/keepassxreboot/keepassxc/graphs/contributors">See Contributions on GitHub</a> @@ -35,7 +35,7 @@ Debug Info - Зневаджувальна інформація + Інформація з налагоджування Include the following information whenever you report a bug: @@ -43,23 +43,22 @@ Copy to clipboard - Скопіювати в кишеню + Копіювати в буфер обміну AccessControlDialog KeePassXC - Access Request - KeePassXC - Запит Доступу + KeePassXC – запит доступу Non-existing/inaccessible executable path. Please double-check the client is legit. - + Відсутній або недоступний шлях до виконуваного файлу. Переконайтеся, що ви користуєтеся оригінальним клієнтом. <html><head/><body><p><span style=" font-weight:600;">%1 </span>is requesting access to the following entries:</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">%1 </span>запитує доступ до таких записів: </p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">%1 </span>запитує доступ до таких записів:</p></body></html> Name @@ -67,19 +66,23 @@ PID - + PID Executable - + Виконуваний файл Command Line - Командна строка + Командний рядок Details - Деталі + Подробиці + + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + Ваше рішення зберігатиметься поки клієнт, що виконує запит і KeePassXC запущені. Remember @@ -87,26 +90,22 @@ Allow Selected - Дозволити обрані - - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - + Дозволити вибрані Deny All && Future - + Заборонити всі && майбутні Allow All && &Future - + Дозволити всі && &майбутні AccessControlDialog::DenyButton Deny for this program - Відхилити для цієї програми + Заборонити для цієї програми @@ -117,19 +116,23 @@ Use Pageant - + Використовувати Pageant Use OpenSSH - + Використовувати OpenSSH + + + Use both agents + Використовувати обидва агенти SSH_AUTH_SOCK override - перевизначення SSH_AUTH_SOCK + Перевизначення SSH_AUTH_SOCK SSH_AUTH_SOCK value - значення SSH_AUTH_SOCK + Значення SSH_AUTH_SOCK (empty) @@ -137,46 +140,46 @@ SSH_SK_PROVIDER value - значення SSH_SK_PROVIDER + Значення SSH_SK_PROVIDER SSH_SK_PROVIDER override - + Перевизначення SSH_SK_PROVIDER No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - Немає доступних гнізд для SSH Agent. Або переконайтеся, що змінна оточення SSH_AUTH_SOCK існує, або вкажіть перевизначення для неї. + Немає доступних сокетів для SSH Agent. Або переконайтеся, що змінна оточення SSH_AUTH_SOCK існує, або вкажіть перевизначення для неї. SSH Agent connection is working! - З'єднання з SSH Agent працює! - - - Use both agents - + З'єднання з SSH Agent активне! ApplicationSettingsWidget Application Settings - Налаштування застосунку + Налаштування програми General - Загальне + Загальні Security Безпека + + This setting cannot be enabled when minimize on unlock is enabled. + Це налаштування не можна увімкнути, якщо увімкнено згортання чи розблокування. + Access error for config file %1 Помилка доступу до файлу конфігурації %1 Icon only - Лише значок + Лише піктограма Text only @@ -184,11 +187,11 @@ Text beside icon - Текст поруч із значком + Текст поруч із піктограмою Text under icon - Текст під значком + Текст під піктограмою Follow style @@ -212,18 +215,50 @@ You must restart the application to set the new language. Would you like to restart now? - Ви мусите перезапустити програму, щоб встановити іншу мову. Бажаєте перезапустити зараз? - - - Reset Settings? - Скинути налаштування? - - - Are you sure you want to reset all general and security settings to default? - Ви дійсно бажаєте повністю скинути налаштування і повернутись до стандартних параметрів? + Для встановлення нової мови потрібно перезапустити програму. Бажаєте перезапустити зараз? Select backup storage directory + Виберіть каталог для резервного копіювання + + + Confirm Reset + Підтвердити скидання + + + Are you sure you want to reset all settings to default? + Впевнені, що хочете відновити всі налаштування за замовчуванням? + + + Import KeePassXC Settings + Імпортувати налаштування KeePassXC + + + Failed to import settings from %1, not a valid settings file. + Не вдалося імпортувати налаштування з %1, неправильний файл налаштувань. + + + Export KeePassXC Settings + Експортувати налаштування KeePassXC + + + Small + + + + Normal + + + + Medium + + + + Large + + + + Custom @@ -231,7 +266,7 @@ ApplicationSettingsWidgetGeneral Basic Settings - Базове налаштування + Загальні налаштування Startup @@ -243,54 +278,39 @@ Automatically launch KeePassXC at system startup - Автоматично запускати KeePassXC під час завантаженні системи + Автоматично запускати KeePassXC під час запуску системи Minimize window at application startup - Згортати вікно після запуску застосунку + Згортати вікно після запуску програми Minimize window after unlocking database - Згортати вікно після розблокування сховища + Згортати вікно після розблокування бази даних Remember previously used databases - Пам'ятати раніше використані сховища + Пам'ятати попередні бази даних + + + recent files + недавні файли Load previously open databases on startup - Завантажувати попередньо відкриті сховища під час запуску + Завантажувати раніше відкриті бази даних під час запуску Remember database key files and security dongles - Пам'ятати файлові ключі та апаратні ключі для сховища + Пам'ятати ключові файли та апаратні ключі бази даних Check for updates at application startup once per week - Перевіряти наявність оновлень щотижня під час запуску застосунку + Перевіряти наявність оновлень щотижня під час запуску програми Include beta releases when checking for updates - Пропонувати бета випуски для оновлення - - - On database unlock, show entries that - - - - have expired - On database unlock, show entries that... - - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - + Пропонувати бета-версії для оновлення File Management @@ -302,47 +322,35 @@ Automatically save when locking database - Автоматично зберігати сховище перед блокуванням + Автоматично зберігати під час блокування бази даних Automatically save non-data changes when locking database - Автоматично зберігати зміни, що не стосуються даних, перед блокуванням сховища + Автоматично зберігати зміни, що не стосуються даних, перед блокуванням бази даних Automatically reload the database when modified externally - Автоматично перезавантажувати сховище після зовнішніх змін + Автоматично перезавантажувати базу даних після зовнішніх змін Backup database file before saving - Створювати резервну копію сховища перед збереженням - - - Backup destination - - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - + Створювати резервну копію бази даних перед збереженням {DB_FILENAME}.old.kdbx - - - - Choose... - + {DB_FILENAME}.old.kdbx Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) - + Використовувати альтернативний спосіб збереження (може розв'язати проблеми з Dropbox, Google Диском, GVFS та ін.) Temporary file moved into place - + Тимчасовий файл переміщено на місце Directly write to database file (dangerous) - + Прямий запис у файл бази даних (небезпечно) Entry Management @@ -350,7 +358,7 @@ Use group icon on entry creation - Використовувати для нових записів значок групи + Використовувати для нових записів піктограму групи Minimize when opening a URL @@ -358,7 +366,7 @@ Hide window when copying to clipboard - Ховати вікно після копіювання у кишеню + Ховати вікно після копіювання в буфер обміну Minimize @@ -366,20 +374,20 @@ Drop to background - Пересунути на задній план + Перемістити на задній план Favicon download timeout: - Ліміт часу для завантаження фавікону: + Ліміт часу для завантаження піктограми: Website icon download timeout in seconds - Ліміт часу в секундах для завантаження значка сайту + Ліміт часу в секундах для завантаження піктограми сайту sec Seconds - сек + с User Interface @@ -387,7 +395,7 @@ Toolbar button style - Стиль кнопки для панелі інструментів + Стиль кнопок панелі інструментів Movable toolbar @@ -407,7 +415,11 @@ Toolbar button style: - Стиль кнопок панелі інструментів: + Стиль кнопки в панелі інструментів: + + + Show passwords in color + Кольорові символи паролів Use monospaced font for notes @@ -415,27 +427,27 @@ Minimize instead of app exit - Згортати вікно замість закриття + Згортати вікно замість виходу з програми Show a system tray icon - Показувати значок у системному лотку + Показувати піктограму в системному лотку Tray icon type - Варіант значка в лотку + Варіант піктограми в лотку Tray icon type: - Варіант значка в лотку: + Варіант пікограми в лотку: Hide window to system tray when minimized - Після згортання ховати вікно в системний лоток + Ховати вікно в системний лоток після згортання Reset settings to default… - Скинути параметри до типових... + Скинути налаштування до типових… Auto-Type @@ -443,23 +455,23 @@ Use entry title to match windows for global Auto-Type - Використовувати заголовок запису для знаходження відповідного вікна у глобальному автозаповненні + Використовувати заголовок запису для знаходження відповідного вікна під час глобального автозаповнення Use entry URL to match windows for global Auto-Type - Використовувати URL запису для знаходження відповідного вікна у глобальному автозаповненні + Використовувати URL-адресу запису для знаходження відповідного вікна під час глобального автозаповнення Always ask before performing Auto-Type - Завжди питати перед автозаповненням + Завжди запитувати перед застосуванням автозаповнення Hide expired entries from Auto-Type - Не використовувати знечинені записи для автозаповнення + Приховати протерміновані записи для автозаповнення Re-lock previously locked database after performing Auto-Type - Блокувати попередньо заблоковане сховище після завершення автозаповнення + Блокувати попередньо заблоковану базу даних після виконання автозаповнення Auto-Type start delay: @@ -467,7 +479,7 @@ Global Auto-Type shortcut: - Глобальне сполучення клавіш для автозаповнення: + Глобальна комбінація клавіш для автозаповнення: Auto-type start delay milliseconds @@ -480,18 +492,83 @@ Auto-Type typing delay: - Затримка вводження символів під час автозаповнення: + Затримка введення під час автозаповнення: Global auto-type shortcut - Глобальне сполучення клавіш для автозаповнення + Глобальна комбінація клавіш для автозаповнення Auto-type character typing delay milliseconds - Затримка в мілісекундах перед вводженням символів під час автозаповнення + Затримка в мілісекундах перед введенням символів під час автозаповнення Remember last typed entry for: + Пам'ятати останній введений запис для: + + + On database unlock, show entries that will expire within + При розблокуванні бази даних показувати записи, термін дії яких закінчується протягом + + + On database unlock, show entries that will expire within + При розблокуванні бази даних показувати записи, термін дії яких закінчується протягом + + + days + number of days warning for password expiration + дні + + + Destination format: + Формат призначення: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> замінюється на ім'я файла збереженої бази даних без розширення</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> замінюється на вказаний формат часу (за замовчуванням: дд_ММ_рррр_чч-хх-сс)</p><p>Дивіться Посібник користувача для більш детальної інформації</p></body></html> + + + Choose folder... + Вибрати папку... + + + Show confirmation before moving entries to recycle bin + Показувати підтвердження перед переміщенням записів до кошика + + + Copy data on double clicking field in entry view + Копіювати дані подвійним кліком по полю перегляду записів + + + Show toolbar + Показати панель инструментів + + + Show the menu bar by pressing the Alt key + Показати рядок меню при натисканні клавіші Alt + + + Show menubar + Показати меню + + + Import settings… + Імпорт налаштувань... + + + Export settings… + Експорт налаштувань... + + + Open browser on double clicking URL field in entry view + Відкрити Браузер подвійним кліком на полі URL-адреси при перегляді записів + + + Font size: + + + + Font size selection @@ -503,16 +580,16 @@ Database lock timeout seconds - Блокування сховища за часом в секундах + Час очікування блокування бази даних у секундах sec Seconds - сек + с Clear clipboard after - Очищати кишеню через + Очищати буфер обміну через Clear search query after @@ -521,15 +598,15 @@ min Minutes - хвилин + хв Clipboard clear seconds - Очищати кишеню через стільки секунд + Очищати буфер обміну через стільки секунд Lock databases after inactivity of - Блокувати сховища, неактивні протягом + Блокувати бази даних за неактивності Convenience @@ -537,19 +614,15 @@ Enable database quick unlock (Touch ID / Windows Hello) - + Увімкнути швидке розблокування бази даних (Touch ID / Windows Hello) Lock databases when session is locked or lid is closed - Блокувати сховища після блокування сесії або закриття кришки пристрою + Блокувати бази даних під час блокування системи Lock databases after minimizing the window - Блокувати сховища після згортання вікна - - - Require password repeat when it is visible - Вимагати підтвердження пароля, якщо він не прихований + Блокувати бази даних після згортання вікна Hide passwords when editing them @@ -557,23 +630,11 @@ Use placeholder for empty password fields - Показувати текст-заповнювач для порожніх полів паролів + Використовувати текст-заповнювач для порожніх полів паролів Hide passwords in the entry preview panel - Приховувати паролі у панелі передперегляду запису - - - Hide entry notes by default - Типово приховувати нотатки до запису - - - Move entries to recycle bin without confirmation - Переміщати записи в смітник без підтвердження - - - Enable double click to copy the username/password entry columns - + Приховувати паролі на панелі перегляду запису Privacy @@ -581,67 +642,74 @@ Use DuckDuckGo service to download website icons - Використовувати сервіс DuckDuckGo для завантаження значків сайтів + Використовувати DuckDuckGo для завантаження піктограм сайтів + + + Hide TOTP in the entry preview panel + Приховувати TOTP на панелі перегляду запису + + + Lock databases when switching user + Блокування баз даних при зміні користувача + + + Lock Options + Параметри блокування + + + Hide notes in the entry preview panel + Приховати нотатки на панелі попереднього перегляду AutoType The requested Auto-Type sequence cannot be used due to an error: - + Неможливо використати запитану послідовність автозаповнення, у зв'язку з помилкою: Auto-Type Error - + Помилка автозаповнення Permission Required - Необхідний дозвіл + Потрібен дозвіл KeePassXC requires the Accessibility permission in order to perform entry level Auto-Type. If you already granted permission, you may have to restart KeePassXC. - KeePassXC потребує дозволу на доступність для виконання автозаповнення на рівні записів. Якщо Ви вже надали цей дозвіл, можливо Вам необхідно перезапустити KeePassXC. + Для виконання автозаповнення на рівні запису KeePassXC потребує дозволу на доступність. Якщо ви вже надали цей дозвіл, можливо, потрібно перезапустити KeePassXC. KeePassXC requires the Accessibility and Screen Recorder permission in order to perform global Auto-Type. Screen Recording is necessary to use the window title to find entries. If you already granted permission, you may have to restart KeePassXC. - KeePassXC потребує дозволу на доступність і запис екрану для виконання глобального автозаповнення. Запис екрану необхідний, щоб виявити зоголовок вікна для пошуку записів. Якщо Ви вже надали цей дозвіл, можливо Вам необхідно перезапустити KeePassXC. + Для виконання глобального автозаповнення KeePassXC потребує дозволу на доступність і запис екрана. Запис екрана потрібний, щоб використовувати заголовок вікна для пошуку записів. Якщо ви вже надали ці дозволи, можливо, потрібно перезапустити KeePassXC. Invalid entry provided - + Надано недійсний запис Bracket imbalance detected, found extra { or } - + Виявлено невідповідність дужок: зайва { or } Too many repetitions detected, max is %1: %2 - + Виявлено забагато повторень. Максимум %1: %2 Very slow key press detected, max is %1: %2 - + Виявлено надто повільне натискання клавіш. Максимум %1: %2 Very long delay detected, max is %1: %2 - + Виявлено надто довгу затримку. Максимум %1: %2 - Invalid conversion type: %1 - - - - Invalid conversion syntax: %1 - - - - Invalid regular expression syntax %1 -%2 - + Entry does not have attribute for PICKCHARS: %1 + Запис не має атрибуту для PICKCHARS: %1 Invalid placeholder: %1 - + Неприпустимий заповнювач: %1 @@ -675,7 +743,7 @@ Username - Ім’я користувача + Ім'я користувача Sequence @@ -684,21 +752,21 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - - Sequence aborted: Caps Lock is on - + Послідовність перервано: Caps Lock увімкнено Sequence aborted: Modifier keys held by user - + Послідовність перервано: функціональні клавіші утримуються користувачем Unable to get valid keycode for key: - + Не вдається отримати дійсний код ключа: + + + Trying to send invalid keyboard symbol. + Спроба надіслати недійсний символ клавіатури. @@ -709,7 +777,7 @@ Double click a row to perform Auto-Type or find an entry using the search: - + Двічі натисніть на рядок, щоб виконати автозаповнення, або знайдіть запис, скориставшись пошуком: <p>You can use advanced search queries to find any entry in your open databases. The following shortcuts are useful:<br/> @@ -718,19 +786,24 @@ Ctrl+1 - Type username<br/> Ctrl+2 - Type password<br/> Ctrl+3 - Type TOTP<br/> Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> - + <p>Можна користуватися розширеними можливостями пошуку для знаходження будь-якого запису відкритих баз даних. Для цього корисні такі комбінації клавіш:<br/> +Ctrl+F - Перемкнути пошук бази даних<br/> +Ctrl+1 - Ввести ім'я користувача<br/> +Ctrl+2 - Ввести пароль<br/> +Ctrl+3 - Ввести TOTP<br/> +Ctrl+4 - Використати віртуальну клавіатуру (тільки Windows)</p> Search all open databases - + Шукати в усіх відкритих базах даних Search… - + Пошук… Type Sequence - + Послідовність заповнення Cancel @@ -738,38 +811,38 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Type {USERNAME} - + Заповнити {USERNAME} Type {PASSWORD} - + Заповнити {PASSWORD} Type {TOTP} - + Заповнити {TOTP} Copy Username - + Копіювати ім'я користувача Copy Password - + Копіювати пароль Copy TOTP - + Копіювати TOTP Use Virtual Keyboard - + Віртуальна клавіатура BrowserAccessControlDialog KeePassXC - Browser Access Request - Запит доступу для KeePassXC-Browser + KeePassXC – запит доступу до браузера %1 is requesting access to the following entries: @@ -789,23 +862,23 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> Allow Selected - Дозволити обрані + Дозволити вибране Deny All - Заборонити всі + Заборонити все Disable for this site Вимкнути для цього сайту + + Undo + Відмінити + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser Збереження запису - Ok Гаразд @@ -817,117 +890,172 @@ Ctrl+4 - Use Virtual Keyboard (Windows Only)</p> You have multiple databases open. Please select the correct database for saving credentials. - У вас відкрито декілька сховищ. -Будь ласка, оберіть правильне сховище для збереження реєстраційних даних. + У вас відкрито декілька баз даних. +Оберіть правильну базу даних для збереження облікових даних. + + + KeePassXC - Select Database + KeePassXC - Вибір бази даних + + + + BrowserPasskeysConfirmationDialog + + Cancel + Скасувати + + + Update + Оновлення + + + Authenticate + Автентифікація + + + Register new + Зареєструвати новий + + + Register + Зареєструватися + + + Timeout in <b>%n</b> seconds... + Тайм-аут через <b>%n</b> секунду...Тайм-аут через <b>%n</b> секунди...Тайм-аут через <b>%n</b> секунд...Тайм-аут через <b>%n</b> секунд... + + + Relying Party: %1 + Довірена сторона: %1 + + + Username: %1 + Ім'я користувача: %1 + + + KeePassXC - Passkey credentials + KeePassXC - Облікові дані Passkey + + + Add to existing entry + Додати до існуючого запису + + + Existing passkey found. +Do you want to register a new passkey for: + Знайдено існуючий пароль. +Ви хочете зареєструвати новий пароль для: + + + Select the existing passkey and press Update to replace it. + Виберіть існуючий пароль і натисніть "Оновити", щоб замінити його. + + + Authenticate passkey credentials for: + Аутентифікувати облікові дані пароля для: + + + Do you want to register a passkey for: + Ви хочете зареєструвати пароль для: BrowserService - - 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". + Отримано запит на створення нової групи "%1". Ви хочете створити цю групу? - - KeePassXC: New key association request - KeePassXC: новий запит на прив'язку ключа - You have received an association request for the following database: %1 Give the connection a unique name or ID, for example: chrome-laptop. - Ви одержали запит на сполучення з таким сховищем: + Ви отримали запит асоціації для такої бази даних: %1 -Надайте сполученню унікальну назву або ідентифікатор, наприклад: -chrome-на-ноутбуці. +Надайте асоціації унікальну назву або ідентифікатор, наприклад: +chrome-ноутбук. Save and allow access - Зберегти і дозволити доступ - - - KeePassXC: Overwrite existing key? - KeePassXC: перезаписати наявний ключ? + Зберегти та дозволити доступ A shared encryption key with the name "%1" already exists. Do you want to overwrite it? - Спільний ключ шифрування з назвою «%1» вже існує. -Перезаписати його? - - - KeePassXC: Update Entry - KeePassXC: оновити запис + Спільний ключ шифрування з назвою "%1" вже існує. +Хочете його перезаписати? Do you want to update the information in %1 - %2? - Бажаєте оновити інформацію у %1 – %2? - - - KeePassXC: Delete entry - + Хочете оновити інформацію в %1 – %2? A request for deleting entry "%1" has been received. Do you want to delete the entry? - + Отримано запит на видалення запису "%1". +Ви хочете видалити запис? + - Converting attributes to custom data… - Перетворення ознак на користувацькі дані… + %1 (Passkey) + %1 (Passkey) - Abort - Скасувати + KeePassXC - Create a new group + KeePassXC - Створити нову групу - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: Ознаки KeePassHTTP перетворено + Disable + Вимкнути - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - Ознаки %1 запису(-ів) успішно перетворено. -%2 ключів переміщено до користувацьких даних. - - - Successfully moved %n keys to custom data. - %n ключ успішно переміщено до користувацьких даних.%n ключа успішно переміщено до користувацьких даних.%n ключів успішно переміщено до користувацьких даних.%n ключів успішно переміщено до користувацьких даних. + KeePassXC - Overwrite existing key? + KeePassXC - Перезаписати наявний ключ? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: Записів з ознаками KeePassHTTP не знайдено! + KeePassXC - Update Entry + KeePassXC - Оновити запис - The active database does not contain an entry with KeePassHTTP attributes. - Поточне сховище не містить запису з ознаками KeePassHTTP. + KeePassXC - Delete entry + KeePassXC - Видалити запис - Don't show this warning again - Більше не показувати це попередження + KeePassXC - New key association request + KeePassXC - Запит на асоціацію нового ключа - KeePassXC: Legacy browser integration settings detected - KeePassXC: знайдено застарілі параметри сполучення з переглядачами + Passkey + Passkey - 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-Browser до параметрів сховища. -Це необхідно для підтримання сполучень з Вашим поточним переглядачем. -Бажаєте перемістити параметри зараз? + KeePassXC - Passkey credentials + KeePassXC - Облікові дані ключа доступу + + + Register a new passkey to this entry: + Зареєструвати новий пароль для цього запису: + + + KeePassXC - Update passkey + KeePassXC - Оновити пароль + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + Запис уже має пароль. +Ви хочете перезаписати пароль у %1 - %2? + + + Register + Зареєструватися @@ -938,23 +1066,19 @@ Would you like to migrate your existing settings now? This is required for accessing your databases with KeePassXC-Browser - Це необхідно для надання KeePassXC-Browser доступу до Ваших сховищ + Це потрібно для надання KeePassXC-Browser доступу до ваших баз даних Enable browser integration - Увімкнути сполучення з переглядачами + Увімкнути інтеграцію з браузером General Загальні - - Browsers installed as snaps are currently not supported. - Підтримка переглядачів, встановлених через Snap, наразі не втілена. - Enable integration for these browsers: - Увімкнути сполучення з такими переглядачами: + Увімкнути інтеграцію з такими браузерами: Vivaldi @@ -987,58 +1111,58 @@ Would you like to migrate your existing settings now? Show a notification when credentials are requested Credentials mean login data requested via browser extension - Показувати повідомлення, коли надходить запит на реєстраційні дані + Показувати сповіщення під час отримання запиту облікових даних Request 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://example.com) - + Відповідність схеми URL (наприклад, https://example.com) Only returns the best matches for a specific URL instead of all entries for the whole domain. - Показувати лише найкращі збіги для певного URL замість усіх записів для всієї області. + Показувати лише найкращі збіги для певної URL-адреси замість усіх записів для всього домену. Return only best-matching credentials - Показувати лише найкращі збіги реєстраційних даних + Показувати лише найвідповідніші облікові дані Returns expired credentials. String [expired] is added to the title. - Показує знечинені реєстраційні дані. Заголовок міститимить позначку [знечинені]. + Показує застарілі облікові дані. Заголовок міститиме позначку [протерміновано]. Allow returning expired credentials - Дозволити показ недійсних реєстраційних даних + Показувати протерміновані облікові дані All databases connected to the extension will return matching credentials. - Збіги з реєстраційними даними буде знайдено в усіх сполучених сховищах. + Відповідні облікові дані пропонуватимуться з усіх під'єднаних баз даних. Search in all opened databases for matching credentials Credentials mean login data requested via browser extension - Шукати збіги з реєстраційними даними в усіх відкритих сховищах + Шукати облікові дані в усіх відкритих сховищах Advanced - Розширене + Розширені Never ask before accessing credentials Credentials mean login data requested via browser extension - Ніколи не запитувати перед читанням реєстраційних даних + Ніколи не запитувати про доступ до облікових даних Never ask before updating credentials Credentials mean login data requested via browser extension - Ніколи не запитувати перед оновленням реєстраційних даних + Ніколи не запитувати про оновлення облікових даних Do not ask permission for HTTP Basic Auth @@ -1047,7 +1171,7 @@ Would you like to migrate your existing settings now? Automatically creating or updating string fields is not supported. - Автоматичне створення та оновлення текстових полів не втілене. + Автоматичне створення та оновлення текстових полів не підтримується. Return advanced string fields which start with "KPH: " @@ -1055,15 +1179,15 @@ Would you like to migrate your existing settings now? Don't display the popup suggesting migration of legacy KeePassHTTP settings. - Не показувати вигульк, що рекомендує перетворення параметрів застарілого KeePassHTTP. + Не показувати спливне вікно з пропозицією міграції налаштувань застарілого KeePassHTTP. Do not prompt for KeePassHTTP settings migration. - Не запитувати щодо перетворення параметрів KeePassHTTP. + Не запитувати про міграцію налаштувань KeePassHTTP. Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup. - Автоматично оновлює шлях до сценаріїв власного обміну повідомленнями для KeePassXC або двійкового посередника KeePassXC під час запуску. + Автоматично оновлює шлях до сценаріїв власного обміну повідомленнями для KeePassXC або двійкового keepassxc-proxy під час запуску. Update native messaging manifest files at startup @@ -1071,49 +1195,49 @@ Would you like to migrate your existing settings now? Use a custom proxy location if you installed a proxy manually. - Використовувати власне розташування посередника, якщо Ви встановили посередника вручну. + Використовувати власне розташування проксі, якщо ви встановили його вручну. Use a custom proxy location: Meant is the proxy for KeePassXC-Browser - Використовувати власне розташування посередника: + Використовувати власне розташування проксі: Custom proxy location field - Поле власного розташування посередника + Поле власного розташування проксі Browser for custom proxy file - Переглядач для файлу власного посередника + Браузер для файлу власного проксі Browse… Button for opening file dialog - + Огляд… Use a custom browser configuration location: - Використовувати власне розташування параметрів переглядача: + Використовувати власне розташування конфігурації браузера: Browser type: - Тип переглядача: + Тип браузера: Toolbar button style - Стиль кнопки для панелі інструментів + Стиль кнопки в панелі інструментів Config Location: - Розташування параметрів: + Розташування конфігурації: Custom browser location field - Поле власного розташування переглядача + Поле власного розташування браузера Browse for custom browser path - Вибрати власний шлях для переглядача + Вказати власне розташування браузера Custom extension ID: @@ -1123,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID Власний ідентифікатор розширення - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - Через заходи безпеки у Snap Вам необхідно виконати сценарій для сполучення з переглядачем. <br />Ви можете знайти файл сценарію в %1 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - Для сполучення з переглядачем потрібен KeePassXC-Browser. <br />Заватнажити для %1 і %2 та %3. %4 - - - Please see special instructions for browser extension use below - Нижче Ви можете знайти довідку з використання для розширення переглядача - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>Помилка:</b> Не можливо знайти власного посередника за вказаним шляхом!<br/>Сполучення з переглядачем <b>не працюватиме</b> без посередницького застосунку. - - - <b>Warning:</b> The following options can be dangerous! - <b>Попередження:</b> ці параметри можуть бути небезпечними! - Executable Files Виконувані файли @@ -1153,22 +1257,62 @@ Would you like to migrate your existing settings now? Select custom proxy location - Вибрати власне розташування посередника + Вибрати власне розташування проксі Select native messaging host folder location - Вибрати розташування теки для господаря власного обміну повідомленнями + Вибрати розташування теки для вузла власного обміну повідомленнями + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + Дозволити keepassxc-proxy показувати всі записи з назвою, URL-адресою та UUID у під'єднаній базі даних. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + Дозволити обмежений доступ до всіх записів у під'єднаних базах даних (ігнорує обмеження доступу до сайтів) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>Попередження:</b> Змінюйте ці налаштування лише за необхідності. + + + The custom proxy location does not exist. + Користувацького розташування проксі не існує. + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>Помилка:</b> Місцезнаходження користувацького проксі не існує. Виправте це на вкладці розширених налаштувань. + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>Помилка:</b> Встановлений проксі відсутній: %1<br/> Встановіть проксі в додаткових налаштуваннях або переінсталюйте програму. + + + Allows using insecure http://localhost with passkeys for testing purposes. + Дозволяє використовувати небезпечний http://localhost з паролями для тестування. + + + Allow using localhost with passkeys + Дозволити використовувати localhost з паролями + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + KeePassXC-Browser потрібен для роботи інтеграції з браузером. <br />Завантажте його для %1 та %2 і %3. + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + CloneDialog Clone Entry Options - + Параметри клонування запису Append ' - Clone' to title - Додати « – клон» до заголовка + Додати "- копія" до заголовка Replace username and password with references @@ -1176,26 +1320,18 @@ Would you like to migrate your existing settings now? Copy history - Скопіювати журнал + Копіювати історію CsvImportWidget - - Import CSV fields - Імпортувати поля CSV - - - filename - назва файлу - size, rows, columns - розмір, рядки, колонки + розмір, рядки, стовпчики Column Association - Прив'язка стовпчиків + Асоціація стовпчиків Password @@ -1203,7 +1339,7 @@ Would you like to migrate your existing settings now? Username - Ім’я користувача + Ім'я користувача Title @@ -1215,15 +1351,15 @@ Would you like to migrate your existing settings now? URL - URL + URL-адреса Notes - Примітки + Нотатки TOTP - ТОП + TOTP Created @@ -1231,11 +1367,11 @@ Would you like to migrate your existing settings now? Last Modified - Остання зміна + Востаннє змінено Icon - Значок + Піктограма Encoding @@ -1259,7 +1395,7 @@ Would you like to migrate your existing settings now? Field separation - Розділювач полів + Розділення полів Comments start with @@ -1297,51 +1433,44 @@ Would you like to migrate your existing settings now? Column %1 Стовпчик %1 - - Imported from CSV file - Імпортовано з файлу CSV - - - Original data: - Початкові дані: - - - Error(s) detected in CSV file! - У файлі CSV знайдено помилки! - [%n more message(s) skipped] [ще %n повідомлення пропущено][ще %n повідомлення пропущено][ще %n повідомлень пропущено][ще %n повідомлень пропущено] - Error - Помилка + Failed to parse CSV file: %1 + Не вдалося розібрати CSV файл: %1 - CSV import: writer has errors: -%1 - Імпортування CSV: помилки записувача: -%1 + Imported from CSV file: %1 + Імпортовано з файлу CSV: %1 + + + No Title Selected + Назва не вибрана + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + Не вибрано стовпець з назвою, записи буде важко розрізнити. +Ви впевнені, що хочете імпортувати? + + + Tags + Мітки CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1, %2, %3 - - - %n byte(s) - %n байт%n байти%n байтів%n байтів - %n row(s) - %n рядок%n рядки%n рядків%n рядків + CSV row count + %n рядок%n рядки%n рядків%n рядки %n column(s) - %n колонка%n колонки%n колонок%n колонок + CSV column count + %n стовпчик%n стовпчика%n стовпчиків%n стовпчика @@ -1361,51 +1490,59 @@ Would you like to migrate your existing settings now? Error while reading the database: %1 - Помилка читання сховища: %1 + Помилка читання бази даних: %1 Could not save, database does not point to a valid file. - Збереження неможливе оскільки шлях до сховища не вказує на придатний файл. + Неможливо зберегти, оскільки база даних не вказує на дійсний файл. Database save is already in progress. - Збереження сховища вже триває. + Наразі триває збереження бази даних. Could not save, database has not been initialized! - Збереження неможливе оскільки сховище не започатковане! + Неможливо зберегти, оскільки базу даних не визначено! Database file has unmerged changes. - Файл сховища містить необ'єднані зміни. + Файл бази даних має необ'єднані зміни. %1 Backup database located at %2 %1 -Резервне сховище знаходиться в %2 +Резервна копія бази даних знаходиться в %2 Key not transformed. This is a bug, please report it to the developers. - + Ключ не перетворено. Це помилка. Будь ласка, повідомте про це розробників. Recycle Bin Смітник + + Database file read error. + + + + No file path was provided. + + DatabaseOpenDialog Unlock Database - KeePassXC - Розблокувати сховище - KeePassXC + Розблокувати базу даних – KeePassXC DatabaseOpenWidget Unlock KeePassXC Database - Розблокувати сховище KeePassXC + Розблокувати базу даних KeePassXC Enter Password: @@ -1415,62 +1552,25 @@ Backup database located at %2 Password field Поле пароля - - Enter Additional Credentials (if any): - Введіть додаткові реєстраційні дані (якщо є): - - - Key File: - Файловий ключ: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - - Key file help - Довідка щодо файлового ключа - Hardware key slot selection - Вибір гнізда апаратного захисту - - - Hardware Key: - Апаратний ключ: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - - Hardware key help - Довідка щодо апаратних ключів + Вибір роз'єму апаратного ключа Key file to unlock the database - Файловий ключ для розблокування сховища + Ключовий файл для розблокування бази даних Browse for key file - Вибір файлового ключа + Вибір ключового файлу Browse… - - - - Refresh hardware tokens - Оновити апаратні позначки - - - Refresh - Оновити + Огляд… Unlock Database - + Розблокувати базу даних Cancel @@ -1478,15 +1578,15 @@ Backup database located at %2 Unlock - + Розблокувати Please present or touch your YubiKey to continue… - + Надайте свій YubiKey або торкніться до нього для продовження… Database Version Mismatch - + Версії бази даних відрізняються The database you are trying to open was most likely @@ -1496,53 +1596,51 @@ You can try to open it anyway, but it may be incomplete and saving any changes may incur data loss. We recommend you update your KeePassXC installation. - + База даних, яку ви намагаєтеся відкрити, ймовірно +створена новішою версією KeePassXC. + +Ви все одно можете спробувати відкрити її, але вона може бути +неповною, а збереження змін може спричинити втрату даних. + +Рекомендовано оновити встановлену версію KeePassXC. Open database anyway - + Все одно відкрити Database unlock canceled. - + Розблокування бази даних скасовано. Unlock failed and no password given - Розблокування зазнало невдачі й пароль не надано + Не вдалося розблокувати, не надано пароль Unlocking the database failed and you did not enter a password. Do you want to retry with an "empty" password instead? To prevent this error from appearing, you must go to "Database Settings / Security" and reset your password. - Розблокування сховища зазнало невдачі і Ви не ввели пароль. -Бажаєте спробувати натомість з порожнім паролем? + Розблокування бази даних зазнало невдачі й ви не ввели пароль. +Хочете спробувати знову з порожнім паролем? -Щоб уникати цього повідомлення у майбутньому, Ви мусите вибрати в меню в меню «Налаштування сховища / Безпека» і встановити Ваш пароль. +Щоб уникнути цього повідомлення в майбутньому, потрібно скинути пароль у меню "Налаштування бази даних / Безпека". Retry with empty password Спробувати знову з порожнім паролем - - Failed to authenticate with Windows Hello - - - - Failed to authenticate with Touch ID - - Failed to open key file: %1 - Відкриття файлового ключа зазнало невдачі: %1 + Не вдалося відкрити ключовий файл: %1 Old key file format - Старий формат файлового ключа + Застарілий формат ключового файлу You are using an old key file format which KeePassXC may<br>stop supporting in the future.<br><br>Please consider generating a new key file by going to:<br><strong>Database &gt; Database Security &gt; Change Key File.</strong><br> - + Ви користуєтеся застарілим форматом ключового файлу, який KeePassXC може<br>припинити підтримувати в майбутньому.<br><br>Розгляньте можливість генерування нового ключового файлу в меню:<br><strong>База даних &gt; Безпека бази даних &gt; Змінити ключовий файл.</strong><br> Don't show this warning again @@ -1550,37 +1648,83 @@ To prevent this error from appearing, you must go to "Database Settings / S All files - Всі файли + Усі файли Key files - Файлові ключі + Ключові файли Select key file - Виберіть файловий ключ + Виберіть ключовий файл Cannot use database file as key file - Неможливо використати файл сховища як файловий ключ + Неможливо використати файл бази даних як ключовий файл - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - Ви не можете використовувати файл сховища як файловий ключ. -Якщо у Вас немає файлового ключа, залиште, будь ласка, це поле порожнім. + authenticate to access the database + автентифікуватися для доступу до бази даних - Detecting hardware keys… - Виявлення апаратних ключів... + Failed to authenticate with Quick Unlock: %1 + Не вдалося аутентифікуватися за допомогою швидкого розблокування (Quick Unlock): %1 - No hardware keys detected - Не виявлено апаратних ключів + Select Key File: + Виберіть файл-ключ: - Select hardware key… - Вибрати ключ апаратного захисту... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>На додачу до пароля, ви можете використовувати секретний файл, щоб підвищити безпеку вашої бази даних. Цей файл можна створити у налаштуваннях безпеки вашої бази даних.</p><p>Це <strong>не</strong> ваш файл бази даних *.kdbx!</p> + + + Use hardware key [Serial: %1] + Використовувати апаратний ключ [Серійний номер: %1] + + + Use hardware key + Виберіть апаратний ключ + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + Ваш файл бази даних НЕ є ключовим файлом! +Якщо у вас немає ключового файлу або ви не знаєте, що це таке, вам не потрібно нічого вибирати. + + + KeePassXC database file selected + Вибрано файл бази даних KeePassXC + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + Вибраний вами файл виглядає як файл бази даних. +Файл бази даних НЕ є ключовим файлом! + +Ви впевнені, що хочете продовжити з цим файлом? + + + No hardware keys found. + Апаратних ключів не виявлено. + + + Refresh Hardware Keys + Оновити апаратні ключі + + + Click to add a key file. + Натисніть, щоб додати файл ключа. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">У мене є файл ключа</a> + + + Hardware keys found, but no slots are configured. + Апаратні ключі знайдено, але жоден слот не налаштовано. @@ -1592,13 +1736,9 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - Розширене налаштування - General - Загальне + Загальні Security @@ -1606,7 +1746,7 @@ If you do not have a key file, please leave the field empty. Database Credentials - Реєстраційні дані сховища + Облікові дані бази даних Encryption Settings @@ -1614,11 +1754,27 @@ If you do not have a key file, please leave the field empty. Browser Integration - Сполучення з переглядачем + Інтеграція з браузером Maintenance - + Обслуговування + + + KeeShare + KeeShare + + + Secret Service Integration + Сполучення зі «Службою таємниць». + + + Remote Sync + Віддалена синхронізація + + + Database Settings: %1 + Параметри бази даних: %1 @@ -1627,25 +1783,17 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings Налаштування KeePassXC-Browser - - Convert KeePassHTTP data - - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - Refresh database root group ID - Оновити ідентифікатор кореневої групи сховища - Disconnect all browsers - Від'єднати від усіх переглядачів + Від'єднати всі браузери Forget all site-specific settings on entries - Забути особливе налаштування сайтів у всіх записах + Забути налаштування сайтів у всіх записах + + + Refresh database root group ID + Оновити ідентифікатор кореневої групи бази даних Stored keys @@ -1653,15 +1801,15 @@ If you do not have a key file, please leave the field empty. Stored browser keys - Збережені ключі переглядачів + Збережені ключі браузерів Remove selected key - Видалити вибраний ключ + Вилучити вибраний ключ Remove - Видалити + Вилучити Delete the selected key? @@ -1670,8 +1818,8 @@ If you do not have a key file, please leave the field empty. Do you really want to delete the selected key? This may prevent connection to the browser plugin. - Ви дійсно бажаєте видалити позначений ключ? -Це може пошкодити сполучення з модулем переглядача. + Ви дійсно хочете видалити вибраний ключ? +Це може перешкодити з'єднанню з плагіном браузера. Key @@ -1687,85 +1835,80 @@ This may prevent connection to the browser plugin. Enable Browser Integration to access these settings. - Увімкніть сполучення з переглядачем, щоб дістати доступ до цих параметрів. + Щоб отримати доступ до цих налаштувань, увімкніть інтеграцію з браузером. Do you really want to disconnect all browsers? This may prevent connection to the browser plugin. - Ви дійсно хочете від'єднати усі переглядачі? -Це може пошкодити сполучення з модулем переглядача. - - - KeePassXC: No keys found - KeePassXC: жодного ключа не знайдено + Ви дійсно хочете від'єднати всі браузери? +Це може перешкодити з'єднанню з плагіном браузера. No shared encryption keys found in KeePassXC settings. - Не знайдено жодного спільного ключа у параметрах KeePassXC. - - - KeePassXC: Removed keys from database - KeePassXC: ключі видалено зі сховища + У налаштуваннях KeePassXC не знайдено спільних ключів шифрування. Successfully removed %n encryption key(s) from KeePassXC settings. - Успішно видалено %n ключ шифрування з параметрів KeePassXC.Успішно видалено %n ключі шифрування з параметрів KeePassXC.Успішно видалено %n ключів шифрування з параметрів KeePassXC.Успішно видалено %n ключів шифрування з параметрів KeePassXC. + З налаштувань KeePassXC успішно вилучено %n ключ шифрування.З налаштувань KeePassXC успішно вилучено %n ключі шифрування.З налаштувань KeePassXC успішно вилучено %n ключів шифрування.З налаштувань KeePassXC успішно вилучено %n ключів шифрування. 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: дозволи видалено + Перервати Successfully removed permissions from %n entry(s). - Успішно видалено дозволи з %n запису.Успішно видалено дозволи з %n записів.Успішно видалено дозволи з %n записів.Успішно видалено дозволи з %n записів. - - - KeePassXC: No entry with permissions found! - KeePassXC: запис з дозволами не знайдено! + Успішно вилучено дозволи з %n запису.Успішно вилучено дозволи з %n записів.Успішно вилучено дозволи з %n записів.Успішно вилучено дозволи з %n записів. The active database does not contain an entry with permissions. - Поточне сховище не містить записів з дозволами. - - - Move KeePassHTTP attributes to custom data - Перемістити ознаки KeePassHTTP до користувацьких даних - - - Do you really want to convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - + Активна база даних не містить запису з дозволами. Refresh database ID - Оновити ідентифікатор сховища + Оновити ідентифікатор бази даних Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - Ви дійсно бажаєте оновити ідентифікатор сховища? -Це необхідно лише тоді, коли Ваше сховище є копією іншого і не вдається під'єднати розширення переглядача. + Ви дійсно хочете оновити ідентифікатор бази даних? +Це потрібно лише якщо ваша база даних є копією іншої та неможливо під'єднати розширення браузера. + + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Конвертувати застарілі атрибути KeePassHTTP у користувацькі дані, сумісні з KeePassXC-Browser + + + No keys found + Не знайдено жодних ключів + + + Removed keys from database + Видалено ключі з бази даних + + + Removed permissions + Вилучено дозволи + + + No entry with permissions found! + Не знайдено записи з дозволами! DatabaseSettingsWidgetDatabaseKey Add additional protection… - + Додати розширений захист… No password set @@ -1775,7 +1918,7 @@ This is only necessary if your database is a copy of another and the browser ext 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? - <b>Попередження!</b> Ви не встановили пароль. Недоцільно використовувати сховище без пароля! + ПОПЕРЕДЖЕННЯ! Ви не встановили пароль. Не рекомендовано користуватися базою даних без парольного захисту! Ви дійсно хочете продовжити без пароля? @@ -1785,11 +1928,11 @@ Are you sure you want to continue without a password? No encryption key added - Жодного шифрувального ключа не додано + Не додано жодного ключа шифрування You must add at least one encryption key to secure your database! - Ви мусите додати щонайменьше один шифрувальний ключ, щоб захистити Ваше сховище! + Обов'язково додайте принаймні один ключ шифрування для захисту бази даних! Unknown error @@ -1797,7 +1940,19 @@ Are you sure you want to continue without a password? Failed to change database credentials - Не вдалося змінити облікові дані сховища + Не вдалося змінити облікові дані бази даних + + + Weak password + Слабкий пароль + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + Це слабкий пароль! Для кращого захисту ваших секретів, вам слід обрати складніший пароль. + + + The provided password does not meet the minimum quality requirement. + Наданий пароль не відповідає мінімальним вимогам до якості. @@ -1806,37 +1961,29 @@ Are you sure you want to continue without a password? Decryption Time: Час розшифрування: - - Change existing decryption time - Змінити наявний час розшифрування - - - Change - Змінити - Decryption time in seconds Час розшифрування в секундах Higher values offer more protection, but opening the database will take longer. - Вищі значення поліпшують захист, але сповільнюють відкривання сховища. + Вище значення поліпшує захист, але сповільнює відкриття бази даних. Database format: - Формат сховища: + Формат бази даних: Database format - Формат сховища + Формат бази даних Format cannot be changed: Your database uses KDBX 4 features - + Неможливо змінити формат: У вашій базі даних використовуються функції KDBX 4 Unless you need to open your database with other programs, always use the latest format. - + Якщо вам потрібно відкрити свою базу даних з використанням інших програм, завжди користуйтеся найновішим форматом. Encryption Algorithm: @@ -1848,7 +1995,7 @@ Are you sure you want to continue without a password? AES: 256 Bit (default) - AES: 256 біт (типове) + AES: 256 біт (типово) Twofish: 256 Bit @@ -1868,51 +2015,48 @@ Are you sure you want to continue without a password? Transform rounds - Кількість циклів перетворення + Циклів перетворення Memory Usage: - Використана пам'ять: + Використання пам'яті: Memory usage - Використана пам'ять + Використання пам'яті Parallelism: - Паралельність: + Паралелізм: Parallelism - Паралельність + Паралелізм KDBX 4 (recommended) - + KDBX 4 (рекомендовано) KDBX 3 - - - - unchanged - Database decryption time is unchanged - без змін + KDBX 3 Number of rounds too high Key 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, days, or even longer to open. - + Ви використовуєте дуже високе значення циклів перетворення ключа з Argon2. + +Якщо ви збережете це значення, відкриття вашої бази даних може тривати години, дні, чи навіть більше. Understood, keep number - Зрозуміло, залишити таку кількість + Зрозуміло, зберегти цю кількість Cancel @@ -1921,77 +2065,91 @@ If you keep this number, your database may take hours, days, or even longer to o Number of rounds too low Key transformation rounds - Кількість циклів надто низька + Кількість циклів занадто низька You are using a very low number of key transform rounds with AES-KDF. If you keep this number, your database will not be protected from brute force attacks. - + Ви використовуєте дуже низьке значення циклів перетворення ключа з AES-KDF. + +Якщо ви збережете це значення, ваша база даних не буде захищена від атак грубого зламу. KDF unchanged - ФОК не змінено + KDF не змінено Failed to transform key with new KDF parameters; KDF unchanged. - Спроба перетворити ключ згідно з новими параметрами ФОК зазнала невдачі; ФОК залишилась без змін. + Не вдалося перетворити ключ з новими параметрами KDF; KDF не змінено. MiB Abbreviation for Mebibytes (KDF settings) - МіБМіБМіБМіБ + МіБ МіБ МіБ МіБ thread(s) Threads for parallel execution (KDF settings) - потікпотокипотоківпотоків + потік потоки потоків потоків + + + Encryption Settings: + Параметри шифрування: + + + Basic + Основний + + + Advanced + Додатково DatabaseSettingsWidgetFdoSecrets Exposed Entries - Виставлені записи + Розкриті записи Don't expose this database - Не виставляти це сховище + Не розкривати цю базу даних Expose entries under this group: - Виставити записи з такої групи: + Розкрити записи з такої групи: Enable Secret Service to access these settings. - Увімкніть «Службу таємниць», щоб одержати доступ до цих параметрів. + Увімкніть «Службу секретів» для доступу до цих налаштувань. DatabaseSettingsWidgetGeneral Database Metadata - + Метадані бази даних Database name: - Назва сховища: + Назва бази даних: Database name field - Поле назви сховища + Поле назви бази даних Database description: - Опис сховища: + Опис бази даних: Database description field - Поле опису сховища + Поле опису бази даних Default username: - Типове ім’я користувача: + Типове ім'я користувача: Default username field @@ -1999,23 +2157,15 @@ If you keep this number, your database will not be protected from brute force at History Settings - Налаштування журналу + Налаштування історії Maximum number of history items per entry - Найбільша кількість заміток журналу для запису - - - Max. history items: - Макс. записів журналу: + Максимальна кількість елементів історії на один запис Maximum size of history per entry - Максимальний розмір журналу для запису - - - Max. history size: - Макс. розмір журналу: + Максимальний розмір історії на один запис MiB @@ -2027,7 +2177,7 @@ If you keep this number, your database will not be protected from brute force at Additional Database Settings - Додаткове налаштування сховища + Додаткові налаштування бази даних Enable compression (recommended) @@ -2041,18 +2191,120 @@ If you keep this number, your database will not be protected from brute force at Do you want to delete the current recycle bin and all its contents? This action is not reversible. Ви дійсно хочете видалити смітник і весь його вміст? -Відновлення буде неможливим. +Це незворотна дія. (old) - (старий) + (застарілий) + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + Зберігаючи це налаштування чи редагуючи +запис, старіші елементи історії запису +будуть вилучені, залишаючи лише +зазначену кількість елементів. + + + Limit the amount of history items per entry to: + Обмежити кількість елементів історії в записах до: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + Зберігаючи це налаштування чи редагуючи +запис, старіші елементи історії запису +будуть вилучені, залишаючи лише +зазначену кількість елементів. + + + Limit the total size of history items per entry to: + Обмежити загальний обсяг елементів історії в записах до: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + Переміщувати записи до смітника +замість видалення їх з бази даних. +Вилучені зі смітника записи +остаточно вилучаються з бази даних. + + + Autosave delay since last change + Затримка автозбереження з моменту останньої зміни + + + Autosave delay + Затримка автозбереження + + + Autosave delay since last change in minutes + Затримка автозбереження з моменту останньої зміни в хвилинах + + + min + хв + + + Autosave delay since last change checkbox + Прапорець затримки автозбереження з моменту останньої зміни + + + Public Database Metadata + Публічні метадані бази даних + + + Warning: the following settings are not encrypted. + Увага: наступні налаштування не зашифровані. + + + Display name: + Відображуване ім'я: + + + Publically visible display name used on the unlock dialog + Публічне ім'я, що використовується в діалоговому вікні розблокування + + + Database public display name + Публічне ім'я бази даних + + + Display color: + Відображуваний колір: + + + Publically visible color used on the unlock dialog + Публічний колір, що використовується в діалоговому вікні розблокування + + + Database public display color chooser + Публічний колір бази даних + + + Clear + Очистити + + + Display icon: + Піктограма: + + + Select Database Icon + Вибрати піктограму бази даних DatabaseSettingsWidgetKeeShare Sharing - Спільне користування + Спільний доступ Breadcrumb @@ -2068,7 +2320,7 @@ This action is not reversible. Last Signer - Останній підписувач + Останній підписант Certificates @@ -2084,54 +2336,54 @@ This action is not reversible. DatabaseSettingsWidgetMaintenance Manage Custom Icons - + Керувати власними піктограмами Delete selected icon(s) - + Видалити вибрані піктограми Delete all custom icons not in use by any entry or group - + Видалити всі власні піктограми не використовувані жодним записом або групою Purge unused icons - + Вилучити невикористані піктограми Confirm Deletion - + Підтвердити видалення At least one of the selected icons is currently in use by at least one entry or group. The icons of all affected entries and groups will be replaced by the default icon. Are you sure you want to delete icons that are currently in use? - + Принаймні одна з вибраних піктограм використовується щонайменше одним записом або групою. Піктограми всіх пов'язаних записів і груп будуть замінені типовою піктограмою. Ви впевнені, що хочете видалити використовувані піктограми? Custom Icons Are In Use - + Власні піктограми використовуються All custom icons are in use by at least one entry or group. - + Усі власні піктограми використовуються принаймні в одному записі чи групі. Purged Unused Icons - + Невикористані піктограми вилучено Purged %n icon(s) from the database. - + З бази даних вилучено %n піктограму.З бази даних вилучено %n піктограми.З бази даних вилучено %n піктограм.З бази даних вилучено %n піктограм. DatabaseSettingsWidgetMetaDataSimple Database Name: - Назва сховища: + Назва бази даних: Database name field - Поле назви сховища + Поле назви бази даних Description: @@ -2139,117 +2391,242 @@ This action is not reversible. Database description field - Поле опису сховища + Поле опису бази даних + + + + DatabaseSettingsWidgetRemote + + Sync Commands + Синхронізація команд + + + Remove + Вилучити + + + Command Settings + Налаштування команд + + + Name + Назва + + + Save + Зберегти + + + Download + Завантажити + + + Command: + Команда: + + + Download command field + Поле команди завантаження + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + наприклад: "sftp user@hostname" або "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Введення: + + + Download input field + Поле введення завантаження + + + Upload + Завантажити + + + Upload command field + Поле команди завантаження + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + наприклад: "sftp user@hostname" або "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + Поле команди вивантаження + + + Name cannot be empty. + Ім'я не може бути порожнім. + + + Test + Тест + + + Download command cannot be empty. + Команда завантаження не може бути порожньою. + + + Download failed with error: %1 + Помилка завантаження: %1 + + + Download finished, but file %1 could not be found. + Завантаження завершено, але файл %1 не вдалося знайти. + + + Download successful. + Успішне завантаження. + + + Save Remote Settings + Зберегти віддалені налаштування + + + You have unsaved changes. Do you want to save them? + У вас незбережені зміни. Хочете їх зберегти? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Наприклад: +отримати DatabaseOnRemote.kdbx {TEMP_DATABASE} +вийти +--- +{TEMP_DATABASE} використовується як заповнювач для зберігання бази даних у тимчасовому місці +Команда має вихід. У випадку з 'sftp' останньою командою має бути надіслано 'exit' + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Наприклад: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +вийти +--- +{TEMP_DATABASE} використовується як заповнювач для зберігання бази даних у тимчасовому місці +Команда має вихід. У випадку з 'sftp' останньою командою має бути надіслано 'exit' + + + Timeout: + Таймаут: + + + seconds + секунд DatabaseTabWidget 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, тому її неможливо зберегти. +Це напевне помилка програми. Будь ласка, повідомте про це розробників. KeePass 2 Database - Сховище KeePass 2 + База даних KeePass 2 All files - Всі файли + Усі файли Open database - Відкрити сховище + Відкрити базу даних Failed to open %1. It either does not exist or is not accessible. - Не вдалося відкрити %1. Він або не існує, або не є доступним. + Не вдалося відкрити %1. Він не існує або недоступний. CSV file Файл CSV - - Select CSV file - Вибрати файл CSV - Merge database - Об'єднати сховище - - - KeePass 1 database - Сховище KeePass 1 - - - Open KeePass 1 database - Відкрити сховище KeePass 1 - - - Open OPVault - Відкрити OPVault + Об'єднати базу даних Export database to CSV file - Експортувати сховище до файлу CSV + Експортувати базу даних до файлу CSV Writing the CSV file failed. - Не вдалось записати CSV файл. + Не вдалося записати файл CSV. Writing the HTML file failed. Не вдалося записати файл HTML. + + Export database to XML file + Експортувати базу даних до файлу XML + + + XML file + Файл XML + + + Writing the XML file failed + Не вдалося записати у файл XML + Export Confirmation - Схвалення експортування + Підтвердження експорту You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? - Ви збираєтесь експортувати Ваше сховище в незашифрований файл. Це зробить Ваші паролі і вразливі дані незахищеними! Ви дійсно бажаєте продовжити? - - - New Database - Нове сховище - - - %1 [New Database] - Database tab name modifier - %1 [Нове сховище] + Ви збираєтесь експортувати свою базу даних у незашифрований файл. Це зробить ваші паролі та важливу інформацію вразливими! Ви дійсно хочете продовжити? %1 [Locked] Database tab name modifier - %1 [Заблоковане] + %1 [Заблоковано] + + + %1 [Temporary] + Database tab name modifier + %1 [Тимчасово] DatabaseWidget - Database Tags - + Searches and Tags + Пошук та мітки Searching… - + Триває пошук… Shared group… - + Спільна група… Confirm Auto-Type - + Підтвердити автозаповнення Perform Auto-Type into the previously active window? - + Виконати автозаповнення в попередньому активному вікні? Execute command? @@ -2269,35 +2646,39 @@ This is definitely a bug, please report it to the developers. Do you really want to delete the group "%1" for good? - Ви дійсно хочете остаточно видалити групу «%1»? + Ви дійсно хочете остаточно видалити групу "%1"? Move group to recycle bin? - Перемістити групу у смітник? + Перемістити групу до смітника? Do you really want to move the group "%1" to the recycle bin? - Ви дійсно хочете перемістити групу «%1» у смітник? + Ви дійсно хочете перемістити групу "%1" до смітника? Expired entries - + Протерміновані записи + + + Entries expiring within %1 day(s) + Термін дії запису завершується через %1 деньТермін дії запису завершується через %1 дніТермін дії запису завершується через %1 днівТермін дії запису завершується через %1 дні No current database. - Сховище не обране. + Немає поточної бази даних. No source database, nothing to do. - Джерельне сховище відсутнє, оброблення не потрібне. + Немає вихідної бази даних. Немає дій до виконання. Successfully merged the database files. - Файли сховищ вдало об'єднано. + Файли баз даних успішно об'єднано. Database was not modified by merge operation. - Об'єднання не змінило сховище. + Об'єднання не змінило базу даних. Search Results (%1) @@ -2305,26 +2686,38 @@ This is definitely a bug, please report it to the developers. No Results - Збіги відсутні + Нічого не знайдено + + + Save + Зберегти + + + Enter a unique name or overwrite an existing search from the list: + Введіть унікальну назву або перезапишіть наявний пошук зі списку: + + + Save Search + Зберегти пошук Lock Database? - Заблокувати сховище? + Заблокувати базу даних? You are editing an entry. Discard changes and lock anyway? - Ви змінюєте запис. Відкинути зміни і все одно заблокувати? + Ви редагуєте запис. Відхилити зміни й заблокувати? "%1" was modified. Save changes? - «%1» змінено. + "%1" було змінено. Зберегти зміни? Database was modified. Save changes? - Сховище змінено. + Базу даних було змінено. Зберегти зміни? @@ -2335,26 +2728,6 @@ Save changes? 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? - Файл сховища було змінено, а Ви маєте незбережені зміни. -Об‘єднати ці зміни? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - Відкриття нового файлу сховища зазнало невдачі під час автоматичного перевантаження. -Помилка: %1 - Disable safe saves? Вимкнути безпечне збереження? @@ -2362,12 +2735,12 @@ Error: %1 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 не зміг зберегти сховище кілька разів поспіль. Швидше за все це сталося тому, що служба узгодження файлів блокує файл для запису. -Вимкнути безпечне збереження і спробувати знов? + KeePassXC не зміг зберегти базу даних кілька разів поспіль. Ймовірно, це спричинено службою синхронізації, яка блокує збереження файлу. +Вимкнути безпечне збереження і спробувати знову? Writing the database failed: %1 - Записати сховище не вдалося: %1 + Не вдалося записати в базу даних: %1 Passwords @@ -2375,15 +2748,15 @@ Disable safe saves and try again? Save database as - Зберегти сховище як + Зберегти базу даних як KeePass 2 Database - Сховище KeePass 2 + База даних KeePass 2 Save database backup - Зберегти резервну копію сховища + Зберегти резервну копію бази даних Empty recycle bin? @@ -2391,15 +2764,100 @@ Disable safe saves and try again? Are you sure you want to permanently delete everything from your recycle bin? - Ви дійсно бажаєте остаточно видалити все зі смітника? + Ви дійсно хочете остаточно видалити все зі смітника? Could not find database file: %1 - Не вдалося знайти файл сховища: %1 + Не вдалося знайти файл бази даних: %1 - - Entries expiring within %1 day(s) - + + New Database + Нова база даних + + + %1 [New Database] + Database tab name modifier + %1 [Нова база даних] + + + Remote Sync did not contain any download or upload commands. + Віддалена синхронізація не містила жодних команд завантаження або вивантаження. + + + Remote sync '%1' completed successfully! + Віддалена синхронізація '%1' успішно завершена! + + + Remote sync '%1' failed: %2 + Не вдалося виконати віддалену синхронізацію '%1': %2 + + + Error while saving database %1: %2 + Помилка під час збереження бази даних %1: %2 + + + Downloading... + Завантаження... + + + Uploading... + Вивантаження... + + + Syncing... + Синхронізація... + + + Remove passkey from entry + Видалити пароль з запису + + + Do you want to remove the passkey from this entry? + Бажаєте видалити ключ доступу з цього запис? + + + The database file "%1" was modified externally + + + + Do you want to load the changes? + + + + Reload database + + + + Reloading database… + + + + Reload canceled + + + + Reload successful + + + + Reload pending user action… + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + + + + Database file overwritten. + + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + @@ -2410,11 +2868,11 @@ Disable safe saves and try again? Advanced - Розширене + Додатково Icon - Значок + Піктограма Auto-Type @@ -2422,19 +2880,19 @@ Disable safe saves and try again? Browser Integration - Сполучення з переглядачем + Інтеграція з браузером <empty URL> - <порожній URL> + <порожня URL-адреса> Confirm Removal - Схваліть видалення + Підтвердити вилучення Are you sure you want to remove this URL? - Ви дійсно бажаєте видалити цей URL? + Ви дійсно хочете вилучити цю URL-адресу? Properties @@ -2442,27 +2900,23 @@ Disable safe saves and try again? History - Журнал + Історія SSH Agent - Посередник SSH + SSH агент n/a - немає - - - (encrypted) - (зашифровано) + н/д Select private key - Вибрати таємний ключ + Вибрати приватний ключ Entry history - Журнал запису + Історія запису Add entry @@ -2474,33 +2928,37 @@ Disable safe saves and try again? Some Browser Integration settings are overridden by group settings. - + Деякі налаштування інтеграції з браузером перевизначені налаштуваннями групи. Invalid Entry - Непридатний запис + Недійсний запис An external merge operation has invalidated this entry. Unfortunately, any changes made have been lost. - Зовнішня операція об'єднання знечинила цей запис. -На жаль, всі зміни загублено. + Зовнішня операція об'єднання зробила цей запис недійсним. +На жаль, будь-які зміни було втрачено. Auto-Type Validation Error - + Помилка перевірки автозаповнення An error occurred while validating the custom Auto-Type sequence: %1 Would you like to correct it? - + Під час перевірки власної послідовності автозаповнення виникла помилка: +%1 +Бажаєте виправити? An error occurred while validating the Auto-Type sequence for "%1": %2 Would you like to correct it? - + Під час перевірки послідовності автозаповнення для "%1" виникла помилка: +%2 +Бажаєте виправити? Entry updated successfully. @@ -2512,19 +2970,19 @@ Would you like to correct it? Would you like to save changes to this entry? - Бажаєте зберегти зміни внесені до цього запису? + Зберегти зміни до цього запису? New attribute - Нова ознака + Новий атрибут New attribute %1 - Нова ознака %1 + Новий атрибут %1 Are you sure you want to remove this attribute? - Ви дійсно бажаєте видалити цю ознаку? + Ви дійсно бажаєте видалити цей атрибут? Reveal @@ -2538,40 +2996,44 @@ Would you like to correct it? Hide Сховати + + %n hour(s) + %n година%n години%n годин%n години + %n week(s) - %n тиждень%n тижня%n тижнів%n тижнів + %n тиждень%n тижні%n тижнів%n тижні %n month(s) - %n місяць%n місяця%n місяців%n місяців + %n місяць%n місяці%n місяців%n місяці %n year(s) - %n рік%n роки%n років%n років + %n рік%n роки%n років%n роки - - %n hour(s) - + + Failed to decrypt SSH key, ensure password is correct. + Не вдалося розшифрувати SSH-ключ, перевірте правильність пароля. EditEntryWidgetAdvanced Additional attributes - Додаткові ознаки + Додаткові атрибути Attribute selection - Вибір ознаки + Вибір атрибутів Attribute value - Значення ознаки + Значення атрибута Add a new attribute - Додати нову ознаку + Додати новий атрибут Add @@ -2579,23 +3041,23 @@ Would you like to correct it? Remove selected attribute - Видалити вибрану ознаку + Видалити вибраний атрибут Remove - Видалити + Вилучити Edit attribute name - Змінити назву ознаки + Редагувати назву атрибута Edit Name - Змінити назву + Перейменувати Toggle attribute protection - Перемкнути захист ознаки + Перемкнути захист атрибута Protect @@ -2603,7 +3065,7 @@ Would you like to correct it? Show a protected attribute - Показати захищену ознаку + Показати захищений атрибут Reveal @@ -2611,15 +3073,15 @@ Would you like to correct it? Attachments - Додатки + Вкладення If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - + Якщо позначено, запис не з'являтиметься у звітах перевірки здоров'я та HIBP, навіть якщо він не задовольняє вимог якості. Exclude from database reports - Виключити зі звітів по сховищам + Виключити зі звітів баз даних Foreground Color: @@ -2650,7 +3112,7 @@ Would you like to correct it? Use custom Auto-Type sequence: - Використовувати свою послідовність автозаповнення: + Використовувати власну послідовність автозаповнення: Custom Auto-Type sequence @@ -2658,23 +3120,33 @@ Would you like to correct it? Open Auto-Type help webpage - Відкрити сторінку довідки щодо автозаповнення + Відкрити вебсторінку довідки автозаповнення Window Associations - Прив'язки вікон + Асоціації вікон Existing window associations - Наявні прив'язки вікон + Наявні асоціації вікон Add new window association - Додати нову прив'язку вікна + Додати нову асоціацію вікна + + + + + Add item + + Remove selected window association - Видалити вибрану прив'язку вікна + Вилучити вибрану асоціацію вікна + + + - + Remove item + - Window title: @@ -2686,7 +3158,7 @@ Would you like to correct it? Set the window association title - Встановити заголовок для прив'язки вікна + Встановити асоціацію із заголовком вікна You can use an asterisk to match everything @@ -2694,83 +3166,73 @@ Would you like to correct it? Use a specific sequence for this association: - Використовувати певну послідовність для цієї прив'язки: + Використовувати певну послідовність для цієї асоціації: Custom Auto-Type sequence for this window Власна послідовність автозаповнення для цього вікна - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - Ці параметри впливають на поведінку запису в розширенні переглядача. - General Загальні Hide this entry from the browser extension - Сховати цей запис від розширення переглядача + Сховати цей запис від розширення браузера Skip Auto-Submit for this entry - Пропускати автоматичне надсилання для цього запису - - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - Надсилати цей параметр до переглядача лише в діалогах автентифікації HTTP. Якщо увімкнено, цей запис не буде показано для звичайних форм входу. + Не надсилати автоматично дані цього запису Use this entry only with HTTP Basic Auth Використовувати цей запис лише з HTTP Basic Auth - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - Не надсилати цей параметр до переглядача в діалогах автентифікації HTTP. Якщо ввімкнено, цей запис не буде показано для діалогів автентифікації HTTP. - Do not use this entry with HTTP Basic Auth Не використовувати цей запис для HTTP Basic Auth - - Additional URL's - Додаткові URL - Add Додати Remove - Видалити + Вилучити Edit - Змінити + Редагувати + + + These settings affect the entry's behaviour with the browser extension. + Ці налаштування впливають на поведінку запису в розширенні браузера. + + + Additional URLs + Додаткові URL-адреси + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Надсилайте цей запис браузеру лише для діалогів HTTP-аутентифікації. Якщо увімкнено, звичайні форми входу не показуватимуть цей запис для вибору. + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Не надсилайте цей параметр браузеру для діалогів HTTP-авторизації. Якщо увімкнено, діалоги HTTP-автентифікації не показуватимуть цей пункт для вибору. EditEntryWidgetHistory Entry history selection - Вибір журналу запису + Вибір історії запису Show entry at selected history state - Показати вибраний хронологічний стан запису + Показати запис на час вибраного стану історії Show @@ -2778,7 +3240,7 @@ Would you like to correct it? Restore entry to selected history state - Відновити запис з вибраного хронологічного стану + Відновити запис до стану вибраного часу історії Restore @@ -2786,7 +3248,7 @@ Would you like to correct it? Delete selected history state - Видалити вибраний хронологічний стан + Видалити вибраний запис історії Delete @@ -2794,11 +3256,11 @@ Would you like to correct it? Delete all history - Видалити весь журнал + Видалити всю історію Delete all - Видалити всі + Видалити все @@ -2811,45 +3273,25 @@ Would you like to correct it? Notes field Поле нотаток - - Toggle the checkbox to reveal the notes section. - Натисніть перемикач, щоб показати розділ нотаток. - Username field Поле імені користувача - - Toggle notes visible - Перемкнути видимість нотаток - - - Notes: - Примітки: - Expiration field - Поле знечинення + Поле терміну дії Expiration Presets - Типове налаштування знечинення + Налаштування терміну дії Expiration presets - Типове налаштування знечинення + Налаштування терміну дії Presets - Заготовки - - - Password: - Пароль: - - - URL: - URL: + Шаблони Url field @@ -2859,37 +3301,53 @@ Would you like to correct it? Download favicon for URL Завантажити фавікон для URL - - Title: - Заголовок: - Title field Поле заголовка - - Username: - Ім’я користувача: - Password field Поле пароля Toggle expiration - Перемкнути знечинення - - - Expires: - Знечинюється: - - - Tags: - + Перемкнути термін дії Tags list - + Список міток + + + &Username: + &Ім'я користувача: + + + &Title: + &Назва: + + + &Password: + &Пароль: + + + UR&L: + UR&L: + + + &Notes: + При&мітки: + + + Toggle notes visibility + Перемикання видимості приміток + + + T&ags: + Т&еги: + + + &Expires: + Термін &дії закінчується: @@ -2900,7 +3358,7 @@ Would you like to correct it? Remove key from agent when database is closed/locked - Видаляти ключ із в'язки посередника під час блокування або закриття сховища + Вилучати ключ з агента під час закриття/блокування бази даних Comment @@ -2908,7 +3366,7 @@ Would you like to correct it? Add key to agent when database is opened/unlocked - Надавати ключ посередникові під час відкриття або розблокування сховища + Додавати ключ до агента під час відкриття/розблокування бази даних Decrypt @@ -2920,7 +3378,7 @@ Would you like to correct it? Copy to clipboard - Скопіювати в кишеню + Копіювати в буфер обміну Public key @@ -2928,7 +3386,23 @@ Would you like to correct it? Private key - Таємний ключ + Приватний ключ + + + Attachment + Вкладення + + + External key file + Зовнішній ключовий файл + + + Add to agent + Додати до агента + + + Remove from agent + Вилучити з агента External file @@ -2936,32 +3410,20 @@ Would you like to correct it? Browser for key file - Переглядач файлових ключів + Переглядач ключових файлів Browse… Button for opening file dialog - + Огляд… - Attachment - Додаток - - - External key file - Зовнішній файловий ключ - - - Add to agent - Додати до в'язки посередника - - - Remove from agent - Видалити з в'язки посередника + Generate + Створити Select attachment file - Вибрати файл додатку + Вибрати файл вкладення Require user confirmation when this key is used @@ -2983,6 +3445,10 @@ Would you like to correct it? seconds секунд + + Clear agent + + EditGroupWidget @@ -2992,11 +3458,7 @@ Would you like to correct it? Icon - Значок - - - Browser Integration - Сполучення з переглядачем + Піктограма Properties @@ -3012,7 +3474,11 @@ Would you like to correct it? Group has unsaved changes - + У групі є незбережені зміни + + + Browser Integration + Інтеграція з браузером Enable @@ -3029,45 +3495,57 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - Змінити групу - These settings affect to the group's behaviour with the browser extension. - + Ці налаштування впливають на поведінку групи з розширенням браузера. Hide entries from browser extension: - + Сховати записи від розширення браузера: Hide entries from browser extension toggle for this and sub groups - + Перемикач прихованих записів від розширення браузера для цієї групи та підгруп Skip Auto-Submit for entries: - + Вимкнути автовідправлення для записів: Skip Auto-Submit toggle for this and sub groups - + Перемикач вимкнення автовідправлення для цієї групи та підгруп Use entries only with HTTP Basic Auth: - + Використовувати записи лише з HTTP Basic Auth: Only HTTP Auth toggle for this and sub groups - + Перемкнути використання лише HTTP Auth для цієї групи та підгруп Do not use entries with HTTP Basic Auth: - + Не використовувати записи з HTTP Basic Auth: Do not use HTTP Auth toggle for this and sub groups - + Перемкнути використання HTTP Auth для цієї групи та підгруп + + + Omit WWW subdomain from matching: + Ігнорувати WWW у збігах піддоменів: + + + Omit WWW subdomain from matching toggle for this and sub groups + Перемкнути ігнорування WWW у збігах піддоменів для цієї групи та підгруп + + + Restrict matching to given browser key: + Обмежити відповідність за даним ключем браузера: + + + Restrict matching to given browser key toggle for this and sub groups + Обмежити відповідність до вказаного ключа браузера для цієї групи та підгруп. @@ -3102,7 +3580,7 @@ Would you like to correct it? Browse… - + Огляд… Clear fields @@ -3136,32 +3614,32 @@ Supported extensions are: %1. %1 is already being exported by this database. - Сховище вже експортує %1. + %1 вже експортується цією базою даних. %1 is already being imported by this database. - Сховище вже імпортує %1. + %1 вже імпортується цією базою даних. %1 is being imported and exported by different groups in this database. - У цьому сховищі %1 експортують і імпортують різні групи. + %1 імпортується та експортується різними групами в цій базі даних. KeeShare is currently disabled. You can enable import/export in the application settings. KeeShare is a proper noun - KeeShare наразі вимкнено. Ви можете ввімкнути імпортування та експортування у параметрах застосунку. + KeeShare зараз вимкнено. Можна увімкнути імпорт/експорт у налаштуваннях програми. Database export is currently disabled by application settings. - Експортування сховища наразі вимкнено в параметрах застосунку. + Експортування бази даних зараз вимкнено в налаштуваннях програми. Database import is currently disabled by application settings. - Імпортування сховища наразі вимкнено в параметрах застосунку. + Імпортування бази даних зараз вимкнено в налаштуваннях програми. KeeShare container - + Контейнер KeeShare KeeShare signed container @@ -3188,11 +3666,11 @@ Supported extensions are: %1. Toggle expiration - Перемкнути знечинення + Перемкнути термін дії Expires: - Знечинюється: + Термін дії: Name field @@ -3200,7 +3678,7 @@ Supported extensions are: %1. Expiration field - Поле знечинення + Поле терміну дії Use default Auto-Type sequence of parent group @@ -3220,7 +3698,7 @@ Supported extensions are: %1. Notes: - Примітки: + Нотатки: Default auto-type sequence field @@ -3247,23 +3725,23 @@ Supported extensions are: %1. EditWidgetIcons Use default icon - Використовувати типовий значок + Використовувати типову піктограму Use custom icon - Використовувати свій значок + Використовувати власну піктограму Choose icon… - + Вибрати піктограму… Set the URL to use to search for a favicon - + Установити URL для пошуку фавіконів сайтів Favicon URL - + URL фавікону Download favicon for URL @@ -3275,11 +3753,11 @@ Supported extensions are: %1. Apply selected icon to subgroups and entries - Застосувати вибраній значок для дочерніх груп і записів + Застосувати вибрану піктограму для підгруп і записів Apply icon to… - + Застосувати піктограму для… Apply to this group only @@ -3287,27 +3765,23 @@ Supported extensions are: %1. Also apply to child groups - Також застосувати до дочерніх груп + Також застосувати до вкладених груп Also apply to child entries - Також застосувати до дочерніх записів + Також застосувати до вкладених записів Also apply to all children - Також застосувати до всіх дочерніх елементів + Також застосувати до всіх вкладених елементів Unable to fetch favicon. Неможливо дістати фавікон. - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - Ви можете ввімкнути службу значків DuckDuckGo в меню Інструменти -> Налаштування -> Безпека - Existing icon selected. - Вибрано наявний значок. + Вибрано наявну піктограму. Images @@ -3315,7 +3789,7 @@ Supported extensions are: %1. All files - Всі файли + Усі файли Select Image(s) @@ -3323,20 +3797,24 @@ Supported extensions are: %1. Successfully loaded %1 of %n icon(s) - Успішно завантажено %1 з %n значкаУспішно завантажено %1 з %n значківУспішно завантажено %1 з %n значківУспішно завантажено %1 з %n значків + Успішно завантажено %1 з %n піктограмиУспішно завантажено %1 з %n піктограмУспішно завантажено %1 з %n піктограмУспішно завантажено %1 з %n піктограм No icons were loaded - Жодного значка не завантажено + Жодної піктограми не завантажено %n icon(s) already exist in the database - %n значок вже існує у сховищі%n значки вже існують у сховищі%n значків вже існують у сховищі%n значків вже існують у сховищі + %n піктограма вже існує у базі даних%n піктограми вже існують у базі даних%n піктограм вже існують у базі даних%n піктограм вже існують у базі даних The following icon(s) failed: Такий значок зазнав невдачі:Такі значки зазнали невдачі:Такі значки зазнали невдачі:Такі значки зазнали невдачі: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + Ви можете увімкнути службу піктограм DuckDuckGo в меню Налаштування програми -> Безпека + EditWidgetProperties @@ -3413,11 +3891,44 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - Клон + + Passkey + Passkey + + + Invalid conversion type: %1 + Неприпустимий тип перетворення: %1 + + + Invalid conversion syntax: %1 + Неприпустимий синтаксис перетворення: %1 + + + Invalid regular expression syntax %1 +%2 + Неприпустимий синтаксис регулярного виразу %1 +%2 + EntryAttachments Cannot open file "%1" + Неможливо відкрити файл "%1" + + + + EntryAttachmentsDialog + + Form + Форма + + + File name + + + + File contents... @@ -3458,14 +3969,6 @@ This may cause the affected plugins to malfunction. Remove Видалити - - Rename selected attachment - Перейменувати вибраний додаток - - - Rename - Перейменувати - Open selected attachment Відкрити вибраний додаток @@ -3541,12 +4044,7 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment - - - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - + Підтвердити перезапис вкладення Confirm Attachment @@ -3558,26 +4056,46 @@ Your database may get very large and reduce performance. Are you sure to add this file? %1 є великим файлом (%2 MБ). -Ваше сховище може стати завеликим і швидкодія знизиться. +Ваша база даних може стати надто великою і працювати повільно. -Ви дійсно бажаєте додати цей файл? +Ви дійсно хочете додати цей файл? Attachment modified - + Вкладення змінено The attachment '%1' was modified. Do you want to save the changes to your database? - + Вкладення '%1' було змінено. +Ви хочете зберегти зміни в базі даних? Saving attachment failed - + Помилка збереження вкладення Saving updated attachment failed. Error: %1 + Не вдалося зберегти оновлене вкладення. +Помилка: %1 + + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + Вкладення "%1" вже існує. +Хочете перезаписати наявне вкладення? + + + New + + + + Preview + Попередній перегляд + + + Failed to preview an attachment: Attachment not found @@ -3592,7 +4110,7 @@ Error: %1 EntryHistoryModel Current (%1) - + Поточний (%1) Last modified @@ -3600,11 +4118,11 @@ Error: %1 Age - + Вік Difference - + Відмінності Size @@ -3616,7 +4134,7 @@ Error: %1 Username - Ім’я користувача + Ім'я користувача Password @@ -3624,35 +4142,35 @@ Error: %1 URL - URL + URL-адреса Notes - Примітки + Нотатки Custom Attributes - + Власні атрибути Icon - Значок + Піктограма Color - + Колір Expiration - Знечинюється + Термін дії TOTP - ТОП + TOTP Custom Data - + Користувацькі дані Attachments @@ -3664,7 +4182,7 @@ Error: %1 Tags - + Мітки @@ -3688,7 +4206,7 @@ Error: %1 Username - Ім’я користувача + Ім'я користувача Password @@ -3696,15 +4214,15 @@ Error: %1 URL - URL + URL-адреса Notes - Примітки + Нотатки Expires - Знечинюється + Термін дії Created @@ -3736,7 +4254,7 @@ Error: %1 Password Strength - + Надійність пароля Entry notes @@ -3772,14 +4290,22 @@ Error: %1 Has TOTP - Містить ТОП + Має TOTP + + + Background Color + Колір тла + + + Group Path + EntryPreviewWidget Display current TOTP value - Показати значення поточного ТОП + Показати поточне значення TOTP Close @@ -3794,28 +4320,28 @@ Error: %1 Пароль - Notes - Примітки + URL + URL-адреса Expiration - Знечинюється + Термін дії Tags - + Мітки Tags list - + Список міток Username - Ім’я користувача + Ім'я користувача - URL - URL + Notes + Нотатки Advanced @@ -3827,7 +4353,7 @@ Error: %1 Attributes - Ознаки + Атрибути Autotype @@ -3865,6 +4391,10 @@ Error: %1 Never Ніколи + + Double click to copy value + Клацніть двічі, щоб скопіювати значення + Enabled Увімкнено @@ -3873,6 +4403,10 @@ Error: %1 Disabled Вимкнено + + Double click to copy to clipboard + Двічі клацніть, щоб скопіювати в буфер обміну + EntryURLModel @@ -3880,6 +4414,10 @@ Error: %1 Invalid URL Непридатний URL + + Duplicate URL + Дублікат URL + EntryView @@ -3895,42 +4433,48 @@ Error: %1 Reset to defaults Повернути до типового налаштування + + + %1 entry(s)... + + %1 запис+ %1 записи(ів)...+ %1 записів...+ %1 записів... + ExportDialog Export options - + Параметри експорту Sort entries by... - + Сортувати записи за... You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! - + Ви збираєтеся експортувати базу даних у незашифрований файл. +Ця дія зробить ваші паролі та важливу інформацію вразливими! + database order - + порядок бази даних name (ascending) - + назва (за зростанням) name (descending) - + назва (за спаданням) unknown - + невідомо Export database to HTML file - Експортувати сховище до файлу HTML + Експортувати базу даних до файлу HTML HTML file @@ -3941,11 +4485,11 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::DBusMgr Failed to deliver message - + Не вдалося доставити повідомлення Failed to send reply on DBus - + Не вдалося надіслати відповідь на DBus Unknown @@ -3972,11 +4516,11 @@ This will leave your passwords and sensitive information vulnerable! Failed to register service on DBus at path '%1' - + Не вдалося зареєструвати сервіс на DBus у шляху '%1' Failed to register database on DBus under the name '%1' - Не вдалося зареєструвати сховище в службі DBus під назвою «%1» + Не вдалося зареєструвати базу даних у службі DBus із назвою "%1" Failed to register session on DBus at path '%1' @@ -3988,14 +4532,14 @@ This will leave your passwords and sensitive information vulnerable! Failed to register prompt object on DBus at path '%1' - + Не вдалося зареєструвати запит на DBus у шляху '%1' FdoSecrets::Item Entry "%1" from database "%2" was used by %3 - Програма %3 використала запис "%1" зі сховища "%2" + Запис "%1" із бази даних "%2" було використано в %3 @@ -4014,7 +4558,7 @@ This will leave your passwords and sensitive information vulnerable! Non-existing/inaccessible executable path. Please double-check the client is legit. - + Відсутній або недоступний шлях до виконуваного файлу. Переконайтеся, що ви користуєтеся оригінальним клієнтом. @@ -4032,7 +4576,7 @@ This will leave your passwords and sensitive information vulnerable! FdoSecrets::UnlockPrompt %1 (PID: %2) - + %1 (PID: %2) @@ -4074,8 +4618,8 @@ This will leave your passwords and sensitive information vulnerable! Having trouble downloading icons? You can enable the DuckDuckGo website icon service in the security section of the application settings. - Маєте проблеми з завантаженням значків? -Ви можете ввімкнути службу значків DuckDuckGo в налаштуванні застосунку в розділі безпеки. + Виникли проблеми із завантаженням піктограм? +Можна увімкнути службу піктограм DuckDuckGo для вебсайтів у розділі безпеки в налаштуваннях програми. Close @@ -4083,7 +4627,7 @@ You can enable the DuckDuckGo website icon service in the security section of th URL - URL + URL-адреса Status @@ -4091,11 +4635,11 @@ You can enable the DuckDuckGo website icon service in the security section of th Please wait, processing entry list… - + Будь ласка, зачекайте, обробка списку записів… Downloading… - + Завантаження… Ok @@ -4103,16 +4647,209 @@ You can enable the DuckDuckGo website icon service in the security section of th Already Exists - Вже існує + Уже існує Download Failed - Завантаження зазнало невдачі + Не вдалося завантажити Downloading favicons (%1/%2)… + Завантаження фавіконів (%1/%2)… + + + + ImportWizard + + Import Wizard + Майстер імпорту + + + + ImportWizardPageReview + + WizardPage + Сторінка майстера налаштування + + + Entry count: %1 + Кількість записів: %1 + + + Group + Група + + + Title + Заголовок + + + Username + Ім'я користувача + + + Password + Пароль + + + Url + URL-адреса + + + Could not load key file. + Не вдалося завантажити файл ключа. + + + Could not open remote database. Password or key file may be incorrect. + Не вдалося відкрити віддалену базу даних. пароль або ключовий файл можуть бути неправильними. + + + + ImportWizardPageSelect + + Form + Форма + + + Import File Selection + Вибір файла імпорту + + + Password: + Пароль: + + + Key File: + Ключовий файл: + + + Browse… + Огляд… + + + Import Into: + Імпортувати в : + + + New Database + Нова база даних + + + No unlocked databases available + Немає розблокованих баз даних + + + Existing Database: + Наявна база даних: + + + Import File: + Імпортувати файл: + + + Comma Separated Values (.csv) + Значення через кому (.csv) + + + 1Password Export (.1pux) + Експорт з 1Password (.1pux) + + + 1Password Vault (.opvault) + Сховище 1Password (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + База даних KeePass 1 (.kdb) + + + Open OPVault + Відкрити OPVault + + + Select import file + Виберіть файл для імпорту + + + All files + Усі файли + + + Key files + Ключові файли + + + Select key file + Виберіть ключовий файл + + + Comma Separated Values + Значення через кому + + + 1Password Export + Експорт з 1Password + + + Bitwarden JSON Export + Експорт з Bitwarden в JSON + + + 1Password Vault + Сховище 1Password + + + KeePass1 Database + База даних KeePass1 + + + Proton Pass (.json) + + Proton Pass JSON Export + + + + Temporary Database + Тимчасова база даних + + + Command: + Команда: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + наприклад: "sftp user@hostname" або "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + Введення: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + Наприклад: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} використовується як заповнювач для зберігання бази даних у тимчасовому місці +Команда має завершитися. У випадку з 'sftp' останньою командою має бути надіслано 'exit' + + + + Remote Database (.kdbx) + Віддалена база даних (.kdbx) + KMessageWidget @@ -4129,11 +4866,11 @@ You can enable the DuckDuckGo website icon service in the security section of th Kdbx3Reader Missing database headers - + Відсутні заголовки бази даних Unable to calculate database key - Неможливо обчислити ключ сховища + Неможливо обчислити ключ бази даних Unable to issue challenge-response: %1 @@ -4142,8 +4879,8 @@ You can enable the DuckDuckGo website icon service in the security section of th Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Надано непридатні реєстраційні дані. Спробуйте, будь ласка, ще раз. -Якщо це повторюватиметься, файл Вашого сховища може бути пошкодженим. + Надано недійсні облікові дані. Спробуйте знову. +Якщо це повторюватиметься, файл вашої бази даних може бути пошкодженим. Header doesn't match hash @@ -4155,11 +4892,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + Неприпустима довжина поля заголовка: поле %1 Invalid header data length: field %1, %2 expected, %3 found - + Недопустима довжина даних заголовка: поле %1, очікується %2, знайдено %3 @@ -4175,18 +4912,18 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key - Неможливо обчислити ключ сховища + Неможливо обчислити ключ бази даних Kdbx4Reader missing database headers - відсутні заголовки сховища + відсутні заголовки бази даних Unable to calculate database key: %1 - Неможливо обчислити ключ сховища: %1 + Неможливо обчислити ключ бази даних: %1 Invalid header checksum size @@ -4199,8 +4936,8 @@ If this reoccurs, then your database file may be corrupt. Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Надано непридатні реєстраційні дані. Спробуйте, будь ласка, ще раз. -Якщо це повторюватиметься, файл Вашого сховища може бути пошкодженим. + Надано недійсні облікові дані. Спробуйте знову. +Якщо це повторюватиметься, файл вашої бази даних може бути пошкодженим. (HMAC mismatch) @@ -4216,11 +4953,11 @@ If this reoccurs, then your database file may be corrupt. Invalid header field length: field %1 - + Неприпустима довжина поля заголовка: поле %1 Invalid header data length: field %1, %2 expected, %3 found - + Недопустима довжина даних заголовка: поле %1, очікується %2, знайдено %3 Failed to open buffer for KDF parameters in header @@ -4240,11 +4977,11 @@ If this reoccurs, then your database file may be corrupt. Invalid inner header field length: field %1 - + Неприпустима довжина внутрішнього поля заголовка: поле %1 Invalid inner header data length: field %1, %2 expected, %3 found - + Недопустима довжина даних внутрішнього заголовка: поле %1, очікується %2, знайдено %3 Invalid inner header binary size @@ -4324,7 +5061,7 @@ If this reoccurs, then your database file may be corrupt. Unable to calculate database key: %1 - Неможливо обчислити ключ сховища: %1 + Неможливо обчислити ключ бази даних: %1 Failed to serialize KDF parameters variant map @@ -4380,22 +5117,25 @@ If this reoccurs, then your database file may be corrupt. Failed to read database file. - Зчитування файлу сховища зазнало невдачі. + Не вдалося прочитати файл бази даних. The selected file is an old KeePass 1 database (.kdb). 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. Not a KeePass database. - Це не сховище KeePass. + Це не база даних KeePass. Unsupported KeePass 2 database version. - Непідтримувана версія сховища KeePass 2. + Непідтримувана версія бази даних KeePass 2. @@ -4418,7 +5158,7 @@ Line %2, column %3 Missing icon uuid or data - Бракує uuid або даних значка + Бракує uuid або даних піктограми Missing custom data key or value @@ -4434,15 +5174,15 @@ Line %2, column %3 Invalid group icon number - Непридатна кількість значків групи + Недійсна кількість піктограм групи Invalid EnableAutoType value - Непридатне значення параметру ввімкнення автозаповнення + Недійсне значення EnableAutoType Invalid EnableSearching value - Непридатне значення параметру ввімкнення пошуку + Недійсне значення EnableSearching No group uuid found @@ -4462,7 +5202,7 @@ Line %2, column %3 Invalid entry icon number - Непридатна кількість значків запису + Недійсна кількість піктограм запису History element in history entry @@ -4478,7 +5218,7 @@ Line %2, column %3 Duplicate custom attribute found - Знайдено дублікат Вашої власної ознаки + Знайдено дублікат користувацького атрибута Entry string key or value missing @@ -4494,15 +5234,15 @@ Line %2, column %3 Invalid bool value - Непридатне логічне значення + Недійсне логічне значення Invalid date time value - Непридатне часове значення + Недійсне значення дати й часу Invalid color value - Непридатне значення кольору + Недійсне значення кольору Invalid color rgb part @@ -4510,11 +5250,11 @@ Line %2, column %3 Invalid number value - Непридатне числове значення + Недійсне числове значення Invalid uuid value - Непридатне значення uuid + Недійсне значення uuid Unable to decompress binary @@ -4538,33 +5278,22 @@ Line %2, column %3 File too large to be a private key - Файл занадто великий для таємного ключа + Файл надто великий для приватного ключа Failed to open private key Відкриття таємного ключа зазнало невдачі - - KeePass1OpenWidget - - Import KeePass1 Database - Імпортувати сховище KeePass1 - - - Unable to open the database. - Неможливо відкрити сховище. - - KeePass1Reader Unable to read keyfile. - Неможливо прочитати файловий ключ. + Неможливо прочитати ключовий файл. Not a KeePass database. - Це не сховище KeePass. + Це не база даних KeePass. Unsupported encryption algorithm. @@ -4572,7 +5301,7 @@ Line %2, column %3 Unsupported KeePass database version. - Непідтримувана версія сховища KeePass. + Непідтримувана версія бази даних KeePass. Unable to read encryption IV @@ -4609,7 +5338,7 @@ Line %2, column %3 Unable to calculate database key - Неможливо обчислити ключ сховища + Неможливо обчислити ключ бази даних unable to seek to content position @@ -4618,8 +5347,8 @@ Line %2, column %3 Invalid credentials were provided, please try again. If this reoccurs, then your database file may be corrupt. - Надано непридатні реєстраційні дані. Спробуйте, будь ласка, ще раз. -Якщо це повторюватиметься, файл Вашого сховища може бути пошкодженим. + Надано недійсні облікові дані. Спробуйте знову. +Якщо це повторюватиметься, файл вашої бази даних може бути пошкодженим. Key transformation failed @@ -4659,7 +5388,7 @@ If this reoccurs, then your database file may be corrupt. Incorrect group icon field size - Хибний розмір поля значка групи + Хибний розмір поля піктограми групи Incorrect group level field size @@ -4687,7 +5416,7 @@ If this reoccurs, then your database file may be corrupt. Invalid entry UUID field size - + Неприпустимий розмір поля UUID запису Invalid entry group id field size @@ -4695,7 +5424,7 @@ If this reoccurs, then your database file may be corrupt. Invalid entry icon field size - Непридатний розмір поля для значка запису + Недійсний розмір поля піктограми запису Invalid entry creation time field size @@ -4703,7 +5432,7 @@ If this reoccurs, then your database file may be corrupt. Invalid entry modification time field size - Непридатний розмір значення у полі останньої зміни запису + Недійсний розмір значення у полі останньої зміни запису Invalid entry expiry time field size @@ -4784,7 +5513,7 @@ If this reoccurs, then your database file may be corrupt. KeyFileEditWidget Generate a new key file - Створити новий файловий ключ + Створити новий ключовий файл Generate @@ -4792,99 +5521,99 @@ If this reoccurs, then your database file may be corrupt. Generate a new key file or choose an existing one to protect your database. - + Згенеруйте новий ключовий файл, або виберіть наявний, щоб захистити базу даних. Note: Do NOT use a file that may change as that will prevent you from unlocking your database. - + Примітка: Не використовуйте файл, який може змінитися, тому що ви не зможете розблокувати свою базу даних. Browse for key file - Вибір файлового ключа + Вибір ключового файлу Browse… - + Огляд… Old key file format - Старий формат файлового ключа + Старий формат ключового файлу You selected a key file in an old format which KeePassXC<br>may stop supporting in the future.<br><br>Please consider generating a new key file instead. - Ви використовуєте застарілий формат файлового ключа, який KeePassXC<br> може припинити підтримувати у майбутньому.<br><br>Бажано створити новий файловий ключ. + Ви вибрали ключовий файл застарілого формату, який KeePassXC<br>може припинити підтримувати в майбутньому.<br><br>Будь ласка, створіть новий ключовий файл. Error loading the key file '%1' Message: %2 - Помилка завантаження файлового ключа '%1' + Помилка завантаження ключового файлу '%1' Повідомлення: %2 Key File - Файловий ключ + Ключовий файл Add Key File - + Додати ключовий файл Change Key File - + Змінити ключовий файл Remove Key File - + Вилучити ключовий файл Key File set, click to change or remove - + Ключовий файл встановлено. Натисніть для зміни чи вилучення <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>Його слід надійно зберігати, оскільки у випадку втрати ви не зможете отримати доступ до своєї бази даних.</p> Key files - Файлові ключі + Ключові файли All files - Всі файли + Усі файли Create Key File… - + Створити ключовий файл… Error creating key file - Помилка створення файлового ключа + Помилка створення ключового файлу Unable to create key file: %1 - Неможливо створити файловий ключ: %1 + Неможливо створити ключовий файл: %1 Select a key file - Обрати файловий ключ + Обрати ключовий файл Invalid Key File - Непридатний файловий ключ + Недійсний ключовий файл You cannot use the current database as its own keyfile. Please choose a different file or generate a new key file. - Ви не можете використати поточне сховище як файловий ключ. Будь ласка, виберіть інший файл або створіть новий файловий ключ. + Не можна використати поточну базу даних як ключовий файл. Виберіть інший файл або створіть новий ключовий файл. Suspicious Key File - Підозрілий файловий ключ + Підозрілий ключовий файл The chosen key file looks like a password database file. A key file must be a static file that never changes or you will lose access to your database forever. Are you sure you want to continue with this file? - Вибраний фаловий ключ схожий на файл сховища паролів. Файловий ключ мусить бути незмінним файлом, який ніколи не змінюють, інакше Ви назавжди втратите доступ до Вашого сховища. -Ви певні, що хочете продовжити з цим файлом? + Вибраний ключовий файл схожий на файл бази даних паролів. Ключовий файл має бути статичним файлом, який ніколи не змінюється, інакше ви назавжди втратите доступ до своєї бази паролів. +Ви певні, що хочете використати цей файл? @@ -4895,26 +5624,22 @@ Are you sure you want to continue with this file? Global shortcut already registered to %1 - Глобальне сполучення клавіш вже зареєстровано для %1 + Глобальну комбінацію клавіш уже зареєстровано для %1 Could not register global shortcut - Реєстрація глобального сполучення клавіш зазнало невдачі + Не вдалося зареєструвати глобальну комбінацію клавіш MainWindow &Database - &Сховище + &База даних &Recent Databases - Недавні сховища - - - &Import - Імпортувати + &Останні бази даних &Export @@ -4930,11 +5655,15 @@ Are you sure you want to continue with this file? Copy Att&ribute - Скопіювати ознаку + Копіювати атрибут TOTP - ТОП + TOTP + + + Tags + Мітки &Groups @@ -4966,48 +5695,32 @@ Are you sure you want to continue with this file? &Open Database… - Відкрити сховище... + &Відкрити базу даних… &Save Database - Зберегти сховище + &Зберегти базу даних &Close Database - Закрити сховище + За&крити базу даних &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 - Переглянути або змінити запис - &Delete Entry… Видалити запис... @@ -5016,10 +5729,6 @@ Are you sure you want to continue with this file? &New Group… Нова група... - - Add a new group - Додати нову групу - &Edit Group… Змінити групу... @@ -5030,7 +5739,7 @@ Are you sure you want to continue with this file? Download All &Favicons… - Завантажити всі фавікони... + Завантажити всі фавікони… Sort &A-Z @@ -5042,27 +5751,19 @@ Are you sure you want to continue with this file? Sa&ve Database As… - Зберегти сховище як... + З&берегти базу даних як… Database &Security… - Безпека сховища... + &Безпека бази даних… Database &Reports… - - - - Statistics, health check, etc. - Статистика, перевіряння непошкодності тощо + &Звіти бази даних… &Database Settings… - Налаштування сховища... - - - Database settings - Налаштування сховища + &Налаштування бази даних… &Clone Entry… @@ -5072,34 +5773,18 @@ Are you sure you want to continue with this file? Move u&p Перемістити вгору - - Move entry one step up - Посунути запис на один крок вище - Move do&wn Перемістити вниз - - Move entry one step down - Посунути запис на один крок нижче - Copy &Username Скопіювати ім'я користувача - - Copy username to clipboard - Скопіювати ім’я користувача до кишені - Copy &Password Скопіювати пароль - - Copy password to clipboard - Скопіювати пароль до кишені - &Settings Нала&штування @@ -5114,7 +5799,7 @@ Are you sure you want to continue with this file? Download &Favicon - Завантажити &Favicon + Завантажити &фавікон Open &URL @@ -5122,35 +5807,23 @@ Are you sure you want to continue with this file? &Lock Database - + Заблокувати &базу даних Lock &All Databases - + Заблокувати &усі бази даних &Title Заголовок - Copy title to clipboard - Скопіювати заголовок до кишені - - - &URL - &URL - - - Copy URL to clipboard - Скопіювати URL до кишені + Copy &URL + Скопіювати &URL-адресу &Notes - Нотатки - - - Copy notes to clipboard - Скопіювати примітки в кишеню + &Нотатки &CSV File… @@ -5162,31 +5835,19 @@ Are you sure you want to continue with this file? KeePass 1 Database… - Сховище KeePass 1… - - - Import a KeePass 1 database - Імпортувати сховище KeePass 1 + База даних KeePass 1… 1Password Vault… - Сховище 1Password... - - - Import a 1Password Vault - Імпортувати сховище 1Password + Сховище 1Password… CSV File… CSV-файл... - - Import a CSV file - Імпортувати файл CSV - Show TOTP - Показати ТОП + Показати TOTP Show QR Code @@ -5194,11 +5855,15 @@ Are you sure you want to continue with this file? Set up TOTP… - Встановити ТОП… + Встановити TOTP… Copy &TOTP - Скопіювати ТОП + Копіювати TOTP + + + Copy Password and TOTP + Копіювати пароль і TOTP E&mpty recycle bin @@ -5218,31 +5883,27 @@ Are you sure you want to continue with this file? Open Getting Started Guide - Відкрити вступний довідник + Відкрити посібник про початок роботи &Online Help &Довідка в мережі... - - Go to online documentation - Перейти до документації в мережі - &User Guide - Довідник &користувача + Посібник &користувача Open User Guide - Відкрити довідник користувача + Відкрити посібник користувача &Keyboard Shortcuts - &Сполучення клавіш + &Комбінації клавіш Save Database Backup… - + Резервна копія бази даних… Add key to SSH Agent @@ -5272,6 +5933,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) Класична (тема платформи) + + Show Menubar + Показати рядок меню + Show Toolbar Показувати панель инструментів @@ -5294,7 +5959,11 @@ Are you sure you want to continue with this file? Clone Group... - + Клонувати групу... + + + &XML File… + Файл &XML… Clear history @@ -5312,21 +5981,23 @@ Are you sure you want to continue with this file? 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. +Є високий ризик пошкодження даних, тому створіть резервну копію баз даних. +Ця версія призначена лише для тестування. NOTE: You are using a pre-release version of KeePassXC. Expect some bugs and minor issues, this version is meant for testing purposes. - + ПРИМІТКА: ви користуєтеся бета-версією KeePassXC. +Можна помітити помилки чи незначні проблеми. Ця версія призначена лише для тестування. - 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. - + No Tags + Без міток Restore Entry(s) - + Відновити записВідновити записиВідновити записиВідновити записи Settings @@ -5342,7 +6013,7 @@ We recommend you use the AppImage available on our downloads page. You can always check for updates manually from the application menu. - Ви завжди можете перевірити наявність оновлень з меню застосунку. + Ви завжди можете вручну перевірити наявність оновлень з меню програми. Toggle window @@ -5352,9 +6023,13 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC Вийти з KeePassXC + + %1 Entry(s) + %1 запис%1 записи%1 записів%1 записів + Please present or touch your YubiKey to continue… - + Надайте свій YubiKey або торкніться до нього для продовження… Restart Application? @@ -5364,28 +6039,336 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? Ви мусите перезапустити програму, щоб застосувати цей параметр. Бажаєте перезапустити зараз? + + Allow Screen Capture + Дозволити знімки екрана + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + Імпортувати 1PUX файл з 1Password + + + Import… + Імпорт… + + + Passkeys… + Passkeys… + + + Import Passkey + Імпорт Passkey + + + Remote S&ync… + Віддалена с&инхронізація... + + + Quit Application + Вийти з програми + + + Open About Dialog + Відкрити вікно "Про програму". + + + Open Database + Відкрити базу даних + + + Create Database + Створити базу даних + + + Merge From Database + Об'єднати з базою даних + + + Create Entry + Створити запис + + + Edit Entry + Редагувати запис + + + Delete Entry + Видалити запис + + + Create Group + Створити групу + + + Edit Group + Змінити групу + + + Delete Group + Видалити групу + + + Download All Favicons + Завантажити всі Favicon'и + + + Sort Groups A-Z + Сортувати групи від А до Я + + + Sort Groups Z-A + Сортувати групи від Я до А + + + Save Database As + Зберегти базу даних як + + + Show Database Security + Показати налаштування безпеки бази даних + + + Show Database Reports + Показати звіти бази даних + + + Show Database Settings + Показати налаштування бази даних + + + Show Passkeys + Показати ключі доступу + + + Clone Entry + Клонувати запис + + + Move Entry Up + Перемістити запис вгору + + + Move Entry Down + Перемістити запис вниз + + + Copy Username + Копіювати ім'я користувача + + + Copy Password + Копіювати пароль + + + Show Application Settings + Налаштування програми + + + Show Password Generator + Генератор паролів + + + Remove Passkey From Entry + Видалити пароль з запису + + + Perform Auto-Type: {USERNAME} + Виконати автозаповнення: {USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + Виконати автозаповнення: {USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + Виконати автозаповнення: {PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + Виконати автозаповнення: {PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + Виконати автозаповнення: {TOTP} + + + Copy Title + Копіювати заголовок + + + Copy URL + Скопіювати URL + + + Copy Notes + Копіювати нотатки + + + Export to CSV + Експорт в CSV + + + Export to HTML + Експорт в HTML + + + Import KeePass1 Database + Імпортувати базу даних KeePass1 + + + Import 1Password Vault + Імпортувати контейнер 1Password + + + Import CSV File + Імпортувати файл CSV + + + Show TOTP QR Code + Показати QR-код TOTP + + + Set up TOTP + Вказати ТОГ + + + Empty Recycle Bin + Спорожнити смітник + + + Open Donation Website + Відкрити веб-сайт для пожертвувань. + + + Open Bug Report + Відкритий звіт про помилку + + + Open Online Documentation + Відкрити онлайн документацію + + + Open Keyboard Shortcuts Guide + Відкрити посібник з клавіатурних скорочень + + + Save Database Backup + Зберегти резервну копію бази даних + + + SSH Agent: Add Key + SSH Агент: Додати ключ + + + SSH Agent: Remove Key + SSH Агент: Видалити ключ + + + Toggle Compact Mode + Переключити в компактний режим + + + Set Theme: Automatic + Встановити тему: Автоматично + + + Set Theme: Light + Встановити тему: Світла + + + Set Theme: Dark + Встановити тему: Темна + + + Set Theme: Classic + Встановити тему: Класична + + + Toggle Show Menubar + Перемикати показ рядка меню + + + Toggle Show Toolbar + Панель інструментів + + + Toggle Show Preview Panel + Показзувати панель попереднього перегляду + + + Toggle Always on Top + Завжди зверху + + + Toggle Hide Usernames + Приховувати імена користувачів + + + Toggle Hide Passwords + Приховувати паролі + + + Export to XML + Експорт в XML + + + Toggle Allow Screen Capture + Дозволити знімки екрану + + + Show Group Panel + Показати панель груп + + + Toggle Show Group Panel + Відображати панель груп + + + Setup Remote Sync… + Налаштувати віддалену синхронізацію... + + + Password Generator + Генератор паролів + + + E&xpire Entry… + + + + Clear SSH Agent + + + + Clear all identities in ssh-agent + + ManageDatabase Database settings - Налаштування сховища + Налаштування бази даних Edit database settings - Змінити параметри сховища + Редагувати налаштування бази даних Unlock database - Розблокувати сховище + Розблокувати базу даних Unlock database to show more information - Розблокуйте сховище, щоб показати додаткову інформацію + Розблокуйте базу даних, щоб показати додаткову інформацію Lock database - Заблокувати сховище + Заблокувати базу даних @@ -5396,15 +6379,15 @@ We recommend you use the AppImage available on our downloads page. Disconnect this application - Від'єднати цей застосунок + Від'єднати цю програму Reset - + Скинути Reset any remembered decisions for this application - + Скинути будь-які збережені рішення для цієї програми @@ -5421,26 +6404,6 @@ We recommend you use the AppImage available on our downloads page. 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] @@ -5463,7 +6426,7 @@ We recommend you use the AppImage available on our downloads page. Adding missing icon %1 - Додавання відсутнього значка %1 + Додавання відсутньої піктограми %1 Removed custom data %1 [%2] @@ -5478,7 +6441,7 @@ We recommend you use the AppImage available on our downloads page. NewDatabaseWizard Create a new KeePassXC database… - + Створити нову базу даних KeePassXC… Root @@ -5498,26 +6461,18 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Тут Ви можете налаштувати шифрування сховища. Не хвилюйтесь, Ви зможете зробити зміни пізніше в параметрах сховища. - - - Advanced Settings - Розширене налаштування - - - Simple Settings - Просте налаштування + Тут можна змінити параметри шифрування сховища. Не хвилюйтеся, ви зможете змінити ці параметри згодом у налаштуваннях бази даних. NewDatabaseWizardPageDatabaseKey Database Credentials - Облікові дані сховища + Облікові дані бази даних A set of credentials known only to you that protects your database. - Набір відомих лише Вам облікових даних, які захищають сховище. + Набір відомих лише вам облікових даних, які захищають базу даних. @@ -5528,18 +6483,37 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - Тут Ви можете налаштувати шифрування сховища. Не хвилюйтесь, Ви зможете зробити зміни пізніше в параметрах сховища. + Тут можна змінити параметри шифрування сховища. Не хвилюйтеся, ви зможете змінити ці параметри згодом у налаштуваннях бази даних. NewDatabaseWizardPageMetaData General Database Information - Загальна інформація про сховище + Загальна інформація про базу даних Please fill in the display name and an optional description for your new database: - Будь ласка, надайте назву для показу і, можливо, іншу необов'язкову інформацію щодо Вашого нового сховища: + Введіть назву та опис для своєї нової бази даних: + + + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + + + + Attachment with the same name already exists + + + + Save attachment + Зберегти вкладення + + + New entry attachment + @@ -5550,11 +6524,11 @@ We recommend you use the AppImage available on our downloads page. Global shortcut already registered to %1 - Глобальне сполучення клавіш вже зареєстровано для %1 + Глобальну комбінацію клавіш вже зареєстровано для %1 Could not register global shortcut - Реєстрація глобального сполучення клавіш зазнало невдачі + Не вдалося зареєструвати глобальну комбінацію клавіш @@ -5588,15 +6562,6 @@ We recommend you use the AppImage available on our downloads page. Очікувалось %1 байтів відкритого текстку, знайдено %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - Зчитування сховища не створило примірник -%1 - - OpVaultReader @@ -5628,7 +6593,7 @@ We recommend you use the AppImage available on our downloads page. OpenSSHKey Invalid key file, expecting an OpenSSH key - Непридатний файловий ключ. Ключ має бути у форматі OpenSSH + Неприпустимий ключовий файл. Ключ має бути у форматі OpenSSH PEM boundary mismatch @@ -5640,11 +6605,11 @@ We recommend you use the AppImage available on our downloads page. Key file way too small. - Файловий ключ надто маленький. + Ключовий файл має надто малий розмір. Key file magic header id invalid - Непридатний логічний код файлового ключа + Неприпустимий логічний код ключового файлу Found zero keys @@ -5656,7 +6621,7 @@ We recommend you use the AppImage available on our downloads page. Corrupted key file, reading private key failed - Файл ключа пошкоджений, зчитування таємного ключа зазнало невдачі + Ключовий файл пошкоджений. Не вдалося прочитати приватний ключ Unsupported key type: %1 @@ -5670,13 +6635,17 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 Невідомий шифр: %1 + + AES-256/GCM is currently not supported + AES-256/GCM наразі не підтримується + Passphrase is required to decrypt this key Для розшифрування цього ключа потрібен вираз пароля Key derivation failed: %1 - + Не вдалося сформувати ключ: %1 Cipher IV is too short for MD5 kdf @@ -5688,11 +6657,11 @@ We recommend you use the AppImage available on our downloads page. Failed to initialize cipher: %1 - + Не вдалося ініціалізувати шифр: %1 Decryption failed: %1 - + Не вдалося зашифрувати: %1 Decryption failed, wrong passphrase? @@ -5700,11 +6669,11 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF while reading key - + Неочікуваний кінець файлу під час читання ключа Unsupported key part - + Частина ключа не підтримується Unexpected EOF while reading public key @@ -5734,28 +6703,183 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key Несподіваний кінець файлу під час запису таємного ключа + + (encrypted) + (зашифровано) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - Паролі не співпадають + SSH Key Generator + Генератор ключів SSH - Passwords match so far - Паролі поки що співпадають + Type + Тип - Toggle Password (%1) - Перемкнути пароль (%1) + Bits + Біт - Generate Password (%1) - Створити пароль (%1) + Comment + Коментар + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - Експорт ключа доступу - Warning: Caps Lock enabled! - Увага: Caps Lock увімкнено! + Filenames will be generated with title and .passkey file extension. + Файли будуть створені з назвою та розширенням .passkey. + + + Export entries + Експорт записів + + + Export Selected + Експортувати вибране + + + Cancel + Скасувати + + + Export to folder + Експорт до папки + + + Export the following passkey entries. + Експортувати наступні записи паролів. + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: Експорт ключа доступу + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + Файл "%1.passkey" вже існує. +Хочете перезаписати його? + + + Cannot open file + Не вдається відкрити файл + + + Cannot open file "%1" for writing. + Не вдається відкрити файл "%1" для запису. + + + Cannot write to file + Не можу записати до файла + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - Імпорт ключа доступу + + + Username: %1 + Ім'я користувача: %1 + + + Group + Група + + + Database + Сховище + + + Import Passkey + Імпорт Passkey + + + Import + Імпортування + + + Cancel + Скасувати + + + Entry + Запис + + + Create new entry + Створити новий запис + + + Relying Party: %1 + Довірена сторона: %1 + + + Import the following passkey: + Імпортувати наступний пароль: + + + Import the following passkey to this entry: + Імпортувати наступний пароль до цього запису: + + + Default passkeys group (Imported Passkeys) + Група паролів за замовчуванням (Імпортовані паролі) + + + + PasskeyImporter + + Passkey file + Файл з ключем + + + All files + Усі файли + + + Cannot open file + Не вдається відкрити файл + + + Cannot open file "%1" for reading. + Не вдається відкрити файл "%1" для читання. + + + Open passkey file + Відкрити файл пароля + + + Cannot import passkey + Не вдалося імпортувати пароль + + + Cannot import passkey file "%1". Data is missing. + Не вдалося імпортувати файл пароля "%1". Дані відсутні. + + + Cannot import passkey file "%1". +The following data is missing: +%2 + Не вдалося імпортувати файл пароля "%1". +Відсутні такі дані: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + Не вдалося імпортувати файл пароля "%1". Відсутній або пошкоджений приватний ключ. @@ -5782,23 +6906,23 @@ We recommend you use the AppImage available on our downloads page. Add Password - + Додати пароль Change Password - + Змінити пароль Remove Password - + Вилучити пароль Password set, click to change or remove - + Пароль встановлено Клацніть, щоб змінити або вилучити. <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> - <p>Пароль є основним засобом для убезпечення Вашого сховища.</p><p>Найкращі паролі мають бути довгими та унікальними. KeePassXC може створити такий для Вас.</p> + <p>Пароль – це основний спосіб захисту вашої бази даних.</p><p>Надійний пароль повинен бути унікальним і мати достатню кількість символів. KeePassXC може згенерувати його для вас.</p> Passwords do not match. @@ -5809,7 +6933,7 @@ We recommend you use the AppImage available on our downloads page. PasswordGeneratorWidget Generate Password - Створити пароль + Генерувати пароль strength @@ -5830,7 +6954,7 @@ We recommend you use the AppImage available on our downloads page. Regenerate password - Створити пароль знову + Повторно генерувати пароль Copy password @@ -5936,10 +7060,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: Також вибирати з: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - Виключені знаки: "0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters Виключити неоднозначні символи @@ -5964,25 +7084,17 @@ We recommend you use the AppImage available on our downloads page. Word Count: Кількість слів: - - Character Count: - Кількість символів: - Word Case: Регістр слів: Delete selected wordlist - + Видалити вибраний список слів Add custom wordlist - - - - character - символ + Додати власний список слів Close @@ -5998,7 +7110,7 @@ We recommend you use the AppImage available on our downloads page. Regenerate password (%1) - Створити пароль знову (%1) + Повторно генерувати пароль (%1) lower case @@ -6014,57 +7126,12 @@ We recommend you use the AppImage available on our downloads page. (SYSTEM) - + (СИСТЕМА) Entropy: %1 bit Ентропія: %1 біт - - Confirm Delete Wordlist - - - - Do you really want to delete the wordlist "%1"? - - - - Failed to delete wordlist - - - - Wordlists - - - - All files - Всі файли - - - Select Custom Wordlist - - - - Overwrite Wordlist? - - - - Wordlist "%1" already exists as a custom wordlist. -Do you want to overwrite it? - - - - Failed to add wordlist - - - - Logograms - Логограми - - - Special Characters - Спеціальні символи - Password Quality: %1 Якість пароля: %1 @@ -6089,19 +7156,147 @@ Do you want to overwrite it? Password quality Відмінна + + Confirm Delete Wordlist + Підтвердити видалення списку слів + + + Do you really want to delete the wordlist "%1"? + Ви дійсно хочете видалити список слів "%1"? + + + Failed to delete wordlist + Не вдалося видалити список слів + + + Wordlists + Списки слів + + + All files + Всі файли + + + Select Custom Wordlist + Вибрати власний список слів + + + Overwrite Wordlist? + Перезаписати список слів? + + + Wordlist "%1" already exists as a custom wordlist. +Do you want to overwrite it? + Список слів "%1" вже наявний як власний список. +Хочете його перезаписати? + + + Failed to add wordlist + Не вдалося додати список слів + + + Logograms + Логограми + + + Special Characters + Спеціальні символи + + + passwordLength + Довжина пароля + + + Characters: %1 + Символи: %1 + + + MIXED case + Змішаний варіант + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + Виключити символи: "0", "1", "l", "I", "O", "|", ".", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + Паролі відрізняються + + + Passwords match so far + Наразі паролі збігаються + + + Toggle Password (%1) + Перемкнути пароль (%1) + + + Generate Password (%1) + Генерувати пароль (%1) + + + Warning: Caps Lock enabled! + Увага: Caps Lock увімкнено! + + + Quality: %1 + Якість: %1 + + + Poor + Password quality + Погана + + + Weak + Password quality + Низька + + + Good + Password quality + Добра + + + Excellent + Password quality + Відмінна + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + Видимість пароля – Control + H. Відкрити генератор паролів – Control + G. + PickcharsDialog KeePassXC - Pick Characters - + KeePassXC – вибір символів Select characters to type, navigate with arrow keys, Ctrl + S submits. - + Оберіть символи для введення. Навігація клавішами стрілок. Ctrl + S для збереження. Press &Tab between characters + Натискайте &Tab між символами + + + + PreviewEntryAttachmentsDialog + + Preview entry attachment + + + + No preview available + + + + Image format not supported @@ -6143,16 +7338,20 @@ Do you want to overwrite it? Continue Продовжити + + Continue with weak password + Продовжити зі слабким паролем + QObject Database not opened - Сховище не відкрите + Базу даних не відкрито Database hash not available - Контрольна сума сховища недоступна + Контрольна сума бази даних недоступна Client public key not received @@ -6204,7 +7403,7 @@ Do you want to overwrite it? No valid UUID provided - + Не вказано дійсного UUID Unknown error @@ -6212,7 +7411,7 @@ Do you want to overwrite it? Browser Integration - Сполучення з переглядачем + Інтеграція з браузером Browser Plugin Failure @@ -6236,7 +7435,7 @@ Do you want to overwrite it? URL - URL + URL-адреса Notes for the entry. @@ -6244,7 +7443,7 @@ Do you want to overwrite it? Notes - Примітки + Нотатки Prompt for the entry's password. @@ -6252,11 +7451,11 @@ Do you want to overwrite it? Generate a password for the entry. - Створити пароль для запису. + Генерувати пароль для запису. Add a new entry to a database. - Додати новий запис до сховища. + Додати новий запис до бази даних. Path of the entry to add. @@ -6264,7 +7463,7 @@ Do you want to overwrite it? Cannot generate a password and prompt at the same time. - + Неможливо генерувати пароль і запит одночасно. Could not create entry with path %1. @@ -6276,7 +7475,7 @@ Do you want to overwrite it? Writing the database failed %1. - Записати сховище не вдалося %1. + Не вдалося записати в базу даних %1. Successfully added entry %1. @@ -6284,7 +7483,7 @@ Do you want to overwrite it? Adds a new group to a database. - Додає нову групу для сховища. + Додає нову групу до бази даних. Path of the group to add. @@ -6328,7 +7527,7 @@ Do you want to overwrite it? Evaluating database entries using okon… - + Оцінка записів бази даних за допомогою okon… Failed to open HIBP file %1: %2 @@ -6336,7 +7535,7 @@ Do you want to overwrite it? Evaluating database entries against HIBP file, this will take a while… - + Оцінка записів бази даних на основі файлу HIBP. Це триватиме довше… Password for '%1' has been leaked %2 time(s)! @@ -6348,19 +7547,19 @@ Do you want to overwrite it? Export an attachment of an entry. - + Експортувати вкладення запису. Path of the entry with the target attachment. - + Шлях запису з цільовим вкладенням. Name of the attachment to be exported. - + Назва вкладення для експортування. Path to which the attachment should be exported. - + Шлях, за яким потрібно експортувати вкладення. Could not find entry with path %1. @@ -6368,80 +7567,80 @@ Do you want to overwrite it? Could not find attachment with name %1. - + Не вдалося знайти вкладення з назвою %1. No export target given. Please use '--stdout' or specify an 'export-file'. - + Не зазначено цільовий шлях експорту. Скористайтеся '--stdout' або вкажіть 'export-file'. Could not open output file %1. - + Не вдалося відкрити вихідний файл %1. Successfully exported attachment %1 of entry %2 to %3. - + Вкладення %1 запису %2 успішно імпортовано до %3. Overwrite existing attachments. - + Перезаписати наявні вкладення. Imports an attachment to an entry. - + Імпортує вкладення до запису. Path of the entry. - + Шлях до запису. Name of the attachment to be added. - + Назва вкладення для додавання. Path of the attachment to be imported. - + Шлях до вкладення для імпортування. Attachment %1 already exists for entry %2. - + Вкладення %1 вже наявне у записі %2. Could not open attachment file %1. - + Не вдається відкрити файл вкладення %1. Successfully imported attachment %1 as %2 to entry %3. - + Вкладення %1 успішно імпортовано як %2 до запису %3. Remove an attachment of an entry. - + Вилучити вкладення запису. Name of the attachment to be removed. - + Назва вкладення для вилучення. Successfully removed attachment %1 from entry %2. - + Вкладення %1 успішно вилучено із запису %2. Copy the given attribute to the clipboard. Defaults to "password" if not specified. Don't translate "password", it refers to the attribute. - Скопіювати надану ознаку в кишеню. Якщо не вказано, типовим значенням буде «password» + Копіювати заданий атрибут до буфера обміну. Якщо не вказано, типовим значенням буде "password". Copy the current TOTP to the clipboard (equivalent to "-a totp"). - Скопіювати поточний ТОП до кишені (відповідає «-a top»). + Копіювати поточний код TOTP у буфер обміну (відповідає "-a totp"). Must match only one entry, otherwise a list of possible matches is shown. - + Має відповідати лише одному запису, в іншому випадку показується список можливих збігів. Copy an entry's attribute to the clipboard. - Скопіювати ознаку запису в кишеню. + Копіювати атрибут запису в буфер обміну. Path of the entry to clip. @@ -6450,7 +7649,7 @@ Do you want to overwrite it? Timeout before clearing the clipboard (default is %1 seconds, set to 0 for unlimited). - + Час очікування до очищення буфера обміну. (Типово %1 секунд. Щоб прибрати обмеження, встановіть 0.) Invalid timeout value %1. @@ -6462,7 +7661,7 @@ Do you want to overwrite it? Using matching entry: %1 - + Використання відповідного запису: %1 Entry %1 not found. @@ -6470,35 +7669,35 @@ Do you want to overwrite it? ERROR: Please specify one of --attribute or --totp, not both. - ПОМИЛКА: вкажіть, будь ласка, або --attribute, або --totp, а не обидва разом. + ПОМИЛКА: вкажіть, або --attribute, або --totp, а не обидва разом. Entry with path %1 has no TOTP set up. - Запис із шляхом %1 не має налаштованого ТОП. + Запис зі шляхом %1 не має налаштованого TOTP. ERROR: attribute %1 is ambiguous, it matches %2. - ПОМИЛКА: ознака %1 неоднозначна, вона збігається з %2. + ПОМИЛКА: атрибут %1 неоднозначний, він збігається з %2. Attribute "%1" not found. - Ознаку "%1" не знайдено. + Атрибут "%1" не знайдено. Entry's "%1" attribute copied to the clipboard! - Ознаку запису "%1" скопійовано до кишені! + Атрибут запису "%1" скопійовано в буфер обміну! Clearing the clipboard in %1 second(s)... - Очищення кишені через %1 секунду...Очищення кишені через %1 секунди...Очищення кишені через %1 секунд...Очищення кишені через %1 секунд... + Буфер обміну очиститься через %1 секунду...Буфер обміну очиститься через %1 секунди...Буфер обміну очиститься через %1 секунд...Буфер обміну очиститься через %1 секунди... Clipboard cleared! - Кишеню очищено! + Буфер обміну очищено! Close the currently opened database. - Закрити наразі відкрите сховище. + Закрити наразі відкриту базу даних. Display this help. @@ -6510,7 +7709,7 @@ Do you want to overwrite it? Key file of the database. - Файловий ключ для сховища. + Ключовий файл бази даних. path @@ -6518,11 +7717,11 @@ Do you want to overwrite it? Deactivate password key for the database. - Вимкнути парольний ключ для сховища. + Вимкнути парольний ключ для бази даних. Yubikey slot and optional serial used to access the database (e.g., 1:7370001). - Гніздо Yubikey й необов'язковий серійний номер для доступу до сховища (наприклад 1:7370001). + Роз'єм Yubikey та необов'язковий серійний номер для доступу до бази даних (наприклад 1:7370001). slot[:serial] @@ -6530,15 +7729,19 @@ Do you want to overwrite it? Missing positional argument(s). - + Відсутні позиційні аргументи. Too many arguments provided. - + Надано забагато аргументів. + + + Path of the database. + Шлях до бази даних. Target decryption time in MS for the database. - Цільовий час для розшифрування сховища у мс. + Цільовий час для розшифрування бази даних у мс. time @@ -6546,19 +7749,15 @@ Do you want to overwrite it? Set the key file for the database. - Вкажіть файловий ключ для сховища. + Встановити ключовий файл для бази даних. Set a password for the database. - Вкажіть пароль для сховища. + Встановити пароль для бази даних. Create a new database. - Створити нове сховище. - - - Path of the database. - Шлях до сховища. + Створити нову базу даних. Invalid decryption time %1. @@ -6570,15 +7769,15 @@ Do you want to overwrite it? Failed to set database password. - Не вдалося встановити пароль для сховища. + Не вдалося встановити пароль для бази даних. Loading the key file failed - Завантаження ключа зазнало невдачі + Не вдалося завантажити ключовий файл No key is set. Aborting database creation. - Ключ не встановлено. Створення сховища скасовано. + Ключ не встановлено. Переривання створення бази даних. Benchmarking key derivation function for %1ms delay. @@ -6598,11 +7797,163 @@ Do you want to overwrite it? Failed to save the database: %1. - Зберегти сховище не вдалося %1. + Не вдалося зберегти базу даних: %1. Successfully created new database. - Нове сховище успішно створено. + Нову базу даних успішно створено. + + + Unset the password for the database. + Вилучити пароль для бази даних. + + + Unset the key file for the database. + Вилучити ключовий файл для бази даних. + + + Edit a database. + Редагувати базу даних. + + + Cannot use %1 and %2 at the same time. + Неможливо використовувати %1 і %2 одночасно. + + + Could not change the database key. + Не вдалося змінити ключ бази даних. + + + Database was not modified. + База даних не була змінена. + + + Writing the database failed: %1 + Не вдалося записати в базу даних: %1 + + + Successfully edited the database. + База даних успішно редагована. + + + Cannot remove password: The database does not have a password. + Неможливо вилучити пароль: база даних не має пароля. + + + Cannot remove file key: The database does not have a file key. + Не вдалося вилучити ключовий файл: база даних не має ключового файлу. + + + Loading the new key file failed: %1 + Не вдалося завантажити новий ключовий файл: %1 + + + Found unexpected Key type %1 + Знайдено неочікуваний тип ключа %1 + + + Cannot remove all the keys from a database. + Неможливо вилучити всі ключі з бази даних. + + + Show a database's information. + Показати інформацію про базу даних. + + + UUID: + UUID: + + + Name: + Назва: + + + Description: + Опис: + + + Cipher: + Шифр: + + + KDF: + KDF: + + + Recycle bin is enabled. + Смітник увімкнено. + + + Recycle bin is not enabled. + Смітник вимкнено. + + + Location + Розташування + + + Database created + Базу даних створено + + + Last saved + Останнє збереження + + + Unsaved changes + Незбережені зміни + + + yes + так + + + no + ні + + + Number of groups + Кількість груп + + + Number of entries + Кількість записів + + + Number of expired entries + Кількість протермінованих записів + + + Unique passwords + Унікальні паролі + + + Non-unique passwords + Повторювані паролі + + + Maximum password reuse + Найбільша кількість повторень пароля + + + Number of short passwords + Кількість коротких паролів + + + Number of weak passwords + Кількість слабких паролів + + + Entries excluded from reports + Записи, виключені зі звітів + + + Average password length + Середня довжина пароля + + + %1 characters + %1 символів Word count for the diceware passphrase. @@ -6627,10 +7978,6 @@ Do you want to overwrite it? Invalid word count %1 Непридатна кількість слів %1 - - The word list is too small (< 1000 items) - Список слів надто малий (< 1000 одиниць) - Title for the entry. Заголовок запису. @@ -6655,10 +8002,6 @@ Do you want to overwrite it? Enter new password for entry: Введіть новий пароль для запису: - - Writing the database failed: %1 - Записати сховище не вдалося: %1 - Successfully edited entry %1. Успішно змінено запис %1. @@ -6693,79 +8036,79 @@ Do you want to overwrite it? Type: Bruteforce - Тип: Метод грубої сили + Тип: метод грубої сили Type: Dictionary - Тип: Словник + Тип: словник Type: Dict+Leet - Тип: Словник+Leet + Тип: словник + Leet Type: User Words - Тип: Користувацькі слова + Тип: користувацькі слова Type: User+Leet - Тип: Користувач+Leet + Тип: користувач + Leet Type: Repeated - Тип: Повторювання + Тип: повторювання Type: Sequence - Тип: Послідовність + Тип: послідовність Type: Spatial - Тип: Просторовий + Тип: просторовий Type: Date - Тип: Дата + Тип: дата Type: Bruteforce(Rep) - Тип: Метод грубої сили (повт.) + Тип: метод грубої сили (повт.) Type: Dictionary(Rep) - Тип: Словник (повт.) + Тип: словник (повт.) Type: Dict+Leet(Rep) - Тип: Словник+Leet (повт.) + Тип: словник + Leet (повт.) Type: User Words(Rep) - Тип: Користувацькі слова (повт.) + Тип: користувацькі слова (повт.) Type: User+Leet(Rep) - Тип: Користувач+Leet (повт.) + Тип: користувач + Leet (повт.) Type: Repeated(Rep) - Тип: Повторювання (повт.) + Тип: повторювання (повт.) Type: Sequence(Rep) - Тип: Послідовність (повт.) + Тип: послідовність (повт.) Type: Spatial(Rep) - Тип: Просторовий (повт.) + Тип: просторовий (повт.) Type: Date(Rep) - Тип: Дата (повт.) + Тип: дата (повт.) Type: Unknown (%1) - + Тип: невідомий (%1) Entropy %1 (%2) @@ -6779,17 +8122,13 @@ Do you want to overwrite it? Exit interactive mode. Вийти з діалогового режиму. - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - Формат для експортування. Можливі формати: xml або csv. Типовий формат – xml. - Exports the content of a database to standard output in the specified format. - Надсилає вміст сховища до стандартного виходу в зазначеному форматі. + Експортує вміст бази даних до стандартного виводу в зазначеному форматі. Unable to export database to XML: %1 - Неможливо експортувати сховище в XML: %1 + Неможливо експортувати базу даних в XML: %1 Unsupported format %1 @@ -6833,7 +8172,7 @@ Do you want to overwrite it? Use custom character set - + Використовувати власний набір символів Exclude similar looking characters @@ -6845,7 +8184,7 @@ Do you want to overwrite it? Generate a new random password. - Створити новий випадковий пароль. + Генерувати новий випадковий пароль. Invalid password length %1 @@ -6865,123 +8204,23 @@ Do you want to overwrite it? Import the contents of an XML database. - Імпортувати вміст сховища XML. + Імпортувати вміст бази даних із файлу XML. Path of the XML database export. - Шлях для експортування сховища XML. + Шлях до файлу XML експортованої бази даних. Path of the new database. - Шлях до нового сховища. + Шлях до нової бази даних. Unable to import XML database: %1 - Неможливо імпортувати сховище XML: %1 + Неможливо імпортувати базу даних XML: %1 Successfully imported database. - Сховище вдало імпортовано. - - - Show a database's information. - Показати інформацію про сховище. - - - UUID: - UUID: - - - Name: - Назва: - - - Description: - Опис: - - - Cipher: - Шифр: - - - KDF: - KDF: - - - Recycle bin is enabled. - Смітник увімкнено. - - - Recycle bin is not enabled. - Смітник вимкнено. - - - Location - Розташування - - - Database created - - - - Last saved - Останнє збереження - - - Unsaved changes - Незбережені зміни - - - yes - так - - - no - ні - - - Number of groups - Кількість груп - - - Number of entries - Кількість записів - - - Number of expired entries - Кількість знечинених записів - - - Unique passwords - Унікальні паролі - - - Non-unique passwords - Повторювані паролі - - - Maximum password reuse - Найбільша кількість повторень пароля - - - Number of short passwords - Кількість коротких паролів - - - Number of weak passwords - Кількість слабких паролів - - - Entries excluded from reports - Записи, виключені зі звітів - - - Average password length - Середня довжина пароля - - - %1 characters - %1 символів + Базу даних успішно імпортовано. Unknown command %1 @@ -7003,7 +8242,7 @@ Available commands: Displays debugging information. - Показаує інформацію щодо зневадження. + Показує інформацію щодо налагодження. Invalid command %1. @@ -7019,7 +8258,7 @@ Available commands: List database entries. - Показати перелік сховищ. + Список записів бази даних. Path of the group to list. Default is / @@ -7031,15 +8270,15 @@ Available commands: Use the same credentials for both database files. - Використовувати однакові реєстраційні дані для обох сховищ. + Використовувати однакові облікові дані для обох файлів бази даних. Key file of the database to merge from. - Файловий ключ для сховища, яке підлягає об'єднанню. + Ключовий файл об'єднуваної бази даних. Deactivate password key for the database to merge from. - Вимкнути парольний ключ для сховища, яке підлягає об'єднанню. + Вимкніть парольний ключ для бази даних, з якою потрібно об'єднати. Only print the changes detected by the merge operation. @@ -7047,7 +8286,7 @@ Available commands: Yubikey slot for the second database. - Гніздо Yubikey для другого сховища. + Роз'єм Yubikey для другої бази даних. slot @@ -7055,11 +8294,11 @@ Available commands: Merge two databases. - Об'єднати два сховища. + Об'єднати дві бази даних. Path of the database to merge from. - Шлях до сховища, яке підлягає об'єднанню. + Шлях до бази даних, з якою потрібно об'єднати. Error reading merge file: @@ -7069,7 +8308,7 @@ Available commands: Unable to save database to file : %1 - Неможливо зберегти сховище до файлу : %1 + Неможливо зберегти файл бази даних : %1 Successfully merged %1 into %2. @@ -7077,7 +8316,7 @@ Available commands: Database was not modified by merge operation. - Об'єднання не змінило сховище. + Після об'єднання база даних не змінилася. Moves an entry to a new group. @@ -7105,7 +8344,7 @@ Available commands: Open a database. - Відкрити сховище. + Відкрити базу даних. Path of the entry to remove. @@ -7113,7 +8352,7 @@ Available commands: Unable to save database to file: %1 - Неможливо зберегти сховище до файлу: %1 + Неможливо зберегти файл бази даних: %1 Successfully recycled entry %1. @@ -7129,7 +8368,7 @@ Available commands: Cannot remove root group from database. - Неможливо видалити кореневу групу зі сховища. + Неможливо видалити кореневу групу з бази даних. Successfully recycled group %1. @@ -7149,23 +8388,27 @@ Available commands: Show the entry's current TOTP. - Показати поточний ТОП запису. + Показати поточний TOTP запису. Show the protected attributes in clear text. - Показувати захищені ознаки незахищеним текстом. + Показувати захищені атрибути звичайним текстом. + + + Show all the attributes of the entry. + Показати всі атрибути запису. Show the attachments of the entry. - + Показати вкладення запису. 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 - ознака + атрибут Show an entry's information. @@ -7177,27 +8420,27 @@ Available commands: ERROR: unknown attribute %1. - ПОМИЛКА: невідома ознака %1. + ПОМИЛКА: невідомий атрибут %1. No attachments present. - + Не знайдено жодного вкладення. Attachments: - + Вкладення: Failed to open database file %1: not found - Не вдалося відкрити файл сховища %1: файл не знайдено + Не вдалося відкрити файл бази даних %1: не знайдено Failed to open database file %1: not a plain file - Не вдалося відкрити файл сховища %1: не звичайний файл + Не вдалося відкрити файл бази даних %1: не звичайний файл Failed to open database file %1: not readable - Не вдалося відкрити файл сховища %1: недоступний для читання + Не вдалося відкрити файл бази даних %1: неможливо прочитати Enter password to unlock %1: @@ -7205,17 +8448,17 @@ Available commands: Failed to load key file %1: %2 - Завантаження файлу ключа зазнало невдачі %1: %2 + Не вдалося завантажити ключовий файл %1: %2 WARNING: You are using an old key file format which KeePassXC may stop supporting in the future. Please consider generating a new key file. - Попередження: Ви використовуєте застарілий формат файлового ключа, який KeePassXC може -припинити підтримувати у майбутньому. + ПОПЕРЕДЖЕННЯ: ви використовуєте застарілий формат ключового файлу, який KeePassXC може +припинити підтримувати в майбутньому. -Бажано створити новий файловий ключ. +Будь ласка, створіть новий ключовий файл. Invalid YubiKey slot %1 @@ -7225,13 +8468,17 @@ Please consider generating a new key file. Invalid YubiKey serial %1 Непридатний серійний номер YubiKey %1 + + Please present or touch your YubiKey to continue. + Надайте свій YubiKey або торкніться його для продовження. + Enter password to encrypt database (optional): - Введіть пароль для шифрування сховища (необов'язково): + Введіть пароль для шифрування бази даних (необов'язково): Do you want to create a database with an empty password? [y/N]: - Ви дійсно бажаєте створити сховище з порожнім паролем? [y - так / N - ні]: + Ви дійсно хочете створити базу даних із порожнім паролем? Y (так) / N (ні): Repeat password: @@ -7239,11 +8486,11 @@ Please consider generating a new key file. Error: Passwords do not match. - Помилка: паролі не збігаються. + Помилка: паролі відрізняються. No program defined for clipboard manipulation - Програму для роботи з кишенею не визначено + Програму для роботи з буфером обміну не визначено All clipping programs failed. Tried %1 @@ -7253,11 +8500,11 @@ Please consider generating a new key file. Creating KeyFile %1 failed: %2 - Створення файлового ключа %1 зазнало невдачі: %2 + Створення ключового файлу %1 зазнало невдачі: %2 Loading KeyFile %1 failed: %2 - Завантаження файлового ключа %1 зазнало невдачі: %2 + Завантаження ключового файлу %1 зазнало невдачі: %2 HIBP file, line %1: parse error @@ -7265,7 +8512,7 @@ Please consider generating a new key file. To use okon, you must provide a post-processed file (e.g. file.okon) - + Для використання okon потрібно надати оброблений файл (наприклад, file.okon) Could not start okon process: %1 @@ -7277,7 +8524,7 @@ Please consider generating a new key file. Failed to load okon processed database: %1 - Завантаження сховища після оброблення програмою okon зазнало невдачі: %1 + Не вдалося завантажити базу даних, оброблену okon: %1 Very weak password @@ -7297,7 +8544,7 @@ Please consider generating a new key file. Password is used %1 time(s) - + Пароль використано %1 разПароль використано %1 разиПароль використано %1 разівПароль використано %1 разів Password has expired @@ -7317,7 +8564,7 @@ Please consider generating a new key file. Password expires in %1 day(s) - + Термін дії пароля завершується через %1 деньТермін дії пароля завершується через %1 дніТермін дії пароля завершується через %1 днівТермін дії пароля завершується через %1 днів Password will expire soon @@ -7341,11 +8588,11 @@ Please consider generating a new key file. Debugging mode is disabled. - Режим зневадження вимкнено. + Режим налагодження вимкнено. Debugging mode is enabled. - Режим зневадження ввімкнено. + Режим налагодження ввімкнено. Operating system: %1 @@ -7373,7 +8620,7 @@ Kernel: %3 %4 Quick Unlock - + Швидке розблокування Secret Service Integration @@ -7389,31 +8636,31 @@ Kernel: %3 %4 over %1 year(s) - + через %1 рікчерез %1 рокичерез %1 роківчерез %1 роки about %1 month(s) - + близько %1 місяцяблизько %1 місяцівблизько %1 місяцівблизько %1 місяців %1 week(s) - + %1 тиждень%1 тижні%1 тижнів%1 тижні %1 day(s) - + %1 день%1 дні%1 днів%1 днів %1 hour(s) - + %1 година%1 години%1 годин%1 годин %1 minute(s) - + %1 хвилина%1 хвилини%1 хвилин%1 хвилин - Botan library must be at least 2.11.x, found %1.%2.%3 - + Botan library must be at least %1, found %2.%3.%4 + Версія бібліотеки Botan повинна бути не нижчою за %1, знайдена %2.%3.%4 Cryptographic libraries: @@ -7429,27 +8676,27 @@ Kernel: %3 %4 SymmetricCipher::init: Invalid cipher mode. - + SymmetricCipher::init: неприпустимий режим шифру. SymmetricCipher::init: Invalid IV size of %1 for %2. - + SymmetricCipher::init: неприпустимий розмір IV %1 для %2. Cipher not initialized prior to use. - + Шифр не ініціалізований перед використанням. Cannot process 0 length data. - + Неможливо обробити дані довжини 0. unknown executable (DBus address %1) - + невідомий виконуваний файл (DBus адреса %1) %1 (invalid executable path) - + %1 (неприпустимий шлях для виконання) NULL device @@ -7463,18 +8710,6 @@ Kernel: %3 %4 file empty порожній файл - - malformed string - хибне рядкове значення - - - missing closing quote - бракує закривальних лапок - - - %1: (row, col) %2,%3 - %1: (рядок, позиція) %2,%3 - AES 256-bit AES 256-біт @@ -7485,7 +8720,7 @@ Kernel: %3 %4 ChaCha20 256-bit - + ChaCha20 256-bit Argon2d (KDBX 4 – recommended) @@ -7501,7 +8736,7 @@ Kernel: %3 %4 AES-KDF (KDBX 3) - + AES-KDF (KDBX 3) Existing single-instance lock file is invalid. Launching new instance. @@ -7513,7 +8748,7 @@ Kernel: %3 %4 Clearing the clipboard in %1 second(s)… - + Очищення буфера обміну через %1 секунду…Очищення буфера обміну через %1 секунди…Очищення буфера обміну через %1 секунд…Очищення буфера обміну через %1 секунд… Group @@ -7525,7 +8760,7 @@ Kernel: %3 %4 Username - Ім’я користувача + Ім'я користувача Password @@ -7533,11 +8768,11 @@ Kernel: %3 %4 TOTP - ТОП + TOTP Icon - Значок + Піктограма Last Modified @@ -7567,11 +8802,11 @@ Kernel: %3 %4 Do you really want to delete %n entry(s) for good? - + Ви дійсно хочете видалити %n запис?Ви дійсно хочете видалити %n записи?Ви дійсно хочете видалити %n записів?Ви дійсно хочете видалити %n записів? Delete entry(s)? - + Видалити запис?Видалити записи?Видалити записи?Видалити записи? Do you really want to move entry "%1" to the recycle bin? @@ -7579,11 +8814,11 @@ Kernel: %3 %4 Do you really want to move %n entry(s) to the recycle bin? - + Ви дійсно хочете перемістити %n запис до смітника?Ви дійсно хочете перемістити %n записи до смітника?Ви дійсно хочете перемістити %n записів до смітника?Ви дійсно хочете перемістити %n записів до смітника? Move entry(s) to recycle bin? - + Перемістити запис до смітника?Перемістити записи до смітника?Перемістити записи до смітника?Перемістити записи до смітника? Replace references to entry? @@ -7591,15 +8826,15 @@ Kernel: %3 %4 Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway? - + Запис "%1" має %2 посилання. Ви дійсно хочете перезаписати посилання зі значеннями, пропустити цей запис, або видали в будь-якому разі?Запис "%1" має %2 посилання. Ви дійсно хочете перезаписати посилання зі значеннями, пропустити цей запис, або видали в будь-якому разі?Запис "%1" має %2 посилань. Ви дійсно хочете перезаписати посилання зі значеннями, пропустити цей запис, або видали в будь-якому разі?Запис "%1" має %2 посилань. Ви дійсно хочете перезаписати посилання зі значеннями, пропустити цей запис, або видали в будь-якому разі? User name - Ім’я користувача + Ім'я користувача Browser Statistics - + Статистика браузера Health Check @@ -7615,15 +8850,15 @@ Kernel: %3 %4 Unsupported key file version: %1 - Непідтримувана версія ключа: %1 + Непідтримувана версія ключового файлу: %1 Checksum mismatch! Key file may be corrupt. - Невідповідність контрольної суми! Файловий ключ може бути пошкодженим. + Невідповідність контрольної суми! Ключовий файл може бути пошкодженим. Unexpected key file data! Key file may be corrupt. - Неочікувані дані у файловому ключі! Він може бути пошкодженим. + Неочікувані дані ключового файлу! Він може бути пошкодженим. KeePassXC - cross-platform password manager @@ -7631,7 +8866,7 @@ Kernel: %3 %4 filenames of the password databases to open (*.kdbx) - назви файлів сховищ, які треба відкрити (*.kdbx) + назви файлів баз даних, які потрібно відкрити (*.kdbx) path to a custom config file @@ -7643,32 +8878,28 @@ Kernel: %3 %4 lock all open databases - + заблокувати всі відкриті бази даних key file of the database - файловий ключ сховища + ключовий файл бази даних read password of the database from stdin - отримати пароль до сховища із stdin - - - allow app screen recordering and screenshots - - - - Locked databases. - + отримати пароль до бази даних із stdin Database failed to lock. - + Не вдалося заблокувати базу даних. Another instance of KeePassXC is already running. Інший примірник KeePassXC вже запущено. + + KeePassXC is not running. No open database to lock + KeePassXC не працює. Не відкрита база даних для блокування + Fatal error while testing the cryptographic functions. Невиправна помилка в процесі тестування криптографічних функцій. @@ -7677,36 +8908,336 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC – помилка - - Warning: Failed to prevent screenshots on a top level window! - - Database password: - Пароль сховища: + Пароль бази даних: Invalid Settings TOTP - Непридатні параметри + Неприпустимі налаштування Invalid Key TOTP - Непридатний ключ + Недійсний ключ Failed to create Windows Hello credential. - + Не вдалося створити облікові дані Windows Hello. Failed to sign challenge using Windows Hello. + Не вдалося підписати завдання за допомогою Windows Hello. + + + Warning: Failed to block screenshot capture on a top-level window. + Попередження: не вдалося заблокувати знімки екрана у вікні верхнього рівня. + + + Invalid Cipher + Недійсний шифр + + + Invalid KDF + Недійсний KDF + + + Access to all entries is denied + У доступі до всіх записів відмовлено + + + allow screenshots and app recording (Windows/macOS) + дозволити скріншоти та запис програм (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + Встановіть файл ключа для бази даних. +Цю опцію застаріло, використовуйте замість цього --set-key-file. + + + Databases have been locked. + Бази даних були заблоковані. + + + Attestation not supported + Підтвердження не підтримується + + + Credential is excluded + Відсутній підтверджувальний запис + + + Passkeys request canceled + Запит на отримання ключів доступу скасовано + + + Invalid user verification + Перевірку користувача не пройдено + + + Empty public key + Порожній публічний ключ + + + Invalid URL provided + Надано хибну URL-адресу + + + Passkeys + Passkeys + + + AES initialization failed + AES ініціалізація не вдалася. + + + AES encrypt failed + AES шифрування не вдалося + + + Failed to store in Linux Keyring + Не вдалося зберегти в Linux Keyring. + + + Polkit returned an error: %1 + Polkit повернув помилку: %1 + + + Could not locate key in keyring + Не вдалося знайти ключ у ключниці. + + + Could not read key in keyring + Не вдалося прочитати ключ у ключниці + + + AES decrypt failed + AES дешифрування не вдалося + + + No Polkit authentication agent was available + Немає доступного агента аутентифікації Polkit + + + Polkit authorization failed + Помилка авторизації Polkit + + + No Quick Unlock provider is available + Немає доступного постачальника швидкого розблокування (Quick Unlock) + + + Failed to init KeePassXC crypto. + Не вдалося ініціювати KeePassXC crypto. + + + Failed to encrypt key data. + Не вдалося зашифрувати дані ключа. + + + Failed to get Windows Hello credential. + Не вдалося отримати облікові дані Windows Hello. + + + Failed to decrypt key data. + Не вдалося розшифрувати дані ключа. + + + Origin is empty or not allowed + Походження порожнє або не дозволене + + + Effective domain is not a valid domain + Діючий домен є недійсним доменом + + + Origin and RP ID do not match + Походження та RP ID не збігаються + + + No supported algorithms were provided + Не було надано підтримуваних алгоритмів + + + Wait for timer to expire + Зачекайте, поки таймер завершиться + + + Challenge is shorter than required minimum length + Виклик коротший за необхідну мінімальну довжину. + + + user.id does not match the required length + user.id не відповідає необхідній довжині. + + + Favorite + Tag for favorite entries + Вибране + + + File does not exist. + Файлу не існує. + + + Cannot open file: %1 + Не вдається відкрити файл: %1 + + + Cannot parse file: %1 at position %2 + Не вдалося розібрати файл: %1 на позиції %2 + + + Failed to decrypt json file: %1 + Не вдалося розшифрувати JSON-файл: %1 + + + Invalid encKeyValidation field + Недійсне поле encKeyValidation + + + Invalid cipher list within encKeyValidation field + Недійсний список шифрів у полі encKeyValidation + + + Wrong password + Неправильний пароль + + + Invalid encrypted data field + Недійсне зашифроване поле даних + + + Invalid cipher list within encrypted data field + Недійсний список шифрів у полі зашифрованих даних + + + Cannot initialize cipher + Не вдалося ініціалізувати шифр + + + Cannot decrypt data + Не вдалося розшифрувати дані + + + Bitwarden Import + Імпорт з Bitwarden + + + Archived + Tag for archived entries + Архівовано + + + Invalid 1PUX file format: Not a valid ZIP file. + Недійсний формат файлу 1PUX: не є дійсним ZIP-файлом. + + + Invalid 1PUX file format: Missing export.data + Недійсний формат файлу 1PUX: відсутній файл export.data + + + 1Password Import + Імпорт з 1Password + + + Enter Shortcut + Введіть скорочення + + + Action + Дія + + + Shortcuts + Скорочення + + + Unknown passkeys error + Невідома помилка паролів + + + Invalid KDF iterations, cannot decrypt json file + Недійсна кількість ітерацій KDF, не вдалося розшифрувати JSON-файл + + + Unsupported format, ensure your Bitwarden export is password-protected + Непідтримуваний формат, переконайтеся, що ваш експорт з Bitwarden захищений паролем. + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + Підтримуються лише PBKDF та Argon2, не вдалося розшифрувати файл JSON. + + + Reset Shortcuts + Скинути ярлики + + + Double click an action to change its shortcut + Подвійний клік на дії, щоб змінити ярлик + + + Filter... + Фільтр... + + + Shortcut Conflict + Конфлікт ярликів + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + Скорочення %1 конфліктує з '%2'. Перезаписати скорочення? + + + Cannot generate valid passphrases because the wordlist is too short + Не вдається згенерувати правильні парольні фрази, оскільки список слів занадто короткий + + + Encrypted files are not supported. - Please present or touch your YubiKey to continue. + Proton Pass Import + + Delete plugin data? + Видалити дані модуля? + + + Delete plugin data from Entry(s)? + Видалити дані плагіна з запису?Видалити дані плагіна із записів?Видалити дані плагіна із запиів?Видалити дані плагіна із запису(ів)? + + + Passkey + Passkey + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + + + + start minimized to the system tray + + + + malformed string, possible unescaped delimiter + + + + missing closing delimiter + + + + %1, row: %2, column: %3 + + + + Tags + Мітки + QtIOCompressor @@ -7742,43 +9273,62 @@ Kernel: %3 %4 Внутрішня помилка zlib: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + Команда «%1» не виконала вчасно. Процес було завершено. + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + Не вдалося завантажити об'єднану базу даних. Команда `%1` не встигла виконатись. Процес було завершено. + + + Invalid download parameters provided. + Вказано неприпустимі параметри завантаження. + + + Command `%1` failed to download database. + Команді '%1' не вдалося завантажити базу даних. + + + Invalid database pointer or upload parameters provided. + Хибний вказівник на базу даних або параметри завантаження. + + + Command `%1` exited with status code: %2 + Команду '%1' завершено з кодом стану: %2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + Не вдалося завантажити об'єднану базу даних. Команда `%1` завершилася з кодом стану: %2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - - - - Show only entries which have URL set - - - - Show only entries which have browser settings in custom data - - Double-click entries to edit. - + Редагування записів подвійним кліком. List of entry URLs - + Список URL-адрес записів Entry has no URLs set - + Запис не має налаштованих URL Allowed URLs - + Дозволені URL-адреси Entry has no Browser Integration settings - + Запис не має параметрів інтеграції з браузером Denied URLs - + Заборонені URL-адреси (Excluded) @@ -7790,11 +9340,11 @@ Kernel: %3 %4 Please wait, browser statistics is being calculated… - + Будь ласка, зачекайте. Триває розрахунок статистики браузера… No entries with a URL, or none has browser extension settings saved. - + Немає записів з URL-адресами чи збереженими параметрами розширення браузера. Title @@ -7806,58 +9356,67 @@ Kernel: %3 %4 URLs - + URL-адреси Edit Entry… - + Редагувати запис… Delete Entry(s)… - + Видалити запис…Видалити записи…Видалити записи…Видалити записи… Exclude from reports Виключити зі звітів + + Expire Entry(s)… + + + + Only show entries that have a URL + Показати тільки записи, що містять URL + + + Only show entries that have been explicitly allowed or denied + Показати лише записи, що були явно дозволені або заборонені + + + Show expired entries + Показати прострочені записи + + + (Expired) + (Протерміновано) + + + Delete plugin data from Entry(s)… + Видалити дані плагіна з запису?Видалити дані плагіна з записів?Видалити дані плагіна з записів?Видалити дані плагіна із запису(ів)? + ReportsWidgetHealthcheck - Exclude expired entries from the report - + Show expired entries + Показати прострочені записи - Also show entries that have been excluded from reports - Також показувати записи, які було виключено зі звітів + (Expired) + (Протерміновано) Hover over reason to show additional details. Double-click entries to edit. Наведіть курсор на причину, щоб переглянути додаткові відомості. Клацніть двічі по запису для його редагування. - - Bad - Password quality - Погана - Bad — password must be changed Погана – пароль необхідно змінити - - Poor - Password quality - Погана - Poor — password should be changed Погана – пароль слід змінити - - Weak - Password quality - Слабка - Weak — consider changing the password Слабка – розгляньте можливість змінити пароль @@ -7872,7 +9431,7 @@ Kernel: %3 %4 Please wait, health data is being calculated… - + Будь ласка, зачекайте. Триває розрахунок даних про здоров'я… Congratulations, everything is healthy! @@ -7896,22 +9455,30 @@ Kernel: %3 %4 Edit Entry… - + Редагувати запис… Delete Entry(s)… - + Видалити запис…Видалити записи…Видалити записи…Видалити записи… Exclude from reports Виключити зі звітів + + Expire Entry(s)… + + + + Show entries that have been excluded from reports + Показати записи, які було виключено зі звітів + ReportsWidgetHibp CAUTION: This report requires sending information to the Have I Been Pwned online service (https://haveibeenpwned.com). If you proceed, your database passwords will be cryptographically hashed and the first five characters of those hashes will be sent securely to this service. Your database remains secure and cannot be reconstituted from this information. However, the number of passwords you send and your IP address will be exposed to this service. - УВАГА: цей звіт вимагає надсилання інформації до онлайн-сервісу Have I Been Pwned (https://haveibeenpwned.com). Якщо Ви продовжите, паролі з вашого сховища буде криптографічно гешовано, а перші п'ять символів отриманих гешів буде безпечно надіслано до цього сервісу. Ваше сховище залишається в безпеці і не може бути відтвореним на основі переданої інформації. Однак, кількість паролів, які ви надсилаєте, та вашу IP-адресу буде розкрито цьому сервісу. + ОБЕРЕЖНО: цей звіт вимагає надсилання інформації до онлайн-сервісу Have I Been Pwned (https://haveibeenpwned.com). Якщо ви продовжите, паролі з вашої бази даних будуть криптографічно хешовані й перші п'ять символів хешу будуть безпечно надіслані до цього сервісу. Ваша база даних збережеться в безпеці й не може бути відтворена на основі переданої інформації. Однак, кількість паролів, які ви надсилаєте, та вашу IP-адресу буде розкрито цьому сервісу. Perform Online Analysis @@ -7991,22 +9558,93 @@ Kernel: %3 %4 Edit Entry… - + Редагувати запис… Delete Entry(s)… - + Видалити запис…Видалити записи…Видалити записи…Видалити записи… Exclude from reports Виключити зі звітів + + Expire Entry(s)… + + + + + ReportsWidgetPasskeys + + Export + Експортувати + + + Import + Імпортування + + + List of entry URLs + Список URL-адрес записів + + + Title + Заголовок + + + Path + Шлях + + + Username + Ім'я користувача + + + URLs + URL-адреси + + + Edit Entry… + Редагувати запис… + + + Delete Entry(s)… + Видалити запис…Видалити записи…Видалити записи…Видалити записи… + + + Relying Party + Довірена сторона + + + Show expired entries + Показати прострочені записи + + + (Expired) + (Протерміновано) + + + Export Confirmation + Підтвердження експорту + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + Файл пароля буде вразливим до крадіжки та несанкціонованого використання, якщо залишити його незахищеним. Ви впевнені, що хочете продовжити? + + + Please wait, list of entries with passkeys is being updated… + Будь ласка, зачекайте, список записів з паролями оновлюється… + + + No entries with passkeys. + Немає записів з паролями. + ReportsWidgetStatistics Hover over lines with error icons for further information. - Наведіть мишкою на рядки зі значком помилки для додаткової інформації. + Для отримання подробиць наведіть курсор на рядки з піктограмами помилки. Name @@ -8018,11 +9656,11 @@ Kernel: %3 %4 Please wait, database statistics are being calculated… - + Будь ласка, зачекайте. Триває розрахунок статистики бази даних… Database name - Назва сховища + Назва бази даних Description @@ -8034,7 +9672,7 @@ Kernel: %3 %4 Database created - + Базу даних створено Last saved @@ -8054,7 +9692,7 @@ Kernel: %3 %4 The database was modified, but the changes have not yet been saved to disk. - Сховище було змінено, але поточні зміни ще не записані на диск. + Базу даних було змінено, але зміни ще не були збережені. Number of groups @@ -8066,11 +9704,11 @@ Kernel: %3 %4 Number of expired entries - Кількість знечинених записів + Кількість протермінованих записів The database contains entries that have expired. - Сховище містить знечинені записи. + База даних містить протерміновані записи. Unique passwords @@ -8098,7 +9736,7 @@ Kernel: %3 %4 Recommended minimum password length is at least 8 characters. - Рекомендована найменша довжина пароля — 8 символів. + Рекомендована найменша довжина пароля – 8 символів. Number of weak passwords @@ -8165,7 +9803,7 @@ Kernel: %3 %4 Security keys are not supported by the agent or the security key provider is unavailable. - + Ключі безпеки не підтримуються агентом або провайдер ключів безпеки недоступний. No agent running, cannot remove identity. @@ -8175,6 +9813,14 @@ Kernel: %3 %4 No agent running, cannot list identities. Немає запущеного посередника, неможливо відобразити перелік ключів. + + Failed to remove all SSH identities from agent. + + + + All SSH identities removed from agent. + + SearchHelpWidget @@ -8241,10 +9887,14 @@ Kernel: %3 %4 Search Help Довідка з пошуку + + Save Search + Зберегти пошук + Search (%1)… Search placeholder text, %1 is the keyboard shortcut - + Пошук (%1)… Case sensitive @@ -8259,15 +9909,15 @@ Kernel: %3 %4 SettingsClientModel Application - Застосунок + Програма PID - + PID DBus Address - + Адреса DBus Manage @@ -8305,43 +9955,27 @@ Kernel: %3 %4 Show notification when passwords are retrieved by clients - + Показувати сповіщення під час отримання паролів клієнтами <html><head/><body><p>If enabled, any attempt to read a password must be confirmed. Otherwise, clients can read passwords without confirmation when the database is unlocked.</p><p>This option only covers the access to the password of an entry. Clients can always enumerate the items of exposed databases and query their attributes.</p></body></html> - + <html><head/><body><p>Якщо увімкнено, будь-яка спроба читання пароля має бути підтверджена. В іншому випадку, клієнти можуть читати паролі без підтвердження, якщо база даних розблокована.</p><p>Цей параметр впливає лише на доступ до пароля запису. Клієнти завжди можуть бачити записи баз даних і запитувати їхні атрибути.</p></body></html> Confirm when passwords are retrieved by clients - - - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - + Підтверджувати отримання паролів клієнтами Confirm when clients request entry deletion - - - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - + Підтверджувати видалення записів клієнтами Prompt to unlock database before searching - + Запитувати про розблокування бази даних перед пошуком Exposed database groups: - Виставлені групи сховища: + Викриті групи бази даних: Authorization @@ -8349,7 +9983,7 @@ Kernel: %3 %4 These applications are currently connected: - Такі застосунки зараз сполучені: + Зараз під'єднано такі програми: <b>Warning:</b> @@ -8359,6 +9993,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. Збережіть поточні зміни, щоб увімкнути модуль і уможливити редагування в цьому розділі. + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>Це налаштування не перекриває вимкнення підказок кошика для сміття </p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>Це покращує сумісність з певними додатками, які шукають пароль без попереднього розблокування бази даних.</p><p>Але увімкнення цього може також призвести до збою клієнта, якщо базу даних не вдалося розблокувати протягом певного часу (зазвичай 25 секунд, але може бути інше значення, встановлене в додатках)</p></body></html> + SettingsWidgetKeeShare @@ -8419,14 +10061,14 @@ Kernel: %3 %4 ShareExport Could not write export container. - + Не вдалося записати контейнер експорту. ShareImport Successful import - + Успішно імпортовано @@ -8467,16 +10109,39 @@ Kernel: %3 %4 TagModel - All - + Clear Search + Очистити пошук + + + All Entries + Усі записи Expired - + Протерміновано Weak Passwords - + Ненадійні паролі + + + + TagView + + Remove Search + Вилучити пошук + + + Remove Tag + Вилучити мітку + + + Confirm Remove Tag + Підтвердити вилучення мітки + + + Remove tag "%1" from all entries in this database? + Вилучити мітку "%1" з усіх записів у цій базі даних? @@ -8487,27 +10152,27 @@ Kernel: %3 %4 Copy - Cкопіювати + Копіювати Expires in <b>%n</b> second(s) - Втрачає чинність через <b>%n</b> секундуВтрачає чинність через <b>%n</b> секундиВтрачає чинність через <b>%n</b> секундВтрачає чинність через <b>%n</b> секунд + Термін дії завершується через <b>%n</b> секундуТермін дії завершується через <b>%n</b> секундиТермін дії завершується через <b>%n</b> секундТермін дії завершується через <b>%n</b> секунди TotpExportSettingsDialog Copy - Cкопіювати + Копіювати 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-код. + Під час створення QR-коду виникла помилка. Closing in %1 seconds. @@ -8518,7 +10183,7 @@ Kernel: %3 %4 TotpSetupDialog Setup TOTP - Налаштування ТОП + Налаштувати TOTP Secret Key: @@ -8534,19 +10199,19 @@ Kernel: %3 %4 Default settings (RFC 6238) - + Типові налаштування (RFC 6238) Steam® settings - + Налаштування Steam® Custom settings: - + Власні налаштування: Custom Settings - Власне налаштування + Власні налаштування Algorithm: @@ -8575,20 +10240,21 @@ Kernel: %3 %4 Invalid TOTP Secret - Непридатний таємний ТОП + Недійсний ключ TOTP You have entered an invalid secret key. The key must be in Base32 format. Example: JBSWY3DPEHPK3PXP - Ви ввели непридатний таємний ключ. Ключ мусить бути в форматі Base32. Наприклад: JBSWY3DPEHPK3PXP + Ви ввели недійсний ключ. Ключ мусить бути в форматі Base32. +Наприклад: JBSWY3DPEHPK3PXP Confirm Remove TOTP Settings - Схвалити видалення параметрів ТОП + Підтвердити вилучення налаштувань TOTP Are you sure you want to delete TOTP settings for this entry? - Ви дійсно хочете видалити параметри ТОП для цього запису? + Ви дійсно хочете видалити налаштування TOTP для цього запису? @@ -8606,7 +10272,7 @@ Example: JBSWY3DPEHPK3PXP Checking for updates… - + Перевірка наявності оновлень… Close @@ -8618,55 +10284,47 @@ Example: JBSWY3DPEHPK3PXP An error occurred when trying to retrieve update information, please try again later. - + Під час отримання інформації про оновлення сталася помилка. Спробуйте знову пізніше. <strong>A new version is available.</strong><br/>KeePassXC %1 can be <a href="https://keepassxc.org/download/">downloaded here</a>. - + <strong>Доступна нова версія.</strong><br/>KeePassXC %1 можна <a href="https://keepassxc.org/download/">завантажити тут</a>. You have the latest version of KeePassXC - + У вас найновіша версія KeePassXC WelcomeWidget Start storing your passwords securely in a KeePassXC database - Почніть надійно і безпечно зберігати ваші паролі у сховищі KeePassXC - - - Create new database - Створити нове сховище - - - Open existing database - Відкрити наявне сховище - - - Import from KeePass 1 - Імпортувати з KeePass 1 - - - Import from 1Password - Імпортувати з 1Password - - - Import from CSV - Імпортувати з CSV + Почніть надійно зберігати свої паролі у базі даних KeePassXC Recent databases - Недавні сховища + Останні бази даних Open a recent database - Відкрити недавнє сховище + Відкрити останню базу даних Welcome to KeePassXC %1 Ласкаво просимо до KeePassXC %1 + + Create Database + Створити базу даних + + + Open Database + Відкрити базу даних + + + Import File + Імпортувати файл + WinUtils @@ -8676,57 +10334,26 @@ Example: JBSWY3DPEHPK3PXP Global shortcut already registered to %1 - Глобальне сполучення клавіш вже зареєстровано для %1 + Глобальну комбінацію клавіш уже зареєстровано для %1 Could not register global shortcut - Реєстрація глобального сполучення клавіш зазнало невдачі - - - - WindowsHello - - Failed to init KeePassXC crypto. - - - - Failed to encrypt key data. - - - - Failed to get Windows Hello credential. - - - - Failed to decrypt key data. - + Не вдалося зареєструвати глобальну комбінацію клавіш YubiKey - - %1 No interface, slot %2 - - General: - + Загальні: Could not find interface for hardware key with serial number %1. Please connect it to continue. - + Не вдалося знайти інтерфейс для апаратного ключа з серійним номером %1. Під'єднайте його, щоб продовжити. YubiKeyEditWidget - - Refresh hardware tokens - Оновити апаратні позначки - - - Refresh - Оновити - Hardware key slot selection Вибір гнізда апаратного захисту @@ -8741,27 +10368,23 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response - + Виклик-відповідь Add Challenge-Response - + Додати виклик-відповідь Change Challenge-Response - + Змінити виклик-відповідь Remove Challenge-Response - + Вилучити виклик-відповідь Challenge-Response set, click to change or remove - - - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - + Виклик-відповідь встановлено. Натисніть, щоб змінити або вилучити Detecting hardware keys… @@ -8771,43 +10394,55 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected Апаратних ключів не виявлено - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 указано непридатне гніздо — %2 + Refresh hardware keys + Оновити апаратні ключі + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>Якщо у вас є <a href="https://www.yubico.com/">YubiKey</a> або <a href="https://onlykey.io">OnlyKey</a>, ви можете використовувати його для додаткової безпеки.</p><p>Для ключа потрібно, щоб один із його слотів був запрограмований на <a href="https://KeePassXC.org/docs/#faq-yubikey-howto">виклик-відповідь</a>.</p> + + + Hardware keys found, but no slots are configured + Апаратні ключі знайдено, але жоден слот не налаштовано. YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - - The YubiKey PCSC interface has not been initialized. - - - - Hardware key is currently in use. - Зараз використовується апаратний захист. + Інтерфейс YubiKey PCSC не було ініціалізовано. Could not find or access hardware key with serial number %1. Please present it to continue. - + Не вдалося знайти або отримати доступ до апаратного ключа з серійним номером %1. Будь ласка, надайте його, щоб продовжити. Hardware key is locked or timed out. Unlock or re-present it to continue. - + Апаратний ключ заблоковано або завершився час очікування. Розблокуйте його, або надайте повторно, щоб продовжити. Hardware key was not found or is not configured. - + Апаратний ключ не знайдено або не налаштовано. Failed to complete a challenge-response, the PCSC error code was: %1 - + Не вдалося завершити виклик-відповідь. Код помилки PCSC: %1 + + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - Слот %3, %4 + + + Press + USB Challenge-Response Key interaction request + Натиснути + + + Passive + USB Challenge-Response Key no interaction required + Пасивне @@ -8816,14 +10451,6 @@ Example: JBSWY3DPEHPK3PXP Unknown Невідомий - - (USB) %1 [%2] Configured Slot - %3 - - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - - Press USB Challenge-Response Key interaction request @@ -8836,11 +10463,7 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. - - - - Hardware key is currently in use. - Зараз використовується апаратний захист. + USB-інтерфейс для YubiKey не було ініціалізовано. Could not find hardware key with serial number %1. Please plug it in to continue. @@ -8852,11 +10475,21 @@ Example: JBSWY3DPEHPK3PXP A USB error occurred when accessing the hardware key: %1 - + Виникла помилка з USB під час доступу до апаратного ключа: %1 Failed to complete a challenge-response, the specific error was: %1 Не вдалося завершити виклик-відповідь, конкретна помилка: %1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - Слот %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - Слот %3, %4 + \ No newline at end of file diff --git a/share/translations/keepassxc_zh_CN.ts b/share/translations/keepassxc_zh_CN.ts index 03e908a05..bc457df0a 100644 --- a/share/translations/keepassxc_zh_CN.ts +++ b/share/translations/keepassxc_zh_CN.ts @@ -80,6 +80,10 @@ Details 详情 + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + 在请求客户端与 KeePassXC 同时运行期间,您的选择会被记住。 + Remember 记住 @@ -88,10 +92,6 @@ Allow Selected 允许选定 - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - 在请求客户端与 KeePassXC 同时运行期间,您的选择会被记住。 - Deny All && Future 禁止此后所有 @@ -122,9 +122,13 @@ Use OpenSSH 使用 OpenSSH + + Use both agents + 同时使用两种代理 + SSH_AUTH_SOCK override - SSH_AUTH_SOCK 重写 + SSH_AUTH_SOCK 覆写 SSH_AUTH_SOCK value @@ -144,16 +148,12 @@ No SSH Agent socket available. Either make sure SSH_AUTH_SOCK environment variable exists or set an override. - 没有可用的 SSH 代理套接字。确保环境变量 SSH_AUTH_SOCK 存在或已设置重写。 + 没有可用的 SSH 代理套接字。确保环境变量 SSH_AUTH_SOCK 存在或已设置覆写。 SSH Agent connection is working! SSH 代理连接工作正常! - - Use both agents - 同时使用两种代理 - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security 安全 + + This setting cannot be enabled when minimize on unlock is enabled. + 如果启用解锁时最小化,则无法启用此设置。 + Access error for config file %1 访问配置文件 %1 错误 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? 您必须重新启动应用才能应用新语言。要现在重新启动吗? - - Reset Settings? - 重置选项? - - - Are you sure you want to reset all general and security settings to default? - 您确定要将所有常规和安全设置重置为默认值吗? - Select backup storage directory 选择备份存储文件夹 + + Confirm Reset + 确认重置 + + + Are you sure you want to reset all settings to default? + 您确定要将所有设置重置为默认值吗? + + + Import KeePassXC Settings + 导入 KeePassXC 设置 + + + Failed to import settings from %1, not a valid settings file. + 从 %1 导入设置失败,不是有效的设置文件。 + + + Export KeePassXC Settings + 导出 KeePassXC 设置 + + + Small + + + + Normal + 正常 + + + Medium + + + + Large + + + + Custom + 自定义 + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases 记住以前使用的数据库 + + recent files + 最近的文件 + Load previously open databases on startup 启动时加载以前打开的数据库 @@ -272,25 +312,6 @@ Include beta releases when checking for updates 检查更新时包含 Beta 版本 - - On database unlock, show entries that - 解锁数据库时,显示符合条件的条目 - - - have expired - On database unlock, show entries that... - 已过期 - - - days - On database unlock, show entries that will expire within %1 days - 天内过期 - - - will expire within - On database unlock, show entries that... - 将在 - File Management 文件管理 @@ -315,22 +336,10 @@ Backup database file before saving 保存前备份数据库文件 - - Backup destination - 备份目的地 - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - 指定数据库备份文件位置,其中 "{DB_FILENAME}" 会被替换为保存的数据库文件名,不包含扩展名。{TIME:<format>} 会被替换为备份时间,详见 https://doc.qt.io/qt-5/qdatetime.html#toString 。<format> 默认为格式字符串 "dd_MM_yyyy_hh-mm-ss"。 - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - 选择... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) 使用替代保存方式(可能会解决 Dropbox、Google Drive、GVFS 等问题) @@ -408,6 +417,10 @@ Toolbar button style: 工具栏按钮样式: + + Show passwords in color + 密码以彩色显示 + Use monospaced font for notes 备注使用等宽字体 @@ -493,6 +506,71 @@ Remember last typed entry for: 记住上次输入的条目: + + On database unlock, show entries that will expire within + 解锁数据库时,显示即将过期的条目 + + + On database unlock, show entries that will expire within + 解锁数据库时,显示即将过期的条目 + + + days + number of days warning for password expiration + 天内过期 + + + Destination format: + 目标格式: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> 将被替换为保存数据库的文件名,不含扩展名</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> 将被替换为指定的时间格式(默认:dd_MM_yyyy_hh-mm-ss)</p><p>查看用户指南了解详情</p></body></html> + + + Choose folder... + 选择文件夹... + + + Show confirmation before moving entries to recycle bin + 删除条目到回收站之前提示确认 + + + Copy data on double clicking field in entry view + 在条目视图中,双击字段复制数据 + + + Show toolbar + 显示工具栏 + + + Show the menu bar by pressing the Alt key + 按下 Alt 键显示菜单栏 + + + Show menubar + 显示菜单栏 + + + Import settings… + 导入设置… + + + Export settings… + 导出设置… + + + Open browser on double clicking URL field in entry view + 在条目视图中,双击 URL 字段打开浏览器 + + + Font size: + 字体大小: + + + Font size selection + 字体大小选择 + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window 在最小化窗口后锁定数据库 - - Require password repeat when it is visible - 当密码可见时,需要重复密码 - Hide passwords when editing them 编辑密码时隐藏密码 @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel 在条目预览面板中隐藏密码 - - Hide entry notes by default - 默认情况下隐藏条目备注 - - - Move entries to recycle bin without confirmation - 删除到回收站无需确认 - - - Enable double click to copy the username/password entry columns - 启用双击复制条目的用户名/密码列 - Privacy 隐私 @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons 使用 DuckDuckGo 来下载网站图标 + + Hide TOTP in the entry preview panel + 在条目预览面板隐藏 TOTP + + + Lock databases when switching user + 切换用户时锁定数据库 + + + Lock Options + 锁定选项 + + + Hide notes in the entry preview panel + 在条目预览面板隐藏备注 + AutoType @@ -626,18 +704,8 @@ 检测到过长延迟,最大值为 %1:%2 - Invalid conversion type: %1 - 无效的转换类型:%1 - - - Invalid conversion syntax: %1 - 无效的转换语法:%1 - - - Invalid regular expression syntax %1 -%2 - 无效的正则表达式语法 %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + 条目不包含用于 PICKCHARS 的属性:%1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - 正在尝试发送无效的键码。 - Sequence aborted: Caps Lock is on 序列中止:已打开大写锁定 @@ -700,6 +764,10 @@ Unable to get valid keycode for key: 无法为按键获得有效的键码: + + Trying to send invalid keyboard symbol. + 正在尝试发送无效的键盘符号。 + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - 使用虚拟键盘(仅限 Windows)</p> Disable for this site 对此站点禁用 + + Undo + 撤销 + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC-Browser 保存条目 - Ok 确定 @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. 您打开了多个数据库。 请选择正确的数据库以保存凭据。 + + KeePassXC - Select Database + KeePassXC - 选择数据库 + + + + BrowserPasskeysConfirmationDialog + + Cancel + 取消 + + + Update + 更新 + + + Authenticate + 认证 + + + Register new + 新注册 + + + Register + 注册 + + + Timeout in <b>%n</b> seconds... + 在 <b>%n</b> 秒后超时… + + + Relying Party: %1 + 依赖方:%1 + + + Username: %1 + 用户名:%1 + + + KeePassXC - Passkey credentials + KeePassXC - 通行密钥凭据 + + + Add to existing entry + 添加到现有条目 + + + Existing passkey found. +Do you want to register a new passkey for: + 找到已存在的通行密钥。 +您是否要注册新通行密钥到: + + + Select the existing passkey and press Update to replace it. + 选择已存在的通行密钥并按下更新来替换。 + + + Authenticate passkey credentials for: + 认证通行密钥凭据: + + + Do you want to register a passkey for: + 您是否要注册通行密钥到: + BrowserService - - KeePassXC: Create a new group - KeePassXC:创建新群组 - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? 确认要创建群组吗? - - KeePassXC: New key association request - KeePassXC:新的密钥关联请求 - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ Chrome 笔记本电脑 Save and allow access 保存并允许访问 - - KeePassXC: Overwrite existing key? - KeePassXC:覆盖现有的密钥吗? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? 一个名为“%1”的共享加密密钥已存在。 确认要覆盖它吗? - - KeePassXC: Update Entry - KeePassXC:更新条目 - Do you want to update the information in %1 - %2? 您想更新 %1 - %2 中的信息吗? - - KeePassXC: Delete entry - KeePassXC:删除条目 - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - 将属性转换为自定义数据... + %1 (Passkey) + %1(通行密钥) - Abort - 中止 + KeePassXC - Create a new group + KeePassXC - 创建新群组 - KeePassXC: Converted KeePassHTTP attributes - KeePassXC:已转换为 KeePassHTTP 属性 + Disable + 禁用 - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - 已成功转换 %1 个条目的属性。 -已移动 %2 个密钥到自定义数据。 - - - Successfully moved %n keys to custom data. - 已成功移动 %n 个密钥到自定义数据。 + KeePassXC - Overwrite existing key? + KeePassXC - 覆盖现有的密钥吗? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC:找不到含有 KeePassHTTP 属性的条目! + KeePassXC - Update Entry + KeePassXC - 更新条目 - The active database does not contain an entry with KeePassHTTP attributes. - 当前数据库中不存在有 KeePassHTTP 属性的条目。 + KeePassXC - Delete entry + KeePassXC - 删除条目 - Don't show this warning again - 不再显示此警告 + KeePassXC - New key association request + KeePassXC - 新的密钥关联请求 - KeePassXC: Legacy browser integration settings detected - KeePassXC:检测到旧版浏览器集成设置 + Passkey + 通行密钥 - 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-Browser 设置需要移动到数据库设置中。 -这对于保持当前浏览器连接是必需的。 -是否要立即迁移现有设置? + KeePassXC - Passkey credentials + KeePassXC - 通行密钥凭据 + + + Register a new passkey to this entry: + 注册新通行密钥到此条目: + + + KeePassXC - Update passkey + KeePassXC - 更新通行密钥 + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + 条目已有一个通行密钥。 +您想要覆盖 %1 - %2 中的通行密钥吗? + + + Register + 注册 @@ -955,10 +1076,6 @@ Would you like to migrate your existing settings now? General 常规 - - Browsers installed as snaps are currently not supported. - 以 Snap 软件包形式安装的浏览器目前不受支持。 - Enable integration for these browsers: 为这些浏览器开启集成: @@ -1130,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID 自定义扩展 ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - 由于 Snap 沙盒限制,您必须运行一个脚本才能启用浏览器集成。<br />您可以从 %1 获取此脚本 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - 要启用浏览器集成,您必须安装 KeePassXC-Browser。<br />下载适用于 %1、%2 和 %3 的版本。%4 - - - Please see special instructions for browser extension use below - 请参阅下面的浏览器扩展使用特殊说明 - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>错误:</b>找不到自定义代理位置!<br/>没有代理应用程序,浏览器集成将无法使用。 - - - <b>Warning:</b> The following options can be dangerous! - <b>警告:</b>以下选项可能有危险! - Executable Files 可执行文件 @@ -1166,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location 选择 Native Messaging 主机文件夹位置 + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + 允许 keepassxc-proxy 列出已连接的数据库中的所有条目,包括标题、URL 和 UUID。 + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + 允许对已连接的数据库中所有条目的受限访问(忽略站点访问限制) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>警告:</b>仅在必要时调整这些设置。 + + + The custom proxy location does not exist. + 自定义代理位置不存在。 + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>错误:</b>自定义代理位置不存在。请前往高级设置页面修正。 + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>错误:</b>已安装到此位置的代理程序可执行文件丢失:%1<br/>请在高级设置中修改自定义代理位置或重新安装应用。 + + + Allows using insecure http://localhost with passkeys for testing purposes. + 允许通行密钥使用不安全的 http://localhost 用于测试目的。 + + + Allow using localhost with passkeys + 允许通行密钥使用 localhost + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + 要启用浏览器集成,您必须安装 KeePassXC-Browser。<br />下载适用于 %1、%2 和 %3 的版本。 + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + 通过 Snap 或 Flatpak 安装的浏览器不受支持,但通过 Snap 安装的 Firefox 除外。 + CloneDialog @@ -1188,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - 导入 CSV 字段 - - - filename - 文件名 - size, rows, columns 大小、行、列 @@ -1304,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 列 %1 - - Imported from CSV file - 从 CSV 文件中导入 - - - Original data: - 原始数据: - - - Error(s) detected in CSV file! - 在 CSV 文件中检测到错误! - [%n more message(s) skipped] [%n 条信息被跳过] - Error - 错误 + Failed to parse CSV file: %1 + 解析 CSV 文件失败:%1 - CSV import: writer has errors: -%1 - CSV 导入:写入错误: -%1 + Imported from CSV file: %1 + 已从 CSV 文件导入:%1 + + + No Title Selected + 未选择标题 + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + 未选择标题列,条目将难以区分。 +您确定要导入吗? + + + Tags + 标签 CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1,%2,%3 - - - %n byte(s) - %n 字节 - %n row(s) + CSV row count %n 行 %n column(s) + CSV column count %n 列 @@ -1400,6 +1522,14 @@ Backup database located at %2 Recycle Bin 回收站 + + Database file read error. + 数据库文件读取错误。 + + + No file path was provided. + 未提供文件路径。 + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup database located at %2 Password field 密码字段 - - Enter Additional Credentials (if any): - 输入附加凭据(如果有): - - - Key File: - 密钥文件: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>除了密码之外,您还可以使用机密文件来增强数据库的安全性。此文件可以在数据库的安全设置中生成。</p><p>这<strong>不是</strong>您的 *.kdbx 数据库文件!<br>如果没有密钥文件,请将此字段留空。</p><p>点击获取更多信息…</p> - - - Key file help - 密钥文件帮助 - Hardware key slot selection 选择硬件密钥的插槽 - - Hardware Key: - 硬件密钥: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>您可以使用像 <strong>YubiKey</strong> 或 <strong>OnlyKey</strong> 这种带有 HMAC-SHA1 配置插槽的硬件安全密钥。</p> -<p>点击获取更多信息…</p> - - - Hardware key help - 硬件密钥帮助 - Key file to unlock the database 用于解锁数据库的密钥文件 @@ -1468,14 +1568,6 @@ Backup database located at %2 Browse… 浏览... - - Refresh hardware tokens - 刷新硬件令牌 - - - Refresh - 刷新 - Unlock Database 解锁数据库 @@ -1538,14 +1630,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password 使用空密码重试 - - Failed to authenticate with Windows Hello - Windows Hello 验证失败 - - - Failed to authenticate with Touch ID - Touch ID 验证失败 - Failed to open key file: %1 无法打开密钥文件:%1 @@ -1579,22 +1663,68 @@ To prevent this error from appearing, you must go to "Database Settings / S 无法使用数据库文件作为密钥 - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - 您不能用您的数据库作为密钥文件。 -如果您没有密钥文件,请留空这个字段。 + authenticate to access the database + 验证身份以访问数据库 - Detecting hardware keys… - 正在检测硬件密钥... + Failed to authenticate with Quick Unlock: %1 + 快速解锁验证失败:%1 - No hardware keys detected - 未检测到硬件密钥 + Select Key File: + 选择密钥文件: - Select hardware key… - 选择硬件密钥... + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>除了密码之外,您还可以使用机密文件来增强数据库的安全性。此文件可以在数据库的安全设置中生成。</p><p>这<strong>不是</strong>您的 *.kdbx 数据库文件!</p> + + + Use hardware key [Serial: %1] + 使用硬件密钥 [序号:%1] + + + Use hardware key + 使用硬件密钥 + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + 您的数据库文件不是密钥文件! +如果您没有密钥文件,或者不知道这是什么,就不需要选择。 + + + KeePassXC database file selected + KeePassXC 数据库文件被选择 + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + 您选择的文件看起来是一份数据库文件。 +数据库文件不是密钥文件! + +您确定要继续使用此文件吗? + + + No hardware keys found. + 未找到硬件密钥。 + + + Refresh Hardware Keys + 刷新硬件密钥 + + + Click to add a key file. + 点击以添加密钥文件。 + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">我有一份密钥文件</a> + + + Hardware keys found, but no slots are configured. + 硬件密钥已找到,但未配置任何插槽。 @@ -1606,10 +1736,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - 高级设置 - General 常规 @@ -1634,6 +1760,22 @@ If you do not have a key file, please leave the field empty. Maintenance 维护 + + KeeShare + KeeShare + + + Secret Service Integration + 保密服务集成 + + + Remote Sync + 远程同步 + + + Database Settings: %1 + 数据库设置:%1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC-Browser 设置 - - Convert KeePassHTTP data - 转换 KeePassHTTP 数据 - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - 将旧版 KeePassHTTP 属性转换为兼容 KeePassXC-Browser 的自定义数据 - - - Refresh database root group ID - 刷新数据库根群组 ID - Disconnect all browsers 断开与所有浏览器的关联 @@ -1661,6 +1791,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries 取消条目上所有站点特定设置 + + Refresh database root group ID + 刷新数据库根群组 ID + Stored keys 存储的密钥 @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. 您确定要断开与所有浏览器的关联吗? 这可能会影响与浏览器插件的连接。 - - KeePassXC: No keys found - KeePassXC:未找到密钥 - No shared encryption keys found in KeePassXC settings. 未在 KeePassXC 设置中找到共享加密密钥。 - - KeePassXC: Removed keys from database - KeePassXC:已从数据库中删除密钥 - Successfully removed %n encryption key(s) from KeePassXC settings. 已成功从 KeePassXC 设置中删除了 %n 个加密密钥。 @@ -1739,32 +1865,14 @@ Permissions to access entries will be revoked. Abort 中止 - - KeePassXC: Removed permissions - KeePassXC:已删除权限 - Successfully removed permissions from %n entry(s). 已成功从 %n 个条目中删除权限。 - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - 您确定要将所有旧版浏览器集成数据转换到最新标准吗? -这对于保持与浏览器插件的兼容性是必要的。 - Refresh database ID 刷新数据库 ID @@ -1775,6 +1883,26 @@ This is only necessary if your database is a copy of another and the browser ext 是否要刷新数据库 ID? 只有当您的数据库是另一个数据库的副本并且浏览器扩展无法连接时,才有必要这样做。 + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + 将旧版 KeePassHTTP 属性转换为兼容 KeePassXC-Browser 的自定义数据 + + + No keys found + 未找到密钥 + + + Removed keys from database + 从数据库中删除密钥 + + + Removed permissions + 已删除的权限 + + + No entry with permissions found! + 未找到有权限的条目! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Are you sure you want to continue without a password? Failed to change database credentials 更改数据库凭据失败 + + Weak password + 较弱密码 + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + 这是一个弱密码!为了更好地保护您的秘密,您应该选择更强的密码。 + + + The provided password does not meet the minimum quality requirement. + 提供的密码未达到最低强度要求。 + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: 解密时间: - - Change existing decryption time - 改变现在的解密时间 - - - Change - 更改 - Decryption time in seconds 解密时间秒数 @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - 无变化 - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) 线程 + + Encryption Settings: + 加密设置: + + + Basic + 基本 + + + Advanced + 高级 + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry 每个条目最多历史记录数 - - Max. history items: - 最大历史记录数: - Maximum size of history per entry 每个项目最大历史记录大小 - - Max. history size: - 最大历史记录大小: - MiB MiB @@ -2066,6 +2197,108 @@ This action is not reversible. (old) (旧的) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + 在保存此设置或编辑条目时 +条目中最早的历史记录将会 +被删除,保证只有指定的数 +量被保留。 + + + Limit the amount of history items per entry to: + 限制每个条目的历史记录数量为: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + 在保存此设置或编辑条目时 +条目中最早的历史记录将会 +被删除,保证最多只剩余指 +定的数量。 + + + Limit the total size of history items per entry to: + 限制每个条目的历史记录总大小为: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + 将条目移动到回收站群组 +而非直接从数据库中删除。 +从回收站中删除的条目将 +会从数据库中删除。 + + + Autosave delay since last change + 修改后自动保存延迟 + + + Autosave delay + 自动保存延迟 + + + Autosave delay since last change in minutes + 修改后自动保存延迟分钟 + + + min + + + + Autosave delay since last change checkbox + 修改后自动保存延迟复选框 + + + Public Database Metadata + 公开数据库元数据 + + + Warning: the following settings are not encrypted. + 警告:下列设置未被加密。 + + + Display name: + 显示名称: + + + Publically visible display name used on the unlock dialog + 在解锁对话框中公开显示的名称 + + + Database public display name + 数据库公开显示名称 + + + Display color: + 显示颜色: + + + Publically visible color used on the unlock dialog + 在解锁对话框中公开可见的颜色 + + + Database public display color chooser + 数据库公开显示颜色选择器 + + + Clear + 清空 + + + Display icon: + 显示图标: + + + Select Database Icon + 选择数据库图标 + DatabaseSettingsWidgetKeeShare @@ -2161,6 +2394,141 @@ This action is not reversible. 数据库描述字段 + + DatabaseSettingsWidgetRemote + + Sync Commands + 同步命令 + + + Remove + 删除 + + + Command Settings + 命令设置 + + + Name + 名称 + + + Save + 保存 + + + Download + 下载 + + + Command: + 命令: + + + Download command field + 下载命令字段 + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 示例:“sftp user@hostname”或“scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}” + + + Input: + 输入: + + + Download input field + 下载输入字段 + + + Upload + 上传 + + + Upload command field + 上传命令字段 + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + 示例:“sftp user@hostname”或“scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx” + + + Upload input field + 上传输入字段 + + + Name cannot be empty. + 名称不能为空。 + + + Test + 测试 + + + Download command cannot be empty. + 下载命令不能为空。 + + + Download failed with error: %1 + 下载失败,错误为:%1 + + + Download finished, but file %1 could not be found. + 下载完成,但无法找到文件 %1。 + + + Download successful. + 下载成功。 + + + Save Remote Settings + 保存远程设置 + + + You have unsaved changes. Do you want to save them? + 您有未保存的更改。要保存它们吗? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 示例: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} 作为占位符,表示存储数据库的临时位置 +命令必须可以退出。如果最后一个命令是 `sftp` 则必须发送 `exit` 命令 + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 示例: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} 作为占位符,表示存储数据库的临时位置 +命令必须可以退出。如果最后一个命令是 `sftp` 则必须发送 `exit` 命令 + + + + Timeout: + 超时: + + + seconds + + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV 文件 - - Select CSV file - 选择 CSV 文件 - Merge database 合并数据库 - - KeePass 1 database - KeePass 1 数据库 - - - Open KeePass 1 database - 打开 KeePass 1 数据库 - - - Open OPVault - 打开 OPVault - Export database to CSV file 导出数据库到 CSV 文件 @@ -2225,6 +2577,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. 写入 HTML 文件失败 + + Export database to XML file + 导出数据库到 XML 文件 + + + XML file + XML 文件 + + + Writing the XML file failed + 写入 XML 文件失败 + Export Confirmation 导出确认 @@ -2233,26 +2597,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? 您即将导出数据库到未加密文件,这将会直接暴露您的密码或敏感信息!确定要继续吗? - - New Database - 新建数据库 - - - %1 [New Database] - Database tab name modifier - %1 [新建数据库] - %1 [Locked] Database tab name modifier %1 [锁定] + + %1 [Temporary] + Database tab name modifier + %1 [临时] + DatabaseWidget - Database Tags - 数据库标签 + Searches and Tags + 搜索与标签 Searching… @@ -2302,6 +2662,10 @@ This is definitely a bug, please report it to the developers. Expired entries 已过期条目 + + Entries expiring within %1 day(s) + 将在 %1 天内过期的条目 + No current database. 未打开任何数据库。 @@ -2326,6 +2690,18 @@ This is definitely a bug, please report it to the developers. No Results 无结果 + + Save + 保存 + + + Enter a unique name or overwrite an existing search from the list: + 输入唯一名称或者覆盖列表中已存在的搜索: + + + Save Search + 保存搜索 + Lock Database? 锁定数据库? @@ -2354,26 +2730,6 @@ Save changes? 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? - 数据库文件已发生变化,并且您有未保存的更改。 -您想合并您的修改吗? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - 尝试自动重载时无法打开新的数据库文件。 -错误:%1 - Disable safe saves? 禁用安全保存? @@ -2416,9 +2772,94 @@ Disable safe saves and try again? Could not find database file: %1 找不到数据库文件:%1 - - Entries expiring within %1 day(s) - 将在 %1 天内过期的条目 + + New Database + 新建数据库 + + + %1 [New Database] + Database tab name modifier + %1 [新建数据库] + + + Remote Sync did not contain any download or upload commands. + 远程同步未包含任何下载或上传命令。 + + + Remote sync '%1' completed successfully! + 远程同步“%1”成功完成! + + + Remote sync '%1' failed: %2 + 远程同步“%1”失败:%2 + + + Error while saving database %1: %2 + 保存数据库 %1 时出错:%2 + + + Downloading... + 正在下载... + + + Uploading... + 正在上传... + + + Syncing... + 正在同步... + + + Remove passkey from entry + 从条目内移除通行密钥 + + + Do you want to remove the passkey from this entry? + 是否从此条目中移除通行密钥? + + + The database file "%1" was modified externally + 数据库文件“%1”被外部修改 + + + Do you want to load the changes? + 您要加载这些变更吗? + + + Reload database + 重新加载数据库 + + + Reloading database… + 正在重新加载数据库… + + + Reload canceled + 重新加载已取消 + + + Reload successful + 重新加载成功 + + + Reload pending user action… + 重新加载正在等待用户操作… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + 数据库文件“%1”被外部修改。<br>您想要怎样操作?<br><br>合并所有变更<br>在保存之前忽略磁盘上的变更<br>放弃未保存的变更 + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + 数据库文件“%1”被外部修改。<br>您想要怎样操作?<br><br>合并所有变更并保存<br>覆盖磁盘上的变更<br>放弃未保存的变更 + + + Database file overwritten. + 数据库文件已覆盖。 + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + 磁盘上的数据库文件无法被当前凭据解锁。<br>输入新凭据并/或提供硬件密钥以继续。 @@ -2471,10 +2912,6 @@ Disable safe saves and try again? n/a - - (encrypted) - (已加密) - Select private key 选择私钥文件 @@ -2561,6 +2998,10 @@ Would you like to correct it? Hide 隐藏 + + %n hour(s) + %n 小时 + %n week(s) %n 周 @@ -2573,9 +3014,9 @@ Would you like to correct it? %n year(s) %n 年 - - %n hour(s) - %n 小时 + + Failed to decrypt SSH key, ensure password is correct. + 解密 SSH 密钥失败,请确认密码是否正确。 @@ -2695,10 +3136,20 @@ Would you like to correct it? Add new window association 添加一个新的窗口关联 + + + + Add item + + + Remove selected window association 删除所选窗口关联 + + - + Remove item + - + Window title: 窗口标题: @@ -2723,23 +3174,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window 自定义此窗口的自动输入序列 - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - 这些设置会影响启用浏览器扩展时此条目的行为。 - General 常规 @@ -2752,26 +3189,14 @@ Would you like to correct it? Skip Auto-Submit for this entry 跳过此条目的自动提交 - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - 仅将此设置发送到浏览器的 HTTP 认证对话框。启用后,普通登录表单不会再显示此条目供选择。 - Use this entry only with HTTP Basic Auth 此条目仅用于 HTTP Basic 认证 - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - 不要将此设置发送到浏览器的 HTTP 认证对话框。启用后,HTTP 认证对话框不会再显示此条目供选择。 - Do not use this entry with HTTP Basic Auth 此条目不用于 HTTP Basic 认证 - - Additional URL's - 附加 URL - Add 添加 @@ -2784,6 +3209,22 @@ Would you like to correct it? Edit 编辑 + + These settings affect the entry's behaviour with the browser extension. + 这些设置会影响启用浏览器扩展时此条目的行为。 + + + Additional URLs + 附加 URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + 仅将此条目发送到浏览器的 HTTP 认证对话框。启用后,普通登录表单不会再显示此条目供选择。 + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + 不要将此条目发送到浏览器的 HTTP 认证对话框。启用后,HTTP 认证对话框不会再显示此条目供选择。 + EditEntryWidgetHistory @@ -2834,22 +3275,10 @@ Would you like to correct it? Notes field 备注字段 - - Toggle the checkbox to reveal the notes section. - 勾选以显示备注部分。 - Username field 用户名字段 - - Toggle notes visible - 显示或隐藏备注 - - - Notes: - 备注: - Expiration field 过期时间字段 @@ -2866,14 +3295,6 @@ Would you like to correct it? Presets 预设 - - Password: - 密码: - - - URL: - URL: - Url field URL 字段 @@ -2882,18 +3303,10 @@ Would you like to correct it? Download favicon for URL 从 URL 下载网站图标 - - Title: - 标题: - Title field 标题字段 - - Username: - 用户名: - Password field 密码字段 @@ -2902,18 +3315,42 @@ Would you like to correct it? Toggle expiration 启用或禁用过期 - - Expires: - 过期时间: - - - Tags: - 标签: - Tags list 标签列表 + + &Username: + 用户名(&U): + + + &Title: + 标题(&T): + + + &Password: + 密码(&P): + + + UR&L: + UR&L: + + + &Notes: + 备注(&N): + + + Toggle notes visibility + 显示或隐藏备注 + + + T&ags: + 标签(&A): + + + &Expires: + 过期时间(&E): + EditEntryWidgetSSHAgent @@ -2953,19 +3390,6 @@ Would you like to correct it? Private key 私钥 - - External file - 外部文件 - - - Browser for key file - 浏览密钥文件 - - - Browse… - Button for opening file dialog - 浏览... - Attachment 附件 @@ -2982,6 +3406,23 @@ Would you like to correct it? Remove from agent 从代理中删除 + + External file + 外部文件 + + + Browser for key file + 浏览密钥文件 + + + Browse… + Button for opening file dialog + 浏览... + + + Generate + 生成 + Select attachment file 选择附件文件 @@ -3006,6 +3447,10 @@ Would you like to correct it? seconds + + Clear agent + 清除代理 + EditGroupWidget @@ -3017,10 +3462,6 @@ Would you like to correct it? Icon 图标 - - Browser Integration - 浏览器集成 - Properties 属性 @@ -3037,6 +3478,10 @@ Would you like to correct it? Group has unsaved changes 群组有未保存的更改 + + Browser Integration + 浏览器集成 + Enable 启用 @@ -3052,10 +3497,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - 编辑群组 - These settings affect to the group's behaviour with the browser extension. 这些设置会影响启用浏览器扩展时此群组的行为。 @@ -3092,6 +3533,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups 切换当前群组与子群组是否不用于 HTTP 认证 + + Omit WWW subdomain from matching: + 匹配时省略 WWW 子域名: + + + Omit WWW subdomain from matching toggle for this and sub groups + 切换当前群组与子群组是否在匹配时省略 WWW 子域名 + + + Restrict matching to given browser key: + 限制与指定的浏览器密钥匹配: + + + Restrict matching to given browser key toggle for this and sub groups + 限制当前群组和子群组与指定的浏览器密钥匹配 + EditGroupWidgetKeeShare @@ -3324,10 +3781,6 @@ Supported extensions are: %1. Unable to fetch favicon. 无法获取网站图标。 - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - 您可以在“工具 -> 设置 -> 安全”中选择 DuckDuckGo 作为网站图标来源 - Existing icon selected. 已选择存在的图标。 @@ -3360,6 +3813,10 @@ Supported extensions are: %1. The following icon(s) failed: 以下图标失败: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + 您可以在“应用设置 -> 安全”中选择 DuckDuckGo 作为网站图标来源 + EditWidgetProperties @@ -3436,6 +3893,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - 副本 + + Passkey + 通行密钥 + + + Invalid conversion type: %1 + 无效的转换类型:%1 + + + Invalid conversion syntax: %1 + 无效的转换语法:%1 + + + Invalid regular expression syntax %1 +%2 + 无效的正则表达式语法 %1 +%2 + EntryAttachments @@ -3444,6 +3919,21 @@ This may cause the affected plugins to malfunction. 无法打开文件“%1” + + EntryAttachmentsDialog + + Form + 表单 + + + File name + 文件名 + + + File contents... + 文件内容… + + EntryAttachmentsModel @@ -3481,14 +3971,6 @@ This may cause the affected plugins to malfunction. Remove 删除 - - Rename selected attachment - 重命名所选附件 - - - Rename - 重命名 - Open selected attachment 打开所选附件 @@ -3515,7 +3997,7 @@ This may cause the affected plugins to malfunction. Are you sure you want to remove %n attachment(s)? - 您确定要删除 %n 个附件吗? + 您确定要删除 %n 个附件吗? Save attachments @@ -3562,12 +4044,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment 确认覆盖附件 - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - 附件“%1”已存在。 -您要覆盖已存在的附件吗? - Confirm Attachment 确认附件 @@ -3602,6 +4078,24 @@ Error: %1 保存更新的附件失败。 错误:%1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + 附件“%1”已存在。 +您要覆盖已存在的附件吗? + + + New + 新建 + + + Preview + 预览 + + + Failed to preview an attachment: Attachment not found + 预览附件失败:未找到附件 + EntryAttributesModel @@ -3796,6 +4290,14 @@ Error: %1 Has TOTP 有 TOTP + + Background Color + 背景色 + + + Group Path + 群组路径 + EntryPreviewWidget @@ -3816,8 +4318,8 @@ Error: %1 密码 - Notes - 备注 + URL + URL Expiration @@ -3836,8 +4338,8 @@ Error: %1 用户名 - URL - URL + Notes + 备注 Advanced @@ -3887,6 +4389,10 @@ Error: %1 Never 从不 + + Double click to copy value + 双击复制值 + Enabled 启用 @@ -3895,6 +4401,10 @@ Error: %1 Disabled 禁用 + + Double click to copy to clipboard + 双击复制到剪贴板 + EntryURLModel @@ -3902,6 +4412,10 @@ Error: %1 Invalid URL 无效 URL + + Duplicate URL + 重复 URL + EntryView @@ -3917,6 +4431,10 @@ Error: %1 Reset to defaults 重置为默认值 + + + %1 entry(s)... + + %1 项条目… + ExportDialog @@ -4138,6 +4656,199 @@ You can enable the DuckDuckGo website icon service in the security section of th 正在下载网站图标(%1/%2)… + + ImportWizard + + Import Wizard + 导入向导 + + + + ImportWizardPageReview + + WizardPage + 向导页 + + + Entry count: %1 + 条目数:%1 + + + Group + 群组 + + + Title + 标题 + + + Username + 用户名 + + + Password + 密码 + + + Url + URL + + + Could not load key file. + 无法加载密钥文件。 + + + Could not open remote database. Password or key file may be incorrect. + 无法打开远程数据库。密码或密钥文件可能不正确。 + + + + ImportWizardPageSelect + + Form + 表单 + + + Import File Selection + 导入文件选择 + + + Password: + 密码: + + + Key File: + 密钥文件: + + + Browse… + 浏览... + + + Import Into: + 导入到: + + + New Database + 新建数据库 + + + No unlocked databases available + 没有可用的已解锁数据库 + + + Existing Database: + 存在数据库: + + + Import File: + 导入文件: + + + Comma Separated Values (.csv) + 逗号分隔值(.csv) + + + 1Password Export (.1pux) + 1Password 导出(.1pux) + + + 1Password Vault (.opvault) + 1Password 保险库(.opvault) + + + Bitwarden (.json) + Bitwarden(.json) + + + KeePass 1 Database (.kdb) + KeePass 1 数据库(.kdb) + + + Open OPVault + 打开 OPVault + + + Select import file + 选择导入文件 + + + All files + 所有文件 + + + Key files + 密钥文件 + + + Select key file + 选择密钥文件 + + + Comma Separated Values + 逗号分隔值 + + + 1Password Export + 1Password 导出 + + + Bitwarden JSON Export + Bitwarden JSON 导出 + + + 1Password Vault + 1Password 保险库 + + + KeePass1 Database + KeePass1 数据库 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON 导出 + + + Temporary Database + 临时数据库 + + + Command: + 命令: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 示例:“sftp user@hostname”或“scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}” + + + Input: + 输入: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + 示例: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} 作为占位符,表示存储数据库的临时位置 +命令必须可以退出。如果最后一个命令是 `sftp` 则必须发送 `exit` 命令 + + + + Remote Database (.kdbx) + 远程数据库(.kdbx) + + KMessageWidget @@ -4571,17 +5282,6 @@ Line %2, column %3 打开私钥失败 - - KeePass1OpenWidget - - Import KeePass1 Database - 导入 KeePass1 数据库 - - - Unable to open the database. - 无法打开数据库。 - - KeePass1Reader @@ -4938,10 +5638,6 @@ Are you sure you want to continue with this file? &Recent Databases 最近的数据库(&R) - - &Import - 导入(&I) - &Export 导出(&E) @@ -4962,6 +5658,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + 标签 + &Groups 群组(&G) @@ -5006,34 +5706,18 @@ Are you sure you want to continue with this file? &New Database… 新建数据库(&N)... - - Create a new database - 创建一个新数据库 - &Merge From Database… 从数据库合并(&M)... - - Merge from another KDBX database - 从另一个 KDBX 数据库合并 - &New Entry… 新建条目(&N)... - - Add a new entry - 添加新条目 - &Edit Entry… 编辑条目(&E)... - - View or edit entry - 查看或编辑条目 - &Delete Entry… 删除条目(&D)... @@ -5042,10 +5726,6 @@ Are you sure you want to continue with this file? &New Group… 新建群组(&N)... - - Add a new group - 添加一个新群组 - &Edit Group… 编辑群组(&E)... @@ -5078,18 +5758,10 @@ Are you sure you want to continue with this file? Database &Reports… 数据库报告(&R)… - - Statistics, health check, etc. - 统计、健康检查等 - &Database Settings… 数据库设置(&D)... - - Database settings - 数据库设置 - &Clone Entry… 克隆条目(&C)... @@ -5098,34 +5770,18 @@ Are you sure you want to continue with this file? Move u&p 上移(&P) - - Move entry one step up - 向上移动条目 - Move do&wn 下移(&W) - - Move entry one step down - 向下移动条目 - Copy &Username 复制用户名(&U) - - Copy username to clipboard - 复制用户名到剪贴板 - Copy &Password 复制密码(&P) - - Copy password to clipboard - 复制密码到剪贴板 - &Settings 设置(&S) @@ -5159,25 +5815,13 @@ Are you sure you want to continue with this file? 标题(&T) - Copy title to clipboard - 复制标题到剪贴板 - - - &URL - &URL - - - Copy URL to clipboard - 复制 URL 到剪贴板 + Copy &URL + 复制 &URL &Notes 备注(&N) - - Copy notes to clipboard - 复制备注到剪贴板 - &CSV File… &CSV 文件... @@ -5190,26 +5834,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 数据库... - - Import a KeePass 1 database - 导入 KeePass 1 数据库 - 1Password Vault… 1Password 保险库... - - Import a 1Password Vault - 导入 1Password 保险库 - CSV File… CSV 文件... - - Import a CSV file - 导入 CSV 文件 - Show TOTP 显示 TOTP 密码 @@ -5226,6 +5858,10 @@ Are you sure you want to continue with this file? Copy &TOTP 复制 &TOTP + + Copy Password and TOTP + 复制密码和 TOTP + E&mpty recycle bin 清空回收站(&M) @@ -5250,10 +5886,6 @@ Are you sure you want to continue with this file? &Online Help 在线帮助(&O) - - Go to online documentation - 前往在线文档 - &User Guide 用户手册(&U) @@ -5298,6 +5930,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) 经典(平台原生) + + Show Menubar + 显示菜单栏 + Show Toolbar 显示工具栏 @@ -5322,6 +5958,10 @@ Are you sure you want to continue with this file? Clone Group... 克隆群组... + + &XML File… + &XML 文件… + Clear history 清空历史 @@ -5349,9 +5989,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 在使用屏幕键盘时崩溃。我们建议您使用我们的下载页面上提供的 AppImage。 + No Tags + 无标签 Restore Entry(s) @@ -5381,6 +6020,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC 退出 KeePassXC + + %1 Entry(s) + %1 项条目 + Please present or touch your YubiKey to continue… 请感应或触摸您的 YubiKey 以继续… @@ -5393,6 +6036,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? 您必须重新启动应用才能应用此设置。要现在重新启动吗? + + Allow Screen Capture + 允许屏幕截图 + + + 1Password 1PUX... + 1Password 1PUX… + + + Import a 1Password 1PUX file + 导入 1Password 1PUX 文件 + + + Import… + 导入… + + + Passkeys… + 通行密钥… + + + Import Passkey + 导入通行密钥 + + + Remote S&ync… + 远程同步(&Y)… + + + Quit Application + 退出应用 + + + Open About Dialog + 打开关于对话框 + + + Open Database + 打开数据库 + + + Create Database + 新建数据库 + + + Merge From Database + 从数据库合并 + + + Create Entry + 新建条目 + + + Edit Entry + 编辑条目 + + + Delete Entry + 删除条目 + + + Create Group + 新建群组 + + + Edit Group + 编辑群组 + + + Delete Group + 删除群组 + + + Download All Favicons + 下载所有网站图标 + + + Sort Groups A-Z + 按 A-Z 排序群组 + + + Sort Groups Z-A + 按 Z-A 排序群组 + + + Save Database As + 另存为数据库 + + + Show Database Security + 显示数据库安全 + + + Show Database Reports + 显示数据库报告 + + + Show Database Settings + 显示数据库设置 + + + Show Passkeys + 显示通行密钥 + + + Clone Entry + 克隆条目 + + + Move Entry Up + 向上移动条目 + + + Move Entry Down + 向下移动条目 + + + Copy Username + 复制用户名 + + + Copy Password + 复制密码 + + + Show Application Settings + 显示应用程序设置 + + + Show Password Generator + 显示密码生成器 + + + Remove Passkey From Entry + 从条目内移除通行密钥 + + + Perform Auto-Type: {USERNAME} + 执行自动输入:{USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + 执行自动输入:{USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + 执行自动输入:{PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + 执行自动输入:{PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + 执行自动输入:{TOTP} + + + Copy Title + 复制标题 + + + Copy URL + 复制 URL + + + Copy Notes + 复制备注 + + + Export to CSV + 导出到 CSV + + + Export to HTML + 导出到 HTML + + + Import KeePass1 Database + 导入 KeePass1 数据库 + + + Import 1Password Vault + 导入 1Passowrd 保险库 + + + Import CSV File + 导入 CSV 文件 + + + Show TOTP QR Code + 显示 TOTP 二维码 + + + Set up TOTP + 设置 TOTP + + + Empty Recycle Bin + 清空回收站 + + + Open Donation Website + 打开捐赠网站 + + + Open Bug Report + 打开错误报告 + + + Open Online Documentation + 打开在线文档 + + + Open Keyboard Shortcuts Guide + 打开键盘快捷键指南 + + + Save Database Backup + 保存数据库备份 + + + SSH Agent: Add Key + SSH 代理:添加密钥 + + + SSH Agent: Remove Key + SSH 代理:删除密钥 + + + Toggle Compact Mode + 切换紧凑模式 + + + Set Theme: Automatic + 设置主题:自动 + + + Set Theme: Light + 设置主题:亮色 + + + Set Theme: Dark + 设置主题:暗色 + + + Set Theme: Classic + 设置主题:经典 + + + Toggle Show Menubar + 切换显示菜单栏 + + + Toggle Show Toolbar + 切换显示工具栏 + + + Toggle Show Preview Panel + 切换显示预览面板 + + + Toggle Always on Top + 切换总在最前 + + + Toggle Hide Usernames + 切换隐藏用户名 + + + Toggle Hide Passwords + 切换隐藏密码 + + + Export to XML + 导出到 XML + + + Toggle Allow Screen Capture + 切换允许屏幕截图 + + + Show Group Panel + 显示群组面板 + + + Toggle Show Group Panel + 切换显示群组面板 + + + Setup Remote Sync… + 设置远程同步… + + + Password Generator + 密码生成器 + + + E&xpire Entry… + 过期条目(&X)… + + + Clear SSH Agent + 清除 SSH 代理 + + + Clear all identities in ssh-agent + 清除 ssh-agent 内的所有身份 + ManageDatabase @@ -5450,26 +6401,6 @@ We recommend you use the AppImage available on our downloads page. 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] 同步 @@ -5529,14 +6460,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. 您可以在此处调整数据库加密设置。不用担心,您随时可以在数据库设置中更改它们。 - - Advanced Settings - 高级设置 - - - Simple Settings - 简单设置 - NewDatabaseWizardPageDatabaseKey @@ -5571,6 +6494,25 @@ We recommend you use the AppImage available on our downloads page. 请填写新数据库的名称和可选的说明: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + 附件名称不能为空 + + + Attachment with the same name already exists + 同名附件已存在 + + + Save attachment + 保存附件 + + + New entry attachment + 新建条目附件 + + NixUtils @@ -5617,15 +6559,6 @@ We recommend you use the AppImage available on our downloads page. 预期长度 %1 字节的明文数据,仅得到 %2 字节 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - 读取数据库未生成实例 -%1 - - OpVaultReader @@ -5699,6 +6632,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 未知加密:%1 + + AES-256/GCM is currently not supported + AES-256/GCM 目前不支持 + Passphrase is required to decrypt this key 需要口令解密此密钥 @@ -5763,28 +6700,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key 写入私钥时遇到意外的 EOF + + (encrypted) + (已加密) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - 密码不匹配 + SSH Key Generator + SSH Key 生成器 - Passwords match so far - 密码目前匹配 + Type + 类型 - Toggle Password (%1) - 切换密码显示(%1) + Bits + 比特 - Generate Password (%1) - 生成密码(%1) + Comment + 注释 + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC: 通行密钥导出 - Warning: Caps Lock enabled! - 警告:已启用大写锁定! + Filenames will be generated with title and .passkey file extension. + 文件名将会以标题和 .passkey 扩展名生成。 + + + Export entries + 导出条目 + + + Export Selected + 导出选定 + + + Cancel + 取消 + + + Export to folder + 导出到文件夹 + + + Export the following passkey entries. + 导出以下通行密钥条目。 + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC:通行密钥导出 + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + 文件“%1.passkey”已经存在。 +您是否要覆盖它? + + + + Cannot open file + 无法打开文件 + + + Cannot open file "%1" for writing. + 无法打开文件“%1”以写入。 + + + Cannot write to file + 无法写入文件 + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - 通行密钥导入 + + + Username: %1 + 用户名:%1 + + + Group + 群组 + + + Database + 数据库 + + + Import Passkey + 导入通行密钥 + + + Import + 导入 + + + Cancel + 取消 + + + Entry + 条目 + + + Create new entry + 新建条目 + + + Relying Party: %1 + 依赖方:%1 + + + Import the following passkey: + 导入以下通行密钥: + + + Import the following passkey to this entry: + 导入以下通行密钥到此条目: + + + Default passkeys group (Imported Passkeys) + 默认通行密钥群组(导入的通行密钥) + + + + PasskeyImporter + + Passkey file + 通行密钥文件 + + + All files + 所有文件 + + + Cannot open file + 无法打开文件 + + + Cannot open file "%1" for reading. + 无法打开文件“%1”以读取。 + + + Open passkey file + 打开通行密钥文件 + + + Cannot import passkey + 无法导入通行密钥 + + + Cannot import passkey file "%1". Data is missing. + 无法导入通行密钥文件“%1”。数据缺失。 + + + Cannot import passkey file "%1". +The following data is missing: +%2 + 无法导入通行密钥文件“%1”。 +以下数据缺失: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + 无法导入通行密钥文件“%1”。私钥缺失或损坏。 @@ -5965,10 +7058,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: 也在此选择: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - 排除字符:“0”、“1”、“l”、“I”、“O”、“|”、“﹒” - Exclude look-alike characters 排除相似的字符 @@ -5993,10 +7082,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: 词数: - - Character Count: - 字符数: - Word Case: 字符大小写: @@ -6009,10 +7094,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist 添加自定义词表 - - character - 字符 - Close 关闭 @@ -6049,6 +7130,30 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit 熵:%1 比特 + + Password Quality: %1 + 密码强度:%1 + + + Poor + Password quality + 差劲 + + + Weak + Password quality + 较弱 + + + Good + Password quality + 良好 + + + Excellent + Password quality + 优秀 + Confirm Delete Wordlist 确认删除词表 @@ -6096,8 +7201,47 @@ Do you want to overwrite it? 特殊字符 - Password Quality: %1 - 密码强度:%1 + passwordLength + 密码长度 + + + Characters: %1 + 字符:%1 + + + MIXED case + 大小写混合 + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + 排除字符:“0”、“1”、“l”、“I”、“O”、“|”、“﹒”、“B”、“8”、“G”、“6” + + + + PasswordWidget + + Passwords do not match + 密码不匹配 + + + Passwords match so far + 密码目前匹配 + + + Toggle Password (%1) + 切换密码显示(%1) + + + Generate Password (%1) + 生成密码(%1) + + + Warning: Caps Lock enabled! + 警告:已启用大写锁定! + + + Quality: %1 + 质量:%1 Poor @@ -6119,6 +7263,10 @@ Do you want to overwrite it? Password quality 优秀 + + Toggle password visibility using Control + H. Open the password generator using Control + G. + 使用 Control + H 显示或隐藏密码。使用 Control + G 打开密码生成器。 + PickcharsDialog @@ -6135,6 +7283,21 @@ Do you want to overwrite it? 在字符之间按 &Tab 键 + + PreviewEntryAttachmentsDialog + + Preview entry attachment + 预览条目附件 + + + No preview available + 预览不可用 + + + Image format not supported + 图像格式不支持 + + QMessageBox @@ -6173,6 +7336,10 @@ Do you want to overwrite it? Continue 继续 + + Continue with weak password + 使用弱密码继续 + QObject @@ -6566,6 +7733,10 @@ Do you want to overwrite it? Too many arguments provided. 提供的参数过多。 + + Path of the database. + 数据库路径。 + Target decryption time in MS for the database. 数据库的目标解密时间,单位为毫秒。 @@ -6586,10 +7757,6 @@ Do you want to overwrite it? Create a new database. 创建新数据库。 - - Path of the database. - 数据库路径。 - Invalid decryption time %1. 无效解密时间 %1。 @@ -6634,6 +7801,158 @@ Do you want to overwrite it? Successfully created new database. 已成功创建新数据库。 + + Unset the password for the database. + 删除数据库的密码。 + + + Unset the key file for the database. + 删除数据库的密钥文件。 + + + Edit a database. + 编辑一个数据库。 + + + Cannot use %1 and %2 at the same time. + 无法同时使用 %1 和 %2。 + + + Could not change the database key. + 无法更改数据库密钥。 + + + Database was not modified. + 数据库未被修改。 + + + Writing the database failed: %1 + 写入数据库失败:%1 + + + Successfully edited the database. + 已成功编辑数据库。 + + + Cannot remove password: The database does not have a password. + 无法删除密码:数据库不含密码。 + + + Cannot remove file key: The database does not have a file key. + 无法删除文件密钥:数据库不含文件密钥。 + + + Loading the new key file failed: %1 + 加载新密钥文件失败:%1 + + + Found unexpected Key type %1 + 发现意料之外的密钥类型 %1 + + + Cannot remove all the keys from a database. + 无法从数据库中删除所有密钥 。 + + + Show a database's information. + 显示数据库的信息。 + + + UUID: + UUID: + + + Name: + 名称: + + + Description: + 描述: + + + Cipher: + 加密: + + + KDF: + KDF: + + + Recycle bin is enabled. + 回收站已启用。 + + + Recycle bin is not enabled. + 回收站未启用。 + + + Location + 位置 + + + Database created + 数据库创建时间 + + + Last saved + 保存时间 + + + Unsaved changes + 尚未保存修改 + + + yes + + + + no + + + + Number of groups + 群组数 + + + Number of entries + 条目数 + + + Number of expired entries + 过期条目数 + + + Unique passwords + 唯一密码 + + + Non-unique passwords + 重复密码 + + + Maximum password reuse + 密码最高重复次数 + + + Number of short passwords + 短密码总数 + + + Number of weak passwords + 弱密码总数 + + + Entries excluded from reports + 报告中已排除条目 + + + Average password length + 平均密码长度 + + + %1 characters + %1 字符 + Word count for the diceware passphrase. Diceware 口令的词数。 @@ -6657,10 +7976,6 @@ Do you want to overwrite it? Invalid word count %1 无效的词数 %1 - - The word list is too small (< 1000 items) - 词表太小(少于 1000 项) - Title for the entry. 条目的标题。 @@ -6685,10 +8000,6 @@ Do you want to overwrite it? Enter new password for entry: 输入条目新密码: - - Writing the database failed: %1 - 写入数据库失败:%1 - Successfully edited entry %1. 已成功编辑条目 %1。 @@ -6809,10 +8120,6 @@ Do you want to overwrite it? Exit interactive mode. 退出交互模式。 - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - 导出时使用的格式。可用的选项是“xml”或“csv”。默认值为“xml”。 - Exports the content of a database to standard output in the specified format. 将数据库内容按照指定的格式输出至标准输出。 @@ -6913,106 +8220,6 @@ Do you want to overwrite it? Successfully imported database. 已成功导入数据库。 - - Show a database's information. - 显示数据库的信息。 - - - UUID: - UUID: - - - Name: - 名称: - - - Description: - 描述: - - - Cipher: - 加密: - - - KDF: - KDF: - - - Recycle bin is enabled. - 回收站已启用。 - - - Recycle bin is not enabled. - 回收站未启用。 - - - Location - 位置 - - - Database created - 数据库创建时间 - - - Last saved - 保存时间 - - - Unsaved changes - 尚未保存修改 - - - yes - - - - no - - - - Number of groups - 群组数 - - - Number of entries - 条目数 - - - Number of expired entries - 过期条目数 - - - Unique passwords - 唯一密码 - - - Non-unique passwords - 重复密码 - - - Maximum password reuse - 密码最高重复次数 - - - Number of short passwords - 短密码总数 - - - Number of weak passwords - 弱密码总数 - - - Entries excluded from reports - 报告中已排除条目 - - - Average password length - 平均密码长度 - - - %1 characters - %1 字符 - Unknown command %1 未知命令 %1 @@ -7185,6 +8392,10 @@ Available commands: Show the protected attributes in clear text. 明文显示被保护的属性。 + + Show all the attributes of the entry. + 显示条目的所有属性。 + Show the attachments of the entry. 显示条目的附件。 @@ -7254,6 +8465,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 无效的 YubiKey 序号 %1 + + Please present or touch your YubiKey to continue. + 请感应或触摸您的 YubiKey 以继续。 + Enter password to encrypt database (optional): 输入用于加密数据库的密码(可选): @@ -7440,8 +8655,8 @@ CPU 架构:%2 %1 分 - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan 库的版本至少应为 2.11.x,您的版本为 %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan 库的版本至少应为 %1,您的版本为 %2.%3.%4 Cryptographic libraries: @@ -7491,18 +8706,6 @@ CPU 架构:%2 file empty 文件为空 - - malformed string - 格式异常字符串 - - - missing closing quote - 缺少闭合引号 - - - %1: (row, col) %2,%3 - %1:(行,列)%2,%3 - AES 256-bit AES 256 位 @@ -7681,14 +8884,6 @@ CPU 架构:%2 read password of the database from stdin 从标准输入读取数据库的密码 - - allow app screen recordering and screenshots - 允许应用被录像或截图 - - - Locked databases. - 已锁定数据库。 - Database failed to lock. 锁定数据库失败。 @@ -7697,6 +8892,10 @@ CPU 架构:%2 Another instance of KeePassXC is already running. 另一个 KeePassXC 实例已在运行。 + + KeePassXC is not running. No open database to lock + KeePassXC 未在运行。没有可锁定的已打开数据库 + Fatal error while testing the cryptographic functions. 在测试加密函数时发生致命错误。 @@ -7705,10 +8904,6 @@ CPU 架构:%2 KeePassXC - Error KeePassXC - 错误 - - Warning: Failed to prevent screenshots on a top level window! - 警告:在顶层窗口阻止截图失败! - Database password: 数据库密码: @@ -7732,8 +8927,312 @@ CPU 架构:%2 使用 Windows Hello 签名挑战失败。 - Please present or touch your YubiKey to continue. - 请感应或触摸您的 YubiKey 以继续。 + Warning: Failed to block screenshot capture on a top-level window. + 警告:在顶层窗口阻止屏幕截图失败。 + + + Invalid Cipher + 无效的加密方法 + + + Invalid KDF + 无效的 KDF + + + Access to all entries is denied + 对所有条目的访问已禁止 + + + allow screenshots and app recording (Windows/macOS) + 允许屏幕截图与应用录制(Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + 设置数据库的密钥文件。 +此选项已弃用,请用 --set-key-file 代替。 + + + Databases have been locked. + 数据库已被锁定。 + + + Attestation not supported + 认证不支持 + + + Credential is excluded + 凭据被排除 + + + Passkeys request canceled + 通行密钥请求被取消 + + + Invalid user verification + 无效的用户验证 + + + Empty public key + 空的公钥 + + + Invalid URL provided + 提供的 URL 无效 + + + Passkeys + 通行密钥 + + + AES initialization failed + AES 初始化失败 + + + AES encrypt failed + AES 加密失败 + + + Failed to store in Linux Keyring + 存入 Linux Keyring 失败 + + + Polkit returned an error: %1 + Polkit 返回了一个错误:%1 + + + Could not locate key in keyring + 无法在 Keyring 中定位密钥 + + + Could not read key in keyring + 无法在 Keyring 中读取密钥 + + + AES decrypt failed + AES 解密失败 + + + No Polkit authentication agent was available + 无可用的 Polkit 身份验证代理 + + + Polkit authorization failed + Polkit 授权失败 + + + No Quick Unlock provider is available + 无可用的快速解锁提供者 + + + Failed to init KeePassXC crypto. + 初始化 KeePassXC 加密失败。 + + + Failed to encrypt key data. + 加密密钥数据失败。 + + + Failed to get Windows Hello credential. + 获取 Windows Hello 凭据失败。 + + + Failed to decrypt key data. + 解密密钥数据失败。 + + + Origin is empty or not allowed + Origin 为空或不被允许 + + + Effective domain is not a valid domain + Effective Domain 不是有效的域名 + + + Origin and RP ID do not match + Origin 与 RP ID 不匹配 + + + No supported algorithms were provided + 未提供受支持的算法 + + + Wait for timer to expire + 等待计时器过期 + + + Challenge is shorter than required minimum length + 挑战短于所需最小长度 + + + user.id does not match the required length + user.id 不匹配所需长度 + + + Favorite + Tag for favorite entries + 收藏 + + + File does not exist. + 文件不存在。 + + + Cannot open file: %1 + 无法打开文件:%1 + + + Cannot parse file: %1 at position %2 + 无法解析文件:%1 在位置 %2 + + + Failed to decrypt json file: %1 + 解密 JSON 文件失败:%1 + + + Invalid encKeyValidation field + 无效的 encKeyValidation 字段 + + + Invalid cipher list within encKeyValidation field + encKeyValidation 字段内的加密方式列表无效 + + + Wrong password + 错误的密码 + + + Invalid encrypted data field + 无效的加密数据字段 + + + Invalid cipher list within encrypted data field + 加密数据字段内的加密方式列表无效 + + + Cannot initialize cipher + 无法初始化加密 + + + Cannot decrypt data + 无法解密数据 + + + Bitwarden Import + Bitwarden 导入 + + + Archived + Tag for archived entries + 归档 + + + Invalid 1PUX file format: Not a valid ZIP file. + 无效的 1PUX 文件格式:不是有效的 ZIP 文件。 + + + Invalid 1PUX file format: Missing export.data + 无效的 1PUX 文件格式:缺少 export.data + + + 1Password Import + 1Password 导入 + + + Enter Shortcut + 输入快捷键 + + + Action + 动作 + + + Shortcuts + 快捷键 + + + Unknown passkeys error + 未知通行密钥错误 + + + Invalid KDF iterations, cannot decrypt json file + 无效的 KDF 迭代数,无法解密 JSON 文件 + + + Unsupported format, ensure your Bitwarden export is password-protected + 不支持的格式,请确认您的 Bitwarden 导出文件受密码保护 + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + 仅有 PBKDF 和 Argon2 受支持,无法解密 JSON 文件 + + + Reset Shortcuts + 重置快捷键 + + + Double click an action to change its shortcut + 双击一个动作以修改其快捷键 + + + Filter... + 过滤… + + + Shortcut Conflict + 快捷键冲突 + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + 快捷键 %1 与 '%2' 冲突。是否覆盖快捷键? + + + Cannot generate valid passphrases because the wordlist is too short + 因为词表太短,无法生成有效的口令 + + + Encrypted files are not supported. + 加密文件不支持。 + + + Proton Pass Import + Proton Pass 导入 + + + Delete plugin data? + 是否删除插件数据? + + + Delete plugin data from Entry(s)? + 是否从条目中删除插件数据? + + + Passkey + 通行密钥 + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + 导出时使用的格式。可用的选项是“xml”、“csv”或“html”。默认值为“xml”。 + + + start minimized to the system tray + 启动时最小化到系统托盘 + + + malformed string, possible unescaped delimiter + 不合法的字符串,可能存在未转义的分隔符 + + + missing closing delimiter + 缺少闭合分隔符 + + + %1, row: %2, column: %3 + %1,行:%2,列:%3 + + + Tags + 标签 @@ -7770,20 +9269,39 @@ CPU 架构:%2 内部 zlib 错误: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + 命令 `%1` 未能及时完成。进程已被强制结束。 + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + 上传已合并的数据库失败。命令 `%1` 未能及时完成。进程已被强制结束。 + + + Invalid download parameters provided. + 提供的下载参数无效。 + + + Command `%1` failed to download database. + 命令 `%1` 下载数据库失败。 + + + Invalid database pointer or upload parameters provided. + 提供的数据库指针或上传参数无效。 + + + Command `%1` exited with status code: %2 + 命令 `%1` 以此状态码退出:%2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + 上传已合并的数据库失败。命令 `%1` 以此状态码退出:%2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - 从报告中排除已过期条目 - - - Show only entries which have URL set - 仅显示设置了 URL 的条目 - - - Show only entries which have browser settings in custom data - 仅显示自定义数据中有浏览器设置的条目 - Double-click entries to edit. 双击条目以编辑。 @@ -7848,44 +9366,53 @@ CPU 架构:%2 Exclude from reports 从报告中排除 + + Expire Entry(s)… + 过期条目… + + + Only show entries that have a URL + 仅显示含有 URL 的条目 + + + Only show entries that have been explicitly allowed or denied + 仅显示明确允许或禁止的条目 + + + Show expired entries + 显示过期的条目 + + + (Expired) + (已过期) + + + Delete plugin data from Entry(s)… + 从条目中删除插件数据… + ReportsWidgetHealthcheck - Exclude expired entries from the report - 从报告中排除已过期条目 + Show expired entries + 显示过期的条目 - Also show entries that have been excluded from reports - 也显示已从报告中排除的条目 + (Expired) + (已过期) Hover over reason to show additional details. Double-click entries to edit. 将鼠标指针悬停在原因上以显示其他详细信息。双击条目以编辑。 - - Bad - Password quality - 极差 - Bad — password must be changed 极差 — 必须更改密码 - - Poor - Password quality - 差劲 - Poor — password should be changed 差劲 — 应该更改密码 - - Weak - Password quality - 较弱 - Weak — consider changing the password 较弱 — 可考虑更改密码 @@ -7934,6 +9461,14 @@ CPU 架构:%2 Exclude from reports 从报告中排除 + + Expire Entry(s)… + 过期条目… + + + Show entries that have been excluded from reports + 显示已从报告中排除的条目 + ReportsWidgetHibp @@ -8029,6 +9564,77 @@ CPU 架构:%2 Exclude from reports 从报告中排除 + + Expire Entry(s)… + 过期条目… + + + + ReportsWidgetPasskeys + + Export + 导出 + + + Import + 导入 + + + List of entry URLs + 条目 URL 列表 + + + Title + 标题 + + + Path + 路径 + + + Username + 用户名 + + + URLs + URL + + + Edit Entry… + 编辑条目… + + + Delete Entry(s)… + 删除条目… + + + Relying Party + 依赖方 + + + Show expired entries + 显示过期的条目 + + + (Expired) + (已过期) + + + Export Confirmation + 导出确认 + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + 如果不加保护,通行密钥文件就很容易被窃取或盗用。您确定要继续吗? + + + Please wait, list of entries with passkeys is being updated… + 请稍等,正在更新包含通行密钥的条目列表… + + + No entries with passkeys. + 无包含通行密钥的条目。 + ReportsWidgetStatistics @@ -8203,6 +9809,14 @@ CPU 架构:%2 No agent running, cannot list identities. 代理未在运行,无法列出身份。 + + Failed to remove all SSH identities from agent. + 从代理中删除所有 SSH 身份失败。 + + + All SSH identities removed from agent. + 已从代理中删除所有 SSH 身份。 + SearchHelpWidget @@ -8269,6 +9883,10 @@ CPU 架构:%2 Search Help 搜索帮助 + + Save Search + 保存搜索 + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8343,34 +9961,10 @@ CPU 架构:%2 Confirm when passwords are retrieved by clients 客户端获得密码需要确认 - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">此设置不会覆盖 - 禁用回收站提示</span></p></body></html> - - Confirm when clients request entry deletion 客户端请求删除条目需要确认 - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>针对在搜索密码前不会解锁数据库的特定应用, - 此选项会增强兼容性。</p><p>但启用后,如果数据库不能在一定时间内解锁 - (通常为 25 秒,但应用可能会设置其他的值。), - 应用就可能会崩溃。</p></body></html> - - Prompt to unlock database before searching 搜索前提示解锁数据库 @@ -8395,6 +9989,14 @@ CPU 架构:%2 Save current changes to activate the plugin and enable editing of this section. 保存当前更改以激活插件,并启用此部分的编辑。 + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>此设置不会覆盖禁用回收站提示</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>针对在搜索密码前不会解锁数据库的特定应用,此选项会增强兼容性。</p><p>但启用后,如果数据库不能在一定时间内解锁(通常为 25 秒,但应用可能会设置其他的值。),应用就可能会崩溃。</p></body></html> + SettingsWidgetKeeShare @@ -8503,8 +10105,12 @@ CPU 架构:%2 TagModel - All - 所有 + Clear Search + 清除搜索 + + + All Entries + 所有条目 Expired @@ -8515,6 +10121,25 @@ CPU 架构:%2 弱密码 + + TagView + + Remove Search + 删除搜索 + + + Remove Tag + 删除标签 + + + Confirm Remove Tag + 确认删除标签 + + + Remove tag "%1" from all entries in this database? + 要删除数据库中所有条目包含的“%1”标签吗? + + TotpDialog @@ -8663,7 +10288,7 @@ Example: JBSWY3DPEHPK3PXP You have the latest version of KeePassXC - 您的 KeePassXC 已经是最版本 + 您的 KeePassXC 已经是最新版本 @@ -8672,26 +10297,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database 开始将您的密码安全地存储在 KeePassXC 数据库中 - - Create new database - 新建数据库 - - - Open existing database - 打开数据库 - - - Import from KeePass 1 - 从 KeePass 1 导入 - - - Import from 1Password - 从 1Password 导入 - - - Import from CSV - 从 CSV 文件导入 - Recent databases 最近的数据库 @@ -8704,6 +10309,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 欢迎使用 KeePassXC %1 + + Create Database + 新建数据库 + + + Open Database + 打开数据库 + + + Import File + 导入文件 + WinUtils @@ -8720,31 +10337,8 @@ Example: JBSWY3DPEHPK3PXP 无法注册全局快捷键 - - WindowsHello - - Failed to init KeePassXC crypto. - 初始化 KeePassXC 加密失败。 - - - Failed to encrypt key data. - 加密密钥数据失败。 - - - Failed to get Windows Hello credential. - 获取 Windows Hello 凭据失败。 - - - Failed to decrypt key data. - 解密密钥数据失败。 - - YubiKey - - %1 No interface, slot %2 - %1 号接口,插槽 %2 - General: 常规: @@ -8756,14 +10350,6 @@ Example: JBSWY3DPEHPK3PXP YubiKeyEditWidget - - Refresh hardware tokens - 刷新硬件令牌 - - - Refresh - 刷新 - Hardware key slot selection 选择硬件密钥的插槽 @@ -8796,10 +10382,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove 质询响应已设置,点击以更改或删除 - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>如果您拥有 <a href="https://www.yubico.com/">YubiKey</a> 或 <a href="https://onlykey.io">OnlyKey</a>,则可以使用它来提高安全性。</p><p>硬件密钥要求将其中一个插槽编程为 <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 质询响应</a>。</p> - Detecting hardware keys… 正在检测硬件密钥... @@ -8808,28 +10390,25 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected 未检测到硬件密钥 - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 指定的插槽无效 - %2 + Refresh hardware keys + 刷新硬件密钥 + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>如果您拥有 <a href="https://www.yubico.com/">YubiKey</a> 或 <a href="https://onlykey.io">OnlyKey</a>,则可以使用它来提高安全性。</p><p>硬件密钥要求将其中一个插槽以<a href="https://keepassxc.org/docs/#faq-yubikey-howto">质询响应</a>编程。</p> + + + Hardware keys found, but no slots are configured + 硬件密钥已找到,但未配置任何插槽 YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] 质询响应 - 插槽 %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC 接口尚未初始化。 - - Hardware key is currently in use. - 当前正在使用硬件密钥。 - Could not find or access hardware key with serial number %1. Please present it to continue. 无法找到或访问序列号为 %1 的硬件密钥。请感应后继续。 @@ -8846,6 +10425,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 完成质询响应失败,PCSC 错误码为:%1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC)%1 [%2] - 插槽 %3,%4 + + + Press + USB Challenge-Response Key interaction request + 按键 + + + Passive + USB Challenge-Response Key no interaction required + 被动 + YubiKeyInterfaceUSB @@ -8853,14 +10447,6 @@ Example: JBSWY3DPEHPK3PXP Unknown 未知 - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] 配置插槽 - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] 质询响应 - 插槽 %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8875,10 +10461,6 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB 接口尚未初始化。 - - Hardware key is currently in use. - 当前正在使用硬件密钥。 - Could not find hardware key with serial number %1. Please plug it in to continue. 找不到序列号为 %1 的硬件密钥。请插入后继续。 @@ -8895,5 +10477,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 质询响应失败,错误为:%1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - 插槽 %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - 插槽 %3,%4 + \ No newline at end of file diff --git a/share/translations/keepassxc_zh_TW.ts b/share/translations/keepassxc_zh_TW.ts index 73d3f5f51..228bfec93 100644 --- a/share/translations/keepassxc_zh_TW.ts +++ b/share/translations/keepassxc_zh_TW.ts @@ -80,6 +80,10 @@ Details 詳情 + + Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. + 在請求客戶端與 KeePassXC 同時執行期間,您的選擇會被記住。 + Remember 記住 @@ -88,10 +92,6 @@ Allow Selected 允許所選 - - Your decision will be remembered for the duration while both the requesting client AND KeePassXC are running. - 在請求客戶端與 KeePassXC 同時執行期間,您的選擇會被記住。 - Deny All && Future 禁止之後所有 @@ -122,6 +122,10 @@ Use OpenSSH 使用 OpenSSH + + Use both agents + 同時使用兩種代理 + SSH_AUTH_SOCK override SSH_AUTH_SOCK 覆蓋值 @@ -150,10 +154,6 @@ SSH Agent connection is working! SSH 代理連線正在運作! - - Use both agents - 同時使用兩種代理 - ApplicationSettingsWidget @@ -169,6 +169,10 @@ Security 安全 + + This setting cannot be enabled when minimize on unlock is enabled. + 如果啟用解鎖時最小化,則無法啟用此設置。 + Access error for config file %1 設定檔 %1 存取錯誤 @@ -213,18 +217,50 @@ You must restart the application to set the new language. Would you like to restart now? 必須重啟應用程式以使用新語言。您是否要現在重新啟動? - - Reset Settings? - 重置設定? - - - Are you sure you want to reset all general and security settings to default? - 您確定要重置所有通用和安全設定回預設值? - Select backup storage directory 選擇備份存放目錄 + + Confirm Reset + 確認重置 + + + Are you sure you want to reset all settings to default? + 您確定要重置所有設定回預設值? + + + Import KeePassXC Settings + 匯入 KeePassXC 設定 + + + Failed to import settings from %1, not a valid settings file. + 從 %1 匯入設定失敗,並非有效的設定檔案。 + + + Export KeePassXC Settings + 匯出 KeePassXC 設定 + + + Small + + + + Normal + 正常 + + + Medium + + + + Large + + + + Custom + 自定義 + ApplicationSettingsWidgetGeneral @@ -256,6 +292,10 @@ Remember previously used databases 記住之前使用過的資料庫 + + recent files + 個最近檔案 + Load previously open databases on startup 啟動時載入之前開啟的資料庫 @@ -272,25 +312,6 @@ Include beta releases when checking for updates 檢查更新時包括 beta 版本 - - On database unlock, show entries that - 解鎖資料庫時,顯示符合條件的項目 - - - have expired - On database unlock, show entries that... - 已過期 - - - days - On database unlock, show entries that will expire within %1 days - - - - will expire within - On database unlock, show entries that... - 將過期於 - File Management 檔案管理 @@ -315,22 +336,10 @@ Backup database file before saving 儲存資料庫檔案前先備份 - - Backup destination - 備份目的地 - - - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". - 指定資料庫備份檔案位置。其中 "{DB_FILENAME}" 會被替換為保存資料庫的檔案名稱,不包含副檔名。{TIME:<format>} 會被替換為備份時間,詳見 https://doc.qt.io/qt-5/qdatetime.html#toString 。<format> 預設為格式字符串 "dd_MM_yyyy_hh-mm-ss"。 - {DB_FILENAME}.old.kdbx {DB_FILENAME}.old.kdbx - - Choose... - 選擇... - Use alternative saving method (may solve problems with Dropbox, Google Drive, GVFS, etc.) 使用替代儲存方案(或許能解決諸如 Dropbox、Google Drive、GVFS 的相關問題) @@ -408,6 +417,10 @@ Toolbar button style: 工具列按鈕樣式: + + Show passwords in color + 密碼以彩色顯示 + Use monospaced font for notes 備註使用等寛字體 @@ -454,7 +467,7 @@ Hide expired entries from Auto-Type - 從自動輸入隱藏已過期的項目 + 從自動輸入隱藏過期的項目 Re-lock previously locked database after performing Auto-Type @@ -493,6 +506,71 @@ Remember last typed entry for: 記住上次輸入的項目: + + On database unlock, show entries that will expire within + 解鎖資料庫時,顯示即將過期的項目 + + + On database unlock, show entries that will expire within + 解鎖資料庫時,顯示即將過期的項目 + + + days + number of days warning for password expiration + + + + Destination format: + 目標格式: + + + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> 將被替換爲儲存資料庫的檔案名稱,不含副檔名</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> 將被替換爲指定的時間格式 (預設:dd_MM_yyyy_hh-mm-ss)</p><p>查看使用者指南了解詳情</p></body></html> + + + Choose folder... + 選擇資料夾... + + + Show confirmation before moving entries to recycle bin + 移動項目至回收桶前提示確認 + + + Copy data on double clicking field in entry view + 在項目視區中,雙擊欄位複製資料 + + + Show toolbar + 顯示工具列 + + + Show the menu bar by pressing the Alt key + 按下 Alt 鍵顯示選單列 + + + Show menubar + 顯示選單列 + + + Import settings… + 匯入設定… + + + Export settings… + 匯出設定… + + + Open browser on double clicking URL field in entry view + 在項目視區中,雙擊 URL 打開瀏覽器 + + + Font size: + 字型: + + + Font size selection + 字型大小選擇 + ApplicationSettingsWidgetSecurity @@ -546,10 +624,6 @@ Lock databases after minimizing the window 最小化視窗後鎖上資料庫 - - Require password repeat when it is visible - 密碼可見時仍要求重複輸入密碼 - Hide passwords when editing them 編輯密碼時將其隱藏 @@ -562,18 +636,6 @@ Hide passwords in the entry preview panel 隱藏項目預覽面板內的密碼 - - Hide entry notes by default - 預設隱藏項目備註 - - - Move entries to recycle bin without confirmation - 無需確認就移動項目到回收桶 - - - Enable double click to copy the username/password entry columns - 啟用滑鼠雙擊複製「使用者名稱/密碼」項目欄位 - Privacy 隱私 @@ -582,6 +644,22 @@ Use DuckDuckGo service to download website icons 使用 DuckDuckGo 服務下載網站圖示 + + Hide TOTP in the entry preview panel + 隱藏項目預覽面板上的 TOTP + + + Lock databases when switching user + 切換使用者時鎖定資料庫 + + + Lock Options + 鎖定選項 + + + Hide notes in the entry preview panel + 隱藏項目預覽面板內的備註 + AutoType @@ -626,18 +704,8 @@ 偵測到過長的延遲,最大值為 %1: %2 - Invalid conversion type: %1 - 無效的轉換類型: %1 - - - Invalid conversion syntax: %1 - 無效的轉換語法: %1 - - - Invalid regular expression syntax %1 -%2 - 無效的正規表示式語法 %1 -%2 + Entry does not have attribute for PICKCHARS: %1 + 項目不包含用於 PICKCHARS 的屬性:%1 Invalid placeholder: %1 @@ -684,10 +752,6 @@ AutoTypePlatformX11 - - Trying to send invalid keysym. - 嘗試傳送無效的 keysym。 - Sequence aborted: Caps Lock is on 序列中止:Caps Lock 為開 @@ -700,6 +764,10 @@ Unable to get valid keycode for key: 無法得到有效的 keycode,按鍵為: + + Trying to send invalid keyboard symbol. + 嘗試傳送無效的鍵盤符號。 + AutoTypeSelectDialog @@ -804,13 +872,13 @@ Ctrl+4 - 使用虛擬鍵盤(僅限 Windows)</p> Disable for this site 對此網站停用 + + Undo + 撤銷 + BrowserEntrySaveDialog - - KeePassXC-Browser Save Entry - KeePassXC 瀏覽器擴充保存項目 - Ok 確定 @@ -825,13 +893,74 @@ Please select the correct database for saving credentials. 您有數個開啟的資料庫。 請選擇要保存憑證的資料庫。 + + KeePassXC - Select Database + KeePassXC - 選擇資料庫 + + + + BrowserPasskeysConfirmationDialog + + Cancel + 取消 + + + Update + 更新 + + + Authenticate + 認證 + + + Register new + 新註冊 + + + Register + 註冊 + + + Timeout in <b>%n</b> seconds... + 在 <b>%n</b> 秒後過期… + + + Relying Party: %1 + 依賴方:%1 + + + Username: %1 + 使用者名稱:%1 + + + KeePassXC - Passkey credentials + KeePassXC - 通行密鑰憑證 + + + Add to existing entry + 加入至現有項目 + + + Existing passkey found. +Do you want to register a new passkey for: + 發現既有的通行密鑰。 +是否要註冊新的通行密鑰: + + + Select the existing passkey and press Update to replace it. + 選擇既有的通行密鑰並按下「更新」來替換它。 + + + Authenticate passkey credentials for: + 驗證通行密鑰憑證: + + + Do you want to register a passkey for: + 是否要註冊通行密鑰: + BrowserService - - KeePassXC: Create a new group - KeePassXC: 建立新群組 - A request for creating a new group "%1" has been received. Do you want to create this group? @@ -840,10 +969,6 @@ Do you want to create this group? 是否要建立此群組? - - KeePassXC: New key association request - KeePassXC: 新的金鑰關聯要求 - You have received an association request for the following database: %1 @@ -860,28 +985,16 @@ chrome-laptop。 Save and allow access 儲存並允許存取 - - KeePassXC: Overwrite existing key? - KeePassXC: 覆蓋現有金鑰? - A shared encryption key with the name "%1" already exists. Do you want to overwrite it? 已存在名稱為「%1」的共用加密金鑰。 是否要覆蓋它? - - KeePassXC: Update Entry - KeePassXC: 更新項目 - Do you want to update the information in %1 - %2? 是否要更新 %1 - %2 內的資訊? - - KeePassXC: Delete entry - KeePassXC: 刪除項目 - A request for deleting entry "%1" has been received. Do you want to delete the entry? @@ -891,50 +1004,58 @@ Do you want to delete the entry? - Converting attributes to custom data… - 正在轉換屬性至自定義資料… + %1 (Passkey) + %1(通行密鑰) - Abort - 中止 + KeePassXC - Create a new group + KeePassXC - 建立新群組 - KeePassXC: Converted KeePassHTTP attributes - KeePassXC: 轉換 KeePassHTTP 屬性 + Disable + 停用 - Successfully converted attributes from %1 entry(s). -Moved %2 keys to custom data. - 已成功轉換 %1 個項目的屬性。 -已移動 %2 組金鑰至自定義資料。 - - - Successfully moved %n keys to custom data. - 已成功移動 %n 組金鑰至自定義資料。 + KeePassXC - Overwrite existing key? + KeePassXC - 覆蓋現有金鑰? - KeePassXC: No entry with KeePassHTTP attributes found! - KeePassXC: 找不到擁有 KeePassHTTP 屬性的項目! + KeePassXC - Update Entry + KeePassXC - 更新項目 - The active database does not contain an entry with KeePassHTTP attributes. - 目前作用的資料庫中沒有任何項目擁有 KeePassHTTP 屬性。 + KeePassXC - Delete entry + KeePassXC - 刪除項目 - Don't show this warning again - 不再顯示此警告 + KeePassXC - New key association request + KeePassXC - 新的金鑰關聯請求 - KeePassXC: Legacy browser integration settings detected - KeePassXC: 偵測到過時的瀏覽器整合設定 + Passkey + 通行密鑰 - 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 瀏覽器擴充設定移動至資料庫設定。 -這是為了保持您目前的瀏覽器連結。 -您是否要現在移轉既有設定? + KeePassXC - Passkey credentials + KeePassXC - 通行密鑰憑證 + + + Register a new passkey to this entry: + 註冊新的通行密鑰至此項目: + + + KeePassXC - Update passkey + KeePassXC - 更新通行密鑰 + + + Entry already has a passkey. +Do you want to overwrite the passkey in %1 - %2? + 項目已經擁有一組通行密鑰。 +是否要覆寫位於 %1 - %2 的通行密鑰? + + + Register + 註冊 @@ -955,10 +1076,6 @@ Would you like to migrate your existing settings now? General 一般 - - Browsers installed as snaps are currently not supported. - 目前並不支援以 Snap 套件安裝的瀏覽器。 - Enable integration for these browsers: 為以下瀏覽器啟用整合功能: @@ -1018,7 +1135,7 @@ Would you like to migrate your existing settings now? Returns expired credentials. String [expired] is added to the title. - 可回傳過期的憑證。標題會加入 [已過期] 字串。 + 可回傳過期的憑證。標題會加入 [過期] 字串。 Allow returning expired credentials @@ -1130,26 +1247,6 @@ Would you like to migrate your existing settings now? Custom extension ID 自定義擴充 ID - - Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1 - 由於 Snap 的沙盒機制,您必須執行一個腳本來啟用瀏覽器整合。<br />您可以從 %1 取得這個腳本 - - - KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. %4 - 需要 KeePassXC 瀏覽器擴充才能使用整合功能。<br />可供 %1 和 %2 和 %3 下載。%4 - - - Please see special instructions for browser extension use below - 請參閱以下的具體指示,學習如何使用瀏覽器擴展 - - - <b>Error:</b> The custom proxy location cannot be found!<br/>Browser integration WILL NOT WORK without the proxy application. - <b>錯誤:</b>找不到自定義的代理位置!<br/>沒有代理程式,瀏覽器整合將 無 法 運 作 。 - - - <b>Warning:</b> The following options can be dangerous! - <b>警告:</b>以下選項存在一定風險! - Executable Files 可執行檔案 @@ -1166,6 +1263,46 @@ Would you like to migrate your existing settings now? Select native messaging host folder location 選擇本地消息主機的資料夾位置 + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + 允許 keepassxc-proxy 列出連結資料庫下的所有項目,包含標題、URL 與 UUID + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + 允許對連結資料庫下所有項目的受限制存取(忽略網站存取限制) + + + <b>Warning:</b> Only adjust these settings if necessary. + <b>警告:</b>只有在必要時才調整這些設定。 + + + The custom proxy location does not exist. + 自定義的代理位置不存在。 + + + <b>Error:</b> The custom proxy location does not exist. Correct this in the advanced settings tab. + <b>錯誤:</b>自定義的代理位置不存在。請至進階設定分頁修正它。 + + + <b>Error:</b> The installed proxy executable is missing from the expected location: %1<br/>Please set a custom proxy location in the advanced settings or reinstall the application. + <b>錯誤:</b>代理的執行檔遺失,之前曾安裝於此位置:%1<br/>請至進階設定調整自定義代理位置,或者重新安裝應用程序。 + + + Allows using insecure http://localhost with passkeys for testing purposes. + 允許通行密鑰使用不安全的 http://localhost 作為測試用途。 + + + Allow using localhost with passkeys + 允許通行密鑰使用 localhost + + + KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2 and %3. + 需要 KeePassXC 瀏覽器擴充才能使用整合功能。<br />可供 %1 和 %2 和 %3 下載。 + + + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. + 不支援用 Snap 或 Flatpak 安裝的瀏覽器;Snap 安裝的 Firefox 為例外。 + CloneDialog @@ -1188,14 +1325,6 @@ Would you like to migrate your existing settings now? CsvImportWidget - - Import CSV fields - 匯入 CSV 欄位 - - - filename - 檔案名稱 - size, rows, columns 大小、列、欄位 @@ -1304,50 +1433,43 @@ Would you like to migrate your existing settings now? Column %1 欄位 %1 - - Imported from CSV file - 已從 CSV 檔匯入 - - - Original data: - 原始資料: - - - Error(s) detected in CSV file! - 在 CSV 檔中偵測到錯誤! - [%n more message(s) skipped] [跳過額外 %n 項訊息] - Error - 錯誤 + Failed to parse CSV file: %1 + 剖析 CSV 檔失敗:%1 - CSV import: writer has errors: -%1 - CSV 匯入:寫入器出錯: -%1 + Imported from CSV file: %1 + 匯入自 CSV 檔案:%1 + + + No Title Selected + 未選擇標題 + + + No title column was selected, entries will be hard to tell apart. +Are you sure you want to import? + 未選擇標題欄,項目將難以區分。 +您確定要匯入嗎? + + + Tags + 標籤 CsvParserModel - - %1, %2, %3 - file info: bytes, rows, columns - %1、%2、%3 - - - %n byte(s) - %n 位元組 - %n row(s) + CSV row count %n 列 %n column(s) + CSV column count %n 個欄位 @@ -1400,6 +1522,14 @@ Backup database located at %2 Recycle Bin 回收桶 + + Database file read error. + 資料庫檔案讀取錯誤。 + + + No file path was provided. + 未提供檔案路徑。 + DatabaseOpenDialog @@ -1422,40 +1552,10 @@ Backup database located at %2 Password field 密碼欄位 - - Enter Additional Credentials (if any): - 輸入額外的驗證資訊(如有需要): - - - Key File: - 金鑰檔: - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - <p>除了密碼,您還可以使用一份袐密檔案來加強資料庫的安全性。使用資料庫的安全設定可以產生該檔案。</p><p>這個<strong>並不是</strong>您的 *.kdbx 資料庫檔案!<br>若您沒有金鑰檔案,則留空欄位。</p><p>點擊獲得更多資訊…</p> - - - Key file help - 金鑰檔案幫助 - Hardware key slot selection 硬體金鑰槽位選擇 - - Hardware Key: - 硬體金鑰: - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - <p>您可以使用諸如 <strong>YubiKey</strong> 或 <strong>OnlyKey</strong> 等實體安全金鑰,只要它們擁有可設置 HMAC-SHA1 的槽位。</p> -<p>點擊獲得更多資訊…</p> - - - Hardware key help - 硬體金鑰幫助 - Key file to unlock the database 解鎖資料庫的金鑰檔案 @@ -1468,14 +1568,6 @@ Backup database located at %2 Browse… 瀏覽… - - Refresh hardware tokens - 更新硬體令牌 - - - Refresh - 更新 - Unlock Database 解鎖資料庫 @@ -1538,14 +1630,6 @@ To prevent this error from appearing, you must go to "Database Settings / S Retry with empty password 以空白密碼重試 - - Failed to authenticate with Windows Hello - Windows Hello 驗證失敗 - - - Failed to authenticate with Touch ID - Touch ID 驗證失敗 - Failed to open key file: %1 開啟金鑰檔案失敗:%1 @@ -1579,22 +1663,68 @@ To prevent this error from appearing, you must go to "Database Settings / S 無法使用資料庫檔案作為金鑰檔案 - You cannot use your database file as a key file. -If you do not have a key file, please leave the field empty. - 您不能使用資料庫作為自己的金鑰檔案。 -若您沒有金鑰檔案,請將欄位留空。 + authenticate to access the database + 驗證以存取資料庫 - Detecting hardware keys… - 正在偵測硬體金鑰… + Failed to authenticate with Quick Unlock: %1 + 快速解鎖驗證失敗:%1 - No hardware keys detected - 未偵測到硬體金鑰 + Select Key File: + 選擇金鑰檔案: - Select hardware key… - 選擇硬體金鑰… + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + <p>除了密碼,您還可以使用一份袐密檔案來加強資料庫的安全性。此檔案可以透過資料庫的安全設定中生成。</p><p>這<strong>不是</strong>您的 *.kdbx 資料庫檔案!</p> + + + Use hardware key [Serial: %1] + 使用硬體金鑰 [序號: %1] + + + Use hardware key + 使用硬體金鑰 + + + Your database file is NOT a key file! +If you don't have a key file or don't know what that is, you don't have to select one. + 您的資料庫檔案「不能」作為金鑰檔案! +若您沒有任何金鑰檔案,或不清楚那是什麼,可以選擇不使用。 + + + KeePassXC database file selected + KeePassXC 資料庫檔案被選擇 + + + The file you selected looks like a database file. +A database file is NOT a key file! + +Are you sure you want to continue with this file?. + 您選擇的檔案似乎是一份資料庫檔。 +資料庫檔「不能」作為金鑰檔案! + +您確定要以此檔案繼續? + + + No hardware keys found. + 找不到硬體金鑰。 + + + Refresh Hardware Keys + 刷新硬體金鑰 + + + Click to add a key file. + 點擊以加入金鑰檔案。 + + + <a href="#" style="text-decoration: underline">I have a key file</a> + <a href="#" style="text-decoration: underline">我有一份金鑰檔案</a> + + + Hardware keys found, but no slots are configured. + 硬體金鑰已找到,但未配置任何槽位。 @@ -1606,10 +1736,6 @@ If you do not have a key file, please leave the field empty. DatabaseSettingsDialog - - Advanced Settings - 進階設定 - General 通用 @@ -1634,6 +1760,22 @@ If you do not have a key file, please leave the field empty. Maintenance 維護 + + KeeShare + KeeShare + + + Secret Service Integration + 保密服務整合 + + + Remote Sync + 遠端同步 + + + Database Settings: %1 + 資料庫設定:%1 + DatabaseSettingsWidgetBrowser @@ -1641,18 +1783,6 @@ If you do not have a key file, please leave the field empty. KeePassXC-Browser settings KeePassXC 瀏覽器擴充設定 - - Convert KeePassHTTP data - 轉換 KeePassHTTP 資料 - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - 將舊版 KeePassHTTP 屬性轉換為相容於 KeePassXC-Browser 的自定義資料 - - - Refresh database root group ID - 更新資料庫的根群組 ID - Disconnect all browsers 中斷與所有瀏覽器的連結 @@ -1661,6 +1791,10 @@ If you do not have a key file, please leave the field empty. Forget all site-specific settings on entries 遺忘項目的網站個別設定 + + Refresh database root group ID + 刷新資料庫的根群組 ID + Stored keys 已保存金鑰 @@ -1709,18 +1843,10 @@ This may prevent connection to the browser plugin. 真的要中斷與所有瀏覽器的連結? 這可能導致與瀏覽器插件的連結受阻。 - - KeePassXC: No keys found - KeePassXC: 找不到金鑰 - No shared encryption keys found in KeePassXC settings. 在 KeePassXC 設定中找不到共享加密金鑰。 - - KeePassXC: Removed keys from database - KeePassXC: 從資料庫移除金鑰 - Successfully removed %n encryption key(s) from KeePassXC settings. 成功從 KeePassXC 設定中移除 %n 組加密金鑰。 @@ -1739,42 +1865,44 @@ Permissions to access entries will be revoked. Abort 中止 - - KeePassXC: Removed permissions - KeePassXC: 已移除權限 - Successfully removed permissions from %n entry(s). 成功從 %n 個項目移除權限。 - - KeePassXC: 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 convert all legacy browser integration data to the latest standard? -This is necessary to maintain compatibility with the browser plugin. - 真的要將所有過時的瀏覽器整合資料轉換至最新標準? -這是為了維持與瀏覽器插件的相容性。 - Refresh database ID - 更新資料庫 ID + 刷新資料庫 ID Do you really want refresh the database ID? This is only necessary if your database is a copy of another and the browser extension cannot connect. - 真的要更新資料庫的 ID? + 真的要刷新資料庫的 ID? 只有當資料庫屬於另一份複本,且瀏覽器擴充無法連結時,才有必要進行。 + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + 將舊版 KeePassHTTP 屬性轉換為相容於 KeePassXC-Browser 的自定義資料 + + + No keys found + 未找到金鑰 + + + Removed keys from database + 從資料庫移除金鑰 + + + Removed permissions + 已移除權限 + + + No entry with permissions found! + 找不到擁有權限的項目! + DatabaseSettingsWidgetDatabaseKey @@ -1814,6 +1942,18 @@ Are you sure you want to continue without a password? Failed to change database credentials 更改資料庫憑證失敗 + + Weak password + 弱密碼 + + + This is a weak password! For better protection of your secrets, you should choose a stronger password. + 這是一個弱密碼!為了更好地保護您的祕密,您應該選擇更強的密碼。 + + + The provided password does not meet the minimum quality requirement. + 提供的密碼未達到最低強度要求。 + DatabaseSettingsWidgetEncryption @@ -1821,14 +1961,6 @@ Are you sure you want to continue without a password? Decryption Time: 解密時間: - - Change existing decryption time - 更改目前解密時間 - - - Change - 更改 - Decryption time in seconds 解密時間,以秒計算 @@ -1909,11 +2041,6 @@ Are you sure you want to continue without a password? KDBX 3 KDBX 3 - - unchanged - Database decryption time is unchanged - 不變 - Number of rounds too high Key transformation rounds @@ -1966,6 +2093,18 @@ If you keep this number, your database will not be protected from brute force at Threads for parallel execution (KDF settings) 執行緒 + + Encryption Settings: + 加密設定: + + + Basic + 基本 + + + Advanced + 進階 + DatabaseSettingsWidgetFdoSecrets @@ -2024,18 +2163,10 @@ If you keep this number, your database will not be protected from brute force at Maximum number of history items per entry 每個項目的最大歷史記錄數 - - Max. history items: - 最大歷史記錄數: - Maximum size of history per entry 每個項目的最大歷史記錄大小 - - Max. history size: - 最大歷史記錄大小: - MiB MiB @@ -2066,6 +2197,108 @@ This action is not reversible. (old) (舊) + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. + 儲存此設定,或編輯一個項目時, +將從時間最舊的歷史項開始移除, +直到該項目可保留的歷史項 +不超過指定的數量為止。 + + + Limit the amount of history items per entry to: + 將每個項目的歷史數限制在: + + + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. + 儲存此設定,或編輯一個項目時, +將從時間最舊的歷史項開始移除, +直到該項目所有歷史項的使用空間 +不超過指定的大小為止。 + + + Limit the total size of history items per entry to: + 將每個項目的歷史總大小限制在: + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + 將項目移動至「回收桶」群組 +而不是直接從資料庫中刪除它們。 +在「回收桶」刪除的項目將 +直接移除自資料庫。 + + + Autosave delay since last change + 修改後自動儲存延遲 + + + Autosave delay + 自動儲存延遲 + + + Autosave delay since last change in minutes + 修改後自動儲存延遲,以分鐘計 + + + min + + + + Autosave delay since last change checkbox + 自動儲存延遲勾選框 + + + Public Database Metadata + 公開資料庫詮釋資料 + + + Warning: the following settings are not encrypted. + 警告:以下設定並未被加密。 + + + Display name: + 顯示名稱: + + + Publically visible display name used on the unlock dialog + 公開可見的顯示名稱,於解鎖對話框 + + + Database public display name + 資料庫的公開顯示名稱 + + + Display color: + 顯示顏色: + + + Publically visible color used on the unlock dialog + 公開可見的顏色,於解鎖對話框 + + + Database public display color chooser + 資料庫的公開顯示顏色選擇器 + + + Clear + 清除 + + + Display icon: + 顯示圖示: + + + Select Database Icon + 選擇資料庫圖示 + DatabaseSettingsWidgetKeeShare @@ -2127,7 +2360,7 @@ This action is not reversible. Custom Icons Are In Use - 正在使用自定義圖示 + 正在使用的自定義圖示 All custom icons are in use by at least one entry or group. @@ -2161,6 +2394,141 @@ This action is not reversible. 資料庫描述欄位 + + DatabaseSettingsWidgetRemote + + Sync Commands + 同步指令 + + + Remove + 移除 + + + Command Settings + 指令設定 + + + Name + 名稱 + + + Save + 儲存 + + + Download + 下載 + + + Command: + 指令: + + + Download command field + 下載指令欄 + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 範例:"sftp user@hostname" 或者 "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + 輸入: + + + Download input field + 下載輸入欄 + + + Upload + 上傳 + + + Upload command field + 上傳指令欄 + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + 範例:"sftp user@hostname" 或者 "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + Upload input field + 上傳輸入欄 + + + Name cannot be empty. + 名稱不可爲空。 + + + Test + 測試 + + + Download command cannot be empty. + 下載命令不可爲空。 + + + Download failed with error: %1 + 下載失敗,錯誤:%1 + + + Download finished, but file %1 could not be found. + 下載完成,但無法找到檔案 %1。 + + + Download successful. + 下載成功。 + + + Save Remote Settings + 儲存遠端設定 + + + You have unsaved changes. Do you want to save them? + 您有未保存的更改。是否要保存它們? + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 範例: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} 作為占位符,表示保存資料庫的臨時位置 +命令必須可以退出。如果最後一個指令爲 `sftp` 則必須發送 `exit` 指令 + + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + 範例: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} 作為占位符,表示保存資料庫的臨時位置 +命令必須可以退出。如果最後一個指令爲 `sftp` 則必須發送 `exit` 指令 + + + + Timeout: + 超時: + + + seconds + + + DatabaseTabWidget @@ -2193,26 +2561,10 @@ This is definitely a bug, please report it to the developers. CSV file CSV 檔 - - Select CSV file - 選擇 CSV 檔 - Merge database 合併資料庫 - - KeePass 1 database - KeePass 1 資料庫 - - - Open KeePass 1 database - 開啟 KeePass 1 資料庫 - - - Open OPVault - 開啟 OPVault - Export database to CSV file 匯出資料庫至 CSV 檔 @@ -2225,6 +2577,18 @@ This is definitely a bug, please report it to the developers. Writing the HTML file failed. 寫入 HTML 檔失敗。 + + Export database to XML file + 匯出資料庫至 XML 檔 + + + XML file + XML 檔 + + + Writing the XML file failed + 寫入 XML 檔失敗 + Export Confirmation 匯出確認 @@ -2233,26 +2597,22 @@ This is definitely a bug, please report it to the developers. You are about to export your database to an unencrypted file. This will leave your passwords and sensitive information vulnerable! Are you sure you want to continue? 您正要匯出資料庫至未加密的檔案。您的密碼及敏感資料將不受任何保護!您確定要繼續進行? - - New Database - 新資料庫 - - - %1 [New Database] - Database tab name modifier - %1 [新資料庫] - %1 [Locked] Database tab name modifier %1 [已鎖定] + + %1 [Temporary] + Database tab name modifier + %1 [臨時] + DatabaseWidget - Database Tags - 資料庫標籤 + Searches and Tags + 搜索與標籤 Searching… @@ -2300,7 +2660,11 @@ This is definitely a bug, please report it to the developers. Expired entries - 已過期項目 + 過期項目 + + + Entries expiring within %1 day(s) + 將在 %1 天內過期的項目 No current database. @@ -2326,6 +2690,18 @@ This is definitely a bug, please report it to the developers. No Results 無結果 + + Save + 儲存 + + + Enter a unique name or overwrite an existing search from the list: + 輸入唯一名稱,或是覆寫清單中已存在的搜索: + + + Save Search + 儲存搜索 + Lock Database? 鎖定資料庫? @@ -2354,26 +2730,6 @@ Save changes? 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? - 資料庫檔案已被修改,且您有尚未儲存的變更。 -是否合併您的變更? - - - Could not open the new database file while attempting to autoreload. -Error: %1 - 嘗試自動重新載入,無法開啓新的資料庫檔案。 -錯誤:%1 - Disable safe saves? 停用安全存檔? @@ -2416,9 +2772,94 @@ Disable safe saves and try again? Could not find database file: %1 未找到資料庫檔案:%1 - - Entries expiring within %1 day(s) - 將在 %1 天內過期的項目 + + New Database + 新資料庫 + + + %1 [New Database] + Database tab name modifier + %1 [新資料庫] + + + Remote Sync did not contain any download or upload commands. + 遠端同步未包含任何下載或上傳指令。 + + + Remote sync '%1' completed successfully! + 遠端同步「%1」成功完成! + + + Remote sync '%1' failed: %2 + 遠端同步「%1」失敗:%2 + + + Error while saving database %1: %2 + 儲存資料庫 %1 時發生錯誤:%2 + + + Downloading... + 正在下載... + + + Uploading... + 正在上傳... + + + Syncing... + 正在同步... + + + Remove passkey from entry + 從項目移除通行密鑰 + + + Do you want to remove the passkey from this entry? + 是否要從此項目移除通行密鑰? + + + The database file "%1" was modified externally + 資料庫檔案「%1」被外部更動 + + + Do you want to load the changes? + 是否要載入變更? + + + Reload database + 重載資料庫 + + + Reloading database… + 正在重載資料庫… + + + Reload canceled + 重載取消 + + + Reload successful + 重載成功 + + + Reload pending user action… + 重載等待使用者行動… + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes<br>Ignore the changes on disk until save<br>Discard unsaved changes + 資料庫檔案「%1」曾被外部修改過 。<br>您希望如何進行?<br><br>合併所有變更<br>儲存前先忽略磁碟上的變更<br>丟棄未儲存的變更 + + + The database file "%1" was modified externally.<br>How would you like to proceed?<br><br>Merge all changes then save<br>Overwrite the changes on disk<br>Discard unsaved changes + 資料庫檔案「%1」曾被外部修改過 。<br>您希望如何進行?<br><br>合併所有變更並儲存<br>覆寫磁碟上的變更<br>丟棄未儲存的變更 + + + Database file overwritten. + 資料庫檔案被覆寫。 + + + Database file on disk cannot be unlocked with current credentials.<br>Enter new credentials and/or present hardware key to continue. + 磁碟上的資料庫檔案無法被現有憑證解鎖。<br>輸入新的憑證並/或出示硬體金鑰以繼續。 @@ -2471,10 +2912,6 @@ Disable safe saves and try again? n/a - - (encrypted) - (已加密) - Select private key 選擇私密金鑰 @@ -2561,6 +2998,10 @@ Would you like to correct it? Hide 隱藏 + + %n hour(s) + %n 小時 + %n week(s) %n 個禮拜 @@ -2573,9 +3014,9 @@ Would you like to correct it? %n year(s) %n 年 - - %n hour(s) - %n 小時 + + Failed to decrypt SSH key, ensure password is correct. + 解密 SSH 金鑰失敗,確認密碼是否正確。 @@ -2638,7 +3079,7 @@ Would you like to correct it? If checked, the entry will not appear in reports like Health Check and HIBP even if it doesn't match the quality requirements. - 勾選後,項目將不會出現在「健康檢查」或 HIBP 等報告,即使它不符合品質要求。 + 勾選後,項目將不會出現在「健康檢查」或 HIBP 等報告,即使它不符合強度要求。 Exclude from database reports @@ -2695,10 +3136,20 @@ Would you like to correct it? Add new window association 加入新的視窗關聯 + + + + Add item + + + Remove selected window association 移除所選的視窗關聯 + + - + Remove item + - + Window title: 視窗標題: @@ -2723,23 +3174,9 @@ Would you like to correct it? Custom Auto-Type sequence for this window 自定義此視窗的自動輸入序列 - - + - Add item - + - - - - - Remove item - - - EditEntryWidgetBrowser - - These settings affect to the entry's behaviour with the browser extension. - 這些設定影響了項目在瀏覽器擴充下的行為。 - General 一般 @@ -2752,26 +3189,14 @@ Would you like to correct it? Skip Auto-Submit for this entry 為此項目跳過自動送出 - - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. - 只有出現 HTTP 基本認證對話框才會傳送此設定至瀏覽器。啟用之後,將不會在一般的登入表格顯示此項目的選項。 - Use this entry only with HTTP Basic Auth 對此項目只使用 HTTP 基本認證 - - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. - 對 HTTP 基本認證對話框,不要傳送此設定至瀏覽器。啟用之後,HTTP 基本認證對話框將不會在選項中顯示此項目。 - Do not use this entry with HTTP Basic Auth HTTP 基本認證不要使用此項目 - - Additional URL's - 其他 URL - Add 加入 @@ -2784,6 +3209,22 @@ Would you like to correct it? Edit 編輯 + + These settings affect the entry's behaviour with the browser extension. + 這些設定影響了項目在瀏覧器擴充下的行為。 + + + Additional URLs + 其他 URL + + + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + 僅將此項目傳送到瀏覽器的 HTTP 認證對話框。啟用後,普通登入表格將不再顯示此項目供選擇。 + + + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + 不要將此項目傳送到瀏覽器的 HTTP 認證對話框。啟用後,HTTP 認證對話框將不再顯示此項目供選擇。 + EditEntryWidgetHistory @@ -2834,22 +3275,10 @@ Would you like to correct it? Notes field 備註欄位 - - Toggle the checkbox to reveal the notes section. - 切換核取方塊以揭示備註欄位。 - Username field 使用者名稱欄位 - - Toggle notes visible - 切換備註可見性 - - - Notes: - 附註: - Expiration field 過期欄位 @@ -2866,14 +3295,6 @@ Would you like to correct it? Presets 預先定義 - - Password: - 密碼: - - - URL: - URL: - Url field URL 欄位 @@ -2882,38 +3303,54 @@ Would you like to correct it? Download favicon for URL 下載 URL 的網站圖標 - - Title: - 標題: - Title field 標題欄位 - - Username: - 使用者名稱: - Password field 密碼欄位 Toggle expiration - 切換過期時間 - - - Expires: - 過期: - - - Tags: - 標籤: + 啟用或停用過期 Tags list 標籤清單 + + &Username: + 使用者名稱(&U): + + + &Title: + 標題(&T): + + + &Password: + 密碼(&P): + + + UR&L: + UR&L: + + + &Notes: + 備註(&N): + + + Toggle notes visibility + 顯示或隱藏備註 + + + T&ags: + 標籤(&A): + + + &Expires: + 過期時間(&E): + EditEntryWidgetSSHAgent @@ -2953,19 +3390,6 @@ Would you like to correct it? Private key 私密金鑰 - - External file - 外部檔案 - - - Browser for key file - 瀏覽金鑰檔案 - - - Browse… - Button for opening file dialog - 瀏覽… - Attachment 附件 @@ -2982,6 +3406,23 @@ Would you like to correct it? Remove from agent 從代理刪除 + + External file + 外部檔案 + + + Browser for key file + 瀏覽金鑰檔案 + + + Browse… + Button for opening file dialog + 瀏覽… + + + Generate + 產生 + Select attachment file 選擇附件檔案 @@ -3006,6 +3447,10 @@ Would you like to correct it? seconds + + Clear agent + 清除代理 + EditGroupWidget @@ -3017,10 +3462,6 @@ Would you like to correct it? Icon 圖示 - - Browser Integration - 瀏覽器整合 - Properties 屬性 @@ -3037,6 +3478,10 @@ Would you like to correct it? Group has unsaved changes 群組有尚未儲存的更改 + + Browser Integration + 瀏覽器整合 + Enable 啟用 @@ -3052,10 +3497,6 @@ Would you like to correct it? EditGroupWidgetBrowser - - Edit Group - 編輯群組 - These settings affect to the group's behaviour with the browser extension. 這些設定影響了群組在瀏覽器擴充下的行為。 @@ -3092,6 +3533,22 @@ Would you like to correct it? Do not use HTTP Auth toggle for this and sub groups 切換目前群組與其子群組是否不使用 HTTP 認證 + + Omit WWW subdomain from matching: + 匹配時省略 WWW 子域名: + + + Omit WWW subdomain from matching toggle for this and sub groups + 切換目前群組與其子群組是否在匹配時省略 WWW 子域名 + + + Restrict matching to given browser key: + 限制與指定的瀏覽器金鑰匹配: + + + Restrict matching to given browser key toggle for this and sub groups + 限制群組和其子群組與指定的瀏覽器金鑰匹配 + EditGroupWidgetKeeShare @@ -3211,7 +3668,7 @@ Supported extensions are: %1. Toggle expiration - 切換過期時間 + 啟用或停用過期 Expires: @@ -3243,7 +3700,7 @@ Supported extensions are: %1. Notes: - 附註: + 備註: Default auto-type sequence field @@ -3324,10 +3781,6 @@ Supported extensions are: %1. Unable to fetch favicon. 無法擷取網站圖標。 - - You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security - 您可以到「工具」->「設定」->「安全」啟用 DuckDuckGo 的網站圖示服務 - Existing icon selected. 選擇了已存在的圖示。 @@ -3360,6 +3813,10 @@ Supported extensions are: %1. The following icon(s) failed: 以下圖示失敗: + + You can enable the DuckDuckGo website icon service under Application Settings -> Security + 您可以在「應用程式設定」->「安全」啟用 DuckDuckGo 網站圖示服務 + EditWidgetProperties @@ -3436,6 +3893,24 @@ This may cause the affected plugins to malfunction. %1 - Clone %1 - 複製 + + Passkey + 通行密鑰 + + + Invalid conversion type: %1 + 無效的轉換類型: %1 + + + Invalid conversion syntax: %1 + 無效的轉換語法: %1 + + + Invalid regular expression syntax %1 +%2 + 無效的正規表示式語法 %1 +%2 + EntryAttachments @@ -3444,6 +3919,21 @@ This may cause the affected plugins to malfunction. 無法開啟檔案「%1」 + + EntryAttachmentsDialog + + Form + 表單 + + + File name + 檔案名稱 + + + File contents... + 檔案內容... + + EntryAttachmentsModel @@ -3481,14 +3971,6 @@ This may cause the affected plugins to malfunction. Remove 移除 - - Rename selected attachment - 重新命名所選附件 - - - Rename - 重新命名 - Open selected attachment 開啟所選附件 @@ -3563,12 +4045,6 @@ This may cause the affected plugins to malfunction. Confirm Overwrite Attachment 確認覆蓋附件 - - Attachment "%1" already exists. -Would you like to overwrite the existing attachment? - 附件「%1」已存在。 -是否要覆改既存的附件? - Confirm Attachment 確認附件 @@ -3602,6 +4078,24 @@ Error: %1 儲存更新的附件失敗。 錯誤:%1 + + Attachment "%1" already exists. +Would you like to overwrite the existing attachment? + 附件「%1」已存在。 +是否要覆改既存的附件? + + + New + + + + Preview + 預覽 + + + Failed to preview an attachment: Attachment not found + 預覽附件失敗:找不到附件 + EntryAttributesModel @@ -3796,6 +4290,14 @@ Error: %1 Has TOTP 有 TOTP + + Background Color + 背景顏色 + + + Group Path + 群組路徑 + EntryPreviewWidget @@ -3816,8 +4318,8 @@ Error: %1 密碼 - Notes - 備註 + URL + URL Expiration @@ -3836,8 +4338,8 @@ Error: %1 使用者名稱 - URL - URL + Notes + 備註 Advanced @@ -3887,6 +4389,10 @@ Error: %1 Never 從不 + + Double click to copy value + 雙擊可複製值 + Enabled 啟用 @@ -3895,6 +4401,10 @@ Error: %1 Disabled 停用 + + Double click to copy to clipboard + 雙擊以複製到剪貼板 + EntryURLModel @@ -3902,6 +4412,10 @@ Error: %1 Invalid URL 無效的 URL + + Duplicate URL + 重複 URL + EntryView @@ -3917,6 +4431,10 @@ Error: %1 Reset to defaults 重置為預設值 + + + %1 entry(s)... + + %1 項目... + ExportDialog @@ -4138,6 +4656,199 @@ You can enable the DuckDuckGo website icon service in the security section of th 正在下載網站圖標 (%1/%2)… + + ImportWizard + + Import Wizard + 匯入精靈 + + + + ImportWizardPageReview + + WizardPage + 嚮導頁 + + + Entry count: %1 + 項目數:%1 + + + Group + 群組 + + + Title + 標題 + + + Username + 使用者名稱 + + + Password + 密碼 + + + Url + Url + + + Could not load key file. + 無法載入金鑰檔。 + + + Could not open remote database. Password or key file may be incorrect. + 無法開啟遠端資料庫。密碼或金鑰檔可能不正確。 + + + + ImportWizardPageSelect + + Form + 表單 + + + Import File Selection + 匯入檔案選擇 + + + Password: + 密碼: + + + Key File: + 金鑰檔: + + + Browse… + 瀏覽… + + + Import Into: + 匯入至: + + + New Database + 新資料庫 + + + No unlocked databases available + 沒有可用的已解鎖資料庫 + + + Existing Database: + 存在資料庫: + + + Import File: + 匯入檔案: + + + Comma Separated Values (.csv) + 逗號分隔值 (.csv) + + + 1Password Export (.1pux) + 1Password 匯出 (.1pux) + + + 1Password Vault (.opvault) + 1Password 保險庫 (.opvault) + + + Bitwarden (.json) + Bitwarden (.json) + + + KeePass 1 Database (.kdb) + KeePass 1 資料庫 (.kdb) + + + Open OPVault + 開啟 OPVault + + + Select import file + 選擇匯入檔案 + + + All files + 所有檔案 + + + Key files + 金鑰檔案 + + + Select key file + 選擇金鑰檔案 + + + Comma Separated Values + 逗號分隔值 + + + 1Password Export + 1Password 匯出 + + + Bitwarden JSON Export + Bitwarden JSON 匯出 + + + 1Password Vault + 1Password 保險庫 + + + KeePass1 Database + KeePass1 資料庫 + + + Proton Pass (.json) + Proton Pass (.json) + + + Proton Pass JSON Export + Proton Pass JSON 匯出 + + + Temporary Database + 臨時資料庫 + + + Command: + 指令: + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + 範例:"sftp user@hostname" 或者 "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + Input: + 輸入: + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + 範例: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} 作為占位符,表示保存資料庫的臨時位置 +命令必須可以退出。如果最後一個指令爲 `sftp` 則必須發送 `exit` 指令 + + + + Remote Database (.kdbx) + 遠端資料庫 (.kdbx) + + KMessageWidget @@ -4572,17 +5283,6 @@ Line %2, column %3 無法打開私密金鑰 - - KeePass1OpenWidget - - Import KeePass1 Database - 匯入 KeePass1 資料庫 - - - Unable to open the database. - 無法開啟資料庫。 - - KeePass1Reader @@ -4939,10 +5639,6 @@ Are you sure you want to continue with this file? &Recent Databases 最近的資料庫 (&R) - - &Import - 匯入 (&I) - &Export 匯出 (&E) @@ -4963,6 +5659,10 @@ Are you sure you want to continue with this file? TOTP TOTP + + Tags + 標籤 + &Groups 群組 (&G) @@ -5007,34 +5707,18 @@ Are you sure you want to continue with this file? &New Database… 新建資料庫 (&N)… - - Create a new database - 建立新資料庫 - &Merge From Database… 從資料庫合併 (&M)… - - Merge from another KDBX database - 與其他 KDBX 資料庫合併 - &New Entry… 新建項目 (&N)… - - Add a new entry - 加入新項目 - &Edit Entry… 編輯項目 (&E)… - - View or edit entry - 檢視或編輯項目 - &Delete Entry… 刪除項目 (&D)… @@ -5043,10 +5727,6 @@ Are you sure you want to continue with this file? &New Group… 新建群組 (&N)… - - Add a new group - 加入新群組 - &Edit Group… 編輯群組 (&E)… @@ -5079,18 +5759,10 @@ Are you sure you want to continue with this file? Database &Reports… 資料庫報告 (&R)… - - Statistics, health check, etc. - 資料統計與健康檢查等 - &Database Settings… 資料庫設定 (&D)… - - Database settings - 資料庫設定 - &Clone Entry… 複製項目 (&C)… @@ -5099,34 +5771,18 @@ Are you sure you want to continue with this file? Move u&p 上移 (&P) - - Move entry one step up - 將項目向上移動一步 - Move do&wn 下移 (&W) - - Move entry one step down - 將項目向下移動一步 - Copy &Username 複製使用者名稱 (&U) - - Copy username to clipboard - 將使用者名稱複製到剪貼簿 - Copy &Password 複製密碼 (&P) - - Copy password to clipboard - 將密碼複製到剪貼簿 - &Settings 設定 (&S) @@ -5160,25 +5816,13 @@ Are you sure you want to continue with this file? 標題 (&T) - Copy title to clipboard - 將標題複製到剪貼簿 - - - &URL - &URL - - - Copy URL to clipboard - 將 URL 複製到剪貼簿 + Copy &URL + 複製 &URL &Notes 備註 (&N) - - Copy notes to clipboard - 將備註複製到剪貼簿 - &CSV File… &CSV 檔… @@ -5191,26 +5835,14 @@ Are you sure you want to continue with this file? KeePass 1 Database… KeePass 1 資料庫… - - Import a KeePass 1 database - 匯入 KeePass 1 資料庫 - 1Password Vault… 1Password 保險庫… - - Import a 1Password Vault - 匯入 1Password 保險庫 - CSV File… CSV 檔… - - Import a CSV file - 匯入 CSV 檔案 - Show TOTP 顯示 TOTP @@ -5227,6 +5859,10 @@ Are you sure you want to continue with this file? Copy &TOTP 複製 &TOTP + + Copy Password and TOTP + 複製密碼與 TOTP + E&mpty recycle bin 清空回收桶 (&M) @@ -5245,16 +5881,12 @@ Are you sure you want to continue with this file? Open Getting Started Guide - 開啟「開始使用」指南 + 打開「開始使用」指南 &Online Help 線上幫助 (&O) - - Go to online documentation - 前往線上文件 - &User Guide 使用者指南 (&U) @@ -5281,7 +5913,7 @@ Are you sure you want to continue with this file? Compact Mode - 緊緻模式 + 緊湊模式 Automatic @@ -5299,6 +5931,10 @@ Are you sure you want to continue with this file? Classic (Platform-native) 經典(平台原生) + + Show Menubar + 顯示選單列 + Show Toolbar 顯示工具列 @@ -5323,6 +5959,10 @@ Are you sure you want to continue with this file? Clone Group... 複製群組... + + &XML File… + &XML 檔… + Clear history 清除歷史記錄 @@ -5350,10 +5990,8 @@ Expect some bugs and minor issues, this version is meant for testing purposes. - 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 與螢幕鍵盤崩潰。 -建議您使用我們下載頁面上提供的 AppImage。 + No Tags + 無標籤 Restore Entry(s) @@ -5383,6 +6021,10 @@ We recommend you use the AppImage available on our downloads page. Quit KeePassXC 退出 KeePassXC + + %1 Entry(s) + %1 個項目 + Please present or touch your YubiKey to continue… 請感應或接觸您的 YubiKey 以繼續… @@ -5395,6 +6037,314 @@ We recommend you use the AppImage available on our downloads page. You must restart the application to apply this setting. Would you like to restart now? 必須重啟應用程式來套用此設定。您是否要現在重新啟動? + + Allow Screen Capture + 允許螢幕截圖 + + + 1Password 1PUX... + 1Password 1PUX... + + + Import a 1Password 1PUX file + 匯入 1Password 1PUX 檔案 + + + Import… + 匯入… + + + Passkeys… + 通行密鑰… + + + Import Passkey + 匯入通行密鑰 + + + Remote S&ync… + 遠端同步(&Y)… + + + Quit Application + 退出應用程式 + + + Open About Dialog + 打開關於對話框 + + + Open Database + 開啟資料庫 + + + Create Database + 建立資料庫 + + + Merge From Database + 從資料庫合併 + + + Create Entry + 建立項目 + + + Edit Entry + 編輯項目 + + + Delete Entry + 刪除項目 + + + Create Group + 建立群組 + + + Edit Group + 編輯群組 + + + Delete Group + 刪除群組 + + + Download All Favicons + 下載所有網站圖標 + + + Sort Groups A-Z + 按 A-Z 排序分組 + + + Sort Groups Z-A + 按 Z-A 排序分組 + + + Save Database As + 儲存資料庫為 + + + Show Database Security + 顯示資料庫安全 + + + Show Database Reports + 顯示資料庫報告 + + + Show Database Settings + 顯示資料庫設定 + + + Show Passkeys + 顯示通行密鑰 + + + Clone Entry + 複製項目 + + + Move Entry Up + 向上移動項目 + + + Move Entry Down + 向下移動項目 + + + Copy Username + 複製使用者名稱 + + + Copy Password + 複製密碼 + + + Show Application Settings + 顯示應用程式設定 + + + Show Password Generator + 顯示密碼產生器 + + + Remove Passkey From Entry + 從項目移除通行密鑰 + + + Perform Auto-Type: {USERNAME} + 執行自動輸入:{USERNAME} + + + Perform Auto-Type: {USERNAME}{ENTER} + 執行自動輸入:{USERNAME}{ENTER} + + + Perform Auto-Type: {PASSWORD} + 執行自動輸入:{PASSWORD} + + + Perform Auto-Type: {PASSWORD}{ENTER} + 執行自動輸入:{PASSWORD}{ENTER} + + + Perform Auto-Type: {TOTP} + 執行自動輸入:{TOTP} + + + Copy Title + 複製標題 + + + Copy URL + 複製 URL + + + Copy Notes + 複製備註 + + + Export to CSV + 匯出至 CSV + + + Export to HTML + 匯出至 HTML + + + Import KeePass1 Database + 匯入 KeePass1 資料庫 + + + Import 1Password Vault + 匯入 1Password 保險庫 + + + Import CSV File + 匯入 CSV 檔 + + + Show TOTP QR Code + 顯示 TOTP QR 碼 + + + Set up TOTP + 設定 TOTP + + + Empty Recycle Bin + 清空回收桶 + + + Open Donation Website + 打開捐贈網站 + + + Open Bug Report + 打開錯誤報告 + + + Open Online Documentation + 打開線上文件 + + + Open Keyboard Shortcuts Guide + 打開「鍵盤快捷鍵」指南 + + + Save Database Backup + 儲存資料庫備份 + + + SSH Agent: Add Key + SSH 代理:加入金鑰 + + + SSH Agent: Remove Key + SSH 代理:移除金鑰 + + + Toggle Compact Mode + 切換緊湊模式 + + + Set Theme: Automatic + 設定主題:自動 + + + Set Theme: Light + 設定主題:淺色 + + + Set Theme: Dark + 設定主題:深色 + + + Set Theme: Classic + 設定主題:經典 + + + Toggle Show Menubar + 切換顯示選單列 + + + Toggle Show Toolbar + 切換顯示工具列 + + + Toggle Show Preview Panel + 切換顯示預覽面板 + + + Toggle Always on Top + 切換視窗置頂顯示 + + + Toggle Hide Usernames + 切換隱藏使用者名稱 + + + Toggle Hide Passwords + 切換隱藏密碼 + + + Export to XML + 匯出至 XML + + + Toggle Allow Screen Capture + 切換允許螢幕截圖 + + + Show Group Panel + 顯示群組面板 + + + Toggle Show Group Panel + 切換顯示群組面板 + + + Setup Remote Sync… + 設定遠端同步… + + + Password Generator + 密碼產生器 + + + E&xpire Entry… + 過期項目(&X)… + + + Clear SSH Agent + 清楚 SSH 代理 + + + Clear all identities in ssh-agent + 清楚 ssh-agent 內所有身份 + ManageDatabase @@ -5452,26 +6402,6 @@ We recommend you use the AppImage available on our downloads page. 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] 同步 @@ -5531,14 +6461,6 @@ We recommend you use the AppImage available on our downloads page. Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. 您可以在此調整資料庫的加密設定。別擔心,之後也可以到資料庫設定更改它們。 - - Advanced Settings - 進階設定 - - - Simple Settings - 簡單設定 - NewDatabaseWizardPageDatabaseKey @@ -5573,6 +6495,25 @@ We recommend you use the AppImage available on our downloads page. 請為您的新資料庫填寫一個顯示名稱,及一個選擇性的說明: + + NewEntryAttachmentsDialog + + Attachment name cannot be empty + 附件名稱不能為空 + + + Attachment with the same name already exists + 已存在相同名稱的附件 + + + Save attachment + 儲存附件 + + + New entry attachment + 新項目附件 + + NixUtils @@ -5619,15 +6560,6 @@ We recommend you use the AppImage available on our downloads page. 預期 %1 位元組的純文本,實際為 %2 - - OpVaultOpenWidget - - Read Database did not produce an instance -%1 - 讀取資料庫並未產生實體 -%1 - - OpVaultReader @@ -5701,6 +6633,10 @@ We recommend you use the AppImage available on our downloads page. Unknown cipher: %1 未知的密語:%1 + + AES-256/GCM is currently not supported + AES-256/GCM 目前不受支援 + Passphrase is required to decrypt this key 需要密碼短語以解密此金鑰 @@ -5765,28 +6701,184 @@ We recommend you use the AppImage available on our downloads page. Unexpected EOF when writing private key 寫入私密金鑰時出現意外的檔案結尾 + + (encrypted) + (已加密) + - PasswordEdit + OpenSSHKeyGenDialog - Passwords do not match - 不符合的密碼 + SSH Key Generator + SSH 金鑰產生器 - Passwords match so far - 目前符合的密碼 + Type + 類型 - Toggle Password (%1) - 切換密碼 (%1) + Bits + 位元 - Generate Password (%1) - 生成密碼 (%1) + Comment + 註解 + + + + PasskeyExportDialog + + KeePassXC - Passkey Export + KeePassXC - 通行密鑰匯出 - Warning: Caps Lock enabled! - 警告:Caps Lock 已啟用! + Filenames will be generated with title and .passkey file extension. + 檔案名稱將以標題與 .passkey 副檔名生成。 + + + Export entries + 匯出項目 + + + Export Selected + 匯出所選 + + + Cancel + 取消 + + + Export to folder + 匯出至資料夾 + + + Export the following passkey entries. + 匯出以下通行密鑰項目。 + + + + PasskeyExporter + + KeePassXC: Passkey Export + KeePassXC: 通行密鑰匯出 + + + File "%1.passkey" already exists. +Do you want to overwrite it? + + 檔案「%1.passkey」已經存在。 +是否要覆寫它? + + + + Cannot open file + 無法開啟檔案 + + + Cannot open file "%1" for writing. + 無法開啟檔案「%1」以寫入。 + + + Cannot write to file + 無法寫入檔案 + + + + PasskeyImportDialog + + KeePassXC - Passkey Import + KeePassXC - 通行密鑰匯入 + + + Username: %1 + 使用者名稱:%1 + + + Group + 群組 + + + Database + 資料庫 + + + Import Passkey + 匯入通行密鑰 + + + Import + 匯入 + + + Cancel + 取消 + + + Entry + 項目 + + + Create new entry + 建立新項目 + + + Relying Party: %1 + 依賴方:%1 + + + Import the following passkey: + 匯入以下通行密鑰: + + + Import the following passkey to this entry: + 將以下通行密鑰匯入至此項目: + + + Default passkeys group (Imported Passkeys) + 預設的通行密鑰群組(匯入的通行密鑰) + + + + PasskeyImporter + + Passkey file + 通行密鑰檔案 + + + All files + 所有檔案 + + + Cannot open file + 無法開啟檔案 + + + Cannot open file "%1" for reading. + 無法開啟檔案「%1」以讀取。 + + + Open passkey file + 開啟通行密鑰檔案 + + + Cannot import passkey + 無法匯入通行密鑰 + + + Cannot import passkey file "%1". Data is missing. + 無法匯入通行密鑰檔案「%1」。資料遺失。 + + + Cannot import passkey file "%1". +The following data is missing: +%2 + 無法匯入通行密鑰檔案「%1」。 +以下資料有遺失: +%2 + + + Cannot import passkey file "%1". Private key is missing or malformed. + 無法匯入通行密鑰檔案「%1」。私鑰遺失或格式有誤。 @@ -5967,10 +7059,6 @@ We recommend you use the AppImage available on our downloads page. Also choose from: 也從此選擇: - - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" - 排除以下字元:"0", "1", "l", "I", "O", "|", "﹒" - Exclude look-alike characters 去除相似的字元 @@ -5995,10 +7083,6 @@ We recommend you use the AppImage available on our downloads page. Word Count: 詞彙數: - - Character Count: - 字元數: - Word Case: 字母大小寫: @@ -6011,10 +7095,6 @@ We recommend you use the AppImage available on our downloads page. Add custom wordlist 加入自定義詞彙表 - - character - 字元 - Close 關閉 @@ -6051,13 +7131,37 @@ We recommend you use the AppImage available on our downloads page. Entropy: %1 bit 資訊熵:%1 位元 + + Password Quality: %1 + 密碼強度:%1 + + + Poor + Password quality + 極弱 + + + Weak + Password quality + 較弱 + + + Good + Password quality + 較好 + + + Excellent + Password quality + 極好 + Confirm Delete Wordlist 確認刪除詞彙表 Do you really want to delete the wordlist "%1"? - 真的要刪除詞彙表 “%1"? + 真的要刪除詞彙表「%1」? Failed to delete wordlist @@ -6082,8 +7186,8 @@ We recommend you use the AppImage available on our downloads page. Wordlist "%1" already exists as a custom wordlist. Do you want to overwrite it? - 自定義的詞彙表 "%1" 已經存在。 -要覆寫它嗎? + 自定義的詞彙表「%1」已經存在。 +是否要覆寫它? Failed to add wordlist @@ -6098,8 +7202,47 @@ Do you want to overwrite it? 特殊字元 - Password Quality: %1 - 密碼品質:%1 + passwordLength + 密碼長度 + + + Characters: %1 + 字元:%1 + + + MIXED case + 大小寫混合 + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + 排除字元:"0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + + PasswordWidget + + Passwords do not match + 不符合的密碼 + + + Passwords match so far + 目前符合的密碼 + + + Toggle Password (%1) + 切換密碼顯示 (%1) + + + Generate Password (%1) + 生成密碼 (%1) + + + Warning: Caps Lock enabled! + 警告:Caps Lock 已啟用! + + + Quality: %1 + 密碼強度:%1 Poor @@ -6121,6 +7264,10 @@ Do you want to overwrite it? Password quality 極好 + + Toggle password visibility using Control + H. Open the password generator using Control + G. + 使用 Control + H 顯示或隱藏密碼。使用 Control + G 打開密碼產生器。 + PickcharsDialog @@ -6137,6 +7284,21 @@ Do you want to overwrite it? 字元間按 &Tab + + PreviewEntryAttachmentsDialog + + Preview entry attachment + 預覽項目附件 + + + No preview available + 無適用的預覽 + + + Image format not supported + 圖像格式不受支援 + + QMessageBox @@ -6175,6 +7337,10 @@ Do you want to overwrite it? Continue 繼續 + + Continue with weak password + 以弱密碼繼續 + QObject @@ -6568,6 +7734,10 @@ Do you want to overwrite it? Too many arguments provided. 提供的參數過多。 + + Path of the database. + 資料庫的路徑。 + Target decryption time in MS for the database. 資料庫的目標解密時間,以「毫秒」計算。 @@ -6588,10 +7758,6 @@ Do you want to overwrite it? Create a new database. 建立新群組。 - - Path of the database. - 資料庫的路徑。 - Invalid decryption time %1. 無效的解密時間 %1。 @@ -6636,6 +7802,158 @@ Do you want to overwrite it? Successfully created new database. 成功建立新資料庫。 + + Unset the password for the database. + 刪除資料庫的密碼。 + + + Unset the key file for the database. + 刪除資料庫的金鑰檔案。 + + + Edit a database. + 編輯資料庫。 + + + Cannot use %1 and %2 at the same time. + 無法同時使用 %1 和 %2。 + + + Could not change the database key. + 無法更改資料庫金鑰。 + + + Database was not modified. + 資料庫未被修改。 + + + Writing the database failed: %1 + 寫入資料庫失敗:%1 + + + Successfully edited the database. + 已成功編輯資料庫。 + + + Cannot remove password: The database does not have a password. + 無法刪除密碼:資料庫不含密碼。 + + + Cannot remove file key: The database does not have a file key. + 無法刪除檔案金鑰:資料庫不含檔案金鑰。 + + + Loading the new key file failed: %1 + 載入新金鑰檔案失敗:%1 + + + Found unexpected Key type %1 + 發現未預期的金鑰類型 %1 + + + Cannot remove all the keys from a database. + 無法從資料庫移除所有金鑰。 + + + Show a database's information. + 顯示資料庫資訊。 + + + UUID: + UUID: + + + Name: + 名稱: + + + Description: + 描述: + + + Cipher: + 加密法: + + + KDF: + KDF: + + + Recycle bin is enabled. + 回收桶已啟用。 + + + Recycle bin is not enabled. + 回收桶尚未啟用。 + + + Location + 位置 + + + Database created + 資料庫已建立 + + + Last saved + 最近儲存於 + + + Unsaved changes + 未儲存變更 + + + yes + + + + no + + + + Number of groups + 群組數 + + + Number of entries + 項目數 + + + Number of expired entries + 過期項目數 + + + Unique passwords + 獨特的密碼 + + + Non-unique passwords + 非獨特的密碼 + + + Maximum password reuse + 最大密碼重複使用次數 + + + Number of short passwords + 過短密碼數 + + + Number of weak passwords + 弱密碼數 + + + Entries excluded from reports + 從報告排除的項目 + + + Average password length + 平均密碼長度 + + + %1 characters + %1 字元 + Word count for the diceware passphrase. Diceware 密碼短語字數統計 @@ -6648,7 +7966,7 @@ Do you want to overwrite it? Wordlist for the diceware generator. [Default: EFF English] - Diceware 產生器使用的字詞表。 + Diceware 產生器使用的詞彙表。 [預設:EFF English] @@ -6659,10 +7977,6 @@ Do you want to overwrite it? Invalid word count %1 無效的字數統計 %1 - - The word list is too small (< 1000 items) - 字詞清單過小(< 1000 個項目) - Title for the entry. 項目標題。 @@ -6687,10 +8001,6 @@ Do you want to overwrite it? Enter new password for entry: 為項目輸入新密碼: - - Writing the database failed: %1 - 寫入資料庫失敗:%1 - Successfully edited entry %1. 成功編輯項目 %1。 @@ -6811,10 +8121,6 @@ Do you want to overwrite it? Exit interactive mode. 離開互動模式。 - - Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'. - 匯出所用的格式。可用選項為 'xml' 或 'csv'。預設為 'xml'。 - Exports the content of a database to standard output in the specified format. 以指定格式匯出資料庫內容至標準輸出。 @@ -6915,106 +8221,6 @@ Do you want to overwrite it? Successfully imported database. 成功匯入資料庫。 - - Show a database's information. - 顯示資料庫資訊。 - - - UUID: - UUID: - - - Name: - 名稱: - - - Description: - 描述: - - - Cipher: - 加密法: - - - KDF: - KDF: - - - Recycle bin is enabled. - 回收桶已啟用。 - - - Recycle bin is not enabled. - 回收桶尚未啟用。 - - - Location - 位置 - - - Database created - 資料庫已建立 - - - Last saved - 最近儲存於 - - - Unsaved changes - 未儲存變更 - - - yes - - - - no - - - - Number of groups - 群組數 - - - Number of entries - 項目數 - - - Number of expired entries - 已過期項目數 - - - Unique passwords - 獨特的密碼 - - - Non-unique passwords - 非獨特的密碼 - - - Maximum password reuse - 最大密碼重複使用次數 - - - Number of short passwords - 過短密碼數 - - - Number of weak passwords - 弱密碼數 - - - Entries excluded from reports - 從報告排除的項目 - - - Average password length - 平均密碼長度 - - - %1 characters - %1 字元 - Unknown command %1 未知的指令 %1 @@ -7187,6 +8393,10 @@ Available commands: Show the protected attributes in clear text. 以明文顯示被保護的屬性。 + + Show all the attributes of the entry. + 顯示項目的所有屬性。 + Show the attachments of the entry. 顯示項目的附件。 @@ -7257,6 +8467,10 @@ Please consider generating a new key file. Invalid YubiKey serial %1 無效的 YubiKey 序號 %1 + + Please present or touch your YubiKey to continue. + 請感應或接觸您的 YubiKey 以繼續。 + Enter password to encrypt database (optional): 輸入密碼以加密資料庫(選用): @@ -7444,8 +8658,8 @@ Kernel: %3 %4 %1 分 - Botan library must be at least 2.11.x, found %1.%2.%3 - Botan 函式庫需要至少 2.11.x,找到 %1.%2.%3 + Botan library must be at least %1, found %2.%3.%4 + Botan 函式庫必須至少為 %1,找到 %2.%3.%4 Cryptographic libraries: @@ -7495,18 +8709,6 @@ Kernel: %3 %4 file empty 檔案為空 - - malformed string - 格式不正確的字串 - - - missing closing quote - 缺少右引號 - - - %1: (row, col) %2,%3 - %1: (列, 行) %2,%3 - AES 256-bit AES 256-bit @@ -7685,14 +8887,6 @@ Kernel: %3 %4 read password of the database from stdin 從 stdin 讀取資料庫密碼 - - allow app screen recordering and screenshots - 允許應用進行螢幕錄製與擷圖 - - - Locked databases. - 已鎖定的資料庫。 - Database failed to lock. 資料庫鎖定失敗。 @@ -7701,6 +8895,10 @@ Kernel: %3 %4 Another instance of KeePassXC is already running. 其他 KeePassXC 程式正在運行中。 + + KeePassXC is not running. No open database to lock + KeePassXC 並未執行。沒有已開啟的資料庫要鎖定 + Fatal error while testing the cryptographic functions. 測試加密函數時發生重大錯誤。 @@ -7709,10 +8907,6 @@ Kernel: %3 %4 KeePassXC - Error KeePassXC - 錯誤 - - Warning: Failed to prevent screenshots on a top level window! - 警告:於最頂層視窗防擷圖失敗! - Database password: 資料庫密碼: @@ -7736,8 +8930,312 @@ Kernel: %3 %4 使用 Windows Hello 簽署挑戰失敗。 - Please present or touch your YubiKey to continue. - 請感應或接觸您的 YubiKey 以繼續。 + Warning: Failed to block screenshot capture on a top-level window. + 警告:於頂層視窗阻擋螢幕截取失敗。 + + + Invalid Cipher + 無效的加密法 + + + Invalid KDF + 無效的 KDF + + + Access to all entries is denied + 存取所有項目被拒絕 + + + allow screenshots and app recording (Windows/macOS) + 允許螢幕截圖與錄製 (Windows/macOS) + + + Set the key file for the database. +This option is deprecated, use --set-key-file instead. + 設定資料庫的金鑰檔案。 +此選項已棄用,請用 --set-key-file 代替。 + + + Databases have been locked. + 資料庫已被鎖定。 + + + Attestation not supported + 證明不受支援 + + + Credential is excluded + 憑證被排除 + + + Passkeys request canceled + 通行密鑰請求被取消 + + + Invalid user verification + 無效的使用者驗證 + + + Empty public key + 空的公開金鑰 + + + Invalid URL provided + 提供的 URL 無效 + + + Passkeys + 通行密鑰 + + + AES initialization failed + AES 初始化失敗 + + + AES encrypt failed + AES 加密失敗 + + + Failed to store in Linux Keyring + 儲存至 Linux 鑰匙圈失敗 + + + Polkit returned an error: %1 + Polkit 回傳錯誤:%1 + + + Could not locate key in keyring + 無法定位鑰匙圈內的金鑰 + + + Could not read key in keyring + 無法讀取鑰匙圈內的金鑰 + + + AES decrypt failed + AES 解密失敗 + + + No Polkit authentication agent was available + 沒有可用的 Polkit 認證代理 + + + Polkit authorization failed + Polkit 認證失敗 + + + No Quick Unlock provider is available + 沒有可用的快速解鎖提供者 + + + Failed to init KeePassXC crypto. + 初始化 KeePassXC 加密失敗。 + + + Failed to encrypt key data. + 加密金鑰資料失敗。 + + + Failed to get Windows Hello credential. + 獲取 Windows Hello 憑證失敗。 + + + Failed to decrypt key data. + 解密金鑰資料失敗。 + + + Origin is empty or not allowed + Origin 為空或不被允許 + + + Effective domain is not a valid domain + Effective Domain 不是有效的域名 + + + Origin and RP ID do not match + Origin 與 RP ID 不匹配 + + + No supported algorithms were provided + 未提供受支持的演算法 + + + Wait for timer to expire + 等待計時器過期 + + + Challenge is shorter than required minimum length + 挑戰短於所需最小長度 + + + user.id does not match the required length + user.id 不匹配所需長度 + + + Favorite + Tag for favorite entries + 喜愛 + + + File does not exist. + 檔案不存在。 + + + Cannot open file: %1 + 無法開啟檔案:%1 + + + Cannot parse file: %1 at position %2 + 無法剖析檔案:%1 於位置 %2 + + + Failed to decrypt json file: %1 + 解密 json 檔案失敗:%1 + + + Invalid encKeyValidation field + 無效 encKeyValidation 欄 + + + Invalid cipher list within encKeyValidation field + 無效加密法列表出現於 encKeyValidation 欄 + + + Wrong password + 錯誤密碼 + + + Invalid encrypted data field + 無效的加密資料欄 + + + Invalid cipher list within encrypted data field + 無效加密法列表出現於加密資料欄 + + + Cannot initialize cipher + 無法初始化加密 + + + Cannot decrypt data + 無法解密資料 + + + Bitwarden Import + Bitwarden 匯入 + + + Archived + Tag for archived entries + 封存 + + + Invalid 1PUX file format: Not a valid ZIP file. + 無效 1PUX 檔案格式:不是有效 ZIP 檔案。 + + + Invalid 1PUX file format: Missing export.data + 無效 1PUX 檔案格式:遺失 export.data + + + 1Password Import + 1Password 匯入 + + + Enter Shortcut + 輸入快捷鍵 + + + Action + 動作 + + + Shortcuts + 快捷鍵 + + + Unknown passkeys error + 未知的通行密鑰錯誤 + + + Invalid KDF iterations, cannot decrypt json file + 無效的 KDF 迭代數,無法解密 JSON 檔案 + + + Unsupported format, ensure your Bitwarden export is password-protected + 不支援的格式,確保您的 Bitwarden 匯出檔爲密碼保護 + + + Only PBKDF and Argon2 are supported, cannot decrypt json file + 只支援 PBKDF 與 Argon2,無法解密 JSON 檔案 + + + Reset Shortcuts + 重置快捷鍵 + + + Double click an action to change its shortcut + 雙擊一個動作以修改其快捷鍵 + + + Filter... + 過濾... + + + Shortcut Conflict + 快捷鍵衝突 + + + Shortcut %1 conflicts with '%2'. Overwrite shortcut? + 快捷鍵 %1 與 '%2' 衝突。是否覆蓋快捷鍵? + + + Cannot generate valid passphrases because the wordlist is too short + 因為詞彙表過短,無法生成有效的密碼短語 + + + Encrypted files are not supported. + 尚未支援加密檔案。 + + + Proton Pass Import + Proton Pass 匯入 + + + Delete plugin data? + 刪除插件資料? + + + Delete plugin data from Entry(s)? + 是否從項目刪除插件資料? + + + Passkey + 通行密鑰 + + + Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'. + 匯出所用的格式。可用選項為 'xml', 'csv' 或 'html'。預設為 'xml'。 + + + start minimized to the system tray + 啟動後最小化至系統列 + + + malformed string, possible unescaped delimiter + 不合規的字串,可能有未跳脫的分隔符 + + + missing closing delimiter + 缺少閉合分隔符 + + + %1, row: %2, column: %3 + %1,列:%2,欄:%3 + + + Tags + 標籤 @@ -7774,20 +9272,39 @@ Kernel: %3 %4 內部 zlib 錯誤: + + RemoteHandler + + Command `%1` did not finish in time. Process was killed. + 指令 `%1` 未能及時完成。程序已被強制結束。 + + + Failed to upload merged database. Command `%1` did not finish in time. Process was killed. + 上傳已合併的資料庫失敗。指令 `%1` 未能及時完成。程序已被強制結束。 + + + Invalid download parameters provided. + 提供的下載參數無效。 + + + Command `%1` failed to download database. + 指令 `%1` 下載資料庫失敗。 + + + Invalid database pointer or upload parameters provided. + 提供的資料庫指針或上傳參數無效。 + + + Command `%1` exited with status code: %2 + 指令 `%1` 以此狀態碼退出:%2 + + + Failed to upload merged database. Command `%1` exited with status code: %2 + 上傳已合併的資料庫失敗。指令 `%1` 以此狀態碼退出:%2 + + ReportsWidgetBrowserStatistics - - Exclude expired entries from the report - 從報告排除已過期的項目 - - - Show only entries which have URL set - 只顯示有設置 URL 的項目 - - - Show only entries which have browser settings in custom data - 只顯示自定義資料中有瀏覽器設置的項目 - Double-click entries to edit. 雙擊項目以編輯。 @@ -7852,44 +9369,53 @@ Kernel: %3 %4 Exclude from reports 從報告排除 + + Expire Entry(s)… + 過期項目… + + + Only show entries that have a URL + 只顯示含有 URL 的項目 + + + Only show entries that have been explicitly allowed or denied + 只顯示明確允許或拒絕的項目 + + + Show expired entries + 顯示過期項目 + + + (Expired) + (過期) + + + Delete plugin data from Entry(s)… + 從項目刪除插件資料… + ReportsWidgetHealthcheck - Exclude expired entries from the report - 從報告排除已過期的項目 + Show expired entries + 顯示過期項目 - Also show entries that have been excluded from reports - 也顯示已從報告排除的項目 + (Expired) + (過期) Hover over reason to show additional details. Double-click entries to edit. 將游標懸浮於原因以顯示額外詳情。雙擊項目可編輯。 - - Bad - Password quality - 糟糕 - Bad — password must be changed 糟糕 — 密碼必須更改 - - Poor - Password quality - 極弱 - Poor — password should be changed 極弱 — 密碼應該更改 - - Weak - Password quality - 較弱 - Weak — consider changing the password 較弱 — 可考慮更改密碼 @@ -7938,6 +9464,14 @@ Kernel: %3 %4 Exclude from reports 從報告排除 + + Expire Entry(s)… + 過期項目… + + + Show entries that have been excluded from reports + 顯示已從報告中排除的項目 + ReportsWidgetHibp @@ -8033,6 +9567,77 @@ Kernel: %3 %4 Exclude from reports 從報告排除 + + Expire Entry(s)… + 過期項目… + + + + ReportsWidgetPasskeys + + Export + 匯出 + + + Import + 匯入 + + + List of entry URLs + 項目 URL 清單 + + + Title + 標題 + + + Path + 路徑 + + + Username + 使用者名稱 + + + URLs + URL + + + Edit Entry… + 編輯項目… + + + Delete Entry(s)… + 刪除項目… + + + Relying Party + 依賴方 + + + Show expired entries + 顯示過期項目 + + + (Expired) + (過期) + + + Export Confirmation + 匯出確認 + + + The passkey file will be vulnerable to theft and unauthorized use, if left unsecured. Are you sure you want to continue? + 通行密鑰檔案若不加上保護,將無法防止盜取或越權使用。您確定要繼續進行? + + + Please wait, list of entries with passkeys is being updated… + 請稍候,正在更新擁有通行密鑰的項目清單… + + + No entries with passkeys. + 沒有附帶通行密鑰的項目。 + ReportsWidgetStatistics @@ -8098,7 +9703,7 @@ Kernel: %3 %4 Number of expired entries - 已過期項目數 + 過期項目數 The database contains entries that have expired. @@ -8207,6 +9812,14 @@ Kernel: %3 %4 No agent running, cannot list identities. 代理尚未執行,無法列舉身份。 + + Failed to remove all SSH identities from agent. + 從代理移除所有 SSH 身份失敗。 + + + All SSH identities removed from agent. + 所有 SSH 身份已從代理移除。 + SearchHelpWidget @@ -8273,6 +9886,10 @@ Kernel: %3 %4 Search Help 搜尋幫助 + + Save Search + 儲存搜索 + Search (%1)… Search placeholder text, %1 is the keyboard shortcut @@ -8347,34 +9964,10 @@ Kernel: %3 %4 Confirm when passwords are retrieved by clients 客戶端收到密碼時確認 - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">此設定不會 - 覆蓋取消回收桶提示</span></p></body></html> - - Confirm when clients request entry deletion 客戶端要求刪除項目時確認 - - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - - <html><head/><body><p>針對在搜尋密碼前不先解鎖資料庫的特定應用, - 此選項將提高其相容性。</p><p>但啟用後, - 若資料庫無法在一定時間內解鎖(通常為 25 秒,但此值 - 可能因應用程式的設定而有異),有可能導致客戶端崩潰。</p></body></html> - - Prompt to unlock database before searching 搜尋前提示解鎖資料庫 @@ -8399,6 +9992,14 @@ Kernel: %3 %4 Save current changes to activate the plugin and enable editing of this section. 儲存目前變更,以啟用插件並編輯此區域。 + + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> + <html><head/><body><p>此設定不會覆蓋禁用回收桶提示</p></body></html> + + + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> + <html><head/><body><p>針對在搜索密碼前不會解鎖資料庫的特定應用,此選項將提高其相容性。</p><p>但啟用後,如果資料庫無法在一定時間內解鎖(通常為 25 秒,但應用可能會設定不同的值),有可能導致客戶端崩潰。</p></body></html> + SettingsWidgetKeeShare @@ -8507,8 +10108,12 @@ Kernel: %3 %4 TagModel - All - 所有 + Clear Search + 清除搜索 + + + All Entries + 所有項目 Expired @@ -8519,6 +10124,25 @@ Kernel: %3 %4 弱密碼 + + TagView + + Remove Search + 移除搜索 + + + Remove Tag + 移除標籤 + + + Confirm Remove Tag + 確認移除標籤 + + + Remove tag "%1" from all entries in this database? + 要移除資料庫中所有項目包含的「%1」標籤嗎? + + TotpDialog @@ -8643,7 +10267,7 @@ Example: JBSWY3DPEHPK3PXP UpdateCheckDialog Checking for updates - 正在檢查更新 + 更新檢查 Checking for updates… @@ -8676,26 +10300,6 @@ Example: JBSWY3DPEHPK3PXP Start storing your passwords securely in a KeePassXC database 從現在開始,將您的密碼安全地保存到 KeePassXC 資料庫 - - Create new database - 建立新資料庫 - - - Open existing database - 開啟現有資料庫 - - - Import from KeePass 1 - 從 KeePass 1 匯入 - - - Import from 1Password - 從 1Password 匯入 - - - Import from CSV - 從 CSV 匯入 - Recent databases 近期的資料庫 @@ -8708,6 +10312,18 @@ Example: JBSWY3DPEHPK3PXP Welcome to KeePassXC %1 歡迎來到 KeePassXC %1 + + Create Database + 建立資料庫 + + + Open Database + 開啟資料庫 + + + Import File + 匯入檔案 + WinUtils @@ -8724,50 +10340,19 @@ Example: JBSWY3DPEHPK3PXP 無法註冊全域快捷鍵 - - WindowsHello - - Failed to init KeePassXC crypto. - 初始化 KeePassXC 加密失敗。 - - - Failed to encrypt key data. - 加密金鑰資料失敗。 - - - Failed to get Windows Hello credential. - 獲取 Windows Hello 憑證失敗。 - - - Failed to decrypt key data. - 解密金鑰資料失敗。 - - YubiKey - - %1 No interface, slot %2 - %1 無介面,插槽 %2 - General: 一般: Could not find interface for hardware key with serial number %1. Please connect it to continue. - 找不到與流水號為 %1 的硬體金鑰對應的介面。請將它連接後繼續。 + 找不到與序列號為 %1 的硬體金鑰對應的介面。請將它連接後繼續。 YubiKeyEditWidget - - Refresh hardware tokens - 更新硬體令牌 - - - Refresh - 更新 - Hardware key slot selection 硬體金鑰槽位選擇 @@ -8800,10 +10385,6 @@ Example: JBSWY3DPEHPK3PXP Challenge-Response set, click to change or remove 挑戰應答已設定,點擊更改或移除 - - <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p> - <p>若您擁有 <a href="https://www.yubico.com/">YubiKey</a> 或 <a href="https://onlykey.io">OnlyKey</a>,可以用它獲得額外保護。</p><p>需要將鑰匙其中一個槽位設置為 <a href="https://www.yubico.com/products/services-software/challenge-response/">HMAC-SHA1 挑戰應答</a>。</p> - Detecting hardware keys… 偵測硬體金鑰… @@ -8812,31 +10393,28 @@ Example: JBSWY3DPEHPK3PXP No hardware keys detected 未偵測到硬體金鑰 - - - YubiKeyInterface - %1 Invalid slot specified - %2 - %1 無效的指定槽位 - %2 + Refresh hardware keys + 刷新硬體金鑰 + + + <p>If you own a <a href="https://www.yubico.com/">YubiKey</a> or <a href="https://onlykey.io">OnlyKey</a>, you can use it for additional security.</p><p>The key requires one of its slots to be programmed with <a href="https://keepassxc.org/docs/#faq-yubikey-howto">Challenge-Response</a>.</p> + <p>若您擁有 <a href="https://www.yubico.com/">YubiKey</a> 或 <a href="https://onlykey.io">OnlyKey</a>,可以用它獲得額外保護。</p><p>實體金鑰要求將其中一個槽位以 <a href="https://keepassxc.org/docs/#faq-yubikey-howto">挑戰應答</a>編程。</p> + + + Hardware keys found, but no slots are configured + 硬體金鑰已找到,但未配置任何槽位 YubiKeyInterfacePCSC - - (PCSC) %1 [%2] Challenge-Response - Slot %3 - (PCSC) %1 [%2] 挑戰應答 - 插槽 %3 - The YubiKey PCSC interface has not been initialized. YubiKey PCSC 介面尚未初始化。 - - Hardware key is currently in use. - 硬體金鑰目前正在使用當中。 - Could not find or access hardware key with serial number %1. Please present it to continue. - 找不到或無法存取流水號為 %1 的硬體金鑰。請將它呈現後繼續。 + 找不到或無法存取序列號為 %1 的硬體金鑰。請將它呈現後繼續。 Hardware key is locked or timed out. Unlock or re-present it to continue. @@ -8850,6 +10428,21 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the PCSC error code was: %1 無法完成挑戰應答,PCSC 錯誤代碼為:%1 + + (NFC) %1 [%2] - Slot %3, %4 + YubiKey display fields + (NFC) %1 [%2] - 槽位 %3, %4 + + + Press + USB Challenge-Response Key interaction request + 按下 + + + Passive + USB Challenge-Response Key no interaction required + 被動 + YubiKeyInterfaceUSB @@ -8857,14 +10450,6 @@ Example: JBSWY3DPEHPK3PXP Unknown 未知 - - (USB) %1 [%2] Configured Slot - %3 - (USB) %1 [%2] 設定插槽 - %3 - - - (USB) %1 [%2] Challenge-Response - Slot %3 - %4 - (USB) %1 [%2] 挑戰應答 - 插槽 %3 - %4 - Press USB Challenge-Response Key interaction request @@ -8879,13 +10464,9 @@ Example: JBSWY3DPEHPK3PXP The YubiKey USB interface has not been initialized. YubiKey USB 介面尚未初始化。 - - Hardware key is currently in use. - 硬體金鑰目前正在使用當中。 - Could not find hardware key with serial number %1. Please plug it in to continue. - 找不到流水號為 %1 的硬體金鑰。請將它插入後繼續。 + 找不到序列號為 %1 的硬體金鑰。請將它插入後繼續。 Hardware key timed out waiting for user interaction. @@ -8899,5 +10480,15 @@ Example: JBSWY3DPEHPK3PXP Failed to complete a challenge-response, the specific error was: %1 無法完成挑戰應答,具體錯誤為:%1 + + %1 [%2] - Slot %3 + YubiKey NEO display fields + %1 [%2] - 槽位 %3 + + + %1 [%2] - Slot %3, %4 + YubiKey display fields + %1 [%2] - 槽位 %3, %4 + \ No newline at end of file diff --git a/share/windows/installer-banner.png b/share/windows/installer-banner.png new file mode 100644 index 000000000..615b663ec Binary files /dev/null and b/share/windows/installer-banner.png differ diff --git a/share/windows/installer-banner.psd b/share/windows/installer-banner.psd new file mode 100644 index 000000000..5431e2f26 Binary files /dev/null and b/share/windows/installer-banner.psd differ diff --git a/share/windows/installer-header.bmp b/share/windows/installer-header.bmp deleted file mode 100644 index f9e17cae7..000000000 Binary files a/share/windows/installer-header.bmp and /dev/null differ diff --git a/share/windows/installer-wizard.bmp b/share/windows/installer-wizard.bmp deleted file mode 100644 index 76d04518f..000000000 Binary files a/share/windows/installer-wizard.bmp and /dev/null differ diff --git a/share/windows/installer-wizard.png b/share/windows/installer-wizard.png new file mode 100644 index 000000000..abefed672 Binary files /dev/null and b/share/windows/installer-wizard.png differ diff --git a/share/windows/installer-wizard.psd b/share/windows/installer-wizard.psd new file mode 100644 index 000000000..e61235150 Binary files /dev/null and b/share/windows/installer-wizard.psd differ diff --git a/share/windows/installer-wizard.zip b/share/windows/installer-wizard.zip new file mode 100644 index 000000000..08fa397af Binary files /dev/null and b/share/windows/installer-wizard.zip differ diff --git a/share/windows/keepassxc-kdbx.ico b/share/windows/keepassxc-kdbx.ico index 0cec1e4ce..4a3662d22 100644 Binary files a/share/windows/keepassxc-kdbx.ico and b/share/windows/keepassxc-kdbx.ico differ diff --git a/share/windows/keepassxc.ico b/share/windows/keepassxc.ico index 58ae8c2ba..1d471740c 100644 Binary files a/share/windows/keepassxc.ico and b/share/windows/keepassxc.ico differ diff --git a/share/windows/qt.conf b/share/windows/qt.conf new file mode 100644 index 000000000..846f84c86 --- /dev/null +++ b/share/windows/qt.conf @@ -0,0 +1,2 @@ +[Platforms] +WindowsArguments = darkmode=1 diff --git a/share/windows/wix-banner.bmp b/share/windows/wix-banner.bmp deleted file mode 100644 index 14a13b8f1..000000000 Binary files a/share/windows/wix-banner.bmp and /dev/null differ diff --git a/share/windows/wix-dialog.bmp b/share/windows/wix-dialog.bmp deleted file mode 100644 index b26ad1e25..000000000 Binary files a/share/windows/wix-dialog.bmp and /dev/null differ diff --git a/share/windows/wix-template.xml b/share/windows/wix-template.xml index 6f7be4f8d..add2af297 100644 --- a/share/windows/wix-template.xml +++ b/share/windows/wix-template.xml @@ -92,6 +92,9 @@ + + + @@ -101,13 +104,9 @@ - - - AUTOSTARTPROGRAM="0" OR (WIX_UPGRADE_DETECTED AND NOT AUTOSTARTPROGRAM_REGISTRY) - WIX_UPGRADE_DETECTED AND INSTALLDESKTOPSHORTCUT_REGISTRY WIX_UPGRADE_DETECTED @@ -120,12 +119,17 @@ - - - + + + + + + + + diff --git a/share/wizard/background-pixmap.png b/share/wizard/background-pixmap.png index 0651b38f5..90fa389f0 100644 Binary files a/share/wizard/background-pixmap.png and b/share/wizard/background-pixmap.png differ diff --git a/share/wordlists/eff_large.wordlist b/share/wordlists/eff_large.wordlist index 9107855a2..1a5ae7862 100644 --- a/share/wordlists/eff_large.wordlist +++ b/share/wordlists/eff_large.wordlist @@ -2006,8 +2006,7 @@ drizzly drone drool droop -drop-down -dropbox +dropforge dropkick droplet dropout @@ -2102,11 +2101,11 @@ eaten eatery eating eats -ebay +eaves ebony ebook -ecard -eccentric +echelon +echidna echo eclair eclipse @@ -2525,7 +2524,6 @@ feed feel feisty feline -felt-tip feminine feminism feminist @@ -2684,8 +2682,8 @@ footpad footpath footprint footrest -footsie -footsore +footstool +footway footwear footwork fossil @@ -2928,7 +2926,7 @@ goldmine goldsmith golf goliath -gonad +golly gondola gone gong @@ -2937,8 +2935,8 @@ gooey goofball goofiness goofy -google -goon +gooseneck +goosey gopher gore gorged @@ -3028,6 +3026,7 @@ groom groove grooving groovy +grouch ground grouped grout @@ -3137,7 +3136,7 @@ hangover hangup hankering hankie -hanky +hanoi haphazard happening happier @@ -3146,9 +3145,10 @@ happily happiness happy harbor -hardcopy +hardback +hardball hardcover -harddisk +hardedge hardened hardener hardening @@ -3410,10 +3410,10 @@ impurity iodine iodize ion -ipad -iphone -ipod -irate +iota +ire +iridium +iris irk iron irregular @@ -3423,7 +3423,7 @@ irritably irritant irritate islamic -islamist +island isolated isolating isolation @@ -3576,7 +3576,7 @@ kite kitten kitty kiwi -kleenex +knack knapsack knee knelt @@ -3661,7 +3661,7 @@ leggings legible legibly legislate -lego +legitimate legroom legume legwarmer @@ -3876,7 +3876,7 @@ marshland marshy marsupial marvelous -marxism +marzipan mascot masculine mashed @@ -5912,7 +5912,7 @@ shun shush shut shy -siamese +sial siberian sibling siding @@ -6608,6 +6608,7 @@ swimmer swimming swimsuit swimwear +swindle swinging swipe swirl @@ -6634,7 +6635,6 @@ synthesis synthetic syrup system -t-shirt tabasco tabby tableful @@ -7720,7 +7720,7 @@ wrongful wrongly wrongness wrought -xbox +xenon xerox yahoo yam @@ -7742,12 +7742,11 @@ yiddish yield yin yippee -yo-yo yodel yoga yogurt yonder -yoyo +young yummy zap zealous diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index db64dbbad..598f07461 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,7 +1,7 @@ name: keepassxc adopt-info: keepassxc grade: stable -base: core20 +base: core22 confinement: strict compression: lzo @@ -10,7 +10,8 @@ apps: command: usr/bin/keepassxc common-id: org.keepassxc.KeePassXC.desktop extensions: [kde-neon] - plugs: [home, unity7, network, network-bind, removable-media, raw-usb] + plugs: [home, unity7, network, network-bind, removable-media, raw-usb, password-manager-service, browser-native-messaging] + autostart: org.keepassxc.KeePassXC.desktop cli: command: usr/bin/keepassxc-cli extensions: [kde-neon] @@ -18,8 +19,19 @@ apps: proxy: command: usr/bin/keepassxc-proxy extensions: [kde-neon] - plugs: [home] - + +plugs: + browser-native-messaging: + interface: personal-files + write: + - $HOME/.mozilla/native-messaging-hosts/org.keepassxc.keepassxc_browser.json + - $HOME/.config/chromium/NativeMessagingHosts/org.keepassxc.keepassxc_browser.json + - $HOME/.config/google-chrome/NativeMessagingHosts/org.keepassxc.keepassxc_browser.json + - $HOME/.config/microsoft-edge/NativeMessagingHosts/org.keepassxc.keepassxc_browser.json + - $HOME/.config/vivaldi/NativeMessagingHosts/org.keepassxc.keepassxc_browser.json + - $HOME/.config/BraveSoftware/Brave-Browser/NativeMessagingHosts/org.keepassxc.keepassxc_browser.json + - $HOME/.local/share/torbrowser/tbb/x86_64/tor-browser_en-US/Browser/TorBrowser/Data/Browser/.mozilla/native-messaging-hosts/org.keepassxc.keepassxc_browser.json + slots: session-dbus-interface: interface: dbus @@ -52,13 +64,22 @@ parts: - libxi-dev - libxtst-dev - asciidoctor + - libfreetype-dev + - libkeyutils-dev stage-packages: - dbus - - libbotan-2-12 + - libbotan-2-19 - libqrencode4 - libusb-1.0-0 - libreadline8 - libpcsclite1 - libminizip1 - libxtst6 + - libfreetype6 - xclip + - libkeyutils1 +lint: + ignore: + - library: + - lib/**/libhistory.so* + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c4f66e713..66d074c9d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018 KeePassXC Team +# Copyright (C) 2023 KeePassXC Team # Copyright (C) 2010 Felix Geyer # # This program is free software: you can redistribute it and/or modify @@ -16,21 +16,19 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) -find_library(ZXCVBN_LIBRARIES zxcvbn) -if(NOT ZXCVBN_LIBRARIES) - add_library(zxcvbn STATIC zxcvbn/zxcvbn.c) - # Disable error-level shadow issues - if(CC_HAS_Wshadow_compatible_local) - set_property(SOURCE zxcvbn/zxcvbn.c APPEND PROPERTY COMPILE_OPTIONS "-Wno-shadow-compatible-local") - endif() - if(CC_HAS_Wshadow_local) - set_property(SOURCE zxcvbn/zxcvbn.c APPEND PROPERTY COMPILE_OPTIONS "-Wno-shadow-local") - endif() - include_directories(${CMAKE_CURRENT_SOURCE_DIR}/zxcvbn) - set(ZXCVBN_LIBRARIES zxcvbn) -endif(NOT ZXCVBN_LIBRARIES) +add_feature_info(Auto-Type WITH_XC_AUTOTYPE "Automatic password typing") +add_feature_info(Networking WITH_XC_NETWORKING "Compile KeePassXC with network access code (e.g. for downloading website icons)") +add_feature_info(KeePassXC-Browser WITH_XC_BROWSER "Browser integration with KeePassXC-Browser") +add_feature_info(Passkeys WITH_XC_BROWSER_PASSKEYS "Passkeys support for browser integration") +add_feature_info(SSHAgent WITH_XC_SSHAGENT "SSH agent integration compatible with KeeAgent") +add_feature_info(KeeShare WITH_XC_KEESHARE "Sharing integration with KeeShare") +add_feature_info(YubiKey WITH_XC_YUBIKEY "YubiKey HMAC-SHA1 challenge-response") +add_feature_info(UpdateCheck WITH_XC_UPDATECHECK "Automatic update checking") +if(UNIX AND NOT APPLE) + add_feature_info(FdoSecrets WITH_XC_FDOSECRETS "Implement freedesktop.org Secret Storage Spec server side API.") +endif() -set(keepassx_SOURCES +set(core_SOURCES core/Alloc.cpp core/AutoTypeAssociations.cpp core/Base32.cpp @@ -59,6 +57,7 @@ set(keepassx_SOURCES core/TimeDelta.cpp core/TimeInfo.cpp core/Tools.cpp + core/Totp.cpp core/Translator.cpp cli/Utils.cpp cli/TextStream.cpp @@ -69,8 +68,10 @@ set(keepassx_SOURCES crypto/kdf/Kdf.cpp crypto/kdf/AesKdf.cpp crypto/kdf/Argon2Kdf.cpp + format/BitwardenReader.cpp format/CsvExporter.cpp format/CsvParser.cpp + format/HtmlExporter.cpp format/KeePass1Reader.cpp format/KeePass2.cpp format/KeePass2RandomStream.cpp @@ -85,10 +86,25 @@ set(keepassx_SOURCES format/Kdbx4Writer.cpp format/KdbxXmlWriter.cpp format/OpData01.cpp + format/OPUXReader.cpp format/OpVaultReader.cpp format/OpVaultReaderAttachments.cpp format/OpVaultReaderBandEntry.cpp format/OpVaultReaderSections.cpp + format/ProtonPassReader.cpp + keys/CompositeKey.cpp + keys/FileKey.cpp + keys/PasswordKey.cpp + keys/ChallengeResponseKey.cpp + streams/HashedBlockStream.cpp + streams/HashingStream.cpp + streams/HmacBlockStream.cpp + streams/LayeredStream.cpp + streams/qtiocompressor.cpp + streams/StoreDataStream.cpp + streams/SymmetricCipherStream.cpp) + +set(gui_SOURCES gui/styles/styles.qrc gui/styles/StateColorPalette.cpp gui/styles/base/phantomcolor.cpp @@ -96,6 +112,7 @@ set(keepassx_SOURCES gui/styles/dark/DarkStyle.cpp gui/styles/light/LightStyle.cpp gui/AboutDialog.cpp + gui/ActionCollection.cpp gui/Application.cpp gui/CategoryListWidget.cpp gui/Clipboard.cpp @@ -113,35 +130,37 @@ set(keepassx_SOURCES gui/FileDialog.cpp gui/Font.cpp gui/GuiTools.cpp - gui/HtmlExporter.cpp + gui/HtmlGuiExporter.cpp gui/IconModels.cpp - gui/KeePass1OpenWidget.cpp gui/KMessageWidget.cpp gui/MainWindow.cpp gui/MessageBox.cpp gui/MessageWidget.cpp - gui/OpVaultOpenWidget.cpp - gui/PasswordEdit.cpp + gui/PasswordWidget.cpp gui/PasswordGeneratorWidget.cpp gui/ApplicationSettingsWidget.cpp gui/Icons.cpp gui/SearchWidget.cpp + gui/SettingsWidget.cpp gui/SortFilterHideProxyModel.cpp gui/SquareSvgWidget.cpp + gui/ShortcutSettingsPage.cpp gui/TotpSetupDialog.cpp gui/TotpDialog.cpp gui/TotpExportSettingsDialog.cpp gui/DatabaseOpenDialog.cpp gui/URLEdit.cpp + gui/UrlTools.cpp gui/WelcomeWidget.cpp gui/csvImport/CsvImportWidget.cpp - gui/csvImport/CsvImportWizard.cpp gui/csvImport/CsvParserModel.cpp gui/entry/AutoTypeAssociationsModel.cpp gui/entry/EditEntryWidget.cpp gui/entry/EntryAttachmentsModel.cpp gui/entry/EntryAttachmentsWidget.cpp gui/entry/EntryAttributesModel.cpp + gui/entry/NewEntryAttachmentsDialog.cpp + gui/entry/PreviewEntryAttachmentsDialog.cpp gui/entry/EntryHistoryModel.cpp gui/entry/EntryModel.cpp gui/entry/EntryView.cpp @@ -150,6 +169,7 @@ set(keepassx_SOURCES gui/group/GroupModel.cpp gui/group/GroupView.cpp gui/tag/TagModel.cpp + gui/tag/TagView.cpp gui/tag/TagsEdit.cpp gui/databasekey/KeyComponentWidget.cpp gui/databasekey/PasswordEditWidget.cpp @@ -162,6 +182,10 @@ set(keepassx_SOURCES gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.cpp gui/dbsettings/DatabaseSettingsWidgetEncryption.cpp gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.cpp + gui/remote/DatabaseSettingsWidgetRemote.cpp + gui/remote/RemoteHandler.cpp + gui/remote/RemoteProcess.cpp + gui/remote/RemoteSettings.cpp gui/reports/ReportsWidget.cpp gui/reports/ReportsDialog.cpp gui/reports/ReportsWidgetHealthcheck.cpp @@ -173,81 +197,108 @@ set(keepassx_SOURCES gui/osutils/OSUtilsBase.cpp gui/osutils/ScreenLockListener.cpp gui/osutils/ScreenLockListenerPrivate.cpp - gui/settings/SettingsWidget.cpp gui/widgets/ElidedLabel.cpp gui/widgets/KPToolBar.cpp gui/widgets/PopupHelpWidget.cpp + gui/widgets/ShortcutWidget.cpp + gui/wizard/ImportWizard.cpp + gui/wizard/ImportWizardPageReview.cpp + gui/wizard/ImportWizardPageSelect.cpp gui/wizard/NewDatabaseWizard.cpp gui/wizard/NewDatabaseWizardPage.cpp gui/wizard/NewDatabaseWizardPageMetaData.cpp gui/wizard/NewDatabaseWizardPageEncryption.cpp gui/wizard/NewDatabaseWizardPageDatabaseKey.cpp - keys/CompositeKey.cpp - keys/FileKey.cpp - keys/PasswordKey.cpp - keys/ChallengeResponseKey.cpp - streams/HashedBlockStream.cpp - streams/HmacBlockStream.cpp - streams/LayeredStream.cpp - streams/qtiocompressor.cpp - streams/StoreDataStream.cpp - streams/SymmetricCipherStream.cpp - totp/totp.cpp) -if(APPLE) - set(keepassx_SOURCES - ${keepassx_SOURCES} - core/MacPasteboard.cpp - gui/osutils/macutils/MacUtils.cpp - gui/osutils/macutils/ScreenLockListenerMac.cpp - gui/osutils/macutils/AppKitImpl.mm - gui/osutils/macutils/AppKit.h) -endif() -if(UNIX AND NOT APPLE) - set(keepassx_SOURCES - ${keepassx_SOURCES} - gui/osutils/nixutils/ScreenLockListenerDBus.cpp - gui/osutils/nixutils/NixUtils.cpp - gui/osutils/nixutils/X11Funcs.cpp) - qt5_add_dbus_adaptor(keepassx_SOURCES - gui/org.keepassxc.KeePassXC.MainWindow.xml - gui/MainWindow.h - MainWindow) -endif() -if(WIN32) - set(keepassx_SOURCES - ${keepassx_SOURCES} - gui/osutils/winutils/ScreenLockListenerWin.cpp - gui/osutils/winutils/WinUtils.cpp) - if (MSVC) - list(APPEND keepassx_SOURCES winhello/WindowsHello.cpp) - endif() -endif() - -set(keepassx_SOURCES ${keepassx_SOURCES} + quickunlock/QuickUnlockInterface.cpp ../share/icons/icons.qrc ../share/wizard/wizard.qrc) -set(keepassx_SOURCES_MAINEXE main.cpp) +if(APPLE) + list(APPEND gui_SOURCES + gui/osutils/macutils/MacPasteboard.cpp + gui/osutils/macutils/MacUtils.cpp + gui/osutils/macutils/ScreenLockListenerMac.cpp + gui/osutils/macutils/AppKitImpl.mm + gui/osutils/macutils/AppKit.h + quickunlock/TouchID.mm) + + # TODO: Remove -Wno-error once deprecation warnings have been resolved. + set_source_files_properties(quickunlock/TouchID.mm PROPERTY COMPILE_FLAGS "-Wno-old-style-cast") +endif() -add_feature_info(Auto-Type WITH_XC_AUTOTYPE "Automatic password typing") -add_feature_info(Networking WITH_XC_NETWORKING "Compile KeePassXC with network access code (e.g. for downloading website icons)") -add_feature_info(KeePassXC-Browser WITH_XC_BROWSER "Browser integration with KeePassXC-Browser") -add_feature_info(SSHAgent WITH_XC_SSHAGENT "SSH agent integration compatible with KeeAgent") -add_feature_info(KeeShare WITH_XC_KEESHARE "Sharing integration with KeeShare") -add_feature_info(YubiKey WITH_XC_YUBIKEY "YubiKey HMAC-SHA1 challenge-response") -add_feature_info(UpdateCheck WITH_XC_UPDATECHECK "Automatic update checking") if(UNIX AND NOT APPLE) - add_feature_info(FdoSecrets WITH_XC_FDOSECRETS "Implement freedesktop.org Secret Storage Spec server side API.") + list(APPEND gui_SOURCES + gui/osutils/nixutils/ScreenLockListenerDBus.cpp + gui/osutils/nixutils/NixUtils.cpp) + if("${CMAKE_SYSTEM}" MATCHES "Linux") + list(APPEND core_SOURCES + quickunlock/Polkit.cpp + quickunlock/PolkitDbusTypes.cpp) + endif() + if(WITH_XC_X11) + list(APPEND gui_SOURCES + gui/osutils/nixutils/X11Funcs.cpp) + endif() + qt5_add_dbus_adaptor(gui_SOURCES + gui/org.keepassxc.KeePassXC.MainWindow.xml + gui/MainWindow.h + MainWindow) + + set_source_files_properties( + quickunlock/dbus/org.freedesktop.PolicyKit1.Authority.xml + PROPERTIES + INCLUDE "quickunlock/PolkitDbusTypes.h" + ) + qt5_add_dbus_interface(core_SOURCES + quickunlock/dbus/org.freedesktop.PolicyKit1.Authority.xml + polkit_dbus + ) + + find_library(KEYUTILS_LIBRARIES NAMES keyutils) + if(NOT KEYUTILS_LIBRARIES) + message(FATAL_ERROR "Could not find libkeyutils") + endif() +endif() + +if(WIN32) + list(APPEND gui_SOURCES + gui/osutils/winutils/ScreenLockListenerWin.cpp + gui/osutils/winutils/WinUtils.cpp) + if (MSVC) + list(APPEND gui_SOURCES quickunlock/WindowsHello.cpp) + endif() +endif() + +if(WITH_XC_YUBIKEY) + list(APPEND gui_SOURCES gui/osutils/DeviceListener.cpp) + if(APPLE) + list(APPEND gui_SOURCES gui/osutils/macutils/DeviceListenerMac.cpp) + elseif(UNIX) + list(APPEND gui_SOURCES gui/osutils/nixutils/DeviceListenerLibUsb.cpp) + elseif(WIN32) + list(APPEND gui_SOURCES gui/osutils/winutils/DeviceListenerWin.cpp) + endif() endif() add_subdirectory(browser) add_subdirectory(proxy) if(WITH_XC_BROWSER) - set(keepassxcbrowser_LIB keepassxcbrowser) - set(keepassx_SOURCES ${keepassx_SOURCES} gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp) - set(keepassx_SOURCES ${keepassx_SOURCES} gui/entry/EntryURLModel.cpp) - set(keepassx_SOURCES ${keepassx_SOURCES} gui/reports/ReportsWidgetBrowserStatistics.cpp) - set(keepassx_SOURCES ${keepassx_SOURCES} gui/reports/ReportsPageBrowserStatistics.cpp) + set(browser_LIB browser) + list(APPEND gui_SOURCES + gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp + gui/entry/EntryURLModel.cpp + gui/reports/ReportsWidgetBrowserStatistics.cpp + gui/reports/ReportsPageBrowserStatistics.cpp) +endif() + +if(WITH_XC_BROWSER_PASSKEYS) + list(APPEND gui_SOURCES + gui/reports/ReportsWidgetPasskeys.cpp + gui/reports/ReportsPagePasskeys.cpp + gui/passkeys/PasskeyExporter.cpp + gui/passkeys/PasskeyExportDialog.cpp + gui/passkeys/PasskeyImporter.cpp + gui/passkeys/PasskeyImportDialog.cpp) endif() add_subdirectory(autotype) @@ -273,119 +324,114 @@ endif() add_subdirectory(thirdparty) set(autotype_SOURCES - core/Tools.cpp autotype/AutoType.cpp autotype/AutoTypeAction.cpp autotype/AutoTypeMatchModel.cpp autotype/AutoTypeMatchView.cpp autotype/AutoTypeSelectDialog.cpp autotype/PickcharsDialog.cpp - autotype/ShortcutWidget.cpp autotype/WindowSelectComboBox.cpp) -if(WIN32) - set(keepassx_SOURCES_MAINEXE ${keepassx_SOURCES_MAINEXE} ${CMAKE_SOURCE_DIR}/share/windows/icon.rc) -endif() +add_library(autotype STATIC ${autotype_SOURCES}) +target_link_libraries(autotype Qt5::Core Qt5::Widgets) if(WITH_XC_YUBIKEY) - list(APPEND keepassx_SOURCES + list(APPEND core_SOURCES keys/drivers/YubiKey.h - keys/drivers/YubiKey.cpp - keys/drivers/YubiKeyInterface.cpp - keys/drivers/YubiKeyInterfaceUSB.cpp + keys/drivers/YubiKey.cpp + keys/drivers/YubiKeyInterface.cpp + keys/drivers/YubiKeyInterfaceUSB.cpp keys/drivers/YubiKeyInterfacePCSC.cpp) else() - list(APPEND keepassx_SOURCES + list(APPEND core_SOURCES keys/drivers/YubiKey.h keys/drivers/YubiKeyStub.cpp) endif() if(WITH_XC_NETWORKING) - list(APPEND keepassx_SOURCES - core/HibpDownloader.cpp - core/NetworkManager.cpp + list(APPEND gui_SOURCES + networking/HibpDownloader.cpp + networking/NetworkManager.cpp + networking/UpdateChecker.cpp gui/UpdateCheckDialog.cpp gui/IconDownloader.cpp - gui/IconDownloaderDialog.cpp - updatecheck/UpdateChecker.cpp) -endif() - -if(APPLE) - list(APPEND keepassx_SOURCES touchid/TouchID.mm) - # TODO: Remove -Wno-error once deprecation warnings have been resolved. - set_source_files_properties(touchid/TouchID.mm PROPERTY COMPILE_FLAGS "-Wno-old-style-cast -Wno-error") + gui/IconDownloaderDialog.cpp) endif() configure_file(config-keepassx.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-keepassx.h) configure_file(git-info.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/git-info.h) -add_library(autotype STATIC ${autotype_SOURCES}) -target_link_libraries(autotype Qt5::Core Qt5::Widgets) - -add_library(keepassx_core STATIC ${keepassx_SOURCES}) - -set_target_properties(keepassx_core PROPERTIES COMPILE_DEFINITIONS KEEPASSX_BUILDING_CORE) -target_link_libraries(keepassx_core - autotype - ${keepassxcbrowser_LIB} +# Core Library Definition +add_library(keepassxc_core STATIC ${core_SOURCES}) +set_target_properties(keepassxc_core PROPERTIES COMPILE_DEFINITIONS KEEPASSX_BUILDING_CORE) +target_link_libraries(keepassxc_core ${qrcode_LIB} - ${fdosecrets_LIB} Qt5::Core Qt5::Concurrent - Qt5::Network - Qt5::Widgets - ${BOTAN2_LIBRARIES} + ${BOTAN_LIBRARIES} ${PCSC_LIBRARIES} ${ZXCVBN_LIBRARIES} ${ZLIB_LIBRARIES} + ${MINIZIP_LIBRARIES} ${ARGON2_LIBRARIES} - ${thirdparty_LIBRARIES} - ) + ${KEYUTILS_LIBRARIES} + ${thirdparty_LIBRARIES}) -if(WITH_XC_SSHAGENT) - target_link_libraries(keepassx_core sshagent) -endif() -if(WITH_XC_KEESHARE) - target_link_libraries(keepassx_core keeshare) -endif() +# GUI Library Definition +add_library(keepassxc_gui STATIC ${gui_SOURCES}) +set_target_properties(keepassxc_gui PROPERTIES COMPILE_DEFINITIONS KEEPASSX_BUILDING_CORE) +target_link_libraries(keepassxc_gui + keepassxc_core + Qt5::Network + Qt5::Widgets + autotype + ${browser_LIB} + ${fdosecrets_LIB} + ${keeshare_LIB} + ${sshagent_LIB}) if(APPLE) - target_link_libraries(keepassx_core "-framework Foundation -framework AppKit -framework Carbon -framework Security -framework LocalAuthentication") + target_link_libraries(keepassxc_gui "-framework Foundation -framework AppKit -framework Carbon -framework Security -framework LocalAuthentication -framework ScreenCaptureKit") if(Qt5MacExtras_FOUND) - target_link_libraries(keepassx_core Qt5::MacExtras) + target_link_libraries(keepassxc_gui Qt5::MacExtras) endif() endif() if(HAIKU) - target_link_libraries(keepassx_core network) + target_link_libraries(keepassxc_gui network) endif() if(UNIX AND NOT APPLE) - target_link_libraries(keepassx_core Qt5::DBus Qt5::X11Extras X11) + target_link_libraries(keepassxc_core Qt5::DBus ${LIBUSB_LIBRARIES}) + if(WITH_XC_X11) + target_link_libraries(keepassxc_gui Qt5::X11Extras X11) + endif() include_directories(${Qt5Gui_PRIVATE_INCLUDE_DIRS}) endif() if(WIN32) - target_link_libraries(keepassx_core Wtsapi32.lib Ws2_32.lib) + target_link_libraries(keepassxc_gui Wtsapi32.lib Ws2_32.lib) if (MSVC) - target_link_libraries(keepassx_core WindowsApp.lib) + target_link_libraries(keepassxc_gui WindowsApp.lib) endif() endif() +# Main Executable Definition if(WIN32) include(GenerateProductVersion) generate_product_version( - WIN32_ProductVersionFiles + WIN32_ResourceFiles NAME "KeePassXC" COMPANY_NAME "KeePassXC Team" VERSION_MAJOR ${KEEPASSXC_VERSION_MAJOR} VERSION_MINOR ${KEEPASSXC_VERSION_MINOR} VERSION_PATCH ${KEEPASSXC_VERSION_PATCH} ) + list(APPEND WIN32_ResourceFiles "${CMAKE_SOURCE_DIR}/share/windows/icon.rc") endif() -add_executable(${PROGNAME} WIN32 ${keepassx_SOURCES_MAINEXE} ${WIN32_ProductVersionFiles}) -target_link_libraries(${PROGNAME} keepassx_core) - +add_executable(${PROGNAME} WIN32 main.cpp ${WIN32_ResourceFiles}) +target_link_libraries(${PROGNAME} keepassxc_gui) set_target_properties(${PROGNAME} PROPERTIES ENABLE_EXPORTS ON) +# macOS App Bundle if(APPLE AND WITH_APP_BUNDLE) install(FILES ${CMAKE_SOURCE_DIR}/share/macosx/embedded.provisionprofile DESTINATION ${BUNDLE_INSTALL_DIR}) configure_file(${CMAKE_SOURCE_DIR}/share/macosx/Info.plist.cmake ${CMAKE_CURRENT_BINARY_DIR}/Info.plist) @@ -414,6 +460,7 @@ install(TARGETS ${PROGNAME} BUNDLE DESTINATION . COMPONENT Runtime RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime) +# Windows Installer Definition if(WIN32) if(${CMAKE_SIZEOF_VOID_P} EQUAL "8") set(OUTPUT_FILE_POSTFIX "Win64") @@ -434,19 +481,19 @@ if(WIN32) string(REGEX REPLACE "-.*$" "" KEEPASSXC_VERSION_CLEAN ${KEEPASSXC_VERSION}) set(CPACK_GENERATOR "ZIP;WIX") + set(CPACK_COMPONENTS_ALL "") set(CPACK_STRIP_FILES OFF) set(CPACK_PACKAGE_FILE_NAME "${PROGNAME}-${KEEPASSXC_VERSION}-${OUTPUT_FILE_POSTFIX}") set(CPACK_PACKAGE_INSTALL_DIRECTORY ${PROGNAME}) set(CPACK_PACKAGE_VERSION ${KEEPASSXC_VERSION_CLEAN}) set(CPACK_PACKAGE_VENDOR "${PROGNAME} Team") - string(REGEX REPLACE "/" "\\\\\\\\" CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/share/windows/installer-header.bmp") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_BINARY_DIR}/INSTALLER_LICENSE.txt") set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON) set(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/share/windows/keepassxc.ico") set(CPACK_NSIS_MUI_UNIICON "${CPACK_NSIS_MUI_ICON}") set(CPACK_NSIS_INSTALLED_ICON_NAME "\\\\${PROGNAME}.exe") - string(REGEX REPLACE "/" "\\\\\\\\" CPACK_NSIS_MUI_WELCOMEFINISHPAGE_BITMAP "${CMAKE_SOURCE_DIR}/share/windows/installer-wizard.bmp") - set(CPACK_NSIS_MUI_UNWELCOMEFINISHPAGE_BITMAP "${CPACK_NSIS_MUI_WELCOMEFINISHPAGE_BITMAP}") + set(CPACK_NSIS_MUI_WELCOMEFINISHPAGE_BITMAP "${CMAKE_SOURCE_DIR}/share/windows/installer-wizard.png") + set(CPACK_NSIS_MUI_UNWELCOMEFINISHPAGE_BITMAP "${CMAKE_SOURCE_DIR}/share/windows/installer-wizard.png") set(CPACK_NSIS_CREATE_ICONS_EXTRA "CreateShortCut '$SMPROGRAMS\\\\$STARTMENU_FOLDER\\\\${PROGNAME}.lnk' '$INSTDIR\\\\${PROGNAME}.exe'") set(CPACK_NSIS_DELETE_ICONS_EXTRA "Delete '$SMPROGRAMS\\\\$START_MENU\\\\${PROGNAME}.lnk'") set(CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS "ExecWait 'Taskkill /IM KeePassXC.exe'") @@ -459,8 +506,8 @@ if(WIN32) set(CPACK_NSIS_MUI_FINISHPAGE_RUN "../${PROGNAME}.exe") set(CPACK_WIX_UPGRADE_GUID 88785A72-3EAE-4F29-89E3-BC6B19BA9A5B) set(CPACK_WIX_PRODUCT_ICON "${CMAKE_SOURCE_DIR}/share/windows/keepassxc.ico") - set(CPACK_WIX_UI_BANNER "${CMAKE_SOURCE_DIR}/share/windows/wix-banner.bmp") - set(CPACK_WIX_UI_DIALOG "${CMAKE_SOURCE_DIR}/share/windows/wix-dialog.bmp") + set(CPACK_WIX_UI_BANNER "${CMAKE_SOURCE_DIR}/share/windows/installer-banner.png") + set(CPACK_WIX_UI_DIALOG "${CMAKE_SOURCE_DIR}/share/windows/installer-wizard.png") set(CPACK_WIX_UI_REF "KPXC_InstallDir") set(CPACK_WIX_TEMPLATE "${CMAKE_SOURCE_DIR}/share/windows/wix-template.xml") set(CPACK_WIX_PATCH_FILE "${CMAKE_SOURCE_DIR}/share/windows/wix-patch.xml") @@ -494,7 +541,7 @@ if(WIN32) # install OpenSSL library if(WITH_XC_NETWORKING) find_file(OPENSSL_DLL - NAMES libssl-1_1.dll libssl-1_1-x64.dll + NAMES libssl-3.dll libssl-3-x64.dll HINTS "${OPENSSL_ROOT_DIR}/bin" ) if (NOT OPENSSL_DLL) @@ -502,7 +549,7 @@ if(WIN32) endif() find_file(CRYPTO_DLL - NAMES libcrypto-1_1.dll libcrypto-1_1-x64.dll + NAMES libcrypto-3.dll libcrypto-3-x64.dll HINTS "${OPENSSL_ROOT_DIR}/bin" ) if (NOT CRYPTO_DLL) @@ -525,5 +572,5 @@ if(WIN32) endif() # The install commands in this subdirectory will be executed after all the install commands in the -# current scope are ran. It is required for correct functtioning of macdeployqt. +# current scope are ran. It is required for correct functioning of macdeployqt. add_subdirectory(post_install) diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index cdb68175e..738dc5ac6 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "config-keepassx.h" @@ -28,6 +29,7 @@ #include "autotype/AutoTypePlatformPlugin.h" #include "autotype/AutoTypeSelectDialog.h" #include "autotype/PickcharsDialog.h" +#include "core/Global.h" #include "core/Resources.h" #include "core/Tools.h" #include "gui/MainWindow.h" @@ -151,6 +153,7 @@ AutoType::AutoType(QObject* parent, bool test) #endif } + connect(this, SIGNAL(autotypeFinished()), SLOT(resetAutoTypeState())); connect(qApp, SIGNAL(aboutToQuit()), SLOT(unloadPlugin())); } @@ -225,7 +228,7 @@ void AutoType::createTestInstance() QStringList AutoType::windowTitles() { if (!m_plugin) { - return QStringList(); + return {}; } return m_plugin->windowTitles(); @@ -270,7 +273,7 @@ void AutoType::executeAutoTypeActions(const Entry* entry, MessageBox::critical(getMainWindow(), tr("Auto-Type Error"), errorMsg); } qWarning() << errorMsg; - emit autotypeRejected(); + emit autotypeFinished(); return; } @@ -317,13 +320,13 @@ void AutoType::executeAutoTypeActions(const Entry* entry, } for (const auto& action : asConst(actions)) { + // Cancel Auto-Type if the active window changed if (m_plugin->activeWindow() != window) { qWarning("Active window changed, interrupting auto-type."); - emit autotypeRejected(); - m_inAutoType.unlock(); - return; + break; } + bool failed = false; constexpr int max_retries = 5; for (int i = 1; i <= max_retries; i++) { auto result = action->exec(m_executor); @@ -335,26 +338,29 @@ void AutoType::executeAutoTypeActions(const Entry* entry, } if (!result.canRetry() || i == max_retries) { - MessageBox::critical(getMainWindow(), tr("Auto-Type Error"), result.errorString()); - emit autotypeRejected(); - m_inAutoType.unlock(); - return; + if (getMainWindow()) { + MessageBox::critical(getMainWindow(), tr("Auto-Type Error"), result.errorString()); + } + failed = true; + break; } Tools::wait(delay); } + + // Last action failed to complete, cancel the rest of the sequence + if (failed) { + break; + } } - m_windowForGlobal = 0; - m_windowTitleForGlobal.clear(); - - emit autotypePerformed(); m_inAutoType.unlock(); + emit autotypeFinished(); } /** * Single Autotype entry-point function - * Look up the Auto-Type sequence for the given entry then perfom Auto-Type in the active window + * Look up the Auto-Type sequence for the given entry then perform Auto-Type in the active window */ void AutoType::performAutoType(const Entry* entry) { @@ -370,7 +376,7 @@ void AutoType::performAutoType(const Entry* entry) /** * Extra Autotype entry-point function - * Perfom Auto-Type of the directly specified sequence in the active window + * Perform Auto-Type of the directly specified sequence in the active window */ void AutoType::performAutoTypeWithSequence(const Entry* entry, const QString& sequence) { @@ -384,7 +390,7 @@ void AutoType::performAutoTypeWithSequence(const Entry* entry, const QString& se void AutoType::startGlobalAutoType(const QString& search) { // Never Auto-Type into KeePassXC itself - if (qApp->focusWindow()) { + if (getMainWindow() && (qApp->activeWindow() || qApp->activeModalWidget())) { return; } @@ -428,38 +434,33 @@ void AutoType::startGlobalAutoType(const QString& search) */ void AutoType::performGlobalAutoType(const QList>& dbList, const QString& search) { - if (!m_plugin) { - return; - } - - if (!m_inGlobalAutoTypeDialog.tryLock()) { - return; - } - - if (m_windowTitleForGlobal.isEmpty()) { - m_inGlobalAutoTypeDialog.unlock(); + if (!m_plugin || !m_inGlobalAutoTypeDialog.tryLock()) { return; } QList matchList; - bool hideExpired = config()->get(Config::AutoTypeHideExpiredEntry).toBool(); + // Generate entry/sequence match list if there is a valid window title + if (!m_windowTitleForGlobal.isEmpty()) { + bool hideExpired = config()->get(Config::AutoTypeHideExpiredEntry).toBool(); + for (const auto& db : dbList) { + const QList dbEntries = db->rootGroup()->entriesRecursive(); + for (auto entry : dbEntries) { + auto group = entry->group(); + if (!group || !group->resolveAutoTypeEnabled() || !entry->autoTypeEnabled()) { + continue; + } - for (const auto& db : dbList) { - const QList dbEntries = db->rootGroup()->entriesRecursive(); - for (auto entry : dbEntries) { - auto group = entry->group(); - if (!group || !group->resolveAutoTypeEnabled() || !entry->autoTypeEnabled()) { - continue; - } - - if (hideExpired && entry->isExpired()) { - continue; - } - auto sequences = entry->autoTypeSequences(m_windowTitleForGlobal).toSet(); - for (const auto& sequence : sequences) { - matchList << AutoTypeMatch(entry, sequence); + if (hideExpired && entry->isExpired()) { + continue; + } + const QSet sequences = Tools::asSet(entry->autoTypeSequences(m_windowTitleForGlobal)); + for (const auto& sequence : sequences) { + matchList << AutoTypeMatch(entry, sequence); + } } } + } else { + qWarning() << "Auto-Type: Window title was empty from the operating system"; } // Show the selection dialog if we always ask, have multiple matches, or no matches @@ -487,12 +488,10 @@ void AutoType::performGlobalAutoType(const QList>& dbLi m_windowForGlobal, virtualMode ? AutoTypeExecutor::Mode::VIRTUAL : AutoTypeExecutor::Mode::NORMAL); - resetAutoTypeState(); }); connect(selectDialog, &QDialog::rejected, this, [this] { restoreWindowState(); - resetAutoTypeState(); - emit autotypeRejected(); + emit autotypeFinished(); }); #ifdef Q_OS_MACOS @@ -505,11 +504,9 @@ void AutoType::performGlobalAutoType(const QList>& dbLi } else if (!matchList.isEmpty()) { // Only one match and not asking, do it! executeAutoTypeActions(matchList.first().first, matchList.first().second, m_windowForGlobal); - resetAutoTypeState(); } else { // We should never get here - resetAutoTypeState(); - emit autotypeRejected(); + emit autotypeFinished(); } } @@ -645,13 +642,26 @@ AutoType::parseSequence(const QString& entrySequence, const Entry* entry, QStrin for (const auto& ch : totp) { actions << QSharedPointer::create(ch); } - } else if (placeholder == "pickchars") { - // Ignore this if we are syntax checking + } else if (placeholder.startsWith("pickchars")) { + // Reset to the original capture to preserve case + placeholder = match.captured(3); + + auto attribute = EntryAttributes::PasswordKey; + if (placeholder.contains(":")) { + attribute = placeholder.section(":", 1); + if (!entry->attributes()->hasKey(attribute)) { + error = tr("Entry does not have attribute for PICKCHARS: %1").arg(attribute); + return {}; + } + } + + // Bail out if we are just syntax checking if (syntaxOnly) { continue; } - // Show pickchars dialog for entry's password - auto password = entry->resolvePlaceholder(entry->password()); + + // Show pickchars dialog for the desired attribute + auto password = entry->resolvePlaceholder(entry->attribute(attribute)); if (!password.isEmpty()) { PickcharsDialog pickcharsDialog(password); if (pickcharsDialog.exec() == QDialog::Accepted && !pickcharsDialog.selectedChars().isEmpty()) { @@ -670,82 +680,31 @@ AutoType::parseSequence(const QString& entrySequence, const Entry* entry, QStrin } else if (placeholder.startsWith("t-conv:")) { // Reset to the original capture to preserve case placeholder = match.captured(3); - placeholder.replace("t-conv:", "", Qt::CaseInsensitive); - if (!placeholder.isEmpty()) { - auto sep = placeholder[0]; - auto parts = placeholder.split(sep); - if (parts.size() >= 4) { - auto resolved = entry->resolveMultiplePlaceholders(parts[1]); - auto type = parts[2].toLower(); - - if (type == "base64") { - resolved = resolved.toUtf8().toBase64(); - } else if (type == "hex") { - resolved = resolved.toUtf8().toHex(); - } else if (type == "uri") { - resolved = QUrl::toPercentEncoding(resolved.toUtf8()); - } else if (type == "uri-dec") { - resolved = QUrl::fromPercentEncoding(resolved.toUtf8()); - } else if (type.startsWith("u")) { - resolved = resolved.toUpper(); - } else if (type.startsWith("l")) { - resolved = resolved.toLower(); - } else { - error = tr("Invalid conversion type: %1").arg(type); - return {}; - } - for (const QChar& ch : resolved) { - actions << QSharedPointer::create(ch); - } - } else { - error = tr("Invalid conversion syntax: %1").arg(fullPlaceholder); - return {}; - } - } else { - error = tr("Invalid conversion syntax: %1").arg(fullPlaceholder); + auto resolved = entry->resolveConversionPlaceholder(placeholder, &error); + if (!error.isEmpty()) { return {}; } + for (const QChar& ch : resolved) { + actions << QSharedPointer::create(ch); + } } else if (placeholder.startsWith("t-replace-rx:")) { // Reset to the original capture to preserve case placeholder = match.captured(3); - placeholder.replace("t-replace-rx:", "", Qt::CaseInsensitive); - if (!placeholder.isEmpty()) { - auto sep = placeholder[0]; - auto parts = placeholder.split(sep); - if (parts.size() >= 5) { - auto resolvedText = entry->resolveMultiplePlaceholders(parts[1]); - auto resolvedSearch = entry->resolveMultiplePlaceholders(parts[2]); - auto resolvedReplace = entry->resolveMultiplePlaceholders(parts[3]); - // Replace $ with \\ to support Qt substitutions - resolvedReplace.replace(QRegularExpression(R"(\$(\d+))"), R"(\\1)"); - - auto searchRegex = QRegularExpression(resolvedSearch); - if (!searchRegex.isValid()) { - error = tr("Invalid regular expression syntax %1\n%2") - .arg(resolvedSearch, searchRegex.errorString()); - return {}; - } - - auto resolved = resolvedText.replace(searchRegex, resolvedReplace); - for (const QChar& ch : resolved) { - actions << QSharedPointer::create(ch); - } - } else { - error = tr("Invalid conversion syntax: %1").arg(fullPlaceholder); - return {}; - } - } else { - error = tr("Invalid conversion syntax: %1").arg(fullPlaceholder); + auto resolved = entry->resolveRegexPlaceholder(placeholder, &error); + if (!error.isEmpty()) { return {}; } + for (const QChar& ch : resolved) { + actions << QSharedPointer::create(ch); + } } else if (placeholder.startsWith("mode=")) { auto mode = AutoTypeExecutor::Mode::NORMAL; if (placeholder.endsWith("virtual")) { mode = AutoTypeExecutor::Mode::VIRTUAL; } actions << QSharedPointer::create(mode); - } else if (placeholder == "beep" || placeholder.startsWith("vkey") || placeholder.startsWith("appactivate") - || placeholder.startsWith("c:")) { + } else if (placeholder.startsWith("beep") || placeholder.startsWith("vkey") + || placeholder.startsWith("appactivate") || placeholder.startsWith("c:")) { // Ignore these commands } else { // Attempt to resolve an entry attribute diff --git a/src/autotype/AutoType.h b/src/autotype/AutoType.h index 5fc07adab..4708a7093 100644 --- a/src/autotype/AutoType.h +++ b/src/autotype/AutoType.h @@ -60,13 +60,13 @@ public slots: signals: void globalAutoTypeTriggered(const QString& search); - void autotypePerformed(); - void autotypeRejected(); + void autotypeFinished(); void autotypeRetypeTimeout(); private slots: void startGlobalAutoType(const QString& search); void unloadPlugin(); + void resetAutoTypeState(); private: enum WindowState @@ -84,7 +84,6 @@ private: WId window = 0, AutoTypeExecutor::Mode mode = AutoTypeExecutor::Mode::NORMAL); void restoreWindowState(); - void resetAutoTypeState(); static QList> parseSequence(const QString& entrySequence, const Entry* entry, QString& error, bool syntaxOnly = false); diff --git a/src/autotype/AutoTypeAction.h b/src/autotype/AutoTypeAction.h index 082d0aea7..f68917f8f 100644 --- a/src/autotype/AutoTypeAction.h +++ b/src/autotype/AutoTypeAction.h @@ -38,17 +38,17 @@ public: static Result Ok() { - return Result(true, false, QString()); + return {true, false, QString()}; } static Result Retry(const QString& error) { - return Result(false, true, error); + return {false, true, error}; } static Result Failed(const QString& error) { - return Result(false, false, error); + return {false, false, error}; } bool isOk() const diff --git a/src/autotype/AutoTypePlatformPlugin.h b/src/autotype/AutoTypePlatformPlugin.h index 7154dcdd7..1e1e7b846 100644 --- a/src/autotype/AutoTypePlatformPlugin.h +++ b/src/autotype/AutoTypePlatformPlugin.h @@ -25,9 +25,7 @@ class AutoTypePlatformInterface { public: - virtual ~AutoTypePlatformInterface() - { - } + virtual ~AutoTypePlatformInterface() = default; virtual bool isAvailable() = 0; virtual QStringList windowTitles() = 0; virtual WId activeWindow() = 0; diff --git a/src/autotype/AutoTypeSelectDialog.cpp b/src/autotype/AutoTypeSelectDialog.cpp index 55a0059bb..e7d184c8b 100644 --- a/src/autotype/AutoTypeSelectDialog.cpp +++ b/src/autotype/AutoTypeSelectDialog.cpp @@ -21,12 +21,8 @@ #include #include -#include -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) #include -#else -#include -#endif +#include #include "core/Config.h" #include "core/Database.h" @@ -35,6 +31,14 @@ #include "gui/Clipboard.h" #include "gui/Icons.h" +const auto MENU_FIELD_PROP_NAME = "menu_field"; +enum MENU_FIELD +{ + USERNAME = 1, + PASSWORD, + TOTP, +}; + AutoTypeSelectDialog::AutoTypeSelectDialog(QWidget* parent) : QDialog(parent) , m_ui(new Ui::AutoTypeSelectDialog()) @@ -81,12 +85,14 @@ AutoTypeSelectDialog::AutoTypeSelectDialog(QWidget* parent) connect(m_ui->action, &QToolButton::clicked, this, &AutoTypeSelectDialog::activateCurrentMatch); connect(m_ui->cancelButton, SIGNAL(clicked()), SLOT(reject())); + + auto sortColumn = config()->get(Config::AutoTypeDialogSortColumn).toInt(); + auto sortOrder = config()->get(Config::AutoTypeDialogSortOrder).toInt(); + m_ui->view->sortByColumn(sortColumn, sortOrder == 0 ? Qt::AscendingOrder : Qt::DescendingOrder); } // Required for QScopedPointer -AutoTypeSelectDialog::~AutoTypeSelectDialog() -{ -} +AutoTypeSelectDialog::~AutoTypeSelectDialog() = default; void AutoTypeSelectDialog::setMatches(const QList& matches, const QList>& dbs, @@ -260,14 +266,22 @@ void AutoTypeSelectDialog::updateActionMenu(const AutoTypeMatch& match) bool hasPassword = !match.first->password().isEmpty(); bool hasTotp = match.first->hasTotp(); - auto actions = m_actionMenu->actions(); - Q_ASSERT(actions.size() >= 6); - actions[0]->setEnabled(hasUsername); - actions[1]->setEnabled(hasPassword); - actions[2]->setEnabled(hasTotp); - actions[3]->setEnabled(hasUsername); - actions[4]->setEnabled(hasPassword); - actions[5]->setEnabled(hasTotp); + for (auto action : m_actionMenu->actions()) { + auto prop = action->property(MENU_FIELD_PROP_NAME); + if (prop.isValid()) { + switch (prop.toInt()) { + case MENU_FIELD::USERNAME: + action->setEnabled(hasUsername); + break; + case MENU_FIELD::PASSWORD: + action->setEnabled(hasPassword); + break; + case MENU_FIELD::TOTP: + action->setEnabled(hasTotp); + break; + } + } + } } void AutoTypeSelectDialog::buildActionMenu() @@ -278,19 +292,16 @@ void AutoTypeSelectDialog::buildActionMenu() auto typeTotpAction = new QAction(icons()->icon("auto-type"), tr("Type {TOTP}"), this); auto copyUsernameAction = new QAction(icons()->icon("username-copy"), tr("Copy Username"), this); auto copyPasswordAction = new QAction(icons()->icon("password-copy"), tr("Copy Password"), this); - auto copyTotpAction = new QAction(icons()->icon("chronometer"), tr("Copy TOTP"), this); + auto copyTotpAction = new QAction(icons()->icon("totp"), tr("Copy TOTP"), this); m_actionMenu->addAction(typeUsernameAction); m_actionMenu->addAction(typePasswordAction); m_actionMenu->addAction(typeTotpAction); -#ifdef Q_OS_WIN - auto typeVirtualAction = new QAction(icons()->icon("auto-type"), tr("Use Virtual Keyboard")); - m_actionMenu->addAction(typeVirtualAction); -#endif m_actionMenu->addAction(copyUsernameAction); m_actionMenu->addAction(copyPasswordAction); m_actionMenu->addAction(copyTotpAction); typeUsernameAction->setShortcut(Qt::CTRL + Qt::Key_1); + typeUsernameAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::USERNAME); connect(typeUsernameAction, &QAction::triggered, this, [&] { auto match = m_ui->view->currentMatch(); match.second = "{USERNAME}"; @@ -298,6 +309,7 @@ void AutoTypeSelectDialog::buildActionMenu() }); typePasswordAction->setShortcut(Qt::CTRL + Qt::Key_2); + typePasswordAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::PASSWORD); connect(typePasswordAction, &QAction::triggered, this, [&] { auto match = m_ui->view->currentMatch(); match.second = "{PASSWORD}"; @@ -305,13 +317,16 @@ void AutoTypeSelectDialog::buildActionMenu() }); typeTotpAction->setShortcut(Qt::CTRL + Qt::Key_3); + typeTotpAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::TOTP); connect(typeTotpAction, &QAction::triggered, this, [&] { auto match = m_ui->view->currentMatch(); match.second = "{TOTP}"; submitAutoTypeMatch(match); }); -#ifdef Q_OS_WIN +#if defined(Q_OS_WIN) || defined(Q_OS_MAC) + auto typeVirtualAction = new QAction(icons()->icon("auto-type"), tr("Use Virtual Keyboard"), nullptr); + m_actionMenu->insertAction(copyUsernameAction, typeVirtualAction); typeVirtualAction->setShortcut(Qt::CTRL + Qt::Key_4); connect(typeVirtualAction, &QAction::triggered, this, [&] { m_virtualMode = true; @@ -319,17 +334,8 @@ void AutoTypeSelectDialog::buildActionMenu() }); #endif -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) - // Qt 5.10 introduced a new "feature" to hide shortcuts in context menus - // Unfortunately, Qt::AA_DontShowShortcutsInContextMenus is broken, have to manually enable them - typeUsernameAction->setShortcutVisibleInContextMenu(true); - typePasswordAction->setShortcutVisibleInContextMenu(true); - typeTotpAction->setShortcutVisibleInContextMenu(true); -#ifdef Q_OS_WIN - typeVirtualAction->setShortcutVisibleInContextMenu(true); -#endif -#endif - + copyUsernameAction->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_1); + copyUsernameAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::USERNAME); connect(copyUsernameAction, &QAction::triggered, this, [&] { auto entry = m_ui->view->currentMatch().first; if (entry) { @@ -337,6 +343,9 @@ void AutoTypeSelectDialog::buildActionMenu() reject(); } }); + + copyPasswordAction->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_2); + copyPasswordAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::PASSWORD); connect(copyPasswordAction, &QAction::triggered, this, [&] { auto entry = m_ui->view->currentMatch().first; if (entry) { @@ -344,6 +353,9 @@ void AutoTypeSelectDialog::buildActionMenu() reject(); } }); + + copyTotpAction->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_3); + copyTotpAction->setProperty(MENU_FIELD_PROP_NAME, MENU_FIELD::TOTP); connect(copyTotpAction, &QAction::triggered, this, [&] { auto entry = m_ui->view->currentMatch().first; if (entry) { @@ -351,22 +363,30 @@ void AutoTypeSelectDialog::buildActionMenu() reject(); } }); + + // Qt 5.10 introduced a new "feature" to hide shortcuts in context menus + // Unfortunately, Qt::AA_DontShowShortcutsInContextMenus is broken, have to manually enable them + typeUsernameAction->setShortcutVisibleInContextMenu(true); + typePasswordAction->setShortcutVisibleInContextMenu(true); + typeTotpAction->setShortcutVisibleInContextMenu(true); +#if defined(Q_OS_WIN) || defined(Q_OS_MAC) + typeVirtualAction->setShortcutVisibleInContextMenu(true); +#endif + copyUsernameAction->setShortcutVisibleInContextMenu(true); + copyPasswordAction->setShortcutVisibleInContextMenu(true); + copyTotpAction->setShortcutVisibleInContextMenu(true); } void AutoTypeSelectDialog::showEvent(QShowEvent* event) { QDialog::showEvent(event); -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) auto screen = QApplication::screenAt(QCursor::pos()); if (!screen) { // screenAt can return a nullptr, default to the primary screen screen = QApplication::primaryScreen(); } QRect screenGeometry = screen->availableGeometry(); -#else - QRect screenGeometry = QApplication::desktop()->availableGeometry(QCursor::pos()); -#endif // Resize to last used size QSize size = config()->get(Config::GUI_AutoTypeSelectDialogSize).toSize(); @@ -381,6 +401,8 @@ void AutoTypeSelectDialog::showEvent(QShowEvent* event) void AutoTypeSelectDialog::hideEvent(QHideEvent* event) { config()->set(Config::GUI_AutoTypeSelectDialogSize, size()); + config()->set(Config::AutoTypeDialogSortColumn, m_ui->view->horizontalHeader()->sortIndicatorSection()); + config()->set(Config::AutoTypeDialogSortOrder, m_ui->view->horizontalHeader()->sortIndicatorOrder()); if (!m_accepted) { emit rejected(); } diff --git a/src/autotype/CMakeLists.txt b/src/autotype/CMakeLists.txt index 6b9b8b678..79bb50372 100644 --- a/src/autotype/CMakeLists.txt +++ b/src/autotype/CMakeLists.txt @@ -1,16 +1,14 @@ if(WITH_XC_AUTOTYPE) if(UNIX AND NOT APPLE AND NOT HAIKU) - find_package(X11) - find_package(Qt5X11Extras 5.2) + find_package(X11 REQUIRED COMPONENTS Xi XTest) + find_package(Qt5X11Extras 5.2 REQUIRED) if(PRINT_SUMMARY) add_feature_info(libXi X11_Xi_FOUND "The X11 Xi Protocol library is required for auto-type") add_feature_info(libXtst X11_XTest_FOUND "The X11 XTEST Protocol library is required for auto-type") add_feature_info(Qt5X11Extras Qt5X11Extras_FOUND "The Qt5X11Extras library is required for auto-type") endif() - if(X11_FOUND AND X11_Xi_FOUND AND X11_XTest_FOUND AND Qt5X11Extras_FOUND) - add_subdirectory(xcb) - endif() + add_subdirectory(xcb) elseif(APPLE) add_subdirectory(mac) elseif(WIN32) diff --git a/src/autotype/PickcharsDialog.cpp b/src/autotype/PickcharsDialog.cpp index 798f2e228..54ef34b5f 100644 --- a/src/autotype/PickcharsDialog.cpp +++ b/src/autotype/PickcharsDialog.cpp @@ -21,12 +21,8 @@ #include "gui/Icons.h" #include -#include -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) #include -#else -#include -#endif +#include PickcharsDialog::PickcharsDialog(const QString& string, QWidget* parent) : QDialog(parent) @@ -157,15 +153,11 @@ void PickcharsDialog::showEvent(QShowEvent* event) QDialog::showEvent(event); // Center on active screen -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) auto screen = QApplication::screenAt(QCursor::pos()); if (!screen) { // screenAt can return a nullptr, default to the primary screen screen = QApplication::primaryScreen(); } QRect screenGeometry = screen->availableGeometry(); -#else - QRect screenGeometry = QApplication::desktop()->availableGeometry(QCursor::pos()); -#endif move(screenGeometry.center().x() - (size().width() / 2), screenGeometry.center().y() - (size().height() / 2)); } diff --git a/src/autotype/PickcharsDialog.ui b/src/autotype/PickcharsDialog.ui index de9704eb0..2ff3ac0c6 100644 --- a/src/autotype/PickcharsDialog.ui +++ b/src/autotype/PickcharsDialog.ui @@ -34,7 +34,7 @@ - + 0 @@ -74,9 +74,10 @@ - PasswordEdit + PasswordWidget QLineEdit -

gui/PasswordEdit.h
+
gui/PasswordWidget.h
+ 1 diff --git a/src/autotype/mac/AutoTypeMac.cpp b/src/autotype/mac/AutoTypeMac.cpp index 015abe670..05a5d41de 100644 --- a/src/autotype/mac/AutoTypeMac.cpp +++ b/src/autotype/mac/AutoTypeMac.cpp @@ -172,7 +172,7 @@ void AutoTypePlatformMac::sendChar(const QChar& ch, bool isKeyDown) // Send key code to active window // see: Quartz Event Services // -void AutoTypePlatformMac::sendKey(Qt::Key key, bool isKeyDown, Qt::KeyboardModifiers modifiers = 0) +void AutoTypePlatformMac::sendKey(Qt::Key key, bool isKeyDown, Qt::KeyboardModifiers modifiers) { uint16 keyCode = macUtils()->qtToNativeKeyCode(key); if (keyCode == INVALID_KEYCODE) { @@ -238,38 +238,26 @@ AutoTypeAction::Result AutoTypeExecutorMac::execBegin(const AutoTypeBegin* actio AutoTypeAction::Result AutoTypeExecutorMac::execType(const AutoTypeKey* action) { - if (action->modifiers & Qt::ShiftModifier) { - m_platform->sendKey(Qt::Key_Shift, true); - } - if (action->modifiers & Qt::ControlModifier) { - m_platform->sendKey(Qt::Key_Control, true); - } - if (action->modifiers & Qt::AltModifier) { - m_platform->sendKey(Qt::Key_Alt, true); - } - if (action->modifiers & Qt::MetaModifier) { - m_platform->sendKey(Qt::Key_Meta, true); - } + if (action->key != Qt::Key_unknown) { - m_platform->sendKey(action->key, true); - m_platform->sendKey(action->key, false); + m_platform->sendKey(action->key, true, action->modifiers); + m_platform->sendKey(action->key, false, action->modifiers); } else { - m_platform->sendChar(action->character, true); - m_platform->sendChar(action->character, false); - } - - if (action->modifiers & Qt::ShiftModifier) { - m_platform->sendKey(Qt::Key_Shift, false); - } - if (action->modifiers & Qt::ControlModifier) { - m_platform->sendKey(Qt::Key_Control, false); - } - if (action->modifiers & Qt::AltModifier) { - m_platform->sendKey(Qt::Key_Alt, false); - } - if (action->modifiers & Qt::MetaModifier) { - m_platform->sendKey(Qt::Key_Meta, false); + if (action->modifiers != Qt::NoModifier) { + // If we have modifiers set than we intend to send a key sequence + // convert to uppercase to align with Qt Key mappings + int ch = action->character.toUpper().toLatin1(); + m_platform->sendKey(static_cast(ch), true, action->modifiers); + m_platform->sendKey(static_cast(ch), false, action->modifiers); + } else if (mode == Mode::VIRTUAL) { + int ch = action->character.toLatin1(); + m_platform->sendKey(static_cast(ch), true, action->modifiers); + m_platform->sendKey(static_cast(ch), false, action->modifiers); + } else { + m_platform->sendChar(action->character, true); + m_platform->sendChar(action->character, false); + } } Tools::sleep(execDelayMs); @@ -279,8 +267,8 @@ AutoTypeAction::Result AutoTypeExecutorMac::execType(const AutoTypeKey* action) AutoTypeAction::Result AutoTypeExecutorMac::execClearField(const AutoTypeClearField* action) { Q_UNUSED(action); - execType(new AutoTypeKey(Qt::Key_Up, Qt::ControlModifier)); - execType(new AutoTypeKey(Qt::Key_Down, Qt::ControlModifier | Qt::ShiftModifier)); + execType(new AutoTypeKey(Qt::Key_Left, Qt::ControlModifier)); + execType(new AutoTypeKey(Qt::Key_Right, Qt::ControlModifier | Qt::ShiftModifier)); execType(new AutoTypeKey(Qt::Key_Backspace)); return AutoTypeAction::Result::Ok(); } diff --git a/src/autotype/mac/AutoTypeMac.h b/src/autotype/mac/AutoTypeMac.h index e12a06ec5..54805a4e9 100644 --- a/src/autotype/mac/AutoTypeMac.h +++ b/src/autotype/mac/AutoTypeMac.h @@ -45,7 +45,7 @@ public: bool raiseOwnWindow() override; void sendChar(const QChar& ch, bool isKeyDown); - void sendKey(Qt::Key key, bool isKeyDown, Qt::KeyboardModifiers modifiers); + void sendKey(Qt::Key key, bool isKeyDown, Qt::KeyboardModifiers modifiers = 0); private: static int windowLayer(CFDictionaryRef window); diff --git a/src/autotype/mac/CMakeLists.txt b/src/autotype/mac/CMakeLists.txt index e0df901fd..ae1f5187f 100644 --- a/src/autotype/mac/CMakeLists.txt +++ b/src/autotype/mac/CMakeLists.txt @@ -1,7 +1,7 @@ set(autotype_mac_SOURCES AutoTypeMac.cpp) add_library(keepassxc-autotype-cocoa MODULE ${autotype_mac_SOURCES}) -set_target_properties(keepassxc-autotype-cocoa PROPERTIES LINK_FLAGS "-framework Foundation -framework AppKit -framework Carbon") +set_target_properties(keepassxc-autotype-cocoa PROPERTIES LINK_FLAGS "-framework Foundation -framework AppKit -framework Carbon -framework ScreenCaptureKit") target_link_libraries(keepassxc-autotype-cocoa ${PROGNAME} Qt5::Core Qt5::Widgets) install(TARGETS keepassxc-autotype-cocoa diff --git a/src/autotype/test/AutoTypeTest.cpp b/src/autotype/test/AutoTypeTest.cpp index 69c71a53c..641b9502a 100644 --- a/src/autotype/test/AutoTypeTest.cpp +++ b/src/autotype/test/AutoTypeTest.cpp @@ -29,7 +29,7 @@ QString AutoTypePlatformTest::keyToString(Qt::Key key) QStringList AutoTypePlatformTest::windowTitles() { - return QStringList(); + return {}; } WId AutoTypePlatformTest::activeWindow() diff --git a/src/autotype/test/AutoTypeTestInterface.h b/src/autotype/test/AutoTypeTestInterface.h index 7681f2ecb..8b1b7f9ad 100644 --- a/src/autotype/test/AutoTypeTestInterface.h +++ b/src/autotype/test/AutoTypeTestInterface.h @@ -23,9 +23,7 @@ class AutoTypeTestInterface { public: - virtual ~AutoTypeTestInterface() - { - } + virtual ~AutoTypeTestInterface() = default; virtual void setActiveWindowTitle(const QString& title) = 0; virtual QString actionChars() = 0; diff --git a/src/autotype/test/CMakeLists.txt b/src/autotype/test/CMakeLists.txt index 453e36af5..e27f2b1d9 100644 --- a/src/autotype/test/CMakeLists.txt +++ b/src/autotype/test/CMakeLists.txt @@ -1,4 +1,4 @@ set(autotype_test_SOURCES AutoTypeTest.cpp) add_library(keepassxc-autotype-test MODULE ${autotype_test_SOURCES}) -target_link_libraries(keepassxc-autotype-test keepassx_core ${autotype_LIB} Qt5::Core Qt5::Widgets) +target_link_libraries(keepassxc-autotype-test keepassxc_gui ${autotype_LIB} Qt5::Core Qt5::Widgets) diff --git a/src/autotype/windows/CMakeLists.txt b/src/autotype/windows/CMakeLists.txt index 33bd54c58..5b9cbecff 100644 --- a/src/autotype/windows/CMakeLists.txt +++ b/src/autotype/windows/CMakeLists.txt @@ -1,7 +1,7 @@ set(autotype_win_SOURCES AutoTypeWindows.cpp) add_library(keepassxc-autotype-windows MODULE ${autotype_win_SOURCES}) -target_link_libraries(keepassxc-autotype-windows keepassx_core ${autotype_LIB} Qt5::Core Qt5::Widgets) +target_link_libraries(keepassxc-autotype-windows keepassxc_gui ${autotype_LIB} Qt5::Core Qt5::Widgets) install(TARGETS keepassxc-autotype-windows BUNDLE DESTINATION . COMPONENT Runtime LIBRARY DESTINATION ${PLUGIN_INSTALL_DIR} COMPONENT Runtime) diff --git a/src/autotype/xcb/AutoTypeXCB.cpp b/src/autotype/xcb/AutoTypeXCB.cpp index f2b967656..af9c463ee 100644 --- a/src/autotype/xcb/AutoTypeXCB.cpp +++ b/src/autotype/xcb/AutoTypeXCB.cpp @@ -50,14 +50,11 @@ AutoTypePlatformX11::AutoTypePlatformX11() m_atomTransientFor = XInternAtom(m_dpy, "WM_TRANSIENT_FOR", True); m_atomWindow = XInternAtom(m_dpy, "WINDOW", True); - m_classBlacklist << "desktop_window" - << "gnome-panel"; // Gnome - m_classBlacklist << "kdesktop" - << "kicker"; // KDE 3 + m_classBlacklist << "desktop_window" << "gnome-panel"; // Gnome + m_classBlacklist << "kdesktop" << "kicker"; // KDE 3 m_classBlacklist << "Plasma"; // KDE 4 m_classBlacklist << "plasmashell"; // KDE 5 - m_classBlacklist << "xfdesktop" - << "xfce4-panel"; // Xfce 4 + m_classBlacklist << "xfdesktop" << "xfce4-panel"; // Xfce 4 m_xkb = nullptr; @@ -184,17 +181,17 @@ QString AutoTypePlatformX11::windowTitle(Window window, bool useBlacklist) if (useBlacklist && !title.isEmpty()) { if (window == m_rootWindow) { - return QString(); + return {}; } QString className = windowClassName(window); if (m_classBlacklist.contains(className)) { - return QString(); + return {}; } QList keepassxWindows = widgetsToX11Windows(QApplication::topLevelWidgets()); if (keepassxWindows.contains(window)) { - return QString(); + return {}; } } @@ -485,7 +482,7 @@ bool AutoTypePlatformX11::RemapKeycode(KeySym keysym) AutoTypeAction::Result AutoTypePlatformX11::sendKey(KeySym keysym, unsigned int modifiers) { if (keysym == NoSymbol) { - return AutoTypeAction::Result::Failed(tr("Trying to send invalid keysym.")); + return AutoTypeAction::Result::Failed(tr("Trying to send invalid keyboard symbol.")); } int keycode; @@ -606,8 +603,8 @@ AutoTypeAction::Result AutoTypeExecutorX11::execType(const AutoTypeKey* action) AutoTypeAction::Result AutoTypeExecutorX11::execClearField(const AutoTypeClearField* action) { Q_UNUSED(action); - execType(new AutoTypeKey(Qt::Key_Home, Qt::ControlModifier)); - execType(new AutoTypeKey(Qt::Key_End, Qt::ControlModifier | Qt::ShiftModifier)); + execType(new AutoTypeKey(Qt::Key_Home)); + execType(new AutoTypeKey(Qt::Key_End, Qt::ShiftModifier)); execType(new AutoTypeKey(Qt::Key_Backspace)); return AutoTypeAction::Result::Ok(); } diff --git a/src/autotype/xcb/CMakeLists.txt b/src/autotype/xcb/CMakeLists.txt index 0704de639..f14017f63 100644 --- a/src/autotype/xcb/CMakeLists.txt +++ b/src/autotype/xcb/CMakeLists.txt @@ -3,7 +3,7 @@ include_directories(SYSTEM ${X11_X11_INCLUDE_PATH}) set(autotype_XCB_SOURCES AutoTypeXCB.cpp) add_library(keepassxc-autotype-xcb MODULE ${autotype_XCB_SOURCES}) -target_link_libraries(keepassxc-autotype-xcb keepassx_core Qt5::Core Qt5::Widgets Qt5::X11Extras ${X11_X11_LIB} ${X11_Xi_LIB} ${X11_XTest_LIB}) +target_link_libraries(keepassxc-autotype-xcb keepassxc_gui Qt5::Core Qt5::Widgets Qt5::X11Extras ${X11_X11_LIB} ${X11_Xi_LIB} ${X11_XTest_LIB}) install(TARGETS keepassxc-autotype-xcb BUNDLE DESTINATION . COMPONENT Runtime LIBRARY DESTINATION ${PLUGIN_INSTALL_DIR} COMPONENT Runtime) diff --git a/src/browser/BrowserAccessControlDialog.cpp b/src/browser/BrowserAccessControlDialog.cpp index 85c940254..b3d9944d3 100644 --- a/src/browser/BrowserAccessControlDialog.cpp +++ b/src/browser/BrowserAccessControlDialog.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2013 Francois Ferrand - * 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 @@ -21,6 +21,7 @@ #include #include "core/Entry.h" +#include "gui/Icons.h" BrowserAccessControlDialog::BrowserAccessControlDialog(QWidget* parent) : QDialog(parent) @@ -31,14 +32,23 @@ BrowserAccessControlDialog::BrowserAccessControlDialog(QWidget* parent) m_ui->setupUi(this); connect(m_ui->allowButton, SIGNAL(clicked()), SLOT(accept())); - connect(m_ui->cancelButton, SIGNAL(clicked()), SLOT(reject())); + connect(m_ui->denyButton, SIGNAL(clicked()), SLOT(reject())); + connect(m_ui->itemsTable, SIGNAL(cellDoubleClicked(int, int)), this, SLOT(accept())); + connect(m_ui->itemsTable->selectionModel(), + SIGNAL(selectionChanged(QItemSelection, QItemSelection)), + this, + SLOT(selectionChanged())); + connect(m_ui->itemsTable, SIGNAL(acceptSelections()), SLOT(accept())); + connect(m_ui->itemsTable, SIGNAL(focusInWithoutSelections()), this, SLOT(selectionChanged())); } BrowserAccessControlDialog::~BrowserAccessControlDialog() { } -void BrowserAccessControlDialog::setItems(const QList& items, const QString& urlString, bool httpAuth) +void BrowserAccessControlDialog::setEntries(const QList& entriesToConfirm, + const QString& urlString, + bool httpAuth) { QUrl url(urlString); m_ui->siteLabel->setText(m_ui->siteLabel->text().arg( @@ -47,63 +57,115 @@ void BrowserAccessControlDialog::setItems(const QList& items, const QStr m_ui->rememberDecisionCheckBox->setVisible(!httpAuth); m_ui->rememberDecisionCheckBox->setChecked(false); - m_ui->itemsTable->setRowCount(items.count()); + m_ui->itemsTable->setRowCount(entriesToConfirm.count()); m_ui->itemsTable->setColumnCount(2); int row = 0; - for (const auto& entry : items) { - auto item = new QTableWidgetItem(); - item->setText(entry->title() + " - " + entry->username()); - item->setData(Qt::UserRole, row); - item->setCheckState(Qt::Checked); - item->setFlags(item->flags() | Qt::ItemIsUserCheckable); - m_ui->itemsTable->setItem(row, 0, item); - - auto disableButton = new QPushButton(tr("Disable for this site")); - disableButton->setAutoDefault(false); - connect(disableButton, &QAbstractButton::pressed, [&, item] { - emit disableAccess(item); - m_ui->itemsTable->removeRow(item->row()); - if (m_ui->itemsTable->rowCount() == 0) { - reject(); - } - }); - m_ui->itemsTable->setCellWidget(row, 1, disableButton); - + for (const auto& entry : entriesToConfirm) { + addEntryToList(entry, row); ++row; } - m_ui->itemsTable->resizeColumnsToContents(); m_ui->itemsTable->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch); - + m_ui->itemsTable->selectAll(); m_ui->allowButton->setFocus(); } +void BrowserAccessControlDialog::addEntryToList(Entry* entry, int row) +{ + auto item = new QTableWidgetItem(); + item->setText(entry->resolveMultiplePlaceholders(entry->title()) + " - " + + entry->resolveMultiplePlaceholders(entry->username())); + item->setData(Qt::UserRole, row); + item->setFlags(item->flags() | Qt::ItemIsSelectable); + m_ui->itemsTable->setItem(row, 0, item); + + auto disableButton = new QPushButton(); + disableButton->setIcon(icons()->icon("entry-delete")); + disableButton->setToolTip(tr("Disable for this site")); + + connect(disableButton, &QAbstractButton::pressed, [&, item, disableButton] { + auto font = item->font(); + if (item->flags() == Qt::NoItemFlags) { + item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); + item->setSelected(true); + + font.setStrikeOut(false); + item->setFont(font); + + disableButton->setIcon(icons()->icon("entry-delete")); + disableButton->setToolTip(tr("Disable for this site")); + m_ui->rememberDecisionCheckBox->setEnabled(true); + } else { + item->setFlags(Qt::NoItemFlags); + item->setSelected(false); + + font.setStrikeOut(true); + item->setFont(font); + + disableButton->setIcon(icons()->icon("entry-restore")); + disableButton->setToolTip(tr("Undo")); + + // Disable Remember checkbox if all items are disabled + auto areAllDisabled = BrowserAccessControlDialog::areAllDisabled(); + m_ui->rememberDecisionCheckBox->setEnabled(!areAllDisabled); + } + }); + + m_ui->itemsTable->setCellWidget(row, 1, disableButton); +} + bool BrowserAccessControlDialog::remember() const { return m_ui->rememberDecisionCheckBox->isChecked(); } -QList BrowserAccessControlDialog::getSelectedEntries() const +QList BrowserAccessControlDialog::getEntries(SelectionType selectionType) const { QList selected; - for (int i = 0; i < m_ui->itemsTable->rowCount(); ++i) { - auto item = m_ui->itemsTable->item(i, 0); - if (item->checkState() == Qt::Checked) { + for (auto& item : getAllItems()) { + // Add to list depending on selection type and item status + if ((selectionType == SelectionType::Selected && item->isSelected()) + || (selectionType == SelectionType::NonSelected && !item->isSelected()) + || (selectionType == SelectionType::Disabled && item->flags() == Qt::NoItemFlags)) { selected.append(item); } } return selected; } -QList BrowserAccessControlDialog::getNonSelectedEntries() const +void BrowserAccessControlDialog::selectionChanged() { - QList notSelected; - for (int i = 0; i < m_ui->itemsTable->rowCount(); ++i) { - auto item = m_ui->itemsTable->item(i, 0); - if (item->checkState() != Qt::Checked) { - notSelected.append(item); + auto selectedRows = m_ui->itemsTable->selectionModel()->selectedRows(); + + m_ui->allowButton->setEnabled(!selectedRows.isEmpty()); + m_ui->allowButton->setDefault(!selectedRows.isEmpty()); + m_ui->allowButton->setAutoDefault(!selectedRows.isEmpty()); + + if (selectedRows.isEmpty()) { + m_ui->allowButton->clearFocus(); + m_ui->denyButton->setFocus(); + } +} + +bool BrowserAccessControlDialog::areAllDisabled() const +{ + auto areAllDisabled = true; + for (const auto& item : getAllItems()) { + if (item->flags() != Qt::NoItemFlags) { + areAllDisabled = false; } } - return notSelected; + + return areAllDisabled; +} + +QList BrowserAccessControlDialog::getAllItems() const +{ + QList items; + for (int i = 0; i < m_ui->itemsTable->rowCount(); ++i) { + auto item = m_ui->itemsTable->item(i, 0); + items.append(item); + } + return items; } diff --git a/src/browser/BrowserAccessControlDialog.h b/src/browser/BrowserAccessControlDialog.h index 0bf14ecc4..3ecf5b506 100644 --- a/src/browser/BrowserAccessControlDialog.h +++ b/src/browser/BrowserAccessControlDialog.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2013 Francois Ferrand - * 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 @@ -16,8 +16,8 @@ * along with this program. If not, see . */ -#ifndef BROWSERACCESSCONTROLDIALOG_H -#define BROWSERACCESSCONTROLDIALOG_H +#ifndef KEEPASSXC_BROWSERACCESSCONTROLDIALOG_H +#define KEEPASSXC_BROWSERACCESSCONTROLDIALOG_H #include #include @@ -29,6 +29,13 @@ namespace Ui class BrowserAccessControlDialog; } +enum SelectionType +{ + Selected, + NonSelected, + Disabled +}; + class BrowserAccessControlDialog : public QDialog { Q_OBJECT @@ -37,17 +44,24 @@ public: explicit BrowserAccessControlDialog(QWidget* parent = nullptr); ~BrowserAccessControlDialog() override; - void setItems(const QList& items, const QString& urlString, bool httpAuth); + void setEntries(const QList& entriesToConfirm, const QString& urlString, bool httpAuth); bool remember() const; - - QList getSelectedEntries() const; - QList getNonSelectedEntries() const; + QList getEntries(SelectionType selectionType) const; signals: void disableAccess(QTableWidgetItem* item); +private slots: + void selectionChanged(); + +private: + void addEntryToList(Entry* entry, int row); + bool areAllDisabled() const; + QList getAllItems() const; + private: QScopedPointer m_ui; + QList m_entriesToConfirm; }; -#endif // BROWSERACCESSCONTROLDIALOG_H +#endif // KEEPASSXC_BROWSERACCESSCONTROLDIALOG_H diff --git a/src/browser/BrowserAccessControlDialog.ui b/src/browser/BrowserAccessControlDialog.ui old mode 100755 new mode 100644 index bed26e6ab..63f264311 --- a/src/browser/BrowserAccessControlDialog.ui +++ b/src/browser/BrowserAccessControlDialog.ui @@ -31,7 +31,7 @@ - + QAbstractItemView::NoEditTriggers @@ -39,7 +39,10 @@ false - QAbstractItemView::NoSelection + QAbstractItemView::ExtendedSelection + + + QAbstractItemView::SelectRows false @@ -97,7 +100,7 @@ - + Deny All @@ -110,6 +113,19 @@ + + rememberDecisionCheckBox + allowButton + denyButton + + + + CustomTableWidget + QTableWidget +
browser/CustomTableWidget.h
+ 1 +
+
diff --git a/src/browser/BrowserAction.cpp b/src/browser/BrowserAction.cpp index 70a0fb588..67cf7f0df 100644 --- a/src/browser/BrowserAction.cpp +++ b/src/browser/BrowserAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 KeePassXC Team + * Copyright (C) 2024 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 @@ -17,20 +17,35 @@ #include "BrowserAction.h" #include "BrowserMessageBuilder.h" -#include "BrowserService.h" +#ifdef WITH_XC_BROWSER_PASSKEYS +#include "BrowserPasskeys.h" +#include "PasskeyUtils.h" +#endif #include "BrowserSettings.h" -#include "BrowserShared.h" -#include "config-keepassx.h" #include "core/Global.h" #include "core/Tools.h" -#include #include -#include #include const int BrowserAction::MaxUrlLength = 256; +static const QString BROWSER_REQUEST_ASSOCIATE = QStringLiteral("associate"); +static const QString BROWSER_REQUEST_CHANGE_PUBLIC_KEYS = QStringLiteral("change-public-keys"); +static const QString BROWSER_REQUEST_CREATE_NEW_GROUP = QStringLiteral("create-new-group"); +static const QString BROWSER_REQUEST_DELETE_ENTRY = QStringLiteral("delete-entry"); +static const QString BROWSER_REQUEST_GENERATE_PASSWORD = QStringLiteral("generate-password"); +static const QString BROWSER_REQUEST_GET_DATABASEHASH = QStringLiteral("get-databasehash"); +static const QString BROWSER_REQUEST_GET_DATABASE_GROUPS = QStringLiteral("get-database-groups"); +static const QString BROWSER_REQUEST_GET_LOGINS = QStringLiteral("get-logins"); +static const QString BROWSER_REQUEST_GET_TOTP = QStringLiteral("get-totp"); +static const QString BROWSER_REQUEST_LOCK_DATABASE = QStringLiteral("lock-database"); +static const QString BROWSER_REQUEST_PASSKEYS_GET = QStringLiteral("passkeys-get"); +static const QString BROWSER_REQUEST_PASSKEYS_REGISTER = QStringLiteral("passkeys-register"); +static const QString BROWSER_REQUEST_REQUEST_AUTOTYPE = QStringLiteral("request-autotype"); +static const QString BROWSER_REQUEST_SET_LOGIN = QStringLiteral("set-login"); +static const QString BROWSER_REQUEST_TEST_ASSOCIATE = QStringLiteral("test-associate"); + QJsonObject BrowserAction::processClientMessage(QLocalSocket* socket, const QJsonObject& json) { if (json.isEmpty()) { @@ -38,17 +53,17 @@ QJsonObject BrowserAction::processClientMessage(QLocalSocket* socket, const QJso } bool triggerUnlock = false; - const QString trigger = json.value("triggerUnlock").toString(); + const auto trigger = json.value("triggerUnlock").toString(); if (!trigger.isEmpty() && trigger.compare(TRUE_STR) == 0) { triggerUnlock = true; } - const QString action = json.value("action").toString(); + const auto action = json.value("action").toString(); if (action.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - if (action.compare("change-public-keys") != 0 && action.compare("request-autotype") != 0 + if (action.compare(BROWSER_REQUEST_CHANGE_PUBLIC_KEYS) != 0 && action.compare(BROWSER_REQUEST_REQUEST_AUTOTYPE) != 0 && !browserService()->isDatabaseOpened()) { if (m_clientPublicKey.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CLIENT_PUBLIC_KEY_NOT_RECEIVED); @@ -67,32 +82,40 @@ QJsonObject BrowserAction::handleAction(QLocalSocket* socket, const QJsonObject& { QString action = json.value("action").toString(); - if (action.compare("change-public-keys") == 0) { + if (action.compare(BROWSER_REQUEST_CHANGE_PUBLIC_KEYS) == 0) { return handleChangePublicKeys(json, action); - } else if (action.compare("get-databasehash") == 0) { + } else if (action.compare(BROWSER_REQUEST_GET_DATABASEHASH) == 0) { return handleGetDatabaseHash(json, action); - } else if (action.compare("associate") == 0) { + } else if (action.compare(BROWSER_REQUEST_ASSOCIATE) == 0) { return handleAssociate(json, action); - } else if (action.compare("test-associate") == 0) { + } else if (action.compare(BROWSER_REQUEST_TEST_ASSOCIATE) == 0) { return handleTestAssociate(json, action); - } else if (action.compare("get-logins") == 0) { + } else if (action.compare(BROWSER_REQUEST_GET_LOGINS) == 0) { return handleGetLogins(json, action); - } else if (action.compare("generate-password") == 0) { + } else if (action.compare(BROWSER_REQUEST_GENERATE_PASSWORD) == 0) { return handleGeneratePassword(socket, json, action); - } else if (action.compare("set-login") == 0) { + } else if (action.compare(BROWSER_REQUEST_SET_LOGIN) == 0) { return handleSetLogin(json, action); - } else if (action.compare("lock-database") == 0) { + } else if (action.compare(BROWSER_REQUEST_LOCK_DATABASE) == 0) { return handleLockDatabase(json, action); - } else if (action.compare("get-database-groups") == 0) { + } else if (action.compare(BROWSER_REQUEST_GET_DATABASE_GROUPS) == 0) { return handleGetDatabaseGroups(json, action); - } else if (action.compare("create-new-group") == 0) { + } else if (action.compare(BROWSER_REQUEST_CREATE_NEW_GROUP) == 0) { return handleCreateNewGroup(json, action); - } else if (action.compare("get-totp") == 0) { + } else if (action.compare(BROWSER_REQUEST_GET_TOTP) == 0) { return handleGetTotp(json, action); - } else if (action.compare("delete-entry") == 0) { + } else if (action.compare(BROWSER_REQUEST_DELETE_ENTRY) == 0) { return handleDeleteEntry(json, action); - } else if (action.compare("request-autotype") == 0) { + } else if (action.compare(BROWSER_REQUEST_REQUEST_AUTOTYPE) == 0) { return handleGlobalAutoType(json, action); + } else if (action.compare("get-database-entries", Qt::CaseSensitive) == 0) { + return handleGetDatabaseEntries(json, action); +#ifdef WITH_XC_BROWSER_PASSKEYS + } else if (action.compare(BROWSER_REQUEST_PASSKEYS_GET) == 0) { + return handlePasskeysGet(json, action); + } else if (action.compare(BROWSER_REQUEST_PASSKEYS_REGISTER) == 0) { + return handlePasskeysRegister(json, action); +#endif } // Action was not recognized @@ -101,8 +124,8 @@ QJsonObject BrowserAction::handleAction(QLocalSocket* socket, const QJsonObject& QJsonObject BrowserAction::handleChangePublicKeys(const QJsonObject& json, const QString& action) { - const QString nonce = json.value("nonce").toString(); - const QString clientPublicKey = json.value("publicKey").toString(); + const auto nonce = json.value("nonce").toString(); + const auto clientPublicKey = json.value("publicKey").toString(); if (clientPublicKey.isEmpty() || nonce.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CLIENT_PUBLIC_KEY_NOT_RECEIVED); @@ -118,7 +141,7 @@ QJsonObject BrowserAction::handleChangePublicKeys(const QJsonObject& json, const m_publicKey = keyPair.first; m_secretKey = keyPair.second; - QJsonObject response = browserMessageBuilder()->buildMessage(browserMessageBuilder()->incrementNonce(nonce)); + auto response = browserMessageBuilder()->buildMessage(browserMessageBuilder()->incrementNonce(nonce)); response["action"] = action; response["publicKey"] = keyPair.first; @@ -127,36 +150,19 @@ QJsonObject BrowserAction::handleChangePublicKeys(const QJsonObject& json, const QJsonObject BrowserAction::handleGetDatabaseHash(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - if (hash.isEmpty()) { + if (browserRequest.hash.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_DATABASE_HASH_NOT_RECEIVED); } - QString command = decrypted.value("action").toString(); - if (!command.isEmpty() && command.compare("get-databasehash") == 0) { - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["hash"] = hash; - - // Update a legacy database hash if found - const QJsonArray hashes = decrypted.value("connectedKeys").toArray(); - if (!hashes.isEmpty()) { - const QString legacyHash = browserService()->getDatabaseHash(true); - if (hashes.contains(legacyHash)) { - message["oldHash"] = legacyHash; - } - } - - return buildResponse(action, message, newNonce); + const auto command = browserRequest.getString("action"); + if (!command.isEmpty() && command.compare(BROWSER_REQUEST_GET_DATABASEHASH) == 0) { + const Parameters params{{"hash", browserRequest.hash}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); @@ -164,16 +170,12 @@ QJsonObject BrowserAction::handleGetDatabaseHash(const QJsonObject& json, const QJsonObject BrowserAction::handleAssociate(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - const QString key = decrypted.value("key").toString(); + const auto key = browserRequest.getString("key"); if (key.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } @@ -181,19 +183,16 @@ QJsonObject BrowserAction::handleAssociate(const QJsonObject& json, const QStrin if (key.compare(m_clientPublicKey) == 0) { // Check for identification key. If it's not found, ensure backwards compatibility and use the current public // key - const QString idKey = decrypted.value("idKey").toString(); - const QString id = browserService()->storeKey((idKey.isEmpty() ? key : idKey)); + const auto idKey = browserRequest.getString("idKey"); + const auto id = browserService()->storeKey((idKey.isEmpty() ? key : idKey)); if (id.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_ACTION_CANCELLED_OR_DENIED); } m_associated = true; - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["hash"] = hash; - message["id"] = id; - return buildResponse(action, message, newNonce); + const Parameters params{{"hash", browserRequest.hash}, {"id", id}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); @@ -201,98 +200,76 @@ QJsonObject BrowserAction::handleAssociate(const QJsonObject& json, const QStrin QJsonObject BrowserAction::handleTestAssociate(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - const QString responseKey = decrypted.value("key").toString(); - const QString id = decrypted.value("id").toString(); + const auto responseKey = browserRequest.getString("key"); + const auto id = browserRequest.getString("id"); if (responseKey.isEmpty() || id.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_DATABASE_NOT_OPENED); } - const QString key = browserService()->getKey(id); + const auto key = browserService()->getKey(id); if (key.isEmpty() || key.compare(responseKey) != 0) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } m_associated = true; - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["hash"] = hash; - message["id"] = id; - - return buildResponse(action, message, newNonce); + const Parameters params{{"hash", browserRequest.hash}, {"id", id}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleGetLogins(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - const QString siteUrl = decrypted.value("url").toString(); + const auto siteUrl = browserRequest.getString("url"); if (siteUrl.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_NO_URL_PROVIDED); } - const QJsonArray keys = decrypted.value("keys").toArray(); - - StringPairList keyList; - for (const QJsonValue val : keys) { - const QJsonObject keyObject = val.toObject(); - keyList.push_back(qMakePair(keyObject.value("id").toString(), keyObject.value("key").toString())); - } - - const QString id = decrypted.value("id").toString(); - const QString formUrl = decrypted.value("submitUrl").toString(); - const QString auth = decrypted.value("httpAuth").toString(); + const auto id = browserRequest.getString("id"); + const auto formUrl = browserRequest.getString("submitUrl"); + const auto auth = browserRequest.getString("httpAuth"); const bool httpAuth = auth.compare(TRUE_STR) == 0; - const QJsonArray users = browserService()->findMatchingEntries(id, siteUrl, formUrl, "", keyList, httpAuth); + const auto keyList = getConnectionKeys(browserRequest); - if (users.isEmpty()) { + EntryParameters entryParameters; + entryParameters.dbid = id; + entryParameters.hash = browserRequest.hash; + entryParameters.siteUrl = siteUrl; + entryParameters.formUrl = formUrl; + entryParameters.httpAuth = httpAuth; + + bool entriesFound = false; + const auto entries = browserService()->findEntries(entryParameters, keyList, &entriesFound); + if (!entriesFound) { return getErrorReply(action, ERROR_KEEPASS_NO_LOGINS_FOUND); } - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["count"] = users.count(); - message["entries"] = users; - message["hash"] = hash; - message["id"] = id; - - return buildResponse(action, message, newNonce); + const Parameters params{ + {"count", entries.count()}, {"entries", entries}, {"hash", browserRequest.hash}, {"id", id}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleGeneratePassword(QLocalSocket* socket, const QJsonObject& json, const QString& action) { - auto errorMessage = getErrorReply(action, ERROR_KEEPASS_ACTION_CANCELLED_OR_DENIED); - auto nonce = json.value("nonce").toString(); - auto incrementedNonce = browserMessageBuilder()->incrementNonce(nonce); - - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - auto requestId = decrypted.value("requestID").toString(); + const auto requestId = browserRequest.getString("requestID"); // Do not allow multiple requests from the same client if (browserService()->isPasswordGeneratorRequested()) { @@ -303,89 +280,85 @@ QJsonObject BrowserAction::handleGeneratePassword(QLocalSocket* socket, const QJ errorReply["requestID"] = requestId; } + // Show the existing password generator + browserService()->showPasswordGenerator({}); return errorReply; } - browserService()->showPasswordGenerator(socket, incrementedNonce, m_clientPublicKey, m_secretKey); - return QJsonObject(); + KeyPairMessage keyPairMessage{socket, browserRequest.incrementedNonce, m_clientPublicKey, m_secretKey}; + + browserService()->showPasswordGenerator(keyPairMessage); + return {}; } QJsonObject BrowserAction::handleSetLogin(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - const QString url = decrypted.value("url").toString(); + const auto url = browserRequest.getString("url"); if (url.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_NO_URL_PROVIDED); } - const QString id = decrypted.value("id").toString(); - const QString login = decrypted.value("login").toString(); - const QString password = decrypted.value("password").toString(); - const QString submitUrl = decrypted.value("submitUrl").toString(); - const QString uuid = decrypted.value("uuid").toString(); - const QString group = decrypted.value("group").toString(); - const QString groupUuid = decrypted.value("groupUuid").toString(); - const QString downloadFavicon = decrypted.value("downloadFavicon").toString(); + const auto id = browserRequest.getString("id"); + const auto login = browserRequest.getString("login"); + const auto password = browserRequest.getString("password"); + const auto submitUrl = browserRequest.getString("submitUrl"); + const auto uuid = browserRequest.getString("uuid"); + const auto group = browserRequest.getString("group"); + const auto groupUuid = browserRequest.getString("groupUuid"); + const auto downloadFavicon = browserRequest.getString("downloadFavicon"); const QString realm; + EntryParameters entryParameters; + entryParameters.dbid = id; + entryParameters.login = login; + entryParameters.password = password; + entryParameters.siteUrl = url; + entryParameters.formUrl = submitUrl; + entryParameters.realm = realm; + bool result = true; if (uuid.isEmpty()) { auto dlFavicon = !downloadFavicon.isEmpty() && downloadFavicon.compare(TRUE_STR) == 0; - browserService()->addEntry(id, login, password, url, submitUrl, realm, group, groupUuid, dlFavicon); + browserService()->addEntry(entryParameters, group, groupUuid, dlFavicon); } else { if (!Tools::isValidUuid(uuid)) { return getErrorReply(action, ERROR_KEEPASS_NO_VALID_UUID_PROVIDED); } - result = browserService()->updateEntry(id, uuid, login, password, url, submitUrl); + result = browserService()->updateEntry(entryParameters, uuid); } - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["count"] = QJsonValue::Null; - message["entries"] = QJsonValue::Null; - message["error"] = result ? QStringLiteral("success") : QStringLiteral("error"); - message["hash"] = hash; - - return buildResponse(action, message, newNonce); + const Parameters params{{"count", QJsonValue::Null}, + {"entries", QJsonValue::Null}, + {"error", result ? QStringLiteral("success") : QStringLiteral("error")}, + {"hash", browserRequest.hash}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleLockDatabase(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - if (hash.isEmpty()) { + if (browserRequest.hash.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_DATABASE_HASH_NOT_RECEIVED); } - QString command = decrypted.value("action").toString(); - if (!command.isEmpty() && command.compare("lock-database") == 0) { + const auto command = browserRequest.getString("action"); + if (!command.isEmpty() && command.compare(BROWSER_REQUEST_LOCK_DATABASE) == 0) { browserService()->lockDatabase(); - - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - - return buildResponse(action, message, newNonce); + return buildResponse(action, browserRequest.incrementedNonce); } return getErrorReply(action, ERROR_KEEPASS_DATABASE_HASH_NOT_RECEIVED); @@ -393,166 +366,228 @@ QJsonObject BrowserAction::handleLockDatabase(const QJsonObject& json, const QSt QJsonObject BrowserAction::handleGetDatabaseGroups(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - QString command = decrypted.value("action").toString(); - if (command.isEmpty() || command.compare("get-database-groups") != 0) { + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_GET_DATABASE_GROUPS) != 0) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - const QJsonObject groups = browserService()->getDatabaseGroups(); + const auto groups = browserService()->getDatabaseGroups(); if (groups.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_NO_GROUPS_FOUND); } - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); + const Parameters params{{"groups", groups}}; + return buildResponse(action, browserRequest.incrementedNonce, params); +} - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["groups"] = groups; +QJsonObject BrowserAction::handleGetDatabaseEntries(const QJsonObject& json, const QString& action) +{ + if (!m_associated) { + return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); + } - return buildResponse(action, message, newNonce); + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { + return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); + } + + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare("get-database-entries") != 0) { + return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); + } + + if (!browserSettings()->allowGetDatabaseEntriesRequest()) { + return getErrorReply(action, ERROR_KEEPASS_ACCESS_TO_ALL_ENTRIES_DENIED); + } + + const QJsonArray entries = browserService()->getDatabaseEntries(); + if (entries.isEmpty()) { + return getErrorReply(action, ERROR_KEEPASS_NO_GROUPS_FOUND); + } + + const Parameters params{{"entries", entries}}; + + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleCreateNewGroup(const QJsonObject& json, const QString& action) { - const QString hash = browserService()->getDatabaseHash(); - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - QString command = decrypted.value("action").toString(); - if (command.isEmpty() || command.compare("create-new-group") != 0) { + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_CREATE_NEW_GROUP) != 0) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - QString group = decrypted.value("groupName").toString(); - const QJsonObject newGroup = browserService()->createNewGroup(group); + const auto group = browserRequest.getString("groupName"); + const auto newGroup = browserService()->createNewGroup(group); if (newGroup.isEmpty() || newGroup["name"].toString().isEmpty() || newGroup["uuid"].toString().isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_CREATE_NEW_GROUP); } - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["name"] = newGroup["name"]; - message["uuid"] = newGroup["uuid"]; - - return buildResponse(action, message, newNonce); + const Parameters params{{"name", newGroup["name"]}, {"uuid", newGroup["uuid"]}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleGetTotp(const QJsonObject& json, const QString& action) { - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - QString command = decrypted.value("action").toString(); - if (command.isEmpty() || command.compare("get-totp") != 0) { + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_GET_TOTP) != 0) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - const QString uuid = decrypted.value("uuid").toString(); + const auto uuid = browserRequest.getString("uuid"); if (!Tools::isValidUuid(uuid)) { return getErrorReply(action, ERROR_KEEPASS_NO_VALID_UUID_PROVIDED); } - // Get the current TOTP - const auto totp = browserService()->getCurrentTotp(uuid); - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["totp"] = totp; - - return buildResponse(action, message, newNonce); + const Parameters params{{"totp", browserService()->getCurrentTotp(uuid)}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleDeleteEntry(const QJsonObject& json, const QString& action) { - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - if (!m_associated) { return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); } - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - QString command = decrypted.value("action").toString(); - if (command.isEmpty() || command.compare("delete-entry") != 0) { + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_DELETE_ENTRY) != 0) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - const auto uuid = decrypted.value("uuid").toString(); + const auto uuid = browserRequest.getString("uuid"); if (!Tools::isValidUuid(uuid)) { return getErrorReply(action, ERROR_KEEPASS_NO_VALID_UUID_PROVIDED); } const auto result = browserService()->deleteEntry(uuid); - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - message["success"] = result ? TRUE_STR : FALSE_STR; - - return buildResponse(action, message, newNonce); + const Parameters params{{"success", result ? TRUE_STR : FALSE_STR}}; + return buildResponse(action, browserRequest.incrementedNonce, params); } QJsonObject BrowserAction::handleGlobalAutoType(const QJsonObject& json, const QString& action) { - const QString nonce = json.value("nonce").toString(); - const QString encrypted = json.value("message").toString(); - const QJsonObject decrypted = decryptMessage(encrypted, nonce); - - if (decrypted.isEmpty()) { + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); } - QString command = decrypted.value("action").toString(); - if (command.isEmpty() || command.compare("request-autotype") != 0) { + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_REQUEST_AUTOTYPE) != 0) { return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); } - const auto topLevelDomain = decrypted.value("search").toString(); + const auto topLevelDomain = browserRequest.getString("search"); if (topLevelDomain.length() > BrowserAction::MaxUrlLength) { return getErrorReply(action, ERROR_KEEPASS_NO_URL_PROVIDED); } browserService()->requestGlobalAutoType(topLevelDomain); - const QString newNonce = browserMessageBuilder()->incrementNonce(nonce); - QJsonObject message = browserMessageBuilder()->buildMessage(newNonce); - return buildResponse(action, message, newNonce); + return buildResponse(action, browserRequest.incrementedNonce); } +#ifdef WITH_XC_BROWSER_PASSKEYS +QJsonObject BrowserAction::handlePasskeysGet(const QJsonObject& json, const QString& action) +{ + if (!m_associated) { + return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); + } + + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { + return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); + } + + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_PASSKEYS_GET) != 0) { + return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); + } + + const auto publicKey = browserRequest.getObject("publicKey"); + if (publicKey.isEmpty()) { + return getErrorReply(action, ERROR_PASSKEYS_EMPTY_PUBLIC_KEY); + } + + const auto origin = browserRequest.getString("origin"); + if (!passkeyUtils()->isOriginAllowedWithLocalhost(browserSettings()->allowLocalhostWithPasskeys(), origin)) { + return getErrorReply(action, ERROR_PASSKEYS_INVALID_URL_PROVIDED); + } + + const auto keyList = getConnectionKeys(browserRequest); + const auto response = browserService()->showPasskeysAuthenticationPrompt(publicKey, origin, keyList); + + const Parameters params{{"response", response}}; + return buildResponse(action, browserRequest.incrementedNonce, params); +} + +QJsonObject BrowserAction::handlePasskeysRegister(const QJsonObject& json, const QString& action) +{ + if (!m_associated) { + return getErrorReply(action, ERROR_KEEPASS_ASSOCIATION_FAILED); + } + + const auto browserRequest = decodeRequest(json); + if (browserRequest.isEmpty()) { + return getErrorReply(action, ERROR_KEEPASS_CANNOT_DECRYPT_MESSAGE); + } + + const auto command = browserRequest.getString("action"); + if (command.isEmpty() || command.compare(BROWSER_REQUEST_PASSKEYS_REGISTER) != 0) { + return getErrorReply(action, ERROR_KEEPASS_INCORRECT_ACTION); + } + + const auto publicKey = browserRequest.getObject("publicKey"); + if (publicKey.isEmpty()) { + return getErrorReply(action, ERROR_PASSKEYS_EMPTY_PUBLIC_KEY); + } + + const auto origin = browserRequest.getString("origin"); + if (!passkeyUtils()->isOriginAllowedWithLocalhost(browserSettings()->allowLocalhostWithPasskeys(), origin)) { + return getErrorReply(action, ERROR_PASSKEYS_INVALID_URL_PROVIDED); + } + + const auto groupName = browserRequest.getString("groupName"); + const auto keyList = getConnectionKeys(browserRequest); + const auto response = browserService()->showPasskeysRegisterPrompt(publicKey, origin, groupName, keyList); + + const Parameters params{{"response", response}}; + return buildResponse(action, browserRequest.incrementedNonce, params); +} +#endif + QJsonObject BrowserAction::decryptMessage(const QString& message, const QString& nonce) { return browserMessageBuilder()->decryptMessage(message, nonce, m_clientPublicKey, m_secretKey); @@ -563,7 +598,31 @@ QJsonObject BrowserAction::getErrorReply(const QString& action, const int errorC return browserMessageBuilder()->getErrorReply(action, errorCode); } -QJsonObject BrowserAction::buildResponse(const QString& action, const QJsonObject& message, const QString& nonce) +QJsonObject BrowserAction::buildResponse(const QString& action, const QString& nonce, const Parameters& params) { - return browserMessageBuilder()->buildResponse(action, message, nonce, m_clientPublicKey, m_secretKey); + return browserMessageBuilder()->buildResponse(action, nonce, params, m_clientPublicKey, m_secretKey); +} + +BrowserRequest BrowserAction::decodeRequest(const QJsonObject& json) +{ + const auto nonce = json.value("nonce").toString(); + const auto encrypted = json.value("message").toString(); + + return {browserService()->getDatabaseHash(), + nonce, + browserMessageBuilder()->incrementNonce(nonce), + decryptMessage(encrypted, nonce)}; +} + +StringPairList BrowserAction::getConnectionKeys(const BrowserRequest& browserRequest) +{ + const auto keys = browserRequest.getArray("keys"); + + StringPairList keyList; + for (const auto val : keys) { + const auto keyObject = val.toObject(); + keyList.push_back(qMakePair(keyObject.value("id").toString(), keyObject.value("key").toString())); + } + + return keyList; } diff --git a/src/browser/BrowserAction.h b/src/browser/BrowserAction.h index 49c66b644..5c115f5f1 100644 --- a/src/browser/BrowserAction.h +++ b/src/browser/BrowserAction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 KeePassXC Team + * Copyright (C) 2023 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 @@ -15,14 +15,51 @@ * along with this program. If not, see . */ -#ifndef BROWSERACTION_H -#define BROWSERACTION_H +#ifndef KEEPASSXC_BROWSERACTION_H +#define KEEPASSXC_BROWSERACTION_H +#include "BrowserMessageBuilder.h" +#include "BrowserService.h" + +#include +#include #include -class QJsonObject; class QLocalSocket; +struct BrowserRequest +{ + QString hash; + QString nonce; + QString incrementedNonce; + QJsonObject decrypted; + + inline bool isEmpty() const + { + return decrypted.isEmpty(); + } + + inline QJsonArray getArray(const QString& param) const + { + return decrypted.value(param).toArray(); + } + + inline bool getBool(const QString& param) const + { + return decrypted.value(param).toBool(); + } + + inline QJsonObject getObject(const QString& param) const + { + return decrypted.value(param).toObject(); + } + + inline QString getString(const QString& param) const + { + return decrypted.value(param).toString(); + } +}; + class BrowserAction { public: @@ -42,16 +79,22 @@ private: QJsonObject handleSetLogin(const QJsonObject& json, const QString& action); QJsonObject handleLockDatabase(const QJsonObject& json, const QString& action); QJsonObject handleGetDatabaseGroups(const QJsonObject& json, const QString& action); + QJsonObject handleGetDatabaseEntries(const QJsonObject& json, const QString& action); QJsonObject handleCreateNewGroup(const QJsonObject& json, const QString& action); QJsonObject handleGetTotp(const QJsonObject& json, const QString& action); QJsonObject handleDeleteEntry(const QJsonObject& json, const QString& action); QJsonObject handleGlobalAutoType(const QJsonObject& json, const QString& action); +#ifdef WITH_XC_BROWSER_PASSKEYS + QJsonObject handlePasskeysGet(const QJsonObject& json, const QString& action); + QJsonObject handlePasskeysRegister(const QJsonObject& json, const QString& action); +#endif private: - QJsonObject buildMessage(const QString& nonce) const; - QJsonObject buildResponse(const QString& action, const QJsonObject& message, const QString& nonce); + QJsonObject buildResponse(const QString& action, const QString& nonce, const Parameters& params = {}); QJsonObject getErrorReply(const QString& action, const int errorCode) const; QJsonObject decryptMessage(const QString& message, const QString& nonce); + BrowserRequest decodeRequest(const QJsonObject& json); + StringPairList getConnectionKeys(const BrowserRequest& browserRequest); private: static const int MaxUrlLength; @@ -64,4 +107,4 @@ private: friend class TestBrowser; }; -#endif // BROWSERACTION_H +#endif // KEEPASSXC_BROWSERACTION_H diff --git a/src/browser/BrowserCbor.cpp b/src/browser/BrowserCbor.cpp new file mode 100644 index 000000000..7b151c410 --- /dev/null +++ b/src/browser/BrowserCbor.cpp @@ -0,0 +1,271 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "BrowserCbor.h" +#include "BrowserMessageBuilder.h" +#include +#include +#include + +// https://w3c.github.io/webauthn/#sctn-none-attestation +// https://w3c.github.io/webauthn/#sctn-generating-an-attestation-object +QByteArray BrowserCbor::cborEncodeAttestation(const QByteArray& authData) const +{ + QByteArray result; + QCborStreamWriter writer(&result); + + writer.startMap(3); + + writer.append("fmt"); + writer.append("none"); + + writer.append("attStmt"); + writer.startMap(0); + writer.endMap(); + + writer.append("authData"); + writer.appendByteString(authData.constData(), authData.size()); + + writer.endMap(); + + return result; +} + +// https://w3c.github.io/webauthn/#authdata-attestedcredentialdata-credentialpublickey +QByteArray BrowserCbor::cborEncodePublicKey(int alg, const QByteArray& first, const QByteArray& second) const +{ + const auto keyType = getCoseKeyType(alg); + if (keyType == 0) { + return {}; + } + + const auto curveParameter = getCurveParameter(alg); + if ((alg == WebAuthnAlgorithms::ES256 || alg == WebAuthnAlgorithms::EDDSA) && curveParameter == 0) { + return {}; + } + + QByteArray result; + QCborStreamWriter writer(&result); + + if (alg == WebAuthnAlgorithms::ES256) { + writer.startMap(5); + + // Key type + writer.append(1); + writer.append(keyType); + + // Signature algorithm + writer.append(3); + writer.append(alg); + + // Curve parameter + writer.append(-1); + writer.append(curveParameter); + + // Key x-coordinate + writer.append(-2); + writer.append(first); + + // Key y-coordinate + writer.append(-3); + writer.append(second); + + writer.endMap(); + } else if (alg == WebAuthnAlgorithms::RS256) { + writer.startMap(4); + + // Key type + writer.append(1); + writer.append(keyType); + + // Signature algorithm + writer.append(3); + writer.append(alg); + + // Key modulus + writer.append(-1); + writer.append(first); + + // Key exponent + writer.append(-2); + writer.append(second); + + writer.endMap(); + } else if (alg == WebAuthnAlgorithms::EDDSA) { + writer.startMap(4); + + // Key type + writer.append(1); + writer.append(keyType); + + // Algorithm + writer.append(3); + writer.append(alg); + + // Curve parameter + writer.append(-1); + writer.append(curveParameter); + + // Public key + writer.append(-2); + writer.append(first); + + writer.endMap(); + } + + return result; +} + +// See: https://fidoalliance.org/specs/common-specs/fido-registry-v2.1-ps-20191217.html#user-verification-methods +QByteArray BrowserCbor::cborEncodeExtensionData(const QJsonObject& extensions) const +{ + if (extensions.empty()) { + return {}; + } + + QByteArray result; + QCborStreamWriter writer(&result); + + writer.startMap(extensions.keys().count()); + + // https://w3c.github.io/webauthn/#sctn-authenticator-credential-properties-extension + if (extensions["credProps"].toBool()) { + writer.append("credProps"); + writer.startMap(1); + writer.append("rk"); + writer.append(true); + writer.endMap(); + } + + // https://w3c.github.io/webauthn/#sctn-uvm-extension + if (extensions["uvm"].toBool()) { + writer.append("uvm"); + + writer.startArray(1); + writer.startArray(3); + + // userVerificationMethod (USER_VERIFY_PRESENCE_INTERNAL "presence_internal", 0x00000001) + writer.append(quint32(1)); + + // keyProtectionType (KEY_PROTECTION_SOFTWARE "software", 0x0001) + writer.append(quint16(1)); + + // matcherProtectionType (MATCHER_PROTECTION_SOFTWARE "software", 0x0001) + writer.append(quint16(1)); + + writer.endArray(); + writer.endArray(); + } + + writer.endMap(); + + return result; +} + +QJsonObject BrowserCbor::getJsonFromCborData(const QByteArray& byteArray) const +{ + auto reader = QCborStreamReader(byteArray); + auto contents = QCborValue::fromCbor(reader); + if (reader.lastError()) { + return {}; + } + + const auto ret = handleCborValue(contents); + + // Parse variant result to QJsonDocument + const auto jsonDocument = QJsonDocument::fromVariant(ret); + if (jsonDocument.isNull() || jsonDocument.isEmpty()) { + return {}; + } + + return jsonDocument.object(); +} + +QVariant BrowserCbor::handleCborArray(const QCborArray& array) const +{ + QVariantList result; + result.reserve(array.size()); + + for (auto a : array) { + result.append(handleCborValue(a)); + } + + return result; +} + +QVariant BrowserCbor::handleCborMap(const QCborMap& map) const +{ + QVariantMap result; + for (auto pair : map) { + result.insert(handleCborValue(pair.first).toString(), handleCborValue(pair.second)); + } + + return QVariant::fromValue(result); +} + +QVariant BrowserCbor::handleCborValue(const QCborValue& value) const +{ + if (value.isArray()) { + return handleCborArray(value.toArray()); + } else if (value.isMap()) { + return handleCborMap(value.toMap()); + } else if (value.isByteArray()) { + auto ba = value.toByteArray(); + + // Return base64 instead of raw byte array + auto base64Str = browserMessageBuilder()->getBase64FromArray(ba); + return QVariant::fromValue(base64Str); + } + + return value.toVariant(); +} + +// https://www.rfc-editor.org/rfc/rfc8152#section-13.1 +unsigned int BrowserCbor::getCurveParameter(int alg) const +{ + switch (alg) { + case WebAuthnAlgorithms::ES256: + return WebAuthnCurveKey::P256; + case WebAuthnAlgorithms::ES384: + return WebAuthnCurveKey::P384; + case WebAuthnAlgorithms::ES512: + return WebAuthnCurveKey::P521; + case WebAuthnAlgorithms::EDDSA: + return WebAuthnCurveKey::ED25519; + default: + return WebAuthnCurveKey::INVALID_CURVE_KEY; + } +} + +// See: https://www.rfc-editor.org/rfc/rfc8152 +// AES/HMAC/ChaCha20 etc. carries symmetric keys (4) and OKP not supported currently. +unsigned int BrowserCbor::getCoseKeyType(int alg) const +{ + switch (alg) { + case WebAuthnAlgorithms::ES256: + return WebAuthnCoseKeyType::EC2; + case WebAuthnAlgorithms::ES384: + case WebAuthnAlgorithms::ES512: + return WebAuthnCoseKeyType::INVALID_COSE_KEY_TYPE; + case WebAuthnAlgorithms::EDDSA: + return WebAuthnCoseKeyType::OKP; + case WebAuthnAlgorithms::RS256: + return WebAuthnCoseKeyType::RSA; + default: + return WebAuthnCoseKeyType::INVALID_COSE_KEY_TYPE; + } +} diff --git a/src/browser/BrowserCbor.h b/src/browser/BrowserCbor.h new file mode 100644 index 000000000..52baa4fc8 --- /dev/null +++ b/src/browser/BrowserCbor.h @@ -0,0 +1,72 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_BROWSERCBOR_H +#define KEEPASSXC_BROWSERCBOR_H + +#include +#include +#include +#include + +enum WebAuthnAlgorithms : int +{ + ES256 = -7, + EDDSA = -8, + ES384 = -35, + ES512 = -36, + RS256 = -257 +}; + +// https://www.rfc-editor.org/rfc/rfc9053#section-7.1 +enum WebAuthnCurveKey : int +{ + INVALID_CURVE_KEY = 0, + P256 = 1, // EC2, NIST P-256, also known as secp256r1 + P384 = 2, // EC2, NIST P-384, also known as secp384r1 + P521 = 3, // EC2, NIST P-521, also known as secp521r1 + X25519 = 4, // OKP, X25519 for use w/ ECDH only + X448 = 5, // OKP, X448 for use w/ ECDH only + ED25519 = 6, // OKP, Ed25519 for use w/ EdDSA only + ED448 = 7 // OKP, Ed448 for use w/ EdDSA only +}; + +// https://www.rfc-editor.org/rfc/rfc8152 +// For RSA: https://www.rfc-editor.org/rfc/rfc8230#section-4 +enum WebAuthnCoseKeyType : int +{ + INVALID_COSE_KEY_TYPE = 0, + OKP = 1, // Octet Keypair + EC2 = 2, // Elliptic Curve + RSA = 3 // RSA +}; + +class BrowserCbor +{ +public: + QByteArray cborEncodeAttestation(const QByteArray& authData) const; + QByteArray cborEncodePublicKey(int alg, const QByteArray& first, const QByteArray& second) const; + QByteArray cborEncodeExtensionData(const QJsonObject& extensions) const; + QJsonObject getJsonFromCborData(const QByteArray& byteArray) const; + QVariant handleCborArray(const QCborArray& array) const; + QVariant handleCborMap(const QCborMap& map) const; + QVariant handleCborValue(const QCborValue& value) const; + unsigned int getCoseKeyType(int alg) const; + unsigned int getCurveParameter(int alg) const; +}; + +#endif // KEEPASSXC_BROWSERCBOR_H diff --git a/src/browser/BrowserEntryConfig.cpp b/src/browser/BrowserEntryConfig.cpp index a5bd3263f..63d3bd16b 100644 --- a/src/browser/BrowserEntryConfig.cpp +++ b/src/browser/BrowserEntryConfig.cpp @@ -19,6 +19,7 @@ #include "BrowserEntryConfig.h" #include "core/Entry.h" +#include "core/Global.h" #include "core/Tools.h" #include @@ -34,22 +35,22 @@ BrowserEntryConfig::BrowserEntryConfig(QObject* parent) QStringList BrowserEntryConfig::allowedHosts() const { - return m_allowedHosts.toList(); + return m_allowedHosts.values(); } void BrowserEntryConfig::setAllowedHosts(const QStringList& allowedHosts) { - m_allowedHosts = allowedHosts.toSet(); + m_allowedHosts = Tools::asSet(allowedHosts); } QStringList BrowserEntryConfig::deniedHosts() const { - return m_deniedHosts.toList(); + return m_deniedHosts.values(); } void BrowserEntryConfig::setDeniedHosts(const QStringList& deniedHosts) { - m_deniedHosts = deniedHosts.toSet(); + m_deniedHosts = Tools::asSet(deniedHosts); } bool BrowserEntryConfig::isAllowed(const QString& host) const diff --git a/src/browser/BrowserEntryConfig.h b/src/browser/BrowserEntryConfig.h index 6de4b0bc5..2cb76d5f5 100644 --- a/src/browser/BrowserEntryConfig.h +++ b/src/browser/BrowserEntryConfig.h @@ -16,8 +16,8 @@ * along with this program. If not, see . */ -#ifndef BROWSERENTRYCONFIG_H -#define BROWSERENTRYCONFIG_H +#ifndef KEEPASSXC_BROWSERENTRYCONFIG_H +#define KEEPASSXC_BROWSERENTRYCONFIG_H #include #include @@ -55,4 +55,4 @@ private: QString m_realm; }; -#endif // BROWSERENTRYCONFIG_H +#endif // KEEPASSXC_BROWSERENTRYCONFIG_H diff --git a/src/browser/BrowserEntrySaveDialog.h b/src/browser/BrowserEntrySaveDialog.h index 8675e36fa..44b3d6601 100644 --- a/src/browser/BrowserEntrySaveDialog.h +++ b/src/browser/BrowserEntrySaveDialog.h @@ -16,8 +16,8 @@ * along with this program. If not, see . */ -#ifndef BROWSERENTRYSAVEDIALOG_H -#define BROWSERENTRYSAVEDIALOG_H +#ifndef KEEPASSXC_BROWSERENTRYSAVEDIALOG_H +#define KEEPASSXC_BROWSERENTRYSAVEDIALOG_H #include "gui/DatabaseTabWidget.h" @@ -45,4 +45,4 @@ private: QScopedPointer m_ui; }; -#endif // BROWSERENTRYSAVEDIALOG_H +#endif // KEEPASSXC_BROWSERENTRYSAVEDIALOG_H diff --git a/src/browser/BrowserEntrySaveDialog.ui b/src/browser/BrowserEntrySaveDialog.ui old mode 100755 new mode 100644 index 5beb6fab8..2928f70ad --- a/src/browser/BrowserEntrySaveDialog.ui +++ b/src/browser/BrowserEntrySaveDialog.ui @@ -11,7 +11,7 @@ - KeePassXC-Browser Save Entry + KeePassXC - Select Database diff --git a/src/browser/BrowserHost.h b/src/browser/BrowserHost.h index 86f20f1e2..f3620c04c 100644 --- a/src/browser/BrowserHost.h +++ b/src/browser/BrowserHost.h @@ -15,8 +15,8 @@ * along with this program. If not, see . */ -#ifndef NATIVEMESSAGINGHOST_H -#define NATIVEMESSAGINGHOST_H +#ifndef KEEPASSXC_NATIVEMESSAGINGHOST_H +#define KEEPASSXC_NATIVEMESSAGINGHOST_H #include #include @@ -56,4 +56,4 @@ private: QList m_socketList; }; -#endif // NATIVEMESSAGINGHOST_H +#endif // KEEPASSXC_NATIVEMESSAGINGHOST_H diff --git a/src/browser/BrowserMessageBuilder.cpp b/src/browser/BrowserMessageBuilder.cpp index e537205df..e7b398c6a 100644 --- a/src/browser/BrowserMessageBuilder.cpp +++ b/src/browser/BrowserMessageBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 KeePassXC Team + * Copyright (C) 2023 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 @@ -19,11 +19,14 @@ #include "BrowserShared.h" #include "config-keepassx.h" #include "core/Global.h" -#include "core/Tools.h" +#include #include #include #include +#ifdef QT_DEBUG +#include +#endif #include @@ -66,17 +69,24 @@ QJsonObject BrowserMessageBuilder::buildMessage(const QString& nonce) const } QJsonObject BrowserMessageBuilder::buildResponse(const QString& action, - const QJsonObject& message, const QString& nonce, + const Parameters& params, const QString& publicKey, const QString& secretKey) { - QJsonObject response; - QString encryptedMessage = encryptMessage(message, nonce, publicKey, secretKey); + auto message = buildMessage(nonce); + + Parameters::const_iterator i; + for (i = params.constBegin(); i != params.constEnd(); ++i) { + message[i.key()] = QJsonValue::fromVariant(i.value()); + } + + const auto encryptedMessage = encryptMessage(message, nonce, publicKey, secretKey); if (encryptedMessage.isEmpty()) { return getErrorReply(action, ERROR_KEEPASS_CANNOT_ENCRYPT_MESSAGE); } + QJsonObject response; response["action"] = action; response["message"] = encryptedMessage; response["nonce"] = nonce; @@ -116,6 +126,36 @@ QString BrowserMessageBuilder::getErrorMessage(const int errorCode) const return QObject::tr("Cannot create new group"); case ERROR_KEEPASS_NO_VALID_UUID_PROVIDED: return QObject::tr("No valid UUID provided"); + case ERROR_KEEPASS_ACCESS_TO_ALL_ENTRIES_DENIED: + return QObject::tr("Access to all entries is denied"); + case ERROR_PASSKEYS_ATTESTATION_NOT_SUPPORTED: + return QObject::tr("Attestation not supported"); + case ERROR_PASSKEYS_CREDENTIAL_IS_EXCLUDED: + return QObject::tr("Credential is excluded"); + case ERROR_PASSKEYS_REQUEST_CANCELED: + return QObject::tr("Passkeys request canceled"); + case ERROR_PASSKEYS_INVALID_USER_VERIFICATION: + return QObject::tr("Invalid user verification"); + case ERROR_PASSKEYS_EMPTY_PUBLIC_KEY: + return QObject::tr("Empty public key"); + case ERROR_PASSKEYS_INVALID_URL_PROVIDED: + return QObject::tr("Invalid URL provided"); + case ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED: + return QObject::tr("Origin is empty or not allowed"); + case ERROR_PASSKEYS_DOMAIN_IS_NOT_VALID: + return QObject::tr("Effective domain is not a valid domain"); + case ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH: + return QObject::tr("Origin and RP ID do not match"); + case ERROR_PASSKEYS_NO_SUPPORTED_ALGORITHMS: + return QObject::tr("No supported algorithms were provided"); + case ERROR_PASSKEYS_WAIT_FOR_LIFETIMER: + return QObject::tr("Wait for timer to expire"); + case ERROR_PASSKEYS_UNKNOWN_ERROR: + return QObject::tr("Unknown passkeys error"); + case ERROR_PASSKEYS_INVALID_CHALLENGE: + return QObject::tr("Challenge is shorter than required minimum length"); + case ERROR_PASSKEYS_INVALID_USER_ID: + return QObject::tr("user.id does not match the required length"); default: return QObject::tr("Unknown error"); } @@ -127,7 +167,7 @@ QString BrowserMessageBuilder::encryptMessage(const QJsonObject& message, const QString& secretKey) { if (message.isEmpty() || nonce.isEmpty()) { - return QString(); + return {}; } const QString reply(QJsonDocument(message).toJson()); @@ -135,7 +175,7 @@ QString BrowserMessageBuilder::encryptMessage(const QJsonObject& message, return encrypt(reply, nonce, publicKey, secretKey); } - return QString(); + return {}; } QJsonObject BrowserMessageBuilder::decryptMessage(const QString& message, @@ -144,12 +184,12 @@ QJsonObject BrowserMessageBuilder::decryptMessage(const QString& message, const QString& secretKey) { if (message.isEmpty() || nonce.isEmpty()) { - return QJsonObject(); + return {}; } QByteArray ba = decrypt(message, nonce, publicKey, secretKey); if (ba.isEmpty()) { - return QJsonObject(); + return {}; } return getJsonObject(ba); @@ -174,7 +214,7 @@ QString BrowserMessageBuilder::encrypt(const QString& plaintext, e.resize(BrowserShared::NATIVEMSG_MAX_LENGTH); if (m.empty() || n.empty() || ck.empty() || sk.empty()) { - return QString(); + return {}; } if (crypto_box_easy(e.data(), m.data(), m.size(), n.data(), ck.data(), sk.data()) == 0) { @@ -182,7 +222,7 @@ QString BrowserMessageBuilder::encrypt(const QString& plaintext, return res.toBase64(); } - return QString(); + return {}; } QByteArray BrowserMessageBuilder::decrypt(const QString& encrypted, @@ -204,14 +244,14 @@ QByteArray BrowserMessageBuilder::decrypt(const QString& encrypted, d.resize(BrowserShared::NATIVEMSG_MAX_LENGTH); if (m.empty() || n.empty() || ck.empty() || sk.empty()) { - return QByteArray(); + return {}; } if (crypto_box_open_easy(d.data(), m.data(), ma.length(), n.data(), ck.data(), sk.data()) == 0) { return getQByteArray(d.data(), std::char_traits::length(reinterpret_cast(d.data()))); } - return QByteArray(); + return {}; } QString BrowserMessageBuilder::getBase64FromKey(const uchar* array, const uint len) @@ -234,6 +274,11 @@ QJsonObject BrowserMessageBuilder::getJsonObject(const uchar* pArray, const uint QByteArray arr = getQByteArray(pArray, len); QJsonParseError err; QJsonDocument doc(QJsonDocument::fromJson(arr, &err)); +#ifdef QT_DEBUG + if (doc.isNull()) { + qWarning() << "Cannot create QJsonDocument: " << err.errorString(); + } +#endif return doc.object(); } @@ -241,6 +286,12 @@ QJsonObject BrowserMessageBuilder::getJsonObject(const QByteArray& ba) const { QJsonParseError err; QJsonDocument doc(QJsonDocument::fromJson(ba, &err)); +#ifdef QT_DEBUG + if (doc.isNull()) { + qWarning() << "Cannot create QJsonDocument: " << err.errorString(); + } +#endif + return doc.object(); } @@ -257,3 +308,65 @@ QString BrowserMessageBuilder::incrementNonce(const QString& nonce) sodium_increment(n.data(), n.size()); return getQByteArray(n.data(), n.size()).toBase64(); } + +QString BrowserMessageBuilder::getRandomBytesAsBase64(int bytes) const +{ + if (bytes == 0) { + return {}; + } + + std::shared_ptr buf(new unsigned char[bytes]); + Botan::Sodium::randombytes_buf(buf.get(), bytes); + + return getBase64FromArray(reinterpret_cast(buf.get()), bytes); +} + +QString BrowserMessageBuilder::getBase64FromArray(const char* arr, int len) const +{ + if (len < 1) { + return {}; + } + + auto data = QByteArray::fromRawData(arr, len); + return getBase64FromArray(data); +} + +// Returns URL encoded base64 with trailing removed +QString BrowserMessageBuilder::getBase64FromArray(const QByteArray& byteArray) const +{ + if (byteArray.length() < 1) { + return {}; + } + + return byteArray.toBase64(QByteArray::Base64UrlEncoding | QByteArray::OmitTrailingEquals); +} + +QString BrowserMessageBuilder::getBase64FromJson(const QJsonObject& jsonObject) const +{ + if (jsonObject.isEmpty()) { + return {}; + } + + const auto dataArray = QJsonDocument(jsonObject).toJson(QJsonDocument::Compact); + return getBase64FromArray(dataArray); +} + +QByteArray BrowserMessageBuilder::getArrayFromHexString(const QString& hexString) const +{ + return QByteArray::fromHex(hexString.toUtf8()); +} + +QByteArray BrowserMessageBuilder::getArrayFromBase64(const QString& base64str) const +{ + return QByteArray::fromBase64(base64str.toUtf8(), QByteArray::Base64UrlEncoding | QByteArray::OmitTrailingEquals); +} + +QByteArray BrowserMessageBuilder::getSha256Hash(const QString& str) const +{ + return QCryptographicHash::hash(str.toUtf8(), QCryptographicHash::Sha256); +} + +QString BrowserMessageBuilder::getSha256HashAsBase64(const QString& str) const +{ + return getBase64FromArray(QCryptographicHash::hash(str.toUtf8(), QCryptographicHash::Sha256)); +} diff --git a/src/browser/BrowserMessageBuilder.h b/src/browser/BrowserMessageBuilder.h index 9dc4f27f0..5a2f96e16 100644 --- a/src/browser/BrowserMessageBuilder.h +++ b/src/browser/BrowserMessageBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 KeePassXC Team + * Copyright (C) 2024 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 @@ -15,14 +15,17 @@ * along with this program. If not, see . */ -#ifndef BROWSERMESSAGEBUILDER_H -#define BROWSERMESSAGEBUILDER_H +#ifndef KEEPASSXC_BROWSERMESSAGEBUILDER_H +#define KEEPASSXC_BROWSERMESSAGEBUILDER_H #include #include +#include class QJsonObject; +typedef QMap Parameters; + namespace { enum @@ -44,7 +47,22 @@ namespace ERROR_KEEPASS_NO_LOGINS_FOUND = 15, ERROR_KEEPASS_NO_GROUPS_FOUND = 16, ERROR_KEEPASS_CANNOT_CREATE_NEW_GROUP = 17, - ERROR_KEEPASS_NO_VALID_UUID_PROVIDED = 18 + ERROR_KEEPASS_NO_VALID_UUID_PROVIDED = 18, + ERROR_KEEPASS_ACCESS_TO_ALL_ENTRIES_DENIED = 19, + ERROR_PASSKEYS_ATTESTATION_NOT_SUPPORTED = 20, + ERROR_PASSKEYS_CREDENTIAL_IS_EXCLUDED = 21, + ERROR_PASSKEYS_REQUEST_CANCELED = 22, + ERROR_PASSKEYS_INVALID_USER_VERIFICATION = 23, + ERROR_PASSKEYS_EMPTY_PUBLIC_KEY = 24, + ERROR_PASSKEYS_INVALID_URL_PROVIDED = 25, + ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED = 26, + ERROR_PASSKEYS_DOMAIN_IS_NOT_VALID = 27, + ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH = 28, + ERROR_PASSKEYS_NO_SUPPORTED_ALGORITHMS = 29, + ERROR_PASSKEYS_WAIT_FOR_LIFETIMER = 30, + ERROR_PASSKEYS_UNKNOWN_ERROR = 31, + ERROR_PASSKEYS_INVALID_CHALLENGE = 32, + ERROR_PASSKEYS_INVALID_USER_ID = 33, }; } @@ -55,11 +73,10 @@ public: static BrowserMessageBuilder* instance(); QPair getKeyPair(); - QJsonObject buildMessage(const QString& nonce) const; QJsonObject buildResponse(const QString& action, - const QJsonObject& message, const QString& nonce, + const Parameters& params, const QString& publicKey, const QString& secretKey); QJsonObject getErrorReply(const QString& action, const int errorCode) const; @@ -81,6 +98,14 @@ public: QJsonObject getJsonObject(const QByteArray& ba) const; QByteArray base64Decode(const QString& str); QString incrementNonce(const QString& nonce); + QString getRandomBytesAsBase64(int bytes) const; + QString getBase64FromArray(const char* arr, int len) const; + QString getBase64FromArray(const QByteArray& byteArray) const; + QString getBase64FromJson(const QJsonObject& jsonObject) const; + QByteArray getArrayFromHexString(const QString& hexString) const; + QByteArray getArrayFromBase64(const QString& base64str) const; + QByteArray getSha256Hash(const QString& str) const; + QString getSha256HashAsBase64(const QString& str) const; private: Q_DISABLE_COPY(BrowserMessageBuilder); @@ -93,4 +118,4 @@ static inline BrowserMessageBuilder* browserMessageBuilder() return BrowserMessageBuilder::instance(); } -#endif // BROWSERMESSAGEBUILDER_H +#endif // KEEPASSXC_BROWSERMESSAGEBUILDER_H diff --git a/src/browser/BrowserPasskeys.cpp b/src/browser/BrowserPasskeys.cpp new file mode 100644 index 000000000..1f9804487 --- /dev/null +++ b/src/browser/BrowserPasskeys.cpp @@ -0,0 +1,454 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "BrowserPasskeys.h" +#include "BrowserMessageBuilder.h" +#include "BrowserService.h" +#include "PasskeyUtils.h" +#include "config-keepassx.h" +#include "crypto/Random.h" +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +Q_GLOBAL_STATIC(BrowserPasskeys, s_browserPasskeys); + +// KeePassXC AAGUID: fdb141b2-5d84-443e-8a35-4698c205a502 +const QString BrowserPasskeys::AAGUID = QStringLiteral("fdb141b25d84443e8a354698c205a502"); + +// Authenticator capabilities +const QString BrowserPasskeys::ATTACHMENT_CROSS_PLATFORM = QStringLiteral("cross-platform"); +const QString BrowserPasskeys::ATTACHMENT_PLATFORM = QStringLiteral("platform"); +const QString BrowserPasskeys::AUTHENTICATOR_TRANSPORT_INTERNAL = QStringLiteral("internal"); +const QString BrowserPasskeys::AUTHENTICATOR_TRANSPORT_NFC = QStringLiteral("nfc"); +const QString BrowserPasskeys::AUTHENTICATOR_TRANSPORT_USB = QStringLiteral("usb"); +const bool BrowserPasskeys::SUPPORT_RESIDENT_KEYS = true; +const bool BrowserPasskeys::SUPPORT_USER_VERIFICATION = true; + +const QString BrowserPasskeys::PUBLIC_KEY = QStringLiteral("public-key"); +const QString BrowserPasskeys::REQUIREMENT_DISCOURAGED = QStringLiteral("discouraged"); +const QString BrowserPasskeys::REQUIREMENT_PREFERRED = QStringLiteral("preferred"); +const QString BrowserPasskeys::REQUIREMENT_REQUIRED = QStringLiteral("required"); + +const QString BrowserPasskeys::PASSKEYS_ATTESTATION_DIRECT = QStringLiteral("direct"); +const QString BrowserPasskeys::PASSKEYS_ATTESTATION_NONE = QStringLiteral("none"); + +BrowserPasskeys* BrowserPasskeys::instance() +{ + return s_browserPasskeys; +} + +PublicKeyCredential BrowserPasskeys::buildRegisterPublicKeyCredential(const QJsonObject& credentialCreationOptions, + const TestingVariables& testingVariables) +{ + if (!passkeyUtils()->checkCredentialCreationOptions(credentialCreationOptions)) { + return {}; + } + + const auto authenticatorAttachment = credentialCreationOptions["authenticatorAttachment"]; + const auto clientDataJson = credentialCreationOptions["clientDataJSON"].toObject(); + const auto extensions = credentialCreationOptions["extensions"].toString(); + const auto credentialId = testingVariables.credentialId.isEmpty() + ? browserMessageBuilder()->getRandomBytesAsBase64(ID_BYTES) + : testingVariables.credentialId; + + // Credential private key + const auto alg = getAlgorithmFromPublicKey(credentialCreationOptions); + const auto privateKey = buildCredentialPrivateKey(alg, testingVariables.first, testingVariables.second); + if (privateKey.cborEncodedPublicKey.isEmpty() && privateKey.privateKeyPem.isEmpty()) { + // Key creation failed + return {}; + } + + // Attestation + const auto attestationObject = buildAttestationObject( + credentialCreationOptions, extensions, credentialId, privateKey.cborEncodedPublicKey, testingVariables); + if (attestationObject.isEmpty()) { + return {}; + } + + // Authenticator data + const auto authenticatorData = buildAuthenticatorData(credentialCreationOptions["rp"]["id"].toString(), extensions); + + // Response + QJsonObject responseObject; + responseObject["attestationObject"] = browserMessageBuilder()->getBase64FromArray(attestationObject); + responseObject["clientDataJSON"] = browserMessageBuilder()->getBase64FromJson(clientDataJson); + responseObject["clientExtensionResults"] = credentialCreationOptions["clientExtensionResults"]; + + // Additions for extension side functions + responseObject["authenticatorData"] = browserMessageBuilder()->getBase64FromArray(authenticatorData); + responseObject["publicKeyAlgorithm"] = alg; + + // PublicKeyCredential + QJsonObject publicKeyCredential; + publicKeyCredential["authenticatorAttachment"] = authenticatorAttachment; + publicKeyCredential["id"] = credentialId; + publicKeyCredential["response"] = responseObject; + publicKeyCredential["type"] = PUBLIC_KEY; + + PublicKeyCredential result; + result.credentialId = credentialId; + result.key = privateKey.privateKeyPem; + result.response = publicKeyCredential; + return result; +} + +QJsonObject BrowserPasskeys::buildGetPublicKeyCredential(const QJsonObject& assertionOptions, + const QString& credentialId, + const QString& userHandle, + const QString& privateKeyPem) +{ + if (!passkeyUtils()->checkCredentialAssertionOptions(assertionOptions)) { + return {}; + } + + const auto authenticatorData = + buildAuthenticatorData(assertionOptions["rpId"].toString(), assertionOptions["extensions"].toString()); + const auto clientDataJson = assertionOptions["clientDataJson"].toObject(); + const auto clientDataArray = QJsonDocument(clientDataJson).toJson(QJsonDocument::Compact); + + const auto signature = buildSignature(authenticatorData, clientDataArray, privateKeyPem); + if (signature.isEmpty()) { + return {}; + } + + QJsonObject responseObject; + responseObject["authenticatorData"] = browserMessageBuilder()->getBase64FromArray(authenticatorData); + responseObject["clientDataJSON"] = browserMessageBuilder()->getBase64FromJson(clientDataJson); + responseObject["clientExtensionResults"] = assertionOptions["clientExtensionResults"]; + responseObject["signature"] = browserMessageBuilder()->getBase64FromArray(signature); + responseObject["userHandle"] = userHandle; + + QJsonObject publicKeyCredential; + publicKeyCredential["authenticatorAttachment"] = BrowserPasskeys::ATTACHMENT_PLATFORM; + publicKeyCredential["id"] = credentialId; + publicKeyCredential["response"] = responseObject; + publicKeyCredential["type"] = PUBLIC_KEY; + + return publicKeyCredential; +} + +// https://w3c.github.io/webauthn/#attestation-object +QByteArray BrowserPasskeys::buildAttestationObject(const QJsonObject& credentialCreationOptions, + const QString& extensions, + const QString& credentialId, + const QByteArray& cborEncodedPublicKey, + const TestingVariables& testingVariables) +{ + QByteArray result; + + // Create SHA256 hash from rpId + const auto rpIdHash = browserMessageBuilder()->getSha256Hash(credentialCreationOptions["rp"]["id"].toString()); + result.append(rpIdHash); + + // Use default flags + const auto flags = setFlagsFromJson(QJsonObject( + {{"ED", !extensions.isEmpty()}, {"AT", true}, {"BS", false}, {"BE", false}, {"UV", true}, {"UP", true}})); + result.append(flags); + + // Signature counter (not supported, always 0 + const char counter[4] = {0x00, 0x00, 0x00, 0x00}; + result.append(QByteArray::fromRawData(counter, 4)); + + // AAGUID + result.append(browserMessageBuilder()->getArrayFromHexString(AAGUID)); + + // Credential length + const char credentialLength[2] = {0x00, ID_BYTES}; + result.append(QByteArray::fromRawData(credentialLength, 2)); + + // Credential Id + result.append(QByteArray::fromBase64( + testingVariables.credentialId.isEmpty() ? credentialId.toUtf8() : testingVariables.credentialId.toUtf8(), + QByteArray::Base64UrlEncoding)); + + // Credential public key + result.append(cborEncodedPublicKey); + + // Add extension data if available + if (!extensions.isEmpty()) { + result.append(browserMessageBuilder()->getArrayFromBase64(extensions)); + } + + // The final result should be CBOR encoded + return m_browserCbor.cborEncodeAttestation(result); +} + +// Build a short version of the attestation object for webauthn.get +QByteArray BrowserPasskeys::buildAuthenticatorData(const QString& rpId, const QString& extensions) +{ + QByteArray result; + + const auto rpIdHash = browserMessageBuilder()->getSha256Hash(rpId); + result.append(rpIdHash); + + const auto flags = setFlagsFromJson(QJsonObject( + {{"ED", !extensions.isEmpty()}, {"AT", false}, {"BS", false}, {"BE", false}, {"UV", true}, {"UP", true}})); + result.append(flags); + + // Signature counter (not supported, always 0 + const char counter[4] = {0x00, 0x00, 0x00, 0x00}; + result.append(QByteArray::fromRawData(counter, 4)); + + if (!extensions.isEmpty()) { + result.append(browserMessageBuilder()->getArrayFromBase64(extensions)); + } + + return result; +} + +// See: https://w3c.github.io/webauthn/#sctn-encoded-credPubKey-examples +AttestationKeyPair +BrowserPasskeys::buildCredentialPrivateKey(int alg, const QString& predefinedFirst, const QString& predefinedSecond) +{ + // Only support -7, P256 (EC), -8 (EdDSA) and -257 (RSA) for now + if (alg != WebAuthnAlgorithms::ES256 && alg != WebAuthnAlgorithms::RS256 && alg != WebAuthnAlgorithms::EDDSA) { + return {}; + } + + QByteArray firstPart; + QByteArray secondPart; + QByteArray pem; + + if (!predefinedFirst.isEmpty() && !predefinedSecond.isEmpty()) { + firstPart = browserMessageBuilder()->getArrayFromBase64(predefinedFirst); + secondPart = browserMessageBuilder()->getArrayFromBase64(predefinedSecond); + } else { + if (alg == WebAuthnAlgorithms::ES256) { + try { + Botan::ECDSA_PrivateKey privateKey(*randomGen()->getRng(), Botan::EC_Group("secp256r1")); + const auto& publicPoint = privateKey.public_point(); + auto x = publicPoint.get_affine_x(); + auto y = publicPoint.get_affine_y(); + firstPart = bigIntToQByteArray(x); + secondPart = bigIntToQByteArray(y); + + auto privateKeyPem = Botan::PKCS8::PEM_encode(privateKey); + pem = QByteArray::fromStdString(privateKeyPem); + } catch (std::exception& e) { + qWarning("BrowserWebAuthn::buildCredentialPrivateKey: Could not create EC2 private key: %s", e.what()); + return {}; + } + } else if (alg == WebAuthnAlgorithms::RS256) { + try { + Botan::RSA_PrivateKey privateKey(*randomGen()->getRng(), RSA_BITS, RSA_EXPONENT); + auto modulus = privateKey.get_n(); + auto exponent = privateKey.get_e(); + firstPart = bigIntToQByteArray(modulus); + secondPart = bigIntToQByteArray(exponent); + + auto privateKeyPem = Botan::PKCS8::PEM_encode(privateKey); + pem = QByteArray::fromStdString(privateKeyPem); + } catch (std::exception& e) { + qWarning("BrowserWebAuthn::buildCredentialPrivateKey: Could not create RSA private key: %s", e.what()); + return {}; + } + } else if (alg == WebAuthnAlgorithms::EDDSA) { + try { + Botan::Ed25519_PrivateKey key(*randomGen()->getRng()); + auto publicKey = key.get_public_key(); +#ifdef WITH_XC_BOTAN3 + auto privateKey = key.raw_private_key_bits(); +#else + auto privateKey = key.get_private_key(); +#endif + firstPart = browserMessageBuilder()->getQByteArray(publicKey.data(), publicKey.size()); + secondPart = browserMessageBuilder()->getQByteArray(privateKey.data(), privateKey.size()); + + auto privateKeyPem = Botan::PKCS8::PEM_encode(key); + pem = QByteArray::fromStdString(privateKeyPem); + } catch (std::exception& e) { + qWarning("BrowserWebAuthn::buildCredentialPrivateKey: Could not create EdDSA private key: %s", + e.what()); + return {}; + } + } + } + + auto result = m_browserCbor.cborEncodePublicKey(alg, firstPart, secondPart); + if (result.isEmpty()) { + return {}; + } + + AttestationKeyPair attestationKeyPair; + attestationKeyPair.cborEncodedPublicKey = result; + attestationKeyPair.privateKeyPem = pem; + return attestationKeyPair; +} + +QByteArray BrowserPasskeys::buildSignature(const QByteArray& authenticatorData, + const QByteArray& clientData, + const QString& privateKeyPem) +{ + const auto clientDataHash = browserMessageBuilder()->getSha256Hash(clientData); + const auto attToBeSigned = authenticatorData + clientDataHash; + + try { + const auto privateKeyArray = privateKeyPem.toUtf8(); + Botan::DataSource_Memory dataSource(reinterpret_cast(privateKeyArray.constData()), + privateKeyArray.size()); + + const auto key = Botan::PKCS8::load_key(dataSource).release(); + const auto privateKeyBytes = key->private_key_bits(); + const auto algName = key->algo_name(); + const auto algId = key->algorithm_identifier(); + + std::vector rawSignature; + if (algName == "ECDSA") { + Botan::ECDSA_PrivateKey privateKey(algId, privateKeyBytes); +#ifdef WITH_XC_BOTAN3 + Botan::PK_Signer signer( + privateKey, *randomGen()->getRng(), "EMSA1(SHA-256)", Botan::Signature_Format::DerSequence); +#else + Botan::PK_Signer signer(privateKey, *randomGen()->getRng(), "EMSA1(SHA-256)", Botan::DER_SEQUENCE); +#endif + + signer.update(reinterpret_cast(attToBeSigned.constData()), attToBeSigned.size()); + rawSignature = signer.signature(*randomGen()->getRng()); + } else if (algName == "RSA") { + Botan::RSA_PrivateKey privateKey(algId, privateKeyBytes); + Botan::PK_Signer signer(privateKey, *randomGen()->getRng(), "EMSA3(SHA-256)"); + + signer.update(reinterpret_cast(attToBeSigned.constData()), attToBeSigned.size()); + rawSignature = signer.signature(*randomGen()->getRng()); + } else if (algName == "Ed25519") { + Botan::Ed25519_PrivateKey privateKey(algId, privateKeyBytes); + // "Pure" here means signing message directly. SHA-512 is only used with pre-hashed Ed25519 (Ed25519ph). + Botan::PK_Signer signer(privateKey, *randomGen()->getRng(), "Pure"); + + signer.update(reinterpret_cast(attToBeSigned.constData()), attToBeSigned.size()); + rawSignature = signer.signature(*randomGen()->getRng()); + } else { + qWarning("BrowserWebAuthn::buildSignature: Algorithm not supported"); + return {}; + } + + auto signature = QByteArray(reinterpret_cast(rawSignature.data()), rawSignature.size()); + return signature; + } catch (std::exception& e) { + qWarning("BrowserWebAuthn::buildSignature: Could not sign key: %s", e.what()); + return {}; + } +} + +// Parse authentication data byte array to JSON +// See: https://www.w3.org/TR/webauthn/images/fido-attestation-structures.svg +// And: https://w3c.github.io/webauthn/#attested-credential-data +QJsonObject BrowserPasskeys::parseAuthData(const QByteArray& authData) const +{ + auto rpIdHash = authData.mid(AuthDataOffsets::RPIDHASH, HASH_BYTES); + auto flags = authData.mid(AuthDataOffsets::FLAGS, 1); + auto counter = authData.mid(AuthDataOffsets::SIGNATURE_COUNTER, 4); + auto aaGuid = authData.mid(AuthDataOffsets::AAGUID, 16); + auto credentialLength = authData.mid(AuthDataOffsets::CREDENTIAL_LENGTH, 2); + auto credLen = qFromBigEndian(credentialLength.data()); + auto credentialId = authData.mid(AuthDataOffsets::CREDENTIAL_ID, credLen); + auto publicKey = authData.mid(AuthDataOffsets::CREDENTIAL_ID + credLen); + + QJsonObject credentialDataJson({{"aaguid", browserMessageBuilder()->getBase64FromArray(aaGuid)}, + {"credentialId", browserMessageBuilder()->getBase64FromArray(credentialId)}, + {"publicKey", m_browserCbor.getJsonFromCborData(publicKey)}}); + + QJsonObject result({{"credentialData", credentialDataJson}, + {"flags", parseFlags(flags)}, + {"rpIdHash", browserMessageBuilder()->getBase64FromArray(rpIdHash)}, + {"signatureCounter", QJsonValue(qFromBigEndian(counter))}}); + + return result; +} + +// See: https://w3c.github.io/webauthn/#table-authData +QJsonObject BrowserPasskeys::parseFlags(const QByteArray& flags) const +{ + if (flags.isEmpty()) { + return {}; + } + + auto flagsByte = static_cast(flags[0]); + std::bitset<8> flagBits(flagsByte); + + return QJsonObject({{"ED", flagBits.test(AuthenticatorFlags::ED)}, + {"AT", flagBits.test(AuthenticatorFlags::AT)}, + {"BS", flagBits.test(AuthenticatorFlags::BS)}, + {"BE", flagBits.test(AuthenticatorFlags::BE)}, + {"UV", flagBits.test(AuthenticatorFlags::UV)}, + {"UP", flagBits.test(AuthenticatorFlags::UP)}}); +} + +// https://w3c.github.io/webauthn/#table-authData +// ED - Extension Data, AT - Attested Credential, BS - Reserved +// BE - Reserved , UV - User Verified, UP - User Present +char BrowserPasskeys::setFlagsFromJson(const QJsonObject& flags) const +{ + if (flags.isEmpty()) { + return 0; + } + + char flagBits = 0x00; + auto setFlag = [&](const char* key, unsigned char bit) { + if (flags[key].toBool()) { + flagBits |= 1 << bit; + } + }; + + setFlag("ED", AuthenticatorFlags::ED); + setFlag("AT", AuthenticatorFlags::AT); + setFlag("BS", AuthenticatorFlags::BS); + setFlag("BE", AuthenticatorFlags::BE); + setFlag("UV", AuthenticatorFlags::UV); + setFlag("UP", AuthenticatorFlags::UP); + + return flagBits; +} + +// Returns the first supported algorithm from the pubKeyCredParams list (only support ES256, RS256 and EdDSA for now) +WebAuthnAlgorithms BrowserPasskeys::getAlgorithmFromPublicKey(const QJsonObject& credentialCreationOptions) const +{ + const auto pubKeyCredParams = credentialCreationOptions["credTypesAndPubKeyAlgs"].toArray(); + if (!pubKeyCredParams.isEmpty()) { + const auto alg = pubKeyCredParams.first()["alg"].toInt(); + if (alg == WebAuthnAlgorithms::ES256 || alg == WebAuthnAlgorithms::RS256 || alg == WebAuthnAlgorithms::EDDSA) { + return static_cast(alg); + } + } + + return WebAuthnAlgorithms::ES256; +} + +QByteArray BrowserPasskeys::bigIntToQByteArray(Botan::BigInt& bigInt) const +{ + auto hexString = QString(bigInt.to_hex_string().c_str()); + + // Botan might add a leading "0x" to the hex string depending on the version. Remove it. + if (hexString.startsWith(("0x"))) { + hexString.remove(0, 2); + } + + return browserMessageBuilder()->getArrayFromHexString(hexString); +} diff --git a/src/browser/BrowserPasskeys.h b/src/browser/BrowserPasskeys.h new file mode 100644 index 000000000..4955654c9 --- /dev/null +++ b/src/browser/BrowserPasskeys.h @@ -0,0 +1,139 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef BROWSERPASSKEYS_H +#define BROWSERPASSKEYS_H + +#include "BrowserCbor.h" +#include +#include + +#include +#include + +#define ID_BYTES 32 +#define HASH_BYTES 32 +#define RSA_BITS 2048 +#define RSA_EXPONENT 65537 + +enum AuthDataOffsets : int +{ + RPIDHASH = 0, + FLAGS = 32, + SIGNATURE_COUNTER = 33, + AAGUID = 37, + CREDENTIAL_LENGTH = 53, + CREDENTIAL_ID = 55 +}; + +enum AuthenticatorFlags +{ + UP = 0, + UV = 2, + BE = 3, + BS = 4, + AT = 6, + ED = 7 +}; + +struct PublicKeyCredential +{ + QString credentialId; + QJsonObject response; + QByteArray key; +}; + +struct AttestationKeyPair +{ + QByteArray cborEncodedPublicKey; + QByteArray privateKeyPem; +}; + +// Predefined variables used for testing the class +struct TestingVariables +{ + QString credentialId; + QString first; + QString second; +}; + +class BrowserPasskeys : public QObject +{ + Q_OBJECT + +public: + explicit BrowserPasskeys() = default; + ~BrowserPasskeys() = default; + static BrowserPasskeys* instance(); + + PublicKeyCredential buildRegisterPublicKeyCredential(const QJsonObject& credentialCreationOptions, + const TestingVariables& predefinedVariables = {}); + QJsonObject buildGetPublicKeyCredential(const QJsonObject& assertionOptions, + const QString& credentialId, + const QString& userHandle, + const QString& privateKeyPem); + + static const QString AAGUID; + + static const QString ATTACHMENT_CROSS_PLATFORM; + static const QString ATTACHMENT_PLATFORM; + static const QString AUTHENTICATOR_TRANSPORT_INTERNAL; + static const QString AUTHENTICATOR_TRANSPORT_NFC; + static const QString AUTHENTICATOR_TRANSPORT_USB; + static const bool SUPPORT_RESIDENT_KEYS; + static const bool SUPPORT_USER_VERIFICATION; + + static const QString PUBLIC_KEY; + static const QString REQUIREMENT_DISCOURAGED; + static const QString REQUIREMENT_PREFERRED; + static const QString REQUIREMENT_REQUIRED; + + static const QString PASSKEYS_ATTESTATION_DIRECT; + static const QString PASSKEYS_ATTESTATION_NONE; + +private: + QByteArray buildAttestationObject(const QJsonObject& credentialCreationOptions, + const QString& extensions, + const QString& credentialId, + const QByteArray& cborEncodedPublicKey, + const TestingVariables& predefinedVariables = {}); + QByteArray buildAuthenticatorData(const QString& rpId, const QString& extensions); + AttestationKeyPair buildCredentialPrivateKey(int alg, + const QString& predefinedFirst = QString(), + const QString& predefinedSecond = QString()); + QByteArray + buildSignature(const QByteArray& authenticatorData, const QByteArray& clientData, const QString& privateKeyPem); + QJsonObject parseAuthData(const QByteArray& authData) const; + QJsonObject parseFlags(const QByteArray& flags) const; + char setFlagsFromJson(const QJsonObject& flags) const; + WebAuthnAlgorithms getAlgorithmFromPublicKey(const QJsonObject& credentialCreationOptions) const; + QByteArray bigIntToQByteArray(Botan::BigInt& bigInt) const; + + Q_DISABLE_COPY(BrowserPasskeys); + + friend class TestPasskeys; + +private: + BrowserCbor m_browserCbor; +}; + +static inline BrowserPasskeys* browserPasskeys() +{ + return BrowserPasskeys::instance(); +} + +#endif // BROWSERPASSKEYS_H diff --git a/src/browser/BrowserPasskeysClient.cpp b/src/browser/BrowserPasskeysClient.cpp new file mode 100644 index 000000000..64857a72a --- /dev/null +++ b/src/browser/BrowserPasskeysClient.cpp @@ -0,0 +1,175 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "BrowserPasskeysClient.h" +#include "BrowserMessageBuilder.h" +#include "BrowserPasskeys.h" +#include "PasskeyUtils.h" + +#include + +Q_GLOBAL_STATIC(BrowserPasskeysClient, s_browserPasskeysClient); + +BrowserPasskeysClient* BrowserPasskeysClient::instance() +{ + return s_browserPasskeysClient; +} + +// Constructs CredentialCreationOptions from the original PublicKeyCredential +// https://www.w3.org/TR/2019/REC-webauthn-1-20190304/#createCredential +int BrowserPasskeysClient::getCredentialCreationOptions(const QJsonObject& publicKeyOptions, + const QString& origin, + QJsonObject* result) const +{ + if (!result || publicKeyOptions.isEmpty()) { + return ERROR_PASSKEYS_EMPTY_PUBLIC_KEY; + } + + // Check validity of some basic values + const auto checkResultError = passkeyUtils()->checkLimits(publicKeyOptions); + if (checkResultError > 0) { + return checkResultError; + } + + // Get effective domain + QString effectiveDomain; + const auto effectiveDomainResponse = passkeyUtils()->getEffectiveDomain(origin, &effectiveDomain); + if (effectiveDomainResponse > 0) { + return effectiveDomainResponse; + } + + // Validate RP ID + QString rpId; + const auto rpName = publicKeyOptions["rp"]["name"].toString(); + const auto rpIdResponse = passkeyUtils()->validateRpId(publicKeyOptions["rp"]["id"], effectiveDomain, &rpId); + if (rpIdResponse > 0) { + return rpIdResponse; + } + + // Check PublicKeyCredentialTypes + const auto pubKeyCredParams = passkeyUtils()->parseCredentialTypes(publicKeyOptions["pubKeyCredParams"].toArray()); + if (pubKeyCredParams.isEmpty() && !publicKeyOptions["pubKeyCredParams"].toArray().isEmpty()) { + return ERROR_PASSKEYS_NO_SUPPORTED_ALGORITHMS; + } + + // Check Attestation + const auto attestation = passkeyUtils()->parseAttestation(publicKeyOptions["attestation"].toString()); + + // Check validity of AuthenticatorSelection + auto authenticatorSelection = publicKeyOptions["authenticatorSelection"].toObject(); + const bool isAuthenticatorSelectionValid = passkeyUtils()->isAuthenticatorSelectionValid(authenticatorSelection); + if (!isAuthenticatorSelectionValid) { + return ERROR_PASSKEYS_WAIT_FOR_LIFETIMER; + } + + // Add default values for compatibility + if (authenticatorSelection.isEmpty()) { + authenticatorSelection = QJsonObject({{"userVerification", BrowserPasskeys::REQUIREMENT_PREFERRED}}); + } else if (authenticatorSelection["userVerification"].toString().isEmpty()) { + authenticatorSelection["userVerification"] = BrowserPasskeys::REQUIREMENT_PREFERRED; + } + + auto authenticatorAttachment = authenticatorSelection["authenticatorAttachment"].toString(); + if (authenticatorAttachment.isEmpty()) { + authenticatorAttachment = BrowserPasskeys::ATTACHMENT_PLATFORM; + } + + // Unknown values are ignored, but a warning will be still shown just in case + const auto userVerification = authenticatorSelection["userVerification"].toString(); + if (!passkeyUtils()->isUserVerificationValid(userVerification)) { + qWarning() << browserMessageBuilder()->getErrorMessage(ERROR_PASSKEYS_INVALID_USER_VERIFICATION); + } + + // Parse requireResidentKey and userVerification + const auto isResidentKeyRequired = passkeyUtils()->isResidentKeyRequired(authenticatorSelection); + const auto isUserVerificationRequired = passkeyUtils()->isUserVerificationRequired(authenticatorSelection); + + // Extensions + auto extensionObject = publicKeyOptions["extensions"].toObject(); + const auto extensionData = passkeyUtils()->buildExtensionData(extensionObject); + const auto extensions = browserMessageBuilder()->getBase64FromArray(extensionData.extensionData); + + // Construct the final object + QJsonObject credentialCreationOptions; + credentialCreationOptions["attestation"] = attestation; // Set this, even if only "none" is supported + credentialCreationOptions["authenticatorAttachment"] = authenticatorAttachment; + credentialCreationOptions["clientDataJSON"] = passkeyUtils()->buildClientDataJson(publicKeyOptions, origin, false); + credentialCreationOptions["clientExtensionResults"] = extensionData.extensionObject; + credentialCreationOptions["credTypesAndPubKeyAlgs"] = pubKeyCredParams; + credentialCreationOptions["excludeCredentials"] = publicKeyOptions["excludeCredentials"]; + credentialCreationOptions["extensions"] = extensions; + credentialCreationOptions["residentKey"] = isResidentKeyRequired; + credentialCreationOptions["rp"] = QJsonObject({{"id", rpId}, {"name", rpName}}); + credentialCreationOptions["user"] = publicKeyOptions["user"]; + credentialCreationOptions["userPresence"] = !isUserVerificationRequired; + credentialCreationOptions["userVerification"] = isUserVerificationRequired; + + *result = credentialCreationOptions; + return 0; +} + +// Use an existing credential +// https://www.w3.org/TR/2019/REC-webauthn-1-20190304/#getAssertion +int BrowserPasskeysClient::getAssertionOptions(const QJsonObject& publicKeyOptions, + const QString& origin, + QJsonObject* result) const +{ + if (!result || publicKeyOptions.isEmpty()) { + return ERROR_PASSKEYS_EMPTY_PUBLIC_KEY; + } + + // Get effective domain + QString effectiveDomain; + const auto effectiveDomainResponse = passkeyUtils()->getEffectiveDomain(origin, &effectiveDomain); + if (effectiveDomainResponse > 0) { + return effectiveDomainResponse; + } + + // Validate RP ID + QString rpId; + const auto rpIdResponse = passkeyUtils()->validateRpId(publicKeyOptions["rpId"], effectiveDomain, &rpId); + if (rpIdResponse > 0) { + return rpIdResponse; + } + + // Extensions + auto extensionObject = publicKeyOptions["extensions"].toObject(); + const auto extensionData = passkeyUtils()->buildExtensionData(extensionObject); + const auto extensions = browserMessageBuilder()->getBase64FromArray(extensionData.extensionData); + + // clientDataJson + const auto clientDataJson = passkeyUtils()->buildClientDataJson(publicKeyOptions, origin, true); + + // Unknown values are ignored, but a warning will be still shown just in case + const auto userVerification = publicKeyOptions["userVerification"].toString(); + if (!passkeyUtils()->isUserVerificationValid(userVerification)) { + qWarning() << browserMessageBuilder()->getErrorMessage(ERROR_PASSKEYS_INVALID_USER_VERIFICATION); + } + const auto isUserVerificationRequired = passkeyUtils()->isUserVerificationRequired(publicKeyOptions); + + QJsonObject assertionOptions; + assertionOptions["allowCredentials"] = publicKeyOptions["allowCredentials"]; + assertionOptions["clientDataJson"] = clientDataJson; + assertionOptions["clientExtensionResults"] = extensionData.extensionObject; + assertionOptions["extensions"] = extensions; + assertionOptions["rpId"] = rpId; + assertionOptions["userPresence"] = true; + assertionOptions["userVerification"] = isUserVerificationRequired; + + *result = assertionOptions; + return 0; +} diff --git a/src/browser/BrowserPasskeysClient.h b/src/browser/BrowserPasskeysClient.h new file mode 100644 index 000000000..24040bd3e --- /dev/null +++ b/src/browser/BrowserPasskeysClient.h @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef BROWSERPASSKEYSCLIENT_H +#define BROWSERPASSKEYSCLIENT_H + +#include +#include +#include + +class BrowserPasskeysClient : public QObject +{ + Q_OBJECT + +public: + explicit BrowserPasskeysClient() = default; + ~BrowserPasskeysClient() = default; + static BrowserPasskeysClient* instance(); + + int + getCredentialCreationOptions(const QJsonObject& publicKeyOptions, const QString& origin, QJsonObject* result) const; + int getAssertionOptions(const QJsonObject& publicKeyOptions, const QString& origin, QJsonObject* result) const; + +private: + Q_DISABLE_COPY(BrowserPasskeysClient); + + friend class TestPasskeys; +}; + +static inline BrowserPasskeysClient* browserPasskeysClient() +{ + return BrowserPasskeysClient::instance(); +} + +#endif // BROWSERPASSKEYSCLIENT_H diff --git a/src/browser/BrowserPasskeysConfirmationDialog.cpp b/src/browser/BrowserPasskeysConfirmationDialog.cpp new file mode 100644 index 000000000..50bdfbc49 --- /dev/null +++ b/src/browser/BrowserPasskeysConfirmationDialog.cpp @@ -0,0 +1,158 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "BrowserPasskeysConfirmationDialog.h" +#include "ui_BrowserPasskeysConfirmationDialog.h" + +#include "core/Entry.h" +#include +#include + +#define STEP 1000 + +BrowserPasskeysConfirmationDialog::BrowserPasskeysConfirmationDialog(QWidget* parent) + : QDialog(parent) + , m_ui(new Ui::BrowserPasskeysConfirmationDialog()) + , m_passkeyUpdated(false) +{ + setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint); + + m_ui->setupUi(this); + m_ui->verticalLayout->setAlignment(Qt::AlignTop); + + connect(m_ui->credentialsTable, SIGNAL(cellDoubleClicked(int, int)), this, SLOT(accept())); + connect(m_ui->confirmButton, SIGNAL(clicked()), SLOT(accept())); + connect(m_ui->cancelButton, SIGNAL(clicked()), SLOT(reject())); + connect(m_ui->updateButton, SIGNAL(clicked()), SLOT(updatePasskey())); + + connect(&m_timer, SIGNAL(timeout()), this, SLOT(updateProgressBar())); + connect(&m_timer, SIGNAL(timeout()), this, SLOT(updateSeconds())); +} + +BrowserPasskeysConfirmationDialog::~BrowserPasskeysConfirmationDialog() +{ +} + +void BrowserPasskeysConfirmationDialog::registerCredential(const QString& username, + const QString& relyingParty, + const QList& existingEntries, + int timeout) +{ + m_ui->firstLabel->setText(tr("Do you want to register a passkey for:")); + m_ui->relyingPartyLabel->setText(tr("Relying Party: %1").arg(relyingParty)); + m_ui->usernameLabel->setText(tr("Username: %1").arg(username)); + m_ui->updateButton->setVisible(true); + m_ui->secondLabel->setText(""); + + if (!existingEntries.isEmpty()) { + m_ui->firstLabel->setText(tr("Existing passkey found.\nDo you want to register a new passkey for:")); + m_ui->secondLabel->setText(tr("Select the existing passkey and press Update to replace it.")); + m_ui->updateButton->setText(tr("Update")); + m_ui->confirmButton->setText(tr("Register new")); + updateEntriesToTable(existingEntries); + } else { + m_ui->verticalLayout->setSizeConstraint(QLayout::SetFixedSize); + m_ui->confirmButton->setText(tr("Register")); + m_ui->updateButton->setText(tr("Add to existing entry")); + m_ui->credentialsTable->setVisible(false); + } + + startCounter(timeout); +} + +void BrowserPasskeysConfirmationDialog::authenticateCredential(const QList& entries, + const QString& relyingParty, + int timeout) +{ + m_ui->firstLabel->setText(tr("Authenticate passkey credentials for:")); + m_ui->relyingPartyLabel->setText(tr("Relying Party: %1").arg(relyingParty)); + m_ui->usernameLabel->setVisible(false); + m_ui->updateButton->setVisible(false); + m_ui->secondLabel->setText(""); + updateEntriesToTable(entries); + startCounter(timeout); +} + +Entry* BrowserPasskeysConfirmationDialog::getSelectedEntry() const +{ + auto selectedItem = m_ui->credentialsTable->currentItem(); + return selectedItem ? m_entries[selectedItem->row()] : nullptr; +} + +bool BrowserPasskeysConfirmationDialog::isPasskeyUpdated() const +{ + return m_passkeyUpdated; +} + +void BrowserPasskeysConfirmationDialog::updatePasskey() +{ + m_passkeyUpdated = true; + emit accept(); +} + +void BrowserPasskeysConfirmationDialog::updateProgressBar() +{ + if (m_counter < m_ui->progressBar->maximum()) { + m_ui->progressBar->setValue(m_ui->progressBar->maximum() - m_counter); + m_ui->progressBar->update(); + } else { + emit reject(); + } +} + +void BrowserPasskeysConfirmationDialog::updateSeconds() +{ + ++m_counter; + updateTimeoutLabel(); +} + +void BrowserPasskeysConfirmationDialog::startCounter(int timeout) +{ + m_counter = 0; + m_ui->progressBar->setMaximum(timeout / STEP); + updateProgressBar(); + updateTimeoutLabel(); + m_timer.start(STEP); +} + +void BrowserPasskeysConfirmationDialog::updateTimeoutLabel() +{ + m_ui->timeoutLabel->setText(tr("Timeout in %n seconds...", "", m_ui->progressBar->maximum() - m_counter)); +} + +void BrowserPasskeysConfirmationDialog::updateEntriesToTable(const QList& entries) +{ + m_entries = entries; + m_ui->credentialsTable->setRowCount(entries.count()); + m_ui->credentialsTable->setColumnCount(1); + + int row = 0; + for (const auto& entry : entries) { + auto item = new QTableWidgetItem(); + item->setText(entry->title() + " - " + entry->username()); + m_ui->credentialsTable->setItem(row, 0, item); + + if (row == 0) { + item->setSelected(true); + } + + ++row; + } + + m_ui->credentialsTable->resizeColumnsToContents(); + m_ui->credentialsTable->horizontalHeader()->setStretchLastSection(true); +} \ No newline at end of file diff --git a/src/browser/BrowserPasskeysConfirmationDialog.h b/src/browser/BrowserPasskeysConfirmationDialog.h new file mode 100644 index 000000000..6e262ffda --- /dev/null +++ b/src/browser/BrowserPasskeysConfirmationDialog.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2023 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_BROWSERPASSKEYSCONFIRMATIONDIALOG_H +#define KEEPASSXC_BROWSERPASSKEYSCONFIRMATIONDIALOG_H + +#include +#include +#include + +class Entry; + +namespace Ui +{ + class BrowserPasskeysConfirmationDialog; +} + +class BrowserPasskeysConfirmationDialog : public QDialog +{ + Q_OBJECT + +public: + explicit BrowserPasskeysConfirmationDialog(QWidget* parent = nullptr); + ~BrowserPasskeysConfirmationDialog() override; + + void registerCredential(const QString& username, + const QString& relyingParty, + const QList& existingEntries, + int timeout); + void authenticateCredential(const QList& entries, const QString& relyingParty, int timeout); + Entry* getSelectedEntry() const; + bool isPasskeyUpdated() const; + +private slots: + void updatePasskey(); + void updateProgressBar(); + void updateSeconds(); + +private: + void startCounter(int timeout); + void updateTimeoutLabel(); + void updateEntriesToTable(const QList& entries); + +private: + QScopedPointer m_ui; + QList m_entries; + QTimer m_timer; + int m_counter; + bool m_passkeyUpdated; +}; + +#endif // KEEPASSXC_BROWSERPASSKEYSCONFIRMATIONDIALOG_H diff --git a/src/browser/BrowserPasskeysConfirmationDialog.ui b/src/browser/BrowserPasskeysConfirmationDialog.ui new file mode 100644 index 000000000..2d8fee547 --- /dev/null +++ b/src/browser/BrowserPasskeysConfirmationDialog.ui @@ -0,0 +1,163 @@ + + + BrowserPasskeysConfirmationDialog + + + + 0 + 0 + 400 + 274 + + + + + 0 + 0 + + + + KeePassXC - Passkey credentials + + + + + + + + + true + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Relying Party: %1 + + + Qt::PlainText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Username: %1 + + + Qt::PlainText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + true + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + 0 + 0 + + + + QAbstractItemView::NoEditTriggers + + + false + + + QAbstractItemView::SingleSelection + + + false + + + false + + + false + + + + + + + 0 + + + false + + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Cancel + + + true + + + + + + + Update + + + + + + + Authenticate + + + + + + + + + + diff --git a/src/browser/BrowserService.cpp b/src/browser/BrowserService.cpp index 9f13546ad..36b2c1083 100644 --- a/src/browser/BrowserService.cpp +++ b/src/browser/BrowserService.cpp @@ -1,7 +1,7 @@ /* - * Copyright (C) 2013 Francois Ferrand + * Copyright (C) 2025 KeePassXC Team * Copyright (C) 2017 Sami Vänttinen - * Copyright (C) 2022 KeePassXC Team + * Copyright (C) 2013 Francois Ferrand * * 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 @@ -18,17 +18,25 @@ */ #include "BrowserService.h" -#include "BrowserAccessControlDialog.h" #include "BrowserAction.h" #include "BrowserEntryConfig.h" #include "BrowserEntrySaveDialog.h" #include "BrowserHost.h" #include "BrowserMessageBuilder.h" #include "BrowserSettings.h" +#include "core/EntryAttributes.h" #include "core/Tools.h" #include "gui/MainWindow.h" #include "gui/MessageBox.h" +#include "gui/UrlTools.h" #include "gui/osutils/OSUtils.h" +#ifdef WITH_XC_BROWSER_PASSKEYS +#include "BrowserPasskeys.h" +#include "BrowserPasskeysClient.h" +#include "BrowserPasskeysConfirmationDialog.h" +#include "PasskeyUtils.h" +#include "gui/passkeys/PasskeyImporter.h" +#endif #ifdef Q_OS_MACOS #include "gui/osutils/macutils/MacUtils.h" #endif @@ -41,13 +49,19 @@ #include #include #include +#include #include +#include #include const QString BrowserService::KEEPASSXCBROWSER_NAME = QStringLiteral("KeePassXC-Browser Settings"); const QString BrowserService::KEEPASSXCBROWSER_OLD_NAME = QStringLiteral("keepassxc-browser Settings"); static const QString KEEPASSXCBROWSER_GROUP_NAME = QStringLiteral("KeePassXC-Browser Passwords"); static int KEEPASSXCBROWSER_DEFAULT_ICON = 1; +#ifdef WITH_XC_BROWSER_PASSKEYS +static int KEEPASSXCBROWSER_PASSKEY_ICON = 13; +static const QString PASSKEYS_DEFAULT_GROUP_NAME = QStringLiteral("KeePassXC-Browser Passkeys"); +#endif // These are for the settings and password conversion static const QString KEEPASSHTTP_NAME = QStringLiteral("KeePassHttp Settings"); static const QString KEEPASSHTTP_GROUP_NAME = QStringLiteral("KeePassHttp Passwords"); @@ -56,8 +70,8 @@ const QString BrowserService::OPTION_SKIP_AUTO_SUBMIT = QStringLiteral("BrowserS const QString BrowserService::OPTION_HIDE_ENTRY = QStringLiteral("BrowserHideEntry"); const QString BrowserService::OPTION_ONLY_HTTP_AUTH = QStringLiteral("BrowserOnlyHttpAuth"); const QString BrowserService::OPTION_NOT_HTTP_AUTH = QStringLiteral("BrowserNotHttpAuth"); -// Multiple URL's -const QString BrowserService::ADDITIONAL_URL = QStringLiteral("KP2A_URL"); +const QString BrowserService::OPTION_OMIT_WWW = QStringLiteral("BrowserOmitWww"); +const QString BrowserService::OPTION_RESTRICT_KEY = QStringLiteral("BrowserRestrictKey"); Q_GLOBAL_STATIC(BrowserService, s_browserService); @@ -66,7 +80,6 @@ BrowserService::BrowserService() , m_browserHost(new BrowserHost) , m_dialogActive(false) , m_bringToFrontRequested(false) - , m_passwordGeneratorRequested(false) , m_prevWindowState(WindowState::Normal) , m_keepassBrowserUUID(Tools::hexToUuid("de887cc3036343b8974b5911b8816224")) { @@ -74,6 +87,10 @@ BrowserService::BrowserService() connect(getMainWindow(), &MainWindow::databaseUnlocked, this, &BrowserService::databaseUnlocked); connect(getMainWindow(), &MainWindow::databaseLocked, this, &BrowserService::databaseLocked); connect(getMainWindow(), &MainWindow::activeDatabaseChanged, this, &BrowserService::activeDatabaseChanged); + connect(getMainWindow(), + &MainWindow::databaseUnlockDialogFinished, + this, + &BrowserService::handleDatabaseUnlockDialogFinished); setEnabled(browserSettings()->isEnabled()); } @@ -115,7 +132,7 @@ bool BrowserService::openDatabase(bool triggerUnlock) return true; } - if (triggerUnlock) { + if (triggerUnlock && !m_bringToFrontRequested) { m_bringToFrontRequested = true; updateWindowState(); emit requestUnlock(); @@ -219,7 +236,7 @@ QJsonObject BrowserService::getDatabaseGroups() return result; } -QJsonObject BrowserService::createNewGroup(const QString& groupName) +QJsonArray BrowserService::getDatabaseEntries() { auto db = getDatabase(); if (!db) { @@ -231,6 +248,39 @@ QJsonObject BrowserService::createNewGroup(const QString& groupName) return {}; } + QJsonArray entries; + for (const auto& group : rootGroup->groupsRecursive(true)) { + if (group == db->metadata()->recycleBin()) { + continue; + } + + for (const auto& entry : group->entries()) { + QJsonObject jentry; + jentry["title"] = entry->resolveMultiplePlaceholders(entry->title()); + jentry["uuid"] = entry->resolveMultiplePlaceholders(entry->uuidToHex()); + jentry["url"] = entry->resolveMultiplePlaceholders(entry->url()); + entries.push_back(jentry); + } + } + return entries; +} + +QJsonObject BrowserService::createNewGroup(const QString& groupName, bool isPasskeysGroup) +{ + if (groupName.isEmpty()) { + return {}; + } + + auto db = getDatabase(); + if (!db) { + return {}; + } + + Group* rootGroup = db->rootGroup(); + if (!rootGroup) { + return {}; + } + auto group = rootGroup->findGroupByPath(groupName); // Group already exists @@ -241,8 +291,8 @@ QJsonObject BrowserService::createNewGroup(const QString& groupName) return result; } - auto dialogResult = MessageBox::warning(nullptr, - tr("KeePassXC: Create a new group"), + auto dialogResult = MessageBox::warning(m_currentDatabaseWidget, + tr("KeePassXC - Create a new group"), tr("A request for creating a new group \"%1\" has been received.\n" "Do you want to create this group?\n") .arg(groupName), @@ -270,10 +320,15 @@ QJsonObject BrowserService::createNewGroup(const QString& groupName) QString gName = getGroupName(i); auto tempGroup = rootGroup->findGroupByPath(gName); if (!tempGroup) { - Group* newGroup = new Group(); + auto newGroup = new Group(); newGroup->setName(groups[i]); newGroup->setUuid(QUuid::createUuid()); newGroup->setParent(previousGroup); +#ifdef WITH_XC_BROWSER_PASSKEYS + if (isPasskeysGroup && i == groups.length() - 1) { + newGroup->setIcon(KEEPASSXCBROWSER_PASSKEY_ICON); + } +#endif name = newGroup->name(); uuid = Tools::uuidToHex(newGroup->uuid()); previousGroup = newGroup; @@ -314,53 +369,205 @@ QString BrowserService::getCurrentTotp(const QString& uuid) return {}; } -void BrowserService::showPasswordGenerator(QLocalSocket* socket, - const QString& incrementedNonce, - const QString& publicKey, - const QString& secretKey) +QJsonArray +BrowserService::findEntries(const EntryParameters& entryParameters, const StringPairList& keyList, bool* entriesFound) +{ + if (entriesFound) { + *entriesFound = false; + } + + const bool alwaysAllowAccess = browserSettings()->alwaysAllowAccess(); + const bool ignoreHttpAuth = browserSettings()->httpAuthPermission(); + const QString siteHost = QUrl(entryParameters.siteUrl).host(); + const QString formHost = QUrl(entryParameters.formUrl).host(); + + // Check entries for authorization + QList entriesToConfirm; + QList allowedEntries; + for (auto* entry : searchEntries(entryParameters.siteUrl, entryParameters.formUrl, keyList)) { + auto entryCustomData = entry->customData(); + + if (!entryParameters.httpAuth + && ((entryCustomData->contains(BrowserService::OPTION_ONLY_HTTP_AUTH) + && entryCustomData->value(BrowserService::OPTION_ONLY_HTTP_AUTH) == TRUE_STR) + || entry->group()->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH) == Group::Enable)) { + continue; + } + + if (entryParameters.httpAuth + && ((entryCustomData->contains(BrowserService::OPTION_NOT_HTTP_AUTH) + && entryCustomData->value(BrowserService::OPTION_NOT_HTTP_AUTH) == TRUE_STR) + || entry->group()->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH) == Group::Enable)) { + continue; + } + + // HTTP Basic Auth always needs a confirmation + if (!ignoreHttpAuth && entryParameters.httpAuth) { + entriesToConfirm.append(entry); + continue; + } + + switch (checkAccess(entry, siteHost, formHost, entryParameters.realm)) { + case Denied: + continue; + + case Unknown: + if (alwaysAllowAccess) { + allowedEntries.append(entry); + } else { + entriesToConfirm.append(entry); + } + break; + + case Allowed: + allowedEntries.append(entry); + break; + } + } + + if (entriesToConfirm.isEmpty() && allowedEntries.isEmpty()) { + return {}; + } + + // Confirm entries + auto selectedEntriesToConfirm = + confirmEntries(entriesToConfirm, entryParameters, siteHost, formHost, entryParameters.httpAuth); + if (!selectedEntriesToConfirm.isEmpty()) { + allowedEntries.append(selectedEntriesToConfirm); + } + + // Ensure that database is not locked when the popup was visible + if (!isDatabaseOpened()) { + return {}; + } + + // Sort results + allowedEntries = sortEntries(allowedEntries, entryParameters.siteUrl, entryParameters.formUrl); + + // Fill the list + QJsonArray entries; + for (auto* entry : allowedEntries) { + entries.append(prepareEntry(entry)); + } + + if (entriesFound != nullptr) { + *entriesFound = true; + } + + return entries; +} + +QList BrowserService::confirmEntries(QList& entriesToConfirm, + const EntryParameters& entryParameters, + const QString& siteHost, + const QString& formUrl, + const bool httpAuth) +{ + if (entriesToConfirm.isEmpty() || m_dialogActive) { + return {}; + } + + m_dialogActive = true; + updateWindowState(); + BrowserAccessControlDialog accessControlDialog(m_currentDatabaseWidget); + + connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &accessControlDialog, SLOT(reject())); + + connect(&accessControlDialog, &BrowserAccessControlDialog::disableAccess, [&](QTableWidgetItem* item) { + auto entry = entriesToConfirm[item->row()]; + denyEntry(entry, siteHost, formUrl, entryParameters.realm); + }); + + accessControlDialog.setEntries(entriesToConfirm, entryParameters.siteUrl, httpAuth); + + QList allowedEntries; + auto ret = accessControlDialog.exec(); + auto remember = accessControlDialog.remember(); + + // All are denied + if (ret == QDialog::Rejected && remember) { + for (auto& entry : entriesToConfirm) { + denyEntry(entry, siteHost, formUrl, entryParameters.realm); + } + } + + // Some/all are accepted + if (ret == QDialog::Accepted) { + auto selectedEntries = accessControlDialog.getEntries(SelectionType::Selected); + for (auto& item : selectedEntries) { + auto entry = entriesToConfirm[item->row()]; + allowedEntries.append(entry); + + if (remember) { + allowEntry(entry, siteHost, formUrl, entryParameters.realm); + } + } + + // Remembered non-selected entries must be denied + if (remember) { + auto nonSelectedEntries = accessControlDialog.getEntries(SelectionType::NonSelected); + for (auto& item : nonSelectedEntries) { + auto entry = entriesToConfirm[item->row()]; + denyEntry(entry, siteHost, formUrl, entryParameters.realm); + } + } + } + + // Handle disabled entries (returned Accept/Reject status does not matter) + auto disabledEntries = accessControlDialog.getEntries(SelectionType::Disabled); + for (auto& item : disabledEntries) { + auto entry = entriesToConfirm[item->row()]; + denyEntry(entry, siteHost, formUrl, entryParameters.realm); + } + + // Re-hide the application if it wasn't visible before + hideWindow(); + m_dialogActive = false; + + return allowedEntries; +} + +void BrowserService::showPasswordGenerator(const KeyPairMessage& keyPairMessage) { if (!m_passwordGenerator) { - m_passwordGenerator.reset(PasswordGeneratorWidget::popupGenerator()); + m_passwordGenerator = PasswordGeneratorWidget::popupGenerator(); - connect(m_passwordGenerator.data(), &PasswordGeneratorWidget::closed, m_passwordGenerator.data(), [=] { - if (!m_passwordGenerator->isPasswordGenerated()) { - auto errorMessage = browserMessageBuilder()->getErrorReply("generate-password", - ERROR_KEEPASS_ACTION_CANCELLED_OR_DENIED); - m_browserHost->sendClientMessage(socket, errorMessage); - } + connect(m_passwordGenerator.data(), + &PasswordGeneratorWidget::closed, + m_passwordGenerator.data(), + [this, keyPairMessage] { + if (!m_passwordGenerator->isPasswordGenerated()) { + auto errorMessage = browserMessageBuilder()->getErrorReply( + "generate-password", ERROR_KEEPASS_ACTION_CANCELLED_OR_DENIED); + m_browserHost->sendClientMessage(keyPairMessage.socket, errorMessage); + } - m_passwordGenerator.reset(); - hideWindow(); - m_passwordGeneratorRequested = false; - }); + QTimer::singleShot(50, this, [&] { hideWindow(); }); + }); connect(m_passwordGenerator.data(), &PasswordGeneratorWidget::appliedPassword, m_passwordGenerator.data(), - [=](const QString& password) { - QJsonObject message = browserMessageBuilder()->buildMessage(incrementedNonce); - message["password"] = password; - sendPassword(socket, - browserMessageBuilder()->buildResponse( - "generate-password", message, incrementedNonce, publicKey, secretKey)); + [this, keyPairMessage](const QString& password) { + const Parameters params{{"password", password}}; + m_browserHost->sendClientMessage(keyPairMessage.socket, + browserMessageBuilder()->buildResponse("generate-password", + keyPairMessage.nonce, + params, + keyPairMessage.publicKey, + keyPairMessage.secretKey)); }); } - m_passwordGeneratorRequested = true; raiseWindow(); + m_passwordGenerator->show(); m_passwordGenerator->raise(); m_passwordGenerator->activateWindow(); } -void BrowserService::sendPassword(QLocalSocket* socket, const QJsonObject& message) -{ - m_browserHost->sendClientMessage(socket, message); - hideWindow(); -} - bool BrowserService::isPasswordGeneratorRequested() const { - return m_passwordGeneratorRequested; + return m_passwordGenerator && m_passwordGenerator->isVisible(); } QString BrowserService::storeKey(const QString& key) @@ -375,9 +582,9 @@ QString BrowserService::storeKey(const QString& key) QString id; do { - QInputDialog keyDialog; + QInputDialog keyDialog(m_currentDatabaseWidget); connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &keyDialog, SLOT(reject())); - keyDialog.setWindowTitle(tr("KeePassXC: New key association request")); + keyDialog.setWindowTitle(tr("KeePassXC - New key association request")); keyDialog.setLabelText(tr("You have received an association request for the following database:\n%1\n\n" "Give the connection a unique name or ID, for example:\nchrome-laptop.") .arg(db->metadata()->name().toHtmlEscaped())); @@ -396,10 +603,11 @@ QString BrowserService::storeKey(const QString& key) return {}; } - contains = db->metadata()->customData()->contains(CustomData::BrowserKeyPrefix + id); + contains = + db->metadata()->customData()->contains(CustomData::getKeyWithPrefix(CustomData::BrowserKeyPrefix, id)); if (contains) { - dialogResult = MessageBox::warning(nullptr, - tr("KeePassXC: Overwrite existing key?"), + dialogResult = MessageBox::warning(m_currentDatabaseWidget, + tr("KeePassXC - Overwrite existing key?"), tr("A shared encryption key with the name \"%1\" " "already exists.\nDo you want to overwrite it?") .arg(id), @@ -409,9 +617,9 @@ QString BrowserService::storeKey(const QString& key) } while (contains && dialogResult == MessageBox::Cancel); hideWindow(); - db->metadata()->customData()->set(CustomData::BrowserKeyPrefix + id, key); - db->metadata()->customData()->set(QString("%1_%2").arg(CustomData::Created, id), - Clock::currentDateTime().toString(Qt::SystemLocaleShortDate)); + db->metadata()->customData()->set(CustomData::getKeyWithPrefix(CustomData::BrowserKeyPrefix, id), key); + db->metadata()->customData()->set(CustomData::getKeyWithPrefix(CustomData::Created, id), + QLocale::system().toString(Clock::currentDateTime(), QLocale::ShortFormat)); return id; } @@ -422,107 +630,244 @@ QString BrowserService::getKey(const QString& id) return {}; } - return db->metadata()->customData()->value(CustomData::BrowserKeyPrefix + id); + return db->metadata()->customData()->value(CustomData::getKeyWithPrefix(CustomData::BrowserKeyPrefix, id)); } -QJsonArray BrowserService::findMatchingEntries(const QString& dbid, - const QString& siteUrlStr, - const QString& formUrlStr, - const QString& realm, - const StringPairList& keyList, - const bool httpAuth) +#ifdef WITH_XC_BROWSER_PASSKEYS +// Passkey registration +QJsonObject BrowserService::showPasskeysRegisterPrompt(const QJsonObject& publicKeyOptions, + const QString& origin, + const QString& groupName, + const StringPairList& keyList) { - Q_UNUSED(dbid); - const bool alwaysAllowAccess = browserSettings()->alwaysAllowAccess(); - const bool ignoreHttpAuth = browserSettings()->httpAuthPermission(); - const QString siteHost = QUrl(siteUrlStr).host(); - const QString formHost = QUrl(formUrlStr).host(); + auto db = selectedDatabase(); + if (!db) { + return getPasskeyError(ERROR_KEEPASS_DATABASE_NOT_OPENED); + } - // Check entries for authorization - QList pwEntriesToConfirm; - QList pwEntries; - for (auto* entry : searchEntries(siteUrlStr, formUrlStr, keyList)) { - auto entryCustomData = entry->customData(); + QJsonObject credentialCreationOptions; + const auto pkOptionsResult = + browserPasskeysClient()->getCredentialCreationOptions(publicKeyOptions, origin, &credentialCreationOptions); + if (pkOptionsResult > 0 || credentialCreationOptions.isEmpty()) { + return getPasskeyError(pkOptionsResult); + } - if (!httpAuth - && ((entryCustomData->contains(BrowserService::OPTION_ONLY_HTTP_AUTH) - && entryCustomData->value(BrowserService::OPTION_ONLY_HTTP_AUTH) == TRUE_STR) - || entry->group()->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH) == Group::Enable)) { - continue; + const auto excludeCredentials = credentialCreationOptions["excludeCredentials"].toArray(); + const auto rpId = credentialCreationOptions["rp"].toObject()["id"].toString(); + const auto timeout = publicKeyOptions["timeout"].toInt(); + const auto username = credentialCreationOptions["user"].toObject()["name"].toString(); + const auto user = credentialCreationOptions["user"].toObject(); + const auto userId = user["id"].toString(); + + // Parse excludeCredentialDescriptorList + if (!excludeCredentials.isEmpty() && isPasskeyCredentialExcluded(excludeCredentials, rpId, keyList)) { + return getPasskeyError(ERROR_PASSKEYS_CREDENTIAL_IS_EXCLUDED); + } + + const auto existingEntries = getPasskeyEntriesWithUserHandle(rpId, userId, keyList); + + raiseWindow(); + BrowserPasskeysConfirmationDialog confirmDialog(m_currentDatabaseWidget); + confirmDialog.registerCredential(username, rpId, existingEntries, timeout); + + auto dialogResult = confirmDialog.exec(); + if (dialogResult == QDialog::Accepted) { + const auto publicKeyCredentials = + browserPasskeys()->buildRegisterPublicKeyCredential(credentialCreationOptions); + if (publicKeyCredentials.credentialId.isEmpty() || publicKeyCredentials.key.isEmpty() + || publicKeyCredentials.response.isEmpty()) { + return getPasskeyError(ERROR_PASSKEYS_UNKNOWN_ERROR); } - if (httpAuth - && ((entryCustomData->contains(BrowserService::OPTION_NOT_HTTP_AUTH) - && entryCustomData->value(BrowserService::OPTION_NOT_HTTP_AUTH) == TRUE_STR) - || entry->group()->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH) == Group::Enable)) { - continue; - } - - // HTTP Basic Auth always needs a confirmation - if (!ignoreHttpAuth && httpAuth) { - pwEntriesToConfirm.append(entry); - continue; - } - - switch (checkAccess(entry, siteHost, formHost, realm)) { - case Denied: - continue; - - case Unknown: - if (alwaysAllowAccess) { - pwEntries.append(entry); + const auto rpName = publicKeyOptions["rp"]["name"].toString(); + if (confirmDialog.isPasskeyUpdated()) { + // If no entry is selected, show the import dialog for manual entry selection + auto selectedEntry = confirmDialog.getSelectedEntry(); + if (!selectedEntry) { + PasskeyImporter passkeyImporter(m_currentDatabaseWidget); + const auto result = passkeyImporter.showImportDialog(db, + nullptr, + origin, + rpId, + username, + publicKeyCredentials.credentialId, + userId, + publicKeyCredentials.key, + tr("KeePassXC - Passkey credentials"), + tr("Register a new passkey to this entry:"), + tr("Register")); + if (!result) { + return getPasskeyError(ERROR_PASSKEYS_REQUEST_CANCELED); + } } else { - pwEntriesToConfirm.append(entry); + addPasskeyToEntry(selectedEntry, + rpId, + rpName, + username, + publicKeyCredentials.credentialId, + userId, + publicKeyCredentials.key); } - break; + } else { + // Handle new/existing group + const auto createResponse = + createNewGroup(groupName.isEmpty() ? PASSKEYS_DEFAULT_GROUP_NAME : groupName, true); + const auto group = db->rootGroup()->findGroupByUuid(Tools::hexToUuid(createResponse["uuid"].toString())); - case Allowed: - pwEntries.append(entry); - break; + addPasskeyToGroup(db, + group, + origin, + rpId, + rpName, + username, + publicKeyCredentials.credentialId, + userId, + publicKeyCredentials.key); } + + hideWindow(); + return publicKeyCredentials.response; } - // Confirm entries - QList selectedEntriesToConfirm = - confirmEntries(pwEntriesToConfirm, siteUrlStr, siteHost, formHost, realm, httpAuth); - if (!selectedEntriesToConfirm.isEmpty()) { - pwEntries.append(selectedEntriesToConfirm); - } - - if (pwEntries.isEmpty()) { - return {}; - } - - // Ensure that database is not locked when the popup was visible - if (!isDatabaseOpened()) { - return {}; - } - - // Sort results - pwEntries = sortEntries(pwEntries, siteUrlStr, formUrlStr); - - // Fill the list - QJsonArray result; - for (auto* entry : pwEntries) { - result.append(prepareEntry(entry)); - } - - return result; + hideWindow(); + return getPasskeyError(ERROR_PASSKEYS_REQUEST_CANCELED); } -void BrowserService::addEntry(const QString& dbid, - const QString& login, - const QString& password, - const QString& siteUrlStr, - const QString& formUrlStr, - const QString& realm, +// Passkey authentication +QJsonObject BrowserService::showPasskeysAuthenticationPrompt(const QJsonObject& publicKeyOptions, + const QString& origin, + const StringPairList& keyList) +{ + auto db = getDatabase(); + if (!db) { + return getPasskeyError(ERROR_KEEPASS_DATABASE_NOT_OPENED); + } + + QJsonObject assertionOptions; + const auto assertionResult = + browserPasskeysClient()->getAssertionOptions(publicKeyOptions, origin, &assertionOptions); + if (assertionResult > 0 || assertionOptions.isEmpty()) { + return getPasskeyError(assertionResult); + } + + // Get allowed entries from RP ID + const auto rpId = assertionOptions["rpId"].toString(); + const auto entries = getPasskeyAllowedEntries(assertionOptions, rpId, keyList); + if (entries.isEmpty()) { + return getPasskeyError(ERROR_KEEPASS_NO_LOGINS_FOUND); + } + + const auto timeout = publicKeyOptions["timeout"].toInt(); + + raiseWindow(); + BrowserPasskeysConfirmationDialog confirmDialog(m_currentDatabaseWidget); + confirmDialog.authenticateCredential(entries, rpId, timeout); + auto dialogResult = confirmDialog.exec(); + if (dialogResult == QDialog::Accepted) { + hideWindow(); + const auto selectedEntry = confirmDialog.getSelectedEntry(); + if (!selectedEntry) { + return getPasskeyError(ERROR_PASSKEYS_UNKNOWN_ERROR); + } + + const auto privateKeyPem = selectedEntry->attributes()->value(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM); + const auto credentialId = passkeyUtils()->getCredentialIdFromEntry(selectedEntry); + const auto userHandle = selectedEntry->attributes()->value(EntryAttributes::KPEX_PASSKEY_USER_HANDLE); + + auto publicKeyCredential = + browserPasskeys()->buildGetPublicKeyCredential(assertionOptions, credentialId, userHandle, privateKeyPem); + if (publicKeyCredential.isEmpty()) { + return getPasskeyError(ERROR_PASSKEYS_UNKNOWN_ERROR); + } + + return publicKeyCredential; + } + + hideWindow(); + return getPasskeyError(ERROR_PASSKEYS_REQUEST_CANCELED); +} + +void BrowserService::addPasskeyToGroup(const QSharedPointer& db, + Group* group, + const QString& url, + const QString& rpId, + const QString& rpName, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey) +{ + // If no group provided, use the default browser group of the selected database + if (!group) { + if (!db) { + return; + } + group = getDefaultEntryGroup(db); + } + + auto* entry = new Entry(); + entry->setUuid(QUuid::createUuid()); + entry->setGroup(group); + entry->setTitle(tr("%1 (Passkey)").arg(rpName)); + entry->setUsername(username); + entry->setUrl(url); + entry->setIcon(KEEPASSXCBROWSER_PASSKEY_ICON); + + addPasskeyToEntry(entry, rpId, rpName, username, credentialId, userHandle, privateKey); + + // Remove blank entry history + entry->removeHistoryItems(entry->historyItems()); +} + +void BrowserService::addPasskeyToEntry(Entry* entry, + const QString& rpId, + const QString& rpName, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey) +{ + // Reserved for future use + Q_UNUSED(rpName) + + Q_ASSERT(entry); + if (!entry) { + return; + } + + // Ask confirmation if entry already contains a Passkey + if (entry->hasPasskey()) { + if (MessageBox::question(m_currentDatabaseWidget, + tr("KeePassXC - Update passkey"), + tr("Entry already has a passkey.\nDo you want to overwrite the passkey in %1 - %2?") + .arg(entry->title(), passkeyUtils()->getUsernameFromEntry(entry)), + MessageBox::Overwrite | MessageBox::Cancel, + MessageBox::Cancel) + != MessageBox::Overwrite) { + return; + } + } + + entry->beginUpdate(); + + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_USERNAME, username); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_CREDENTIAL_ID, credentialId, true); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM, privateKey, true); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY, rpId); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_USER_HANDLE, userHandle, true); + entry->addTag(tr("Passkey")); + + entry->endUpdate(); +} +#endif + +void BrowserService::addEntry(const EntryParameters& entryParameters, const QString& group, const QString& groupUuid, const bool downloadFavicon, const QSharedPointer& selectedDb) { // TODO: select database based on this key id - Q_UNUSED(dbid); auto db = selectedDb ? selectedDb : selectedDatabase(); if (!db) { return; @@ -530,11 +875,11 @@ void BrowserService::addEntry(const QString& dbid, auto* entry = new Entry(); entry->setUuid(QUuid::createUuid()); - entry->setTitle(QUrl(siteUrlStr).host()); - entry->setUrl(siteUrlStr); + entry->setTitle(entryParameters.title.isEmpty() ? QUrl(entryParameters.siteUrl).host() : entryParameters.title); + entry->setUrl(entryParameters.siteUrl); entry->setIcon(KEEPASSXCBROWSER_DEFAULT_ICON); - entry->setUsername(login); - entry->setPassword(password); + entry->setUsername(entryParameters.login); + entry->setPassword(entryParameters.password); // Select a group for the entry if (!group.isEmpty()) { @@ -550,16 +895,16 @@ void BrowserService::addEntry(const QString& dbid, entry->setGroup(getDefaultEntryGroup(db)); } - const QString host = QUrl(siteUrlStr).host(); - const QString submitHost = QUrl(formUrlStr).host(); + const QString host = QUrl(entryParameters.siteUrl).host(); + const QString submitHost = QUrl(entryParameters.formUrl).host(); BrowserEntryConfig config; config.allow(host); if (!submitHost.isEmpty()) { config.allow(submitHost); } - if (!realm.isEmpty()) { - config.setRealm(realm); + if (!entryParameters.realm.isEmpty()) { + config.setRealm(entryParameters.realm); } config.save(entry); @@ -568,24 +913,18 @@ void BrowserService::addEntry(const QString& dbid, } } -bool BrowserService::updateEntry(const QString& dbid, - const QString& uuid, - const QString& login, - const QString& password, - const QString& siteUrlStr, - const QString& formUrlStr) +bool BrowserService::updateEntry(const EntryParameters& entryParameters, const QString& uuid) { // TODO: select database based on this key id - Q_UNUSED(dbid); auto db = selectedDatabase(); if (!db) { return false; } - Entry* entry = db->rootGroup()->findEntryByUuid(Tools::hexToUuid(uuid)); + auto entry = db->rootGroup()->findEntryByUuid(Tools::hexToUuid(uuid)); if (!entry) { // If entry is not found for update, add a new one to the selected database - addEntry(dbid, login, password, siteUrlStr, formUrlStr, "", "", "", db); + addEntry(entryParameters, "", "", false, db); return true; } @@ -600,32 +939,31 @@ bool BrowserService::updateEntry(const QString& dbid, } } - QString username = entry->username(); + auto username = entry->username(); if (username.isEmpty()) { return false; } bool result = false; - if (username.compare(login, Qt::CaseSensitive) != 0 - || entry->password().compare(password, Qt::CaseSensitive) != 0) { + if (username.compare(entryParameters.login, Qt::CaseSensitive) != 0 + || entry->password().compare(entryParameters.password, Qt::CaseSensitive) != 0) { MessageBox::Button dialogResult = MessageBox::No; if (!browserSettings()->alwaysAllowUpdate()) { raiseWindow(); - dialogResult = MessageBox::question( - nullptr, - tr("KeePassXC: Update Entry"), - tr("Do you want to update the information in %1 - %2?").arg(QUrl(siteUrlStr).host(), username), - MessageBox::Save | MessageBox::Cancel, - MessageBox::Cancel, - MessageBox::Raise); + dialogResult = MessageBox::question(m_currentDatabaseWidget, + tr("KeePassXC - Update Entry"), + tr("Do you want to update the information in %1 - %2?") + .arg(QUrl(entryParameters.siteUrl).host(), username), + MessageBox::Save | MessageBox::Cancel, + MessageBox::Cancel); } if (browserSettings()->alwaysAllowUpdate() || dialogResult == MessageBox::Save) { entry->beginUpdate(); if (!entry->attributes()->isReference(EntryAttributes::UserNameKey)) { - entry->setUsername(login); + entry->setUsername(entryParameters.login); } - entry->setPassword(password); + entry->setPassword(entryParameters.password); entry->endUpdate(); result = true; } @@ -648,8 +986,8 @@ bool BrowserService::deleteEntry(const QString& uuid) return false; } - auto dialogResult = MessageBox::warning(nullptr, - tr("KeePassXC: Delete entry"), + auto dialogResult = MessageBox::warning(m_currentDatabaseWidget, + tr("KeePassXC - Delete entry"), tr("A request for deleting entry \"%1\" has been received.\n" "Do you want to delete the entry?\n") .arg(entry->title()), @@ -662,8 +1000,20 @@ bool BrowserService::deleteEntry(const QString& uuid) return true; } -QList -BrowserService::searchEntries(const QSharedPointer& db, const QString& siteUrlStr, const QString& formUrlStr) +void BrowserService::removePluginData(Entry* entry) const +{ + if (entry) { + entry->beginUpdate(); + entry->customData()->remove(BrowserService::KEEPASSXCBROWSER_NAME); + entry->endUpdate(); + } +} + +QList BrowserService::searchEntries(const QSharedPointer& db, + const QString& siteUrl, + const QString& formUrl, + const QStringList& keys, + bool passkey) { QList entries; auto* rootGroup = db->rootGroup(); @@ -677,6 +1027,15 @@ BrowserService::searchEntries(const QSharedPointer& db, const QString& continue; } + // If a key restriction is specified and not contained in the keys list then skip this group. + auto restrictKey = group->resolveCustomDataString(BrowserService::OPTION_RESTRICT_KEY); + if (!restrictKey.isEmpty() && !keys.contains(restrictKey)) { + continue; + } + + const auto omitWwwSubdomain = + group->resolveCustomDataTriState(BrowserService::OPTION_OMIT_WWW) == Group::Enable; + for (auto* entry : group->entries()) { if (entry->isRecycled() || (entry->customData()->contains(BrowserService::OPTION_HIDE_ENTRY) @@ -684,19 +1043,17 @@ BrowserService::searchEntries(const QSharedPointer& db, const QString& continue; } - // Search for additional URL's starting with KP2A_URL - for (const auto& key : entry->attributes()->keys()) { - if (key.startsWith(ADDITIONAL_URL) && handleURL(entry->attributes()->value(key), siteUrlStr, formUrlStr) - && !entries.contains(entry)) { - entries.append(entry); - continue; - } - } - - if (!handleEntry(entry, siteUrlStr, formUrlStr)) { + if (!passkey && !shouldIncludeEntry(entry, siteUrl, formUrl, omitWwwSubdomain)) { continue; } +#ifdef WITH_XC_BROWSER_PASSKEYS + // With Passkeys, check for the Relying Party instead of URL + if (passkey && entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY) != siteUrl) { + continue; + } +#endif + // Additional URL check may have already inserted the entry to the list if (!entries.contains(entry)) { entries.append(entry); @@ -707,119 +1064,59 @@ BrowserService::searchEntries(const QSharedPointer& db, const QString& return entries; } -QList -BrowserService::searchEntries(const QString& siteUrlStr, const QString& formUrlStr, const StringPairList& keyList) +QList BrowserService::searchEntries(const QString& siteUrl, + const QString& formUrl, + const StringPairList& keyList, + bool passkey) { - // Check if database is connected with KeePassXC-Browser + // Check if database is connected with KeePassXC-Browser. If so, return browser key (otherwise empty) auto databaseConnected = [&](const QSharedPointer& db) { for (const StringPair& keyPair : keyList) { - QString key = db->metadata()->customData()->value(CustomData::BrowserKeyPrefix + keyPair.first); + const auto key = db->metadata()->customData()->value( + CustomData::getKeyWithPrefix(CustomData::BrowserKeyPrefix, keyPair.first)); if (!key.isEmpty() && keyPair.second == key) { - return true; + return keyPair.first; } } - return false; + return QString(); }; // Get the list of databases to search QList> databases; + QStringList keys; if (browserSettings()->searchInAllDatabases()) { for (auto dbWidget : getMainWindow()->getOpenDatabases()) { auto db = dbWidget->database(); - if (db && databaseConnected(dbWidget->database())) { + auto key = databaseConnected(dbWidget->database()); + if (db && !key.isEmpty()) { databases << db; + keys << key; } } } else { const auto& db = getDatabase(); - if (databaseConnected(db)) { + auto key = databaseConnected(db); + if (!key.isEmpty()) { databases << db; + keys << key; } } // Search entries matching the hostname - QString hostname = QUrl(siteUrlStr).host(); + QString hostname = QUrl(siteUrl).host(); QList entries; do { for (const auto& db : databases) { - entries << searchEntries(db, siteUrlStr, formUrlStr); + entries << searchEntries(db, siteUrl, formUrl, keys, passkey); } } while (entries.isEmpty() && removeFirstDomain(hostname)); return entries; } -void BrowserService::convertAttributesToCustomData(QSharedPointer db) +QString BrowserService::decodeCustomDataRestrictKey(const QString& key) { - if (!db) { - return; - } - - QList entries = db->rootGroup()->entriesRecursive(); - QProgressDialog progress(tr("Converting attributes to custom data…"), tr("Abort"), 0, entries.count()); - progress.setWindowModality(Qt::WindowModal); - - int counter = 0; - int keyCounter = 0; - for (auto* entry : entries) { - if (progress.wasCanceled()) { - return; - } - - if (moveSettingsToCustomData(entry, KEEPASSHTTP_NAME)) { - ++counter; - } - - if (moveSettingsToCustomData(entry, KEEPASSXCBROWSER_OLD_NAME)) { - ++counter; - } - - if (moveSettingsToCustomData(entry, KEEPASSXCBROWSER_NAME)) { - ++counter; - } - - if (entry->title() == KEEPASSHTTP_NAME || entry->title().contains(KEEPASSXCBROWSER_NAME, Qt::CaseInsensitive)) { - keyCounter += moveKeysToCustomData(entry, db); - db->recycleEntry(entry); - } - - progress.setValue(progress.value() + 1); - } - progress.reset(); - - if (counter > 0) { - MessageBox::information(nullptr, - tr("KeePassXC: Converted KeePassHTTP attributes"), - tr("Successfully converted attributes from %1 entry(s).\n" - "Moved %2 keys to custom data.", - "") - .arg(counter) - .arg(keyCounter), - MessageBox::Ok); - } else if (counter == 0 && keyCounter > 0) { - MessageBox::information(nullptr, - tr("KeePassXC: Converted KeePassHTTP attributes"), - tr("Successfully moved %n keys to custom data.", "", keyCounter), - MessageBox::Ok); - } else { - MessageBox::information(nullptr, - tr("KeePassXC: No entry with KeePassHTTP attributes found!"), - tr("The active database does not contain an entry with KeePassHTTP attributes."), - MessageBox::Ok); - } - - // Rename password groupName - Group* rootGroup = db->rootGroup(); - if (!rootGroup) { - return; - } - - for (auto* g : rootGroup->groupsRecursive(true)) { - if (g->name() == KEEPASSHTTP_GROUP_NAME) { - g->setName(KEEPASSXCBROWSER_GROUP_NAME); - break; - } - } + return key.isEmpty() ? tr("Disable") : key; } void BrowserService::requestGlobalAutoType(const QString& search) @@ -827,13 +1124,12 @@ void BrowserService::requestGlobalAutoType(const QString& search) emit osUtils->globalShortcutTriggered("autotype", search); } -QList -BrowserService::sortEntries(QList& pwEntries, const QString& siteUrlStr, const QString& formUrlStr) +QList BrowserService::sortEntries(QList& entries, const QString& siteUrl, const QString& formUrl) { // Build map of prioritized entries QMultiMap priorities; - for (auto* entry : pwEntries) { - priorities.insert(sortPriority(getEntryURLs(entry), siteUrlStr, formUrlStr), entry); + for (auto* entry : entries) { + priorities.insert(sortPriority(entry->getAllUrls(), siteUrl, formUrl), entry); } auto keys = priorities.uniqueKeys(); @@ -852,66 +1148,38 @@ BrowserService::sortEntries(QList& pwEntries, const QString& siteUrlStr, return results; } -QList BrowserService::confirmEntries(QList& pwEntriesToConfirm, - const QString& siteUrlStr, - const QString& siteHost, - const QString& formUrlStr, - const QString& realm, - const bool httpAuth) +void BrowserService::allowEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm) { - if (pwEntriesToConfirm.isEmpty() || m_dialogActive) { - return {}; + BrowserEntryConfig config; + config.load(entry); + config.allow(siteHost); + + if (!formUrl.isEmpty() && siteHost != formUrl) { + config.allow(formUrl); } - m_dialogActive = true; - updateWindowState(); - BrowserAccessControlDialog accessControlDialog; - - connect(m_currentDatabaseWidget, SIGNAL(databaseLockRequested()), &accessControlDialog, SLOT(reject())); - - connect(&accessControlDialog, &BrowserAccessControlDialog::disableAccess, [&](QTableWidgetItem* item) { - auto entry = pwEntriesToConfirm[item->row()]; - BrowserEntryConfig config; - config.load(entry); - config.deny(siteHost); - if (!formUrlStr.isEmpty() && siteHost != formUrlStr) { - config.deny(formUrlStr); - } - if (!realm.isEmpty()) { - config.setRealm(realm); - } - config.save(entry); - }); - - accessControlDialog.setItems(pwEntriesToConfirm, siteUrlStr, httpAuth); - - QList allowedEntries; - if (accessControlDialog.exec() == QDialog::Accepted) { - const auto selectedEntries = accessControlDialog.getSelectedEntries(); - for (auto item : accessControlDialog.getSelectedEntries()) { - auto entry = pwEntriesToConfirm[item->row()]; - if (accessControlDialog.remember()) { - BrowserEntryConfig config; - config.load(entry); - config.allow(siteHost); - if (!formUrlStr.isEmpty() && siteHost != formUrlStr) { - config.allow(formUrlStr); - } - if (!realm.isEmpty()) { - config.setRealm(realm); - } - config.save(entry); - } - allowedEntries.append(entry); - } + if (!realm.isEmpty()) { + config.setRealm(realm); } - // Re-hide the application if it wasn't visible before - hideWindow(); + config.save(entry); +} - m_dialogActive = false; +void BrowserService::denyEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm) +{ + BrowserEntryConfig config; + config.load(entry); + config.deny(siteHost); - return allowedEntries; + if (!formUrl.isEmpty() && siteHost != formUrl) { + config.deny(formUrl); + } + + if (!realm.isEmpty()) { + config.setRealm(realm); + } + + config.save(entry); } QJsonObject BrowserService::prepareEntry(const Entry* entry) @@ -958,8 +1226,8 @@ QJsonObject BrowserService::prepareEntry(const Entry* entry) BrowserService::Access BrowserService::checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm) { - if (entry->isExpired()) { - return browserSettings()->allowExpiredCredentials() ? Allowed : Denied; + if (entry->isExpired() && !browserSettings()->allowExpiredCredentials()) { + return Denied; } BrowserEntryConfig config; @@ -1006,14 +1274,14 @@ Group* BrowserService::getDefaultEntryGroup(const QSharedPointer& sele // Returns the maximum sort priority given a set of match urls and the // extension provided site and form url. -int BrowserService::sortPriority(const QStringList& urls, const QString& siteUrlStr, const QString& formUrlStr) +int BrowserService::sortPriority(const QStringList& urls, const QString& siteUrl, const QString& formUrl) { QList priorityList; // NOTE: QUrl::matches is utterly broken in Qt < 5.11, so we work around that // by removing parts of the url that we don't match and direct matching others const auto stdOpts = QUrl::RemoveFragment | QUrl::RemoveUserInfo; - const auto siteUrl = QUrl(siteUrlStr).adjusted(stdOpts); - const auto formUrl = QUrl(formUrlStr).adjusted(stdOpts); + const auto adjustedSiteUrl = QUrl(siteUrl).adjusted(stdOpts); + const auto adjustedFormUrl = QUrl(formUrl).adjusted(stdOpts); auto getPriority = [&](const QString& givenUrl) { auto url = QUrl::fromUserInput(givenUrl).adjusted(stdOpts); @@ -1031,38 +1299,38 @@ int BrowserService::sortPriority(const QStringList& urls, const QString& siteUrl // Reject invalid urls and hosts, except 'localhost', and scheme mismatch if (!url.isValid() || (!url.host().contains(".") && url.host() != "localhost") - || url.scheme() != siteUrl.scheme()) { + || url.scheme() != adjustedSiteUrl.scheme()) { return 0; } // Exact match with site url or form url - if (url.matches(siteUrl, QUrl::None) || url.matches(formUrl, QUrl::None)) { + if (url.matches(adjustedSiteUrl, QUrl::None) || url.matches(adjustedFormUrl, QUrl::None)) { return 100; } // Exact match without the query string - if (url.matches(siteUrl, QUrl::RemoveQuery) || url.matches(formUrl, QUrl::RemoveQuery)) { + if (url.matches(adjustedSiteUrl, QUrl::RemoveQuery) || url.matches(adjustedFormUrl, QUrl::RemoveQuery)) { return 90; } // Parent directory match - if (url.isParentOf(siteUrl) || url.isParentOf(formUrl)) { + if (url.isParentOf(adjustedSiteUrl) || url.isParentOf(adjustedFormUrl)) { return 85; } // Match without path (ie, FQDN match), form url prioritizes lower than site url - if (url.host() == siteUrl.host()) { + if (url.host() == adjustedSiteUrl.host()) { return 80; } - if (url.host() == formUrl.host()) { + if (url.host() == adjustedFormUrl.host()) { return 70; } // Site/form url ends with given url (subdomain mismatch) - if (siteUrl.host().endsWith(url.host())) { + if (adjustedSiteUrl.host().endsWith(url.host())) { return 60; } - if (formUrl.host().endsWith(url.host())) { + if (adjustedFormUrl.host().endsWith(url.host())) { return 50; } @@ -1077,18 +1345,6 @@ int BrowserService::sortPriority(const QStringList& urls, const QString& siteUrl return *std::max_element(priorityList.begin(), priorityList.end()); } -bool BrowserService::schemeFound(const QString& url) -{ - QUrl address(url); - return !address.scheme().isEmpty(); -} - -bool BrowserService::isIpAddress(const QString& host) const -{ - QHostAddress address(host); - return address.protocol() == QAbstractSocket::IPv4Protocol || address.protocol() == QAbstractSocket::IPv6Protocol; -} - bool BrowserService::removeFirstDomain(QString& hostname) { int pos = hostname.indexOf("."); @@ -1108,7 +1364,10 @@ bool BrowserService::removeFirstDomain(QString& hostname) /* Test if a search URL matches a custom entry. If the URL has the schema "keepassxc", some special checks will be made. * Otherwise, this simply delegates to handleURL(). */ -bool BrowserService::handleEntry(Entry* entry, const QString& url, const QString& submitUrl) +bool BrowserService::shouldIncludeEntry(Entry* entry, + const QString& url, + const QString& submitUrl, + const bool omitWwwSubdomain) { // Use this special scheme to find entries by UUID if (url.startsWith("keepassxc://by-uuid/")) { @@ -1116,29 +1375,146 @@ bool BrowserService::handleEntry(Entry* entry, const QString& url, const QString } else if (url.startsWith("keepassxc://by-path/")) { return url.endsWith("by-path/" + entry->path()); } - return handleURL(entry->url(), url, submitUrl); + + // Handle the entry URL + if (handleURL(entry->resolveUrl(), url, submitUrl, omitWwwSubdomain)) { + return true; + } + + // Handle additional URLs + const auto additionalUrls = entry->getAdditionalUrls(); + for (const auto& additionalUrl : additionalUrls) { + if (handleURL(additionalUrl, url, submitUrl, omitWwwSubdomain, true)) { + return true; + } + } + + return false; } -bool BrowserService::handleURL(const QString& entryUrl, const QString& siteUrlStr, const QString& formUrlStr) +#ifdef WITH_XC_BROWSER_PASSKEYS +// Returns all Passkey entries for the current Relying Party +QList BrowserService::getPasskeyEntries(const QString& rpId, const StringPairList& keyList) +{ + QList entries; + for (const auto& entry : searchEntries(rpId, "", keyList, true)) { + if (entry->hasPasskey() && entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY) == rpId) { + entries << entry; + } + } + + return entries; +} + +// Returns all Passkey entries for the current Relying Party and identical user handle +QList BrowserService::getPasskeyEntriesWithUserHandle(const QString& rpId, + const QString& userId, + const StringPairList& keyList) +{ + QList entries; + for (const auto& entry : searchEntries(rpId, "", keyList, true)) { + if (entry->hasPasskey() && entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY) == rpId + && entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_USER_HANDLE) == userId) { + entries << entry; + } + } + + return entries; +} + +// Get all entries for the site that are allowed by the server +QList BrowserService::getPasskeyAllowedEntries(const QJsonObject& assertionOptions, + const QString& rpId, + const StringPairList& keyList) +{ + QList entries; + const auto allowedCredentials = passkeyUtils()->getAllowedCredentialsFromAssertionOptions(assertionOptions); + if (!assertionOptions["allowCredentials"].toArray().isEmpty() && allowedCredentials.isEmpty()) { + return {}; + } + + for (const auto& entry : getPasskeyEntries(rpId, keyList)) { + // If allowedCredentials.isEmpty() check if entry contains an extra attribute for user handle. + // If that is found, the entry should be allowed. + // See: https://w3c.github.io/webauthn/#dom-authenticatorassertionresponse-userhandle + if (allowedCredentials.contains(passkeyUtils()->getCredentialIdFromEntry(entry)) + || (allowedCredentials.isEmpty() + && entry->attributes()->hasKey(EntryAttributes::KPEX_PASSKEY_USER_HANDLE))) { + entries << entry; + } + } + + return entries; +} + +// Checks if the same user ID already exists for the current RP ID +bool BrowserService::isPasskeyCredentialExcluded(const QJsonArray& excludeCredentials, + const QString& rpId, + const StringPairList& keyList) +{ + QStringList allIds; + for (const auto& cred : excludeCredentials) { + allIds << cred["id"].toString(); + } + + const auto passkeyEntries = getPasskeyEntries(rpId, keyList); + return std::any_of(passkeyEntries.begin(), passkeyEntries.end(), [&](const auto& entry) { + return allIds.contains(passkeyUtils()->getCredentialIdFromEntry(entry)); + }); +} + +QJsonObject BrowserService::getPasskeyError(int errorCode) const +{ + return QJsonObject({{"errorCode", errorCode}}); +} +#endif + +bool BrowserService::handleURL(const QString& entryUrl, + const QString& siteUrl, + const QString& formUrl, + const bool omitWwwSubdomain, + const bool allowWildcards) { if (entryUrl.isEmpty()) { return false; } + bool isWildcardUrl = false; + auto tempUrl = entryUrl; + + // Allows matching with exact URL and wildcards + if (allowWildcards) { + // Exact match where URL is wrapped inside " characters + if (entryUrl.startsWith("\"") && entryUrl.endsWith("\"")) { + return QStringView{entryUrl}.mid(1, entryUrl.length() - 2) == siteUrl; + } + + // Replace wildcards + isWildcardUrl = entryUrl.contains("*"); + if (isWildcardUrl) { + tempUrl = tempUrl.replace("*", UrlTools::URL_WILDCARD); + } + } + QUrl entryQUrl; if (entryUrl.contains("://")) { - entryQUrl = entryUrl; + entryQUrl = tempUrl; } else { - entryQUrl = QUrl::fromUserInput(entryUrl); + entryQUrl = QUrl::fromUserInput(tempUrl); if (browserSettings()->matchUrlScheme()) { entryQUrl.setScheme("https"); } } + // Remove WWW subdomain from matching if group setting is enabled + if (omitWwwSubdomain && entryQUrl.host().startsWith("www.")) { + entryQUrl.setHost(entryQUrl.host().remove("www.")); + } + // Make a direct compare if a local file is used - if (siteUrlStr.startsWith("file://")) { - return entryUrl == formUrlStr; + if (siteUrl.startsWith("file://")) { + return entryUrl == formUrl; } // URL host validation fails @@ -1147,7 +1523,7 @@ bool BrowserService::handleURL(const QString& entryUrl, const QString& siteUrlSt } // Match port, if used - QUrl siteQUrl(siteUrlStr); + QUrl siteQUrl(siteUrl); if (entryQUrl.port() > 0 && entryQUrl.port() != siteQUrl.port()) { return false; } @@ -1164,8 +1540,13 @@ bool BrowserService::handleURL(const QString& entryUrl, const QString& siteUrlSt return false; } + // Use wildcard matching instead + if (isWildcardUrl) { + return handleURLWithWildcards(entryQUrl, siteUrl); + } + // Match the base domain - if (getTopLevelDomainFromUrl(siteQUrl.host()) != getTopLevelDomainFromUrl(entryQUrl.host())) { + if (urlTools()->getBaseDomainFromUrl(siteQUrl.host()) != urlTools()->getBaseDomainFromUrl(entryQUrl.host())) { return false; } @@ -1175,44 +1556,76 @@ bool BrowserService::handleURL(const QString& entryUrl, const QString& siteUrlSt } return false; -}; - -/** - * Gets the base domain of URL. - * - * Returns the base domain, e.g. https://another.example.co.uk -> example.co.uk - */ -QString BrowserService::getTopLevelDomainFromUrl(const QString& url) const -{ - QUrl qurl = QUrl::fromUserInput(url); - QString host = qurl.host(); - - // If the hostname is an IP address, return it directly - if (isIpAddress(host)) { - return host; - } - - if (host.isEmpty() || !host.contains(qurl.topLevelDomain())) { - return {}; - } - - // Remove the top level domain part from the hostname, e.g. https://another.example.co.uk -> https://another.example - host.chop(qurl.topLevelDomain().length()); - // Split the URL and select the last part, e.g. https://another.example -> example - QString baseDomain = host.split('.').last(); - // Append the top level domain back to the URL, e.g. example -> example.co.uk - baseDomain.append(qurl.topLevelDomain()); - return baseDomain; } -QSharedPointer BrowserService::getDatabase() +bool BrowserService::handleURLWithWildcards(const QUrl& entryQUrl, const QString& siteUrl) { + auto matchWithRegex = [&](QString firstPart, const QString& secondPart, bool hostnameUsed = false) { + if (firstPart == secondPart) { + return true; + } + + // If there's no wildcard with hostname, just compare directly + if (hostnameUsed && !firstPart.contains(UrlTools::URL_WILDCARD) && firstPart != secondPart) { + return false; + } + + // Escape illegal characters + auto re = firstPart.replace(QRegularExpression(R"(([!\^\$\+\-\(\)@<>]))"), "\\\\1"); + + if (hostnameUsed) { + // Replace all host parts with wildcards + re = re.replace(QString("%1.").arg(UrlTools::URL_WILDCARD), "(.*?)"); + } + + // Append a + to the end of regex to match all paths after the last asterisk + if (re.endsWith(UrlTools::URL_WILDCARD)) { + re.append("+"); + } + + // Replace any remaining wildcards for paths + re = re.replace(UrlTools::URL_WILDCARD, "(.*?)"); + return QRegularExpression(re).match(secondPart).hasMatch(); + }; + + // Match hostname and path + QUrl siteQUrl = siteUrl; + if (!matchWithRegex(entryQUrl.host(), siteQUrl.host(), true) + || !matchWithRegex(entryQUrl.path(), siteQUrl.path())) { + return false; + } + + return true; +} + +QSharedPointer BrowserService::getDatabase(const QUuid& rootGroupUuid) +{ + if (!rootGroupUuid.isNull()) { + const auto openDatabases = getOpenDatabases(); + for (const auto& db : openDatabases) { + if (db->rootGroup()->uuid() == rootGroupUuid) { + return db; + } + } + } + if (m_currentDatabaseWidget) { return m_currentDatabaseWidget->database(); } return {}; } +QList> BrowserService::getOpenDatabases() +{ + QList> databaseList; + for (auto dbWidget : getMainWindow()->getOpenDatabases()) { + if (!dbWidget->isLocked()) { + databaseList << dbWidget->database(); + } + } + return databaseList; +} + QSharedPointer BrowserService::selectedDatabase() { QList databaseWidgets; @@ -1223,7 +1636,7 @@ QSharedPointer BrowserService::selectedDatabase() } } - BrowserEntrySaveDialog browserEntrySaveDialog; + BrowserEntrySaveDialog browserEntrySaveDialog(m_currentDatabaseWidget); int openDatabaseCount = browserEntrySaveDialog.setItems(databaseWidgets, m_currentDatabaseWidget); if (openDatabaseCount > 1) { int res = browserEntrySaveDialog.exec(); @@ -1242,99 +1655,6 @@ QSharedPointer BrowserService::selectedDatabase() return getDatabase(); } -bool BrowserService::moveSettingsToCustomData(Entry* entry, const QString& name) -{ - if (entry->attributes()->contains(name)) { - QString attr = entry->attributes()->value(name); - entry->beginUpdate(); - if (!attr.isEmpty()) { - entry->customData()->set(KEEPASSXCBROWSER_NAME, attr); - } - entry->attributes()->remove(name); - entry->endUpdate(); - return true; - } - return false; -} - -int BrowserService::moveKeysToCustomData(Entry* entry, QSharedPointer db) -{ - int keyCounter = 0; - for (const auto& key : entry->attributes()->keys()) { - if (key.contains(CustomData::BrowserLegacyKeyPrefix)) { - QString publicKey = key; - publicKey.remove(CustomData::BrowserLegacyKeyPrefix); - - // Add key to database custom data - if (db && !db->metadata()->customData()->contains(CustomData::BrowserKeyPrefix + publicKey)) { - db->metadata()->customData()->set(CustomData::BrowserKeyPrefix + publicKey, - entry->attributes()->value(key)); - ++keyCounter; - } - } - } - - return keyCounter; -} - -bool BrowserService::checkLegacySettings(QSharedPointer db) -{ - if (!db || !browserSettings()->isEnabled() || browserSettings()->noMigrationPrompt()) { - return false; - } - - bool legacySettingsFound = false; - QList entries = db->rootGroup()->entriesRecursive(); - for (const auto& e : entries) { - if (e->isRecycled()) { - continue; - } - - if ((e->attributes()->contains(KEEPASSHTTP_NAME) || e->attributes()->contains(KEEPASSXCBROWSER_NAME)) - || (e->title() == KEEPASSHTTP_NAME || e->title().contains(KEEPASSXCBROWSER_NAME, Qt::CaseInsensitive))) { - legacySettingsFound = true; - break; - } - } - - if (!legacySettingsFound) { - return false; - } - - auto* checkbox = new QCheckBox(tr("Don't show this warning again")); - QObject::connect(checkbox, &QCheckBox::stateChanged, [&](int state) { - browserSettings()->setNoMigrationPrompt(static_cast(state) == Qt::CheckState::Checked); - }); - - auto dialogResult = - MessageBox::warning(nullptr, - tr("KeePassXC: Legacy browser integration settings detected"), - tr("Your KeePassXC-Browser settings need to be moved into the database settings.\n" - "This is necessary to maintain your current browser connections.\n" - "Would you like to migrate your existing settings now?"), - MessageBox::Yes | MessageBox::No, - MessageBox::NoButton, - MessageBox::Raise, - checkbox); - - return dialogResult == MessageBox::Yes; -} - -QStringList BrowserService::getEntryURLs(const Entry* entry) -{ - QStringList urlList; - urlList << entry->url(); - - // Handle additional URL's - for (const auto& key : entry->attributes()->keys()) { - if (key.startsWith(ADDITIONAL_URL)) { - urlList << entry->attributes()->value(key); - } - } - - return urlList; -} - void BrowserService::hideWindow() const { if (m_prevWindowState == WindowState::Minimized) { @@ -1418,18 +1738,12 @@ void BrowserService::databaseUnlocked(DatabaseWidget* dbWidget) QJsonObject msg; msg["action"] = QString("database-unlocked"); m_browserHost->broadcastClientMessage(msg); - - auto db = dbWidget->database(); - if (checkLegacySettings(db)) { - convertAttributesToCustomData(db); - } } } void BrowserService::activeDatabaseChanged(DatabaseWidget* dbWidget) { - // Only emit these signals when we are not searching in all databases - if (dbWidget && !browserSettings()->searchInAllDatabases()) { + if (dbWidget) { if (dbWidget->isLocked()) { databaseLocked(dbWidget); } else { @@ -1440,6 +1754,15 @@ void BrowserService::activeDatabaseChanged(DatabaseWidget* dbWidget) m_currentDatabaseWidget = dbWidget; } +void BrowserService::handleDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget) +{ + // User canceled the database open dialog + if (dbWidget && !accepted && m_bringToFrontRequested) { + m_bringToFrontRequested = false; + hideWindow(); + } +} + void BrowserService::processClientMessage(QLocalSocket* socket, const QJsonObject& message) { auto clientID = message["clientID"].toString(); diff --git a/src/browser/BrowserService.h b/src/browser/BrowserService.h index f91887cd0..c59f9303d 100644 --- a/src/browser/BrowserService.h +++ b/src/browser/BrowserService.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2013 Francois Ferrand + * Copyright (C) 2025 KeePassXC Team * Copyright (C) 2017 Sami Vänttinen - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2013 Francois Ferrand * * 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 @@ -17,9 +17,11 @@ * along with this program. If not, see . */ -#ifndef BROWSERSERVICE_H -#define BROWSERSERVICE_H +#ifndef KEEPASSXC_BROWSERSERVICE_H +#define KEEPASSXC_BROWSERSERVICE_H +#include "BrowserAccessControlDialog.h" +#include "config-keepassx.h" #include "core/Entry.h" #include "gui/PasswordGeneratorWidget.h" @@ -33,6 +35,27 @@ enum max_length = 16 * 1024 }; +struct KeyPairMessage +{ + QLocalSocket* socket; + QString nonce; + QString publicKey; + QString secretKey; +}; + +struct EntryParameters +{ + QString dbid; + QString title; + QString login; + QString password; + QString realm; + QString hash; + QString siteUrl; + QString formUrl; + bool httpAuth; +}; + class DatabaseWidget; class BrowserHost; class BrowserAction; @@ -56,42 +79,51 @@ public: void lockDatabase(); QJsonObject getDatabaseGroups(); - QJsonObject createNewGroup(const QString& groupName); + QJsonArray getDatabaseEntries(); + QJsonObject createNewGroup(const QString& groupName, bool isPasskeysGroup = false); QString getCurrentTotp(const QString& uuid); - void showPasswordGenerator(QLocalSocket* socket, - const QString& nonce, - const QString& publicKey, - const QString& secretKey); - void sendPassword(QLocalSocket* socket, const QJsonObject& message); + void showPasswordGenerator(const KeyPairMessage& keyPairMessage); bool isPasswordGeneratorRequested() const; - - void addEntry(const QString& dbid, - const QString& login, - const QString& password, - const QString& siteUrlStr, - const QString& formUrlStr, - const QString& realm, + QSharedPointer getDatabase(const QUuid& rootGroupUuid = {}); + QSharedPointer selectedDatabase(); + QList> getOpenDatabases(); +#ifdef WITH_XC_BROWSER_PASSKEYS + QJsonObject showPasskeysRegisterPrompt(const QJsonObject& publicKeyOptions, + const QString& origin, + const QString& groupName, + const StringPairList& keyList); + QJsonObject showPasskeysAuthenticationPrompt(const QJsonObject& publicKeyOptions, + const QString& origin, + const StringPairList& keyList); + void addPasskeyToGroup(const QSharedPointer& db, + Group* group, + const QString& url, + const QString& rpId, + const QString& rpName, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey); + void addPasskeyToEntry(Entry* entry, + const QString& rpId, + const QString& rpName, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey); +#endif + void addEntry(const EntryParameters& entryParameters, const QString& group, const QString& groupUuid, const bool downloadFavicon, const QSharedPointer& selectedDb = {}); - bool updateEntry(const QString& dbid, - const QString& uuid, - const QString& login, - const QString& password, - const QString& siteUrlStr, - const QString& formUrlStr); + bool updateEntry(const EntryParameters& entryParameters, const QString& uuid); bool deleteEntry(const QString& uuid); - - QJsonArray findMatchingEntries(const QString& dbid, - const QString& siteUrlStr, - const QString& formUrlStr, - const QString& realm, - const StringPairList& keyList, - const bool httpAuth = false); - + void removePluginData(Entry* entry) const; + QJsonArray findEntries(const EntryParameters& entryParameters, const StringPairList& keyList, bool* entriesFound); void requestGlobalAutoType(const QString& search); - static void convertAttributesToCustomData(QSharedPointer db); + + static QString decodeCustomDataRestrictKey(const QString& key); static const QString KEEPASSXCBROWSER_NAME; static const QString KEEPASSXCBROWSER_OLD_NAME; @@ -99,7 +131,9 @@ public: static const QString OPTION_HIDE_ENTRY; static const QString OPTION_ONLY_HTTP_AUTH; static const QString OPTION_NOT_HTTP_AUTH; + static const QString OPTION_OMIT_WWW; static const QString ADDITIONAL_URL; + static const QString OPTION_RESTRICT_KEY; signals: void requestUnlock(); @@ -112,6 +146,7 @@ public slots: private slots: void processClientMessage(QLocalSocket* socket, const QJsonObject& message); + void handleDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget); private: enum Access @@ -128,57 +163,69 @@ private: Hidden }; + QList searchEntries(const QSharedPointer& db, + const QString& siteUrl, + const QString& formUrl, + const QStringList& keys = {}, + bool passkey = false); QList - searchEntries(const QSharedPointer& db, const QString& siteUrlStr, const QString& formUrlStr); - QList searchEntries(const QString& siteUrlStr, const QString& formUrlStr, const StringPairList& keyList); - QList sortEntries(QList& pwEntries, const QString& siteUrlStr, const QString& formUrlStr); - QList confirmEntries(QList& pwEntriesToConfirm, - const QString& siteUrlStr, + searchEntries(const QString& siteUrl, const QString& formUrl, const StringPairList& keyList, bool passkey = false); + QList sortEntries(QList& entries, const QString& siteUrl, const QString& formUrl); + QList confirmEntries(QList& entriesToConfirm, + const EntryParameters& entryParameters, const QString& siteHost, - const QString& formUrlStr, - const QString& realm, + const QString& formUrl, const bool httpAuth); QJsonObject prepareEntry(const Entry* entry); + void allowEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm); + void denyEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm); QJsonArray getChildrenFromGroup(Group* group); Access checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm); Group* getDefaultEntryGroup(const QSharedPointer& selectedDb = {}); - int sortPriority(const QStringList& urls, const QString& siteUrlStr, const QString& formUrlStr); - bool schemeFound(const QString& url); - bool isIpAddress(const QString& host) const; + int sortPriority(const QStringList& urls, const QString& siteUrl, const QString& formUrl); bool removeFirstDomain(QString& hostname); - bool handleEntry(Entry* entry, const QString& url, const QString& submitUrl); - bool handleURL(const QString& entryUrl, const QString& siteUrlStr, const QString& formUrlStr); - QString getTopLevelDomainFromUrl(const QString& url) const; - QString baseDomain(const QString& hostname) const; - QSharedPointer getDatabase(); - QSharedPointer selectedDatabase(); + bool + shouldIncludeEntry(Entry* entry, const QString& url, const QString& submitUrl, const bool omitWwwSubdomain = false); +#ifdef WITH_XC_BROWSER_PASSKEYS + QList getPasskeyEntries(const QString& rpId, const StringPairList& keyList); + QList + getPasskeyEntriesWithUserHandle(const QString& rpId, const QString& userId, const StringPairList& keyList); + QList + getPasskeyAllowedEntries(const QJsonObject& assertionOptions, const QString& rpId, const StringPairList& keyList); + bool isPasskeyCredentialExcluded(const QJsonArray& excludeCredentials, + const QString& rpId, + const StringPairList& keyList); + QJsonObject getPasskeyError(int errorCode) const; +#endif + bool handleURL(const QString& entryUrl, + const QString& siteUrl, + const QString& formUrl, + const bool omitWwwSubdomain = false, + const bool allowWildcards = false); + bool handleURLWithWildcards(const QUrl& entryQUrl, const QString& siteUrl); QString getDatabaseRootUuid(); QString getDatabaseRecycleBinUuid(); - bool checkLegacySettings(QSharedPointer db); - QStringList getEntryURLs(const Entry* entry); void hideWindow() const; void raiseWindow(const bool force = false); - void updateWindowState(); - static bool moveSettingsToCustomData(Entry* entry, const QString& name); - static int moveKeysToCustomData(Entry* entry, QSharedPointer db); - QPointer m_browserHost; QHash> m_browserClients; bool m_dialogActive; bool m_bringToFrontRequested; - bool m_passwordGeneratorRequested; WindowState m_prevWindowState; QUuid m_keepassBrowserUUID; QPointer m_currentDatabaseWidget; - QScopedPointer m_passwordGenerator; + QPointer m_passwordGenerator; Q_DISABLE_COPY(BrowserService); friend class TestBrowser; +#ifdef WITH_XC_BROWSER_PASSKEYS + friend class TestPasskeys; +#endif }; static inline BrowserService* browserService() @@ -186,4 +233,4 @@ static inline BrowserService* browserService() return BrowserService::instance(); } -#endif // BROWSERSERVICE_H +#endif // KEEPASSXC_BROWSERSERVICE_H diff --git a/src/browser/BrowserSettings.cpp b/src/browser/BrowserSettings.cpp index 7b5704e78..0a8226c12 100644 --- a/src/browser/BrowserSettings.cpp +++ b/src/browser/BrowserSettings.cpp @@ -1,7 +1,7 @@ /* - * Copyright (C) 2013 Francois Ferrand + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2017 Sami Vänttinen - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2013 Francois Ferrand * * 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 @@ -145,6 +145,16 @@ void BrowserSettings::setNoMigrationPrompt(bool prompt) config()->set(Config::Browser_NoMigrationPrompt, prompt); } +bool BrowserSettings::allowLocalhostWithPasskeys() +{ + return config()->get(Config::Browser_AllowLocalhostWithPasskeys).toBool(); +} + +void BrowserSettings::setAllowLocalhostWithPasskeys(bool enabled) +{ + config()->set(Config::Browser_AllowLocalhostWithPasskeys, enabled); +} + bool BrowserSettings::useCustomProxy() { return config()->get(Config::Browser_UseCustomProxy).toBool(); @@ -200,6 +210,11 @@ QString BrowserSettings::proxyLocation() return m_nativeMessageInstaller.getProxyPath(); } +QString BrowserSettings::proxyLocationAsInstalled() const +{ + return m_nativeMessageInstaller.getInstalledProxyPath(); +} + #ifdef QT_DEBUG QString BrowserSettings::customExtensionId() { @@ -222,6 +237,16 @@ void BrowserSettings::setUpdateBinaryPath(bool enabled) config()->set(Config::Browser_UpdateBinaryPath, enabled); } +bool BrowserSettings::allowGetDatabaseEntriesRequest() +{ + return config()->get(Config::Browser_AllowGetDatabaseEntriesRequest).toBool(); +} + +void BrowserSettings::setAllowGetDatabaseEntriesRequest(bool enabled) +{ + config()->set(Config::Browser_AllowGetDatabaseEntriesRequest, enabled); +} + bool BrowserSettings::allowExpiredCredentials() { return config()->get(Config::Browser_AllowExpiredCredentials).toBool(); diff --git a/src/browser/BrowserSettings.h b/src/browser/BrowserSettings.h index 18ededb4c..9c0b3718e 100644 --- a/src/browser/BrowserSettings.h +++ b/src/browser/BrowserSettings.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2013 Francois Ferrand + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2017 Sami Vänttinen - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2013 Francois Ferrand * * 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 @@ -17,8 +17,8 @@ * along with this program. If not, see . */ -#ifndef BROWSERSETTINGS_H -#define BROWSERSETTINGS_H +#ifndef KEEPASSXC_BROWSERSETTINGS_H +#define KEEPASSXC_BROWSERSETTINGS_H #include "NativeMessageInstaller.h" @@ -51,18 +51,23 @@ public: void setSupportKphFields(bool supportKphFields); bool noMigrationPrompt(); void setNoMigrationPrompt(bool prompt); + bool allowLocalhostWithPasskeys(); + void setAllowLocalhostWithPasskeys(bool enabled); bool useCustomProxy(); void setUseCustomProxy(bool enabled); QString customProxyLocation(); void setCustomProxyLocation(const QString& location); QString proxyLocation(); + QString proxyLocationAsInstalled() const; #ifdef QT_DEBUG QString customExtensionId(); void setCustomExtensionId(const QString& id); #endif bool updateBinaryPath(); void setUpdateBinaryPath(bool enabled); + bool allowGetDatabaseEntriesRequest(); + void setAllowGetDatabaseEntriesRequest(bool enabled); bool allowExpiredCredentials(); void setAllowExpiredCredentials(bool enabled); @@ -89,4 +94,4 @@ inline BrowserSettings* browserSettings() return BrowserSettings::instance(); } -#endif // BROWSERSETTINGS_H +#endif // KEEPASSXC_BROWSERSETTINGS_H diff --git a/src/browser/BrowserSettingsWidget.cpp b/src/browser/BrowserSettingsWidget.cpp index 8dd26d324..5a4ccce8d 100644 --- a/src/browser/BrowserSettingsWidget.cpp +++ b/src/browser/BrowserSettingsWidget.cpp @@ -20,6 +20,7 @@ #include "BrowserSettings.h" #include "config-keepassx.h" +#include "gui/styles/StateColorPalette.h" #include @@ -30,31 +31,18 @@ BrowserSettingsWidget::BrowserSettingsWidget(QWidget* parent) m_ui->setupUi(this); // clang-format off - QString snapInstructions; -#if defined(KEEPASSXC_DIST_SNAP) - snapInstructions = "

" + - tr("Due to Snap sandboxing, you must run a script to enable browser integration." - "
" - "You can obtain this script from %1") - .arg("
https://keepassxc.org"); -#endif - m_ui->extensionLabel->setOpenExternalLinks(true); m_ui->extensionLabel->setText( - tr("KeePassXC-Browser is needed for the browser integration to work.
Download it for %1 and %2 and %3. %4") + tr("KeePassXC-Browser is needed for the browser integration to work.
Download it for %1 and %2 and %3.") .arg("Firefox", - "" + "" "Google Chrome / Chromium / Vivaldi / Brave", - "Microsoft Edge", - snapInstructions)); + "Microsoft Edge")); // clang-format on - m_ui->warningWidget->setCloseButtonVisible(false); - m_ui->warningWidget->setAutoHideTimeout(-1); - m_ui->warningWidget->setAnimate(false); - m_ui->tabWidget->setEnabled(m_ui->enableBrowserSupport->isChecked()); connect(m_ui->enableBrowserSupport, SIGNAL(toggled(bool)), m_ui->tabWidget, SLOT(setEnabled(bool))); + connect(m_ui->enableBrowserSupport, SIGNAL(toggled(bool)), SLOT(validateProxyLocation())); // Custom Browser option #ifdef Q_OS_WIN @@ -72,10 +60,15 @@ BrowserSettingsWidget::BrowserSettingsWidget(QWidget* parent) connect(m_ui->useCustomProxy, SIGNAL(toggled(bool)), m_ui->customProxyLocation, SLOT(setEnabled(bool))); connect(m_ui->useCustomProxy, SIGNAL(toggled(bool)), m_ui->customProxyLocationBrowseButton, SLOT(setEnabled(bool))); - connect(m_ui->useCustomProxy, SIGNAL(toggled(bool)), SLOT(validateCustomProxyLocation())); - connect(m_ui->customProxyLocation, SIGNAL(editingFinished()), SLOT(validateCustomProxyLocation())); + connect(m_ui->useCustomProxy, SIGNAL(toggled(bool)), SLOT(validateProxyLocation())); + connect(m_ui->customProxyLocation, SIGNAL(editingFinished()), SLOT(validateProxyLocation())); connect(m_ui->customProxyLocationBrowseButton, SIGNAL(clicked()), this, SLOT(showProxyLocationFileDialog())); + m_ui->messageWidget->setVisible(false); + m_ui->messageWidget->setCloseButtonVisible(false); + m_ui->messageWidget->setWordWrap(true); + m_ui->messageWidget->setAutoHideTimeout(MessageWidget::DisableAutoHide); + #ifndef Q_OS_LINUX m_ui->snapWarningLabel->setVisible(false); #endif @@ -90,7 +83,6 @@ BrowserSettingsWidget::BrowserSettingsWidget(QWidget* parent) m_ui->torBrowserSupport->setHidden(true); m_ui->firefoxSupport->setText("Firefox and Tor Browser"); #endif - m_ui->browserGlobalWarningWidget->setVisible(false); #ifndef QT_DEBUG m_ui->customExtensionId->setVisible(false); @@ -121,10 +113,12 @@ void BrowserSettingsWidget::loadSettings() m_ui->httpAuthPermission->setChecked(settings->httpAuthPermission()); m_ui->searchInAllDatabases->setChecked(settings->searchInAllDatabases()); m_ui->supportKphFields->setChecked(settings->supportKphFields()); + m_ui->allowLocalhostWithPasskeys->setChecked(settings->allowLocalhostWithPasskeys()); m_ui->noMigrationPrompt->setChecked(settings->noMigrationPrompt()); m_ui->useCustomProxy->setChecked(settings->useCustomProxy()); m_ui->customProxyLocation->setText(settings->replaceHomePath(settings->customProxyLocation())); m_ui->updateBinaryPath->setChecked(settings->updateBinaryPath()); + m_ui->allowGetDatabaseEntriesRequest->setChecked(settings->allowGetDatabaseEntriesRequest()); m_ui->allowExpiredCredentials->setChecked(settings->allowExpiredCredentials()); m_ui->chromeSupport->setChecked(settings->browserSupport(BrowserShared::CHROME)); m_ui->chromiumSupport->setChecked(settings->browserSupport(BrowserShared::CHROMIUM)); @@ -145,23 +139,13 @@ void BrowserSettingsWidget::loadSettings() m_ui->useCustomProxy->setVisible(false); m_ui->customProxyLocation->setVisible(false); m_ui->customProxyLocationBrowseButton->setVisible(false); - m_ui->browsersGroupBox->setVisible(false); - m_ui->browsersGroupBox->setEnabled(false); m_ui->updateBinaryPath->setChecked(false); m_ui->updateBinaryPath->setVisible(false); // No custom browser for snaps m_ui->customBrowserSupport->setVisible(false); m_ui->customBrowserGroupBox->setVisible(false); - // Show notice to user - m_ui->browserGlobalWarningWidget->showMessage(tr("Please see special instructions for browser extension use below"), - MessageWidget::Warning); - m_ui->browserGlobalWarningWidget->setCloseButtonVisible(false); - m_ui->browserGlobalWarningWidget->setAutoHideTimeout(-1); #endif #ifdef KEEPASSXC_DIST_FLATPAK - // Guarantees proxy path works with different flatpak installations - m_ui->updateBinaryPath->setChecked(true); - m_ui->updateBinaryPath->setEnabled(false); // The sandbox makes custom proxy locations very unintuitive m_ui->useCustomProxy->setChecked(false); m_ui->useCustomProxy->setEnabled(false); @@ -186,22 +170,53 @@ void BrowserSettingsWidget::loadSettings() #ifdef QT_DEBUG m_ui->customExtensionId->setText(settings->customExtensionId()); #endif - - validateCustomProxyLocation(); + // Validate the complete proxy location dependency - not only in case it is custom, + // to make trouble-shooting for both developer and user easier + validateProxyLocation(); } -void BrowserSettingsWidget::validateCustomProxyLocation() +QString BrowserSettingsWidget::resolveCustomProxyLocation() { - auto path = browserSettings()->customProxyLocation(); + auto settings = browserSettings(); + auto proxyLocation = m_ui->customProxyLocation->text().trimmed(); + proxyLocation = settings->replaceTildeHomePath(proxyLocation); + return proxyLocation; +} - if (m_ui->useCustomProxy->isChecked() && !QFile::exists(path)) { - m_ui->warningWidget->showMessage(tr("Error: The custom proxy location cannot be found!" - "
Browser integration WILL NOT WORK without the proxy application."), - MessageWidget::Error); - } else { - m_ui->warningWidget->showMessage(tr("Warning: The following options can be dangerous!"), - MessageWidget::Warning); +void BrowserSettingsWidget::validateProxyLocation() +{ +#if !defined(KEEPASSXC_DIST_SNAP) && !defined(KEEPASSXC_DIST_FLATPAK) + // Reset the UI + m_ui->messageWidget->setVisible(false); + m_ui->customProxyLocation->setStyleSheet(""); + m_ui->customProxyLocation->setToolTip(""); + + if (m_ui->enableBrowserSupport->isChecked()) { + // If we are using a custom proxy location, check if it exists and display warning if not + if (m_ui->useCustomProxy->isChecked()) { + if (!QFile::exists(resolveCustomProxyLocation())) { + StateColorPalette statePalette; + auto color = statePalette.color(StateColorPalette::ColorRole::Error); + m_ui->customProxyLocation->setStyleSheet(QString("QLineEdit { background: %1; }").arg(color.name())); + m_ui->customProxyLocation->setToolTip(tr("The custom proxy location does not exist.")); + + m_ui->messageWidget->showMessage(tr("Error: The custom proxy location does not exist. Correct " + "this in the advanced settings tab."), + MessageWidget::Error); + } + } else { + // Otherwise check if the installed proxy exists + auto expectedProxyLocation = browserSettings()->proxyLocationAsInstalled(); + if (!QFile::exists(expectedProxyLocation)) { + m_ui->messageWidget->showMessage( + tr("Error: The installed proxy executable is missing from the expected location: %1
" + "Please set a custom proxy location in the advanced settings or reinstall the application.") + .arg(expectedProxyLocation), + MessageWidget::Error); + } + } } +#endif } void BrowserSettingsWidget::saveSettings() @@ -214,15 +229,17 @@ void BrowserSettingsWidget::saveSettings() settings->setMatchUrlScheme(m_ui->matchUrlScheme->isChecked()); settings->setUseCustomProxy(m_ui->useCustomProxy->isChecked()); - settings->setCustomProxyLocation(browserSettings()->replaceTildeHomePath(m_ui->customProxyLocation->text())); + settings->setCustomProxyLocation(resolveCustomProxyLocation()); settings->setUpdateBinaryPath(m_ui->updateBinaryPath->isChecked()); + settings->setAllowGetDatabaseEntriesRequest(m_ui->allowGetDatabaseEntriesRequest->isChecked()); settings->setAllowExpiredCredentials(m_ui->allowExpiredCredentials->isChecked()); settings->setAlwaysAllowAccess(m_ui->alwaysAllowAccess->isChecked()); settings->setAlwaysAllowUpdate(m_ui->alwaysAllowUpdate->isChecked()); settings->setHttpAuthPermission(m_ui->httpAuthPermission->isChecked()); settings->setSearchInAllDatabases(m_ui->searchInAllDatabases->isChecked()); settings->setSupportKphFields(m_ui->supportKphFields->isChecked()); + settings->setAllowLocalhostWithPasskeys(m_ui->allowLocalhostWithPasskeys->isChecked()); settings->setNoMigrationPrompt(m_ui->noMigrationPrompt->isChecked()); #ifdef QT_DEBUG @@ -255,14 +272,25 @@ void BrowserSettingsWidget::showProxyLocationFileDialog() #else QString fileTypeFilter(QString("%1 (*)").arg(tr("Executable Files"))); #endif - auto proxyLocation = QFileDialog::getOpenFileName(this, - tr("Select custom proxy location"), - QFileInfo(QCoreApplication::applicationDirPath()).filePath(), - fileTypeFilter); - proxyLocation = browserSettings()->replaceHomePath(proxyLocation); - m_ui->customProxyLocation->setText(proxyLocation); - validateCustomProxyLocation(); + auto initialFilePath = resolveCustomProxyLocation(); + if (QFileInfo::exists(initialFilePath)) { + initialFilePath = QFileInfo(initialFilePath).filePath(); + } else { + // ignore current status and set as it would be installed + initialFilePath = QFileInfo(browserSettings()->proxyLocationAsInstalled()).filePath(); + } + + QString proxyLocation = + QFileDialog::getOpenFileName(this, tr("Select custom proxy location"), initialFilePath, fileTypeFilter); + + if (!proxyLocation.isEmpty()) { + proxyLocation = browserSettings()->replaceHomePath(proxyLocation); + m_ui->customProxyLocation->setText(proxyLocation); + validateProxyLocation(); + } else { + // do not overwrite old proxy setting + } } void BrowserSettingsWidget::showCustomBrowserLocationFileDialog() diff --git a/src/browser/BrowserSettingsWidget.h b/src/browser/BrowserSettingsWidget.h index d84051d0e..d6dec8ab1 100644 --- a/src/browser/BrowserSettingsWidget.h +++ b/src/browser/BrowserSettingsWidget.h @@ -32,7 +32,7 @@ class BrowserSettingsWidget : public QWidget public: explicit BrowserSettingsWidget(QWidget* parent = nullptr); - ~BrowserSettingsWidget(); + ~BrowserSettingsWidget() override; public slots: void loadSettings(); @@ -40,10 +40,12 @@ public slots: private slots: void showProxyLocationFileDialog(); - void validateCustomProxyLocation(); + void validateProxyLocation(); void showCustomBrowserLocationFileDialog(); private: + QString resolveCustomProxyLocation(); + QScopedPointer m_ui; }; diff --git a/src/browser/BrowserSettingsWidget.ui b/src/browser/BrowserSettingsWidget.ui index 1f8902be9..99db4ede6 100644 --- a/src/browser/BrowserSettingsWidget.ui +++ b/src/browser/BrowserSettingsWidget.ui @@ -27,7 +27,7 @@ 0 - + @@ -52,7 +52,7 @@ - Browsers installed as snaps are currently not supported. + Browsers installed using Snap or Flatpak are not supported with exception to Firefox installed using Snap. @@ -267,12 +267,15 @@ - - - - 0 - 0 - + + + <b>Warning:</b> Only adjust these settings if necessary. + + + false + + + 2 @@ -307,6 +310,16 @@ + + + + Allows using insecure http://localhost with passkeys for testing purposes. + + + Allow using localhost with passkeys + + + @@ -327,6 +340,16 @@ + + + + Allow keepassxc-proxy to list all entries with their title, URL and UUID in connected databases. + + + Allow limited access to all entries in connected databases (ignores site access restrictions) + + + @@ -474,7 +497,7 @@ - + diff --git a/src/browser/BrowserShared.cpp b/src/browser/BrowserShared.cpp index 96d92e807..6fd2cf7ee 100644 --- a/src/browser/BrowserShared.cpp +++ b/src/browser/BrowserShared.cpp @@ -19,6 +19,7 @@ #include "config-keepassx.h" +#include #include #if defined(KEEPASSXC_DIST_SNAP) #include @@ -31,14 +32,24 @@ namespace BrowserShared const auto serverName = QStringLiteral("/org.keepassxc.KeePassXC.BrowserServer"); #if defined(KEEPASSXC_DIST_SNAP) return QProcessEnvironment::systemEnvironment().value("SNAP_USER_COMMON") + serverName; -#elif defined(KEEPASSXC_DIST_FLATPAK) - return QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation) + "/app/" + "org.keepassxc.KeePassXC" - + serverName; #elif defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) - // Use XDG_RUNTIME_DIR instead of /tmp if it's available + // This returns XDG_RUNTIME_DIR or else a temporary subdirectory. QString path = QStandardPaths::writableLocation(QStandardPaths::RuntimeLocation); - return path.isEmpty() ? QStandardPaths::writableLocation(QStandardPaths::TempLocation) + serverName - : path + serverName; + + // Put the socket in a dedicated directory. + // This directory will be easily mountable by sandbox containers. + QString subPath = path + "/app/org.keepassxc.KeePassXC"; + QDir().mkpath(subPath); + + QString socketPath = subPath + serverName; +#ifndef KEEPASSXC_DIST_FLATPAK + // Create a symlink at the legacy location for backwards compatibility. + const auto origSocketPath = path + serverName; + QFile::remove(origSocketPath); + QFile::link(socketPath, origSocketPath); +#endif + + return socketPath; #elif defined(Q_OS_WIN) // Windows uses named pipes return serverName + "_" + qgetenv("USERNAME"); diff --git a/src/browser/CMakeLists.txt b/src/browser/CMakeLists.txt old mode 100755 new mode 100644 index 98715cb14..7942be430 --- a/src/browser/CMakeLists.txt +++ b/src/browser/CMakeLists.txt @@ -1,5 +1,4 @@ -# Copyright (C) 2017 Sami Vänttinen -# Copyright (C) 2022 KeePassXC Team +# Copyright (C) 2024 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 @@ -17,7 +16,7 @@ if(WITH_XC_BROWSER) include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) - set(keepassxcbrowser_SOURCES + set(browser_SOURCES BrowserAccessControlDialog.cpp BrowserAction.cpp BrowserEntryConfig.cpp @@ -29,9 +28,18 @@ if(WITH_XC_BROWSER) BrowserService.cpp BrowserSettings.cpp BrowserShared.cpp - NativeMessageInstaller.cpp - ) + CustomTableWidget.cpp + NativeMessageInstaller.cpp) - add_library(keepassxcbrowser STATIC ${keepassxcbrowser_SOURCES}) - target_link_libraries(keepassxcbrowser Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Network ${BOTAN2_LIBRARIES}) + if(WITH_XC_BROWSER_PASSKEYS) + list(APPEND browser_SOURCES + BrowserCbor.cpp + BrowserPasskeys.cpp + BrowserPasskeysClient.cpp + BrowserPasskeysConfirmationDialog.cpp + PasskeyUtils.cpp) + endif() + + add_library(browser STATIC ${browser_SOURCES}) + target_link_libraries(browser Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Network ${BOTAN_LIBRARIES}) endif() diff --git a/src/browser/CustomTableWidget.cpp b/src/browser/CustomTableWidget.cpp new file mode 100644 index 000000000..29009f4d5 --- /dev/null +++ b/src/browser/CustomTableWidget.cpp @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2023 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "CustomTableWidget.h" + +CustomTableWidget::CustomTableWidget(QWidget* parent) + : QTableWidget(parent) +{ +} + +void CustomTableWidget::keyPressEvent(QKeyEvent* event) +{ + if ((event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) && !selectedItems().isEmpty()) { + emit acceptSelections(); + } else { + QTableView::keyPressEvent(event); + } +} + +void CustomTableWidget::focusInEvent(QFocusEvent* event) +{ + // For some reason accept button gets selected if table is clicked without any + // selections, even if the button is actually disabled. Connecting to this + // signal and adjusting the button focuses fixes the issue. + if (event->reason() == Qt::MouseFocusReason && selectedItems().isEmpty()) { + emit focusInWithoutSelections(); + } +} diff --git a/src/browser/CustomTableWidget.h b/src/browser/CustomTableWidget.h new file mode 100644 index 000000000..655475e9d --- /dev/null +++ b/src/browser/CustomTableWidget.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2023 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef CUSTOMTABLEWIDGET_H +#define CUSTOMTABLEWIDGET_H + +#include +#include +#include + +class CustomTableWidget : public QTableWidget +{ + Q_OBJECT + +public: + CustomTableWidget(QWidget* parent); + +signals: + void acceptSelections(); + void focusInWithoutSelections(); + +protected: + void keyPressEvent(QKeyEvent* event) override; + void focusInEvent(QFocusEvent* event) override; +}; + +#endif // CUSTOMTABLEWIDGET_H diff --git a/src/browser/NativeMessageInstaller.cpp b/src/browser/NativeMessageInstaller.cpp index f4876f4e8..7e637a64c 100644 --- a/src/browser/NativeMessageInstaller.cpp +++ b/src/browser/NativeMessageInstaller.cpp @@ -19,6 +19,7 @@ #include "NativeMessageInstaller.h" #include "BrowserSettings.h" #include "config-keepassx.h" +#include "core/Config.h" #include #include @@ -209,8 +210,8 @@ QString NativeMessageInstaller::getNativeMessagePath(SupportedBrowsers browser) QString basePath; #if defined(Q_OS_WIN) // If portable settings file exists save the JSON scripts to the application folder - if (QFile::exists(QCoreApplication::applicationDirPath() + QStringLiteral("/keepassxc.ini"))) { - basePath = QCoreApplication::applicationDirPath(); + if (Config::isPortable()) { + basePath = Config::portableConfigDir(); } else { basePath = QStandardPaths::writableLocation(QStandardPaths::DataLocation); } @@ -225,7 +226,17 @@ QString NativeMessageInstaller::getNativeMessagePath(SupportedBrowsers browser) } else { basePath = QDir::homePath() + "/.config"; } -#elif defined(Q_OS_LINUX) +#elif defined(KEEPASSXC_DIST_SNAP) + // Same as Flatpak above, with the exception that Snap also redefines $HOME + // Therefore we must explicitly reference $SNAP_REAL_HOME + if (browser == SupportedBrowsers::TOR_BROWSER) { + basePath = qEnvironmentVariable("SNAP_REAL_HOME") + "/.local/share"; + } else if (browser == SupportedBrowsers::FIREFOX) { + basePath = qEnvironmentVariable("SNAP_REAL_HOME"); + } else { + basePath = qEnvironmentVariable("SNAP_REAL_HOME") + "/.config"; + } +#elif defined(Q_OS_LINUX) || (defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)) if (browser == SupportedBrowsers::TOR_BROWSER) { basePath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); } else if (browser == SupportedBrowsers::FIREFOX) { @@ -272,22 +283,31 @@ QString constructFlatpakPath() #endif /** - * Gets the path to keepassxc-proxy binary - * - * @param location Custom proxy path - * @return path Path to keepassxc-proxy + * Returns the effective proxy path used to build the native messaging JSON script */ QString NativeMessageInstaller::getProxyPath() const { + QString result; if (browserSettings()->useCustomProxy()) { - return browserSettings()->customProxyLocation(); + result = browserSettings()->customProxyLocation(); + } else { + result = getInstalledProxyPath(); } + return result; +} +/** + * Returns the original proxy path at the time of installation + */ +QString NativeMessageInstaller::getInstalledProxyPath() const +{ QString path; #if defined(KEEPASSXC_DIST_APPIMAGE) path = QProcessEnvironment::systemEnvironment().value("APPIMAGE"); #elif defined(KEEPASSXC_DIST_FLATPAK) path = constructFlatpakPath(); +#elif defined(KEEPASSXC_DIST_SNAP) + path = "/snap/bin/keepassxc.proxy"; #else path = QCoreApplication::applicationDirPath() + QStringLiteral("/keepassxc-proxy"); #ifdef Q_OS_WIN diff --git a/src/browser/NativeMessageInstaller.h b/src/browser/NativeMessageInstaller.h index 256dd0c81..f54d68885 100644 --- a/src/browser/NativeMessageInstaller.h +++ b/src/browser/NativeMessageInstaller.h @@ -33,6 +33,7 @@ public: bool isBrowserEnabled(BrowserShared::SupportedBrowsers browser); QString getProxyPath() const; + QString getInstalledProxyPath() const; void updateBinaryPaths(); private: diff --git a/src/browser/PasskeyUtils.cpp b/src/browser/PasskeyUtils.cpp new file mode 100644 index 000000000..41fc94221 --- /dev/null +++ b/src/browser/PasskeyUtils.cpp @@ -0,0 +1,408 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "PasskeyUtils.h" +#include "BrowserMessageBuilder.h" +#include "BrowserPasskeys.h" +#include "core/EntryAttributes.h" +#include "core/Tools.h" +#include "gui/UrlTools.h" + +#include +#include + +Q_GLOBAL_STATIC(PasskeyUtils, s_passkeyUtils); + +PasskeyUtils* PasskeyUtils::instance() +{ + return s_passkeyUtils; +} + +int PasskeyUtils::checkLimits(const QJsonObject& pkOptions) const +{ + const auto challenge = pkOptions["challenge"].toString(); + if (challenge.isEmpty() || challenge.length() < 16) { + return ERROR_PASSKEYS_INVALID_CHALLENGE; + } + + const auto userIdBase64 = pkOptions["user"]["id"].toString(); + const auto userId = browserMessageBuilder()->getArrayFromBase64(userIdBase64); + if (userId.isEmpty() || (userId.length() < 1 || userId.length() > 64)) { + return ERROR_PASSKEYS_INVALID_USER_ID; + } + + return PASSKEYS_SUCCESS; +} + +// Basic check for the object that it contains necessary variables in a correct form +bool PasskeyUtils::checkCredentialCreationOptions(const QJsonObject& credentialCreationOptions) const +{ + if (!credentialCreationOptions["attestation"].isString() + || credentialCreationOptions["attestation"].toString().isEmpty() + || !credentialCreationOptions["clientDataJSON"].isObject() + || credentialCreationOptions["clientDataJSON"].toObject().isEmpty() + || !credentialCreationOptions["rp"].isObject() || credentialCreationOptions["rp"].toObject().isEmpty() + || !credentialCreationOptions["user"].isObject() || credentialCreationOptions["user"].toObject().isEmpty() + || !credentialCreationOptions["residentKey"].isBool() || credentialCreationOptions["residentKey"].isUndefined() + || !credentialCreationOptions["userPresence"].isBool() + || credentialCreationOptions["userPresence"].isUndefined() + || !credentialCreationOptions["userVerification"].isBool() + || credentialCreationOptions["userVerification"].isUndefined() + || !credentialCreationOptions["credTypesAndPubKeyAlgs"].isArray() + || credentialCreationOptions["credTypesAndPubKeyAlgs"].toArray().isEmpty() + || !credentialCreationOptions["excludeCredentials"].isArray() + || credentialCreationOptions["excludeCredentials"].isUndefined()) { + return false; + } + + return true; +} + +// Basic check for the object that it contains necessary variables in a correct form +bool PasskeyUtils::checkCredentialAssertionOptions(const QJsonObject& assertionOptions) const +{ + if (!assertionOptions["clientDataJson"].isObject() || assertionOptions["clientDataJson"].toObject().isEmpty() + || !assertionOptions["rpId"].isString() || assertionOptions["rpId"].toString().isEmpty() + || !assertionOptions["userPresence"].isBool() || assertionOptions["userPresence"].isUndefined() + || !assertionOptions["userVerification"].isBool() || assertionOptions["userVerification"].isUndefined()) { + return false; + } + + return true; +} + +int PasskeyUtils::getEffectiveDomain(const QString& origin, QString* result) const +{ + if (!result) { + return ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED; + } + + if (origin.isEmpty()) { + return ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED; + } + + const auto effectiveDomain = QUrl::fromUserInput(origin).host(); + if (!isDomain(effectiveDomain)) { + return ERROR_PASSKEYS_DOMAIN_IS_NOT_VALID; + } + + *result = effectiveDomain; + return PASSKEYS_SUCCESS; +} + +int PasskeyUtils::validateRpId(const QJsonValue& rpIdValue, const QString& effectiveDomain, QString* result) const +{ + if (!result) { + return ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH; + } + + if (effectiveDomain.isEmpty()) { + return ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED; + } + + // The RP ID defaults to being the caller's origin's effective domain unless the caller has explicitly set + // options.rp.id + if (rpIdValue.isUndefined() || rpIdValue.isNull()) { + *result = effectiveDomain; + return PASSKEYS_SUCCESS; + } + + const auto rpId = rpIdValue.toString(); + if (!isRegistrableDomainSuffix(rpId, effectiveDomain)) { + return ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH; + } + + if (rpId == effectiveDomain) { + *result = effectiveDomain; + return PASSKEYS_SUCCESS; + } + + *result = rpId; + return PASSKEYS_SUCCESS; +} + +// https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#dom-publickeycredentialcreationoptions-attestation +QString PasskeyUtils::parseAttestation(const QString& attestation) const +{ + return attestation == BrowserPasskeys::PASSKEYS_ATTESTATION_DIRECT ? BrowserPasskeys::PASSKEYS_ATTESTATION_DIRECT + : BrowserPasskeys::PASSKEYS_ATTESTATION_NONE; +} + +QJsonArray PasskeyUtils::parseCredentialTypes(const QJsonArray& credentialTypes) const +{ + QJsonArray credTypesAndPubKeyAlgs; + + if (credentialTypes.isEmpty()) { + // Set default values + credTypesAndPubKeyAlgs.push_back(QJsonObject({ + {"type", BrowserPasskeys::PUBLIC_KEY}, + {"alg", WebAuthnAlgorithms::ES256}, + })); + credTypesAndPubKeyAlgs.push_back(QJsonObject({ + {"type", BrowserPasskeys::PUBLIC_KEY}, + {"alg", WebAuthnAlgorithms::RS256}, + })); + } else { + for (const auto current : credentialTypes) { + if (current["type"] != BrowserPasskeys::PUBLIC_KEY || current["alg"].isUndefined()) { + continue; + } + + const auto currentAlg = current["alg"].toInt(); + if (currentAlg != WebAuthnAlgorithms::ES256 && currentAlg != WebAuthnAlgorithms::RS256 + && currentAlg != WebAuthnAlgorithms::EDDSA) { + continue; + } + + credTypesAndPubKeyAlgs.push_back(QJsonObject({ + {"type", current["type"]}, + {"alg", currentAlg}, + })); + } + } + + return credTypesAndPubKeyAlgs; +} + +bool PasskeyUtils::isAuthenticatorSelectionValid(const QJsonObject& authenticatorSelection) const +{ + const auto authenticatorAttachment = authenticatorSelection["authenticatorAttachment"].toString(); + if (!authenticatorAttachment.isEmpty() && authenticatorAttachment != BrowserPasskeys::ATTACHMENT_PLATFORM + && authenticatorAttachment != BrowserPasskeys::ATTACHMENT_CROSS_PLATFORM) { + return false; + } + + const auto requireResidentKey = authenticatorSelection["requireResidentKey"].toBool(); + if (requireResidentKey && !BrowserPasskeys::SUPPORT_RESIDENT_KEYS) { + return false; + } + + const auto residentKey = authenticatorSelection["residentKey"].toString(); + if (residentKey == "required" && !BrowserPasskeys::SUPPORT_RESIDENT_KEYS) { + return false; + } + + if (residentKey.isEmpty() && requireResidentKey && !BrowserPasskeys::SUPPORT_RESIDENT_KEYS) { + return false; + } + + const auto userVerification = authenticatorSelection["userVerification"].toBool(); + if (userVerification && !BrowserPasskeys::SUPPORT_USER_VERIFICATION) { + return false; + } + + return true; +} + +bool PasskeyUtils::isRegistrableDomainSuffix(const QString& hostSuffixString, const QString& originalHost) const +{ + if (hostSuffixString.isEmpty()) { + return false; + } + + if (!isDomain(originalHost)) { + return false; + } + + const auto hostSuffix = QUrl::fromUserInput(hostSuffixString).host(); + if (hostSuffix == originalHost) { + return true; + } + + if (!isDomain(hostSuffix)) { + return false; + } + + const auto prefixedHostSuffix = QString(".%1").arg(hostSuffix); + if (!originalHost.endsWith(prefixedHostSuffix)) { + return false; + } + + if (hostSuffix == urlTools()->getTopLevelDomainFromUrl(hostSuffix)) { + return false; + } + + const auto originalPublicSuffix = urlTools()->getTopLevelDomainFromUrl(originalHost); + if (originalPublicSuffix.isEmpty()) { + return false; + } + + if (originalPublicSuffix.endsWith(prefixedHostSuffix)) { + return false; + } + + if (!hostSuffix.endsWith(QString(".%1").arg(originalPublicSuffix))) { + return false; + } + + return true; +} + +bool PasskeyUtils::isDomain(const QString& hostName) const +{ + const auto domain = QUrl::fromUserInput(hostName).host(); + return !domain.isEmpty() && !domain.endsWith('.') && Tools::isAsciiString(domain) + && !urlTools()->domainHasIllegalCharacters(domain) && !urlTools()->isIpAddress(hostName); +} + +bool PasskeyUtils::isUserVerificationValid(const QString& userVerification) const +{ + return QStringList({BrowserPasskeys::REQUIREMENT_PREFERRED, + BrowserPasskeys::REQUIREMENT_REQUIRED, + BrowserPasskeys::REQUIREMENT_DISCOURAGED}) + .contains(userVerification); +} + +bool PasskeyUtils::isOriginAllowedWithLocalhost(bool allowLocalhostWithPasskeys, const QString& origin) const +{ + if (origin.startsWith("https://") || (allowLocalhostWithPasskeys && origin.startsWith("file://"))) { + return true; + } + + if (!allowLocalhostWithPasskeys) { + return false; + } + + const auto host = QUrl::fromUserInput(origin).host(); + return host == "localhost" || host == "localhost." || host.endsWith(".localhost") || host.endsWith(".localhost."); +} + +bool PasskeyUtils::isResidentKeyRequired(const QJsonObject& authenticatorSelection) const +{ + if (authenticatorSelection.isEmpty()) { + return false; + } + + const auto residentKey = authenticatorSelection["residentKey"].toString(); + if (residentKey == BrowserPasskeys::REQUIREMENT_REQUIRED + || (BrowserPasskeys::SUPPORT_RESIDENT_KEYS && residentKey == BrowserPasskeys::REQUIREMENT_PREFERRED)) { + return true; + } else if (residentKey == BrowserPasskeys::REQUIREMENT_DISCOURAGED) { + return false; + } + + return authenticatorSelection["requireResidentKey"].toBool(); +} + +bool PasskeyUtils::isUserVerificationRequired(const QJsonObject& authenticatorSelection) const +{ + const auto userVerification = authenticatorSelection["userVerification"].toString(); + return userVerification == BrowserPasskeys::REQUIREMENT_REQUIRED + || (userVerification == BrowserPasskeys::REQUIREMENT_PREFERRED + && BrowserPasskeys::SUPPORT_USER_VERIFICATION); +} + +ExtensionResult PasskeyUtils::buildExtensionData(QJsonObject& extensionObject) const +{ + const QStringList allowedKeys = {"credProps", "uvm"}; + + // Remove unsupported keys + for (const auto& key : extensionObject.keys()) { + if (!allowedKeys.contains(key)) { + extensionObject.remove(key); + } + } + + // Create response object + QJsonObject extensionJSON; + + // https://w3c.github.io/webauthn/#sctn-authenticator-credential-properties-extension + if (extensionObject.contains("credProps") && extensionObject["credProps"].toBool()) { + extensionJSON["credProps"] = QJsonObject({{"rk", true}}); + } + + // https://w3c.github.io/webauthn/#sctn-uvm-extension + if (extensionObject.contains("uvm") && extensionObject["uvm"].toBool()) { + QJsonArray uvmResponse; + QJsonArray uvmArray = { + 1, // userVerificationMethod (USER_VERIFY_PRESENCE_INTERNAL "presence_internal", 0x00000001) + 1, // keyProtectionType (KEY_PROTECTION_SOFTWARE "software", 0x0001) + 1, // matcherProtectionType (MATCHER_PROTECTION_SOFTWARE "software", 0x0001) + }; + uvmResponse.append(uvmArray); + extensionJSON["uvm"] = uvmResponse; + } + + if (extensionJSON.isEmpty()) { + return {}; + } + + auto extensionData = m_browserCbor.cborEncodeExtensionData(extensionObject); + if (!extensionData.isEmpty()) { + ExtensionResult result; + result.extensionData = extensionData; + result.extensionObject = extensionJSON; + return result; + } + + return {}; +} + +QJsonObject PasskeyUtils::buildClientDataJson(const QJsonObject& publicKey, const QString& origin, bool get) const +{ + QJsonObject clientData; + clientData["challenge"] = publicKey["challenge"]; + clientData["crossOrigin"] = false; + clientData["origin"] = origin; + clientData["type"] = get ? QString("webauthn.get") : QString("webauthn.create"); + + return clientData; +} + +QStringList PasskeyUtils::getAllowedCredentialsFromAssertionOptions(const QJsonObject& assertionOptions) const +{ + QStringList allowedCredentials; + for (const auto& credential : assertionOptions["allowCredentials"].toArray()) { + const auto cred = credential.toObject(); + const auto id = cred["id"].toString(); + const auto transports = cred["transports"].toArray(); + const auto hasSupportedTransport = transports.isEmpty() + || (transports.contains(BrowserPasskeys::AUTHENTICATOR_TRANSPORT_INTERNAL) + || transports.contains(BrowserPasskeys::AUTHENTICATOR_TRANSPORT_NFC) + || transports.contains(BrowserPasskeys::AUTHENTICATOR_TRANSPORT_USB)); + + if (cred["type"].toString() == BrowserPasskeys::PUBLIC_KEY && hasSupportedTransport && !id.isEmpty()) { + allowedCredentials << id; + } + } + + return allowedCredentials; +} + +// For compatibility with StrongBox (and other possible clients in the future) +QString PasskeyUtils::getCredentialIdFromEntry(const Entry* entry) const +{ + if (!entry) { + return {}; + } + + return entry->attributes()->hasKey(EntryAttributes::KPEX_PASSKEY_GENERATED_USER_ID) + ? entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_GENERATED_USER_ID) + : entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_CREDENTIAL_ID); +} + +// For compatibility with StrongBox (and other possible clients in the future) +QString PasskeyUtils::getUsernameFromEntry(const Entry* entry) const +{ + if (!entry) { + return {}; + } + + return entry->attributes()->hasKey(EntryAttributes::KPXC_PASSKEY_USERNAME) + ? entry->attributes()->value(EntryAttributes::KPXC_PASSKEY_USERNAME) + : entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_USERNAME); +} diff --git a/src/browser/PasskeyUtils.h b/src/browser/PasskeyUtils.h new file mode 100644 index 000000000..ec8e47668 --- /dev/null +++ b/src/browser/PasskeyUtils.h @@ -0,0 +1,83 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef PASSKEYUTILS_H +#define PASSKEYUTILS_H + +#include +#include +#include +#include + +#include "BrowserCbor.h" +#include "core/Entry.h" + +#define DEFAULT_TIMEOUT 300000 +#define DEFAULT_DISCOURAGED_TIMEOUT 120000 +#define PASSKEYS_SUCCESS 0 + +struct ExtensionResult +{ + QByteArray extensionData; + QJsonObject extensionObject; +}; + +class PasskeyUtils : public QObject +{ + Q_OBJECT + +public: + explicit PasskeyUtils() = default; + ~PasskeyUtils() = default; + static PasskeyUtils* instance(); + + int checkLimits(const QJsonObject& pkOptions) const; + bool checkCredentialCreationOptions(const QJsonObject& credentialCreationOptions) const; + bool checkCredentialAssertionOptions(const QJsonObject& assertionOptions) const; + int getEffectiveDomain(const QString& origin, QString* result) const; + int validateRpId(const QJsonValue& rpIdValue, const QString& effectiveDomain, QString* result) const; + QString parseAttestation(const QString& attestation) const; + QJsonArray parseCredentialTypes(const QJsonArray& credentialTypes) const; + bool isAuthenticatorSelectionValid(const QJsonObject& authenticatorSelection) const; + bool isUserVerificationValid(const QString& userVerification) const; + bool isResidentKeyRequired(const QJsonObject& authenticatorSelection) const; + bool isUserVerificationRequired(const QJsonObject& authenticatorSelection) const; + bool isOriginAllowedWithLocalhost(bool allowLocalhostWithPasskeys, const QString& origin) const; + ExtensionResult buildExtensionData(QJsonObject& extensionObject) const; + QJsonObject buildClientDataJson(const QJsonObject& publicKey, const QString& origin, bool get) const; + QStringList getAllowedCredentialsFromAssertionOptions(const QJsonObject& assertionOptions) const; + QString getCredentialIdFromEntry(const Entry* entry) const; + QString getUsernameFromEntry(const Entry* entry) const; + +private: + Q_DISABLE_COPY(PasskeyUtils); + + bool isRegistrableDomainSuffix(const QString& hostSuffixString, const QString& originalHost) const; + bool isDomain(const QString& hostName) const; + + friend class TestPasskeys; + +private: + BrowserCbor m_browserCbor; +}; + +static inline PasskeyUtils* passkeyUtils() +{ + return PasskeyUtils::instance(); +} + +#endif // PASSKEYUTILS_H diff --git a/src/cli/Add.cpp b/src/cli/Add.cpp index 3bd9241d1..43710b7a4 100644 --- a/src/cli/Add.cpp +++ b/src/cli/Add.cpp @@ -19,13 +19,13 @@ #include "Generate.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include "core/PasswordGenerator.h" #include -const QCommandLineOption Add::UsernameOption = QCommandLineOption(QStringList() << "u" - << "username", +const QCommandLineOption Add::UsernameOption = QCommandLineOption(QStringList() << "u" << "username", QObject::tr("Username for the entry."), QObject::tr("username")); @@ -36,13 +36,10 @@ const QCommandLineOption Add::NotesOption = QCommandLineOption(QStringList() << "notes", QObject::tr("Notes for the entry."), QObject::tr("Notes")); const QCommandLineOption Add::PasswordPromptOption = - QCommandLineOption(QStringList() << "p" - << "password-prompt", - QObject::tr("Prompt for the entry's password.")); + QCommandLineOption(QStringList() << "p" << "password-prompt", QObject::tr("Prompt for the entry's password.")); -const QCommandLineOption Add::GenerateOption = QCommandLineOption(QStringList() << "g" - << "generate", - QObject::tr("Generate a password for the entry.")); +const QCommandLineOption Add::GenerateOption = + QCommandLineOption(QStringList() << "g" << "generate", QObject::tr("Generate a password for the entry.")); Add::Add() { @@ -78,7 +75,7 @@ int Add::executeWithDatabase(QSharedPointer database, QSharedPointerisSet(Add::GenerateOption) && parser->isSet(Add::PasswordPromptOption)) { - err << QObject::tr("Cannot generate a password and prompt at the same time.") << endl; + err << QObject::tr("Cannot generate a password and prompt at the same time.") << Qt::endl; return EXIT_FAILURE; } @@ -94,7 +91,7 @@ int Add::executeWithDatabase(QSharedPointer database, QSharedPointerrootGroup()->addEntryWithPath(entryPath); if (!entry) { - err << QObject::tr("Could not create entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not create entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -112,7 +109,7 @@ int Add::executeWithDatabase(QSharedPointer database, QSharedPointerisSet(Add::PasswordPromptOption)) { if (!parser->isSet(Command::QuietOption)) { - out << QObject::tr("Enter password for new entry: ") << flush; + out << QObject::tr("Enter password for new entry: ") << Qt::flush; } QString password = Utils::getPassword(parser->isSet(Command::QuietOption)); entry->setPassword(password); @@ -123,12 +120,12 @@ int Add::executeWithDatabase(QSharedPointer database, QSharedPointersave(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } if (!parser->isSet(Command::QuietOption)) { - out << QObject::tr("Successfully added entry %1.").arg(entry->title()) << endl; + out << QObject::tr("Successfully added entry %1.").arg(entry->title()) << Qt::endl; } return EXIT_SUCCESS; } diff --git a/src/cli/AddGroup.cpp b/src/cli/AddGroup.cpp index 43431e8dc..2e4bbeac1 100644 --- a/src/cli/AddGroup.cpp +++ b/src/cli/AddGroup.cpp @@ -18,6 +18,7 @@ #include "AddGroup.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include @@ -29,9 +30,7 @@ AddGroup::AddGroup() positionalArguments.append({QString("group"), QObject::tr("Path of the group to add."), QString("")}); } -AddGroup::~AddGroup() -{ -} +AddGroup::~AddGroup() = default; int AddGroup::executeWithDatabase(QSharedPointer database, QSharedPointer parser) { @@ -47,29 +46,29 @@ int AddGroup::executeWithDatabase(QSharedPointer database, QSharedPoin Group* group = database->rootGroup()->findGroupByPath(groupPath); if (group) { - err << QObject::tr("Group %1 already exists!").arg(groupPath) << endl; + err << QObject::tr("Group %1 already exists!").arg(groupPath) << Qt::endl; return EXIT_FAILURE; } Group* parentGroup = database->rootGroup()->findGroupByPath(parentGroupPath); if (!parentGroup) { - err << QObject::tr("Group %1 not found.").arg(parentGroupPath) << endl; + err << QObject::tr("Group %1 not found.").arg(parentGroupPath) << Qt::endl; return EXIT_FAILURE; } - Group* newGroup = new Group(); + auto newGroup = new Group(); newGroup->setUuid(QUuid::createUuid()); newGroup->setName(groupName); newGroup->setParent(parentGroup); QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } if (!parser->isSet(Command::QuietOption)) { - out << QObject::tr("Successfully added group %1.").arg(groupName) << endl; + out << QObject::tr("Successfully added group %1.").arg(groupName) << Qt::endl; } return EXIT_SUCCESS; } diff --git a/src/cli/AddGroup.h b/src/cli/AddGroup.h index 9976d5894..7992f16bf 100644 --- a/src/cli/AddGroup.h +++ b/src/cli/AddGroup.h @@ -24,9 +24,9 @@ class AddGroup : public DatabaseCommand { public: AddGroup(); - ~AddGroup(); + ~AddGroup() override; - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; }; #endif // KEEPASSXC_ADDGROUP_H diff --git a/src/cli/Analyze.cpp b/src/cli/Analyze.cpp index 185339dc5..44704014a 100644 --- a/src/cli/Analyze.cpp +++ b/src/cli/Analyze.cpp @@ -18,6 +18,7 @@ #include "Analyze.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include "core/HibpOffline.h" @@ -60,23 +61,24 @@ int Analyze::executeWithDatabase(QSharedPointer database, QSharedPoint auto okon = parser->value(Analyze::OkonOption); if (!okon.isEmpty()) { - out << QObject::tr("Evaluating database entries using okon…") << endl; + out << QObject::tr("Evaluating database entries using okon…") << Qt::endl; if (!HibpOffline::okonReport(database, okon, hibpDatabase, findings, &error)) { - err << error << endl; + err << error << Qt::endl; return EXIT_FAILURE; } } else { QFile hibpFile(hibpDatabase); if (!hibpFile.open(QFile::ReadOnly)) { - err << QObject::tr("Failed to open HIBP file %1: %2").arg(hibpDatabase).arg(hibpFile.errorString()) << endl; + err << QObject::tr("Failed to open HIBP file %1: %2").arg(hibpDatabase).arg(hibpFile.errorString()) + << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Evaluating database entries against HIBP file, this will take a while…") << endl; + out << QObject::tr("Evaluating database entries against HIBP file, this will take a while…") << Qt::endl; if (!HibpOffline::report(database, hibpFile, findings, &error)) { - err << error << endl; + err << error << Qt::endl; return EXIT_FAILURE; } } @@ -91,9 +93,10 @@ int Analyze::executeWithDatabase(QSharedPointer database, QSharedPoint } if (count > 0) { - out << QObject::tr("Password for '%1' has been leaked %2 time(s)!", "", count).arg(path).arg(count) << endl; + out << QObject::tr("Password for '%1' has been leaked %2 time(s)!", "", count).arg(path).arg(count) + << Qt::endl; } else { - out << QObject::tr("Password for '%1' has been leaked!").arg(path) << endl; + out << QObject::tr("Password for '%1' has been leaked!").arg(path) << Qt::endl; } } diff --git a/src/cli/AttachmentExport.cpp b/src/cli/AttachmentExport.cpp index 46dc5f4b6..b4c88d902 100644 --- a/src/cli/AttachmentExport.cpp +++ b/src/cli/AttachmentExport.cpp @@ -18,6 +18,7 @@ #include "AttachmentExport.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include @@ -49,7 +50,7 @@ int AttachmentExport::executeWithDatabase(QSharedPointer database, QSh auto entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -57,32 +58,32 @@ int AttachmentExport::executeWithDatabase(QSharedPointer database, QSh auto attachments = entry->attachments(); if (!attachments->hasKey(attachmentName)) { - err << QObject::tr("Could not find attachment with name %1.").arg(attachmentName) << endl; + err << QObject::tr("Could not find attachment with name %1.").arg(attachmentName) << Qt::endl; return EXIT_FAILURE; } if (parser->isSet(AttachmentExport::StdoutOption)) { // Output to STDOUT even in quiet mode - Utils::STDOUT << attachments->value(attachmentName) << flush; + Utils::STDOUT << attachments->value(attachmentName) << Qt::flush; return EXIT_SUCCESS; } if (args.size() < 4) { - err << QObject::tr("No export target given. Please use '--stdout' or specify an 'export-file'.") << endl; + err << QObject::tr("No export target given. Please use '--stdout' or specify an 'export-file'.") << Qt::endl; return EXIT_FAILURE; } auto exportFileName = args.at(3); QFile exportFile(exportFileName); if (!exportFile.open(QIODevice::WriteOnly)) { - err << QObject::tr("Could not open output file %1.").arg(exportFileName) << endl; + err << QObject::tr("Could not open output file %1.").arg(exportFileName) << Qt::endl; return EXIT_FAILURE; } exportFile.write(attachments->value(attachmentName)); out << QObject::tr("Successfully exported attachment %1 of entry %2 to %3.") .arg(attachmentName, entryPath, exportFileName) - << endl; + << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/AttachmentImport.cpp b/src/cli/AttachmentImport.cpp index 0700961d7..6fe6ce529 100644 --- a/src/cli/AttachmentImport.cpp +++ b/src/cli/AttachmentImport.cpp @@ -18,15 +18,14 @@ #include "AttachmentImport.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include #include const QCommandLineOption AttachmentImport::ForceOption = - QCommandLineOption(QStringList() << "f" - << "force", - QObject::tr("Overwrite existing attachments.")); + QCommandLineOption(QStringList() << "f" << "force", QObject::tr("Overwrite existing attachments.")); AttachmentImport::AttachmentImport() { @@ -50,7 +49,7 @@ int AttachmentImport::executeWithDatabase(QSharedPointer database, QSh auto entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -58,7 +57,7 @@ int AttachmentImport::executeWithDatabase(QSharedPointer database, QSh auto attachments = entry->attachments(); if (attachments->hasKey(attachmentName) && !parser->isSet(AttachmentImport::ForceOption)) { - err << QObject::tr("Attachment %1 already exists for entry %2.").arg(attachmentName, entryPath) << endl; + err << QObject::tr("Attachment %1 already exists for entry %2.").arg(attachmentName, entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -66,7 +65,7 @@ int AttachmentImport::executeWithDatabase(QSharedPointer database, QSh QFile importFile(importFileName); if (!importFile.open(QIODevice::ReadOnly)) { - err << QObject::tr("Could not open attachment file %1.").arg(importFileName) << endl; + err << QObject::tr("Could not open attachment file %1.").arg(importFileName) << Qt::endl; return EXIT_FAILURE; } @@ -76,12 +75,12 @@ int AttachmentImport::executeWithDatabase(QSharedPointer database, QSh QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } out << QObject::tr("Successfully imported attachment %1 as %2 to entry %3.") .arg(importFileName, attachmentName, entryPath) - << endl; + << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/AttachmentRemove.cpp b/src/cli/AttachmentRemove.cpp index a609a8f22..c8ce4d46c 100644 --- a/src/cli/AttachmentRemove.cpp +++ b/src/cli/AttachmentRemove.cpp @@ -18,6 +18,7 @@ #include "AttachmentRemove.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include @@ -41,7 +42,7 @@ int AttachmentRemove::executeWithDatabase(QSharedPointer database, QSh auto entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -49,7 +50,7 @@ int AttachmentRemove::executeWithDatabase(QSharedPointer database, QSh auto attachments = entry->attachments(); if (!attachments->hasKey(attachmentName)) { - err << QObject::tr("Could not find attachment with name %1.").arg(attachmentName) << endl; + err << QObject::tr("Could not find attachment with name %1.").arg(attachmentName) << Qt::endl; return EXIT_FAILURE; } @@ -59,10 +60,10 @@ int AttachmentRemove::executeWithDatabase(QSharedPointer database, QSh QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully removed attachment %1 from entry %2.").arg(attachmentName, entryPath) << endl; + out << QObject::tr("Successfully removed attachment %1 from entry %2.").arg(attachmentName, entryPath) << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/CMakeLists.txt b/src/cli/CMakeLists.txt index 984427084..ecd5da284 100644 --- a/src/cli/CMakeLists.txt +++ b/src/cli/CMakeLists.txt @@ -22,9 +22,11 @@ set(cli_SOURCES AttachmentRemove.cpp Clip.cpp Close.cpp - Create.cpp Command.cpp DatabaseCommand.cpp + DatabaseCreate.cpp + DatabaseEdit.cpp + DatabaseInfo.cpp Diceware.cpp Edit.cpp Estimate.cpp @@ -33,7 +35,6 @@ set(cli_SOURCES Generate.cpp Help.cpp Import.cpp - Info.cpp List.cpp Merge.cpp Move.cpp @@ -44,7 +45,7 @@ set(cli_SOURCES Show.cpp) add_library(cli STATIC ${cli_SOURCES}) -target_link_libraries(cli Qt5::Core) +target_link_libraries(cli ${ZXCVBN_LIBRARIES} Qt5::Core) find_package(Readline) @@ -57,13 +58,16 @@ add_executable(keepassxc-cli keepassxc-cli.cpp) target_link_libraries(keepassxc-cli ${GPGERROR_LIBRARIES} cli - keepassx_core) + keepassxc_core) install(TARGETS keepassxc-cli BUNDLE DESTINATION . COMPONENT Runtime RUNTIME DESTINATION ${CLI_INSTALL_DIR} COMPONENT Runtime) if(WIN32) + target_sources(keepassxc-cli + PRIVATE keepassxc-cli.exe.manifest) + # install(CODE "include(BundleUtilities) # fixup_bundle(\"\${CMAKE_INSTALL_PREFIX}/keepassxc-cli.exe\" \"\" \"\")" # COMPONENT Runtime) diff --git a/src/cli/Clip.cpp b/src/cli/Clip.cpp index 7c4a9bb1f..364072fdd 100644 --- a/src/cli/Clip.cpp +++ b/src/cli/Clip.cpp @@ -27,21 +27,18 @@ #define CLI_DEFAULT_CLIP_TIMEOUT 10 const QCommandLineOption Clip::AttributeOption = QCommandLineOption( - QStringList() << "a" - << "attribute", + QStringList() << "a" << "attribute", QObject::tr("Copy the given attribute to the clipboard. Defaults to \"password\" if not specified.", "Don't translate \"password\", it refers to the attribute."), "attr", "password"); const QCommandLineOption Clip::TotpOption = - QCommandLineOption(QStringList() << "t" - << "totp", + QCommandLineOption(QStringList() << "t" << "totp", QObject::tr("Copy the current TOTP to the clipboard (equivalent to \"-a totp\").")); const QCommandLineOption Clip::BestMatchOption = - QCommandLineOption(QStringList() << "b" - << "best-match", + QCommandLineOption(QStringList() << "b" << "best-match", QObject::tr("Must match only one entry, otherwise a list of possible matches is shown.")); Clip::Clip() @@ -72,7 +69,7 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< bool ok; timeout = args.at(2).toInt(&ok); if (!ok) { - err << QObject::tr("Invalid timeout value %1.").arg(args.at(2)) << endl; + err << QObject::tr("Invalid timeout value %1.").arg(args.at(2)) << Qt::endl; return EXIT_FAILURE; } } @@ -83,14 +80,14 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< const auto& searchTerm = args.at(1); const auto results = searcher.search(QString("title:%1").arg(searchTerm), database->rootGroup(), true); if (results.count() > 1) { - err << QObject::tr("Multiple entries matching:") << endl; + err << QObject::tr("Multiple entries matching:") << Qt::endl; for (const Entry* result : results) { - err << result->path().prepend('/') << endl; + err << result->path().prepend('/') << Qt::endl; } return EXIT_FAILURE; } else { entryPath = (results.isEmpty()) ? searchTerm : results[0]->path().prepend('/'); - out << QObject::tr("Using matching entry: %1").arg(entryPath) << endl; + out << QObject::tr("Using matching entry: %1").arg(entryPath) << Qt::endl; } } else { entryPath = args.at(1); @@ -98,12 +95,12 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< auto* entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Entry %1 not found.").arg(entryPath) << endl; + err << QObject::tr("Entry %1 not found.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } if (parser->isSet(AttributeOption) && parser->isSet(TotpOption)) { - err << QObject::tr("ERROR: Please specify one of --attribute or --totp, not both.") << endl; + err << QObject::tr("ERROR: Please specify one of --attribute or --totp, not both.") << Qt::endl; return EXIT_FAILURE; } @@ -112,18 +109,22 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< bool found = false; if (parser->isSet(TotpOption) || selectedAttribute == "totp") { if (!entry->hasTotp()) { - err << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << endl; + err << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } + selectedAttribute = "totp"; found = true; value = entry->totp(); + } else if (Utils::EntryFieldNames.contains(selectedAttribute)) { + value = Utils::getTopLevelField(entry, selectedAttribute); + found = true; } else { QStringList attrs = Utils::findAttributes(*entry->attributes(), selectedAttribute); if (attrs.size() > 1) { err << QObject::tr("ERROR: attribute %1 is ambiguous, it matches %2.") .arg(selectedAttribute, QLocale().createSeparatedList(attrs)) - << endl; + << Qt::endl; return EXIT_FAILURE; } else if (attrs.size() == 1) { found = true; @@ -133,7 +134,7 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< } if (!found) { - out << QObject::tr("Attribute \"%1\" not found.").arg(selectedAttribute) << endl; + out << QObject::tr("Attribute \"%1\" not found.").arg(selectedAttribute) << Qt::endl; return EXIT_FAILURE; } @@ -142,7 +143,7 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< return exitCode; } - out << QObject::tr("Entry's \"%1\" attribute copied to the clipboard!").arg(selectedAttribute) << endl; + out << QObject::tr("Entry's \"%1\" attribute copied to the clipboard!").arg(selectedAttribute) << Qt::endl; if (timeout <= 0) { return exitCode; @@ -152,13 +153,13 @@ int Clip::executeWithDatabase(QSharedPointer database, QSharedPointer< while (timeout > 0) { out << '\r' << QString(lastLine.size(), ' ') << '\r'; lastLine = QObject::tr("Clearing the clipboard in %1 second(s)...", "", timeout).arg(timeout); - out << lastLine << flush; + out << lastLine << Qt::flush; Tools::sleep(1000); --timeout; } Utils::clipText(""); out << '\r' << QString(lastLine.size(), ' ') << '\r'; - out << QObject::tr("Clipboard cleared!") << endl; + out << QObject::tr("Clipboard cleared!") << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Command.cpp b/src/cli/Command.cpp index 2eab320a3..ae1020086 100644 --- a/src/cli/Command.cpp +++ b/src/cli/Command.cpp @@ -23,7 +23,9 @@ #include "AttachmentRemove.h" #include "Clip.h" #include "Close.h" -#include "Create.h" +#include "DatabaseCreate.h" +#include "DatabaseEdit.h" +#include "DatabaseInfo.h" #include "Diceware.h" #include "Edit.h" #include "Estimate.h" @@ -32,7 +34,6 @@ #include "Generate.h" #include "Help.h" #include "Import.h" -#include "Info.h" #include "List.h" #include "Merge.h" #include "Move.h" @@ -55,12 +56,10 @@ const QCommandLineOption Command::HelpOption = QCommandLineOption(QStringList() QObject::tr("Display this help.")); const QCommandLineOption Command::QuietOption = - QCommandLineOption(QStringList() << "q" - << "quiet", + QCommandLineOption(QStringList() << "q" << "quiet", QObject::tr("Silence password prompt and other secondary outputs.")); -const QCommandLineOption Command::KeyFileOption = QCommandLineOption(QStringList() << "k" - << "key-file", +const QCommandLineOption Command::KeyFileOption = QCommandLineOption(QStringList() << "k" << "key-file", QObject::tr("Key file of the database."), QObject::tr("path")); @@ -68,8 +67,7 @@ const QCommandLineOption Command::NoPasswordOption = QCommandLineOption(QStringList() << "no-password", QObject::tr("Deactivate password key for the database.")); const QCommandLineOption Command::YubiKeyOption = - QCommandLineOption(QStringList() << "y" - << "yubikey", + QCommandLineOption(QStringList() << "y" << "yubikey", QObject::tr("Yubikey slot and optional serial used to access the database (e.g., 1:7370001)."), QObject::tr("slot[:serial]")); @@ -102,9 +100,7 @@ Command::Command() options.append(Command::QuietOption); } -Command::~Command() -{ -} +Command::~Command() = default; QString Command::getDescriptionLine() { @@ -172,8 +168,9 @@ namespace Commands s_commands.insert(QStringLiteral("attachment-rm"), QSharedPointer(new AttachmentRemove())); s_commands.insert(QStringLiteral("clip"), QSharedPointer(new Clip())); s_commands.insert(QStringLiteral("close"), QSharedPointer(new Close())); - s_commands.insert(QStringLiteral("db-create"), QSharedPointer(new Create())); - s_commands.insert(QStringLiteral("db-info"), QSharedPointer(new Info())); + s_commands.insert(QStringLiteral("db-create"), QSharedPointer(new DatabaseCreate())); + s_commands.insert(QStringLiteral("db-edit"), QSharedPointer(new DatabaseEdit())); + s_commands.insert(QStringLiteral("db-info"), QSharedPointer(new DatabaseInfo())); s_commands.insert(QStringLiteral("diceware"), QSharedPointer(new Diceware())); s_commands.insert(QStringLiteral("edit"), QSharedPointer(new Edit())); s_commands.insert(QStringLiteral("estimate"), QSharedPointer(new Estimate())); diff --git a/src/cli/Create.cpp b/src/cli/DatabaseCreate.cpp similarity index 65% rename from src/cli/Create.cpp rename to src/cli/DatabaseCreate.cpp index 760bf5368..de7b99b06 100644 --- a/src/cli/Create.cpp +++ b/src/cli/DatabaseCreate.cpp @@ -15,42 +15,45 @@ * along with this program. If not, see . */ -#include "Create.h" +#include "DatabaseCreate.h" #include "Utils.h" +#include "core/Global.h" #include "keys/FileKey.h" #include #include -const QCommandLineOption Create::DecryptionTimeOption = - QCommandLineOption(QStringList() << "t" - << "decryption-time", +const QCommandLineOption DatabaseCreate::DecryptionTimeOption = + QCommandLineOption(QStringList() << "t" << "decryption-time", QObject::tr("Target decryption time in MS for the database."), QObject::tr("time")); -const QCommandLineOption Create::SetKeyFileOption = - QCommandLineOption(QStringList() << "k" - << "set-key-file", +const QCommandLineOption DatabaseCreate::SetKeyFileShortOption = QCommandLineOption( + QStringList() << "k", + QObject::tr("Set the key file for the database.\nThis option is deprecated, use --set-key-file instead."), + QObject::tr("path")); + +const QCommandLineOption DatabaseCreate::SetKeyFileOption = + QCommandLineOption(QStringList() << "set-key-file", QObject::tr("Set the key file for the database."), QObject::tr("path")); -const QCommandLineOption Create::SetPasswordOption = - QCommandLineOption(QStringList() << "p" - << "set-password", - QObject::tr("Set a password for the database.")); +const QCommandLineOption DatabaseCreate::SetPasswordOption = + QCommandLineOption(QStringList() << "p" << "set-password", QObject::tr("Set a password for the database.")); -Create::Create() +DatabaseCreate::DatabaseCreate() { name = QString("db-create"); description = QObject::tr("Create a new database."); positionalArguments.append({QString("database"), QObject::tr("Path of the database."), QString("")}); - options.append(Create::SetKeyFileOption); - options.append(Create::SetPasswordOption); - options.append(Create::DecryptionTimeOption); + options.append(DatabaseCreate::SetKeyFileOption); + options.append(DatabaseCreate::SetKeyFileShortOption); + options.append(DatabaseCreate::SetPasswordOption); + options.append(DatabaseCreate::DecryptionTimeOption); } -QSharedPointer Create::initializeDatabaseFromOptions(const QSharedPointer& parser) +QSharedPointer DatabaseCreate::initializeDatabaseFromOptions(const QSharedPointer& parser) { if (parser.isNull()) { return {}; @@ -60,38 +63,46 @@ QSharedPointer Create::initializeDatabaseFromOptions(const QSharedPoin auto& err = Utils::STDERR; // Validate the decryption time before asking for a password. - QString decryptionTimeValue = parser->value(Create::DecryptionTimeOption); + QString decryptionTimeValue = parser->value(DatabaseCreate::DecryptionTimeOption); int decryptionTime = 0; if (decryptionTimeValue.length() != 0) { decryptionTime = decryptionTimeValue.toInt(); if (decryptionTime <= 0) { - err << QObject::tr("Invalid decryption time %1.").arg(decryptionTimeValue) << endl; + err << QObject::tr("Invalid decryption time %1.").arg(decryptionTimeValue) << Qt::endl; return {}; } if (decryptionTime < Kdf::MIN_ENCRYPTION_TIME || decryptionTime > Kdf::MAX_ENCRYPTION_TIME) { err << QObject::tr("Target decryption time must be between %1 and %2.") .arg(QString::number(Kdf::MIN_ENCRYPTION_TIME), QString::number(Kdf::MAX_ENCRYPTION_TIME)) - << endl; + << Qt::endl; return {}; } } auto key = QSharedPointer::create(); - if (parser->isSet(Create::SetPasswordOption)) { + if (parser->isSet(DatabaseCreate::SetPasswordOption)) { auto passwordKey = Utils::getConfirmedPassword(); if (passwordKey.isNull()) { - err << QObject::tr("Failed to set database password.") << endl; + err << QObject::tr("Failed to set database password.") << Qt::endl; return {}; } key->addKey(passwordKey); } - if (parser->isSet(Create::SetKeyFileOption)) { + if (parser->isSet(DatabaseCreate::SetKeyFileOption) || parser->isSet(DatabaseCreate::SetKeyFileShortOption)) { QSharedPointer fileKey; - if (!Utils::loadFileKey(parser->value(Create::SetKeyFileOption), fileKey)) { - err << QObject::tr("Loading the key file failed") << endl; + QString keyFilePath; + if (parser->isSet(DatabaseCreate::SetKeyFileShortOption)) { + qWarning("The -k option will be deprecated. Please use the --set-key-file option instead."); + keyFilePath = parser->value(DatabaseCreate::SetKeyFileShortOption); + } else { + keyFilePath = parser->value(DatabaseCreate::SetKeyFileOption); + } + + if (!Utils::loadFileKey(keyFilePath, fileKey)) { + err << QObject::tr("Loading the key file failed") << Qt::endl; return {}; } @@ -101,7 +112,7 @@ QSharedPointer Create::initializeDatabaseFromOptions(const QSharedPoin } if (key->isEmpty()) { - err << QObject::tr("No key is set. Aborting database creation.") << endl; + err << QObject::tr("No key is set. Aborting database creation.") << Qt::endl; return {}; } @@ -112,15 +123,15 @@ QSharedPointer Create::initializeDatabaseFromOptions(const QSharedPoin auto kdf = db->kdf(); Q_ASSERT(kdf); - out << QObject::tr("Benchmarking key derivation function for %1ms delay.").arg(decryptionTimeValue) << endl; + out << QObject::tr("Benchmarking key derivation function for %1ms delay.").arg(decryptionTimeValue) << Qt::endl; int rounds = kdf->benchmark(decryptionTime); - out << QObject::tr("Setting %1 rounds for key derivation function.").arg(QString::number(rounds)) << endl; + out << QObject::tr("Setting %1 rounds for key derivation function.").arg(QString::number(rounds)) << Qt::endl; kdf->setRounds(rounds); bool ok = db->changeKdf(kdf); if (!ok) { - err << QObject::tr("error while setting database key derivation settings.") << endl; + err << QObject::tr("error while setting database key derivation settings.") << Qt::endl; return {}; } } @@ -136,12 +147,12 @@ QSharedPointer Create::initializeDatabaseFromOptions(const QSharedPoin * If a key file is specified but it can't be loaded, the function will * fail. * - * If the database is being saved in a non existant directory, the + * If the database is being saved in a non existent directory, the * function will fail. * * @return EXIT_SUCCESS on success, or EXIT_FAILURE on failure */ -int Create::execute(const QStringList& arguments) +int DatabaseCreate::execute(const QStringList& arguments) { QSharedPointer parser = getCommandLineParser(arguments); if (parser.isNull()) { @@ -155,21 +166,21 @@ int Create::execute(const QStringList& arguments) const QString& databaseFilename = args.at(0); if (QFileInfo::exists(databaseFilename)) { - err << QObject::tr("File %1 already exists.").arg(databaseFilename) << endl; + err << QObject::tr("File %1 already exists.").arg(databaseFilename) << Qt::endl; return EXIT_FAILURE; } - QSharedPointer db = Create::initializeDatabaseFromOptions(parser); + QSharedPointer db = DatabaseCreate::initializeDatabaseFromOptions(parser); if (!db) { return EXIT_FAILURE; } QString errorMessage; if (!db->saveAs(databaseFilename, Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Failed to save the database: %1.").arg(errorMessage) << endl; + err << QObject::tr("Failed to save the database: %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully created new database.") << endl; + out << QObject::tr("Successfully created new database.") << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Create.h b/src/cli/DatabaseCreate.h similarity index 82% rename from src/cli/Create.h rename to src/cli/DatabaseCreate.h index 3b91dca10..30db16ed9 100644 --- a/src/cli/Create.h +++ b/src/cli/DatabaseCreate.h @@ -15,22 +15,23 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_CREATE_H -#define KEEPASSXC_CREATE_H +#ifndef KEEPASSXC_DATABASECREATE_H +#define KEEPASSXC_DATABASECREATE_H #include "Command.h" -class Create : public Command +class DatabaseCreate : public Command { public: - Create(); + DatabaseCreate(); int execute(const QStringList& arguments) override; static QSharedPointer initializeDatabaseFromOptions(const QSharedPointer& parser); static const QCommandLineOption SetKeyFileOption; + static const QCommandLineOption SetKeyFileShortOption; static const QCommandLineOption SetPasswordOption; static const QCommandLineOption DecryptionTimeOption; }; -#endif // KEEPASSXC_CREATE_H +#endif // KEEPASSXC_DATABASECREATE_H diff --git a/src/cli/DatabaseEdit.cpp b/src/cli/DatabaseEdit.cpp new file mode 100644 index 000000000..3df4d4b19 --- /dev/null +++ b/src/cli/DatabaseEdit.cpp @@ -0,0 +1,175 @@ +/* + * Copyright (C) 2022 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 . + */ + +#include "DatabaseEdit.h" + +#include "Utils.h" +#include "cli/DatabaseCreate.h" +#include "core/Global.h" +#include "keys/ChallengeResponseKey.h" +#include "keys/FileKey.h" +#include "keys/PasswordKey.h" + +#include +#include + +const QCommandLineOption DatabaseEdit::UnsetPasswordOption = + QCommandLineOption(QStringList() << "unset-password", QObject::tr("Unset the password for the database.")); +const QCommandLineOption DatabaseEdit::UnsetKeyFileOption = + QCommandLineOption(QStringList() << "unset-key-file", QObject::tr("Unset the key file for the database.")); + +DatabaseEdit::DatabaseEdit() +{ + name = QString("db-edit"); + description = QObject::tr("Edit a database."); + options.append(DatabaseCreate::SetKeyFileOption); + options.append(DatabaseCreate::SetPasswordOption); + options.append(DatabaseEdit::UnsetKeyFileOption); + options.append(DatabaseEdit::UnsetPasswordOption); +} + +int DatabaseEdit::executeWithDatabase(QSharedPointer database, QSharedPointer parser) +{ + auto& out = Utils::STDOUT; + auto& err = Utils::STDERR; + + const QStringList args = parser->positionalArguments(); + bool databaseWasChanged = false; + + if (parser->isSet(DatabaseCreate::SetPasswordOption) && parser->isSet(DatabaseEdit::UnsetPasswordOption)) { + err << QObject::tr("Cannot use %1 and %2 at the same time.") + .arg(DatabaseCreate::SetPasswordOption.names().at(0)) + .arg(DatabaseEdit::UnsetPasswordOption.names().at(0)) + << Qt::endl; + return EXIT_FAILURE; + } + + if (parser->isSet(DatabaseCreate::SetKeyFileOption) && parser->isSet(DatabaseEdit::UnsetKeyFileOption)) { + err << QObject::tr("Cannot use %1 and %2 at the same time.") + .arg(DatabaseCreate::SetKeyFileOption.names().at(0)) + .arg(DatabaseEdit::UnsetKeyFileOption.names().at(0)) + << Qt::endl; + return EXIT_FAILURE; + } + + bool hasKeyChange = + (parser->isSet(DatabaseCreate::SetPasswordOption) || parser->isSet(DatabaseCreate::SetKeyFileOption) + || parser->isSet(DatabaseEdit::UnsetPasswordOption) || parser->isSet(DatabaseEdit::UnsetKeyFileOption)); + + if (hasKeyChange) { + auto newDatabaseKey = getNewDatabaseKey(database, + parser->isSet(DatabaseCreate::SetPasswordOption), + parser->isSet(DatabaseEdit::UnsetPasswordOption), + parser->value(DatabaseCreate::SetKeyFileOption), + parser->isSet(DatabaseEdit::UnsetKeyFileOption)); + if (newDatabaseKey.isNull()) { + err << QObject::tr("Could not change the database key.") << Qt::endl; + return EXIT_FAILURE; + } + database->setKey(newDatabaseKey); + databaseWasChanged = true; + } + + if (!databaseWasChanged) { + out << QObject::tr("Database was not modified.") << Qt::endl; + return EXIT_SUCCESS; + } + + QString errorMessage; + if (!database->save(Database::Atomic, {}, &errorMessage)) { + err << QObject::tr("Writing the database failed: %1").arg(errorMessage) << Qt::endl; + return EXIT_FAILURE; + } + + out << QObject::tr("Successfully edited the database.") << Qt::endl; + return EXIT_SUCCESS; +} + +QSharedPointer DatabaseEdit::getNewDatabaseKey(QSharedPointer database, + bool updatePassword, + bool removePassword, + QString newFileKeyPath, + bool removeKeyFile) +{ + auto& err = Utils::STDERR; + auto newDatabaseKey = QSharedPointer::create(); + bool updateKeyFile = !newFileKeyPath.isEmpty(); + + auto currentPasswordKey = database->key()->getKey(PasswordKey::UUID); + auto currentFileKey = database->key()->getKey(FileKey::UUID); + auto currentChallengeResponseKey = database->key()->getChallengeResponseKey(ChallengeResponseKey::UUID); + + if (removePassword && currentPasswordKey.isNull()) { + err << QObject::tr("Cannot remove password: The database does not have a password.") << Qt::endl; + return {}; + } + + if (removeKeyFile && currentFileKey.isNull()) { + err << QObject::tr("Cannot remove file key: The database does not have a file key.") << Qt::endl; + return {}; + } + + if (updatePassword) { + QSharedPointer newPasswordKey = Utils::getConfirmedPassword(); + if (newPasswordKey.isNull()) { + err << QObject::tr("Failed to set database password.") << Qt::endl; + return {}; + } + newDatabaseKey->addKey(newPasswordKey); + } else if (!removePassword && !currentPasswordKey.isNull()) { + newDatabaseKey->addKey(currentPasswordKey); + } + + if (updateKeyFile) { + QSharedPointer newFileKey = QSharedPointer::create(); + QString errorMessage; + if (!Utils::loadFileKey(newFileKeyPath, newFileKey)) { + err << QObject::tr("Loading the new key file failed: %1").arg(errorMessage) << Qt::endl; + return {}; + } + newDatabaseKey->addKey(newFileKey); + } else if (!removeKeyFile && !currentFileKey.isNull()) { + newDatabaseKey->addKey(currentFileKey); + } + + // This is a sanity check to make sure that this function is not used if + // new key types are introduced. Otherwise, those key types would be + // silently removed from the database. + for (const QSharedPointer& key : database->key()->keys()) { + if (key->uuid() != PasswordKey::UUID && key->uuid() != FileKey::UUID) { + err << QObject::tr("Found unexpected Key type %1").arg(key->uuid().toString()) << Qt::endl; + return {}; + } + } + for (const QSharedPointer& key : database->key()->challengeResponseKeys()) { + if (key->uuid() != ChallengeResponseKey::UUID) { + err << QObject::tr("Found unexpected Key type %1").arg(key->uuid().toString()) << Qt::endl; + return {}; + } + } + + if (!currentChallengeResponseKey.isNull()) { + newDatabaseKey->addChallengeResponseKey(currentChallengeResponseKey); + } + + if (newDatabaseKey->keys().isEmpty() && newDatabaseKey->challengeResponseKeys().isEmpty()) { + err << QObject::tr("Cannot remove all the keys from a database.") << Qt::endl; + return {}; + } + + return newDatabaseKey; +} diff --git a/src/cli/DatabaseEdit.h b/src/cli/DatabaseEdit.h new file mode 100644 index 000000000..2d77b206f --- /dev/null +++ b/src/cli/DatabaseEdit.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2022 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 . + */ + +#ifndef KEEPASSXC_DATABASEEDIT_H +#define KEEPASSXC_DATABASEEDIT_H + +#include "DatabaseCommand.h" + +class DatabaseEdit : public DatabaseCommand +{ +public: + DatabaseEdit(); + + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; + + static const QCommandLineOption UnsetKeyFileOption; + static const QCommandLineOption UnsetPasswordOption; + +private: + QSharedPointer getNewDatabaseKey(QSharedPointer database, + bool updatePassword, + bool removePassword, + QString newFileKeyPath, + bool removeKeyFile); +}; + +#endif // KEEPASSXC_DATABASEEDIT_H diff --git a/src/cli/Info.cpp b/src/cli/DatabaseInfo.cpp similarity index 65% rename from src/cli/Info.cpp rename to src/cli/DatabaseInfo.cpp index bf093664a..0b205157c 100644 --- a/src/cli/Info.cpp +++ b/src/cli/DatabaseInfo.cpp @@ -15,9 +15,10 @@ * along with this program. If not, see . */ -#include "Info.h" +#include "DatabaseInfo.h" #include "Utils.h" +#include "core/Clock.h" #include "core/DatabaseStats.h" #include "core/Global.h" #include "core/Group.h" @@ -25,49 +26,49 @@ #include -Info::Info() +DatabaseInfo::DatabaseInfo() { name = QString("db-info"); description = QObject::tr("Show a database's information."); } -int Info::executeWithDatabase(QSharedPointer database, QSharedPointer) +int DatabaseInfo::executeWithDatabase(QSharedPointer database, QSharedPointer) { auto& out = Utils::STDOUT; - out << QObject::tr("UUID: ") << database->uuid().toString() << endl; - out << QObject::tr("Name: ") << database->metadata()->name() << endl; - out << QObject::tr("Description: ") << database->metadata()->description() << endl; + out << QObject::tr("UUID: ") << database->uuid().toString() << Qt::endl; + out << QObject::tr("Name: ") << database->metadata()->name() << Qt::endl; + out << QObject::tr("Description: ") << database->metadata()->description() << Qt::endl; for (auto& cipher : asConst(KeePass2::CIPHERS)) { - if (cipher.first == database->cipher()) { - out << QObject::tr("Cipher: ") << cipher.second << endl; + if (cipher == database->cipher()) { + out << QObject::tr("Cipher: ") << KeePass2::cipherToString(cipher) << Qt::endl; } } - out << QObject::tr("KDF: ") << database->kdf()->toString() << endl; + out << QObject::tr("KDF: ") << database->kdf()->toString() << Qt::endl; if (database->metadata()->recycleBinEnabled()) { - out << QObject::tr("Recycle bin is enabled.") << endl; + out << QObject::tr("Recycle bin is enabled.") << Qt::endl; } else { - out << QObject::tr("Recycle bin is not enabled.") << endl; + out << QObject::tr("Recycle bin is not enabled.") << Qt::endl; } DatabaseStats stats(database); - out << QObject::tr("Location") << ": " << database->filePath() << endl; - out << QObject::tr("Database created") << ": " - << database->rootGroup()->timeInfo().creationTime().toString(Qt::DefaultLocaleShortDate) << endl; - out << QObject::tr("Last saved") << ": " << stats.modified.toString(Qt::DefaultLocaleShortDate) << endl; + out << QObject::tr("Location") << ": " << database->filePath() << Qt::endl; + out << QObject::tr("Database created") << ": " << Clock::toString(database->rootGroup()->timeInfo().creationTime()) + << Qt::endl; + out << QObject::tr("Last saved") << ": " << Clock::toString(stats.modified) << Qt::endl; out << QObject::tr("Unsaved changes") << ": " << (database->isModified() ? QObject::tr("yes") : QObject::tr("no")) - << endl; - out << QObject::tr("Number of groups") << ": " << QString::number(stats.groupCount) << endl; - out << QObject::tr("Number of entries") << ": " << QString::number(stats.entryCount) << endl; - out << QObject::tr("Number of expired entries") << ": " << QString::number(stats.expiredEntries) << endl; - out << QObject::tr("Unique passwords") << ": " << QString::number(stats.uniquePasswords) << endl; - out << QObject::tr("Non-unique passwords") << ": " << QString::number(stats.reusedPasswords) << endl; - out << QObject::tr("Maximum password reuse") << ": " << QString::number(stats.maxPwdReuse()) << endl; - out << QObject::tr("Number of short passwords") << ": " << QString::number(stats.shortPasswords) << endl; - out << QObject::tr("Number of weak passwords") << ": " << QString::number(stats.weakPasswords) << endl; - out << QObject::tr("Entries excluded from reports") << ": " << QString::number(stats.excludedEntries) << endl; + << Qt::endl; + out << QObject::tr("Number of groups") << ": " << QString::number(stats.groupCount) << Qt::endl; + out << QObject::tr("Number of entries") << ": " << QString::number(stats.entryCount) << Qt::endl; + out << QObject::tr("Number of expired entries") << ": " << QString::number(stats.expiredEntries) << Qt::endl; + out << QObject::tr("Unique passwords") << ": " << QString::number(stats.uniquePasswords) << Qt::endl; + out << QObject::tr("Non-unique passwords") << ": " << QString::number(stats.reusedPasswords) << Qt::endl; + out << QObject::tr("Maximum password reuse") << ": " << QString::number(stats.maxPwdReuse()) << Qt::endl; + out << QObject::tr("Number of short passwords") << ": " << QString::number(stats.shortPasswords) << Qt::endl; + out << QObject::tr("Number of weak passwords") << ": " << QString::number(stats.weakPasswords) << Qt::endl; + out << QObject::tr("Entries excluded from reports") << ": " << QString::number(stats.excludedEntries) << Qt::endl; out << QObject::tr("Average password length") << ": " << QObject::tr("%1 characters").arg(stats.averagePwdLength()) - << endl; + << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Info.h b/src/cli/DatabaseInfo.h similarity index 79% rename from src/cli/Info.h rename to src/cli/DatabaseInfo.h index 1961a7b5f..42a48c86f 100644 --- a/src/cli/Info.h +++ b/src/cli/DatabaseInfo.h @@ -15,17 +15,17 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_INFO_H -#define KEEPASSXC_INFO_H +#ifndef KEEPASSXC_DATABASEINFO_H +#define KEEPASSXC_DATABASEINFO_H #include "DatabaseCommand.h" -class Info : public DatabaseCommand +class DatabaseInfo : public DatabaseCommand { public: - Info(); + DatabaseInfo(); - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; }; -#endif // KEEPASSXC_INFO_H +#endif // KEEPASSXC_DATABASEINFO_H diff --git a/src/cli/Diceware.cpp b/src/cli/Diceware.cpp index b6a65bd1e..c2e3f9fee 100644 --- a/src/cli/Diceware.cpp +++ b/src/cli/Diceware.cpp @@ -18,19 +18,18 @@ #include "Diceware.h" #include "Utils.h" +#include "core/Global.h" #include "core/PassphraseGenerator.h" #include const QCommandLineOption Diceware::WordCountOption = - QCommandLineOption(QStringList() << "W" - << "words", + QCommandLineOption(QStringList() << "W" << "words", QObject::tr("Word count for the diceware passphrase."), QObject::tr("count", "CLI parameter")); const QCommandLineOption Diceware::WordListOption = - QCommandLineOption(QStringList() << "w" - << "word-list", + QCommandLineOption(QStringList() << "w" << "word-list", QObject::tr("Wordlist for the diceware generator.\n[Default: EFF English]"), QObject::tr("path")); @@ -58,7 +57,7 @@ int Diceware::execute(const QStringList& arguments) if (wordCount.isEmpty()) { dicewareGenerator.setWordCount(PassphraseGenerator::DefaultWordCount); } else if (wordCount.toInt() <= 0) { - err << QObject::tr("Invalid word count %1").arg(wordCount) << endl; + err << QObject::tr("Invalid word count %1").arg(wordCount) << Qt::endl; return EXIT_FAILURE; } else { dicewareGenerator.setWordCount(wordCount.toInt()); @@ -72,12 +71,12 @@ int Diceware::execute(const QStringList& arguments) if (!dicewareGenerator.isValid()) { // We already validated the word count input so if the generator is invalid, it // must be because the word list is too small. - err << QObject::tr("The word list is too small (< 1000 items)") << endl; + err << QObject::tr("Cannot generate valid passphrases because the wordlist is too short") << Qt::endl; return EXIT_FAILURE; } QString password = dicewareGenerator.generatePassphrase(); - out << password << endl; + out << password << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Edit.cpp b/src/cli/Edit.cpp index 1154ce309..680b45f0b 100644 --- a/src/cli/Edit.cpp +++ b/src/cli/Edit.cpp @@ -20,15 +20,14 @@ #include "Add.h" #include "Generate.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include "core/PasswordGenerator.h" #include -const QCommandLineOption Edit::TitleOption = QCommandLineOption(QStringList() << "t" - << "title", - QObject::tr("Title for the entry."), - QObject::tr("title")); +const QCommandLineOption Edit::TitleOption = + QCommandLineOption(QStringList() << "t" << "title", QObject::tr("Title for the entry."), QObject::tr("title")); Edit::Edit() { @@ -66,7 +65,7 @@ int Edit::executeWithDatabase(QSharedPointer database, QSharedPointer< // Cannot use those 2 options at the same time! if (parser->isSet(Add::GenerateOption) && parser->isSet(Add::PasswordPromptOption)) { - err << QObject::tr("Cannot generate a password and prompt at the same time.") << endl; + err << QObject::tr("Cannot generate a password and prompt at the same time.") << Qt::endl; return EXIT_FAILURE; } @@ -83,7 +82,7 @@ int Edit::executeWithDatabase(QSharedPointer database, QSharedPointer< Entry* entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -93,7 +92,7 @@ int Edit::executeWithDatabase(QSharedPointer database, QSharedPointer< QString title = parser->value(Edit::TitleOption); bool prompt = parser->isSet(Add::PasswordPromptOption); if (username.isEmpty() && url.isEmpty() && notes.isEmpty() && title.isEmpty() && !prompt && !generate) { - err << QObject::tr("Not changing any field for entry %1.").arg(entryPath) << endl; + err << QObject::tr("Not changing any field for entry %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -116,7 +115,7 @@ int Edit::executeWithDatabase(QSharedPointer database, QSharedPointer< } if (prompt) { - out << QObject::tr("Enter new password for entry: ") << flush; + out << QObject::tr("Enter new password for entry: ") << Qt::flush; QString password = Utils::getPassword(parser->isSet(Command::QuietOption)); entry->setPassword(password); } else if (generate) { @@ -128,10 +127,10 @@ int Edit::executeWithDatabase(QSharedPointer database, QSharedPointer< QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed: %1").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed: %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully edited entry %1.").arg(entry->title()) << endl; + out << QObject::tr("Successfully edited entry %1.").arg(entry->title()) << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Estimate.cpp b/src/cli/Estimate.cpp index 094fcf36c..b264967f0 100644 --- a/src/cli/Estimate.cpp +++ b/src/cli/Estimate.cpp @@ -18,15 +18,14 @@ #include "Estimate.h" #include "Utils.h" +#include "core/Global.h" #include "core/PasswordHealth.h" #include #include const QCommandLineOption Estimate::AdvancedOption = - QCommandLineOption(QStringList() << "a" - << "advanced", - QObject::tr("Perform advanced analysis on the password.")); + QCommandLineOption(QStringList() << "a" << "advanced", QObject::tr("Perform advanced analysis on the password.")); Estimate::Estimate() { @@ -41,13 +40,13 @@ static void estimate(const char* pwd, bool advanced) { auto& out = Utils::STDOUT; - int len = static_cast(strlen(pwd)); + auto len = static_cast(strlen(pwd)); if (!advanced) { const auto e = PasswordHealth(pwd).entropy(); // clang-format off out << QObject::tr("Length %1").arg(len, 0) << '\t' << QObject::tr("Entropy %1").arg(e, 0, 'f', 3) << '\t' - << QObject::tr("Log10 %1").arg(e * 0.301029996, 0, 'f', 3) << endl; + << QObject::tr("Log10 %1").arg(e * 0.301029996, 0, 'f', 3) << Qt::endl; // clang-format on } else { int pwdLen = 0; @@ -62,7 +61,7 @@ static void estimate(const char* pwd, bool advanced) out << QObject::tr("Length %1").arg(len) << '\t' << QObject::tr("Entropy %1").arg(e, 0, 'f', 3) << '\t' << QObject::tr("Log10 %1").arg(e * 0.301029996, 0, 'f', 3) << "\n " - << QObject::tr("Multi-word extra bits %1").arg(m, 0, 'f', 1) << endl; + << QObject::tr("Multi-word extra bits %1").arg(m, 0, 'f', 1) << Qt::endl; // clang-format on p = info; pwdLen = 0; @@ -135,13 +134,13 @@ static void estimate(const char* pwd, bool advanced) for (n = 0; n < p->Length; ++n, ++pwd) { out << *pwd; } - out << endl; + out << Qt::endl; p = p->Next; } ZxcvbnFreeInfo(info); if (pwdLen != len) { out << QObject::tr("*** Password length (%1) != sum of length of parts (%2) ***").arg(len).arg(pwdLen) - << endl; + << Qt::endl; } } } diff --git a/src/cli/Export.cpp b/src/cli/Export.cpp index 6456fe5b1..36b38b1de 100644 --- a/src/cli/Export.cpp +++ b/src/cli/Export.cpp @@ -19,15 +19,16 @@ #include "TextStream.h" #include "Utils.h" +#include "core/Global.h" #include "format/CsvExporter.h" +#include "format/HtmlExporter.h" #include const QCommandLineOption Export::FormatOption = QCommandLineOption( - QStringList() << "f" - << "format", - QObject::tr("Format to use when exporting. Available choices are 'xml' or 'csv'. Defaults to 'xml'."), - QStringLiteral("xml|csv")); + QStringList() << "f" << "format", + QObject::tr("Format to use when exporting. Available choices are 'xml', 'csv' or 'html'. Defaults to 'xml'."), + QStringLiteral("xml|csv|html")); Export::Export() { @@ -46,15 +47,18 @@ int Export::executeWithDatabase(QSharedPointer database, QSharedPointe QByteArray xmlData; QString errorMessage; if (!database->extract(xmlData, &errorMessage)) { - err << QObject::tr("Unable to export database to XML: %1").arg(errorMessage) << endl; + err << QObject::tr("Unable to export database to XML: %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } out.write(xmlData.constData()); } else if (format.startsWith(QStringLiteral("csv"), Qt::CaseInsensitive)) { CsvExporter csvExporter; out << csvExporter.exportDatabase(database); + } else if (format.startsWith(QStringLiteral("html"), Qt::CaseInsensitive)) { + HtmlExporter htmlExporter; + out << htmlExporter.exportDatabase(database); } else { - err << QObject::tr("Unsupported format %1").arg(format) << endl; + err << QObject::tr("Unsupported format %1").arg(format) << Qt::endl; return EXIT_FAILURE; } diff --git a/src/cli/Generate.cpp b/src/cli/Generate.cpp index 8ce1a6116..258ce79fa 100644 --- a/src/cli/Generate.cpp +++ b/src/cli/Generate.cpp @@ -18,46 +18,36 @@ #include "Generate.h" #include "Utils.h" +#include "core/Global.h" #include "core/PasswordGenerator.h" #include const QCommandLineOption Generate::PasswordLengthOption = - QCommandLineOption(QStringList() << "L" - << "length", + QCommandLineOption(QStringList() << "L" << "length", QObject::tr("Length of the generated password"), QObject::tr("length")); -const QCommandLineOption Generate::LowerCaseOption = QCommandLineOption(QStringList() << "l" - << "lower", - QObject::tr("Use lowercase characters")); +const QCommandLineOption Generate::LowerCaseOption = + QCommandLineOption(QStringList() << "l" << "lower", QObject::tr("Use lowercase characters")); -const QCommandLineOption Generate::UpperCaseOption = QCommandLineOption(QStringList() << "U" - << "upper", - QObject::tr("Use uppercase characters")); +const QCommandLineOption Generate::UpperCaseOption = + QCommandLineOption(QStringList() << "U" << "upper", QObject::tr("Use uppercase characters")); -const QCommandLineOption Generate::NumbersOption = QCommandLineOption(QStringList() << "n" - << "numeric", - QObject::tr("Use numbers")); +const QCommandLineOption Generate::NumbersOption = + QCommandLineOption(QStringList() << "n" << "numeric", QObject::tr("Use numbers")); -const QCommandLineOption Generate::SpecialCharsOption = QCommandLineOption(QStringList() << "s" - << "special", - QObject::tr("Use special characters")); +const QCommandLineOption Generate::SpecialCharsOption = + QCommandLineOption(QStringList() << "s" << "special", QObject::tr("Use special characters")); -const QCommandLineOption Generate::ExtendedAsciiOption = QCommandLineOption(QStringList() << "e" - << "extended", - QObject::tr("Use extended ASCII")); +const QCommandLineOption Generate::ExtendedAsciiOption = + QCommandLineOption(QStringList() << "e" << "extended", QObject::tr("Use extended ASCII")); -const QCommandLineOption Generate::ExcludeCharsOption = QCommandLineOption(QStringList() << "x" - << "exclude", - QObject::tr("Exclude character set"), - QObject::tr("chars")); +const QCommandLineOption Generate::ExcludeCharsOption = + QCommandLineOption(QStringList() << "x" << "exclude", QObject::tr("Exclude character set"), QObject::tr("chars")); const QCommandLineOption Generate::CustomCharacterSetOption = - QCommandLineOption(QStringList() << "c" - << "custom", - QObject::tr("Use custom character set"), - QObject::tr("chars")); + QCommandLineOption(QStringList() << "c" << "custom", QObject::tr("Use custom character set"), QObject::tr("chars")); const QCommandLineOption Generate::ExcludeSimilarCharsOption = QCommandLineOption(QStringList() << "exclude-similar", QObject::tr("Exclude similar looking characters")); @@ -92,13 +82,13 @@ QSharedPointer Generate::createGenerator(QSharedPointersetLength(PasswordGenerator::DefaultLength); } else if (passwordLength.toInt() <= 0) { - err << QObject::tr("Invalid password length %1").arg(passwordLength) << endl; - return QSharedPointer(nullptr); + err << QObject::tr("Invalid password length %1").arg(passwordLength) << Qt::endl; + return {}; } else { passwordGenerator->setLength(passwordLength.toInt()); } - PasswordGenerator::CharClasses classes = 0x0; + PasswordGenerator::CharClasses classes; if (parser->isSet(Generate::LowerCaseOption)) { classes |= PasswordGenerator::LowerLetters; @@ -116,7 +106,7 @@ QSharedPointer Generate::createGenerator(QSharedPointerisSet(Generate::ExcludeSimilarCharsOption)) { flags |= PasswordGenerator::ExcludeLookAlike; @@ -138,8 +128,8 @@ QSharedPointer Generate::createGenerator(QSharedPointersetExcludedCharacterSet(parser->value(Generate::ExcludeCharsOption)); if (!passwordGenerator->isValid()) { - err << QObject::tr("Invalid password generator after applying all options") << endl; - return QSharedPointer(nullptr); + err << QObject::tr("Invalid password generator after applying all options") << Qt::endl; + return {}; } return passwordGenerator; @@ -159,7 +149,7 @@ int Generate::execute(const QStringList& arguments) auto& out = Utils::STDOUT; QString password = passwordGenerator->generatePassword(); - out << password << endl; + out << password << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Import.cpp b/src/cli/Import.cpp index 3732f0cf6..48f93d88c 100644 --- a/src/cli/Import.cpp +++ b/src/cli/Import.cpp @@ -17,9 +17,11 @@ #include "Import.h" -#include "Create.h" +#include "DatabaseCreate.h" #include "Utils.h" +#include "core/Global.h" + #include #include @@ -28,7 +30,7 @@ * A password can be specified to encrypt the database. * If none is specified the function will fail. * - * If the database is being saved in a non existant directory, the + * If the database is being saved in a non existent directory, the * function will fail. * * @return EXIT_SUCCESS on success, or EXIT_FAILURE on failure @@ -40,9 +42,10 @@ Import::Import() description = QObject::tr("Import the contents of an XML database."); positionalArguments.append({QString("xml"), QObject::tr("Path of the XML database export."), QString("")}); positionalArguments.append({QString("database"), QObject::tr("Path of the new database."), QString("")}); - options.append(Create::SetKeyFileOption); - options.append(Create::SetPasswordOption); - options.append(Create::DecryptionTimeOption); + options.append(DatabaseCreate::SetKeyFileOption); + options.append(DatabaseCreate::SetKeyFileShortOption); + options.append(DatabaseCreate::SetPasswordOption); + options.append(DatabaseCreate::DecryptionTimeOption); } int Import::execute(const QStringList& arguments) @@ -60,26 +63,26 @@ int Import::execute(const QStringList& arguments) const QString& dbPath = args.at(1); if (QFileInfo::exists(dbPath)) { - err << QObject::tr("File %1 already exists.").arg(dbPath) << endl; + err << QObject::tr("File %1 already exists.").arg(dbPath) << Qt::endl; return EXIT_FAILURE; } - QSharedPointer db = Create::initializeDatabaseFromOptions(parser); + QSharedPointer db = DatabaseCreate::initializeDatabaseFromOptions(parser); if (!db) { return EXIT_FAILURE; } QString errorMessage; if (!db->import(xmlExportPath, &errorMessage)) { - err << QObject::tr("Unable to import XML database: %1").arg(errorMessage) << endl; + err << QObject::tr("Unable to import XML database: %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } if (!db->saveAs(dbPath, Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Failed to save the database: %1.").arg(errorMessage) << endl; + err << QObject::tr("Failed to save the database: %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully imported database.") << endl; + out << QObject::tr("Successfully imported database.") << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/List.cpp b/src/cli/List.cpp index 4140c1cd8..89ddef5be 100644 --- a/src/cli/List.cpp +++ b/src/cli/List.cpp @@ -18,18 +18,16 @@ #include "List.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include const QCommandLineOption List::RecursiveOption = - QCommandLineOption(QStringList() << "R" - << "recursive", - QObject::tr("Recursively list the elements of the group.")); + QCommandLineOption(QStringList() << "R" << "recursive", QObject::tr("Recursively list the elements of the group.")); -const QCommandLineOption List::FlattenOption = QCommandLineOption(QStringList() << "f" - << "flatten", - QObject::tr("Flattens the output to single lines.")); +const QCommandLineOption List::FlattenOption = + QCommandLineOption(QStringList() << "f" << "flatten", QObject::tr("Flattens the output to single lines.")); List::List() { @@ -52,17 +50,17 @@ int List::executeWithDatabase(QSharedPointer database, QSharedPointer< // No group provided, defaulting to root group. if (args.size() == 1) { - out << database->rootGroup()->print(recursive, flatten) << flush; + out << database->rootGroup()->print(recursive, flatten) << Qt::flush; return EXIT_SUCCESS; } const QString& groupPath = args.at(1); Group* group = database->rootGroup()->findGroupByPath(groupPath); if (!group) { - err << QObject::tr("Cannot find group %1.").arg(groupPath) << endl; + err << QObject::tr("Cannot find group %1.").arg(groupPath) << Qt::endl; return EXIT_FAILURE; } - out << group->print(recursive, flatten) << flush; + out << group->print(recursive, flatten) << Qt::flush; return EXIT_SUCCESS; } diff --git a/src/cli/Merge.cpp b/src/cli/Merge.cpp index 410892c9f..6cf351c96 100644 --- a/src/cli/Merge.cpp +++ b/src/cli/Merge.cpp @@ -18,13 +18,13 @@ #include "Merge.h" #include "Utils.h" +#include "core/Global.h" #include "core/Merger.h" #include const QCommandLineOption Merge::SameCredentialsOption = - QCommandLineOption(QStringList() << "s" - << "same-credentials", + QCommandLineOption(QStringList() << "s" << "same-credentials", QObject::tr("Use the same credentials for both database files.")); const QCommandLineOption Merge::KeyFileFromOption = @@ -37,7 +37,7 @@ const QCommandLineOption Merge::NoPasswordFromOption = QObject::tr("Deactivate password key for the database to merge from.")); const QCommandLineOption Merge::DryRunOption = - QCommandLineOption(QStringList() << "dry-run", + QCommandLineOption(QStringList() << "d" << "dry-run", QObject::tr("Only print the changes detected by the merge operation.")); const QCommandLineOption Merge::YubiKeyFromOption(QStringList() << "yubikey-from", @@ -90,18 +90,18 @@ int Merge::executeWithDatabase(QSharedPointer database, QSharedPointer QStringList changeList = merger.merge(); for (auto& mergeChange : changeList) { - out << "\t" << mergeChange << endl; + out << "\t" << mergeChange << Qt::endl; } if (!changeList.isEmpty() && !parser->isSet(Merge::DryRunOption)) { QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Unable to save database to file : %1").arg(errorMessage) << endl; + err << QObject::tr("Unable to save database to file : %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully merged %1 into %2.").arg(fromDatabasePath, toDatabasePath) << endl; + out << QObject::tr("Successfully merged %1 into %2.").arg(fromDatabasePath, toDatabasePath) << Qt::endl; } else { - out << QObject::tr("Database was not modified by merge operation.") << endl; + out << QObject::tr("Database was not modified by merge operation.") << Qt::endl; } return EXIT_SUCCESS; diff --git a/src/cli/Move.cpp b/src/cli/Move.cpp index a9ee78614..96407c680 100644 --- a/src/cli/Move.cpp +++ b/src/cli/Move.cpp @@ -18,6 +18,7 @@ #include "Move.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include @@ -30,9 +31,7 @@ Move::Move() positionalArguments.append({QString("group"), QObject::tr("Path of the destination group."), QString("")}); } -Move::~Move() -{ -} +Move::~Move() = default; int Move::executeWithDatabase(QSharedPointer database, QSharedPointer parser) { @@ -45,18 +44,18 @@ int Move::executeWithDatabase(QSharedPointer database, QSharedPointer< Entry* entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } Group* destinationGroup = database->rootGroup()->findGroupByPath(destinationPath); if (!destinationGroup) { - err << QObject::tr("Could not find group with path %1.").arg(destinationPath) << endl; + err << QObject::tr("Could not find group with path %1.").arg(destinationPath) << Qt::endl; return EXIT_FAILURE; } if (destinationGroup == entry->parent()) { - err << QObject::tr("Entry is already in group %1.").arg(destinationPath) << endl; + err << QObject::tr("Entry is already in group %1.").arg(destinationPath) << Qt::endl; return EXIT_FAILURE; } @@ -66,10 +65,10 @@ int Move::executeWithDatabase(QSharedPointer database, QSharedPointer< QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << endl; + err << QObject::tr("Writing the database failed %1.").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } - out << QObject::tr("Successfully moved entry %1 to group %2.").arg(entry->title(), destinationPath) << endl; + out << QObject::tr("Successfully moved entry %1 to group %2.").arg(entry->title(), destinationPath) << Qt::endl; return EXIT_SUCCESS; } diff --git a/src/cli/Move.h b/src/cli/Move.h index c506085a5..e87b0c795 100644 --- a/src/cli/Move.h +++ b/src/cli/Move.h @@ -24,9 +24,9 @@ class Move : public DatabaseCommand { public: Move(); - ~Move(); + ~Move() override; - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; }; #endif // KEEPASSXC_MOVE_H diff --git a/src/cli/Remove.cpp b/src/cli/Remove.cpp index f383d1636..cc70be7d1 100644 --- a/src/cli/Remove.cpp +++ b/src/cli/Remove.cpp @@ -18,6 +18,7 @@ #include "Remove.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include "core/Metadata.h" @@ -35,10 +36,10 @@ int Remove::executeWithDatabase(QSharedPointer database, QSharedPointe auto& out = parser->isSet(Command::QuietOption) ? Utils::DEVNULL : Utils::STDOUT; auto& err = Utils::STDERR; - auto& entryPath = parser->positionalArguments().at(1); + auto entryPath = parser->positionalArguments().at(1); QPointer entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Entry %1 not found.").arg(entryPath) << endl; + err << QObject::tr("Entry %1 not found.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } @@ -50,18 +51,18 @@ int Remove::executeWithDatabase(QSharedPointer database, QSharedPointe recycled = false; } else { database->recycleEntry(entry); - }; + } QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Unable to save database to file: %1").arg(errorMessage) << endl; + err << QObject::tr("Unable to save database to file: %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } if (recycled) { - out << QObject::tr("Successfully recycled entry %1.").arg(entryTitle) << endl; + out << QObject::tr("Successfully recycled entry %1.").arg(entryTitle) << Qt::endl; } else { - out << QObject::tr("Successfully deleted entry %1.").arg(entryTitle) << endl; + out << QObject::tr("Successfully deleted entry %1.").arg(entryTitle) << Qt::endl; } return EXIT_SUCCESS; diff --git a/src/cli/Remove.h b/src/cli/Remove.h index 6019bfa16..640e94ea3 100644 --- a/src/cli/Remove.h +++ b/src/cli/Remove.h @@ -25,7 +25,7 @@ class Remove : public DatabaseCommand public: Remove(); - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; }; #endif // KEEPASSXC_REMOVE_H diff --git a/src/cli/RemoveGroup.cpp b/src/cli/RemoveGroup.cpp index 6455af496..43446a0e7 100644 --- a/src/cli/RemoveGroup.cpp +++ b/src/cli/RemoveGroup.cpp @@ -18,6 +18,7 @@ #include "RemoveGroup.h" #include "Utils.h" +#include "core/Global.h" #include "core/Group.h" #include "core/Metadata.h" @@ -30,9 +31,7 @@ RemoveGroup::RemoveGroup() positionalArguments.append({QString("group"), QObject::tr("Path of the group to remove."), QString("")}); } -RemoveGroup::~RemoveGroup() -{ -} +RemoveGroup::~RemoveGroup() = default; int RemoveGroup::executeWithDatabase(QSharedPointer database, QSharedPointer parser) { @@ -44,12 +43,12 @@ int RemoveGroup::executeWithDatabase(QSharedPointer database, QSharedP // Recursive option means were looking for a group to remove. QPointer group = database->rootGroup()->findGroupByPath(groupPath); if (!group) { - err << QObject::tr("Group %1 not found.").arg(groupPath) << endl; + err << QObject::tr("Group %1 not found.").arg(groupPath) << Qt::endl; return EXIT_FAILURE; } if (group == database->rootGroup()) { - err << QObject::tr("Cannot remove root group from database.") << endl; + err << QObject::tr("Cannot remove root group from database.") << Qt::endl; return EXIT_FAILURE; } @@ -64,14 +63,14 @@ int RemoveGroup::executeWithDatabase(QSharedPointer database, QSharedP QString errorMessage; if (!database->save(Database::Atomic, {}, &errorMessage)) { - err << QObject::tr("Unable to save database to file: %1").arg(errorMessage) << endl; + err << QObject::tr("Unable to save database to file: %1").arg(errorMessage) << Qt::endl; return EXIT_FAILURE; } if (recycled) { - out << QObject::tr("Successfully recycled group %1.").arg(groupPath) << endl; + out << QObject::tr("Successfully recycled group %1.").arg(groupPath) << Qt::endl; } else { - out << QObject::tr("Successfully deleted group %1.").arg(groupPath) << endl; + out << QObject::tr("Successfully deleted group %1.").arg(groupPath) << Qt::endl; } return EXIT_SUCCESS; diff --git a/src/cli/RemoveGroup.h b/src/cli/RemoveGroup.h index 2b5194665..20518a005 100644 --- a/src/cli/RemoveGroup.h +++ b/src/cli/RemoveGroup.h @@ -24,9 +24,9 @@ class RemoveGroup : public DatabaseCommand { public: RemoveGroup(); - ~RemoveGroup(); + ~RemoveGroup() override; - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; }; #endif // KEEPASSXC_REMOVEGROUP_H diff --git a/src/cli/Search.cpp b/src/cli/Search.cpp index 44f1743e3..fcaeadd6a 100644 --- a/src/cli/Search.cpp +++ b/src/cli/Search.cpp @@ -21,6 +21,7 @@ #include "Utils.h" #include "core/EntrySearcher.h" +#include "core/Global.h" #include "core/Group.h" Search::Search() @@ -40,12 +41,12 @@ int Search::executeWithDatabase(QSharedPointer database, QSharedPointe EntrySearcher searcher; auto results = searcher.search(args.at(1), database->rootGroup(), true); if (results.isEmpty()) { - err << "No results for that search term." << endl; + err << "No results for that search term." << Qt::endl; return EXIT_FAILURE; } for (const Entry* result : asConst(results)) { - out << result->path().prepend('/') << endl; + out << result->path().prepend('/') << Qt::endl; } return EXIT_SUCCESS; } diff --git a/src/cli/Show.cpp b/src/cli/Show.cpp index f4d8097f6..a65809a16 100644 --- a/src/cli/Show.cpp +++ b/src/cli/Show.cpp @@ -23,21 +23,21 @@ #include -const QCommandLineOption Show::TotpOption = QCommandLineOption(QStringList() << "t" - << "totp", - QObject::tr("Show the entry's current TOTP.")); +const QCommandLineOption Show::TotpOption = + QCommandLineOption(QStringList() << "t" << "totp", QObject::tr("Show the entry's current TOTP.")); const QCommandLineOption Show::ProtectedAttributesOption = - QCommandLineOption(QStringList() << "s" - << "show-protected", + QCommandLineOption(QStringList() << "s" << "show-protected", QObject::tr("Show the protected attributes in clear text.")); +const QCommandLineOption Show::AllAttributesOption = + QCommandLineOption(QStringList() << "all", QObject::tr("Show all the attributes of the entry.")); + const QCommandLineOption Show::AttachmentsOption = QCommandLineOption(QStringList() << "show-attachments", QObject::tr("Show the attachments of the entry.")); const QCommandLineOption Show::AttributesOption = QCommandLineOption( - QStringList() << "a" - << "attributes", + QStringList() << "a" << "attributes", QObject::tr( "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. " @@ -51,6 +51,7 @@ Show::Show() options.append(Show::TotpOption); options.append(Show::AttributesOption); options.append(Show::ProtectedAttributesOption); + options.append(Show::AllAttributesOption); options.append(Show::AttachmentsOption); positionalArguments.append({QString("entry"), QObject::tr("Name of the entry to show."), QString("")}); } @@ -64,72 +65,99 @@ int Show::executeWithDatabase(QSharedPointer database, QSharedPointer< const QString& entryPath = args.at(1); bool showTotp = parser->isSet(Show::TotpOption); bool showProtectedAttributes = parser->isSet(Show::ProtectedAttributesOption); + bool showAllAttributes = parser->isSet(Show::AllAttributesOption); QStringList attributes = parser->values(Show::AttributesOption); Entry* entry = database->rootGroup()->findEntryByPath(entryPath); if (!entry) { - err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << endl; + err << QObject::tr("Could not find entry with path %1.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } if (showTotp && !entry->hasTotp()) { - err << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << endl; + err << QObject::tr("Entry with path %1 has no TOTP set up.").arg(entryPath) << Qt::endl; return EXIT_FAILURE; } - // If no attributes specified, output the default attribute set. - bool showDefaultAttributes = attributes.isEmpty() && !showTotp; - if (showDefaultAttributes) { + bool attributesWereSpecified = true; + if (showAllAttributes) { + attributesWereSpecified = false; attributes = EntryAttributes::DefaultAttributes; + for (QString fieldName : Utils::EntryFieldNames) { + attributes.append(fieldName); + } + // Adding the custom attributes after the default attributes so that + // the default attributes are always shown first. + for (QString attributeName : entry->attributes()->keys()) { + if (EntryAttributes::DefaultAttributes.contains(attributeName)) { + continue; + } + attributes.append(attributeName); + } + } else if (attributes.isEmpty() && !showTotp) { + // If no attributes are specified, output the default attribute set. + attributesWereSpecified = false; + attributes = EntryAttributes::DefaultAttributes; + for (QString fieldName : Utils::EntryFieldNames) { + attributes.append(fieldName); + } } // Iterate over the attributes and output them line-by-line. bool encounteredError = false; for (const QString& attributeName : asConst(attributes)) { + if (Utils::EntryFieldNames.contains(attributeName)) { + if (!attributesWereSpecified) { + out << attributeName << ": "; + } + out << Utils::getTopLevelField(entry, attributeName) << Qt::endl; + continue; + } + QStringList attrs = Utils::findAttributes(*entry->attributes(), attributeName); if (attrs.isEmpty()) { encounteredError = true; - err << QObject::tr("ERROR: unknown attribute %1.").arg(attributeName) << endl; + err << QObject::tr("ERROR: unknown attribute %1.").arg(attributeName) << Qt::endl; continue; } else if (attrs.size() > 1) { encounteredError = true; err << QObject::tr("ERROR: attribute %1 is ambiguous, it matches %2.") .arg(attributeName, QLocale().createSeparatedList(attrs)) - << endl; + << Qt::endl; continue; } QString canonicalName = attrs[0]; - if (showDefaultAttributes) { + if (!attributesWereSpecified) { out << canonicalName << ": "; } - if (entry->attributes()->isProtected(canonicalName) && showDefaultAttributes && !showProtectedAttributes) { - out << "PROTECTED" << endl; + if (entry->attributes()->isProtected(canonicalName) && !attributesWereSpecified && !showProtectedAttributes) { + out << "PROTECTED" << Qt::endl; } else { - out << entry->resolveMultiplePlaceholders(entry->attributes()->value(canonicalName)) << endl; + out << entry->resolveMultiplePlaceholders(entry->attributes()->value(canonicalName)) << Qt::endl; } } if (parser->isSet(Show::AttachmentsOption)) { // Separate attachment output from attributes output via a newline. - out << endl; + out << Qt::endl; EntryAttachments* attachments = entry->attachments(); if (attachments->isEmpty()) { - out << QObject::tr("No attachments present.") << endl; + out << QObject::tr("No attachments present.") << Qt::endl; } else { - out << QObject::tr("Attachments:") << endl; + out << QObject::tr("Attachments:") << Qt::endl; // Iterate over the attachments and output their names and size line-by-line, indented. for (const QString& attachmentName : attachments->keys()) { // TODO: use QLocale::formattedDataSize when >= Qt 5.10 QString attachmentSize = Tools::humanReadableFileSize(attachments->value(attachmentName).size(), 1); - out << " " << attachmentName << " (" << attachmentSize << ")" << endl; + out << " " << attachmentName << " (" << attachmentSize << ")" << Qt::endl; } } } if (showTotp) { - out << entry->totp() << endl; + out << entry->totp() << Qt::endl; } return encounteredError ? EXIT_FAILURE : EXIT_SUCCESS; diff --git a/src/cli/Show.h b/src/cli/Show.h index 93713dbd8..ca00a815f 100644 --- a/src/cli/Show.h +++ b/src/cli/Show.h @@ -25,9 +25,10 @@ class Show : public DatabaseCommand public: Show(); - int executeWithDatabase(QSharedPointer db, QSharedPointer parser); + int executeWithDatabase(QSharedPointer db, QSharedPointer parser) override; static const QCommandLineOption TotpOption; + static const QCommandLineOption AllAttributesOption; static const QCommandLineOption AttributesOption; static const QCommandLineOption ProtectedAttributesOption; static const QCommandLineOption AttachmentsOption; diff --git a/src/cli/Utils.cpp b/src/cli/Utils.cpp index ec4fc81f7..ae4874c43 100644 --- a/src/cli/Utils.cpp +++ b/src/cli/Utils.cpp @@ -18,7 +18,9 @@ #include "Utils.h" #include "core/Database.h" +#include "core/Entry.h" #include "core/EntryAttributes.h" +#include "core/Global.h" #include "keys/FileKey.h" #ifdef WITH_XC_YUBIKEY #include "keys/ChallengeResponseKey.h" @@ -41,6 +43,11 @@ namespace Utils QTextStream STDIN; QTextStream DEVNULL; +#ifdef Q_OS_WIN + UINT origCodePage; + UINT origOutputCodePage; +#endif + void setDefaultTextStreams() { auto fd = new QFile(); @@ -62,6 +69,24 @@ namespace Utils fd->open(fopen("/dev/null", "w"), QIODevice::WriteOnly); #endif DEVNULL.setDevice(fd); + +#ifdef Q_OS_WIN + origCodePage = GetConsoleCP(); + origOutputCodePage = GetConsoleOutputCP(); + + // On Windows, we ask via keepassxc-cli.exe.manifest to use UTF-8, + // but the console code-page isn't automatically changed to match. + SetConsoleCP(GetACP()); + SetConsoleOutputCP(GetACP()); +#endif + } + + void resetTextStreams() + { +#ifdef Q_OS_WIN + SetConsoleCP(origCodePage); + SetConsoleOutputCP(origOutputCodePage); +#endif } void setStdinEcho(bool enable = true) @@ -103,22 +128,22 @@ namespace Utils QFileInfo dbFileInfo(databaseFilename); if (dbFileInfo.canonicalFilePath().isEmpty()) { - err << QObject::tr("Failed to open database file %1: not found").arg(databaseFilename) << endl; + err << QObject::tr("Failed to open database file %1: not found").arg(databaseFilename) << Qt::endl; return {}; } if (!dbFileInfo.isFile()) { - err << QObject::tr("Failed to open database file %1: not a plain file").arg(databaseFilename) << endl; + err << QObject::tr("Failed to open database file %1: not a plain file").arg(databaseFilename) << Qt::endl; return {}; } if (!dbFileInfo.isReadable()) { - err << QObject::tr("Failed to open database file %1: not readable").arg(databaseFilename) << endl; + err << QObject::tr("Failed to open database file %1: not readable").arg(databaseFilename) << Qt::endl; return {}; } if (isPasswordProtected) { - err << QObject::tr("Enter password to unlock %1: ").arg(databaseFilename) << flush; + err << QObject::tr("Enter password to unlock %1: ").arg(databaseFilename) << Qt::flush; QString line = Utils::getPassword(quiet); auto passwordKey = QSharedPointer::create(); passwordKey->setPassword(line); @@ -130,7 +155,7 @@ namespace Utils QString errorMessage; // LCOV_EXCL_START if (!fileKey->load(keyFilename, &errorMessage)) { - err << QObject::tr("Failed to load key file %1: %2").arg(keyFilename, errorMessage) << endl; + err << QObject::tr("Failed to load key file %1: %2").arg(keyFilename, errorMessage) << Qt::endl; return {}; } @@ -138,7 +163,7 @@ namespace Utils err << QObject::tr("WARNING: You are using an old key file format which KeePassXC may\n" "stop supporting in the future.\n\n" "Please consider generating a new key file.") - << endl; + << Qt::endl; } // LCOV_EXCL_STOP @@ -155,20 +180,20 @@ namespace Utils slot = parts[0].toInt(&ok); if (!ok || (slot != 1 && slot != 2)) { - err << QObject::tr("Invalid YubiKey slot %1").arg(parts[0]) << endl; + err << QObject::tr("Invalid YubiKey slot %1").arg(parts[0]) << Qt::endl; return {}; } if (parts.size() > 1) { serial = parts[1].toUInt(&ok, 10); if (!ok) { - err << QObject::tr("Invalid YubiKey serial %1").arg(parts[1]) << endl; + err << QObject::tr("Invalid YubiKey serial %1").arg(parts[1]) << Qt::endl; return {}; } } QObject::connect(YubiKey::instance(), &YubiKey::userInteractionRequest, [&] { - err << QObject::tr("Please present or touch your YubiKey to continue.") << "\n\n" << flush; + err << QObject::tr("Please present or touch your YubiKey to continue.") << "\n\n" << Qt::flush; }); auto key = QSharedPointer(new ChallengeResponseKey({serial, slot})); @@ -185,7 +210,7 @@ namespace Utils if (db->open(databaseFilename, compositeKey, &error)) { return db; } else { - err << error << endl; + err << error << Qt::endl; return {}; } } @@ -201,7 +226,7 @@ namespace Utils #ifdef __AFL_COMPILER // Fuzz test build takes password from environment variable to // allow non-interactive operation - const auto env = getenv("KEYPASSXC_AFL_PASSWORD"); + const auto env = getenv("KEEPASSXC_AFL_PASSWORD"); return env ? env : ""; #else auto& in = STDIN; @@ -210,7 +235,7 @@ namespace Utils setStdinEcho(false); QString line = in.readLine(); setStdinEcho(true); - out << endl; + out << Qt::endl; return line; #endif // __AFL_COMPILER @@ -240,7 +265,7 @@ namespace Utils if (ans.toLower().startsWith("y")) { passwordKey = QSharedPointer::create(""); } - err << endl; + err << Qt::endl; } else { err << QObject::tr("Repeat password: "); err.flush(); @@ -249,7 +274,7 @@ namespace Utils if (password == repeat) { passwordKey = QSharedPointer::create(password); } else { - err << QObject::tr("Error: Passwords do not match.") << endl; + err << QObject::tr("Error: Passwords do not match.") << Qt::endl; } } @@ -295,7 +320,7 @@ namespace Utils QScopedPointer clipProcess(new QProcess(nullptr)); // Skip empty parts, otherwise the program may clip the empty string - QStringList progArgs = prog.second.split(" ", QString::SkipEmptyParts); + QStringList progArgs = prog.second.split(" ", Qt::SkipEmptyParts); clipProcess->start(prog.first, progArgs); clipProcess->waitForStarted(); @@ -321,6 +346,8 @@ namespace Utils if (clipProcess->exitCode() == EXIT_SUCCESS) { return EXIT_SUCCESS; + } else { + failedProgramNames.append(prog.first); } } @@ -368,6 +395,17 @@ namespace Utils return result; } + QString getTopLevelField(const Entry* entry, const QString& fieldName) + { + if (fieldName == UuidFieldName) { + return entry->uuid().toString(); + } + if (fieldName == TagsFieldName) { + return entry->tags(); + } + return ""; + } + QStringList findAttributes(const EntryAttributes& attributes, const QString& name) { QStringList result; @@ -394,7 +432,7 @@ namespace Utils * * @param path Path to the key file to be loaded * @param fileKey Resulting fileKey - * @return true if the key file was loaded succesfully + * @return true if the key file was loaded successfully */ bool loadFileKey(const QString& path, QSharedPointer& fileKey) { @@ -406,13 +444,13 @@ namespace Utils fileKey->create(path, &error); if (!error.isEmpty()) { - err << QObject::tr("Creating KeyFile %1 failed: %2").arg(path, error) << endl; + err << QObject::tr("Creating KeyFile %1 failed: %2").arg(path, error) << Qt::endl; return false; } } if (!fileKey->load(path, &error)) { - err << QObject::tr("Loading KeyFile %1 failed: %2").arg(path, error) << endl; + err << QObject::tr("Loading KeyFile %1 failed: %2").arg(path, error) << Qt::endl; return false; } diff --git a/src/cli/Utils.h b/src/cli/Utils.h index dedc818f6..6a272fc62 100644 --- a/src/cli/Utils.h +++ b/src/cli/Utils.h @@ -22,6 +22,7 @@ class CompositeKey; class Database; +class Entry; class EntryAttributes; class FileKey; class PasswordKey; @@ -33,7 +34,12 @@ namespace Utils extern QTextStream STDIN; extern QTextStream DEVNULL; + static const QString UuidFieldName = "Uuid"; + static const QString TagsFieldName = "Tags"; + static const QStringList EntryFieldNames(QStringList() << UuidFieldName << TagsFieldName); + void setDefaultTextStreams(); + void resetTextStreams(); void setStdinEcho(bool enable); bool loadFileKey(const QString& path, QSharedPointer& fileKey); @@ -55,6 +61,10 @@ namespace Utils * (case-insensitive). */ QStringList findAttributes(const EntryAttributes& attributes, const QString& name); + /** + * Get the value of a top-level Entry field using its name. + */ + QString getTopLevelField(const Entry* entry, const QString& fieldName); }; // namespace Utils #endif // KEEPASSXC_UTILS_H diff --git a/src/cli/keepassxc-cli.cpp b/src/cli/keepassxc-cli.cpp index 120c70647..2c4bd1aa2 100644 --- a/src/cli/keepassxc-cli.cpp +++ b/src/cli/keepassxc-cli.cpp @@ -24,6 +24,7 @@ #include "Utils.h" #include "config-keepassx.h" #include "core/Bootstrap.h" +#include "core/Config.h" #include "core/Metadata.h" #include "core/Tools.h" #include "crypto/Crypto.h" @@ -153,7 +154,7 @@ int enterInteractiveMode(const QStringList& arguments) auto cmd = Commands::getCommand(args[0]); if (!cmd) { - err << QObject::tr("Unknown command %1").arg(args[0]) << endl; + err << QObject::tr("Unknown command %1").arg(args[0]) << Qt::endl; continue; } else if (cmd->name == "quit" || cmd->name == "exit") { break; @@ -180,8 +181,10 @@ int main(int argc, char** argv) QCoreApplication app(argc, argv); QCoreApplication::setApplicationVersion(KEEPASSXC_VERSION); + // Cleanup code pages after cli exits + QObject::connect(&app, &QCoreApplication::destroyed, &app, [] { Utils::resetTextStreams(); }); - Bootstrap::bootstrap(); + Bootstrap::bootstrap(config()->get(Config::GUI_Language).toString()); Utils::setDefaultTextStreams(); Commands::setupCommands(false); @@ -215,11 +218,13 @@ int main(int argc, char** argv) if (parser.positionalArguments().empty()) { if (parser.isSet("version")) { // Switch to parser.showVersion() when available (QT 5.4). - out << KEEPASSXC_VERSION << endl; + out << KEEPASSXC_VERSION << Qt::endl; return EXIT_SUCCESS; - } else if (parser.isSet(debugInfoOption)) { + } + + if (parser.isSet(debugInfoOption)) { QString debugInfo = Tools::debugInfo().append("\n").append(Crypto::debugInfo()); - out << debugInfo << endl; + out << debugInfo << Qt::endl; return EXIT_SUCCESS; } // showHelp exits the application immediately. @@ -233,7 +238,7 @@ int main(int argc, char** argv) auto command = Commands::getCommand(commandName); if (!command) { - err << QObject::tr("Invalid command %1.").arg(commandName) << endl; + err << QObject::tr("Invalid command %1.").arg(commandName) << Qt::endl; err << parser.helpText(); return EXIT_FAILURE; } diff --git a/src/cli/keepassxc-cli.exe.manifest b/src/cli/keepassxc-cli.exe.manifest new file mode 100644 index 000000000..9ef750e6f --- /dev/null +++ b/src/cli/keepassxc-cli.exe.manifest @@ -0,0 +1,8 @@ + + + + + UTF-8 + + + diff --git a/src/config-keepassx.h.cmake b/src/config-keepassx.h.cmake index 6caa89d81..1b45315f6 100644 --- a/src/config-keepassx.h.cmake +++ b/src/config-keepassx.h.cmake @@ -15,12 +15,15 @@ #cmakedefine WITH_XC_AUTOTYPE #cmakedefine WITH_XC_NETWORKING #cmakedefine WITH_XC_BROWSER +#cmakedefine WITH_XC_BROWSER_PASSKEYS #cmakedefine WITH_XC_YUBIKEY #cmakedefine WITH_XC_SSHAGENT #cmakedefine WITH_XC_KEESHARE #cmakedefine WITH_XC_UPDATECHECK #cmakedefine WITH_XC_FDOSECRETS #cmakedefine WITH_XC_DOCS +#cmakedefine WITH_XC_X11 +#cmakedefine WITH_XC_BOTAN3 #cmakedefine KEEPASSXC_BUILD_TYPE "@KEEPASSXC_BUILD_TYPE@" #cmakedefine KEEPASSXC_BUILD_TYPE_RELEASE @@ -37,4 +40,13 @@ #cmakedefine HAVE_RLIMIT_CORE 1 #cmakedefine HAVE_PT_DENY_ATTACH 1 +#cmakedefine01 XC_APPLE_COMPILER_SUPPORT_BIOMETRY() +#cmakedefine01 XC_APPLE_COMPILER_SUPPORT_TOUCH_ID() +#cmakedefine01 XC_APPLE_COMPILER_SUPPORT_WATCH() + +#define XC_COMPILER_SUPPORT(X) XC_COMPILER_SUPPORT_PRIVATE_DEFINITION_##X() +#define XC_COMPILER_SUPPORT_PRIVATE_DEFINITION_APPLE_BIOMETRY() XC_APPLE_COMPILER_SUPPORT_BIOMETRY() +#define XC_COMPILER_SUPPORT_PRIVATE_DEFINITION_TOUCH_ID() XC_APPLE_COMPILER_SUPPORT_TOUCH_ID() +#define XC_COMPILER_SUPPORT_PRIVATE_DEFINITION_WATCH_UNLOCK() XC_APPLE_COMPILER_SUPPORT_WATCH() + #endif // KEEPASSX_CONFIG_KEEPASSX_H diff --git a/src/core/Alloc.cpp b/src/core/Alloc.cpp index 38ee8c182..f9ec317cc 100644 --- a/src/core/Alloc.cpp +++ b/src/core/Alloc.cpp @@ -25,7 +25,7 @@ #elif defined(HAVE_MALLOC_H) #include #else -#include +#include #endif #if defined(NDEBUG) && !defined(__cpp_sized_deallocation) diff --git a/src/core/AsyncTask.h b/src/core/AsyncTask.h index 581865419..da7734c27 100644 --- a/src/core/AsyncTask.h +++ b/src/core/AsyncTask.h @@ -33,12 +33,10 @@ namespace AsyncTask * @param future future to wait for * @return async task result */ - template - typename std::result_of::type - waitForFuture(QFuture::type> future) + template T waitForFuture(QFuture future) { QEventLoop loop; - QFutureWatcher::type> watcher; + QFutureWatcher watcher; QObject::connect(&watcher, SIGNAL(finished()), &loop, SLOT(quit())); watcher.setFuture(future); loop.exec(); @@ -51,10 +49,9 @@ namespace AsyncTask * @param task std::function object to run * @return async task result */ - template - typename std::result_of::type runAndWaitForFuture(FunctionObject task) + template decltype(auto) runAndWaitForFuture(FunctionObject task) { - return waitForFuture(QtConcurrent::run(task)); + return waitForFuture(QtConcurrent::run(task)); } /** @@ -64,14 +61,13 @@ namespace AsyncTask * * @param task std::function object to run * @param context QObject responsible for calling this function - * @param callback std::function object to run after the task completess + * @param callback std::function object to run after the task completes */ template void runThenCallback(FunctionObject task, QObject* context, FunctionObject2 callback) { - typedef QFutureWatcher::type> FutureWatcher; auto future = QtConcurrent::run(task); - auto watcher = new FutureWatcher(context); + auto watcher = new QFutureWatcher(context); QObject::connect(watcher, &QFutureWatcherBase::finished, context, [=]() { watcher->deleteLater(); callback(future.result()); diff --git a/src/core/Base32.cpp b/src/core/Base32.cpp index 05841121a..d0a148eec 100644 --- a/src/core/Base32.cpp +++ b/src/core/Base32.cpp @@ -50,7 +50,7 @@ QVariant Base32::decode(const QByteArray& encodedData) } if (encodedData.size() % 8 != 0) { - return QVariant(); + return {}; } int nPads = 0; @@ -119,7 +119,7 @@ QVariant Base32::decode(const QByteArray& encodedData) continue; } else { // illegal character - return QVariant(); + return {}; } } } @@ -145,7 +145,7 @@ QVariant Base32::decode(const QByteArray& encodedData) QByteArray Base32::encode(const QByteArray& data) { if (data.size() < 1) { - return QByteArray(); + return {}; } const int nBits = data.size() * 8; diff --git a/src/core/Bootstrap.cpp b/src/core/Bootstrap.cpp index e01bf7337..061cba136 100644 --- a/src/core/Bootstrap.cpp +++ b/src/core/Bootstrap.cpp @@ -63,7 +63,7 @@ namespace Bootstrap * Perform early application bootstrapping that does not rely on a QApplication * being present. */ - void bootstrap() + void bootstrap(const QString& uiLanguage) { #ifdef QT_NO_DEBUG disableCoreDumps(); @@ -72,7 +72,7 @@ namespace Bootstrap setupSearchPaths(); applyEarlyQNetworkAccessManagerWorkaround(); - Translator::installTranslators(); + Translator::installTranslators(uiLanguage); } // LCOV_EXCL_START @@ -89,7 +89,9 @@ namespace Bootstrap success = success && (setrlimit(RLIMIT_CORE, &limit) == 0); #endif -#if defined(HAVE_PR_SET_DUMPABLE) +// NOTE: Dumps cannot be disabled for snap builds as it prevents desktop portals from working +// See https://github.com/keepassxreboot/keepassxc/issues/7607#issuecomment-1109005206 +#if defined(HAVE_PR_SET_DUMPABLE) && !defined(KEEPASSXC_DIST_SNAP) success = success && (prctl(PR_SET_DUMPABLE, 0) == 0); #endif @@ -127,6 +129,8 @@ namespace Bootstrap DWORD cbBufferSize = 0; PSID pLocalSystemSid = nullptr; DWORD pLocalSystemSidSize = SECURITY_MAX_SID_SIZE; + PSID pOwnerRightsSid = nullptr; + DWORD pOwnerRightsSidSize = SECURITY_MAX_SID_SIZE; // Access control list PACL pACL = nullptr; @@ -163,9 +167,21 @@ namespace Bootstrap goto Cleanup; } + // Retrieve CreatorOwnerRights SID + pOwnerRightsSid = static_cast(HeapAlloc(GetProcessHeap(), 0, pOwnerRightsSidSize)); + if (pOwnerRightsSid == nullptr) { + goto Cleanup; + } + + if (!CreateWellKnownSid(WinCreatorOwnerRightsSid, nullptr, pOwnerRightsSid, &pOwnerRightsSidSize)) { + auto error = GetLastError(); + goto Cleanup; + } + // Calculate the amount of memory that must be allocated for the DACL cbACL = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(pTokenUser->User.Sid) - + sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(pLocalSystemSid); + + sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(pLocalSystemSid) + sizeof(ACCESS_ALLOWED_ACE) + + GetLengthSid(pOwnerRightsSid); // Create and initialize an ACL pACL = static_cast(HeapAlloc(GetProcessHeap(), 0, cbACL)); @@ -187,6 +203,11 @@ namespace Bootstrap goto Cleanup; } + // Explicitly set "Process Owner" rights to Read Only. The default is Full Control. + if (!AddAccessAllowedAce(pACL, ACL_REVISION, READ_CONTROL, pOwnerRightsSid)) { + goto Cleanup; + } + #ifdef WITH_XC_SSHAGENT // OpenSSH for Windows ssh-agent service is running as LocalSystem if (!AddAccessAllowedAce(pACL, @@ -211,16 +232,19 @@ namespace Bootstrap Cleanup: - if (pACL != nullptr) { + if (pACL) { HeapFree(GetProcessHeap(), 0, pACL); } - if (pLocalSystemSid != nullptr) { + if (pLocalSystemSid) { HeapFree(GetProcessHeap(), 0, pLocalSystemSid); } - if (pTokenUser != nullptr) { + if (pOwnerRightsSid) { + HeapFree(GetProcessHeap(), 0, pOwnerRightsSid); + } + if (pTokenUser) { HeapFree(GetProcessHeap(), 0, pTokenUser); } - if (hToken != nullptr) { + if (hToken) { CloseHandle(hToken); } #endif diff --git a/src/core/Bootstrap.h b/src/core/Bootstrap.h index 9ec0c5dc8..bd2006cbb 100644 --- a/src/core/Bootstrap.h +++ b/src/core/Bootstrap.h @@ -18,9 +18,11 @@ #ifndef KEEPASSXC_BOOTSTRAP_H #define KEEPASSXC_BOOTSTRAP_H +#include + namespace Bootstrap { - void bootstrap(); + void bootstrap(const QString& uiLanguage = "system"); void disableCoreDumps(); bool createWindowsDACL(); void setupSearchPaths(); diff --git a/src/core/Clock.cpp b/src/core/Clock.cpp index 5704d4bff..f501daee7 100644 --- a/src/core/Clock.cpp +++ b/src/core/Clock.cpp @@ -16,6 +16,8 @@ */ #include "Clock.h" +#include + QSharedPointer Clock::m_instance; QDateTime Clock::currentDateTimeUtc() @@ -50,12 +52,12 @@ QDateTime Clock::serialized(const QDateTime& dateTime) QDateTime Clock::datetimeUtc(int year, int month, int day, int hour, int min, int second) { - return QDateTime(QDate(year, month, day), QTime(hour, min, second), Qt::UTC); + return {QDate(year, month, day), QTime(hour, min, second), Qt::UTC}; } QDateTime Clock::datetime(int year, int month, int day, int hour, int min, int second) { - return QDateTime(QDate(year, month, day), QTime(hour, min, second), Qt::LocalTime); + return {QDate(year, month, day), QTime(hour, min, second), Qt::LocalTime}; } QDateTime Clock::datetimeUtc(qint64 msecSinceEpoch) @@ -78,13 +80,15 @@ QDateTime Clock::parse(const QString& text, const QString& format) return QDateTime::fromString(text, format); } -Clock::~Clock() +QString Clock::toString(const QDateTime& dateTime) { + static QLocale locale; + return locale.toString(dateTime, QLocale::ShortFormat); } -Clock::Clock() -{ -} +Clock::~Clock() = default; + +Clock::Clock() = default; QDateTime Clock::currentDateTimeUtcImpl() const { diff --git a/src/core/Clock.h b/src/core/Clock.h index 4d1ee2537..ca2577e91 100644 --- a/src/core/Clock.h +++ b/src/core/Clock.h @@ -41,6 +41,8 @@ public: static QDateTime parse(const QString& text, Qt::DateFormat format = Qt::TextDate); static QDateTime parse(const QString& text, const QString& format); + static QString toString(const QDateTime& dateTime); + virtual ~Clock(); protected: diff --git a/src/core/Config.cpp b/src/core/Config.cpp index 98bbeeea0..f1a78830d 100644 --- a/src/core/Config.cpp +++ b/src/core/Config.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 KeePassXC Team + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2011 Felix Geyer * * This program is free software: you can redistribute it and/or modify @@ -66,6 +66,7 @@ static const QHash configStrings = { {Config::UseDirectWriteSaves,{QS("UseDirectWriteSaves"), Local, false}}, {Config::SearchLimitGroup,{QS("SearchLimitGroup"), Roaming, false}}, {Config::MinimizeOnOpenUrl,{QS("MinimizeOnOpenUrl"), Roaming, false}}, + {Config::OpenURLOnDoubleClick, {QS("OpenURLOnDoubleClick"), Roaming, true}}, {Config::HideWindowOnCopy,{QS("HideWindowOnCopy"), Roaming, false}}, {Config::MinimizeOnCopy,{QS("MinimizeOnCopy"), Roaming, true}}, {Config::MinimizeAfterUnlock,{QS("MinimizeAfterUnlock"), Roaming, false}}, @@ -76,11 +77,14 @@ static const QHash configStrings = { {Config::AutoTypeDelay,{QS("AutoTypeDelay"), Roaming, 25}}, {Config::AutoTypeStartDelay,{QS("AutoTypeStartDelay"), Roaming, 500}}, {Config::AutoTypeHideExpiredEntry,{QS("AutoTypeHideExpiredEntry"), Roaming, false}}, + {Config::AutoTypeDialogSortColumn,{QS("AutoTypeDialogSortColumn"), Roaming, 0}}, + {Config::AutoTypeDialogSortOrder,{QS("AutoTypeDialogSortOrder"), Roaming, Qt::AscendingOrder}}, {Config::GlobalAutoTypeKey,{QS("GlobalAutoTypeKey"), Roaming, 0}}, {Config::GlobalAutoTypeModifiers,{QS("GlobalAutoTypeModifiers"), Roaming, 0}}, {Config::GlobalAutoTypeRetypeTime,{QS("GlobalAutoTypeRetypeTime"), Roaming, 15}}, {Config::FaviconDownloadTimeout,{QS("FaviconDownloadTimeout"), Roaming, 10}}, {Config::UpdateCheckMessageShown,{QS("UpdateCheckMessageShown"), Roaming, false}}, + {Config::DefaultDatabaseFileName,{QS("DefaultDatabaseFileName"), Roaming, {}}}, {Config::LastDatabases, {QS("LastDatabases"), Local, {}}}, {Config::LastKeyFiles, {QS("LastKeyFiles"), Local, {}}}, @@ -91,11 +95,14 @@ static const QHash configStrings = { // GUI {Config::GUI_Language, {QS("GUI/Language"), Roaming, QS("system")}}, + {Config::GUI_HideMenubar, {QS("GUI/HideMenubar"), Roaming, false}}, {Config::GUI_HideToolbar, {QS("GUI/HideToolbar"), Roaming, false}}, {Config::GUI_MovableToolbar, {QS("GUI/MovableToolbar"), Roaming, false}}, + {Config::GUI_HideGroupPanel, {QS("GUI/HideGroupPanel"), Roaming, false}}, {Config::GUI_HidePreviewPanel, {QS("GUI/HidePreviewPanel"), Roaming, false}}, {Config::GUI_AlwaysOnTop, {QS("GUI/GUI_AlwaysOnTop"), Local, false}}, {Config::GUI_ToolButtonStyle, {QS("GUI/ToolButtonStyle"), Roaming, Qt::ToolButtonIconOnly}}, + {Config::GUI_LaunchAtStartup, {QS("GUI/LaunchAtStartup"), Roaming, false}}, {Config::GUI_ShowTrayIcon, {QS("GUI/ShowTrayIcon"), Roaming, false}}, {Config::GUI_TrayIconAppearance, {QS("GUI/TrayIconAppearance"), Roaming, {}}}, {Config::GUI_MinimizeToTray, {QS("GUI/MinimizeToTray"), Roaming, false}}, @@ -103,7 +110,7 @@ static const QHash configStrings = { {Config::GUI_MinimizeOnClose, {QS("GUI/MinimizeOnClose"), Roaming, false}}, {Config::GUI_HideUsernames, {QS("GUI/HideUsernames"), Roaming, false}}, {Config::GUI_HidePasswords, {QS("GUI/HidePasswords"), Roaming, true}}, - {Config::GUI_AdvancedSettings, {QS("GUI/AdvancedSettings"), Roaming, false}}, + {Config::GUI_ColorPasswords, {QS("GUI/ColorPasswords"), Roaming, false}}, {Config::GUI_MonospaceNotes, {QS("GUI/MonospaceNotes"), Roaming, false}}, {Config::GUI_ApplicationTheme, {QS("GUI/ApplicationTheme"), Roaming, QS("auto")}}, {Config::GUI_CompactMode, {QS("GUI/CompactMode"), Roaming, false}}, @@ -112,6 +119,7 @@ static const QHash configStrings = { {Config::GUI_CheckForUpdatesIncludeBetas, {QS("GUI/CheckForUpdatesIncludeBetas"), Roaming, false}}, {Config::GUI_ShowExpiredEntriesOnDatabaseUnlock, {QS("GUI/ShowExpiredEntriesOnDatabaseUnlock"), Roaming, true}}, {Config::GUI_ShowExpiredEntriesOnDatabaseUnlockOffsetDays, {QS("GUI/ShowExpiredEntriesOnDatabaseUnlockOffsetDays"), Roaming, 3}}, + {Config::GUI_FontSizeOffset, {QS("GUI/FontSizeOffset"), Local, 0}}, {Config::GUI_MainWindowGeometry, {QS("GUI/MainWindowGeometry"), Local, {}}}, {Config::GUI_MainWindowState, {QS("GUI/MainWindowState"), Local, {}}}, @@ -125,23 +133,25 @@ static const QHash configStrings = { // Security {Config::Security_ClearClipboard, {QS("Security/ClearClipboard"), Roaming, true}}, {Config::Security_ClearClipboardTimeout, {QS("Security/ClearClipboardTimeout"), Roaming, 10}}, - {Config::Security_ClearSearch, {QS("Security/ClearSearch"), Roaming, true}}, + {Config::Security_ClearSearch, {QS("Security/ClearSearch"), Roaming, false}}, {Config::Security_ClearSearchTimeout, {QS("Security/ClearSearchTimeout"), Roaming, 5}}, {Config::Security_HideNotes, {QS("Security/Security_HideNotes"), Roaming, false}}, {Config::Security_LockDatabaseIdle, {QS("Security/LockDatabaseIdle"), Roaming, false}}, {Config::Security_LockDatabaseIdleSeconds, {QS("Security/LockDatabaseIdleSeconds"), Roaming, 240}}, {Config::Security_LockDatabaseMinimize, {QS("Security/LockDatabaseMinimize"), Roaming, false}}, {Config::Security_LockDatabaseScreenLock, {QS("Security/LockDatabaseScreenLock"), Roaming, true}}, + {Config::Security_LockDatabaseOnUserSwitch, {QS("Security/LockDatabaseOnUserSwitch"), Roaming, true}}, {Config::Security_RelockAutoType, {QS("Security/RelockAutoType"), Roaming, false}}, - {Config::Security_PasswordsRepeatVisible, {QS("Security/PasswordsRepeatVisible"), Roaming, true}}, {Config::Security_PasswordsHidden, {QS("Security/PasswordsHidden"), Roaming, true}}, {Config::Security_PasswordEmptyPlaceholder, {QS("Security/PasswordEmptyPlaceholder"), Roaming, false}}, {Config::Security_HidePasswordPreviewPanel, {QS("Security/HidePasswordPreviewPanel"), Roaming, true}}, + {Config::Security_HideTotpPreviewPanel, {QS("Security/HideTotpPreviewPanel"), Roaming, false}}, {Config::Security_AutoTypeAsk, {QS("Security/AutotypeAsk"), Roaming, true}}, {Config::Security_IconDownloadFallback, {QS("Security/IconDownloadFallback"), Roaming, false}}, {Config::Security_NoConfirmMoveEntryToRecycleBin,{QS("Security/NoConfirmMoveEntryToRecycleBin"), Roaming, true}}, {Config::Security_EnableCopyOnDoubleClick,{QS("Security/EnableCopyOnDoubleClick"), Roaming, false}}, {Config::Security_QuickUnlock, {QS("Security/QuickUnlock"), Local, true}}, + {Config::Security_DatabasePasswordMinimumQuality, {QS("Security/DatabasePasswordMinimumQuality"), Local, 0}}, // Browser {Config::Browser_Enabled, {QS("Browser/Enabled"), Roaming, false}}, @@ -153,6 +163,7 @@ static const QHash configStrings = { {Config::Browser_UseCustomProxy, {QS("Browser/UseCustomProxy"), Roaming, false}}, {Config::Browser_CustomProxyLocation, {QS("Browser/CustomProxyLocation"), Roaming, {}}}, {Config::Browser_UpdateBinaryPath, {QS("Browser/UpdateBinaryPath"), Roaming, true}}, + {Config::Browser_AllowGetDatabaseEntriesRequest, {QS("Browser/AllowGetDatabaseEntriesRequest"), Roaming, false}}, {Config::Browser_AllowExpiredCredentials, {QS("Browser/AllowExpiredCredentials"), Roaming, false}}, {Config::Browser_AlwaysAllowAccess, {QS("Browser/AlwaysAllowAccess"), Roaming, false}}, {Config::Browser_AlwaysAllowUpdate, {QS("Browser/AlwaysAllowUpdate"), Roaming, false}}, @@ -163,6 +174,7 @@ static const QHash configStrings = { {Config::Browser_UseCustomBrowser, {QS("Browser/UseCustomBrowser"), Local, false}}, {Config::Browser_CustomBrowserType, {QS("Browser/CustomBrowserType"), Local, -1}}, {Config::Browser_CustomBrowserLocation, {QS("Browser/CustomBrowserLocation"), Local, {}}}, + {Config::Browser_AllowLocalhostWithPasskeys, {QS("Browser/Browser_AllowLocalhostWithPasskeys"), Roaming, false}}, #ifdef QT_DEBUG {Config::Browser_CustomExtensionId, {QS("Browser/CustomExtensionId"), Local, {}}}, #endif @@ -213,7 +225,6 @@ static const QHash configStrings = { // Messages {Config::Messages_NoLegacyKeyFileWarning, {QS("Messages/NoLegacyKeyFileWarning"), Roaming, false}}, - {Config::Messages_Qt55CompatibilityWarning, {QS("Messages/Qt55CompatibilityWarning"), Local, false}}, {Config::Messages_HidePreReleaseWarning, {QS("Messages/HidePreReleaseWarning"), Local, {}}}}; // clang-format on @@ -296,6 +307,45 @@ void Config::resetToDefaults() } } +bool Config::importSettings(const QString& fileName) +{ + // Ensure file is valid ini with values + QSettings settings(fileName, QSettings::IniFormat); + if (settings.status() != QSettings::NoError || settings.allKeys().isEmpty()) { + return false; + } + + // Only import valid roaming settings + auto isValidSetting = [](const QString& key) { + for (const auto& value : configStrings.values()) { + if (value.type == ConfigType::Roaming && value.name == key) { + return true; + } + } + return false; + }; + + // Clear existing settings and set valid items + m_settings->clear(); + for (const auto& key : settings.allKeys()) { + if (isValidSetting(key)) { + m_settings->setValue(key, settings.value(key)); + } + } + + sync(); + + return true; +} + +void Config::exportSettings(const QString& fileName) const +{ + QSettings settings(fileName, QSettings::IniFormat); + for (const auto& key : m_settings->allKeys()) { + settings.setValue(key, m_settings->value(key)); + } +} + /** * Map of configuration file settings that are either deprecated, or have * had their name changed to their new config enum values. @@ -324,7 +374,7 @@ static const QHash deprecationMap = { {QS("security/passwordscleartext"), Config::Security_PasswordsHidden}, {QS("security/passwordemptynodots"), Config::Security_PasswordEmptyPlaceholder}, {QS("security/HidePasswordPreviewPanel"), Config::Security_HidePasswordPreviewPanel}, - {QS("security/passwordsrepeat"), Config::Security_PasswordsRepeatVisible}, + {QS("security/passwordsrepeat"), Config::Deleted}, {QS("security/hidenotes"), Config::Security_HideNotes}, {QS("KeeShare/Settings.own"), Config::KeeShare_Own}, {QS("KeeShare/Settings.foreign"), Config::KeeShare_Foreign}, @@ -354,7 +404,7 @@ static const QHash deprecationMap = { {QS("generator/WordList"), Config::PasswordGenerator_WordList}, {QS("generator/WordCase"), Config::PasswordGenerator_WordCase}, {QS("generator/Type"), Config::PasswordGenerator_Type}, - {QS("QtErrorMessageShown"), Config::Messages_Qt55CompatibilityWarning}, + {QS("QtErrorMessageShown"), Config::Deleted}, {QS("GUI/HidePasswords"), Config::Deleted}, {QS("GUI/DarkTrayIcon"), Config::Deleted}, @@ -367,7 +417,11 @@ static const QHash deprecationMap = { {QS("UseTouchID"), Config::Deleted}, {QS("Security/ResetTouchId"), Config::Deleted}, {QS("Security/ResetTouchIdTimeout"), Config::Deleted}, - {QS("Security/ResetTouchIdScreenlock"), Config::Deleted}}; + {QS("Security/ResetTouchIdScreenlock"), Config::Deleted}, + + // 2.8.0 + {QS("GUI/AdvancedSettings"), Config::Deleted}, + {QS("Security/PasswordsRepeatVisible"), Config::Deleted}}; /** * Migrate settings from previous versions. @@ -452,9 +506,7 @@ Config::Config(QObject* parent) init(configFiles.first, configFiles.second); } -Config::~Config() -{ -} +Config::~Config() = default; void Config::init(const QString& configFileName, const QString& localConfigFileName) { @@ -468,6 +520,28 @@ void Config::init(const QString& configFileName, const QString& localConfigFileN QDir().rmdir(QFileInfo(localConfigFileName).absolutePath()); } +#if defined(Q_OS_LINUX) + // Upgrade from previous KeePassXC version which stores its config + // in ~/.cache on Linux instead of ~/.local/state. + // Move file to correct location before continuing. + if (!QFile::exists(localConfigFileName)) { + QString oldLocalConfigPath = + QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/keepassxc"; + QString suffix; +#ifdef QT_DEBUG + suffix = "_debug"; +#endif + oldLocalConfigPath += QString("/keepassxc%1.ini").arg(suffix); + oldLocalConfigPath = QDir::toNativeSeparators(oldLocalConfigPath); + if (QFile::exists(oldLocalConfigPath)) { + QDir().mkpath(QFileInfo(localConfigFileName).absolutePath()); + QFile::copy(oldLocalConfigPath, localConfigFileName); + QFile::remove(oldLocalConfigPath); + QDir().rmdir(QFileInfo(oldLocalConfigPath).absolutePath()); + } + } +#endif + m_settings.reset(new QSettings(configFileName, QSettings::IniFormat)); if (!localConfigFileName.isEmpty() && configFileName != localConfigFileName) { m_localSettings.reset(new QSettings(localConfigFileName, QSettings::IniFormat)); @@ -480,9 +554,8 @@ void Config::init(const QString& configFileName, const QString& localConfigFileN QPair Config::defaultConfigFiles() { // Check if we are running in portable mode, if so store the config files local to the app - auto portablePath = QCoreApplication::applicationDirPath().append("/%1"); - if (QFile::exists(portablePath.arg(".portable"))) { - return {portablePath.arg("config/keepassxc.ini"), portablePath.arg("config/keepassxc_local.ini")}; + if (isPortable()) { + return {portableConfigDir().append("/keepassxc.ini"), portableConfigDir().append("/keepassxc_local.ini")}; } QString configPath; @@ -497,7 +570,16 @@ QPair Config::defaultConfigFiles() #else // On case-sensitive Operating Systems, force use of lowercase app directories configPath = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/keepassxc"; - localConfigPath = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/keepassxc"; + // Qt does not support XDG_STATE_HOME yet, change this once XDG_STATE_HOME is added + QString xdgStateHome = QFile::decodeName(qgetenv("XDG_STATE_HOME")); + if (!xdgStateHome.startsWith(u'/')) { + xdgStateHome.clear(); // spec says relative paths should be ignored + } + if (xdgStateHome.isEmpty()) { + xdgStateHome = QDir::homePath() + "/.local/state"; + } + + localConfigPath = xdgStateHome + "/keepassxc"; #endif QString suffix; @@ -537,17 +619,49 @@ void Config::createConfigFromFile(const QString& configFileName, const QString& qApp); } -void Config::createTempFileInstance() +bool Config::isPortable() { - if (m_instance) { - delete m_instance; +#ifdef Q_OS_WIN + // Enable QFileInfo::isWritable check on Windows + extern Q_CORE_EXPORT int qt_ntfs_permission_lookup; + qt_ntfs_permission_lookup++; +#endif + auto portablePath = QCoreApplication::applicationDirPath().append("/%1"); + auto portableFile = portablePath.arg(".portable"); + auto isPortable = QFile::exists(portableFile) && QFileInfo(portableFile).isWritable(); +#ifdef Q_OS_WIN + qt_ntfs_permission_lookup--; +#endif + return isPortable; +} + +QString Config::portableConfigDir() +{ + return QCoreApplication::applicationDirPath().append("/config"); +} + +QList Config::getShortcuts() const +{ + m_settings->beginGroup("Shortcuts"); + const auto keys = m_settings->childKeys(); + QList ret; + ret.reserve(keys.size()); + for (const auto& key : keys) { + const auto shortcut = m_settings->value(key).toString(); + ret.push_back(ShortcutEntry{key, shortcut}); } - auto* tmpFile = new QTemporaryFile(); - bool openResult = tmpFile->open(); - Q_ASSERT(openResult); - Q_UNUSED(openResult); - m_instance = new Config(tmpFile->fileName(), "", qApp); - tmpFile->setParent(m_instance); + m_settings->endGroup(); + return ret; +} + +void Config::setShortcuts(const QList& shortcuts) +{ + m_settings->beginGroup("Shortcuts"); + m_settings->remove(""); // clear previous + for (const auto& shortcutEntry : shortcuts) { + m_settings->setValue(shortcutEntry.name, shortcutEntry.shortcut); + } + m_settings->endGroup(); } #undef QS diff --git a/src/core/Config.h b/src/core/Config.h index be7a736f8..b4f3bdc04 100644 --- a/src/core/Config.h +++ b/src/core/Config.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 KeePassXC Team + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2011 Felix Geyer * * This program is free software: you can redistribute it and/or modify @@ -21,6 +21,7 @@ #include #include +#include class QSettings; @@ -48,6 +49,7 @@ public: UseDirectWriteSaves, SearchLimitGroup, MinimizeOnOpenUrl, + OpenURLOnDoubleClick, HideWindowOnCopy, MinimizeOnCopy, MinimizeAfterUnlock, @@ -58,11 +60,14 @@ public: AutoTypeDelay, AutoTypeStartDelay, AutoTypeHideExpiredEntry, + AutoTypeDialogSortColumn, + AutoTypeDialogSortOrder, GlobalAutoTypeKey, GlobalAutoTypeModifiers, GlobalAutoTypeRetypeTime, FaviconDownloadTimeout, UpdateCheckMessageShown, + DefaultDatabaseFileName, LastDatabases, LastKeyFiles, @@ -72,11 +77,14 @@ public: LastDir, GUI_Language, + GUI_HideMenubar, GUI_HideToolbar, GUI_MovableToolbar, + GUI_HideGroupPanel, GUI_HidePreviewPanel, GUI_AlwaysOnTop, GUI_ToolButtonStyle, + GUI_LaunchAtStartup, GUI_ShowTrayIcon, GUI_TrayIconAppearance, GUI_MinimizeToTray, @@ -84,7 +92,7 @@ public: GUI_MinimizeOnClose, GUI_HideUsernames, GUI_HidePasswords, - GUI_AdvancedSettings, + GUI_ColorPasswords, GUI_MonospaceNotes, GUI_ApplicationTheme, GUI_CompactMode, @@ -92,6 +100,7 @@ public: GUI_CheckForUpdatesIncludeBetas, GUI_ShowExpiredEntriesOnDatabaseUnlock, GUI_ShowExpiredEntriesOnDatabaseUnlockOffsetDays, + GUI_FontSizeOffset, GUI_MainWindowGeometry, GUI_MainWindowState, @@ -112,16 +121,18 @@ public: Security_LockDatabaseIdleSeconds, Security_LockDatabaseMinimize, Security_LockDatabaseScreenLock, + Security_LockDatabaseOnUserSwitch, Security_RelockAutoType, - Security_PasswordsRepeatVisible, Security_PasswordsHidden, Security_PasswordEmptyPlaceholder, Security_HidePasswordPreviewPanel, + Security_HideTotpPreviewPanel, Security_AutoTypeAsk, Security_IconDownloadFallback, Security_NoConfirmMoveEntryToRecycleBin, Security_EnableCopyOnDoubleClick, Security_QuickUnlock, + Security_DatabasePasswordMinimumQuality, Browser_Enabled, Browser_ShowNotification, @@ -132,6 +143,7 @@ public: Browser_UseCustomProxy, Browser_CustomProxyLocation, Browser_UpdateBinaryPath, + Browser_AllowGetDatabaseEntriesRequest, Browser_AllowExpiredCredentials, Browser_AlwaysAllowAccess, Browser_AlwaysAllowUpdate, @@ -142,6 +154,7 @@ public: Browser_UseCustomBrowser, Browser_CustomBrowserType, Browser_CustomBrowserLocation, + Browser_AllowLocalhostWithPasskeys, #ifdef QT_DEBUG Browser_CustomExtensionId, #endif @@ -187,13 +200,18 @@ public: PasswordGenerator_Type, Messages_NoLegacyKeyFileWarning, - Messages_Qt55CompatibilityWarning, Messages_HidePreReleaseWarning, // Special internal value Deleted }; + struct ShortcutEntry + { + QString name; + QString shortcut; + }; + ~Config() override; QVariant get(ConfigKey key); QVariant getDefault(ConfigKey key); @@ -204,9 +222,16 @@ public: void sync(); void resetToDefaults(); + bool importSettings(const QString& fileName); + void exportSettings(const QString& fileName) const; + + QList getShortcuts() const; + void setShortcuts(const QList& shortcuts); + static Config* instance(); static void createConfigFromFile(const QString& configFileName, const QString& localConfigFileName = {}); - static void createTempFileInstance(); + static bool isPortable(); + static QString portableConfigDir(); signals: void changed(ConfigKey key); diff --git a/src/core/CustomData.cpp b/src/core/CustomData.cpp index a9c5bcd3b..3c734e65f 100644 --- a/src/core/CustomData.cpp +++ b/src/core/CustomData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2024 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 @@ -21,10 +21,12 @@ #include "core/Global.h" const QString CustomData::LastModified = QStringLiteral("_LAST_MODIFIED"); -const QString CustomData::Created = QStringLiteral("_CREATED"); +const QString CustomData::Created = QStringLiteral("_CREATED_"); const QString CustomData::BrowserKeyPrefix = QStringLiteral("KPXC_BROWSER_"); -const QString CustomData::BrowserLegacyKeyPrefix = QStringLiteral("Public Key: "); const QString CustomData::ExcludeFromReportsLegacy = QStringLiteral("KnownBad"); +const QString CustomData::FdoSecretsExposedGroup = QStringLiteral("FDO_SECRETS_EXPOSED_GROUP"); +const QString CustomData::RandomSlug = QStringLiteral("KPXC_RANDOM_SLUG"); +const QString CustomData::RemoteProgramSettings = QStringLiteral("KPXC_REMOTE_SYNC_SETTINGS"); // Fallback item for return by reference static const CustomData::CustomDataItem NULL_ITEM{}; @@ -49,6 +51,15 @@ QString CustomData::value(const QString& key) const return m_data.value(key).value; } +QString CustomData::getKeyWithPrefix(const QString& prefix, const QString& key) +{ + QString keyWithPrefix; + keyWithPrefix.reserve(prefix.length() + key.length()); + keyWithPrefix.append(prefix); + keyWithPrefix.append(key); + return keyWithPrefix; +} + const CustomData::CustomDataItem& CustomData::item(const QString& key) const { auto item = m_data.find(key); @@ -188,7 +199,13 @@ void CustomData::updateLastModified(QDateTime lastModified) bool CustomData::isProtected(const QString& key) const { - return key.startsWith(CustomData::BrowserKeyPrefix) || key.startsWith(CustomData::Created); + return key.startsWith(BrowserKeyPrefix) || key == Created || key == FdoSecretsExposedGroup + || key == CustomData::RemoteProgramSettings; +} + +bool CustomData::isAutoGenerated(const QString& key) const +{ + return key == LastModified || key == RandomSlug; } bool CustomData::operator==(const CustomData& other) const diff --git a/src/core/CustomData.h b/src/core/CustomData.h index f67fc61db..3ee4d05ef 100644 --- a/src/core/CustomData.h +++ b/src/core/CustomData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2024 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 @@ -51,6 +51,7 @@ public: QDateTime lastModified() const; QDateTime lastModified(const QString& key) const; bool isProtected(const QString& key) const; + bool isAutoGenerated(const QString& key) const; void set(const QString& key, CustomDataItem item); void set(const QString& key, const QString& value, const QDateTime& lastModified = {}); void remove(const QString& key); @@ -63,11 +64,15 @@ public: bool operator==(const CustomData& other) const; bool operator!=(const CustomData& other) const; + static QString getKeyWithPrefix(const QString& prefix, const QString& key); + // Pre-defined keys static const QString LastModified; static const QString Created; static const QString BrowserKeyPrefix; - static const QString BrowserLegacyKeyPrefix; + static const QString FdoSecretsExposedGroup; + static const QString RandomSlug; + static const QString RemoteProgramSettings; // Pre-KDBX 4.1 static const QString ExcludeFromReportsLegacy; diff --git a/src/core/Database.cpp b/src/core/Database.cpp index 7d92265a2..3b499e8e6 100644 --- a/src/core/Database.cpp +++ b/src/core/Database.cpp @@ -21,9 +21,11 @@ #include "core/AsyncTask.h" #include "core/FileWatcher.h" #include "core/Group.h" +#include "crypto/Random.h" #include "format/KdbxXmlReader.h" #include "format/KeePass2Reader.h" #include "format/KeePass2Writer.h" +#include "streams/HashingStream.h" #include #include @@ -32,6 +34,10 @@ #include #include +#ifdef Q_OS_WIN +#include +#endif + QHash> Database::s_uuidMap; Database::Database() @@ -57,8 +63,8 @@ Database::Database() updateTagList(); }); connect(this, &Database::modified, this, [this] { updateTagList(); }); - connect(this, &Database::databaseSaved, this, [this]() { updateCommonUsernames(); }); - connect(m_fileWatcher, &FileWatcher::fileChanged, this, &Database::databaseFileChanged); + connect(this, &Database::databaseSaved, this, [this] { updateCommonUsernames(); }); + connect(m_fileWatcher, &FileWatcher::fileChanged, this, [this] { emit databaseFileChanged(false); }); // static uuid map s_uuidMap.insert(m_uuid, this); @@ -66,9 +72,9 @@ Database::Database() // block modified signal and set root group setEmitModified(false); - setRootGroup(new Group()); - rootGroup()->setUuid(QUuid::createUuid()); - rootGroup()->setName(tr("Passwords", "Root group name")); + // Note: oldGroup is nullptr but need to respect return value capture + auto oldGroup = setRootGroup(new Group()); + Q_UNUSED(oldGroup) m_modified = false; setEmitModified(true); @@ -101,10 +107,6 @@ QUuid Database::uuid() const */ bool Database::open(QSharedPointer key, QString* error) { - Q_ASSERT(!m_data.filePath.isEmpty()); - if (m_data.filePath.isEmpty()) { - return false; - } return open(m_data.filePath, std::move(key), error); } @@ -113,6 +115,8 @@ bool Database::open(QSharedPointer key, QString* error) * Unless `readOnly` is set to false, the database will be opened in * read-write mode and fall back to read-only if that is not possible. * + * If key is provided as null, only headers will be read. + * * @param filePath path to the file * @param key composite key for unlocking the database * @param error error message in case of failure @@ -120,6 +124,13 @@ bool Database::open(QSharedPointer key, QString* error) */ bool Database::open(const QString& filePath, QSharedPointer key, QString* error) { + if (filePath.isEmpty()) { + if (error) { + *error = tr("No file path was provided."); + } + return false; + } + QFile dbFile(filePath); if (!dbFile.exists()) { if (error) { @@ -144,6 +155,20 @@ bool Database::open(const QString& filePath, QSharedPointer setEmitModified(false); + // update the hash of the first block + m_fileBlockHash.clear(); + auto fileBlockData = dbFile.peek(kFileBlockToHashSizeBytes); + if (fileBlockData.size() != kFileBlockToHashSizeBytes) { + if (dbFile.size() >= kFileBlockToHashSizeBytes) { + if (error) { + *error = tr("Database file read error."); + } + return false; + } + } else { + m_fileBlockHash = QCryptographicHash::hash(fileBlockData, QCryptographicHash::Md5); + } + KeePass2Reader reader; if (!reader.readDatabase(&dbFile, std::move(key), this)) { if (error) { @@ -253,33 +278,68 @@ bool Database::saveAs(const QString& filePath, SaveAction action, const QString& return false; } - // Prevent destructive operations while saving - QMutexLocker locker(&m_saveMutex); - - if (filePath == m_data.filePath) { - // Fail-safe check to make sure we don't overwrite underlying file changes - // that have not yet triggered a file reload/merge operation. - if (!m_fileWatcher->hasSameFileChecksum()) { - if (error) { - *error = tr("Database file has unmerged changes."); + // Make sure we don't overwrite external modifications unless explicitly allowed + if (!m_ignoreFileChangesUntilSaved && !m_fileBlockHash.isEmpty() && filePath == m_data.filePath) { + QFile dbFile(filePath); + if (dbFile.exists()) { + if (!dbFile.open(QIODevice::ReadOnly)) { + if (error) { + *error = tr("Unable to open file %1.").arg(filePath); + } + return false; + } + auto fileBlockData = dbFile.read(kFileBlockToHashSizeBytes); + if (fileBlockData.size() == kFileBlockToHashSizeBytes) { + auto hash = QCryptographicHash::hash(fileBlockData, QCryptographicHash::Md5); + if (m_fileBlockHash != hash) { + if (error) { + *error = tr("Database file has unmerged changes."); + } + // emit the databaseFileChanged(true) signal async + QMetaObject::invokeMethod(this, "databaseFileChanged", Qt::QueuedConnection, Q_ARG(bool, true)); + return false; + } + } else if (dbFile.size() >= kFileBlockToHashSizeBytes) { + if (error) { + *error = tr("Database file read error."); + } + return false; } - return false; } } // Clear read-only flag m_fileWatcher->stop(); + // Add random data to prevent side-channel data deduplication attacks + int length = Random::instance()->randomUIntRange(64, 512); + m_metadata->customData()->set(CustomData::RandomSlug, Random::instance()->randomArray(length).toHex()); + + // Prevent destructive operations while saving + QMutexLocker locker(&m_saveMutex); + QFileInfo fileInfo(filePath); auto realFilePath = fileInfo.exists() ? fileInfo.canonicalFilePath() : fileInfo.absoluteFilePath(); bool isNewFile = !QFile::exists(realFilePath); + +#ifdef Q_OS_WIN + bool isHidden = fileInfo.isHidden(); +#endif + bool ok = AsyncTask::runAndWaitForFuture([&] { return performSave(realFilePath, action, backupFilePath, error); }); if (ok) { - markAsClean(); setFilePath(filePath); + markAsClean(); if (isNewFile) { QFile::setPermissions(realFilePath, QFile::ReadUser | QFile::WriteUser); } + +#ifdef Q_OS_WIN + if (isHidden) { + SetFileAttributes(realFilePath.toStdString().c_str(), FILE_ATTRIBUTE_HIDDEN); + } +#endif + m_ignoreFileChangesUntilSaved = false; m_fileWatcher->start(realFilePath, 30, 1); } else { // Saving failed, don't rewatch file since it does not represent our database @@ -295,26 +355,29 @@ bool Database::performSave(const QString& filePath, SaveAction action, const QSt backupDatabase(filePath, backupFilePath); } -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QFileInfo info(filePath); auto createTime = info.exists() ? info.birthTime() : QDateTime::currentDateTime(); -#endif switch (action) { case Atomic: { QSaveFile saveFile(filePath); if (saveFile.open(QIODevice::WriteOnly)) { + HashingStream hashingStream(&saveFile, QCryptographicHash::Md5, kFileBlockToHashSizeBytes); + if (!hashingStream.open(QIODevice::WriteOnly)) { + return false; + } // write the database to the file - if (!writeDatabase(&saveFile, error)) { + if (!writeDatabase(&hashingStream, error)) { return false; } -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // Retain original creation time saveFile.setFileTime(createTime, QFile::FileBirthTime); -#endif if (saveFile.commit()) { + // store the new hash + m_fileBlockHash = hashingStream.hashingResult(); + // successfully saved database file return true; } @@ -328,8 +391,12 @@ bool Database::performSave(const QString& filePath, SaveAction action, const QSt case TempFile: { QTemporaryFile tempFile; if (tempFile.open()) { + HashingStream hashingStream(&tempFile, QCryptographicHash::Md5, kFileBlockToHashSizeBytes); + if (!hashingStream.open(QIODevice::WriteOnly)) { + return false; + } // write the database to the file - if (!writeDatabase(&tempFile, error)) { + if (!writeDatabase(&hashingStream, error)) { return false; } tempFile.close(); // flush to disk @@ -345,10 +412,10 @@ bool Database::performSave(const QString& filePath, SaveAction action, const QSt // successfully saved the database tempFile.setAutoRemove(false); QFile::setPermissions(filePath, perms); -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) - // Retain orginal creation time + // Retain original creation time tempFile.setFileTime(createTime, QFile::FileBirthTime); -#endif + // store the new hash + m_fileBlockHash = hashingStream.hashingResult(); return true; } else if (backupFilePath.isEmpty() || !restoreDatabase(filePath, backupFilePath)) { // Failed to copy new database in place, and @@ -367,13 +434,26 @@ bool Database::performSave(const QString& filePath, SaveAction action, const QSt break; } case DirectWrite: { + QBuffer dbBuffer; + dbBuffer.open(QIODevice::WriteOnly); + HashingStream hashingStream(&dbBuffer, QCryptographicHash::Md5, kFileBlockToHashSizeBytes); + if (!hashingStream.open(QIODevice::WriteOnly)) { + if (error) { + *error = hashingStream.errorString(); + } + return false; + } + if (!writeDatabase(&hashingStream, error)) { + return false; + } + // Open the original database file for direct-write QFile dbFile(filePath); if (dbFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) { - if (!writeDatabase(&dbFile, error)) { - return false; - } + dbFile.write(dbBuffer.data()); dbFile.close(); + // store the new hash + m_fileBlockHash = hashingStream.hashingResult(); return true; } if (error) { @@ -389,6 +469,9 @@ bool Database::performSave(const QString& filePath, SaveAction action, const QSt bool Database::writeDatabase(QIODevice* device, QString* error) { + Q_ASSERT(m_data.key); + Q_ASSERT(m_data.transformedDatabaseKey); + PasswordKey oldTransformedKey; if (m_data.key->isEmpty()) { oldTransformedKey.setRawKey(m_data.transformedDatabaseKey->rawKey()); @@ -463,6 +546,7 @@ bool Database::import(const QString& xmlExportPath, QString* error) void Database::releaseData() { // Prevent data release while saving + Q_ASSERT(!isSaving()); QMutexLocker locker(&m_saveMutex); if (m_modified) { @@ -478,9 +562,8 @@ void Database::releaseData() m_data.clear(); m_metadata->clear(); - auto oldGroup = rootGroup(); - setRootGroup(new Group()); - // explicitly delete old group, otherwise it is only deleted when the database object is destructed + // Reset and delete the root group + auto oldGroup = setRootGroup(new Group()); delete oldGroup; m_fileWatcher->stop(); @@ -488,6 +571,9 @@ void Database::releaseData() m_deletedObjects.clear(); m_commonUsernames.clear(); m_tagList.clear(); + + m_fileBlockHash.clear(); + m_ignoreFileChangesUntilSaved = false; } /** @@ -556,14 +642,12 @@ const Group* Database::rootGroup() const return m_rootGroup; } -/** - * Sets group as the root group and takes ownership of it. - * Warning: Be careful when calling this method as it doesn't - * emit any notifications so e.g. models aren't updated. - * The caller is responsible for cleaning up the previous - root group. +/* Set the root group of the database and return + * the old root group. It is the responsibility + * of the calling function to dispose of the old + * root group. */ -void Database::setRootGroup(Group* group) +Group* Database::setRootGroup(Group* group) { Q_ASSERT(group); @@ -571,8 +655,17 @@ void Database::setRootGroup(Group* group) emit databaseDiscarded(); } + auto oldRoot = m_rootGroup; m_rootGroup = group; m_rootGroup->setParent(this); + + // Initialize the root group if not done already + if (m_rootGroup->uuid().isNull()) { + m_rootGroup->setUuid(QUuid::createUuid()); + m_rootGroup->setName(tr("Passwords", "Root group name")); + } + + return oldRoot; } Metadata* Database::metadata() @@ -617,10 +710,33 @@ void Database::setFilePath(const QString& filePath) m_data.filePath = filePath; // Don't watch for changes until the next open or save operation m_fileWatcher->stop(); + m_ignoreFileChangesUntilSaved = false; emit filePathChanged(oldPath, filePath); } } +const QByteArray& Database::fileBlockHash() const +{ + return m_fileBlockHash; +} + +void Database::setIgnoreFileChangesUntilSaved(bool ignore) +{ + if (m_ignoreFileChangesUntilSaved != ignore) { + m_ignoreFileChangesUntilSaved = ignore; + if (ignore) { + m_fileWatcher->pause(); + } else { + m_fileWatcher->resume(); + } + } +} + +bool Database::ignoreFileChangesUntilSaved() const +{ + return m_ignoreFileChangesUntilSaved; +} + QList Database::deletedObjects() { return m_deletedObjects; @@ -701,19 +817,30 @@ void Database::updateTagList() // Search groups recursively looking for tags // Use a set to prevent adding duplicates QSet tagSet; - for (const auto group : m_rootGroup->groupsRecursive(true)) { - for (const auto entry : group->entries()) { + for (auto entry : m_rootGroup->entriesRecursive()) { + if (!entry->isRecycled()) { for (auto tag : entry->tagList()) { tagSet.insert(tag); } } } - m_tagList = tagSet.toList(); + m_tagList = tagSet.values(); m_tagList.sort(); emit tagListUpdated(); } +void Database::removeTag(const QString& tag) +{ + if (!m_rootGroup) { + return; + } + + for (auto entry : m_rootGroup->entriesRecursive()) { + entry->removeTag(tag); + } +} + const QUuid& Database::cipher() const { return m_data.cipher; @@ -726,18 +853,29 @@ Database::CompressionAlgorithm Database::compressionAlgorithm() const QByteArray Database::transformedDatabaseKey() const { + Q_ASSERT(m_data.transformedDatabaseKey); + if (!m_data.transformedDatabaseKey) { + return {}; + } return m_data.transformedDatabaseKey->rawKey(); } QByteArray Database::challengeResponseKey() const { + Q_ASSERT(m_data.challengeResponseKey); + if (!m_data.challengeResponseKey) { + return {}; + } return m_data.challengeResponseKey->rawKey(); } bool Database::challengeMasterSeed(const QByteArray& masterSeed) { + Q_ASSERT(m_data.key); + Q_ASSERT(m_data.masterSeed); + m_keyError.clear(); - if (m_data.key) { + if (m_data.key && m_data.masterSeed) { m_data.masterSeed->setRawKey(masterSeed); QByteArray response; bool ok = m_data.key->challenge(masterSeed, response, &m_keyError); @@ -783,8 +921,7 @@ bool Database::setKey(const QSharedPointer& key, m_keyError.clear(); if (!key) { - m_data.key.reset(); - m_data.transformedDatabaseKey.reset(new PasswordKey()); + m_data.resetKeys(); return true; } @@ -927,6 +1064,7 @@ void Database::markAsClean() void Database::markNonDataChange() { m_hasNonDataChange = true; + emit databaseNonDataChanged(); } /** @@ -983,3 +1121,79 @@ void Database::stopModifiedTimer() { QMetaObject::invokeMethod(&m_modifiedTimer, "stop"); } + +QUuid Database::publicUuid() +{ + // This feature requires KDBX4 + if (m_data.formatVersion < KeePass2::FILE_VERSION_4) { + // Return the file path hash as a UUID for KDBX3 + QCryptographicHash hasher(QCryptographicHash::Sha256); + hasher.addData(filePath().toUtf8()); + return QUuid::fromRfc4122(hasher.result().left(16)); + } + + if (!publicCustomData().contains("KPXC_PUBLIC_UUID")) { + publicCustomData().insert("KPXC_PUBLIC_UUID", QUuid::createUuid().toRfc4122()); + markAsModified(); + } + + return QUuid::fromRfc4122(publicCustomData()["KPXC_PUBLIC_UUID"].toByteArray()); +} + +QString Database::publicName() +{ + return publicCustomData().value("KPXC_PUBLIC_NAME").toString(); +} + +void Database::setPublicName(const QString& name) +{ + if (name.isEmpty()) { + publicCustomData().remove("KPXC_PUBLIC_NAME"); + } else { + publicCustomData().insert("KPXC_PUBLIC_NAME", name); + } + markAsModified(); +} + +QString Database::publicColor() +{ + return publicCustomData().value("KPXC_PUBLIC_COLOR").toString(); +} + +void Database::setPublicColor(const QString& color) +{ + if (color.isEmpty()) { + publicCustomData().remove("KPXC_PUBLIC_COLOR"); + } else { + publicCustomData().insert("KPXC_PUBLIC_COLOR", color); + } + markAsModified(); +} + +int Database::publicIcon() +{ + if (publicCustomData().contains("KPXC_PUBLIC_ICON")) { + return publicCustomData().value("KPXC_PUBLIC_ICON").toInt(); + } + return -1; +} + +void Database::setPublicIcon(int iconIndex) +{ + if (iconIndex < 0) { + publicCustomData().remove("KPXC_PUBLIC_ICON"); + } else { + publicCustomData().insert("KPXC_PUBLIC_ICON", iconIndex); + } + markAsModified(); +} + +void Database::markAsTemporaryDatabase() +{ + m_isTemporaryDatabase = true; +} + +bool Database::isTemporaryDatabase() +{ + return m_isTemporaryDatabase; +} diff --git a/src/core/Database.h b/src/core/Database.h index bad0b256a..0d183e778 100644 --- a/src/core/Database.h +++ b/src/core/Database.h @@ -75,6 +75,9 @@ public: ~Database() override; private: + // size of the block of file data to hash for detecting external changes + static const quint32 kFileBlockToHashSizeBytes = 1024; // 1 KiB + bool writeDatabase(QIODevice* device, QString* error = nullptr); bool backupDatabase(const QString& filePath, const QString& destinationFilePath); bool restoreDatabase(const QString& filePath, const QString& fromBackupFilePath); @@ -102,16 +105,28 @@ public: bool hasNonDataChanges() const; bool isSaving(); + QUuid publicUuid(); QUuid uuid() const; QString filePath() const; QString canonicalFilePath() const; void setFilePath(const QString& filePath); + const QByteArray& fileBlockHash() const; + void setIgnoreFileChangesUntilSaved(bool ignore); + bool ignoreFileChangesUntilSaved() const; + + QString publicName(); + void setPublicName(const QString& name); + QString publicColor(); + void setPublicColor(const QString& color); + int publicIcon(); + void setPublicIcon(int iconIndex); + Metadata* metadata(); const Metadata* metadata() const; Group* rootGroup(); const Group* rootGroup() const; - void setRootGroup(Group* group); + Q_REQUIRED_RESULT Group* setRootGroup(Group* group); QVariantMap& publicCustomData(); const QVariantMap& publicCustomData() const; void setPublicCustomData(const QVariantMap& customData); @@ -129,6 +144,7 @@ public: const QStringList& commonUsernames() const; const QStringList& tagList() const; + void removeTag(const QString& tag); QSharedPointer key() const; bool setKey(const QSharedPointer& key, @@ -148,6 +164,9 @@ public: bool changeKdf(const QSharedPointer& kdf); QByteArray transformedDatabaseKey() const; + void markAsTemporaryDatabase(); + bool isTemporaryDatabase(); + static Database* databaseByUuid(const QUuid& uuid); public slots: @@ -169,7 +188,8 @@ signals: void databaseOpened(); void databaseSaved(); void databaseDiscarded(); - void databaseFileChanged(); + void databaseFileChanged(bool triggeredBySave); + void databaseNonDataChanged(); void tagListUpdated(); private: @@ -185,30 +205,33 @@ private: QScopedPointer challengeResponseKey; QSharedPointer key; - QSharedPointer kdf = QSharedPointer::create(true); + QSharedPointer kdf; QVariantMap publicCustomData; DatabaseData() - : masterSeed(new PasswordKey()) - , transformedDatabaseKey(new PasswordKey()) - , challengeResponseKey(new PasswordKey()) { - kdf->randomizeSeed(); + clear(); } void clear() { + resetKeys(); filePath.clear(); + publicCustomData.clear(); + } - masterSeed.reset(); - transformedDatabaseKey.reset(); - challengeResponseKey.reset(); + void resetKeys() + { + masterSeed.reset(new PasswordKey()); + transformedDatabaseKey.reset(new PasswordKey()); + challengeResponseKey.reset(new PasswordKey()); key.reset(); - kdf.reset(); - publicCustomData.clear(); + // Default to AES KDF, KDBX4 databases overwrite this + kdf.reset(new AesKdf(true)); + kdf->randomizeSeed(); } }; @@ -217,6 +240,8 @@ private: void startModifiedTimer(); void stopModifiedTimer(); + QByteArray m_fileBlockHash; + bool m_ignoreFileChangesUntilSaved; QPointer const m_metadata; DatabaseData m_data; QPointer m_rootGroup; @@ -227,6 +252,7 @@ private: bool m_modified = false; bool m_hasNonDataChange = false; QString m_keyError; + bool m_isTemporaryDatabase = false; QStringList m_commonUsernames; QStringList m_tagList; diff --git a/src/core/Entry.cpp b/src/core/Entry.cpp index a798033f4..0147ec0f9 100644 --- a/src/core/Entry.cpp +++ b/src/core/Entry.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * 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 @@ -20,20 +20,27 @@ #include "core/Config.h" #include "core/Database.h" +#include "core/Global.h" #include "core/Group.h" #include "core/Metadata.h" #include "core/PasswordHealth.h" #include "core/Tools.h" -#include "totp/totp.h" +#include "core/Totp.h" #include #include +#include #include const int Entry::DefaultIconNumber = 0; -const int Entry::ResolveMaximumDepth = 10; -const QString Entry::AutoTypeSequenceUsername = "{USERNAME}{ENTER}"; -const QString Entry::AutoTypeSequencePassword = "{PASSWORD}{ENTER}"; + +namespace +{ + const int ResolveMaximumDepth = 10; + const QString AutoTypeSequenceUsername = "{USERNAME}{ENTER}"; + const QString AutoTypeSequencePassword = "{PASSWORD}{ENTER}"; + const QRegularExpression TagDelimiterRegex(R"([,;\t])"); +} // namespace Entry::Entry() : m_attributes(new EntryAttributes(this)) @@ -187,15 +194,12 @@ QString Entry::overrideUrl() const QString Entry::tags() const { - return m_data.tags; + return m_data.tags.join(","); } QStringList Entry::tagList() const { - static QRegExp rx("(\\,|\\t|\\;)"); - auto taglist = tags().split(rx, QString::SkipEmptyParts); - std::sort(taglist.begin(), taglist.end()); - return taglist; + return m_data.tags; } const TimeInfo& Entry::timeInfo() const @@ -208,6 +212,11 @@ bool Entry::autoTypeEnabled() const return m_data.autoTypeEnabled; } +bool Entry::groupAutoTypeEnabled() const +{ + return group() && group()->resolveAutoTypeEnabled(); +} + int Entry::autoTypeObfuscation() const { return m_data.autoTypeObfuscation; @@ -284,7 +293,7 @@ QString Entry::effectiveAutoTypeSequence() const /** * Retrieve the Auto-Type sequences matches for a given windowTitle - * This returns a list with priority ordering. If you don't want duplicates call .toSet() on it. + * This returns a list with priority ordering. If you don't want duplicates, convert it to a QSet. */ QList Entry::autoTypeSequences(const QString& windowTitle) const { @@ -372,19 +381,38 @@ QString Entry::url() const return m_attributes->value(EntryAttributes::URLKey); } +QString Entry::resolveUrl() const +{ + const auto entryUrl = url(); + if (entryUrl.isEmpty()) { + return {}; + } + + return EntryAttributes::matchReference(entryUrl).hasMatch() ? resolveMultiplePlaceholders(entryUrl) : entryUrl; +} + QStringList Entry::getAllUrls() const { QStringList urlList; - if (!url().isEmpty()) { - urlList << url(); + const auto entryUrl = resolveUrl(); + if (!entryUrl.isEmpty()) { + urlList << entryUrl; } + return urlList << getAdditionalUrls(); +} + +QStringList Entry::getAdditionalUrls() const +{ + QStringList urlList; + for (const auto& key : m_attributes->keys()) { - if (key.startsWith("KP2A_URL")) { + if (key.startsWith(EntryAttributes::AdditionalUrlAttribute) + || key == QString("%1_RELYING_PARTY").arg(EntryAttributes::PasskeyAttribute)) { auto additionalUrl = m_attributes->value(key); if (!additionalUrl.isEmpty()) { - urlList << additionalUrl; + urlList << resolveMultiplePlaceholders(additionalUrl); } } } @@ -427,14 +455,11 @@ QString Entry::attribute(const QString& key) const int Entry::size() const { int size = 0; - const QRegularExpression delimiter(",|:|;"); - - size += this->attributes()->attributesSize(); - size += this->autoTypeAssociations()->associationsSize(); - size += this->attachments()->attachmentsSize(); - size += this->customData()->dataSize(); - const QStringList tags = this->tags().split(delimiter, QString::SkipEmptyParts); - for (const QString& tag : tags) { + size += attributes()->attributesSize(); + size += autoTypeAssociations()->associationsSize(); + size += attachments()->attachmentsSize(); + size += customData()->dataSize(); + for (const QString& tag : tags().split(TagDelimiterRegex, Qt::SkipEmptyParts)) { size += tag.toUtf8().size(); } @@ -451,6 +476,12 @@ bool Entry::willExpireInDays(int days) const return m_data.timeInfo.expires() && m_data.timeInfo.expiryTime() < Clock::currentDateTime().addDays(days); } +void Entry::expireNow() +{ + setExpiryTime(Clock::currentDateTimeUtc()); + setExpires(true); +} + bool Entry::isRecycled() const { const Database* db = database(); @@ -458,7 +489,7 @@ bool Entry::isRecycled() const return false; } - return m_group == db->metadata()->recycleBin() || m_group->isRecycled(); + return m_group->isRecycled(); } bool Entry::isAttributeReference(const QString& key) const @@ -477,8 +508,7 @@ bool Entry::isAttributeReferenceOf(const QString& key, const QUuid& uuid) const bool Entry::hasReferences() const { - const QList keyList = EntryAttributes::DefaultAttributes; - for (const QString& key : keyList) { + for (const QString& key : EntryAttributes::DefaultAttributes) { if (m_attributes->isReference(key)) { return true; } @@ -488,8 +518,7 @@ bool Entry::hasReferences() const bool Entry::hasReferencesTo(const QUuid& uuid) const { - const QList keyList = EntryAttributes::DefaultAttributes; - for (const QString& key : keyList) { + for (const QString& key : EntryAttributes::DefaultAttributes) { if (isAttributeReferenceOf(key, uuid)) { return true; } @@ -541,6 +570,17 @@ bool Entry::hasTotp() const return !m_data.totpSettings.isNull(); } +bool Entry::hasPasskey() const +{ + return m_attributes->hasPasskey(); +} + +void Entry::removePasskey() +{ + m_attributes->removePasskeyAttributes(); + removeTag(tr("Passkey")); +} + QString Entry::totp() const { if (hasTotp()) { @@ -556,7 +596,7 @@ void Entry::setTotp(QSharedPointer settings) m_attributes->remove(Totp::ATTRIBUTE_SEED); m_attributes->remove(Totp::ATTRIBUTE_SETTINGS); - if (settings->key.isEmpty()) { + if (!settings || settings->key.isEmpty()) { m_data.totpSettings.reset(); } else { m_data.totpSettings = std::move(settings); @@ -579,6 +619,11 @@ void Entry::updateTotp() m_attributes->value(Totp::ATTRIBUTE_SEED)); } else if (m_attributes->contains(Totp::ATTRIBUTE_OTP)) { m_data.totpSettings = Totp::parseSettings(m_attributes->value(Totp::ATTRIBUTE_OTP)); + } else if (m_attributes->contains(Totp::KP2_TOTP_SECRET)) { + m_data.totpSettings = Totp::fromKeePass2Totp(m_attributes->value(Totp::KP2_TOTP_SECRET), + m_attributes->value(Totp::KP2_TOTP_ALGORITHM), + m_attributes->value(Totp::KP2_TOTP_LENGTH), + m_attributes->value(Totp::KP2_TOTP_PERIOD)); } else { m_data.totpSettings.reset(); } @@ -654,7 +699,40 @@ void Entry::setOverrideUrl(const QString& url) void Entry::setTags(const QString& tags) { - set(m_data.tags, tags); + auto taglist = tags.split(TagDelimiterRegex, Qt::SkipEmptyParts); + // Trim whitespace before/after tag text + for (auto& tag : taglist) { + tag = tag.trimmed(); + } + // Remove duplicates + taglist = Tools::asSet(taglist).values(); + // Sort alphabetically + taglist.sort(); + set(m_data.tags, taglist); +} + +void Entry::addTag(const QString& tag) +{ + auto cleanTag = tag.trimmed(); + cleanTag.remove(TagDelimiterRegex); + + auto taglist = m_data.tags; + if (!taglist.contains(cleanTag)) { + taglist.append(cleanTag); + taglist.sort(); + set(m_data.tags, taglist); + } +} + +void Entry::removeTag(const QString& tag) +{ + auto cleanTag = tag.trimmed(); + cleanTag.remove(TagDelimiterRegex); + + auto taglist = m_data.tags; + if (taglist.removeAll(tag) > 0) { + set(m_data.tags, taglist); + } } void Entry::setTimeInfo(const TimeInfo& timeInfo) @@ -751,10 +829,21 @@ void Entry::addHistoryItem(Entry* entry) { Q_ASSERT(!entry->parent()); + entry->setHistoryOwner(this); m_history.append(entry); emitModified(); } +void Entry::setHistoryOwner(Entry* entry) +{ + m_historyOwner = entry; +} + +Entry* Entry::historyOwner() const +{ + return m_historyOwner; +} + void Entry::removeHistoryItems(const QList& historyEntries) { if (historyEntries.isEmpty()) { @@ -801,7 +890,6 @@ void Entry::truncateHistory() int histMaxSize = db->metadata()->historyMaxSize(); if (histMaxSize > -1) { int size = 0; - QSet foundAttachments = attachments()->values(); QMutableListIterator i(m_history); i.toBack(); @@ -811,7 +899,6 @@ void Entry::truncateHistory() // don't calculate size if it's already above the maximum if (size <= histMaxSize) { size += historyItem->size(); - foundAttachments += historyItem->attachments()->values(); } if (size > histMaxSize) { @@ -865,7 +952,7 @@ bool Entry::equals(const Entry* other, CompareItemOptions options) const Entry* Entry::clone(CloneFlags flags) const { - Entry* entry = new Entry(); + auto entry = new Entry(); entry->setUpdateTimeinfo(false); if (flags & CloneNewUuid) { entry->m_uuid = QUuid::createUuid(); @@ -965,31 +1052,29 @@ void Entry::updateModifiedSinceBegin() QString Entry::resolveMultiplePlaceholdersRecursive(const QString& str, int maxDepth) const { - if (maxDepth <= 0) { + static const QRegularExpression placeholderRegEx("({(?>[^{}]+?|(?1))+?})"); + + if (--maxDepth < 0) { qWarning("Maximum depth of replacement has been reached. Entry uuid: %s", uuid().toString().toLatin1().data()); return str; } - QString result = str; - QRegExp placeholderRegEx("(\\{[^\\}]+\\})", Qt::CaseInsensitive, QRegExp::RegExp2); - placeholderRegEx.setMinimal(true); - int pos = 0; - while ((pos = placeholderRegEx.indexIn(str, pos)) != -1) { - const QString found = placeholderRegEx.cap(1); - result.replace(found, resolvePlaceholderRecursive(found, maxDepth - 1)); - pos += placeholderRegEx.matchedLength(); + QString result; + auto matches = placeholderRegEx.globalMatch(str); + int capEnd = 0; + while (matches.hasNext()) { + const auto match = matches.next(); + result += str.midRef(capEnd, match.capturedStart() - capEnd); + result += resolvePlaceholderRecursive(match.captured(), maxDepth); + capEnd = match.capturedEnd(); } - - if (result != str) { - result = resolveMultiplePlaceholdersRecursive(result, maxDepth - 1); - } - + result += str.rightRef(str.length() - capEnd); return result; } QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDepth) const { - if (maxDepth <= 0) { + if (--maxDepth < 0) { qWarning("Maximum depth of replacement has been reached. Entry uuid: %s", uuid().toString().toLatin1().data()); return placeholder; } @@ -997,33 +1082,20 @@ QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDe const PlaceholderType typeOfPlaceholder = placeholderType(placeholder); switch (typeOfPlaceholder) { case PlaceholderType::NotPlaceholder: - case PlaceholderType::Unknown: - return resolveMultiplePlaceholdersRecursive(placeholder, maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(placeholder, maxDepth); + case PlaceholderType::Unknown: { + return "{" % resolveMultiplePlaceholdersRecursive(placeholder.mid(1, placeholder.length() - 2), maxDepth) % "}"; + } case PlaceholderType::Title: - if (placeholderType(title()) == PlaceholderType::Title) { - return title(); - } - return resolveMultiplePlaceholdersRecursive(title(), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(title(), maxDepth); case PlaceholderType::UserName: - if (placeholderType(username()) == PlaceholderType::UserName) { - return username(); - } - return resolveMultiplePlaceholdersRecursive(username(), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(username(), maxDepth); case PlaceholderType::Password: - if (placeholderType(password()) == PlaceholderType::Password) { - return password(); - } - return resolveMultiplePlaceholdersRecursive(password(), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(password(), maxDepth); case PlaceholderType::Notes: - if (placeholderType(notes()) == PlaceholderType::Notes) { - return notes(); - } - return resolveMultiplePlaceholdersRecursive(notes(), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(notes(), maxDepth); case PlaceholderType::Url: - if (placeholderType(url()) == PlaceholderType::Url) { - return url(); - } - return resolveMultiplePlaceholdersRecursive(url(), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(url(), maxDepth); case PlaceholderType::DbDir: { QFileInfo fileInfo(database()->filePath()); return fileInfo.absoluteDir().absolutePath(); @@ -1038,7 +1110,7 @@ QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDe case PlaceholderType::UrlUserInfo: case PlaceholderType::UrlUserName: case PlaceholderType::UrlPassword: { - const QString strUrl = resolveMultiplePlaceholdersRecursive(url(), maxDepth - 1); + const QString strUrl = resolveMultiplePlaceholdersRecursive(url(), maxDepth); return resolveUrlPlaceholder(strUrl, typeOfPlaceholder); } case PlaceholderType::Totp: @@ -1046,10 +1118,11 @@ QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDe return totp(); case PlaceholderType::CustomAttribute: { const QString key = placeholder.mid(3, placeholder.length() - 4); // {S:attr} => mid(3, len - 4) - return attributes()->hasKey(key) ? attributes()->value(key) : QString(); + return attributes()->hasKey(key) ? resolveMultiplePlaceholdersRecursive(attributes()->value(key), maxDepth) + : QString(); } case PlaceholderType::Reference: - return resolveReferencePlaceholderRecursive(placeholder, maxDepth); + return resolveReferencePlaceholderRecursive(placeholder, ++maxDepth); case PlaceholderType::DateTimeSimple: case PlaceholderType::DateTimeYear: case PlaceholderType::DateTimeMonth: @@ -1064,7 +1137,11 @@ QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDe case PlaceholderType::DateTimeUtcHour: case PlaceholderType::DateTimeUtcMinute: case PlaceholderType::DateTimeUtcSecond: - return resolveMultiplePlaceholdersRecursive(resolveDateTimePlaceholder(typeOfPlaceholder), maxDepth - 1); + return resolveMultiplePlaceholdersRecursive(resolveDateTimePlaceholder(typeOfPlaceholder), maxDepth); + case PlaceholderType::Conversion: + return resolveMultiplePlaceholdersRecursive(resolveConversionPlaceholder(placeholder), maxDepth); + case PlaceholderType::Regex: + return resolveMultiplePlaceholdersRecursive(resolveRegexPlaceholder(placeholder), maxDepth); } return placeholder; @@ -1072,65 +1149,134 @@ QString Entry::resolvePlaceholderRecursive(const QString& placeholder, int maxDe QString Entry::resolveDateTimePlaceholder(Entry::PlaceholderType placeholderType) const { - QDateTime time = Clock::currentDateTime(); - QDateTime time_utc = Clock::currentDateTimeUtc(); - QString date_formatted{}; + const QDateTime time = Clock::currentDateTime(); + const QDateTime time_utc = Clock::currentDateTimeUtc(); switch (placeholderType) { case PlaceholderType::DateTimeSimple: - date_formatted = time.toString("yyyyMMddhhmmss"); - break; + return time.toString("yyyyMMddhhmmss"); case PlaceholderType::DateTimeYear: - date_formatted = time.toString("yyyy"); - break; + return time.toString("yyyy"); case PlaceholderType::DateTimeMonth: - date_formatted = time.toString("MM"); - break; + return time.toString("MM"); case PlaceholderType::DateTimeDay: - date_formatted = time.toString("dd"); - break; + return time.toString("dd"); case PlaceholderType::DateTimeHour: - date_formatted = time.toString("hh"); - break; + return time.toString("hh"); case PlaceholderType::DateTimeMinute: - date_formatted = time.toString("mm"); - break; + return time.toString("mm"); case PlaceholderType::DateTimeSecond: - date_formatted = time.toString("ss"); - break; + return time.toString("ss"); case PlaceholderType::DateTimeUtcSimple: - date_formatted = time_utc.toString("yyyyMMddhhmmss"); - break; + return time_utc.toString("yyyyMMddhhmmss"); case PlaceholderType::DateTimeUtcYear: - date_formatted = time_utc.toString("yyyy"); - break; + return time_utc.toString("yyyy"); case PlaceholderType::DateTimeUtcMonth: - date_formatted = time_utc.toString("MM"); - break; + return time_utc.toString("MM"); case PlaceholderType::DateTimeUtcDay: - date_formatted = time_utc.toString("dd"); - break; + return time_utc.toString("dd"); case PlaceholderType::DateTimeUtcHour: - date_formatted = time_utc.toString("hh"); - break; + return time_utc.toString("hh"); case PlaceholderType::DateTimeUtcMinute: - date_formatted = time_utc.toString("mm"); - break; + return time_utc.toString("mm"); case PlaceholderType::DateTimeUtcSecond: - date_formatted = time_utc.toString("ss"); - break; + return time_utc.toString("ss"); default: { Q_ASSERT_X(false, "Entry::resolveDateTimePlaceholder", "Bad DateTime placeholder type"); break; } } - return date_formatted; + return {}; +} + +QString Entry::resolveConversionPlaceholder(const QString& str, QString* error) const +{ + if (error) { + error->clear(); + } + + // Extract the inner conversion from the placeholder + QRegularExpression conversionRegEx("^{?t-conv:(.*)}?$", QRegularExpression::CaseInsensitiveOption); + auto placeholder = conversionRegEx.match(str).captured(1); + if (!placeholder.isEmpty()) { + // Determine the separator character and split, include empty groups + auto sep = placeholder[0]; + auto parts = placeholder.split(sep); + if (parts.size() >= 4) { + auto resolved = resolveMultiplePlaceholders(parts[1]); + auto type = parts[2].toLower(); + + if (type == "base64") { + resolved = resolved.toUtf8().toBase64(); + } else if (type == "hex") { + resolved = resolved.toUtf8().toHex(); + } else if (type == "uri") { + resolved = QUrl::toPercentEncoding(resolved.toUtf8()); + } else if (type == "uri-dec") { + resolved = QUrl::fromPercentEncoding(resolved.toUtf8()); + } else if (type.startsWith("u")) { + resolved = resolved.toUpper(); + } else if (type.startsWith("l")) { + resolved = resolved.toLower(); + } else { + if (error) { + *error = tr("Invalid conversion type: %1").arg(type); + } + return {}; + } + return resolved; + } + } + + if (error) { + *error = tr("Invalid conversion syntax: %1").arg(str); + } + return {}; +} + +QString Entry::resolveRegexPlaceholder(const QString& str, QString* error) const +{ + if (error) { + error->clear(); + } + + // Extract the inner regex from the placeholder + QRegularExpression conversionRegEx("^{?t-replace-rx:(.*)}?$", QRegularExpression::CaseInsensitiveOption); + auto placeholder = conversionRegEx.match(str).captured(1); + if (!placeholder.isEmpty()) { + // Determine the separator character and split, include empty groups + auto sep = placeholder[0]; + auto parts = placeholder.split(sep); + if (parts.size() >= 5) { + auto resolvedText = resolveMultiplePlaceholders(parts[1]); + auto resolvedSearch = resolveMultiplePlaceholders(parts[2]); + auto resolvedReplace = resolveMultiplePlaceholders(parts[3]); + // Replace $ with \\ to support Qt substitutions + resolvedReplace.replace(QRegularExpression(R"(\$(\d+))"), R"(\\1)"); + + auto searchRegex = QRegularExpression(resolvedSearch); + if (!searchRegex.isValid()) { + if (error) { + *error = + tr("Invalid regular expression syntax %1\n%2").arg(resolvedSearch, searchRegex.errorString()); + } + return {}; + } + + return resolvedText.replace(searchRegex, resolvedReplace); + } + } + + if (error) { + *error = tr("Invalid conversion syntax: %1").arg(str); + } + return {}; } QString Entry::resolveReferencePlaceholderRecursive(const QString& placeholder, int maxDepth) const { - if (maxDepth <= 0) { + if (--maxDepth < 0) { qWarning("Maximum depth of replacement has been reached. Entry uuid: %s", uuid().toString().toLatin1().data()); return placeholder; } @@ -1138,7 +1284,7 @@ QString Entry::resolveReferencePlaceholderRecursive(const QString& placeholder, // resolving references in format: {REF:@:} // using format from http://keepass.info/help/base/fieldrefs.html at the time of writing - QRegularExpressionMatch match = EntryAttributes::matchReference(placeholder); + const QRegularExpressionMatch match = EntryAttributes::matchReference(placeholder); if (!match.hasMatch() || !m_group || !m_group->database()) { return placeholder; } @@ -1158,7 +1304,7 @@ QString Entry::resolveReferencePlaceholderRecursive(const QString& placeholder, // Referencing fields of other entries only works with standard fields, not with custom user strings. // If you want to reference a custom user string, you need to place a redirection in a standard field // of the entry with the custom string, using {S:}, and reference the standard field. - result = refEntry->resolveMultiplePlaceholdersRecursive(result, maxDepth - 1); + result = refEntry->resolveMultiplePlaceholdersRecursive(result, maxDepth); } return result; @@ -1182,7 +1328,7 @@ QString Entry::referenceFieldValue(EntryReferenceType referenceType) const default: break; } - return QString(); + return {}; } void Entry::moveUp() @@ -1234,11 +1380,11 @@ void Entry::setGroup(Group* group, bool trackPrevious) } } + QObject::setParent(group); + m_group = group; group->addEntry(this); - QObject::setParent(group); - if (m_updateTimeinfo) { m_data.timeInfo.setLocationChanged(Clock::currentDateTimeUtc()); } @@ -1267,9 +1413,7 @@ Database* Entry::database() QString Entry::maskPasswordPlaceholders(const QString& str) const { - QString result = str; - result.replace(QRegExp("(\\{PASSWORD\\})", Qt::CaseInsensitive, QRegExp::RegExp2), "******"); - return result; + return QString{str}.replace(QStringLiteral("{PASSWORD}"), QStringLiteral("******"), Qt::CaseInsensitive); } Entry* Entry::resolveReference(const QString& str) const @@ -1299,7 +1443,7 @@ QString Entry::resolvePlaceholder(const QString& placeholder) const QString Entry::resolveUrlPlaceholder(const QString& str, Entry::PlaceholderType placeholderType) const { if (str.isEmpty()) { - return QString(); + return {}; } const QUrl qurl(str); @@ -1330,20 +1474,26 @@ QString Entry::resolveUrlPlaceholder(const QString& str, Entry::PlaceholderType } } - return QString(); + return {}; } Entry::PlaceholderType Entry::placeholderType(const QString& placeholder) const { - if (!placeholder.startsWith(QLatin1Char('{')) || !placeholder.endsWith(QLatin1Char('}'))) { + if (!placeholder.startsWith(QStringLiteral("{")) || !placeholder.endsWith(QStringLiteral("}"))) { return PlaceholderType::NotPlaceholder; } - if (placeholder.startsWith(QLatin1Literal("{S:"))) { + if (placeholder.startsWith(QStringLiteral("{S:"))) { return PlaceholderType::CustomAttribute; } - if (placeholder.startsWith(QLatin1Literal("{REF:"))) { + if (placeholder.startsWith(QStringLiteral("{REF:"))) { return PlaceholderType::Reference; } + if (placeholder.startsWith(QStringLiteral("{T-CONV:"), Qt::CaseInsensitive)) { + return PlaceholderType::Conversion; + } + if (placeholder.startsWith(QStringLiteral("{T-REPLACE-RX:"), Qt::CaseInsensitive)) { + return PlaceholderType::Regex; + } static const QMap placeholders{ {QStringLiteral("{TITLE}"), PlaceholderType::Title}, @@ -1387,22 +1537,24 @@ QString Entry::resolveUrl(const QString& url) const { QString newUrl = url; - QRegExp fileRegEx("^([a-z]:)?[\\\\/]", Qt::CaseInsensitive, QRegExp::RegExp2); - if (fileRegEx.indexIn(newUrl) != -1) { + static const QRegularExpression fileRegEx(R"(^(?:[A-Za-z]:)?[\\/])"); + if (url.contains(fileRegEx)) { // Match possible file paths without the scheme and convert it to a file URL newUrl = QDir::fromNativeSeparators(newUrl); newUrl = QUrl::fromLocalFile(newUrl).toString(); - } else if (newUrl.startsWith("cmd://")) { + } else if (url.startsWith("cmd://")) { QStringList cmdList = newUrl.split(" "); for (int i = 1; i < cmdList.size(); ++i) { + QString& cmd = cmdList[i]; // Don't pass arguments to the resolveUrl function (they look like URL's) - if (!cmdList[i].startsWith("-") && !cmdList[i].startsWith("/")) { - return resolveUrl(cmdList[i].remove(QRegExp("'|\""))); + if (!cmd.startsWith("-") && !cmd.startsWith("/")) { + static const QRegularExpression quotesRegEx("['\"]"); + return resolveUrl(cmd.remove(quotesRegEx)); } } // No URL in this command - return QString(""); + return {}; } if (!newUrl.isEmpty() && !newUrl.contains("://")) { @@ -1411,13 +1563,13 @@ QString Entry::resolveUrl(const QString& url) const } // Validate the URL - QUrl tempUrl = QUrl(newUrl); + QUrl tempUrl(newUrl); if (tempUrl.isValid() && (tempUrl.scheme() == "http" || tempUrl.scheme() == "https" || tempUrl.scheme() == "file")) { return tempUrl.url(); } - // No valid http URL's found + // No valid http URLs found return {}; } @@ -1506,7 +1658,7 @@ bool EntryData::equals(const EntryData& other, CompareItemOptions options) const return false; } } else if (totpSettings.isNull() != other.totpSettings.isNull()) { - // The existance of TOTP has changed between these entries + // The existence of TOTP has changed between these entries return false; } if (::compare(excludeFromReports, other.excludeFromReports, options) != 0) { diff --git a/src/core/Entry.h b/src/core/Entry.h index 6984a9845..3c9a0f3de 100644 --- a/src/core/Entry.h +++ b/src/core/Entry.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2025 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * 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 @@ -58,7 +58,7 @@ struct EntryData QString foregroundColor; QString backgroundColor; QString overrideUrl; - QString tags; + QStringList tags; bool autoTypeEnabled; int autoTypeObfuscation; QString defaultAutoTypeSequence; @@ -79,7 +79,7 @@ class Entry : public ModifiableObject public: Entry(); - ~Entry(); + ~Entry() override; const QUuid& uuid() const; const QString uuidToHex() const; int iconNumber() const; @@ -91,6 +91,7 @@ public: QStringList tagList() const; const TimeInfo& timeInfo() const; bool autoTypeEnabled() const; + bool groupAutoTypeEnabled() const; int autoTypeObfuscation() const; QString defaultAutoTypeSequence() const; QString effectiveAutoTypeSequence() const; @@ -99,7 +100,9 @@ public: const AutoTypeAssociations* autoTypeAssociations() const; QString title() const; QString url() const; + QString resolveUrl() const; QStringList getAllUrls() const; + QStringList getAdditionalUrls() const; QString webUrl() const; QString displayUrl() const; QString username() const; @@ -119,9 +122,13 @@ public: bool excludeFromReports() const; void setExcludeFromReports(bool state); + bool hasPasskey() const; + void removePasskey(); + bool hasTotp() const; bool isExpired() const; bool willExpireInDays(int days) const; + void expireNow(); bool isRecycled() const; bool isAttributeReference(const QString& key) const; bool isAttributeReferenceOf(const QString& key, const QUuid& uuid) const; @@ -158,9 +165,14 @@ public: void setPreviousParentGroup(const Group* group); void setPreviousParentGroupUuid(const QUuid& uuid); + void addTag(const QString& tag); + void removeTag(const QString& tag); + QList historyItems(); const QList& historyItems() const; void addHistoryItem(Entry* entry); + void setHistoryOwner(Entry* entry); + Entry* historyOwner() const; void removeHistoryItems(const QList& historyEntries); void truncateHistory(); @@ -216,13 +228,12 @@ public: DateTimeUtcHour, DateTimeUtcMinute, DateTimeUtcSecond, - DbDir + DbDir, + Conversion, + Regex }; static const int DefaultIconNumber; - static const int ResolveMaximumDepth; - static const QString AutoTypeSequenceUsername; - static const QString AutoTypeSequencePassword; /** * Creates a duplicate of this entry except that the returned entry isn't @@ -238,6 +249,8 @@ public: QString resolvePlaceholder(const QString& str) const; QString resolveUrlPlaceholder(const QString& str, PlaceholderType placeholderType) const; QString resolveDateTimePlaceholder(PlaceholderType placeholderType) const; + QString resolveConversionPlaceholder(const QString& str, QString* error = nullptr) const; + QString resolveRegexPlaceholder(const QString& str, QString* error = nullptr) const; PlaceholderType placeholderType(const QString& placeholder) const; QString resolveUrl(const QString& url) const; @@ -290,6 +303,7 @@ private: QPointer m_autoTypeAssociations; QPointer m_customData; QList m_history; // Items sorted from oldest to newest + QPointer m_historyOwner; QScopedPointer m_tmpHistoryItem; bool m_modifiedSinceBegin; diff --git a/src/core/EntryAttachments.cpp b/src/core/EntryAttachments.cpp index c611f4413..110d1e52b 100644 --- a/src/core/EntryAttachments.cpp +++ b/src/core/EntryAttachments.cpp @@ -19,11 +19,13 @@ #include "config-keepassx.h" #include "core/Global.h" +#include "core/Tools.h" #include "crypto/Random.h" #include #include #include +#include #include #include #include @@ -50,7 +52,7 @@ bool EntryAttachments::hasKey(const QString& key) const QSet EntryAttachments::values() const { - return asConst(m_attachments).values().toSet(); + return Tools::asSet(m_attachments.values()); } QByteArray EntryAttachments::value(const QString& key) const @@ -235,8 +237,10 @@ bool EntryAttachments::openAttachment(const QString& key, QString* errorMessage) const bool saveOk = tmpFile.open() && tmpFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner) && tmpFile.write(attachmentData) == attachmentData.size() && tmpFile.flush(); - if (!saveOk && errorMessage) { - *errorMessage = QString("%1 - %2").arg(key, tmpFile.errorString()); + if (!saveOk) { + if (errorMessage) { + *errorMessage = QString("%1 - %2").arg(key, tmpFile.errorString()); + } return false; } @@ -249,15 +253,35 @@ bool EntryAttachments::openAttachment(const QString& key, QString* errorMessage) watcher->start(tmpFile.fileName(), 5); connect(watcher.data(), &FileWatcher::fileChanged, this, &EntryAttachments::attachmentFileModified); m_attachmentFileWatchers.insert(tmpFile.fileName(), watcher); + } else if (auto path = m_openedAttachments.value(key); m_attachmentFileWatchers.contains(path)) { + // If we are already watching an open attachment file, overwrite it with the information from the entry + auto watcher = m_attachmentFileWatchers.value(path); + watcher->stop(); + + QFile file(path); + auto finally = qScopeGuard([&file, &watcher, &path] { + file.close(); + watcher->start(path, 5); + }); + + const auto attachmentData = value(key); + const bool saveOk = file.open(QIODevice::WriteOnly) && file.setPermissions(QFile::ReadOwner | QFile::WriteOwner) + && file.write(attachmentData) == attachmentData.size() && file.flush(); + + if (!saveOk) { + if (errorMessage) { + *errorMessage = QString("%1 - %2").arg(key, file.errorString()); + } + return false; + } } const bool openOk = QDesktopServices::openUrl(QUrl::fromLocalFile(m_openedAttachments.value(key))); if (!openOk && errorMessage) { *errorMessage = tr("Cannot open file \"%1\"").arg(key); - return false; } - return true; + return openOk; } void EntryAttachments::attachmentFileModified(const QString& path) diff --git a/src/core/EntryAttachments.h b/src/core/EntryAttachments.h index 1fc35df89..c07c9cbf7 100644 --- a/src/core/EntryAttachments.h +++ b/src/core/EntryAttachments.h @@ -34,7 +34,7 @@ class EntryAttachments : public ModifiableObject public: explicit EntryAttachments(QObject* parent = nullptr); - virtual ~EntryAttachments(); + ~EntryAttachments() override; QList keys() const; bool hasKey(const QString& key) const; QSet values() const; diff --git a/src/core/EntryAttributes.cpp b/src/core/EntryAttributes.cpp index d6ca12102..5c1e1c3a0 100644 --- a/src/core/EntryAttributes.cpp +++ b/src/core/EntryAttributes.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * 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 @@ -17,8 +17,8 @@ */ #include "EntryAttributes.h" - #include "core/Global.h" +#include "core/Tools.h" #include #include @@ -30,12 +30,26 @@ const QString EntryAttributes::URLKey = "URL"; const QString EntryAttributes::NotesKey = "Notes"; const QStringList EntryAttributes::DefaultAttributes(QStringList() << TitleKey << UserNameKey << PasswordKey << URLKey << NotesKey); - const QString EntryAttributes::WantedFieldGroupName = "WantedField"; const QString EntryAttributes::SearchInGroupName = "SearchIn"; const QString EntryAttributes::SearchTextGroupName = "SearchText"; const QString EntryAttributes::RememberCmdExecAttr = "_EXEC_CMD"; +const QString EntryAttributes::AdditionalUrlAttribute = "KP2A_URL"; + +// Passkey related attributes +const QString EntryAttributes::PasskeyAttribute = "KPEX_PASSKEY"; +const QString EntryAttributes::KPEX_PASSKEY_USERNAME = QStringLiteral("KPEX_PASSKEY_USERNAME"); +const QString EntryAttributes::KPEX_PASSKEY_CREDENTIAL_ID = QStringLiteral("KPEX_PASSKEY_CREDENTIAL_ID"); +const QString EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM = QStringLiteral("KPEX_PASSKEY_PRIVATE_KEY_PEM"); +const QString EntryAttributes::KPEX_PASSKEY_RELYING_PARTY = QStringLiteral("KPEX_PASSKEY_RELYING_PARTY"); +const QString EntryAttributes::KPEX_PASSKEY_USER_HANDLE = QStringLiteral("KPEX_PASSKEY_USER_HANDLE"); +const QString EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_START = QStringLiteral("-----BEGIN PRIVATE KEY-----"); +const QString EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_END = QStringLiteral("-----END PRIVATE KEY-----"); + +// For compatibility with StrongBox +const QString EntryAttributes::KPEX_PASSKEY_GENERATED_USER_ID = QStringLiteral("KPEX_PASSKEY_GENERATED_USER_ID"); +const QString EntryAttributes::KPXC_PASSKEY_USERNAME = QStringLiteral("KPXC_PASSKEY_USERNAME"); EntryAttributes::EntryAttributes(QObject* parent) : ModifiableObject(parent) @@ -53,12 +67,34 @@ bool EntryAttributes::hasKey(const QString& key) const return m_attributes.contains(key); } +bool EntryAttributes::hasPasskey() const +{ + const auto keyList = keys(); + for (const auto& key : keyList) { + if (isPasskeyAttribute(key)) { + return true; + } + } + + return false; +} + +void EntryAttributes::removePasskeyAttributes() +{ + const auto keyList = keys(); + for (const auto& key : keyList) { + if (isPasskeyAttribute(key)) { + remove(key); + } + } +} + QList EntryAttributes::customKeys() const { QList customKeys; const QList keyList = keys(); for (const QString& key : keyList) { - if (!isDefaultAttribute(key)) { + if (!isDefaultAttribute(key) && !isPasskeyAttribute(key)) { customKeys.append(key); } } @@ -226,7 +262,7 @@ void EntryAttributes::copyCustomKeysFrom(const EntryAttributes* other) bool EntryAttributes::areCustomKeysDifferent(const EntryAttributes* other) { // check if they are equal ignoring the order of the keys - if (keys().toSet() != other->keys().toSet()) { + if (Tools::asSet(keys()) != Tools::asSet(other->keys())) { return true; } @@ -287,8 +323,8 @@ bool EntryAttributes::operator!=(const EntryAttributes& other) const QRegularExpressionMatch EntryAttributes::matchReference(const QString& text) { - static QRegularExpression referenceRegExp( - "\\{REF:(?[TUPANI])@(?[TUPANIO]):(?[^}]+)\\}", + static const QRegularExpression referenceRegExp( + R"(\{REF:(?[TUPANI])@(?[TUPANIO]):(?[^}]+)\})", QRegularExpression::CaseInsensitiveOption); return referenceRegExp.match(text); @@ -322,3 +358,8 @@ bool EntryAttributes::isDefaultAttribute(const QString& key) { return DefaultAttributes.contains(key); } + +bool EntryAttributes::isPasskeyAttribute(const QString& key) +{ + return key.startsWith(PasskeyAttribute); +} diff --git a/src/core/EntryAttributes.h b/src/core/EntryAttributes.h index a9fcf7f60..d0767a4c1 100644 --- a/src/core/EntryAttributes.h +++ b/src/core/EntryAttributes.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * 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 @@ -33,6 +33,8 @@ public: explicit EntryAttributes(QObject* parent = nullptr); QList keys() const; bool hasKey(const QString& key) const; + bool hasPasskey() const; + void removePasskeyAttributes(); QList customKeys() const; QString value(const QString& key) const; QList values(const QList& keys) const; @@ -61,7 +63,21 @@ public: static const QString NotesKey; static const QStringList DefaultAttributes; static const QString RememberCmdExecAttr; + static const QString AdditionalUrlAttribute; + + static const QString PasskeyAttribute; + static const QString KPXC_PASSKEY_USERNAME; + static const QString KPEX_PASSKEY_USERNAME; + static const QString KPEX_PASSKEY_CREDENTIAL_ID; + static const QString KPEX_PASSKEY_GENERATED_USER_ID; + static const QString KPEX_PASSKEY_PRIVATE_KEY_PEM; + static const QString KPEX_PASSKEY_RELYING_PARTY; + static const QString KPEX_PASSKEY_USER_HANDLE; + static const QString KPEX_PASSKEY_PRIVATE_KEY_START; + static const QString KPEX_PASSKEY_PRIVATE_KEY_END; + static bool isDefaultAttribute(const QString& key); + static bool isPasskeyAttribute(const QString& key); static const QString WantedFieldGroupName; static const QString SearchInGroupName; diff --git a/src/core/EntrySearcher.cpp b/src/core/EntrySearcher.cpp index e52033a04..085c5bcdb 100644 --- a/src/core/EntrySearcher.cpp +++ b/src/core/EntrySearcher.cpp @@ -25,8 +25,6 @@ EntrySearcher::EntrySearcher(bool caseSensitive, bool skipProtected) : m_caseSensitive(caseSensitive) , m_skipProtected(skipProtected) - , m_termParser(R"re(([-!*+]+)?(?:(\w*):)?(?:(?=")"((?:[^"\\]|\\.)*)"|([^ ]*))( |$))re") -// Group 1 = modifiers, Group 2 = field, Group 3 = quoted string, Group 4 = unquoted string { } @@ -150,7 +148,10 @@ bool EntrySearcher::searchEntryImpl(const Entry* entry) auto attributes = QStringList(attributes_keys + entry->attributes()->values(attributes_keys)); auto attachments = QStringList(entry->attachments()->keys()); // Build a group hierarchy to allow searching for e.g. /group1/subgroup* - auto hierarchy = entry->group()->hierarchy().join('/').prepend("/"); + QString hierarchy; + if (entry->group()) { + hierarchy = entry->group()->hierarchy().join('/').prepend("/"); + } // By default, empty term matches every entry. // However when skipping protected fields, we will reject everything instead @@ -192,16 +193,21 @@ bool EntrySearcher::searchEntryImpl(const Entry* entry) // Match against the full hierarchy if the word contains a '/' otherwise just the group name if (term.word.contains('/')) { found = term.regex.match(hierarchy).hasMatch(); - } else { + } else if (entry->group()) { found = term.regex.match(entry->group()->name()).hasMatch(); } break; case Field::Tag: - found = term.regex.match(entry->tags()).hasMatch(); + found = entry->tagList().indexOf(term.regex) != -1; break; case Field::Is: - if (term.word.compare("expired", Qt::CaseInsensitive) == 0) { - found = entry->isExpired(); + if (term.word.startsWith("expired", Qt::CaseInsensitive)) { + auto days = 0; + auto parts = term.word.split("-", Qt::SkipEmptyParts); + if (parts.length() >= 2) { + days = parts[1].toInt(); + } + found = entry->willExpireInDays(days) && !entry->isRecycled(); break; } else if (term.word.compare("weak", Qt::CaseInsensitive) == 0) { if (!entry->excludeFromReports() && !entry->password().isEmpty() && !entry->isExpired()) { @@ -215,13 +221,15 @@ bool EntrySearcher::searchEntryImpl(const Entry* entry) } found = false; break; + case Field::Uuid: + found = term.regex.match(entry->uuidToHex()).hasMatch(); + break; default: // Terms without a specific field try to match title, username, url, and notes found = term.regex.match(entry->resolvePlaceholder(entry->title())).hasMatch() || term.regex.match(entry->resolvePlaceholder(entry->username())).hasMatch() || term.regex.match(entry->resolvePlaceholder(entry->url())).hasMatch() - || term.regex.match(entry->resolvePlaceholder(entry->tags())).hasMatch() - || term.regex.match(entry->notes()).hasMatch(); + || entry->tagList().indexOf(term.regex) != -1 || term.regex.match(entry->notes()).hasMatch(); } // negate the result if exclude: @@ -246,23 +254,27 @@ void EntrySearcher::parseSearchTerms(const QString& searchString) {QStringLiteral("notes"), Field::Notes}, {QStringLiteral("pw"), Field::Password}, {QStringLiteral("password"), Field::Password}, - {QStringLiteral("title"), Field::Title}, - {QStringLiteral("t"), Field::Title}, - {QStringLiteral("u"), Field::Username}, // u: stands for username rather than url + {QStringLiteral("title"), Field::Title}, // title before tag to capture t: + {QStringLiteral("username"), Field::Username}, // username before url to capture u: {QStringLiteral("url"), Field::Url}, - {QStringLiteral("username"), Field::Username}, {QStringLiteral("group"), Field::Group}, {QStringLiteral("tag"), Field::Tag}, - {QStringLiteral("is"), Field::Is}}; + {QStringLiteral("is"), Field::Is}, + {QStringLiteral("uuid"), Field::Uuid}}; + + // Group 1 = modifiers, Group 2 = field, Group 3 = quoted string, Group 4 = unquoted string + static QRegularExpression termParser(R"re(([-!*+]+)?(?:(\w*):)?(?:(?=")"((?:[^"\\]|\\.)*)"|([^ ]*))( |$))re"); m_searchTerms.clear(); - auto results = m_termParser.globalMatch(searchString); + auto results = termParser.globalMatch(searchString); while (results.hasNext()) { auto result = results.next(); SearchTerm term{}; // Quoted string group term.word = result.captured(3); + // Unescape quotes + term.word.replace("\\\"", "\""); // If empty, use the unquoted string group if (term.word.isEmpty()) { diff --git a/src/core/EntrySearcher.h b/src/core/EntrySearcher.h index 80c86600c..0134054bf 100644 --- a/src/core/EntrySearcher.h +++ b/src/core/EntrySearcher.h @@ -40,7 +40,8 @@ public: AttributeValue, Group, Tag, - Is + Is, + Uuid }; struct SearchTerm @@ -71,7 +72,6 @@ private: bool m_caseSensitive; bool m_skipProtected; - QRegularExpression m_termParser; QList m_searchTerms; friend class TestEntrySearcher; diff --git a/src/core/Exporter.h b/src/core/Exporter.h deleted file mode 100644 index 1dd24b3fb..000000000 --- a/src/core/Exporter.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef KEEPASSX_EXPORTER_H -#define KEEPASSX_EXPORTER_H - -class Database; -class Group; - -class Exporter -{ -public: - virtual Database* exportGroup(Group* group) = 0; - virtual ~Exporter() - { - } -}; - -#endif // KEEPASSX_EXPORTER_H diff --git a/src/core/FileWatcher.cpp b/src/core/FileWatcher.cpp index c919a64ef..3a3c6d83b 100644 --- a/src/core/FileWatcher.cpp +++ b/src/core/FileWatcher.cpp @@ -79,17 +79,18 @@ void FileWatcher::stop() m_fileChecksum.clear(); m_fileChecksumTimer.stop(); m_fileChangeDelayTimer.stop(); + m_paused = false; } void FileWatcher::pause() { - m_ignoreFileChange = true; + m_paused = true; m_fileChangeDelayTimer.stop(); } void FileWatcher::resume() { - m_ignoreFileChange = false; + m_paused = false; // Add a short delay to start in the next event loop if (!m_fileIgnoreDelayTimer.isActive()) { m_fileIgnoreDelayTimer.start(0); @@ -98,7 +99,7 @@ void FileWatcher::resume() bool FileWatcher::shouldIgnoreChanges() { - return m_filePath.isEmpty() || m_ignoreFileChange || m_fileIgnoreDelayTimer.isActive() + return m_filePath.isEmpty() || m_ignoreFileChange || m_paused || m_fileIgnoreDelayTimer.isActive() || m_fileChangeDelayTimer.isActive(); } @@ -116,9 +117,9 @@ void FileWatcher::checkFileChanged() // Prevent reentrance m_ignoreFileChange = true; - AsyncTask::runThenCallback([=] { return calculateChecksum(); }, + AsyncTask::runThenCallback([this] { return calculateChecksum(); }, this, - [=](QByteArray checksum) { + [this](const QByteArray& checksum) { if (checksum != m_fileChecksum) { m_fileChecksum = checksum; m_fileChangeDelayTimer.start(0); @@ -131,7 +132,7 @@ void FileWatcher::checkFileChanged() QByteArray FileWatcher::calculateChecksum() { QFile file(m_filePath); - if (file.open(QFile::ReadOnly)) { + if (!m_filePath.isEmpty() && file.open(QFile::ReadOnly)) { QCryptographicHash hash(QCryptographicHash::Sha256); if (m_fileChecksumSizeBytes > 0) { hash.addData(file.read(m_fileChecksumSizeBytes)); diff --git a/src/core/FileWatcher.h b/src/core/FileWatcher.h index 27159d17a..7a5649764 100644 --- a/src/core/FileWatcher.h +++ b/src/core/FileWatcher.h @@ -56,6 +56,7 @@ private: QTimer m_fileChecksumTimer; int m_fileChecksumSizeBytes = -1; bool m_ignoreFileChange = false; + bool m_paused = false; }; #endif // KEEPASSXC_FILEWATCHER_H diff --git a/src/core/Global.h b/src/core/Global.h index e9a4db739..9630f2f73 100644 --- a/src/core/Global.h +++ b/src/core/Global.h @@ -21,6 +21,7 @@ #define KEEPASSX_GLOBAL_H #include +#include #if defined(Q_OS_WIN) #if defined(KEEPASSX_BUILDING_CORE) @@ -42,6 +43,23 @@ #define FILE_CASE_SENSITIVE Qt::CaseSensitive #endif +#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) +// "Backport" a few things to the 'Qt' namespace as required for older Qt +// versions. +namespace Qt +{ + const QString::SplitBehavior SkipEmptyParts = QString::SkipEmptyParts; + inline QTextStream& endl(QTextStream& s) + { + return ::endl(s); + } + inline QTextStream& flush(QTextStream& s) + { + return ::flush(s); + } +} // namespace Qt +#endif + static const auto TRUE_STR = QStringLiteral("true"); static const auto FALSE_STR = QStringLiteral("false"); diff --git a/src/core/Group.cpp b/src/core/Group.cpp index d0c87b3e2..b7182740f 100644 --- a/src/core/Group.cpp +++ b/src/core/Group.cpp @@ -33,6 +33,7 @@ #include const int Group::DefaultIconNumber = 48; +const int Group::OpenFolderIconNumber = 49; const int Group::RecycleBinIconNumber = 43; const QString Group::RootAutoTypeSequence = "{USERNAME}{TAB}{PASSWORD}{ENTER}"; @@ -130,6 +131,19 @@ QString Group::tags() const return m_data.tags; } +QString Group::fullPath() const +{ + QString fullPath; + auto group = this; + + do { + fullPath.insert(0, "/" + group->name()); + group = group->parentGroup(); + } while (group); + + return fullPath; +} + int Group::iconNumber() const { return m_data.iconNumber; @@ -166,7 +180,7 @@ QString Group::effectiveAutoTypeSequence() const const Group* group = this; do { if (group->autoTypeEnabled() == Group::Disable) { - return QString(); + return {}; } sequence = group->defaultAutoTypeSequence(); @@ -209,18 +223,16 @@ Entry* Group::lastTopVisibleEntry() const bool Group::isRecycled() const { auto group = this; - if (!group->database()) { - return false; - } - - do { - if (group->m_parent && group->m_db->metadata()) { - if (group->m_parent == group->m_db->metadata()->recycleBin()) { + auto db = group->database(); + if (db) { + auto recycleBin = db->metadata()->recycleBin(); + do { + if (group == recycleBin) { return true; } - } - group = group->m_parent; - } while (group && group->m_parent && group->m_parent != group->m_db->rootGroup()); + group = group->m_parent; + } while (group); + } return false; } @@ -235,6 +247,20 @@ bool Group::isEmpty() const return !hasChildren() && m_entries.isEmpty(); } +// TODO: Refactor this when KeeShare is refactored +bool Group::isShared() const +{ + auto group = this; + do { + if (group->customData()->contains("KeeShare/Reference")) { + return true; + } + group = group->m_parent; + } while (group); + + return false; +} + CustomData* Group::customData() { return m_customData; @@ -274,6 +300,21 @@ void Group::setCustomDataTriState(const QString& key, const Group::TriState& val } } +// Note that this returns an empty string both if the key is missing *or* if the key is present but value is empty. +QString Group::resolveCustomDataString(const QString& key, bool checkParent) const +{ + // If not defined, check our parent up to the root group + if (!m_customData->contains(key)) { + if (!m_parent || !checkParent) { + return QString(); + } else { + return m_parent->resolveCustomDataString(key); + } + } + + return m_customData->value(key); +} + bool Group::equals(const Group* other, CompareItemOptions options) const { if (!other) { @@ -890,7 +931,7 @@ Group* Group::findChildByName(const QString& name) */ Group* Group::clone(Entry::CloneFlags entryFlags, Group::CloneFlags groupFlags) const { - Group* clonedGroup = new Group(); + auto clonedGroup = new Group(); clonedGroup->setUpdateTimeinfo(false); @@ -1132,7 +1173,8 @@ void Group::applyGroupIconOnCreateTo(Entry* entry) return; } - if (iconNumber() == Group::DefaultIconNumber && iconUuid().isNull()) { + if ((iconNumber() == Group::DefaultIconNumber || iconNumber() == Group::OpenFolderIconNumber) + && iconUuid().isNull()) { return; } diff --git a/src/core/Group.h b/src/core/Group.h index 748437ab1..95489bc59 100644 --- a/src/core/Group.h +++ b/src/core/Group.h @@ -39,11 +39,8 @@ public: enum MergeMode { Default, // Determine merge strategy from parent or fallback (Synchronize) - Duplicate, // lossy strategy regarding deletions, duplicate older changes in a new entry - KeepLocal, // merge history forcing local as top regardless of age - KeepRemote, // merge history forcing remote as top regardless of age KeepNewer, // merge history - Synchronize, // merge history keeping most recent as top entry and appling deletions + Synchronize, // merge history keeping most recent as top entry and applying deletions }; enum CloneFlag @@ -78,13 +75,14 @@ public: }; Group(); - ~Group(); + ~Group() override; const QUuid& uuid() const; const QString uuidToHex() const; QString name() const; QString notes() const; QString tags() const; + QString fullPath() const; int iconNumber() const; const QUuid& iconUuid() const; const TimeInfo& timeInfo() const; @@ -100,16 +98,19 @@ public: bool isExpired() const; bool isRecycled() const; bool isEmpty() const; + bool isShared() const; CustomData* customData(); const CustomData* customData() const; Group::TriState resolveCustomDataTriState(const QString& key, bool checkParent = true) const; void setCustomDataTriState(const QString& key, const Group::TriState& value); + QString resolveCustomDataString(const QString& key, bool checkParent = true) const; const Group* previousParentGroup() const; QUuid previousParentGroupUuid() const; bool equals(const Group* other, CompareItemOptions options) const; static const int DefaultIconNumber; + static const int OpenFolderIconNumber; static const int RecycleBinIconNumber; static const QString RootAutoTypeSequence; @@ -154,7 +155,6 @@ public: const QList& children() const; QList entries(); const QList& entries() const; - Entry* findEntryRecursive(const QString& text, EntryReferenceType referenceType, Group* group = nullptr); QList referencesRecursive(const Entry* entry) const; QList entriesRecursive(bool includeHistoryItems = false) const; QList groupsRecursive(bool includeSelf) const; @@ -228,9 +228,7 @@ private: bool m_updateTimeinfo; - friend void Database::setRootGroup(Group* group); - friend Entry::~Entry(); - friend void Entry::setGroup(Group* group, bool trackPrevious); + friend Group* Database::setRootGroup(Group* group); }; Q_DECLARE_OPERATORS_FOR_FLAGS(Group::CloneFlags) diff --git a/src/core/InactivityTimer.h b/src/core/InactivityTimer.h index b9de80fb4..8bde9751f 100644 --- a/src/core/InactivityTimer.h +++ b/src/core/InactivityTimer.h @@ -37,7 +37,7 @@ signals: void inactivityDetected(); protected: - bool eventFilter(QObject* watched, QEvent* event); + bool eventFilter(QObject* watched, QEvent* event) override; private slots: void timeout(); diff --git a/src/core/Merger.cpp b/src/core/Merger.cpp index fd30da7aa..31da6e106 100644 --- a/src/core/Merger.cpp +++ b/src/core/Merger.cpp @@ -17,7 +17,9 @@ #include "Merger.h" +#include "core/Global.h" #include "core/Metadata.h" +#include "core/Tools.h" Merger::Merger(const Database* sourceDb, Database* targetDb) : m_mode(Group::Default) @@ -57,6 +59,11 @@ void Merger::resetForcedMergeMode() m_mode = Group::Default; } +void Merger::setSkipDatabaseCustomData(bool state) +{ + m_skipCustomData = state; +} + QStringList Merger::merge() { // Order of merge steps is important - it is possible that we @@ -158,13 +165,6 @@ Merger::resolveGroupConflict(const MergeContext& context, const Group* sourceChi return changes; } -bool Merger::markOlderEntry(Entry* entry) -{ - entry->attributes()->set( - "merged", tr("older entry merged from database \"%1\"").arg(entry->group()->database()->metadata()->name())); - return true; -} - void Merger::moveEntry(Entry* entry, Group* targetGroup) { Q_ASSERT(entry); @@ -257,76 +257,6 @@ void Merger::eraseGroup(Group* group) database->setDeletedObjects(deletions); } -Merger::ChangeList -Merger::resolveEntryConflict_Duplicate(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry) -{ - ChangeList changes; - const int comparison = compare(targetEntry->timeInfo().lastModificationTime(), - sourceEntry->timeInfo().lastModificationTime(), - CompareItemIgnoreMilliseconds); - // if one entry is newer, create a clone and add it to the group - if (comparison < 0) { - Entry* clonedEntry = sourceEntry->clone(Entry::CloneNewUuid | Entry::CloneIncludeHistory); - moveEntry(clonedEntry, context.m_targetGroup); - markOlderEntry(targetEntry); - changes << tr("Adding backup for older target %1 [%2]").arg(targetEntry->title(), targetEntry->uuidToHex()); - } else if (comparison > 0) { - Entry* clonedEntry = sourceEntry->clone(Entry::CloneNewUuid | Entry::CloneIncludeHistory); - moveEntry(clonedEntry, context.m_targetGroup); - markOlderEntry(clonedEntry); - changes << tr("Adding backup for older source %1 [%2]").arg(sourceEntry->title(), sourceEntry->uuidToHex()); - } - return changes; -} - -Merger::ChangeList -Merger::resolveEntryConflict_KeepLocal(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry) -{ - Q_UNUSED(context); - ChangeList changes; - const int comparison = compare(targetEntry->timeInfo().lastModificationTime(), - sourceEntry->timeInfo().lastModificationTime(), - CompareItemIgnoreMilliseconds); - if (comparison < 0) { - // we need to make our older entry "newer" than the new entry - therefore - // we just create a new history entry without any changes - this preserves - // the old state before merging the new state and updates the timestamp - // the merge takes care, that the newer entry is sorted inbetween both entries - // this type of merge changes the database timestamp since reapplying the - // old entry is an active change of the database! - changes << tr("Reapplying older target entry on top of newer source %1 [%2]") - .arg(targetEntry->title(), targetEntry->uuidToHex()); - Entry* agedTargetEntry = targetEntry->clone(Entry::CloneNoFlags); - targetEntry->addHistoryItem(agedTargetEntry); - } - return changes; -} - -Merger::ChangeList -Merger::resolveEntryConflict_KeepRemote(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry) -{ - Q_UNUSED(context); - ChangeList changes; - const int comparison = compare(targetEntry->timeInfo().lastModificationTime(), - sourceEntry->timeInfo().lastModificationTime(), - CompareItemIgnoreMilliseconds); - if (comparison > 0) { - // we need to make our older entry "newer" than the new entry - therefore - // we just create a new history entry without any changes - this preserves - // the old state before merging the new state and updates the timestamp - // the merge takes care, that the newer entry is sorted inbetween both entries - // this type of merge changes the database timestamp since reapplying the - // old entry is an active change of the database! - changes << tr("Reapplying older source entry on top of newer target %1 [%2]") - .arg(targetEntry->title(), targetEntry->uuidToHex()); - targetEntry->beginUpdate(); - targetEntry->copyDataFrom(sourceEntry); - targetEntry->endUpdate(); - // History item is created by endUpdate since we should have changes - } - return changes; -} - Merger::ChangeList Merger::resolveEntryConflict_MergeHistories(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry, @@ -338,6 +268,7 @@ Merger::ChangeList Merger::resolveEntryConflict_MergeHistories(const MergeContex const int comparison = compare(targetEntry->timeInfo().lastModificationTime(), sourceEntry->timeInfo().lastModificationTime(), CompareItemIgnoreMilliseconds); + const int maxItems = targetEntry->database()->metadata()->historyMaxItems(); if (comparison < 0) { Group* currentGroup = targetEntry->group(); Entry* clonedEntry = sourceEntry->clone(Entry::CloneIncludeHistory); @@ -346,15 +277,15 @@ Merger::ChangeList Merger::resolveEntryConflict_MergeHistories(const MergeContex qPrintable(sourceEntry->title()), qPrintable(currentGroup->name())); changes << tr("Synchronizing from newer source %1 [%2]").arg(targetEntry->title(), targetEntry->uuidToHex()); - moveEntry(clonedEntry, currentGroup); - mergeHistory(targetEntry, clonedEntry, mergeMethod); + mergeHistory(targetEntry, clonedEntry, mergeMethod, maxItems); eraseEntry(targetEntry); + moveEntry(clonedEntry, currentGroup); } else { qDebug("Merge %s/%s with local on top/under %s", qPrintable(targetEntry->title()), qPrintable(sourceEntry->title()), qPrintable(targetEntry->group()->name())); - const bool changed = mergeHistory(sourceEntry, targetEntry, mergeMethod); + const bool changed = mergeHistory(sourceEntry, targetEntry, mergeMethod, maxItems); if (changed) { changes << tr("Synchronizing from older source %1 [%2]").arg(targetEntry->title(), targetEntry->uuidToHex()); @@ -366,41 +297,18 @@ Merger::ChangeList Merger::resolveEntryConflict_MergeHistories(const MergeContex Merger::ChangeList Merger::resolveEntryConflict(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry) { - ChangeList changes; // We need to cut off the milliseconds since the persistent format only supports times down to seconds // so when we import data from a remote source, it may represent the (or even some msec newer) data // which may be discarded due to higher runtime precision Group::MergeMode mergeMode = m_mode == Group::Default ? context.m_targetGroup->mergeMode() : m_mode; - switch (mergeMode) { - case Group::Duplicate: - changes << resolveEntryConflict_Duplicate(context, sourceEntry, targetEntry); - break; - - case Group::KeepLocal: - changes << resolveEntryConflict_KeepLocal(context, sourceEntry, targetEntry); - changes << resolveEntryConflict_MergeHistories(context, sourceEntry, targetEntry, mergeMode); - break; - - case Group::KeepRemote: - changes << resolveEntryConflict_KeepRemote(context, sourceEntry, targetEntry); - changes << resolveEntryConflict_MergeHistories(context, sourceEntry, targetEntry, mergeMode); - break; - - case Group::Synchronize: - case Group::KeepNewer: - // nothing special to do since resolveEntryConflictMergeHistories takes care to use the newest entry - changes << resolveEntryConflict_MergeHistories(context, sourceEntry, targetEntry, mergeMode); - break; - - default: - // do nothing - break; - } - return changes; + return resolveEntryConflict_MergeHistories(context, sourceEntry, targetEntry, mergeMode); } -bool Merger::mergeHistory(const Entry* sourceEntry, Entry* targetEntry, Group::MergeMode mergeMethod) +bool Merger::mergeHistory(const Entry* sourceEntry, + Entry* targetEntry, + Group::MergeMode mergeMethod, + const int maxItems) { Q_UNUSED(mergeMethod); const auto targetHistoryItems = targetEntry->historyItems(); @@ -408,8 +316,8 @@ bool Merger::mergeHistory(const Entry* sourceEntry, Entry* targetEntry, Group::M const int comparison = compare(sourceEntry->timeInfo().lastModificationTime(), targetEntry->timeInfo().lastModificationTime(), CompareItemIgnoreMilliseconds); - const bool preferLocal = mergeMethod == Group::KeepLocal || comparison < 0; - const bool preferRemote = mergeMethod == Group::KeepRemote || comparison > 0; + const bool preferLocal = comparison < 0; + const bool preferRemote = comparison > 0; QMap merged; for (Entry* historyItem : targetHistoryItems) { @@ -473,7 +381,6 @@ bool Merger::mergeHistory(const Entry* sourceEntry, Entry* targetEntry, Group::M } bool changed = false; - const int maxItems = targetEntry->database()->metadata()->historyMaxItems(); const auto updatedHistoryItems = merged.values(); for (int i = 0; i < maxItems; ++i) { const Entry* oldEntry = targetHistoryItems.value(targetHistoryItems.count() - i); @@ -568,7 +475,7 @@ Merger::ChangeList Merger::mergeDeletions(const MergeContext& context) while (!groups.isEmpty()) { auto* group = groups.takeFirst(); - if (!(group->children().toSet() & groups.toSet()).isEmpty()) { + if (Tools::asSet(group->children()).intersects(Tools::asSet(groups))) { // we need to finish all children before we are able to determine if the group can be removed groups << group; continue; @@ -614,6 +521,11 @@ Merger::ChangeList Merger::mergeMetadata(const MergeContext& context) } } + // Some merges shouldn't modify the database custom data + if (m_skipCustomData) { + return changes; + } + // Merge Custom Data if source is newer const auto targetCustomDataModificationTime = targetMetadata->customData()->lastModified(); const auto sourceCustomDataModificationTime = sourceMetadata->customData()->lastModified(); @@ -635,8 +547,8 @@ Merger::ChangeList Merger::mergeMetadata(const MergeContext& context) // Transfer new/existing keys for (const auto& key : sourceCustomDataKeys) { - // Don't merge this meta field, it is updated automatically. - if (key == CustomData::LastModified) { + // Don't merge auto-generated keys + if (sourceMetadata->customData()->isAutoGenerated(key)) { continue; } diff --git a/src/core/Merger.h b/src/core/Merger.h index 4b277f956..9669e89e3 100644 --- a/src/core/Merger.h +++ b/src/core/Merger.h @@ -31,6 +31,7 @@ public: Merger(const Group* sourceGroup, Group* targetGroup); void setForcedMergeMode(Group::MergeMode mode); void resetForcedMergeMode(); + void setSkipDatabaseCustomData(bool state); QStringList merge(); private: @@ -49,22 +50,15 @@ private: ChangeList mergeGroup(const MergeContext& context); ChangeList mergeDeletions(const MergeContext& context); ChangeList mergeMetadata(const MergeContext& context); - bool markOlderEntry(Entry* entry); - bool mergeHistory(const Entry* sourceEntry, Entry* targetEntry, Group::MergeMode mergeMethod); + bool mergeHistory(const Entry* sourceEntry, Entry* targetEntry, Group::MergeMode mergeMethod, const int maxItems); void moveEntry(Entry* entry, Group* targetGroup); void moveGroup(Group* group, Group* targetGroup); - // remove an entry without a trace in the deletedObjects - needed for elemination cloned entries + // remove an entry without a trace in the deletedObjects - needed for elimination of cloned entries void eraseEntry(Entry* entry); - // remove an entry without a trace in the deletedObjects - needed for elemination cloned entries + // remove an entry without a trace in the deletedObjects - needed for elimination of cloned entries void eraseGroup(Group* group); ChangeList resolveEntryConflict(const MergeContext& context, const Entry* existingEntry, Entry* otherEntry); ChangeList resolveGroupConflict(const MergeContext& context, const Group* existingGroup, Group* otherGroup); - Merger::ChangeList - resolveEntryConflict_Duplicate(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry); - Merger::ChangeList - resolveEntryConflict_KeepLocal(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry); - Merger::ChangeList - resolveEntryConflict_KeepRemote(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry); Merger::ChangeList resolveEntryConflict_MergeHistories(const MergeContext& context, const Entry* sourceEntry, Entry* targetEntry, @@ -73,6 +67,7 @@ private: private: MergeContext m_context; Group::MergeMode m_mode; + bool m_skipCustomData = false; }; #endif // KEEPASSXC_MERGER_H diff --git a/src/core/Metadata.cpp b/src/core/Metadata.cpp index d88998057..8e714e0f2 100644 --- a/src/core/Metadata.cpp +++ b/src/core/Metadata.cpp @@ -24,13 +24,21 @@ #include #include +#include const int Metadata::DefaultHistoryMaxItems = 10; const int Metadata::DefaultHistoryMaxSize = 6 * 1024 * 1024; +const int Metadata::DefaultAutosaveDelayMin = 0; // Fallback icon for return by reference static const Metadata::CustomIconData NULL_ICON{}; +namespace customDataKeys +{ + static const QString savedSearch = QStringLiteral("KPXC_SavedSearch"); + static const QString autosaveDelay = QStringLiteral("KPXC_autosaveDelayMin"); +}; // namespace customDataKeys + Metadata::Metadata(QObject* parent) : ModifiableObject(parent) , m_customData(new CustomData(this)) @@ -264,6 +272,19 @@ int Metadata::historyMaxSize() const return m_data.historyMaxSize; } +int Metadata::autosaveDelayMin() const +{ + QString autosaveDelayMinStr = m_customData->value(customDataKeys::autosaveDelay); + if (autosaveDelayMinStr.isNull()) { + // data is not set yet, use default + return Metadata::DefaultAutosaveDelayMin; + } + bool ok; // check for QString to int op failure + int autosaveDelayMin = autosaveDelayMinStr.toInt(&ok); + Q_ASSERT(ok); + return autosaveDelayMin; +} + CustomData* Metadata::customData() { return m_customData; @@ -477,6 +498,12 @@ void Metadata::setHistoryMaxSize(int value) set(m_data.historyMaxSize, value); } +void Metadata::setAutosaveDelayMin(int value) +{ + Q_ASSERT(value >= 0 && value <= 420000000); + m_customData->set(customDataKeys::autosaveDelay, QString::number(value)); +} + QDateTime Metadata::settingsChanged() const { return m_settingsChanged; @@ -487,3 +514,26 @@ void Metadata::setSettingsChanged(const QDateTime& value) Q_ASSERT(value.timeSpec() == Qt::UTC); m_settingsChanged = value; } + +void Metadata::addSavedSearch(const QString& name, const QString& searchtext) +{ + auto searches = savedSearches(); + searches.insert(name, searchtext); + auto json = QJsonDocument::fromVariant(searches); + m_customData->set(customDataKeys::savedSearch, json.toJson()); +} + +void Metadata::deleteSavedSearch(const QString& name) +{ + auto searches = savedSearches(); + searches.remove(name); + auto json = QJsonDocument::fromVariant(searches); + m_customData->set(customDataKeys::savedSearch, json.toJson()); +} + +QVariantMap Metadata::savedSearches() +{ + auto searches = m_customData->value(customDataKeys::savedSearch); + auto json = QJsonDocument::fromJson(searches.toUtf8()); + return json.toVariant().toMap(); +} diff --git a/src/core/Metadata.h b/src/core/Metadata.h index 61c9c1e6e..6e80ebc09 100644 --- a/src/core/Metadata.h +++ b/src/core/Metadata.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "core/CustomData.h" #include "core/Global.h" @@ -108,11 +109,13 @@ public: int databaseKeyChangeForce() const; int historyMaxItems() const; int historyMaxSize() const; + int autosaveDelayMin() const; CustomData* customData(); const CustomData* customData() const; static const int DefaultHistoryMaxItems; static const int DefaultHistoryMaxSize; + static const int DefaultAutosaveDelayMin; void setGenerator(const QString& value); void setName(const QString& value); @@ -149,7 +152,11 @@ public: void setMasterKeyChangeForce(int value); void setHistoryMaxItems(int value); void setHistoryMaxSize(int value); + void setAutosaveDelayMin(int value); void setUpdateDatetime(bool value); + void addSavedSearch(const QString& name, const QString& searchtext); + void deleteSavedSearch(const QString& name); + QVariantMap savedSearches(); /* * Copy all attributes from other except: * - Group pointers/uuids diff --git a/src/core/PassphraseGenerator.cpp b/src/core/PassphraseGenerator.cpp index ef1d867e2..d8116c827 100644 --- a/src/core/PassphraseGenerator.cpp +++ b/src/core/PassphraseGenerator.cpp @@ -18,12 +18,14 @@ #include "PassphraseGenerator.h" #include +#include #include #include #include "core/Resources.h" #include "crypto/Random.h" +const int PassphraseGenerator::DefaultWordCount = 7; const char* PassphraseGenerator::DefaultSeparator = " "; const char* PassphraseGenerator::DefaultWordList = "eff_large.wordlist"; @@ -60,14 +62,17 @@ void PassphraseGenerator::setWordCase(PassphraseWordCase wordCase) void PassphraseGenerator::setWordList(const QString& path) { m_wordlist.clear(); + // Initially load wordlist into a set to avoid duplicates + QSet wordset; QFile file(path); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning("Couldn't load passphrase wordlist."); + qWarning("Couldn't load passphrase wordlist: %s", qPrintable(path)); return; } QTextStream in(&file); + in.setCodec("UTF-8"); QString line = in.readLine(); bool isSigned = line.startsWith("-----BEGIN PGP SIGNED MESSAGE-----"); if (isSigned) { @@ -87,14 +92,15 @@ void PassphraseGenerator::setWordList(const QString& path) line = line.trimmed(); line.replace(rx, "\\2"); if (!line.isEmpty()) { - m_wordlist.append(line); + wordset.insert(line); } line = in.readLine(); } - if (m_wordlist.size() < 4000) { - qWarning("Wordlist too short!"); - return; + m_wordlist = wordset.toList(); + + if (m_wordlist.size() < m_minimum_wordlist_length) { + qWarning("Wordlist is less than minimum acceptable size: %s", qPrintable(path)); } } @@ -111,18 +117,16 @@ void PassphraseGenerator::setWordSeparator(const QString& separator) QString PassphraseGenerator::generatePassphrase() const { - QString tmpWord; - Q_ASSERT(isValid()); - // In case there was an error loading the wordlist - if (m_wordlist.length() == 0) { - return QString(); + if (!isValid() || m_wordlist.empty()) { + return {}; } QStringList words; + int randomIndex = randomGen()->randomUInt(static_cast(m_wordCount)); for (int i = 0; i < m_wordCount; ++i) { - int wordIndex = randomGen()->randomUInt(static_cast(m_wordlist.length())); - tmpWord = m_wordlist.at(wordIndex); + int wordIndex = randomGen()->randomUInt(static_cast(m_wordlist.size())); + auto tmpWord = m_wordlist.at(wordIndex); // convert case switch (m_wordCase) { @@ -132,8 +136,10 @@ QString PassphraseGenerator::generatePassphrase() const case TITLECASE: tmpWord = tmpWord.replace(0, 1, tmpWord.left(1).toUpper()); break; + case MIXEDCASE: + tmpWord = i == randomIndex ? tmpWord.toUpper() : tmpWord.toLower(); + break; case LOWERCASE: - default: tmpWord = tmpWord.toLower(); break; } @@ -145,9 +151,5 @@ QString PassphraseGenerator::generatePassphrase() const bool PassphraseGenerator::isValid() const { - if (m_wordCount == 0) { - return false; - } - - return m_wordlist.size() >= 1000; + return m_wordCount > 0 && m_wordlist.size() >= m_minimum_wordlist_length; } diff --git a/src/core/PassphraseGenerator.h b/src/core/PassphraseGenerator.h index bb282f59b..931dbe57e 100644 --- a/src/core/PassphraseGenerator.h +++ b/src/core/PassphraseGenerator.h @@ -18,7 +18,7 @@ #ifndef KEEPASSX_PASSPHRASEGENERATOR_H #define KEEPASSX_PASSPHRASEGENERATOR_H -#include +#include class PassphraseGenerator { @@ -30,7 +30,8 @@ public: { LOWERCASE, UPPERCASE, - TITLECASE + TITLECASE, + MIXEDCASE }; double estimateEntropy(int wordCount = 0); @@ -43,15 +44,18 @@ public: QString generatePassphrase() const; - static constexpr int DefaultWordCount = 7; + static const int DefaultWordCount; static const char* DefaultSeparator; static const char* DefaultWordList; private: int m_wordCount; + int m_minimum_wordlist_length = 4000; PassphraseWordCase m_wordCase; QString m_separator; - QVector m_wordlist; + QList m_wordlist; + + friend class TestPassphraseGenerator; }; #endif // KEEPASSX_PASSPHRASEGENERATOR_H diff --git a/src/core/PasswordGenerator.cpp b/src/core/PasswordGenerator.cpp index 1051dba2b..aa0f3e717 100644 --- a/src/core/PasswordGenerator.cpp +++ b/src/core/PasswordGenerator.cpp @@ -214,7 +214,7 @@ QVector PasswordGenerator::passwordGroups() const if (m_classes & Math) { PasswordGroup group; - // !*+-<=>? + // !*+<=>? group.append(33); group.append(42); group.append(43); @@ -261,8 +261,10 @@ QVector PasswordGenerator::passwordGroups() const if (!m_custom.isEmpty()) { PasswordGroup group; - for (auto ch : m_custom) { - group.append(ch); + for (const auto& ch : m_custom) { + if (!group.contains(ch)) { + group.append(ch); + } } passwordGroups.append(group); diff --git a/src/core/PasswordHealth.cpp b/src/core/PasswordHealth.cpp index 7b52fa4ba..3a2e5571d 100644 --- a/src/core/PasswordHealth.cpp +++ b/src/core/PasswordHealth.cpp @@ -17,14 +17,37 @@ #include +#include "Clock.h" #include "Group.h" #include "PasswordHealth.h" #include "zxcvbn.h" -PasswordHealth::PasswordHealth(double entropy) - : m_score(entropy) - , m_entropy(entropy) +namespace { + const static int ZXCVBN_ESTIMATE_THRESHOLD = 256; +} // namespace + +PasswordHealth::PasswordHealth(double entropy) +{ + init(entropy); +} + +PasswordHealth::PasswordHealth(const QString& pwd) +{ + auto entropy = 0.0; + entropy += ZxcvbnMatch(pwd.left(ZXCVBN_ESTIMATE_THRESHOLD).toUtf8(), nullptr, nullptr); + if (pwd.length() > ZXCVBN_ESTIMATE_THRESHOLD) { + // Add the average entropy per character for any characters above the estimate threshold + auto average = entropy / ZXCVBN_ESTIMATE_THRESHOLD; + entropy += average * (pwd.length() - ZXCVBN_ESTIMATE_THRESHOLD); + } + init(entropy); +} + +void PasswordHealth::init(double entropy) +{ + m_score = m_entropy = entropy; + switch (quality()) { case Quality::Bad: case Quality::Poor: @@ -43,11 +66,6 @@ PasswordHealth::PasswordHealth(double entropy) } } -PasswordHealth::PasswordHealth(const QString& pwd) - : PasswordHealth(ZxcvbnMatch(pwd.toUtf8(), nullptr, nullptr)) -{ -} - void PasswordHealth::setScore(int score) { m_score = score; @@ -84,7 +102,7 @@ PasswordHealth::Quality PasswordHealth::quality() const return Quality::Bad; } else if (m_score < 40) { return Quality::Poor; - } else if (m_score < 65) { + } else if (m_score < 75) { return Quality::Weak; } else if (m_score < 100) { return Quality::Good; @@ -143,8 +161,8 @@ QSharedPointer HealthChecker::evaluate(const Entry* entry) const // Don't allow re-used passwords to be considered "good" // no matter how great their entropy is. - if (health->score() > 64) { - health->setScore(64); + if (health->score() > 74) { + health->setScore(74); } } @@ -154,8 +172,8 @@ QSharedPointer HealthChecker::evaluate(const Entry* entry) const if (entry->isExpired()) { health->setScore(0); health->addScoreReason(QObject::tr("Password has expired")); - health->addScoreDetails(QObject::tr("Password expiry was %1") - .arg(entry->timeInfo().expiryTime().toString(Qt::DefaultLocaleShortDate))); + health->addScoreDetails( + QObject::tr("Password expiry was %1").arg(Clock::toString(entry->timeInfo().expiryTime()))); } else if (entry->timeInfo().expires()) { const int days = QDateTime::currentDateTime().daysTo(entry->timeInfo().expiryTime()); if (days <= 30) { @@ -164,13 +182,13 @@ QSharedPointer HealthChecker::evaluate(const Entry* entry) const // reduce the score by 2 points for every day that // we get closer to expiry. days<=0 has already // been handled above ("isExpired()"). - if (health->score() > 60) { - health->setScore(60); + if (health->score() > 70) { + health->setScore(70); } health->adjustScore((30 - days) * -2); - health->addScoreDetails(QObject::tr("Password expires on %1") - .arg(entry->timeInfo().expiryTime().toString(Qt::DefaultLocaleShortDate))); + health->addScoreDetails( + QObject::tr("Password expires on %1").arg(Clock::toString(entry->timeInfo().expiryTime()))); if (days <= 2) { health->addScoreReason(QObject::tr("Password is about to expire")); } else if (days <= 10) { diff --git a/src/core/PasswordHealth.h b/src/core/PasswordHealth.h index 35b582e94..b24b80803 100644 --- a/src/core/PasswordHealth.h +++ b/src/core/PasswordHealth.h @@ -35,6 +35,8 @@ public: explicit PasswordHealth(double entropy); explicit PasswordHealth(const QString& pwd); + void init(double entropy); + /* * The password score is defined to be the greater the better * (more secure) the password is. It doesn't have a dimension, diff --git a/src/core/SignalMultiplexer.cpp b/src/core/SignalMultiplexer.cpp index d1ed89e30..99f7fab15 100644 --- a/src/core/SignalMultiplexer.cpp +++ b/src/core/SignalMultiplexer.cpp @@ -19,9 +19,7 @@ #include "core/Global.h" -SignalMultiplexer::SignalMultiplexer() -{ -} +SignalMultiplexer::SignalMultiplexer() = default; SignalMultiplexer::~SignalMultiplexer() { diff --git a/src/core/TimeDelta.cpp b/src/core/TimeDelta.cpp index 0037396f6..94cea03c8 100644 --- a/src/core/TimeDelta.cpp +++ b/src/core/TimeDelta.cpp @@ -29,22 +29,22 @@ QDateTime operator+(const QDateTime& dateTime, const TimeDelta& delta) TimeDelta TimeDelta::fromHours(int hours) { - return TimeDelta(hours, 0, 0, 0); + return {hours, 0, 0, 0}; } TimeDelta TimeDelta::fromDays(int days) { - return TimeDelta(0, days, 0, 0); + return {0, days, 0, 0}; } TimeDelta TimeDelta::fromMonths(int months) { - return TimeDelta(0, 0, months, 0); + return {0, 0, months, 0}; } TimeDelta TimeDelta::fromYears(int years) { - return TimeDelta(0, 0, 0, years); + return {0, 0, 0, years}; } TimeDelta::TimeDelta() diff --git a/src/core/Tools.cpp b/src/core/Tools.cpp index 867d8c174..39c7ab8eb 100644 --- a/src/core/Tools.cpp +++ b/src/core/Tools.cpp @@ -1,7 +1,11 @@ /* * Copyright (C) 2012 Felix Geyer * Copyright (C) 2017 Lennart Glauer - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2020 Giuseppe D'Angelo . + * Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, + * author Giuseppe D'Angelo + * Copyright (C) 2021 The Qt Company Ltd. + * Copyright (C) 2023 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 @@ -73,7 +77,6 @@ namespace Tools #endif debugInfo.append("\n"); -#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) debugInfo.append(QObject::tr("Operating system: %1\nCPU architecture: %2\nKernel: %3 %4") .arg(QSysInfo::prettyProductName(), QSysInfo::currentCpuArchitecture(), @@ -81,7 +84,6 @@ namespace Tools QSysInfo::kernelVersion())); debugInfo.append("\n\n"); -#endif QString extensions; #ifdef WITH_XC_AUTOTYPE @@ -90,6 +92,9 @@ namespace Tools #ifdef WITH_XC_BROWSER extensions += "\n- " + QObject::tr("Browser Integration"); #endif +#ifdef WITH_XC_BROWSER_PASSKEYS + extensions += "\n- " + QObject::tr("Passkeys"); +#endif #ifdef WITH_XC_SSHAGENT extensions += "\n- " + QObject::tr("SSH Agent"); #endif @@ -119,10 +124,7 @@ namespace Tools constexpr auto kibibyte = 1024; double size = bytes; - QStringList units = QStringList() << "B" - << "KiB" - << "MiB" - << "GiB"; + QStringList units = QStringList() << "B" << "KiB" << "MiB" << "GiB"; int i = 0; int maxI = units.size() - 1; @@ -131,7 +133,9 @@ namespace Tools i++; } - return QString("%1 %2").arg(QLocale().toString(size, 'f', precision), units.at(i)); + // do not display decimals for smallest unit bytes identified by index i==0 + const quint32 displayPrecision = (i == 0 ? 0 : precision); + return QString("%1 %2").arg(QLocale().toString(size, 'f', displayPrecision), units.at(i)); } QString humanReadableTimeDifference(qint64 seconds) @@ -223,6 +227,13 @@ namespace Tools return regexp.exactMatch(base64); } + bool isAsciiString(const QString& str) + { + constexpr auto pattern = R"(^[\x00-\x7F]+$)"; + QRegularExpression regexp(pattern, QRegularExpression::CaseInsensitiveOption); + return regexp.match(str).hasMatch(); + } + void sleep(int ms) { Q_ASSERT(ms >= 0); @@ -267,45 +278,67 @@ namespace Tools } } - bool checkUrlValid(const QString& urlField) + /**************************************************************************** + * + * Copyright (C) 2020 Giuseppe D'Angelo . + * Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, + * author Giuseppe D'Angelo + * Copyright (C) 2021 The Qt Company Ltd. Contact: https://www.qt.io/licensing/ + * + * This function is part of the QtCore module of the Qt Toolkit. And subject to the + * following licenses. + * + * GNU General Public License Usage + * Alternatively, this function may be used under the terms of the GNU + * General Public License version 2.0 or (at your option) the GNU General + * Public license version 3 or any later version approved by the KDE Free + * Qt Foundation. The licenses are as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 + * included in the packaging of this file. Please review the following + * information to ensure the GNU General Public License requirements will + * be met: https://www.gnu.org/licenses/gpl-2.0.html and + * https://www.gnu.org/licenses/gpl-3.0.html. + */ + QString escapeRegex(const QString& str) { - if (urlField.isEmpty() || urlField.startsWith("cmd://", Qt::CaseInsensitive) - || urlField.startsWith("kdbx://", Qt::CaseInsensitive) - || urlField.startsWith("{REF:A", Qt::CaseInsensitive)) { - return true; + QString result; + const auto count = str.size(); + result.reserve(count * 2); + + // everything but [a-zA-Z0-9_] gets escaped, + // cf. perldoc -f quotemeta + for (int i = 0; i < count; ++i) { + const QChar current = str.at(i); + + if (current == QChar::Null) { + // unlike Perl, a literal NUL must be escaped with + // "\\0" (backslash + 0) and not "\\\0" (backslash + NUL), + // because pcre16_compile uses a NUL-terminated string + result.append(u'\\'); + result.append(u'0'); + } else if ((current < u'a' || current > u'z') && (current < u'A' || current > u'Z') + && (current < u'0' || current > u'9') && current != u'_') { + result.append(u'\\'); + result.append(current); + if (current.isHighSurrogate() && i < (count - 1)) { + result.append(str.at(++i)); + } + } else { + result.append(current); + } } - QUrl url; - if (urlField.contains("://")) { - url = urlField; - } else { - url = QUrl::fromUserInput(urlField); - } - - if (url.scheme() != "file" && url.host().isEmpty()) { - return false; - } - - // Check for illegal characters. Adds also the wildcard * to the list - QRegularExpression re("[<>\\^`{|}\\*]"); - auto match = re.match(urlField); - if (match.hasMatch()) { - return false; - } - - return true; + result.squeeze(); + return result; } - // Escape regex symbols - auto regexEscape = QRegularExpression(R"re(([-[\]{}()+.,\\\/^$#|*?]))re"); - QRegularExpression convertToRegex(const QString& string, int opts) { QString pattern = string; // Wildcard support (*, ?, |) if (opts & RegexConvertOpts::WILDCARD_ALL || opts & RegexConvertOpts::ESCAPE_REGEX) { - pattern.replace(regexEscape, "\\\\1"); + pattern = escapeRegex(pattern); if (opts & RegexConvertOpts::WILDCARD_UNLIMITED_MATCH) { pattern.replace("\\*", ".*"); @@ -318,9 +351,9 @@ namespace Tools } } - // Exact modifier if (opts & RegexConvertOpts::EXACT_MATCH) { - pattern = "^" + pattern + "$"; + // Exact modifier + pattern = "^(?:" + pattern + ")$"; } auto regex = QRegularExpression(pattern); @@ -382,6 +415,16 @@ namespace Tools return subbed; } + QString cleanFilename(QString filename) + { + // Remove forward slash from title on all platforms + filename.replace("/", "_"); + // Remove invalid characters + filename.remove(QRegularExpression("[:*?\"<>|]")); + + return filename.trimmed(); + } + QVariantMap qo2qvm(const QObject* object, const QStringList& ignoredProperties) { QVariantMap result; @@ -403,34 +446,61 @@ namespace Tools QString substituteBackupFilePath(QString pattern, const QString& databasePath) { - // Fail if substitution fails if (databasePath.isEmpty()) { return {}; } - // Replace backup pattern - QFileInfo dbFileInfo(databasePath); - QString baseName = dbFileInfo.completeBaseName(); + const QString baseName = QFileInfo{databasePath}.completeBaseName(); - pattern.replace(QString("{DB_FILENAME}"), baseName); + pattern.replace(QStringLiteral("{DB_FILENAME}"), baseName); - auto re = QRegularExpression(R"(\{TIME(?::([^\\]*))?\})"); + const QDateTime now = Clock::currentDateTime(); + + const QRegularExpression re(R"(\{TIME(?::([^\\{}]*))?\})"); auto match = re.match(pattern); while (match.hasMatch()) { - // Extract time format specifier - auto formatSpecifier = QString("dd_MM_yyyy_hh-mm-ss"); + // Extract time format specifier, or use default value if absent + QString formatSpecifier = "dd_MM_yyyy_hh-mm-ss"; if (!match.captured(1).isEmpty()) { formatSpecifier = match.captured(1); } - auto replacement = Clock::currentDateTime().toString(formatSpecifier); + const auto replacement = now.toString(formatSpecifier); pattern.replace(match.capturedStart(), match.capturedLength(), replacement); match = re.match(pattern); } // Replace escaped braces - pattern.replace("\\{", "{"); - pattern.replace("\\}", "}"); + pattern.replace(QStringLiteral("\\{"), QStringLiteral("{")); + pattern.replace(QStringLiteral("\\}"), QStringLiteral("}")); return pattern; } + + MimeType toMimeType(const QString& mimeName) + { + static QStringList textFormats = { + "text/", + "application/json", + "application/xml", + "application/soap+xml", + "application/x-yaml", + "application/protobuf", + }; + static QStringList imageFormats = {"image/"}; + + static auto isCompatible = [](const QString& format, const QStringList& list) { + return std::any_of( + list.cbegin(), list.cend(), [&format](const auto& item) { return format.startsWith(item); }); + }; + + if (isCompatible(mimeName, imageFormats)) { + return MimeType::Image; + } + + if (isCompatible(mimeName, textFormats)) { + return MimeType::PlainText; + } + + return MimeType::Unknown; + } } // namespace Tools diff --git a/src/core/Tools.h b/src/core/Tools.h index d8a1371f1..7265f68bb 100644 --- a/src/core/Tools.h +++ b/src/core/Tools.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * Copyright (C) 2021 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 @@ -22,7 +22,9 @@ #include "core/Global.h" #include +#include #include +#include class QIODevice; class QRegularExpression; @@ -36,27 +38,52 @@ namespace Tools bool readAllFromDevice(QIODevice* device, QByteArray& data); bool isHex(const QByteArray& ba); bool isBase64(const QByteArray& ba); + bool isAsciiString(const QString& str); void sleep(int ms); void wait(int ms); - bool checkUrlValid(const QString& urlField); QString uuidToHex(const QUuid& uuid); QUuid hexToUuid(const QString& uuid); bool isValidUuid(const QString& uuidStr); QString envSubstitute(const QString& filepath, QProcessEnvironment environment = QProcessEnvironment::systemEnvironment()); + QString cleanFilename(QString filename); + + template QSet asSet(const QList& a) + { +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + return QSet(a.begin(), a.end()); +#else + return QSet::fromList(a); +#endif + } + + /** + * Escapes all characters in regex such that they do not receive any special treatment when used + * in a regular expression. Essentially, this function escapes any characters not in a-zA-Z0-9. + * @param regex The unescaped regular expression string. + * @return An escaped string safe to use in a regular expression. + */ + QString escapeRegex(const QString& regex); enum RegexConvertOpts { DEFAULT = 0, - WILDCARD_UNLIMITED_MATCH = 0x1, - WILDCARD_SINGLE_MATCH = 0x2, - WILDCARD_LOGICAL_OR = 0x4, + WILDCARD_UNLIMITED_MATCH = 1, + WILDCARD_SINGLE_MATCH = 1 << 2, + WILDCARD_LOGICAL_OR = 1 << 3, WILDCARD_ALL = WILDCARD_UNLIMITED_MATCH | WILDCARD_SINGLE_MATCH | WILDCARD_LOGICAL_OR, - EXACT_MATCH = 0x8, - CASE_SENSITIVE = 0x16, - ESCAPE_REGEX = 0x32, + EXACT_MATCH = 1 << 4, + CASE_SENSITIVE = 1 << 5, + ESCAPE_REGEX = 1 << 6, }; + /** + * Converts input string to a regular expression according to the options specified in opts. + * Note that, unless ESCAPE_REGEX is set, convertToRegex assumes a proper regular expression as input. + * @param string The input string. Assumed to be a proper regular expression unless ESCAPE_REGEX is set. + * @param opts Tools::RegexConvertOpts options the regex will be converted with. + * @return The regular expression built from string and opts. + */ QRegularExpression convertToRegex(const QString& string, int opts = RegexConvertOpts::DEFAULT); template @@ -71,23 +98,31 @@ namespace Tools } } - inline int qtRuntimeVersion() + // Checks if all values are found inside the list. Returns a list of values not found. + template QList getMissingValuesFromList(const QList& list, const QList& required) { - // Cache the result since the Qt version can't change during - // the execution, computing it once will be enough - const static int version = []() { - const auto sq = QString::fromLatin1(qVersion()); - return (sq.section(QChar::fromLatin1('.'), 0, 0).toInt() << 16) - + (sq.section(QChar::fromLatin1('.'), 1, 1).toInt() << 8) - + (sq.section(QChar::fromLatin1('.'), 2, 2).toInt()); - }(); + QList missingValues; + for (const auto& r : required) { + if (!list.contains(r)) { + missingValues << r; + } + } - return version; + return missingValues; } QVariantMap qo2qvm(const QObject* object, const QStringList& ignoredProperties = {"objectName"}); QString substituteBackupFilePath(QString pattern, const QString& databasePath); + + enum class MimeType : uint8_t + { + Image, + PlainText, + Unknown + }; + + MimeType toMimeType(const QString& mimeName); } // namespace Tools #endif // KEEPASSX_TOOLS_H diff --git a/src/totp/totp.cpp b/src/core/Totp.cpp similarity index 85% rename from src/totp/totp.cpp rename to src/core/Totp.cpp index 82d9bb832..9d1e00440 100644 --- a/src/totp/totp.cpp +++ b/src/core/Totp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -#include "totp.h" +#include "Totp.h" #include "core/Base32.h" #include "core/Clock.h" @@ -36,10 +36,11 @@ static QList totpEncoders{ static Totp::Algorithm getHashTypeByName(const QString& name) { - if (name.compare(QString("SHA512"), Qt::CaseInsensitive) == 0) { + auto nameUpper = name.toUpper(); + if (nameUpper == "SHA512" || nameUpper == "HMAC-SHA-512") { return Totp::Algorithm::Sha512; } - if (name.compare(QString("SHA256"), Qt::CaseInsensitive) == 0) { + if (nameUpper == "SHA256" || nameUpper == "HMAC-SHA-256") { return Totp::Algorithm::Sha256; } return Totp::Algorithm::Sha1; @@ -49,18 +50,47 @@ static QString getNameForHashType(const Totp::Algorithm hashType) { switch (hashType) { case Totp::Algorithm::Sha512: - return QString("SHA512"); + return "SHA512"; case Totp::Algorithm::Sha256: - return QString("SHA256"); + return "SHA256"; default: - return QString("SHA1"); + return "SHA1"; } } +QSharedPointer +Totp::fromKeePass2Totp(const QString& secret, const QString& algorithm, const QString& length, const QString& period) +{ + // Must have at least a secret to continue + if (secret.isEmpty()) { + return {}; + } + + // Create default settings + auto settings = createSettings(secret); + + if (!algorithm.isEmpty()) { + settings->algorithm = getHashTypeByName(algorithm); + } + if (!length.isEmpty()) { + settings->digits = length.toUInt(); + } + if (!period.isEmpty()) { + settings->step = period.toUInt(); + } + + return settings; +} + QSharedPointer Totp::parseSettings(const QString& rawSettings, const QString& key) { + // Early out if both strings are empty + if (rawSettings.isEmpty() && key.isEmpty()) { + return {}; + } + // Create default settings - auto settings = createSettings(key, DEFAULT_DIGITS, DEFAULT_STEP); + auto settings = createSettings(key); QUrl url(rawSettings); if (url.isValid() && url.scheme() == "otpauth") { @@ -96,6 +126,11 @@ QSharedPointer Totp::parseSettings(const QString& rawSettings, c settings->algorithm = getHashTypeByName(query.queryItemValue("otpHashMode")); } } else { + if (settings->key.isEmpty()) { + // Legacy format cannot work with an empty key + return {}; + } + // Parse semi-colon separated values ([step];[digits|S]) settings->format = StorageFormat::LEGACY; auto vars = rawSettings.split(";"); @@ -103,6 +138,7 @@ QSharedPointer Totp::parseSettings(const QString& rawSettings, c if (vars[1] == STEAM_SHORTNAME) { // Explicit steam encoder settings->encoder = steamEncoder(); + settings->digits = STEAM_DIGITS; } else { // Extract step and digits settings->step = vars[0].toUInt(); @@ -114,14 +150,7 @@ QSharedPointer Totp::parseSettings(const QString& rawSettings, c // Bound digits and step settings->digits = qBound(1u, settings->digits, 10u); - settings->step = qBound(1u, settings->step, 60u); - - // Detect custom settings, used by setup GUI - if (settings->encoder.shortName.isEmpty() - && (settings->digits != DEFAULT_DIGITS || settings->step != DEFAULT_STEP - || settings->algorithm != DEFAULT_ALGORITHM)) { - settings->custom = true; - } + settings->step = qBound(1u, settings->step, 86400u); return settings; } @@ -133,9 +162,8 @@ QSharedPointer Totp::createSettings(const QString& key, const QString& encoderShortName, const Totp::Algorithm algorithm) { - bool isCustom = digits != DEFAULT_DIGITS || step != DEFAULT_STEP || algorithm != DEFAULT_ALGORITHM; return QSharedPointer( - new Totp::Settings{format, getEncoderByShortName(encoderShortName), algorithm, key, isCustom, digits, step}); + new Totp::Settings{format, getEncoderByShortName(encoderShortName), algorithm, key, digits, step}); } QString Totp::writeSettings(const QSharedPointer& settings, @@ -190,8 +218,8 @@ QString Totp::generateTotp(const QSharedPointer& settings, const } const Encoder& encoder = settings->encoder; - uint step = settings->custom ? settings->step : encoder.step; - uint digits = settings->custom ? settings->digits : encoder.digits; + uint step = settings->step; + uint digits = settings->digits; quint64 current; if (time == 0) { @@ -267,6 +295,13 @@ QList> Totp::supportedAlgorithms() return algorithms; } +bool Totp::hasCustomSettings(const QSharedPointer& settings) +{ + return settings + && (settings->digits != DEFAULT_DIGITS || settings->step != DEFAULT_STEP + || settings->algorithm != DEFAULT_ALGORITHM); +} + Totp::Encoder& Totp::defaultEncoder() { // The first encoder is always the default diff --git a/src/totp/totp.h b/src/core/Totp.h similarity index 83% rename from src/totp/totp.h rename to src/core/Totp.h index c34ac164d..8dbdbd50f 100644 --- a/src/totp/totp.h +++ b/src/core/Totp.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -56,7 +56,6 @@ namespace Totp Totp::Encoder encoder; Totp::Algorithm algorithm; QString key; - bool custom; uint digits; uint step; }; @@ -72,10 +71,19 @@ namespace Totp static const QString ATTRIBUTE_SEED = "TOTP Seed"; static const QString ATTRIBUTE_SETTINGS = "TOTP Settings"; + // Support for KeePass2 TOTP + static const QString KP2_TOTP_SECRET = "TimeOtp-Secret-Base32"; + static const QString KP2_TOTP_ALGORITHM = "TimeOtp-Algorithm"; + static const QString KP2_TOTP_LENGTH = "TimeOtp-Length"; + static const QString KP2_TOTP_PERIOD = "TimeOtp-Period"; + + QSharedPointer + fromKeePass2Totp(const QString& secret, const QString& algorithm, const QString& length, const QString& period); + QSharedPointer parseSettings(const QString& rawSettings, const QString& key = {}); QSharedPointer createSettings(const QString& key, - const uint digits, - const uint step, + const uint digits = DEFAULT_DIGITS, + const uint step = DEFAULT_STEP, const Totp::StorageFormat format = DEFAULT_FORMAT, const QString& encoderShortName = {}, const Totp::Algorithm algorithm = DEFAULT_ALGORITHM); @@ -86,6 +94,8 @@ namespace Totp QString generateTotp(const QSharedPointer& settings, const quint64 time = 0ull); + bool hasCustomSettings(const QSharedPointer& settings); + QList> supportedEncoders(); QList> supportedAlgorithms(); diff --git a/src/core/Translator.cpp b/src/core/Translator.cpp index ac2072bf4..2101e8dc1 100644 --- a/src/core/Translator.cpp +++ b/src/core/Translator.cpp @@ -25,25 +25,22 @@ #include #include -#include "config-keepassx.h" -#include "core/Config.h" #include "core/Resources.h" /** * Install all KeePassXC and Qt translators. */ -void Translator::installTranslators() +void Translator::installTranslators(const QString& uiLanguage) { QStringList languages; - QString languageSetting = config()->get(Config::GUI_Language).toString(); - if (languageSetting.isEmpty() || languageSetting == "system") { + if (uiLanguage.isEmpty() || uiLanguage == "system") { // NOTE: this is a workaround for the terrible way Qt loads languages // using the QLocale::uiLanguages() approach. Instead, we search each // language and all country variants in order before moving to the next. QLocale locale; languages = locale.uiLanguages(); } else { - languages << languageSetting; + languages << uiLanguage; } // Always try to load english last diff --git a/src/core/Translator.h b/src/core/Translator.h index af699ac90..3e073c172 100644 --- a/src/core/Translator.h +++ b/src/core/Translator.h @@ -19,11 +19,12 @@ #define KEEPASSX_TRANSLATOR_H #include +#include class Translator { public: - static void installTranslators(); + static void installTranslators(const QString& uiLanguage = "system"); static QList> availableLanguages(); private: diff --git a/src/crypto/Crypto.cpp b/src/crypto/Crypto.cpp index 85d846499..233c89907 100644 --- a/src/crypto/Crypto.cpp +++ b/src/crypto/Crypto.cpp @@ -18,6 +18,8 @@ #include "Crypto.h" +#include "config-keepassx.h" + #include "crypto/CryptoHash.h" #include "crypto/SymmetricCipher.h" @@ -237,8 +239,16 @@ namespace Crypto { bool init() { - if (Botan::version_major() != 2 || Botan::version_minor() < 11) { - g_cryptoError = QObject::tr("Botan library must be at least 2.11.x, found %1.%2.%3") +#ifdef WITH_XC_BOTAN3 + unsigned int version_major = 3, min_version_minor = 0; + QString versionString = "3.x"; +#else + unsigned int version_major = 2, min_version_minor = 11; + QString versionString = "2.11.x"; +#endif + if (Botan::version_major() != version_major || Botan::version_minor() < min_version_minor) { + g_cryptoError = QObject::tr("Botan library must be at least %1, found %2.%3.%4") + .arg(versionString) .arg(Botan::version_major()) .arg(Botan::version_minor()) .arg(Botan::version_patch()); diff --git a/src/crypto/CryptoHash.cpp b/src/crypto/CryptoHash.cpp index 5177bb86f..a1dc6595e 100644 --- a/src/crypto/CryptoHash.cpp +++ b/src/crypto/CryptoHash.cpp @@ -106,7 +106,7 @@ QByteArray CryptoHash::result() const } else if (d->hashFunction) { result = d->hashFunction->final(); } - return QByteArray(reinterpret_cast(result.data()), result.size()); + return {reinterpret_cast(result.data()), int(result.size())}; } QByteArray CryptoHash::hash(const QByteArray& data, Algorithm algo) diff --git a/src/crypto/SymmetricCipher.cpp b/src/crypto/SymmetricCipher.cpp index 4d3a7bdfe..33e61aa4f 100644 --- a/src/crypto/SymmetricCipher.cpp +++ b/src/crypto/SymmetricCipher.cpp @@ -33,7 +33,12 @@ bool SymmetricCipher::init(Mode mode, Direction direction, const QByteArray& key try { auto botanMode = modeToString(mode); - auto botanDirection = (direction == SymmetricCipher::Encrypt ? Botan::ENCRYPTION : Botan::DECRYPTION); + auto botanDirection = +#ifdef WITH_XC_BOTAN3 + (direction == SymmetricCipher::Encrypt ? Botan::Cipher_Dir::Encryption : Botan::Cipher_Dir::Decryption); +#else + (direction == SymmetricCipher::Encrypt ? Botan::Cipher_Dir::ENCRYPTION : Botan::Cipher_Dir::DECRYPTION); +#endif auto cipher = Botan::Cipher_Mode::create_or_throw(botanMode.toStdString(), botanDirection); m_cipher.reset(cipher.release()); @@ -58,15 +63,15 @@ bool SymmetricCipher::init(Mode mode, Direction direction, const QByteArray& key return true; } -bool SymmetricCipher::isInitalized() const +bool SymmetricCipher::isInitialized() const { return m_cipher; } bool SymmetricCipher::process(char* data, int len) { - Q_ASSERT(isInitalized()); - if (!isInitalized()) { + Q_ASSERT(isInitialized()); + if (!isInitialized()) { m_error = QObject::tr("Cipher not initialized prior to use."); return false; } @@ -92,8 +97,8 @@ bool SymmetricCipher::process(QByteArray& data) bool SymmetricCipher::finish(QByteArray& data) { - Q_ASSERT(isInitalized()); - if (!isInitalized()) { + Q_ASSERT(isInitialized()); + if (!isInitialized()) { m_error = QObject::tr("Cipher not initialized prior to use."); return false; } @@ -116,7 +121,7 @@ bool SymmetricCipher::finish(QByteArray& data) void SymmetricCipher::reset() { m_error.clear(); - if (isInitalized()) { + if (isInitialized()) { m_cipher.reset(); } } @@ -267,3 +272,22 @@ int SymmetricCipher::blockSize(Mode mode) return 0; } } + +int SymmetricCipher::ivSize(Mode mode) +{ + switch (mode) { + case Aes128_CBC: + case Aes256_CBC: + case Aes128_CTR: + case Aes256_CTR: + case Twofish_CBC: + return 16; + case Aes256_GCM: + return 12; + case Salsa20: + case ChaCha20: + return 8; + default: + return 0; + } +} diff --git a/src/crypto/SymmetricCipher.h b/src/crypto/SymmetricCipher.h index 83b54658f..224e8baa9 100644 --- a/src/crypto/SymmetricCipher.h +++ b/src/crypto/SymmetricCipher.h @@ -52,7 +52,7 @@ public: explicit SymmetricCipher() = default; ~SymmetricCipher() = default; - bool isInitalized() const; + bool isInitialized() const; Q_REQUIRED_RESULT bool init(Mode mode, Direction direction, const QByteArray& key, const QByteArray& iv); Q_REQUIRED_RESULT bool process(char* data, int len); Q_REQUIRED_RESULT bool process(QByteArray& data); @@ -70,6 +70,7 @@ public: static int defaultIvSize(Mode mode); static int keySize(Mode mode); static int blockSize(Mode mode); + static int ivSize(Mode mode); private: static QString modeToString(const Mode mode); diff --git a/src/fdosecrets/CMakeLists.txt b/src/fdosecrets/CMakeLists.txt index fec3f99d0..7489debef 100644 --- a/src/fdosecrets/CMakeLists.txt +++ b/src/fdosecrets/CMakeLists.txt @@ -9,7 +9,6 @@ if(WITH_XC_FDOSECRETS) widgets/RowButtonHelper.cpp # per database settings page - DatabaseSettingsPageFdoSecrets.cpp widgets/DatabaseSettingsWidgetFdoSecrets.cpp # prompt dialog @@ -31,5 +30,5 @@ if(WITH_XC_FDOSECRETS) objects/Prompt.cpp dbus/DBusTypes.cpp ) - target_link_libraries(fdosecrets Qt5::Core Qt5::Widgets Qt5::DBus ${BOTAN2_LIBRARIES}) + target_link_libraries(fdosecrets Qt5::Core Qt5::Widgets Qt5::DBus ${BOTAN_LIBRARIES}) endif() diff --git a/src/fdosecrets/DatabaseSettingsPageFdoSecrets.cpp b/src/fdosecrets/DatabaseSettingsPageFdoSecrets.cpp deleted file mode 100644 index 60528a798..000000000 --- a/src/fdosecrets/DatabaseSettingsPageFdoSecrets.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (C) 2019 Aetf - * - * 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 . - */ - -#include "DatabaseSettingsPageFdoSecrets.h" - -#include "fdosecrets/widgets/DatabaseSettingsWidgetFdoSecrets.h" - -#include "gui/Icons.h" - -QString DatabaseSettingsPageFdoSecrets::name() -{ - return QObject::tr("Secret Service Integration"); -} - -QIcon DatabaseSettingsPageFdoSecrets::icon() -{ - return icons()->icon(QStringLiteral("freedesktop")); -} - -QWidget* DatabaseSettingsPageFdoSecrets::createWidget() -{ - return new DatabaseSettingsWidgetFdoSecrets; -} - -void DatabaseSettingsPageFdoSecrets::loadSettings(QWidget* widget, QSharedPointer db) -{ - auto settingsWidget = qobject_cast(widget); - settingsWidget->loadSettings(db); -} - -void DatabaseSettingsPageFdoSecrets::saveSettings(QWidget* widget) -{ - auto settingsWidget = qobject_cast(widget); - settingsWidget->saveSettings(); -} diff --git a/src/fdosecrets/FdoSecretsSettings.cpp b/src/fdosecrets/FdoSecretsSettings.cpp index 2f1e95182..d24bc69a1 100644 --- a/src/fdosecrets/FdoSecretsSettings.cpp +++ b/src/fdosecrets/FdoSecretsSettings.cpp @@ -21,15 +21,6 @@ #include "core/Database.h" #include "core/Metadata.h" -namespace Keys -{ - namespace Db - { - constexpr auto FdoSecretsExposedGroup = "FDO_SECRETS_EXPOSED_GROUP"; - } // namespace Db - -} // namespace Keys - namespace FdoSecrets { @@ -98,20 +89,19 @@ namespace FdoSecrets return exposedGroup(db.data()); } - void FdoSecretsSettings::setExposedGroup(const QSharedPointer& db, - const QUuid& group) // clazy:exclude=function-args-by-value + void FdoSecretsSettings::setExposedGroup(const QSharedPointer& db, const QUuid& group) { setExposedGroup(db.data(), group); } QUuid FdoSecretsSettings::exposedGroup(Database* db) const { - return {db->metadata()->customData()->value(Keys::Db::FdoSecretsExposedGroup)}; + return {db->metadata()->customData()->value(CustomData::FdoSecretsExposedGroup)}; } - void FdoSecretsSettings::setExposedGroup(Database* db, const QUuid& group) // clazy:exclude=function-args-by-value + void FdoSecretsSettings::setExposedGroup(Database* db, const QUuid& group) { - db->metadata()->customData()->set(Keys::Db::FdoSecretsExposedGroup, group.toString()); + db->metadata()->customData()->set(CustomData::FdoSecretsExposedGroup, group.toString()); } } // namespace FdoSecrets diff --git a/src/fdosecrets/dbus/DBusMgr.cpp b/src/fdosecrets/dbus/DBusMgr.cpp index 1a4b2b73c..3765e6f09 100644 --- a/src/fdosecrets/dbus/DBusMgr.cpp +++ b/src/fdosecrets/dbus/DBusMgr.cpp @@ -26,6 +26,11 @@ #include "core/Entry.h" #include "core/Tools.h" +#ifdef __FreeBSD__ +#include +#include +#endif + namespace FdoSecrets { static const auto IntrospectionService = R"xml( @@ -175,7 +180,18 @@ namespace FdoSecrets // The /proc/pid/exe link is more reliable than /proc/pid/cmdline // It's still weak and if the application does a prctl(PR_SET_DUMPABLE, 0) this link cannot be accessed. + +#ifdef __FreeBSD__ + const int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, static_cast(info.pid)}; + char buffer[2048]; + size_t size = sizeof(buffer); + if (sysctl(mib, 4, buffer, &size, NULL, 0) != 0) { + strlcpy(buffer, "Invalid path", sizeof(buffer)); + } + QFileInfo exe(buffer); +#else QFileInfo exe(QStringLiteral("/proc/%1/exe").arg(pid)); +#endif info.exePath = exe.canonicalFilePath(); // /proc/pid/cmdline gives full command line diff --git a/src/fdosecrets/objects/Collection.cpp b/src/fdosecrets/objects/Collection.cpp index 1c870beaa..44b0f0361 100644 --- a/src/fdosecrets/objects/Collection.cpp +++ b/src/fdosecrets/objects/Collection.cpp @@ -210,8 +210,7 @@ namespace FdoSecrets return {}; } - DBusResult - Collection::searchItems(const DBusClientPtr& client, const StringStringMap& attributes, QList& items) + DBusResult Collection::searchItems(const DBusClientPtr&, const StringStringMap& attributes, QList& items) { items.clear(); @@ -220,24 +219,6 @@ namespace FdoSecrets return ret; } - if (backendLocked() && settings()->unlockBeforeSearch()) { - // do a blocking unlock prompt first. - // while technically not correct, this should improve compatibility. - // see issue #4443 - auto prompt = PromptBase::Create(service(), QSet{this}, QSet{}); - if (!prompt) { - return QDBusError::InternalError; - } - // we don't know the windowId to show the prompt correctly, - // but the default of showing over the KPXC main window should be good enough - ret = prompt->prompt(client, ""); - // blocking wait - QEventLoop loop; - connect(prompt, &PromptBase::completed, &loop, &QEventLoop::quit); - loop.exec(); - } - - // check again because the prompt may be cancelled if (backendLocked()) { // searchItems should work, whether `this` is locked or not. // however, we can't search items the same way as in gnome-keying, @@ -276,7 +257,12 @@ namespace FdoSecrets EntrySearcher(caseSensitive, skipProtected).search(terms, m_exposedGroup, forceSearch); items.reserve(foundEntries.size()); for (const auto& entry : foundEntries) { - items << m_entryToItem.value(entry); + const auto item = m_entryToItem.value(entry); + // it's possible that we don't have a corresponding item for the entry + // this can happen when the recycle bin is below the exposed group. + if (item) { + items << item; + } } return {}; } @@ -422,7 +408,7 @@ namespace FdoSecrets auto newUuid = FdoSecrets::settings()->exposedGroup(m_backend->database()); auto newGroup = m_backend->database()->rootGroup()->findGroupByUuid(newUuid); - if (!newGroup || inRecycleBin(newGroup)) { + if (!newGroup || newGroup->isRecycled()) { // no exposed group, delete self removeFromDBus(); return; @@ -458,7 +444,7 @@ namespace FdoSecrets }); // Another possibility is the group being moved to recycle bin. connect(m_exposedGroup.data(), &Group::modified, this, [this]() { - if (inRecycleBin(m_exposedGroup->parentGroup())) { + if (m_exposedGroup->isRecycled()) { // reset the exposed group to none FdoSecrets::settings()->setExposedGroup(m_backend->database().data(), {}); } @@ -504,11 +490,15 @@ namespace FdoSecrets void Collection::onEntryAdded(Entry* entry, bool emitSignal) { - if (inRecycleBin(entry)) { + if (entry->isRecycled()) { return; } auto item = Item::Create(this, entry); + if (!item) { + return; + } + m_items << item; m_entryToItem[entry] = item; @@ -534,7 +524,7 @@ namespace FdoSecrets void Collection::connectGroupSignalRecursive(Group* group) { - if (inRecycleBin(group)) { + if (group->isRecycled()) { return; } @@ -637,7 +627,7 @@ namespace FdoSecrets bool Collection::doDeleteEntry(Entry* entry) { // Confirm entry removal before moving forward - bool permanent = inRecycleBin(entry) || !m_backend->database()->metadata()->recycleBinEnabled(); + bool permanent = entry->isRecycled() || !m_backend->database()->metadata()->recycleBinEnabled(); if (FdoSecrets::settings()->confirmDeleteItem() && !GuiTools::confirmDeleteEntries(m_backend, {entry}, permanent)) { return false; @@ -658,7 +648,7 @@ namespace FdoSecrets // groupPath can't be empty here, because otherwise it will match m_exposedGroup and was returned above Q_ASSERT(!groupPath.isEmpty()); - auto groups = groupPath.split('/', QString::SkipEmptyParts); + auto groups = groupPath.split('/', Qt::SkipEmptyParts); auto groupName = groups.takeLast(); // create parent group @@ -674,33 +664,6 @@ namespace FdoSecrets return group; } - bool Collection::inRecycleBin(Group* group) const - { - Q_ASSERT(m_backend); - - if (!group) { - // the root group's parent is nullptr, we treat it as not in recycle bin. - return false; - } - - if (!m_backend->database()->metadata()) { - return false; - } - - auto recycleBin = m_backend->database()->metadata()->recycleBin(); - if (!recycleBin) { - return false; - } - - return group->uuid() == recycleBin->uuid() || group->isRecycled(); - } - - bool Collection::inRecycleBin(Entry* entry) const - { - Q_ASSERT(entry); - return inRecycleBin(entry->group()); - } - Item* Collection::doNewItem(const DBusClientPtr& client, QString itemPath) { Q_ASSERT(m_backend); diff --git a/src/fdosecrets/objects/Collection.h b/src/fdosecrets/objects/Collection.h index 4bd83d152..c8a49ef35 100644 --- a/src/fdosecrets/objects/Collection.h +++ b/src/fdosecrets/objects/Collection.h @@ -107,8 +107,6 @@ namespace FdoSecrets DatabaseWidget* backend() const; QString backendFilePath() const; Service* service() const; - bool inRecycleBin(Group* group) const; - bool inRecycleBin(Entry* entry) const; static EntrySearcher::SearchTerm attributeToTerm(const QString& key, const QString& value); diff --git a/src/fdosecrets/objects/Prompt.cpp b/src/fdosecrets/objects/Prompt.cpp index 1ac7e306f..e89cd499b 100644 --- a/src/fdosecrets/objects/Prompt.cpp +++ b/src/fdosecrets/objects/Prompt.cpp @@ -23,6 +23,7 @@ #include "fdosecrets/objects/Session.h" #include "fdosecrets/widgets/AccessControlDialog.h" +#include "FdoSecretsSettings.h" #include "core/Entry.h" #include "gui/MessageBox.h" @@ -210,7 +211,6 @@ namespace FdoSecrets m_collections.reserve(colls.size()); for (const auto& coll : asConst(colls)) { m_collections << coll; - connect(coll, &Collection::doneUnlockCollection, this, &UnlockPrompt::collectionUnlockFinished); } for (const auto& item : asConst(items)) { m_items[item->collection()] << item; @@ -234,6 +234,7 @@ namespace FdoSecrets bool waitingForCollections = false; for (const auto& c : asConst(m_collections)) { if (c) { + connect(c, &Collection::doneUnlockCollection, this, &UnlockPrompt::collectionUnlockFinished); // doUnlock is nonblocking, execution will continue in collectionUnlockFinished // it is ok to call doUnlock multiple times before it's actually unlocked by the user c->doUnlock(); @@ -242,7 +243,7 @@ namespace FdoSecrets } // unlock items directly if no collection unlocking pending - // o.w. do it in collectionUnlockFinished + // o.w. doing it in collectionUnlockFinished if (!waitingForCollections) { unlockItems(); } @@ -298,7 +299,7 @@ namespace FdoSecrets } auto entry = item->backend(); auto uuid = entry->uuid(); - if (client->itemKnown(uuid)) { + if (client->itemKnown(uuid) || !FdoSecrets::settings()->confirmAccessItem()) { if (!client->itemAuthorized(uuid)) { m_numRejected += 1; } @@ -400,18 +401,49 @@ namespace FdoSecrets return PromptResult::accepted(false); } - bool locked = true; - auto ret = m_coll->locked(locked); - if (locked) { - // collection was locked - return DBusResult{DBUS_ERROR_SECRET_IS_LOCKED}; - } - // save a weak reference to the client which may be used asynchronously later m_client = client; + // give the user a chance to unlock the collection + // UnlockPrompt will handle the case of collection already unlocked + auto prompt = PromptBase::Create(service(), QSet{m_coll.data()}, QSet{}); + if (!prompt) { + return DBusResult{QDBusError::InternalError}; + } + // postpone anything after the prompt + connect(prompt, &PromptBase::completed, this, [this, windowId](bool dismissed) { + if (dismissed) { + finishPrompt(dismissed); + } else { + auto res = createItem(windowId); + if (res.err()) { + qWarning() << "FdoSecrets:" << res; + finishPrompt(true); + } + } + }); + + auto ret = prompt->prompt(client, windowId); + if (ret.err()) { + return ret; + } + return PromptResult::Pending; + } + + DBusResult CreateItemPrompt::createItem(const QString& windowId) + { + auto client = m_client.lock(); + if (!client) { + // client already gone + return {}; + } + + if (!m_coll) { + return DBusResult{DBUS_ERROR_SECRET_NO_SUCH_OBJECT}; + } + // get itemPath to create item and - // try finding an existing item using attributes + // try to find an existing item using attributes QString itemPath{}; auto iterAttr = m_properties.find(DBUS_INTERFACE_SECRET_ITEM + ".Attributes"); if (iterAttr != m_properties.end()) { @@ -425,7 +457,7 @@ namespace FdoSecrets // check existing item using attributes QList existing; - ret = m_coll->searchItems(client, attributes, existing); + auto ret = m_coll->searchItems(client, attributes, existing); if (ret.err()) { return ret; } @@ -444,31 +476,29 @@ namespace FdoSecrets } // the item may be locked due to authorization - ret = m_item->locked(client, locked); + // give the user a chance to unlock the item + auto prompt = PromptBase::Create(service(), QSet{}, QSet{m_item}); + if (!prompt) { + return DBusResult{QDBusError::InternalError}; + } + // postpone anything after the confirmation + connect(prompt, &PromptBase::completed, this, [this](bool dismissed) { + if (dismissed) { + finishPrompt(dismissed); + } else { + auto res = updateItem(); + if (res.err()) { + qWarning() << "FdoSecrets:" << res; + finishPrompt(true); + } + } + }); + + auto ret = prompt->prompt(client, windowId); if (ret.err()) { return ret; } - if (locked) { - // give the user a chance to unlock the item - auto prompt = PromptBase::Create(service(), QSet{}, QSet{m_item}); - if (!prompt) { - return DBusResult{QDBusError::InternalError}; - } - // postpone anything after the confirmation - connect(prompt, &PromptBase::completed, this, [this]() { - auto res = updateItem(); - finishPrompt(res.err()); - }); - - ret = prompt->prompt(client, windowId); - if (ret.err()) { - return ret; - } - return PromptResult::Pending; - } - - // the item can be updated directly - return updateItem(); + return {}; } DBusResult CreateItemPrompt::updateItem() @@ -493,6 +523,9 @@ namespace FdoSecrets if (ret.err()) { return ret; } + + // finally can finish the prompt without dismissing it + finishPrompt(false); return {}; } } // namespace FdoSecrets diff --git a/src/fdosecrets/objects/Prompt.h b/src/fdosecrets/objects/Prompt.h index 1727f4424..078e4ce86 100644 --- a/src/fdosecrets/objects/Prompt.h +++ b/src/fdosecrets/objects/Prompt.h @@ -211,6 +211,7 @@ namespace FdoSecrets PromptResult promptSync(const DBusClientPtr& client, const QString& windowId) override; QVariant currentResult() const override; + DBusResult createItem(const QString& windowId); DBusResult updateItem(); QPointer m_coll; diff --git a/src/fdosecrets/objects/Service.cpp b/src/fdosecrets/objects/Service.cpp index 60e057e7d..e3fcefeb5 100644 --- a/src/fdosecrets/objects/Service.cpp +++ b/src/fdosecrets/objects/Service.cpp @@ -184,6 +184,30 @@ namespace FdoSecrets return {}; } + DBusResult Service::unlockedCollections(QList& unlocked) const + { + auto ret = collections(unlocked); + if (ret.err()) { + return ret; + } + + // filter out locked collections + auto it = unlocked.begin(); + while (it != unlocked.end()) { + bool isLocked = true; + ret = (*it)->locked(isLocked); + if (ret.err()) { + return ret; + } + if (isLocked) { + it = unlocked.erase(it); + } else { + ++it; + } + } + return {}; + } + DBusResult Service::openSession(const DBusClientPtr& client, const QString& algorithm, const QVariant& input, @@ -242,15 +266,43 @@ namespace FdoSecrets DBusResult Service::searchItems(const DBusClientPtr& client, const StringStringMap& attributes, QList& unlocked, - QList& locked) const + QList& locked) { - QList colls; - auto ret = collections(colls); + // we can only search unlocked collections + QList unlockedColls; + auto ret = unlockedCollections(unlockedColls); if (ret.err()) { return ret; } - for (const auto& coll : asConst(colls)) { + while (unlockedColls.isEmpty() && settings()->unlockBeforeSearch()) { + // enable compatibility mode by making sure at least one database is unlocked + QEventLoop loop; + bool wasAccepted = false; + connect(this, &Service::doneUnlockDatabaseInDialog, &loop, [&](bool accepted) { + wasAccepted = accepted; + loop.quit(); + }); + + doUnlockAnyDatabaseInDialog(); + + // blocking wait + loop.exec(); + + if (!wasAccepted) { + // user cancelled, do not proceed + qWarning() << "user cancelled"; + return {}; + } + + // need to recompute this because collections may disappear while in event loop + ret = unlockedCollections(unlockedColls); + if (ret.err()) { + return ret; + } + } + + for (const auto& coll : asConst(unlockedColls)) { QList items; ret = coll->searchItems(client, attributes, items); if (ret.err()) { @@ -258,12 +310,13 @@ namespace FdoSecrets } // item locked state already covers its collection's locked state for (const auto& item : asConst(items)) { - bool l; - ret = item->locked(client, l); + Q_ASSERT(item); + bool itemLocked; + ret = item->locked(client, itemLocked); if (ret.err()) { return ret; } - if (l) { + if (itemLocked) { locked.append(item); } else { unlocked.append(item); @@ -490,7 +543,7 @@ namespace FdoSecrets } // switch selected to current m_databases->setCurrentWidget(dbWidget); - m_databases->showDatabaseSettings(); + m_databases->showDatabaseSettings(true); // open settings (switch from app settings to m_dbTabs) m_plugin->emitRequestSwitchToDatabases(); @@ -522,18 +575,49 @@ namespace FdoSecrets return; } - // mark the db as being unlocked to prevent multiple dialogs for the same db - if (m_unlockingDb.contains(dbWidget)) { + // check if the db is already being unlocked to prevent multiple dialogs for the same db + if (m_unlockingAnyDatabase || m_unlockingDb.contains(dbWidget)) { return; } - m_unlockingDb.insert(dbWidget); + // insert a dummy one here, just to prevent multiple dialogs + // the real one will be inserted in onDatabaseUnlockDialogFinished + m_unlockingDb[dbWidget] = {}; + + // actually show the dialog m_databases->unlockDatabaseInDialog(dbWidget, DatabaseOpenDialog::Intent::None); } + void Service::doUnlockAnyDatabaseInDialog() + { + if (m_unlockingAnyDatabase || !m_unlockingDb.isEmpty()) { + return; + } + m_unlockingAnyDatabase = true; + + m_databases->unlockAnyDatabaseInDialog(DatabaseOpenDialog::Intent::None); + } + void Service::onDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget) { - m_unlockingDb.remove(dbWidget); - emit doneUnlockDatabaseInDialog(accepted, dbWidget); + if (!m_unlockingAnyDatabase && !m_unlockingDb.contains(dbWidget)) { + // not our concern + return; + } + + if (!accepted) { + emit doneUnlockDatabaseInDialog(false, dbWidget); + m_unlockingAnyDatabase = false; + m_unlockingDb.remove(dbWidget); + } else { + // delay the done signal to when the database is actually done with unlocking + // this is a oneshot connection to prevent superfluous signals + auto conn = connect(dbWidget, &DatabaseWidget::databaseUnlocked, this, [dbWidget, this]() { + emit doneUnlockDatabaseInDialog(true, dbWidget); + m_unlockingAnyDatabase = false; + disconnect(m_unlockingDb.take(dbWidget)); + }); + m_unlockingDb[dbWidget] = conn; + } } } // namespace FdoSecrets diff --git a/src/fdosecrets/objects/Service.h b/src/fdosecrets/objects/Service.h index 422a3ca94..5ec7499b1 100644 --- a/src/fdosecrets/objects/Service.h +++ b/src/fdosecrets/objects/Service.h @@ -65,7 +65,7 @@ namespace FdoSecrets Q_INVOKABLE DBusResult searchItems(const DBusClientPtr& client, const StringStringMap& attributes, QList& unlocked, - QList& locked) const; + QList& locked); Q_INVOKABLE DBusResult unlock(const DBusClientPtr& client, const QList& objects, @@ -125,9 +125,16 @@ namespace FdoSecrets */ void doUnlockDatabaseInDialog(DatabaseWidget* dbWidget); + /** + * Async, connect to signal doneUnlockDatabaseInDialog for finish notification + * @param dbWidget + */ + void doUnlockAnyDatabaseInDialog(); + private slots: void ensureDefaultAlias(); + void onDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget); void onDatabaseTabOpened(DatabaseWidget* dbWidget, bool emitSignal); void monitorDatabaseExposedGroup(DatabaseWidget* dbWidget); @@ -136,8 +143,6 @@ namespace FdoSecrets void onCollectionAliasRemoved(const QString& alias); - void onDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget); - private: bool initialize(); @@ -155,6 +160,8 @@ namespace FdoSecrets */ Collection* findCollection(const DatabaseWidget* db) const; + DBusResult unlockedCollections(QList& unlocked) const; + private: FdoSecretsPlugin* m_plugin{nullptr}; QPointer m_databases{}; @@ -166,7 +173,9 @@ namespace FdoSecrets QList m_sessions{}; bool m_insideEnsureDefaultAlias{false}; - QSet m_unlockingDb{}; // list of db being unlocking + bool m_unlockingAnyDatabase{false}; + // list of db currently has unlock dialog shown + QHash m_unlockingDb{}; QSet m_lockingDb{}; // list of db being locking }; diff --git a/src/fdosecrets/objects/SessionCipher.cpp b/src/fdosecrets/objects/SessionCipher.cpp index 147e820b8..182fc771c 100644 --- a/src/fdosecrets/objects/SessionCipher.cpp +++ b/src/fdosecrets/objects/SessionCipher.cpp @@ -17,12 +17,20 @@ #include "SessionCipher.h" +#include "config-keepassx.h" + #include "crypto/Random.h" #include "crypto/SymmetricCipher.h" #include #include + +#ifdef WITH_XC_BOTAN3 +#include +#include +#else #include +#endif namespace FdoSecrets { @@ -50,6 +58,15 @@ namespace FdoSecrets try { Botan::secure_vector salt(32, '\0'); +#ifdef WITH_XC_BOTAN3 + Botan::PK_Key_Agreement dhka(*m_privateKey, *randomGen()->getRng(), "HKDF(SHA-256)", ""); + auto aesKey = dhka.derive_key(16, + reinterpret_cast(clientPublicKey.constData()), + clientPublicKey.size(), + salt.data(), + salt.size()); + m_aesKey = QByteArray(reinterpret_cast(aesKey.begin()), aesKey.size()); +#else auto dhka = m_privateKey->create_key_agreement_op(*randomGen()->getRng(), "HKDF(SHA-256)", ""); auto aesKey = dhka->agree(16, reinterpret_cast(clientPublicKey.constData()), @@ -57,6 +74,7 @@ namespace FdoSecrets salt.data(), salt.size()); m_aesKey = QByteArray(reinterpret_cast(aesKey.data()), aesKey.size()); +#endif return true; } catch (std::exception& e) { qCritical("Failed to update client public key: %s", e.what()); diff --git a/src/fdosecrets/widgets/AccessControlDialog.cpp b/src/fdosecrets/widgets/AccessControlDialog.cpp index 8e3a3e1d8..c35fd8e0c 100644 --- a/src/fdosecrets/widgets/AccessControlDialog.cpp +++ b/src/fdosecrets/widgets/AccessControlDialog.cpp @@ -24,6 +24,8 @@ #include "fdosecrets/widgets/RowButtonHelper.h" #include "core/Entry.h" +#include "core/Global.h" +#include "core/Tools.h" #include "gui/Icons.h" #include @@ -101,7 +103,7 @@ AccessControlDialog::AccessControlDialog(QWindow* parent, connect(cancelButton, &QPushButton::clicked, this, [this]() { done(DenyAll); }); connect(allowButton, &QPushButton::clicked, this, [this]() { done(AllowSelected); }); connect(allowAllButton, &QPushButton::clicked, this, [this]() { done(AllowAll); }); - connect(detailsButton, &QPushButton::clicked, this, [=](bool checked) { + connect(detailsButton, &QPushButton::clicked, this, [this, detailsButton, detailsButtonText](bool checked) { m_ui->detailsContainer->setVisible(checked); if (checked) { detailsButton->setText(detailsButtonText + QStringLiteral(" <<")); @@ -206,7 +208,7 @@ QHash AccessControlDialog::decisions() const AccessControlDialog::EntryModel::EntryModel(QList entries, QObject* parent) : QAbstractTableModel(parent) , m_entries(std::move(entries)) - , m_selected(QSet::fromList(m_entries)) + , m_selected(Tools::asSet(m_entries)) { } diff --git a/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui b/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui index bed666676..9c7ddb007 100644 --- a/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui +++ b/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.ui @@ -72,11 +72,7 @@ - <html><head/><body><p><span style=" - font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color - Emoji','Segoe UI Emoji'; font-size:14px; color:#24292e; background-color:#ffffff;">This setting does - not override disabling recycle bin prompts</span></p></body></html> - + <html><head/><body><p>This setting does not override disabling recycle bin prompts </p></body></html> Confirm when clients request entry deletion @@ -89,11 +85,7 @@ - <html><head/><body><p>This improves compatibility with certain applications - which search for password without unlocking the database first.</p><p>But enabling this may also - crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a - different value set in applications.)</p></body></html> - + <html><head/><body><p>This improves compatibility with certain applications which search for password without unlocking the database first.</p><p>But enabling this may also crash the client if the database can not be unlocked within a certain timeout. (Usually 25s, but may be a different value set in applications.) </p></body></html> Prompt to unlock database before searching diff --git a/src/format/BitwardenReader.cpp b/src/format/BitwardenReader.cpp new file mode 100644 index 000000000..5f729aa77 --- /dev/null +++ b/src/format/BitwardenReader.cpp @@ -0,0 +1,403 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "BitwardenReader.h" + +#include "core/Database.h" +#include "core/Entry.h" +#include "core/Group.h" +#include "core/Metadata.h" +#include "core/Tools.h" +#include "core/Totp.h" +#include "crypto/CryptoHash.h" +#include "crypto/SymmetricCipher.h" +#include "crypto/kdf/Argon2Kdf.h" + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace +{ + Entry* readItem(const QJsonObject& item, QString& folderId) + { + // Create the item map and extract the folder id + const auto itemMap = item.toVariantMap(); + folderId = itemMap.value("folderId").toString(); + if (folderId.isEmpty()) { + // Bitwarden organization vaults use collectionId instead of folderId + auto collectionIds = itemMap.value("collectionIds").toStringList(); + if (!collectionIds.empty()) { + folderId = collectionIds.first(); + } + } + + // Create entry and assign basic values + QScopedPointer entry(new Entry()); + entry->setUuid(QUuid::createUuid()); + entry->setTitle(itemMap.value("name").toString()); + entry->setNotes(itemMap.value("notes").toString()); + + if (itemMap.value("favorite").toBool()) { + entry->addTag(QObject::tr("Favorite", "Tag for favorite entries")); + } + + // Parse login details if present + if (itemMap.contains("login")) { + const auto loginMap = itemMap.value("login").toMap(); + entry->setUsername(loginMap.value("username").toString()); + entry->setPassword(loginMap.value("password").toString()); + if (loginMap.contains("totp")) { + auto totp = loginMap.value("totp").toString(); + if (!totp.startsWith("otpauth://")) { + QUrl url(QString("otpauth://totp/%1:%2?secret=%3") + .arg(QString(QUrl::toPercentEncoding(entry->title())), + QString(QUrl::toPercentEncoding(entry->username())), + QString(QUrl::toPercentEncoding(totp)))); + totp = url.toString(QUrl::FullyEncoded); + } + entry->setTotp(Totp::parseSettings(totp)); + } + + // Parse passkey + if (loginMap.contains("fido2Credentials")) { + const auto fido2CredentialsMap = loginMap.value("fido2Credentials").toList(); + for (const auto& fido2Credentials : fido2CredentialsMap) { + const auto passkey = fido2Credentials.toMap(); + + // Change from UUID to base64 byte array + const auto credentialIdValue = passkey.value("credentialId").toString(); + if (!credentialIdValue.isEmpty()) { + const auto credentialUuid = Tools::uuidToHex(credentialIdValue); + const auto credentialIdArray = QByteArray::fromHex(credentialUuid.toUtf8()); + const auto credentialId = + credentialIdArray.toBase64(QByteArray::Base64UrlEncoding | QByteArray::OmitTrailingEquals); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_CREDENTIAL_ID, credentialId, true); + } + + // Base64 needs to be changed from URL encoding back to normal, and the result as PEM string + const auto keyValue = passkey.value("keyValue").toString(); + if (!keyValue.isEmpty()) { + const auto keyValueArray = + QByteArray::fromBase64(keyValue.toUtf8(), QByteArray::Base64UrlEncoding); + auto privateKey = keyValueArray.toBase64(QByteArray::Base64Encoding); + privateKey.insert(0, EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_START.toUtf8()); + privateKey.append(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_END.toUtf8()); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM, privateKey, true); + } + + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_USERNAME, + passkey.value("userName").toString()); + entry->attributes()->set(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY, + passkey.value("rpId").toString()); + entry->attributes()->set( + EntryAttributes::KPEX_PASSKEY_USER_HANDLE, passkey.value("userHandle").toString(), true); + entry->addTag(QObject::tr("Passkey")); + } + } + + // Set the entry url(s) + int i = 1; + for (const auto& urlObj : loginMap.value("uris").toList()) { + const auto url = urlObj.toMap().value("uri").toString(); + if (entry->url().isEmpty()) { + // First url encountered is set as the primary url + entry->setUrl(url); + } else { + // Subsequent urls + entry->attributes()->set( + QString("%1_%2").arg(EntryAttributes::AdditionalUrlAttribute, QString::number(i)), url); + ++i; + } + } + } + + // Parse identity details if present + if (itemMap.contains("identity")) { + const auto idMap = itemMap.value("identity").toMap(); + + // Combine name attributes + auto attrs = QStringList({idMap.value("title").toString(), + idMap.value("firstName").toString(), + idMap.value("middleName").toString(), + idMap.value("lastName").toString()}); + attrs.removeAll(""); + entry->attributes()->set("identity_name", attrs.join(" ")); + + // Combine all the address attributes + attrs = QStringList({idMap.value("address1").toString(), + idMap.value("address2").toString(), + idMap.value("address3").toString()}); + attrs.removeAll(""); + auto address = attrs.join("\n") + "\n" + idMap.value("city").toString() + ", " + + idMap.value("state").toString() + " " + idMap.value("postalCode").toString() + "\n" + + idMap.value("country").toString(); + entry->attributes()->set("identity_address", address); + + // Add the remaining attributes + attrs = QStringList({"company", "email", "phone", "ssn", "passportNumber", "licenseNumber"}); + const QStringList sensitive({"ssn", "passportNumber", "licenseNumber"}); + for (const auto& attr : attrs) { + const auto value = idMap.value(attr).toString(); + if (!value.isEmpty()) { + entry->attributes()->set("identity_" + attr, value, sensitive.contains(attr)); + } + } + + // Set the username or push it into attributes if already set + const auto username = idMap.value("username").toString(); + if (!username.isEmpty()) { + if (entry->username().isEmpty()) { + entry->setUsername(username); + } else { + entry->attributes()->set("identity_username", username); + } + } + } + + // Parse card details if present + if (itemMap.contains("card")) { + const auto cardMap = itemMap.value("card").toMap(); + const QStringList attrs({"cardholderName", "brand", "number", "expMonth", "expYear", "code"}); + const QStringList sensitive({"code"}); + for (const auto& attr : attrs) { + auto value = cardMap.value(attr).toString(); + if (!value.isEmpty()) { + entry->attributes()->set("card_" + attr, value, sensitive.contains(attr)); + } + } + } + + // Parse remaining fields + for (const auto& field : itemMap.value("fields").toList()) { + // Derive a prefix for attribute names using the title or uuid if missing + const auto fieldMap = field.toMap(); + auto name = fieldMap.value("name").toString(); + if (entry->attributes()->hasKey(name)) { + name = QString("%1_%2").arg(name, QUuid::createUuid().toString().mid(1, 5)); + } + + const auto value = fieldMap.value("value").toString(); + const auto type = fieldMap.value("type").toInt(); + + entry->attributes()->set(name, value, type == 1); + } + + // Collapse any accumulated history + entry->removeHistoryItems(entry->historyItems()); + + return entry.take(); + } + + void writeVaultToDatabase(const QJsonObject& vault, QSharedPointer db) + { + auto folderField = QString("folders"); + if (!vault.contains(folderField)) { + // Handle Bitwarden organization vaults + folderField = "collections"; + } + + if (!vault.contains(folderField) || !vault.contains("items")) { + // Early out if the vault is missing critical items + return; + } + + // Create groups from folders and store a temporary map of id -> uuid + QMap folderMap; + for (const auto& folder : vault.value(folderField).toArray()) { + auto group = new Group(); + group->setUuid(QUuid::createUuid()); + group->setName(folder.toObject().value("name").toString()); + group->setParent(db->rootGroup()); + + folderMap.insert(folder.toObject().value("id").toString(), group); + } + + QString folderId; + const auto items = vault.value("items").toArray(); + for (const auto& item : items) { + auto entry = readItem(item.toObject(), folderId); + if (entry) { + entry->setGroup(folderMap.value(folderId, db->rootGroup()), false); + } + } + } +} // namespace + +bool BitwardenReader::hasError() +{ + return !m_error.isEmpty(); +} + +QString BitwardenReader::errorString() +{ + return m_error; +} + +QSharedPointer BitwardenReader::convert(const QString& path, const QString& password) +{ + m_error.clear(); + + QFileInfo fileinfo(path); + if (!fileinfo.exists()) { + m_error = QObject::tr("File does not exist.").arg(path); + return {}; + } + + // Bitwarden uses a json file format + QFile file(fileinfo.absoluteFilePath()); + if (!file.open(QFile::ReadOnly)) { + m_error = QObject::tr("Cannot open file: %1").arg(file.errorString()); + return {}; + } + + QJsonParseError error; + auto json = QJsonDocument::fromJson(file.readAll(), &error).object(); + if (error.error != QJsonParseError::NoError) { + m_error = + QObject::tr("Cannot parse file: %1 at position %2").arg(error.errorString(), QString::number(error.offset)); + return {}; + } + + file.close(); + + // Check if this is an encrypted json + if (json.contains("encrypted") && json.value("encrypted").toBool()) { + auto buildError = [](const QString& errorString) { + return QObject::tr("Failed to decrypt json file: %1").arg(errorString); + }; + + if (!json.contains("kdfType") || !json.contains("salt")) { + m_error = buildError(QObject::tr("Unsupported format, ensure your Bitwarden export is password-protected")); + return {}; + } + + QByteArray key(32, '\0'); + auto salt = json.value("salt").toString().toUtf8(); + auto kdfType = json.value("kdfType").toInt(); + + // Derive the Master Key + if (kdfType == 0) { + // PBKDF2 + auto iterations = json.value("kdfIterations").toInt(); + if (iterations <= 0) { + m_error = buildError(QObject::tr("Invalid KDF iterations, cannot decrypt json file")); + return {}; + } + auto pwd_fam = Botan::PasswordHashFamily::create_or_throw("PBKDF2(SHA-256)"); + auto pwd_hash = pwd_fam->from_params(iterations); + pwd_hash->derive_key(reinterpret_cast(key.data()), + key.size(), + password.toUtf8().data(), + password.toUtf8().size(), + reinterpret_cast(salt.data()), + salt.size()); + } else if (kdfType == 1) { + // Argon2 + // Bitwarden hashes the salt prior to use + CryptoHash saltHash(CryptoHash::Sha256); + saltHash.addData(salt); + salt = saltHash.result(); + + Argon2Kdf argon2(Argon2Kdf::Type::Argon2id); + argon2.setSeed(salt); + argon2.setRounds(json.value("kdfIterations").toInt()); + argon2.setMemory(json.value("kdfMemory").toInt() * 1024); + argon2.setParallelism(json.value("kdfParallelism").toInt()); + argon2.transform(password.toUtf8(), key); + } else { + m_error = buildError(QObject::tr("Only PBKDF and Argon2 are supported, cannot decrypt json file")); + return {}; + } + + auto hkdf = Botan::KDF::create_or_throw("HKDF-Expand(SHA-256)"); + + // Derive the MAC Key + auto stretched_mac = hkdf->derive_key(32, reinterpret_cast(key.data()), key.size(), "", "mac"); + auto mac = QByteArray(reinterpret_cast(stretched_mac.data()), stretched_mac.size()); + + // Stretch the Master Key + auto stretched_key = hkdf->derive_key(32, reinterpret_cast(key.data()), key.size(), "", "enc"); + key = QByteArray(reinterpret_cast(stretched_key.data()), stretched_key.size()); + + // Validate the encryption key + auto keyList = json.value("encKeyValidation_DO_NOT_EDIT").toString().split("."); + if (keyList.size() < 2) { + m_error = buildError(QObject::tr("Invalid encKeyValidation field")); + return {}; + } + auto cipherList = keyList[1].split("|"); + if (cipherList.size() < 3) { + m_error = buildError(QObject::tr("Invalid cipher list within encKeyValidation field")); + return {}; + } + CryptoHash hash(CryptoHash::Sha256, true); + hash.setKey(mac); + hash.addData(QByteArray::fromBase64(cipherList[0].toUtf8())); // iv + hash.addData(QByteArray::fromBase64(cipherList[1].toUtf8())); // ciphertext + if (hash.result().toBase64() != cipherList[2].toUtf8()) { + // Calculated MAC doesn't equal the Validation + m_error = buildError(QObject::tr("Wrong password")); + return {}; + } + + // Decrypt data field using AES-256-CBC + keyList = json.value("data").toString().split("."); + if (keyList.size() < 2) { + m_error = buildError(QObject::tr("Invalid encrypted data field")); + return {}; + } + cipherList = keyList[1].split("|"); + if (cipherList.size() < 2) { + m_error = buildError(QObject::tr("Invalid cipher list within encrypted data field")); + return {}; + } + auto iv = QByteArray::fromBase64(cipherList[0].toUtf8()); + auto data = QByteArray::fromBase64(cipherList[1].toUtf8()); + + SymmetricCipher cipher; + if (!cipher.init(SymmetricCipher::Aes256_CBC, SymmetricCipher::Decrypt, key, iv)) { + m_error = buildError(QObject::tr("Cannot initialize cipher")); + return {}; + } + if (!cipher.finish(data)) { + m_error = buildError(QObject::tr("Cannot decrypt data")); + return {}; + } + + json = QJsonDocument::fromJson(data, &error).object(); + if (error.error != QJsonParseError::NoError) { + m_error = buildError(error.errorString()); + return {}; + } + } + + auto db = QSharedPointer::create(); + db->rootGroup()->setName(QObject::tr("Bitwarden Import")); + + writeVaultToDatabase(json, db); + + return db; +} diff --git a/src/format/BitwardenReader.h b/src/format/BitwardenReader.h new file mode 100644 index 000000000..52e1e6f70 --- /dev/null +++ b/src/format/BitwardenReader.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef BITWARDEN_READER_H +#define BITWARDEN_READER_H + +#include + +class Database; + +/*! + * Imports a Bitwarden vault in JSON format: https://bitwarden.com/help/encrypted-export/ + */ +class BitwardenReader +{ +public: + explicit BitwardenReader() = default; + ~BitwardenReader() = default; + + QSharedPointer convert(const QString& path, const QString& password = {}); + + bool hasError(); + QString errorString(); + +private: + QString m_error; +}; + +#endif // BITWARDEN_READER_H diff --git a/src/format/CsvParser.cpp b/src/format/CsvParser.cpp index a376e3662..d5d3b319a 100644 --- a/src/format/CsvParser.cpp +++ b/src/format/CsvParser.cpp @@ -1,4 +1,4 @@ -/* +/* * Copyright (C) 2016 Enrico Mariotti * Copyright (C) 2017 KeePassXC Team * @@ -24,20 +24,13 @@ #include "core/Tools.h" CsvParser::CsvParser() - : m_ch(0) - , m_comment('#') - , m_currCol(1) - , m_currRow(1) + : m_comment('#') , m_isBackslashSyntax(false) - , m_isEof(false) , m_isFileLoaded(false) - , m_isGood(true) - , m_lastPos(-1) - , m_maxCols(0) , m_qualifier('"') , m_separator(',') - , m_statusMsg("") { + reset(); m_csv.setBuffer(&m_array); m_ts.setDevice(&m_csv); m_csv.open(QIODevice::ReadOnly); @@ -60,7 +53,7 @@ bool CsvParser::reparse() return parseFile(); } -bool CsvParser::parse(QFile* device) +bool CsvParser::parse(QIODevice* device) { clear(); if (!device) { @@ -73,7 +66,7 @@ bool CsvParser::parse(QFile* device) return parseFile(); } -bool CsvParser::readFile(QFile* device) +bool CsvParser::readFile(QIODevice* device) { if (device->isOpen()) { device->close(); @@ -86,6 +79,7 @@ bool CsvParser::readFile(QFile* device) } else { device->close(); + // Normalize on newline endings m_array.replace("\r\n", "\n"); m_array.replace("\r", "\n"); if (m_array.isEmpty()) { @@ -105,10 +99,10 @@ void CsvParser::reset() m_isGood = true; m_lastPos = -1; m_maxCols = 0; - m_statusMsg = ""; + m_statusMsg.clear(); m_ts.seek(0); m_table.clear(); - // the following are users' concern :) + // the following can be overridden by the user // m_comment = '#'; // m_backslashSyntax = false; // m_comment = '#'; @@ -128,7 +122,7 @@ bool CsvParser::parseFile() parseRecord(); while (!m_isEof) { if (!skipEndline()) { - appendStatusMsg(QObject::tr("malformed string"), true); + appendStatusMsg(QObject::tr("malformed string, possible unescaped delimiter"), true); } m_currRow++; m_currCol = 1; @@ -148,7 +142,7 @@ void CsvParser::parseRecord() do { parseField(row); getChar(m_ch); - } while (isSeparator(m_ch) && !m_isEof); + } while (m_ch == m_separator && !m_isEof); if (!m_isEof) { ungetChar(); @@ -168,7 +162,7 @@ void CsvParser::parseField(CsvRow& row) { QString field; peek(m_ch); - if (!isTerminator(m_ch)) { + if (m_ch != m_separator && m_ch != '\n') { if (isQualifier(m_ch)) { parseQuoted(field); } else { @@ -182,7 +176,7 @@ void CsvParser::parseSimple(QString& s) { QChar c; getChar(c); - while ((isText(c)) && (!m_isEof)) { + while (c != '\n' && c != m_separator && !m_isEof) { s.append(c); getChar(c); } @@ -197,7 +191,7 @@ void CsvParser::parseQuoted(QString& s) getChar(m_ch); parseEscaped(s); if (!isQualifier(m_ch)) { - appendStatusMsg(QObject::tr("missing closing quote"), true); + appendStatusMsg(QObject::tr("missing closing delimiter"), true); } } @@ -215,7 +209,7 @@ void CsvParser::parseEscaped(QString& s) void CsvParser::parseEscapedText(QString& s) { getChar(m_ch); - while ((!isQualifier(m_ch)) && !m_isEof) { + while (!isQualifier(m_ch) && !m_isEof) { s.append(m_ch); getChar(m_ch); } @@ -223,10 +217,9 @@ void CsvParser::parseEscapedText(QString& s) bool CsvParser::processEscapeMark(QString& s, QChar c) { - QChar buf; - peek(buf); QChar c2; - if (true == m_isBackslashSyntax) { + peek(c2); + if (m_isBackslashSyntax) { // escape-character syntax, e.g. \" if (c != '\\') { return false; @@ -237,25 +230,24 @@ bool CsvParser::processEscapeMark(QString& s, QChar c) c2 = '\\'; s.append('\\'); return false; - } else { - s.append(c2); - return true; - } - } else { - // double quote syntax, e.g. "" - if (!isQualifier(c)) { - return false; - } - peek(c2); - if (!m_isEof) { // not EOF, can read one char - if (isQualifier(c2)) { - s.append(c2); - getChar(c2); - return true; - } } + s.append(c2); + return true; + } + + // double quote syntax, e.g. "" + if (!isQualifier(c)) { return false; } + peek(c2); + if (!m_isEof) { // not EOF, can read one char + if (isQualifier(c2)) { + s.append(c2); + getChar(c2); + return true; + } + } + return false; } void CsvParser::fillColumns() @@ -282,7 +274,7 @@ void CsvParser::skipLine() bool CsvParser::skipEndline() { getChar(m_ch); - return (m_ch == '\n'); + return m_ch == '\n'; } void CsvParser::getChar(QChar& c) @@ -312,11 +304,10 @@ void CsvParser::peek(QChar& c) bool CsvParser::isQualifier(const QChar& c) const { - if (true == m_isBackslashSyntax && (c != m_qualifier)) { - return (c == '\\'); - } else { - return (c == m_qualifier); + if (m_isBackslashSyntax && c != m_qualifier) { + return c == '\\'; } + return c == m_qualifier; } bool CsvParser::isComment() @@ -327,7 +318,7 @@ bool CsvParser::isComment() do { getChar(c2); - } while ((isSpace(c2) || isTab(c2)) && (!m_isEof)); + } while ((c2 == ' ' || c2 == '\t') && !m_isEof); if (c2 == m_comment) { result = true; @@ -336,47 +327,16 @@ bool CsvParser::isComment() return result; } -bool CsvParser::isText(QChar c) const -{ - return !((isCRLF(c)) || (isSeparator(c))); -} - bool CsvParser::isEmptyRow(const CsvRow& row) const { - CsvRow::const_iterator it = row.constBegin(); - for (; it != row.constEnd(); ++it) { - if (((*it) != "\n") && ((*it) != "")) { + for (auto it = row.constBegin(); it != row.constEnd(); ++it) { + if (*it != "\n" && *it != "") { return false; } } return true; } -bool CsvParser::isCRLF(const QChar& c) const -{ - return (c == '\n'); -} - -bool CsvParser::isSpace(const QChar& c) const -{ - return (c == ' '); -} - -bool CsvParser::isTab(const QChar& c) const -{ - return (c == '\t'); -} - -bool CsvParser::isSeparator(const QChar& c) const -{ - return (c == m_separator); -} - -bool CsvParser::isTerminator(const QChar& c) const -{ - return (isSeparator(c) || (c == '\n') || (c == '\r')); -} - void CsvParser::setBackslashSyntax(bool set) { m_isBackslashSyntax = set; @@ -407,7 +367,7 @@ int CsvParser::getFileSize() const return m_csv.size(); } -const CsvTable CsvParser::getCsvTable() const +CsvTable CsvParser::getCsvTable() const { return m_table; } @@ -421,9 +381,8 @@ int CsvParser::getCsvCols() const { if (!m_table.isEmpty() && !m_table.at(0).isEmpty()) { return m_table.at(0).size(); - } else { - return 0; } + return 0; } int CsvParser::getCsvRows() const @@ -433,6 +392,12 @@ int CsvParser::getCsvRows() const void CsvParser::appendStatusMsg(const QString& s, bool isCritical) { - m_statusMsg += QObject::tr("%1: (row, col) %2,%3").arg(s, m_currRow, m_currCol).append("\n"); + if (!m_statusMsg.isEmpty()) { + m_statusMsg.append("\n"); + } + + m_statusMsg += + QObject::tr("%1, row: %2, column: %3").arg(s, QString::number(m_currRow), QString::number(m_currCol)); + m_isGood = !isCritical; } diff --git a/src/format/CsvParser.h b/src/format/CsvParser.h index 73fb13d24..608d71c14 100644 --- a/src/format/CsvParser.h +++ b/src/format/CsvParser.h @@ -22,7 +22,7 @@ #include #include -class QFile; +class QIODevice; typedef QStringList CsvRow; typedef QList CsvTable; @@ -34,7 +34,7 @@ public: CsvParser(); ~CsvParser(); // read data from device and parse it - bool parse(QFile* device); + bool parse(QIODevice* device); bool isFileLoaded(); // reparse the same buffer (device is not opened again) bool reparse(); @@ -47,7 +47,7 @@ public: int getCsvRows() const; int getCsvCols() const; QString getStatus() const; - const CsvTable getCsvTable() const; + CsvTable getCsvTable() const; protected: CsvTable m_table; @@ -74,15 +74,9 @@ private: void ungetChar(); void peek(QChar& c); void fillColumns(); - bool isTerminator(const QChar& c) const; - bool isSeparator(const QChar& c) const; bool isQualifier(const QChar& c) const; bool processEscapeMark(QString& s, QChar c); - bool isText(QChar c) const; bool isComment(); - bool isCRLF(const QChar& c) const; - bool isSpace(const QChar& c) const; - bool isTab(const QChar& c) const; bool isEmptyRow(const CsvRow& row) const; bool parseFile(); void parseRecord(); @@ -91,7 +85,7 @@ private: void parseQuoted(QString& s); void parseEscaped(QString& s); void parseEscapedText(QString& s); - bool readFile(QFile* device); + bool readFile(QIODevice* device); void reset(); void clear(); bool skipEndline(); diff --git a/src/gui/HtmlExporter.cpp b/src/format/HtmlExporter.cpp similarity index 75% rename from src/gui/HtmlExporter.cpp rename to src/format/HtmlExporter.cpp index 70249ed26..933df4e35 100644 --- a/src/gui/HtmlExporter.cpp +++ b/src/format/HtmlExporter.cpp @@ -17,28 +17,13 @@ #include "HtmlExporter.h" -#include #include #include "core/Group.h" #include "core/Metadata.h" -#include "gui/Icons.h" namespace { - QString PixmapToHTML(const QPixmap& pixmap) - { - if (pixmap.isNull()) { - return ""; - } - - // Based on https://stackoverflow.com/a/6621278 - QByteArray a; - QBuffer buffer(&a); - pixmap.save(&buffer, "PNG"); - return QString(""; - } - QString formatEntry(const Entry& entry) { // Here we collect the table rows with this entry's data fields @@ -85,15 +70,6 @@ namespace item.append(""); } - const auto& n = entry.notes(); - if (!n.isEmpty()) { - item.append(""); - item.append(QObject::tr("Notes")); - item.append(""); - item.append(entry.notes().toHtmlEscaped().replace("\n", "
")); - item.append(""); - } - // Now add the attributes (if there are any) const auto* const attr = entry.attributes(); if (attr && !attr->customKeys().isEmpty()) { @@ -105,6 +81,15 @@ namespace item.append(""); } } + + const auto& n = entry.notes(); + if (!n.isEmpty()) { + item.append(""); + item.append(QObject::tr("Notes")); + item.append(""); + item.append(entry.notes().toHtmlEscaped().replace("\n", "
")); + item.append(""); + } return item; } } // namespace @@ -127,15 +112,62 @@ QString HtmlExporter::errorString() const return m_error; } +QString HtmlExporter::groupIconToHtml(const Group* /* group */) +{ + return ""; +} + +QString HtmlExporter::entryIconToHtml(const Entry* /* entry */) +{ + return ""; +} + bool HtmlExporter::exportDatabase(QIODevice* device, const QSharedPointer& db, bool sorted, bool ascending) +{ + if (device->write(exportHeader(db).toUtf8()) == -1) { + m_error = device->errorString(); + return false; + } + + if (db->rootGroup()) { + if (device->write(exportGroup(*db->rootGroup(), QString(), sorted, ascending).toUtf8()) == -1) { + m_error = device->errorString(); + return false; + } + } + + if (device->write(exportFooter().toUtf8()) == -1) { + m_error = device->errorString(); + return false; + } + + return true; +} + +QString HtmlExporter::exportDatabase(const QSharedPointer& db, bool sorted, bool ascending) +{ + QString response; + + response = exportHeader(db); + if (!response.isEmpty()) { + if (db->rootGroup()) { + response.append(exportGroup(*db->rootGroup(), QString(), sorted, ascending)); + } + response.append(exportFooter()); + } + + return response; +} + +QString HtmlExporter::exportHeader(const QSharedPointer& db) { const auto meta = db->metadata(); if (!meta) { m_error = "Internal error: metadata is NULL"; - return false; + return ""; } const auto header = QString("" @@ -149,16 +181,17 @@ bool HtmlExporter::exportDatabase(QIODevice* device, "{ font-family: \"Open Sans\", Helvetica, Arial, sans-serif; }" "h3 " "{ margin-left: 2em; }" - "table " - "{ margin-left: 4em; } " + "caption " + "{ text-align: left; font-weight: bold; font-size: 150%; border-bottom: .15em solid " + "#4ca; margin-bottom: .5em;} " "th, td " "{ text-align: left; vertical-align: top; padding: 1px; }" "th " - "{ min-width: 5em; width: 20%; } " + "{ min-width: 7em; width: 15%; } " ".username, .password, .url, .attr " - "{ font-size: larger; font-family: monospace; } " + "{ font-size: larger; font-family: monospace; overflow-wrap: anywhere;} " ".notes " - "{ font-size: medium; } " + "{ font-size: small; } " "" "\n" "" @@ -170,33 +203,23 @@ bool HtmlExporter::exportDatabase(QIODevice* device, + "

" "

" + db->filePath().toHtmlEscaped() + "

"); - const auto footer = QString("" - ""); - - if (device->write(header.toUtf8()) == -1) { - m_error = device->errorString(); - return false; - } - - if (db->rootGroup()) { - if (!writeGroup(*device, *db->rootGroup(), QString(), sorted, ascending)) { - return false; - } - } - - if (device->write(footer.toUtf8()) == -1) { - m_error = device->errorString(); - return false; - } - - return true; + return header; } -bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString path, bool sorted, bool ascending) +QString HtmlExporter::exportFooter() { + const auto footer = QString("" + ""); + return footer; +} + +QString HtmlExporter::exportGroup(const Group& group, QString path, bool sorted, bool ascending) +{ + QString response = ""; + // Don't output the recycle bin if (&group == group.database()->metadata()->recycleBin()) { - return true; + return response; } if (!path.isEmpty()) { @@ -211,8 +234,11 @@ bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString pat if (!group.entries().empty() || !notes.isEmpty()) { // Header line auto header = QString("

"); - header.append(PixmapToHTML(Icons::groupIconPixmap(&group, IconSize::Medium))); - header.append(" "); + auto groupIcon = this->groupIconToHtml(&group); + if (!groupIcon.isEmpty()) { + header.append(groupIcon); + header.append(" "); + } header.append(path); header.append("

\n"); @@ -223,15 +249,12 @@ bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString pat header.append("

"); } - // Output it - if (device.write(header.toUtf8()) == -1) { - m_error = device.errorString(); - return false; - } + // Append it to the output + response.append(header); } // Begin the table for the entries in this group - auto table = QString(""); + auto table = QString("
"); auto entries = group.entries(); if (sorted) { @@ -241,7 +264,7 @@ bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString pat }); } - // Output the entries in this group + // Append to the output the entries in this group for (const auto* entry : entries) { auto formatted_entry = formatEntry(*entry); @@ -251,20 +274,21 @@ bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString pat // Output it into our table. First the left side with // icon and entry title ... table += ""; - table += ""; - table += ""; + auto entryIcon = this->entryIconToHtml(entry); + if (!entryIcon.isEmpty()) { + table += ""; + } + auto caption = ""; // ... then the right side with the data fields - table += ""; + table += + ""; table += ""; } - // Output the complete table of this group + // Append the complete table of this group to the output table.append("
" + PixmapToHTML(Icons::entryIconPixmap(entry, IconSize::Medium)) + "

" + entry->title().toHtmlEscaped() + "

" + entryIcon + "
" + entry->title().toHtmlEscaped() + "
" + formatted_entry + "
" + caption + formatted_entry + "
\n"); - if (device.write(table.toUtf8()) == -1) { - m_error = device.errorString(); - return false; - } + response.append(table); auto children = group.children(); if (sorted) { @@ -274,12 +298,12 @@ bool HtmlExporter::writeGroup(QIODevice& device, const Group& group, QString pat }); } - // Recursively output the child groups + // Recursively append to the output the child groups for (const auto* child : children) { - if (child && !writeGroup(device, *child, path, sorted, ascending)) { - return false; + if (child) { + response.append(exportGroup(*child, path, sorted, ascending)); } } - return true; + return response; } diff --git a/src/gui/HtmlExporter.h b/src/format/HtmlExporter.h similarity index 73% rename from src/gui/HtmlExporter.h rename to src/format/HtmlExporter.h index 1ee9b4448..0fd2612c7 100644 --- a/src/gui/HtmlExporter.h +++ b/src/format/HtmlExporter.h @@ -21,6 +21,8 @@ #include #include +#include "core/Group.h" + class Database; class Group; class QIODevice; @@ -32,18 +34,23 @@ public: const QSharedPointer& db, bool sorted = true, bool ascending = true); - QString errorString() const; - -private: bool exportDatabase(QIODevice* device, const QSharedPointer& db, bool sorted = true, bool ascending = true); - bool writeGroup(QIODevice& device, - const Group& group, - QString path = QString(), - bool sorted = true, - bool ascending = true); + QString exportDatabase(const QSharedPointer& db, bool sorted = true, bool ascending = true); + QString errorString() const; + + virtual ~HtmlExporter() = default; + +protected: + virtual QString groupIconToHtml(const Group* group); + virtual QString entryIconToHtml(const Entry* entry); + +private: + QString exportGroup(const Group& group, QString path = QString(), bool sorted = true, bool ascending = true); + QString exportHeader(const QSharedPointer& db); + QString exportFooter(); QString m_error; }; diff --git a/src/format/Kdbx4Writer.cpp b/src/format/Kdbx4Writer.cpp index 08a0df013..1c728ac81 100644 --- a/src/format/Kdbx4Writer.cpp +++ b/src/format/Kdbx4Writer.cpp @@ -19,9 +19,9 @@ #include +#include "config-keepassx.h" #include "crypto/CryptoHash.h" #include "crypto/Random.h" -#include "format/KdbxXmlWriter.h" #include "format/KeePass2RandomStream.h" #include "streams/HmacBlockStream.h" #include "streams/SymmetricCipherStream.h" @@ -156,7 +156,7 @@ bool Kdbx4Writer::writeDatabase(QIODevice* device, Database* db) writeInnerHeaderField(outputDevice, KeePass2::InnerHeaderFieldID::InnerRandomStreamKey, protectedStreamKey)); // Write attachments to the inner header - writeAttachments(outputDevice, db); + auto idxMap = writeAttachments(outputDevice, db); CHECK_RETURN_FALSE(writeInnerHeaderField(outputDevice, KeePass2::InnerHeaderFieldID::End, QByteArray())); @@ -166,7 +166,7 @@ bool Kdbx4Writer::writeDatabase(QIODevice* device, Database* db) return false; } - KdbxXmlWriter xmlWriter(db->formatVersion()); + KdbxXmlWriter xmlWriter(db->formatVersion(), idxMap); xmlWriter.writeDatabase(outputDevice, db, &randomStream, headerHash); // Explicitly close/reset streams so they are flushed and we can detect @@ -211,25 +211,46 @@ bool Kdbx4Writer::writeInnerHeaderField(QIODevice* device, KeePass2::InnerHeader return true; } -void Kdbx4Writer::writeAttachments(QIODevice* device, Database* db) +KdbxXmlWriter::BinaryIdxMap Kdbx4Writer::writeAttachments(QIODevice* device, Database* db) { const QList allEntries = db->rootGroup()->entriesRecursive(true); - QSet writtenAttachments; + QHash writtenAttachments; + KdbxXmlWriter::BinaryIdxMap idxMap; + qint64 nextIdx = 0; - for (Entry* entry : allEntries) { + for (const Entry* entry : allEntries) { const QList attachmentKeys = entry->attachments()->keys(); for (const QString& key : attachmentKeys) { QByteArray data("\x01"); data.append(entry->attachments()->value(key)); - if (writtenAttachments.contains(data)) { - continue; + CryptoHash hash(CryptoHash::Sha256); +#ifdef WITH_XC_KEESHARE + // Namespace KeeShare attachments so they don't get deduplicated together with attachments + // from other databases. Prevents potential filesize side channels. + auto group = entry->group(); + if (!group && entry->historyOwner()) { + group = entry->historyOwner()->group(); } + if (group && group->isShared()) { + hash.addData(group->uuid().toByteArray()); + } else { + hash.addData(db->uuid().toByteArray()); + } +#endif + hash.addData(data); - writeInnerHeaderField(device, KeePass2::InnerHeaderFieldID::Binary, data); - writtenAttachments.insert(data); + // Deduplicate attachments with the same hash + const auto hashResult = hash.result(); + if (!writtenAttachments.contains(hashResult)) { + writeInnerHeaderField(device, KeePass2::InnerHeaderFieldID::Binary, data); + writtenAttachments.insert(hashResult, nextIdx++); + } + idxMap.insert(qMakePair(entry, key), writtenAttachments[hashResult]); } } + + return idxMap; } /** diff --git a/src/format/Kdbx4Writer.h b/src/format/Kdbx4Writer.h index c8540245b..7b6af2f5d 100644 --- a/src/format/Kdbx4Writer.h +++ b/src/format/Kdbx4Writer.h @@ -19,6 +19,7 @@ #define KEEPASSX_KDBX4WRITER_H #include "KdbxWriter.h" +#include "format/KdbxXmlWriter.h" /** * KDBX4 writer implementation. @@ -32,7 +33,7 @@ public: private: bool writeInnerHeaderField(QIODevice* device, KeePass2::InnerHeaderFieldID fieldId, const QByteArray& data); - void writeAttachments(QIODevice* device, Database* db); + KdbxXmlWriter::BinaryIdxMap writeAttachments(QIODevice* device, Database* db); static bool serializeVariantMap(const QVariantMap& map, QByteArray& outputBytes); }; diff --git a/src/format/KdbxReader.cpp b/src/format/KdbxReader.cpp index 5610897c8..b552bd1cb 100644 --- a/src/format/KdbxReader.cpp +++ b/src/format/KdbxReader.cpp @@ -27,6 +27,8 @@ /** * Read KDBX magic header numbers from a device. * + * Passing a null key will only read in the unprotected headers. + * * @param device input device * @param sig1 KDBX signature 1 * @param sig2 KDBX signature 2 @@ -55,6 +57,8 @@ bool KdbxReader::readMagicNumbers(QIODevice* device, quint32& sig1, quint32& sig * Read KDBX stream from device. * The device will automatically be reset to 0 before reading. * + * Passing a null key will only read in the unprotected headers. + * * @param device input device * @param key database encryption composite key * @param db database to read into @@ -91,6 +95,11 @@ bool KdbxReader::readDatabase(QIODevice* device, QSharedPointerformatVersion()); + KdbxXmlWriter::BinaryIdxMap idxMap; + KdbxXmlWriter writer(db->formatVersion(), idxMap); writer.disableInnerStreamProtection(true); writer.writeDatabase(&buffer, db); } diff --git a/src/format/KdbxXmlReader.cpp b/src/format/KdbxXmlReader.cpp index e66e12174..e6c212bbc 100644 --- a/src/format/KdbxXmlReader.cpp +++ b/src/format/KdbxXmlReader.cpp @@ -19,6 +19,7 @@ #include "KeePass2RandomStream.h" #include "core/Clock.h" #include "core/Endian.h" +#include "core/Global.h" #include "core/Group.h" #include "core/Tools.h" #include "streams/qtiocompressor.h" @@ -120,8 +121,8 @@ void KdbxXmlReader::readDatabase(QIODevice* device, Database* db, KeePass2Random qWarning("KdbxXmlReader::readDatabase: found %d invalid entry reference(s)", m_tmpParent->children().size()); } - const QSet poolKeys = asConst(m_binaryPool).keys().toSet(); - const QSet entryKeys = asConst(m_binaryMap).keys().toSet(); + const QSet poolKeys = Tools::asSet(m_binaryPool.keys()); + const QSet entryKeys = Tools::asSet(m_binaryMap.keys()); const QSet unmappedKeys = entryKeys - poolKeys; const QSet unusedKeys = poolKeys - entryKeys; @@ -133,7 +134,7 @@ void KdbxXmlReader::readDatabase(QIODevice* device, Database* db, KeePass2Random qWarning("KdbxXmlReader::readDatabase: found unused key \"%s\"", qPrintable(key)); } - QHash>::const_iterator i; + QMultiHash>::const_iterator i; for (i = m_binaryMap.constBegin(); i != m_binaryMap.constEnd(); ++i) { const QPair& target = i.value(); target.first->attachments()->set(target.second, m_binaryPool[i.key()]); @@ -183,7 +184,7 @@ QString KdbxXmlReader::errorString() const .arg(m_xml.lineNumber()) .arg(m_xml.columnNumber()); } - return QString(); + return {}; } bool KdbxXmlReader::isTrueValue(const QStringRef& value) @@ -463,8 +464,7 @@ bool KdbxXmlReader::parseRoot() Group* rootGroup = parseGroup(); if (rootGroup) { - Group* oldRoot = m_db->rootGroup(); - m_db->setRootGroup(rootGroup); + auto oldRoot = m_db->setRootGroup(rootGroup); delete oldRoot; groupParsedSuccessfully = true; } @@ -815,7 +815,7 @@ Entry* KdbxXmlReader::parseEntry(bool history) } for (const StringPair& ref : asConst(binaryRefs)) { - m_binaryMap.insertMulti(ref.first, qMakePair(entry, ref.second)); + m_binaryMap.insert(ref.first, qMakePair(entry, ref.second)); } return entry; @@ -1117,13 +1117,13 @@ QUuid KdbxXmlReader::readUuid() { QByteArray uuidBin = readBinary(); if (uuidBin.isEmpty()) { - return QUuid(); + return {}; } if (uuidBin.length() != UUID_LENGTH) { if (m_strictMode) { raiseError(tr("Invalid uuid value")); } - return QUuid(); + return {}; } return QUuid::fromRfc4122(uuidBin); } diff --git a/src/format/KdbxXmlReader.h b/src/format/KdbxXmlReader.h index 44978b083..1b6305eea 100644 --- a/src/format/KdbxXmlReader.h +++ b/src/format/KdbxXmlReader.h @@ -22,6 +22,7 @@ #include "core/Metadata.h" #include +#include #include class QIODevice; @@ -109,7 +110,7 @@ protected: QHash m_entries; QHash m_binaryPool; - QHash> m_binaryMap; + QMultiHash> m_binaryMap; QByteArray m_headerHash; bool m_error = false; diff --git a/src/format/KdbxXmlWriter.cpp b/src/format/KdbxXmlWriter.cpp index 35ed5ffdb..142f4b7e3 100644 --- a/src/format/KdbxXmlWriter.cpp +++ b/src/format/KdbxXmlWriter.cpp @@ -19,8 +19,10 @@ #include #include +#include #include "core/Endian.h" +#include "crypto/CryptoHash.h" #include "format/KeePass2RandomStream.h" #include "streams/qtiocompressor.h" @@ -29,6 +31,15 @@ */ KdbxXmlWriter::KdbxXmlWriter(quint32 version) : m_kdbxVersion(version) +{ + Q_ASSERT_X(m_kdbxVersion < KeePass2::FILE_VERSION_4, + "KDBX version", + "KDBX version >= 4 requires explicit binary index map."); +} + +KdbxXmlWriter::KdbxXmlWriter(quint32 version, KdbxXmlWriter::BinaryIdxMap binaryIdxMap) + : m_kdbxVersion(version) + , m_binaryIdxMap(std::move(binaryIdxMap)) { } @@ -46,7 +57,9 @@ void KdbxXmlWriter::writeDatabase(QIODevice* device, m_xml.setAutoFormattingIndent(-1); // 1 tab m_xml.setCodec("UTF-8"); - generateIdMap(); + if (m_kdbxVersion < KeePass2::FILE_VERSION_4) { + fillBinaryIdxMap(); + } m_xml.setDevice(device); m_xml.writeStartDocument("1.0", true); @@ -80,18 +93,42 @@ QString KdbxXmlWriter::errorString() return m_errorStr; } -void KdbxXmlWriter::generateIdMap() +/** + * Generate a map of entry attachments to deduplicated attachment index IDs. + * This is basically duplicated code from Kdbx4Writer.cpp for KDBX 3 compatibility. + * I don't have a good solution for getting rid of this duplication without getting rid of KDBX 3. + */ +void KdbxXmlWriter::fillBinaryIdxMap() { const QList allEntries = m_db->rootGroup()->entriesRecursive(true); - int nextId = 0; + QHash writtenAttachments; + qint64 nextIdx = 0; for (Entry* entry : allEntries) { const QList attachmentKeys = entry->attachments()->keys(); for (const QString& key : attachmentKeys) { QByteArray data = entry->attachments()->value(key); - if (!m_idMap.contains(data)) { - m_idMap.insert(data, nextId++); + CryptoHash hash(CryptoHash::Sha256); +#ifdef WITH_XC_KEESHARE + // Namespace KeeShare attachments so they don't get deduplicated together with attachments + // from other databases. Prevents potential filesize side channels. + auto group = entry->group(); + if (!group && entry->historyOwner()) { + group = entry->historyOwner()->group(); } + if (group && group->isShared()) { + hash.addData(group->uuid().toByteArray()); + } else { + hash.addData(m_db->uuid().toByteArray()); + } +#endif + hash.addData(data); + + const auto hashResult = hash.result(); + if (!writtenAttachments.contains(hashResult)) { + writtenAttachments.insert(hashResult, nextIdx++); + } + m_binaryIdxMap.insert(qMakePair(entry, key), writtenAttachments.value(hashResult)); } } } @@ -181,13 +218,19 @@ void KdbxXmlWriter::writeIcon(const QUuid& uuid, const Metadata::CustomIconData& void KdbxXmlWriter::writeBinaries() { + // Reverse binary index map + QMap binaries; + for (auto i = m_binaryIdxMap.constBegin(); i != m_binaryIdxMap.constEnd(); ++i) { + if (!binaries.contains(i.value())) { + binaries.insert(i.value(), i.key().first->attachments()->value(i.key().second)); + } + } + m_xml.writeStartElement("Binaries"); - QHash::const_iterator i; - for (i = m_idMap.constBegin(); i != m_idMap.constEnd(); ++i) { + for (auto i = binaries.constBegin(); i != binaries.constEnd(); ++i) { m_xml.writeStartElement("Binary"); - - m_xml.writeAttribute("ID", QString::number(i.value())); + m_xml.writeAttribute("ID", QString::number(i.key())); QByteArray data; if (m_db->compressionAlgorithm() == Database::CompressionGZip) { @@ -200,15 +243,15 @@ void KdbxXmlWriter::writeBinaries() compressor.setStreamFormat(QtIOCompressor::GzipFormat); compressor.open(QIODevice::WriteOnly); - qint64 bytesWritten = compressor.write(i.key()); - Q_ASSERT(bytesWritten == i.key().size()); + qint64 bytesWritten = compressor.write(i.value()); + Q_ASSERT(bytesWritten == i.value().size()); Q_UNUSED(bytesWritten); compressor.close(); buffer.seek(0); data = buffer.readAll(); } else { - data = i.key(); + data = i.value(); } if (!data.isEmpty()) { @@ -422,7 +465,7 @@ void KdbxXmlWriter::writeEntry(const Entry* entry) writeString("Key", key); m_xml.writeStartElement("Value"); - m_xml.writeAttribute("Ref", QString::number(m_idMap[entry->attachments()->value(key)])); + m_xml.writeAttribute("Ref", QString::number(m_binaryIdxMap[qMakePair(entry, key)])); m_xml.writeEndElement(); m_xml.writeEndElement(); diff --git a/src/format/KdbxXmlWriter.h b/src/format/KdbxXmlWriter.h index 181e007ba..d36151942 100644 --- a/src/format/KdbxXmlWriter.h +++ b/src/format/KdbxXmlWriter.h @@ -30,7 +30,13 @@ class KeePass2RandomStream; class KdbxXmlWriter { public: + /** + * Map of entry + attachment key to KDBX 4 inner header binary index. + */ + typedef QHash, qint64> BinaryIdxMap; + explicit KdbxXmlWriter(quint32 version); + explicit KdbxXmlWriter(quint32 version, KdbxXmlWriter::BinaryIdxMap binaryIdxMap); void writeDatabase(QIODevice* device, const Database* db, @@ -43,7 +49,7 @@ public: QString errorString(); private: - void generateIdMap(); + void fillBinaryIdxMap(); void writeMetadata(); void writeMemoryProtection(); @@ -85,7 +91,7 @@ private: QPointer m_db; QPointer m_meta; KeePass2RandomStream* m_randomStream = nullptr; - QHash m_idMap; + BinaryIdxMap m_binaryIdxMap; QByteArray m_headerHash; bool m_error = false; diff --git a/src/format/KeePass1Reader.cpp b/src/format/KeePass1Reader.cpp index 0b7f168a4..a7d8038df 100644 --- a/src/format/KeePass1Reader.cpp +++ b/src/format/KeePass1Reader.cpp @@ -18,6 +18,7 @@ #include "KeePass1Reader.h" #include +#include #include #include "core/Endian.h" @@ -275,6 +276,10 @@ KeePass1Reader::readDatabase(const QString& filename, const QString& password, c return {}; } + if (db) { + db->metadata()->setName(QFileInfo(filename).completeBaseName()); + } + return db; } @@ -391,7 +396,7 @@ QByteArray KeePass1Reader::key(const QByteArray& password, const QByteArray& key if (!result) { raiseError(tr("Key transformation failed")); - return QByteArray(); + return {}; } CryptoHash hash(CryptoHash::Sha256); @@ -432,13 +437,13 @@ Group* KeePass1Reader::readGroup(QIODevice* cipherStream) bool reachedEnd = false; do { - quint16 fieldType = Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok); + auto fieldType = Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok); if (!ok) { raiseError(tr("Invalid group field type number")); return nullptr; } - int fieldSize = static_cast(Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok)); + auto fieldSize = static_cast(Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok)); if (!ok) { raiseError(tr("Invalid group field size")); return nullptr; @@ -513,7 +518,7 @@ Group* KeePass1Reader::readGroup(QIODevice* cipherStream) raiseError(tr("Incorrect group icon field size")); return nullptr; } - quint32 iconNumber = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); + auto iconNumber = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); group->setIcon(iconNumber); break; } @@ -564,13 +569,13 @@ Entry* KeePass1Reader::readEntry(QIODevice* cipherStream) bool reachedEnd = false; do { - quint16 fieldType = Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok); + auto fieldType = Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok); if (!ok) { raiseError(tr("Missing entry field type number")); return nullptr; } - int fieldSize = static_cast(Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok)); + auto fieldSize = static_cast(Endian::readSizedInt(cipherStream, KeePass1::BYTEORDER, &ok)); if (!ok) { raiseError(tr("Invalid entry field size")); return nullptr; @@ -598,7 +603,7 @@ Entry* KeePass1Reader::readEntry(QIODevice* cipherStream) raiseError(tr("Invalid entry group id field size")); return nullptr; } - quint32 groupId = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); + auto groupId = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); m_entryGroupIds.insert(entry.data(), groupId); break; } @@ -607,7 +612,7 @@ Entry* KeePass1Reader::readEntry(QIODevice* cipherStream) raiseError(tr("Invalid entry icon field size")); return nullptr; } - quint32 iconNumber = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); + auto iconNumber = Endian::bytesToSizedInt(fieldData, KeePass1::BYTEORDER); entry->setIcon(iconNumber); break; } @@ -806,7 +811,7 @@ bool KeePass1Reader::parseGroupTreeState(const QByteArray& data) } int pos = 0; - quint32 num = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto num = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; if (static_cast(data.size() - 4) != (num * 5)) { @@ -814,7 +819,7 @@ bool KeePass1Reader::parseGroupTreeState(const QByteArray& data) } for (quint32 i = 0; i < num; i++) { - quint32 groupId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto groupId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; bool expanded = data.at(pos); @@ -836,13 +841,13 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data) int pos = 0; - quint32 numIcons = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto numIcons = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; - quint32 numEntries = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto numEntries = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; - quint32 numGroups = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto numGroups = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; QList iconUuids; @@ -851,7 +856,7 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data) if (data.size() < (pos + 4)) { return false; } - quint32 iconSize = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto iconSize = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; if (static_cast(data.size()) < (pos + iconSize)) { @@ -873,7 +878,7 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data) QByteArray entryUuid = data.mid(pos, 16); pos += 16; - quint32 iconId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto iconId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; if (m_entryUuids.contains(entryUuid) && (iconId < static_cast(iconUuids.size()))) { @@ -886,10 +891,10 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data) } for (quint32 i = 0; i < numGroups; i++) { - quint32 groupId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto groupId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; - quint32 iconId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); + auto iconId = Endian::bytesToSizedInt(data.mid(pos, 4), KeePass1::BYTEORDER); pos += 4; if (m_groupIds.contains(groupId) && (iconId < static_cast(iconUuids.size()))) { @@ -927,7 +932,7 @@ QDateTime KeePass1Reader::dateFromPackedStruct(const QByteArray& data) // check for the special "never" datetime if (dateTime == QDateTime(QDate(2999, 12, 28), QTime(23, 59, 59), Qt::UTC)) { - return QDateTime(); + return {}; } else { return dateTime; } @@ -943,13 +948,13 @@ bool KeePass1Reader::isMetaStream(const Entry* entry) QByteArray KeePass1Reader::readKeyfile(QIODevice* device) { if (device->size() == 0) { - return QByteArray(); + return {}; } if (device->size() == 32) { QByteArray data = device->read(32); if (data.size() != 32) { - return QByteArray(); + return {}; } return data; @@ -959,7 +964,7 @@ QByteArray KeePass1Reader::readKeyfile(QIODevice* device) QByteArray data = device->read(64); if (data.size() != 64) { - return QByteArray(); + return {}; } if (Tools::isHex(data)) { @@ -974,7 +979,7 @@ QByteArray KeePass1Reader::readKeyfile(QIODevice* device) do { if (!Tools::readFromDevice(device, buffer)) { - return QByteArray(); + return {}; } cryptoHash.addData(buffer); } while (!buffer.isEmpty()); diff --git a/src/format/KeePass2.cpp b/src/format/KeePass2.cpp index bf991f880..c068384ad 100644 --- a/src/format/KeePass2.cpp +++ b/src/format/KeePass2.cpp @@ -47,16 +47,10 @@ const QString KeePass2::KDFPARAM_ARGON2_VERSION("V"); const QString KeePass2::KDFPARAM_ARGON2_SECRET("K"); const QString KeePass2::KDFPARAM_ARGON2_ASSOCDATA("A"); -const QList> KeePass2::CIPHERS{ - qMakePair(KeePass2::CIPHER_AES256, QObject::tr("AES 256-bit")), - qMakePair(KeePass2::CIPHER_TWOFISH, QObject::tr("Twofish 256-bit")), - qMakePair(KeePass2::CIPHER_CHACHA20, QObject::tr("ChaCha20 256-bit"))}; +const QList KeePass2::CIPHERS{KeePass2::CIPHER_AES256, KeePass2::CIPHER_TWOFISH, KeePass2::CIPHER_CHACHA20}; -const QList> KeePass2::KDFS{ - qMakePair(KeePass2::KDF_ARGON2D, QObject::tr("Argon2d (KDBX 4 – recommended)")), - qMakePair(KeePass2::KDF_ARGON2ID, QObject::tr("Argon2id (KDBX 4)")), - qMakePair(KeePass2::KDF_AES_KDBX4, QObject::tr("AES-KDF (KDBX 4)")), - qMakePair(KeePass2::KDF_AES_KDBX3, QObject::tr("AES-KDF (KDBX 3)"))}; +const QList KeePass2::KDBX4_KDFS{KeePass2::KDF_ARGON2D, KeePass2::KDF_ARGON2ID, KeePass2::KDF_AES_KDBX4}; +const QList KeePass2::KDBX3_KDFS{KeePass2::KDF_AES_KDBX3}; QByteArray KeePass2::hmacKey(const QByteArray& masterSeed, const QByteArray& transformedMasterKey) { @@ -133,3 +127,29 @@ KeePass2::ProtectedStreamAlgo KeePass2::idToProtectedStreamAlgo(quint32 id) return KeePass2::ProtectedStreamAlgo::InvalidProtectedStreamAlgo; } } + +QString KeePass2::cipherToString(QUuid cipherUuid) +{ + if (cipherUuid == KeePass2::CIPHER_AES256) { + return QObject::tr("AES 256-bit"); + } else if (cipherUuid == KeePass2::CIPHER_TWOFISH) { + return QObject::tr("Twofish 256-bit"); + } else if (cipherUuid == KeePass2::CIPHER_CHACHA20) { + return QObject::tr("ChaCha20 256-bit"); + } + return QObject::tr("Invalid Cipher"); +} + +QString KeePass2::kdfToString(QUuid kdfUuid) +{ + if (kdfUuid == KeePass2::KDF_ARGON2D) { + return QObject::tr("Argon2d (KDBX 4 – recommended)"); + } else if (kdfUuid == KeePass2::KDF_ARGON2ID) { + return QObject::tr("Argon2id (KDBX 4)"); + } else if (kdfUuid == KeePass2::KDF_AES_KDBX4) { + return QObject::tr("AES-KDF (KDBX 4)"); + } else if (kdfUuid == KDF_AES_KDBX3) { + return QObject::tr("AES-KDF (KDBX 3)"); + } + return QObject::tr("Invalid KDF"); +} diff --git a/src/format/KeePass2.h b/src/format/KeePass2.h index 5aed903c3..82b6e1674 100644 --- a/src/format/KeePass2.h +++ b/src/format/KeePass2.h @@ -26,7 +26,6 @@ class Kdf; namespace KeePass2 { - constexpr quint32 SIGNATURE_1 = 0x9AA2D903; constexpr quint32 SIGNATURE_2 = 0xB54BFB67; @@ -67,8 +66,9 @@ namespace KeePass2 extern const QString KDFPARAM_ARGON2_SECRET; extern const QString KDFPARAM_ARGON2_ASSOCDATA; - extern const QList> CIPHERS; - extern const QList> KDFS; + extern const QList CIPHERS; + extern const QList KDBX4_KDFS; + extern const QList KDBX3_KDFS; enum class HeaderFieldID { @@ -130,7 +130,8 @@ namespace KeePass2 QVariantMap kdfToParameters(const QSharedPointer& kdf); QSharedPointer uuidToKdf(const QUuid& uuid); ProtectedStreamAlgo idToProtectedStreamAlgo(quint32 id); - + QString cipherToString(QUuid cipherUuid); + QString kdfToString(QUuid kdfUuid); } // namespace KeePass2 #endif // KEEPASSX_KEEPASS2_H diff --git a/src/format/KeePass2RandomStream.cpp b/src/format/KeePass2RandomStream.cpp index 509e32513..da6df20ad 100644 --- a/src/format/KeePass2RandomStream.cpp +++ b/src/format/KeePass2RandomStream.cpp @@ -50,7 +50,7 @@ QByteArray KeePass2RandomStream::randomBytes(int size, bool* ok) if (m_buffer.size() == m_offset) { if (!loadBlock()) { *ok = false; - return QByteArray(); + return {}; } } @@ -71,7 +71,7 @@ QByteArray KeePass2RandomStream::process(const QByteArray& data, bool* ok) QByteArray randomData = randomBytes(data.size(), &randomBytesOk); if (!randomBytesOk) { *ok = false; - return QByteArray(); + return {}; } QByteArray result; diff --git a/src/format/KeePass2Writer.cpp b/src/format/KeePass2Writer.cpp index 4cf0d4ad6..76e8cacc3 100644 --- a/src/format/KeePass2Writer.cpp +++ b/src/format/KeePass2Writer.cpp @@ -184,7 +184,7 @@ void KeePass2Writer::raiseError(const QString& errorMessage) */ QSharedPointer KeePass2Writer::writer() const { - return QSharedPointer(); + return {}; } /** diff --git a/src/format/OPUXReader.cpp b/src/format/OPUXReader.cpp new file mode 100644 index 000000000..e1a0579cf --- /dev/null +++ b/src/format/OPUXReader.cpp @@ -0,0 +1,297 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "OPUXReader.h" + +#include "core/Database.h" +#include "core/Entry.h" +#include "core/Group.h" +#include "core/Metadata.h" +#include "core/Totp.h" + +#include +#include +#include +#include +#include +#include + +#include + +namespace +{ + QByteArray extractFile(unzFile uf, QString filename) + { + if (unzLocateFile(uf, filename.toLatin1(), 2) != UNZ_OK) { + qWarning("Failed to extract 1PUX document: %s", qPrintable(filename)); + return {}; + } + + // Read export.data into memory + int bytes, bytesRead = 0; + QByteArray data; + unzOpenCurrentFile(uf); + do { + data.resize(data.size() + 8192); + bytes = unzReadCurrentFile(uf, data.data() + bytesRead, 8192); + if (bytes > 0) { + bytesRead += bytes; + } + } while (bytes > 0); + unzCloseCurrentFile(uf); + data.truncate(bytesRead); + + return data; + } + + Entry* readItem(const QJsonObject& item, unzFile uf = nullptr) + { + const auto itemMap = item.toVariantMap(); + const auto overviewMap = itemMap.value("overview").toMap(); + const auto detailsMap = itemMap.value("details").toMap(); + + // Create entry and assign basic values + QScopedPointer entry(new Entry()); + entry->setUuid(QUuid::createUuid()); + entry->setTitle(overviewMap.value("title").toString()); + entry->setUrl(overviewMap.value("url").toString()); + if (overviewMap.contains("urls")) { + int i = 1; + for (const auto& urlRaw : overviewMap.value("urls").toList()) { + const auto urlMap = urlRaw.toMap(); + const auto url = urlMap.value("url").toString(); + if (entry->url() != url) { + entry->attributes()->set( + QString("%1_%2").arg(EntryAttributes::AdditionalUrlAttribute, QString::number(i)), url); + ++i; + } + } + } + if (overviewMap.contains("tags")) { + entry->setTags(overviewMap.value("tags").toStringList().join(",")); + } + if (itemMap.value("favIndex").toString() == "1") { + entry->addTag(QObject::tr("Favorite", "Tag for favorite entries")); + } + if (itemMap.value("state").toString() == "archived") { + entry->addTag(QObject::tr("Archived", "Tag for archived entries")); + } + + // Parse the details map by setting the username, password, and notes first + const auto loginFields = detailsMap.value("loginFields").toList(); + for (const auto& field : loginFields) { + const auto fieldMap = field.toMap(); + const auto designation = fieldMap.value("designation").toString(); + if (designation.compare("username", Qt::CaseInsensitive) == 0) { + entry->setUsername(fieldMap.value("value").toString()); + } else if (designation.compare("password", Qt::CaseInsensitive) == 0) { + entry->setPassword(fieldMap.value("value").toString()); + } + } + if (entry->password().isEmpty() && detailsMap.contains("password")) { + entry->setPassword(detailsMap.value("password").toString()); + } + entry->setNotes(detailsMap.value("notesPlain").toString()); + + // Dive into the item sections to pull out advanced attributes + const auto sections = detailsMap.value("sections").toList(); + for (const auto& section : sections) { + // Derive a prefix for attribute names using the title or uuid if missing + const auto sectionMap = section.toMap(); + auto prefix = sectionMap.value("title").toString(); + if (prefix.isEmpty()) { + prefix = QUuid::createUuid().toString().mid(1, 5); + } + + for (const auto& field : sectionMap.value("fields").toList()) { + // Form the name of the attribute using the prefix and title or id + const auto fieldMap = field.toMap(); + auto name = fieldMap.value("title").toString(); + if (name.isEmpty()) { + name = fieldMap.value("id").toString(); + } + name = QString("%1_%2").arg(prefix, name); + + const auto valueMap = fieldMap.value("value").toMap(); + const auto key = valueMap.firstKey(); + if (key == "totp") { + auto totp = valueMap.value(key).toString(); + if (!totp.startsWith("otpauth://")) { + // Build otpauth url + QUrl url(QString("otpauth://totp/%1:%2?secret=%3") + .arg(QString(QUrl::toPercentEncoding(entry->title())), + QString(QUrl::toPercentEncoding(entry->username())), + QString(QUrl::toPercentEncoding(totp)))); + totp = url.toString(QUrl::FullyEncoded); + } + + if (entry->hasTotp()) { + // Store multiple TOTP definitions as additional otp attributes + int i = 0; + name = "otp"; + const auto attributes = entry->attributes()->keys(); + while (attributes.contains(name)) { + name = QString("otp_%1").arg(++i); + } + entry->attributes()->set(name, totp, true); + } else { + // First otp value encountered gets formal storage + entry->setTotp(Totp::parseSettings(totp)); + } + } else if (key == "file") { + // Add a file to the entry attachments + const auto fileMap = valueMap.value(key).toMap(); + const auto fileName = fileMap.value("fileName").toString(); + const auto docId = fileMap.value("documentId").toString(); + const auto data = extractFile(uf, QString("files/%1__%2").arg(docId, fileName)); + if (!data.isNull()) { + entry->attachments()->set(fileName, data); + } + } else { + auto value = valueMap.value(key).toString(); + if (key == "date") { + // Convert date fields from Unix time + value = QDateTime::fromSecsSinceEpoch(valueMap.value(key).toULongLong(), Qt::UTC).toString(); + } else if (key == "email") { + // Email address is buried in a sub-value + value = valueMap.value(key).toMap().value("email_address").toString(); + } else if (key == "address") { + // Combine all the address attributes into a fully formed structure + const auto address = valueMap.value(key).toMap(); + value = address.value("street").toString() + "\n" + address.value("city").toString() + ", " + + address.value("state").toString() + " " + address.value("zip").toString() + "\n" + + address.value("country").toString(); + } + + if (!value.isEmpty()) { + entry->attributes()->set(name, value, key == "concealed"); + } + } + } + } + + // Add a document attachment if defined + if (detailsMap.contains("documentAttributes")) { + const auto document = detailsMap.value("documentAttributes").toMap(); + const auto fileName = document.value("fileName").toString(); + const auto docId = document.value("documentId").toString(); + const auto data = extractFile(uf, QString("files/%1__%2").arg(docId, fileName)); + if (!data.isNull()) { + entry->attachments()->set(fileName, data); + } + } + + // Collapse any accumulated history + entry->removeHistoryItems(entry->historyItems()); + + // Adjust the created and modified times + auto timeInfo = entry->timeInfo(); + const auto createdTime = QDateTime::fromSecsSinceEpoch(itemMap.value("createdAt").toULongLong(), Qt::UTC); + const auto modifiedTime = QDateTime::fromSecsSinceEpoch(itemMap.value("updatedAt").toULongLong(), Qt::UTC); + timeInfo.setCreationTime(createdTime); + timeInfo.setLastModificationTime(modifiedTime); + timeInfo.setLastAccessTime(modifiedTime); + entry->setTimeInfo(timeInfo); + + return entry.take(); + } + + void writeVaultToDatabase(const QJsonObject& vault, QSharedPointer db, unzFile uf = nullptr) + { + if (!vault.contains("attrs") || !vault.contains("items")) { + // Early out if the vault is missing critical items + return; + } + + const auto attr = vault.value("attrs").toObject().toVariantMap(); + + // Create group and assign basic values + auto group = new Group(); + group->setUuid(QUuid::createUuid()); + group->setName(attr.value("name").toString()); + group->setParent(db->rootGroup()); + + const auto items = vault.value("items").toArray(); + for (const auto& item : items) { + auto entry = readItem(item.toObject(), uf); + if (entry) { + entry->setGroup(group, false); + } + } + + // Add the group icon if present + const auto icon = attr.value("avatar").toString(); + if (!icon.isEmpty()) { + auto data = extractFile(uf, QString("files/%1").arg(icon)); + if (!data.isNull()) { + const auto uuid = QUuid::createUuid(); + db->metadata()->addCustomIcon(uuid, data); + group->setIcon(uuid); + } + } + } +} // namespace + +bool OPUXReader::hasError() +{ + return !m_error.isEmpty(); +} + +QString OPUXReader::errorString() +{ + return m_error; +} + +QSharedPointer OPUXReader::convert(const QString& path) +{ + m_error.clear(); + + QFileInfo fileinfo(path); + if (!fileinfo.exists()) { + m_error = QObject::tr("File does not exist.").arg(path); + return {}; + } + + // 1PUX is a zip file format, open it and process the contents in memory + auto uf = unzOpen64(fileinfo.absoluteFilePath().toLatin1().constData()); + if (!uf) { + m_error = QObject::tr("Invalid 1PUX file format: Not a valid ZIP file."); + return {}; + } + + // Find the export.data file, if not found this isn't a 1PUX file + auto data = extractFile(uf, "export.data"); + if (data.isNull()) { + m_error = QObject::tr("Invalid 1PUX file format: Missing export.data"); + unzClose(uf); + return {}; + } + + auto db = QSharedPointer::create(); + db->rootGroup()->setName(QObject::tr("1Password Import")); + const auto json = QJsonDocument::fromJson(data); + + const auto account = json.object().value("accounts").toArray().first().toObject(); + const auto vaults = account.value("vaults").toArray(); + + for (const auto& vault : vaults) { + writeVaultToDatabase(vault.toObject(), db, uf); + } + + unzClose(uf); + return db; +} diff --git a/src/format/OPUXReader.h b/src/format/OPUXReader.h new file mode 100644 index 000000000..e2779c814 --- /dev/null +++ b/src/format/OPUXReader.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef OPUX_READER_H +#define OPUX_READER_H + +#include + +class Database; + +/*! + * Imports a 1Password vault in 1PUX format: https://support.1password.com/1pux-format/ + */ +class OPUXReader +{ +public: + explicit OPUXReader() = default; + ~OPUXReader() = default; + + QSharedPointer convert(const QString& path); + + bool hasError(); + QString errorString(); + +private: + QString m_error; +}; + +#endif // OPUX_READER_H diff --git a/src/format/OpData01.cpp b/src/format/OpData01.cpp index 3ded0288c..a51ff8fdb 100644 --- a/src/format/OpData01.cpp +++ b/src/format/OpData01.cpp @@ -27,9 +27,7 @@ OpData01::OpData01(QObject* parent) { } -OpData01::~OpData01() -{ -} +OpData01::~OpData01() = default; bool OpData01::decodeBase64(QString const& b64String, const QByteArray& key, const QByteArray& hmacKey) { diff --git a/src/format/OpData01.h b/src/format/OpData01.h index df6a0b442..960c67b1f 100644 --- a/src/format/OpData01.h +++ b/src/format/OpData01.h @@ -22,7 +22,7 @@ /*! * Packages and transports the AgileBits data structure called \c OpData01 - * used to encypt and provide HMAC for encrypted data. + * used to encrypt and provide HMAC for encrypted data. * \sa https://support.1password.com/opvault-design/#opdata01 */ class OpData01 : public QObject diff --git a/src/format/OpVaultReader.cpp b/src/format/OpVaultReader.cpp index 201354bce..779e25fda 100644 --- a/src/format/OpVaultReader.cpp +++ b/src/format/OpVaultReader.cpp @@ -31,70 +31,49 @@ OpVaultReader::OpVaultReader(QObject* parent) : QObject(parent) - , m_error(false) { } -OpVaultReader::~OpVaultReader() -{ -} +OpVaultReader::~OpVaultReader() = default; -Database* OpVaultReader::readDatabase(QDir& opdataDir, const QString& password) +QSharedPointer OpVaultReader::convert(QDir& opdataDir, const QString& password) { if (!opdataDir.exists()) { - m_error = true; - m_errorStr = tr("Directory .opvault must exist"); - return nullptr; + m_error = tr("Directory .opvault must exist"); + return {}; } if (!opdataDir.isReadable()) { - m_error = true; - m_errorStr = tr("Directory .opvault must be readable"); - return nullptr; + m_error = tr("Directory .opvault must be readable"); + return {}; } // https://support.1password.com/opvault-design/#directory-layout QDir defaultDir = QDir(opdataDir); if (!defaultDir.cd("default")) { - m_error = true; - m_errorStr = tr("Directory .opvault/default must exist"); - return nullptr; + m_error = tr("Directory .opvault/default must exist"); + return {}; } if (!defaultDir.isReadable()) { - m_error = true; - m_errorStr = tr("Directory .opvault/default must be readable"); - return nullptr; + m_error = tr("Directory .opvault/default must be readable"); + return {}; } auto vaultName = opdataDir.dirName(); - auto key = QSharedPointer::create(); - key->addKey(QSharedPointer::create(password)); - - QScopedPointer db(new Database()); - db->setKdf(KeePass2::uuidToKdf(KeePass2::KDF_ARGON2D)); - db->setCipher(KeePass2::CIPHER_AES256); - db->setKey(key, true, false); - db->metadata()->setName(vaultName); - + auto db = QSharedPointer::create(); auto rootGroup = db->rootGroup(); - rootGroup->setTimeInfo({}); - rootGroup->setUpdateTimeinfo(false); rootGroup->setName(vaultName.remove(".opvault")); - rootGroup->setUuid(QUuid::createUuid()); populateCategoryGroups(rootGroup); QFile profileJsFile(defaultDir.absoluteFilePath("profile.js")); QJsonObject profileJson = readAndAssertJsonFile(profileJsFile, "var profile=", ";"); if (profileJson.isEmpty()) { - return nullptr; + return {}; } if (!processProfileJson(profileJson, password, rootGroup)) { zeroKeys(); - return nullptr; - } - if (profileJson.contains("uuid") and profileJson["uuid"].isString()) { - rootGroup->setUuid(Tools::hexToUuid(profileJson["uuid"].toString())); + return {}; } QFile foldersJsFile(defaultDir.filePath("folders.js")); @@ -102,7 +81,7 @@ Database* OpVaultReader::readDatabase(QDir& opdataDir, const QString& password) QJsonObject foldersJs = readAndAssertJsonFile(foldersJsFile, "loadFolders(", ");"); if (!processFolderJson(foldersJs, rootGroup)) { zeroKeys(); - return nullptr; + return {}; } } @@ -152,17 +131,17 @@ Database* OpVaultReader::readDatabase(QDir& opdataDir, const QString& password) } zeroKeys(); - return db.take(); + return db; } bool OpVaultReader::hasError() { - return m_error; + return !m_error.isEmpty(); } QString OpVaultReader::errorString() { - return m_errorStr; + return m_error; } bool OpVaultReader::processProfileJson(QJsonObject& profileJson, const QString& password, Group* rootGroup) @@ -184,38 +163,29 @@ bool OpVaultReader::processProfileJson(QJsonObject& profileJson, const QString& rootGroupTime.setLastModificationTime(QDateTime::fromTime_t(updatedAt, Qt::UTC)); rootGroup->setUuid(Tools::hexToUuid(profileJson["uuid"].toString())); - const auto derivedKeys = deriveKeysFromPassPhrase(salt, password, iterations); - if (derivedKeys->error) { - m_error = true; - m_errorStr = derivedKeys->errorStr; - delete derivedKeys; + QScopedPointer derivedKeys(deriveKeysFromPassPhrase(salt, password, iterations)); + if (!derivedKeys->error.isEmpty()) { + m_error = derivedKeys->error; return false; } QByteArray encKey = derivedKeys->encrypt; QByteArray hmacKey = derivedKeys->hmac; - delete derivedKeys; - auto masterKeys = decodeB64CompositeKeys(masterKeyB64, encKey, hmacKey); - if (masterKeys->error) { - m_error = true; - m_errorStr = masterKeys->errorStr; - delete masterKeys; + QScopedPointer masterKeys(decodeB64CompositeKeys(masterKeyB64, encKey, hmacKey)); + if (!masterKeys->error.isEmpty()) { + m_error = masterKeys->error; return false; } m_masterKey = masterKeys->encrypt; m_masterHmacKey = masterKeys->hmac; - delete masterKeys; - auto overviewKeys = decodeB64CompositeKeys(overviewKeyB64, encKey, hmacKey); - if (overviewKeys->error) { - m_error = true; - m_errorStr = overviewKeys->errorStr; - delete overviewKeys; + QScopedPointer overviewKeys(decodeB64CompositeKeys(overviewKeyB64, encKey, hmacKey)); + if (!overviewKeys->error.isEmpty()) { + m_error = overviewKeys->error; return false; } m_overviewKey = overviewKeys->encrypt; m_overviewHmacKey = overviewKeys->hmac; - delete overviewKeys; return true; } @@ -301,11 +271,11 @@ QJsonObject OpVaultReader::readAndAssertJsonFile(QFile& file, const QString& str auto absFilePath = fileInfo.absoluteFilePath(); if (!fileInfo.exists()) { qCritical() << QString("File \"%1\" must exist").arg(absFilePath); - return QJsonObject(); + return {}; } if (!fileInfo.isReadable()) { qCritical() << QString("File \"%1\" must be readable").arg(absFilePath); - return QJsonObject(); + return {}; } if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { @@ -331,7 +301,7 @@ QJsonObject OpVaultReader::readAndAssertJsonFile(QFile& file, const QString& str QJsonDocument jDoc = QJsonDocument::fromJson(filePayload, error); if (!jDoc.isObject()) { qCritical() << "Expected " << filePayload << "to be a JSON Object"; - return QJsonObject(); + return {}; } return jDoc.object(); } @@ -340,15 +310,13 @@ QJsonObject OpVaultReader::readAndAssertJsonFile(QFile& file, const QString& str OpVaultReader::DerivedKeyHMAC* OpVaultReader::decodeB64CompositeKeys(const QString& b64, const QByteArray& encKey, const QByteArray& hmacKey) { - auto result = new DerivedKeyHMAC(); OpData01 keyKey01; if (!keyKey01.decodeBase64(b64, encKey, hmacKey)) { - result->error = true; - result->errorStr = tr("Unable to decode masterKey: %1").arg(keyKey01.errorString()); + auto result = new DerivedKeyHMAC(); + result->error = tr("Unable to decode masterKey: %1").arg(keyKey01.errorString()); return result; } - delete result; const QByteArray keyKey = keyKey01.getClearText(); @@ -366,7 +334,6 @@ OpVaultReader::decodeB64CompositeKeys(const QString& b64, const QByteArray& encK OpVaultReader::DerivedKeyHMAC* OpVaultReader::decodeCompositeKeys(const QByteArray& keyKey) { auto result = new DerivedKeyHMAC; - result->error = false; auto digest = CryptoHash::hash(keyKey, CryptoHash::Sha512); result->encrypt = digest.left(32); @@ -385,7 +352,6 @@ OpVaultReader::DerivedKeyHMAC* OpVaultReader::deriveKeysFromPassPhrase(QByteArray& salt, const QString& password, unsigned long iterations) { auto result = new DerivedKeyHMAC; - result->error = false; QByteArray out(64, '\0'); try { @@ -397,8 +363,7 @@ OpVaultReader::deriveKeysFromPassPhrase(QByteArray& salt, const QString& passwor reinterpret_cast(salt.constData()), salt.size()); } catch (std::exception& e) { - result->error = true; - result->errorStr = tr("Unable to derive master key: %1").arg(e.what()); + result->error = tr("Unable to derive master key: %1").arg(e.what()); return result; } diff --git a/src/format/OpVaultReader.h b/src/format/OpVaultReader.h index 0dff45c2d..50ccf0b96 100644 --- a/src/format/OpVaultReader.h +++ b/src/format/OpVaultReader.h @@ -39,7 +39,7 @@ public: explicit OpVaultReader(QObject* parent = nullptr); ~OpVaultReader() override; - Database* readDatabase(QDir& opdataDir, const QString& password); + QSharedPointer convert(QDir& opdataDir, const QString& password); bool hasError(); QString errorString(); @@ -49,8 +49,7 @@ private: { QByteArray encrypt; QByteArray hmac; - bool error; - QString errorStr; + QString error; }; QJsonObject readAndAssertJsonFile(QFile& file, const QString& stripLeading, const QString& stripTrailing); @@ -106,15 +105,14 @@ private: /*! Used to blank the memory after the keys have been used. */ void zeroKeys(); - bool m_error; - QString m_errorStr; + QString m_error; QByteArray m_masterKey; QByteArray m_masterHmacKey; /*! Used to decrypt overview text, such as folder names. */ QByteArray m_overviewKey; QByteArray m_overviewHmacKey; - friend class TestOpVaultReader; + friend class TestImports; }; #endif /* OPVAULT_READER_H_ */ diff --git a/src/format/OpVaultReaderAttachments.cpp b/src/format/OpVaultReaderAttachments.cpp index 7c65b7f5a..c9dc6c76e 100644 --- a/src/format/OpVaultReaderAttachments.cpp +++ b/src/format/OpVaultReaderAttachments.cpp @@ -229,6 +229,10 @@ void OpVaultReader::fillAttachment(Entry* entry, qWarning() << QString("Unexpected type of attachment \"filename\": %1").arg(attFilename.type()); } } + if (entry->attachments()->hasKey(attachKey)) { + // Prepend a random string to the attachment name to avoid collisions + attachKey.prepend(QString("%1_").arg(QUuid::createUuid().toString().mid(1, 5))); + } entry->attachments()->set(attachKey, attachPayload); } diff --git a/src/format/OpVaultReaderBandEntry.cpp b/src/format/OpVaultReaderBandEntry.cpp index 6f79dd637..3a9774b68 100644 --- a/src/format/OpVaultReaderBandEntry.cpp +++ b/src/format/OpVaultReaderBandEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019 KeePassXC Team + * Copyright (C) 2023 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 @@ -243,7 +243,8 @@ bool OpVaultReader::fillAttributes(Entry* entry, const QJsonObject& bandEntry) auto newUrl = urlObj["u"].toString(); if (newUrl != url) { // Add this url if it isn't the base one - entry->attributes()->set(QString("KP2A_URL_%1").arg(i), newUrl); + entry->attributes()->set( + QString("%1_%2").arg(EntryAttributes::AdditionalUrlAttribute, QString::number(i)), newUrl); ++i; } } diff --git a/src/format/OpVaultReaderSections.cpp b/src/format/OpVaultReaderSections.cpp index 610f997ec..02566a542 100644 --- a/src/format/OpVaultReaderSections.cpp +++ b/src/format/OpVaultReaderSections.cpp @@ -18,11 +18,12 @@ #include "OpVaultReader.h" #include "core/Entry.h" -#include "totp/totp.h" +#include "core/Totp.h" #include #include #include +#include #include namespace @@ -84,7 +85,16 @@ void OpVaultReader::fillFromSectionField(Entry* entry, const QString& sectionNam auto kind = field["k"].toString(); if (attrName.startsWith("TOTP_")) { - if (attrValue.startsWith("otpauth://")) { + if (entry->hasTotp()) { + // Store multiple TOTP definitions as additional otp attributes + int i = 0; + QString name("otp"); + auto attributes = entry->attributes()->keys(); + while (attributes.contains(name)) { + name = QString("otp_%1").arg(++i); + } + entry->attributes()->set(name, attrValue, true); + } else if (attrValue.startsWith("otpauth://")) { QUrlQuery query(attrValue); // at least as of 1Password 7, they don't append the digits= and period= which totp.cpp requires if (!query.hasQueryItem("digits")) { @@ -111,7 +121,7 @@ void OpVaultReader::fillFromSectionField(Entry* entry, const QString& sectionNam if (kind == "date" || kind == "monthYear") { QDateTime date = resolveDate(kind, field.value("v")); if (date.isValid()) { - entry->attributes()->set(attrName, date.toString(Qt::SystemLocaleShortDate)); + entry->attributes()->set(attrName, QLocale::system().toString(date, QLocale::ShortFormat)); } else { qWarning() << QString("[%1] Invalid date attribute found: %2 = %3").arg(entry->title(), attrName, attrValue); @@ -119,10 +129,14 @@ void OpVaultReader::fillFromSectionField(Entry* entry, const QString& sectionNam } else if (kind == "address") { // Expand address into multiple attributes auto addrFields = field.value("v").toObject().toVariantMap(); - for (auto part : addrFields.keys()) { + for (auto& part : addrFields.keys()) { entry->attributes()->set(attrName + QString("_%1").arg(part), addrFields.value(part).toString()); } } else { + if (entry->attributes()->hasKey(attrName)) { + // Append a random string to the attribute name to avoid collisions + attrName += QString("_%1").arg(QUuid::createUuid().toString().mid(1, 5)); + } entry->attributes()->set(attrName, attrValue, (kind == "password" || kind == "concealed")); } } diff --git a/src/format/ProtonPassReader.cpp b/src/format/ProtonPassReader.cpp new file mode 100644 index 000000000..105adde79 --- /dev/null +++ b/src/format/ProtonPassReader.cpp @@ -0,0 +1,221 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "ProtonPassReader.h" + +#include "core/Database.h" +#include "core/Entry.h" +#include "core/Group.h" +#include "core/Metadata.h" +#include "core/Tools.h" +#include "core/Totp.h" +#include "crypto/CryptoHash.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace +{ + Entry* readItem(const QJsonObject& item) + { + const auto itemMap = item.toVariantMap(); + const auto dataMap = itemMap.value("data").toMap(); + const auto metadataMap = dataMap.value("metadata").toMap(); + + // Create entry and assign basic values + QScopedPointer entry(new Entry()); + entry->setUuid(QUuid::createUuid()); + entry->setTitle(metadataMap.value("name").toString()); + entry->setNotes(metadataMap.value("note").toString()); + + if (itemMap.value("pinned").toBool()) { + entry->addTag(QObject::tr("Favorite", "Tag for favorite entries")); + } + + // Handle specific item types + auto type = dataMap.value("type").toString(); + + // Login + if (type.compare("login", Qt::CaseInsensitive) == 0) { + const auto loginMap = dataMap.value("content").toMap(); + entry->setUsername(loginMap.value("itemUsername").toString()); + entry->setPassword(loginMap.value("password").toString()); + if (loginMap.contains("totpUri")) { + auto totp = loginMap.value("totpUri").toString(); + if (!totp.startsWith("otpauth://")) { + QUrl url(QString("otpauth://totp/%1:%2?secret=%3") + .arg(QString(QUrl::toPercentEncoding(entry->title())), + QString(QUrl::toPercentEncoding(entry->username())), + QString(QUrl::toPercentEncoding(totp)))); + totp = url.toString(QUrl::FullyEncoded); + } + entry->setTotp(Totp::parseSettings(totp)); + } + + if (loginMap.contains("itemEmail")) { + entry->attributes()->set("login_email", loginMap.value("itemEmail").toString()); + } + + // Set the entry url(s) + int i = 1; + for (const auto& urlObj : loginMap.value("urls").toList()) { + const auto url = urlObj.toString(); + if (entry->url().isEmpty()) { + // First url encountered is set as the primary url + entry->setUrl(url); + } else { + // Subsequent urls + entry->attributes()->set( + QString("%1_%2").arg(EntryAttributes::AdditionalUrlAttribute, QString::number(i)), url); + ++i; + } + } + } + // Credit Card + else if (type.compare("creditCard", Qt::CaseInsensitive) == 0) { + const auto cardMap = dataMap.value("content").toMap(); + entry->setUsername(cardMap.value("number").toString()); + entry->setPassword(cardMap.value("verificationNumber").toString()); + const QStringList attrs({"cardholderName", "pin", "expirationDate"}); + const QStringList sensitive({"pin"}); + for (const auto& attr : attrs) { + auto value = cardMap.value(attr).toString(); + if (!value.isEmpty()) { + entry->attributes()->set("card_" + attr, value, sensitive.contains(attr)); + } + } + } + + // Parse extra fields + for (const auto& field : dataMap.value("extraFields").toList()) { + // Derive a prefix for attribute names using the title or uuid if missing + const auto fieldMap = field.toMap(); + auto name = fieldMap.value("fieldName").toString(); + if (entry->attributes()->hasKey(name)) { + name = QString("%1_%2").arg(name, QUuid::createUuid().toString().mid(1, 5)); + } + + QString value; + const auto fieldType = fieldMap.value("type").toString(); + if (fieldType.compare("totp", Qt::CaseInsensitive) == 0) { + value = fieldMap.value("data").toJsonObject().value("totpUri").toString(); + } else { + value = fieldMap.value("data").toJsonObject().value("content").toString(); + } + + entry->attributes()->set(name, value, fieldType.compare("hidden", Qt::CaseInsensitive) == 0); + } + + // Checked expired/deleted state + if (itemMap.value("state").toInt() == 2) { + entry->setExpires(true); + entry->setExpiryTime(QDateTime::currentDateTimeUtc()); + } + + // Collapse any accumulated history + entry->removeHistoryItems(entry->historyItems()); + + // Adjust the created and modified times + auto timeInfo = entry->timeInfo(); + const auto createdTime = QDateTime::fromSecsSinceEpoch(itemMap.value("createTime").toULongLong(), Qt::UTC); + const auto modifiedTime = QDateTime::fromSecsSinceEpoch(itemMap.value("modifyTime").toULongLong(), Qt::UTC); + timeInfo.setCreationTime(createdTime); + timeInfo.setLastModificationTime(modifiedTime); + timeInfo.setLastAccessTime(modifiedTime); + entry->setTimeInfo(timeInfo); + + return entry.take(); + } + + void writeVaultToDatabase(const QJsonObject& vault, QSharedPointer db) + { + // Create groups from vaults and store a temporary map of id -> uuid + const auto vaults = vault.value("vaults").toObject().toVariantMap(); + for (const auto& vaultId : vaults.keys()) { + auto vaultObj = vaults.value(vaultId).toJsonObject(); + auto group = new Group(); + group->setUuid(QUuid::createUuid()); + group->setName(vaultObj.value("name").toString()); + group->setNotes(vaultObj.value("description").toString()); + group->setParent(db->rootGroup()); + + const auto items = vaultObj.value("items").toArray(); + for (const auto& item : items) { + auto entry = readItem(item.toObject()); + if (entry) { + entry->setGroup(group, false); + } + } + } + } +} // namespace + +bool ProtonPassReader::hasError() +{ + return !m_error.isEmpty(); +} + +QString ProtonPassReader::errorString() +{ + return m_error; +} + +QSharedPointer ProtonPassReader::convert(const QString& path) +{ + m_error.clear(); + + QFileInfo fileinfo(path); + if (!fileinfo.exists()) { + m_error = QObject::tr("File does not exist.").arg(path); + return {}; + } + + // Bitwarden uses a json file format + QFile file(fileinfo.absoluteFilePath()); + if (!file.open(QFile::ReadOnly)) { + m_error = QObject::tr("Cannot open file: %1").arg(file.errorString()); + return {}; + } + + QJsonParseError error; + auto json = QJsonDocument::fromJson(file.readAll(), &error).object(); + if (error.error != QJsonParseError::NoError) { + m_error = + QObject::tr("Cannot parse file: %1 at position %2").arg(error.errorString(), QString::number(error.offset)); + return {}; + } + + file.close(); + + if (json.value("encrypted").toBool()) { + m_error = QObject::tr("Encrypted files are not supported."); + return {}; + } + + auto db = QSharedPointer::create(); + db->rootGroup()->setName(QObject::tr("Proton Pass Import")); + + writeVaultToDatabase(json, db); + + return db; +} diff --git a/src/format/ProtonPassReader.h b/src/format/ProtonPassReader.h new file mode 100644 index 000000000..74764b890 --- /dev/null +++ b/src/format/ProtonPassReader.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2024 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 . + */ + +#ifndef PROTONPASS_READER_H +#define PROTONPASS_READER_H + +#include + +class Database; + +/*! + * Imports a Proton Pass vault in JSON format: https://proton.me/support/pass-export + */ +class ProtonPassReader +{ +public: + explicit ProtonPassReader() = default; + ~ProtonPassReader() = default; + + QSharedPointer convert(const QString& path); + + bool hasError(); + QString errorString(); + +private: + QString m_error; +}; + +#endif // PROTONPASS_READER_H diff --git a/src/gui/AboutDialog.cpp b/src/gui/AboutDialog.cpp index 00d12c65e..bc3960d11 100644 --- a/src/gui/AboutDialog.cpp +++ b/src/gui/AboutDialog.cpp @@ -250,7 +250,7 @@ static const QString aboutContributors = R"(
  • עברית (Hebrew): avimar, ronyala, shemeshg, shmag18, ThunderB0lt, tryandtry, ztwersky
  • magyar (Hungarian): andras_tim, bubu, entaevau, kempelen, meskobalazs, spammy, typingseashell, urbalazs
  • Íslenska (Icelandic): MannVera
  • -
  • Bahasa (Indonesian): achmad, algustionesa, bora_ach, racrbmr, zk
  • +
  • Bahasa Indonesia (Indonesian): achmad, algustionesa, bora_ach, racrbmr, zk
  • Italiano (Italian): aleb2000, amaxis, bovirus, duncanmid, FranzMari, Gringoarg, idetao, lucaim, NITAL, Peo, Pietrog, salvatorecordiano, seatedscribe, Stemby, the.sailor, tosky, VosaxAlo
  • 日本語 (Japanese): AlCooo, gojpdchx, helloguys, masoo, p2635, Shinichirou_Yamada, shortarrow, ssuhung, tadasu, @@ -327,9 +327,7 @@ AboutDialog::AboutDialog(QWidget* parent) m_ui->buttonBox->button(QDialogButtonBox::Close)->setDefault(true); } -AboutDialog::~AboutDialog() -{ -} +AboutDialog::~AboutDialog() = default; void AboutDialog::copyToClipboard() { diff --git a/src/gui/AboutDialog.h b/src/gui/AboutDialog.h index 9ea0dc802..645fcef92 100644 --- a/src/gui/AboutDialog.h +++ b/src/gui/AboutDialog.h @@ -32,7 +32,7 @@ class AboutDialog : public QDialog public: explicit AboutDialog(QWidget* parent = nullptr); - ~AboutDialog(); + ~AboutDialog() override; protected slots: void copyToClipboard(); diff --git a/src/gui/ActionCollection.cpp b/src/gui/ActionCollection.cpp new file mode 100644 index 000000000..3db86a899 --- /dev/null +++ b/src/gui/ActionCollection.cpp @@ -0,0 +1,119 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "ActionCollection.h" +#include "core/Config.h" + +#include + +ActionCollection* ActionCollection::instance() +{ + static ActionCollection ac; + return ∾ +} + +QList ActionCollection::actions() const +{ + return m_actions; +} + +void ActionCollection::addAction(QAction* action) +{ + if (!m_actions.contains(action)) { + m_actions << action; + } +} + +void ActionCollection::addActions(const QList& actions) +{ + for (auto a : actions) { + addAction(a); + } +} + +QKeySequence ActionCollection::defaultShortcut(const QAction* action) const +{ + auto shortcuts = defaultShortcuts(action); + return shortcuts.isEmpty() ? QKeySequence() : shortcuts.first(); +} + +QList ActionCollection::defaultShortcuts(const QAction* action) const +{ + return action->property("defaultShortcuts").value>(); +} + +void ActionCollection::setDefaultShortcut(QAction* action, const QKeySequence& shortcut) +{ + setDefaultShortcuts(action, {shortcut}); +} + +void ActionCollection::setDefaultShortcut(QAction* action, QKeySequence::StandardKey standard) +{ + if (!QKeySequence::keyBindings(standard).isEmpty()) { + setDefaultShortcuts(action, QKeySequence::keyBindings(standard)); + } +} + +void ActionCollection::setDefaultShortcuts(QAction* action, const QList& shortcuts) +{ + action->setShortcuts(shortcuts); + action->setProperty("defaultShortcuts", QVariant::fromValue(shortcuts)); +} + +void ActionCollection::restoreShortcuts() +{ + const auto shortcuts = Config::instance()->getShortcuts(); + QHash actionsByName; + for (auto action : m_actions) { + actionsByName.insert(action->objectName(), action); + } + for (const auto& shortcut : shortcuts) { + if (actionsByName.contains(shortcut.name)) { + const auto key = QKeySequence::fromString(shortcut.shortcut); + actionsByName.value(shortcut.name)->setShortcut(key); + } + } +} + +void ActionCollection::saveShortcuts() +{ + QList shortcuts; + shortcuts.reserve(m_actions.size()); + for (auto a : m_actions) { + // Only store non-default shortcut assignments + if (a->shortcut() != defaultShortcut(a)) { + shortcuts << Config::ShortcutEntry{a->objectName(), a->shortcut().toString()}; + } + } + Config::instance()->setShortcuts(shortcuts); +} + +QAction* ActionCollection::isConflictingShortcut(const QAction* action, const QKeySequence& seq) const +{ + // Empty sequences don't conflict with anything + if (seq.isEmpty()) { + return nullptr; + } + + for (auto a : m_actions) { + if (a != action && a->shortcut() == seq) { + return a; + } + } + + return nullptr; +} diff --git a/src/gui/ActionCollection.h b/src/gui/ActionCollection.h new file mode 100644 index 000000000..c9045b552 --- /dev/null +++ b/src/gui/ActionCollection.h @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_ACTION_COLLECTION_H +#define KEEPASSXC_ACTION_COLLECTION_H + +#include +#include +#include + +/** + * This class manages all actions that are shortcut configurable. + * It also allows you to access the actions inside it from anywhere + * in the gui code. + */ +class ActionCollection : public QObject +{ + Q_OBJECT + ActionCollection() = default; + +public: + static ActionCollection* instance(); + + QList actions() const; + + void addAction(QAction* action); + void addActions(const QList& actions); + + QKeySequence defaultShortcut(const QAction* a) const; + QList defaultShortcuts(const QAction* a) const; + + void setDefaultShortcut(QAction* a, const QKeySequence& shortcut); + void setDefaultShortcut(QAction* a, QKeySequence::StandardKey standard); + void setDefaultShortcuts(QAction* a, const QList& shortcut); + + // Check if any action conflicts with @p seq and return the conflicting action + QAction* isConflictingShortcut(const QAction* action, const QKeySequence& seq) const; + +public slots: + void restoreShortcuts(); + void saveShortcuts(); + +private: + QList m_actions; +}; + +#endif diff --git a/src/gui/Application.cpp b/src/gui/Application.cpp index c2c42c24d..01553ad91 100644 --- a/src/gui/Application.cpp +++ b/src/gui/Application.cpp @@ -35,7 +35,7 @@ #include #if defined(Q_OS_UNIX) -#include +#include #include #include #endif @@ -44,6 +44,7 @@ namespace { constexpr int WaitTimeoutMSec = 150; const char BlockSizeProperty[] = "blockSize"; + int g_OriginalFontSize = 0; } // namespace Application::Application(int& argc, char** argv) @@ -147,16 +148,11 @@ Application::~Application() * configuration OS security properties, and loading translators. * A QApplication object has to be instantiated before calling this function. */ -void Application::bootstrap() +void Application::bootstrap(const QString& uiLanguage) { - Bootstrap::bootstrap(); + Bootstrap::bootstrap(uiLanguage); -#ifdef Q_OS_WIN - // Qt on Windows uses "MS Shell Dlg 2" as the default font for many widgets, which resolves - // to Tahoma 8pt, whereas the correct font would be "Segoe UI" 9pt. - // Apparently, some widgets are already using the correct font. Thanks, MuseScore for this neat fix! - QApplication::setFont(QApplication::font("QMessageBox")); -#endif + applyFontSize(); osUtils->registerNativeEventFilter(); MessageBox::initializeButtonDefs(); @@ -183,6 +179,7 @@ void Application::applyTheme() auto* s = new LightStyle; setPalette(s->standardPalette()); setStyle(s); + m_darkTheme = false; } else if (appTheme == "dark") { auto* s = new DarkStyle; setPalette(s->standardPalette()); @@ -191,7 +188,9 @@ void Application::applyTheme() } else { // Classic mode, don't check for dark theme on Windows // because Qt 5.x does not support it -#ifndef Q_OS_WIN +#if defined(Q_OS_WIN) + m_darkTheme = false; +#else m_darkTheme = osUtils->isDarkMode(); #endif QFile stylesheetFile(":/styles/base/classicstyle.qss"); @@ -202,6 +201,28 @@ void Application::applyTheme() } } +void Application::applyFontSize() +{ + auto font = QApplication::font(); + + // Store the original font size on first call + if (g_OriginalFontSize <= 0) { +#ifdef Q_OS_WIN + // Qt on Windows uses "MS Shell Dlg 2" as the default font for many widgets, which resolves + // to Tahoma 8pt, whereas the correct font would be "Segoe UI" 9pt. + // Apparently, some widgets are already using the correct font. Thanks, MuseScore for this neat fix! + font = QApplication::font("QMessageBox"); +#endif + g_OriginalFontSize = font.pointSize(); + } + + // Adjust application wide default font size + auto newSize = g_OriginalFontSize + qBound(-2, config()->get(Config::GUI_FontSizeOffset).toInt(), 4); + font.setPointSize(newSize); + QApplication::setFont(font); + QApplication::setFont(font, "QWidget"); +} + bool Application::event(QEvent* event) { // Handle Apple QFileOpenEvent from finder (double click on .kdbx file) @@ -281,7 +302,7 @@ void Application::processIncomingConnection() void Application::socketReadyRead() { - QLocalSocket* socket = qobject_cast(sender()); + auto socket = qobject_cast(sender()); if (!socket) { return; } diff --git a/src/gui/Application.h b/src/gui/Application.h index 9cbf48e59..349c93923 100644 --- a/src/gui/Application.h +++ b/src/gui/Application.h @@ -21,6 +21,7 @@ #define KEEPASSX_APPLICATION_H #include +#include #include #if defined(Q_OS_WIN) || (defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)) @@ -40,7 +41,8 @@ public: Application(int& argc, char** argv); ~Application() override; - static void bootstrap(); + static void bootstrap(const QString& uiLanguage = "system"); + static void applyFontSize(); void applyTheme(); diff --git a/src/gui/ApplicationSettingsWidget.cpp b/src/gui/ApplicationSettingsWidget.cpp index 9dd9e3df8..2e925c4f5 100644 --- a/src/gui/ApplicationSettingsWidget.cpp +++ b/src/gui/ApplicationSettingsWidget.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * 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 @@ -21,6 +21,7 @@ #include "ui_ApplicationSettingsWidgetSecurity.h" #include #include +#include #include "config-keepassx.h" @@ -29,14 +30,12 @@ #include "gui/Icons.h" #include "gui/MainWindow.h" #include "gui/osutils/OSUtils.h" +#include "quickunlock/QuickUnlockInterface.h" #include "FileDialog.h" #include "MessageBox.h" -#ifdef Q_OS_MACOS -#include "touchid/TouchID.h" -#endif -#ifdef Q_CC_MSVC -#include "winhello/WindowsHello.h" +#ifdef WITH_XC_BROWSER +#include "browser/BrowserSettingsPage.h" #endif class ApplicationSettingsWidget::ExtraPage @@ -101,6 +100,9 @@ ApplicationSettingsWidget::ApplicationSettingsWidget(QWidget* parent) m_generalUi->setupUi(m_generalWidget); addPage(tr("General"), icons()->icon("preferences-other"), m_generalWidget); addPage(tr("Security"), icons()->icon("security-high"), m_secWidget); +#ifdef WITH_XC_BROWSER + addSettingsPage(new BrowserSettingsPage()); +#endif if (!autoType()->isAvailable()) { m_generalUi->generalSettingsTabWidget->removeTab(1); @@ -115,6 +117,8 @@ ApplicationSettingsWidget::ApplicationSettingsWidget(QWidget* parent) connect(m_generalUi->systrayShowCheckBox, SIGNAL(toggled(bool)), SLOT(systrayToggled(bool))); connect(m_generalUi->rememberLastDatabasesCheckBox, SIGNAL(toggled(bool)), SLOT(rememberDatabasesToggled(bool))); connect(m_generalUi->resetSettingsButton, SIGNAL(clicked()), SLOT(resetSettings())); + connect(m_generalUi->importSettingsButton, SIGNAL(clicked()), SLOT(importSettings())); + connect(m_generalUi->exportSettingsButton, SIGNAL(clicked()), SLOT(exportSettings())); connect(m_generalUi->useAlternativeSaveCheckBox, SIGNAL(toggled(bool)), m_generalUi->alternativeSaveComboBox, SLOT(setEnabled(bool))); @@ -134,6 +138,31 @@ ApplicationSettingsWidget::ApplicationSettingsWidget(QWidget* parent) m_secUi->lockDatabaseIdleSpinBox, SLOT(setEnabled(bool))); // clang-format on + connect(m_generalUi->minimizeAfterUnlockCheckBox, &QCheckBox::toggled, this, [this](bool state) { + if (state) { + m_secUi->lockDatabaseMinimizeCheckBox->setChecked(false); + } + m_secUi->lockDatabaseMinimizeCheckBox->setToolTip( + state ? tr("This setting cannot be enabled when minimize on unlock is enabled.") : ""); + m_secUi->lockDatabaseMinimizeCheckBox->setEnabled(!state); + }); + + // Set Auto-Type shortcut when changed + connect( + m_generalUi->autoTypeShortcutWidget, &ShortcutWidget::shortcutChanged, this, [this](auto key, auto modifiers) { + QString error; + if (autoType()->registerGlobalShortcut(key, modifiers, &error)) { + m_generalUi->autoTypeShortcutWidget->setStyleSheet(""); + } else { + QToolTip::showText(mapToGlobal(rect().bottomLeft()), error); + m_generalUi->autoTypeShortcutWidget->setStyleSheet("background-color: #FF9696;"); + } + }); + connect(m_generalUi->autoTypeShortcutWidget, &ShortcutWidget::shortcutReset, this, [this] { + autoType()->unregisterGlobalShortcut(); + m_generalUi->autoTypeShortcutWidget->setStyleSheet(""); + }); + // Disable mouse wheel grab when scrolling // This prevents combo box and spinner values from changing without explicit focus auto mouseWheelFilter = new MouseWheelEventFilter(this); @@ -141,6 +170,7 @@ ApplicationSettingsWidget::ApplicationSettingsWidget(QWidget* parent) m_generalUi->toolButtonStyleComboBox->installEventFilter(mouseWheelFilter); m_generalUi->languageComboBox->installEventFilter(mouseWheelFilter); m_generalUi->trayIconAppearance->installEventFilter(mouseWheelFilter); + m_generalUi->fontSizeComboBox->installEventFilter(mouseWheelFilter); #ifdef WITH_XC_UPDATECHECK connect(m_generalUi->checkForUpdatesOnStartupCheckBox, SIGNAL(toggled(bool)), SLOT(checkUpdatesToggled(bool))); @@ -155,20 +185,9 @@ ApplicationSettingsWidget::ApplicationSettingsWidget(QWidget* parent) m_generalUi->faviconTimeoutLabel->setVisible(false); m_generalUi->faviconTimeoutSpinBox->setVisible(false); #endif - - bool showQuickUnlock = false; -#if defined(Q_OS_MACOS) - showQuickUnlock = TouchID::getInstance().isAvailable(); -#elif defined(Q_CC_MSVC) - showQuickUnlock = getWindowsHello()->isAvailable(); - connect(getWindowsHello(), &WindowsHello::availableChanged, m_secUi->quickUnlockCheckBox, &QCheckBox::setVisible); -#endif - m_secUi->quickUnlockCheckBox->setVisible(showQuickUnlock); } -ApplicationSettingsWidget::~ApplicationSettingsWidget() -{ -} +ApplicationSettingsWidget::~ApplicationSettingsWidget() = default; void ApplicationSettingsWidget::addSettingsPage(ISettingsPage* page) { @@ -191,6 +210,7 @@ void ApplicationSettingsWidget::loadSettings() m_generalUi->singleInstanceCheckBox->setChecked(config()->get(Config::SingleInstance).toBool()); m_generalUi->launchAtStartup->setChecked(osUtils->isLaunchAtStartupEnabled()); m_generalUi->rememberLastDatabasesCheckBox->setChecked(config()->get(Config::RememberLastDatabases).toBool()); + m_generalUi->rememberLastDatabasesSpinbox->setValue(config()->get(Config::NumberOfRememberedLastDatabases).toInt()); m_generalUi->rememberLastKeyFilesCheckBox->setChecked(config()->get(Config::RememberLastKeyFiles).toBool()); m_generalUi->openPreviousDatabasesOnStartupCheckBox->setChecked( config()->get(Config::OpenPreviousDatabasesOnStartup).toBool()); @@ -206,6 +226,7 @@ void ApplicationSettingsWidget::loadSettings() m_generalUi->autoReloadOnChangeCheckBox->setChecked(config()->get(Config::AutoReloadOnChange).toBool()); m_generalUi->minimizeAfterUnlockCheckBox->setChecked(config()->get(Config::MinimizeAfterUnlock).toBool()); m_generalUi->minimizeOnOpenUrlCheckBox->setChecked(config()->get(Config::MinimizeOnOpenUrl).toBool()); + m_generalUi->openUrlOnDoubleClick->setChecked(config()->get(Config::OpenURLOnDoubleClick).toBool()); m_generalUi->hideWindowOnCopyCheckBox->setChecked(config()->get(Config::HideWindowOnCopy).toBool()); hideWindowOnCopyCheckBoxToggled(m_generalUi->hideWindowOnCopyCheckBox->isChecked()); m_generalUi->minimizeOnCopyRadioButton->setChecked(config()->get(Config::MinimizeOnCopy).toBool()); @@ -216,6 +237,10 @@ void ApplicationSettingsWidget::loadSettings() m_generalUi->autoTypeEntryURLMatchCheckBox->setChecked(config()->get(Config::AutoTypeEntryURLMatch).toBool()); m_generalUi->autoTypeHideExpiredEntryCheckBox->setChecked(config()->get(Config::AutoTypeHideExpiredEntry).toBool()); m_generalUi->faviconTimeoutSpinBox->setValue(config()->get(Config::FaviconDownloadTimeout).toInt()); + m_generalUi->ConfirmMoveEntryToRecycleBinCheckBox->setChecked( + !config()->get(Config::Security_NoConfirmMoveEntryToRecycleBin).toBool()); + m_generalUi->EnableCopyOnDoubleClickCheckBox->setChecked( + config()->get(Config::Security_EnableCopyOnDoubleClick).toBool()); m_generalUi->languageComboBox->clear(); QList> languages = Translator::availableLanguages(); @@ -227,8 +252,11 @@ void ApplicationSettingsWidget::loadSettings() m_generalUi->languageComboBox->setCurrentIndex(defaultIndex); } + m_generalUi->menubarShowCheckBox->setChecked(!config()->get(Config::GUI_HideMenubar).toBool()); + m_generalUi->toolbarShowCheckBox->setChecked(!config()->get(Config::GUI_HideToolbar).toBool()); m_generalUi->toolbarMovableCheckBox->setChecked(config()->get(Config::GUI_MovableToolbar).toBool()); m_generalUi->monospaceNotesCheckBox->setChecked(config()->get(Config::GUI_MonospaceNotes).toBool()); + m_generalUi->colorPasswordsCheckBox->setChecked(config()->get(Config::GUI_ColorPasswords).toBool()); m_generalUi->toolButtonStyleComboBox->clear(); m_generalUi->toolButtonStyleComboBox->addItem(tr("Icon only"), Qt::ToolButtonIconOnly); @@ -238,10 +266,25 @@ void ApplicationSettingsWidget::loadSettings() m_generalUi->toolButtonStyleComboBox->addItem(tr("Follow style"), Qt::ToolButtonFollowStyle); int toolButtonStyleIndex = m_generalUi->toolButtonStyleComboBox->findData(config()->get(Config::GUI_ToolButtonStyle)); - if (toolButtonStyleIndex > 0) { + if (toolButtonStyleIndex >= 0) { m_generalUi->toolButtonStyleComboBox->setCurrentIndex(toolButtonStyleIndex); } + m_generalUi->fontSizeComboBox->clear(); + m_generalUi->fontSizeComboBox->addItem(tr("Small"), -1); + m_generalUi->fontSizeComboBox->addItem(tr("Normal"), 0); + m_generalUi->fontSizeComboBox->addItem(tr("Medium"), 1); + m_generalUi->fontSizeComboBox->addItem(tr("Large"), 2); + + int fontSizeIndex = m_generalUi->fontSizeComboBox->findData(config()->get(Config::GUI_FontSizeOffset)); + if (fontSizeIndex >= 0) { + m_generalUi->fontSizeComboBox->setCurrentIndex(fontSizeIndex); + } else { + // Custom value entered into config file, add it to the list and select it + m_generalUi->fontSizeComboBox->addItem(tr("Custom"), config()->get(Config::GUI_FontSizeOffset).toInt()); + m_generalUi->fontSizeComboBox->setCurrentIndex(m_generalUi->fontSizeComboBox->count() - 1); + } + m_generalUi->systrayShowCheckBox->setChecked(config()->get(Config::GUI_ShowTrayIcon).toBool()); systrayToggled(m_generalUi->systrayShowCheckBox->isChecked()); m_generalUi->systrayMinimizeToTrayCheckBox->setChecked(config()->get(Config::GUI_MinimizeToTray).toBool()); @@ -295,23 +338,27 @@ void ApplicationSettingsWidget::loadSettings() m_secUi->lockDatabaseIdleCheckBox->setChecked(config()->get(Config::Security_LockDatabaseIdle).toBool()); m_secUi->lockDatabaseIdleSpinBox->setValue(config()->get(Config::Security_LockDatabaseIdleSeconds).toInt()); - m_secUi->lockDatabaseMinimizeCheckBox->setChecked(config()->get(Config::Security_LockDatabaseMinimize).toBool()); + m_secUi->lockDatabaseMinimizeCheckBox->setChecked(m_secUi->lockDatabaseMinimizeCheckBox->isEnabled() + && config()->get(Config::Security_LockDatabaseMinimize).toBool()); m_secUi->lockDatabaseOnScreenLockCheckBox->setChecked( config()->get(Config::Security_LockDatabaseScreenLock).toBool()); +#if defined(Q_OS_MACOS) + m_secUi->lockDatabasesOnUserSwitchCheckBox->setVisible(true); +#else + m_secUi->lockDatabasesOnUserSwitchCheckBox->setVisible(false); +#endif + m_secUi->lockDatabasesOnUserSwitchCheckBox->setChecked( + config()->get(Config::Security_LockDatabaseOnUserSwitch).toBool()); m_secUi->fallbackToSearch->setChecked(config()->get(Config::Security_IconDownloadFallback).toBool()); m_secUi->passwordsHiddenCheckBox->setChecked(config()->get(Config::Security_PasswordsHidden).toBool()); m_secUi->passwordShowDotsCheckBox->setChecked(config()->get(Config::Security_PasswordEmptyPlaceholder).toBool()); m_secUi->passwordPreviewCleartextCheckBox->setChecked( config()->get(Config::Security_HidePasswordPreviewPanel).toBool()); - m_secUi->passwordsRepeatVisibleCheckBox->setChecked( - config()->get(Config::Security_PasswordsRepeatVisible).toBool()); + m_secUi->hideTotpCheckBox->setChecked(config()->get(Config::Security_HideTotpPreviewPanel).toBool()); m_secUi->hideNotesCheckBox->setChecked(config()->get(Config::Security_HideNotes).toBool()); - m_secUi->NoConfirmMoveEntryToRecycleBinCheckBox->setChecked( - config()->get(Config::Security_NoConfirmMoveEntryToRecycleBin).toBool()); - m_secUi->EnableCopyOnDoubleClickCheckBox->setChecked( - config()->get(Config::Security_EnableCopyOnDoubleClick).toBool()); + m_secUi->quickUnlockCheckBox->setEnabled(getQuickUnlock()->isAvailable()); m_secUi->quickUnlockCheckBox->setChecked(config()->get(Config::Security_QuickUnlock).toBool()); for (const ExtraPage& page : asConst(m_extraPages)) { @@ -336,6 +383,7 @@ void ApplicationSettingsWidget::saveSettings() config()->set(Config::SingleInstance, m_generalUi->singleInstanceCheckBox->isChecked()); config()->set(Config::RememberLastDatabases, m_generalUi->rememberLastDatabasesCheckBox->isChecked()); + config()->set(Config::NumberOfRememberedLastDatabases, m_generalUi->rememberLastDatabasesSpinbox->value()); config()->set(Config::RememberLastKeyFiles, m_generalUi->rememberLastKeyFilesCheckBox->isChecked()); config()->set(Config::OpenPreviousDatabasesOnStartup, m_generalUi->openPreviousDatabasesOnStartupCheckBox->isChecked()); @@ -351,6 +399,7 @@ void ApplicationSettingsWidget::saveSettings() config()->set(Config::AutoReloadOnChange, m_generalUi->autoReloadOnChangeCheckBox->isChecked()); config()->set(Config::MinimizeAfterUnlock, m_generalUi->minimizeAfterUnlockCheckBox->isChecked()); config()->set(Config::MinimizeOnOpenUrl, m_generalUi->minimizeOnOpenUrlCheckBox->isChecked()); + config()->set(Config::OpenURLOnDoubleClick, m_generalUi->openUrlOnDoubleClick->isChecked()); config()->set(Config::HideWindowOnCopy, m_generalUi->hideWindowOnCopyCheckBox->isChecked()); config()->set(Config::MinimizeOnCopy, m_generalUi->minimizeOnCopyRadioButton->isChecked()); config()->set(Config::DropToBackgroundOnCopy, m_generalUi->dropToBackgroundOnCopyRadioButton->isChecked()); @@ -359,6 +408,9 @@ void ApplicationSettingsWidget::saveSettings() config()->set(Config::AutoTypeEntryURLMatch, m_generalUi->autoTypeEntryURLMatchCheckBox->isChecked()); config()->set(Config::AutoTypeHideExpiredEntry, m_generalUi->autoTypeHideExpiredEntryCheckBox->isChecked()); config()->set(Config::FaviconDownloadTimeout, m_generalUi->faviconTimeoutSpinBox->value()); + config()->set(Config::Security_NoConfirmMoveEntryToRecycleBin, + !m_generalUi->ConfirmMoveEntryToRecycleBinCheckBox->isChecked()); + config()->set(Config::Security_EnableCopyOnDoubleClick, m_generalUi->EnableCopyOnDoubleClickCheckBox->isChecked()); auto language = m_generalUi->languageComboBox->currentData().toString(); if (config()->get(Config::GUI_Language) != language) { @@ -369,10 +421,14 @@ void ApplicationSettingsWidget::saveSettings() } config()->set(Config::GUI_Language, language); + config()->set(Config::GUI_HideMenubar, !m_generalUi->menubarShowCheckBox->isChecked()); + config()->set(Config::GUI_HideToolbar, !m_generalUi->toolbarShowCheckBox->isChecked()); config()->set(Config::GUI_MovableToolbar, m_generalUi->toolbarMovableCheckBox->isChecked()); config()->set(Config::GUI_MonospaceNotes, m_generalUi->monospaceNotesCheckBox->isChecked()); + config()->set(Config::GUI_ColorPasswords, m_generalUi->colorPasswordsCheckBox->isChecked()); config()->set(Config::GUI_ToolButtonStyle, m_generalUi->toolButtonStyleComboBox->currentData().toString()); + config()->set(Config::GUI_FontSizeOffset, m_generalUi->fontSizeComboBox->currentData().toInt()); config()->set(Config::GUI_ShowTrayIcon, m_generalUi->systrayShowCheckBox->isChecked()); config()->set(Config::GUI_TrayIconAppearance, m_generalUi->trayIconAppearance->currentData().toString()); @@ -409,19 +465,19 @@ void ApplicationSettingsWidget::saveSettings() config()->set(Config::Security_LockDatabaseIdleSeconds, m_secUi->lockDatabaseIdleSpinBox->value()); config()->set(Config::Security_LockDatabaseMinimize, m_secUi->lockDatabaseMinimizeCheckBox->isChecked()); config()->set(Config::Security_LockDatabaseScreenLock, m_secUi->lockDatabaseOnScreenLockCheckBox->isChecked()); + config()->set(Config::Security_LockDatabaseOnUserSwitch, m_secUi->lockDatabasesOnUserSwitchCheckBox->isChecked()); config()->set(Config::Security_IconDownloadFallback, m_secUi->fallbackToSearch->isChecked()); config()->set(Config::Security_PasswordsHidden, m_secUi->passwordsHiddenCheckBox->isChecked()); config()->set(Config::Security_PasswordEmptyPlaceholder, m_secUi->passwordShowDotsCheckBox->isChecked()); config()->set(Config::Security_HidePasswordPreviewPanel, m_secUi->passwordPreviewCleartextCheckBox->isChecked()); - config()->set(Config::Security_PasswordsRepeatVisible, m_secUi->passwordsRepeatVisibleCheckBox->isChecked()); + config()->set(Config::Security_HideTotpPreviewPanel, m_secUi->hideTotpCheckBox->isChecked()); config()->set(Config::Security_HideNotes, m_secUi->hideNotesCheckBox->isChecked()); - config()->set(Config::Security_NoConfirmMoveEntryToRecycleBin, - m_secUi->NoConfirmMoveEntryToRecycleBinCheckBox->isChecked()); - config()->set(Config::Security_EnableCopyOnDoubleClick, m_secUi->EnableCopyOnDoubleClickCheckBox->isChecked()); - config()->set(Config::Security_QuickUnlock, m_secUi->quickUnlockCheckBox->isChecked()); + if (m_secUi->quickUnlockCheckBox->isEnabled()) { + config()->set(Config::Security_QuickUnlock, m_secUi->quickUnlockCheckBox->isChecked()); + } // Security: clear storage if related settings are disabled if (!config()->get(Config::RememberLastDatabases).toBool()) { @@ -445,8 +501,8 @@ void ApplicationSettingsWidget::resetSettings() { // Confirm reset auto ans = MessageBox::question(this, - tr("Reset Settings?"), - tr("Are you sure you want to reset all general and security settings to default?"), + tr("Confirm Reset"), + tr("Are you sure you want to reset all settings to default?"), MessageBox::Reset | MessageBox::Cancel, MessageBox::Cancel); if (ans == MessageBox::Cancel) { @@ -481,6 +537,33 @@ void ApplicationSettingsWidget::resetSettings() emit settingsReset(); } +void ApplicationSettingsWidget::importSettings() +{ + auto file = fileDialog()->getOpenFileName(this, tr("Import KeePassXC Settings"), {}, "*.ini"); + if (file.isEmpty()) { + return; + } + + if (!config()->importSettings(file)) { + showMessage(tr("Failed to import settings from %1, not a valid settings file.").arg(file), + MessageWidget::Error); + return; + } + + loadSettings(); + emit settingsReset(); +} + +void ApplicationSettingsWidget::exportSettings() +{ + auto file = fileDialog()->getSaveFileName(this, tr("Export KeePassXC Settings"), {}, "*.ini"); + if (file.isEmpty()) { + return; + } + + config()->exportSettings(file); +} + void ApplicationSettingsWidget::reject() { // register the old key again as it might have changed @@ -520,6 +603,7 @@ void ApplicationSettingsWidget::rememberDatabasesToggled(bool checked) m_generalUi->openPreviousDatabasesOnStartupCheckBox->setChecked(false); } + m_generalUi->rememberLastDatabasesSpinbox->setEnabled(checked); m_generalUi->rememberLastKeyFilesCheckBox->setEnabled(checked); m_generalUi->openPreviousDatabasesOnStartupCheckBox->setEnabled(checked); } diff --git a/src/gui/ApplicationSettingsWidget.h b/src/gui/ApplicationSettingsWidget.h index 15fc5a344..7e43196b1 100644 --- a/src/gui/ApplicationSettingsWidget.h +++ b/src/gui/ApplicationSettingsWidget.h @@ -30,9 +30,7 @@ namespace Ui class ISettingsPage { public: - virtual ~ISettingsPage() - { - } + virtual ~ISettingsPage() = default; virtual QString name() = 0; virtual QIcon icon() = 0; virtual QWidget* createWidget() = 0; @@ -46,7 +44,7 @@ class ApplicationSettingsWidget : public EditWidget public: explicit ApplicationSettingsWidget(QWidget* parent = nullptr); - ~ApplicationSettingsWidget(); + ~ApplicationSettingsWidget() override; void addSettingsPage(ISettingsPage* page); void loadSettings(); @@ -56,6 +54,8 @@ signals: private slots: void saveSettings(); void resetSettings(); + void importSettings(); + void exportSettings(); void reject(); void autoSaveToggled(bool checked); void hideWindowOnCopyCheckBoxToggled(bool checked); diff --git a/src/gui/ApplicationSettingsWidgetGeneral.ui b/src/gui/ApplicationSettingsWidgetGeneral.ui index 2260efb20..eb69f2615 100644 --- a/src/gui/ApplicationSettingsWidgetGeneral.ui +++ b/src/gui/ApplicationSettingsWidgetGeneral.ui @@ -7,7 +7,7 @@ 0 0 605 - 968 + 969 @@ -58,13 +58,13 @@ 0 0 - 564 - 930 + 568 + 1202 - 0 + 20 0 @@ -113,14 +113,47 @@ - - - Remember previously used databases - - - true - - + + + + + Remember previously used databases + + + true + + + + + + + recent files + + + 1 + + + 25 + + + 5 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + @@ -235,58 +268,46 @@ - - - QLayout::SetMaximumSize - + 6 - + + QLayout::SetMaximumSize + + - On database unlock, show entries that + On database unlock, show entries that will expire within - + true - - - 0 - 0 - - Qt::StrongFocus - On database unlock, show entries that - - - have expired + On database unlock, show entries that will expire within - days - - - will expire within + days 0 - 30 + 90 - 0 + 3 - + Qt::Horizontal @@ -347,6 +368,25 @@ + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + @@ -356,41 +396,70 @@ - Backup destination + Destination format: backupFilePath + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 6 + 20 + + + + false - Specifies the database backup file location. Occurrences of "{DB_FILENAME}" are replaced with the filename of the saved database without extension. {TIME:<format>} is replaced with the backup time, see https://doc.qt.io/qt-5/qdatetime.html#toString. <format> defaults to format string "dd_MM_yyyy_hh-mm-ss". + <html><head/><body><p><span style=" font-weight:600;">{DB_FILENAME}</span> is replaced with the filename of the saved database without extension</p><p><span style=" font-weight:600;">{TIME:&lt;format&gt;}</span> is replaced with the specified time format (default: dd_MM_yyyy_hh-mm-ss)</p><p>See the User Guide for more details</p></body></html> {DB_FILENAME}.old.kdbx + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 6 + 20 + + + + false - Choose... + Choose folder... - - - @@ -424,6 +493,9 @@ false + + QComboBox::AdjustToContents + Temporary file moved into place @@ -460,6 +532,30 @@ Entry Management + + + + Show confirmation before moving entries to recycle bin + + + + + + + Copy data on double clicking field in entry view + + + + + + + Open browser on double clicking URL field in entry view + + + true + + + @@ -616,56 +712,18 @@ 10 - - - - - 0 - 0 - + + + + Qt::Horizontal - - Qt::StrongFocus + + + 40 + 20 + - - Toolbar button style - - - QComboBox::AdjustToContents - - - - - - - true - - - - 0 - 0 - - - - Movable toolbar - - - - - - - - 0 - 0 - - - - Qt::StrongFocus - - - Language selection - - + @@ -686,25 +744,59 @@ - - + + + + true + + + + 0 + 0 + + - (restart program to activate) + Movable toolbar - - - - Qt::Horizontal + + + + + 0 + 0 + - - - 40 - 20 - + + Qt::StrongFocus - + + Toolbar button style + + + QComboBox::AdjustToContents + + + + + + + + 0 + 0 + + + + Qt::StrongFocus + + + Language selection + + + QComboBox::AdjustToContents + + @@ -717,9 +809,6 @@ 0 - - margin-right: 5px - Toolbar button style: @@ -731,8 +820,65 @@ + + + + (restart program to activate) + + + + + + + Font size: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + fontSizeComboBox + + + + + + + Qt::StrongFocus + + + Font size selection + + + QComboBox::AdjustToContents + + + + + + + Show toolbar + + + + + + + Show the menu bar by pressing the Alt key + + + Show menubar + + + + + + + Show passwords in color + + + @@ -795,6 +941,9 @@ Tray icon type + + QComboBox::AdjustToContents + @@ -904,26 +1053,10 @@ - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 10 - - - - - 0 + 6 QLayout::SetMaximumSize @@ -936,21 +1069,32 @@ - + Qt::Horizontal - - QSizePolicy::Expanding - - 50 + 40 20 + + + + Import settings… + + + + + + + Export settings… + + + @@ -1220,7 +1364,7 @@ ShortcutWidget QLineEdit -
    autotype/ShortcutWidget.h
    +
    gui/widgets/ShortcutWidget.h
    @@ -1231,6 +1375,7 @@ systrayMinimizeOnStartup minimizeAfterUnlockCheckBox rememberLastDatabasesCheckBox + rememberLastDatabasesSpinbox openPreviousDatabasesOnStartupCheckBox rememberLastKeyFilesCheckBox checkForUpdatesOnStartupCheckBox @@ -1240,8 +1385,15 @@ autoSaveAfterEveryChangeCheckBox autoSaveOnExitCheckBox autoSaveNonDataChangesCheckBox + autoReloadOnChangeCheckBox backupBeforeSaveCheckBox + backupFilePath + backupFilePathPicker useAlternativeSaveCheckBox + alternativeSaveComboBox + ConfirmMoveEntryToRecycleBinCheckBox + EnableCopyOnDoubleClickCheckBox + openUrlOnDoubleClick useGroupIconOnEntryCreationCheckBox minimizeOnOpenUrlCheckBox hideWindowOnCopyCheckBox @@ -1250,17 +1402,25 @@ faviconTimeoutSpinBox languageComboBox toolButtonStyleComboBox - monospaceNotesCheckBox toolbarMovableCheckBox + toolbarShowCheckBox + menubarShowCheckBox + colorPasswordsCheckBox + monospaceNotesCheckBox minimizeOnCloseCheckBox systrayShowCheckBox trayIconAppearance systrayMinimizeToTrayCheckBox resetSettingsButton + importSettingsButton + exportSettingsButton autoTypeEntryTitleMatchCheckBox autoTypeEntryURLMatchCheckBox autoTypeAskCheckBox + autoTypeHideExpiredEntryCheckBox + autoTypeRelockDatabaseCheckBox autoTypeShortcutWidget + autoTypeRetypeTimeSpinBox autoTypeStartDelaySpinBox autoTypeDelaySpinBox diff --git a/src/gui/ApplicationSettingsWidgetSecurity.ui b/src/gui/ApplicationSettingsWidgetSecurity.ui index 5ca7d69e0..c4cb0e01f 100644 --- a/src/gui/ApplicationSettingsWidgetSecurity.ui +++ b/src/gui/ApplicationSettingsWidgetSecurity.ui @@ -7,10 +7,13 @@ 0 0 364 - 493 + 505 + + 20 + 0 @@ -28,7 +31,7 @@ Timeouts - + @@ -157,11 +160,11 @@ - + - Convenience + Lock Options - + @@ -176,6 +179,13 @@ + + + + Lock databases when switching user + + + @@ -183,10 +193,19 @@ + + + + + + + Convenience + + - + - Require password repeat when it is visible + Use placeholder for empty password fields @@ -197,13 +216,6 @@ - - - - Use placeholder for empty password fields - - - @@ -211,24 +223,17 @@ + + + + Hide TOTP in the entry preview panel + + + - Hide entry notes by default - - - - - - - Move entries to recycle bin without confirmation - - - - - - - Enable double click to copy the username/password entry columns + Hide notes in the entry preview panel @@ -276,12 +281,14 @@ lockDatabaseIdleSpinBox clearSearchCheckBox clearSearchSpinBox + quickUnlockCheckBox lockDatabaseOnScreenLockCheckBox + lockDatabasesOnUserSwitchCheckBox lockDatabaseMinimizeCheckBox - passwordsRepeatVisibleCheckBox - passwordsHiddenCheckBox passwordShowDotsCheckBox + passwordsHiddenCheckBox passwordPreviewCleartextCheckBox + hideTotpCheckBox hideNotesCheckBox fallbackToSearch diff --git a/src/gui/CategoryListWidget.cpp b/src/gui/CategoryListWidget.cpp index 3145fbe25..cae806f62 100644 --- a/src/gui/CategoryListWidget.cpp +++ b/src/gui/CategoryListWidget.cpp @@ -43,9 +43,7 @@ CategoryListWidget::CategoryListWidget(QWidget* parent) // clang-format on } -CategoryListWidget::~CategoryListWidget() -{ -} +CategoryListWidget::~CategoryListWidget() = default; QSize CategoryListWidget::sizeHint() const { @@ -64,13 +62,13 @@ QSize CategoryListWidget::sizeHint() const QSize CategoryListWidget::minimumSizeHint() const { - return QSize(m_itemDelegate->minWidth() + m_ui->categoryList->frameWidth() * 2, - m_ui->categoryList->sizeHintForRow(0) * 2); + return {m_itemDelegate->minWidth() + m_ui->categoryList->frameWidth() * 2, + m_ui->categoryList->sizeHintForRow(0) * 2}; } int CategoryListWidget::addCategory(const QString& labelText, const QIcon& icon) { - QListWidgetItem* item = new QListWidgetItem(m_ui->categoryList); + auto item = new QListWidgetItem(m_ui->categoryList); item->setText(labelText); item->setIcon(icon); m_ui->categoryList->addItem(item); diff --git a/src/gui/CategoryListWidget.h b/src/gui/CategoryListWidget.h index cbf0ef0eb..aa182fa48 100644 --- a/src/gui/CategoryListWidget.h +++ b/src/gui/CategoryListWidget.h @@ -35,7 +35,7 @@ class CategoryListWidget : public QWidget public: CategoryListWidget(QWidget* parent = nullptr); - ~CategoryListWidget(); + ~CategoryListWidget() override; int currentCategory(); void setCurrentCategory(int index); diff --git a/src/gui/Clipboard.cpp b/src/gui/Clipboard.cpp index 804a53143..1c699f67e 100644 --- a/src/gui/Clipboard.cpp +++ b/src/gui/Clipboard.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "core/Config.h" @@ -52,38 +53,42 @@ void Clipboard::setText(const QString& text, bool clear) } auto* mime = new QMimeData; -#ifdef Q_OS_MACOS mime->setText(text); +#if defined(Q_OS_MACOS) mime->setData("application/x-nspasteboard-concealed-type", text.toUtf8()); - clipboard->setMimeData(mime, QClipboard::Clipboard); -#else - mime->setText(text); -#ifdef Q_OS_LINUX +#elif defined(Q_OS_UNIX) mime->setData("x-kde-passwordManagerHint", QByteArrayLiteral("secret")); -#endif -#ifdef Q_OS_WIN +#elif defined(Q_OS_WIN) mime->setData("ExcludeClipboardContentFromMonitorProcessing", QByteArrayLiteral("1")); + mime->setData("CanIncludeInClipboardHistory", {4, '\0'}); + mime->setData("CanUploadToCloudClipboard ", {4, '\0'}); #endif - clipboard->setMimeData(mime, QClipboard::Clipboard); if (clipboard->supportsSelection()) { clipboard->setMimeData(mime, QClipboard::Selection); } -#endif + clipboard->setMimeData(mime, QClipboard::Clipboard); if (clear) { m_lastCopied = text; if (config()->get(Config::Security_ClearClipboard).toBool()) { int timeout = config()->get(Config::Security_ClearClipboardTimeout).toInt(); if (timeout > 0) { - m_secondsElapsed = -1; - countdownTick(); + m_secondsToClear = timeout; + sendCountdownStatus(); m_timer->start(1000); + } else { + clearCopiedText(); } } } } +int Clipboard::secondsToClear() +{ + return m_secondsToClear; +} + void Clipboard::clearCopiedText() { m_timer->stop(); @@ -97,7 +102,14 @@ void Clipboard::clearCopiedText() if (m_lastCopied == clipboard->text(QClipboard::Clipboard) || m_lastCopied == clipboard->text(QClipboard::Selection)) { - setText("", false); + clipboard->clear(QClipboard::Clipboard); + clipboard->clear(QClipboard::Selection); +#ifdef Q_OS_UNIX + // Gnome Wayland doesn't let apps modify the clipboard when not in focus, so force clear + if (QProcessEnvironment::systemEnvironment().contains("WAYLAND_DISPLAY")) { + QProcess::startDetached("wl-copy", {"-c"}); + } +#endif } m_lastCopied.clear(); @@ -105,17 +117,20 @@ void Clipboard::clearCopiedText() void Clipboard::countdownTick() { - m_secondsElapsed++; - int timeout = config()->get(Config::Security_ClearClipboardTimeout).toInt(); - int timeLeft = timeout - m_secondsElapsed; - if (timeLeft <= 0) { + if (--m_secondsToClear <= 0) { clearCopiedText(); } else { - emit updateCountdown(100 * timeLeft / timeout, - QObject::tr("Clearing the clipboard in %1 second(s)…", "", timeLeft).arg(timeLeft)); + sendCountdownStatus(); } } +void Clipboard::sendCountdownStatus() +{ + emit updateCountdown( + 100 * m_secondsToClear / config()->get(Config::Security_ClearClipboardTimeout).toInt(), + QObject::tr("Clearing the clipboard in %1 second(s)…", "", m_secondsToClear).arg(m_secondsToClear)); +} + Clipboard* Clipboard::instance() { if (!m_instance) { diff --git a/src/gui/Clipboard.h b/src/gui/Clipboard.h index c97d91881..147b65aff 100644 --- a/src/gui/Clipboard.h +++ b/src/gui/Clipboard.h @@ -22,7 +22,7 @@ #include #include #ifdef Q_OS_MACOS -#include "core/MacPasteboard.h" +#include "gui/osutils/macutils/MacPasteboard.h" #include #endif @@ -34,6 +34,7 @@ class Clipboard : public QObject public: void setText(const QString& text, bool clear = true); + int secondsToClear(); static Clipboard* instance(); @@ -51,8 +52,10 @@ private: static Clipboard* m_instance; + void sendCountdownStatus(); + QTimer* m_timer; - int m_secondsElapsed = 0; + int m_secondsToClear = 0; #ifdef Q_OS_MACOS // This object lives for the whole program lifetime and we cannot delete it on exit, diff --git a/src/gui/CloneDialog.cpp b/src/gui/CloneDialog.cpp index 8ce368a60..3e3c85347 100644 --- a/src/gui/CloneDialog.cpp +++ b/src/gui/CloneDialog.cpp @@ -18,8 +18,6 @@ #include "CloneDialog.h" #include "ui_CloneDialog.h" -#include "config-keepassx.h" - CloneDialog::CloneDialog(DatabaseWidget* parent, Database* db, Entry* entry) : QDialog(parent) , m_ui(new Ui::CloneDialog()) @@ -29,8 +27,9 @@ CloneDialog::CloneDialog(DatabaseWidget* parent, Database* db, Entry* entry) m_parent = parent; m_ui->setupUi(this); - this->setFixedSize(this->sizeHint()); + window()->layout()->setSizeConstraint(QLayout::SetFixedSize); + setWindowFlag(Qt::WindowContextHelpButtonHint, false); setAttribute(Qt::WA_DeleteOnClose); connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(close())); @@ -54,13 +53,11 @@ void CloneDialog::cloneEntry() flags |= Entry::CloneIncludeHistory; } - Entry* entry = m_entry->clone(flags); + auto entry = m_entry->clone(flags); entry->setGroup(m_entry->group()); - m_parent->refreshSearch(); + emit entryCloned(entry); close(); } -CloneDialog::~CloneDialog() -{ -} +CloneDialog::~CloneDialog() = default; diff --git a/src/gui/CloneDialog.h b/src/gui/CloneDialog.h index 8da584c20..8e76a8d10 100644 --- a/src/gui/CloneDialog.h +++ b/src/gui/CloneDialog.h @@ -18,6 +18,8 @@ #ifndef KEEPASSX_CLONEDIALOG_H #define KEEPASSX_CLONEDIALOG_H +#include + #include "core/Database.h" #include "gui/DatabaseWidget.h" @@ -32,7 +34,10 @@ class CloneDialog : public QDialog public: explicit CloneDialog(DatabaseWidget* parent = nullptr, Database* db = nullptr, Entry* entry = nullptr); - ~CloneDialog(); + ~CloneDialog() override; + +signals: + void entryCloned(Entry* clone); private: QScopedPointer m_ui; diff --git a/src/gui/CloneDialog.ui b/src/gui/CloneDialog.ui index db0614dfa..80da0ee58 100644 --- a/src/gui/CloneDialog.ui +++ b/src/gui/CloneDialog.ui @@ -6,54 +6,56 @@ 0 0 - 347 - 136 + 319 + 132 Clone Entry Options + + true + - - - - - Append ' - Clone' to title - - - true - - - - - - - Replace username and password with references - - - - - - - Copy history - - - true - - - - + + + Append ' - Clone' to title + + + true + + + + + + + Replace username and password with references + + + + + + + Copy history + + + true + + Qt::Vertical + + QSizePolicy::Minimum + 20 - 40 + 6 diff --git a/src/gui/DatabaseOpenDialog.cpp b/src/gui/DatabaseOpenDialog.cpp index 799e82963..881db4087 100644 --- a/src/gui/DatabaseOpenDialog.cpp +++ b/src/gui/DatabaseOpenDialog.cpp @@ -36,6 +36,7 @@ DatabaseOpenDialog::DatabaseOpenDialog(QWidget* parent) { setWindowTitle(tr("Unlock Database - KeePassXC")); setWindowFlags(Qt::Dialog); + setWindowFlag(Qt::WindowContextHelpButtonHint, false); #ifdef Q_OS_LINUX // Linux requires this to overcome some Desktop Environments (also no Quick Unlock) setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint); @@ -59,13 +60,34 @@ DatabaseOpenDialog::DatabaseOpenDialog(QWidget* parent) setLayout(layout); setMinimumWidth(700); - // set up Ctrl+PageUp and Ctrl+PageDown shortcuts to cycle tabs + // set up Ctrl+PageUp / Ctrl+PageDown and Ctrl+Tab / Ctrl+Shift+Tab shortcuts to cycle tabs + // Ctrl+Tab is broken on Mac, so use Alt (i.e. the Option key) - https://bugreports.qt.io/browse/QTBUG-8596 + auto dbTabModifier = Qt::CTRL; +#ifdef Q_OS_MACOS + dbTabModifier = Qt::ALT; +#endif auto* shortcut = new QShortcut(Qt::CTRL + Qt::Key_PageUp, this); shortcut->setContext(Qt::WidgetWithChildrenShortcut); connect(shortcut, &QShortcut::activated, this, [this]() { selectTabOffset(-1); }); + shortcut = new QShortcut(dbTabModifier + Qt::SHIFT + Qt::Key_Tab, this); + shortcut->setContext(Qt::WidgetWithChildrenShortcut); + connect(shortcut, &QShortcut::activated, this, [this]() { selectTabOffset(-1); }); shortcut = new QShortcut(Qt::CTRL + Qt::Key_PageDown, this); shortcut->setContext(Qt::WidgetWithChildrenShortcut); connect(shortcut, &QShortcut::activated, this, [this]() { selectTabOffset(1); }); + shortcut = new QShortcut(dbTabModifier + Qt::Key_Tab, this); + shortcut->setContext(Qt::WidgetWithChildrenShortcut); + connect(shortcut, &QShortcut::activated, this, [this]() { selectTabOffset(1); }); +} + +void DatabaseOpenDialog::showEvent(QShowEvent* event) +{ + QDialog::showEvent(event); + QTimer::singleShot(100, this, [this] { + if (m_view->isOnQuickUnlockScreen() && !m_view->unlockingDatabase()) { + m_view->triggerQuickUnlock(); + } + }); } void DatabaseOpenDialog::selectTabOffset(int offset) @@ -170,22 +192,52 @@ void DatabaseOpenDialog::clearForms() m_tabBar->blockSignals(false); } +void DatabaseOpenDialog::showMessage(const QString& text, MessageWidget::MessageType type, int autoHideTimeout) +{ + m_view->showMessage(text, type, autoHideTimeout); +} + QSharedPointer DatabaseOpenDialog::database() const { return m_db; } +void DatabaseOpenDialog::done(int result) +{ + hide(); + + emit dialogFinished(result == QDialog::Accepted, m_currentDbWidget); + clearForms(); + + QDialog::done(result); + +#if QT_VERSION < QT_VERSION_CHECK(6, 3, 0) + // CDialogs are not really closed, just hidden, pre Qt 6.3? + if (testAttribute(Qt::WA_DeleteOnClose)) { + setAttribute(Qt::WA_DeleteOnClose, false); + deleteLater(); + } +#endif +} + void DatabaseOpenDialog::complete(bool accepted) { // save DB, since DatabaseOpenWidget will reset its data after accept() is called m_db = m_view->database(); + if (m_db && m_intent == Intent::RemoteSync) { + m_db->markAsTemporaryDatabase(); + } if (accepted) { accept(); } else { reject(); } - - emit dialogFinished(accepted, m_currentDbWidget); - clearForms(); +} + +void DatabaseOpenDialog::closeEvent(QCloseEvent* e) +{ + emit dialogFinished(false, m_currentDbWidget); + clearForms(); + QDialog::closeEvent(e); } diff --git a/src/gui/DatabaseOpenDialog.h b/src/gui/DatabaseOpenDialog.h index 5fcee76a9..ba6fcb4e8 100644 --- a/src/gui/DatabaseOpenDialog.h +++ b/src/gui/DatabaseOpenDialog.h @@ -19,6 +19,7 @@ #define KEEPASSX_UNLOCKDATABASEDIALOG_H #include "core/Global.h" +#include "gui/MessageWidget.h" #include #include @@ -39,6 +40,7 @@ public: None, AutoType, Merge, + RemoteSync, Browser }; @@ -50,15 +52,21 @@ public: Intent intent() const; QSharedPointer database() const; void clearForms(); + void showMessage(const QString& text, MessageWidget::MessageType type, int autoHideTimeout); signals: void dialogFinished(bool accepted, DatabaseWidget* dbWidget); public slots: + void done(int result) override; void complete(bool accepted); void tabChanged(int index); +protected: + void showEvent(QShowEvent* event) override; + private: + void closeEvent(QCloseEvent* e) override; void selectTabOffset(int offset); QPointer m_view; diff --git a/src/gui/DatabaseOpenWidget.cpp b/src/gui/DatabaseOpenWidget.cpp index d5c9707f8..7cf5dcb15 100644 --- a/src/gui/DatabaseOpenWidget.cpp +++ b/src/gui/DatabaseOpenWidget.cpp @@ -19,22 +19,19 @@ #include "DatabaseOpenWidget.h" #include "ui_DatabaseOpenWidget.h" -#include "config-keepassx.h" #include "gui/FileDialog.h" #include "gui/Icons.h" #include "gui/MainWindow.h" #include "gui/MessageBox.h" #include "keys/ChallengeResponseKey.h" #include "keys/FileKey.h" - -#ifdef Q_OS_MACOS -#include "touchid/TouchID.h" -#endif -#ifdef Q_CC_MSVC -#include "winhello/WindowsHello.h" +#ifdef WITH_XC_YUBIKEY +#include "keys/drivers/YubiKeyInterfaceUSB.h" #endif +#include "quickunlock/QuickUnlockInterface.h" #include +#include #include #include @@ -45,33 +42,19 @@ namespace bool isQuickUnlockAvailable() { if (config()->get(Config::Security_QuickUnlock).toBool()) { -#if defined(Q_CC_MSVC) - return getWindowsHello()->isAvailable(); -#elif defined(Q_OS_MACOS) - return TouchID::getInstance().isAvailable(); -#endif + return getQuickUnlock()->isAvailable(); } return false; } - - bool canPerformQuickUnlock(const QString& filename) - { - if (isQuickUnlockAvailable()) { -#if defined(Q_CC_MSVC) - return getWindowsHello()->hasKey(filename); -#elif defined(Q_OS_MACOS) - return TouchID::getInstance().containsKey(filename); -#endif - } - Q_UNUSED(filename); - return false; - } } // namespace DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent) : DialogyWidget(parent) , m_ui(new Ui::DatabaseOpenWidget()) , m_db(nullptr) +#ifdef WITH_XC_YUBIKEY + , m_deviceListener(new DeviceListener(this)) +#endif { m_ui->setupUi(this); @@ -89,7 +72,6 @@ DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent) font.setPointSize(font.pointSize() + 4); font.setBold(true); m_ui->labelHeadline->setFont(font); - m_ui->labelHeadline->setText(tr("Unlock KeePassXC Database")); m_ui->quickUnlockButton->setFont(font); m_ui->quickUnlockButton->setIcon( @@ -104,18 +86,23 @@ DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent) connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(openDatabase())); connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject())); - m_ui->hardwareKeyLabelHelp->setIcon(icons()->icon("system-help").pixmap(QSize(12, 12))); - connect(m_ui->hardwareKeyLabelHelp, SIGNAL(clicked(bool)), SLOT(openHardwareKeyHelp())); - m_ui->keyFileLabelHelp->setIcon(icons()->icon("system-help").pixmap(QSize(12, 12))); - connect(m_ui->keyFileLabelHelp, SIGNAL(clicked(bool)), SLOT(openKeyFileHelp())); + connect(m_ui->addKeyFileLinkLabel, &QLabel::linkActivated, this, &DatabaseOpenWidget::browseKeyFile); + connect(m_ui->keyFileLineEdit, &PasswordWidget::textChanged, this, [&](const QString& text) { + bool state = !text.isEmpty(); + m_ui->addKeyFileLinkLabel->setVisible(!state); + m_ui->selectKeyFileComponent->setVisible(state); + }); + connect(m_ui->useHardwareKeyCheckBox, &QCheckBox::toggled, m_ui->hardwareKeyCombo, &QComboBox::setEnabled); + + m_ui->selectKeyFileComponent->setVisible(false); + toggleHardwareKeyComponent(false); -#ifdef WITH_XC_YUBIKEY - m_ui->hardwareKeyProgress->setVisible(false); QSizePolicy sp = m_ui->hardwareKeyProgress->sizePolicy(); sp.setRetainSizeWhenHidden(true); m_ui->hardwareKeyProgress->setSizePolicy(sp); - connect(m_ui->buttonRedetectYubikey, SIGNAL(clicked()), SLOT(pollHardwareKey())); +#ifdef WITH_XC_YUBIKEY + connect(m_deviceListener, &DeviceListener::devicePlugged, this, [this] { pollHardwareKey(false, 500); }); connect(YubiKey::instance(), SIGNAL(detectComplete(bool)), SLOT(hardwareKeyResponse(bool)), Qt::QueuedConnection); connect(YubiKey::instance(), &YubiKey::userInteractionRequest, this, [this] { @@ -127,45 +114,138 @@ DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent) } }); connect(YubiKey::instance(), &YubiKey::challengeCompleted, this, [this] { m_ui->messageWidget->hide(); }); + + m_ui->noHardwareKeysFoundLabel->setVisible(false); + m_ui->refreshHardwareKeys->setIcon(icons()->icon("yubikey-refresh", true)); + connect(m_ui->refreshHardwareKeys, &QPushButton::clicked, this, [this] { pollHardwareKey(true); }); + m_hideNoHardwareKeysFoundTimer.setInterval(2000); + connect(&m_hideNoHardwareKeysFoundTimer, &QTimer::timeout, this, [this] { + m_ui->noHardwareKeysFoundLabel->setVisible(false); + }); #else - m_ui->hardwareKeyLabel->setVisible(false); - m_ui->hardwareKeyLabelHelp->setVisible(false); - m_ui->buttonRedetectYubikey->setVisible(false); - m_ui->challengeResponseCombo->setVisible(false); - m_ui->hardwareKeyProgress->setVisible(false); + m_ui->noHardwareKeysFoundLabel->setVisible(false); + m_ui->refreshHardwareKeys->setVisible(false); #endif // QuickUnlock actions connect(m_ui->quickUnlockButton, &QPushButton::pressed, this, [this] { openDatabase(); }); connect(m_ui->resetQuickUnlockButton, &QPushButton::pressed, this, [this] { resetQuickUnlock(); }); + m_ui->resetQuickUnlockButton->setShortcut(Qt::Key_Escape); } -DatabaseOpenWidget::~DatabaseOpenWidget() +DatabaseOpenWidget::~DatabaseOpenWidget() = default; + +void DatabaseOpenWidget::toggleHardwareKeyComponent(bool state) { + m_ui->hardwareKeyProgress->setVisible(false); + m_ui->hardwareKeyComponent->setVisible(state); + m_ui->hardwareKeyCombo->setVisible(state && m_ui->hardwareKeyCombo->count() != 1); + + m_ui->noHardwareKeysFoundLabel->setVisible(!state && m_manualHardwareKeyRefresh); + m_ui->noHardwareKeysFoundLabel->setText(YubiKey::instance()->connectedKeys() > 0 + ? tr("Hardware keys found, but no slots are configured.") + : tr("No hardware keys found.")); + + if (!state) { + m_ui->useHardwareKeyCheckBox->setChecked(false); + } + if (m_ui->hardwareKeyCombo->count() == 1) { + m_ui->useHardwareKeyCheckBox->setText( + tr("Use hardware key [Serial: %1]") + .arg(m_ui->hardwareKeyCombo->itemData(m_ui->hardwareKeyCombo->currentIndex()) + .value() + .first)); + } else { + m_ui->useHardwareKeyCheckBox->setText(tr("Use hardware key")); + } +} +void DatabaseOpenWidget::closeDatabase() +{ + int closeWarningInterval = 3000; + + if (!m_triedToQuit && window() == getMainWindow()) { + m_triedToQuit = true; + m_ui->messageWidget->showMessage( + tr("Press ESC again to close this database"), MessageWidget::Warning, closeWarningInterval); + + QTimer::singleShot(closeWarningInterval, this, [this]() { m_triedToQuit = false; }); + return; + } + reject(); } -void DatabaseOpenWidget::showEvent(QShowEvent* event) +void DatabaseOpenWidget::keyPressEvent(QKeyEvent* event) { - DialogyWidget::showEvent(event); - if (isOnQuickUnlockScreen()) { - m_ui->quickUnlockButton->setFocus(); - if (!canPerformQuickUnlock(m_filename)) { + if (event->key() == Qt::Key_Escape) { + closeDatabase(); + } else { + DialogyWidget::keyPressEvent(event); + } +} + +bool DatabaseOpenWidget::event(QEvent* event) +{ + bool ret = DialogyWidget::event(event); + auto type = event->type(); + + if (type == QEvent::Show || type == QEvent::WindowActivate) { + if (isOnQuickUnlockScreen() && (m_db.isNull() || !canPerformQuickUnlock())) { resetQuickUnlock(); } - } else { - m_ui->editPassword->setFocus(); + toggleQuickUnlockScreen(); + + if (type == QEvent::Show) { +#ifdef WITH_XC_YUBIKEY +#ifdef Q_OS_WIN + m_deviceListener->registerHotplugCallback(true, + true, + YubiKeyInterfaceUSB::YUBICO_USB_VID, + DeviceListener::MATCH_ANY, + &DeviceListenerWin::DEV_CLS_KEYBOARD); + m_deviceListener->registerHotplugCallback(true, + true, + YubiKeyInterfaceUSB::ONLYKEY_USB_VID, + DeviceListener::MATCH_ANY, + &DeviceListenerWin::DEV_CLS_KEYBOARD); +#else + m_deviceListener->registerHotplugCallback(true, true, YubiKeyInterfaceUSB::YUBICO_USB_VID); + m_deviceListener->registerHotplugCallback(true, true, YubiKeyInterfaceUSB::ONLYKEY_USB_VID); +#endif +#endif + } + + if (isVisible()) { + m_hideTimer.stop(); + pollHardwareKey(); + } + + ret = true; + } else if (type == QEvent::Hide || type == QEvent::WindowDeactivate) { + // Schedule form clearing if we are hidden + if (!m_hideTimer.isActive()) { + m_hideTimer.start(); + } + +#ifdef WITH_XC_YUBIKEY + if (type == QEvent::Hide) { + m_deviceListener->deregisterAllHotplugCallbacks(); + } +#endif + + ret = true; } - m_hideTimer.stop(); + + return ret; } -void DatabaseOpenWidget::hideEvent(QHideEvent* event) +bool DatabaseOpenWidget::unlockingDatabase() { - DialogyWidget::hideEvent(event); + return m_unlockingDatabase; +} - // Schedule form clearing if we are hidden - if (!isVisible()) { - m_hideTimer.start(); - } +void DatabaseOpenWidget::showMessage(const QString& text, MessageWidget::MessageType type, int autoHideTimeout) +{ + m_ui->messageWidget->showMessage(text, type, autoHideTimeout); } void DatabaseOpenWidget::load(const QString& filename) @@ -173,8 +253,39 @@ void DatabaseOpenWidget::load(const QString& filename) clearForms(); m_filename = filename; + + // Read public headers + QString error; + m_db.reset(new Database()); + m_db->open(m_filename, nullptr, &error); + m_ui->fileNameLabel->setRawText(m_filename); + // Set the public name if defined + auto label = tr("Unlock KeePassXC Database"); + if (!m_db->publicName().isEmpty()) { + label.append(QString(": %1").arg(m_db->publicName())); + } + m_ui->labelHeadline->setText(label); + + // Apply the public color to the central unlock stack if defined + auto color = m_db->publicColor(); + if (!color.isEmpty()) { + m_ui->centralStack->setStyleSheet(QString("QStackedWidget {border: 4px solid %1}").arg(color)); + } else { + m_ui->centralStack->setStyleSheet(""); + } + + // Show the database icon if defined + auto iconIndex = m_db->publicIcon(); + if (iconIndex >= 0 && iconIndex < databaseIcons()->count()) { + m_ui->dbIconLabel->setPixmap(databaseIcons()->icon(iconIndex, IconSize::Large)); + m_ui->dbIconLabel->setVisible(true); + } else { + m_ui->dbIconLabel->setPixmap({}); + m_ui->dbIconLabel->setVisible(false); + } + if (config()->get(Config::RememberLastKeyFiles).toBool()) { auto lastKeyFiles = config()->get(Config::LastKeyFiles).toHash(); if (lastKeyFiles.contains(m_filename)) { @@ -182,21 +293,11 @@ void DatabaseOpenWidget::load(const QString& filename) } } - if (canPerformQuickUnlock(m_filename)) { - m_ui->centralStack->setCurrentIndex(1); - m_ui->quickUnlockButton->setFocus(); - } else { - m_ui->editPassword->setFocus(); - } + toggleQuickUnlockScreen(); #ifdef WITH_XC_YUBIKEY - // Only auto-poll for hardware keys if we previously used one with this database file - if (config()->get(Config::RememberLastKeyFiles).toBool()) { - auto lastChallengeResponse = config()->get(Config::LastChallengeResponse).toHash(); - if (lastChallengeResponse.contains(m_filename)) { - pollHardwareKey(); - } - } + // Do initial auto-poll + pollHardwareKey(); #endif } @@ -207,9 +308,12 @@ void DatabaseOpenWidget::clearForms() m_ui->editPassword->setShowPassword(false); m_ui->keyFileLineEdit->clear(); m_ui->keyFileLineEdit->setShowPassword(false); - m_ui->challengeResponseCombo->clear(); - m_ui->centralStack->setCurrentIndex(0); - m_db.reset(); + m_ui->keyFileLineEdit->setClearButtonEnabled(true); + m_ui->hardwareKeyCombo->clear(); + toggleHardwareKeyComponent(false); + toggleQuickUnlockScreen(); + + m_db.reset(new Database(m_filename)); } QSharedPointer DatabaseOpenWidget::database() @@ -224,6 +328,11 @@ QString DatabaseOpenWidget::filename() void DatabaseOpenWidget::enterKey(const QString& pw, const QString& keyFile) { + if (unlockingDatabase()) { + qWarning("Ignoring unlock request for %s because of running unlock action.", qPrintable(m_filename)); + return; + } + m_ui->editPassword->setText(pw); m_ui->keyFileLineEdit->setText(keyFile); m_blockQuickUnlock = true; @@ -265,9 +374,12 @@ void DatabaseOpenWidget::openDatabase() auto btn = msgBox->addButton(tr("Open database anyway"), QMessageBox::ButtonRole::AcceptRole); msgBox->setDefaultButton(btn); msgBox->addButton(QMessageBox::Cancel); + msgBox->layout()->setSizeConstraint(QLayout::SetMinimumSize); msgBox->exec(); if (msgBox->clickedButton() != btn) { m_db.reset(new Database()); + m_db->open(m_filename, nullptr, &error); + m_ui->messageWidget->showMessage(tr("Database unlock canceled."), MessageWidget::MessageType::Error); setUserInteractionLock(false); return; @@ -277,13 +389,7 @@ void DatabaseOpenWidget::openDatabase() // Save Quick Unlock credentials if available if (!blockQuickUnlock && isQuickUnlockAvailable()) { auto keyData = databaseKey->serialize(); -#if defined(Q_CC_MSVC) - // Store the password using Windows Hello - getWindowsHello()->storeKey(m_filename, keyData); -#elif defined(Q_OS_MACOS) - // Store the password using TouchID - TouchID::getInstance().storeKey(m_filename, keyData); -#endif + getQuickUnlock()->setKey(m_db->publicUuid(), keyData); m_ui->messageWidget->hideMessage(); } @@ -328,22 +434,15 @@ QSharedPointer DatabaseOpenWidget::buildDatabaseKey() { auto databaseKey = QSharedPointer::create(); - if (canPerformQuickUnlock(m_filename)) { + if (!m_db.isNull() && canPerformQuickUnlock()) { // try to retrieve the stored password using Windows Hello QByteArray keyData; -#ifdef Q_CC_MSVC - if (!getWindowsHello()->getKey(m_filename, keyData)) { - // Failed to retrieve Quick Unlock data - m_ui->messageWidget->showMessage(tr("Failed to authenticate with Windows Hello"), MessageWidget::Error); + if (!getQuickUnlock()->getKey(m_db->publicUuid(), keyData)) { + m_ui->messageWidget->showMessage( + tr("Failed to authenticate with Quick Unlock: %1").arg(getQuickUnlock()->errorString()), + MessageWidget::Error); return {}; } -#elif defined(Q_OS_MACOS) - if (!TouchID::getInstance().getKey(m_filename, keyData)) { - // Failed to retrieve Quick Unlock data - m_ui->messageWidget->showMessage(tr("Failed to authenticate with Touch ID"), MessageWidget::Error); - return {}; - } -#endif databaseKey->setRawKey(keyData); return databaseKey; } @@ -394,9 +493,9 @@ QSharedPointer DatabaseOpenWidget::buildDatabaseKey() auto lastChallengeResponse = config()->get(Config::LastChallengeResponse).toHash(); lastChallengeResponse.remove(m_filename); - int selectionIndex = m_ui->challengeResponseCombo->currentIndex(); - if (selectionIndex > 0) { - auto slot = m_ui->challengeResponseCombo->itemData(selectionIndex).value(); + int selectionIndex = m_ui->hardwareKeyCombo->currentIndex(); + if (m_ui->useHardwareKeyCheckBox->isChecked()) { + auto slot = m_ui->hardwareKeyCombo->itemData(selectionIndex).value(); auto crKey = QSharedPointer(new ChallengeResponseKey(slot)); databaseKey->addChallengeResponseKey(crKey); @@ -417,61 +516,71 @@ void DatabaseOpenWidget::reject() emit dialogFinished(false); } -void DatabaseOpenWidget::browseKeyFile() +bool DatabaseOpenWidget::browseKeyFile() { QString filters = QString("%1 (*);;%2 (*.keyx; *.key)").arg(tr("All files"), tr("Key files")); - QString filename = fileDialog()->getOpenFileName(this, tr("Select key file"), QString(), filters); + QString filename = + fileDialog()->getOpenFileName(this, tr("Select key file"), FileDialog::getLastDir("keyfile"), filters); + if (filename.isEmpty()) { + return false; + } + if (config()->get(Config::RememberLastKeyFiles).toBool()) { + FileDialog::saveLastDir("keyfile", filename, true); + } else { + FileDialog::saveLastDir("keyfile", {}); + } if (QFileInfo(filename).canonicalFilePath() == QFileInfo(m_filename).canonicalFilePath()) { MessageBox::warning(this, tr("Cannot use database file as key file"), - tr("You cannot use your database file as a key file.\nIf you do not have a key file, " - "please leave the field empty."), + tr("Your database file is NOT a key file!\nIf you don't have a key file or don't know what " + "that is, you don't have to select one."), MessageBox::Button::Ok); - filename = ""; + return false; + } + if (filename.endsWith(".kdbx") + && MessageBox::warning(this, + tr("KeePassXC database file selected"), + tr("The file you selected looks like a database file.\nA database file is NOT a key " + "file!\n\nAre you sure you want to continue with this file?."), + MessageBox::Button::Yes | MessageBox::Button::Cancel, + MessageBox::Button::Cancel) + != MessageBox::Yes) { + return false; } - if (!filename.isEmpty()) { - m_ui->keyFileLineEdit->setText(filename); - } + m_ui->keyFileLineEdit->setText(filename); + return true; } -void DatabaseOpenWidget::clearKeyFileText() -{ - m_ui->keyFileLineEdit->clear(); - m_ui->keyFileLineEdit->setShowPassword(false); -} - -void DatabaseOpenWidget::pollHardwareKey() +void DatabaseOpenWidget::pollHardwareKey(bool manualTrigger, int delay) { if (m_pollingHardwareKey) { return; } - m_ui->challengeResponseCombo->clear(); - m_ui->challengeResponseCombo->addItem(tr("Detecting hardware keys…")); - - m_ui->buttonRedetectYubikey->setEnabled(false); - m_ui->challengeResponseCombo->setEnabled(false); + m_ui->hardwareKeyCombo->setEnabled(false); + m_ui->useHardwareKeyCheckBox->setEnabled(false); m_ui->hardwareKeyProgress->setVisible(true); + m_ui->refreshHardwareKeys->setEnabled(false); + m_ui->noHardwareKeysFoundLabel->setVisible(false); m_pollingHardwareKey = true; + m_manualHardwareKeyRefresh = manualTrigger; - YubiKey::instance()->findValidKeysAsync(); + QTimer::singleShot(delay, this, [] { YubiKey::instance()->findValidKeysAsync(); }); } void DatabaseOpenWidget::hardwareKeyResponse(bool found) { - m_ui->challengeResponseCombo->clear(); - m_ui->buttonRedetectYubikey->setEnabled(true); + m_ui->useHardwareKeyCheckBox->setEnabled(true); m_ui->hardwareKeyProgress->setVisible(false); + m_ui->refreshHardwareKeys->setEnabled(true); + m_ui->hardwareKeyCombo->clear(); m_pollingHardwareKey = false; if (!found) { - m_ui->challengeResponseCombo->addItem(tr("No hardware keys detected")); - m_ui->challengeResponseCombo->setEnabled(false); + toggleHardwareKeyComponent(false); return; - } else { - m_ui->challengeResponseCombo->addItem(tr("Select hardware key…")); } YubiKeySlot lastUsedSlot; @@ -483,31 +592,24 @@ void DatabaseOpenWidget::hardwareKeyResponse(bool found) if (split.size() > 1) { lastUsedSlot = YubiKeySlot(split[0].toUInt(), split[1].toInt()); } + m_ui->useHardwareKeyCheckBox->setChecked(true); } } int selectedIndex = 0; - for (auto& slot : YubiKey::instance()->foundKeys()) { + const auto foundKeys = YubiKey::instance()->foundKeys(); + for (auto i = foundKeys.cbegin(); i != foundKeys.cend(); ++i) { // add detected YubiKey to combo box - m_ui->challengeResponseCombo->addItem(YubiKey::instance()->getDisplayName(slot), QVariant::fromValue(slot)); + m_ui->hardwareKeyCombo->addItem(i.value(), QVariant::fromValue(i.key())); // Select this YubiKey + Slot if we used it in the past - if (lastUsedSlot == slot) { - selectedIndex = m_ui->challengeResponseCombo->count() - 1; + if (lastUsedSlot == i.key()) { + selectedIndex = m_ui->hardwareKeyCombo->count() - 1; } } - m_ui->challengeResponseCombo->setCurrentIndex(selectedIndex); - m_ui->challengeResponseCombo->setEnabled(true); -} - -void DatabaseOpenWidget::openHardwareKeyHelp() -{ - QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-yubikey")); -} - -void DatabaseOpenWidget::openKeyFileHelp() -{ - QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-keyfile")); + toggleHardwareKeyComponent(true); + m_ui->hardwareKeyCombo->setEnabled(m_ui->useHardwareKeyCheckBox->isChecked()); + m_ui->hardwareKeyCombo->setCurrentIndex(selectedIndex); } void DatabaseOpenWidget::setUserInteractionLock(bool state) @@ -522,13 +624,43 @@ void DatabaseOpenWidget::setUserInteractionLock(bool state) } m_ui->centralStack->setEnabled(true); } + m_unlockingDatabase = state; } -bool DatabaseOpenWidget::isOnQuickUnlockScreen() +bool DatabaseOpenWidget::canPerformQuickUnlock() const +{ + return !m_db.isNull() && isQuickUnlockAvailable() && getQuickUnlock()->hasKey(m_db->publicUuid()); +} + +bool DatabaseOpenWidget::isOnQuickUnlockScreen() const { return m_ui->centralStack->currentIndex() == 1; } +void DatabaseOpenWidget::toggleQuickUnlockScreen() +{ + if (canPerformQuickUnlock()) { + m_ui->centralStack->setCurrentIndex(1); + // Work around qt issue where focus is stolen even if not visible + if (m_ui->quickUnlockButton->isVisible()) { + m_ui->quickUnlockButton->setFocus(); + } + } else { + m_ui->centralStack->setCurrentIndex(0); + // Work around qt issue where focus is stolen even if not visible + if (m_ui->editPassword->isVisible()) { + m_ui->editPassword->setFocus(); + } + } +} + +void DatabaseOpenWidget::triggerQuickUnlock() +{ + if (isOnQuickUnlockScreen()) { + m_ui->quickUnlockButton->click(); + } +} + /** * Reset installed quick unlock secrets. * @@ -539,10 +671,8 @@ void DatabaseOpenWidget::resetQuickUnlock() if (!isQuickUnlockAvailable()) { return; } -#if defined(Q_CC_MSVC) - getWindowsHello()->reset(m_filename); -#elif defined(Q_OS_MACOS) - TouchID::getInstance().reset(m_filename); -#endif + if (!m_db.isNull()) { + getQuickUnlock()->reset(m_db->publicUuid()); + } load(m_filename); } diff --git a/src/gui/DatabaseOpenWidget.h b/src/gui/DatabaseOpenWidget.h index 8a26b3045..d730634b3 100644 --- a/src/gui/DatabaseOpenWidget.h +++ b/src/gui/DatabaseOpenWidget.h @@ -19,10 +19,16 @@ #ifndef KEEPASSX_DATABASEOPENWIDGET_H #define KEEPASSX_DATABASEOPENWIDGET_H +#include #include #include +#include "config-keepassx.h" #include "gui/DialogyWidget.h" +#include "gui/MessageWidget.h" +#ifdef WITH_XC_YUBIKEY +#include "osutils/DeviceListener.h" +#endif class CompositeKey; class Database; @@ -39,24 +45,30 @@ class DatabaseOpenWidget : public DialogyWidget public: explicit DatabaseOpenWidget(QWidget* parent = nullptr); - ~DatabaseOpenWidget(); + ~DatabaseOpenWidget() override; void load(const QString& filename); QString filename(); void clearForms(); void enterKey(const QString& pw, const QString& keyFile); QSharedPointer database(); + bool unlockingDatabase(); + void showMessage(const QString& text, MessageWidget::MessageType type, int autoHideTimeout); + + // Quick Unlock helper functions + bool canPerformQuickUnlock() const; + bool isOnQuickUnlockScreen() const; + void toggleQuickUnlockScreen(); + void triggerQuickUnlock(); void resetQuickUnlock(); signals: void dialogFinished(bool accepted); protected: - void showEvent(QShowEvent* event) override; - void hideEvent(QHideEvent* event) override; + bool event(QEvent* event) override; + void keyPressEvent(QKeyEvent* event) override; QSharedPointer buildDatabaseKey(); void setUserInteractionLock(bool state); - // Quick Unlock helper functions - bool isOnQuickUnlockScreen(); const QScopedPointer m_ui; QSharedPointer m_db; @@ -68,17 +80,23 @@ protected slots: void reject(); private slots: - void browseKeyFile(); - void clearKeyFileText(); - void pollHardwareKey(); + bool browseKeyFile(); + void toggleHardwareKeyComponent(bool state); + void closeDatabase(); + void pollHardwareKey(bool manualTrigger = false, int delay = 0); void hardwareKeyResponse(bool found); - void openHardwareKeyHelp(); - void openKeyFileHelp(); private: +#ifdef WITH_XC_YUBIKEY + QPointer m_deviceListener; +#endif bool m_pollingHardwareKey = false; + bool m_manualHardwareKeyRefresh = false; bool m_blockQuickUnlock = false; + bool m_unlockingDatabase = false; + bool m_triedToQuit = false; QTimer m_hideTimer; + QTimer m_hideNoHardwareKeysFoundTimer; Q_DISABLE_COPY(DatabaseOpenWidget) }; diff --git a/src/gui/DatabaseOpenWidget.ui b/src/gui/DatabaseOpenWidget.ui index 101bef632..1ef04a528 100644 --- a/src/gui/DatabaseOpenWidget.ui +++ b/src/gui/DatabaseOpenWidget.ui @@ -6,8 +6,8 @@ 0 0 - 520 - 436 + 745 + 544 @@ -18,7 +18,7 @@ - + 0 @@ -40,18 +40,6 @@ - - - 500 - 400 - - - - - 700 - 16777215 - - @@ -67,18 +55,54 @@ - - - - 12 - 75 - true - + + + 9 - - Unlock KeePassXC Database - - + + + + + 32 + 32 + + + + + + + true + + + + + + + + 12 + 75 + true + + + + Unlock KeePassXC Database + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + @@ -107,8 +131,8 @@ - 0 - 250 + 650 + 0 @@ -122,172 +146,223 @@ + + 5 + - 20 + 30 - 15 + 25 - 20 + 30 - 15 + 25 - - - Enter Password: - - - editPassword + + + 0 + + + 10 + + + 0 + + + 0 + + + 0 + + + 10 + + + + + Enter Password: + + + + + + + 2 + + + + + Qt::StrongFocus + + + Password field + + + + + + + + 16777215 + 4 + + + + 0 + + + 0 + + + -1 + + + false + + + + + + - - - Password field + + + QFrame::NoFrame - - QLineEdit::Password + + QFrame::Plain + + 0 + + + + 10 + + + 0 + + + 0 + + + 0 + + + 10 + + + + + Select Key File: + + + + + + + + + + 0 + 0 + + + + Qt::StrongFocus + + + Key file to unlock the database + + + + + + + Browse for key file + + + Browse for key file + + + Browse… + + + + + + - - - Qt::Vertical + + + 0 - - QSizePolicy::Fixed - - - - 20 - 5 - - - - - - - - Enter Additional Credentials (if any): - - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 15 - 20 - - - - - - - - 3 - - - + + + QLayout::SetMinimumSize + + + 0 + + + 0 + + + 0 + + + 0 + + + + 5 - - - - Key File: - - - keyFileLineEdit - - - - - - - PointingHandCursor - - - Qt::ClickFocus - - - <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!<br>If you do not have a key file, leave this field empty.</p><p>Click for more information…</p> - - - Key file help - - - QToolButton { - border: none; - background: none; -} - - - ? - - - - 12 - 12 - - - - QToolButton::InstantPopup - - - - - - - - + 0 - - - - - 16777215 - 2 - - - - 0 - - - 0 - - - -1 - - - false + + 0 + + + 0 + + + 0 + + + + + Use Hardware Security Key [Serial: 11111111] - - + + false - - - 0 - 0 - + + + 200 + 0 + + + + + 300 + 16777215 + Hardware key slot selection @@ -298,171 +373,103 @@ - - - - - 2 - - - - - 5 - - - - - Hardware Key: - - - challengeResponseCombo - - - - - - - PointingHandCursor - - - Qt::ClickFocus - - - <p>You can use a hardware security key such as a <strong>YubiKey</strong> or <strong>OnlyKey</strong> with slots configured for HMAC-SHA1.</p> -<p>Click for more information…</p> - - - Hardware key help - - - QToolButton { - border: none; - background: none; -} - - - ? - - - - 12 - 12 - - - - QToolButton::InstantPopup - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 0 - 2 - - - - - - - - - - 0 - - - - - - 0 - 0 - - - - Key file to unlock the database - - - QLineEdit::Password - - - true - - - - - - - - - Browse for key file - - - Browse for key file - - - Browse… - - - - - - - 0 - - - - - true - - - Refresh hardware tokens - - - Refresh hardware tokens - - - Refresh - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 0 - 2 - - - - - - - - - + + + + + + + 0 + 0 + + + + No hardware keys found. + + + 1 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + PointingHandCursor + + + Refresh Hardware Keys + + + Refresh Hardware Keys + + + QPushButton { background-color: transparent; border: none; } + + + + + + + + + + PointingHandCursor + + + Qt::TabFocus + + + <p>In addition to a password, you can use a secret file to enhance the security of your database. This file can be generated in your database's security settings.</p><p>This is <strong>not</strong> your *.kdbx database file!</p> + + + Click to add a key file. + + + <a href="#" style="text-decoration: underline">I have a key file</a> + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + 1 + + + Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse + + + + +
    + + 0 + - 15 + 25 + + + 5 + + Qt::StrongFocus + QDialogButtonBox::Close|QDialogButtonBox::Ok @@ -474,17 +481,20 @@ + + 0 + - 20 + 10 - 15 + 10 - 20 + 10 - 15 + 10 @@ -493,8 +503,8 @@ - 40 - 20 + 30 + 0 @@ -508,8 +518,8 @@ - 20 - 40 + 0 + 10 @@ -551,8 +561,8 @@ - 20 - 40 + 0 + 10 @@ -566,8 +576,8 @@ - 40 - 20 + 30 + 0 @@ -617,9 +627,9 @@ - PasswordEdit - QLineEdit -
    gui/PasswordEdit.h
    + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    1
    @@ -635,13 +645,16 @@
    + quickUnlockButton + resetQuickUnlockButton editPassword keyFileLineEdit buttonBrowseFile - challengeResponseCombo - buttonRedetectYubikey - quickUnlockButton - resetQuickUnlockButton + useHardwareKeyCheckBox + hardwareKeyCombo + refreshHardwareKeys + addKeyFileLinkLabel + buttonBox diff --git a/src/gui/DatabaseTabWidget.cpp b/src/gui/DatabaseTabWidget.cpp index 61ecad5ca..c8639eb44 100644 --- a/src/gui/DatabaseTabWidget.cpp +++ b/src/gui/DatabaseTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -21,14 +21,15 @@ #include #include "autotype/AutoType.h" +#include "core/Merger.h" #include "core/Tools.h" #include "format/CsvExporter.h" #include "gui/Clipboard.h" +#include "gui/DatabaseIcons.h" #include "gui/DatabaseOpenDialog.h" #include "gui/DatabaseWidget.h" #include "gui/DatabaseWidgetStateSync.h" #include "gui/FileDialog.h" -#include "gui/HtmlExporter.h" #include "gui/MessageBox.h" #include "gui/export/ExportDialog.h" #ifdef Q_OS_MACOS @@ -41,6 +42,8 @@ DatabaseTabWidget::DatabaseTabWidget(QWidget* parent) , m_dbWidgetStateSync(new DatabaseWidgetStateSync(this)) , m_dbWidgetPendingLock(nullptr) , m_databaseOpenDialog(new DatabaseOpenDialog(this)) + , m_importWizard(nullptr) + , m_databaseOpenInProgress(false) { auto* tabBar = new QTabBar(this); tabBar->setAcceptDrops(true); @@ -55,27 +58,30 @@ DatabaseTabWidget::DatabaseTabWidget(QWidget* parent) m_dbWidgetStateSync, SLOT(setActive(DatabaseWidget*))); connect(autoType(), SIGNAL(globalAutoTypeTriggered(const QString&)), SLOT(performGlobalAutoType(const QString&))); connect(autoType(), SIGNAL(autotypeRetypeTimeout()), SLOT(relockPendingDatabase())); - connect(autoType(), SIGNAL(autotypeRejected()), SLOT(relockPendingDatabase())); + connect(autoType(), SIGNAL(autotypeFinished()), SLOT(relockPendingDatabase())); connect(m_databaseOpenDialog.data(), &DatabaseOpenDialog::dialogFinished, this, &DatabaseTabWidget::handleDatabaseUnlockDialogFinished); // clang-format on #ifdef Q_OS_MACOS - connect(macUtils(), SIGNAL(lockDatabases()), SLOT(lockDatabases())); + connect(macUtils(), SIGNAL(userSwitched()), SLOT(lockDatabasesOnUserSwitch())); #endif + + m_lockDelayTimer.setSingleShot(true); + connect(&m_lockDelayTimer, &QTimer::timeout, this, [this] { lockDatabases(); }); } -DatabaseTabWidget::~DatabaseTabWidget() -{ -} +DatabaseTabWidget::~DatabaseTabWidget() = default; void DatabaseTabWidget::toggleTabbar() { if (count() > 1) { tabBar()->show(); + setFocusPolicy(Qt::StrongFocus); emit tabVisibilityChanged(true); } else { tabBar()->hide(); + setFocusPolicy(Qt::NoFocus); emit tabVisibilityChanged(false); } } @@ -152,11 +158,12 @@ void DatabaseTabWidget::addDatabaseTab(const QString& filePath, const QString& password, const QString& keyfile) { - QFileInfo fileInfo(filePath); + QString cleanFilePath = QDir::toNativeSeparators(filePath); + QFileInfo fileInfo(cleanFilePath); QString canonicalFilePath = fileInfo.canonicalFilePath(); if (canonicalFilePath.isEmpty()) { - emit messageGlobal(tr("Failed to open %1. It either does not exist or is not accessible.").arg(filePath), + emit messageGlobal(tr("Failed to open %1. It either does not exist or is not accessible.").arg(cleanFilePath), MessageWidget::Error); return; } @@ -175,10 +182,10 @@ void DatabaseTabWidget::addDatabaseTab(const QString& filePath, } } - auto* dbWidget = new DatabaseWidget(QSharedPointer::create(filePath), this); + auto* dbWidget = new DatabaseWidget(QSharedPointer::create(cleanFilePath), this); addDatabaseTab(dbWidget, inBackground); dbWidget->performUnlockDatabase(password, keyfile); - updateLastDatabases(filePath); + updateLastDatabases(dbWidget->database()); } /** @@ -202,6 +209,7 @@ void DatabaseTabWidget::lockAndSwitchToFirstUnlockedDatabase(int index) for (int i = 0, c = count(); i < c; ++i) { if (!databaseWidgetFromIndex(i)->isLocked()) { setCurrentIndex(i); + emitActiveDatabaseChanged(); return; } } @@ -237,30 +245,79 @@ void DatabaseTabWidget::addDatabaseTab(DatabaseWidget* dbWidget, bool inBackgrou SLOT(updateTabName())); connect(dbWidget, SIGNAL(databaseModified()), SLOT(updateTabName())); connect(dbWidget, SIGNAL(databaseSaved()), SLOT(updateTabName())); + connect(dbWidget, SIGNAL(databaseSaved()), SLOT(updateLastDatabases())); connect(dbWidget, SIGNAL(databaseUnlocked()), SLOT(updateTabName())); connect(dbWidget, SIGNAL(databaseUnlocked()), SLOT(emitDatabaseLockChanged())); connect(dbWidget, SIGNAL(databaseLocked()), SLOT(updateTabName())); connect(dbWidget, SIGNAL(databaseLocked()), SLOT(emitDatabaseLockChanged())); + connect(dbWidget, + &DatabaseWidget::unlockDatabaseInDialogForSync, + this, + &DatabaseTabWidget::unlockDatabaseInDialogForSync); } -void DatabaseTabWidget::importCsv() +void DatabaseTabWidget::importFile() { - auto filter = QString("%1 (*.csv);;%2 (*)").arg(tr("CSV file"), tr("All files")); - auto fileName = fileDialog()->getOpenFileName(this, tr("Select CSV file"), FileDialog::getLastDir("csv"), filter); - if (fileName.isEmpty()) { - return; - } + // Show the import wizard + m_importWizard = new ImportWizard(this); - FileDialog::saveLastDir("csv", fileName, true); + connect(m_importWizard.data(), &QWizard::finished, [&](int result) { + if (result != QDialog::Accepted) { + return; + } - auto db = execNewDatabaseWizard(); - if (!db) { - return; - } + auto db = m_importWizard->database(); + if (!db) { + // Import wizard was cancelled + return; + } - auto* dbWidget = new DatabaseWidget(db, this); - addDatabaseTab(dbWidget); - dbWidget->switchToCsvImport(fileName); + switch (m_importWizard->importIntoType()) { + case ImportWizard::EXISTING_DATABASE: + for (int i = 0, c = count(); i < c; ++i) { + auto importInto = m_importWizard->importInto(); + // Find the database and group to import into based on import wizard choice + auto dbWidget = databaseWidgetFromIndex(i); + if (!dbWidget->isLocked() && dbWidget->database()->uuid() == importInto.first) { + auto group = dbWidget->database()->rootGroup()->findGroupByUuid(importInto.second); + if (group) { + // Extract the root group from the import database + auto importGroup = db->setRootGroup(new Group()); + importGroup->setParent(group); + setCurrentIndex(i); + return; + } + } + } + break; + case ImportWizard::TEMPORARY_DATABASE: { + // Use the already created database as temporary database + auto dbWidget = new DatabaseWidget(db, this); + addDatabaseTab(dbWidget); + return; + } + default: + // Start the new database wizard with the imported database + auto newDb = execNewDatabaseWizard(); + if (newDb) { + // Merge the imported db into the new one + Merger merger(db.data(), newDb.data()); + merger.setSkipDatabaseCustomData(true); + merger.merge(); + // Transfer the root group data + newDb->rootGroup()->setName(db->rootGroup()->name()); + newDb->rootGroup()->setNotes(db->rootGroup()->notes()); + // Show the new database + auto dbWidget = new DatabaseWidget(newDb, this); + addDatabaseTab(dbWidget); + newDb->markAsModified(); + return; + } + } + }); + + // use `open` instead of `exec`. `exec` should not be used, see https://doc.qt.io/qt-6/qdialog.html#exec + m_importWizard->show(); } void DatabaseTabWidget::mergeDatabase() @@ -282,49 +339,11 @@ void DatabaseTabWidget::mergeDatabase(const QString& filePath) unlockDatabaseInDialog(currentDatabaseWidget(), DatabaseOpenDialog::Intent::Merge, filePath); } -void DatabaseTabWidget::importKeePass1Database() -{ - auto filter = QString("%1 (*.kdb);;%2 (*)").arg(tr("KeePass 1 database"), tr("All files")); - auto fileName = - fileDialog()->getOpenFileName(this, tr("Open KeePass 1 database"), FileDialog::getLastDir("kp1"), filter); - if (fileName.isEmpty()) { - return; - } - - FileDialog::saveLastDir("kp1", fileName, true); - - auto db = QSharedPointer::create(); - auto* dbWidget = new DatabaseWidget(db, this); - addDatabaseTab(dbWidget); - dbWidget->switchToImportKeepass1(fileName); -} - -void DatabaseTabWidget::importOpVaultDatabase() -{ - auto defaultDir = FileDialog::getLastDir("opvault"); -#ifdef Q_OS_MACOS - QString fileName = fileDialog()->getOpenFileName(this, tr("Open OPVault"), defaultDir, "OPVault (*.opvault)"); -#else - QString fileName = fileDialog()->getExistingDirectory(this, tr("Open OPVault"), defaultDir); -#endif - - if (fileName.isEmpty()) { - return; - } - - FileDialog::saveLastDir("opvault", fileName); - - auto db = QSharedPointer::create(); - auto* dbWidget = new DatabaseWidget(db, this); - addDatabaseTab(dbWidget); - dbWidget->switchToImportOpVault(fileName); -} - /** * Attempt to close the current database and remove its tab afterwards. * * @param index index of the database tab to close - * @return true if database was closed successully + * @return true if database was closed successfully */ bool DatabaseTabWidget::closeCurrentDatabaseTab() { @@ -335,7 +354,7 @@ bool DatabaseTabWidget::closeCurrentDatabaseTab() * Attempt to close the database tab that sent the close request. * * @param index index of the database tab to close - * @return true if database was closed successully + * @return true if database was closed successfully */ bool DatabaseTabWidget::closeDatabaseTabFromSender() { @@ -346,7 +365,7 @@ bool DatabaseTabWidget::closeDatabaseTabFromSender() * Attempt to close a database and remove its tab afterwards. * * @param index index of the database tab to close - * @return true if database was closed successully + * @return true if database was closed successfully */ bool DatabaseTabWidget::closeDatabaseTab(int index) { @@ -357,7 +376,7 @@ bool DatabaseTabWidget::closeDatabaseTab(int index) * Attempt to close a database and remove its tab afterwards. * * @param dbWidget \link DatabaseWidget to close - * @return true if database was closed successully + * @return true if database was closed successfully */ bool DatabaseTabWidget::closeDatabaseTab(DatabaseWidget* dbWidget) { @@ -417,7 +436,7 @@ bool DatabaseTabWidget::saveDatabaseAs(int index) auto* dbWidget = databaseWidgetFromIndex(index); bool ok = dbWidget->saveAs(); if (ok) { - updateLastDatabases(dbWidget->database()->filePath()); + updateLastDatabases(dbWidget->database()); } return ok; } @@ -431,7 +450,7 @@ bool DatabaseTabWidget::saveDatabaseBackup(int index) auto* dbWidget = databaseWidgetFromIndex(index); bool ok = dbWidget->saveBackup(); if (ok) { - updateLastDatabases(dbWidget->database()->filePath()); + updateLastDatabases(dbWidget->database()); } return ok; } @@ -488,6 +507,40 @@ void DatabaseTabWidget::exportToHtml() exportDialog->exec(); } +void DatabaseTabWidget::exportToXML() +{ + auto db = databaseWidgetFromIndex(currentIndex())->database(); + if (!db) { + Q_ASSERT(false); + return; + } + + if (!warnOnExport()) { + return; + } + + auto fileName = fileDialog()->getSaveFileName( + this, tr("Export database to XML file"), FileDialog::getLastDir("xml"), tr("XML file").append(" (*.xml)")); + if (fileName.isEmpty()) { + return; + } + + FileDialog::saveLastDir("xml", fileName, true); + + QByteArray xmlData; + QString err; + if (!db->extract(xmlData, &err)) { + emit messageGlobal(tr("Writing the XML file failed").append("\n").append(err), MessageWidget::Error); + } + + QFile file(fileName); + if (!file.open(QIODevice::WriteOnly | QIODevice::Truncate)) { + emit messageGlobal(tr("Writing the XML file failed").append("\n").append(file.errorString()), + MessageWidget::Error); + } + file.write(xmlData); +} + bool DatabaseTabWidget::warnOnExport() { auto ans = @@ -500,21 +553,51 @@ bool DatabaseTabWidget::warnOnExport() return ans == MessageBox::Yes; } +void DatabaseTabWidget::showDatabaseReports(bool state) +{ + if (state) { + currentDatabaseWidget()->switchToDatabaseReports(); + } else { + currentDatabaseWidget()->switchToMainView(); + } +} + +void DatabaseTabWidget::showDatabaseSettings(bool state) +{ + if (state) { + currentDatabaseWidget()->switchToDatabaseSettings(); + } else { + currentDatabaseWidget()->switchToMainView(); + } +} + void DatabaseTabWidget::showDatabaseSecurity() { currentDatabaseWidget()->switchToDatabaseSecurity(); } -void DatabaseTabWidget::showDatabaseReports() +#ifdef WITH_XC_BROWSER_PASSKEYS +void DatabaseTabWidget::showPasskeys() { - currentDatabaseWidget()->switchToDatabaseReports(); + currentDatabaseWidget()->switchToPasskeys(); } -void DatabaseTabWidget::showDatabaseSettings() +void DatabaseTabWidget::importPasskey() { - currentDatabaseWidget()->switchToDatabaseSettings(); + currentDatabaseWidget()->showImportPasskeyDialog(); } +void DatabaseTabWidget::importPasskeyToEntry() +{ + currentDatabaseWidget()->showImportPasskeyDialog(true); +} + +void DatabaseTabWidget::removePasskeyFromEntry() +{ + currentDatabaseWidget()->removePasskeyFromEntry(); +} +#endif + bool DatabaseTabWidget::isModified(int index) const { if (count() == 0) { @@ -553,43 +636,23 @@ bool DatabaseTabWidget::hasLockableDatabases() const */ QString DatabaseTabWidget::tabName(int index) { - if (index == -1 || index > count()) { - return ""; + auto dbWidget = databaseWidgetFromIndex(index); + if (!dbWidget) { + return {}; } - auto* dbWidget = databaseWidgetFromIndex(index); - - auto db = dbWidget->database(); - Q_ASSERT(db); - if (!db) { - return ""; - } - - QString tabName; - - if (!db->filePath().isEmpty()) { - QFileInfo fileInfo(db->filePath()); - - if (db->metadata()->name().isEmpty()) { - tabName = fileInfo.fileName(); - } else { - tabName = db->metadata()->name(); - } - - setTabToolTip(index, fileInfo.absoluteFilePath()); - } else { - if (db->metadata()->name().isEmpty()) { - tabName = tr("New Database"); - } else { - tabName = tr("%1 [New Database]", "Database tab name modifier").arg(db->metadata()->name()); - } - } + auto tabName = dbWidget->displayName(); if (dbWidget->isLocked()) { tabName = tr("%1 [Locked]", "Database tab name modifier").arg(tabName); } - if (db->isModified()) { + if (dbWidget->database()->isTemporaryDatabase()) { + tabName = tr("%1 [Temporary]", "Database tab name modifier").arg(tabName); + } + + // needs to be last check, as MainWindow may remove the asterisk again + if (dbWidget->database()->isModified()) { tabName.append("*"); } @@ -612,6 +675,13 @@ void DatabaseTabWidget::updateTabName(int index) } index = indexOf(dbWidget); setTabText(index, tabName(index)); + setTabToolTip(index, dbWidget->displayFilePath()); + auto iconIndex = dbWidget->database()->publicIcon(); + if (iconIndex >= 0 && iconIndex < databaseIcons()->count()) { + setTabIcon(index, databaseIcons()->icon(iconIndex)); + } else { + setTabIcon(index, {}); + } emit tabNameChanged(); } @@ -648,6 +718,25 @@ bool DatabaseTabWidget::lockDatabases() return numLocked == c; } +void DatabaseTabWidget::lockDatabasesDelayed() +{ + // Delay at least 1 second and up to 20 seconds depending on clipboard state. + // This allows for Auto-Type, Browser Extension, and clipboard to function + // even with "Lock on Minimize" setting enabled. + int lockDelay = qBound(1, clipboard()->secondsToClear(), 20); + m_lockDelayTimer.setInterval(lockDelay * 1000); + if (!m_lockDelayTimer.isActive()) { + m_lockDelayTimer.start(); + } +} + +void DatabaseTabWidget::lockDatabasesOnUserSwitch() +{ + if (config()->get(Config::Security_LockDatabaseOnUserSwitch).toBool()) { + lockDatabases(); + } +} + /** * Unlock a database with an unlock popup dialog. * @@ -699,6 +788,11 @@ void DatabaseTabWidget::unlockAnyDatabaseInDialog(DatabaseOpenDialog::Intent int displayUnlockDialog(); } +void DatabaseTabWidget::unlockDatabaseInDialogForSync(const QString& filePath) +{ + unlockDatabaseInDialog(currentDatabaseWidget(), DatabaseOpenDialog::Intent::RemoteSync, filePath); +} + /** * Display the unlock dialog after it's been initialized. * This is an internal method, it should only be called by unlockDatabaseInDialog or unlockAnyDatabaseInDialog. @@ -725,7 +819,7 @@ void DatabaseTabWidget::handleDatabaseUnlockDialogFinished(bool accepted, Databa { // change the active tab to the database that was just unlocked in the dialog auto intent = m_databaseOpenDialog->intent(); - if (accepted && intent != DatabaseOpenDialog::Intent::Merge) { + if (accepted && intent != DatabaseOpenDialog::Intent::Merge && intent != DatabaseOpenDialog::Intent::RemoteSync) { int index = indexOf(dbWidget); if (index != -1) { setCurrentIndex(index); @@ -737,6 +831,9 @@ void DatabaseTabWidget::handleDatabaseUnlockDialogFinished(bool accepted, Databa m_dbWidgetPendingLock = dbWidget; } + // If browser extension requested the unlock make sure cancel is handled + m_databaseOpenInProgress = false; + // signal other objects that the dialog finished emit databaseUnlockDialogFinished(accepted, dbWidget); } @@ -760,13 +857,17 @@ void DatabaseTabWidget::relockPendingDatabase() m_dbWidgetPendingLock = nullptr; } -void DatabaseTabWidget::updateLastDatabases(const QString& filename) +void DatabaseTabWidget::updateLastDatabases(const QSharedPointer& database) { + if (database->isTemporaryDatabase() || database->filePath().isEmpty()) { + return; + } + auto filename = database->filePath(); if (!config()->get(Config::RememberLastDatabases).toBool()) { config()->remove(Config::LastDatabases); } else { QStringList lastDatabases = config()->get(Config::LastDatabases).toStringList(); - lastDatabases.prepend(filename); + lastDatabases.prepend(QDir::toNativeSeparators(filename)); lastDatabases.removeDuplicates(); while (lastDatabases.count() > config()->get(Config::NumberOfRememberedLastDatabases).toInt()) { @@ -776,6 +877,15 @@ void DatabaseTabWidget::updateLastDatabases(const QString& filename) } } +void DatabaseTabWidget::updateLastDatabases() +{ + auto dbWidget = currentDatabaseWidget(); + + if (dbWidget) { + updateLastDatabases(dbWidget->database()); + } +} + void DatabaseTabWidget::emitActiveDatabaseChanged() { emit activeDatabaseChanged(currentDatabaseWidget()); @@ -793,6 +903,7 @@ void DatabaseTabWidget::emitDatabaseLockChanged() emit databaseLocked(dbWidget); } else { emit databaseUnlocked(dbWidget); + m_databaseOpenInProgress = false; } } @@ -825,6 +936,11 @@ void DatabaseTabWidget::performGlobalAutoType(const QString& search) void DatabaseTabWidget::performBrowserUnlock() { + if (m_databaseOpenInProgress) { + return; + } + + m_databaseOpenInProgress = true; auto dbWidget = currentDatabaseWidget(); if (dbWidget && dbWidget->isLocked()) { unlockAnyDatabaseInDialog(DatabaseOpenDialog::Intent::Browser); diff --git a/src/gui/DatabaseTabWidget.h b/src/gui/DatabaseTabWidget.h index 8432116ed..a5074a84c 100644 --- a/src/gui/DatabaseTabWidget.h +++ b/src/gui/DatabaseTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -19,9 +19,12 @@ #define KEEPASSX_DATABASETABWIDGET_H #include "DatabaseOpenDialog.h" +#include "config-keepassx.h" #include "gui/MessageWidget.h" +#include "wizard/ImportWizard.h" #include +#include class Database; class DatabaseWidget; @@ -62,24 +65,33 @@ public slots: DatabaseWidget* newDatabase(); void openDatabase(); void mergeDatabase(); - void importCsv(); - void importKeePass1Database(); - void importOpVaultDatabase(); + void importFile(); bool saveDatabase(int index = -1); bool saveDatabaseAs(int index = -1); bool saveDatabaseBackup(int index = -1); void exportToCsv(); void exportToHtml(); + void exportToXML(); bool lockDatabases(); + void lockDatabasesDelayed(); + void lockDatabasesOnUserSwitch(); void closeDatabaseFromSender(); void unlockDatabaseInDialog(DatabaseWidget* dbWidget, DatabaseOpenDialog::Intent intent); void unlockDatabaseInDialog(DatabaseWidget* dbWidget, DatabaseOpenDialog::Intent intent, const QString& filePath); + void unlockDatabaseInDialogForSync(const QString& filePath); + void unlockAnyDatabaseInDialog(DatabaseOpenDialog::Intent intent); void relockPendingDatabase(); + void showDatabaseReports(bool state); + void showDatabaseSettings(bool state); void showDatabaseSecurity(); - void showDatabaseReports(); - void showDatabaseSettings(); +#ifdef WITH_XC_BROWSER_PASSKEYS + void showPasskeys(); + void importPasskey(); + void importPasskeyToEntry(); + void removePasskeyFromEntry(); +#endif void performGlobalAutoType(const QString& search); void performBrowserUnlock(); @@ -101,17 +113,20 @@ private slots: void emitDatabaseLockChanged(); void handleDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget); void handleExportError(const QString& reason); + void updateLastDatabases(); private: QSharedPointer execNewDatabaseWizard(); - void updateLastDatabases(const QString& filename); + void updateLastDatabases(const QSharedPointer& database); bool warnOnExport(); - void unlockAnyDatabaseInDialog(DatabaseOpenDialog::Intent intent); void displayUnlockDialog(); QPointer m_dbWidgetStateSync; QPointer m_dbWidgetPendingLock; QPointer m_databaseOpenDialog; + QPointer m_importWizard; + QTimer m_lockDelayTimer; + bool m_databaseOpenInProgress; }; #endif // KEEPASSX_DATABASETABWIDGET_H diff --git a/src/gui/DatabaseWidget.cpp b/src/gui/DatabaseWidget.cpp index af3245adf..155f02465 100644 --- a/src/gui/DatabaseWidget.cpp +++ b/src/gui/DatabaseWidget.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * Copyright (C) 2021 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 @@ -23,25 +23,28 @@ #include #include #include +#include #include #include #include #include +#include #include -#include #include "autotype/AutoType.h" +#include "core/AsyncTask.h" #include "core/EntrySearcher.h" #include "core/Merger.h" +#include "core/Tools.h" #include "gui/Clipboard.h" #include "gui/CloneDialog.h" +#include "gui/DatabaseOpenDialog.h" +#include "gui/DatabaseOpenWidget.h" #include "gui/EntryPreviewWidget.h" #include "gui/FileDialog.h" #include "gui/GuiTools.h" -#include "gui/KeePass1OpenWidget.h" #include "gui/MainWindow.h" #include "gui/MessageBox.h" -#include "gui/OpVaultOpenWidget.h" #include "gui/TotpDialog.h" #include "gui/TotpExportSettingsDialog.h" #include "gui/TotpSetupDialog.h" @@ -50,8 +53,11 @@ #include "gui/group/EditGroupWidget.h" #include "gui/group/GroupView.h" #include "gui/reports/ReportsDialog.h" -#include "gui/tag/TagModel.h" +#include "gui/tag/TagView.h" +#include "gui/widgets/ElidedLabel.h" #include "keeshare/KeeShare.h" +#include "remote/RemoteHandler.h" +#include "remote/RemoteSettings.h" #ifdef WITH_XC_NETWORKING #include "gui/IconDownloaderDialog.h" @@ -61,6 +67,10 @@ #include "sshagent/SSHAgent.h" #endif +#ifdef WITH_XC_BROWSER_PASSKEYS +#include "gui/passkeys/PasskeyImporter.h" +#endif + DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) : QStackedWidget(parent) , m_db(std::move(db)) @@ -71,23 +81,26 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) , m_previewView(new EntryPreviewWidget(this)) , m_previewSplitter(new QSplitter(m_mainWidget)) , m_searchingLabel(new QLabel(this)) - , m_shareLabel(new QLabel(this)) - , m_csvImportWizard(new CsvImportWizard(this)) + , m_shareLabel(new ElidedLabel(this)) , m_editEntryWidget(new EditEntryWidget(this)) , m_editGroupWidget(new EditGroupWidget(this)) , m_historyEditEntryWidget(new EditEntryWidget(this)) , m_reportsDialog(new ReportsDialog(this)) , m_databaseSettingDialog(new DatabaseSettingsDialog(this)) , m_databaseOpenWidget(new DatabaseOpenWidget(this)) - , m_keepass1OpenWidget(new KeePass1OpenWidget(this)) - , m_opVaultOpenWidget(new OpVaultOpenWidget(this)) , m_groupView(new GroupView(m_db.data(), this)) - , m_tagView(new QListView(this)) + , m_tagView(new TagView(this)) , m_saveAttempts(0) + , m_remoteSettings(new RemoteSettings(m_db, this)) , m_entrySearcher(new EntrySearcher(false)) { Q_ASSERT(m_db); + // Read public headers if the database hasn't been opened yet + if (!m_db->isInitialized()) { + m_db->open(nullptr); + } + m_messageWidget->setHidden(true); auto mainLayout = new QVBoxLayout(); @@ -97,20 +110,15 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) hbox->addWidget(m_mainSplitter); m_mainWidget->setLayout(mainLayout); - // Setup tags view and place under groups - auto tagModel = new TagModel(m_db); + // Setup searches and tags view and place under groups m_tagView->setObjectName("tagView"); - m_tagView->setModel(tagModel); - m_tagView->setFrameStyle(QFrame::NoFrame); - m_tagView->setSelectionMode(QListView::SingleSelection); - m_tagView->setSelectionBehavior(QListView::SelectRows); - m_tagView->setCurrentIndex(tagModel->index(0)); - connect(m_tagView, SIGNAL(activated(QModelIndex)), this, SLOT(filterByTag(QModelIndex))); - connect(m_tagView, SIGNAL(clicked(QModelIndex)), this, SLOT(filterByTag(QModelIndex))); + m_tagView->setDatabase(m_db); + connect(m_tagView, SIGNAL(activated(QModelIndex)), this, SLOT(filterByTag())); + connect(m_tagView, SIGNAL(clicked(QModelIndex)), this, SLOT(filterByTag())); auto tagsWidget = new QWidget(); auto tagsLayout = new QVBoxLayout(); - auto tagsTitle = new QLabel(tr("Database Tags")); + auto tagsTitle = new QLabel(tr("Searches and Tags")); tagsTitle->setProperty("title", true); tagsWidget->setObjectName("tagWidget"); tagsWidget->setLayout(tagsLayout); @@ -122,8 +130,11 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) m_groupSplitter->setChildrenCollapsible(true); m_groupSplitter->addWidget(m_groupView); m_groupSplitter->addWidget(tagsWidget); - m_groupSplitter->setStretchFactor(0, 70); - m_groupSplitter->setStretchFactor(1, 30); + m_groupSplitter->setStretchFactor(0, 100); + m_groupSplitter->setStretchFactor(1, 0); + m_groupSplitter->setSizes({1, 1}); + // Initial visibility based on config value + m_groupSplitter->setVisible(!config()->get(Config::GUI_HideGroupPanel).toBool()); auto rightHandSideWidget = new QWidget(m_mainSplitter); auto rightHandSideVBox = new QVBoxLayout(); @@ -136,11 +147,12 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) rightHandSideWidget->setLayout(rightHandSideVBox); m_entryView = new EntryView(rightHandSideWidget); - m_mainSplitter->setChildrenCollapsible(true); + m_mainSplitter->setChildrenCollapsible(false); m_mainSplitter->addWidget(m_groupSplitter); m_mainSplitter->addWidget(rightHandSideWidget); - m_mainSplitter->setStretchFactor(0, 30); - m_mainSplitter->setStretchFactor(1, 70); + m_mainSplitter->setStretchFactor(0, 0); + m_mainSplitter->setStretchFactor(1, 100); + m_mainSplitter->setSizes({1, 1}); m_previewSplitter->setOrientation(Qt::Vertical); m_previewSplitter->setChildrenCollapsible(true); @@ -162,7 +174,7 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) #ifdef WITH_XC_KEESHARE m_shareLabel->setObjectName("KeeShareBanner"); - m_shareLabel->setText(tr("Shared group…")); + m_shareLabel->setRawText(tr("Shared group…")); m_shareLabel->setAlignment(Qt::AlignCenter); m_shareLabel->setVisible(false); #endif @@ -176,13 +188,11 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) m_previewSplitter->setSizes({1, 1}); m_editEntryWidget->setObjectName("editEntryWidget"); + m_historyEditEntryWidget->setObjectName("editEntryHistoryWidget"); m_editGroupWidget->setObjectName("editGroupWidget"); - m_csvImportWizard->setObjectName("csvImportWizard"); m_reportsDialog->setObjectName("reportsDialog"); m_databaseSettingDialog->setObjectName("databaseSettingsDialog"); m_databaseOpenWidget->setObjectName("databaseOpenWidget"); - m_keepass1OpenWidget->setObjectName("keepass1OpenWidget"); - m_opVaultOpenWidget->setObjectName("opVaultOpenWidget"); addChildWidget(m_mainWidget); addChildWidget(m_editEntryWidget); @@ -191,28 +201,17 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) addChildWidget(m_databaseSettingDialog); addChildWidget(m_historyEditEntryWidget); addChildWidget(m_databaseOpenWidget); - addChildWidget(m_csvImportWizard); - addChildWidget(m_keepass1OpenWidget); - addChildWidget(m_opVaultOpenWidget); // clang-format off connect(m_mainSplitter, SIGNAL(splitterMoved(int,int)), SIGNAL(splitterSizesChanged())); connect(m_groupSplitter, SIGNAL(splitterMoved(int,int)), SIGNAL(splitterSizesChanged())); connect(m_previewSplitter, SIGNAL(splitterMoved(int,int)), SIGNAL(splitterSizesChanged())); connect(this, SIGNAL(currentModeChanged(DatabaseWidget::Mode)), m_previewView, SLOT(setDatabaseMode(DatabaseWidget::Mode))); - connect(m_previewView, SIGNAL(errorOccurred(QString)), SLOT(showErrorMessage(QString))); connect(m_previewView, SIGNAL(entryUrlActivated(Entry*)), SLOT(openUrlForEntry(Entry*))); + connect(m_previewView, SIGNAL(copyTextRequested(const QString&)), SLOT(setClipboardTextAndMinimize(const QString&))); connect(m_entryView, SIGNAL(viewStateChanged()), SIGNAL(entryViewStateChanged())); connect(m_groupView, SIGNAL(groupSelectionChanged()), SLOT(onGroupChanged())); - connect(m_groupView, SIGNAL(groupSelectionChanged()), SIGNAL(groupChanged())); connect(m_groupView, &GroupView::groupFocused, this, [this] { m_previewView->setGroup(currentGroup()); }); - connect(m_entryView, &EntryView::entrySelectionChanged, this, [this](Entry * currentEntry) { - if (currentEntry) { - m_previewView->setEntry(currentEntry); - } else { - m_previewView->setGroup(groupView()->currentGroup()); - } - }); connect(m_entryView, SIGNAL(entryActivated(Entry*,EntryModel::ModelColumn)), SLOT(entryActivationSignalReceived(Entry*,EntryModel::ModelColumn))); connect(m_entryView, SIGNAL(entrySelectionChanged(Entry*)), SLOT(onEntryChanged(Entry*))); @@ -223,16 +222,19 @@ DatabaseWidget::DatabaseWidget(QSharedPointer db, QWidget* parent) connect(m_reportsDialog, SIGNAL(editFinished(bool)), SLOT(switchToMainView(bool))); connect(m_databaseSettingDialog, SIGNAL(editFinished(bool)), SLOT(switchToMainView(bool))); connect(m_databaseOpenWidget, SIGNAL(dialogFinished(bool)), SLOT(loadDatabase(bool))); - connect(m_keepass1OpenWidget, SIGNAL(dialogFinished(bool)), SLOT(loadDatabase(bool))); - connect(m_opVaultOpenWidget, SIGNAL(dialogFinished(bool)), SLOT(loadDatabase(bool))); - connect(m_csvImportWizard, SIGNAL(importFinished(bool)), SLOT(csvImportFinished(bool))); connect(this, SIGNAL(currentChanged(int)), SLOT(emitCurrentModeChanged())); connect(this, SIGNAL(requestGlobalAutoType(const QString&)), parent, SLOT(performGlobalAutoType(const QString&))); + connect(config(), &Config::changed, this, &DatabaseWidget::onConfigChanged); // clang-format on connectDatabaseSignals(); m_blockAutoSave = false; + m_reloading = false; + + m_autosaveTimer = new QTimer(this); + m_autosaveTimer->setSingleShot(true); + connect(m_autosaveTimer, SIGNAL(timeout()), this, SLOT(onAutosaveDelayTimeout())); m_searchLimitGroup = config()->get(Config::SearchLimitGroup).toBool(); @@ -272,17 +274,26 @@ QSharedPointer DatabaseWidget::database() const DatabaseWidget::Mode DatabaseWidget::currentMode() const { - if (currentWidget() == nullptr) { - return Mode::None; - } else if (currentWidget() == m_mainWidget) { - return Mode::ViewMode; - } else if (currentWidget() == m_databaseOpenWidget || currentWidget() == m_keepass1OpenWidget) { - return Mode::LockedMode; - } else if (currentWidget() == m_csvImportWizard) { - return Mode::ImportMode; + auto mode = Mode::None; + auto widget = currentWidget(); + if (widget == m_mainWidget) { + mode = Mode::ViewMode; + } else if (widget == m_databaseOpenWidget) { + mode = Mode::LockedMode; + } else if (widget == m_reportsDialog) { + mode = Mode::ReportsMode; + } else if (widget == m_databaseSettingDialog) { + mode = Mode::DatabaseSettingsMode; + } else if (widget == m_editEntryWidget || widget == m_historyEditEntryWidget) { + mode = Mode::EditEntryMode; + } else if (widget == m_editGroupWidget) { + mode = Mode::EditGroupMode; } else { - return Mode::EditMode; + // We are missing a condition if we reach here + Q_ASSERT(false); } + + return mode; } bool DatabaseWidget::isLocked() const @@ -330,6 +341,45 @@ bool DatabaseWidget::isEditWidgetModified() const return false; } +QString DatabaseWidget::displayName() const +{ + if (!m_db) { + return {}; + } + + auto displayName = m_db->metadata()->name(); + if (!m_db->filePath().isEmpty()) { + if (displayName.isEmpty()) { + displayName = displayFileName(); + } + } else { + if (displayName.isEmpty()) { + displayName = tr("New Database"); + } else { + displayName = tr("%1 [New Database]", "Database tab name modifier").arg(displayName); + } + } + + return displayName; +} + +QString DatabaseWidget::displayFileName() const +{ + if (m_db) { + QFileInfo fileinfo(m_db->filePath()); + return fileinfo.fileName(); + } + return {}; +} + +QString DatabaseWidget::displayFilePath() const +{ + if (m_db) { + return m_db->canonicalFilePath(); + } + return {}; +} + QHash> DatabaseWidget::splitterSizes() const { return {{Config::GUI_SplitterState, m_mainSplitter->sizes()}, @@ -339,20 +389,27 @@ QHash> DatabaseWidget::splitterSizes() const void DatabaseWidget::setSplitterSizes(const QHash>& sizes) { + // Set the splitter sizes, if the size is invalid set a default ratio based on this widget size for (auto itr = sizes.constBegin(); itr != sizes.constEnd(); ++itr) { - // Less than two sizes indicates an invalid value - if (itr.value().size() < 2) { - continue; - } + auto value = itr.value(); switch (itr.key()) { case Config::GUI_SplitterState: - m_mainSplitter->setSizes(itr.value()); + if (value.size() < 2) { + value = QList({static_cast(width() * 0.25), static_cast(width() * 0.75)}); + } + m_mainSplitter->setSizes(value); break; case Config::GUI_PreviewSplitterState: - m_previewSplitter->setSizes(itr.value()); + if (value.size() < 2) { + value = QList({static_cast(height() * 0.8), static_cast(height() * 0.2)}); + } + m_previewSplitter->setSizes(value); break; case Config::GUI_GroupSplitterState: - m_groupSplitter->setSizes(itr.value()); + if (value.size() < 2) { + value = QList({static_cast(height() * 0.6), static_cast(height() * 0.4)}); + } + m_groupSplitter->setSizes(value); break; default: break; @@ -360,6 +417,15 @@ void DatabaseWidget::setSplitterSizes(const QHash> } } +void DatabaseWidget::onConfigChanged(Config::ConfigKey key) +{ + if (key == Config::GUI_HideGroupPanel) { + // Toggle the group splitter visibility and reset the size + m_groupSplitter->setVisible(!config()->get(Config::GUI_HideGroupPanel).toBool()); + setSplitterSizes({{Config::GUI_SplitterState, QList({})}}); + } +} + void DatabaseWidget::setSearchStringForAutoType(const QString& search) { m_searchStringForAutoType = search; @@ -403,10 +469,6 @@ void DatabaseWidget::createEntry() m_newEntry.reset(new Entry()); - if (isSearchActive()) { - m_newEntry->setTitle(getCurrentSearch()); - endSearch(); - } m_newEntry->setUuid(QUuid::createUuid()); m_newEntry->setUsername(m_db->metadata()->defaultUserName()); m_newParent = m_groupView->currentGroup(); @@ -431,8 +493,8 @@ void DatabaseWidget::replaceDatabase(QSharedPointer db) m_db = std::move(db); connectDatabaseSignals(); m_groupView->changeDatabase(m_db); - auto tagModel = new TagModel(m_db); - m_tagView->setModel(tagModel); + m_tagView->setDatabase(m_db); + m_remoteSettings->setDatabase(m_db); // Restore the new parent group pointer, if not found default to the root group // this prevents data loss when merging a database while creating a new entry @@ -464,6 +526,11 @@ void DatabaseWidget::cloneEntry() } auto cloneDialog = new CloneDialog(this, m_db.data(), currentEntry); + connect(cloneDialog, &CloneDialog::entryCloned, this, [this](auto entry) { + refreshSearch(); + m_entryView->setCurrentEntry(entry); + }); + cloneDialog->show(); } @@ -500,10 +567,25 @@ void DatabaseWidget::setupTotp() auto setupTotpDialog = new TotpSetupDialog(this, currentEntry); connect(setupTotpDialog, SIGNAL(totpUpdated()), SIGNAL(entrySelectionChanged())); + if (currentWidget() == m_editEntryWidget) { + // Entry is being edited, tell it when we are finished updating TOTP + connect(setupTotpDialog, SIGNAL(totpUpdated()), m_editEntryWidget, SLOT(updateTotp())); + } connect(this, &DatabaseWidget::databaseLockRequested, setupTotpDialog, &TotpSetupDialog::close); setupTotpDialog->open(); } +void DatabaseWidget::expireSelectedEntries() +{ + const QModelIndexList selected = m_entryView->selectionModel()->selectedRows(); + for (const auto& index : selected) { + auto entry = m_entryView->entryFromIndex(index); + if (entry) { + entry->expireNow(); + } + } +} + void DatabaseWidget::deleteSelectedEntries() { const QModelIndexList selected = m_entryView->selectionModel()->selectedRows(); @@ -571,11 +653,7 @@ void DatabaseWidget::deleteEntries(QList selectedEntries, bool confirm) void DatabaseWidget::setFocus(Qt::FocusReason reason) { - if (reason == Qt::BacktabFocusReason) { - m_previewView->setFocus(); - } else { - m_groupView->setFocus(); - } + focusNextPrevChild(reason == Qt::TabFocusReason); } void DatabaseWidget::focusOnEntries(bool editIfFocused) @@ -636,35 +714,21 @@ void DatabaseWidget::copyUsername() void DatabaseWidget::copyPassword() { - // Some platforms do not properly trap Ctrl+C copy shortcut - // if a text edit or label has focus pass the copy operation to it - - bool clearClipboard = config()->get(Config::Security_ClearClipboard).toBool(); - - auto plainTextEdit = qobject_cast(focusWidget()); - if (plainTextEdit) { - clipboard()->setText(plainTextEdit->textCursor().selectedText(), clearClipboard); - return; - } - - auto label = qobject_cast(focusWidget()); - if (label) { - clipboard()->setText(label->selectedText(), clearClipboard); - return; - } - - auto textEdit = qobject_cast(focusWidget()); - if (textEdit) { - clipboard()->setText(textEdit->textCursor().selectedText(), clearClipboard); - return; - } - auto currentEntry = currentSelectedEntry(); if (currentEntry) { setClipboardTextAndMinimize(currentEntry->resolveMultiplePlaceholders(currentEntry->password())); } } +void DatabaseWidget::copyPasswordTotp() +{ + auto currentEntry = currentSelectedEntry(); + if (currentEntry) { + setClipboardTextAndMinimize( + currentEntry->resolveMultiplePlaceholders(currentEntry->password()).append(currentEntry->totp())); + } +} + void DatabaseWidget::copyURL() { auto currentEntry = currentSelectedEntry(); @@ -690,11 +754,51 @@ void DatabaseWidget::copyAttribute(QAction* action) } } -void DatabaseWidget::filterByTag(const QModelIndex& index) +bool DatabaseWidget::copyFocusedTextSelection() { - m_tagView->selectionModel()->setCurrentIndex(index, QItemSelectionModel::Select); - const auto model = static_cast(m_tagView->model()); - emit requestSearch(model->data(index, Qt::UserRole).toString()); + // If a focused child widget has text selected, copy that text to the clipboard + // and return true. Otherwise, return false. + + const bool clearClipboard = config()->get(Config::Security_ClearClipboard).toBool(); + + const auto plainTextEdit = qobject_cast(focusWidget()); + if (plainTextEdit && plainTextEdit->textCursor().hasSelection()) { + clipboard()->setText(plainTextEdit->textCursor().selectedText(), clearClipboard); + return true; + } + + const auto label = qobject_cast(focusWidget()); + if (label && label->hasSelectedText()) { + clipboard()->setText(label->selectedText(), clearClipboard); + return true; + } + + const auto textEdit = qobject_cast(focusWidget()); + if (textEdit && textEdit->textCursor().hasSelection()) { + clipboard()->setText(textEdit->textCursor().selection().toPlainText(), clearClipboard); + return true; + } + + return false; +} + +void DatabaseWidget::filterByTag() +{ + QStringList searchTerms; + const auto selections = m_tagView->selectionModel()->selectedIndexes(); + for (const auto& index : selections) { + searchTerms << index.data(Qt::UserRole).toString(); + } + emit requestSearch(searchTerms.join(" ")); +} + +void DatabaseWidget::setTag(QAction* action) +{ + auto tag = action->text(); + auto state = action->isChecked(); + for (auto entry : m_entryView->selectedEntries()) { + state ? entry->addTag(tag) : entry->removeTag(tag); + } } void DatabaseWidget::showTotpKeyQrCode() @@ -899,7 +1003,7 @@ void DatabaseWidget::openUrlForEntry(Entry* entry) this); msgbox.setDefaultButton(QMessageBox::No); - QCheckBox* checkbox = new QCheckBox(tr("Remember my choice"), &msgbox); + auto checkbox = new QCheckBox(tr("Remember my choice"), &msgbox); msgbox.setCheckBox(checkbox); bool remember = false; QObject::connect(checkbox, &QCheckBox::stateChanged, [&](int state) { @@ -917,7 +1021,16 @@ void DatabaseWidget::openUrlForEntry(Entry* entry) } if (launch) { - QProcess::startDetached(cmdString.mid(6)); + const QString cmd = cmdString.mid(6); +#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) + QStringList cmdList = QProcess::splitCommand(cmd); + if (!cmdList.isEmpty()) { + const QString program = cmdList.takeFirst(); + QProcess::startDetached(program, cmdList); + } +#else + QProcess::startDetached(cmd); +#endif if (config()->get(Config::MinimizeOnOpenUrl).toBool()) { getMainWindow()->minimizeOrHide(); @@ -928,7 +1041,11 @@ void DatabaseWidget::openUrlForEntry(Entry* entry) } else { QUrl url = QUrl::fromUserInput(entry->resolveMultiplePlaceholders(entry->url())); if (!url.isEmpty()) { +#ifdef KEEPASSXC_DIST_APPIMAGE + QProcess::execute("xdg-open", {url.toString(QUrl::FullyEncoded)}); +#else QDesktopServices::openUrl(url); +#endif if (config()->get(Config::MinimizeOnOpenUrl).toBool()) { getMainWindow()->minimizeOrHide(); @@ -937,7 +1054,7 @@ void DatabaseWidget::openUrlForEntry(Entry* entry) } } -Entry* DatabaseWidget::currentSelectedEntry() +Entry* DatabaseWidget::currentSelectedEntry() const { if (currentWidget() == m_editEntryWidget) { return m_editEntryWidget->currentEntry(); @@ -1017,6 +1134,87 @@ int DatabaseWidget::addChildWidget(QWidget* w) return index; } +void DatabaseWidget::syncWithRemote(const RemoteParams* params) +{ + setDisabled(true); + emit databaseSyncInProgress(); + + QScopedPointer remoteHandler(new RemoteHandler(this)); + RemoteHandler::RemoteResult result; + result.success = false; + result.errorMessage = tr("Remote Sync did not contain any download or upload commands."); + + // Download the database + if (!params->downloadCommand.isEmpty()) { + emit updateSyncProgress(25, tr("Downloading...")); + // Start a download first then merge and upload in the callback + result = remoteHandler->download(params); + if (result.success) { + QString error; + QSharedPointer remoteDb = QSharedPointer::create(); + if (!remoteDb->open(result.filePath, m_db->key(), &error)) { + // Failed to open downloaded remote database with same key + // Unlock downloaded remote database via dialog + syncDatabaseWithLockedDatabase(result.filePath, params); + return; + } + remoteDb->markAsTemporaryDatabase(); + if (!syncWithDatabase(remoteDb, error)) { + // Something failed during the sync process + result.success = false; + result.errorMessage = error; + } + } + } + + uploadAndFinishSync(params, result); +} + +void DatabaseWidget::syncDatabaseWithLockedDatabase(const QString& filePath, const RemoteParams* params) +{ + // disconnect any previously added slots to these signal + disconnect(this, &DatabaseWidget::databaseSyncUnlocked, nullptr, nullptr); + disconnect(this, &DatabaseWidget::databaseSyncUnlockFailed, nullptr, nullptr); + + connect(this, &DatabaseWidget::databaseSyncUnlocked, [this, params](const RemoteHandler::RemoteResult& result) { + uploadAndFinishSync(params, result); + }); + connect(this, &DatabaseWidget::databaseSyncUnlockFailed, [this, params](const RemoteHandler::RemoteResult& result) { + finishSync(params, result); + }); + + emit unlockDatabaseInDialogForSync(filePath); +} + +void DatabaseWidget::uploadAndFinishSync(const RemoteParams* params, RemoteHandler::RemoteResult result) +{ + QScopedPointer remoteHandler(new RemoteHandler(this)); + if (result.success && !params->uploadCommand.isEmpty()) { + emit updateSyncProgress(75, tr("Uploading...")); + result = remoteHandler->upload(result.filePath, params); + } + + finishSync(params, result); +} + +void DatabaseWidget::finishSync(const RemoteParams* params, RemoteHandler::RemoteResult result) +{ + setDisabled(false); + emit updateSyncProgress(-1, ""); + if (result.success) { + emit databaseSyncCompleted(params->name); + showMessage(tr("Remote sync '%1' completed successfully!").arg(params->name), MessageWidget::Positive, false); + } else { + emit databaseSyncFailed(params->name, result.errorMessage); + showErrorMessage(tr("Remote sync '%1' failed: %2").arg(params->name, result.errorMessage)); + } +} + +QList DatabaseWidget::getRemoteParams() const +{ + return m_remoteSettings->getAllRemoteParams(); +} + void DatabaseWidget::switchToMainView(bool previousDialogAccepted) { setCurrentWidget(m_mainWidget); @@ -1045,12 +1243,6 @@ void DatabaseWidget::switchToMainView(bool previousDialogAccepted) // Workaround: ensure entries are focused so search doesn't reset m_entryView->setFocus(); } - - if (sender() == m_entryView || sender() == m_editEntryWidget) { - onEntryChanged(m_entryView->currentEntry()); - } else if (sender() == m_groupView || sender() == m_editGroupWidget) { - onGroupChanged(); - } } void DatabaseWidget::switchToHistoryView(Entry* entry) @@ -1108,6 +1300,8 @@ void DatabaseWidget::connectDatabaseSignals() connect(m_db.data(), &Database::modified, this, &DatabaseWidget::onDatabaseModified); connect(m_db.data(), &Database::databaseSaved, this, &DatabaseWidget::databaseSaved); connect(m_db.data(), &Database::databaseFileChanged, this, &DatabaseWidget::reloadDatabaseFile); + connect(m_db.data(), &Database::databaseNonDataChanged, this, &DatabaseWidget::databaseNonDataChanged); + connect(m_db.data(), &Database::databaseNonDataChanged, this, &DatabaseWidget::onDatabaseNonDataChanged); } void DatabaseWidget::loadDatabase(bool accepted) @@ -1119,6 +1313,7 @@ void DatabaseWidget::loadDatabase(bool accepted) } if (accepted) { + emit databaseAboutToUnlock(); replaceDatabase(openWidget->database()); switchToMainView(); processAutoOpen(); @@ -1128,22 +1323,13 @@ void DatabaseWidget::loadDatabase(bool accepted) // Only show expired entries if first unlock and option is enabled if (m_groupBeforeLock.isNull() && config()->get(Config::GUI_ShowExpiredEntriesOnDatabaseUnlock).toBool()) { int expirationOffset = config()->get(Config::GUI_ShowExpiredEntriesOnDatabaseUnlockOffsetDays).toInt(); - QList expiredEntries; - for (auto entry : m_db->rootGroup()->entriesRecursive()) { - if (entry->willExpireInDays(expirationOffset) && !entry->excludeFromReports() && !entry->isRecycled()) { - expiredEntries << entry; - } - } - - if (!expiredEntries.isEmpty()) { - m_entryView->displaySearch(expiredEntries); - m_entryView->setFirstEntryActive(); - m_searchingLabel->setText( - expirationOffset == 0 - ? tr("Expired entries") - : tr("Entries expiring within %1 day(s)", "", expirationOffset).arg(expirationOffset)); - m_searchingLabel->setVisible(true); + if (expirationOffset <= 0) { + m_nextSearchLabelText = tr("Expired entries"); + } else { + m_nextSearchLabelText = + tr("Entries expiring within %1 day(s)", "", expirationOffset).arg(expirationOffset); } + requestSearch(QString("is:expired-%1").arg(expirationOffset)); } m_groupBeforeLock = QUuid(); @@ -1199,6 +1385,59 @@ void DatabaseWidget::mergeDatabase(bool accepted) emit databaseMerged(m_db); } +void DatabaseWidget::syncUnlockedDatabase(bool accepted) +{ + if (accepted) { + if (!m_db) { + showMessage(tr("No current database."), MessageWidget::Error); + return; + } + + auto* senderDialog = qobject_cast(sender()); + + Q_ASSERT(senderDialog); + if (!senderDialog) { + return; + } + auto destinationDb = senderDialog->database(); + + if (!destinationDb) { + showMessage(tr("No source database, nothing to do."), MessageWidget::Error); + return; + } + + RemoteHandler::RemoteResult result; + QString error; + result.success = syncWithDatabase(destinationDb, error); + result.errorMessage = error; + result.filePath = destinationDb->filePath(); + + emit databaseSyncUnlocked(result); + } + switchToMainView(); +} + +bool DatabaseWidget::syncWithDatabase(const QSharedPointer& otherDb, QString& error) +{ + emit updateSyncProgress(50, tr("Syncing...")); + Merger firstMerge(m_db.data(), otherDb.data()); + Merger secondMerge(otherDb.data(), m_db.data()); + QStringList changeList = firstMerge.merge() + secondMerge.merge(); + + if (!changeList.isEmpty()) { + // Save synced databases + if (!save()) { + error = tr("Error while saving database %1: %2").arg(m_db->filePath(), error); + return false; + } + if (!otherDb->save(Database::Atomic, {}, &error)) { + error = tr("Error while saving database %1: %2").arg(otherDb->filePath(), error); + return false; + } + } + return true; +} + /** * Unlock the database. * @@ -1212,14 +1451,26 @@ void DatabaseWidget::unlockDatabase(bool accepted) if (!senderDialog && (!m_db || !m_db->isInitialized())) { emit closeRequest(); } + if (senderDialog && senderDialog->intent() == DatabaseOpenDialog::Intent::RemoteSync) { + RemoteHandler::RemoteResult result; + result.success = false; + result.errorMessage = "Remote database unlock cancelled."; + emit databaseSyncUnlockFailed(result); + } return; } - if (senderDialog && senderDialog->intent() == DatabaseOpenDialog::Intent::Merge) { - mergeDatabase(accepted); - return; + if (senderDialog) { + if (senderDialog->intent() == DatabaseOpenDialog::Intent::Merge) { + mergeDatabase(accepted); + return; + } else if (senderDialog->intent() == DatabaseOpenDialog::Intent::RemoteSync) { + syncUnlockedDatabase(accepted); + return; + } } + emit databaseAboutToUnlock(); QSharedPointer db; if (senderDialog) { db = senderDialog->database(); @@ -1275,11 +1526,6 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod switchToEntryEdit(entry); } break; - case EntryModel::Url: - if (!entry->url().isEmpty()) { - openUrlForEntry(entry); - } - break; case EntryModel::Totp: if (entry->hasTotp()) { setClipboardTextAndMinimize(entry->totp()); @@ -1300,6 +1546,13 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod // TODO: switch to 'Attachments' tab in details view/pane // case EntryModel::Attachments: // break; + case EntryModel::Url: + if (!entry->url().isEmpty() && config()->get(Config::OpenURLOnDoubleClick).toBool()) { + openUrlForEntry(entry); + break; + } + // Note, order matters here. We want to fall into the default case. + [[fallthrough]]; default: switchToEntryEdit(entry); } @@ -1307,14 +1560,18 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod void DatabaseWidget::switchToDatabaseReports() { - m_reportsDialog->load(m_db); - setCurrentWidget(m_reportsDialog); + if (currentMode() != Mode::ReportsMode) { + m_reportsDialog->load(m_db); + setCurrentWidget(m_reportsDialog); + } } void DatabaseWidget::switchToDatabaseSettings() { - m_databaseSettingDialog->load(m_db); - setCurrentWidget(m_databaseSettingDialog); + if (currentMode() != Mode::DatabaseSettingsMode) { + m_databaseSettingDialog->load(m_db); + setCurrentWidget(m_databaseSettingDialog); + } } void DatabaseWidget::switchToOpenDatabase() @@ -1336,33 +1593,6 @@ void DatabaseWidget::switchToOpenDatabase(const QString& filePath, const QString m_databaseOpenWidget->enterKey(password, keyFile); } -void DatabaseWidget::switchToCsvImport(const QString& filePath) -{ - setCurrentWidget(m_csvImportWizard); - m_csvImportWizard->load(filePath, m_db.data()); -} - -void DatabaseWidget::csvImportFinished(bool accepted) -{ - if (!accepted) { - emit closeRequest(); - } else { - switchToMainView(); - } -} - -void DatabaseWidget::switchToImportKeepass1(const QString& filePath) -{ - m_keepass1OpenWidget->load(filePath); - setCurrentWidget(m_keepass1OpenWidget); -} - -void DatabaseWidget::switchToImportOpVault(const QString& fileName) -{ - m_opVaultOpenWidget->load(fileName); - setCurrentWidget(m_opVaultOpenWidget); -} - void DatabaseWidget::switchToEntryEdit() { auto entry = m_entryView->currentEntry(); @@ -1399,6 +1629,52 @@ void DatabaseWidget::switchToDatabaseSecurity() m_databaseSettingDialog->showDatabaseKeySettings(); } +void DatabaseWidget::switchToRemoteSettings() +{ + switchToDatabaseSettings(); + m_databaseSettingDialog->showRemoteSettings(); +} + +#ifdef WITH_XC_BROWSER_PASSKEYS +void DatabaseWidget::switchToPasskeys() +{ + switchToDatabaseReports(); + m_reportsDialog->activatePasskeysPage(); +} + +void DatabaseWidget::showImportPasskeyDialog(bool isEntry) +{ + PasskeyImporter passkeyImporter(this); + + if (isEntry) { + auto currentEntry = currentSelectedEntry(); + if (!currentEntry) { + return; + } + + passkeyImporter.importPasskey(m_db, currentEntry); + } else { + passkeyImporter.importPasskey(m_db); + } +} + +void DatabaseWidget::removePasskeyFromEntry() +{ + auto currentEntry = currentSelectedEntry(); + if (!currentEntry) { + return; + } + + auto result = MessageBox::question(this, + tr("Remove passkey from entry"), + tr("Do you want to remove the passkey from this entry?"), + MessageBox::Remove | MessageBox::Cancel); + if (result == MessageBox::Remove) { + currentEntry->removePasskey(); + } +} +#endif + void DatabaseWidget::performUnlockDatabase(const QString& password, const QString& keyfile) { if (password.isEmpty() && keyfile.isEmpty()) { @@ -1414,7 +1690,10 @@ void DatabaseWidget::performUnlockDatabase(const QString& password, const QStrin void DatabaseWidget::refreshSearch() { if (isSearchActive()) { + auto selectedEntry = m_entryView->currentEntry(); search(m_lastSearchText); + // Re-select the previous entry if it is still in the search + m_entryView->setCurrentEntry(selectedEntry); } } @@ -1425,22 +1704,33 @@ void DatabaseWidget::search(const QString& searchtext) return; } - emit searchModeAboutToActivate(); + auto searchGroup = m_db->rootGroup(); + if (m_searchLimitGroup && m_nextSearchLabelText.isEmpty()) { + searchGroup = currentGroup(); + } - Group* searchGroup = m_searchLimitGroup ? currentGroup() : m_db->rootGroup(); - - QList searchResult = m_entrySearcher->search(searchtext, searchGroup); - - m_entryView->displaySearch(searchResult); - m_lastSearchText = searchtext; + auto results = m_entrySearcher->search(searchtext, searchGroup); // Display a label detailing our search results - if (!searchResult.isEmpty()) { - m_searchingLabel->setText(tr("Search Results (%1)").arg(searchResult.size())); + if (!m_nextSearchLabelText.isEmpty()) { + // Custom searches don't display if there are no results + if (results.isEmpty()) { + endSearch(); + return; + } + m_searchingLabel->setText(m_nextSearchLabelText); + m_nextSearchLabelText.clear(); + } else if (!results.isEmpty()) { + m_searchingLabel->setText(tr("Search Results (%1)").arg(results.size())); } else { m_searchingLabel->setText(tr("No Results")); } + emit searchModeAboutToActivate(); + + m_entryView->displaySearch(results); + m_lastSearchText = searchtext; + m_searchingLabel->setVisible(true); #ifdef WITH_XC_KEESHARE m_shareLabel->setVisible(false); @@ -1449,6 +1739,40 @@ void DatabaseWidget::search(const QString& searchtext) emit searchModeActivated(); } +void DatabaseWidget::saveSearch(const QString& searchtext) +{ + if (!m_db->isInitialized()) { + return; + } + + // Pull the existing searches and prepend an empty string to allow + // the user to input a new search name without seeing the first one + QStringList searches(m_db->metadata()->savedSearches().keys()); + searches.prepend(""); + + QInputDialog dialog(this); + connect(this, &DatabaseWidget::databaseLockRequested, &dialog, &QInputDialog::reject); + + dialog.setComboBoxEditable(true); + dialog.setComboBoxItems(searches); + dialog.setOkButtonText(tr("Save")); + dialog.setLabelText(tr("Enter a unique name or overwrite an existing search from the list:")); + dialog.setWindowTitle(tr("Save Search")); + dialog.exec(); + + auto name = dialog.textValue(); + if (!name.isEmpty()) { + m_db->metadata()->addSavedSearch(name, searchtext); + } +} + +void DatabaseWidget::deleteSearch(const QString& name) +{ + if (m_db->isInitialized()) { + m_db->metadata()->deleteSavedSearch(name); + } +} + void DatabaseWidget::setSearchCaseSensitive(bool state) { m_entrySearcher->setCaseSensitive(state); @@ -1478,23 +1802,63 @@ void DatabaseWidget::onGroupChanged() #ifdef WITH_XC_KEESHARE auto shareLabel = KeeShare::sharingLabel(group); if (!shareLabel.isEmpty()) { - m_shareLabel->setText(shareLabel); + m_shareLabel->setRawText(shareLabel); m_shareLabel->setVisible(true); } else { m_shareLabel->setVisible(false); } #endif + + emit groupChanged(); } void DatabaseWidget::onDatabaseModified() { - if (!m_blockAutoSave && config()->get(Config::AutoSaveAfterEveryChange).toBool()) { + refreshSearch(); + m_remoteSettings->loadSettings(); + int autosaveDelayMs = m_db->metadata()->autosaveDelayMin() * 60 * 1000; // min to msec for QTimer + bool autosaveAfterEveryChangeConfig = config()->get(Config::AutoSaveAfterEveryChange).toBool(); + if (autosaveDelayMs > 0 && autosaveAfterEveryChangeConfig) { + // reset delay when modified + m_autosaveTimer->start(autosaveDelayMs); + return; + } + if (!m_blockAutoSave && autosaveAfterEveryChangeConfig) { save(); } else { // Only block once, then reset m_blockAutoSave = false; } - refreshSearch(); +} + +void DatabaseWidget::onAutosaveDelayTimeout() +{ + const bool isAutosaveDelayEnabled = m_db->metadata()->autosaveDelayMin() > 0; + const bool autosaveAfterEveryChangeConfig = config()->get(Config::AutoSaveAfterEveryChange).toBool(); + if (!(isAutosaveDelayEnabled && autosaveAfterEveryChangeConfig)) { + // User might disable the delay/autosave while the timer is running + return; + } + if (!m_blockAutoSave) { + save(); + } else { + // Only block once, then reset + m_blockAutoSave = false; + } +} + +void DatabaseWidget::triggerAutosaveTimer() +{ + m_autosaveTimer->stop(); + QMetaObject::invokeMethod(m_autosaveTimer, "timeout"); +} + +void DatabaseWidget::onDatabaseNonDataChanged() +{ + // Force mark the database modified if we are not auto-saving non-data changes + if (!config()->get(Config::AutoSaveNonDataChanges).toBool()) { + m_db->markAsModified(); + } } QString DatabaseWidget::getCurrentSearch() @@ -1520,6 +1884,7 @@ void DatabaseWidget::endSearch() m_searchingLabel->setText(tr("Searching…")); m_lastSearchText.clear(); + m_nextSearchLabelText.clear(); // Tell the search widget to clear emit clearSearch(); @@ -1539,6 +1904,8 @@ void DatabaseWidget::onEntryChanged(Entry* entry) { if (entry) { m_previewView->setEntry(entry); + } else { + m_previewView->setGroup(groupView()->currentGroup()); } emit entrySelectionChanged(); @@ -1546,16 +1913,13 @@ void DatabaseWidget::onEntryChanged(Entry* entry) bool DatabaseWidget::canCloneCurrentGroup() const { - bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup(); - // bool isRecycleBin = isRecycleBinSelected(); - - return !isRootGroup; + auto currentGroup = m_groupView->currentGroup(); + return currentGroup != m_db->rootGroup() && currentGroup != m_db->metadata()->recycleBin(); } bool DatabaseWidget::canDeleteCurrentGroup() const { - bool isRootGroup = m_db->rootGroup() == m_groupView->currentGroup(); - return !isRootGroup; + return currentGroup() != m_db->rootGroup(); } Group* DatabaseWidget::currentGroup() const @@ -1565,12 +1929,12 @@ Group* DatabaseWidget::currentGroup() const void DatabaseWidget::closeEvent(QCloseEvent* event) { - if (!isLocked() && !lock()) { + if (!lock() || m_databaseOpenWidget->unlockingDatabase()) { event->ignore(); return; } - m_databaseOpenWidget->resetQuickUnlock(); + m_databaseOpenWidget->resetQuickUnlock(); event->accept(); } @@ -1586,38 +1950,49 @@ void DatabaseWidget::showEvent(QShowEvent* event) bool DatabaseWidget::focusNextPrevChild(bool next) { // [parent] <-> GroupView <-> TagView <-> EntryView <-> EntryPreview <-> [parent] - if (next) { - if (m_groupView->hasFocus()) { - m_tagView->setFocus(); - return true; - } else if (m_tagView->hasFocus()) { - m_entryView->setFocus(); - return true; - } else if (m_entryView->hasFocus()) { - m_previewView->setFocus(); - return true; - } - } else { - if (m_previewView->hasFocus()) { - m_entryView->setFocus(); - return true; - } else if (m_entryView->hasFocus()) { - m_tagView->setFocus(); - return true; - } else if (m_tagView->hasFocus()) { - m_groupView->setFocus(); - return true; - } + QList sequence = {m_groupView, m_tagView, m_entryView, m_previewView}; + auto widget = qApp->focusWidget(); + if (!widget) { + return QStackedWidget::focusNextPrevChild(next); } - // Defer to the parent widget to make a decision + // Find the nearest parent widget in the sequence list + int idx; + do { + idx = sequence.indexOf(widget); + widget = widget->parentWidget(); + } while (idx == -1 && widget); + + // Determine next/previous or wrap around + if (idx == -1) { + idx = next ? 0 : sequence.size() - 1; + } else { + idx = next ? idx + 1 : idx - 1; + } + + // Find the next visible element in the sequence and set the focus + while (idx >= 0 && idx < sequence.size()) { + widget = sequence[idx]; + if (widget && widget->isVisible() && widget->isEnabled() && widget->height() > 0 && widget->width() > 0) { + widget->setFocus(); + return widget; + } + idx = next ? idx + 1 : idx - 1; + } + + // Ran out of options, defer to the parent widget return QStackedWidget::focusNextPrevChild(next); } bool DatabaseWidget::lock() { - if (isLocked()) { - return true; + if (isLocked() || m_attemptingLock) { + return isLocked(); + } + + // ignore when reloading + if (m_reloading) { + return false; } // Don't try to lock the database while saving, this will cause a deadlock @@ -1626,11 +2001,21 @@ bool DatabaseWidget::lock() return false; } + m_attemptingLock = true; + emit databaseLockRequested(); - // ignore event if we are active and a modal dialog is still open (such as a message box or file dialog) - if (isVisible() && QApplication::activeModalWidget()) { - return false; + // Force close any modal widgets associated with this widget + auto modalWidget = QApplication::activeModalWidget(); + if (modalWidget) { + auto parent = modalWidget->parentWidget(); + while (parent) { + if (parent == this) { + modalWidget->close(); + break; + } + parent = parent->parentWidget(); + } } clipboard()->clearCopiedText(); @@ -1642,6 +2027,7 @@ bool DatabaseWidget::lock() MessageBox::Discard | MessageBox::Cancel, MessageBox::Cancel); if (result == MessageBox::Cancel) { + m_attemptingLock = false; return false; } } @@ -1652,6 +2038,18 @@ bool DatabaseWidget::lock() if (config()->get(Config::AutoSaveOnExit).toBool() || config()->get(Config::AutoSaveAfterEveryChange).toBool()) { saved = save(); + + if (!saved) { + // detect if a reload was triggered + bool reloadTriggered = false; + auto connection = + connect(this, &DatabaseWidget::reloadBegin, [&reloadTriggered] { reloadTriggered = true; }); + QApplication::processEvents(); + disconnect(connection); + if (reloadTriggered) { + return false; + } + } } if (!saved) { @@ -1668,9 +2066,11 @@ bool DatabaseWidget::lock() MessageBox::Save); if (result == MessageBox::Save) { if (!save()) { + m_attemptingLock = false; return false; } } else if (result == MessageBox::Cancel) { + m_attemptingLock = false; return false; } } @@ -1700,59 +2100,85 @@ bool DatabaseWidget::lock() switchToOpenDatabase(m_db->filePath()); auto newDb = QSharedPointer::create(m_db->filePath()); + newDb->open(nullptr); replaceDatabase(newDb); + m_attemptingLock = false; emit databaseLocked(); return true; } -void DatabaseWidget::reloadDatabaseFile() +void DatabaseWidget::reloadDatabaseFile(bool triggeredBySave) { - // Ignore reload if we are locked or currently editing an entry or group - if (!m_db || isLocked() || isEntryEditActive() || isGroupEditActive()) { + if (triggeredBySave) { + // not a failed save attempt due to file locking + m_saveAttempts = 0; + } + // Ignore reload if we are locked, saving, reloading, or currently editing an entry or group + if (!m_db || isLocked() || isEntryEditActive() || isGroupEditActive() || isSaving() || m_reloading) { return; } m_blockAutoSave = true; + m_reloading = true; - if (!config()->get(Config::AutoReloadOnChange).toBool()) { + emit reloadBegin(); + + if (!triggeredBySave && !config()->get(Config::AutoReloadOnChange).toBool()) { // Ask if we want to reload the db - auto result = MessageBox::question(this, - tr("File has changed"), - tr("The database file has changed. Do you want to load the changes?"), - MessageBox::Yes | MessageBox::No); + auto result = MessageBox::question( + this, + tr("File has changed"), + QString("%1.\n%2").arg(tr("The database file \"%1\" was modified externally").arg(displayFileName()), + tr("Do you want to load the changes?")), + MessageBox::Yes | MessageBox::No); if (result == MessageBox::No) { // Notify everyone the database does not match the file m_db->markAsModified(); + m_reloading = false; + + emit reloadEnd(); return; } } + // Remove any latent error messages and switch to progress updates + hideMessage(); + emit updateSyncProgress(0, tr("Reloading database…")); + // Lock out interactions m_entryView->setDisabled(true); m_groupView->setDisabled(true); m_tagView->setDisabled(true); QApplication::processEvents(); - QString error; - auto db = QSharedPointer::create(m_db->filePath()); - if (db->open(database()->key(), &error)) { - if (m_db->isModified() || db->hasNonDataChanges()) { - // Ask if we want to merge changes into new database - auto result = MessageBox::question( - this, - tr("Merge Request"), - tr("The database file has changed and you have unsaved changes.\nDo you want to merge your changes?"), - MessageBox::Merge | MessageBox::Discard, - MessageBox::Merge); + auto reloadFinish = [this](bool hideMsg = true) { + // Return control + m_entryView->setDisabled(false); + m_groupView->setDisabled(false); + m_tagView->setDisabled(false); - if (result == MessageBox::Merge) { - // Merge the old database into the new one - Merger merger(m_db.data(), db.data()); - merger.merge(); - } + m_reloading = false; + + // Keep the previous message visible for 2 seconds if not hiding + QTimer::singleShot(hideMsg ? 0 : 2000, this, [this] { emit updateSyncProgress(-1, ""); }); + + emit reloadEnd(); + }; + auto reloadCanceled = [this, reloadFinish] { + // Mark db as modified since existing data may differ from file or file was deleted + m_db->markAsModified(); + + emit updateSyncProgress(100, tr("Reload canceled")); + reloadFinish(false); + }; + auto reloadContinue = [this, triggeredBySave, reloadFinish](QSharedPointer db, bool merge) { + if (merge) { + // Merge the old database into the new one + Merger merger(m_db.data(), db.data()); + merger.merge(); } QUuid groupBeforeReload = m_db->rootGroup()->uuid(); @@ -1769,17 +2195,108 @@ void DatabaseWidget::reloadDatabaseFile() processAutoOpen(); restoreGroupEntryFocus(groupBeforeReload, entryBeforeReload); m_blockAutoSave = false; - } else { - showMessage(tr("Could not open the new database file while attempting to autoreload.\nError: %1").arg(error), - MessageWidget::Error); - // Mark db as modified since existing data may differ from file or file was deleted - m_db->markAsModified(); + + emit updateSyncProgress(100, tr("Reload successful")); + reloadFinish(false); + + // If triggered by save, attempt another save + if (triggeredBySave) { + save(); + } + }; + + auto db = QSharedPointer::create(m_db->filePath()); + bool openResult = db->open(database()->key()); + + // skip if the db is unchanged, or the db file is gone or for sure not a kp-db + if (bool sameHash = db->fileBlockHash() == m_db->fileBlockHash() || db->fileBlockHash().isEmpty()) { + if (!sameHash) { + // db file gone or invalid so mark modified + m_db->markAsModified(); + } + m_blockAutoSave = false; + reloadFinish(); + return; } - // Return control - m_entryView->setDisabled(false); - m_groupView->setDisabled(false); - m_tagView->setDisabled(false); + bool merge = false; + QString changesActionStr; + if (triggeredBySave || m_db->isModified() || m_db->hasNonDataChanges()) { + emit updateSyncProgress(50, tr("Reload pending user action…")); + + // Ask how to proceed + auto message = tr("The database file \"%1\" was modified externally.
    " + "How would you like to proceed?

    " + "Merge all changes
    " + "Ignore the changes on disk until save
    " + "Discard unsaved changes") + .arg(displayFileName()); + auto buttons = MessageBox::Merge | MessageBox::Discard | MessageBox::Ignore | MessageBox::Cancel; + // Different message if we are attempting to save + if (triggeredBySave) { + message = tr("The database file \"%1\" was modified externally.
    " + "How would you like to proceed?

    " + "Merge all changes then save
    " + "Overwrite the changes on disk
    " + "Discard unsaved changes") + .arg(displayFileName()); + buttons = MessageBox::Merge | MessageBox::Discard | MessageBox::Overwrite | MessageBox::Cancel; + } + + auto result = MessageBox::question(this, tr("Reload database"), message, buttons, MessageBox::Merge); + switch (result) { + case MessageBox::Cancel: + reloadCanceled(); + return; + case MessageBox::Overwrite: + case MessageBox::Ignore: + m_db->setIgnoreFileChangesUntilSaved(true); + m_blockAutoSave = false; + reloadFinish(!triggeredBySave); + // If triggered by save, attempt another save + if (triggeredBySave) { + save(); + emit updateSyncProgress(100, tr("Database file overwritten.")); + } + return; + case MessageBox::Merge: + merge = true; + default: + break; + } + } + + // Database file on disk previously opened successfully + if (openResult) { + reloadContinue(std::move(db), merge); + return; + } + + // The user needs to provide credentials + auto dbWidget = new DatabaseWidget(std::move(db)); + auto openDialog = new DatabaseOpenDialog(this); + connect(openDialog, &QObject::destroyed, [=](QObject*) { dbWidget->deleteLater(); }); + connect(openDialog, &DatabaseOpenDialog::dialogFinished, this, [=](bool accepted, DatabaseWidget*) { + if (accepted) { + reloadContinue(openDialog->database(), merge); + } else { + reloadCanceled(); + } + }); + openDialog->setAttribute(Qt::WA_DeleteOnClose); + openDialog->addDatabaseTab(dbWidget); + openDialog->setActiveDatabaseTab(dbWidget); + openDialog->showMessage(tr("Database file on disk cannot be unlocked with current credentials.
    " + "Enter new credentials and/or present hardware key to continue."), + MessageWidget::Error, + MessageWidget::DisableAutoHide); + + // ensure the main window is visible for this + getMainWindow()->bringToFront(); + // show the unlock dialog + openDialog->show(); + openDialog->raise(); + openDialog->activateWindow(); } int DatabaseWidget::numberOfSelectedEntries() const @@ -1796,7 +2313,7 @@ QStringList DatabaseWidget::customEntryAttributes() const { Entry* entry = m_entryView->currentEntry(); if (!entry) { - return QStringList(); + return {}; } return entry->attributes()->customKeys(); @@ -1885,6 +2402,14 @@ bool DatabaseWidget::currentEntryHasSshKey() } #endif +#ifdef WITH_XC_BROWSER_PASSKEYS +bool DatabaseWidget::currentEntryHasPasskey() +{ + auto currentEntry = m_entryView->currentEntry(); + return currentEntry && currentEntry->hasPasskey(); +} +#endif + bool DatabaseWidget::currentEntryHasNotes() { auto currentEntry = currentSelectedEntry(); @@ -1895,6 +2420,16 @@ bool DatabaseWidget::currentEntryHasNotes() return !currentEntry->resolveMultiplePlaceholders(currentEntry->notes()).isEmpty(); } +bool DatabaseWidget::currentEntryHasAutoTypeEnabled() +{ + auto currentEntry = currentSelectedEntry(); + if (!currentEntry) { + return false; + } + + return currentEntry->autoTypeEnabled() && currentEntry->groupAutoTypeEnabled(); +} + GroupView* DatabaseWidget::groupView() { return m_groupView; @@ -1924,6 +2459,11 @@ bool DatabaseWidget::save() return true; } + // Do no try to save if the database is being reloaded + if (m_reloading) { + return false; + } + // Read-only and new databases ask for filename if (m_db->filePath().isEmpty()) { return saveAs(); @@ -1937,6 +2477,8 @@ bool DatabaseWidget::save() if (performSave(errorMessage)) { m_saveAttempts = 0; m_blockAutoSave = false; + m_autosaveTimer->stop(); // stop autosave delay to avoid triggering another save + hideMessage(); return true; } @@ -1978,13 +2520,20 @@ bool DatabaseWidget::saveAs() return true; } + // Do no try to save if the database is being reloaded + if (m_reloading) { + return false; + } + QString oldFilePath = m_db->filePath(); if (!QFileInfo::exists(oldFilePath)) { + QString defaultFileName = config()->get(Config::DefaultDatabaseFileName).toString(); oldFilePath = - QDir::toNativeSeparators(config()->get(Config::LastDir).toString() + "/" + tr("Passwords").append(".kdbx")); + QDir::toNativeSeparators(FileDialog::getLastDir("db") + "/" + + (defaultFileName.isEmpty() ? tr("Passwords").append(".kdbx") : defaultFileName)); } const QString newFilePath = fileDialog()->getSaveFileName( - this, tr("Save database as"), oldFilePath, tr("KeePass 2 Database").append(" (*.kdbx)"), nullptr, nullptr); + this, tr("Save database as"), oldFilePath, tr("KeePass 2 Database").append(" (*.kdbx)")); bool ok = false; if (!newFilePath.isEmpty()) { @@ -2005,9 +2554,10 @@ bool DatabaseWidget::performSave(QString& errorMessage, const QString& fileName) QPointer focusWidget(qApp->focusWidget()); // Lock out interactions - m_entryView->setDisabled(true); - m_groupView->setDisabled(true); - m_tagView->setDisabled(true); + auto mainWindow = getMainWindow(); + if (mainWindow) { + mainWindow->setDisabled(true); + } QApplication::processEvents(); Database::SaveAction saveAction = Database::Atomic; @@ -2047,11 +2597,11 @@ bool DatabaseWidget::performSave(QString& errorMessage, const QString& fileName) } // Return control - m_entryView->setDisabled(false); - m_groupView->setDisabled(false); - m_tagView->setDisabled(false); + if (mainWindow) { + mainWindow->setDisabled(false); + } - if (focusWidget) { + if (focusWidget && focusWidget->isVisible()) { focusWidget->setFocus(); } @@ -2065,45 +2615,45 @@ bool DatabaseWidget::performSave(QString& errorMessage, const QString& fileName) */ bool DatabaseWidget::saveBackup() { - while (true) { - QString oldFilePath = m_db->filePath(); - if (!QFileInfo::exists(oldFilePath)) { - oldFilePath = QDir::toNativeSeparators(config()->get(Config::LastDir).toString() + "/" - + tr("Passwords").append(".kdbx")); - } + QString oldFilePath = m_db->filePath(); + if (!QFileInfo::exists(oldFilePath)) { + QString defaultFileName = config()->get(Config::DefaultDatabaseFileName).toString(); + oldFilePath = + QDir::toNativeSeparators(FileDialog::getLastDir("db") + "/" + + (defaultFileName.isEmpty() ? tr("Passwords").append(".kdbx") : defaultFileName)); + } - const QString newFilePath = fileDialog()->getSaveFileName(this, - tr("Save database backup"), - FileDialog::getLastDir("backup"), - tr("KeePass 2 Database").append(" (*.kdbx)"), - nullptr, - nullptr); + const QString newFilePath = fileDialog()->getSaveFileName(this, + tr("Save database backup"), + FileDialog::getLastDir("backup", oldFilePath), + tr("KeePass 2 Database").append(" (*.kdbx)")); - if (!newFilePath.isEmpty()) { - // Ensure we don't recurse back into this function - m_db->setFilePath(newFilePath); - m_saveAttempts = 0; - - bool modified = m_db->isModified(); - - if (!save()) { - // Failed to save, try again - m_db->setFilePath(oldFilePath); - continue; - } - - m_db->setFilePath(oldFilePath); - if (modified) { - // Source database is marked as clean when copy is saved, even if source has unsaved changes - m_db->markAsModified(); - } - FileDialog::saveLastDir("backup", newFilePath, true); - return true; - } - - // Canceled file selection + // Early out if we canceled the file selection + if (newFilePath.isEmpty()) { return false; } + + // Record modified state so we can restore after save + bool modified = m_db->isModified(); + + QString error; + bool ok = m_db->saveAs(newFilePath, Database::DirectWrite, {}, &error); + + // Restore database to original state + m_db->setFilePath(oldFilePath); + if (modified) { + // Source database is marked as clean when copy is saved, even if source has unsaved changes + m_db->markAsModified(); + } + + if (!ok) { + // Failed to save backup, post the error + showErrorMessage(tr("Failed to save backup database: %1").arg(error)); + return false; + } + + FileDialog::saveLastDir("backup", newFilePath, true); + return true; } void DatabaseWidget::showMessage(const QString& text, @@ -2129,7 +2679,9 @@ void DatabaseWidget::hideMessage() bool DatabaseWidget::isRecycleBinSelected() const { - return m_groupView->currentGroup() && m_groupView->currentGroup() == m_db->metadata()->recycleBin(); + auto group = currentGroup(); + auto entry = currentSelectedEntry(); + return (group && group->isRecycled()) || (entry && entry->isRecycled()); } void DatabaseWidget::emptyRecycleBin() diff --git a/src/gui/DatabaseWidget.h b/src/gui/DatabaseWidget.h index d77a38dd7..a96c9d488 100644 --- a/src/gui/DatabaseWidget.h +++ b/src/gui/DatabaseWidget.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * Copyright (C) 2021 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 @@ -19,36 +19,34 @@ #ifndef KEEPASSX_DATABASEWIDGET_H #define KEEPASSX_DATABASEWIDGET_H -#include -#include #include -#include "DatabaseOpenDialog.h" -#include "config-keepassx.h" +#include "core/Database.h" +#include "core/Group.h" +#include "core/Metadata.h" #include "gui/MessageWidget.h" -#include "gui/csvImport/CsvImportWizard.h" #include "gui/entry/EntryModel.h" +#include "remote/RemoteHandler.h" +class DatabaseOpenDialog; class DatabaseOpenWidget; -class KeePass1OpenWidget; -class OpVaultOpenWidget; class DatabaseSettingsDialog; class ReportsDialog; -class Database; class FileWatcher; class EditEntryWidget; class EditGroupWidget; -class Entry; class EntryView; class EntrySearcher; -class Group; class GroupView; class QFile; class QMenu; class QSplitter; class QLabel; -class MessageWidget; class EntryPreviewWidget; +class TagView; +class ElidedLabel; +class RemoteSettings; +struct RemoteParams; namespace Ui { @@ -65,10 +63,12 @@ public: enum class Mode { None, - ImportMode, ViewMode, - EditMode, - LockedMode + EditEntryMode, + EditGroupMode, + LockedMode, + ReportsMode, + DatabaseSettingsMode }; explicit DatabaseWidget(QSharedPointer db, QWidget* parent = nullptr); @@ -102,10 +102,14 @@ public: int numberOfSelectedEntries() const; int currentEntryIndex() const; + QString displayName() const; + QString displayFileName() const; + QString displayFilePath() const; + QStringList customEntryAttributes() const; bool isEditWidgetModified() const; void clearAllWidgets(); - Entry* currentSelectedEntry(); + Entry* currentSelectedEntry() const; bool currentEntryHasTitle(); bool currentEntryHasUsername(); bool currentEntryHasPassword(); @@ -115,6 +119,7 @@ public: #ifdef WITH_XC_SSHAGENT bool currentEntryHasSshKey(); #endif + bool currentEntryHasAutoTypeEnabled(); QByteArray entryViewState() const; bool setEntryViewState(const QByteArray& state) const; @@ -122,11 +127,17 @@ public: void setSplitterSizes(const QHash>& sizes); void setSearchStringForAutoType(const QString& search); + void syncWithRemote(const RemoteParams* params); + void syncDatabaseWithLockedDatabase(const QString& filePath, const RemoteParams* params); + QList getRemoteParams() const; + signals: // relayed Database signals void databaseFilePathChanged(const QString& oldPath, const QString& newPath); void databaseModified(); + void databaseNonDataChanged(); void databaseSaved(); + void databaseAboutToUnlock(); void databaseUnlocked(); void databaseLockRequested(); void databaseLocked(); @@ -141,6 +152,13 @@ signals: void requestOpenDatabase(const QString& filePath, bool inBackground, const QString& password, const QString& keyFile); void databaseMerged(QSharedPointer mergedDb); + void databaseSyncInProgress(); + void databaseSyncCompleted(const QString& syncName); + void databaseSyncFailed(const QString& syncName, const QString& error); + void databaseSyncUnlockFailed(const RemoteHandler::RemoteResult& result); + void databaseSyncUnlocked(const RemoteHandler::RemoteResult& result); + void unlockDatabaseInDialogForSync(const QString& filePath); + void updateSyncProgress(int percentage, QString message); void groupContextMenuRequested(const QPoint& globalPos); void entryContextMenuRequested(const QPoint& globalPos); void listModeAboutToActivate(); @@ -152,6 +170,8 @@ signals: void clearSearch(); void requestGlobalAutoType(const QString& search); void requestSearch(const QString& search); + void reloadBegin(); + void reloadEnd(); public slots: bool lock(); @@ -162,6 +182,7 @@ public slots: void replaceDatabase(QSharedPointer db); void createEntry(); void cloneEntry(); + void expireSelectedEntries(); void deleteSelectedEntries(); void restoreSelectedEntries(); void deleteEntries(QList entries, bool confirm = true); @@ -175,10 +196,13 @@ public slots: void copyURL(); void copyNotes(); void copyAttribute(QAction* action); - void filterByTag(const QModelIndex& index); + bool copyFocusedTextSelection(); + void filterByTag(); + void setTag(QAction* action); void showTotp(); void showTotpKeyQrCode(); void copyTotp(); + void copyPasswordTotp(); void setupTotp(); #ifdef WITH_XC_SSHAGENT void addToAgent(); @@ -190,6 +214,7 @@ public slots: void performAutoTypePassword(); void performAutoTypePasswordEnter(); void performAutoTypeTOTP(); + void setClipboardTextAndMinimize(const QString& text); void openUrl(); void downloadSelectedFavicons(); void downloadAllFavicons(); @@ -206,18 +231,23 @@ public slots: void switchToDatabaseSecurity(); void switchToDatabaseReports(); void switchToDatabaseSettings(); + void switchToRemoteSettings(); +#ifdef WITH_XC_BROWSER_PASSKEYS + void switchToPasskeys(); + void showImportPasskeyDialog(bool isEntry = false); + void removePasskeyFromEntry(); + bool currentEntryHasPasskey(); +#endif void switchToOpenDatabase(); void switchToOpenDatabase(const QString& filePath); void switchToOpenDatabase(const QString& filePath, const QString& password, const QString& keyFile); - void switchToCsvImport(const QString& filePath); void performUnlockDatabase(const QString& password, const QString& keyfile = {}); - void csvImportFinished(bool accepted); - void switchToImportKeepass1(const QString& filePath); - void switchToImportOpVault(const QString& fileName); void emptyRecycleBin(); // Search related slots void search(const QString& searchtext); + void saveSearch(const QString& searchtext); + void deleteSearch(const QString& name); void setSearchCaseSensitive(bool state); void setSearchLimitGroup(bool state); void endSearch(); @@ -228,6 +258,7 @@ public slots: int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout); void showErrorMessage(const QString& errorMessage); void hideMessage(); + void triggerAutosaveTimer(); protected: void closeEvent(QCloseEvent* event) override; @@ -246,18 +277,24 @@ private slots: void onEntryChanged(Entry* entry); void onGroupChanged(); void onDatabaseModified(); + void onDatabaseNonDataChanged(); + void onAutosaveDelayTimeout(); void connectDatabaseSignals(); void loadDatabase(bool accepted); void unlockDatabase(bool accepted); void mergeDatabase(bool accepted); + void syncUnlockedDatabase(bool accepted); + bool syncWithDatabase(const QSharedPointer& otherDb, QString& error); + void uploadAndFinishSync(const RemoteParams* params, RemoteHandler::RemoteResult result); + void finishSync(const RemoteParams* params, RemoteHandler::RemoteResult result); void emitCurrentModeChanged(); // Database autoreload slots - void reloadDatabaseFile(); + void reloadDatabaseFile(bool triggeredBySave); void restoreGroupEntryFocus(const QUuid& groupUuid, const QUuid& EntryUuid); + void onConfigChanged(Config::ConfigKey key); private: int addChildWidget(QWidget* w); - void setClipboardTextAndMinimize(const QString& text); void processAutoOpen(); void openDatabaseFromEntry(const Entry* entry, bool inBackground = true); void performIconDownloads(const QList& entries, bool force = false, bool downloadInBackground = false); @@ -272,18 +309,15 @@ private: QPointer m_previewView; QPointer m_previewSplitter; QPointer m_searchingLabel; - QPointer m_shareLabel; - QPointer m_csvImportWizard; + QPointer m_shareLabel; QPointer m_editEntryWidget; QPointer m_editGroupWidget; QPointer m_historyEditEntryWidget; QPointer m_reportsDialog; QPointer m_databaseSettingDialog; QPointer m_databaseOpenWidget; - QPointer m_keepass1OpenWidget; - QPointer m_opVaultOpenWidget; QPointer m_groupView; - QPointer m_tagView; + QPointer m_tagView; QPointer m_entryView; QScopedPointer m_newGroup; @@ -294,14 +328,22 @@ private: QUuid m_entryBeforeLock; int m_saveAttempts; + bool m_attemptingLock = false; + + QScopedPointer m_remoteSettings; // Search state QScopedPointer m_entrySearcher; QString m_lastSearchText; + QString m_nextSearchLabelText; bool m_searchLimitGroup; // Autoreload bool m_blockAutoSave; + bool m_reloading; + + // Autosave delay + QPointer m_autosaveTimer; // Auto-Type related QString m_searchStringForAutoType; diff --git a/src/gui/DatabaseWidgetStateSync.cpp b/src/gui/DatabaseWidgetStateSync.cpp index 9cc22254f..52458b5ab 100644 --- a/src/gui/DatabaseWidgetStateSync.cpp +++ b/src/gui/DatabaseWidgetStateSync.cpp @@ -33,18 +33,19 @@ DatabaseWidgetStateSync::DatabaseWidgetStateSync(QObject* parent) m_listViewState = config()->get(Config::GUI_ListViewState).toByteArray(); m_searchViewState = config()->get(Config::GUI_SearchViewState).toByteArray(); - connect(qApp, &QCoreApplication::aboutToQuit, this, &DatabaseWidgetStateSync::sync); + m_syncTimer.setSingleShot(true); + m_syncTimer.setInterval(100); + connect(&m_syncTimer, &QTimer::timeout, this, &DatabaseWidgetStateSync::sync); } -DatabaseWidgetStateSync::~DatabaseWidgetStateSync() -{ -} +DatabaseWidgetStateSync::~DatabaseWidgetStateSync() = default; /** * Sync state with persistent storage. */ void DatabaseWidgetStateSync::sync() { + m_syncTimer.stop(); config()->set(Config::GUI_SplitterState, intListToVariant(m_splitterSizes.value(Config::GUI_SplitterState))); config()->set(Config::GUI_PreviewSplitterState, intListToVariant(m_splitterSizes.value(Config::GUI_PreviewSplitterState))); @@ -58,72 +59,71 @@ void DatabaseWidgetStateSync::sync() void DatabaseWidgetStateSync::setActive(DatabaseWidget* dbWidget) { if (m_activeDbWidget) { + if (m_activeDbWidget->currentMode() != DatabaseWidget::Mode::LockedMode) { + // Update settings from previously active database if unlocked + updateAll(); + } disconnect(m_activeDbWidget, nullptr, this, nullptr); } m_activeDbWidget = dbWidget; if (m_activeDbWidget) { - m_blockUpdates = true; - - m_activeDbWidget->setSplitterSizes(m_splitterSizes); - - if (m_activeDbWidget->isSearchActive()) { - restoreSearchView(); - } else { - restoreListView(); + if (m_activeDbWidget->currentMode() != DatabaseWidget::Mode::LockedMode) { + // Immediately apply settings to active database if already unlocked + applySplitterSizes(); + applyViewState(); } - m_blockUpdates = false; - + connect(m_activeDbWidget, SIGNAL(databaseAboutToUnlock()), SLOT(blockUpdates())); + connect(m_activeDbWidget, SIGNAL(databaseUnlocked()), SLOT(applySplitterSizes())); + connect(m_activeDbWidget, SIGNAL(databaseUnlocked()), SLOT(applyViewState())); + connect(m_activeDbWidget, &DatabaseWidget::databaseLocked, this, [this] { updateAll(true); }); connect(m_activeDbWidget, SIGNAL(splitterSizesChanged()), SLOT(updateSplitterSizes())); connect(m_activeDbWidget, SIGNAL(entryViewStateChanged()), SLOT(updateViewState())); - connect(m_activeDbWidget, SIGNAL(listModeActivated()), SLOT(restoreListView())); - connect(m_activeDbWidget, SIGNAL(searchModeActivated()), SLOT(restoreSearchView())); + connect(m_activeDbWidget, SIGNAL(listModeActivated()), SLOT(applyViewState())); + connect(m_activeDbWidget, SIGNAL(searchModeActivated()), SLOT(applyViewState())); connect(m_activeDbWidget, SIGNAL(listModeAboutToActivate()), SLOT(blockUpdates())); connect(m_activeDbWidget, SIGNAL(searchModeAboutToActivate()), SLOT(blockUpdates())); } } +void DatabaseWidgetStateSync::applySplitterSizes() +{ + if (!m_activeDbWidget) { + return; + } + + m_blockUpdates = true; + + m_activeDbWidget->setSplitterSizes(m_splitterSizes); + + m_blockUpdates = false; +} + /** * Restore entry view list view state * * NOTE: - * States of entry view 'Hide Usernames'/'Hide Passwords' settings are global, - * i.e. they are the same for both list and search mode - * - * NOTE: * If m_listViewState is empty, the list view has been activated for the first * time after starting with a clean (or invalid) config. */ -void DatabaseWidgetStateSync::restoreListView() +void DatabaseWidgetStateSync::applyViewState() { - if (!m_listViewState.isEmpty()) { - m_activeDbWidget->setEntryViewState(m_listViewState); + if (!m_activeDbWidget) { + return; } - m_blockUpdates = false; -} + m_blockUpdates = true; -/** - * Restore entry view search view state - * - * NOTE: - * States of entry view 'Hide Usernames'/'Hide Passwords' settings are global, - * i.e. they are the same for both list and search mode - * - * NOTE: - * If m_searchViewState is empty, the search view has been activated for the - * first time after starting with a clean (or invalid) config. Thus, save the - * current state. Without this, m_searchViewState would remain empty until - * there is an actual view state change (e.g. column is resized) - */ -void DatabaseWidgetStateSync::restoreSearchView() -{ - if (!m_searchViewState.isEmpty()) { - m_activeDbWidget->setEntryViewState(m_searchViewState); + if (m_activeDbWidget->isSearchActive()) { + if (!m_searchViewState.isEmpty()) { + m_activeDbWidget->setEntryViewState(m_searchViewState); + } } else { - m_searchViewState = m_activeDbWidget->entryViewState(); + if (!m_listViewState.isEmpty()) { + m_activeDbWidget->setEntryViewState(m_listViewState); + } } m_blockUpdates = false; @@ -134,19 +134,25 @@ void DatabaseWidgetStateSync::blockUpdates() m_blockUpdates = true; } +void DatabaseWidgetStateSync::updateAll(bool forceSync) +{ + updateSplitterSizes(); + updateViewState(); + if (forceSync) { + sync(); + } +} + void DatabaseWidgetStateSync::updateSplitterSizes() { if (!m_blockUpdates) { m_splitterSizes = m_activeDbWidget->splitterSizes(); + m_syncTimer.start(); } } /** * Update entry view list/search view state - * - * NOTE: - * States of entry view 'Hide Usernames'/'Hide Passwords' settings are global, - * i.e. they are the same for both list and search mode */ void DatabaseWidgetStateSync::updateViewState() { @@ -160,7 +166,7 @@ void DatabaseWidgetStateSync::updateViewState() m_listViewState = m_activeDbWidget->entryViewState(); } - sync(); + m_syncTimer.start(); } QList DatabaseWidgetStateSync::variantToIntList(const QVariant& variant) diff --git a/src/gui/DatabaseWidgetStateSync.h b/src/gui/DatabaseWidgetStateSync.h index 8f8aef6dc..b9e53fdc6 100644 --- a/src/gui/DatabaseWidgetStateSync.h +++ b/src/gui/DatabaseWidgetStateSync.h @@ -32,13 +32,14 @@ public: public slots: void setActive(DatabaseWidget* dbWidget); - void restoreListView(); - void restoreSearchView(); + void applySplitterSizes(); + void applyViewState(); private slots: void blockUpdates(); void updateSplitterSizes(); void updateViewState(); + void updateAll(bool forceSync = false); void sync(); private: @@ -48,6 +49,8 @@ private: QPointer m_activeDbWidget; bool m_blockUpdates; + QTimer m_syncTimer; + QHash> m_splitterSizes; QByteArray m_listViewState; diff --git a/src/gui/EditWidget.cpp b/src/gui/EditWidget.cpp index 92e221607..ab05758da 100644 --- a/src/gui/EditWidget.cpp +++ b/src/gui/EditWidget.cpp @@ -31,6 +31,7 @@ EditWidget::EditWidget(QWidget* parent) setModified(false); m_ui->messageWidget->setHidden(true); + m_ui->headerLabel->setHidden(true); QFont headerLabelFont = m_ui->headerLabel->font(); headerLabelFont.setBold(true); @@ -45,9 +46,7 @@ EditWidget::EditWidget(QWidget* parent) connect(m_ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), SLOT(buttonClicked(QAbstractButton*))); } -EditWidget::~EditWidget() -{ -} +EditWidget::~EditWidget() = default; void EditWidget::addPage(const QString& labelText, const QIcon& icon, QWidget* widget) { @@ -72,16 +71,25 @@ void EditWidget::addPage(const QString& labelText, const QIcon& icon, QWidget* w m_ui->categoryList->addCategory(labelText, icon); } -bool EditWidget::hasPage(QWidget* widget) +bool EditWidget::hasPage(const QWidget* widget) const { + return pageIndex(widget) >= 0; +} + +int EditWidget::pageIndex(const QWidget* widget) const +{ + if (!widget) { + return -1; + } + for (int i = 0; i < m_ui->stackedWidget->count(); i++) { auto* scrollArea = qobject_cast(m_ui->stackedWidget->widget(i)); if (scrollArea && scrollArea->widget() == widget) { - return true; + return i; } } - return false; + return -1; } void EditWidget::setPageHidden(QWidget* widget, bool hidden) @@ -96,16 +104,19 @@ void EditWidget::setPageHidden(QWidget* widget, bool hidden) } } - if (index != -1) { - m_ui->categoryList->setCategoryHidden(index, hidden); + if (index == -1) { + return; } - if (index == m_ui->stackedWidget->currentIndex()) { + bool changed = m_ui->categoryList->isCategoryHidden(index) != hidden; + m_ui->categoryList->setCategoryHidden(index, hidden); + + if (changed && index == m_ui->stackedWidget->currentIndex()) { int newIndex = m_ui->stackedWidget->currentIndex() - 1; if (newIndex < 0) { newIndex = m_ui->stackedWidget->count() - 1; } - m_ui->stackedWidget->setCurrentIndex(newIndex); + m_ui->categoryList->setCurrentCategory(newIndex); } } @@ -117,6 +128,7 @@ void EditWidget::setCurrentPage(int index) void EditWidget::setHeadline(const QString& text) { + m_ui->headerLabel->setHidden(text.isEmpty()); m_ui->headerLabel->setText(text); } diff --git a/src/gui/EditWidget.h b/src/gui/EditWidget.h index c4997abae..4839d5877 100644 --- a/src/gui/EditWidget.h +++ b/src/gui/EditWidget.h @@ -39,10 +39,11 @@ class EditWidget : public DialogyWidget public: explicit EditWidget(QWidget* parent = nullptr); - ~EditWidget(); + ~EditWidget() override; void addPage(const QString& labelText, const QIcon& icon, QWidget* widget); - bool hasPage(QWidget* widget); + bool hasPage(const QWidget* widget) const; + int pageIndex(const QWidget* widget) const; void setPageHidden(QWidget* widget, bool hidden); void setCurrentPage(int index); void setHeadline(const QString& text); diff --git a/src/gui/EditWidget.ui b/src/gui/EditWidget.ui index 8bbec46bc..96aac0d36 100644 --- a/src/gui/EditWidget.ui +++ b/src/gui/EditWidget.ui @@ -66,10 +66,16 @@ 0 + + Qt::TabFocus +
    + + Qt::TabFocus + -1 @@ -84,6 +90,9 @@ + + Qt::TabFocus + QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok @@ -107,6 +116,11 @@ 1 + + categoryList + stackedWidget + buttonBox + diff --git a/src/gui/EditWidgetIcons.cpp b/src/gui/EditWidgetIcons.cpp index 25542730c..f23d14ce7 100644 --- a/src/gui/EditWidgetIcons.cpp +++ b/src/gui/EditWidgetIcons.cpp @@ -86,9 +86,7 @@ EditWidgetIcons::EditWidgetIcons(QWidget* parent) #endif } -EditWidgetIcons::~EditWidgetIcons() -{ -} +EditWidgetIcons::~EditWidgetIcons() = default; IconStruct EditWidgetIcons::state() { @@ -222,7 +220,7 @@ void EditWidgetIcons::iconReceived(const QString& url, const QImage& icon) QString message(tr("Unable to fetch favicon.")); if (!config()->get(Config::Security_IconDownloadFallback).toBool()) { message.append("\n").append( - tr("You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security")); + tr("You can enable the DuckDuckGo website icon service under Application Settings -> Security")); } emit messageEditEntry(message, MessageWidget::Error); return; diff --git a/src/gui/EditWidgetIcons.h b/src/gui/EditWidgetIcons.h index 15e927d6c..3b40fae41 100644 --- a/src/gui/EditWidgetIcons.h +++ b/src/gui/EditWidgetIcons.h @@ -62,7 +62,7 @@ class EditWidgetIcons : public QWidget public: explicit EditWidgetIcons(QWidget* parent = nullptr); - ~EditWidgetIcons(); + ~EditWidgetIcons() override; IconStruct state(); void reset(); diff --git a/src/gui/EditWidgetProperties.cpp b/src/gui/EditWidgetProperties.cpp index 3e26352d3..4aea1510c 100644 --- a/src/gui/EditWidgetProperties.cpp +++ b/src/gui/EditWidgetProperties.cpp @@ -41,9 +41,7 @@ EditWidgetProperties::EditWidgetProperties(QWidget* parent) connect(m_ui->removeCustomDataButton, SIGNAL(clicked()), SLOT(removeSelectedPluginData())); } -EditWidgetProperties::~EditWidgetProperties() -{ -} +EditWidgetProperties::~EditWidgetProperties() = default; void EditWidgetProperties::setFields(const TimeInfo& timeInfo, const QUuid& uuid) { diff --git a/src/gui/EditWidgetProperties.h b/src/gui/EditWidgetProperties.h index 30a983e98..679a14501 100644 --- a/src/gui/EditWidgetProperties.h +++ b/src/gui/EditWidgetProperties.h @@ -38,7 +38,7 @@ class EditWidgetProperties : public QWidget public: explicit EditWidgetProperties(QWidget* parent = nullptr); - ~EditWidgetProperties(); + ~EditWidgetProperties() override; void setFields(const TimeInfo& timeInfo, const QUuid& uuid); void setCustomData(CustomData* customData); diff --git a/src/gui/EditWidgetProperties.ui b/src/gui/EditWidgetProperties.ui index 0caa9ef27..510e4fffa 100644 --- a/src/gui/EditWidgetProperties.ui +++ b/src/gui/EditWidgetProperties.ui @@ -58,7 +58,7 @@ - + Modified: diff --git a/src/gui/EntryPreviewWidget.cpp b/src/gui/EntryPreviewWidget.cpp index 6fc6e1992..69f6b56dc 100644 --- a/src/gui/EntryPreviewWidget.cpp +++ b/src/gui/EntryPreviewWidget.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * 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 @@ -19,15 +19,19 @@ #include "EntryPreviewWidget.h" #include "ui_EntryPreviewWidget.h" -#include "gui/Clipboard.h" +#include "Application.h" +#include "core/Clock.h" +#include "core/Config.h" +#include "core/Totp.h" #include "gui/Font.h" #include "gui/Icons.h" -#include "totp/totp.h" #if defined(WITH_XC_KEESHARE) #include "keeshare/KeeShare.h" #include "keeshare/KeeShareSettings.h" #endif +#include +#include namespace { constexpr int GeneralTabIndex = 0; @@ -45,8 +49,9 @@ EntryPreviewWidget::EntryPreviewWidget(QWidget* parent) m_ui->setupUi(this); // Entry - m_ui->entryTotpButton->setIcon(icons()->icon("chronometer")); - m_ui->entryCloseButton->setIcon(icons()->icon("dialog-close")); + m_ui->entryTotpButton->setIcon(icons()->icon("totp")); + m_ui->entryCloseButton->setIcon(icons()->icon("arrow-collapse-down")); + m_ui->toggleUsernameButton->setIcon(icons()->onOffIcon("password-show", true)); m_ui->togglePasswordButton->setIcon(icons()->onOffIcon("password-show", true)); m_ui->toggleEntryNotesButton->setIcon(icons()->onOffIcon("password-show", true)); m_ui->toggleGroupNotesButton->setIcon(icons()->onOffIcon("password-show", true)); @@ -63,21 +68,35 @@ EntryPreviewWidget::EntryPreviewWidget(QWidget* parent) m_ui->entryNotesTextEdit->document()->setDocumentMargin(0); m_ui->groupNotesTextEdit->document()->setDocumentMargin(0); - connect(m_ui->entryUrlLabel, SIGNAL(linkActivated(QString)), SLOT(openEntryUrl())); + m_ui->entryTotpLabel->installEventFilter(this); connect(m_ui->entryTotpButton, SIGNAL(toggled(bool)), m_ui->entryTotpLabel, SLOT(setVisible(bool))); connect(m_ui->entryTotpButton, SIGNAL(toggled(bool)), m_ui->entryTotpProgress, SLOT(setVisible(bool))); connect(m_ui->entryCloseButton, SIGNAL(clicked()), SLOT(hide())); + connect(m_ui->toggleUsernameButton, SIGNAL(clicked(bool)), SLOT(setUsernameVisible(bool))); connect(m_ui->togglePasswordButton, SIGNAL(clicked(bool)), SLOT(setPasswordVisible(bool))); connect(m_ui->toggleEntryNotesButton, SIGNAL(clicked(bool)), SLOT(setEntryNotesVisible(bool))); connect(m_ui->toggleGroupNotesButton, SIGNAL(clicked(bool)), SLOT(setGroupNotesVisible(bool))); connect(m_ui->entryTabWidget, SIGNAL(tabBarClicked(int)), SLOT(updateTabIndexes()), Qt::QueuedConnection); + // Prevent the url from being focused after clicked to allow the Copy Password button to work properly + connect(m_ui->entryUrlLabel, &QLabel::linkActivated, this, [this] { + openEntryUrl(); + m_ui->entryTabWidget->setFocus(); + }); connect(&m_totpTimer, SIGNAL(timeout()), SLOT(updateTotpLabel())); + connect(m_ui->entryAttributesTable, &QTableWidget::itemDoubleClicked, this, [this](QTableWidgetItem* item) { + auto userData = item->data(Qt::UserRole); + if (userData.isValid()) { + emit copyTextRequested(userData.toString()); + } + }); + connect(config(), &Config::changed, this, [this](Config::ConfigKey key) { if (key == Config::GUI_HidePreviewPanel) { setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool()); } + refresh(); }); // Group @@ -92,8 +111,18 @@ EntryPreviewWidget::EntryPreviewWidget(QWidget* parent) #endif } -EntryPreviewWidget::~EntryPreviewWidget() +EntryPreviewWidget::~EntryPreviewWidget() = default; + +bool EntryPreviewWidget::eventFilter(QObject* object, QEvent* event) { + if (object == m_ui->entryTotpLabel && event->type() == QEvent::MouseButtonDblClick) { + if (m_currentEntry && m_currentEntry->hasTotp()) { + emit copyTextRequested(m_currentEntry->totp()); + m_ui->entryTotpLabel->clearFocus(); + return true; + } + } + return QWidget::eventFilter(object, event); } void EntryPreviewWidget::clear() @@ -106,48 +135,92 @@ void EntryPreviewWidget::clear() void EntryPreviewWidget::setEntry(Entry* selectedEntry) { - if (!selectedEntry) { + if (m_currentEntry == selectedEntry) { + return; + } + + if (m_currentEntry) { + disconnect(m_currentEntry, nullptr, this, nullptr); + } + if (m_currentGroup) { + disconnect(m_currentGroup, nullptr, this, nullptr); + } + + m_currentEntry = selectedEntry; + m_currentGroup = nullptr; + + if (!m_currentEntry) { hide(); return; } - m_currentEntry = selectedEntry; + connect(m_currentEntry, &Entry::modified, this, &EntryPreviewWidget::refresh); + refresh(); - updateEntryHeaderLine(); - updateEntryTotp(); - updateEntryGeneralTab(); - updateEntryAdvancedTab(); - updateEntryAutotypeTab(); - - setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool()); - - m_ui->stackedWidget->setCurrentWidget(m_ui->pageEntry); - const int tabIndex = m_ui->entryTabWidget->isTabEnabled(m_selectedTabEntry) ? m_selectedTabEntry : GeneralTabIndex; - Q_ASSERT(m_ui->entryTabWidget->isTabEnabled(GeneralTabIndex)); - m_ui->entryTabWidget->setCurrentIndex(tabIndex); + if (m_currentEntry->hasTotp()) { + m_ui->entryTotpButton->setChecked(!config()->get(Config::Security_HideTotpPreviewPanel).toBool()); + } } void EntryPreviewWidget::setGroup(Group* selectedGroup) { - if (!selectedGroup) { + if (m_currentGroup == selectedGroup) { + return; + } + + if (m_currentEntry) { + disconnect(m_currentEntry, nullptr, this, nullptr); + } + if (m_currentGroup) { + disconnect(m_currentGroup, nullptr, this, nullptr); + } + + m_currentEntry = nullptr; + m_currentGroup = selectedGroup; + + if (!m_currentGroup) { hide(); return; } - m_currentGroup = selectedGroup; - updateGroupHeaderLine(); - updateGroupGeneralTab(); + connect(m_currentGroup, &Group::modified, this, &EntryPreviewWidget::refresh); + refresh(); +} + +void EntryPreviewWidget::refresh() +{ + if (m_currentEntry) { + updateEntryHeaderLine(); + updateEntryTotp(); + updateEntryGeneralTab(); + updateEntryAdvancedTab(); + updateEntryAutotypeTab(); + + setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool()); + + m_ui->stackedWidget->setCurrentWidget(m_ui->pageEntry); + const int tabIndex = + m_ui->entryTabWidget->isTabEnabled(m_selectedTabEntry) ? m_selectedTabEntry : GeneralTabIndex; + Q_ASSERT(m_ui->entryTabWidget->isTabEnabled(GeneralTabIndex)); + m_ui->entryTabWidget->setCurrentIndex(tabIndex); + } else if (m_currentGroup) { + updateGroupHeaderLine(); + updateGroupGeneralTab(); #if defined(WITH_XC_KEESHARE) - updateGroupSharingTab(); + updateGroupSharingTab(); #endif - setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool()); + setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool()); - m_ui->stackedWidget->setCurrentWidget(m_ui->pageGroup); - const int tabIndex = m_ui->groupTabWidget->isTabEnabled(m_selectedTabGroup) ? m_selectedTabGroup : GeneralTabIndex; - Q_ASSERT(m_ui->groupTabWidget->isTabEnabled(GeneralTabIndex)); - m_ui->groupTabWidget->setCurrentIndex(tabIndex); + m_ui->stackedWidget->setCurrentWidget(m_ui->pageGroup); + const int tabIndex = + m_ui->groupTabWidget->isTabEnabled(m_selectedTabGroup) ? m_selectedTabGroup : GeneralTabIndex; + Q_ASSERT(m_ui->groupTabWidget->isTabEnabled(GeneralTabIndex)); + m_ui->groupTabWidget->setCurrentIndex(tabIndex); + } else { + hide(); + } } void EntryPreviewWidget::setDatabaseMode(DatabaseWidget::Mode mode) @@ -181,38 +254,77 @@ void EntryPreviewWidget::updateEntryTotp() Q_ASSERT(m_currentEntry); const bool hasTotp = m_currentEntry->hasTotp(); m_ui->entryTotpButton->setVisible(hasTotp); - m_ui->entryTotpLabel->hide(); - m_ui->entryTotpProgress->hide(); - m_ui->entryTotpButton->setChecked(false); if (hasTotp) { m_totpTimer.start(1000); m_ui->entryTotpProgress->setMaximum(m_currentEntry->totpSettings()->step); updateTotpLabel(); } else { + m_ui->entryTotpLabel->hide(); + m_ui->entryTotpProgress->hide(); + m_ui->entryTotpButton->setChecked(false); m_ui->entryTotpLabel->clear(); m_totpTimer.stop(); } } +void EntryPreviewWidget::setUsernameVisible(bool state) +{ + if (state) { + auto username = m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->username()); + m_ui->entryUsernameLabel->setText(username); + m_ui->entryUsernameLabel->setFont(Font::defaultFont()); + m_ui->entryUsernameLabel->setCursorPosition(0); + } else { + m_ui->entryUsernameLabel->setText(QString("\u25cf").repeated(6)); + m_ui->entryUsernameLabel->setFont(Font::fixedFont()); + } + + m_ui->toggleUsernameButton->setIcon(icons()->onOffIcon("password-show", state)); +} + void EntryPreviewWidget::setPasswordVisible(bool state) { + m_ui->entryPasswordLabel->setFont(Font::fixedFont()); + const QString password = m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->password()); if (state) { - m_ui->entryPasswordLabel->setText(password); - m_ui->entryPasswordLabel->setCursorPosition(0); - m_ui->entryPasswordLabel->setFont(Font::fixedFont()); + if (config()->get(Config::GUI_ColorPasswords).toBool()) { + // Show the password in color + // clang-format off + QString html; + const auto dark = kpxcApp->isDarkTheme(); + for (const auto c : password) { + const auto color = c.isDigit() ? (dark ? "lightblue" : "blue") + : c.isUpper() ? (dark ? "lightgreen" : "darkgreen") + : c.isLower() ? (dark ? "yellow" : "red") + : (dark ? "white" : "black"); + html += "" + QString(c).toHtmlEscaped() + ""; + } + // clang-format on + m_ui->entryPasswordLabel->setTextFormat(Qt::RichText); + m_ui->entryPasswordLabel->setText(html); + } else { + // No color + m_ui->entryPasswordLabel->setTextFormat(Qt::PlainText); + m_ui->entryPasswordLabel->setText(password); + } } else if (password.isEmpty() && !config()->get(Config::Security_PasswordEmptyPlaceholder).toBool()) { m_ui->entryPasswordLabel->setText(""); } else { m_ui->entryPasswordLabel->setText(QString("\u25cf").repeated(6)); } + + m_ui->passwordScrollArea->setMaximumHeight(m_ui->entryPasswordLabel->sizeHint().height() + + m_ui->passwordScrollArea->horizontalScrollBar()->sizeHint().height()); + m_ui->togglePasswordButton->setIcon(icons()->onOffIcon("password-show", state)); } void EntryPreviewWidget::setEntryNotesVisible(bool state) { - setNotesVisible(m_ui->entryNotesTextEdit, m_currentEntry->notes(), state); + setNotesVisible( + m_ui->entryNotesTextEdit, m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->notes()), state); m_ui->toggleEntryNotesButton->setIcon(icons()->onOffIcon("password-show", state)); } @@ -231,6 +343,8 @@ void EntryPreviewWidget::setNotesVisible(QTextEdit* notesWidget, const QString& } else { if (!notes.isEmpty()) { notesWidget->setPlainText(QString("\u25cf").repeated(6)); + } else { + notesWidget->setPlainText(""); } } } @@ -238,14 +352,22 @@ void EntryPreviewWidget::setNotesVisible(QTextEdit* notesWidget, const QString& void EntryPreviewWidget::updateEntryGeneralTab() { Q_ASSERT(m_currentEntry); - m_ui->entryUsernameLabel->setText(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->username())); - m_ui->entryUsernameLabel->setCursorPosition(0); + + if (config()->get(Config::GUI_HideUsernames).toBool()) { + setUsernameVisible(false); + // Show the username toggle button + m_ui->toggleUsernameButton->setVisible(!m_currentEntry->username().isEmpty()); + m_ui->toggleUsernameButton->setChecked(false); + } else { + setUsernameVisible(true); + m_ui->toggleUsernameButton->setVisible(false); + } if (config()->get(Config::Security_HidePasswordPreviewPanel).toBool()) { // Hide password setPasswordVisible(false); // Show the password toggle button if there are dots in the label - m_ui->togglePasswordButton->setVisible(!m_ui->entryPasswordLabel->text().isEmpty()); + m_ui->togglePasswordButton->setVisible(!m_currentEntry->password().isEmpty()); m_ui->togglePasswordButton->setChecked(false); } else { // Show password @@ -256,7 +378,6 @@ void EntryPreviewWidget::updateEntryGeneralTab() auto hasNotes = !m_currentEntry->notes().isEmpty(); auto hideNotes = config()->get(Config::Security_HideNotes).toBool(); - m_ui->entryNotesTextEdit->setVisible(hasNotes); setEntryNotesVisible(hasNotes && !hideNotes); m_ui->toggleEntryNotesButton->setVisible(hasNotes && hideNotes && !m_ui->entryNotesTextEdit->toPlainText().isEmpty()); @@ -268,7 +389,7 @@ void EntryPreviewWidget::updateEntryGeneralTab() m_ui->entryNotesTextEdit->setFont(Font::defaultFont()); } - m_ui->entryUrlLabel->setRawText(m_currentEntry->displayUrl()); + m_ui->entryUrlLabel->setRawText(m_currentEntry->displayUrl().toHtmlEscaped()); const QString url = m_currentEntry->url(); if (!url.isEmpty()) { // URL is well formed and can be opened in a browser @@ -281,8 +402,7 @@ void EntryPreviewWidget::updateEntryGeneralTab() } const TimeInfo entryTime = m_currentEntry->timeInfo(); - const QString expires = - entryTime.expires() ? entryTime.expiryTime().toLocalTime().toString(Qt::DefaultLocaleShortDate) : tr("Never"); + const QString expires = entryTime.expires() ? Clock::toString(entryTime.expiryTime().toLocalTime()) : tr("Never"); m_ui->entryExpirationLabel->setText(expires); m_ui->entryTagsList->tags(m_currentEntry->tagList()); m_ui->entryTagsList->setReadOnly(true); @@ -307,6 +427,10 @@ void EntryPreviewWidget::updateEntryAdvancedTab() font.setBold(true); for (const QString& key : customAttributes) { m_ui->entryAttributesTable->setItem(i, 0, new QTableWidgetItem(key)); + m_ui->entryAttributesTable->item(i, 0)->setFont(font); + m_ui->entryAttributesTable->item(i, 0)->setTextAlignment(Qt::AlignTop | Qt::AlignLeft); + + auto value = m_currentEntry->resolveMultiplePlaceholders(attributes->value(key)); if (attributes->isProtected(key)) { // only show the reveal button on protected attributes @@ -314,40 +438,35 @@ void EntryPreviewWidget::updateEntryAdvancedTab() button->setCheckable(true); button->setChecked(false); button->setIcon(icons()->onOffIcon("password-show", false)); - button->setProperty("value", attributes->value(key)); button->setProperty("row", i); - m_ui->entryAttributesTable->setCellWidget(i, 1, button); - m_ui->entryAttributesTable->setItem(i, 2, new QTableWidgetItem(QString("\u25cf").repeated(6))); - + button->setIconSize({12, 12}); connect(button, &QToolButton::clicked, this, [this](bool state) { auto btn = qobject_cast(sender()); btn->setIcon(icons()->onOffIcon("password-show", state)); - auto row = btn->property("row").toInt(); + auto item = m_ui->entryAttributesTable->item(btn->property("row").toInt(), 2); if (state) { - m_ui->entryAttributesTable->item(row, 2)->setText(btn->property("value").toString()); + item->setText(item->data(Qt::UserRole).toString()); } else { - m_ui->entryAttributesTable->item(row, 2)->setText(QString("\u25cf").repeated(6)); + item->setText(QString("\u25cf").repeated(6)); } // Maintain button height while showing contents of cell auto size = btn->size(); - m_ui->entryAttributesTable->resizeRowToContents(row); + m_ui->entryAttributesTable->resizeRowToContents(item->row()); btn->setFixedSize(size); }); + + m_ui->entryAttributesTable->setCellWidget(i, 1, button); + m_ui->entryAttributesTable->setItem(i, 2, new QTableWidgetItem(QString("\u25cf").repeated(6))); } else { - m_ui->entryAttributesTable->setItem(i, 2, new QTableWidgetItem(attributes->value(key))); + m_ui->entryAttributesTable->setItem(i, 2, new QTableWidgetItem(value)); } - m_ui->entryAttributesTable->item(i, 0)->setFont(font); - m_ui->entryAttributesTable->item(i, 0)->setTextAlignment(Qt::AlignTop | Qt::AlignLeft); + m_ui->entryAttributesTable->item(i, 2)->setData(Qt::UserRole, value); + m_ui->entryAttributesTable->item(i, 2)->setToolTip(tr("Double click to copy value")); m_ui->entryAttributesTable->item(i, 2)->setTextAlignment(Qt::AlignTop | Qt::AlignLeft); ++i; } - connect(m_ui->entryAttributesTable, &QTableWidget::cellDoubleClicked, this, [this](int row, int column) { - if (column == 2) { - clipboard()->setText(m_ui->entryAttributesTable->item(row, column)->text()); - } - }); } m_ui->entryAttributesTable->horizontalHeader()->setStretchLastSection(true); @@ -372,7 +491,9 @@ void EntryPreviewWidget::updateEntryAutotypeTab() } m_ui->entryAutotypeTree->addTopLevelItems(items); - setTabEnabled(m_ui->entryTabWidget, m_ui->entryAutotypeTab, m_currentEntry->autoTypeEnabled()); + setTabEnabled(m_ui->entryTabWidget, + m_ui->entryAutotypeTab, + m_currentEntry->autoTypeEnabled() && m_currentEntry->groupAutoTypeEnabled()); } void EntryPreviewWidget::updateGroupHeaderLine() @@ -392,8 +513,7 @@ void EntryPreviewWidget::updateGroupGeneralTab() m_ui->groupAutotypeLabel->setText(autotypeText); const TimeInfo groupTime = m_currentGroup->timeInfo(); - const QString expiresText = - groupTime.expires() ? groupTime.expiryTime().toString(Qt::DefaultLocaleShortDate) : tr("Never"); + const QString expiresText = groupTime.expires() ? Clock::toString(groupTime.expiryTime()) : tr("Never"); m_ui->groupExpirationLabel->setText(expiresText); if (config()->get(Config::Security_HideNotes).toBool()) { @@ -469,6 +589,9 @@ void EntryPreviewWidget::setTabEnabled(QTabWidget* tabWidget, QWidget* widget, b QString EntryPreviewWidget::hierarchy(const Group* group, const QString& title) { - QString groupList = QString("%1").arg(group->hierarchy().join(" / ")); - return title.isEmpty() ? groupList : QString("%1 / %2").arg(groupList, title); + if (group) { + QString groupList = QString("%1").arg(group->hierarchy().join(" / ")); + return title.isEmpty() ? groupList : QString("%1 / %2").arg(groupList, title); + } + return {}; } diff --git a/src/gui/EntryPreviewWidget.h b/src/gui/EntryPreviewWidget.h index 8a5b0c09f..b5c497a76 100644 --- a/src/gui/EntryPreviewWidget.h +++ b/src/gui/EntryPreviewWidget.h @@ -26,6 +26,7 @@ namespace Ui class EntryPreviewWidget; } +class QTabWidget; class QTextEdit; class EntryPreviewWidget : public QWidget @@ -40,11 +41,15 @@ public slots: void setEntry(Entry* selectedEntry); void setGroup(Group* selectedGroup); void setDatabaseMode(DatabaseWidget::Mode mode); + void refresh(); void clear(); signals: - void errorOccurred(const QString& error); void entryUrlActivated(Entry* entry); + void copyTextRequested(const QString& text); + +protected: + bool eventFilter(QObject* object, QEvent* event) override; private slots: void updateEntryHeaderLine(); @@ -52,6 +57,7 @@ private slots: void updateEntryGeneralTab(); void updateEntryAdvancedTab(); void updateEntryAutotypeTab(); + void setUsernameVisible(bool state); void setPasswordVisible(bool state); void setEntryNotesVisible(bool state); void setGroupNotesVisible(bool state); diff --git a/src/gui/EntryPreviewWidget.ui b/src/gui/EntryPreviewWidget.ui index d97b23ab3..b2cdecbba 100644 --- a/src/gui/EntryPreviewWidget.ui +++ b/src/gui/EntryPreviewWidget.ui @@ -6,7 +6,7 @@ 0 0 - 481 + 530 257 @@ -100,7 +100,7 @@ Qt::ClickFocus - Qt::AutoText + Qt::PlainText Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse @@ -123,6 +123,9 @@ true + + Double click to copy to clipboard + 1234567 @@ -160,6 +163,9 @@ true + + true + @@ -195,7 +201,7 @@ - + 0 @@ -214,6 +220,135 @@ 6 + + + + + + + + + + 14 + 14 + + + + true + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + Qt::ScrollBarAlwaysOff + + + QAbstractScrollArea::AdjustToContents + + + true + + + + + 0 + 0 + 157 + 63 + + + + + 6 + + + 0 + + + 0 + + + 0 + + + + + Qt::ClickFocus + + + TextLabel + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + true + + + + + + + + + + + + + + 0 + 0 + + + + + 150 + 0 + + + + PointingHandCursor + + + Qt::ClickFocus + + + https://example.com + + + Qt::RichText + + + Qt::TextBrowserInteraction + + + true + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + @@ -239,108 +374,6 @@ - - - - - 0 - 0 - - - - - 75 - true - - - - Notes - - - Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing - - - - - - - Qt::ClickFocus - - - Tags list - - - - - - - - 0 - 0 - - - - - 75 - true - - - - Password - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - 6 - - - - - - - - - 14 - 14 - - - - true - - - - - - - - 150 - 0 - - - - Qt::ClickFocus - - - password - - - false - - - true - - - true - - - - - @@ -382,12 +415,15 @@ true + + true + - - + + 0 @@ -401,13 +437,105 @@ - URL + Tags Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + 8 + + + + + + + + + 14 + 14 + + + + true + + + + + + + + 150 + 0 + + + + Qt::ClickFocus + + + username + + + false + + + 8 + + + true + + + true + + + true + + + + + + + + + Qt::ClickFocus + + + Tags list + + + true + + + + + + + + 0 + 0 + + + + Qt::ClickFocus + + + expired + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + true + + + @@ -424,79 +552,47 @@ - - + + - + 0 0 - - Qt::ClickFocus + + + 75 + true + - expired + Password - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - + + - + 0 0 - - - 150 - 0 - - - - PointingHandCursor - - - Qt::ClickFocus + + + 75 + true + - https://example.com + Notes - - Qt::TextBrowserInteraction + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing @@ -522,36 +618,8 @@ - - - - - 150 - 0 - - - - Qt::ClickFocus - - - username - - - false - - - 8 - - - true - - - true - - - - - + + 0 @@ -565,7 +633,7 @@ - Tags + URL Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -725,7 +793,7 @@ Default Sequence - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing @@ -743,6 +811,9 @@ Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + true +
    @@ -751,7 +822,7 @@ - Qt::ClickFocus + Qt::NoFocus QFrame::Sunken @@ -759,6 +830,9 @@ true + + QAbstractItemView::NoSelection + true @@ -897,7 +971,7 @@ - + 0 @@ -1053,6 +1127,9 @@ true + + true + diff --git a/src/gui/FileDialog.cpp b/src/gui/FileDialog.cpp index 0d46898fb..96ee2b206 100644 --- a/src/gui/FileDialog.cpp +++ b/src/gui/FileDialog.cpp @@ -19,11 +19,11 @@ #include "core/Config.h" +#include + FileDialog* FileDialog::m_instance(nullptr); -FileDialog::FileDialog() -{ -} +FileDialog::FileDialog() = default; QString FileDialog::getOpenFileName(QWidget* parent, const QString& caption, @@ -37,7 +37,7 @@ QString FileDialog::getOpenFileName(QWidget* parent, m_nextFileName.clear(); return result; } else { - const auto& workingDir = dir.isEmpty() ? config()->get(Config::LastDir).toString() : dir; + const auto& workingDir = dir.isEmpty() ? getLastDir("default") : dir; const auto result = QDir::toNativeSeparators( QFileDialog::getOpenFileName(parent, caption, workingDir, filter, selectedFilter, options)); @@ -63,7 +63,7 @@ QStringList FileDialog::getOpenFileNames(QWidget* parent, m_nextFileNames.clear(); return results; } else { - const auto& workingDir = dir.isEmpty() ? config()->get(Config::LastDir).toString() : dir; + const auto& workingDir = dir.isEmpty() ? getLastDir("default") : dir; auto results = QFileDialog::getOpenFileNames(parent, caption, workingDir, filter, selectedFilter, options); for (auto& path : results) { @@ -92,7 +92,7 @@ QString FileDialog::getSaveFileName(QWidget* parent, m_nextFileName.clear(); return result; } else { - const auto& workingDir = dir.isEmpty() ? config()->get(Config::LastDir).toString() : dir; + const auto& workingDir = dir.isEmpty() ? getLastDir("default") : dir; const auto result = QDir::toNativeSeparators( QFileDialog::getSaveFileName(parent, caption, workingDir, filter, selectedFilter, options)); @@ -116,7 +116,7 @@ QString FileDialog::getExistingDirectory(QWidget* parent, m_nextDirName.clear(); return result; } else { - const auto& workingDir = dir.isEmpty() ? config()->get(Config::LastDir).toString() : dir; + const auto& workingDir = dir.isEmpty() ? getLastDir("default") : dir; const auto result = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(parent, caption, workingDir, options)); @@ -160,7 +160,15 @@ void FileDialog::saveLastDir(const QString& role, const QString& path, bool sens QString FileDialog::getLastDir(const QString& role, const QString& defaultDir) { auto lastDirs = config()->get(Config::LastDir).toHash(); - return lastDirs.value(role, defaultDir).toString(); + auto fallbackDir = defaultDir; + + if (fallbackDir.isEmpty()) { + // Fallback to the environment variable, if it exists, otherwise use the home directory + const auto& env = QProcessEnvironment::systemEnvironment(); + fallbackDir = env.value("KPXC_INITIAL_DIR", QDir::homePath()); + } + + return lastDirs.value(role, fallbackDir).toString(); } FileDialog* FileDialog::instance() diff --git a/src/gui/FileDialog.h b/src/gui/FileDialog.h index fa36a7d3a..14913e429 100644 --- a/src/gui/FileDialog.h +++ b/src/gui/FileDialog.h @@ -56,7 +56,7 @@ public: void setNextDirectory(const QString& path); static void saveLastDir(const QString& role, const QString& path, bool sensitive = false); - static QString getLastDir(const QString& role, const QString& defaultDir = QDir::homePath()); + static QString getLastDir(const QString& role, const QString& defaultDir = QString()); static FileDialog* instance(); diff --git a/src/gui/Font.cpp b/src/gui/Font.cpp index 8bb54863b..bb02b12ac 100644 --- a/src/gui/Font.cpp +++ b/src/gui/Font.cpp @@ -28,19 +28,21 @@ QFont Font::defaultFont() QFont Font::fixedFont() { auto fixedFont = QFontDatabase::systemFont(QFontDatabase::FixedFont); + fixedFont.setPointSize(defaultFont().pointSize()); #ifdef Q_OS_WIN // try to use Consolas on Windows, because the default Courier New has too many similar characters - auto consolasFont = QFontDatabase().font("Consolas", fixedFont.styleName(), fixedFont.pointSize()); + auto consolasFont = QFontDatabase().font("Consolas", fixedFont.styleName(), defaultFont().pointSize()); if (consolasFont.family().contains("consolas", Qt::CaseInsensitive)) { fixedFont = consolasFont; + // Bump up the font size by one point to better match the default font on Windows + fixedFont.setPointSize(defaultFont().pointSize() + 1); } #endif #ifdef Q_OS_MACOS // Qt doesn't choose a monospace font correctly on macOS - fixedFont = QFontDatabase().font("Menlo", fixedFont.styleName(), fixedFont.pointSize()); + fixedFont = QFontDatabase().font("Menlo", fixedFont.styleName(), defaultFont().pointSize()); + fixedFont.setPointSize(defaultFont().pointSize()); #endif - - fixedFont.setPointSize(qApp->font().pointSize()); return fixedFont; } diff --git a/src/gui/Font.h b/src/gui/Font.h index d53f0c407..878dbb53d 100644 --- a/src/gui/Font.h +++ b/src/gui/Font.h @@ -27,9 +27,7 @@ public: static QFont fixedFont(); private: - Font() - { - } + Font() = default; }; #endif // KEEPASSX_FONT_H diff --git a/src/gui/GuiTools.cpp b/src/gui/GuiTools.cpp index 30963b374..b2dfa63f3 100644 --- a/src/gui/GuiTools.cpp +++ b/src/gui/GuiTools.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -66,6 +66,21 @@ namespace GuiTools } } + bool confirmDeletePluginData(QWidget* parent, const QList& entries) + { + if (!parent || entries.isEmpty()) { + return false; + } + + auto answer = MessageBox::question(parent, + QObject::tr("Delete plugin data?"), + QObject::tr("Delete plugin data from Entry(s)?", "", entries.size()), + MessageBox::Delete | MessageBox::Cancel, + MessageBox::Cancel); + + return answer == MessageBox::Delete; + } + size_t deleteEntriesResolveReferences(QWidget* parent, const QList& entries, bool permanent) { if (!parent || entries.isEmpty()) { diff --git a/src/gui/GuiTools.h b/src/gui/GuiTools.h index 814537382..c5e710896 100644 --- a/src/gui/GuiTools.h +++ b/src/gui/GuiTools.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -26,6 +26,7 @@ class Entry; namespace GuiTools { bool confirmDeleteEntries(QWidget* parent, const QList& entries, bool permanent); + bool confirmDeletePluginData(QWidget* parent, const QList& entries); size_t deleteEntriesResolveReferences(QWidget* parent, const QList& entries, bool permanent); } // namespace GuiTools #endif // KEEPASSXC_GUITOOLS_H diff --git a/src/gui/HtmlGuiExporter.cpp b/src/gui/HtmlGuiExporter.cpp new file mode 100644 index 000000000..75175e3f0 --- /dev/null +++ b/src/gui/HtmlGuiExporter.cpp @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2019 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 . + */ + +#include "HtmlGuiExporter.h" + +#include + +#include "gui/Icons.h" + +namespace +{ + QString PixmapToHTML(const QPixmap& pixmap) + { + if (pixmap.isNull()) { + return ""; + } + + // Based on https://stackoverflow.com/a/6621278 + QByteArray a; + QBuffer buffer(&a); + pixmap.save(&buffer, "PNG"); + return QString(""; + } +} // namespace + +QString HtmlGuiExporter::groupIconToHtml(const Group* group) +{ + return PixmapToHTML(Icons::groupIconPixmap(group, IconSize::Medium)); +} + +QString HtmlGuiExporter::entryIconToHtml(const Entry* entry) +{ + return PixmapToHTML(Icons::entryIconPixmap(entry, IconSize::Medium)); +} diff --git a/src/gui/OpVaultOpenWidget.h b/src/gui/HtmlGuiExporter.h similarity index 69% rename from src/gui/OpVaultOpenWidget.h rename to src/gui/HtmlGuiExporter.h index aed96caba..9979996a1 100644 --- a/src/gui/OpVaultOpenWidget.h +++ b/src/gui/HtmlGuiExporter.h @@ -15,20 +15,16 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_OPVAULTOPENWIDGET_H -#define KEEPASSXC_OPVAULTOPENWIDGET_H +#ifndef KEEPASSX_HTMLGUIEXPORTER_H +#define KEEPASSX_HTMLGUIEXPORTER_H -#include "gui/DatabaseOpenWidget.h" +#include "format/HtmlExporter.h" -class OpVaultOpenWidget : public DatabaseOpenWidget +class HtmlGuiExporter : public HtmlExporter { - Q_OBJECT - -public: - explicit OpVaultOpenWidget(QWidget* parent = nullptr); - protected: - void openDatabase() override; + QString groupIconToHtml(const Group* group) override; + QString entryIconToHtml(const Entry* entry) override; }; -#endif // KEEPASSXC_OPVAULTOPENWIDGET_H +#endif // KEEPASSX_HTMLGUIEXPORTER_H diff --git a/src/gui/IconDownloader.cpp b/src/gui/IconDownloader.cpp index d9a8e693b..b07856862 100644 --- a/src/gui/IconDownloader.cpp +++ b/src/gui/IconDownloader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019 KeePassXC Team + * Copyright (C) 2023 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 @@ -17,7 +17,8 @@ #include "IconDownloader.h" #include "core/Config.h" -#include "core/NetworkManager.h" +#include "gui/UrlTools.h" +#include "networking/NetworkManager.h" #include #include @@ -40,37 +41,6 @@ IconDownloader::~IconDownloader() abortDownload(); } -namespace -{ - // Try to get the 2nd level domain of the host part of a QUrl. For example, - // "foo.bar.example.com" would become "example.com", and "foo.bar.example.co.uk" - // would become "example.co.uk". - QString getSecondLevelDomain(const QUrl& url) - { - QString fqdn = url.host(); - fqdn.truncate(fqdn.length() - url.topLevelDomain().length()); - QStringList parts = fqdn.split('.'); - QString newdom = parts.takeLast() + url.topLevelDomain(); - return newdom; - } - - QUrl convertVariantToUrl(const QVariant& var) - { - QUrl url; - if (var.canConvert()) { - url = var.toUrl(); - } - return url; - } - - QUrl getRedirectTarget(QNetworkReply* reply) - { - QVariant var = reply->attribute(QNetworkRequest::RedirectionTargetAttribute); - QUrl url = convertVariantToUrl(var); - return url; - } -} // namespace - void IconDownloader::setUrl(const QString& entryUrl) { m_url = entryUrl; @@ -105,16 +75,16 @@ void IconDownloader::setUrl(const QString& entryUrl) // Determine if host portion of URL is an IP address by resolving it and // searching for a match with the returned address(es). bool hostIsIp = false; - QList hostAddressess = QHostInfo::fromName(fullyQualifiedDomain).addresses(); + QList hostAddresses = QHostInfo::fromName(fullyQualifiedDomain).addresses(); hostIsIp = - std::any_of(hostAddressess.begin(), hostAddressess.end(), [&fullyQualifiedDomain](const QHostAddress& addr) { + std::any_of(hostAddresses.begin(), hostAddresses.end(), [&fullyQualifiedDomain](const QHostAddress& addr) { return addr.toString() == fullyQualifiedDomain; }); // Determine the second-level domain, if available QString secondLevelDomain; if (!hostIsIp) { - secondLevelDomain = getSecondLevelDomain(url); + secondLevelDomain = urlTools()->getBaseDomainFromUrl(url.toString()); } // Start with the "fallback" url (if enabled) to try to get the best favicon @@ -130,6 +100,13 @@ void IconDownloader::setUrl(const QString& entryUrl) } } + // Add a pull that preserves the query if there is one. + if (!url.path().isEmpty()) { + // Appends /favicon.ico to the last segment of the path. + // stem/something/ will become stem/something/favicon.ico, and stem/something will become stem/favicon.ico + m_urlsToTry.append(url.resolved(QUrl("./favicon.ico"))); + } + // Add a direct pull of the website's own favicon.ico file QUrl favicon_url = url; favicon_url.setPath("/favicon.ico"); @@ -195,7 +172,7 @@ void IconDownloader::fetchFinished() QString url = m_url; bool error = (m_reply->error() != QNetworkReply::NoError); - QUrl redirectTarget = getRedirectTarget(m_reply); + QUrl redirectTarget = urlTools()->getRedirectTarget(m_reply); m_reply->deleteLater(); m_reply = nullptr; diff --git a/src/gui/IconModels.cpp b/src/gui/IconModels.cpp index ab435aedc..1d1eefb42 100644 --- a/src/gui/IconModels.cpp +++ b/src/gui/IconModels.cpp @@ -38,7 +38,7 @@ int DefaultIconModel::rowCount(const QModelIndex& parent) const QVariant DefaultIconModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } Q_ASSERT(index.row() < databaseIcons()->count()); @@ -47,7 +47,7 @@ QVariant DefaultIconModel::data(const QModelIndex& index, int role) const return databaseIcons()->icon(index.row(), IconSize::Medium); } - return QVariant(); + return {}; } CustomIconModel::CustomIconModel(QObject* parent) @@ -78,7 +78,7 @@ int CustomIconModel::rowCount(const QModelIndex& parent) const QVariant CustomIconModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } if (role == Qt::DecorationRole) { @@ -86,7 +86,7 @@ QVariant CustomIconModel::data(const QModelIndex& index, int role) const return m_icons.value(uuid); } - return QVariant(); + return {}; } QUuid CustomIconModel::uuidFromIndex(const QModelIndex& index) const diff --git a/src/gui/Icons.cpp b/src/gui/Icons.cpp index b16c40f80..7cccf406a 100644 --- a/src/gui/Icons.cpp +++ b/src/gui/Icons.cpp @@ -18,6 +18,7 @@ #include "Icons.h" +#include #include #include #include @@ -25,6 +26,7 @@ #include "config-keepassx.h" #include "core/Config.h" +#include "core/Database.h" #include "gui/DatabaseIcons.h" #include "gui/MainWindow.h" #include "gui/osutils/OSUtils.h" @@ -48,16 +50,14 @@ private: Icons* Icons::m_instance(nullptr); -Icons::Icons() -{ -} +Icons::Icons() = default; QString Icons::applicationIconName() { #ifdef KEEPASSXC_DIST_FLATPAK - return QString("org.keepassxc.KeePassXC"); + return "org.keepassxc.KeePassXC"; #else - return QString("keepassxc"); + return "keepassxc"; #endif } @@ -79,50 +79,36 @@ QString Icons::trayIconAppearance() const return iconAppearance; } -QIcon Icons::trayIcon(QString style) +QIcon Icons::trayIcon(bool unlocked) { - if (style == "unlocked") { - style.clear(); - } - if (!style.isEmpty()) { - style = "-" + style; + QString suffix; + if (!unlocked) { + suffix = "-locked"; } - auto iconApperance = trayIconAppearance(); - if (!iconApperance.startsWith("monochrome")) { - return icon(QString("%1%2").arg(applicationIconName(), style), false); + auto iconAppearance = trayIconAppearance(); + if (!iconAppearance.startsWith("monochrome")) { + return icon(QString("%1%2").arg(applicationIconName(), suffix), false); } QIcon i; #if defined(Q_OS_MACOS) || defined(Q_OS_WIN) if (osUtils->isStatusBarDark()) { - i = icon(QString("keepassxc-monochrome-light%1").arg(style), false); + i = icon(QString("keepassxc-monochrome-light%1").arg(suffix), false); } else { - i = icon(QString("keepassxc-monochrome-dark%1").arg(style), false); + i = icon(QString("keepassxc-monochrome-dark%1").arg(suffix), false); } #else - i = icon(QString("%1-%2%3").arg(applicationIconName(), iconApperance, style), false); + i = icon(QString("%1-%2%3").arg(applicationIconName(), iconAppearance, suffix), false); #endif -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) // Set as mask to allow the operating system to recolour the tray icon. This may look weird // if we failed to detect the status bar background colour correctly, but it is certainly // better than a barely visible icon and even if we did guess correctly, it allows for better // integration should the system's preferred colours not be 100% black or white. i.setIsMask(true); -#endif return i; } -QIcon Icons::trayIconLocked() -{ - return trayIcon("locked"); -} - -QIcon Icons::trayIconUnlocked() -{ - return trayIcon("unlocked"); -} - AdaptiveIconEngine::AdaptiveIconEngine(QIcon baseIcon, QColor overrideColor) : QIconEngine() , m_baseIcon(std::move(baseIcon)) @@ -133,11 +119,7 @@ AdaptiveIconEngine::AdaptiveIconEngine(QIcon baseIcon, QColor overrideColor) void AdaptiveIconEngine::paint(QPainter* painter, const QRect& rect, QIcon::Mode mode, QIcon::State state) { // Temporary image canvas to ensure that the background is transparent and alpha blending works. -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) auto scale = painter->device()->devicePixelRatioF(); -#else - auto scale = painter->device()->devicePixelRatio(); -#endif QImage img(rect.size() * scale, QImage::Format_ARGB32_Premultiplied); img.fill(0); QPainter p(&img); @@ -203,9 +185,7 @@ QIcon Icons::icon(const QString& name, bool recolor, const QColor& overrideColor icon = QIcon::fromTheme(name); if (recolor) { icon = QIcon(new AdaptiveIconEngine(icon, overrideColor)); -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) icon.setIsMask(true); -#endif } m_iconCache.insert(cacheName, icon); @@ -258,7 +238,6 @@ QPixmap Icons::entryIconPixmap(const Entry* entry, IconSize size) if (entry->iconUuid().isNull()) { icon = databaseIcons()->icon(entry->iconNumber(), size); } else { - Q_ASSERT(entry->database()); if (entry->database()) { icon = Icons::customIconPixmap(entry->database(), entry->iconUuid(), size); } @@ -277,7 +256,6 @@ QPixmap Icons::groupIconPixmap(const Group* group, IconSize size) if (group->iconUuid().isNull()) { icon = databaseIcons()->icon(group->iconNumber(), size); } else { - Q_ASSERT(group->database()); if (group->database()) { icon = Icons::customIconPixmap(group->database(), group->iconUuid(), size); } @@ -301,13 +279,16 @@ QString Icons::imageFormatsFilter() QStringList formatsStringList; for (const QByteArray& format : formats) { + bool codePointClean = true; for (char codePoint : format) { if (!QChar(codePoint).isLetterOrNumber()) { - continue; + codePointClean = false; + break; } } - - formatsStringList.append("*." + QString::fromLatin1(format).toLower()); + if (codePointClean) { + formatsStringList.append("*." + QString::fromLatin1(format).toLower()); + } } return formatsStringList.join(" "); diff --git a/src/gui/Icons.h b/src/gui/Icons.h index db342ae19..15b3b1be9 100644 --- a/src/gui/Icons.h +++ b/src/gui/Icons.h @@ -29,9 +29,7 @@ class Icons public: QString applicationIconName(); QIcon applicationIcon(); - QIcon trayIcon(QString style = "unlocked"); - QIcon trayIconLocked(); - QIcon trayIconUnlocked(); + QIcon trayIcon(bool unlocked = true); QString trayIconAppearance() const; QIcon icon(const QString& name, bool recolor = true, const QColor& overrideColor = QColor::Invalid); QIcon onOffIcon(const QString& name, bool on, bool recolor = true); diff --git a/src/gui/KMessageWidget.cpp b/src/gui/KMessageWidget.cpp index a7e723692..6b402f313 100644 --- a/src/gui/KMessageWidget.cpp +++ b/src/gui/KMessageWidget.cpp @@ -88,7 +88,7 @@ void KMessageWidgetPrivate::init(KMessageWidget *q_ptr) QObject::connect(textLabel, SIGNAL(linkActivated(QString)), q, SIGNAL(linkActivated(QString))); QObject::connect(textLabel, SIGNAL(linkHovered(QString)), q, SIGNAL(linkHovered(QString))); - QAction *closeAction = new QAction(q); + auto closeAction = new QAction(q); closeAction->setText(KMessageWidget::tr("&Close")); closeAction->setToolTip(KMessageWidget::tr("Close message")); closeAction->setIcon(icons()->icon("message-close")); @@ -114,7 +114,7 @@ void KMessageWidgetPrivate::createLayout() const auto actions = q->actions(); for (QAction *action: actions) { - QToolButton *button = new QToolButton(content); + auto button = new QToolButton(content); button->setDefaultAction(action); button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); buttons.append(button); @@ -126,12 +126,12 @@ void KMessageWidgetPrivate::createLayout() closeButton->setAutoRaise(buttons.isEmpty()); if (wordWrap) { - QGridLayout *layout = new QGridLayout(content); + auto layout = new QGridLayout(content); // Set alignment to make sure icon does not move down if text wraps layout->addWidget(iconLabel, 0, 0, 1, 1, Qt::AlignHCenter | Qt::AlignTop); layout->addWidget(textLabel, 0, 1); - QHBoxLayout *buttonLayout = new QHBoxLayout; + auto buttonLayout = new QHBoxLayout; buttonLayout->addStretch(); for (QToolButton* button: asConst(buttons)) { // For some reason, calling show() is necessary if wordwrap is true, @@ -143,7 +143,7 @@ void KMessageWidgetPrivate::createLayout() buttonLayout->addWidget(closeButton); layout->addItem(buttonLayout, 1, 0, 1, 2); } else { - QHBoxLayout *layout = new QHBoxLayout(content); + auto layout = new QHBoxLayout(content); layout->addWidget(iconLabel); layout->addWidget(textLabel); @@ -280,7 +280,11 @@ void KMessageWidget::setMessageType(KMessageWidget::MessageType type) auto closeButtonPixmap = d->closeButtonPixmap; QPainter painter; painter.begin(&closeButtonPixmap); +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + painter.setRenderHints(QPainter::Antialiasing); +#else painter.setRenderHints(QPainter::HighQualityAntialiasing); +#endif painter.setCompositionMode(QPainter::CompositionMode_SourceIn); painter.fillRect(QRect(0, 0, 16, 16), fg); painter.end(); diff --git a/src/gui/KMessageWidget.h b/src/gui/KMessageWidget.h index d47e78f9c..d97089ac9 100644 --- a/src/gui/KMessageWidget.h +++ b/src/gui/KMessageWidget.h @@ -119,19 +119,19 @@ public: /** * Constructs a KMessageWidget with the specified @p parent. */ - explicit KMessageWidget(QWidget *parent = 0); - + explicit KMessageWidget(QWidget* parent = nullptr); + /** * Constructs a KMessageWidget with the specified @p parent and * contents @p text. */ - explicit KMessageWidget(const QString &text, QWidget *parent = 0); - + explicit KMessageWidget(const QString& text, QWidget* parent = nullptr); + /** * Destructor. */ - ~KMessageWidget(); - + ~KMessageWidget() override; + /** * Get the text of this message widget. * @see setText() diff --git a/src/gui/KeePass1OpenWidget.cpp b/src/gui/KeePass1OpenWidget.cpp deleted file mode 100644 index 9a485a7f1..000000000 --- a/src/gui/KeePass1OpenWidget.cpp +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (C) 2012 Felix Geyer - * - * 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 . - */ - -#include "KeePass1OpenWidget.h" -#include "ui_DatabaseOpenWidget.h" - -#include - -#include "core/Database.h" -#include "core/Metadata.h" -#include "format/KeePass1Reader.h" - -KeePass1OpenWidget::KeePass1OpenWidget(QWidget* parent) - : DatabaseOpenWidget(parent) -{ - m_ui->labelHeadline->setText(tr("Import KeePass1 Database")); -} - -void KeePass1OpenWidget::openDatabase() -{ - KeePass1Reader reader; - - QString password; - QString keyFileName = m_ui->keyFileLineEdit->text(); - - if (!m_ui->editPassword->text().isEmpty() || m_retryUnlockWithEmptyPassword) { - password = m_ui->editPassword->text(); - } - - QFile file(m_filename); - if (!file.open(QIODevice::ReadOnly)) { - m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(file.errorString()), - MessageWidget::Error); - return; - } - - QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); - m_db = reader.readDatabase(&file, password, keyFileName); - QApplication::restoreOverrideCursor(); - - if (m_db) { - m_db->metadata()->setName(QFileInfo(m_filename).completeBaseName()); - emit dialogFinished(true); - clearForms(); - } else { - m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(reader.errorString()), - MessageWidget::Error); - } -} diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp index da3b5c721..a051187d6 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * Copyright (C) 2020 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 @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -37,16 +38,19 @@ #include "autotype/AutoType.h" #include "core/InactivityTimer.h" #include "core/Resources.h" -#include "core/Tools.h" #include "gui/AboutDialog.h" +#include "gui/ActionCollection.h" #include "gui/Icons.h" #include "gui/MessageBox.h" #include "gui/SearchWidget.h" +#include "gui/ShortcutSettingsPage.h" +#include "gui/entry/EntryView.h" #include "gui/osutils/OSUtils.h" +#include "gui/remote/RemoteSettings.h" #ifdef WITH_XC_UPDATECHECK #include "gui/UpdateCheckDialog.h" -#include "updatecheck/UpdateChecker.h" +#include "networking/UpdateChecker.h" #endif #ifdef WITH_XC_SSHAGENT @@ -68,7 +72,6 @@ #ifdef WITH_XC_BROWSER #include "browser/BrowserService.h" -#include "browser/BrowserSettingsPage.h" #endif #if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(QT_NO_DBUS) @@ -124,14 +127,24 @@ MainWindow::MainWindow() m_entryContextMenu = new QMenu(this); m_entryContextMenu->setSeparatorsCollapsible(true); + m_entryContextMenu->addAction(m_ui->actionEntryRestore); + m_entryContextMenu->addSeparator(); m_entryContextMenu->addAction(m_ui->actionEntryCopyUsername); m_entryContextMenu->addAction(m_ui->actionEntryCopyPassword); + m_entryContextMenu->addAction(m_ui->actionEntryCopyURL); m_entryContextMenu->addAction(m_ui->menuEntryCopyAttribute->menuAction()); m_entryContextMenu->addAction(m_ui->menuEntryTotp->menuAction()); + m_entryContextMenu->addAction(m_ui->menuTags->menuAction()); m_entryContextMenu->addSeparator(); m_entryContextMenu->addAction(m_ui->actionEntryAutoType); m_entryContextMenu->addSeparator(); +#ifdef WITH_XC_BROWSER_PASSKEYS + m_entryContextMenu->addAction(m_ui->actionEntryImportPasskey); + m_entryContextMenu->addAction(m_ui->actionEntryRemovePasskey); + m_entryContextMenu->addSeparator(); +#endif m_entryContextMenu->addAction(m_ui->actionEntryEdit); + m_entryContextMenu->addAction(m_ui->actionEntryExpire); m_entryContextMenu->addAction(m_ui->actionEntryClone); m_entryContextMenu->addAction(m_ui->actionEntryDelete); m_entryContextMenu->addAction(m_ui->actionEntryNew); @@ -142,11 +155,14 @@ MainWindow::MainWindow() m_entryContextMenu->addAction(m_ui->actionEntryOpenUrl); m_entryContextMenu->addAction(m_ui->actionEntryDownloadIcon); m_entryContextMenu->addSeparator(); - m_entryContextMenu->addAction(m_ui->actionEntryRestore); + m_entryContextMenu->addAction(m_ui->actionEntryAddToAgent); + m_entryContextMenu->addAction(m_ui->actionEntryRemoveFromAgent); m_entryNewContextMenu = new QMenu(this); m_entryNewContextMenu->addAction(m_ui->actionEntryNew); + connect(m_ui->menuRemoteSync, &QMenu::aboutToShow, this, &MainWindow::updateRemoteSyncMenuEntries); + // Build Entry Level Auto-Type menu auto autotypeMenu = new QMenu({}, this); autotypeMenu->addAction(m_ui->actionEntryAutoTypeSequence); @@ -177,9 +193,17 @@ MainWindow::MainWindow() connect(m_ui->tabWidget, &DatabaseTabWidget::databaseLocked, this, &MainWindow::databaseLocked); connect(m_ui->tabWidget, &DatabaseTabWidget::databaseUnlocked, this, &MainWindow::databaseUnlocked); connect(m_ui->tabWidget, &DatabaseTabWidget::activeDatabaseChanged, this, &MainWindow::activeDatabaseChanged); + connect(m_ui->tabWidget, + &DatabaseTabWidget::databaseUnlockDialogFinished, + this, + &MainWindow::databaseUnlockDialogFinished); + + initViewMenu(); + initActionCollection(); + + m_ui->settingsWidget->addSettingsPage(new ShortcutSettingsPage()); #ifdef WITH_XC_BROWSER - m_ui->settingsWidget->addSettingsPage(new BrowserSettingsPage()); connect( browserService(), &BrowserService::requestUnlock, m_ui->tabWidget, &DatabaseTabWidget::performBrowserUnlock); #endif @@ -187,21 +211,12 @@ MainWindow::MainWindow() #ifdef WITH_XC_SSHAGENT connect(sshAgent(), SIGNAL(error(QString)), this, SLOT(showErrorMessage(QString))); connect(sshAgent(), SIGNAL(enabledChanged(bool)), this, SLOT(agentEnabled(bool))); + connect(m_ui->actionClearSSHAgent, SIGNAL(triggered()), SLOT(clearSSHAgent())); m_ui->settingsWidget->addSettingsPage(new AgentSettingsPage()); - - m_entryContextMenu->addSeparator(); - m_entryContextMenu->addAction(m_ui->actionEntryAddToAgent); - m_entryContextMenu->addAction(m_ui->actionEntryRemoveFromAgent); - - m_ui->actionEntryAddToAgent->setIcon(icons()->icon("utilities-terminal")); - m_ui->actionEntryRemoveFromAgent->setIcon(icons()->icon("utilities-terminal")); +#else + agentEnabled(false); #endif - m_ui->actionEntryAddToAgent->setVisible(false); - m_ui->actionEntryRemoveFromAgent->setVisible(false); - - initViewMenu(); - #if defined(WITH_XC_KEESHARE) KeeShare::init(this); m_ui->settingsWidget->addSettingsPage(new SettingsPageKeeShare(m_ui->tabWidget)); @@ -239,6 +254,11 @@ MainWindow::MainWindow() m_copyAdditionalAttributeActions, SIGNAL(triggered(QAction*)), SLOT(copyAttribute(QAction*))); connect(m_ui->menuEntryCopyAttribute, SIGNAL(aboutToShow()), this, SLOT(updateCopyAttributesMenu())); + m_setTagsMenuActions = new QActionGroup(m_ui->menuTags); + m_setTagsMenuActions->setExclusive(false); + m_actionMultiplexer.connect(m_setTagsMenuActions, SIGNAL(triggered(QAction*)), SLOT(setTag(QAction*))); + connect(m_ui->menuTags, &QMenu::aboutToShow, this, &MainWindow::updateSetTagsMenu); + Qt::Key globalAutoTypeKey = static_cast(config()->get(Config::GlobalAutoTypeKey).toInt()); Qt::KeyboardModifiers globalAutoTypeModifiers = static_cast(config()->get(Config::GlobalAutoTypeModifiers).toInt()); @@ -250,56 +270,24 @@ MainWindow::MainWindow() m_showToolbarSeparator = config()->get(Config::GUI_ApplicationTheme).toString() != "classic"; m_ui->actionEntryAutoType->setVisible(autoType()->isAvailable()); + m_ui->actionAllowScreenCapture->setVisible(osUtils->canPreventScreenCapture()); m_inactivityTimer = new InactivityTimer(this); connect(m_inactivityTimer, SIGNAL(inactivityDetected()), this, SLOT(lockDatabasesAfterInactivity())); applySettingsChanges(); - m_ui->actionDatabaseNew->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_N); - setShortcut(m_ui->actionDatabaseOpen, QKeySequence::Open, Qt::CTRL + Qt::Key_O); - setShortcut(m_ui->actionDatabaseSave, QKeySequence::Save, Qt::CTRL + Qt::Key_S); - setShortcut(m_ui->actionDatabaseSaveAs, QKeySequence::SaveAs, Qt::CTRL + Qt::SHIFT + Qt::Key_S); - setShortcut(m_ui->actionDatabaseClose, QKeySequence::Close, Qt::CTRL + Qt::Key_W); - m_ui->actionLockDatabase->setShortcut(Qt::CTRL + Qt::Key_L); - m_ui->actionLockAllDatabases->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_L); - setShortcut(m_ui->actionQuit, QKeySequence::Quit, Qt::CTRL + Qt::Key_Q); - setShortcut(m_ui->actionEntryNew, QKeySequence::New, Qt::CTRL + Qt::Key_N); - m_ui->actionEntryEdit->setShortcut(Qt::CTRL + Qt::Key_E); - m_ui->actionEntryDelete->setShortcut(Qt::CTRL + Qt::Key_D); - m_ui->actionEntryDelete->setShortcut(Qt::Key_Delete); - m_ui->actionEntryClone->setShortcut(Qt::CTRL + Qt::Key_K); - m_ui->actionEntryTotp->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_T); - m_ui->actionEntryDownloadIcon->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_D); - m_ui->actionEntryCopyTotp->setShortcut(Qt::CTRL + Qt::Key_T); - m_ui->actionEntryMoveUp->setShortcut(Qt::CTRL + Qt::ALT + Qt::Key_Up); - m_ui->actionEntryMoveDown->setShortcut(Qt::CTRL + Qt::ALT + Qt::Key_Down); - m_ui->actionEntryCopyUsername->setShortcut(Qt::CTRL + Qt::Key_B); - m_ui->actionEntryCopyPassword->setShortcut(Qt::CTRL + Qt::Key_C); - m_ui->actionEntryAutoTypeSequence->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_V); - m_ui->actionEntryOpenUrl->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_U); - m_ui->actionEntryCopyURL->setShortcut(Qt::CTRL + Qt::Key_U); - m_ui->actionEntryRestore->setShortcut(Qt::CTRL + Qt::Key_R); - - // Prevent conflicts with global Mac shortcuts (force Control on all platforms) -#ifdef Q_OS_MAC - auto modifier = Qt::META; -#else - auto modifier = Qt::CTRL; -#endif - m_ui->actionEntryAddToAgent->setShortcut(modifier + Qt::Key_H); - m_ui->actionEntryRemoveFromAgent->setShortcut(modifier + Qt::SHIFT + Qt::Key_H); - -#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // Qt 5.10 introduced a new "feature" to hide shortcuts in context menus // Unfortunately, Qt::AA_DontShowShortcutsInContextMenus is broken, have to manually enable them m_ui->actionEntryNew->setShortcutVisibleInContextMenu(true); m_ui->actionEntryEdit->setShortcutVisibleInContextMenu(true); + m_ui->actionEntryExpire->setShortcutVisibleInContextMenu(true); m_ui->actionEntryDelete->setShortcutVisibleInContextMenu(true); m_ui->actionEntryRestore->setShortcutVisibleInContextMenu(true); m_ui->actionEntryClone->setShortcutVisibleInContextMenu(true); m_ui->actionEntryTotp->setShortcutVisibleInContextMenu(true); m_ui->actionEntryDownloadIcon->setShortcutVisibleInContextMenu(true); m_ui->actionEntryCopyTotp->setShortcutVisibleInContextMenu(true); + m_ui->actionEntryCopyPasswordTotp->setShortcutVisibleInContextMenu(true); m_ui->actionEntryMoveUp->setShortcutVisibleInContextMenu(true); m_ui->actionEntryMoveDown->setShortcutVisibleInContextMenu(true); m_ui->actionEntryCopyUsername->setShortcutVisibleInContextMenu(true); @@ -307,9 +295,9 @@ MainWindow::MainWindow() m_ui->actionEntryAutoTypeSequence->setShortcutVisibleInContextMenu(true); m_ui->actionEntryOpenUrl->setShortcutVisibleInContextMenu(true); m_ui->actionEntryCopyURL->setShortcutVisibleInContextMenu(true); + m_ui->actionEntryCopyTitle->setShortcutVisibleInContextMenu(true); m_ui->actionEntryAddToAgent->setShortcutVisibleInContextMenu(true); m_ui->actionEntryRemoveFromAgent->setShortcutVisibleInContextMenu(true); -#endif connect(m_ui->menuEntries, SIGNAL(aboutToShow()), SLOT(obtainContextFocusLock())); connect(m_ui->menuEntries, SIGNAL(aboutToHide()), SLOT(releaseContextFocusLock())); @@ -367,19 +355,29 @@ MainWindow::MainWindow() m_ui->actionDatabaseSaveBackup->setIcon(icons()->icon("document-save-copy")); m_ui->actionDatabaseClose->setIcon(icons()->icon("document-close")); m_ui->actionReports->setIcon(icons()->icon("reports")); - m_ui->actionDatabaseSettings->setIcon(icons()->icon("document-edit")); + m_ui->actionDatabaseSettings->setIcon(icons()->icon("database-settings")); m_ui->actionDatabaseSecurity->setIcon(icons()->icon("database-change-key")); + m_ui->actionPasskeys->setIcon(icons()->icon("passkey")); + m_ui->actionImportPasskey->setIcon(icons()->icon("document-import")); m_ui->actionLockDatabase->setIcon(icons()->icon("database-lock")); m_ui->actionLockDatabaseToolbar->setIcon(icons()->icon("database-lock")); m_ui->actionLockAllDatabases->setIcon(icons()->icon("database-lock-all")); m_ui->actionQuit->setIcon(icons()->icon("application-exit")); m_ui->actionDatabaseMerge->setIcon(icons()->icon("database-merge")); - m_ui->menuImport->setIcon(icons()->icon("document-import")); + m_ui->menuRemoteSync->setIcon(icons()->icon("remote-sync")); + m_ui->actionImport->setIcon(icons()->icon("document-import")); m_ui->menuExport->setIcon(icons()->icon("document-export")); +#ifndef WITH_XC_BROWSER_PASSKEYS + m_ui->actionPasskeys->setVisible(false); + m_ui->actionImportPasskey->setVisible(false); + m_ui->actionEntryImportPasskey->setVisible(false); +#endif + m_ui->actionEntryNew->setIcon(icons()->icon("entry-new")); m_ui->actionEntryClone->setIcon(icons()->icon("entry-clone")); m_ui->actionEntryEdit->setIcon(icons()->icon("entry-edit")); + m_ui->actionEntryExpire->setIcon(icons()->icon("entry-expire")); m_ui->actionEntryDelete->setIcon(icons()->icon("entry-delete")); m_ui->actionEntryRestore->setIcon(icons()->icon("entry-restore")); m_ui->actionEntryAutoType->setIcon(icons()->icon("auto-type")); @@ -394,6 +392,17 @@ MainWindow::MainWindow() m_ui->actionEntryCopyUsername->setIcon(icons()->icon("username-copy")); m_ui->actionEntryCopyPassword->setIcon(icons()->icon("password-copy")); m_ui->actionEntryCopyURL->setIcon(icons()->icon("url-copy")); + m_ui->menuEntryCopyAttribute->setIcon(icons()->icon("attributes-copy")); + m_ui->menuEntryTotp->setIcon(icons()->icon("totp")); + m_ui->actionEntryTotp->setIcon(icons()->icon("totp")); + m_ui->actionEntryCopyTotp->setIcon(icons()->icon("totp-copy")); + m_ui->actionEntryCopyPasswordTotp->setIcon(icons()->icon("totp-copy-password")); + m_ui->actionEntryTotpQRCode->setIcon(icons()->icon("qrcode")); + m_ui->actionEntrySetupTotp->setIcon(icons()->icon("totp-edit")); + m_ui->actionEntryImportPasskey->setIcon(icons()->icon("document-import")); + m_ui->actionEntryAddToAgent->setIcon(icons()->icon("utilities-terminal")); + m_ui->actionEntryRemoveFromAgent->setIcon(icons()->icon("utilities-terminal")); + m_ui->menuTags->setIcon(icons()->icon("tag-multiple")); m_ui->actionEntryDownloadIcon->setIcon(icons()->icon("favicon-download")); m_ui->actionGroupSortAsc->setIcon(icons()->icon("sort-alphabetical-ascending")); m_ui->actionGroupSortDesc->setIcon(icons()->icon("sort-alphabetical-descending")); @@ -408,6 +417,7 @@ MainWindow::MainWindow() m_ui->actionSettings->setIcon(icons()->icon("configure")); m_ui->actionPasswordGenerator->setIcon(icons()->icon("password-generator")); + m_ui->actionClearSSHAgent->setIcon(icons()->icon("utilities-terminal")); m_ui->actionAbout->setIcon(icons()->icon("help-about")); m_ui->actionDonate->setIcon(icons()->icon("donate")); @@ -418,12 +428,24 @@ MainWindow::MainWindow() m_ui->actionKeyboardShortcuts->setIcon(icons()->icon("keyboard-shortcuts")); m_ui->actionCheckForUpdates->setIcon(icons()->icon("system-software-update")); - m_actionMultiplexer.connect( - SIGNAL(currentModeChanged(DatabaseWidget::Mode)), this, SLOT(setMenuActionState(DatabaseWidget::Mode))); - m_actionMultiplexer.connect(SIGNAL(groupChanged()), this, SLOT(setMenuActionState())); - m_actionMultiplexer.connect(SIGNAL(entrySelectionChanged()), this, SLOT(setMenuActionState())); +#ifdef WITH_XC_BROWSER_PASSKEYS + m_ui->actionPasskeys->setIcon(icons()->icon("passkey")); + m_ui->actionImportPasskey->setIcon(icons()->icon("document-import")); + m_ui->actionEntryImportPasskey->setIcon(icons()->icon("document-import")); + m_ui->actionEntryRemovePasskey->setIcon(icons()->icon("document-close")); +#endif + + m_actionMultiplexer.connect(SIGNAL(currentModeChanged(DatabaseWidget::Mode)), this, SLOT(updateMenuActionState())); + m_actionMultiplexer.connect(SIGNAL(groupChanged()), this, SLOT(updateMenuActionState())); + m_actionMultiplexer.connect(SIGNAL(entrySelectionChanged()), this, SLOT(updateMenuActionState())); + m_actionMultiplexer.connect(SIGNAL(databaseNonDataChanged()), this, SLOT(updateMenuActionState())); m_actionMultiplexer.connect(SIGNAL(groupContextMenuRequested(QPoint)), this, SLOT(showGroupContextMenu(QPoint))); m_actionMultiplexer.connect(SIGNAL(entryContextMenuRequested(QPoint)), this, SLOT(showEntryContextMenu(QPoint))); + m_actionMultiplexer.connect(SIGNAL(groupChanged()), this, SLOT(updateEntryCountLabel())); + m_actionMultiplexer.connect(SIGNAL(databaseUnlocked()), this, SLOT(updateEntryCountLabel())); + m_actionMultiplexer.connect(SIGNAL(databaseModified()), this, SLOT(updateEntryCountLabel())); + m_actionMultiplexer.connect(SIGNAL(searchModeActivated()), this, SLOT(updateEntryCountLabel())); + m_actionMultiplexer.connect(SIGNAL(listModeActivated()), this, SLOT(updateEntryCountLabel())); // Notify search when the active database changes or gets locked connect(m_ui->tabWidget, @@ -435,11 +457,11 @@ MainWindow::MainWindow() connect(m_ui->tabWidget, SIGNAL(tabNameChanged()), SLOT(updateWindowTitle())); connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(updateWindowTitle())); connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(databaseTabChanged(int))); - connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(setMenuActionState())); + connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(updateMenuActionState())); connect(m_ui->tabWidget, SIGNAL(databaseLocked(DatabaseWidget*)), SLOT(databaseStatusChanged(DatabaseWidget*))); connect(m_ui->tabWidget, SIGNAL(databaseUnlocked(DatabaseWidget*)), SLOT(databaseStatusChanged(DatabaseWidget*))); connect(m_ui->tabWidget, SIGNAL(tabVisibilityChanged(bool)), SLOT(updateToolbarSeparatorVisibility())); - connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(setMenuActionState())); + connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(updateMenuActionState())); connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(updateWindowTitle())); connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(updateToolbarSeparatorVisibility())); connect(m_ui->settingsWidget, SIGNAL(accepted()), SLOT(applySettingsChanges())); @@ -454,14 +476,19 @@ MainWindow::MainWindow() connect(m_ui->actionDatabaseSaveBackup, SIGNAL(triggered()), m_ui->tabWidget, SLOT(saveDatabaseBackup())); connect(m_ui->actionDatabaseClose, SIGNAL(triggered()), m_ui->tabWidget, SLOT(closeCurrentDatabaseTab())); connect(m_ui->actionDatabaseMerge, SIGNAL(triggered()), m_ui->tabWidget, SLOT(mergeDatabase())); + connect(m_ui->actionDatabaseSettings, SIGNAL(toggled(bool)), m_ui->tabWidget, SLOT(showDatabaseSettings(bool))); connect(m_ui->actionDatabaseSecurity, SIGNAL(triggered()), m_ui->tabWidget, SLOT(showDatabaseSecurity())); - connect(m_ui->actionReports, SIGNAL(triggered()), m_ui->tabWidget, SLOT(showDatabaseReports())); - connect(m_ui->actionDatabaseSettings, SIGNAL(triggered()), m_ui->tabWidget, SLOT(showDatabaseSettings())); - connect(m_ui->actionImportCsv, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importCsv())); - connect(m_ui->actionImportKeePass1, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importKeePass1Database())); - connect(m_ui->actionImportOpVault, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importOpVaultDatabase())); + connect(m_ui->actionReports, SIGNAL(toggled(bool)), m_ui->tabWidget, SLOT(showDatabaseReports(bool))); +#ifdef WITH_XC_BROWSER_PASSKEYS + connect(m_ui->actionPasskeys, SIGNAL(triggered()), m_ui->tabWidget, SLOT(showPasskeys())); + connect(m_ui->actionImportPasskey, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importPasskey())); + connect(m_ui->actionEntryImportPasskey, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importPasskeyToEntry())); + connect(m_ui->actionEntryRemovePasskey, SIGNAL(triggered()), m_ui->tabWidget, SLOT(removePasskeyFromEntry())); +#endif + connect(m_ui->actionImport, SIGNAL(triggered()), m_ui->tabWidget, SLOT(importFile())); connect(m_ui->actionExportCsv, SIGNAL(triggered()), m_ui->tabWidget, SLOT(exportToCsv())); connect(m_ui->actionExportHtml, SIGNAL(triggered()), m_ui->tabWidget, SLOT(exportToHtml())); + connect(m_ui->actionExportXML, SIGNAL(triggered()), m_ui->tabWidget, SLOT(exportToXML())); connect( m_ui->actionLockDatabase, SIGNAL(triggered()), m_ui->tabWidget, SLOT(lockAndSwitchToFirstUnlockedDatabase())); connect(m_ui->actionLockDatabaseToolbar, SIGNAL(triggered()), m_ui->actionLockDatabase, SIGNAL(triggered())); @@ -469,8 +496,9 @@ MainWindow::MainWindow() connect(m_ui->actionQuit, SIGNAL(triggered()), SLOT(appExit())); m_actionMultiplexer.connect(m_ui->actionEntryNew, SIGNAL(triggered()), SLOT(createEntry())); - m_actionMultiplexer.connect(m_ui->actionEntryClone, SIGNAL(triggered()), SLOT(cloneEntry())); m_actionMultiplexer.connect(m_ui->actionEntryEdit, SIGNAL(triggered()), SLOT(switchToEntryEdit())); + m_actionMultiplexer.connect(m_ui->actionEntryExpire, SIGNAL(triggered()), SLOT(expireSelectedEntries())); + m_actionMultiplexer.connect(m_ui->actionEntryClone, SIGNAL(triggered()), SLOT(cloneEntry())); m_actionMultiplexer.connect(m_ui->actionEntryDelete, SIGNAL(triggered()), SLOT(deleteSelectedEntries())); m_actionMultiplexer.connect(m_ui->actionEntryRestore, SIGNAL(triggered()), SLOT(restoreSelectedEntries())); @@ -478,6 +506,7 @@ MainWindow::MainWindow() m_actionMultiplexer.connect(m_ui->actionEntrySetupTotp, SIGNAL(triggered()), SLOT(setupTotp())); m_actionMultiplexer.connect(m_ui->actionEntryCopyTotp, SIGNAL(triggered()), SLOT(copyTotp())); + m_actionMultiplexer.connect(m_ui->actionEntryCopyPasswordTotp, SIGNAL(triggered()), SLOT(copyPasswordTotp())); m_actionMultiplexer.connect(m_ui->actionEntryTotpQRCode, SIGNAL(triggered()), SLOT(showTotpKeyQrCode())); m_actionMultiplexer.connect(m_ui->actionEntryCopyTitle, SIGNAL(triggered()), SLOT(copyTitle())); m_actionMultiplexer.connect(m_ui->actionEntryMoveUp, SIGNAL(triggered()), SLOT(moveEntryUp())); @@ -523,9 +552,7 @@ MainWindow::MainWindow() connect(m_ui->welcomeWidget, SIGNAL(newDatabase()), SLOT(switchToNewDatabase())); connect(m_ui->welcomeWidget, SIGNAL(openDatabase()), SLOT(switchToOpenDatabase())); connect(m_ui->welcomeWidget, SIGNAL(openDatabaseFile(QString)), SLOT(switchToDatabaseFile(QString))); - connect(m_ui->welcomeWidget, SIGNAL(importKeePass1Database()), SLOT(switchToKeePass1Database())); - connect(m_ui->welcomeWidget, SIGNAL(importOpVaultDatabase()), SLOT(switchToOpVaultDatabase())); - connect(m_ui->welcomeWidget, SIGNAL(importCsv()), SLOT(switchToCsvImport())); + connect(m_ui->welcomeWidget, SIGNAL(importFile()), m_ui->tabWidget, SLOT(importFile())); connect(m_ui->actionAbout, SIGNAL(triggered()), SLOT(showAboutDialog())); connect(m_ui->actionDonate, SIGNAL(triggered()), SLOT(openDonateUrl())); @@ -534,16 +561,16 @@ MainWindow::MainWindow() connect(m_ui->actionUserGuide, SIGNAL(triggered()), SLOT(openUserGuide())); connect(m_ui->actionOnlineHelp, SIGNAL(triggered()), SLOT(openOnlineHelp())); connect(m_ui->actionKeyboardShortcuts, SIGNAL(triggered()), SLOT(openKeyboardShortcuts())); + connect(m_ui->actionAllowScreenCapture, &QAction::toggled, this, &MainWindow::setAllowScreenCapture); connect(osUtils, &OSUtilsBase::statusbarThemeChanged, this, &MainWindow::updateTrayIcon); -#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) - // Install event filter for empty-area drag + // Install event filter for empty-area drag and menubar toggle auto* eventFilter = new MainWindowEventFilter(this); m_ui->menubar->installEventFilter(eventFilter); m_ui->toolBar->installEventFilter(eventFilter); m_ui->tabWidget->tabBar()->installEventFilter(eventFilter); -#endif + installEventFilter(eventFilter); #ifdef Q_OS_MACOS setUnifiedTitleAndToolBarOnMac(true); @@ -630,15 +657,6 @@ MainWindow::MainWindow() MessageWidget::Information, -1); } -#elif (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0) && QT_VERSION < QT_VERSION_CHECK(5, 6, 0)) - if (!config()->get(Config::Messages_Qt55CompatibilityWarning).toBool()) { - m_ui->globalMessageWidget->showMessage( - tr("WARNING: Your Qt version may cause KeePassXC to crash with an On-Screen Keyboard.\n" - "We recommend you use the AppImage available on our downloads page."), - MessageWidget::Warning, - -1); - config()->set(Config::Messages_Qt55CompatibilityWarning, true); - } #endif connect(qApp, SIGNAL(anotherInstanceStarted()), this, SLOT(bringToFront())); @@ -646,6 +664,7 @@ MainWindow::MainWindow() connect(qApp, SIGNAL(openFile(QString)), this, SLOT(openDatabase(QString))); connect(qApp, SIGNAL(quitSignalReceived()), this, SLOT(appExit()), Qt::DirectConnection); + // Setup the status bar statusBar()->setFixedHeight(24); m_progressBarLabel = new QLabel(statusBar()); m_progressBarLabel->setVisible(false); @@ -657,9 +676,17 @@ MainWindow::MainWindow() m_progressBar->setFixedHeight(15); m_progressBar->setMaximum(100); statusBar()->addPermanentWidget(m_progressBar); - connect(clipboard(), SIGNAL(updateCountdown(int, QString)), this, SLOT(updateProgressBar(int, QString))); + connect(clipboard(), &Clipboard::updateCountdown, this, &MainWindow::updateProgressBar); + m_actionMultiplexer.connect(SIGNAL(updateSyncProgress(int, QString)), this, SLOT(updateProgressBar(int, QString))); + m_actionMultiplexer.connect(SIGNAL(databaseSyncInProgress()), this, SLOT(disableMenuAndToolbar())); + m_actionMultiplexer.connect(SIGNAL(databaseSyncCompleted(QString)), this, SLOT(enableMenuAndToolbar())); + m_actionMultiplexer.connect(SIGNAL(databaseSyncFailed(QString, const QString)), this, SLOT(enableMenuAndToolbar())); + m_statusBarLabel = new QLabel(statusBar()); + m_statusBarLabel->setObjectName("statusBarLabel"); + statusBar()->addPermanentWidget(m_statusBarLabel); restoreConfigState(); + updateMenuActionState(); } MainWindow::~MainWindow() @@ -674,13 +701,6 @@ MainWindow::~MainWindow() */ void MainWindow::restoreConfigState() { - // start minimized if configured - if (config()->get(Config::GUI_MinimizeOnStartup).toBool()) { - hideWindow(); - } else { - bringToFront(); - } - if (config()->get(Config::OpenPreviousDatabasesOnStartup).toBool()) { const QStringList fileNames = config()->get(Config::LastOpenedDatabases).toStringList(); for (const QString& filename : fileNames) { @@ -715,6 +735,43 @@ void MainWindow::appExit() close(); } +/** + * Returns if application was built with hardware key support. + * Intended to be used by 3rd-party applications using DBus. + * + * @return True if built with hardware key support, false otherwise + */ +bool MainWindow::isHardwareKeySupported() +{ +#ifdef WITH_XC_YUBIKEY + return true; +#else + return false; +#endif +} + +/** + * Refreshes list of hardware keys known. + * Triggers the DatabaseOpenWidget to automatically select the key last used for a database if found. + * Intended to be used by 3rd-party applications using DBus. + * + * @return True if any key was found, false otherwise or if application lacks hardware key support + */ +bool MainWindow::refreshHardwareKeys() +{ +#ifdef WITH_XC_YUBIKEY + auto yk = YubiKey::instance(); + // find keys sync to allow returning if any key was found + bool found = yk->findValidKeys(); + // emit signal so DatabaseOpenWidget can select last used key + // emit here manually because sync findValidKeys() cannot do that properly + emit yk->detectComplete(found); + return found; +#else + return false; +#endif +} + void MainWindow::updateLastDatabasesMenu() { m_ui->menuRecentDatabases->clear(); @@ -753,6 +810,57 @@ void MainWindow::updateCopyAttributesMenu() } } +void MainWindow::updateSetTagsMenu() +{ + auto actionForTag = [](const QMenu* menu, const QString& tag) -> QAction* { + for (const auto action : menu->actions()) { + if (action->text() == tag) { + return action; + } + } + return nullptr; + }; + + auto dbWidget = m_ui->tabWidget->currentDatabaseWidget(); + if (dbWidget) { + // Enumerate tags applied to the selected entries + QSet selectedTags; + for (const auto entry : dbWidget->entryView()->selectedEntries()) { + for (const auto& tag : entry->tagList()) { + selectedTags.insert(tag); + } + } + + // Add known database tags as actions and set checked if + // a selected entry has that tag + const auto tagList = dbWidget->database()->tagList(); + for (const auto& tag : tagList) { + auto action = actionForTag(m_ui->menuTags, tag); + if (action) { + action->setChecked(selectedTags.contains(tag)); + } else { + action = m_ui->menuTags->addAction(icons()->icon("tag"), tag); + action->setCheckable(true); + action->setChecked(selectedTags.contains(tag)); + m_setTagsMenuActions->addAction(action); + } + } + + // Remove missing tags + for (const auto action : m_ui->menuTags->actions()) { + if (!tagList.contains(action->text())) { + action->deleteLater(); + } + } + } + + // If no tags exist in the database then show a tip to the user + if (m_ui->menuTags->isEmpty()) { + auto action = m_ui->menuTags->addAction(tr("No Tags")); + action->setEnabled(false); + } +} + void MainWindow::openRecentDatabase(QAction* action) { openDatabase(action->data().toString()); @@ -773,211 +881,160 @@ void MainWindow::openDatabase(const QString& filePath, const QString& password, m_ui->tabWidget->addDatabaseTab(filePath, false, password, keyfile); } -void MainWindow::setMenuActionState(DatabaseWidget::Mode mode) +void MainWindow::updateMenuActionState() { + // MainWindow State int currentIndex = m_ui->stackedWidget->currentIndex(); + bool hasLockableDatabase = m_ui->tabWidget->hasLockableDatabases(); + bool inAppSettings = (currentIndex == SettingsScreen); + bool inPasswordGenerator = (currentIndex == PasswordGeneratorScreen); - bool inDatabaseTabWidget = (currentIndex == DatabaseTabScreen); - bool inWelcomeWidget = (currentIndex == WelcomeScreen); - bool inDatabaseTabWidgetOrWelcomeWidget = inDatabaseTabWidget || inWelcomeWidget; + auto dbWidget = (currentIndex == DatabaseTabScreen ? m_ui->tabWidget->currentDatabaseWidget() : nullptr); + auto dbMode = (dbWidget ? dbWidget->currentMode() : DatabaseWidget::Mode::None); - m_ui->actionDatabaseMerge->setEnabled(inDatabaseTabWidget); - m_ui->actionDatabaseNew->setEnabled(inDatabaseTabWidgetOrWelcomeWidget); - m_ui->actionDatabaseOpen->setEnabled(inDatabaseTabWidgetOrWelcomeWidget); - m_ui->menuRecentDatabases->setEnabled(inDatabaseTabWidgetOrWelcomeWidget); - m_ui->menuImport->setEnabled(inDatabaseTabWidgetOrWelcomeWidget); - m_ui->actionLockDatabase->setEnabled(m_ui->tabWidget->hasLockableDatabases()); - m_ui->actionLockDatabaseToolbar->setEnabled(m_ui->tabWidget->hasLockableDatabases()); - m_ui->actionLockAllDatabases->setEnabled(m_ui->tabWidget->hasLockableDatabases()); + // Database State + bool databaseUnlocked = (dbWidget && !dbWidget->isLocked()); + bool inDatabase = (dbMode == DatabaseWidget::Mode::ViewMode); + bool inDatabaseSettings = (dbMode == DatabaseWidget::Mode::DatabaseSettingsMode); + bool inReports = (dbMode == DatabaseWidget::Mode::ReportsMode); + bool editingEntry = (dbMode == DatabaseWidget::Mode::EditEntryMode); - if (inDatabaseTabWidget && m_ui->tabWidget->currentIndex() != -1) { - DatabaseWidget* dbWidget = m_ui->tabWidget->currentDatabaseWidget(); - Q_ASSERT(dbWidget); + // Synchronize toggle buttons + m_ui->actionDatabaseSettings->blockSignals(true); + m_ui->actionPasswordGenerator->blockSignals(true); + m_ui->actionReports->blockSignals(true); + m_ui->actionSettings->blockSignals(true); - if (mode == DatabaseWidget::Mode::None) { - mode = dbWidget->currentMode(); + m_ui->actionDatabaseSettings->setChecked(inDatabaseSettings); + m_ui->actionPasswordGenerator->setChecked(inPasswordGenerator); + m_ui->actionReports->setChecked(inReports); + m_ui->actionSettings->setChecked(inAppSettings); + + m_ui->actionDatabaseSettings->blockSignals(false); + m_ui->actionPasswordGenerator->blockSignals(false); + m_ui->actionReports->blockSignals(false); + m_ui->actionSettings->blockSignals(false); + + // Entry State + bool singleEntrySelected = (inDatabase && dbWidget->numberOfSelectedEntries() == 1); + bool singleEntryOrEditing = (singleEntrySelected || editingEntry); + bool multiEntrySelected = (inDatabase && dbWidget->numberOfSelectedEntries() > 0); + + // Group State + bool groupSelected = (inDatabase && dbWidget->isGroupSelected()); + bool groupHasChildren = (groupSelected && dbWidget->currentGroup()->hasChildren()); + bool groupHasEntries = (groupSelected && !dbWidget->currentGroup()->entries().isEmpty()); + bool inRecycleBin = (inDatabase && dbWidget->isRecycleBinSelected()); + + bool entryViewSorted = (inDatabase && dbWidget->isSorted()); + bool entryViewAtTop = (inDatabase && dbWidget->currentEntryIndex() == 0); + bool entryViewAtBottom = + (groupSelected && dbWidget->currentEntryIndex() == dbWidget->currentGroup()->entries().size() - 1); + + m_ui->actionEntryNew->setEnabled(inDatabase && !inRecycleBin); + m_ui->actionEntryClone->setEnabled(singleEntrySelected && !inRecycleBin); + m_ui->actionEntryEdit->setEnabled(singleEntrySelected); + m_ui->actionEntryExpire->setEnabled(multiEntrySelected); + m_ui->actionEntryDelete->setEnabled(multiEntrySelected); + m_ui->actionEntryRestore->setVisible(multiEntrySelected && inRecycleBin); + m_ui->actionEntryRestore->setEnabled(multiEntrySelected && inRecycleBin); + if (dbWidget) { + m_ui->actionEntryRestore->setText(tr("Restore Entry(s)", "", dbWidget->numberOfSelectedEntries())); + m_ui->actionEntryRestore->setToolTip(tr("Restore Entry(s)", "", dbWidget->numberOfSelectedEntries())); + } + m_ui->actionEntryMoveUp->setVisible(inDatabase && !entryViewSorted); + m_ui->actionEntryMoveDown->setVisible(inDatabase && !entryViewSorted); + m_ui->actionEntryMoveUp->setEnabled(singleEntrySelected && !entryViewSorted && !entryViewAtTop); + m_ui->actionEntryMoveDown->setEnabled(singleEntrySelected && !entryViewSorted && !entryViewAtBottom); + m_ui->actionEntryCopyTitle->setEnabled(singleEntryOrEditing && dbWidget->currentEntryHasTitle()); + m_ui->actionEntryCopyUsername->setEnabled(singleEntryOrEditing && dbWidget->currentEntryHasUsername()); + // NOTE: Copy password is enabled even if the selected entry's password is blank to prevent Ctrl+C + // from copying information from the currently selected cell in the entry view table. + m_ui->actionEntryCopyPassword->setEnabled(singleEntryOrEditing); + m_ui->actionEntryCopyURL->setEnabled(singleEntryOrEditing && dbWidget->currentEntryHasUrl()); + m_ui->actionEntryCopyNotes->setEnabled(singleEntryOrEditing && dbWidget->currentEntryHasNotes()); + m_ui->menuEntryCopyAttribute->setEnabled(singleEntryOrEditing); + m_ui->menuEntryTotp->setEnabled(singleEntrySelected); + m_ui->menuTags->setEnabled(multiEntrySelected); + // Handle tear-off tags menu + if (m_ui->menuTags->isTearOffMenuVisible()) { + if (!databaseUnlocked) { + m_ui->menuTags->hideTearOffMenu(); + } else { + updateSetTagsMenu(); } - - switch (mode) { - case DatabaseWidget::Mode::ViewMode: { - bool singleEntrySelected = dbWidget->numberOfSelectedEntries() == 1; - bool entriesSelected = dbWidget->numberOfSelectedEntries() > 0; - bool groupSelected = dbWidget->isGroupSelected(); - bool currentGroupHasChildren = dbWidget->currentGroup()->hasChildren(); - bool currentGroupHasEntries = !dbWidget->currentGroup()->entries().isEmpty(); - bool recycleBinSelected = dbWidget->isRecycleBinSelected(); - bool sorted = dbWidget->isSorted(); - int entryIndex = dbWidget->currentEntryIndex(); - int numEntries = dbWidget->currentGroup()->entries().size(); - - m_ui->actionEntryNew->setEnabled(true); - m_ui->actionEntryClone->setEnabled(singleEntrySelected); - m_ui->actionEntryEdit->setEnabled(singleEntrySelected); - m_ui->actionEntryDelete->setEnabled(entriesSelected); - m_ui->actionEntryRestore->setVisible(entriesSelected && recycleBinSelected); - m_ui->actionEntryRestore->setEnabled(entriesSelected && recycleBinSelected); - m_ui->actionEntryRestore->setText(tr("Restore Entry(s)", "", dbWidget->numberOfSelectedEntries())); - m_ui->actionEntryRestore->setToolTip(tr("Restore Entry(s)", "", dbWidget->numberOfSelectedEntries())); - m_ui->actionEntryMoveUp->setVisible(!sorted); - m_ui->actionEntryMoveDown->setVisible(!sorted); - m_ui->actionEntryMoveUp->setEnabled(singleEntrySelected && !sorted && entryIndex > 0); - m_ui->actionEntryMoveDown->setEnabled(singleEntrySelected && !sorted && entryIndex >= 0 - && entryIndex < numEntries - 1); - m_ui->actionEntryCopyTitle->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTitle()); - m_ui->actionEntryCopyUsername->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUsername()); - // NOTE: Copy password is enabled even if the selected entry's password is blank to prevent Ctrl+C - // from copying information from the currently selected cell in the entry view table. - m_ui->actionEntryCopyPassword->setEnabled(singleEntrySelected); - m_ui->actionEntryCopyURL->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUrl()); - m_ui->actionEntryCopyNotes->setEnabled(singleEntrySelected && dbWidget->currentEntryHasNotes()); - m_ui->menuEntryCopyAttribute->setEnabled(singleEntrySelected); - m_ui->menuEntryTotp->setEnabled(singleEntrySelected); - m_ui->actionEntryAutoType->setEnabled(singleEntrySelected); - m_ui->actionEntryAutoType->menu()->setEnabled(singleEntrySelected); - m_ui->actionEntryAutoTypeSequence->setText( - singleEntrySelected ? dbWidget->currentSelectedEntry()->effectiveAutoTypeSequence() - : Group::RootAutoTypeSequence); - m_ui->actionEntryAutoTypeSequence->setEnabled(singleEntrySelected); - m_ui->actionEntryAutoTypeUsername->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUsername()); - m_ui->actionEntryAutoTypeUsernameEnter->setEnabled(singleEntrySelected - && dbWidget->currentEntryHasUsername()); - m_ui->actionEntryAutoTypePassword->setEnabled(singleEntrySelected && dbWidget->currentEntryHasPassword()); - m_ui->actionEntryAutoTypePasswordEnter->setEnabled(singleEntrySelected - && dbWidget->currentEntryHasPassword()); - m_ui->actionEntryAutoTypeTOTP->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); - m_ui->actionEntryAutoTypeTOTP->setVisible(singleEntrySelected && dbWidget->currentEntryHasTotp()); - m_ui->actionEntryOpenUrl->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUrl()); - m_ui->actionEntryTotp->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); - m_ui->actionEntryCopyTotp->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); - m_ui->actionEntrySetupTotp->setEnabled(singleEntrySelected); - m_ui->actionEntryTotpQRCode->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); - m_ui->actionEntryDownloadIcon->setEnabled((entriesSelected && !singleEntrySelected) - || (singleEntrySelected && dbWidget->currentEntryHasUrl())); - m_ui->actionGroupNew->setEnabled(groupSelected); - m_ui->actionGroupEdit->setEnabled(groupSelected); - m_ui->actionGroupClone->setEnabled(groupSelected && dbWidget->canCloneCurrentGroup()); - m_ui->actionGroupDelete->setEnabled(groupSelected && dbWidget->canDeleteCurrentGroup()); - m_ui->actionGroupSortAsc->setEnabled(groupSelected && currentGroupHasChildren); - m_ui->actionGroupSortDesc->setEnabled(groupSelected && currentGroupHasChildren); - m_ui->actionGroupEmptyRecycleBin->setVisible(recycleBinSelected); - m_ui->actionGroupEmptyRecycleBin->setEnabled(recycleBinSelected); -#ifdef WITH_XC_NETWORKING - m_ui->actionGroupDownloadFavicons->setVisible(!recycleBinSelected); + } + m_ui->actionEntryAutoType->setEnabled(singleEntrySelected && dbWidget->currentEntryHasAutoTypeEnabled()); + m_ui->actionEntryAutoType->menu()->setEnabled(singleEntrySelected && dbWidget->currentEntryHasAutoTypeEnabled()); + m_ui->actionEntryAutoTypeSequence->setText(singleEntrySelected + ? dbWidget->currentSelectedEntry()->effectiveAutoTypeSequence() + : Group::RootAutoTypeSequence); + m_ui->actionEntryAutoTypeSequence->setEnabled(singleEntrySelected); + m_ui->actionEntryAutoTypeUsername->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUsername()); + m_ui->actionEntryAutoTypeUsernameEnter->setEnabled(singleEntrySelected && dbWidget->currentEntryHasUsername()); + m_ui->actionEntryAutoTypePassword->setEnabled(singleEntrySelected && dbWidget->currentEntryHasPassword()); + m_ui->actionEntryAutoTypePasswordEnter->setEnabled(singleEntrySelected && dbWidget->currentEntryHasPassword()); + m_ui->actionEntryAutoTypeTOTP->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntryAutoTypeTOTP->setVisible(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntryOpenUrl->setEnabled(singleEntryOrEditing && dbWidget->currentEntryHasUrl()); + m_ui->actionEntryTotp->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntryCopyTotp->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntryCopyPasswordTotp->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntrySetupTotp->setEnabled(singleEntrySelected); + m_ui->actionEntryTotpQRCode->setEnabled(singleEntrySelected && dbWidget->currentEntryHasTotp()); + m_ui->actionEntryDownloadIcon->setEnabled((multiEntrySelected && !singleEntrySelected) + || (singleEntrySelected && dbWidget->currentEntryHasUrl())); +#ifdef WITH_XC_BROWSER_PASSKEYS + m_ui->actionEntryImportPasskey->setVisible(singleEntrySelected); + m_ui->actionEntryImportPasskey->setEnabled(singleEntrySelected); + m_ui->actionEntryRemovePasskey->setVisible(singleEntrySelected && dbWidget->currentEntryHasPasskey()); + m_ui->actionEntryRemovePasskey->setEnabled(singleEntrySelected && dbWidget->currentEntryHasPasskey()); #endif - m_ui->actionGroupDownloadFavicons->setEnabled(groupSelected && currentGroupHasEntries - && !recycleBinSelected); - m_ui->actionDatabaseSecurity->setEnabled(true); - m_ui->actionReports->setEnabled(true); - m_ui->actionDatabaseSettings->setEnabled(true); - m_ui->actionDatabaseSave->setEnabled(m_ui->tabWidget->canSave()); - m_ui->actionDatabaseSaveAs->setEnabled(true); - m_ui->actionDatabaseSaveBackup->setEnabled(true); - m_ui->menuExport->setEnabled(true); - m_ui->actionExportCsv->setEnabled(true); - m_ui->actionExportHtml->setEnabled(true); - m_ui->actionDatabaseMerge->setEnabled(m_ui->tabWidget->currentIndex() != -1); #ifdef WITH_XC_SSHAGENT - bool singleEntryHasSshKey = - singleEntrySelected && sshAgent()->isEnabled() && dbWidget->currentEntryHasSshKey(); - m_ui->actionEntryAddToAgent->setVisible(singleEntryHasSshKey); - m_ui->actionEntryAddToAgent->setEnabled(singleEntryHasSshKey); - m_ui->actionEntryRemoveFromAgent->setVisible(singleEntryHasSshKey); - m_ui->actionEntryRemoveFromAgent->setEnabled(singleEntryHasSshKey); + bool hasSSHKey = singleEntrySelected && sshAgent()->isEnabled() && dbWidget->currentEntryHasSshKey(); + m_ui->actionEntryAddToAgent->setVisible(hasSSHKey); + m_ui->actionEntryAddToAgent->setEnabled(hasSSHKey); + m_ui->actionEntryRemoveFromAgent->setVisible(hasSSHKey); + m_ui->actionEntryRemoveFromAgent->setEnabled(hasSSHKey); + m_ui->actionClearSSHAgent->setVisible(sshAgent()->isEnabled()); + m_ui->actionClearSSHAgent->setEnabled(sshAgent()->isEnabled()); #endif - m_searchWidgetAction->setEnabled(true); + m_ui->actionGroupNew->setEnabled(groupSelected && !inRecycleBin); + m_ui->actionGroupEdit->setEnabled(groupSelected); + m_ui->actionGroupClone->setEnabled(groupSelected && dbWidget->canCloneCurrentGroup()); + m_ui->actionGroupDelete->setEnabled(groupSelected && dbWidget->canDeleteCurrentGroup()); + m_ui->actionGroupSortAsc->setVisible(groupHasChildren); + m_ui->actionGroupSortAsc->setEnabled(groupHasChildren); + m_ui->actionGroupSortDesc->setVisible(groupHasChildren); + m_ui->actionGroupSortDesc->setEnabled(groupHasChildren); + m_ui->actionGroupEmptyRecycleBin->setVisible(inRecycleBin); + m_ui->actionGroupEmptyRecycleBin->setEnabled(inRecycleBin); +#ifdef WITH_XC_NETWORKING + m_ui->actionGroupDownloadFavicons->setVisible(!inRecycleBin); +#endif + m_ui->actionGroupDownloadFavicons->setEnabled(groupSelected && groupHasEntries && !inRecycleBin); - break; - } - case DatabaseWidget::Mode::EditMode: - case DatabaseWidget::Mode::ImportMode: - case DatabaseWidget::Mode::LockedMode: { - // Enable select actions when editing an entry - bool editEntryActive = dbWidget->isEntryEditActive(); - const auto editEntryActionsMask = QList({m_ui->actionEntryCopyUsername, - m_ui->actionEntryCopyPassword, - m_ui->actionEntryCopyURL, - m_ui->actionEntryOpenUrl, - m_ui->actionEntryAutoType, - m_ui->actionEntryDownloadIcon, - m_ui->actionEntryCopyNotes, - m_ui->actionEntryCopyTitle, - m_ui->menuEntryCopyAttribute->menuAction(), - m_ui->menuEntryTotp->menuAction(), - m_ui->actionEntrySetupTotp}); + // Database Menu + m_ui->actionDatabaseSave->setEnabled(m_ui->tabWidget->canSave()); + m_ui->actionDatabaseSaveAs->setEnabled(databaseUnlocked); + m_ui->actionDatabaseSaveBackup->setEnabled(databaseUnlocked); + m_ui->actionDatabaseClose->setEnabled(dbWidget); + m_ui->actionLockDatabase->setEnabled(databaseUnlocked); + m_ui->actionLockAllDatabases->setEnabled(hasLockableDatabase); + m_ui->actionLockDatabaseToolbar->setEnabled(hasLockableDatabase); + m_ui->actionDatabaseSettings->setEnabled(inDatabase || inDatabaseSettings); + m_ui->actionDatabaseSecurity->setEnabled(inDatabase || inDatabaseSettings); + m_ui->actionReports->setEnabled(inDatabase || inReports); + m_ui->menuRemoteSync->setEnabled(inDatabase || inDatabaseSettings); + m_ui->menuExport->setEnabled(inDatabase); + m_ui->actionDatabaseMerge->setEnabled(inDatabase); +#ifdef WITH_XC_BROWSER_PASSKEYS + m_ui->actionPasskeys->setEnabled(inDatabase || inReports); + m_ui->actionImportPasskey->setEnabled(inDatabase); +#endif - auto entryActions = m_ui->menuEntries->actions(); - entryActions << m_ui->menuEntryCopyAttribute->actions(); - entryActions << m_ui->menuEntryTotp->actions(); - for (auto action : entryActions) { - bool enabled = editEntryActive && editEntryActionsMask.contains(action); - if (action->menu()) { - action->menu()->setEnabled(enabled); - } - action->setEnabled(enabled); - } - - const auto groupActions = m_ui->menuGroups->actions(); - for (auto action : groupActions) { - action->setEnabled(false); - } - - m_ui->actionDatabaseSecurity->setEnabled(false); - m_ui->actionReports->setEnabled(false); - m_ui->actionDatabaseSettings->setEnabled(false); - m_ui->actionDatabaseSave->setEnabled(false); - m_ui->actionDatabaseSaveAs->setEnabled(false); - m_ui->actionDatabaseSaveBackup->setEnabled(false); - m_ui->menuExport->setEnabled(false); - m_ui->actionExportCsv->setEnabled(false); - m_ui->actionExportHtml->setEnabled(false); - m_ui->actionDatabaseMerge->setEnabled(false); - // Only disable the action in the database menu so that the - // menu remains active in the toolbar, if necessary - m_ui->actionLockDatabase->setEnabled(false); - - m_searchWidgetAction->setEnabled(false); - break; - } - default: - Q_ASSERT(false); - } - m_ui->actionDatabaseClose->setEnabled(true); - } else { - const auto entryActions = m_ui->menuEntries->actions(); - for (auto action : entryActions) { - action->setEnabled(false); - } - - const auto groupActions = m_ui->menuGroups->actions(); - for (auto action : groupActions) { - action->setEnabled(false); - } - - m_ui->actionDatabaseSecurity->setEnabled(false); - m_ui->actionReports->setEnabled(false); - m_ui->actionDatabaseSettings->setEnabled(false); - m_ui->actionDatabaseSave->setEnabled(false); - m_ui->actionDatabaseSaveAs->setEnabled(false); - m_ui->actionDatabaseSaveBackup->setEnabled(false); - m_ui->actionDatabaseClose->setEnabled(false); - m_ui->menuExport->setEnabled(false); - m_ui->actionExportCsv->setEnabled(false); - m_ui->actionExportHtml->setEnabled(false); - m_ui->actionDatabaseMerge->setEnabled(false); - - m_searchWidgetAction->setEnabled(false); - } - - if ((currentIndex == PasswordGeneratorScreen) != m_ui->actionPasswordGenerator->isChecked()) { - bool blocked = m_ui->actionPasswordGenerator->blockSignals(true); - m_ui->actionPasswordGenerator->toggle(); - m_ui->actionPasswordGenerator->blockSignals(blocked); - } else if ((currentIndex == SettingsScreen) != m_ui->actionSettings->isChecked()) { - bool blocked = m_ui->actionSettings->blockSignals(true); - m_ui->actionSettings->toggle(); - m_ui->actionSettings->blockSignals(blocked); - } + m_searchWidgetAction->setEnabled(inDatabase); } void MainWindow::updateToolbarSeparatorVisibility() @@ -1009,28 +1066,23 @@ void MainWindow::updateWindowTitle() if (stackedWidgetIndex == DatabaseTabScreen && tabWidgetIndex != -1) { customWindowTitlePart = m_ui->tabWidget->tabName(tabWidgetIndex); - if (isModified) { - // remove asterisk '*' from title + if (isModified && customWindowTitlePart.endsWith("*")) { customWindowTitlePart.remove(customWindowTitlePart.size() - 1, 1); } m_ui->actionDatabaseSave->setEnabled(m_ui->tabWidget->canSave(tabWidgetIndex)); - } else if (stackedWidgetIndex == 1) { + } else if (stackedWidgetIndex == StackedWidgetIndex::SettingsScreen) { customWindowTitlePart = tr("Settings"); + } else if (stackedWidgetIndex == StackedWidgetIndex::PasswordGeneratorScreen) { + customWindowTitlePart = tr("Password Generator"); } QString windowTitle; if (customWindowTitlePart.isEmpty()) { - windowTitle = BaseWindowTitle; + windowTitle = QString("%1[*]").arg(BaseWindowTitle); } else { windowTitle = QString("%1[*] - %2").arg(customWindowTitlePart, BaseWindowTitle); } - if (customWindowTitlePart.isEmpty() || stackedWidgetIndex == 1) { - setWindowFilePath(""); - } else { - setWindowFilePath(m_ui->tabWidget->databaseWidgetFromIndex(tabWidgetIndex)->database()->filePath()); - } - setWindowTitle(windowTitle); setWindowModified(isModified); @@ -1099,7 +1151,11 @@ void MainWindow::showUpdateCheckDialog() void MainWindow::customOpenUrl(QString url) { +#ifdef KEEPASSXC_DIST_APPIMAGE + QProcess::execute("xdg-open", {url}); +#else QDesktopServices::openUrl(QUrl(url)); +#endif } void MainWindow::openDonateUrl() @@ -1136,8 +1192,10 @@ void MainWindow::switchToDatabases() { if (m_ui->tabWidget->currentIndex() == -1) { m_ui->stackedWidget->setCurrentIndex(WelcomeScreen); + statusBar()->setAutoFillBackground(false); } else { m_ui->stackedWidget->setCurrentIndex(DatabaseTabScreen); + statusBar()->setAutoFillBackground(true); } } @@ -1146,6 +1204,7 @@ void MainWindow::switchToSettings(bool enabled) if (enabled) { m_ui->settingsWidget->loadSettings(); m_ui->stackedWidget->setCurrentIndex(SettingsScreen); + statusBar()->setAutoFillBackground(true); } else { switchToDatabases(); } @@ -1157,6 +1216,7 @@ void MainWindow::togglePasswordGenerator(bool enabled) m_ui->passwordGeneratorWidget->loadSettings(); m_ui->passwordGeneratorWidget->regeneratePassword(); m_ui->stackedWidget->setCurrentIndex(PasswordGeneratorScreen); + statusBar()->setAutoFillBackground(false); } else { m_ui->passwordGeneratorWidget->saveSettings(); switchToDatabases(); @@ -1181,22 +1241,25 @@ void MainWindow::switchToDatabaseFile(const QString& file) switchToDatabases(); } -void MainWindow::switchToKeePass1Database() +void MainWindow::updateRemoteSyncMenuEntries() { - m_ui->tabWidget->importKeePass1Database(); - switchToDatabases(); -} + m_ui->menuRemoteSync->clear(); -void MainWindow::switchToOpVaultDatabase() -{ - m_ui->tabWidget->importOpVaultDatabase(); - switchToDatabases(); -} + auto dbWidget = m_ui->tabWidget->currentDatabaseWidget(); + if (dbWidget) { + // Setup sync shortcut + auto action = m_ui->menuRemoteSync->addAction(tr("Setup Remote Sync…")); + connect(action, &QAction::triggered, dbWidget, &DatabaseWidget::switchToRemoteSettings); -void MainWindow::switchToCsvImport() -{ - m_ui->tabWidget->importCsv(); - switchToDatabases(); + m_ui->menuRemoteSync->addSeparator(); + + // Build remote sync menu + for (const auto params : dbWidget->getRemoteParams()) { + auto* remoteSyncAction = new QAction(params->name, this); + m_ui->menuRemoteSync->addAction(remoteSyncAction); + connect(remoteSyncAction, &QAction::triggered, dbWidget, [=] { dbWidget->syncWithRemote(params); }); + } + } } void MainWindow::databaseStatusChanged(DatabaseWidget* dbWidget) @@ -1243,11 +1306,59 @@ void MainWindow::databaseTabChanged(int tabIndex) { if (tabIndex != -1 && m_ui->stackedWidget->currentIndex() == WelcomeScreen) { m_ui->stackedWidget->setCurrentIndex(DatabaseTabScreen); + statusBar()->setAutoFillBackground(true); } else if (tabIndex == -1 && m_ui->stackedWidget->currentIndex() == DatabaseTabScreen) { m_ui->stackedWidget->setCurrentIndex(WelcomeScreen); + statusBar()->setAutoFillBackground(false); } m_actionMultiplexer.setCurrentObject(m_ui->tabWidget->currentDatabaseWidget()); + updateEntryCountLabel(); +} + +bool MainWindow::event(QEvent* event) +{ + if (event->type() == QEvent::ShortcutOverride) { + const auto keyevent = static_cast(event); + // Did we get a ShortcutOverride event with the same key sequence as the OS default + // copy-to-clipboard shortcut? + if (keyevent->matches(QKeySequence::Copy)) { + // If so, we ask the database widget to check if any of its sub-widgets has + // text selected, and to copy it to the clipboard if that is the case. + // We do this because that is what the user likely expects to happen, yet Qt does not + // behave like that (at least on some platforms). + auto dbWidget = m_ui->tabWidget->currentDatabaseWidget(); + if (dbWidget && dbWidget->copyFocusedTextSelection()) { + // Note: instead of actively copying the selected text to the clipboard + // above, simply accepting the event would have a similar effect (Qt + // would deliver it as a key press to the current widget, which would + // trigger the built-in copy-to-clipboard behaviour). However, that + // would not come with our special (configurable) behaviour of + // clearing the clipboard after a certain time period. + keyevent->accept(); + return true; + } + } + } + return QMainWindow::event(event); +} + +void MainWindow::showEvent(QShowEvent* event) +{ + Q_UNUSED(event) +#ifdef Q_OS_WIN + // Qt Hack - Prevent white flicker when showing window + QTimer::singleShot(50, this, [=] { setProperty("windowOpacity", 1.0); }); +#endif +} + +void MainWindow::hideEvent(QHideEvent* event) +{ + Q_UNUSED(event) +#ifdef Q_OS_WIN + // Qt Hack - Prevent white flicker when showing window + setProperty("windowOpacity", 0.0); +#endif } void MainWindow::closeEvent(QCloseEvent* event) @@ -1288,7 +1399,7 @@ void MainWindow::changeEvent(QEvent* event) } if (config()->get(Config::Security_LockDatabaseMinimize).toBool()) { - m_ui->tabWidget->lockDatabases(); + m_ui->tabWidget->lockDatabasesDelayed(); } } else { QMainWindow::changeEvent(event); @@ -1307,7 +1418,7 @@ void MainWindow::keyPressEvent(QKeyEvent* event) } else if (event->key() == Qt::Key_F2) { dbWidget->focusOnEntries(true); return; - } else if (event->key() == Qt::Key_F3) { + } else if (event->key() == Qt::Key_F3 || event->key() == Qt::Key_F6) { focusSearchWidget(); return; } else if (event->key() == Qt::Key_Escape && dbWidget->isSearchActive()) { @@ -1317,7 +1428,7 @@ void MainWindow::keyPressEvent(QKeyEvent* event) } } - QWidget::keyPressEvent(event); + QMainWindow::keyPressEvent(event); } bool MainWindow::focusNextPrevChild(bool next) @@ -1367,6 +1478,27 @@ void MainWindow::focusSearchWidget() } } +void MainWindow::enableMenuAndToolbar() +{ + m_ui->toolBar->setDisabled(false); + m_ui->menubar->setDisabled(false); +} + +void MainWindow::disableMenuAndToolbar() +{ + m_ui->toolBar->setDisabled(true); + m_ui->menubar->setDisabled(true); +} + +void MainWindow::clearSSHAgent() +{ +#ifdef WITH_XC_SSHAGENT + auto agent = SSHAgent::instance(); + auto ret = agent->clearAllAgentIdentities(); + displayGlobalMessage(agent->errorString(), ret ? MessageWidget::Positive : KMessageWidget::Error, false); +#endif +} + void MainWindow::saveWindowInformation() { if (isVisible()) { @@ -1379,7 +1511,7 @@ bool MainWindow::saveLastDatabases() { if (config()->get(Config::OpenPreviousDatabasesOnStartup).toBool()) { auto currentDbWidget = m_ui->tabWidget->currentDatabaseWidget(); - if (currentDbWidget) { + if (currentDbWidget && !currentDbWidget->database()->isTemporaryDatabase()) { config()->set(Config::LastActiveDatabase, currentDbWidget->database()->filePath()); } else { config()->remove(Config::LastActiveDatabase); @@ -1388,7 +1520,9 @@ bool MainWindow::saveLastDatabases() QStringList openDatabases; for (int i = 0; i < m_ui->tabWidget->count(); ++i) { auto dbWidget = m_ui->tabWidget->databaseWidgetFromIndex(i); - openDatabases.append(dbWidget->database()->filePath()); + if (!dbWidget->database()->isTemporaryDatabase()) { + openDatabases.append(QDir::toNativeSeparators(dbWidget->database()->filePath())); + } } config()->set(Config::LastOpenedDatabases, openDatabases); @@ -1428,12 +1562,8 @@ void MainWindow::updateTrayIcon() connect(actionToggle, SIGNAL(triggered()), SLOT(toggleWindow())); } - if (m_ui->tabWidget->hasLockableDatabases()) { - m_trayIcon->setIcon(icons()->trayIconUnlocked()); - } else { - m_trayIcon->setIcon(icons()->trayIconLocked()); - } - + bool showUnlocked = m_ui->tabWidget->hasLockableDatabases(); + m_trayIcon->setIcon(icons()->trayIcon(showUnlocked)); m_trayIcon->setToolTip(windowTitle().replace("[*]", isWindowModified() ? "*" : "")); m_trayIcon->show(); @@ -1469,6 +1599,17 @@ void MainWindow::updateProgressBar(int percentage, QString message) } } +void MainWindow::updateEntryCountLabel() +{ + auto dbWidget = m_ui->tabWidget->currentDatabaseWidget(); + if (dbWidget && dbWidget->currentMode() == DatabaseWidget::Mode::ViewMode) { + int numEntries = dbWidget->entryView()->model()->rowCount(); + m_statusBarLabel->setText(tr("%1 Entry(s)", "", numEntries).arg(numEntries)); + } else { + m_statusBarLabel->setText(""); + } +} + void MainWindow::obtainContextFocusLock() { m_contextMenuFocusLock = true; @@ -1483,6 +1624,8 @@ void MainWindow::agentEnabled(bool enabled) { m_ui->actionEntryAddToAgent->setVisible(enabled); m_ui->actionEntryRemoveFromAgent->setVisible(enabled); + m_ui->actionClearSSHAgent->setEnabled(enabled); + m_ui->actionClearSSHAgent->setVisible(enabled); } void MainWindow::showEntryContextMenu(const QPoint& globalPos) @@ -1505,15 +1648,6 @@ void MainWindow::showGroupContextMenu(const QPoint& globalPos) m_ui->menuGroups->popup(globalPos); } -void MainWindow::setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback) -{ - if (!QKeySequence::keyBindings(standard).isEmpty()) { - action->setShortcuts(standard); - } else if (fallback != 0) { - action->setShortcut(QKeySequence(fallback)); - } -} - void MainWindow::applySettingsChanges() { int timeout = config()->get(Config::Security_LockDatabaseIdleSeconds).toInt() * 1000; @@ -1528,8 +1662,16 @@ void MainWindow::applySettingsChanges() m_inactivityTimer->deactivate(); } + m_ui->actionShowToolbar->setChecked(!config()->get(Config::GUI_HideToolbar).toBool()); + m_ui->actionShowMenubar->setChecked(!config()->get(Config::GUI_HideMenubar).toBool()); + m_ui->menubar->setHidden(config()->get(Config::GUI_HideMenubar).toBool()); m_ui->toolBar->setHidden(config()->get(Config::GUI_HideToolbar).toBool()); - m_ui->toolBar->setMovable(config()->get(Config::GUI_MovableToolbar).toBool()); + auto movable = config()->get(Config::GUI_MovableToolbar).toBool(); + m_ui->toolBar->setMovable(movable); + if (!movable) { + // Move the toolbar back to the top of the main window + addToolBar(Qt::TopToolBarArea, m_ui->toolBar); + } bool isOk = false; const auto toolButtonStyle = @@ -1539,13 +1681,33 @@ void MainWindow::applySettingsChanges() } updateTrayIcon(); + + kpxcApp->applyFontSize(); } -void MainWindow::focusWindowChanged(QWindow* focusWindow) +void MainWindow::setAllowScreenCapture(bool state) { - if (focusWindow != windowHandle()) { + m_allowScreenCapture = state; + for (auto window : qApp->topLevelWindows()) { + if (window->isVisible()) { + osUtils->setPreventScreenCapture(window, !m_allowScreenCapture); + } + } + m_ui->actionAllowScreenCapture->blockSignals(true); + m_ui->actionAllowScreenCapture->setChecked(m_allowScreenCapture); + m_ui->actionAllowScreenCapture->blockSignals(false); +} + +void MainWindow::focusWindowChanged(QWindow* window) +{ + if (window != windowHandle()) { m_lastFocusOutTime = Clock::currentMilliSecondsSinceEpoch(); } + + if (!osUtils->setPreventScreenCapture(window, !m_allowScreenCapture) && !m_allowScreenCapture) { + displayGlobalMessage(QObject::tr("Warning: Failed to block screenshot capture on a top-level window."), + MessageWidget::Error); + } } void MainWindow::trayIconTriggered(QSystemTrayIcon::ActivationReason reason) @@ -1609,7 +1771,7 @@ void MainWindow::hide() { #ifndef Q_OS_WIN qint64 current_time = Clock::currentMilliSecondsSinceEpoch(); - if (current_time - m_lastShowTime < 50) { + if (current_time - m_lastShowTime < 250) { return; } #endif @@ -1636,7 +1798,7 @@ void MainWindow::hideWindow() } if (config()->get(Config::Security_LockDatabaseMinimize).toBool()) { - m_ui->tabWidget->lockDatabases(); + m_ui->tabWidget->lockDatabasesDelayed(); } } @@ -1655,27 +1817,6 @@ void MainWindow::toggleWindow() hideWindow(); } else { bringToFront(); - -#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(QT_NO_DBUS) && (QT_VERSION < QT_VERSION_CHECK(5, 9, 0)) - // re-register global D-Bus menu (needed on Ubuntu with Unity) - // see https://github.com/keepassxreboot/keepassxc/issues/271 - // and https://bugreports.qt.io/browse/QTBUG-58723 - // check for !isVisible(), because isNativeMenuBar() does not work with appmenu-qt5 - static const auto isDesktopSessionUnity = qgetenv("XDG_CURRENT_DESKTOP") == "Unity"; - - if (isDesktopSessionUnity && Tools::qtRuntimeVersion() < QT_VERSION_CHECK(5, 9, 0) - && !m_ui->menubar->isVisible()) { - QDBusMessage msg = QDBusMessage::createMethodCall(QStringLiteral("com.canonical.AppMenu.Registrar"), - QStringLiteral("/com/canonical/AppMenu/Registrar"), - QStringLiteral("com.canonical.AppMenu.Registrar"), - QStringLiteral("RegisterWindow")); - QList args; - args << QVariant::fromValue(static_cast(winId())) - << QVariant::fromValue(QDBusObjectPath("/MenuBar/1")); - msg.setArguments(args); - QDBusConnection::sessionBus().send(msg); - } -#endif } } @@ -1688,7 +1829,9 @@ void MainWindow::closeModalWindow() void MainWindow::lockDatabasesAfterInactivity() { - m_ui->tabWidget->lockDatabases(); + if (!m_ui->tabWidget->lockDatabases()) { + m_inactivityTimer->activate(); + } } bool MainWindow::isTrayIconEnabled() const @@ -1808,11 +1951,7 @@ void MainWindow::displayDesktopNotification(const QString& msg, QString title, i title = BaseWindowTitle; } -#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0) m_trayIcon->showMessage(title, msg, icons()->applicationIcon(), msTimeoutHint); -#else - m_trayIcon->showMessage(title, msg, QSystemTrayIcon::Information, msTimeoutHint); -#endif } void MainWindow::restartApp(const QString& message) @@ -1867,12 +2006,27 @@ void MainWindow::initViewMenu() } }); +#ifdef Q_OS_MACOS + m_ui->actionShowMenubar->setVisible(false); +#else + m_ui->actionShowMenubar->setChecked(!config()->get(Config::GUI_HideMenubar).toBool()); + connect(m_ui->actionShowMenubar, &QAction::toggled, this, [this](bool checked) { + config()->set(Config::GUI_HideMenubar, !checked); + applySettingsChanges(); + }); +#endif + m_ui->actionShowToolbar->setChecked(!config()->get(Config::GUI_HideToolbar).toBool()); connect(m_ui->actionShowToolbar, &QAction::toggled, this, [this](bool checked) { config()->set(Config::GUI_HideToolbar, !checked); applySettingsChanges(); }); + m_ui->actionShowGroupPanel->setChecked(!config()->get(Config::GUI_HideGroupPanel).toBool()); + connect(m_ui->actionShowGroupPanel, &QAction::toggled, this, [](bool checked) { + config()->set(Config::GUI_HideGroupPanel, !checked); + }); + m_ui->actionShowPreviewPanel->setChecked(!config()->get(Config::GUI_HidePreviewPanel).toBool()); connect(m_ui->actionShowPreviewPanel, &QAction::toggled, this, [](bool checked) { config()->set(Config::GUI_HidePreviewPanel, !checked); @@ -1901,15 +2055,153 @@ void MainWindow::initViewMenu() }); } -#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) +void MainWindow::initActionCollection() +{ + auto ac = ActionCollection::instance(); + ac->addActions({// Database Menu + m_ui->actionDatabaseNew, + m_ui->actionDatabaseOpen, + m_ui->actionDatabaseSave, + m_ui->actionDatabaseSaveAs, + m_ui->actionDatabaseSaveBackup, + m_ui->actionDatabaseClose, + m_ui->actionLockDatabase, + m_ui->actionLockAllDatabases, + m_ui->actionDatabaseSettings, + m_ui->actionDatabaseSecurity, + m_ui->actionReports, + m_ui->actionPasskeys, + m_ui->actionDatabaseMerge, + m_ui->actionImportPasskey, + m_ui->actionImportCsv, + m_ui->actionImportOpVault, + m_ui->actionImportKeePass1, + m_ui->actionExportCsv, + m_ui->actionExportHtml, + m_ui->actionExportXML, + m_ui->actionQuit, + // Entry Menu + m_ui->actionEntryNew, + m_ui->actionEntryEdit, + m_ui->actionEntryClone, + m_ui->actionEntryDelete, + m_ui->actionEntryCopyUsername, + m_ui->actionEntryCopyPassword, + m_ui->actionEntryCopyURL, + m_ui->actionEntryCopyTitle, + m_ui->actionEntryCopyNotes, + m_ui->actionEntryTotp, + m_ui->actionEntryTotpQRCode, + m_ui->actionEntrySetupTotp, + m_ui->actionEntryCopyTotp, + m_ui->actionEntryCopyPasswordTotp, + m_ui->actionEntryAutoTypeSequence, + m_ui->actionEntryAutoTypeUsername, + m_ui->actionEntryAutoTypeUsernameEnter, + m_ui->actionEntryAutoTypePassword, + m_ui->actionEntryAutoTypePasswordEnter, + m_ui->actionEntryAutoTypeTOTP, + m_ui->actionEntryDownloadIcon, + m_ui->actionEntryOpenUrl, + m_ui->actionEntryMoveUp, + m_ui->actionEntryMoveDown, + m_ui->actionEntryAddToAgent, + m_ui->actionEntryRemoveFromAgent, + m_ui->actionEntryRestore, + // Group Menu + m_ui->actionGroupNew, + m_ui->actionGroupEdit, + m_ui->actionGroupClone, + m_ui->actionGroupDelete, + m_ui->actionGroupDownloadFavicons, + m_ui->actionGroupSortAsc, + m_ui->actionGroupSortDesc, + m_ui->actionGroupEmptyRecycleBin, + // Tools Menu + m_ui->actionPasswordGenerator, + m_ui->actionClearSSHAgent, + m_ui->actionSettings, + // View Menu + m_ui->actionThemeAuto, + m_ui->actionThemeLight, + m_ui->actionThemeDark, + m_ui->actionThemeClassic, + m_ui->actionCompactMode, +#ifndef Q_OS_MACOS + m_ui->actionShowMenubar, +#endif + m_ui->actionShowToolbar, + m_ui->actionShowGroupPanel, + m_ui->actionShowPreviewPanel, + m_ui->actionAllowScreenCapture, + m_ui->actionAlwaysOnTop, + m_ui->actionHideUsernames, + m_ui->actionHidePasswords, + // Help Menu + m_ui->actionGettingStarted, + m_ui->actionUserGuide, + m_ui->actionKeyboardShortcuts, + m_ui->actionOnlineHelp, + m_ui->actionCheckForUpdates, + m_ui->actionDonate, + m_ui->actionBugReport, + m_ui->actionAbout}); + + // Register as default any shortcuts that were set in the .ui file + for (const auto action : ac->actions()) { + if (!action->shortcut().isEmpty()) { + ac->setDefaultShortcut(action, action->shortcut()); + } + } + + // Actions with standard shortcuts (if no standard shortcut exists, leave the existing + // shortcuts from the .ui file in place) + ac->setDefaultShortcut(m_ui->actionDatabaseOpen, QKeySequence::Open); + ac->setDefaultShortcut(m_ui->actionDatabaseSave, QKeySequence::Save); + ac->setDefaultShortcut(m_ui->actionDatabaseSaveAs, QKeySequence::SaveAs); + ac->setDefaultShortcut(m_ui->actionDatabaseClose, QKeySequence::Close); + ac->setDefaultShortcut(m_ui->actionSettings, QKeySequence::Preferences); + ac->setDefaultShortcut(m_ui->actionQuit, QKeySequence::Quit); + ac->setDefaultShortcut(m_ui->actionEntryNew, QKeySequence::New); + + // Prevent conflicts with global Mac shortcuts (force Control on all platforms) + // Note: Qt::META means Ctrl on Mac. +#ifdef Q_OS_MAC + ac->setDefaultShortcut(m_ui->actionEntryAddToAgent, Qt::META + Qt::Key_H); + ac->setDefaultShortcut(m_ui->actionEntryRemoveFromAgent, Qt::META + Qt::SHIFT + Qt::Key_H); +#endif + + QTimer::singleShot(1, ac, &ActionCollection::restoreShortcuts); +} MainWindowEventFilter::MainWindowEventFilter(QObject* parent) : QObject(parent) { + m_altCoolDown.setInterval(250); + m_altCoolDown.setSingleShot(true); + + m_menubarTimer.setInterval(250); + m_menubarTimer.setSingleShot(false); + connect(&m_menubarTimer, &QTimer::timeout, this, [this] { + auto mainwindow = getMainWindow(); + if (mainwindow && mainwindow->m_ui->menubar->isVisible() && config()->get(Config::GUI_HideMenubar).toBool()) { + // If the menu bar is visible with no active menu, hide it + if (!mainwindow->m_ui->menubar->activeAction()) { + mainwindow->m_ui->menubar->setVisible(false); + m_altCoolDown.start(); + m_menubarTimer.stop(); + } + // Conditions to hide the menubar or stop the timer have not been met + return; + } + // We no longer need the timer + m_menubarTimer.stop(); + }); } /** * MainWindow event filter to initiate empty-area drag on the toolbar, menubar, and tabbar. + * Also shows menubar with Alt when menubar itself is hidden. */ bool MainWindowEventFilter::eventFilter(QObject* watched, QEvent* event) { @@ -1918,10 +2210,13 @@ bool MainWindowEventFilter::eventFilter(QObject* watched, QEvent* event) return QObject::eventFilter(watched, event); } - if (event->type() == QEvent::MouseButtonPress) { + auto eventType = event->type(); + if (eventType == QEvent::MouseButtonPress) { +#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) + // startSystemMove was introduced in Qt 5.15 + auto mouseEvent = dynamic_cast(event); if (watched == mainWindow->m_ui->menubar) { - auto* m = static_cast(event); - if (!mainWindow->m_ui->menubar->actionAt(m->pos())) { + if (!mainWindow->m_ui->menubar->actionAt(mouseEvent->pos())) { mainWindow->windowHandle()->startSystemMove(); return false; } @@ -1931,15 +2226,36 @@ bool MainWindowEventFilter::eventFilter(QObject* watched, QEvent* event) return false; } } else if (watched == mainWindow->m_ui->tabWidget->tabBar()) { - auto* m = static_cast(event); - if (mainWindow->m_ui->tabWidget->tabBar()->tabAt(m->pos()) == -1) { + if (mainWindow->m_ui->tabWidget->tabBar()->tabAt(mouseEvent->pos()) == -1) { mainWindow->windowHandle()->startSystemMove(); return true; } } +#endif + } else if (eventType == QEvent::KeyRelease && watched == mainWindow) { + auto keyEvent = dynamic_cast(event); +#ifdef Q_OS_WIN + // Windows translates AltGr into CTRL + ALT, this breaks using AltGr when the menubar is hidden + // Prevent this by activating the ALT cooldown to ignore the next key event which will be an ALT key + if (keyEvent->key() == Qt::Key_Control && keyEvent->modifiers() == Qt::AltModifier + && config()->get(Config::GUI_HideMenubar).toBool()) { + m_altCoolDown.start(); + return false; + } +#endif + if (keyEvent->key() == Qt::Key_Alt && !keyEvent->modifiers() && config()->get(Config::GUI_HideMenubar).toBool() + && !m_altCoolDown.isActive()) { + auto menubar = mainWindow->m_ui->menubar; + menubar->setVisible(!menubar->isVisible()); + if (menubar->isVisible()) { + menubar->setActiveAction(mainWindow->m_ui->menuFile->menuAction()); + m_menubarTimer.start(); + } else { + m_menubarTimer.stop(); + } + return true; + } } return QObject::eventFilter(watched, event); } - -#endif diff --git a/src/gui/MainWindow.h b/src/gui/MainWindow.h index 2fdc43ed1..ecd98e03a 100644 --- a/src/gui/MainWindow.h +++ b/src/gui/MainWindow.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * Copyright (C) 2020 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 @@ -24,6 +24,7 @@ #include #include #include +#include #include "core/SignalMultiplexer.h" #include "gui/DatabaseWidget.h" @@ -48,10 +49,11 @@ class MainWindow : public QMainWindow public: MainWindow(); - ~MainWindow(); + ~MainWindow() override; QList getOpenDatabases(); void restoreConfigState(); + void setAllowScreenCapture(bool state); enum StackedWidgetIndex { @@ -65,10 +67,13 @@ signals: void databaseUnlocked(DatabaseWidget* dbWidget); void databaseLocked(DatabaseWidget* dbWidget); void activeDatabaseChanged(DatabaseWidget* dbWidget); + void databaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget); public slots: void openDatabase(const QString& filePath, const QString& password = {}, const QString& keyfile = {}); void appExit(); + bool isHardwareKeySupported(); + bool refreshHardwareKeys(); void displayGlobalMessage(const QString& text, MessageWidget::MessageType type, bool showClosebutton = true, @@ -93,13 +98,16 @@ public slots: void restartApp(const QString& message); protected: + bool event(QEvent* event) override; + void showEvent(QShowEvent* event) override; + void hideEvent(QHideEvent* event) override; void closeEvent(QCloseEvent* event) override; void changeEvent(QEvent* event) override; void keyPressEvent(QKeyEvent* event) override; bool focusNextPrevChild(bool next) override; private slots: - void setMenuActionState(DatabaseWidget::Mode mode = DatabaseWidget::Mode::None); + void updateMenuActionState(); void updateToolbarSeparatorVisibility(); void updateWindowTitle(); void showAboutDialog(); @@ -119,15 +127,14 @@ private slots: void switchToNewDatabase(); void switchToOpenDatabase(); void switchToDatabaseFile(const QString& file); - void switchToKeePass1Database(); - void switchToOpVaultDatabase(); - void switchToCsvImport(); + void updateRemoteSyncMenuEntries(); void databaseStatusChanged(DatabaseWidget* dbWidget); void databaseTabChanged(int tabIndex); void openRecentDatabase(QAction* action); void clearLastDatabases(); void updateLastDatabasesMenu(); void updateCopyAttributesMenu(); + void updateSetTagsMenu(); void showEntryContextMenu(const QPoint& globalPos); void showGroupContextMenu(const QPoint& globalPos); void applySettingsChanges(); @@ -144,11 +151,13 @@ private slots: void agentEnabled(bool enabled); void updateTrayIcon(); void updateProgressBar(int percentage, QString message); + void updateEntryCountLabel(); void focusSearchWidget(); + void enableMenuAndToolbar(); + void disableMenuAndToolbar(); + void clearSSHAgent(); private: - static void setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback = 0); - static const QString BaseWindowTitle; void saveWindowInformation(); @@ -161,6 +170,7 @@ private: void dropEvent(QDropEvent* event) override; void initViewMenu(); + void initActionCollection(); const QScopedPointer m_ui; SignalMultiplexer m_actionMultiplexer; @@ -170,6 +180,7 @@ private: QPointer m_entryNewContextMenu; QPointer m_lastDatabasesActions; QPointer m_copyAdditionalAttributeActions; + QPointer m_setTagsMenuActions; QPointer m_inactivityTimer; QPointer m_touchIDinactivityTimer; int m_countDefaultAttributes; @@ -178,6 +189,7 @@ private: QPointer m_searchWidget; QPointer m_progressBar; QPointer m_progressBarLabel; + QPointer m_statusBarLabel; Q_DISABLE_COPY(MainWindow) @@ -186,6 +198,7 @@ private: bool m_restartRequested = false; bool m_contextMenuFocusLock = false; bool m_showToolbarSeparator = false; + bool m_allowScreenCapture = false; qint64 m_lastFocusOutTime = 0; qint64 m_lastShowTime = 0; QTimer m_updateCheckTimer; @@ -195,7 +208,6 @@ private: friend class MainWindowEventFilter; }; -#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) class MainWindowEventFilter : public QObject { Q_OBJECT @@ -203,8 +215,11 @@ class MainWindowEventFilter : public QObject public: explicit MainWindowEventFilter(QObject* parent); bool eventFilter(QObject* watched, QEvent* event) override; + +private: + QTimer m_menubarTimer; + QTimer m_altCoolDown; }; -#endif /** * Return instance of MainWindow created on app load diff --git a/src/gui/MainWindow.ui b/src/gui/MainWindow.ui index b92b00742..283bfd999 100644 --- a/src/gui/MainWindow.ui +++ b/src/gui/MainWindow.ui @@ -216,7 +216,7 @@ 0 0 800 - 21 + 22 @@ -231,20 +231,19 @@ &Recent Databases - - - &Import - - - - - &Export + + + + + Remote S&ync… + + @@ -257,12 +256,16 @@ - + + + + - + + @@ -290,9 +293,6 @@ true - - false - @@ -300,24 +300,31 @@ Copy Att&ribute - - - false - TOTP + + + + true + + + Tags + + + + @@ -326,11 +333,16 @@ + + + + + @@ -343,22 +355,24 @@ &Groups + + - - - + + &Tools + @@ -377,8 +391,14 @@ + + + + + + @@ -421,6 +441,9 @@ + + + @@ -429,6 +452,12 @@ &Quit + + Quit Application + + + Ctrl+Q + QAction::QuitRole @@ -437,6 +466,9 @@ &About + + Open About Dialog + QAction::AboutRole @@ -453,29 +485,38 @@ &Open Database… + + Open Database + + + Ctrl+O + - - false - &Save Database + + Ctrl+S + - - false - &Close Database + + Ctrl+W + &New Database… - Create a new database + Create Database + + + Ctrl+Shift+N @@ -483,184 +524,226 @@ &Merge From Database… - Merge from another KDBX database + Merge From Database - - false - &New Entry… - Add a new entry + Create Entry + + + Ctrl+N - - false - &Edit Entry… - View or edit entry + Edit Entry + + + Ctrl+E - + false + + E&xpire Entry… + + + &Delete Entry… + + Delete Entry + + + Del + - - false - &New Group… - Add a new group + Create Group - - false - &Edit Group… + + Edit Group + - - false - &Delete Group… + + Delete Group + - - false - Download All &Favicons… + + Download All Favicons + - - false - Sort &A-Z + + Sort Groups A-Z + - - false - Sort &Z-A + + Sort Groups Z-A + - - false - Sa&ve Database As… + + Save Database As + + + Ctrl+Shift+S + - - false - Database &Security… + + Show Database Security + - - false + + true Database &Reports… - Statistics, health check, etc. + Show Database Reports + + + Ctrl+Shift+R QAction::NoRole - - false + + true &Database Settings… - Database settings + Show Database Settings + + + Ctrl+Shift+, + + + QAction::NoRole + + + + + Passkeys… + + + Show Passkeys + + + QAction::NoRole + + + + + Import Passkey + + + Import Passkey QAction::NoRole - - false - &Clone Entry… + + Clone Entry + + + Ctrl+D + - - false - Move u&p - Move entry one step up + Move Entry Up + + + Alt+Up - - false - Move do&wn - Move entry one step down + Move Entry Down + + + Alt+Down - - false - Copy &Username - Copy username to clipboard + Copy Username + + + Ctrl+B - - false - Copy &Password - Copy password to clipboard + Copy Password + + + Ctrl+C @@ -670,6 +753,12 @@ &Settings + + Show Application Settings + + + Ctrl+, + QAction::PreferencesRole @@ -681,15 +770,25 @@ &Password Generator + + Show Password Generator + - - false - Perform &Auto-Type + + + Import Passkey + + + + + Remove Passkey From Entry + + false @@ -701,7 +800,7 @@ {USERNAME} - {USERNAME} + Perform Auto-Type: {USERNAME} @@ -715,7 +814,7 @@ {USERNAME}{ENTER} - {USERNAME}{ENTER} + Perform Auto-Type: {USERNAME}{ENTER} @@ -729,7 +828,7 @@ {PASSWORD} - {PASSWORD} + Perform Auto-Type: {PASSWORD} @@ -743,7 +842,7 @@ {PASSWORD}{ENTER} - {PASSWORD}{ENTER} + Perform Auto-Type: {PASSWORD}{ENTER} @@ -757,93 +856,93 @@ {TOTP} - {TOTP} + Perform Auto-Type: {TOTP} Download &Favicon + + Ctrl+Shift+D + - - false - Open &URL + + Ctrl+Shift+U + - - false - &Lock Database + + Ctrl+L + - - false - Lock &All Databases + + Ctrl+Shift+L + - - false - &Title - Copy title to clipboard + Copy Title + + + Ctrl+I - - false - - &URL + Copy &URL - Copy URL to clipboard + Copy URL + + + Ctrl+U - - false - &Notes - Copy notes to clipboard + Copy Notes - - false - &CSV File… + + Export to CSV + - - false - &HTML File… + + Export to HTML + KeePass 1 Database… - Import a KeePass 1 database + Import KeePass1 Database @@ -851,7 +950,7 @@ 1Password Vault… - Import a 1Password Vault + Import 1Password Vault @@ -859,46 +958,72 @@ CSV File… - Import a CSV file + Import CSV File Show TOTP + + Ctrl+Shift+T + Show QR Code + + Show TOTP QR Code + Set up TOTP… + + Set up TOTP + Copy &TOTP + + Ctrl+T + + + + + Copy Password and TOTP + + + Ctrl+Y + E&mpty recycle bin - - false + + Empty Recycle Bin &Donate + + Open Donation Website + Report a &Bug + + Open Bug Report + @@ -913,7 +1038,7 @@ &Online Help - Go to online documentation + Open Online Documentation @@ -928,27 +1053,42 @@ &Keyboard Shortcuts + + Open Keyboard Shortcuts Guide + Ctrl+/ - - false - Save Database Backup… + + Save Database Backup + Add key to SSH Agent + + SSH Agent: Add Key + + + Ctrl+H + Remove key from SSH Agent + + SSH Agent: Remove Key + + + Ctrl+Shift+H + @@ -957,6 +1097,9 @@ Compact Mode + + Toggle Compact Mode + @@ -968,6 +1111,9 @@ Automatic + + Set Theme: Automatic + @@ -976,6 +1122,9 @@ Light + + Set Theme: Light + @@ -984,6 +1133,9 @@ Dark + + Set Theme: Dark + @@ -992,6 +1144,23 @@ Classic (Platform-native) + + Set Theme: Classic + + + + + true + + + true + + + Show Menubar + + + Toggle Show Menubar + @@ -1003,6 +1172,9 @@ Show Toolbar + + Toggle Show Toolbar + @@ -1014,6 +1186,9 @@ Show Preview Panel + + Toggle Show Preview Panel + @@ -1022,6 +1197,9 @@ Always on Top + + Toggle Always on Top + Ctrl+Shift+A @@ -1033,6 +1211,9 @@ Hide Usernames + + Toggle Hide Usernames + Ctrl+Shift+B @@ -1047,6 +1228,9 @@ Hide Passwords + + Toggle Hide Passwords + Ctrl+Shift+C @@ -1059,13 +1243,13 @@ {USERNAME}{TAB}{PASSWORD}{ENTER} - {USERNAME}{TAB}{PASSWORD}{ENTER} + Perform Auto-Type: Entry Default + + + Ctrl+Shift+V - - false - Clone Group... @@ -1075,20 +1259,74 @@ Restore Entry(s) - Restore Entry(s) + Restore Entry Ctrl+R - - false - &Lock Database + + + &XML File… + + + Export to XML + + + + + true + + + Allow Screen Capture + + + Toggle Allow Screen Capture + + + + + 1Password 1PUX... + + + Import a 1Password 1PUX file + + + + + Import… + + + + + true + + + true + + + Show Group Panel + + + Toggle Show Group Panel + + + + + Clear SSH Agent + + + Clear all identities in ssh-agent + + + QAction::TextHeuristicRole + + diff --git a/src/gui/MessageBox.cpp b/src/gui/MessageBox.cpp index 04e6ccb29..94a4107bd 100644 --- a/src/gui/MessageBox.cpp +++ b/src/gui/MessageBox.cpp @@ -19,6 +19,7 @@ #include "MessageBox.h" #include +#include #include #include #include @@ -66,6 +67,7 @@ void MessageBox::initializeButtonDefs() {Disable, {QMessageBox::tr("Disable"), QMessageBox::ButtonRole::AcceptRole}}, {Merge, {QMessageBox::tr("Merge"), QMessageBox::ButtonRole::AcceptRole}}, {Continue, {QMessageBox::tr("Continue"), QMessageBox::ButtonRole::AcceptRole}}, + {ContinueWithWeakPass, {QMessageBox::tr("Continue with weak password"), QMessageBox::ButtonRole::AcceptRole}}, }; } @@ -86,6 +88,7 @@ MessageBox::Button MessageBox::messageBox(QWidget* parent, { if (m_nextAnswer == MessageBox::NoButton) { QMessageBox msgBox(parent); + msgBox.setTextFormat(Qt::RichText); msgBox.setIcon(icon); msgBox.setWindowTitle(title); msgBox.setText(text); @@ -125,6 +128,7 @@ MessageBox::Button MessageBox::messageBox(QWidget* parent, msgBox.activateWindow(); msgBox.raise(); } + msgBox.layout()->setSizeConstraint(QLayout::SetMinimumSize); msgBox.exec(); Button returnButton = m_addedButtonLookup[msgBox.clickedButton()]; diff --git a/src/gui/MessageBox.h b/src/gui/MessageBox.h index 46939a535..1dbcc2076 100644 --- a/src/gui/MessageBox.h +++ b/src/gui/MessageBox.h @@ -58,10 +58,11 @@ public: Disable = 1 << 25, Merge = 1 << 26, Continue = 1 << 27, + ContinueWithWeakPass = 1 << 28, // Internal loop markers. Update Last when new KeePassXC button is added First = Ok, - Last = Continue, + Last = ContinueWithWeakPass, }; enum Action diff --git a/src/gui/OpVaultOpenWidget.cpp b/src/gui/OpVaultOpenWidget.cpp deleted file mode 100644 index cae569cf2..000000000 --- a/src/gui/OpVaultOpenWidget.cpp +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (C) 2019 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 . - */ - -#include "OpVaultOpenWidget.h" - -#include "core/Database.h" -#include "format/OpVaultReader.h" -#include "ui_DatabaseOpenWidget.h" - -OpVaultOpenWidget::OpVaultOpenWidget(QWidget* parent) - : DatabaseOpenWidget(parent) -{ - m_ui->labelHeadline->setText("Import 1Password Database"); -} - -void OpVaultOpenWidget::openDatabase() -{ - OpVaultReader reader; - - QString password; - password = m_ui->editPassword->text(); - - QDir opVaultDir(m_filename); - - QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); - m_db.reset(reader.readDatabase(opVaultDir, password)); - QApplication::restoreOverrideCursor(); - - if (m_db) { - emit dialogFinished(true); - } else { - m_ui->messageWidget->showMessage(tr("Read Database did not produce an instance\n%1").arg(reader.errorString()), - MessageWidget::Error); - m_ui->editPassword->clear(); - } -} diff --git a/src/gui/PasswordEdit.cpp b/src/gui/PasswordEdit.cpp deleted file mode 100644 index 5f9272b1b..000000000 --- a/src/gui/PasswordEdit.cpp +++ /dev/null @@ -1,213 +0,0 @@ -/* - * Copyright (C) 2014 Felix Geyer - * Copyright (C) 2020 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 . - */ - -#include "PasswordEdit.h" - -#include "core/Config.h" -#include "gui/Font.h" -#include "gui/Icons.h" -#include "gui/PasswordGeneratorWidget.h" -#include "gui/osutils/OSUtils.h" -#include "gui/styles/StateColorPalette.h" - -#include -#include -#include - -PasswordEdit::PasswordEdit(QWidget* parent) - : QLineEdit(parent) -{ - const QIcon errorIcon = icons()->icon("dialog-error"); - m_errorAction = addAction(errorIcon, QLineEdit::TrailingPosition); - m_errorAction->setVisible(false); - m_errorAction->setToolTip(tr("Passwords do not match")); - - const QIcon correctIcon = icons()->icon("dialog-ok"); - m_correctAction = addAction(correctIcon, QLineEdit::TrailingPosition); - m_correctAction->setVisible(false); - m_correctAction->setToolTip(tr("Passwords match so far")); - - setEchoMode(QLineEdit::Password); - - // use a monospace font for the password field - QFont passwordFont = Font::fixedFont(); - passwordFont.setLetterSpacing(QFont::PercentageSpacing, 110); - setFont(passwordFont); - - // Prevent conflicts with global Mac shortcuts (force Control on all platforms) -#ifdef Q_OS_MAC - constexpr auto modifier = Qt::MetaModifier; -#else - constexpr auto modifier = Qt::ControlModifier; -#endif - - m_toggleVisibleAction = new QAction( - icons()->onOffIcon("password-show", false), - tr("Toggle Password (%1)").arg(QKeySequence(modifier + Qt::Key_H).toString(QKeySequence::NativeText)), - this); - m_toggleVisibleAction->setCheckable(true); - m_toggleVisibleAction->setShortcut(modifier + Qt::Key_H); - m_toggleVisibleAction->setShortcutContext(Qt::WidgetShortcut); - addAction(m_toggleVisibleAction, QLineEdit::TrailingPosition); - connect(m_toggleVisibleAction, &QAction::triggered, this, &PasswordEdit::setShowPassword); - - m_passwordGeneratorAction = new QAction( - icons()->icon("password-generator"), - tr("Generate Password (%1)").arg(QKeySequence(modifier + Qt::Key_G).toString(QKeySequence::NativeText)), - this); - m_passwordGeneratorAction->setShortcut(modifier + Qt::Key_G); - m_passwordGeneratorAction->setShortcutContext(Qt::WidgetShortcut); - addAction(m_passwordGeneratorAction, QLineEdit::TrailingPosition); - m_passwordGeneratorAction->setVisible(false); - - m_capslockAction = - new QAction(icons()->icon("dialog-warning", true, StateColorPalette().color(StateColorPalette::Error)), - tr("Warning: Caps Lock enabled!"), - this); - addAction(m_capslockAction, QLineEdit::LeadingPosition); - m_capslockAction->setVisible(false); -} - -void PasswordEdit::setRepeatPartner(PasswordEdit* repeatEdit) -{ - m_repeatPasswordEdit = repeatEdit; - m_repeatPasswordEdit->setParentPasswordEdit(this); - - connect(this, SIGNAL(textChanged(QString)), m_repeatPasswordEdit, SLOT(autocompletePassword(QString))); - connect(this, SIGNAL(textChanged(QString)), m_repeatPasswordEdit, SLOT(updateRepeatStatus())); - connect(m_repeatPasswordEdit, SIGNAL(textChanged(QString)), m_repeatPasswordEdit, SLOT(updateRepeatStatus())); -} - -void PasswordEdit::setParentPasswordEdit(PasswordEdit* parent) -{ - m_parentPasswordEdit = parent; - // Hide actions - m_toggleVisibleAction->setVisible(false); - m_passwordGeneratorAction->setVisible(false); -} - -void PasswordEdit::enablePasswordGenerator() -{ - if (!m_passwordGeneratorAction->isVisible()) { - m_passwordGeneratorAction->setVisible(true); - connect(m_passwordGeneratorAction, &QAction::triggered, this, &PasswordEdit::popupPasswordGenerator); - } -} - -void PasswordEdit::setShowPassword(bool show) -{ - setEchoMode(show ? QLineEdit::Normal : QLineEdit::Password); - m_toggleVisibleAction->setIcon(icons()->onOffIcon("password-show", show)); - m_toggleVisibleAction->setChecked(show); - - if (m_repeatPasswordEdit) { - m_repeatPasswordEdit->setEchoMode(show ? QLineEdit::Normal : QLineEdit::Password); - if (!config()->get(Config::Security_PasswordsRepeatVisible).toBool()) { - m_repeatPasswordEdit->setEnabled(!show); - m_repeatPasswordEdit->setText(text()); - } else { - m_repeatPasswordEdit->setEnabled(true); - } - } -} - -bool PasswordEdit::isPasswordVisible() const -{ - return echoMode() == QLineEdit::Normal; -} - -void PasswordEdit::popupPasswordGenerator() -{ - auto generator = PasswordGeneratorWidget::popupGenerator(this); - generator->setPasswordVisible(isPasswordVisible()); - generator->setPasswordLength(text().length()); - - connect(generator, SIGNAL(appliedPassword(QString)), SLOT(setText(QString))); - if (m_repeatPasswordEdit) { - connect(generator, SIGNAL(appliedPassword(QString)), m_repeatPasswordEdit, SLOT(setText(QString))); - } -} - -void PasswordEdit::updateRepeatStatus() -{ - static const auto stylesheetTemplate = QStringLiteral("QLineEdit { background: %1; }"); - if (!m_parentPasswordEdit) { - return; - } - - const auto otherPassword = m_parentPasswordEdit->text(); - const auto password = text(); - if (otherPassword != password) { - bool isCorrect = false; - StateColorPalette statePalette; - QColor color = statePalette.color(StateColorPalette::ColorRole::Error); - if (!password.isEmpty() && otherPassword.startsWith(password)) { - color = statePalette.color(StateColorPalette::ColorRole::Incomplete); - isCorrect = true; - } - setStyleSheet(stylesheetTemplate.arg(color.name())); - m_correctAction->setVisible(isCorrect); - m_errorAction->setVisible(!isCorrect); - } else { - m_correctAction->setVisible(false); - m_errorAction->setVisible(false); - setStyleSheet(""); - } -} - -void PasswordEdit::autocompletePassword(const QString& password) -{ - if (!config()->get(Config::Security_PasswordsRepeatVisible).toBool() && echoMode() == QLineEdit::Normal) { - setText(password); - } -} - -bool PasswordEdit::event(QEvent* event) -{ - if (isVisible() - && (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease - || event->type() == QEvent::FocusIn)) { - checkCapslockState(); - } - return QLineEdit::event(event); -} - -void PasswordEdit::checkCapslockState() -{ - if (m_parentPasswordEdit) { - return; - } - - bool newCapslockState = osUtils->isCapslockEnabled(); - if (newCapslockState != m_capslockState) { - m_capslockState = newCapslockState; - m_capslockAction->setVisible(newCapslockState); - - // Force repaint to avoid rendering glitches of QLineEdit contents - repaint(); - - emit capslockToggled(m_capslockState); - - if (newCapslockState) { - QTimer::singleShot( - 150, [this] { QToolTip::showText(mapToGlobal(rect().bottomLeft()), m_capslockAction->text()); }); - } else if (QToolTip::isVisible()) { - QToolTip::hideText(); - } - } -} diff --git a/src/gui/PasswordGeneratorWidget.cpp b/src/gui/PasswordGeneratorWidget.cpp index d398b5c9b..f0f48f61a 100644 --- a/src/gui/PasswordGeneratorWidget.cpp +++ b/src/gui/PasswordGeneratorWidget.cpp @@ -56,7 +56,8 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent) connect(shortcut, &QShortcut::activated, this, [this] { applyPassword(); }); connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updateButtonsEnabled(QString))); - connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updatePasswordStrength(QString))); + connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updatePasswordStrength())); + connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updatePasswordLengthLabel(QString))); connect(m_ui->buttonAdvancedMode, SIGNAL(toggled(bool)), SLOT(setAdvancedMode(bool))); connect(m_ui->buttonAddHex, SIGNAL(clicked()), SLOT(excludeHexChars())); connect(m_ui->editAdditionalChars, SIGNAL(textChanged(QString)), SLOT(updateGenerator())); @@ -80,14 +81,15 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent) connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(updateGenerator())); connect(m_ui->wordCaseComboBox, SIGNAL(currentIndexChanged(int)), SLOT(updateGenerator())); - // set font size of password quality and entropy labels dynamically to 80% of + // set font size of password quality, characters, and entropy labels dynamically to 80% of // the default font size, but make it no smaller than 8pt QFont defaultFont; - int smallerSize = static_cast(defaultFont.pointSize() * 0.8f); + auto smallerSize = static_cast(defaultFont.pointSize() * 0.8f); if (smallerSize >= 8) { defaultFont.setPointSize(smallerSize); m_ui->entropyLabel->setFont(defaultFont); m_ui->strengthLabel->setFont(defaultFont); + m_ui->passwordLengthLabel->setFont(defaultFont); } // set default separator to Space @@ -97,6 +99,7 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent) m_ui->wordCaseComboBox->addItem(tr("lower case"), PassphraseGenerator::LOWERCASE); m_ui->wordCaseComboBox->addItem(tr("UPPER CASE"), PassphraseGenerator::UPPERCASE); m_ui->wordCaseComboBox->addItem(tr("Title Case"), PassphraseGenerator::TITLECASE); + m_ui->wordCaseComboBox->addItem(tr("MIXED case"), PassphraseGenerator::MIXEDCASE); // load system-wide wordlists QDir path(resources()->wordlistPath("")); @@ -115,15 +118,13 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent) loadSettings(); } -PasswordGeneratorWidget::~PasswordGeneratorWidget() -{ -} +PasswordGeneratorWidget::~PasswordGeneratorWidget() = default; void PasswordGeneratorWidget::closeEvent(QCloseEvent* event) { // Emits closed signal when clicking X from title bar emit closed(); - event->accept(); + QWidget::closeEvent(event); } PasswordGeneratorWidget* PasswordGeneratorWidget::popupGenerator(QWidget* parent) @@ -253,15 +254,11 @@ void PasswordGeneratorWidget::regeneratePassword() { if (m_ui->tabWidget->currentIndex() == Password) { if (m_passwordGenerator->isValid()) { - QString password = m_passwordGenerator->generatePassword(); - m_ui->editNewPassword->setText(password); - updatePasswordStrength(password); + m_ui->editNewPassword->setText(m_passwordGenerator->generatePassword()); } } else { if (m_dicewareGenerator->isValid()) { - QString password = m_dicewareGenerator->generatePassphrase(); - m_ui->editNewPassword->setText(password); - updatePasswordStrength(password); + m_ui->editNewPassword->setText(m_dicewareGenerator->generatePassphrase()); } } } @@ -274,21 +271,56 @@ void PasswordGeneratorWidget::updateButtonsEnabled(const QString& password) m_ui->buttonCopy->setEnabled(!password.isEmpty()); } -void PasswordGeneratorWidget::updatePasswordStrength(const QString& password) +void PasswordGeneratorWidget::updatePasswordStrength() { - PasswordHealth health(password); + // Calculate the password / passphrase health + PasswordHealth passwordHealth(0); if (m_ui->tabWidget->currentIndex() == Diceware) { - // Diceware estimates entropy differently - health = PasswordHealth(m_dicewareGenerator->estimateEntropy()); - - m_ui->charactersInPassphraseLabel->setText(QString::number(password.length())); + passwordHealth.init(m_dicewareGenerator->estimateEntropy()); + } else { + passwordHealth = PasswordHealth(m_ui->editNewPassword->text()); } - m_ui->entropyLabel->setText(tr("Entropy: %1 bit").arg(QString::number(health.entropy(), 'f', 2))); + // Update the entropy text labels + m_ui->entropyLabel->setText(tr("Entropy: %1 bit").arg(QString::number(passwordHealth.entropy(), 'f', 2))); + m_ui->entropyProgressBar->setValue(std::min(int(passwordHealth.entropy()), m_ui->entropyProgressBar->maximum())); - m_ui->entropyProgressBar->setValue(std::min(int(health.entropy()), m_ui->entropyProgressBar->maximum())); + // Update the visual strength meter + QString style = m_ui->entropyProgressBar->styleSheet(); + QRegularExpression re("(QProgressBar::chunk\\s*\\{.*?background-color:)[^;]+;", + QRegularExpression::CaseInsensitiveOption | QRegularExpression::DotMatchesEverythingOption); + style.replace(re, "\\1 %1;"); - colorStrengthIndicator(health); + StateColorPalette statePalette; + switch (passwordHealth.quality()) { + case PasswordHealth::Quality::Bad: + case PasswordHealth::Quality::Poor: + m_ui->entropyProgressBar->setStyleSheet( + style.arg(statePalette.color(StateColorPalette::HealthCritical).name())); + m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Poor", "Password quality"))); + break; + + case PasswordHealth::Quality::Weak: + m_ui->entropyProgressBar->setStyleSheet(style.arg(statePalette.color(StateColorPalette::HealthBad).name())); + m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Weak", "Password quality"))); + break; + + case PasswordHealth::Quality::Good: + m_ui->entropyProgressBar->setStyleSheet(style.arg(statePalette.color(StateColorPalette::HealthOk).name())); + m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Good", "Password quality"))); + break; + + case PasswordHealth::Quality::Excellent: + m_ui->entropyProgressBar->setStyleSheet( + style.arg(statePalette.color(StateColorPalette::HealthExcellent).name())); + m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Excellent", "Password quality"))); + break; + } +} + +void PasswordGeneratorWidget::updatePasswordLengthLabel(const QString& password) +{ + m_ui->passwordLengthLabel->setText(tr("Characters: %1").arg(QString::number(password.length()))); } void PasswordGeneratorWidget::applyPassword() @@ -471,41 +503,6 @@ void PasswordGeneratorWidget::excludeHexChars() updateGenerator(); } -void PasswordGeneratorWidget::colorStrengthIndicator(const PasswordHealth& health) -{ - // Take the existing stylesheet and convert the text and background color to arguments - QString style = m_ui->entropyProgressBar->styleSheet(); - QRegularExpression re("(QProgressBar::chunk\\s*\\{.*?background-color:)[^;]+;", - QRegularExpression::CaseInsensitiveOption | QRegularExpression::DotMatchesEverythingOption); - style.replace(re, "\\1 %1;"); - - StateColorPalette statePalette; - switch (health.quality()) { - case PasswordHealth::Quality::Bad: - case PasswordHealth::Quality::Poor: - m_ui->entropyProgressBar->setStyleSheet( - style.arg(statePalette.color(StateColorPalette::HealthCritical).name())); - m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Poor", "Password quality"))); - break; - - case PasswordHealth::Quality::Weak: - m_ui->entropyProgressBar->setStyleSheet(style.arg(statePalette.color(StateColorPalette::HealthBad).name())); - m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Weak", "Password quality"))); - break; - - case PasswordHealth::Quality::Good: - m_ui->entropyProgressBar->setStyleSheet(style.arg(statePalette.color(StateColorPalette::HealthOk).name())); - m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Good", "Password quality"))); - break; - - case PasswordHealth::Quality::Excellent: - m_ui->entropyProgressBar->setStyleSheet( - style.arg(statePalette.color(StateColorPalette::HealthExcellent).name())); - m_ui->strengthLabel->setText(tr("Password Quality: %1").arg(tr("Excellent", "Password quality"))); - break; - } -} - PasswordGenerator::CharClasses PasswordGeneratorWidget::charClasses() { PasswordGenerator::CharClasses classes; diff --git a/src/gui/PasswordGeneratorWidget.h b/src/gui/PasswordGeneratorWidget.h index 80b3f26de..2f92a3eca 100644 --- a/src/gui/PasswordGeneratorWidget.h +++ b/src/gui/PasswordGeneratorWidget.h @@ -20,6 +20,7 @@ #define KEEPASSX_PASSWORDGENERATORWIDGET_H #include +#include #include "core/PassphraseGenerator.h" #include "core/PasswordGenerator.h" @@ -45,7 +46,7 @@ public: }; explicit PasswordGeneratorWidget(QWidget* parent = nullptr); - ~PasswordGeneratorWidget(); + ~PasswordGeneratorWidget() override; void loadSettings(); void saveSettings(); @@ -57,6 +58,10 @@ public: static PasswordGeneratorWidget* popupGenerator(QWidget* parent = nullptr); +signals: + void appliedPassword(const QString& password); + void closed(); + public slots: void regeneratePassword(); void applyPassword(); @@ -65,19 +70,18 @@ public slots: void deleteWordList(); void addWordList(); -signals: - void appliedPassword(const QString& password); - void closed(); +protected: + void closeEvent(QCloseEvent* event) override; private slots: void updateButtonsEnabled(const QString& password); - void updatePasswordStrength(const QString& password); + void updatePasswordStrength(); + void updatePasswordLengthLabel(const QString& password); void setAdvancedMode(bool advanced); void excludeHexChars(); void passwordLengthChanged(int length); void passphraseLengthChanged(int length); - void colorStrengthIndicator(const PasswordHealth& health); void updateGenerator(); @@ -86,7 +90,6 @@ private: bool m_passwordGenerated = false; int m_firstCustomWordlistIndex; - void closeEvent(QCloseEvent* event); PasswordGenerator::CharClasses charClasses(); PasswordGenerator::GeneratorFlags generatorFlags(); diff --git a/src/gui/PasswordGeneratorWidget.ui b/src/gui/PasswordGeneratorWidget.ui index 547c5a0ab..47f197c81 100644 --- a/src/gui/PasswordGeneratorWidget.ui +++ b/src/gui/PasswordGeneratorWidget.ui @@ -7,7 +7,7 @@ 0 0 729 - 427 + 433 @@ -59,6 +59,50 @@ + + + + + 0 + 0 + + + + + 70 + 0 + + + + + 16777215 + 30 + + + + passwordLength + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + 3 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -87,9 +131,9 @@ - + - + 0 0 @@ -100,6 +144,9 @@ 0 + + Qt::StrongFocus + Generated password @@ -205,6 +252,9 @@ QProgressBar::chunk { Password + + 10 + @@ -492,7 +542,7 @@ QProgressBar::chunk { Math Symbols - < * + ! ? = + < > * + ! ? = true @@ -666,7 +716,10 @@ QProgressBar::chunk { - Excluded characters: "0", "1", "l", "I", "O", "|", "﹒" + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" + + + Excluded characters: "0", "1", "l", "I", "O", "|", "﹒", "B", "8", "G", "6" Exclude look-alike characters @@ -716,26 +769,6 @@ QProgressBar::chunk { - - - - Word Separator: - - - - - - - - 0 - 0 - - - - Wordlist: - - - @@ -781,23 +814,6 @@ QProgressBar::chunk { - - - - Word Count: - - - spinBoxLength - - - - - - - Character Count: - - - @@ -805,61 +821,12 @@ QProgressBar::chunk { - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - 0 - 0 - - - - - 20 - 0 - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - + + + + Word Separator: + + @@ -901,10 +868,82 @@ QProgressBar::chunk { - - + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + - character + Word Count: + + + spinBoxLength + + + + + + + + + + 0 + 0 + + + + + 20 + 0 + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + 0 + 0 + + + + Wordlist: @@ -990,9 +1029,9 @@ QProgressBar::chunk { - PasswordEdit - QLineEdit -
    gui/PasswordEdit.h
    + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    1
    diff --git a/src/gui/PasswordWidget.cpp b/src/gui/PasswordWidget.cpp new file mode 100644 index 000000000..03751c8b1 --- /dev/null +++ b/src/gui/PasswordWidget.cpp @@ -0,0 +1,315 @@ +/* + * Copyright (C) 2014 Felix Geyer + * Copyright (C) 2020 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 . + */ + +#include "PasswordWidget.h" +#include "ui_PasswordWidget.h" + +#include "core/Config.h" +#include "core/PasswordHealth.h" +#include "gui/Font.h" +#include "gui/Icons.h" +#include "gui/PasswordGeneratorWidget.h" +#include "gui/osutils/OSUtils.h" +#include "gui/styles/StateColorPalette.h" + +#include +#include +#include +#include + +PasswordWidget::PasswordWidget(QWidget* parent) + : QWidget(parent) + , m_ui(new Ui::PasswordWidget()) +{ + m_ui->setupUi(this); + setFocusProxy(m_ui->passwordEdit); + m_ui->passwordEdit->installEventFilter(this); + + const QIcon errorIcon = icons()->icon("dialog-error"); + m_errorAction = m_ui->passwordEdit->addAction(errorIcon, QLineEdit::TrailingPosition); + m_errorAction->setVisible(false); + m_errorAction->setToolTip(tr("Passwords do not match")); + + const QIcon correctIcon = icons()->icon("dialog-ok"); + m_correctAction = m_ui->passwordEdit->addAction(correctIcon, QLineEdit::TrailingPosition); + m_correctAction->setVisible(false); + m_correctAction->setToolTip(tr("Passwords match so far")); + + setEchoMode(QLineEdit::Password); + + // use a monospace font for the password field + QFont passwordFont = Font::fixedFont(); + passwordFont.setLetterSpacing(QFont::PercentageSpacing, 110); + m_ui->passwordEdit->setFont(passwordFont); + + // Prevent conflicts with global Mac shortcuts (force Control on all platforms) +#ifdef Q_OS_MAC + constexpr auto modifier = Qt::MetaModifier; +#else + constexpr auto modifier = Qt::ControlModifier; +#endif + + m_toggleVisibleAction = new QAction( + icons()->onOffIcon("password-show", false), + tr("Toggle Password (%1)").arg(QKeySequence(modifier + Qt::Key_H).toString(QKeySequence::NativeText)), + this); + m_toggleVisibleAction->setCheckable(true); + m_toggleVisibleAction->setShortcut(modifier + Qt::Key_H); + m_toggleVisibleAction->setShortcutContext(Qt::WidgetShortcut); + m_ui->passwordEdit->addAction(m_toggleVisibleAction, QLineEdit::TrailingPosition); + connect(m_toggleVisibleAction, &QAction::triggered, this, &PasswordWidget::setShowPassword); + + m_passwordGeneratorAction = new QAction( + icons()->icon("password-generator"), + tr("Generate Password (%1)").arg(QKeySequence(modifier + Qt::Key_G).toString(QKeySequence::NativeText)), + this); + m_passwordGeneratorAction->setShortcut(modifier + Qt::Key_G); + m_passwordGeneratorAction->setShortcutContext(Qt::WidgetShortcut); + m_ui->passwordEdit->addAction(m_passwordGeneratorAction, QLineEdit::TrailingPosition); + m_passwordGeneratorAction->setVisible(false); + + m_capslockAction = + new QAction(icons()->icon("dialog-warning", true, StateColorPalette().color(StateColorPalette::Error)), + tr("Warning: Caps Lock enabled!"), + this); + m_ui->passwordEdit->addAction(m_capslockAction, QLineEdit::LeadingPosition); + m_capslockAction->setVisible(false); + + // Reset the password strength bar, hidden by default + updatePasswordStrength(""); + m_ui->qualityProgressBar->setVisible(false); + + connect(m_ui->passwordEdit, &QLineEdit::textChanged, this, [this](const QString& pwd) { + updatePasswordStrength(pwd); + emit textChanged(pwd); + }); +} + +PasswordWidget::~PasswordWidget() +{ +} + +void PasswordWidget::setQualityVisible(bool state) +{ + m_ui->qualityProgressBar->setVisible(state); +} + +QString PasswordWidget::text() +{ + return m_ui->passwordEdit->text(); +} + +void PasswordWidget::setText(const QString& text) +{ + m_ui->passwordEdit->setText(text); +} + +void PasswordWidget::setEchoMode(QLineEdit::EchoMode mode) +{ + m_ui->passwordEdit->setEchoMode(mode); +} + +void PasswordWidget::clear() +{ + m_ui->passwordEdit->clear(); +} + +void PasswordWidget::setClearButtonEnabled(bool enabled) +{ + m_ui->passwordEdit->setClearButtonEnabled(enabled); +} + +void PasswordWidget::selectAll() +{ + m_ui->passwordEdit->selectAll(); +} + +void PasswordWidget::setReadOnly(bool state) +{ + m_ui->passwordEdit->setReadOnly(state); +} + +void PasswordWidget::setRepeatPartner(PasswordWidget* repeatPartner) +{ + m_repeatPasswordWidget = repeatPartner; + m_repeatPasswordWidget->setParentPasswordEdit(this); + + connect(m_ui->passwordEdit, SIGNAL(textChanged(QString)), m_repeatPasswordWidget, SLOT(updateRepeatStatus())); +} + +void PasswordWidget::setParentPasswordEdit(PasswordWidget* parent) +{ + m_parentPasswordWidget = parent; + // Hide actions + m_toggleVisibleAction->setVisible(false); + m_passwordGeneratorAction->setVisible(false); + connect(m_ui->passwordEdit, SIGNAL(textChanged(QString)), this, SLOT(updateRepeatStatus())); +} + +void PasswordWidget::enablePasswordGenerator() +{ + if (!m_passwordGeneratorAction->isVisible()) { + m_passwordGeneratorAction->setVisible(true); + connect(m_passwordGeneratorAction, &QAction::triggered, this, &PasswordWidget::popupPasswordGenerator); + } +} + +void PasswordWidget::setShowPassword(bool show) +{ + setEchoMode(show ? QLineEdit::Normal : QLineEdit::Password); + m_toggleVisibleAction->setIcon(icons()->onOffIcon("password-show", show)); + m_toggleVisibleAction->setChecked(show); + + if (m_repeatPasswordWidget) { + m_repeatPasswordWidget->setEchoMode(show ? QLineEdit::Normal : QLineEdit::Password); + } +} + +bool PasswordWidget::isPasswordVisible() const +{ + return m_ui->passwordEdit->echoMode() == QLineEdit::Normal; +} + +void PasswordWidget::popupPasswordGenerator() +{ + auto generator = PasswordGeneratorWidget::popupGenerator(this); + generator->setPasswordVisible(isPasswordVisible()); + generator->setPasswordLength(text().length()); + + connect(generator, SIGNAL(appliedPassword(QString)), SLOT(setText(QString))); + if (m_repeatPasswordWidget) { + connect(generator, SIGNAL(appliedPassword(QString)), m_repeatPasswordWidget, SLOT(setText(QString))); + } +} + +void PasswordWidget::updateRepeatStatus() +{ + static const auto stylesheetTemplate = QStringLiteral("QLineEdit { background: %1; }"); + if (!m_parentPasswordWidget) { + return; + } + + const auto otherPassword = m_parentPasswordWidget->text(); + const auto password = text(); + if (otherPassword != password) { + bool isCorrect = false; + StateColorPalette statePalette; + QColor color = statePalette.color(StateColorPalette::ColorRole::Error); + if (!password.isEmpty() && otherPassword.startsWith(password)) { + color = statePalette.color(StateColorPalette::ColorRole::Incomplete); + isCorrect = true; + } + setStyleSheet(stylesheetTemplate.arg(color.name())); + m_correctAction->setVisible(isCorrect); + m_errorAction->setVisible(!isCorrect); + } else { + m_correctAction->setVisible(false); + m_errorAction->setVisible(false); + setStyleSheet(""); + } +} + +bool PasswordWidget::eventFilter(QObject* watched, QEvent* event) +{ + if (watched == m_ui->passwordEdit) { + auto type = event->type(); + if (isVisible() && (type == QEvent::KeyPress || type == QEvent::KeyRelease || type == QEvent::FocusIn)) { + checkCapslockState(); + } + if (type == QEvent::FocusIn || type == QEvent::FocusOut) { + osUtils->setUserInputProtection(type == QEvent::FocusIn); + } + } + // Continue with normal operations + return false; +} + +void PasswordWidget::checkCapslockState() +{ + if (m_parentPasswordWidget) { + return; + } + + bool newCapslockState = osUtils->isCapslockEnabled(); + if (newCapslockState != m_capslockState) { + m_capslockState = newCapslockState; + m_capslockAction->setVisible(newCapslockState); + + // Force repaint to avoid rendering glitches of QLineEdit contents + repaint(); + + if (newCapslockState) { + QTimer::singleShot( + 150, [this] { QToolTip::showText(mapToGlobal(rect().bottomLeft()), m_capslockAction->text()); }); + } else if (QToolTip::isVisible()) { + QToolTip::hideText(); + } + } +} + +void PasswordWidget::updatePasswordStrength(const QString& password) +{ + if (password.isEmpty()) { + m_ui->qualityProgressBar->setValue(0); + m_ui->qualityProgressBar->setToolTip((tr(""))); + return; + } + + PasswordHealth health(password); + + m_ui->qualityProgressBar->setValue(std::min(int(health.entropy()), m_ui->qualityProgressBar->maximum())); + + QString style = m_ui->qualityProgressBar->styleSheet(); + QRegularExpression re("(QProgressBar::chunk\\s*\\{.*?background-color:)[^;]+;", + QRegularExpression::CaseInsensitiveOption | QRegularExpression::DotMatchesEverythingOption); + style.replace(re, "\\1 %1;"); + + StateColorPalette qualityPalette; + + switch (health.quality()) { + case PasswordHealth::Quality::Bad: + case PasswordHealth::Quality::Poor: + m_ui->qualityProgressBar->setStyleSheet( + style.arg(qualityPalette.color(StateColorPalette::HealthCritical).name())); + + m_ui->qualityProgressBar->setToolTip(tr("Quality: %1").arg(tr("Poor", "Password quality"))); + + break; + + case PasswordHealth::Quality::Weak: + m_ui->qualityProgressBar->setStyleSheet(style.arg(qualityPalette.color(StateColorPalette::HealthBad).name())); + + m_ui->qualityProgressBar->setToolTip(tr("Quality: %1").arg(tr("Weak", "Password quality"))); + + break; + case PasswordHealth::Quality::Good: + m_ui->qualityProgressBar->setStyleSheet(style.arg(qualityPalette.color(StateColorPalette::HealthOk).name())); + + m_ui->qualityProgressBar->setToolTip(tr("Quality: %1").arg(tr("Good", "Password quality"))); + + break; + case PasswordHealth::Quality::Excellent: + + m_ui->qualityProgressBar->setStyleSheet( + style.arg(qualityPalette.color(StateColorPalette::HealthExcellent).name())); + + m_ui->qualityProgressBar->setToolTip(tr("Quality: %1").arg(tr("Excellent", "Password quality"))); + + break; + } +} diff --git a/src/gui/PasswordEdit.h b/src/gui/PasswordWidget.h similarity index 55% rename from src/gui/PasswordEdit.h rename to src/gui/PasswordWidget.h index 559394bd0..6049d2908 100644 --- a/src/gui/PasswordEdit.h +++ b/src/gui/PasswordWidget.h @@ -16,50 +16,69 @@ * along with this program. If not, see . */ -#ifndef KEEPASSX_PASSWORDEDIT_H -#define KEEPASSX_PASSWORDEDIT_H +#ifndef KEEPASSX_PASSWORDWIDGET_H +#define KEEPASSX_PASSWORDWIDGET_H #include #include #include +#include -class QDialog; +namespace Ui +{ + class PasswordWidget; +} -class PasswordEdit : public QLineEdit +class PasswordWidget : public QWidget { Q_OBJECT + Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged USER true) public: - explicit PasswordEdit(QWidget* parent = nullptr); + explicit PasswordWidget(QWidget* parent = nullptr); + ~PasswordWidget() override; void enablePasswordGenerator(); - void setRepeatPartner(PasswordEdit* repeatEdit); + void setRepeatPartner(PasswordWidget* repeatPartner); + void setQualityVisible(bool state); + bool isPasswordVisible() const; + QString text(); -public slots: - void setShowPassword(bool show); - void updateRepeatStatus(); - -protected: - bool event(QEvent* event) override; + bool eventFilter(QObject* watched, QEvent* event) override; signals: - void capslockToggled(bool capslockOn); + void textChanged(QString text); + +public slots: + void setText(const QString& text); + void setShowPassword(bool show); + + void clear(); + void selectAll(); + void setReadOnly(bool state); + void setEchoMode(QLineEdit::EchoMode mode); + void setClearButtonEnabled(bool enabled); private slots: - void autocompletePassword(const QString& password); void popupPasswordGenerator(); - void setParentPasswordEdit(PasswordEdit* parent); - void checkCapslockState(); + void updateRepeatStatus(); + void updatePasswordStrength(const QString& password); private: + void checkCapslockState(); + void setParentPasswordEdit(PasswordWidget* parent); + + const QScopedPointer m_ui; + QPointer m_errorAction; QPointer m_correctAction; QPointer m_toggleVisibleAction; QPointer m_passwordGeneratorAction; QPointer m_capslockAction; - QPointer m_repeatPasswordEdit; - QPointer m_parentPasswordEdit; + QPointer m_repeatPasswordWidget; + QPointer m_parentPasswordWidget; + bool m_capslockState = false; }; -#endif // KEEPASSX_PASSWORDEDIT_H +#endif // KEEPASSX_PASSWORDWIDGET_H diff --git a/src/gui/PasswordWidget.ui b/src/gui/PasswordWidget.ui new file mode 100644 index 000000000..97fe71e08 --- /dev/null +++ b/src/gui/PasswordWidget.ui @@ -0,0 +1,70 @@ + + + PasswordWidget + + + + 0 + 0 + 471 + 25 + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Toggle password visibility using Control + H. Open the password generator using Control + G. + + + + + + + + 16777215 + 4 + + + + QProgressBar { + border: none; + background-color: transparent; + } + QProgressBar::chunk { + background-color: #c0392b; + border-radius: 1px; + } + + + + 24 + + + false + + + + + + + passwordEdit + + + + diff --git a/src/gui/SearchHelpWidget.ui b/src/gui/SearchHelpWidget.ui index bd8731eb9..d9778fd22 100644 --- a/src/gui/SearchHelpWidget.ui +++ b/src/gui/SearchHelpWidget.ui @@ -214,6 +214,13 @@
    + + + + uuid + + + @@ -381,7 +388,7 @@ - + 0 diff --git a/src/gui/SearchWidget.cpp b/src/gui/SearchWidget.cpp index ab79868aa..a504518bc 100644 --- a/src/gui/SearchWidget.cpp +++ b/src/gui/SearchWidget.cpp @@ -16,11 +16,13 @@ */ #include "SearchWidget.h" +#include "gui/MainWindow.h" #include "ui_SearchHelpWidget.h" #include "ui_SearchWidget.h" #include #include +#include #include #include "core/SignalMultiplexer.h" @@ -43,9 +45,12 @@ SearchWidget::SearchWidget(QWidget* parent) m_searchTimer->setSingleShot(true); m_clearSearchTimer->setSingleShot(true); + new QShortcut(Qt::CTRL + Qt::Key_J, this, SLOT(toggleHelp()), nullptr, Qt::WidgetWithChildrenShortcut); + connect(m_ui->searchEdit, SIGNAL(textChanged(QString)), SLOT(startSearchTimer())); connect(m_ui->helpIcon, SIGNAL(triggered()), SLOT(toggleHelp())); connect(m_ui->searchIcon, SIGNAL(triggered()), SLOT(showSearchMenu())); + connect(m_ui->saveIcon, &QAction::triggered, this, [this] { emit saveSearch(m_ui->searchEdit->text()); }); connect(m_searchTimer, SIGNAL(timeout()), SLOT(startSearch())); connect(m_clearSearchTimer, SIGNAL(timeout()), SLOT(clearSearch())); connect(this, SIGNAL(escapePressed()), SLOT(clearSearch())); @@ -70,28 +75,41 @@ SearchWidget::SearchWidget(QWidget* parent) m_ui->helpIcon->setIcon(icons()->icon("system-help")); m_ui->searchEdit->addAction(m_ui->helpIcon, QLineEdit::TrailingPosition); + m_ui->saveIcon->setIcon(icons()->icon("document-save")); + m_ui->searchEdit->addAction(m_ui->saveIcon, QLineEdit::TrailingPosition); + m_ui->saveIcon->setVisible(false); + // Fix initial visibility of actions (bug in Qt) for (QToolButton* toolButton : m_ui->searchEdit->findChildren()) { toolButton->setVisible(toolButton->defaultAction()->isVisible()); } } -SearchWidget::~SearchWidget() -{ -} +SearchWidget::~SearchWidget() = default; bool SearchWidget::eventFilter(QObject* obj, QEvent* event) { if (event->type() == QEvent::KeyPress) { - QKeyEvent* keyEvent = static_cast(event); + auto keyEvent = static_cast(event); if (keyEvent->key() == Qt::Key_Escape) { emit escapePressed(); return true; } else if (keyEvent->matches(QKeySequence::Copy)) { - // If Control+C is pressed in the search edit when no text - // is selected, copy the password of the current entry. + // If the system Copy shortcut (typically Ctrl+C or Cmd+C) is pressed + // in the search edit when no text is selected, route the event to the + // main window. With the default shortcut configuration, this will copy + // the password of the current entry to the clipboard. if (!m_ui->searchEdit->hasSelectedText()) { - emit copyPressed(); + // Prevent infinite recursion, in case the main window ends up + // sending this event back to us. This hasn't actually been observed + // in practice and is just a precaution. + static bool sendingCopyShortcutEvent = false; + if (sendingCopyShortcutEvent) { + return true; + } + sendingCopyShortcutEvent = true; + QCoreApplication::sendEvent(getMainWindow(), event); + sendingCopyShortcutEvent = false; return true; } } else if (keyEvent->matches(QKeySequence::MoveToNextLine)) { @@ -126,9 +144,9 @@ void SearchWidget::connectSignals(SignalMultiplexer& mx) { // Connects basically only to the current DatabaseWidget, but allows to switch between instances! mx.connect(this, SIGNAL(search(QString)), SLOT(search(QString))); + mx.connect(this, SIGNAL(saveSearch(QString)), SLOT(saveSearch(QString))); mx.connect(this, SIGNAL(caseSensitiveChanged(bool)), SLOT(setSearchCaseSensitive(bool))); mx.connect(this, SIGNAL(limitGroupChanged(bool)), SLOT(setSearchLimitGroup(bool))); - mx.connect(this, SIGNAL(copyPressed()), SLOT(copyPassword())); mx.connect(this, SIGNAL(downPressed()), SLOT(focusOnEntries())); mx.connect(SIGNAL(requestSearch(QString)), m_ui->searchEdit, SLOT(setText(QString))); mx.connect(SIGNAL(clearSearch()), this, SLOT(clearSearch())); @@ -165,6 +183,7 @@ void SearchWidget::startSearch() m_searchTimer->stop(); } + m_ui->saveIcon->setVisible(true); search(m_ui->searchEdit->text()); } @@ -208,6 +227,7 @@ void SearchWidget::focusSearch() void SearchWidget::clearSearch() { m_ui->searchEdit->clear(); + m_ui->saveIcon->setVisible(false); emit searchCanceled(); } diff --git a/src/gui/SearchWidget.h b/src/gui/SearchWidget.h index 820e9fea8..8d2c63394 100644 --- a/src/gui/SearchWidget.h +++ b/src/gui/SearchWidget.h @@ -57,10 +57,10 @@ signals: void caseSensitiveChanged(bool state); void limitGroupChanged(bool state); void escapePressed(); - void copyPressed(); void downPressed(); void enterPressed(); void lostFocus(); + void saveSearch(const QString& text); public slots: void databaseChanged(DatabaseWidget* dbWidget = nullptr); diff --git a/src/gui/SearchWidget.ui b/src/gui/SearchWidget.ui index c924b4076..ab4ef1302 100644 --- a/src/gui/SearchWidget.ui +++ b/src/gui/SearchWidget.ui @@ -56,6 +56,11 @@ Search Help + + + Save Search + + searchEdit diff --git a/src/gui/SettingsWidget.cpp b/src/gui/SettingsWidget.cpp new file mode 100644 index 000000000..fac3362c6 --- /dev/null +++ b/src/gui/SettingsWidget.cpp @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "SettingsWidget.h" + +SettingsWidget::SettingsWidget(QWidget* parent) + : QWidget(parent) +{ +} + +void SettingsWidget::discard() +{ +} diff --git a/src/gui/settings/SettingsWidget.h b/src/gui/SettingsWidget.h similarity index 79% rename from src/gui/settings/SettingsWidget.h rename to src/gui/SettingsWidget.h index 8c55c5221..cdbcf9cbc 100644 --- a/src/gui/settings/SettingsWidget.h +++ b/src/gui/SettingsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -31,15 +31,7 @@ class SettingsWidget : public QWidget public: explicit SettingsWidget(QWidget* parent = nullptr); - Q_DISABLE_COPY(SettingsWidget); - ~SettingsWidget() override; - - /** - * @return true if widget has an advanced mode - */ - virtual bool hasAdvancedMode() const = 0; - virtual void setAdvancedMode(bool advanced); - virtual bool advancedMode() const; + ~SettingsWidget() override = default; public slots: /** @@ -57,19 +49,20 @@ public slots: * * @return true on success, false on failure */ - virtual bool save() = 0; + virtual bool saveSettings() = 0; /** * Discard settings. */ - virtual void discard(){}; + virtual void discard(); signals: void editFinished(bool saved); - void advancedModeChanged(bool advanced); private: bool m_advancedMode = false; + + Q_DISABLE_COPY(SettingsWidget); }; #endif // KEEPASSXC_SETTINGSWIDGET_H diff --git a/src/gui/ShortcutSettingsPage.cpp b/src/gui/ShortcutSettingsPage.cpp new file mode 100644 index 000000000..ffc6d32e8 --- /dev/null +++ b/src/gui/ShortcutSettingsPage.cpp @@ -0,0 +1,280 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "ShortcutSettingsPage.h" + +#include "core/Config.h" +#include "gui/ActionCollection.h" +#include "gui/Icons.h" +#include "gui/MessageBox.h" +#include "gui/widgets/ShortcutWidget.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +class KeySequenceDialog final : public QDialog +{ +public: + explicit KeySequenceDialog(QWidget* parent = nullptr) + : QDialog(parent) + , m_keySeqEdit(new ShortcutWidget(this)) + , m_btnBox(new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel + | QDialogButtonBox::RestoreDefaults, + this)) + { + auto* l = new QVBoxLayout(this); + connect(m_btnBox, &QDialogButtonBox::accepted, this, &QDialog::accept); + connect(m_btnBox, &QDialogButtonBox::rejected, this, &QDialog::reject); + connect(m_btnBox, &QDialogButtonBox::clicked, this, &KeySequenceDialog::restoreDefault); + + auto hLayout = new QHBoxLayout(); + l->addLayout(hLayout); + hLayout->addWidget(new QLabel(QObject::tr("Enter Shortcut"))); + hLayout->addWidget(m_keySeqEdit); + + l->addStretch(); + l->addWidget(m_btnBox); + + setFocusProxy(m_keySeqEdit); + } + + QKeySequence keySequence() const + { + return m_keySeqEdit->sequence(); + } + + bool shouldRestoreDefault() const + { + return m_restoreDefault; + } + +private: + void restoreDefault(QAbstractButton* btn) + { + if (m_btnBox->standardButton(btn) == QDialogButtonBox::RestoreDefaults) { + m_restoreDefault = true; + reject(); + } + } + + bool m_restoreDefault = false; + ShortcutWidget* const m_keySeqEdit; + QDialogButtonBox* const m_btnBox; +}; + +class ShortcutSettingsWidget final : public QWidget +{ +public: + explicit ShortcutSettingsWidget(QWidget* parent = nullptr) + : QWidget(parent) + , m_tableView(new QTableView(this)) + , m_filterLineEdit(new QLineEdit(this)) + , m_resetShortcutsButton(new QPushButton(QObject::tr("Reset Shortcuts"), this)) + { + auto h = new QHBoxLayout(); + h->addWidget(m_filterLineEdit); + h->addWidget(m_resetShortcutsButton); + h->setStretch(0, 1); + + auto l = new QVBoxLayout(this); + l->addWidget(new QLabel(QObject::tr("Double click an action to change its shortcut"))); + l->addLayout(h); + l->addWidget(m_tableView); + + m_model.setColumnCount(2); + m_model.setHorizontalHeaderLabels({QObject::tr("Action"), QObject::tr("Shortcuts")}); + + m_proxy.setFilterKeyColumn(-1); + m_proxy.setFilterCaseSensitivity(Qt::CaseInsensitive); + m_proxy.setSourceModel(&m_model); + + m_filterLineEdit->setPlaceholderText(QObject::tr("Filter...")); + connect(m_filterLineEdit, &QLineEdit::textChanged, &m_proxy, &QSortFilterProxyModel::setFilterFixedString); + + connect(m_resetShortcutsButton, &QPushButton::clicked, this, [this]() { + auto ac = ActionCollection::instance(); + for (auto action : ac->actions()) { + action->setShortcut(ac->defaultShortcut(action)); + } + loadSettings(); + }); + + m_tableView->setModel(&m_proxy); + m_tableView->setSortingEnabled(true); + m_tableView->sortByColumn(0, Qt::AscendingOrder); + m_tableView->horizontalHeader()->setSectionResizeMode(0, QHeaderView::ResizeToContents); + m_tableView->horizontalHeader()->setSectionResizeMode(1, QHeaderView::Stretch); + m_tableView->verticalHeader()->hide(); + m_tableView->setEditTriggers(QAbstractItemView::NoEditTriggers); + m_tableView->setSelectionMode(QAbstractItemView::SingleSelection); + m_tableView->setSelectionBehavior(QAbstractItemView::SelectRows); + + connect(m_tableView, &QTableView::doubleClicked, this, &ShortcutSettingsWidget::onDoubleClicked); + } + + void loadSettings() + { + m_changedActions.clear(); + m_filterLineEdit->clear(); + m_model.setRowCount(0); + const auto& actions = ActionCollection::instance()->actions(); + for (auto a : actions) { + auto name = a->toolTip().isEmpty() ? acceleratorsStrippedText(a->text()) : a->toolTip(); + auto col1 = new QStandardItem(name); + col1->setData(QVariant::fromValue(a), Qt::UserRole); + auto col2 = new QStandardItem(a->shortcut().toString()); + m_model.appendRow({col1, col2}); + } + } + + void saveSettings() + { + if (m_changedActions.count()) { + for (const auto& action : m_changedActions.keys()) { + action->setShortcut(m_changedActions.value(action)); + } + ActionCollection::instance()->saveShortcuts(); + } + m_changedActions.clear(); + m_filterLineEdit->clear(); + } + +private: + static QString acceleratorsStrippedText(QString text) + { + for (int i = 0; i < text.size(); ++i) { + if (text.at(i) == QLatin1Char('&') && i + 1 < text.size() && text.at(i + 1) != QLatin1Char('&')) { + text.remove(i, 1); + } + } + return text; + } + + void onDoubleClicked(QModelIndex index) + { + if (index.column() != 0) { + index = index.sibling(index.row(), 0); + } + index = m_proxy.mapToSource(index); + auto action = index.data(Qt::UserRole).value(); + + KeySequenceDialog dialog(this); + int ret = dialog.exec(); + + QKeySequence change; + if (ret == QDialog::Accepted) { + change = dialog.keySequence(); + } else if (dialog.shouldRestoreDefault()) { + change = ActionCollection::instance()->defaultShortcut(action); + } else { + // Rejected + return; + } + + auto conflict = ActionCollection::instance()->isConflictingShortcut(action, change); + bool hasConflict = false; + if (conflict) { + // we conflicted with an action inside action collection + // check if the conflicted action is updated here + if (!m_changedActions.contains(conflict)) { + hasConflict = true; + } else { + if (m_changedActions.value(conflict) == change) { + hasConflict = true; + } + } + } else if (!change.isEmpty()) { + // we did not conflict with any shortcut inside action collection + // check if we conflict with any locally modified action + for (auto chAction : m_changedActions.keys()) { + if (m_changedActions.value(chAction) == change) { + hasConflict = true; + conflict = chAction; + break; + } + } + } + + if (hasConflict) { + auto conflictName = + conflict->toolTip().isEmpty() ? acceleratorsStrippedText(conflict->text()) : conflict->toolTip(); + auto conflictSeq = change.toString(); + + auto ans = MessageBox::question( + this, + QObject::tr("Shortcut Conflict"), + QObject::tr("Shortcut %1 conflicts with '%2'. Overwrite shortcut?").arg(conflictSeq, conflictName), + MessageBox::Overwrite | MessageBox::Discard, + MessageBox::Discard); + if (ans == MessageBox::Discard) { + // Bail out before making any changes + return; + } + + // Reset the conflict shortcut + m_changedActions[conflict] = {}; + for (auto item : m_model.findItems(conflictSeq, Qt::MatchExactly, 1)) { + item->setText(""); + } + } + + m_changedActions[action] = change; + auto item = m_model.itemFromIndex(index.sibling(index.row(), 1)); + item->setText(change.toString()); + } + + QTableView* m_tableView; + QLineEdit* m_filterLineEdit; + QPushButton* m_resetShortcutsButton; + QStandardItemModel m_model; + QSortFilterProxyModel m_proxy; + QHash m_changedActions; +}; + +QString ShortcutSettingsPage::name() +{ + return QObject::tr("Shortcuts"); +} + +QIcon ShortcutSettingsPage::icon() +{ + return icons()->icon("auto-type"); +} + +QWidget* ShortcutSettingsPage::createWidget() +{ + return new ShortcutSettingsWidget(); +} + +void ShortcutSettingsPage::loadSettings(QWidget* widget) +{ + static_cast(widget)->loadSettings(); +} + +void ShortcutSettingsPage::saveSettings(QWidget* widget) +{ + static_cast(widget)->saveSettings(); +} diff --git a/src/fdosecrets/DatabaseSettingsPageFdoSecrets.h b/src/gui/ShortcutSettingsPage.h similarity index 54% rename from src/fdosecrets/DatabaseSettingsPageFdoSecrets.h rename to src/gui/ShortcutSettingsPage.h index c54f5a276..c5ce5fa38 100644 --- a/src/fdosecrets/DatabaseSettingsPageFdoSecrets.h +++ b/src/gui/ShortcutSettingsPage.h @@ -1,10 +1,10 @@ /* - * Copyright (C) 2019 Aetf + * Copyright (C) 2024 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. + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -15,22 +15,22 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_DATABASESETTINGSPAGEFDOSECRETS_H -#define KEEPASSXC_DATABASESETTINGSPAGEFDOSECRETS_H +#ifndef KEEPASSXC_SHORTCUT_SETTINGSPAGE_H +#define KEEPASSXC_SHORTCUT_SETTINGSPAGE_H -#include "gui/dbsettings/DatabaseSettingsDialog.h" +#include "gui/ApplicationSettingsWidget.h" -class DatabaseSettingsPageFdoSecrets : public IDatabaseSettingsPage +class ShortcutSettingsPage : public ISettingsPage { - Q_DISABLE_COPY(DatabaseSettingsPageFdoSecrets) public: - DatabaseSettingsPageFdoSecrets() = default; + explicit ShortcutSettingsPage() = default; + ~ShortcutSettingsPage() override = default; QString name() override; QIcon icon() override; QWidget* createWidget() override; - void loadSettings(QWidget* widget, QSharedPointer db) override; + void loadSettings(QWidget* widget) override; void saveSettings(QWidget* widget) override; }; -#endif // KEEPASSXC_DATABASESETTINGSPAGEFDOSECRETS_H +#endif // KEEPASSXC_BROWSERSETTINGSPAGE_H diff --git a/src/gui/SortFilterHideProxyModel.cpp b/src/gui/SortFilterHideProxyModel.cpp index 0193d9594..73a856bbb 100644 --- a/src/gui/SortFilterHideProxyModel.cpp +++ b/src/gui/SortFilterHideProxyModel.cpp @@ -20,6 +20,7 @@ SortFilterHideProxyModel::SortFilterHideProxyModel(QObject* parent) : QSortFilterProxyModel(parent) { + m_collator.setNumericMode(true); } Qt::DropActions SortFilterHideProxyModel::supportedDragActions() const @@ -37,7 +38,18 @@ void SortFilterHideProxyModel::hideColumn(int column, bool hide) bool SortFilterHideProxyModel::filterAcceptsColumn(int sourceColumn, const QModelIndex& sourceParent) const { - Q_UNUSED(sourceParent); + Q_UNUSED(sourceParent) return sourceColumn >= m_hiddenColumns.size() || !m_hiddenColumns.at(sourceColumn); } + +bool SortFilterHideProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const +{ + auto leftData = sourceModel()->data(left, sortRole()); + auto rightData = sourceModel()->data(right, sortRole()); + if (leftData.type() == QVariant::String) { + return m_collator.compare(leftData.toString(), rightData.toString()) < 0; + } + + return QSortFilterProxyModel::lessThan(left, right); +} diff --git a/src/gui/SortFilterHideProxyModel.h b/src/gui/SortFilterHideProxyModel.h index 58d9ff703..742d8a3fb 100644 --- a/src/gui/SortFilterHideProxyModel.h +++ b/src/gui/SortFilterHideProxyModel.h @@ -19,6 +19,7 @@ #define KEEPASSX_SORTFILTERHIDEPROXYMODEL_H #include +#include #include class SortFilterHideProxyModel : public QSortFilterProxyModel @@ -32,9 +33,11 @@ public: protected: bool filterAcceptsColumn(int sourceColumn, const QModelIndex& sourceParent) const override; + bool lessThan(const QModelIndex& left, const QModelIndex& right) const override; private: QBitArray m_hiddenColumns; + QCollator m_collator; }; #endif // KEEPASSX_SORTFILTERHIDEPROXYMODEL_H diff --git a/src/gui/SquareSvgWidget.cpp b/src/gui/SquareSvgWidget.cpp index 5a907e95b..b39cee979 100644 --- a/src/gui/SquareSvgWidget.cpp +++ b/src/gui/SquareSvgWidget.cpp @@ -16,6 +16,14 @@ */ #include "SquareSvgWidget.h" +#include + +SquareSvgWidget::SquareSvgWidget(QWidget* parent) + : QSvgWidget(parent) +{ + Q_ASSERT(parent); + setObjectName("squareSvgWidget"); +} bool SquareSvgWidget::hasHeightForWidth() const { @@ -26,3 +34,24 @@ int SquareSvgWidget::heightForWidth(int width) const { return width; } + +// The overridden logic allows to keep the SVG image as square and centered by width and height. +void SquareSvgWidget::resizeEvent(QResizeEvent*) +{ + QWidget* pWidget = parentWidget(); + Q_ASSERT(pWidget); + if (pWidget) { + auto containerRect = pWidget->contentsRect(); + + auto containerWidth = containerRect.width(); + auto containerHeight = containerRect.height(); + + auto squareSize = qMin(containerWidth, containerHeight); + auto halfSquareSize = squareSize >> 1; + + auto startX = (containerWidth >> 1) - halfSquareSize; + auto startY = (containerHeight >> 1) - halfSquareSize; + + setGeometry(startX, startY, squareSize, squareSize); + } +} diff --git a/src/gui/SquareSvgWidget.h b/src/gui/SquareSvgWidget.h index c59548b74..479bd964d 100644 --- a/src/gui/SquareSvgWidget.h +++ b/src/gui/SquareSvgWidget.h @@ -23,11 +23,13 @@ class SquareSvgWidget : public QSvgWidget { public: - SquareSvgWidget() = default; + explicit SquareSvgWidget(QWidget* parent); ~SquareSvgWidget() override = default; bool hasHeightForWidth() const override; int heightForWidth(int width) const override; + + void resizeEvent(QResizeEvent* event) override; }; #endif // KEEPASSX_SquareSvgWidget_H diff --git a/src/gui/TotpDialog.cpp b/src/gui/TotpDialog.cpp index e856f5d6a..40888bd99 100644 --- a/src/gui/TotpDialog.cpp +++ b/src/gui/TotpDialog.cpp @@ -20,9 +20,9 @@ #include "ui_TotpDialog.h" #include "core/Clock.h" +#include "core/Totp.h" #include "gui/Clipboard.h" #include "gui/MainWindow.h" -#include "totp/totp.h" #include #include @@ -53,9 +53,7 @@ TotpDialog::TotpDialog(QWidget* parent, Entry* entry) connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(copyToClipboard())); } -TotpDialog::~TotpDialog() -{ -} +TotpDialog::~TotpDialog() = default; void TotpDialog::copyToClipboard() { diff --git a/src/gui/TotpDialog.h b/src/gui/TotpDialog.h index 1782c2de8..cc30a081e 100644 --- a/src/gui/TotpDialog.h +++ b/src/gui/TotpDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -19,6 +19,8 @@ #ifndef KEEPASSX_TOTPDIALOG_H #define KEEPASSX_TOTPDIALOG_H +#include + #include "core/Database.h" #include "gui/DatabaseWidget.h" diff --git a/src/gui/TotpExportSettingsDialog.cpp b/src/gui/TotpExportSettingsDialog.cpp index 3699dd20f..66d6fb1d2 100644 --- a/src/gui/TotpExportSettingsDialog.cpp +++ b/src/gui/TotpExportSettingsDialog.cpp @@ -17,37 +17,42 @@ #include "TotpExportSettingsDialog.h" +#include "core/Totp.h" #include "gui/Clipboard.h" #include "gui/MainWindow.h" #include "gui/SquareSvgWidget.h" #include "qrcode/QrCode.h" -#include "totp/totp.h" #include #include +#include #include #include #include #include +#include TotpExportSettingsDialog::TotpExportSettingsDialog(DatabaseWidget* parent, Entry* entry) : QDialog(parent) , m_timer(new QTimer(this)) , m_verticalLayout(new QVBoxLayout()) - , m_totpSvgWidget(new SquareSvgWidget()) + , m_totpSvgContainerWidget(new QStackedWidget()) + , m_totpSvgWidget(new SquareSvgWidget(m_totpSvgContainerWidget)) , m_countDown(new QLabel()) , m_warningLabel(new QLabel()) , m_buttonBox(new QDialogButtonBox(QDialogButtonBox::Close | QDialogButtonBox::Ok)) { + setObjectName("entryQrCodeWidget"); + m_totpSvgContainerWidget->addWidget(m_totpSvgWidget); + m_verticalLayout->addWidget(m_warningLabel); m_verticalLayout->addItem(new QSpacerItem(0, 0)); - - m_verticalLayout->addStretch(0); - m_verticalLayout->addWidget(m_totpSvgWidget); - m_verticalLayout->addStretch(0); + m_verticalLayout->addWidget(m_totpSvgContainerWidget); m_verticalLayout->addWidget(m_countDown); m_verticalLayout->addWidget(m_buttonBox); + m_verticalLayout->setAlignment(m_buttonBox, Qt::AlignBottom); + setLayout(m_verticalLayout); setAttribute(Qt::WA_DeleteOnClose); @@ -66,7 +71,7 @@ TotpExportSettingsDialog::TotpExportSettingsDialog(DatabaseWidget* parent, Entry m_timer->start(1000); const auto totpSettings = entry->totpSettings(); - if (totpSettings->custom || !totpSettings->encoder.shortName.isEmpty()) { + if (Totp::hasCustomSettings(totpSettings) || !totpSettings->encoder.shortName.isEmpty()) { m_warningLabel->setWordWrap(true); m_warningLabel->setMargin(5); m_warningLabel->setText(tr("NOTE: These TOTP settings are custom and may not work with other authenticators.", @@ -82,7 +87,7 @@ TotpExportSettingsDialog::TotpExportSettingsDialog(DatabaseWidget* parent, Entry QBuffer buffer; qrc.writeSvg(&buffer, logicalDpiX()); m_totpSvgWidget->load(buffer.data()); - const int minsize = static_cast(logicalDpiX() * 2.5); + const auto minsize = static_cast(logicalDpiX() * 2.5); m_totpSvgWidget->setMinimumSize(minsize, minsize); } else { auto errorBox = new QMessageBox(parent); diff --git a/src/gui/TotpExportSettingsDialog.h b/src/gui/TotpExportSettingsDialog.h index ed58dd073..c36836f1a 100644 --- a/src/gui/TotpExportSettingsDialog.h +++ b/src/gui/TotpExportSettingsDialog.h @@ -18,6 +18,8 @@ #ifndef KEEPASSX_TotpExportSettingsDialog_H #define KEEPASSX_TotpExportSettingsDialog_H +#include + #include "core/Database.h" #include "gui/DatabaseWidget.h" @@ -32,7 +34,7 @@ class TotpExportSettingsDialog : public QDialog public: explicit TotpExportSettingsDialog(DatabaseWidget* parent = nullptr, Entry* entry = nullptr); - ~TotpExportSettingsDialog(); + ~TotpExportSettingsDialog() override; private slots: void copyToClipboard(); @@ -44,6 +46,7 @@ private: QTimer* m_timer; QVBoxLayout* m_verticalLayout; + QStackedWidget* m_totpSvgContainerWidget; SquareSvgWidget* m_totpSvgWidget; QLabel* m_countDown; QLabel* m_warningLabel; diff --git a/src/gui/TotpSetupDialog.cpp b/src/gui/TotpSetupDialog.cpp index 1d403a17c..4dab00370 100644 --- a/src/gui/TotpSetupDialog.cpp +++ b/src/gui/TotpSetupDialog.cpp @@ -19,8 +19,8 @@ #include "ui_TotpSetupDialog.h" #include "core/Base32.h" +#include "core/Totp.h" #include "gui/MessageBox.h" -#include "totp/totp.h" TotpSetupDialog::TotpSetupDialog(QWidget* parent, Entry* entry) : QDialog(parent) @@ -29,6 +29,7 @@ TotpSetupDialog::TotpSetupDialog(QWidget* parent, Entry* entry) { m_ui->setupUi(this); setAttribute(Qt::WA_DeleteOnClose); + setWindowFlag(Qt::WindowContextHelpButtonHint, false); setFixedSize(sizeHint()); connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(close())); @@ -38,9 +39,7 @@ TotpSetupDialog::TotpSetupDialog(QWidget* parent, Entry* entry) init(); } -TotpSetupDialog::~TotpSetupDialog() -{ -} +TotpSetupDialog::~TotpSetupDialog() = default; void TotpSetupDialog::saveSettings() { @@ -120,7 +119,7 @@ void TotpSetupDialog::init() if (settings->encoder.shortName == Totp::STEAM_SHORTNAME) { m_ui->radioSteam->setChecked(true); - } else if (settings->custom) { + } else if (Totp::hasCustomSettings(settings)) { m_ui->radioCustom->setChecked(true); m_ui->digitsSpinBox->setValue(settings->digits); int index = m_ui->algorithmComboBox->findData(settings->algorithm); diff --git a/src/gui/TotpSetupDialog.h b/src/gui/TotpSetupDialog.h index 9781b3954..8b88cb8e0 100644 --- a/src/gui/TotpSetupDialog.h +++ b/src/gui/TotpSetupDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -19,6 +19,8 @@ #ifndef KEEPASSX_SETUPTOTPDIALOG_H #define KEEPASSX_SETUPTOTPDIALOG_H +#include + #include "core/Database.h" #include "gui/DatabaseWidget.h" diff --git a/src/gui/TotpSetupDialog.ui b/src/gui/TotpSetupDialog.ui index 5088d8bbf..ab15b8ea8 100644 --- a/src/gui/TotpSetupDialog.ui +++ b/src/gui/TotpSetupDialog.ui @@ -163,7 +163,7 @@ 1 - 60 + 86400 30 diff --git a/src/gui/URLEdit.cpp b/src/gui/URLEdit.cpp index d249ddd85..fed277f00 100644 --- a/src/gui/URLEdit.cpp +++ b/src/gui/URLEdit.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2014 Felix Geyer - * Copyright (C) 2020 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 @@ -18,8 +18,8 @@ #include "URLEdit.h" -#include "core/Tools.h" #include "gui/Icons.h" +#include "gui/UrlTools.h" #include "gui/styles/StateColorPalette.h" URLEdit::URLEdit(QWidget* parent) @@ -44,7 +44,7 @@ void URLEdit::updateStylesheet() { const QString stylesheetTemplate("QLineEdit { background: %1; }"); - if (!Tools::checkUrlValid(text())) { + if (!urlTools()->isUrlValid(text())) { StateColorPalette statePalette; QColor color = statePalette.color(StateColorPalette::ColorRole::Error); setStyleSheet(stylesheetTemplate.arg(color.name())); diff --git a/src/gui/UpdateCheckDialog.cpp b/src/gui/UpdateCheckDialog.cpp index da3169901..6d7015f73 100644 --- a/src/gui/UpdateCheckDialog.cpp +++ b/src/gui/UpdateCheckDialog.cpp @@ -22,7 +22,7 @@ #include "config-keepassx.h" #include "gui/Icons.h" -#include "updatecheck/UpdateChecker.h" +#include "networking/UpdateChecker.h" UpdateCheckDialog::UpdateCheckDialog(QWidget* parent) : QDialog(parent) diff --git a/src/gui/UrlTools.cpp b/src/gui/UrlTools.cpp new file mode 100644 index 000000000..90c945132 --- /dev/null +++ b/src/gui/UrlTools.cpp @@ -0,0 +1,218 @@ +/* + * Copyright (C) 2025 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 . + */ + +#include "UrlTools.h" +#if defined(WITH_XC_NETWORKING) || defined(WITH_XC_BROWSER) +#include +#include +#include +#endif +#include +#include + +const QString UrlTools::URL_WILDCARD = "1kpxcwc1"; + +Q_GLOBAL_STATIC(UrlTools, s_urlTools) + +UrlTools* UrlTools::instance() +{ + return s_urlTools; +} + +QUrl UrlTools::convertVariantToUrl(const QVariant& var) const +{ + QUrl url; + if (var.canConvert()) { + url = var.toUrl(); + } + return url; +} + +#if defined(WITH_XC_NETWORKING) || defined(WITH_XC_BROWSER) +QUrl UrlTools::getRedirectTarget(QNetworkReply* reply) const +{ + QVariant var = reply->attribute(QNetworkRequest::RedirectionTargetAttribute); + QUrl url = convertVariantToUrl(var); + return url; +} + +/** + * Gets the base domain of URL or hostname. + * + * Returns the base domain, e.g. https://another.example.co.uk -> example.co.uk + * Up-to-date list can be found: https://publicsuffix.org/list/public_suffix_list.dat + */ +QString UrlTools::getBaseDomainFromUrl(const QString& url) const +{ + auto qUrl = QUrl::fromUserInput(url); + + auto host = qUrl.host(); + if (isIpAddress(host)) { + return host; + } + + const auto tld = getTopLevelDomainFromUrl(qUrl.toString()); + if (tld.isEmpty() || tld.length() + 1 >= host.length()) { + return host; + } + + // Remove the top level domain part from the hostname, e.g. https://another.example.co.uk -> https://another.example + host.chop(tld.length() + 1); + // Split the URL and select the last part, e.g. https://another.example -> example + QString baseDomain = host.split('.').last(); + // Append the top level domain back to the URL, e.g. example -> example.co.uk + baseDomain.append(QString(".%1").arg(tld)); + + return baseDomain; +} + +/** + * Gets the top level domain from URL. + * + * Returns the TLD e.g. https://another.example.co.uk -> co.uk + */ +QString UrlTools::getTopLevelDomainFromUrl(const QString& url) const +{ + auto host = QUrl::fromUserInput(url).host(); + if (isIpAddress(host)) { + return host; + } + + const auto numberOfDomainParts = host.split('.').length(); + static const auto dummy = QByteArrayLiteral(""); + + // Only loop the amount of different parts found + for (auto i = 0; i < numberOfDomainParts; ++i) { + // Cut the first part from host + host = host.mid(host.indexOf('.') + 1); + + QNetworkCookie cookie(dummy, dummy); + cookie.setDomain(host); + + // Check if dummy cookie's domain/TLD matches with public suffix list + if (!QNetworkCookieJar{}.setCookiesFromUrl(QList{cookie}, QUrl::fromUserInput(url))) { + return host; + } + } + + return host; +} + +bool UrlTools::isIpAddress(const QString& host) const +{ + // Handle IPv6 host with brackets, e.g [::1] + const auto hostAddress = host.startsWith('[') && host.endsWith(']') ? host.mid(1, host.length() - 2) : host; + QHostAddress address(hostAddress); + return address.protocol() == QAbstractSocket::IPv4Protocol || address.protocol() == QAbstractSocket::IPv6Protocol; +} +#endif + +// Returns true if URLs are identical. Paths with "/" are removed during comparison. +// URLs without scheme reverts to https. +// Special handling is needed because QUrl::matches() with QUrl::StripTrailingSlash does not strip "/" paths. +bool UrlTools::isUrlIdentical(const QString& first, const QString& second) const +{ + auto trimUrl = [](QString url) { + url = url.trimmed(); + if (url.endsWith("/")) { + url.remove(url.length() - 1, 1); + } + + return url; + }; + + if (first.isEmpty() || second.isEmpty()) { + return false; + } + + // Replace URL wildcards for comparison if found + const auto firstUrl = trimUrl(QString(first).replace("*", UrlTools::URL_WILDCARD)); + const auto secondUrl = trimUrl(QString(second).replace("*", UrlTools::URL_WILDCARD)); + if (firstUrl == secondUrl) { + return true; + } + + return QUrl(firstUrl).matches(QUrl(secondUrl), QUrl::StripTrailingSlash); +} + +bool UrlTools::isUrlValid(const QString& urlField, bool looseComparison) const +{ + if (urlField.isEmpty() || urlField.startsWith("cmd://", Qt::CaseInsensitive) + || urlField.startsWith("kdbx://", Qt::CaseInsensitive) || urlField.startsWith("{REF:A", Qt::CaseInsensitive)) { + return true; + } + + auto url = urlField; + + // Loose comparison that allows wildcards and exact URL inside " characters + if (looseComparison) { + // Exact URL + if (url.startsWith("\"") && url.endsWith("\"")) { + // Do not allow exact URL with wildcards, or empty exact URL + if (url.contains("*") || url.length() == 2) { + return false; + } + + // Get the URL inside "" + url.remove(0, 1); + url.remove(url.length() - 1, 1); + } else { + // Do not allow URL with just wildcards, or double wildcards, or no separator (.) + if (url.length() == url.count("*") || url.contains("**") || url.contains("*.*") || !url.contains(".")) { + return false; + } + + url.replace("*", UrlTools::URL_WILDCARD); + } + } + + QUrl qUrl; + if (urlField.contains("://")) { + qUrl = url; + } else { + qUrl = QUrl::fromUserInput(url); + } + + if (qUrl.scheme() != "file" && qUrl.host().isEmpty()) { + return false; + } + +#if defined(WITH_XC_NETWORKING) || defined(WITH_XC_BROWSER) + // Prevent TLD wildcards + if (looseComparison && url.contains(UrlTools::URL_WILDCARD)) { + const auto tld = getTopLevelDomainFromUrl(url); + if (tld.contains(UrlTools::URL_WILDCARD) || qUrl.host() == QString("%1.%2").arg(UrlTools::URL_WILDCARD, tld)) { + return false; + } + } +#endif + + // Check for illegal characters. Adds also the wildcard * to the list + QRegularExpression re("[<>\\^`{|}\\*]"); + auto match = re.match(url); + if (match.hasMatch()) { + return false; + } + + return true; +} + +bool UrlTools::domainHasIllegalCharacters(const QString& domain) const +{ + QRegularExpression re(R"([\s\^#|/:<>\?@\[\]\\])"); + return re.match(domain).hasMatch(); +} diff --git a/src/gui/UrlTools.h b/src/gui/UrlTools.h new file mode 100644 index 000000000..5cadb45d8 --- /dev/null +++ b/src/gui/UrlTools.h @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2025 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 . + */ + +#ifndef KEEPASSXC_URLTOOLS_H +#define KEEPASSXC_URLTOOLS_H + +#include "config-keepassx.h" +#include +#include +#include +#if defined(WITH_XC_NETWORKING) || defined(WITH_XC_BROWSER) +#include +#endif + +class UrlTools : public QObject +{ + Q_OBJECT + +public: + explicit UrlTools() = default; + static UrlTools* instance(); + +#if defined(WITH_XC_NETWORKING) || defined(WITH_XC_BROWSER) + QUrl getRedirectTarget(QNetworkReply* reply) const; + QString getBaseDomainFromUrl(const QString& url) const; + QString getTopLevelDomainFromUrl(const QString& url) const; + bool isIpAddress(const QString& host) const; +#endif + bool isUrlIdentical(const QString& first, const QString& second) const; + bool isUrlValid(const QString& urlField, bool looseComparison = false) const; + bool domainHasIllegalCharacters(const QString& domain) const; + + static const QString URL_WILDCARD; + +private: + QUrl convertVariantToUrl(const QVariant& var) const; + +private: + Q_DISABLE_COPY(UrlTools); +}; + +static inline UrlTools* urlTools() +{ + return UrlTools::instance(); +} + +#endif // KEEPASSXC_URLTOOLS_H diff --git a/src/gui/WelcomeWidget.cpp b/src/gui/WelcomeWidget.cpp index 49563ff73..98b0e360e 100644 --- a/src/gui/WelcomeWidget.cpp +++ b/src/gui/WelcomeWidget.cpp @@ -37,23 +37,25 @@ WelcomeWidget::WelcomeWidget(QWidget* parent) m_ui->welcomeLabel->setFont(welcomeLabelFont); m_ui->iconLabel->setPixmap(icons()->applicationIcon().pixmap(64)); + m_ui->buttonNewDatabase->setIcon(icons()->icon("document-new")); + m_ui->buttonNewDatabase->setStyleSheet("text-align:center;"); + m_ui->buttonOpenDatabase->setIcon(icons()->icon("document-open")); + m_ui->buttonOpenDatabase->setStyleSheet("text-align:center;"); + m_ui->buttonImport->setIcon(icons()->icon("document-import")); + m_ui->buttonImport->setStyleSheet("text-align:center;"); refreshLastDatabases(); connect(m_ui->buttonNewDatabase, SIGNAL(clicked()), SIGNAL(newDatabase())); connect(m_ui->buttonOpenDatabase, SIGNAL(clicked()), SIGNAL(openDatabase())); - connect(m_ui->buttonImportKeePass1, SIGNAL(clicked()), SIGNAL(importKeePass1Database())); - connect(m_ui->buttonImportOpVault, SIGNAL(clicked()), SIGNAL(importOpVaultDatabase())); - connect(m_ui->buttonImportCSV, SIGNAL(clicked()), SIGNAL(importCsv())); + connect(m_ui->buttonImport, SIGNAL(clicked()), SIGNAL(importFile())); connect(m_ui->recentListWidget, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(openDatabaseFromFile(QListWidgetItem*))); } -WelcomeWidget::~WelcomeWidget() -{ -} +WelcomeWidget::~WelcomeWidget() = default; void WelcomeWidget::openDatabaseFromFile(QListWidgetItem* item) { @@ -82,7 +84,7 @@ void WelcomeWidget::refreshLastDatabases() m_ui->recentListWidget->clear(); const QStringList lastDatabases = config()->get(Config::LastDatabases).toStringList(); for (const QString& database : lastDatabases) { - QListWidgetItem* itm = new QListWidgetItem; + auto itm = new QListWidgetItem; itm->setText(database); m_ui->recentListWidget->addItem(itm); } diff --git a/src/gui/WelcomeWidget.h b/src/gui/WelcomeWidget.h index 15f93466c..ed92c7b4b 100644 --- a/src/gui/WelcomeWidget.h +++ b/src/gui/WelcomeWidget.h @@ -32,16 +32,14 @@ class WelcomeWidget : public QWidget public: explicit WelcomeWidget(QWidget* parent = nullptr); - ~WelcomeWidget(); + ~WelcomeWidget() override; void refreshLastDatabases(); signals: void newDatabase(); void openDatabase(); void openDatabaseFile(QString); - void importKeePass1Database(); - void importOpVaultDatabase(); - void importCsv(); + void importFile(); protected: void keyPressEvent(QKeyEvent* event) override; diff --git a/src/gui/WelcomeWidget.ui b/src/gui/WelcomeWidget.ui index 8b72df840..7a753e010 100644 --- a/src/gui/WelcomeWidget.ui +++ b/src/gui/WelcomeWidget.ui @@ -70,6 +70,22 @@
    + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 20 + + + + @@ -103,40 +119,26 @@ - - - - Create new database - - - - - - - Open existing database - - - - + - Import from KeePass 1 + Create Database - + - Import from 1Password + Open Database - + - Import from CSV + Import File @@ -148,12 +150,12 @@ Qt::Vertical - QSizePolicy::Minimum + QSizePolicy::Fixed 0 - 5 + 20 @@ -193,11 +195,7 @@ - buttonNewDatabase - buttonOpenDatabase - buttonImportKeePass1 - buttonImportOpVault - buttonImportCSV + buttonImport recentListWidget diff --git a/src/gui/csvImport/CsvImportWidget.cpp b/src/gui/csvImport/CsvImportWidget.cpp index a3a30e4c3..cbabd3138 100644 --- a/src/gui/csvImport/CsvImportWidget.cpp +++ b/src/gui/csvImport/CsvImportWidget.cpp @@ -1,4 +1,4 @@ -/* +/* * Copyright (C) 2016 Enrico Mariotti * Copyright (C) 2017 KeePassXC Team * @@ -17,43 +17,72 @@ */ #include "CsvImportWidget.h" + #include "ui_CsvImportWidget.h" +#include "core/Clock.h" +#include "core/Database.h" +#include "core/Group.h" +#include "core/Totp.h" +#include "format/CsvParser.h" +#include "format/KeePass2Writer.h" +#include "gui/MessageBox.h" +#include "gui/csvImport/CsvParserModel.h" + #include -#include "core/Clock.h" -#include "format/KeePass2Writer.h" -#include "gui/MessageBox.h" -#include "totp/totp.h" +namespace +{ + // Extract group names from nested path and return the last group created + Group* createGroupStructure(Database* db, const QString& groupPath) + { + auto group = db->rootGroup(); + if (!group || groupPath.isEmpty()) { + return group; + } -// I wanted to make the CSV import GUI future-proof, so if one day you need a new field, -// all you have to do is add a field to m_columnHeader, and the GUI will follow: -// dynamic generation of comboBoxes, labels, placement and so on. Try it for immense fun! + auto nameList = groupPath.split("/", Qt::SkipEmptyParts); + // Skip over first group name if root + if (nameList.first().compare("root", Qt::CaseInsensitive) == 0) { + nameList.removeFirst(); + } + + for (const auto& name : qAsConst(nameList)) { + auto child = group->findChildByName(name); + if (!child) { + auto newGroup = new Group(); + newGroup->setUuid(QUuid::createUuid()); + newGroup->setName(name); + newGroup->setParent(group); + group = newGroup; + } else { + group = child; + } + } + return group; + } +} // namespace CsvImportWidget::CsvImportWidget(QWidget* parent) : QWidget(parent) , m_ui(new Ui::CsvImportWidget()) , m_parserModel(new CsvParserModel(this)) , m_comboModel(new QStringListModel(this)) - , m_columnHeader(QStringList() << QObject::tr("Group") << QObject::tr("Title") << QObject::tr("Username") - << QObject::tr("Password") << QObject::tr("URL") << QObject::tr("Notes") - << QObject::tr("TOTP") << QObject::tr("Icon") << QObject::tr("Last Modified") - << QObject::tr("Created")) - , m_fieldSeparatorList(QStringList() << "," - << ";" - << "-" - << ":" - << "." - << "\t") { m_ui->setupUi(this); m_ui->tableViewFields->setSelectionMode(QAbstractItemView::NoSelection); m_ui->tableViewFields->setFocusPolicy(Qt::NoFocus); - m_ui->messageWidget->setHidden(true); + + m_columnHeader << QObject::tr("Group") << QObject::tr("Title") << QObject::tr("Username") << QObject::tr("Password") + << QObject::tr("URL") << QObject::tr("Tags") << QObject::tr("Notes") << QObject::tr("TOTP") + << QObject::tr("Icon") << QObject::tr("Last Modified") << QObject::tr("Created"); + + m_fieldSeparatorList << "," << ";" << "-" << ":" << "." << "\t"; m_combos << m_ui->groupCombo << m_ui->titleCombo << m_ui->usernameCombo << m_ui->passwordCombo << m_ui->urlCombo - << m_ui->notesCombo << m_ui->totpCombo << m_ui->iconCombo << m_ui->lastModifiedCombo << m_ui->createdCombo; + << m_ui->tagsCombo << m_ui->notesCombo << m_ui->totpCombo << m_ui->iconCombo << m_ui->lastModifiedCombo + << m_ui->createdCombo; for (auto combo : m_combos) { combo->setModel(m_comboModel); @@ -70,15 +99,12 @@ CsvImportWidget::CsvImportWidget(QWidget* parent) connect(m_ui->comboBoxFieldSeparator, SIGNAL(currentIndexChanged(int)), SLOT(parse())); connect(m_ui->checkBoxBackslash, SIGNAL(toggled(bool)), SLOT(parse())); connect(m_ui->checkBoxFieldNames, SIGNAL(toggled(bool)), SLOT(updatePreview())); - - connect(m_ui->buttonBox, SIGNAL(accepted()), this, SLOT(writeDatabase())); - connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject())); } void CsvImportWidget::comboChanged(int index) { // this line is the one that actually updates GUI table - m_parserModel->mapColumns(index, m_combos.indexOf(qobject_cast(sender()))); + m_parserModel->mapColumns(index - 1, m_combos.indexOf(qobject_cast(sender()))); updateTableview(); } @@ -88,141 +114,171 @@ void CsvImportWidget::skippedChanged(int rows) updateTableview(); } -CsvImportWidget::~CsvImportWidget() -{ -} +CsvImportWidget::~CsvImportWidget() = default; void CsvImportWidget::configParser() { - m_parserModel->setBackslashSyntax(m_ui->checkBoxBackslash->isChecked()); - m_parserModel->setComment(m_ui->comboBoxComment->currentText().at(0)); - m_parserModel->setTextQualifier(m_ui->comboBoxTextQualifier->currentText().at(0)); - m_parserModel->setCodec(m_ui->comboBoxCodec->currentText()); - m_parserModel->setFieldSeparator(m_fieldSeparatorList.at(m_ui->comboBoxFieldSeparator->currentIndex()).at(0)); + auto parser = m_parserModel->parser(); + parser->setBackslashSyntax(m_ui->checkBoxBackslash->isChecked()); + parser->setComment(m_ui->comboBoxComment->currentText().at(0)); + parser->setTextQualifier(m_ui->comboBoxTextQualifier->currentText().at(0)); + parser->setCodec(m_ui->comboBoxCodec->currentText()); + parser->setFieldSeparator(m_fieldSeparatorList.at(m_ui->comboBoxFieldSeparator->currentIndex()).at(0)); } void CsvImportWidget::updateTableview() { - m_ui->tableViewFields->resizeRowsToContents(); - m_ui->tableViewFields->resizeColumnsToContents(); + if (!m_buildingPreview) { + m_ui->tableViewFields->resizeRowsToContents(); + m_ui->tableViewFields->resizeColumnsToContents(); - for (int c = 0; c < m_ui->tableViewFields->horizontalHeader()->count(); ++c) { - m_ui->tableViewFields->horizontalHeader()->setSectionResizeMode(c, QHeaderView::Stretch); + for (int c = 0; c < m_ui->tableViewFields->horizontalHeader()->count(); ++c) { + m_ui->tableViewFields->horizontalHeader()->setSectionResizeMode(c, QHeaderView::Stretch); + } } } void CsvImportWidget::updatePreview() { - int minSkip = 0; - if (m_ui->checkBoxFieldNames->isChecked()) { - minSkip = 1; - } + m_buildingPreview = true; + + int minSkip = m_ui->checkBoxFieldNames->isChecked() ? 1 : 0; m_ui->labelSizeRowsCols->setText(m_parserModel->getFileInfo()); m_ui->spinBoxSkip->setRange(minSkip, qMax(minSkip, m_parserModel->rowCount() - 1)); m_ui->spinBoxSkip->setValue(minSkip); - QStringList list(tr("Not Present")); - for (int i = 1; i < m_parserModel->getCsvCols(); ++i) { + // Store the previous column information for comparison later + auto prevColumns = m_comboModel->stringList(); + QList prevComboIndexes; + for (auto combo : m_combos) { + prevComboIndexes << combo->currentIndex(); + } + + QStringList csvColumns(tr("Not Present")); + auto parser = m_parserModel->parser(); + for (int i = 0; i < parser->getCsvCols(); ++i) { if (m_ui->checkBoxFieldNames->isChecked()) { - auto columnName = m_parserModel->getCsvTable().at(0).at(i); + auto columnName = parser->getCsvTable().at(0).at(i); if (columnName.isEmpty()) { - list << QString(tr("Column %1").arg(i)); + csvColumns << QString(tr("Column %1").arg(i)); } else { - list << columnName; + csvColumns << columnName; } } else { - list << QString(tr("Column %1").arg(i)); + csvColumns << QString(tr("Column %1").arg(i)); } } - m_comboModel->setStringList(list); + // Before setting new columns, see if they changed + bool newColumns = prevColumns != csvColumns; + m_comboModel->setStringList(csvColumns); - int j = 1; - for (QComboBox* b : m_combos) { - if (j < m_parserModel->getCsvCols()) { - b->setCurrentIndex(j); - } else { - b->setCurrentIndex(0); + // Try to match named columns to the combo boxes + for (int i = 0; i < m_columnHeader.size(); ++i) { + if (i >= m_combos.size()) { + // This should not happen, it is a programming error otherwise + Q_ASSERT(false); + break; + } + + bool found = false; + for (int j = 0; j < csvColumns.size(); ++j) { + if (m_columnHeader.at(i).compare(csvColumns.at(j), Qt::CaseInsensitive) == 0) { + m_combos.at(i)->setCurrentIndex(j); + found = true; + break; + } + } + // Named column not found, default to "Not Present" or previous index + if (!found) { + auto idx = newColumns ? 0 : prevComboIndexes.at(i); + m_combos.at(i)->setCurrentIndex(idx); } - ++j; } + + m_buildingPreview = false; + updateTableview(); } -void CsvImportWidget::load(const QString& filename, Database* const db) +void CsvImportWidget::load(const QString& filename) { - // QApplication::processEvents(); - m_db = db; + m_filename = filename; m_parserModel->setFilename(filename); - m_ui->labelFilename->setText(filename); - Group* group = m_db->rootGroup(); - group->setUuid(QUuid::createUuid()); - group->setNotes(tr("Imported from CSV file").append("\n").append(tr("Original data: ")) + filename); parse(); } void CsvImportWidget::parse() { - configParser(); + // Hide any previous messages + emit message(""); + QApplication::setOverrideCursor(Qt::WaitCursor); - // QApplication::processEvents(); - bool good = m_parserModel->parse(); + QApplication::processEvents(); + + configParser(); + if (!m_parserModel->parse()) { + emit message(tr("Failed to parse CSV file: %1").arg(formatStatusText())); + } updatePreview(); + QApplication::restoreOverrideCursor(); - if (!good) { - m_ui->messageWidget->showMessage(tr("Error(s) detected in CSV file!").append("\n").append(formatStatusText()), - MessageWidget::Warning); - } else { - m_ui->messageWidget->setHidden(true); - } } -QString CsvImportWidget::formatStatusText() const +QSharedPointer CsvImportWidget::buildDatabase() { - QString text = m_parserModel->getStatus(); - int items = text.count('\n'); - if (items > 2) { - return text.section('\n', 0, 1).append("\n").append(tr("[%n more message(s) skipped]", "", items - 2)); + // Warn if the title column wasn't specified + if (m_combos[1]->currentIndex() == 0) { + auto ans = MessageBox::question( + this, + tr("No Title Selected"), + tr("No title column was selected, entries will be hard to tell apart.\nAre you sure you want to import?"), + MessageBox::Continue | MessageBox::Cancel); + if (ans == MessageBox::Cancel) { + return {}; + } } - if (items == 1) { - text.append(QString("\n")); - } - return text; -} -void CsvImportWidget::writeDatabase() -{ - setRootGroup(); - for (int r = 0; r < m_parserModel->rowCount(); ++r) { - // use validity of second column as a GO/NOGO for all others fields - if (not m_parserModel->data(m_parserModel->index(r, 1)).isValid()) { + auto db = QSharedPointer::create(); + db->rootGroup()->setNotes(tr("Imported from CSV file: %1").arg(m_filename)); + + auto rows = m_parserModel->rowCount() - m_parserModel->skippedRows(); + for (int r = 0; r < rows; ++r) { + auto group = createGroupStructure(db.data(), m_parserModel->data(m_parserModel->index(r, 0)).toString()); + if (!group) { continue; } - Entry* entry = new Entry(); + + // Standard entry fields + auto entry = new Entry(); entry->setUuid(QUuid::createUuid()); - entry->setGroup(splitGroups(m_parserModel->data(m_parserModel->index(r, 0)).toString())); + entry->setGroup(group); entry->setTitle(m_parserModel->data(m_parserModel->index(r, 1)).toString()); entry->setUsername(m_parserModel->data(m_parserModel->index(r, 2)).toString()); entry->setPassword(m_parserModel->data(m_parserModel->index(r, 3)).toString()); entry->setUrl(m_parserModel->data(m_parserModel->index(r, 4)).toString()); - entry->setNotes(m_parserModel->data(m_parserModel->index(r, 5)).toString()); + entry->setTags(m_parserModel->data(m_parserModel->index(r, 5)).toString()); + entry->setNotes(m_parserModel->data(m_parserModel->index(r, 6)).toString()); - auto otpString = m_parserModel->data(m_parserModel->index(r, 6)); + // TOTP + auto otpString = m_parserModel->data(m_parserModel->index(r, 7)); if (otpString.isValid() && !otpString.toString().isEmpty()) { auto totp = Totp::parseSettings(otpString.toString()); - if (totp->key.isEmpty()) { + if (!totp || totp->key.isEmpty()) { // Bare secret, use default TOTP settings totp = Totp::parseSettings({}, otpString.toString()); } entry->setTotp(totp); } + // Icon bool ok; - int icon = m_parserModel->data(m_parserModel->index(r, 7)).toInt(&ok); + int icon = m_parserModel->data(m_parserModel->index(r, 8)).toInt(&ok); if (ok) { entry->setIcon(icon); } + // Modified Time TimeInfo timeInfo; - if (m_parserModel->data(m_parserModel->index(r, 8)).isValid()) { + if (m_parserModel->data(m_parserModel->index(r, 9)).isValid()) { auto datetime = m_parserModel->data(m_parserModel->index(r, 8)).toString(); if (datetime.contains(QRegularExpression("^\\d+$"))) { auto t = datetime.toLongLong(); @@ -240,7 +296,8 @@ void CsvImportWidget::writeDatabase() } } } - if (m_parserModel->data(m_parserModel->index(r, 9)).isValid()) { + // Creation Time + if (m_parserModel->data(m_parserModel->index(r, 10)).isValid()) { auto datetime = m_parserModel->data(m_parserModel->index(r, 9)).toString(); if (datetime.contains(QRegularExpression("^\\d+$"))) { auto t = datetime.toLongLong(); @@ -257,99 +314,19 @@ void CsvImportWidget::writeDatabase() } entry->setTimeInfo(timeInfo); } - QBuffer buffer; - buffer.open(QBuffer::ReadWrite); - KeePass2Writer writer; - writer.writeDatabase(&buffer, m_db); - if (writer.hasError()) { - MessageBox::warning(this, - tr("Error"), - tr("CSV import: writer has errors:\n%1").arg(writer.errorString()), - MessageBox::Ok, - MessageBox::Ok); - } - emit editFinished(true); + return db; } -void CsvImportWidget::setRootGroup() +QString CsvImportWidget::formatStatusText() const { - QString groupLabel; - QStringList groupList; - bool is_root = false; - bool is_empty = false; - bool is_label = false; - - for (int r = 0; r < m_parserModel->rowCount(); ++r) { - // use validity of second column as a GO/NOGO for all others fields - if (not m_parserModel->data(m_parserModel->index(r, 1)).isValid()) { - continue; - } - groupLabel = m_parserModel->data(m_parserModel->index(r, 0)).toString(); - // check if group name is either "root", "" (empty) or some other label - groupList = groupLabel.split("/", QString::SkipEmptyParts); - if (groupList.isEmpty()) { - is_empty = true; - } else if (not groupList.first().compare("Root", Qt::CaseSensitive)) { - is_root = true; - } else if (not groupLabel.compare("")) { - is_empty = true; - } else { - is_label = true; - } - - groupList.clear(); + QString text = m_parserModel->parser()->getStatus(); + int items = text.count('\n'); + if (items > 2) { + return text.section('\n', 0, 1).append("\n").append(tr("[%n more message(s) skipped]", "", items - 2)); } - - if ((is_empty and is_root) or (is_label and not is_empty and is_root)) { - m_db->rootGroup()->setName("CSV IMPORTED"); - } else { - m_db->rootGroup()->setName("Root"); + if (items == 1) { + text.append(QString("\n")); } -} - -Group* CsvImportWidget::splitGroups(const QString& label) -{ - // extract group names from nested path provided in "label" - Group* current = m_db->rootGroup(); - if (label.isEmpty()) { - return current; - } - - QStringList groupList = label.split("/", QString::SkipEmptyParts); - // avoid the creation of a subgroup with the same name as Root - if (m_db->rootGroup()->name() == "Root" && groupList.first() == "Root") { - groupList.removeFirst(); - } - - for (const QString& groupName : groupList) { - Group* children = hasChildren(current, groupName); - if (children == nullptr) { - Group* brandNew = new Group(); - brandNew->setParent(current); - brandNew->setName(groupName); - brandNew->setUuid(QUuid::createUuid()); - current = brandNew; - } else { - Q_ASSERT(children != nullptr); - current = children; - } - } - return current; -} - -Group* CsvImportWidget::hasChildren(Group* current, const QString& groupName) -{ - // returns the group whose name is "groupName" and is child of "current" group - for (Group* group : current->children()) { - if (group->name() == groupName) { - return group; - } - } - return nullptr; -} - -void CsvImportWidget::reject() -{ - emit editFinished(false); + return text; } diff --git a/src/gui/csvImport/CsvImportWidget.h b/src/gui/csvImport/CsvImportWidget.h index 1711e32a6..c428d7200 100644 --- a/src/gui/csvImport/CsvImportWidget.h +++ b/src/gui/csvImport/CsvImportWidget.h @@ -19,12 +19,13 @@ #ifndef KEEPASSX_CSVIMPORTWIDGET_H #define KEEPASSX_CSVIMPORTWIDGET_H -#include +#include +#include -#include "core/Metadata.h" -#include "gui/csvImport/CsvParserModel.h" - -class QStringListModel; +class CsvParserModel; +class Database; +class Group; +class QComboBox; namespace Ui { @@ -37,36 +38,36 @@ class CsvImportWidget : public QWidget public: explicit CsvImportWidget(QWidget* parent = nullptr); - ~CsvImportWidget(); - void load(const QString& filename, Database* const db); + ~CsvImportWidget() override; + + void load(const QString& filename); + QSharedPointer buildDatabase(); signals: - void editFinished(bool accepted); + void message(QString msg); private slots: void parse(); void comboChanged(int index); void skippedChanged(int rows); - void writeDatabase(); void updatePreview(); - void setRootGroup(); - void reject(); private: - Q_DISABLE_COPY(CsvImportWidget) - const QScopedPointer m_ui; - CsvParserModel* const m_parserModel; - QStringListModel* const m_comboModel; - QList m_combos; - Database* m_db; - - const QStringList m_columnHeader; - QStringList m_fieldSeparatorList; void configParser(); void updateTableview(); - Group* splitGroups(const QString& label); - Group* hasChildren(Group* current, const QString& groupName); QString formatStatusText() const; + + QScopedPointer m_ui; + + CsvParserModel* m_parserModel; + QStringListModel* m_comboModel; + QList m_combos; + QStringList m_columnHeader; + QStringList m_fieldSeparatorList; + QString m_filename; + bool m_buildingPreview = false; + + Q_DISABLE_COPY(CsvImportWidget) }; #endif // KEEPASSX_CSVIMPORTWIDGET_H diff --git a/src/gui/csvImport/CsvImportWidget.ui b/src/gui/csvImport/CsvImportWidget.ui index 7a5627d98..6fb21e595 100644 --- a/src/gui/csvImport/CsvImportWidget.ui +++ b/src/gui/csvImport/CsvImportWidget.ui @@ -6,763 +6,806 @@ 0 0 - 788 - 530 + 820 + 523 + + 0 + + + 0 + + + 0 + + + 0 + - - - - - - Qt::ScrollBarAlwaysOff - - - true - - - - - 0 - 0 - 753 - 615 - - - - - - - - 11 - 75 - true - - - - Import CSV fields - - - - - - - - - filename - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - size, rows, columns - - - - - - - - - - - - 75 - true - - - - Column Association - - - - - - - - - - - - 50 - false - - - - Password - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - 50 - false - - - - Username - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - - - - 50 - false - - - - Title - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - 50 - false - - - - Group - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - 50 - false - - - - URL - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - 50 - false - - - - Notes - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - 50 - false - - - - TOTP - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - - - - 50 - false - - - - Created - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - 50 - false - - - - Last Modified - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - 50 - false - - - - Icon - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 2 - - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - 75 - true - - - - Encoding - - - - - - - 50 - false - - - - Codec - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 50 - false - - - - Codec - - - false - - - UTF-8 - - - - UTF-8 - - - - - Windows-1252 - - - - - UTF-16 - - - - - UTF-16LE - - - - - - - - - 50 - false - - - - Text is qualified by - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 50 - false - - - - Text qualification - - - false - - - " - - - - " - - - - - ' - - - - - : - - - - - . - - - - - | - - - - - - - - - 50 - false - - - - Fields are separated by - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 50 - false - - - - Field separation - - - false - - - , - - - - , - - - - - ; - - - - - - - - - - - : - - - - - . - - - - - TAB (\t) - - - - - - - - - 50 - false - - - - Comments start with - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 50 - false - - - - Comments start with - - - false - - - # - - - - # - - - - - ; - - - - - : - - - - - @ - - - - - - - - - 50 - false - - - - Header lines skipped - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - 50 - false - - - - Number of header lines to discard - - - - - - - Qt::Horizontal - - - - 122 - 20 - - - - - - - - - - - 50 - false - - - - First line has field names - - - - - - - - 50 - false - - - - Consider '\' an escape character - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - 75 - true - - - - Preview - - - false - - + + + + + + 75 + true + + + + Column Association + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + Group + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 50 + false + + + + Notes + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 50 + false + + + + Username + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + Last Modified + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + Password + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 6 + 20 + + + + + + + + + 50 + false + + + + Created + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + URL + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 50 + false + + + + TOTP + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + Icon + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 50 + false + + + + Title + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + 50 + false + + + + Tags + + + 2 + + + + + + + + 200 + 16777215 + + + + QComboBox::AdjustToContents + + + + + + + + + + + 75 + true + + + + Encoding + + + + + + + 50 + false + + + + Codec + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 50 + false + + + + Codec + + + false + + + UTF-8 + - - - - 0 - 0 - - - - - 0 - 300 - - - - - 50 - false - - - - CSV import preview - - - false - - - true - - + + UTF-8 + - - - - - - + + + Windows-1252 + + + + + UTF-16 + + + + + UTF-16LE + + + + + + + + + 50 + false + + + + Text is qualified by + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 50 + false + + + + Text qualification + + + false + + + " + + + + " + + + + + ' + + + + + : + + + + + . + + + + + | + + + + + + + + + 50 + false + + + + Fields are separated by + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 50 + false + + + + Field separation + + + false + + + , + + + + , + + + + + ; + + + + + - + + + + + : + + + + + . + + + + + TAB (\t) + + + + + + + + + 50 + false + + + + Comments start with + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 50 + false + + + + Comments start with + + + false + + + # + + + + # + + + + + ; + + + + + : + + + + + @ + + + + + + + + + 50 + false + + + + Header lines skipped + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 50 + false + + + + Number of header lines to discard + + + + + + + + 50 + false + + + + Consider '\' an escape character + + + + + + + + 50 + false + + + + First line has field names + + + true + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + - - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + 75 + true + - + + Preview + + false + + + 3 + + + 0 + + + + + + 50 + false + + + + size, rows, columns + + + + + + + + 0 + 0 + + + + + 800 + 300 + + + + + 50 + false + + + + CSV import preview + + + false + + + true + + + + - - - MessageWidget - QWidget -
    gui/MessageWidget.h
    - 1 -
    -
    - scrollArea - groupCombo - titleCombo - usernameCombo - passwordCombo - urlCombo - notesCombo - totpCombo - iconCombo - lastModifiedCombo - createdCombo comboBoxCodec comboBoxTextQualifier comboBoxFieldSeparator comboBoxComment - spinBoxSkip - checkBoxFieldNames - checkBoxBackslash tableViewFields diff --git a/src/gui/csvImport/CsvImportWizard.cpp b/src/gui/csvImport/CsvImportWizard.cpp deleted file mode 100644 index 4595c06d9..000000000 --- a/src/gui/csvImport/CsvImportWizard.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2016 Enrico Mariotti - * 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 . - */ - -#include "CsvImportWizard.h" - -#include - -CsvImportWizard::CsvImportWizard(QWidget* parent) - : DialogyWidget(parent) -{ - m_layout = new QGridLayout(this); - m_layout->addWidget(m_parse = new CsvImportWidget(this), 0, 0); - - connect(m_parse, SIGNAL(editFinished(bool)), this, SLOT(parseFinished(bool))); -} - -CsvImportWizard::~CsvImportWizard() -{ -} - -void CsvImportWizard::load(const QString& filename, Database* database) -{ - m_db = database; - m_parse->load(filename, database); -} - -void CsvImportWizard::parseFinished(bool accepted) -{ - emit importFinished(accepted); -} diff --git a/src/gui/csvImport/CsvParserModel.cpp b/src/gui/csvImport/CsvParserModel.cpp index 77abb5931..892b8917b 100644 --- a/src/gui/csvImport/CsvParserModel.cpp +++ b/src/gui/csvImport/CsvParserModel.cpp @@ -18,16 +18,23 @@ #include "CsvParserModel.h" +#include "core/Tools.h" +#include "format/CsvParser.h" + #include CsvParserModel::CsvParserModel(QObject* parent) : QAbstractTableModel(parent) + , m_parser(new CsvParser()) , m_skipped(0) { } -CsvParserModel::~CsvParserModel() +CsvParserModel::~CsvParserModel() = default; + +CsvParser* CsvParserModel::parser() { + return m_parser; } void CsvParserModel::setFilename(const QString& filename) @@ -37,11 +44,10 @@ void CsvParserModel::setFilename(const QString& filename) QString CsvParserModel::getFileInfo() { - QString a(tr("%1, %2, %3", "file info: bytes, rows, columns") - .arg(tr("%n byte(s)", nullptr, getFileSize()), - tr("%n row(s)", nullptr, getCsvRows()), - tr("%n column(s)", nullptr, qMax(0, getCsvCols() - 1)))); - return a; + return QString("%1, %2, %3") + .arg(Tools::humanReadableFileSize(m_parser->getFileSize()), + tr("%n row(s)", "CSV row count", m_parser->getCsvRows()), + tr("%n column(s)", "CSV column count", qMax(0, m_parser->getCsvCols() - 1))); } bool CsvParserModel::parse() @@ -49,37 +55,28 @@ bool CsvParserModel::parse() bool r; beginResetModel(); m_columnMap.clear(); - if (CsvParser::isFileLoaded()) { - r = CsvParser::reparse(); + if (m_parser->isFileLoaded()) { + r = m_parser->reparse(); } else { QFile csv(m_filename); - r = CsvParser::parse(&csv); + r = m_parser->parse(&csv); } for (int i = 0; i < columnCount(); ++i) { m_columnMap.insert(i, 0); } - addEmptyColumn(); endResetModel(); return r; } -void CsvParserModel::addEmptyColumn() -{ - for (int i = 0; i < m_table.size(); ++i) { - CsvRow r = m_table.at(i); - r.prepend(QString("")); - m_table.replace(i, r); - } -} - void CsvParserModel::mapColumns(int csvColumn, int dbColumn) { - if ((csvColumn < 0) || (dbColumn < 0)) { + if (dbColumn < 0 || dbColumn >= m_columnMap.size()) { return; } beginResetModel(); - if (csvColumn >= getCsvCols()) { - m_columnMap[dbColumn] = 0; // map to the empty column + if (csvColumn < 0 || csvColumn >= m_parser->getCsvCols()) { + // This indicates a blank cell + m_columnMap[dbColumn] = -1; } else { m_columnMap[dbColumn] = csvColumn; } @@ -95,6 +92,11 @@ void CsvParserModel::setSkippedRows(int skipped) emit layoutChanged(); } +int CsvParserModel::skippedRows() const +{ + return m_skipped; +} + void CsvParserModel::setHeaderLabels(const QStringList& labels) { m_columnHeader = labels; @@ -105,7 +107,7 @@ int CsvParserModel::rowCount(const QModelIndex& parent) const if (parent.isValid()) { return 0; } - return getCsvRows(); + return m_parser->getCsvRows(); } int CsvParserModel::columnCount(const QModelIndex& parent) const @@ -118,29 +120,30 @@ int CsvParserModel::columnCount(const QModelIndex& parent) const QVariant CsvParserModel::data(const QModelIndex& index, int role) const { - if ((index.column() >= m_columnHeader.size()) || (index.row() + m_skipped >= rowCount()) || !index.isValid()) { - return QVariant(); + if (index.column() >= m_columnHeader.size() || index.row() + m_skipped >= rowCount() || !index.isValid()) { + return {}; } if (role == Qt::DisplayRole) { - return m_table.at(index.row() + m_skipped).at(m_columnMap[index.column()]); + auto column = m_columnMap[index.column()]; + if (column >= 0) { + return m_parser->getCsvTable().at(index.row() + m_skipped).at(column); + } } - return QVariant(); + return {}; } QVariant CsvParserModel::headerData(int section, Qt::Orientation orientation, int role) const { if (role == Qt::DisplayRole) { if (orientation == Qt::Horizontal) { - if ((section < 0) || (section >= m_columnHeader.size())) { - return QVariant(); + if (section >= 0 && section < m_columnHeader.size()) { + return m_columnHeader.at(section); } - return m_columnHeader.at(section); } else if (orientation == Qt::Vertical) { - if (section + m_skipped >= rowCount()) { - return QVariant(); + if (section + m_skipped < rowCount()) { + return QString::number(section + 1); } - return QString::number(section + 1); } } - return QVariant(); + return {}; } diff --git a/src/gui/csvImport/CsvParserModel.h b/src/gui/csvImport/CsvParserModel.h index 5e979421c..d9fb4af46 100644 --- a/src/gui/csvImport/CsvParserModel.h +++ b/src/gui/csvImport/CsvParserModel.h @@ -21,20 +21,22 @@ #include -#include "core/Group.h" -#include "format/CsvParser.h" +class CsvParser; -class CsvParserModel : public QAbstractTableModel, public CsvParser +class CsvParserModel : public QAbstractTableModel { Q_OBJECT public: explicit CsvParserModel(QObject* parent = nullptr); - ~CsvParserModel(); + ~CsvParserModel() override; + void setFilename(const QString& filename); QString getFileInfo(); bool parse(); + CsvParser* parser(); + void setHeaderLabels(const QStringList& labels); void mapColumns(int csvColumn, int dbColumn); @@ -43,16 +45,16 @@ public: QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role) const override; -public slots: void setSkippedRows(int skipped); + int skippedRows() const; private: + CsvParser* m_parser; int m_skipped; QString m_filename; QStringList m_columnHeader; // first column of model must be empty (aka combobox row "Not present in CSV file") void addEmptyColumn(); - // mapping CSV columns to keepassx columns QMap m_columnMap; }; diff --git a/src/gui/databasekey/KeyComponentWidget.cpp b/src/gui/databasekey/KeyComponentWidget.cpp index e0cdc0f8a..1fad34427 100644 --- a/src/gui/databasekey/KeyComponentWidget.cpp +++ b/src/gui/databasekey/KeyComponentWidget.cpp @@ -43,9 +43,7 @@ KeyComponentWidget::KeyComponentWidget(QWidget* parent) m_ui->stackedWidget->blockSignals(prev); } -KeyComponentWidget::~KeyComponentWidget() -{ -} +KeyComponentWidget::~KeyComponentWidget() = default; void KeyComponentWidget::setComponentAdded(bool added) { @@ -75,6 +73,10 @@ KeyComponentWidget::Page KeyComponentWidget::visiblePage() const void KeyComponentWidget::updateAddStatus(bool added) { + if (m_ui->stackedWidget->currentIndex() == Page::Edit) { + emit editCanceled(); + } + if (added) { m_ui->stackedWidget->setCurrentIndex(Page::LeaveOrRemove); } else { @@ -103,12 +105,6 @@ void KeyComponentWidget::cancelEdit() emit editCanceled(); } -void KeyComponentWidget::showEvent(QShowEvent* event) -{ - resetComponentEditWidget(); - QWidget::showEvent(event); -} - void KeyComponentWidget::resetComponentEditWidget() { if (!m_componentWidget || static_cast(m_ui->stackedWidget->currentIndex()) == Page::Edit) { diff --git a/src/gui/databasekey/KeyComponentWidget.h b/src/gui/databasekey/KeyComponentWidget.h index 9ea53da96..d207e494d 100644 --- a/src/gui/databasekey/KeyComponentWidget.h +++ b/src/gui/databasekey/KeyComponentWidget.h @@ -104,9 +104,6 @@ signals: void editCanceled(); void componentRemovalRequested(); -protected: - void showEvent(QShowEvent* event) override; - private slots: void updateAddStatus(bool added); void doAdd(); diff --git a/src/gui/databasekey/KeyFileEditWidget.cpp b/src/gui/databasekey/KeyFileEditWidget.cpp index dc38d05d7..dfaef273c 100644 --- a/src/gui/databasekey/KeyFileEditWidget.cpp +++ b/src/gui/databasekey/KeyFileEditWidget.cpp @@ -33,9 +33,7 @@ KeyFileEditWidget::KeyFileEditWidget(DatabaseSettingsWidget* parent) initComponent(); } -KeyFileEditWidget::~KeyFileEditWidget() -{ -} +KeyFileEditWidget::~KeyFileEditWidget() = default; bool KeyFileEditWidget::addToCompositeKey(QSharedPointer key) { diff --git a/src/gui/databasekey/PasswordEditWidget.cpp b/src/gui/databasekey/PasswordEditWidget.cpp index 5f12f7d19..e04f6e0b1 100644 --- a/src/gui/databasekey/PasswordEditWidget.cpp +++ b/src/gui/databasekey/PasswordEditWidget.cpp @@ -27,11 +27,12 @@ PasswordEditWidget::PasswordEditWidget(QWidget* parent) , m_compUi(new Ui::PasswordEditWidget()) { initComponent(); + + // Explicitly clear password on cancel + connect(this, &PasswordEditWidget::editCanceled, this, [this] { setPassword({}); }); } -PasswordEditWidget::~PasswordEditWidget() -{ -} +PasswordEditWidget::~PasswordEditWidget() = default; bool PasswordEditWidget::addToCompositeKey(QSharedPointer key) { @@ -61,7 +62,15 @@ bool PasswordEditWidget::isPasswordVisible() const bool PasswordEditWidget::isEmpty() const { - return (visiblePage() == Page::Edit) && m_compUi->enterPasswordEdit->text().isEmpty(); + return m_compUi->enterPasswordEdit->text().isEmpty(); +} + +PasswordHealth::Quality PasswordEditWidget::getPasswordQuality() const +{ + QString pwd = m_compUi->enterPasswordEdit->text(); + PasswordHealth passwordHealth(pwd); + + return passwordHealth.quality(); } QWidget* PasswordEditWidget::componentEditWidget() @@ -77,7 +86,9 @@ void PasswordEditWidget::initComponentEditWidget(QWidget* widget) { Q_UNUSED(widget); Q_ASSERT(m_compEditWidget); - m_compUi->enterPasswordEdit->setFocus(); + setFocusProxy(m_compUi->enterPasswordEdit); + m_compUi->enterPasswordEdit->setQualityVisible(true); + m_compUi->repeatPasswordEdit->setQualityVisible(false); } void PasswordEditWidget::initComponent() @@ -94,16 +105,6 @@ void PasswordEditWidget::initComponent() "

    Good passwords are long and unique. KeePassXC can generate one for you.

    ")); } -void PasswordEditWidget::hideEvent(QHideEvent* event) -{ - if (!isVisible() && m_compUi->enterPasswordEdit) { - m_compUi->enterPasswordEdit->setText(""); - m_compUi->repeatPasswordEdit->setText(""); - } - - QWidget::hideEvent(event); -} - bool PasswordEditWidget::validate(QString& errorMessage) const { if (m_compUi->enterPasswordEdit->text() != m_compUi->repeatPasswordEdit->text()) { diff --git a/src/gui/databasekey/PasswordEditWidget.h b/src/gui/databasekey/PasswordEditWidget.h index 6fc9370ad..14dfe1d81 100644 --- a/src/gui/databasekey/PasswordEditWidget.h +++ b/src/gui/databasekey/PasswordEditWidget.h @@ -20,6 +20,8 @@ #include "KeyComponentWidget.h" +#include "core/PasswordHealth.h" + namespace Ui { class PasswordEditWidget; @@ -38,13 +40,13 @@ public: void setPasswordVisible(bool visible); bool isPasswordVisible() const; bool isEmpty() const; + PasswordHealth::Quality getPasswordQuality() const; bool validate(QString& errorMessage) const override; protected: QWidget* componentEditWidget() override; void initComponentEditWidget(QWidget* widget) override; void initComponent() override; - void hideEvent(QHideEvent* event) override; private slots: void setPassword(const QString& password); diff --git a/src/gui/databasekey/PasswordEditWidget.ui b/src/gui/databasekey/PasswordEditWidget.ui index d8382ed94..e191968f8 100644 --- a/src/gui/databasekey/PasswordEditWidget.ui +++ b/src/gui/databasekey/PasswordEditWidget.ui @@ -31,9 +31,9 @@ - + - + 0 0 @@ -44,12 +44,12 @@ 0 + + Qt::StrongFocus + Password field - - QLineEdit::Password - @@ -60,9 +60,9 @@ - + - + 0 0 @@ -73,21 +73,21 @@ 0 + + Qt::StrongFocus + Repeat password field - - QLineEdit::Password - - PasswordEdit - QLineEdit -
    gui/PasswordEdit.h
    + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    1
    diff --git a/src/gui/databasekey/YubiKeyEditWidget.cpp b/src/gui/databasekey/YubiKeyEditWidget.cpp index 2e6cf4ff3..edac12af0 100644 --- a/src/gui/databasekey/YubiKeyEditWidget.cpp +++ b/src/gui/databasekey/YubiKeyEditWidget.cpp @@ -16,26 +16,33 @@ */ #include "YubiKeyEditWidget.h" + #include "ui_KeyComponentWidget.h" #include "ui_YubiKeyEditWidget.h" -#include "config-keepassx.h" #include "core/AsyncTask.h" +#include "gui/Icons.h" #include "keys/ChallengeResponseKey.h" #include "keys/CompositeKey.h" +#ifdef WITH_XC_YUBIKEY +#include "keys/drivers/YubiKeyInterfaceUSB.h" +#endif YubiKeyEditWidget::YubiKeyEditWidget(QWidget* parent) : KeyComponentWidget(parent) , m_compUi(new Ui::YubiKeyEditWidget()) +#ifdef WITH_XC_YUBIKEY + , m_deviceListener(new DeviceListener(this)) +#endif { initComponent(); - +#ifdef WITH_XC_YUBIKEY connect(YubiKey::instance(), SIGNAL(detectComplete(bool)), SLOT(hardwareKeyResponse(bool)), Qt::QueuedConnection); + connect(m_deviceListener, &DeviceListener::devicePlugged, this, [&](bool, void*, void*) { pollYubikey(); }); +#endif } -YubiKeyEditWidget::~YubiKeyEditWidget() -{ -} +YubiKeyEditWidget::~YubiKeyEditWidget() = default; bool YubiKeyEditWidget::addToCompositeKey(QSharedPointer key) { @@ -76,19 +83,48 @@ QWidget* YubiKeyEditWidget::componentEditWidget() m_compUi->yubikeyProgress->setSizePolicy(sp); m_compUi->yubikeyProgress->setVisible(false); -#ifdef WITH_XC_YUBIKEY - connect(m_compUi->buttonRedetectYubikey, SIGNAL(clicked()), SLOT(pollYubikey())); - pollYubikey(); -#endif - return m_compEditWidget; } +void YubiKeyEditWidget::showEvent(QShowEvent* event) +{ + KeyComponentWidget::showEvent(event); + +#ifdef WITH_XC_YUBIKEY +#ifdef Q_OS_WIN + m_deviceListener->registerHotplugCallback(true, + true, + YubiKeyInterfaceUSB::YUBICO_USB_VID, + DeviceListener::MATCH_ANY, + &DeviceListenerWin::DEV_CLS_KEYBOARD); + m_deviceListener->registerHotplugCallback(true, + true, + YubiKeyInterfaceUSB::ONLYKEY_USB_VID, + DeviceListener::MATCH_ANY, + &DeviceListenerWin::DEV_CLS_KEYBOARD); +#else + m_deviceListener->registerHotplugCallback(true, true, YubiKeyInterfaceUSB::YUBICO_USB_VID); + m_deviceListener->registerHotplugCallback(true, true, YubiKeyInterfaceUSB::ONLYKEY_USB_VID); +#endif +#endif +} + +void YubiKeyEditWidget::hideEvent(QHideEvent* event) +{ + KeyComponentWidget::hideEvent(event); +#ifdef WITH_XC_YUBIKEY + m_deviceListener->deregisterAllHotplugCallbacks(); +#endif +} + void YubiKeyEditWidget::initComponentEditWidget(QWidget* widget) { Q_UNUSED(widget); Q_ASSERT(m_compEditWidget); m_compUi->comboChallengeResponse->setFocus(); + m_compUi->refreshHardwareKeys->setIcon(icons()->icon("yubikey-refresh", true)); + connect(m_compUi->refreshHardwareKeys, &QPushButton::clicked, this, &YubiKeyEditWidget::pollYubikey); + pollYubikey(); } void YubiKeyEditWidget::initComponent() @@ -103,9 +139,9 @@ void YubiKeyEditWidget::initComponent() m_ui->componentDescription->setText( tr("

    If you own a YubiKey or " "OnlyKey, you can use it for additional security.

    " - "

    The key requires one of its slots to be programmed as " - "" - "HMAC-SHA1 Challenge-Response.

    ")); + "

    The key requires one of its slots to be programmed with " + "" + "Challenge-Response.

    ")); } void YubiKeyEditWidget::pollYubikey() @@ -118,9 +154,9 @@ void YubiKeyEditWidget::pollYubikey() m_isDetected = false; m_compUi->comboChallengeResponse->clear(); m_compUi->comboChallengeResponse->addItem(tr("Detecting hardware keys…")); - m_compUi->buttonRedetectYubikey->setEnabled(false); m_compUi->comboChallengeResponse->setEnabled(false); m_compUi->yubikeyProgress->setVisible(true); + m_compUi->refreshHardwareKeys->setEnabled(false); YubiKey::instance()->findValidKeysAsync(); #endif @@ -133,20 +169,24 @@ void YubiKeyEditWidget::hardwareKeyResponse(bool found) } m_compUi->comboChallengeResponse->clear(); - m_compUi->buttonRedetectYubikey->setEnabled(true); - m_compUi->yubikeyProgress->setVisible(false); + m_compUi->refreshHardwareKeys->setEnabled(true); if (!found) { - m_compUi->comboChallengeResponse->addItem(tr("No hardware keys detected")); + m_compUi->yubikeyProgress->setVisible(false); + m_compUi->comboChallengeResponse->addItem(YubiKey::instance()->connectedKeys() > 0 + ? tr("Hardware keys found, but no slots are configured") + : tr("No hardware keys detected")); m_isDetected = false; return; } - for (auto& slot : YubiKey::instance()->foundKeys()) { + const auto foundKeys = YubiKey::instance()->foundKeys(); + for (auto i = foundKeys.cbegin(); i != foundKeys.cend(); ++i) { // add detected YubiKey to combo box and encode blocking mode in LSB, slot number in second LSB - m_compUi->comboChallengeResponse->addItem(YubiKey::instance()->getDisplayName(slot), QVariant::fromValue(slot)); + m_compUi->comboChallengeResponse->addItem(i.value(), QVariant::fromValue(i.key())); } m_isDetected = true; + m_compUi->yubikeyProgress->setVisible(false); m_compUi->comboChallengeResponse->setEnabled(true); } diff --git a/src/gui/databasekey/YubiKeyEditWidget.h b/src/gui/databasekey/YubiKeyEditWidget.h index e21b632a6..fc63f1946 100644 --- a/src/gui/databasekey/YubiKeyEditWidget.h +++ b/src/gui/databasekey/YubiKeyEditWidget.h @@ -19,6 +19,10 @@ #define KEEPASSXC_YUBIKEYEDITWIDGET_H #include "KeyComponentWidget.h" +#include "config-keepassx.h" +#ifdef WITH_XC_YUBIKEY +#include "gui/osutils/DeviceListener.h" +#endif namespace Ui { @@ -43,6 +47,8 @@ protected: QWidget* componentEditWidget() override; void initComponentEditWidget(QWidget* widget) override; void initComponent() override; + void showEvent(QShowEvent* event) override; + void hideEvent(QHideEvent* event) override; private slots: void hardwareKeyResponse(bool found); @@ -51,6 +57,9 @@ private slots: private: const QScopedPointer m_compUi; QPointer m_compEditWidget; +#ifdef WITH_XC_YUBIKEY + QPointer m_deviceListener; +#endif bool m_isDetected = false; }; diff --git a/src/gui/databasekey/YubiKeyEditWidget.ui b/src/gui/databasekey/YubiKeyEditWidget.ui index fa150084b..02881817f 100644 --- a/src/gui/databasekey/YubiKeyEditWidget.ui +++ b/src/gui/databasekey/YubiKeyEditWidget.ui @@ -24,51 +24,84 @@ 0 - - - 0 + + + 6 - - - - Refresh hardware tokens - - - Refresh - - - - - - - - 0 - 0 - - - - Hardware key slot selection - - - - - - - - 16777215 - 2 - - - + + + 0 - - -1 + + + + + 0 + 0 + + + + Hardware key slot selection + + + + + + + + 16777215 + 2 + + + + 0 + + + -1 + + + false + + + + + + + + + 0 - - false - - + + + + Refresh hardware keys + + + Refresh hardware keys + + + + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 0 + 2 + + + + + @@ -87,10 +120,6 @@ - - comboChallengeResponse - buttonRedetectYubikey - diff --git a/src/gui/dbsettings/DatabaseSettingsDialog.cpp b/src/gui/dbsettings/DatabaseSettingsDialog.cpp index 6d96dd769..b70835770 100644 --- a/src/gui/dbsettings/DatabaseSettingsDialog.cpp +++ b/src/gui/dbsettings/DatabaseSettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer * * This program is free software: you can redistribute it and/or modify @@ -17,73 +17,50 @@ */ #include "DatabaseSettingsDialog.h" -#include "ui_DatabaseSettingsDialog.h" - #include "DatabaseSettingsWidgetDatabaseKey.h" #include "DatabaseSettingsWidgetEncryption.h" #include "DatabaseSettingsWidgetGeneral.h" #ifdef WITH_XC_BROWSER #include "DatabaseSettingsWidgetBrowser.h" #endif +#include "../remote/DatabaseSettingsWidgetRemote.h" #include "DatabaseSettingsWidgetMaintenance.h" #ifdef WITH_XC_KEESHARE -#include "keeshare/DatabaseSettingsPageKeeShare.h" +#include "keeshare/DatabaseSettingsWidgetKeeShare.h" #endif #ifdef WITH_XC_FDOSECRETS -#include "fdosecrets/DatabaseSettingsPageFdoSecrets.h" +#include "fdosecrets/widgets/DatabaseSettingsWidgetFdoSecrets.h" #endif -#include "core/Config.h" #include "core/Database.h" #include "core/Global.h" #include "gui/Icons.h" #include -class DatabaseSettingsDialog::ExtraPage -{ -public: - ExtraPage(IDatabaseSettingsPage* page, QWidget* widget) - : settingsPage(page) - , widget(widget) - { - } - void loadSettings(QSharedPointer db) const - { - settingsPage->loadSettings(widget, db); - } - void saveSettings() const - { - settingsPage->saveSettings(widget); - } - -private: - QSharedPointer settingsPage; - QWidget* widget; -}; - DatabaseSettingsDialog::DatabaseSettingsDialog(QWidget* parent) - : DialogyWidget(parent) - , m_ui(new Ui::DatabaseSettingsDialog()) + : EditWidget(parent) , m_generalWidget(new DatabaseSettingsWidgetGeneral(this)) , m_securityTabWidget(new QTabWidget(this)) , m_databaseKeyWidget(new DatabaseSettingsWidgetDatabaseKey(this)) , m_encryptionWidget(new DatabaseSettingsWidgetEncryption(this)) #ifdef WITH_XC_BROWSER , m_browserWidget(new DatabaseSettingsWidgetBrowser(this)) +#endif +#ifdef WITH_XC_KEESHARE + , m_keeShareWidget(new DatabaseSettingsWidgetKeeShare(this)) +#endif +#ifdef WITH_XC_FDOSECRETS + , m_fdoSecretsWidget(new DatabaseSettingsWidgetFdoSecrets(this)) #endif , m_maintenanceWidget(new DatabaseSettingsWidgetMaintenance(this)) + , m_remoteWidget(new DatabaseSettingsWidgetRemote(this)) { - m_ui->setupUi(this); + connect(this, SIGNAL(accepted()), SLOT(save())); + connect(this, SIGNAL(rejected()), SLOT(reject())); - connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(save())); - connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject())); - - m_ui->categoryList->addCategory(tr("General"), icons()->icon("preferences-other")); - m_ui->categoryList->addCategory(tr("Security"), icons()->icon("security-high")); - m_ui->stackedWidget->addWidget(m_generalWidget); - - m_ui->stackedWidget->addWidget(m_securityTabWidget); + addPage(tr("General"), icons()->icon("preferences-other"), m_generalWidget); + addPage(tr("Security"), icons()->icon("security-high"), m_securityTabWidget); auto* scrollArea = new QScrollArea(parent); scrollArea->setFrameShape(QFrame::NoFrame); @@ -92,131 +69,115 @@ DatabaseSettingsDialog::DatabaseSettingsDialog(QWidget* parent) scrollArea->setSizeAdjustPolicy(QScrollArea::AdjustToContents); scrollArea->setWidgetResizable(true); scrollArea->setWidget(m_databaseKeyWidget); - m_securityTabWidget->addTab(scrollArea, tr("Database Credentials")); + m_securityTabWidget->setObjectName("securityTabWidget"); + m_securityTabWidget->addTab(scrollArea, tr("Database Credentials")); m_securityTabWidget->addTab(m_encryptionWidget, tr("Encryption Settings")); -#if defined(WITH_XC_KEESHARE) - addSettingsPage(new DatabaseSettingsPageKeeShare()); -#endif - -#if defined(WITH_XC_FDOSECRETS) - addSettingsPage(new DatabaseSettingsPageFdoSecrets()); -#endif - - m_ui->stackedWidget->setCurrentIndex(0); m_securityTabWidget->setCurrentIndex(0); - connect(m_securityTabWidget, SIGNAL(currentChanged(int)), SLOT(pageChanged())); - connect(m_ui->categoryList, SIGNAL(categoryChanged(int)), m_ui->stackedWidget, SLOT(setCurrentIndex(int))); - connect(m_ui->advancedSettingsToggle, SIGNAL(toggled(bool)), SLOT(toggleAdvancedMode(bool))); + addPage(tr("Remote Sync"), icons()->icon("remote-sync"), m_remoteWidget); #ifdef WITH_XC_BROWSER - m_ui->categoryList->addCategory(tr("Browser Integration"), icons()->icon("internet-web-browser")); - m_ui->stackedWidget->addWidget(m_browserWidget); + addPage(tr("Browser Integration"), icons()->icon("internet-web-browser"), m_browserWidget); #endif - m_ui->categoryList->addCategory(tr("Maintenance"), icons()->icon("hammer-wrench")); - m_ui->stackedWidget->addWidget(m_maintenanceWidget); +#ifdef WITH_XC_KEESHARE + addPage(tr("KeeShare"), icons()->icon("preferences-system-network-sharing"), m_keeShareWidget); +#endif - pageChanged(); +#ifdef WITH_XC_FDOSECRETS + addPage(tr("Secret Service Integration"), icons()->icon(QStringLiteral("freedesktop")), m_fdoSecretsWidget); +#endif + + addPage(tr("Maintenance"), icons()->icon("hammer-wrench"), m_maintenanceWidget); + + setCurrentPage(0); } -DatabaseSettingsDialog::~DatabaseSettingsDialog() -{ -} +DatabaseSettingsDialog::~DatabaseSettingsDialog() = default; void DatabaseSettingsDialog::load(const QSharedPointer& db) { - m_ui->categoryList->setCurrentCategory(0); - m_generalWidget->load(db); - m_databaseKeyWidget->load(db); - m_encryptionWidget->load(db); -#ifdef WITH_XC_BROWSER - m_browserWidget->load(db); -#endif - m_maintenanceWidget->load(db); - for (const ExtraPage& page : asConst(m_extraPages)) { - page.loadSettings(db); - } - m_ui->advancedSettingsToggle->setChecked(config()->get(Config::GUI_AdvancedSettings).toBool()); - m_db = db; -} + setHeadline(tr("Database Settings: %1").arg(db->canonicalFilePath())); -void DatabaseSettingsDialog::addSettingsPage(IDatabaseSettingsPage* page) -{ - const int category = m_ui->categoryList->currentCategory(); - QWidget* widget = page->createWidget(); - widget->setParent(this); - m_extraPages.append(ExtraPage(page, widget)); - m_ui->stackedWidget->addWidget(widget); - m_ui->categoryList->addCategory(page->name(), page->icon()); - m_ui->categoryList->setCurrentCategory(category); + m_generalWidget->loadSettings(db); + m_databaseKeyWidget->loadSettings(db); + m_encryptionWidget->loadSettings(db); + m_remoteWidget->loadSettings(db); +#ifdef WITH_XC_BROWSER + m_browserWidget->loadSettings(db); +#endif +#ifdef WITH_XC_KEESHARE + m_keeShareWidget->loadSettings(db); +#endif +#ifdef WITH_XC_FDOSECRETS + m_fdoSecretsWidget->loadSettings(db); +#endif + m_maintenanceWidget->loadSettings(db); + + m_db = db; } /** * Show page and tab with database database key settings. */ -void DatabaseSettingsDialog::showDatabaseKeySettings() +void DatabaseSettingsDialog::showDatabaseKeySettings(int index) { - m_ui->categoryList->setCurrentCategory(1); - m_securityTabWidget->setCurrentIndex(0); + setCurrentPage(1); + m_securityTabWidget->setCurrentIndex(index); +} + +void DatabaseSettingsDialog::showRemoteSettings() +{ + setCurrentPage(2); } void DatabaseSettingsDialog::save() { - if (!m_generalWidget->save()) { + if (!m_generalWidget->saveSettings()) { + setCurrentPage(0); return; } - if (!m_databaseKeyWidget->save()) { + if (!m_databaseKeyWidget->saveSettings()) { + setCurrentPage(1); + m_securityTabWidget->setCurrentIndex(0); return; } - if (!m_encryptionWidget->save()) { + if (!m_encryptionWidget->saveSettings()) { + setCurrentPage(1); + m_securityTabWidget->setCurrentIndex(1); return; } - for (const ExtraPage& extraPage : asConst(m_extraPages)) { - extraPage.saveSettings(); + if (!m_remoteWidget->saveSettings()) { + setCurrentPage(2); + return; } + // Browser settings don't have anything to save + +#ifdef WITH_XC_KEESHARE + m_keeShareWidget->saveSettings(); +#endif +#ifdef WITH_XC_FDOSECRETS + m_fdoSecretsWidget->saveSettings(); +#endif + emit editFinished(true); } void DatabaseSettingsDialog::reject() { + m_generalWidget->discard(); + m_databaseKeyWidget->discard(); + m_encryptionWidget->discard(); + m_remoteWidget->discard(); +#ifdef WITH_XC_BROWSER + m_browserWidget->discard(); +#endif + emit editFinished(false); } - -void DatabaseSettingsDialog::pageChanged() -{ - int pageIndex = m_ui->stackedWidget->currentIndex(); - - bool enabled = (pageIndex == Page::General && m_generalWidget->hasAdvancedMode()); - - if (Page::Security == pageIndex) { - int tabIndex = m_securityTabWidget->currentIndex(); - enabled = (tabIndex == 0 && m_databaseKeyWidget->hasAdvancedMode()); - enabled |= (tabIndex == 1 && m_encryptionWidget->hasAdvancedMode()); - } - - m_ui->advancedSettingsToggle->setEnabled(enabled); -} - -void DatabaseSettingsDialog::toggleAdvancedMode(bool advanced) -{ - if (m_generalWidget->hasAdvancedMode()) { - m_generalWidget->setAdvancedMode(advanced); - } - - if (m_databaseKeyWidget->hasAdvancedMode()) { - m_databaseKeyWidget->setAdvancedMode(advanced); - } - - if (m_encryptionWidget->hasAdvancedMode()) { - m_encryptionWidget->setAdvancedMode(advanced); - } - - config()->set(Config::GUI_AdvancedSettings, advanced); -} diff --git a/src/gui/dbsettings/DatabaseSettingsDialog.h b/src/gui/dbsettings/DatabaseSettingsDialog.h index 512c47a1a..83bc56abe 100644 --- a/src/gui/dbsettings/DatabaseSettingsDialog.h +++ b/src/gui/dbsettings/DatabaseSettingsDialog.h @@ -1,4 +1,5 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer * * This program is free software: you can redistribute it and/or modify @@ -15,11 +16,11 @@ * along with this program. If not, see . */ -#ifndef KEEPASSX_DATABASESETTINGSWIDGET_H -#define KEEPASSX_DATABASESETTINGSWIDGET_H +#ifndef KEEPASSXC_DATABASESETTINGSDIALOG_H +#define KEEPASSXC_DATABASESETTINGSDIALOG_H #include "config-keepassx.h" -#include "gui/DialogyWidget.h" +#include "gui/EditWidget.h" #include @@ -30,28 +31,17 @@ class DatabaseSettingsWidgetDatabaseKey; #ifdef WITH_XC_BROWSER class DatabaseSettingsWidgetBrowser; #endif +#ifdef WITH_XC_KEESHARE +class DatabaseSettingsWidgetKeeShare; +#endif +#ifdef WITH_XC_FDOSECRETS +class DatabaseSettingsWidgetFdoSecrets; +#endif class DatabaseSettingsWidgetMaintenance; +class DatabaseSettingsWidgetRemote; class QTabWidget; -namespace Ui -{ - class DatabaseSettingsDialog; -} - -class IDatabaseSettingsPage -{ -public: - virtual ~IDatabaseSettingsPage() - { - } - virtual QString name() = 0; - virtual QIcon icon() = 0; - virtual QWidget* createWidget() = 0; - virtual void loadSettings(QWidget* widget, QSharedPointer db) = 0; - virtual void saveSettings(QWidget* widget) = 0; -}; - -class DatabaseSettingsDialog : public DialogyWidget +class DatabaseSettingsDialog : public EditWidget { Q_OBJECT @@ -61,8 +51,8 @@ public: Q_DISABLE_COPY(DatabaseSettingsDialog); void load(const QSharedPointer& db); - void addSettingsPage(IDatabaseSettingsPage* page); - void showDatabaseKeySettings(); + void showDatabaseKeySettings(int index = 0); + void showRemoteSettings(); signals: void editFinished(bool accepted); @@ -70,29 +60,24 @@ signals: private slots: void save(); void reject(); - void pageChanged(); - void toggleAdvancedMode(bool advanced); private: - enum Page - { - General = 0, - Security = 1 - }; - QSharedPointer m_db; - const QScopedPointer m_ui; QPointer m_generalWidget; QPointer m_securityTabWidget; QPointer m_databaseKeyWidget; QPointer m_encryptionWidget; #ifdef WITH_XC_BROWSER QPointer m_browserWidget; +#endif +#ifdef WITH_XC_KEESHARE + QPointer m_keeShareWidget; +#endif +#ifdef WITH_XC_FDOSECRETS + QPointer m_fdoSecretsWidget; #endif QPointer m_maintenanceWidget; - - class ExtraPage; - QList m_extraPages; + QPointer m_remoteWidget; }; -#endif // KEEPASSX_DATABASESETTINGSWIDGET_H +#endif // KEEPASSXC_DATABASESETTINGSDIALOG_H diff --git a/src/gui/dbsettings/DatabaseSettingsDialog.ui b/src/gui/dbsettings/DatabaseSettingsDialog.ui deleted file mode 100644 index 1e10e4f1d..000000000 --- a/src/gui/dbsettings/DatabaseSettingsDialog.ui +++ /dev/null @@ -1,50 +0,0 @@ - - - DatabaseSettingsDialog - - - - - - - - - - - -1 - - - - - - - - - - - Advanced Settings - - - - - - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok - - - - - - - - - - CategoryListWidget - QWidget -
    gui/CategoryListWidget.h
    - 1 -
    -
    - - -
    diff --git a/src/gui/dbsettings/DatabaseSettingsWidget.cpp b/src/gui/dbsettings/DatabaseSettingsWidget.cpp index b2536f203..99d6fff11 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidget.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -23,9 +23,7 @@ DatabaseSettingsWidget::DatabaseSettingsWidget(QWidget* parent) { } -DatabaseSettingsWidget::~DatabaseSettingsWidget() -{ -} +DatabaseSettingsWidget::~DatabaseSettingsWidget() = default; /** * Load the database to be configured by this page and initialize the page. @@ -33,7 +31,7 @@ DatabaseSettingsWidget::~DatabaseSettingsWidget() * * @param db database object to be configured */ -void DatabaseSettingsWidget::load(QSharedPointer db) +void DatabaseSettingsWidget::loadSettings(QSharedPointer db) { m_db = std::move(db); initialize(); diff --git a/src/gui/dbsettings/DatabaseSettingsWidget.h b/src/gui/dbsettings/DatabaseSettingsWidget.h index 243245138..89c048a8d 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidget.h +++ b/src/gui/dbsettings/DatabaseSettingsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -18,7 +18,7 @@ #ifndef KEEPASSXC_DATABASESETTINGSWIDGET_H #define KEEPASSXC_DATABASESETTINGSWIDGET_H -#include "gui/settings/SettingsWidget.h" +#include "gui/SettingsWidget.h" class Database; @@ -34,7 +34,7 @@ public: Q_DISABLE_COPY(DatabaseSettingsWidget); ~DatabaseSettingsWidget() override; - virtual void load(QSharedPointer db); + virtual void loadSettings(QSharedPointer db); const QSharedPointer getDatabase() const; diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp index aa91fa451..fa52c8b8f 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2018 Sami Vänttinen * * This program is free software: you can redistribute it and/or modify @@ -48,8 +48,6 @@ DatabaseSettingsWidgetBrowser::DatabaseSettingsWidgetBrowser(QWidget* parent) // clang-format on connect(m_ui->removeCustomDataButton, SIGNAL(clicked()), SLOT(removeSelectedKey())); - connect(m_ui->convertToCustomData, SIGNAL(clicked()), this, SLOT(convertAttributesToCustomData())); - connect(m_ui->convertToCustomData, SIGNAL(clicked()), this, SLOT(updateSharedKeyList())); connect(m_ui->removeSharedEncryptionKeys, SIGNAL(clicked()), this, SLOT(removeSharedEncryptionKeys())); connect(m_ui->removeSharedEncryptionKeys, SIGNAL(clicked()), this, SLOT(updateSharedKeyList())); connect(m_ui->removeStoredPermissions, SIGNAL(clicked()), this, SLOT(removeStoredPermissions())); @@ -84,7 +82,7 @@ void DatabaseSettingsWidgetBrowser::showEvent(QShowEvent* event) QWidget::showEvent(event); } -bool DatabaseSettingsWidgetBrowser::save() +bool DatabaseSettingsWidgetBrowser::saveSettings() { return true; } @@ -104,9 +102,10 @@ void DatabaseSettingsWidgetBrowser::removeSelectedKey() const QItemSelectionModel* itemSelectionModel = m_ui->customDataTable->selectionModel(); if (itemSelectionModel) { for (const QModelIndex& index : itemSelectionModel->selectedRows(0)) { - QString key = index.data().toString(); - key.insert(0, CustomData::BrowserKeyPrefix); + const auto key = CustomData::getKeyWithPrefix(CustomData::BrowserKeyPrefix, index.data().toString()); + const auto createdKey = CustomData::getKeyWithPrefix(CustomData::Created, index.data().toString()); customData()->remove(key); + customData()->remove(createdKey); } updateModel(); } @@ -126,7 +125,7 @@ void DatabaseSettingsWidgetBrowser::updateModel() if (key.startsWith(CustomData::BrowserKeyPrefix)) { QString strippedKey = key; strippedKey.remove(CustomData::BrowserKeyPrefix); - auto created = customData()->value(QString("%1_%2").arg(CustomData::Created, strippedKey)); + auto created = customData()->value(CustomData::getKeyWithPrefix(CustomData::Created, strippedKey)); auto createdItem = new QStandardItem(created); createdItem->setEditable(false); m_customDataModel->appendRow(QList() @@ -141,7 +140,6 @@ void DatabaseSettingsWidgetBrowser::updateModel() void DatabaseSettingsWidgetBrowser::settingsWarning() { if (!browserSettings()->isEnabled()) { - m_ui->convertToCustomData->setEnabled(false); m_ui->removeSharedEncryptionKeys->setEnabled(false); m_ui->removeStoredPermissions->setEnabled(false); m_ui->customDataTable->setEnabled(false); @@ -150,7 +148,6 @@ void DatabaseSettingsWidgetBrowser::settingsWarning() m_ui->warningWidget->setCloseButtonVisible(false); m_ui->warningWidget->setAutoHideTimeout(-1); } else { - m_ui->convertToCustomData->setEnabled(true); m_ui->removeSharedEncryptionKeys->setEnabled(true); m_ui->removeStoredPermissions->setEnabled(true); m_ui->customDataTable->setEnabled(true); @@ -178,10 +175,8 @@ void DatabaseSettingsWidgetBrowser::removeSharedEncryptionKeys() } if (keysToRemove.isEmpty()) { - MessageBox::information(this, - tr("KeePassXC: No keys found"), - tr("No shared encryption keys found in KeePassXC settings."), - MessageBox::Ok); + MessageBox::information( + this, tr("No keys found"), tr("No shared encryption keys found in KeePassXC settings."), MessageBox::Ok); return; } @@ -191,7 +186,7 @@ void DatabaseSettingsWidgetBrowser::removeSharedEncryptionKeys() const int count = keysToRemove.count(); MessageBox::information(this, - tr("KeePassXC: Removed keys from database"), + tr("Removed keys from database"), tr("Successfully removed %n encryption key(s) from KeePassXC settings.", "", count), MessageBox::Ok); } @@ -220,9 +215,7 @@ void DatabaseSettingsWidgetBrowser::removeStoredPermissions() } if (entry->customData()->contains(BrowserService::KEEPASSXCBROWSER_NAME)) { - entry->beginUpdate(); - entry->customData()->remove(BrowserService::KEEPASSXCBROWSER_NAME); - entry->endUpdate(); + browserService()->removePluginData(entry); ++counter; } progress.setValue(progress.value() + 1); @@ -231,33 +224,17 @@ void DatabaseSettingsWidgetBrowser::removeStoredPermissions() if (counter > 0) { MessageBox::information(this, - tr("KeePassXC: Removed permissions"), + tr("Removed permissions"), tr("Successfully removed permissions from %n entry(s).", "", counter), MessageBox::Ok); } else { MessageBox::information(this, - tr("KeePassXC: No entry with permissions found!"), + tr("No entry with permissions found!"), tr("The active database does not contain an entry with permissions."), MessageBox::Ok); } } -void DatabaseSettingsWidgetBrowser::convertAttributesToCustomData() -{ - if (MessageBox::Yes - != MessageBox::question( - this, - tr("Move KeePassHTTP attributes to custom data"), - tr("Do you really want to convert all legacy browser integration data to the latest standard?\n" - "This is necessary to maintain compatibility with the browser plugin."), - MessageBox::Yes | MessageBox::Cancel, - MessageBox::Cancel)) { - return; - } - - BrowserService::convertAttributesToCustomData(m_db); -} - void DatabaseSettingsWidgetBrowser::refreshDatabaseID() { if (MessageBox::Yes @@ -291,18 +268,16 @@ void DatabaseSettingsWidgetBrowser::editFinished(QStandardItem* item) if (itemSelectionModel) { auto indexList = itemSelectionModel->selectedRows(item->column()); - if (indexList.length() > 0) { - QString newValue = item->index().data().toString(); + if (!indexList.isEmpty()) { + auto newValue = item->index().data().toString(); // The key is edited if (item->column() == 0) { - // Get the old key/value pair, remove it and replace it - m_valueInEdit.insert(0, CustomData::BrowserKeyPrefix); - auto tempValue = customData()->value(m_valueInEdit); - newValue.insert(0, CustomData::BrowserKeyPrefix); + // Update created timestamp with the new key + replaceKey(CustomData::Created, m_valueInEdit, newValue); - m_db->metadata()->customData()->remove(m_valueInEdit); - m_db->metadata()->customData()->set(newValue, tempValue); + // Get the old key/value pair, remove it and replace it + replaceKey(CustomData::BrowserKeyPrefix, m_valueInEdit, newValue); } else { // Replace just the value for (const QString& key : m_db->metadata()->customData()->keys()) { @@ -325,3 +300,15 @@ void DatabaseSettingsWidgetBrowser::updateSharedKeyList() { updateModel(); } + +// Replaces a key and the created timestamp for it +void DatabaseSettingsWidgetBrowser::replaceKey(const QString& prefix, + const QString& oldName, + const QString& newName) const +{ + const auto oldKey = CustomData::getKeyWithPrefix(prefix, oldName); + const auto newKey = CustomData::getKeyWithPrefix(prefix, newName); + const auto tempValue = customData()->value(oldKey); + m_db->metadata()->customData()->remove(oldKey); + m_db->metadata()->customData()->set(newKey, tempValue); +} diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.h b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.h index 9beb40466..25664a71f 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2018 Sami Vänttinen * * This program is free software: you can redistribute it and/or modify @@ -43,15 +43,11 @@ public: ~DatabaseSettingsWidgetBrowser() override; CustomData* customData() const; - inline bool hasAdvancedMode() const override - { - return false; - } public slots: void initialize() override; void uninitialize() override; - bool save() override; + bool saveSettings() override; private slots: void removeSelectedKey(); @@ -59,7 +55,6 @@ private slots: void updateSharedKeyList(); void removeSharedEncryptionKeys(); void removeStoredPermissions(); - void convertAttributesToCustomData(); void refreshDatabaseID(); void editIndex(const QModelIndex& index); void editFinished(QStandardItem* item); @@ -67,6 +62,7 @@ private slots: private: void updateModel(); void settingsWarning(); + void replaceKey(const QString& prefix, const QString& oldName, const QString& newName) const; protected: void showEvent(QShowEvent* event) override; diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.ui b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.ui index 7d6dc00d2..d323e2b47 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.ui +++ b/src/gui/dbsettings/DatabaseSettingsWidgetBrowser.ui @@ -23,6 +23,9 @@ + + 20 + 0 @@ -51,35 +54,6 @@ KeePassXC-Browser settings - - - - - 0 - 0 - - - - Convert KeePassHTTP data - - - Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data - - - - - - - - 0 - 0 - - - - Refresh database root group ID - - - @@ -88,6 +62,9 @@ 0 + + Convert legacy KeePassHTTP attributes to KeePassXC-Browser compatible custom data + Disconnect all browsers @@ -106,6 +83,19 @@ + + + + + 0 + 0 + + + + Refresh database root group ID + + + @@ -186,7 +176,6 @@ removeSharedEncryptionKeys removeStoredPermissions - convertToCustomData refreshDatabaseID customDataTable removeCustomDataButton diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.cpp index 2dae5cbb5..a74b20ead 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -17,7 +17,9 @@ #include "DatabaseSettingsWidgetDatabaseKey.h" +#include "core/Config.h" #include "core/Database.h" +#include "core/PasswordHealth.h" #include "gui/MessageBox.h" #include "gui/databasekey/KeyFileEditWidget.h" #include "gui/databasekey/PasswordEditWidget.h" @@ -25,13 +27,7 @@ #include "keys/ChallengeResponseKey.h" #include "keys/FileKey.h" #include "keys/PasswordKey.h" - -#ifdef Q_OS_MACOS -#include "touchid/TouchID.h" -#endif -#ifdef Q_CC_MSVC -#include "winhello/WindowsHello.h" -#endif +#include "quickunlock/QuickUnlockInterface.h" #include #include @@ -48,17 +44,19 @@ DatabaseSettingsWidgetDatabaseKey::DatabaseSettingsWidgetDatabaseKey(QWidget* pa { auto* vbox = new QVBoxLayout(this); vbox->setSizeConstraint(QLayout::SetMinimumSize); + vbox->setSpacing(20); - // primary password option + // Primary password option vbox->addWidget(m_passwordEditWidget); - // additional key options + // Additional key options m_additionalKeyOptionsToggle->setObjectName("additionalKeyOptionsToggle"); vbox->addWidget(m_additionalKeyOptionsToggle); vbox->addWidget(m_additionalKeyOptions); vbox->setSizeConstraint(QLayout::SetMinimumSize); m_additionalKeyOptions->setLayout(new QVBoxLayout()); m_additionalKeyOptions->layout()->setMargin(0); + m_additionalKeyOptions->layout()->setSpacing(20); m_additionalKeyOptions->layout()->addWidget(m_keyFileEditWidget); #ifdef WITH_XC_YUBIKEY m_additionalKeyOptions->layout()->addWidget(m_yubiKeyEditWidget); @@ -71,40 +69,39 @@ DatabaseSettingsWidgetDatabaseKey::DatabaseSettingsWidgetDatabaseKey(QWidget* pa setLayout(vbox); } -DatabaseSettingsWidgetDatabaseKey::~DatabaseSettingsWidgetDatabaseKey() -{ -} +DatabaseSettingsWidgetDatabaseKey::~DatabaseSettingsWidgetDatabaseKey() = default; -void DatabaseSettingsWidgetDatabaseKey::load(QSharedPointer db) +void DatabaseSettingsWidgetDatabaseKey::loadSettings(QSharedPointer db) { - DatabaseSettingsWidget::load(db); + DatabaseSettingsWidget::loadSettings(db); if (!m_db->key() || m_db->key()->keys().isEmpty()) { - // database has no key, we are about to add a new one + // Database has no key, we are about to add a new one m_passwordEditWidget->changeVisiblePage(KeyComponentWidget::Page::Edit); - m_passwordEditWidget->setPasswordVisible(true); - } - - bool hasAdditionalKeys = false; - for (const auto& key : m_db->key()->keys()) { - if (key->uuid() == PasswordKey::UUID) { - m_passwordEditWidget->setComponentAdded(true); - } else if (key->uuid() == FileKey::UUID) { - m_keyFileEditWidget->setComponentAdded(true); - hasAdditionalKeys = true; + // Focus won't work until the UI settles + QTimer::singleShot(0, m_passwordEditWidget, SLOT(setFocus())); + } else { + bool hasAdditionalKeys = false; + for (const auto& key : m_db->key()->keys()) { + if (key->uuid() == PasswordKey::UUID) { + m_passwordEditWidget->setComponentAdded(true); + } else if (key->uuid() == FileKey::UUID) { + m_keyFileEditWidget->setComponentAdded(true); + hasAdditionalKeys = true; + } } - } #ifdef WITH_XC_YUBIKEY - for (const auto& key : m_db->key()->challengeResponseKeys()) { - if (key->uuid() == ChallengeResponseKey::UUID) { - m_yubiKeyEditWidget->setComponentAdded(true); - hasAdditionalKeys = true; + for (const auto& key : m_db->key()->challengeResponseKeys()) { + if (key->uuid() == ChallengeResponseKey::UUID) { + m_yubiKeyEditWidget->setComponentAdded(true); + hasAdditionalKeys = true; + } } - } #endif - setAdditionalKeyOptionsVisible(hasAdditionalKeys); + setAdditionalKeyOptionsVisible(hasAdditionalKeys); + } connect(m_passwordEditWidget->findChild("removeButton"), SIGNAL(clicked()), SLOT(markDirty())); connect(m_keyFileEditWidget->findChild("removeButton"), SIGNAL(clicked()), SLOT(markDirty())); @@ -128,7 +125,7 @@ void DatabaseSettingsWidgetDatabaseKey::uninitialize() { } -bool DatabaseSettingsWidgetDatabaseKey::save() +bool DatabaseSettingsWidgetDatabaseKey::saveSettings() { m_isDirty |= (m_passwordEditWidget->visiblePage() == KeyComponentWidget::Page::Edit); m_isDirty |= (m_keyFileEditWidget->visiblePage() == KeyComponentWidget::Page::Edit); @@ -137,7 +134,7 @@ bool DatabaseSettingsWidgetDatabaseKey::save() #endif if (m_db->key() && !m_db->key()->keys().isEmpty() && !m_isDirty) { - // key unchanged + // Key unchanged return true; } @@ -161,7 +158,10 @@ bool DatabaseSettingsWidgetDatabaseKey::save() } } - if (m_passwordEditWidget->visiblePage() == KeyComponentWidget::Page::AddNew || m_passwordEditWidget->isEmpty()) { + // Show warning if database password has not been set + if (m_passwordEditWidget->visiblePage() == KeyComponentWidget::Page::AddNew + || (m_passwordEditWidget->visiblePage() == KeyComponentWidget::Page::Edit && m_passwordEditWidget->isEmpty())) { + QScopedPointer msgBox(new QMessageBox(this)); msgBox->setIcon(QMessageBox::Warning); msgBox->setWindowTitle(tr("No password set")); @@ -171,6 +171,7 @@ bool DatabaseSettingsWidgetDatabaseKey::save() auto btn = msgBox->addButton(tr("Continue without password"), QMessageBox::ButtonRole::AcceptRole); msgBox->addButton(QMessageBox::Cancel); msgBox->setDefaultButton(QMessageBox::Cancel); + msgBox->layout()->setSizeConstraint(QLayout::SetMinimumSize); msgBox->exec(); if (msgBox->clickedButton() != btn) { return false; @@ -179,6 +180,34 @@ bool DatabaseSettingsWidgetDatabaseKey::save() return false; } + if (m_passwordEditWidget->visiblePage() == KeyComponentWidget::Page::Edit && !m_passwordEditWidget->isEmpty()) { + // Prevent setting password with a quality less than the minimum required + auto minQuality = qBound(0, config()->get(Config::Security_DatabasePasswordMinimumQuality).toInt(), 4); + if (m_passwordEditWidget->getPasswordQuality() < static_cast(minQuality)) { + MessageBox::critical(this, + tr("Weak password"), + tr("The provided password does not meet the minimum quality requirement."), + MessageBox::Ok, + MessageBox::Ok); + return false; + } + + // Show warning if database password is weak or poor + if (m_passwordEditWidget->getPasswordQuality() < PasswordHealth::Quality::Good) { + auto dialogResult = + MessageBox::warning(this, + tr("Weak password"), + tr("This is a weak password! For better protection of your secrets, " + "you should choose a stronger password."), + MessageBox::ContinueWithWeakPass | MessageBox::Cancel, + MessageBox::Cancel); + + if (dialogResult == MessageBox::Cancel) { + return false; + } + } + } + if (!addToCompositeKey(m_keyFileEditWidget, newKey, oldFileKey)) { return false; } @@ -200,22 +229,23 @@ bool DatabaseSettingsWidgetDatabaseKey::save() m_db->setKey(newKey, true, false, false); -#if defined(Q_OS_MACOS) - TouchID::getInstance().reset(m_db->filePath()); -#elif defined(Q_CC_MSVC) - getWindowsHello()->reset(m_db->filePath()); -#endif + getQuickUnlock()->reset(m_db->publicUuid()); emit editFinished(true); if (m_isDirty) { m_db->markAsModified(); } + // Reset fields + initialize(); + return true; } void DatabaseSettingsWidgetDatabaseKey::discard() { + // Reset fields + initialize(); emit editFinished(false); } diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.h b/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.h index a7d90e43e..3e4bcdc73 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetDatabaseKey.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -15,8 +15,8 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_DATABASESETTINGSPAGECHANGEDBKEY_H -#define KEEPASSXC_DATABASESETTINGSPAGECHANGEDBKEY_H +#ifndef KEEPASSXC_DATABASESETTINGSWIDGETDATABASEKEY_H +#define KEEPASSXC_DATABASESETTINGSWIDGETDATABASEKEY_H #include "DatabaseSettingsWidget.h" #include "config-keepassx.h" @@ -42,17 +42,12 @@ public: Q_DISABLE_COPY(DatabaseSettingsWidgetDatabaseKey); ~DatabaseSettingsWidgetDatabaseKey() override; - void load(QSharedPointer db) override; - - inline bool hasAdvancedMode() const override - { - return false; - } + void loadSettings(QSharedPointer db) override; public slots: void initialize() override; void uninitialize() override; - bool save() override; + bool saveSettings() override; void discard() override; private slots: @@ -82,4 +77,4 @@ private: #endif }; -#endif // KEEPASSXC_DATABASESETTINGSPAGECHANGEDBKEY_H +#endif // KEEPASSXC_DATABASESETTINGSWIDGETDATABASEKEY_H diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.cpp index be13cd188..b9016499b 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -27,8 +27,24 @@ #include "format/KeePass2Writer.h" #include "gui/MessageBox.h" +#include + const char* DatabaseSettingsWidgetEncryption::CD_DECRYPTION_TIME_PREFERENCE_KEY = "KPXC_DECRYPTION_TIME_PREFERENCE"; +#define IS_ARGON2(uuid) (uuid == KeePass2::KDF_ARGON2D || uuid == KeePass2::KDF_ARGON2ID) +#define IS_AES_KDF(uuid) (uuid == KeePass2::KDF_AES_KDBX3 || uuid == KeePass2::KDF_AES_KDBX4) + +namespace +{ + QString getTextualEncryptionTime(int millisecs) + { + if (millisecs < 1000) { + return QObject::tr("%1 ms", "milliseconds", millisecs).arg(millisecs); + } + return QObject::tr("%1 s", "seconds", millisecs / 1000).arg(millisecs / 1000.0, 0, 'f', 1); + } +} // namespace + DatabaseSettingsWidgetEncryption::DatabaseSettingsWidgetEncryption(QWidget* parent) : DatabaseSettingsWidget(parent) , m_ui(new Ui::DatabaseSettingsWidgetEncryption()) @@ -36,33 +52,30 @@ DatabaseSettingsWidgetEncryption::DatabaseSettingsWidgetEncryption(QWidget* pare m_ui->setupUi(this); connect(m_ui->transformBenchmarkButton, SIGNAL(clicked()), SLOT(benchmarkTransformRounds())); - connect(m_ui->kdfComboBox, SIGNAL(currentIndexChanged(int)), SLOT(changeKdf(int))); + connect(m_ui->kdfComboBox, SIGNAL(currentIndexChanged(int)), SLOT(updateKdfFields())); + connect(m_ui->compatibilitySelection, SIGNAL(currentIndexChanged(int)), SLOT(loadKdfAlgorithms())); m_ui->formatCannotBeChanged->setVisible(false); connect(m_ui->memorySpinBox, SIGNAL(valueChanged(int)), this, SLOT(memoryChanged(int))); connect(m_ui->parallelismSpinBox, SIGNAL(valueChanged(int)), this, SLOT(parallelismChanged(int))); - m_ui->compatibilitySelection->addItem(tr("KDBX 4 (recommended)"), KeePass2::KDF_ARGON2D.toByteArray()); - m_ui->compatibilitySelection->addItem(tr("KDBX 3"), KeePass2::KDF_AES_KDBX3.toByteArray()); + m_ui->compatibilitySelection->addItem(tr("KDBX 4 (recommended)"), KeePass2::KDF_ARGON2D); + m_ui->compatibilitySelection->addItem(tr("KDBX 3"), KeePass2::KDF_AES_KDBX3); m_ui->decryptionTimeSlider->setMinimum(Kdf::MIN_ENCRYPTION_TIME / 100); m_ui->decryptionTimeSlider->setMaximum(Kdf::MAX_ENCRYPTION_TIME / 100); m_ui->decryptionTimeSlider->setValue(Kdf::DEFAULT_ENCRYPTION_TIME / 100); updateDecryptionTime(m_ui->decryptionTimeSlider->value()); m_ui->transformBenchmarkButton->setText( - QObject::tr("Benchmark %1 delay") - .arg(DatabaseSettingsWidgetEncryption::getTextualEncryptionTime(Kdf::DEFAULT_ENCRYPTION_TIME))); - m_ui->minTimeLabel->setText(DatabaseSettingsWidgetEncryption::getTextualEncryptionTime(Kdf::MIN_ENCRYPTION_TIME)); - m_ui->maxTimeLabel->setText(DatabaseSettingsWidgetEncryption::getTextualEncryptionTime(Kdf::MAX_ENCRYPTION_TIME)); + QObject::tr("Benchmark %1 delay").arg(getTextualEncryptionTime(Kdf::DEFAULT_ENCRYPTION_TIME))); + m_ui->minTimeLabel->setText(getTextualEncryptionTime(Kdf::MIN_ENCRYPTION_TIME)); + m_ui->maxTimeLabel->setText(getTextualEncryptionTime(Kdf::MAX_ENCRYPTION_TIME)); - connect(m_ui->activateChangeDecryptionTimeButton, SIGNAL(clicked()), SLOT(activateChangeDecryptionTime())); connect(m_ui->decryptionTimeSlider, SIGNAL(valueChanged(int)), SLOT(updateDecryptionTime(int))); - connect(m_ui->compatibilitySelection, SIGNAL(currentIndexChanged(int)), SLOT(updateFormatCompatibility(int))); - // conditions under which a key re-transformation is needed + // Conditions under which a key re-transformation is needed connect(m_ui->decryptionTimeSlider, SIGNAL(valueChanged(int)), SLOT(markDirty())); connect(m_ui->compatibilitySelection, SIGNAL(currentIndexChanged(int)), SLOT(markDirty())); - connect(m_ui->activateChangeDecryptionTimeButton, SIGNAL(clicked()), SLOT(markDirty())); connect(m_ui->algorithmComboBox, SIGNAL(currentIndexChanged(int)), SLOT(markDirty())); connect(m_ui->kdfComboBox, SIGNAL(currentIndexChanged(int)), SLOT(markDirty())); connect(m_ui->transformRoundsSpinBox, SIGNAL(valueChanged(int)), SLOT(markDirty())); @@ -70,12 +83,15 @@ DatabaseSettingsWidgetEncryption::DatabaseSettingsWidgetEncryption(QWidget* pare connect(m_ui->parallelismSpinBox, SIGNAL(valueChanged(int)), SLOT(markDirty())); } -DatabaseSettingsWidgetEncryption::~DatabaseSettingsWidgetEncryption() -{ -} +DatabaseSettingsWidgetEncryption::~DatabaseSettingsWidgetEncryption() = default; -#define IS_ARGON2(uuid) (uuid == KeePass2::KDF_ARGON2D || uuid == KeePass2::KDF_ARGON2ID) -#define IS_AES_KDF(uuid) (uuid == KeePass2::KDF_AES_KDBX3 || uuid == KeePass2::KDF_AES_KDBX4) +void DatabaseSettingsWidgetEncryption::showBasicEncryption(int decryptionMillisecs) +{ + // Show the basic encryption settings tab and set the slider to the stored values + m_ui->decryptionTimeSlider->setValue(decryptionMillisecs / 100); + m_ui->encryptionSettingsTabWidget->setCurrentWidget(m_ui->basicTab); + m_initWithAdvanced = false; +} void DatabaseSettingsWidgetEncryption::initialize() { @@ -84,18 +100,20 @@ void DatabaseSettingsWidgetEncryption::initialize() return; } - bool isDirty = false; + bool isNewDatabase = false; - if (!m_db->kdf()) { - m_db->setKdf(KeePass2::uuidToKdf(KeePass2::KDF_ARGON2D)); - isDirty = true; - } + // Check for uninitialized database parameters and set initial values accordingly if (!m_db->key()) { m_db->setKey(QSharedPointer::create(), true, false, false); + m_db->setKdf(KeePass2::uuidToKdf(KeePass2::KDF_ARGON2D)); m_db->setCipher(KeePass2::CIPHER_AES256); - isDirty = true; + isNewDatabase = true; + } else if (!m_db->kdf()) { + m_db->setKdf(KeePass2::uuidToKdf(KeePass2::KDF_ARGON2D)); + isNewDatabase = true; } - bool kdbx3Enabled = KeePass2Writer::kdbxVersionRequired(m_db.data(), true, true) <= KeePass2::FILE_VERSION_3_1; + + // Initialize the basic settings tab // check if the DB's custom data has a decryption time setting stored // and set the slider to it, otherwise just state that the time is unchanged @@ -103,30 +121,55 @@ void DatabaseSettingsWidgetEncryption::initialize() auto* cd = m_db->metadata()->customData(); if (cd->hasKey(CD_DECRYPTION_TIME_PREFERENCE_KEY)) { int decryptionTime = qMax(100, cd->value(CD_DECRYPTION_TIME_PREFERENCE_KEY).toInt()); - bool block = m_ui->decryptionTimeSlider->blockSignals(true); - m_ui->decryptionTimeSlider->setValue(decryptionTime / 100); - updateDecryptionTime(decryptionTime / 100); - m_ui->decryptionTimeSlider->blockSignals(block); - m_ui->activateChangeDecryptionTimeButton->setVisible(false); + showBasicEncryption(decryptionTime); + } else if (isNewDatabase) { + showBasicEncryption(); } else { - m_ui->decryptionTimeSettings->setVisible(isDirty); - m_ui->activateChangeDecryptionTimeButton->setVisible(!isDirty); - if (!isDirty) { - m_ui->decryptionTimeValueLabel->setText(tr("unchanged", "Database decryption time is unchanged")); - } + // Set default basic decryption time + m_ui->decryptionTimeSlider->setValue(Kdf::DEFAULT_ENCRYPTION_TIME / 100); + // Show the advanced encryption settings tab + m_ui->encryptionSettingsTabWidget->setCurrentWidget(m_ui->advancedTab); + m_initWithAdvanced = true; } - updateFormatCompatibility(m_db->kdf()->uuid() == KeePass2::KDF_AES_KDBX3 ? KDBX3 : KDBX4, isDirty); - setupAlgorithmComboBox(); - setupKdfComboBox(kdbx3Enabled); - loadKdfParameters(); + // Initialize the advanced settings tab - if (!kdbx3Enabled) { + // Set up the KDBX version selector + bool isKdbx3 = m_db->formatVersion() <= KeePass2::FILE_VERSION_3_1; + m_ui->compatibilitySelection->blockSignals(true); + m_ui->compatibilitySelection->setCurrentIndex(isKdbx3 ? KDBX3 : KDBX4); + m_ui->compatibilitySelection->blockSignals(false); + + // Disable KDBX selector if downgrading would lose data + if (!isKdbx3 && KeePass2Writer::kdbxVersionRequired(m_db.data(), true, true) >= KeePass2::FILE_VERSION_4) { m_ui->compatibilitySelection->setEnabled(false); m_ui->formatCannotBeChanged->setVisible(true); } - m_isDirty = isDirty; + // Set up encryption ciphers + m_ui->algorithmComboBox->clear(); + for (auto& cipher : asConst(KeePass2::CIPHERS)) { + m_ui->algorithmComboBox->addItem(KeePass2::cipherToString(cipher), cipher); + } + int cipherIndex = m_ui->algorithmComboBox->findData(m_db->cipher()); + if (cipherIndex > -1) { + m_ui->algorithmComboBox->setCurrentIndex(cipherIndex); + } + + // Set up KDF algorithms + loadKdfAlgorithms(); + + // Perform Benchmark if requested + if (isNewDatabase) { + if (IS_ARGON2(m_ui->kdfComboBox->currentData())) { + m_ui->memorySpinBox->setValue(16); + m_ui->parallelismSpinBox->setValue(2); + } + benchmarkTransformRounds(); + } + + // New databases always require saving + m_isDirty = isNewDatabase; } void DatabaseSettingsWidgetEncryption::uninitialize() @@ -136,79 +179,76 @@ void DatabaseSettingsWidgetEncryption::uninitialize() void DatabaseSettingsWidgetEncryption::showEvent(QShowEvent* event) { QWidget::showEvent(event); - m_ui->decryptionTimeSlider->setFocus(); -} -void DatabaseSettingsWidgetEncryption::setupAlgorithmComboBox() -{ - m_ui->algorithmComboBox->clear(); - for (auto& cipher : asConst(KeePass2::CIPHERS)) { - m_ui->algorithmComboBox->addItem(cipher.second.toUtf8(), cipher.first.toByteArray()); - } - int cipherIndex = m_ui->algorithmComboBox->findData(m_db->cipher().toByteArray()); - if (cipherIndex > -1) { - m_ui->algorithmComboBox->setCurrentIndex(cipherIndex); + if (m_ui->decryptionTimeSlider->isVisible()) { + m_ui->decryptionTimeSlider->setFocus(); + } else { + m_ui->transformRoundsSpinBox->setFocus(); } } -void DatabaseSettingsWidgetEncryption::setupKdfComboBox(bool enableKdbx3) +void DatabaseSettingsWidgetEncryption::loadKdfAlgorithms() { - // Set up kdf combo box - bool block = m_ui->kdfComboBox->blockSignals(true); + bool isKdbx3 = m_ui->compatibilitySelection->currentIndex() == KDBX3; + + m_ui->kdfComboBox->blockSignals(true); m_ui->kdfComboBox->clear(); - for (auto& kdf : asConst(KeePass2::KDFS)) { - if (kdf.first != KeePass2::KDF_AES_KDBX3 or enableKdbx3) { - m_ui->kdfComboBox->addItem(kdf.second.toUtf8(), kdf.first.toByteArray()); + const auto& kdfs = isKdbx3 ? KeePass2::KDBX3_KDFS : KeePass2::KDBX4_KDFS; + for (auto& kdf : kdfs) { + m_ui->kdfComboBox->addItem(KeePass2::kdfToString(kdf), kdf); + // Set current index to the current database KDF if it matches + if (m_db && m_db->kdf() && m_db->kdf()->uuid() == kdf) { + m_ui->kdfComboBox->setCurrentIndex(m_ui->kdfComboBox->count() - 1); } } - m_ui->kdfComboBox->blockSignals(block); + m_ui->kdfComboBox->blockSignals(false); + + // Ensure consistency with current index + updateKdfFields(); } void DatabaseSettingsWidgetEncryption::loadKdfParameters() { - Q_ASSERT(m_db); if (!m_db) { return; } auto kdf = m_db->kdf(); - Q_ASSERT(kdf); if (!kdf) { return; } - int kdfIndex = m_ui->kdfComboBox->findData(m_db->kdf()->uuid().toByteArray()); - if (kdfIndex > -1) { - bool block = m_ui->kdfComboBox->blockSignals(true); - m_ui->kdfComboBox->setCurrentIndex(kdfIndex); - m_ui->kdfComboBox->blockSignals(block); - } - - m_ui->transformRoundsSpinBox->setValue(kdf->rounds()); - if (IS_ARGON2(m_db->kdf()->uuid())) { + // Load database KDF parameters if equal to current choice + bool dbIsArgon2 = IS_ARGON2(kdf->uuid()); + bool kdfIsArgon2 = IS_ARGON2(m_ui->kdfComboBox->currentData().toUuid()); + if (dbIsArgon2 && kdfIsArgon2) { + // Set Argon2 parameters auto argon2Kdf = kdf.staticCast(); + m_ui->transformRoundsSpinBox->setValue(argon2Kdf->rounds()); m_ui->memorySpinBox->setValue(static_cast(argon2Kdf->memory()) / (1 << 10)); m_ui->parallelismSpinBox->setValue(argon2Kdf->parallelism()); + } else if (!dbIsArgon2 && !kdfIsArgon2) { + // Set AES KDF parameters + m_ui->transformRoundsSpinBox->setValue(kdf->rounds()); + } else { + // Set reasonable defaults and then benchmark + if (kdfIsArgon2) { + m_ui->memorySpinBox->setValue(16); + m_ui->parallelismSpinBox->setValue(2); + } + benchmarkTransformRounds(); } - - updateKdfFields(); } void DatabaseSettingsWidgetEncryption::updateKdfFields() { - QUuid id = m_db->kdf()->uuid(); + bool isArgon2 = IS_ARGON2(m_ui->kdfComboBox->currentData().toUuid()); + m_ui->memoryUsageLabel->setVisible(isArgon2); + m_ui->memorySpinBox->setVisible(isArgon2); + m_ui->parallelismLabel->setVisible(isArgon2); + m_ui->parallelismSpinBox->setVisible(isArgon2); - m_ui->memoryUsageLabel->setVisible(IS_ARGON2(id)); - m_ui->memorySpinBox->setVisible(IS_ARGON2(id)); - m_ui->parallelismLabel->setVisible(IS_ARGON2(id)); - m_ui->parallelismSpinBox->setVisible(IS_ARGON2(id)); -} - -void DatabaseSettingsWidgetEncryption::activateChangeDecryptionTime() -{ - m_ui->decryptionTimeSettings->setVisible(true); - m_ui->activateChangeDecryptionTimeButton->setVisible(false); - updateDecryptionTime(m_ui->decryptionTimeSlider->value()); + loadKdfParameters(); } void DatabaseSettingsWidgetEncryption::markDirty() @@ -216,31 +256,34 @@ void DatabaseSettingsWidgetEncryption::markDirty() m_isDirty = true; } -bool DatabaseSettingsWidgetEncryption::save() +bool DatabaseSettingsWidgetEncryption::saveSettings() { Q_ASSERT(m_db); if (!m_db) { return false; } + if (m_initWithAdvanced != isAdvancedMode()) { + // Switched from basic <-> advanced mode, need to recalculate everything + m_isDirty = true; + } + if (m_db->key() && !m_db->key()->keys().isEmpty() && !m_isDirty) { - // nothing has changed, don't re-transform + // Nothing has changed, don't re-transform return true; } - auto kdf = m_db->kdf(); - Q_ASSERT(kdf); - - if (!advancedMode()) { + if (!isAdvancedMode()) { + // Basic mode maintains current database KDF + auto kdf = m_db->kdf(); + Q_ASSERT(kdf); if (kdf && !m_isDirty && !m_ui->decryptionTimeSettings->isVisible()) { return true; } - int time = m_ui->decryptionTimeSlider->value() * 100; - updateFormatCompatibility(m_ui->compatibilitySelection->currentIndex(), false); - QApplication::setOverrideCursor(Qt::BusyCursor); + int time = m_ui->decryptionTimeSlider->value() * 100; int rounds = AsyncTask::runAndWaitForFuture([&kdf, time]() { return kdf->benchmark(time); }); kdf->setRounds(rounds); @@ -255,12 +298,11 @@ bool DatabaseSettingsWidgetEncryption::save() return ok; } - // remove a stored decryption time from custom data when advanced settings are used - // we don't know it until we actually run the KDF - m_db->metadata()->customData()->remove(CD_DECRYPTION_TIME_PREFERENCE_KEY); + // Advanced mode sets KDF + auto kdfChoice = m_ui->kdfComboBox->currentData().toUuid(); // first perform safety check for KDF rounds - if (IS_ARGON2(kdf->uuid()) && m_ui->transformRoundsSpinBox->value() > 10000) { + if (IS_ARGON2(kdfChoice) && m_ui->transformRoundsSpinBox->value() > 10000) { QMessageBox warning; warning.setIcon(QMessageBox::Warning); warning.setWindowTitle(tr("Number of rounds too high", "Key transformation rounds")); @@ -269,11 +311,12 @@ bool DatabaseSettingsWidgetEncryption::save() auto ok = warning.addButton(tr("Understood, keep number"), QMessageBox::ButtonRole::AcceptRole); auto cancel = warning.addButton(tr("Cancel"), QMessageBox::ButtonRole::RejectRole); warning.setDefaultButton(cancel); + warning.layout()->setSizeConstraint(QLayout::SetMinimumSize); warning.exec(); if (warning.clickedButton() != ok) { return false; } - } else if (IS_AES_KDF(kdf->uuid()) && m_ui->transformRoundsSpinBox->value() < 100000) { + } else if (IS_AES_KDF(kdfChoice) && m_ui->transformRoundsSpinBox->value() < 100000) { QMessageBox warning; warning.setIcon(QMessageBox::Warning); warning.setWindowTitle(tr("Number of rounds too low", "Key transformation rounds")); @@ -282,15 +325,21 @@ bool DatabaseSettingsWidgetEncryption::save() auto ok = warning.addButton(tr("Understood, keep number"), QMessageBox::ButtonRole::AcceptRole); auto cancel = warning.addButton(tr("Cancel"), QMessageBox::ButtonRole::RejectRole); warning.setDefaultButton(cancel); + warning.layout()->setSizeConstraint(QLayout::SetMinimumSize); warning.exec(); if (warning.clickedButton() != ok) { return false; } } - m_db->setCipher(QUuid(m_ui->algorithmComboBox->currentData().toByteArray())); + m_db->setCipher(m_ui->algorithmComboBox->currentData().toUuid()); + + // remove a stored decryption time from custom data when advanced settings are used + // we don't know it until we actually run the KDF + m_db->metadata()->customData()->remove(CD_DECRYPTION_TIME_PREFERENCE_KEY); // Save kdf parameters + auto kdf = KeePass2::uuidToKdf(kdfChoice); kdf->setRounds(m_ui->transformRoundsSpinBox->value()); if (IS_ARGON2(kdf->uuid())) { auto argon2Kdf = kdf.staticCast(); @@ -318,10 +367,11 @@ void DatabaseSettingsWidgetEncryption::benchmarkTransformRounds(int millisecs) { QApplication::setOverrideCursor(Qt::BusyCursor); m_ui->transformBenchmarkButton->setEnabled(false); - m_ui->transformRoundsSpinBox->setFocus(); + m_ui->transformRoundsSpinBox->setEnabled(false); + m_ui->transformRoundsSpinBox->clear(); // Create a new kdf with the current parameters - auto kdf = KeePass2::uuidToKdf(QUuid(m_ui->kdfComboBox->currentData().toByteArray())); + auto kdf = KeePass2::uuidToKdf(m_ui->kdfComboBox->currentData().toUuid()); kdf->setRounds(m_ui->transformRoundsSpinBox->value()); if (IS_ARGON2(kdf->uuid())) { auto argon2Kdf = kdf.staticCast(); @@ -340,24 +390,12 @@ void DatabaseSettingsWidgetEncryption::benchmarkTransformRounds(int millisecs) m_ui->transformRoundsSpinBox->setValue(rounds); m_ui->transformBenchmarkButton->setEnabled(true); + m_ui->transformRoundsSpinBox->setEnabled(true); + m_ui->transformRoundsSpinBox->setFocus(); m_ui->decryptionTimeSlider->setValue(millisecs / 100); QApplication::restoreOverrideCursor(); } -void DatabaseSettingsWidgetEncryption::changeKdf(int index) -{ - Q_ASSERT(m_db); - if (!m_db) { - return; - } - - QUuid id(m_ui->kdfComboBox->itemData(index).toByteArray()); - m_db->setKdf(KeePass2::uuidToKdf(id)); - updateKdfFields(); - activateChangeDecryptionTime(); - benchmarkTransformRounds(); -} - /** * Update memory spin box suffix on value change. */ @@ -374,59 +412,12 @@ void DatabaseSettingsWidgetEncryption::parallelismChanged(int value) m_ui->parallelismSpinBox->setSuffix(tr(" thread(s)", "Threads for parallel execution (KDF settings)", value)); } -void DatabaseSettingsWidgetEncryption::setAdvancedMode(bool advanced) +bool DatabaseSettingsWidgetEncryption::isAdvancedMode() { - DatabaseSettingsWidget::setAdvancedMode(advanced); - - if (advanced) { - loadKdfParameters(); - m_ui->stackedWidget->setCurrentIndex(1); - } else { - m_ui->compatibilitySelection->setCurrentIndex(m_db->kdf()->uuid() == KeePass2::KDF_AES_KDBX3 ? KDBX3 : KDBX4); - m_ui->stackedWidget->setCurrentIndex(0); - } + return m_ui->encryptionSettingsTabWidget->currentWidget() == m_ui->advancedTab; } void DatabaseSettingsWidgetEncryption::updateDecryptionTime(int value) { - m_ui->decryptionTimeValueLabel->setText(DatabaseSettingsWidgetEncryption::getTextualEncryptionTime(value * 100)); -} - -void DatabaseSettingsWidgetEncryption::updateFormatCompatibility(int index, bool retransform) -{ - Q_ASSERT(m_db); - if (!m_db) { - return; - } - - if (m_ui->compatibilitySelection->currentIndex() != index) { - bool block = m_ui->compatibilitySelection->blockSignals(true); - m_ui->compatibilitySelection->setCurrentIndex(index); - m_ui->compatibilitySelection->blockSignals(block); - } - - QUuid kdfUuid(m_ui->compatibilitySelection->itemData(index).toByteArray()); - if (retransform) { - auto kdf = KeePass2::uuidToKdf(kdfUuid); - m_db->setKdf(kdf); - - if (IS_ARGON2(kdf->uuid())) { - auto argon2Kdf = kdf.staticCast(); - // Default to 64 MiB of memory and 2 threads - // these settings are safe for desktop and mobile devices - argon2Kdf->setMemory(1 << 16); - argon2Kdf->setParallelism(2); - } - - activateChangeDecryptionTime(); - } -} - -QString DatabaseSettingsWidgetEncryption::getTextualEncryptionTime(int millisecs) -{ - if (millisecs < 1000) { - return QObject::tr("%1 ms", "milliseconds", millisecs).arg(millisecs); - } else { - return QObject::tr("%1 s", "seconds", millisecs / 1000).arg(millisecs / 1000.0, 0, 'f', 1); - } + m_ui->decryptionTimeValueLabel->setText(getTextualEncryptionTime(value * 100)); } diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.h b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.h index c3d7ccf74..6b87bd462 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -37,37 +37,28 @@ public: Q_DISABLE_COPY(DatabaseSettingsWidgetEncryption); ~DatabaseSettingsWidgetEncryption() override; - inline bool hasAdvancedMode() const override - { - return true; - } - void setAdvancedMode(bool advanced) override; - public slots: void initialize() override; void uninitialize() override; - bool save() override; - - static QString getTextualEncryptionTime(int millisecs); + bool saveSettings() override; protected: void showEvent(QShowEvent* event) override; private slots: void benchmarkTransformRounds(int millisecs = Kdf::DEFAULT_ENCRYPTION_TIME); - void changeKdf(int index); void memoryChanged(int value); void parallelismChanged(int value); void updateDecryptionTime(int value); - void updateFormatCompatibility(int index, bool retransform = true); - void setupAlgorithmComboBox(); - void setupKdfComboBox(bool enableKdbx3); + void loadKdfAlgorithms(); void loadKdfParameters(); void updateKdfFields(); - void activateChangeDecryptionTime(); void markDirty(); private: + bool isAdvancedMode(); + void showBasicEncryption(int decryptionMillisecs = Kdf::DEFAULT_ENCRYPTION_TIME); + enum FormatSelection { KDBX4, @@ -76,7 +67,7 @@ private: static const char* CD_DECRYPTION_TIME_PREFERENCE_KEY; bool m_isDirty = false; - bool m_formatCompatibilityDirty = false; + bool m_initWithAdvanced = false; const QScopedPointer m_ui; }; diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.ui b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.ui index f43bf9ddb..dd5efe671 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.ui +++ b/src/gui/dbsettings/DatabaseSettingsWidgetEncryption.ui @@ -6,23 +6,40 @@ 0 0 - 585 - 339 + 451 + 329 - + - - - 0 + + + QFrame::NoFrame - - + + QFrame::Plain + + + true + + + + + 0 + 0 + 433 + 311 + + + + + 6 + 0 - 0 + 10 0 @@ -30,6 +47,60 @@ 0 + + + + QFormLayout::DontWrapRows + + + 2 + + + + + + 75 + true + + + + Database format: + + + + + + + + 0 + 0 + + + + Unless you need to open your database with other programs, always use the latest format. + + + Database format + + + + + + + + true + + + + Format cannot be changed: Your database uses KDBX 4 features + + + true + + + + + @@ -46,405 +117,427 @@ - - - - - - Decryption Time: - - - - - - - ?? s - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Change existing decryption time - - - Change - - - - - - - - - - - - Decryption time in seconds - - - 1 - - - 10 - - - 10 - - - Qt::Horizontal - - - QSlider::TicksBelow - - - 5 - - - - - - - - - ?? ms - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - ? s - - - - - - - - - - 0 - 0 - - - - Higher values offer more protection, but opening the database will take longer. - - - true - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 20 - - - - - - - - - - - 2 - - - - - Database format: - - - - - - - - 0 - 0 - - - - Database format - - - - - - - - true - - - - Format cannot be changed: Your database uses KDBX 4 features - - - - - + + + 75 + true + + - Unless you need to open your database with other programs, always use the latest format. + Encryption Settings: - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - Encryption Algorithm: + + + + QTabWidget::North + + QTabWidget::Rounded + + + 0 + + + + Basic + + + + 6 + + + 9 + + + 6 + + + 9 + + + 6 + + + + + + + + 75 + true + + + + Decryption Time: + + + + + + + + 50 + false + + + + ?? s + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + 6 + + + 0 + + + 6 + + + 9 + + + + + Decryption time in seconds + + + 1 + + + 10 + + + 10 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 5 + + + + + + + + + ?? ms + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + ? s + + + + + + + + + + 0 + 0 + + + + Higher values offer more protection, but opening the database will take longer. + + + true + + + + + + + Qt::Vertical + + + + 20 + 0 + + + + + + + + + + + + Advanced + + + + 6 + + + 6 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 150 + 0 + + + + + 150 + 16777215 + + + + Parallelism + + + 1 + + + 128 + + + + + + + Parallelism: + + + + + + + + 150 + 0 + + + + + 150 + 16777215 + + + + Memory usage + + + 1 + + + 1048576 + + + + + + + Memory Usage: + + + + + + + + + + 150 + 0 + + + + + 150 + 16777215 + + + + Transform rounds + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + 1 + + + 1000000000 + + + + + + + Qt::WheelFocus + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Transform rounds: + + + + + + + + 0 + 0 + + + + Key derivation function + + + + + + + Key Derivation Function: + + + + + + + + 0 + 0 + + + + Encryption algorithm + + + + AES: 256 Bit (default) + + + + + Twofish: 256 Bit + + + + + + + + Encryption Algorithm: + + + + + - - - - - 0 - 0 - + + + + Qt::Vertical - - Encryption algorithm - - - - AES: 256 Bit (default) - - - - - Twofish: 256 Bit - - - - - - - - Key Derivation Function: - - - - - - - - 0 - 0 - - - - Key derivation function - - - - - - - Transform rounds: - - - - - - - - - - 150 - 0 - - - - - 150 - 16777215 - - - - Transform rounds - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - 1 - - - 1000000000 - - - - - - - Qt::WheelFocus - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - Memory Usage: - - - - - - + - 150 + 20 0 - - - 150 - 16777215 - - - - Memory usage - - - 1 - - - 1048576 - - - - - - - Parallelism: - - - - - - - - 150 - 0 - - - - - 150 - 16777215 - - - - Parallelism - - - 1 - - - 128 - - + - - - - Qt::Vertical - - - - 20 - 40 - - - - - activateChangeDecryptionTimeButton decryptionTimeSlider - compatibilitySelection algorithmComboBox kdfComboBox transformRoundsSpinBox transformBenchmarkButton memorySpinBox parallelismSpinBox + advancedSettingsButton diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.cpp index 6bc21aec5..c8a9ec8dc 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -18,9 +18,16 @@ #include "DatabaseSettingsWidgetGeneral.h" #include "ui_DatabaseSettingsWidgetGeneral.h" +#include +#include +#include +#include + #include "core/Clock.h" #include "core/Group.h" #include "core/Metadata.h" +#include "gui/DatabaseIcons.h" +#include "gui/IconModels.h" #include "gui/MessageBox.h" DatabaseSettingsWidgetGeneral::DatabaseSettingsWidgetGeneral(QWidget* parent) @@ -29,13 +36,17 @@ DatabaseSettingsWidgetGeneral::DatabaseSettingsWidgetGeneral(QWidget* parent) { m_ui->setupUi(this); + connect(m_ui->dbPublicColorButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetGeneral::pickPublicColor); + connect(m_ui->dbPublicColorClearButton, &QPushButton::clicked, this, [this] { setupPublicColorButton({}); }); + connect(m_ui->dbPublicIconButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetGeneral::pickPublicIcon); + connect(m_ui->dbPublicIconClearButton, &QPushButton::clicked, this, [this] { setupPublicIconButton(-1); }); + connect(m_ui->historyMaxItemsCheckBox, SIGNAL(toggled(bool)), m_ui->historyMaxItemsSpinBox, SLOT(setEnabled(bool))); connect(m_ui->historyMaxSizeCheckBox, SIGNAL(toggled(bool)), m_ui->historyMaxSizeSpinBox, SLOT(setEnabled(bool))); + connect(m_ui->autosaveDelayCheckBox, SIGNAL(toggled(bool)), m_ui->autosaveDelaySpinBox, SLOT(setEnabled(bool))); } -DatabaseSettingsWidgetGeneral::~DatabaseSettingsWidgetGeneral() -{ -} +DatabaseSettingsWidgetGeneral::~DatabaseSettingsWidgetGeneral() = default; void DatabaseSettingsWidgetGeneral::initialize() { @@ -47,21 +58,34 @@ void DatabaseSettingsWidgetGeneral::initialize() m_ui->defaultUsernameEdit->setText(meta->defaultUserName()); m_ui->compressionCheckbox->setChecked(m_db->compressionAlgorithm() != Database::CompressionNone); + m_ui->dbPublicName->setText(m_db->publicName()); + setupPublicColorButton(m_db->publicColor()); + setupPublicIconButton(m_db->publicIcon()); + if (meta->historyMaxItems() > -1) { m_ui->historyMaxItemsSpinBox->setValue(meta->historyMaxItems()); m_ui->historyMaxItemsCheckBox->setChecked(true); } else { m_ui->historyMaxItemsSpinBox->setValue(Metadata::DefaultHistoryMaxItems); + m_ui->historyMaxItemsSpinBox->setEnabled(false); m_ui->historyMaxItemsCheckBox->setChecked(false); } - int historyMaxSizeMiB = qRound(meta->historyMaxSize() / qreal(1048576)); + int historyMaxSizeMiB = qRound(meta->historyMaxSize() / qreal(1024 * 1024)); if (historyMaxSizeMiB > 0) { m_ui->historyMaxSizeSpinBox->setValue(historyMaxSizeMiB); m_ui->historyMaxSizeCheckBox->setChecked(true); } else { - m_ui->historyMaxSizeSpinBox->setValue(Metadata::DefaultHistoryMaxSize); + m_ui->historyMaxSizeSpinBox->setValue(qRound(Metadata::DefaultHistoryMaxSize / qreal(1024 * 1024))); + m_ui->historyMaxSizeSpinBox->setEnabled(false); m_ui->historyMaxSizeCheckBox->setChecked(false); } + if (meta->autosaveDelayMin() > 0) { + m_ui->autosaveDelaySpinBox->setValue(meta->autosaveDelayMin()); + m_ui->autosaveDelayCheckBox->setChecked(true); + } else { + m_ui->autosaveDelayCheckBox->setChecked(false); + m_ui->autosaveDelaySpinBox->setEnabled(false); + } } void DatabaseSettingsWidgetGeneral::uninitialize() @@ -74,7 +98,7 @@ void DatabaseSettingsWidgetGeneral::showEvent(QShowEvent* event) m_ui->dbNameEdit->setFocus(); } -bool DatabaseSettingsWidgetGeneral::save() +bool DatabaseSettingsWidgetGeneral::saveSettings() { auto* meta = m_db->metadata(); @@ -108,6 +132,10 @@ bool DatabaseSettingsWidgetGeneral::save() meta->setRecycleBinEnabled(m_ui->recycleBinEnabledCheckBox->isChecked()); meta->setSettingsChanged(Clock::currentDateTimeUtc()); + m_db->setPublicName(m_ui->dbPublicName->text()); + m_db->setPublicColor(m_ui->dbPublicColorButton->property("color").toString()); + m_db->setPublicIcon(m_ui->dbPublicIconButton->property("iconIndex").toInt()); + bool truncate = false; int historyMaxItems; @@ -132,6 +160,12 @@ bool DatabaseSettingsWidgetGeneral::save() truncate = true; } + int autosaveDelayMin = 0; + if (m_ui->autosaveDelayCheckBox->isChecked()) { + autosaveDelayMin = m_ui->autosaveDelaySpinBox->value(); + } + meta->setAutosaveDelayMin(autosaveDelayMin); + if (truncate) { const QList allEntries = m_db->rootGroup()->entriesRecursive(false); for (Entry* entry : allEntries) { @@ -141,3 +175,79 @@ bool DatabaseSettingsWidgetGeneral::save() return true; } + +void DatabaseSettingsWidgetGeneral::pickPublicColor() +{ + auto oldColor = QColor(m_ui->dbPublicColorButton->property("color").toString()); + auto newColor = QColorDialog::getColor(oldColor); + if (newColor.isValid()) { + setupPublicColorButton(newColor); + } +} + +void DatabaseSettingsWidgetGeneral::setupPublicColorButton(const QColor& color) +{ + m_ui->dbPublicColorClearButton->setVisible(color.isValid()); + if (color.isValid()) { + m_ui->dbPublicColorButton->setStyleSheet(QString("background-color:%1").arg(color.name())); + m_ui->dbPublicColorButton->setProperty("color", color.name()); + } else { + m_ui->dbPublicColorButton->setStyleSheet(""); + m_ui->dbPublicColorButton->setProperty("color", {}); + } +} + +void DatabaseSettingsWidgetGeneral::pickPublicIcon() +{ + QDialog dialog(this); + dialog.setSizeGripEnabled(false); + dialog.setWindowTitle(tr("Select Database Icon")); + + auto iconList = new QListView; + iconList->setFlow(QListView::LeftToRight); + iconList->setMovement(QListView::Static); + iconList->setResizeMode(QListView::Adjust); + iconList->setWrapping(true); + iconList->setSpacing(4); + + auto iconModel = new DefaultIconModel; + iconList->setModel(iconModel); + if (m_ui->dbPublicIconButton->property("iconIndex").toInt() >= 0) { + iconList->setCurrentIndex(iconModel->index(m_ui->dbPublicIconButton->property("iconIndex").toInt(), 0)); + } else { + iconList->setCurrentIndex(iconModel->index(0, 0)); + } + + auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); + auto layout = new QVBoxLayout(&dialog); + layout->addWidget(iconList); + layout->addWidget(buttonBox); + + // Resize the dialog to fit the default icon list + auto cellSize = iconList->sizeHintForIndex(iconModel->index(0, 0)); + auto spacing = iconList->spacing() * 2; + dialog.resize((cellSize.width() + spacing) * 15, (cellSize.height() + spacing) * 6 + 16); + + connect(iconList, &QListView::doubleClicked, &dialog, &QDialog::accept); + connect(buttonBox, &QDialogButtonBox::accepted, &dialog, &QDialog::accept); + connect(buttonBox, &QDialogButtonBox::rejected, &dialog, &QDialog::reject); + connect( + &dialog, &QDialog::accepted, this, [this, iconList] { setupPublicIconButton(iconList->currentIndex().row()); }); + + dialog.exec(); +} + +void DatabaseSettingsWidgetGeneral::setupPublicIconButton(int iconIndex) +{ + auto valid = iconIndex >= 0 && iconIndex < databaseIcons()->count(); + m_ui->dbPublicIconClearButton->setVisible(valid); + if (valid) { + m_ui->dbPublicIconButton->setIcon(databaseIcons()->icon(iconIndex)); + m_ui->dbPublicIconButton->setProperty("iconIndex", iconIndex); + m_ui->dbPublicIconClearButton->setVisible(true); + } else { + m_ui->dbPublicIconButton->setIcon(QIcon()); + m_ui->dbPublicIconButton->setProperty("iconIndex", -1); + m_ui->dbPublicIconClearButton->setVisible(false); + } +} diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.h b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.h index 9e18d4277..7c0c1ebe9 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -20,6 +20,8 @@ #include "DatabaseSettingsWidget.h" +#include + class Database; namespace Ui { @@ -35,19 +37,21 @@ public: Q_DISABLE_COPY(DatabaseSettingsWidgetGeneral); ~DatabaseSettingsWidgetGeneral() override; - inline bool hasAdvancedMode() const override - { - return false; - } - public slots: void initialize() override; void uninitialize() override; - bool save() override; + bool saveSettings() override; protected: void showEvent(QShowEvent* event) override; +private slots: + void pickPublicColor(); + void setupPublicColorButton(const QColor& color); + void pickPublicIcon(); + void setupPublicIconButton(int iconIndex); + +private: const QScopedPointer m_ui; }; diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.ui b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.ui index 34185ad23..324ae6d3d 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.ui +++ b/src/gui/dbsettings/DatabaseSettingsWidgetGeneral.ui @@ -7,7 +7,7 @@ 0 0 453 - 374 + 647 @@ -23,6 +23,9 @@ + + 20 + 0 @@ -89,6 +92,151 @@ + + + + Public Database Metadata + + + + + + + true + + + + Warning: the following settings are not encrypted. + + + + + + + 0 + + + + + Display name: + + + + + + + Publically visible display name used on the unlock dialog + + + Database public display name + + + + + + + Display color: + + + + + + + + + + 30 + 30 + + + + Publically visible color used on the unlock dialog + + + Database public display color chooser + + + + + + + + + + Clear + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Display icon: + + + + + + + + + + 30 + 30 + + + + + + + + 30 + 30 + + + + + + + + Clear + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + @@ -100,20 +248,39 @@ - Maximum number of history items per entry + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that only the specified amount +of entries remain at most. - Max. history items: + Limit the amount of history items per entry to: + + + + + + + Move entries to a recycle bin group +instead of deleting them from the database. +Entries deleted from the recycle bin are +removed from the database. + + + Use recycle bin - Maximum size of history per entry + When saving this setting or editing an entry +the oldest history items of an entry will be +removed such that the remaining history items +add up to the specified amount at most. - Max. history size: + Limit the total size of history items per entry to: @@ -149,13 +316,6 @@ - - - - Use recycle bin - - - @@ -190,6 +350,58 @@ + + + + + + Autosave delay since last change + + + Autosave delay since last change checkbox + + + Autosave delay + + + + + + + Autosave delay since last change in minutes + + + Autosave delay since last change in minutes + + + min + + + 0 + + + 420000000 + + + 5 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.cpp index 09650c6b0..fea6bc2a3 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.cpp @@ -42,9 +42,7 @@ DatabaseSettingsWidgetMaintenance::DatabaseSettingsWidgetMaintenance(QWidget* pa SLOT(selectionChanged())); } -DatabaseSettingsWidgetMaintenance::~DatabaseSettingsWidgetMaintenance() -{ -} +DatabaseSettingsWidgetMaintenance::~DatabaseSettingsWidgetMaintenance() = default; void DatabaseSettingsWidgetMaintenance::populateIcons(QSharedPointer db) { diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.h b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.h index 5ee6d55fb..463ad89a8 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2023 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 @@ -37,15 +37,10 @@ public: Q_DISABLE_COPY(DatabaseSettingsWidgetMaintenance); ~DatabaseSettingsWidgetMaintenance() override; - inline bool hasAdvancedMode() const override - { - return false; - } - public slots: void initialize() override; - void uninitialize() override{}; - inline bool save() override + void uninitialize() override {}; + inline bool saveSettings() override { return true; }; diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.ui b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.ui index e1d06f6f5..d5824e67b 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.ui +++ b/src/gui/dbsettings/DatabaseSettingsWidgetMaintenance.ui @@ -23,6 +23,9 @@ + + 20 + 0 diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.cpp b/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.cpp index 0a1dccb5f..f474fe8d6 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.cpp +++ b/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -28,9 +28,7 @@ DatabaseSettingWidgetMetaData::DatabaseSettingWidgetMetaData(QWidget* parent) m_ui->setupUi(this); } -DatabaseSettingWidgetMetaData::~DatabaseSettingWidgetMetaData() -{ -} +DatabaseSettingWidgetMetaData::~DatabaseSettingWidgetMetaData() = default; void DatabaseSettingWidgetMetaData::initialize() { @@ -53,7 +51,7 @@ void DatabaseSettingWidgetMetaData::uninitialize() { } -bool DatabaseSettingWidgetMetaData::save() +bool DatabaseSettingWidgetMetaData::saveSettings() { Metadata* meta = m_db->metadata(); meta->setName(m_ui->databaseName->text()); diff --git a/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.h b/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.h index d2b739474..2aee80813 100644 --- a/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.h +++ b/src/gui/dbsettings/DatabaseSettingsWidgetMetaDataSimple.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -35,15 +35,10 @@ public: Q_DISABLE_COPY(DatabaseSettingWidgetMetaData); ~DatabaseSettingWidgetMetaData() override; - inline bool hasAdvancedMode() const override - { - return false; - } - public slots: void initialize() override; void uninitialize() override; - bool save() override; + bool saveSettings() override; protected: void showEvent(QShowEvent* event) override; diff --git a/src/gui/entry/AutoTypeAssociationsModel.cpp b/src/gui/entry/AutoTypeAssociationsModel.cpp index 6e7b08bc0..03eedae25 100644 --- a/src/gui/entry/AutoTypeAssociationsModel.cpp +++ b/src/gui/entry/AutoTypeAssociationsModel.cpp @@ -79,14 +79,14 @@ QVariant AutoTypeAssociationsModel::headerData(int section, Qt::Orientation orie return tr("Sequence"); } } else { - return QVariant(); + return {}; } } QVariant AutoTypeAssociationsModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } if (role == Qt::DisplayRole) { @@ -108,7 +108,7 @@ QVariant AutoTypeAssociationsModel::data(const QModelIndex& index, int role) con return sequence; } } else { - return QVariant(); + return {}; } } diff --git a/src/gui/entry/EditEntryWidget.cpp b/src/gui/entry/EditEntryWidget.cpp index e2a4f426c..d2213a669 100644 --- a/src/gui/entry/EditEntryWidget.cpp +++ b/src/gui/entry/EditEntryWidget.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * Copyright (C) 2021 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 @@ -41,6 +41,7 @@ #include "core/TimeDelta.h" #ifdef WITH_XC_SSHAGENT #include "sshagent/OpenSSHKey.h" +#include "sshagent/OpenSSHKeyGenDialog.h" #include "sshagent/SSHAgent.h" #endif #ifdef WITH_XC_BROWSER @@ -114,6 +115,7 @@ EditEntryWidget::EditEntryWidget(QWidget* parent) m_entryModifiedTimer.setSingleShot(true); m_entryModifiedTimer.setInterval(0); connect(&m_entryModifiedTimer, &QTimer::timeout, this, [this] { + // TODO: Upon refactor of this widget, this needs to merge unsaved changes in the UI if (isVisible() && m_entry) { setForms(m_entry); } @@ -131,10 +133,51 @@ EditEntryWidget::EditEntryWidget(QWidget* parent) connect(m_iconsWidget, SIGNAL(messageEditEntryDismiss()), SLOT(hideMessage())); m_editWidgetProperties->setCustomData(m_customData.data()); + + m_mainUi->passwordEdit->setQualityVisible(true); } -EditEntryWidget::~EditEntryWidget() +EditEntryWidget::~EditEntryWidget() = default; + +bool EditEntryWidget::switchToPage(Page page) { + auto index = pageIndex(widgetForPage(page)); + if (index >= 0) { + setCurrentPage(index); + return true; + } + return false; +} + +QWidget* EditEntryWidget::widgetForPage(Page page) const +{ + switch (page) { + case Page::Main: + return m_mainWidget; + case Page::Advanced: + return m_advancedWidget; + case Page::Icon: + return m_iconsWidget; + case Page::AutoType: + return m_autoTypeWidget; + case Page::Browser: +#ifdef WITH_XC_BROWSER + return m_browserWidget; +#else + return nullptr; +#endif + case Page::SSHAgent: +#ifdef WITH_XC_SSHAGENT + return m_sshAgentWidget; +#else + return nullptr; +#endif + case Page::Properties: + return m_editWidgetProperties; + case Page::History: + return m_historyWidget; + } + return nullptr; } void EditEntryWidget::setupMain() @@ -159,6 +202,9 @@ void EditEntryWidget::setupMain() connect(m_mainUi->fetchFaviconButton, SIGNAL(clicked()), m_iconsWidget, SLOT(downloadFavicon())); connect(m_mainUi->urlEdit, SIGNAL(textChanged(QString)), m_iconsWidget, SLOT(setUrl(QString))); m_mainUi->urlEdit->enableVerifyMode(); +#endif +#ifdef WITH_XC_BROWSER + connect(m_mainUi->urlEdit, SIGNAL(textChanged(QString)), this, SLOT(entryURLEdited(const QString&))); #endif connect(m_mainUi->expireCheck, &QCheckBox::toggled, [&](bool enabled) { m_mainUi->expireDatePicker->setEnabled(enabled); @@ -167,7 +213,7 @@ void EditEntryWidget::setupMain() } }); - connect(m_mainUi->notesEnabled, SIGNAL(toggled(bool)), this, SLOT(toggleHideNotes(bool))); + connect(m_mainUi->revealNotesButton, &QToolButton::clicked, this, &EditEntryWidget::toggleHideNotes); m_mainUi->expirePresets->setMenu(createPresetsMenu()); connect(m_mainUi->expirePresets->menu(), SIGNAL(triggered(QAction*)), this, SLOT(useExpiryPreset(QAction*))); @@ -232,8 +278,7 @@ void EditEntryWidget::setupAutoType() // clang-format off connect(m_autoTypeUi->enableButton, SIGNAL(toggled(bool)), SLOT(updateAutoTypeEnabled())); - connect(m_autoTypeUi->customSequenceButton, SIGNAL(toggled(bool)), - m_autoTypeUi->sequenceEdit, SLOT(setEnabled(bool))); + connect(m_autoTypeUi->customSequenceButton, &QRadioButton::toggled, this, &EditEntryWidget::updateAutoTypeEnabled); connect(m_autoTypeUi->openHelpButton, SIGNAL(clicked()), SLOT(openAutotypeHelp())); connect(m_autoTypeUi->customWindowSequenceButton, SIGNAL(toggled(bool)), m_autoTypeUi->windowSequenceEdit, SLOT(setEnabled(bool))); @@ -326,17 +371,18 @@ void EditEntryWidget::insertURL() { Q_ASSERT(!m_history); - QString name("KP2A_URL"); + QString name(EntryAttributes::AdditionalUrlAttribute); int i = 1; while (m_entryAttributes->keys().contains(name)) { - name = QString("KP2A_URL_%1").arg(i); + name = QString("%1_%2").arg(EntryAttributes::AdditionalUrlAttribute, QString::number(i)); i++; } m_entryAttributes->set(name, tr("")); QModelIndex index = m_additionalURLsDataModel->indexByKey(name); + m_additionalURLsDataModel->setEntryUrl(m_entry->url()); m_browserUi->additionalURLsView->setCurrentIndex(index); m_browserUi->additionalURLsView->edit(index); @@ -397,6 +443,11 @@ void EditEntryWidget::updateCurrentURL() m_browserUi->removeURLButton->setEnabled(false); } } + +void EditEntryWidget::entryURLEdited(const QString& url) +{ + m_additionalURLsDataModel->setEntryUrl(url); +} #endif void EditEntryWidget::setupProperties() @@ -536,6 +587,7 @@ void EditEntryWidget::updateHistoryButtons(const QModelIndex& current, const QMo #ifdef WITH_XC_SSHAGENT void EditEntryWidget::setupSSHAgent() { + m_pendingPrivateKey = ""; m_sshAgentUi->setupUi(m_sshAgentWidget); QFont fixedFont = Font::fixedFont(); @@ -554,8 +606,10 @@ void EditEntryWidget::setupSSHAgent() connect(m_sshAgentUi->browseButton, &QPushButton::clicked, this, &EditEntryWidget::browsePrivateKey); connect(m_sshAgentUi->addToAgentButton, &QPushButton::clicked, this, &EditEntryWidget::addKeyToAgent); connect(m_sshAgentUi->removeFromAgentButton, &QPushButton::clicked, this, &EditEntryWidget::removeKeyFromAgent); + connect(m_sshAgentUi->clearAgentButton, &QPushButton::clicked, this, &EditEntryWidget::clearAgent); connect(m_sshAgentUi->decryptButton, &QPushButton::clicked, this, &EditEntryWidget::decryptPrivateKey); connect(m_sshAgentUi->copyToClipboardButton, &QPushButton::clicked, this, &EditEntryWidget::copyPublicKey); + connect(m_sshAgentUi->generateButton, &QPushButton::clicked, this, &EditEntryWidget::generatePrivateKey); connect(m_attachments.data(), &EntryAttachments::modified, this, &EditEntryWidget::updateSSHAgentAttachments); @@ -583,6 +637,12 @@ void EditEntryWidget::updateSSHAgent() m_sshAgentSettings.fromEntry(m_entry); setSSHAgentSettings(); + if (!m_pendingPrivateKey.isEmpty()) { + m_sshAgentSettings.setAttachmentName(m_pendingPrivateKey); + m_sshAgentSettings.setSelectedType("attachment"); + m_pendingPrivateKey = ""; + } + updateSSHAgentAttachments(); } @@ -643,29 +703,24 @@ void EditEntryWidget::updateSSHAgentKeyInfo() if (!key.fingerprint().isEmpty()) { m_sshAgentUi->fingerprintTextLabel->setText(key.fingerprint(QCryptographicHash::Md5) + "\n" + key.fingerprint(QCryptographicHash::Sha256)); - } else { - m_sshAgentUi->fingerprintTextLabel->setText(tr("(encrypted)")); } - if (!key.comment().isEmpty() || !key.encrypted()) { + if (!key.comment().isEmpty()) { m_sshAgentUi->commentTextLabel->setText(key.comment()); - } else { - m_sshAgentUi->commentTextLabel->setText(tr("(encrypted)")); - m_sshAgentUi->decryptButton->setEnabled(true); } + m_sshAgentUi->decryptButton->setEnabled(key.encrypted()); + if (!key.publicKey().isEmpty()) { m_sshAgentUi->publicKeyEdit->document()->setPlainText(key.publicKey()); m_sshAgentUi->copyToClipboardButton->setEnabled(true); - } else { - m_sshAgentUi->publicKeyEdit->document()->setPlainText(tr("(encrypted)")); - m_sshAgentUi->copyToClipboardButton->setDisabled(true); } // enable agent buttons only if we have an agent running if (sshAgent()->isAgentRunning()) { m_sshAgentUi->addToAgentButton->setEnabled(true); m_sshAgentUi->removeFromAgentButton->setEnabled(true); + m_sshAgentUi->clearAgentButton->setEnabled(true); sshAgent()->setAutoRemoveOnLock(key, m_sshAgentUi->removeKeyFromAgentCheckBox->isChecked()); } @@ -694,6 +749,13 @@ void EditEntryWidget::toKeeAgentSettings(KeeAgentSettings& settings) const settings.setSaveAttachmentToTempFile(m_sshAgentSettings.saveAttachmentToTempFile()); } +void EditEntryWidget::updateTotp() +{ + if (m_entry) { + m_attributesModel->setEntryAttributes(m_entry->attributes()); + } +} + void EditEntryWidget::browsePrivateKey() { auto fileName = fileDialog()->getOpenFileName(this, tr("Select private key"), FileDialog::getLastDir("sshagent")); @@ -761,11 +823,18 @@ void EditEntryWidget::removeKeyFromAgent() } } +void EditEntryWidget::clearAgent() +{ + auto ret = sshAgent()->clearAllAgentIdentities(); + showMessage(sshAgent()->errorString(), ret ? MessageWidget::Positive : KMessageWidget::Error); +} + void EditEntryWidget::decryptPrivateKey() { OpenSSHKey key; if (!getOpenSSHKey(key, true)) { + showMessage(tr("Failed to decrypt SSH key, ensure password is correct."), MessageWidget::Error); return; } @@ -779,18 +848,51 @@ void EditEntryWidget::decryptPrivateKey() + key.fingerprint(QCryptographicHash::Sha256)); m_sshAgentUi->publicKeyEdit->document()->setPlainText(key.publicKey()); m_sshAgentUi->copyToClipboardButton->setEnabled(true); + m_sshAgentUi->decryptButton->setEnabled(false); } void EditEntryWidget::copyPublicKey() { clipboard()->setText(m_sshAgentUi->publicKeyEdit->document()->toPlainText()); } + +void EditEntryWidget::generatePrivateKey() +{ + auto dialog = new OpenSSHKeyGenDialog(this); + + OpenSSHKey key; + dialog->setKey(&key); + + if (dialog->exec()) { + // derive openssh naming from type + QString keyPrefix = key.type(); + if (keyPrefix.startsWith("ecdsa")) { + keyPrefix = "id_ecdsa"; + } else { + keyPrefix.replace("ssh-", "id_"); + } + + for (int i = 0; i < 10; i++) { + QString keyName = keyPrefix; + + if (i > 0) { + keyName += "." + QString::number(i); + } + + if (!m_entry->attachments()->hasKey(keyName)) { + m_pendingPrivateKey = keyName; + m_entry->attachments()->set(m_pendingPrivateKey, key.privateKey().toUtf8()); + break; + } + } + } +} #endif void EditEntryWidget::useExpiryPreset(QAction* action) { m_mainUi->expireCheck->setChecked(true); - TimeDelta delta = action->data().value(); + auto delta = action->data().value(); QDateTime now = Clock::currentDateTime(); QDateTime expiryDateTime = now + delta; m_mainUi->expireDatePicker->setDateTime(expiryDateTime); @@ -799,7 +901,7 @@ void EditEntryWidget::useExpiryPreset(QAction* action) void EditEntryWidget::toggleHideNotes(bool visible) { m_mainUi->notesEdit->setVisible(visible); - m_mainUi->notesHint->setVisible(!visible); + m_mainUi->revealNotesButton->setIcon(icons()->onOffIcon("password-show", visible)); } Entry* EditEntryWidget::currentEntry() const @@ -818,8 +920,6 @@ void EditEntryWidget::loadEntry(Entry* entry, m_create = create; m_history = history; - connect(m_entry, &Entry::modified, this, [this] { m_entryModifiedTimer.start(); }); - if (history) { setHeadline(QString("%1 \u2022 %2").arg(parentName, tr("Entry history"))); } else { @@ -827,13 +927,15 @@ void EditEntryWidget::loadEntry(Entry* entry, setHeadline(QString("%1 \u2022 %2").arg(parentName, tr("Add entry"))); } else { setHeadline(QString("%1 \u2022 %2 \u2022 %3").arg(parentName, entry->title(), tr("Edit entry"))); + // Reload entry details if changed outside of the edit dialog + connect(m_entry, &Entry::modified, this, [this] { m_entryModifiedTimer.start(); }); } } setForms(entry); setReadOnly(m_history); - setCurrentPage(0); + switchToPage(Page::Main); setPageHidden(m_historyWidget, m_history || m_entry->historyItems().count() < 1); #ifdef WITH_XC_SSHAGENT setPageHidden(m_sshAgentWidget, !sshAgent()->isEnabled()); @@ -858,10 +960,11 @@ void EditEntryWidget::setForms(Entry* entry, bool restore) m_mainUi->tagsList->completion(m_db->tagList()); m_mainUi->expireCheck->setEnabled(!m_history); m_mainUi->expireDatePicker->setReadOnly(m_history); - m_mainUi->notesEnabled->setChecked(!config()->get(Config::Security_HideNotes).toBool()); + m_mainUi->revealNotesButton->setIcon(icons()->onOffIcon("password-show", false)); + m_mainUi->revealNotesButton->setVisible(config()->get(Config::Security_HideNotes).toBool()); + m_mainUi->revealNotesButton->setChecked(false); m_mainUi->notesEdit->setReadOnly(m_history); m_mainUi->notesEdit->setVisible(!config()->get(Config::Security_HideNotes).toBool()); - m_mainUi->notesHint->setVisible(config()->get(Config::Security_HideNotes).toBool()); if (config()->get(Config::GUI_MonospaceNotes).toBool()) { m_mainUi->notesEdit->setFont(Font::fixedFont()); } else { @@ -1077,7 +1180,7 @@ bool EditEntryWidget::commitEntry() MessageBox::Yes | MessageBox::No, MessageBox::Yes); if (res == MessageBox::Yes) { - setCurrentPage(3); + switchToPage(Page::AutoType); return false; } } @@ -1092,7 +1195,7 @@ bool EditEntryWidget::commitEntry() MessageBox::Yes | MessageBox::No, MessageBox::Yes); if (res == MessageBox::Yes) { - setCurrentPage(3); + switchToPage(Page::AutoType); return false; } } @@ -1116,27 +1219,33 @@ bool EditEntryWidget::commitEntry() toKeeAgentSettings(m_sshAgentSettings); #endif + // Begin entry update + if (!m_create) { + m_entry->beginUpdate(); + } + #ifdef WITH_XC_BROWSER if (config()->get(Config::Browser_Enabled).toBool()) { updateBrowser(); } #endif - if (!m_create) { - m_entry->beginUpdate(); - } - updateEntryData(m_entry); if (!m_create) { m_entry->endUpdate(); } + // End entry update m_historyModel->setEntries(m_entry->historyItems(), m_entry); + setPageHidden(m_historyWidget, m_history || m_entry->historyItems().count() < 1); m_advancedUi->attachmentsWidget->linkAttachments(m_entry->attachments()); showMessage(tr("Entry updated successfully."), MessageWidget::Positive); setModified(false); + // Prevent a reload due to entry modified signals + m_entryModifiedTimer.stop(); + return true; } @@ -1161,7 +1270,10 @@ void EditEntryWidget::updateEntryData(Entry* entry) const entry->setPassword(m_mainUi->passwordEdit->text()); entry->setExpires(m_mainUi->expireCheck->isChecked()); entry->setExpiryTime(m_mainUi->expireDatePicker->dateTime().toUTC()); - entry->setTags(m_mainUi->tagsList->tags().toSet().toList().join(";")); // remove repeated tags + + QStringList uniqueTags(m_mainUi->tagsList->tags()); + uniqueTags.removeDuplicates(); + entry->setTags(uniqueTags.join(";")); entry->setNotes(m_mainUi->notesEdit->toPlainText()); @@ -1582,6 +1694,7 @@ QMenu* EditEntryWidget::createPresetsMenu() expirePresetsMenu->addAction(tr("%n week(s)", nullptr, 3))->setData(QVariant::fromValue(TimeDelta::fromDays(21))); expirePresetsMenu->addSeparator(); expirePresetsMenu->addAction(tr("%n month(s)", nullptr, 1))->setData(QVariant::fromValue(TimeDelta::fromMonths(1))); + expirePresetsMenu->addAction(tr("%n month(s)", nullptr, 2))->setData(QVariant::fromValue(TimeDelta::fromMonths(2))); expirePresetsMenu->addAction(tr("%n month(s)", nullptr, 3))->setData(QVariant::fromValue(TimeDelta::fromMonths(3))); expirePresetsMenu->addAction(tr("%n month(s)", nullptr, 6))->setData(QVariant::fromValue(TimeDelta::fromMonths(6))); expirePresetsMenu->addSeparator(); diff --git a/src/gui/entry/EditEntryWidget.h b/src/gui/entry/EditEntryWidget.h index 89422c0d4..3fce4d56d 100644 --- a/src/gui/entry/EditEntryWidget.h +++ b/src/gui/entry/EditEntryWidget.h @@ -77,6 +77,19 @@ public: Entry* currentEntry() const; void clear(); + enum class Page + { + Main, + Advanced, + Icon, + AutoType, + Browser, + SSHAgent, + Properties, + History + }; + bool switchToPage(Page page); + signals: void editFinished(bool accepted); void historyEntryActivated(Entry* entry); @@ -118,11 +131,14 @@ private slots: void updateSSHAgentAttachment(); void updateSSHAgentAttachments(); void updateSSHAgentKeyInfo(); + void updateTotp(); void browsePrivateKey(); void addKeyToAgent(); void removeKeyFromAgent(); + void clearAgent(); void decryptPrivateKey(); void copyPublicKey(); + void generatePrivateKey(); #endif #ifdef WITH_XC_BROWSER void updateBrowserModified(); @@ -131,6 +147,7 @@ private slots: void removeCurrentURL(); void editCurrentURL(); void updateCurrentURL(); + void entryURLEdited(const QString& url); #endif private: @@ -149,7 +166,6 @@ private: void setupEntryUpdate(); void setupColorButton(bool foreground, const QColor& color); - bool passwordsEqual(); void setForms(Entry* entry, bool restore = false); QMenu* createPresetsMenu(); void updateEntryData(Entry* entry) const; @@ -160,6 +176,8 @@ private: void displayAttribute(QModelIndex index, bool showProtected); + QWidget* widgetForPage(Page page) const; + QPointer m_entry; QSharedPointer m_db; @@ -167,6 +185,7 @@ private: bool m_history; #ifdef WITH_XC_SSHAGENT KeeAgentSettings m_sshAgentSettings; + QString m_pendingPrivateKey; #endif const QScopedPointer m_mainUi; const QScopedPointer m_advancedUi; diff --git a/src/gui/entry/EditEntryWidgetBrowser.ui b/src/gui/entry/EditEntryWidgetBrowser.ui index 093d141e8..7b4d5016b 100644 --- a/src/gui/entry/EditEntryWidgetBrowser.ui +++ b/src/gui/entry/EditEntryWidgetBrowser.ui @@ -6,7 +6,7 @@ 0 0 - 400 + 374 348 @@ -26,7 +26,7 @@ - These settings affect to the entry's behaviour with the browser extension. + These settings affect the entry's behaviour with the browser extension. @@ -63,7 +63,7 @@ - Only send this setting to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. + Only send this entry to the browser for HTTP Auth dialogs. If enabled, normal login forms will not show this entry for selection. Use this entry only with HTTP Basic Auth @@ -73,7 +73,7 @@ - Do not send this setting to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. + Do not send this entry to the browser for HTTP Auth dialogs. If enabled, HTTP Auth dialogs will not show this entry for selection. Do not use this entry with HTTP Basic Auth @@ -86,7 +86,7 @@ - Additional URL's + Additional URLs diff --git a/src/gui/entry/EditEntryWidgetMain.ui b/src/gui/entry/EditEntryWidgetMain.ui index 555c719fa..6fe6637e7 100644 --- a/src/gui/entry/EditEntryWidgetMain.ui +++ b/src/gui/entry/EditEntryWidgetMain.ui @@ -6,7 +6,7 @@ 0 0 - 539 + 400 523 @@ -33,11 +33,11 @@ 0 0 - 539 + 400 523 - + 0 @@ -56,7 +56,37 @@ 8 - + + + + Title field + + + + + + + &Username: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + usernameComboBox + + + + + + + Qt::StrongFocus + + + Password field + + + + @@ -77,21 +107,34 @@ - - - - true - - - Toggle the checkbox to reveal the notes section. - - - Qt::AlignTop - - - + + + + &Title: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + titleEdit + + + + + + + &Password: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + passwordEdit + + + @@ -99,41 +142,34 @@ - - - - - - Toggle notes visible - - - Toggle notes visible - - - Notes: - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - + + + + Qt::StrongFocus + + + Tags list + + - - + + 8 + + + + Toggle expiration + + + Toggle expiration + + + + + + @@ -168,24 +204,17 @@ - - - - Password: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - URL: + UR&L: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + urlEdit + @@ -215,80 +244,98 @@ - - - - Title: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - Title field - - - - - - - Username: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - Password field - - - QLineEdit::Password - - - - - - - 0 - + + - - - Toggle expiration - - - Toggle expiration - + - Expires: + &Notes: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + notesEdit + + + + 6 + + + + + Qt::Horizontal + + + + 5 + 20 + + + + + + + + Toggle notes visibility + + + Toggle notes visibility + + + + 14 + 14 + + + + true + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + - Tags: + T&ags: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + tagsList + - - - - Qt::StrongFocus + + + + &Expires: - - Tags list + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + expireCheck @@ -302,30 +349,30 @@
    gui/tag/TagsEdit.h
    1 - - PasswordEdit - QLineEdit -
    gui/PasswordEdit.h
    - 1 -
    URLEdit QLineEdit
    gui/URLEdit.h
    1
    + + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    + 1 +
    titleEdit usernameComboBox passwordEdit urlEdit - tagsList fetchFaviconButton + tagsList expireCheck expireDatePicker expirePresets - notesEnabled + revealNotesButton notesEdit diff --git a/src/gui/entry/EditEntryWidgetSSHAgent.ui b/src/gui/entry/EditEntryWidgetSSHAgent.ui index 81fac082a..3215c1a27 100644 --- a/src/gui/entry/EditEntryWidgetSSHAgent.ui +++ b/src/gui/entry/EditEntryWidgetSSHAgent.ui @@ -118,23 +118,6 @@ Private key
    - - - - External file - - - - - - - Browser for key file - - - Browse… - - - @@ -145,7 +128,7 @@ - + Qt::ClickFocus @@ -155,8 +138,8 @@ - - + + @@ -171,9 +154,40 @@ + + + + Clear agent + + + - + + + + External file + + + + + + + Browser for key file + + + Browse… + + + + + + + Generate + + + + @@ -325,7 +339,6 @@ lifetimeCheckBox lifetimeSpinBox attachmentRadioButton - attachmentComboBox externalFileRadioButton browseButton addToAgentButton diff --git a/src/gui/entry/EntryAttachmentsDialog.ui b/src/gui/entry/EntryAttachmentsDialog.ui new file mode 100644 index 000000000..2b13ea0be --- /dev/null +++ b/src/gui/entry/EntryAttachmentsDialog.ui @@ -0,0 +1,55 @@ + + + EntryAttachmentsDialog + + + + 0 + 0 + 402 + 300 + + + + Form + + + + + + File name + + + + + + + true + + + color: #FF9696 + + + + + + + + + + File contents... + + + + + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + diff --git a/src/gui/entry/EntryAttachmentsModel.cpp b/src/gui/entry/EntryAttachmentsModel.cpp index c5d0ff073..d66e912ab 100644 --- a/src/gui/entry/EntryAttachmentsModel.cpp +++ b/src/gui/entry/EntryAttachmentsModel.cpp @@ -79,7 +79,7 @@ QVariant EntryAttachmentsModel::headerData(int section, Qt::Orientation orientat QVariant EntryAttachmentsModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } if (role == Qt::DisplayRole || role == Qt::EditRole) { @@ -96,7 +96,7 @@ QVariant EntryAttachmentsModel::data(const QModelIndex& index, int role) const } } - return QVariant(); + return {}; } bool EntryAttachmentsModel::setData(const QModelIndex& index, const QVariant& value, int role) @@ -124,7 +124,7 @@ Qt::ItemFlags EntryAttachmentsModel::flags(const QModelIndex& index) const QString EntryAttachmentsModel::keyByIndex(const QModelIndex& index) const { if (!index.isValid()) { - return QString(); + return {}; } return m_entryAttachments->keys().at(index.row()); diff --git a/src/gui/entry/EntryAttachmentsWidget.cpp b/src/gui/entry/EntryAttachmentsWidget.cpp index 33c97df96..744a65931 100644 --- a/src/gui/entry/EntryAttachmentsWidget.cpp +++ b/src/gui/entry/EntryAttachmentsWidget.cpp @@ -16,16 +16,19 @@ */ #include "EntryAttachmentsWidget.h" + +#include "EntryAttachmentsModel.h" +#include "NewEntryAttachmentsDialog.h" +#include "PreviewEntryAttachmentsDialog.h" #include "ui_EntryAttachmentsWidget.h" -#include +#include #include #include #include #include #include "EntryAttachmentsModel.h" -#include "core/Config.h" #include "core/EntryAttachments.h" #include "core/Tools.h" #include "gui/FileDialog.h" @@ -46,12 +49,12 @@ EntryAttachmentsWidget::EntryAttachmentsWidget(QWidget* parent) m_ui->attachmentsView->viewport()->installEventFilter(this); m_ui->attachmentsView->setModel(m_attachmentsModel); - m_ui->attachmentsView->verticalHeader()->hide(); - m_ui->attachmentsView->horizontalHeader()->setStretchLastSection(true); - m_ui->attachmentsView->horizontalHeader()->resizeSection(EntryAttachmentsModel::NameColumn, 400); - m_ui->attachmentsView->setSelectionBehavior(QAbstractItemView::SelectRows); - m_ui->attachmentsView->setSelectionMode(QAbstractItemView::ExtendedSelection); - m_ui->attachmentsView->setEditTriggers(QAbstractItemView::SelectedClicked); + m_ui->attachmentsView->horizontalHeader()->setMinimumSectionSize(70); + m_ui->attachmentsView->horizontalHeader()->setSectionResizeMode(EntryAttachmentsModel::NameColumn, + QHeaderView::Stretch); + m_ui->attachmentsView->horizontalHeader()->setSectionResizeMode(EntryAttachmentsModel::SizeColumn, + QHeaderView::ResizeToContents); + m_ui->attachmentsView->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); connect(this, SIGNAL(buttonsVisibleChanged(bool)), this, SLOT(updateButtonsVisible())); connect(this, SIGNAL(readOnlyChanged(bool)), SLOT(updateButtonsEnabled())); @@ -64,20 +67,19 @@ EntryAttachmentsWidget::EntryAttachmentsWidget(QWidget* parent) // clang-format on connect(this, SIGNAL(readOnlyChanged(bool)), m_attachmentsModel, SLOT(setReadOnly(bool))); - connect(m_ui->attachmentsView, SIGNAL(doubleClicked(QModelIndex)), SLOT(openAttachment(QModelIndex))); + connect(m_ui->attachmentsView, SIGNAL(doubleClicked(QModelIndex)), SLOT(previewSelectedAttachment())); connect(m_ui->saveAttachmentButton, SIGNAL(clicked()), SLOT(saveSelectedAttachments())); connect(m_ui->openAttachmentButton, SIGNAL(clicked()), SLOT(openSelectedAttachments())); connect(m_ui->addAttachmentButton, SIGNAL(clicked()), SLOT(insertAttachments())); + connect(m_ui->newAttachmentButton, SIGNAL(clicked()), SLOT(newAttachments())); + connect(m_ui->previewAttachmentButton, SIGNAL(clicked()), SLOT(previewSelectedAttachment())); connect(m_ui->removeAttachmentButton, SIGNAL(clicked()), SLOT(removeSelectedAttachments())); - connect(m_ui->renameAttachmentButton, SIGNAL(clicked()), SLOT(renameSelectedAttachments())); updateButtonsVisible(); updateButtonsEnabled(); } -EntryAttachmentsWidget::~EntryAttachmentsWidget() -{ -} +EntryAttachmentsWidget::~EntryAttachmentsWidget() = default; const EntryAttachments* EntryAttachmentsWidget::attachments() const { @@ -165,6 +167,57 @@ void EntryAttachmentsWidget::insertAttachments() emit widgetUpdated(); } +void EntryAttachmentsWidget::newAttachments() +{ + Q_ASSERT(m_entryAttachments); + Q_ASSERT(!isReadOnly()); + if (isReadOnly()) { + return; + } + + NewEntryAttachmentsDialog newEntryDialog(m_entryAttachments, this); + if (newEntryDialog.exec() == QDialog::Accepted) { + emit widgetUpdated(); + } +} + +void EntryAttachmentsWidget::previewSelectedAttachment() +{ + Q_ASSERT(m_entryAttachments); + + const auto index = m_ui->attachmentsView->selectionModel()->selectedIndexes().first(); + if (!index.isValid()) { + qWarning() << tr("Failed to preview an attachment: Attachment not found"); + return; + } + + // Set selection to the first + m_ui->attachmentsView->setCurrentIndex(index); + + auto name = m_attachmentsModel->keyByIndex(index); + auto data = m_entryAttachments->value(name); + + PreviewEntryAttachmentsDialog previewDialog(this); + previewDialog.setAttachment(name, data); + + connect(&previewDialog, SIGNAL(openAttachment(QString)), SLOT(openSelectedAttachments())); + connect(&previewDialog, SIGNAL(saveAttachment(QString)), SLOT(saveSelectedAttachments())); + // Refresh the preview if the attachment changes + connect(m_entryAttachments, + &EntryAttachments::keyModified, + &previewDialog, + [&previewDialog, &name, this](const QString& key) { + if (key == name) { + previewDialog.setAttachment(name, m_entryAttachments->value(name)); + } + }); + + previewDialog.exec(); + + // Set focus back to the widget to allow keyboard navigation + setFocus(); +} + void EntryAttachmentsWidget::removeSelectedAttachments() { Q_ASSERT(m_entryAttachments); @@ -194,12 +247,6 @@ void EntryAttachmentsWidget::removeSelectedAttachments() } } -void EntryAttachmentsWidget::renameSelectedAttachments() -{ - Q_ASSERT(m_entryAttachments); - m_ui->attachmentsView->edit(m_ui->attachmentsView->selectionModel()->selectedIndexes().first()); -} - void EntryAttachmentsWidget::saveSelectedAttachments() { Q_ASSERT(m_entryAttachments); @@ -289,7 +336,7 @@ void EntryAttachmentsWidget::openSelectedAttachments() if (!m_entryAttachments->openAttachment(m_attachmentsModel->keyByIndex(index), &errorMessage)) { const QString filename = m_attachmentsModel->keyByIndex(index); errors.append(QString("%1 - %2").arg(filename, errorMessage)); - }; + } } if (!errors.isEmpty()) { @@ -302,17 +349,32 @@ void EntryAttachmentsWidget::updateButtonsEnabled() const bool hasSelection = m_ui->attachmentsView->selectionModel()->hasSelection(); m_ui->addAttachmentButton->setEnabled(!m_readOnly); + m_ui->newAttachmentButton->setEnabled(!m_readOnly); m_ui->removeAttachmentButton->setEnabled(hasSelection && !m_readOnly); - m_ui->renameAttachmentButton->setEnabled(hasSelection && !m_readOnly); m_ui->saveAttachmentButton->setEnabled(hasSelection); + m_ui->previewAttachmentButton->setEnabled(hasSelection); m_ui->openAttachmentButton->setEnabled(hasSelection); + + updateSpacers(); +} + +void EntryAttachmentsWidget::updateSpacers() +{ + if (m_buttonsVisible && !m_readOnly) { + m_ui->previewVSpacer->changeSize(20, 40, QSizePolicy::Fixed, QSizePolicy::Expanding); + } else { + m_ui->previewVSpacer->changeSize(0, 0, QSizePolicy::Fixed, QSizePolicy::Fixed); + } } void EntryAttachmentsWidget::updateButtonsVisible() { m_ui->addAttachmentButton->setVisible(m_buttonsVisible && !m_readOnly); + m_ui->newAttachmentButton->setVisible(m_buttonsVisible && !m_readOnly); m_ui->removeAttachmentButton->setVisible(m_buttonsVisible && !m_readOnly); + + updateSpacers(); } bool EntryAttachmentsWidget::insertAttachments(const QStringList& filenames, QString& errorMessage) @@ -390,14 +452,14 @@ bool EntryAttachmentsWidget::eventFilter(QObject* watched, QEvent* e) if (watched == m_ui->attachmentsView->viewport() && !isReadOnly()) { const QEvent::Type eventType = e->type(); if (eventType == QEvent::DragEnter || eventType == QEvent::DragMove) { - QDropEvent* dropEv = static_cast(e); + auto dropEv = static_cast(e); const QMimeData* mimeData = dropEv->mimeData(); if (mimeData->hasUrls()) { dropEv->acceptProposedAction(); return true; } } else if (eventType == QEvent::Drop) { - QDropEvent* dropEv = static_cast(e); + auto dropEv = static_cast(e); const QMimeData* mimeData = dropEv->mimeData(); if (mimeData->hasUrls()) { dropEv->acceptProposedAction(); diff --git a/src/gui/entry/EntryAttachmentsWidget.h b/src/gui/entry/EntryAttachmentsWidget.h index 9d64ed31b..8c15fd68a 100644 --- a/src/gui/entry/EntryAttachmentsWidget.h +++ b/src/gui/entry/EntryAttachmentsWidget.h @@ -37,7 +37,7 @@ class EntryAttachmentsWidget : public QWidget Q_PROPERTY(bool isButtonsVisible READ isButtonsVisible WRITE setButtonsVisible NOTIFY buttonsVisibleChanged) public: explicit EntryAttachmentsWidget(QWidget* parent = nullptr); - ~EntryAttachmentsWidget(); + ~EntryAttachmentsWidget() override; const EntryAttachments* attachments() const; bool isReadOnly() const; @@ -57,8 +57,9 @@ signals: private slots: void insertAttachments(); + void newAttachments(); + void previewSelectedAttachment(); void removeSelectedAttachments(); - void renameSelectedAttachments(); void saveSelectedAttachments(); void openAttachment(const QModelIndex& index); void openSelectedAttachments(); @@ -67,6 +68,8 @@ private slots: void attachmentModifiedExternally(const QString& key, const QString& filePath); private: + void updateSpacers(); + bool insertAttachments(const QStringList& fileNames, QString& errorMessage); QStringList confirmAttachmentSelection(const QStringList& filenames); diff --git a/src/gui/entry/EntryAttachmentsWidget.ui b/src/gui/entry/EntryAttachmentsWidget.ui index e685813b3..5b6de67aa 100644 --- a/src/gui/entry/EntryAttachmentsWidget.ui +++ b/src/gui/entry/EntryAttachmentsWidget.ui @@ -7,7 +7,7 @@ 0 0 337 - 289 + 258 @@ -34,11 +34,20 @@ QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked + + QAbstractItemView::SelectRows + + + false + + + false + - + 0 @@ -51,6 +60,16 @@ 0 + + + + false + + + New + + + @@ -65,28 +84,25 @@ - - - false + + + Qt::Vertical - - Remove selected attachment + + + 20 + 40 + - - Remove - - + - + false - - Rename selected attachment - - Rename + Preview @@ -129,6 +145,35 @@ + + + + false + + + Remove selected attachment + + + Remove + + + + + + + Qt::Vertical + + + QSizePolicy::Minimum + + + + 20 + 0 + + + +
    diff --git a/src/gui/entry/EntryAttributesModel.cpp b/src/gui/entry/EntryAttributesModel.cpp index 90ef21bb3..604f9af64 100644 --- a/src/gui/entry/EntryAttributesModel.cpp +++ b/src/gui/entry/EntryAttributesModel.cpp @@ -24,6 +24,7 @@ EntryAttributesModel::EntryAttributesModel(QObject* parent) , m_entryAttributes(nullptr) , m_nextRenameDataChange(false) { + m_collator.setNumericMode(true); } void EntryAttributesModel::setEntryAttributes(EntryAttributes* entryAttributes) @@ -80,14 +81,14 @@ QVariant EntryAttributesModel::headerData(int section, Qt::Orientation orientati if ((orientation == Qt::Horizontal) && (role == Qt::DisplayRole) && (section == 0)) { return tr("Name"); } else { - return QVariant(); + return {}; } } QVariant EntryAttributesModel::data(const QModelIndex& index, int role) const { if (!index.isValid() || (role != Qt::DisplayRole && role != Qt::EditRole)) { - return QVariant(); + return {}; } return m_attributes.at(index.row()); @@ -124,7 +125,7 @@ QModelIndex EntryAttributesModel::indexByKey(const QString& key) const int row = m_attributes.indexOf(key); if (row == -1) { - return QModelIndex(); + return {}; } else { return index(row, 0); } @@ -133,7 +134,7 @@ QModelIndex EntryAttributesModel::indexByKey(const QString& key) const QString EntryAttributesModel::keyByIndex(const QModelIndex& index) const { if (!index.isValid()) { - return QString(); + return {}; } else { return m_attributes.at(index.row()); } @@ -150,7 +151,7 @@ void EntryAttributesModel::attributeAboutToAdd(const QString& key) { QList rows = m_attributes; rows.append(key); - std::sort(rows.begin(), rows.end()); + std::sort(rows.begin(), rows.end(), m_collator); int row = rows.indexOf(key); beginInsertRows(QModelIndex(), row, row); } @@ -180,7 +181,7 @@ void EntryAttributesModel::attributeAboutToRename(const QString& oldKey, const Q QList rows = m_attributes; rows.removeOne(oldKey); rows.append(newKey); - std::sort(rows.begin(), rows.end()); + std::sort(rows.begin(), rows.end(), m_collator); int newRow = rows.indexOf(newKey); if (newRow > oldRow) { newRow++; @@ -232,4 +233,5 @@ void EntryAttributesModel::updateAttributes() m_attributes.append(key); } } + std::sort(m_attributes.begin(), m_attributes.end(), m_collator); } diff --git a/src/gui/entry/EntryAttributesModel.h b/src/gui/entry/EntryAttributesModel.h index 7d613c1f0..650426c32 100644 --- a/src/gui/entry/EntryAttributesModel.h +++ b/src/gui/entry/EntryAttributesModel.h @@ -19,6 +19,7 @@ #define KEEPASSX_ENTRYATTRIBUTESMODEL_H #include +#include class EntryAttributes; @@ -55,6 +56,7 @@ private: EntryAttributes* m_entryAttributes; QList m_attributes; bool m_nextRenameDataChange; + QCollator m_collator; }; #endif // KEEPASSX_ENTRYATTRIBUTESMODEL_H diff --git a/src/gui/entry/EntryHistoryModel.cpp b/src/gui/entry/EntryHistoryModel.cpp index acde63cb5..57cac8d9f 100644 --- a/src/gui/entry/EntryHistoryModel.cpp +++ b/src/gui/entry/EntryHistoryModel.cpp @@ -26,6 +26,7 @@ EntryHistoryModel::EntryHistoryModel(QObject* parent) : QAbstractTableModel(parent) + , m_systemLocale(QLocale::system()) { } @@ -67,7 +68,7 @@ QVariant EntryHistoryModel::data(const QModelIndex& index, int role) const switch (index.column()) { case 0: if (role == Qt::DisplayRole) { - return lastModified.toString(Qt::SystemLocaleShortDate); + return m_systemLocale.toString(lastModified, QLocale::ShortFormat); } else { return lastModified; } @@ -158,9 +159,10 @@ void EntryHistoryModel::deleteIndex(QModelIndex index) { auto entry = entryFromIndex(index); if (entry) { - beginRemoveRows(QModelIndex(), m_historyEntries.indexOf(entry), m_historyEntries.indexOf(entry)); - m_historyEntries.removeAll(entry); + beginRemoveRows(QModelIndex(), index.row(), index.row()); + m_historyEntries.removeAt(index.row()); m_deletedHistoryEntries << entry; + calculateHistoryModifications(); endRemoveRows(); } } diff --git a/src/gui/entry/EntryHistoryModel.h b/src/gui/entry/EntryHistoryModel.h index 21897ec07..101e4ac93 100644 --- a/src/gui/entry/EntryHistoryModel.h +++ b/src/gui/entry/EntryHistoryModel.h @@ -19,6 +19,7 @@ #define KEEPASSX_ENTRYHISTORYMODEL_H #include +#include class Entry; @@ -45,6 +46,7 @@ public: private: void calculateHistoryModifications(); + QLocale m_systemLocale; QList m_historyEntries; QList m_deletedHistoryEntries; QStringList m_historyModifications; diff --git a/src/gui/entry/EntryModel.cpp b/src/gui/entry/EntryModel.cpp index 313b7ee50..178d710fc 100644 --- a/src/gui/entry/EntryModel.cpp +++ b/src/gui/entry/EntryModel.cpp @@ -21,6 +21,7 @@ #include #include +#include "core/Clock.h" #include "core/Entry.h" #include "core/Group.h" #include "core/Metadata.h" @@ -36,7 +37,6 @@ EntryModel::EntryModel(QObject* parent) : QAbstractTableModel(parent) , m_group(nullptr) , HiddenContentDisplay(QString("\u25cf").repeated(6)) - , DateFormat(Qt::DefaultLocaleShortDate) { connect(config(), &Config::changed, this, &EntryModel::onConfigChanged); } @@ -50,8 +50,10 @@ Entry* EntryModel::entryFromIndex(const QModelIndex& index) const QModelIndex EntryModel::indexFromEntry(Entry* entry) const { int row = m_entries.indexOf(entry); - Q_ASSERT(row != -1); - return index(row, 1); + if (row >= 0) { + return index(row, 1); + } + return {}; } void EntryModel::setGroup(Group* group) @@ -85,25 +87,13 @@ void EntryModel::setEntries(const QList& entries) m_entries = entries; m_orgEntries = entries; - QSet databases; - - for (Entry* entry : asConst(m_entries)) { - databases.insert(entry->group()->database()); - } - - for (Database* db : asConst(databases)) { - Q_ASSERT(db); - const QList groupList = db->rootGroup()->groupsRecursive(true); - for (const Group* group : groupList) { - m_allGroups.append(group); - } - - if (db->metadata()->recycleBin()) { - m_allGroups.removeOne(db->metadata()->recycleBin()); + for (const auto entry : asConst(m_entries)) { + if (entry->group()) { + m_allGroups.insert(entry->group()); } } - for (const Group* group : asConst(m_allGroups)) { + for (const auto group : m_allGroups) { makeConnections(group); } @@ -126,13 +116,13 @@ int EntryModel::columnCount(const QModelIndex& parent) const return 0; } - return 15; + return 17; } QVariant EntryModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } Entry* entry = entryFromIndex(index); @@ -146,6 +136,11 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const return entry->group()->name(); } break; + case ParentGroupPath: + if (entry->group()) { + return entry->group()->fullPath(); + } + break; case Title: result = entry->resolveMultiplePlaceholders(entry->title()); if (attr->isReference(EntryAttributes::TitleKey)) { @@ -199,18 +194,17 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const return result; case Expires: // Display either date of expiry or 'Never' - result = entry->timeInfo().expires() - ? entry->timeInfo().expiryTime().toLocalTime().toString(EntryModel::DateFormat) - : tr("Never"); + result = entry->timeInfo().expires() ? Clock::toString(entry->timeInfo().expiryTime().toLocalTime()) + : tr("Never"); return result; case Created: - result = entry->timeInfo().creationTime().toLocalTime().toString(EntryModel::DateFormat); + result = Clock::toString(entry->timeInfo().creationTime().toLocalTime()); return result; case Modified: - result = entry->timeInfo().lastModificationTime().toLocalTime().toString(EntryModel::DateFormat); + result = Clock::toString(entry->timeInfo().lastModificationTime().toLocalTime()); return result; case Accessed: - result = entry->timeInfo().lastAccessTime().toLocalTime().toString(EntryModel::DateFormat); + result = Clock::toString(entry->timeInfo().lastAccessTime().toLocalTime()); return result; case Attachments: { // Display comma-separated list of attachments @@ -240,6 +234,13 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const return result; } + case Color: + QColor backgroundColor; + backgroundColor.setNamedColor(entry->backgroundColor()); + if (backgroundColor.isValid()) { + result = "▍"; + return result; + } } } else if (role == Qt::UserRole) { // Qt::UserRole is used as sort role, see EntryView::EntryView() switch (index.column()) { @@ -254,8 +255,13 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const return 0; } case Expires: + return entry->timeInfo().expires() ? entry->timeInfo().expiryTime() // There seems to be no better way of expressing 'infinity' - return entry->timeInfo().expires() ? entry->timeInfo().expiryTime() : QDateTime(QDate(9999, 1, 1)); +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + : QDate(9999, 1, 1).startOfDay(); +#else + : QDateTime(QDate(9999, 1, 1)); +#endif case Created: return entry->timeInfo().creationTime(); case Modified: @@ -291,29 +297,35 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const break; case Totp: if (entry->hasTotp()) { - return icons()->icon("chronometer"); + return icons()->icon("totp"); } break; case PasswordStrength: if (!entry->password().isEmpty() && !entry->excludeFromReports()) { + QString iconName = "lock-question"; StateColorPalette statePalette; QColor color = statePalette.color(StateColorPalette::Error); switch (entry->passwordHealth()->quality()) { case PasswordHealth::Quality::Bad: case PasswordHealth::Quality::Poor: + iconName = "lock-open-alert"; color = statePalette.color(StateColorPalette::HealthCritical); break; case PasswordHealth::Quality::Weak: + iconName = "lock-open"; color = statePalette.color(StateColorPalette::HealthBad); break; case PasswordHealth::Quality::Good: case PasswordHealth::Quality::Excellent: + iconName = "lock"; color = statePalette.color(StateColorPalette::HealthExcellent); break; } - return color; + if (color.isValid()) { + return icons()->icon(iconName, true, color); + } } break; } @@ -324,6 +336,15 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const } return font; } else if (role == Qt::ForegroundRole) { + + if (index.column() == Color) { + QColor backgroundColor; + backgroundColor.setNamedColor(entry->backgroundColor()); + if (backgroundColor.isValid()) { + return backgroundColor; + } + } + QColor foregroundColor; foregroundColor.setNamedColor(entry->foregroundColor()); if (entry->hasReferences()) { @@ -337,10 +358,12 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const return QVariant(foregroundColor); } } else if (role == Qt::BackgroundRole) { - QColor backgroundColor; - backgroundColor.setNamedColor(entry->backgroundColor()); - if (backgroundColor.isValid()) { - return QVariant(backgroundColor); + if (m_backgroundColorVisible) { + QColor backgroundColor; + backgroundColor.setNamedColor(entry->backgroundColor()); + if (backgroundColor.isValid()) { + return QVariant(backgroundColor); + } } } else if (role == Qt::ToolTipRole) { if (index.column() == PasswordStrength && !entry->password().isEmpty() && !entry->excludeFromReports()) { @@ -348,7 +371,7 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const } } - return QVariant(); + return {}; } QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int role) const @@ -359,6 +382,8 @@ QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int ro switch (section) { case ParentGroup: return tr("Group"); + case ParentGroupPath: + return tr("Group Path"); case Title: return tr("Title"); case Username: @@ -388,7 +413,7 @@ QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int ro case Paperclip: return icons()->icon("paperclip"); case Totp: - return icons()->icon("chronometer"); + return icons()->icon("totp"); case PasswordStrength: return icons()->icon("lock-question"); } @@ -396,6 +421,8 @@ QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int ro switch (section) { case ParentGroup: return tr("Group name"); + case ParentGroupPath: + return tr("Group Path"); case Title: return tr("Entry title"); case Username: @@ -424,6 +451,8 @@ QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int ro return tr("Has attachments"); case Totp: return tr("Has TOTP"); + case Color: + return tr("Background Color"); } } @@ -462,7 +491,7 @@ QMimeData* EntryModel::mimeData(const QModelIndexList& indexes) const return nullptr; } - QMimeData* data = new QMimeData(); + auto data = new QMimeData(); QByteArray encoded; QDataStream stream(&encoded, QIODevice::WriteOnly); @@ -606,3 +635,7 @@ void EntryModel::makeConnections(const Group* group) connect(group, SIGNAL(entryMovedDown()), SLOT(entryMovedDown())); connect(group, SIGNAL(entryDataChanged(Entry*)), SLOT(entryDataChanged(Entry*))); } +void EntryModel::setBackgroundColorVisible(bool visible) +{ + m_backgroundColorVisible = visible; +} diff --git a/src/gui/entry/EntryModel.h b/src/gui/entry/EntryModel.h index cd34da7d4..7b7f17a1f 100644 --- a/src/gui/entry/EntryModel.h +++ b/src/gui/entry/EntryModel.h @@ -20,6 +20,7 @@ #include #include +#include #include "core/Config.h" @@ -47,7 +48,9 @@ public: Attachments = 11, Totp = 12, Size = 13, - PasswordStrength = 14 + PasswordStrength = 14, + Color = 15, + ParentGroupPath = 16 }; explicit EntryModel(QObject* parent = nullptr); @@ -66,6 +69,7 @@ public: void setGroup(Group* group); void setEntries(const QList& entries); + void setBackgroundColorVisible(bool visible); private slots: void entryAboutToAdd(Entry* entry); @@ -84,13 +88,13 @@ private: void severConnections(); void makeConnections(const Group* group); + bool m_backgroundColorVisible = true; Group* m_group; QList m_entries; QList m_orgEntries; - QList m_allGroups; + QSet m_allGroups; const QString HiddenContentDisplay; - const Qt::DateFormat DateFormat; }; #endif // KEEPASSX_ENTRYMODEL_H diff --git a/src/gui/entry/EntryURLModel.cpp b/src/gui/entry/EntryURLModel.cpp index 3222c7d30..d0201562b 100644 --- a/src/gui/entry/EntryURLModel.cpp +++ b/src/gui/entry/EntryURLModel.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2025 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * Copyright (C) 2019 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 @@ -18,9 +18,10 @@ #include "EntryURLModel.h" +#include "browser/BrowserService.h" #include "core/EntryAttributes.h" -#include "core/Tools.h" #include "gui/Icons.h" +#include "gui/UrlTools.h" #include "gui/styles/StateColorPalette.h" EntryURLModel::EntryURLModel(QObject* parent) @@ -66,15 +67,23 @@ QVariant EntryURLModel::data(const QModelIndex& index, int role) const } const auto value = m_entryAttributes->value(key); - const auto urlValid = Tools::checkUrlValid(value); + const auto urlValid = urlTools()->isUrlValid(value, true); - if (role == Qt::BackgroundRole && !urlValid) { + // Check for duplicate URLs in the attribute list. Excludes the current key/value from the comparison. + auto customAttributeKeys = m_entryAttributes->customKeys().filter(EntryAttributes::AdditionalUrlAttribute); + customAttributeKeys.removeOne(key); + + const auto duplicateUrl = + m_entryAttributes->values(customAttributeKeys).contains(value) || urlTools()->isUrlIdentical(value, m_entryUrl); + if (role == Qt::BackgroundRole && (!urlValid || duplicateUrl)) { StateColorPalette statePalette; return statePalette.color(StateColorPalette::ColorRole::Error); - } else if (role == Qt::DecorationRole && !urlValid) { + } else if (role == Qt::DecorationRole && (!urlValid || duplicateUrl)) { return m_errorIcon; } else if (role == Qt::DisplayRole || role == Qt::EditRole) { return value; + } else if (role == Qt::ToolTipRole && duplicateUrl) { + return tr("Duplicate URL"); } else if (role == Qt::ToolTipRole && !urlValid) { return tr("Invalid URL"); } @@ -82,17 +91,21 @@ QVariant EntryURLModel::data(const QModelIndex& index, int role) const return {}; } +void EntryURLModel::setEntryUrl(const QString& entryUrl) +{ + m_entryUrl = entryUrl; +} + bool EntryURLModel::setData(const QModelIndex& index, const QVariant& value, int role) { if (!index.isValid() || role != Qt::EditRole || value.type() != QVariant::String || value.toString().isEmpty()) { return false; } - const int row = index.row(); - const QString key = m_urls.at(row).first; - const QString oldValue = m_urls.at(row).second; + const auto row = index.row(); + const auto key = m_urls.at(row).first; - if (EntryAttributes::isDefaultAttribute(key) || m_entryAttributes->containsValue(value.toString())) { + if (EntryAttributes::isDefaultAttribute(key)) { return false; } @@ -113,7 +126,7 @@ QModelIndex EntryURLModel::indexByKey(const QString& key) const } if (row == -1) { - return QModelIndex(); + return {}; } else { return index(row, 0); } @@ -122,7 +135,7 @@ QModelIndex EntryURLModel::indexByKey(const QString& key) const QString EntryURLModel::keyByIndex(const QModelIndex& index) const { if (!index.isValid()) { - return QString(); + return {}; } else { return m_urls.at(index.row()).first; } @@ -133,9 +146,9 @@ void EntryURLModel::updateAttributes() clear(); m_urls.clear(); - const QList attributesKeyList = m_entryAttributes->keys(); - for (const QString& key : attributesKeyList) { - if (!EntryAttributes::isDefaultAttribute(key) && key.contains("KP2A_URL")) { + const auto attributesKeyList = m_entryAttributes->keys(); + for (const auto& key : attributesKeyList) { + if (!EntryAttributes::isDefaultAttribute(key) && key.contains(EntryAttributes::AdditionalUrlAttribute)) { const auto value = m_entryAttributes->value(key); m_urls.append(qMakePair(key, value)); diff --git a/src/gui/entry/EntryURLModel.h b/src/gui/entry/EntryURLModel.h index f9ffa4828..8fd5ef119 100644 --- a/src/gui/entry/EntryURLModel.h +++ b/src/gui/entry/EntryURLModel.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * Copyright (C) 2019 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 @@ -19,6 +19,7 @@ #ifndef KEEPASSXC_ENTRYURLMODEL_H #define KEEPASSXC_ENTRYURLMODEL_H +#include "core/Entry.h" #include #include @@ -43,8 +44,9 @@ class EntryURLModel : public QStandardItemModel public: explicit EntryURLModel(QObject* parent = nullptr); + void setEntryAttributes(EntryAttributes* entryAttributes); - void insertRow(const QString& key, const QString& value); + void setEntryUrl(const QString& entryUrl); bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; QVariant data(const QModelIndex& index, int role) const override; QModelIndex indexByKey(const QString& key) const; @@ -57,6 +59,7 @@ private: QList> m_urls; EntryAttributes* m_entryAttributes; QIcon m_errorIcon; + QString m_entryUrl; }; #endif // KEEPASSXC_ENTRYURLMODEL_H diff --git a/src/gui/entry/EntryView.cpp b/src/gui/entry/EntryView.cpp index 09362e391..5fdad83b3 100644 --- a/src/gui/entry/EntryView.cpp +++ b/src/gui/entry/EntryView.cpp @@ -19,12 +19,18 @@ #include "EntryView.h" #include +#include +#include #include +#include #include #include +#include #include #include +#include +#include "gui/Icons.h" #include "gui/SortFilterHideProxyModel.h" #define ICON_ONLY_SECTION_SIZE 26 @@ -213,11 +219,12 @@ void EntryView::displaySearch(const QList& entries) m_model->setEntries(entries); header()->showSection(EntryModel::ParentGroup); + setFirstEntryActive(); + // Reset sort column to 'Group', overrides DatabaseWidgetStateSync m_sortModel->sort(EntryModel::ParentGroup, Qt::AscendingOrder); sortByColumn(EntryModel::ParentGroup, Qt::AscendingOrder); - setFirstEntryActive(); m_inSearchMode = true; } @@ -263,6 +270,15 @@ Entry* EntryView::currentEntry() } } +QList EntryView::selectedEntries() +{ + QList list; + for (auto row : selectionModel()->selectedRows()) { + list.append(m_model->entryFromIndex(m_sortModel->mapToSource(row))); + } + return list; +} + int EntryView::numberOfSelectedEntries() { return selectionModel()->selectedRows().size(); @@ -270,8 +286,11 @@ int EntryView::numberOfSelectedEntries() void EntryView::setCurrentEntry(Entry* entry) { - selectionModel()->setCurrentIndex(m_sortModel->mapFromSource(m_model->indexFromEntry(entry)), - QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); + auto index = m_model->indexFromEntry(entry); + if (index.isValid()) { + selectionModel()->setCurrentIndex(m_sortModel->mapFromSource(index), + QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); + } } Entry* EntryView::entryFromIndex(const QModelIndex& index) @@ -317,6 +336,7 @@ bool EntryView::setViewState(const QByteArray& state) bool status = header()->restoreState(state); resetFixedColumns(); m_columnsNeedRelayout = state.isEmpty(); + onHeaderChanged(); return status; } @@ -335,6 +355,7 @@ void EntryView::showHeaderMenu(const QPoint& position) int columnIndex = action->data().toInt(); action->setChecked(!isColumnHidden(columnIndex)); } + actions[EntryModel::ParentGroup]->setVisible(inSearchMode()); m_headerMenu->popup(mapToGlobal(position)); } @@ -356,6 +377,9 @@ void EntryView::toggleColumnVisibility(QAction* action) // least one visible column remains, as the table header will disappear // entirely when all columns are hidden int columnIndex = action->data().toInt(); + if (columnIndex == EntryModel::Color) { + m_model->setBackgroundColorVisible(!action->isChecked()); + } if (action->isChecked()) { header()->showSection(columnIndex); if (header()->sectionSize(columnIndex) == 0) { @@ -427,6 +451,8 @@ void EntryView::resetFixedColumns() header()->resizeSection(col, width); } } + header()->setMinimumSectionSize(1); + header()->resizeSection(EntryModel::Color, ICON_ONLY_SECTION_SIZE); } /** @@ -455,6 +481,9 @@ void EntryView::resetViewToDefaults() header()->hideSection(EntryModel::Attachments); header()->hideSection(EntryModel::Size); header()->hideSection(EntryModel::PasswordStrength); + header()->hideSection(EntryModel::Color); + header()->hideSection(EntryModel::ParentGroupPath); + onHeaderChanged(); // Reset column order to logical indices for (int i = 0; i < header()->count(); ++i) { @@ -482,6 +511,11 @@ void EntryView::resetViewToDefaults() } } +void EntryView::onHeaderChanged() +{ + m_model->setBackgroundColorVisible(isColumnHidden(EntryModel::Color)); +} + void EntryView::showEvent(QShowEvent* event) { QTreeView::showEvent(event); @@ -494,6 +528,69 @@ void EntryView::showEvent(QShowEvent* event) } } +void EntryView::startDrag(Qt::DropActions supportedActions) +{ + auto selectedIndexes = selectionModel()->selectedRows(EntryModel::Title); + if (selectedIndexes.isEmpty()) { + return; + } + + // Create a mime data object for the selected rows + auto mimeData = m_sortModel->mimeData(selectedIndexes); + if (!mimeData) { + return; + } + + // Create a temporary list widget to display the dragged items + int i = 0; + QListWidget listWidget; + for (auto& index : selectedIndexes) { + if (++i > 4) { + int remaining = selectedIndexes.size() - i + 1; + listWidget.addItem(tr("+ %1 entry(s)...", nullptr, remaining).arg(remaining)); + break; + } + + QIcon icon; + icon.addPixmap(m_sortModel->data(index, Qt::DecorationRole).value()); + + auto item = new QListWidgetItem; + item->setText(m_sortModel->data(index, Qt::DisplayRole).toString()); + item->setIcon(icon); + listWidget.addItem(item); + } + + listWidget.setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + listWidget.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + listWidget.setStyleSheet("QListWidget { background-color: palette(highlight); border: 1px solid palette(dark); " + "padding: 4px; color: palette(highlighted-text); }"); + auto width = listWidget.sizeHintForColumn(0) + 2 * listWidget.frameWidth(); + auto height = listWidget.sizeHintForRow(0) * listWidget.count() + 2 * listWidget.frameWidth(); + listWidget.setFixedWidth(width); + listWidget.setFixedHeight(height); + + // Grab the screen pixel ratio where the window resides + // TODO: Use direct call to screen() when moving to Qt 6 + auto screen = QGuiApplication::screenAt(window()->geometry().center()); + if (!screen) { + screen = QGuiApplication::primaryScreen(); + } + + auto pixelRatio = screen->devicePixelRatio(); + + // Render the list widget to a pixmap + QPixmap pixmap(QSize(width, height) * pixelRatio); + pixmap.fill(Qt::transparent); + pixmap.setDevicePixelRatio(pixelRatio); + listWidget.render(&pixmap); + + // Create a drag object and start the drag + auto drag = new QDrag(this); + drag->setMimeData(mimeData); + drag->setPixmap(pixmap); + drag->exec(supportedActions, defaultDropAction()); +} + bool EntryView::isColumnHidden(int logicalIndex) { return header()->isSectionHidden(logicalIndex) || header()->sectionSize(logicalIndex) == 0; diff --git a/src/gui/entry/EntryView.h b/src/gui/entry/EntryView.h index 90f37abfc..759097b34 100644 --- a/src/gui/entry/EntryView.h +++ b/src/gui/entry/EntryView.h @@ -38,6 +38,7 @@ public: void setModel(QAbstractItemModel* model) override; Entry* currentEntry(); void setCurrentEntry(Entry* entry); + QList selectedEntries(); Entry* entryFromIndex(const QModelIndex& index); QModelIndex indexFromEntry(Entry* entry); int currentEntryIndex(); @@ -60,6 +61,7 @@ protected: void keyPressEvent(QKeyEvent* event) override; void focusInEvent(QFocusEvent* event) override; void showEvent(QShowEvent* event) override; + void startDrag(Qt::DropActions supportedActions) override; private slots: void emitEntryActivated(const QModelIndex& index); @@ -74,6 +76,7 @@ private slots: private: void resetFixedColumns(); bool isColumnHidden(int logicalIndex); + void onHeaderChanged(); EntryModel* const m_model; SortFilterHideProxyModel* const m_sortModel; diff --git a/src/gui/entry/NewEntryAttachmentsDialog.cpp b/src/gui/entry/NewEntryAttachmentsDialog.cpp new file mode 100644 index 000000000..7adbff332 --- /dev/null +++ b/src/gui/entry/NewEntryAttachmentsDialog.cpp @@ -0,0 +1,90 @@ +/* + * Copyright (C) 2025 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 . + */ + +#include "NewEntryAttachmentsDialog.h" +#include "core/EntryAttachments.h" +#include "ui_EntryAttachmentsDialog.h" + +#include +#include + +NewEntryAttachmentsDialog::NewEntryAttachmentsDialog(QPointer attachments, QWidget* parent) + : QDialog(parent) + , m_attachments(std::move(attachments)) + , m_ui(new Ui::EntryAttachmentsDialog) +{ + Q_ASSERT(m_attachments); + + m_ui->setupUi(this); + + setWindowTitle(tr("New entry attachment")); + + m_ui->dialogButtons->setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); + + connect(m_ui->dialogButtons, SIGNAL(accepted()), this, SLOT(saveAttachment())); + connect(m_ui->dialogButtons, SIGNAL(rejected()), this, SLOT(reject())); + connect(m_ui->titleEdit, SIGNAL(textChanged(const QString&)), this, SLOT(fileNameTextChanged(const QString&))); + + fileNameTextChanged(m_ui->titleEdit->text()); +} + +NewEntryAttachmentsDialog::~NewEntryAttachmentsDialog() = default; + +bool NewEntryAttachmentsDialog::validateFileName(const QString& fileName, QString& error) const +{ + if (fileName.isEmpty()) { + error = tr("Attachment name cannot be empty"); + return false; + } + + if (m_attachments->hasKey(fileName)) { + error = tr("Attachment with the same name already exists"); + return false; + } + + return true; +} + +void NewEntryAttachmentsDialog::saveAttachment() +{ + auto fileName = m_ui->titleEdit->text(); + auto text = m_ui->attachmentTextEdit->toPlainText().toUtf8(); + + QString error; + if (!validateFileName(fileName, error)) { + QMessageBox::warning(this, tr("Save attachment"), error); + return; + } + + m_attachments->set(fileName, text); + + accept(); +} + +void NewEntryAttachmentsDialog::fileNameTextChanged(const QString& fileName) +{ + QString error; + bool valid = validateFileName(fileName, error); + + m_ui->errorLabel->setText(error); + m_ui->errorLabel->setVisible(!valid); + + auto okButton = m_ui->dialogButtons->button(QDialogButtonBox::Ok); + if (okButton) { + okButton->setDisabled(!valid); + } +} diff --git a/src/gui/csvImport/CsvImportWizard.h b/src/gui/entry/NewEntryAttachmentsDialog.h similarity index 50% rename from src/gui/csvImport/CsvImportWizard.h rename to src/gui/entry/NewEntryAttachmentsDialog.h index 084d8794d..651100f65 100644 --- a/src/gui/csvImport/CsvImportWizard.h +++ b/src/gui/entry/NewEntryAttachmentsDialog.h @@ -1,6 +1,5 @@ /* - * Copyright (C) 2016 Enrico Mariotti - * Copyright (C) 2017 KeePassXC Team + * Copyright (C) 2025 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 @@ -16,36 +15,34 @@ * along with this program. If not, see . */ -#ifndef KEEPASSX_CSVIMPORTWIZARD_H -#define KEEPASSX_CSVIMPORTWIZARD_H +#pragma once -#include "CsvImportWidget.h" +#include +#include -#include "gui/DialogyWidget.h" +namespace Ui +{ + class EntryAttachmentsDialog; +} -class QGridLayout; +class QByteArray; +class EntryAttachments; -class CsvImportWidget; - -class CsvImportWizard : public DialogyWidget +class NewEntryAttachmentsDialog : public QDialog { Q_OBJECT public: - explicit CsvImportWizard(QWidget* parent = nullptr); - ~CsvImportWizard() override; - void load(const QString& filename, Database* database); - -signals: - void importFinished(bool accepted); + explicit NewEntryAttachmentsDialog(QPointer attachments, QWidget* parent = nullptr); + ~NewEntryAttachmentsDialog() override; private slots: - void parseFinished(bool accepted); + void saveAttachment(); + void fileNameTextChanged(const QString& fileName); private: - QPointer m_db; - CsvImportWidget* m_parse; - QGridLayout* m_layout; -}; + bool validateFileName(const QString& fileName, QString& error) const; -#endif // KEEPASSX_CSVIMPORTWIZARD_H + QPointer m_attachments; + QScopedPointer m_ui; +}; diff --git a/src/gui/entry/PreviewEntryAttachmentsDialog.cpp b/src/gui/entry/PreviewEntryAttachmentsDialog.cpp new file mode 100644 index 000000000..69de02606 --- /dev/null +++ b/src/gui/entry/PreviewEntryAttachmentsDialog.cpp @@ -0,0 +1,132 @@ +/* + * Copyright (C) 2025 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 . + */ + +#include "PreviewEntryAttachmentsDialog.h" +#include "ui_EntryAttachmentsDialog.h" + +#include +#include +#include +#include +#include + +PreviewEntryAttachmentsDialog::PreviewEntryAttachmentsDialog(QWidget* parent) + : QDialog(parent) + , m_ui(new Ui::EntryAttachmentsDialog) +{ + m_ui->setupUi(this); + + setWindowTitle(tr("Preview entry attachment")); + // Disable the help button in the title bar + setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); + + // Set to read-only + m_ui->titleEdit->setReadOnly(true); + m_ui->attachmentTextEdit->setReadOnly(true); + m_ui->errorLabel->setVisible(false); + + // Initialize dialog buttons + m_ui->dialogButtons->setStandardButtons(QDialogButtonBox::Close | QDialogButtonBox::Open | QDialogButtonBox::Save); + auto closeButton = m_ui->dialogButtons->button(QDialogButtonBox::Close); + closeButton->setDefault(true); + + connect(m_ui->dialogButtons, SIGNAL(rejected()), this, SLOT(reject())); + connect(m_ui->dialogButtons, &QDialogButtonBox::clicked, [this](QAbstractButton* button) { + auto pressedButton = m_ui->dialogButtons->standardButton(button); + if (pressedButton == QDialogButtonBox::Open) { + emit openAttachment(m_name); + } else if (pressedButton == QDialogButtonBox::Save) { + emit saveAttachment(m_name); + } + }); +} + +PreviewEntryAttachmentsDialog::~PreviewEntryAttachmentsDialog() = default; + +void PreviewEntryAttachmentsDialog::setAttachment(const QString& name, const QByteArray& data) +{ + m_name = name; + m_ui->titleEdit->setText(m_name); + + m_type = attachmentType(data); + m_data = data; + m_imageCache = QImage(); + + update(); +} + +void PreviewEntryAttachmentsDialog::update() +{ + if (m_type == Tools::MimeType::Unknown) { + updateTextAttachment(tr("No preview available").toUtf8()); + } else if (m_type == Tools::MimeType::Image) { + updateImageAttachment(m_data); + } else if (m_type == Tools::MimeType::PlainText) { + updateTextAttachment(m_data); + } +} + +void PreviewEntryAttachmentsDialog::updateTextAttachment(const QByteArray& data) +{ + m_ui->attachmentTextEdit->setPlainText(QString::fromUtf8(data)); +} + +void PreviewEntryAttachmentsDialog::updateImageAttachment(const QByteArray& data) +{ + if (m_imageCache.isNull() && !m_imageCache.loadFromData(data)) { + updateTextAttachment(tr("Image format not supported").toUtf8()); + return; + } + + updateImageAttachment(m_imageCache); +} + +void PreviewEntryAttachmentsDialog::updateImageAttachment(const QImage& image) +{ + m_ui->attachmentTextEdit->clear(); + auto cursor = m_ui->attachmentTextEdit->textCursor(); + + cursor.insertImage(image.scaled(calculateImageSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); +} + +QSize PreviewEntryAttachmentsDialog::calculateImageSize() +{ + // Scale the image to the contents rect minus another set of margins to avoid scrollbars + auto margins = m_ui->attachmentTextEdit->contentsMargins(); + auto size = m_ui->attachmentTextEdit->contentsRect().size(); + size.setWidth(size.width() - margins.left() - margins.right()); + size.setHeight(size.height() - margins.top() - margins.bottom()); + + return size; +} + +Tools::MimeType PreviewEntryAttachmentsDialog::attachmentType(const QByteArray& data) const +{ + QMimeDatabase mimeDb{}; + const auto mime = mimeDb.mimeTypeForData(data); + + return Tools::toMimeType(mime.name()); +} + +void PreviewEntryAttachmentsDialog::resizeEvent(QResizeEvent* event) +{ + QDialog::resizeEvent(event); + + if (m_type == Tools::MimeType::Image) { + update(); + } +} diff --git a/src/gui/entry/PreviewEntryAttachmentsDialog.h b/src/gui/entry/PreviewEntryAttachmentsDialog.h new file mode 100644 index 000000000..43bf41abd --- /dev/null +++ b/src/gui/entry/PreviewEntryAttachmentsDialog.h @@ -0,0 +1,63 @@ +/* + * Copyright (C) 2025 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 . + */ + +#pragma once + +#include "core/Tools.h" + +#include +#include + +namespace Ui +{ + class EntryAttachmentsDialog; +} + +class PreviewEntryAttachmentsDialog : public QDialog +{ + Q_OBJECT + +public: + explicit PreviewEntryAttachmentsDialog(QWidget* parent = nullptr); + ~PreviewEntryAttachmentsDialog() override; + + void setAttachment(const QString& name, const QByteArray& data); + +signals: + void openAttachment(const QString& name); + void saveAttachment(const QString& name); + +protected: + void resizeEvent(QResizeEvent* event) override; + +private: + Tools::MimeType attachmentType(const QByteArray& data) const; + + void update(); + void updateTextAttachment(const QByteArray& data); + void updateImageAttachment(const QByteArray& data); + void updateImageAttachment(const QImage& data); + + QSize calculateImageSize(); + + QScopedPointer m_ui; + + QString m_name; + QByteArray m_data; + QImage m_imageCache; + Tools::MimeType m_type{Tools::MimeType::Unknown}; +}; diff --git a/src/gui/export/ExportDialog.cpp b/src/gui/export/ExportDialog.cpp index 3537505cc..4c2c2e6b5 100644 --- a/src/gui/export/ExportDialog.cpp +++ b/src/gui/export/ExportDialog.cpp @@ -19,7 +19,7 @@ #include "ui_ExportDialog.h" #include "gui/FileDialog.h" -#include "gui/HtmlExporter.h" +#include "gui/HtmlGuiExporter.h" ExportDialog::ExportDialog(QSharedPointer db, DatabaseTabWidget* parent) : QDialog(parent) @@ -44,9 +44,7 @@ ExportDialog::ExportDialog(QSharedPointer db, DatabaseTabWidget* MessageWidget::Warning); } -ExportDialog::~ExportDialog() -{ -} +ExportDialog::~ExportDialog() = default; QString ExportDialog::getStrategyName(ExportSortingStrategy strategy) { @@ -74,7 +72,7 @@ void ExportDialog::exportDatabase() FileDialog::saveLastDir("html", fileName, true); - HtmlExporter htmlExporter; + HtmlGuiExporter htmlExporter; if (!htmlExporter.exportDatabase( fileName, m_db, sortBy != ExportSortingStrategy::BY_DATABASE_ORDER, ascendingOrder)) { emit exportFailed(htmlExporter.errorString()); diff --git a/src/gui/group/EditGroupWidget.cpp b/src/gui/group/EditGroupWidget.cpp index 687dd056d..bf38caf2e 100644 --- a/src/gui/group/EditGroupWidget.cpp +++ b/src/gui/group/EditGroupWidget.cpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2011 Felix Geyer - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2022 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 @@ -73,7 +73,7 @@ EditGroupWidget::EditGroupWidget(QWidget* parent) #if defined(WITH_XC_BROWSER) , m_browserSettingsChanged(false) , m_browserUi(new Ui::EditGroupWidgetBrowser()) - , m_browserWidget(new QScrollArea()) + , m_browserWidget(new QWidget(this)) #endif , m_group(nullptr) { @@ -83,8 +83,7 @@ EditGroupWidget::EditGroupWidget(QWidget* parent) addPage(tr("Icon"), icons()->icon("preferences-desktop-icons"), m_editGroupWidgetIcons); #if defined(WITH_XC_BROWSER) if (config()->get(Config::Browser_Enabled).toBool()) { - addPage(tr("Browser Integration"), icons()->icon("internet-web-browser"), m_browserWidget); - m_browserUi->setupUi(m_browserWidget); + initializeBrowserPage(); } #endif #if defined(WITH_XC_KEESHARE) @@ -113,9 +112,7 @@ EditGroupWidget::EditGroupWidget(QWidget* parent) setupModifiedTracking(); } -EditGroupWidget::~EditGroupWidget() -{ -} +EditGroupWidget::~EditGroupWidget() = default; void EditGroupWidget::setupModifiedTracking() { @@ -135,28 +132,7 @@ void EditGroupWidget::setupModifiedTracking() #if defined(WITH_XC_BROWSER) if (config()->get(Config::Browser_Enabled).toBool()) { - // Browser integration tab - connect( - m_browserUi->browserIntegrationHideEntriesComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); - connect(m_browserUi->browserIntegrationSkipAutoSubmitComboBox, - SIGNAL(currentIndexChanged(int)), - SLOT(setModified())); - connect( - m_browserUi->browserIntegrationOnlyHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); - connect( - m_browserUi->browserIntegrationNotHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); - connect(m_browserUi->browserIntegrationHideEntriesComboBox, - SIGNAL(currentIndexChanged(int)), - SLOT(updateBrowserModified())); - connect(m_browserUi->browserIntegrationSkipAutoSubmitComboBox, - SIGNAL(currentIndexChanged(int)), - SLOT(updateBrowserModified())); - connect(m_browserUi->browserIntegrationOnlyHttpAuthComboBox, - SIGNAL(currentIndexChanged(int)), - SLOT(updateBrowserModified())); - connect(m_browserUi->browserIntegrationNotHttpAuthComboBox, - SIGNAL(currentIndexChanged(int)), - SLOT(updateBrowserModified())); + setupBrowserModifiedTracking(); } #endif } @@ -219,6 +195,8 @@ void EditGroupWidget::loadGroup(Group* group, bool create, const QSharedPointer< auto inheritSkipSubmit = false; auto inheritOnlyHttp = false; auto inheritNoHttp = false; + auto inheritOmitWww = false; + auto inheritRestrictKey = QString(); auto parent = group->parentGroup(); if (parent) { @@ -226,12 +204,24 @@ void EditGroupWidget::loadGroup(Group* group, bool create, const QSharedPointer< inheritSkipSubmit = parent->resolveCustomDataTriState(BrowserService::OPTION_SKIP_AUTO_SUBMIT); inheritOnlyHttp = parent->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH); inheritNoHttp = parent->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH); + inheritOmitWww = parent->resolveCustomDataTriState(BrowserService::OPTION_OMIT_WWW); + inheritRestrictKey = parent->resolveCustomDataString(BrowserService::OPTION_RESTRICT_KEY); } + // If the page has not been created at all, some of the elements are null + if (m_browserUi->browserIntegrationHideEntriesComboBox == nullptr + && config()->get(Config::Browser_Enabled).toBool()) { + initializeBrowserPage(); + setupBrowserModifiedTracking(); + } + + setPageHidden(m_browserWidget, false); addTriStateItems(m_browserUi->browserIntegrationHideEntriesComboBox, inheritHideEntries); addTriStateItems(m_browserUi->browserIntegrationSkipAutoSubmitComboBox, inheritSkipSubmit); addTriStateItems(m_browserUi->browserIntegrationOnlyHttpAuthComboBox, inheritOnlyHttp); addTriStateItems(m_browserUi->browserIntegrationNotHttpAuthComboBox, inheritNoHttp); + addTriStateItems(m_browserUi->browserIntegrationOmitWwwCombobox, inheritOmitWww); + addRestrictKeyComboBoxItems(m_db->metadata()->customData()->keys(), inheritRestrictKey); m_browserUi->browserIntegrationHideEntriesComboBox->setCurrentIndex( indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_HIDE_ENTRY, false))); @@ -241,6 +231,11 @@ void EditGroupWidget::loadGroup(Group* group, bool create, const QSharedPointer< indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_ONLY_HTTP_AUTH, false))); m_browserUi->browserIntegrationNotHttpAuthComboBox->setCurrentIndex( indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_NOT_HTTP_AUTH, false))); + m_browserUi->browserIntegrationOmitWwwCombobox->setCurrentIndex( + indexFromTriState(group->resolveCustomDataTriState(BrowserService::OPTION_OMIT_WWW, false))); + setRestrictKeyComboBoxIndex(group); + } else if (hasPage(m_browserWidget)) { + setPageHidden(m_browserWidget, true); } #endif @@ -309,6 +304,10 @@ void EditGroupWidget::apply() m_temporaryGroup->setCustomDataTriState( BrowserService::OPTION_NOT_HTTP_AUTH, triStateFromIndex(m_browserUi->browserIntegrationNotHttpAuthComboBox->currentIndex())); + m_temporaryGroup->setCustomDataTriState( + BrowserService::OPTION_OMIT_WWW, + triStateFromIndex(m_browserUi->browserIntegrationOmitWwwCombobox->currentIndex())); + setRestrictKeyCustomData(m_temporaryGroup->customData()); } #endif @@ -355,6 +354,34 @@ void EditGroupWidget::cancel() } #ifdef WITH_XC_BROWSER +void EditGroupWidget::initializeBrowserPage() +{ + addPage(tr("Browser Integration"), icons()->icon("internet-web-browser"), m_browserWidget); + m_browserUi->setupUi(m_browserWidget); +} + +void EditGroupWidget::setupBrowserModifiedTracking() +{ + // Browser integration tab + connect(m_browserUi->browserIntegrationHideEntriesComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); + connect( + m_browserUi->browserIntegrationSkipAutoSubmitComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); + connect(m_browserUi->browserIntegrationOnlyHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); + connect(m_browserUi->browserIntegrationNotHttpAuthComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModified())); + connect(m_browserUi->browserIntegrationHideEntriesComboBox, + SIGNAL(currentIndexChanged(int)), + SLOT(updateBrowserModified())); + connect(m_browserUi->browserIntegrationSkipAutoSubmitComboBox, + SIGNAL(currentIndexChanged(int)), + SLOT(updateBrowserModified())); + connect(m_browserUi->browserIntegrationOnlyHttpAuthComboBox, + SIGNAL(currentIndexChanged(int)), + SLOT(updateBrowserModified())); + connect(m_browserUi->browserIntegrationNotHttpAuthComboBox, + SIGNAL(currentIndexChanged(int)), + SLOT(updateBrowserModified())); +} + void EditGroupWidget::updateBrowserModified() { m_browserSettingsChanged = true; @@ -422,3 +449,58 @@ Group::TriState EditGroupWidget::triStateFromIndex(int index) return Group::Inherit; } } + +#ifdef WITH_XC_BROWSER +void EditGroupWidget::addRestrictKeyComboBoxItems(QStringList const& keyList, QString inheritValue) +{ + auto comboBox = m_browserUi->browserIntegrationRestrictKeyCombobox; + + comboBox->clear(); + comboBox->addItem( + tr("Inherit from parent group (%1)").arg(BrowserService::decodeCustomDataRestrictKey(inheritValue))); + comboBox->addItem(tr("Disable")); + + comboBox->insertSeparator(2); + + // Add all the browser keys to the combobox + for (const QString& key : keyList) { + if (key.startsWith(CustomData::BrowserKeyPrefix)) { + auto strippedKey = key; + strippedKey.remove(CustomData::BrowserKeyPrefix); + comboBox->addItem(strippedKey); + } + } +} + +void EditGroupWidget::setRestrictKeyComboBoxIndex(const Group* group) +{ + auto comboBox = m_browserUi->browserIntegrationRestrictKeyCombobox; + + if (!group || !group->customData()->contains(BrowserService::OPTION_RESTRICT_KEY)) { + comboBox->setCurrentIndex(0); + return; + } + + auto key = group->customData()->value(BrowserService::OPTION_RESTRICT_KEY); + if (key.isEmpty()) { + comboBox->setCurrentIndex(1); + } else { + comboBox->setCurrentText(key); + } +} + +// Set the customData regarding OPTION_RESTRICT_KEY +void EditGroupWidget::setRestrictKeyCustomData(CustomData* customData) +{ + auto comboBox = m_browserUi->browserIntegrationRestrictKeyCombobox; + auto key = BrowserService::OPTION_RESTRICT_KEY; + auto idx = comboBox->currentIndex(); + if (idx == 0) { + customData->remove(key); + } else if (idx == 1) { + customData->set(key, QString()); + } else { + customData->set(key, comboBox->currentText()); + } +} +#endif diff --git a/src/gui/group/EditGroupWidget.h b/src/gui/group/EditGroupWidget.h index e61e38c54..35a84d768 100644 --- a/src/gui/group/EditGroupWidget.h +++ b/src/gui/group/EditGroupWidget.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2011 Felix Geyer - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2022 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 @@ -39,9 +39,7 @@ namespace Ui class IEditGroupPage { public: - virtual ~IEditGroupPage() - { - } + virtual ~IEditGroupPage() = default; virtual QString name() = 0; virtual QIcon icon() = 0; virtual QWidget* createWidget() = 0; @@ -55,7 +53,7 @@ class EditGroupWidget : public EditWidget public: explicit EditGroupWidget(QWidget* parent = nullptr); - ~EditGroupWidget(); + ~EditGroupWidget() override; void loadGroup(Group* group, bool create, const QSharedPointer& database); void clear(); @@ -72,6 +70,8 @@ private slots: void save(); void cancel(); #ifdef WITH_XC_BROWSER + void initializeBrowserPage(); + void setupBrowserModifiedTracking(); void updateBrowserModified(); #endif @@ -81,6 +81,10 @@ private: Group::TriState triStateFromIndex(int index); void setupModifiedTracking(); + void addRestrictKeyComboBoxItems(QStringList const& keyList, QString inheritValue); + void setRestrictKeyComboBoxIndex(const Group* group); + void setRestrictKeyCustomData(CustomData* customData); + const QScopedPointer m_mainUi; QPointer m_editGroupWidgetMain; @@ -89,7 +93,7 @@ private: #ifdef WITH_XC_BROWSER bool m_browserSettingsChanged; const QScopedPointer m_browserUi; - QPointer m_browserWidget; + QWidget* const m_browserWidget; #endif QScopedPointer m_temporaryGroup; diff --git a/src/gui/group/EditGroupWidgetBrowser.ui b/src/gui/group/EditGroupWidgetBrowser.ui index f043438d0..8d94693fd 100644 --- a/src/gui/group/EditGroupWidgetBrowser.ui +++ b/src/gui/group/EditGroupWidgetBrowser.ui @@ -1,34 +1,7 @@ EditGroupWidgetBrowser - - - - 0 - 0 - 539 - 523 - - - - Edit Group - - - QFrame::NoFrame - - - QFrame::Plain - - - Qt::ScrollBarAlwaysOff - - - QAbstractScrollArea::AdjustToContents - - - true - - + 0 @@ -59,115 +32,150 @@
    -    -   0 -   -   -   10 -   -   -   0 -   -   -   0 -    -    -   10 -    -    -   8 -    -    -    -    -   Hide entries from browser extension: -    -    -   Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter -    -    -    -    -    -    -   Hide entries from browser extension toggle for this and sub groups -    -    -    -    -    -    -   Skip Auto-Submit for entries: -    -    -   Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter -    -    -    -    -    -    -   Skip Auto-Submit toggle for this and sub groups -    -    -    -    -    -    -   Use entries only with HTTP Basic Auth: -    -    -   Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter -    -    -    -    -    -    -   Only HTTP Auth toggle for this and sub groups -    -    -    -    -   -    -    Do not use entries with HTTP Basic Auth: -    -    -    Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter -    -    -    -    -    -    -    Do not use HTTP Auth toggle for this and sub groups -    -    -    -    -    -    -    Qt::Vertical -    -    -    -    20 -    40 -    -    -    -    -    -   + + 0 + + + 10 + + + 0 + + + 0 + + + 10 + + + 8 + + + + + Hide entries from browser extension: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Hide entries from browser extension toggle for this and sub groups + + + + + + + Skip Auto-Submit for entries: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Skip Auto-Submit toggle for this and sub groups + + + + + + + Use entries only with HTTP Basic Auth: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Only HTTP Auth toggle for this and sub groups + + + + + + + Do not use entries with HTTP Basic Auth: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Do not use HTTP Auth toggle for this and sub groups + + + + + + + Omit WWW subdomain from matching: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Omit WWW subdomain from matching toggle for this and sub groups + + + + + + + Restrict matching to given browser key: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Restrict matching to given browser key toggle for this and sub groups + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + +
    +
    - browserIntegrationHideEntriesComboBox browserIntegrationSkipAutoSubmitComboBox browserIntegrationOnlyHttpAuthComboBox browserIntegrationNotHttpAuthComboBox + browserIntegrationOmitWwwCombobox + browserIntegrationRestrictKeyCombobox diff --git a/src/gui/group/GroupModel.cpp b/src/gui/group/GroupModel.cpp index 57ea56235..18b926dc2 100644 --- a/src/gui/group/GroupModel.cpp +++ b/src/gui/group/GroupModel.cpp @@ -74,7 +74,7 @@ int GroupModel::columnCount(const QModelIndex& parent) const QModelIndex GroupModel::index(int row, int column, const QModelIndex& parent) const { if (!hasIndex(row, column, parent)) { - return QModelIndex(); + return {}; } Group* group; @@ -91,7 +91,7 @@ QModelIndex GroupModel::index(int row, int column, const QModelIndex& parent) co QModelIndex GroupModel::parent(const QModelIndex& index) const { if (!index.isValid()) { - return QModelIndex(); + return {}; } return parent(groupFromIndex(index)); @@ -103,7 +103,7 @@ QModelIndex GroupModel::parent(Group* group) const if (!parentGroup) { // index is already the root group - return QModelIndex(); + return {}; } else { const Group* grandParentGroup = parentGroup->parentGroup(); if (!grandParentGroup) { @@ -118,7 +118,7 @@ QModelIndex GroupModel::parent(Group* group) const QVariant GroupModel::data(const QModelIndex& index, int role) const { if (!index.isValid()) { - return QVariant(); + return {}; } Group* group = groupFromIndex(index); @@ -145,7 +145,7 @@ QVariant GroupModel::data(const QModelIndex& index, int role) const } return tooltip; } else { - return QVariant(); + return {}; } } @@ -155,7 +155,7 @@ QVariant GroupModel::headerData(int section, Qt::Orientation orientation, int ro Q_UNUSED(orientation); Q_UNUSED(role); - return QVariant(); + return {}; } QModelIndex GroupModel::index(Group* group) const @@ -333,7 +333,7 @@ QMimeData* GroupModel::mimeData(const QModelIndexList& indexes) const return nullptr; } - QMimeData* data = new QMimeData(); + auto data = new QMimeData(); QByteArray encoded; QDataStream stream(&encoded, QIODevice::WriteOnly); diff --git a/src/gui/group/GroupView.cpp b/src/gui/group/GroupView.cpp index 5ffcc5d94..46cc0af6a 100644 --- a/src/gui/group/GroupView.cpp +++ b/src/gui/group/GroupView.cpp @@ -33,6 +33,7 @@ GroupView::GroupView(Database* db, QWidget* parent) QTreeView::setModel(m_model); setHeaderHidden(true); setUniformRowHeights(true); + setTextElideMode(Qt::ElideNone); // clang-format off connect(this, SIGNAL(expanded(QModelIndex)), SLOT(expandedChanged(QModelIndex))); @@ -44,12 +45,15 @@ GroupView::GroupView(Database* db, QWidget* parent) // clang-format on new QShortcut(Qt::CTRL + Qt::Key_F10, this, SLOT(contextMenuShortcutPressed()), nullptr, Qt::WidgetShortcut); + new QShortcut( + Qt::CTRL + Qt::SHIFT + Qt::Key_PageUp, this, SLOT(selectPreviousGroup()), nullptr, Qt::WindowShortcut); + new QShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_PageDown, this, SLOT(selectNextGroup()), nullptr, Qt::WindowShortcut); // keyboard shortcuts to sort children of a group - auto shortcut = new QShortcut(Qt::CTRL + Qt::Key_Down, this); + auto shortcut = new QShortcut(Qt::CTRL + Qt::Key_Down, this, nullptr, nullptr, Qt::WidgetShortcut); connect(shortcut, &QShortcut::activated, this, [this]() { sortGroups(false); }); - shortcut = new QShortcut(Qt::CTRL + Qt::Key_Up, this); + shortcut = new QShortcut(Qt::CTRL + Qt::Key_Up, this, nullptr, nullptr, Qt::WidgetShortcut); connect(shortcut, &QShortcut::activated, this, [this]() { sortGroups(true); }); modelReset(); @@ -60,6 +64,24 @@ GroupView::GroupView(Database* db, QWidget* parent) setDefaultDropAction(Qt::MoveAction); } +void GroupView::selectPreviousGroup() +{ + auto previousIndex = indexAbove(currentIndex()); + if (previousIndex.isValid()) { + auto previousGroup = m_model->groupFromIndex(previousIndex); + setCurrentGroup(previousGroup); + } +} + +void GroupView::selectNextGroup() +{ + auto nextIndex = indexBelow(currentIndex()); + if (nextIndex.isValid()) { + auto nextGroup = m_model->groupFromIndex(nextIndex); + setCurrentGroup(nextGroup); + } +} + void GroupView::contextMenuShortcutPressed() { auto index = currentIndex(); @@ -71,6 +93,7 @@ void GroupView::contextMenuShortcutPressed() void GroupView::changeDatabase(const QSharedPointer& newDb) { m_model->changeDatabase(newDb.data()); + setColumnWidth(0, sizeHintForColumn(0)); } void GroupView::dragMoveEvent(QDragMoveEvent* event) @@ -113,6 +136,7 @@ void GroupView::expandedChanged(const QModelIndex& index) Group* group = m_model->groupFromIndex(index); group->setExpanded(isExpanded(index)); + setColumnWidth(0, sizeHintForColumn(0)); } void GroupView::recInitExpanded(Group* group) diff --git a/src/gui/group/GroupView.h b/src/gui/group/GroupView.h index aa4fd85de..15df853ff 100644 --- a/src/gui/group/GroupView.h +++ b/src/gui/group/GroupView.h @@ -46,6 +46,8 @@ private slots: void syncExpandedState(const QModelIndex& parent, int start, int end); void modelReset(); void contextMenuShortcutPressed(); + void selectPreviousGroup(); + void selectNextGroup(); protected: void dragMoveEvent(QDragMoveEvent* event) override; diff --git a/src/gui/org.keepassxc.KeePassXC.MainWindow.xml b/src/gui/org.keepassxc.KeePassXC.MainWindow.xml index 635a66b93..651018149 100644 --- a/src/gui/org.keepassxc.KeePassXC.MainWindow.xml +++ b/src/gui/org.keepassxc.KeePassXC.MainWindow.xml @@ -15,6 +15,12 @@ + + + + + + diff --git a/src/gui/osutils/DeviceListener.cpp b/src/gui/osutils/DeviceListener.cpp new file mode 100644 index 000000000..d48039308 --- /dev/null +++ b/src/gui/osutils/DeviceListener.cpp @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "DeviceListener.h" +#include + +DeviceListener::DeviceListener(QWidget* parent) + : QWidget(parent) +{ +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) + m_listeners[0] = new DEVICELISTENER_IMPL(this); + connectSignals(m_listeners[0]); +#endif +} + +DeviceListener::~DeviceListener() +{ +} + +void DeviceListener::connectSignals(DEVICELISTENER_IMPL* listener) +{ + connect(listener, &DEVICELISTENER_IMPL::devicePlugged, this, [&](bool state, void* ctx, void* device) { + // Wait a few ms to prevent USB device access conflicts + QTimer::singleShot(50, this, [&] { emit devicePlugged(state, ctx, device); }); + }); +} + +DeviceListener::Handle +DeviceListener::registerHotplugCallback(bool arrived, bool left, int vendorId, int productId, const QUuid* deviceClass) +{ +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) + const Handle handle = m_listeners[0]->registerHotplugCallback(arrived, left, vendorId, productId, deviceClass); +#else + auto* listener = new DEVICELISTENER_IMPL(this); + const auto handle = reinterpret_cast(listener); + m_listeners[handle] = listener; + m_listeners[handle]->registerHotplugCallback(arrived, left, vendorId, productId, deviceClass); + connectSignals(m_listeners[handle]); +#endif + return handle; +} + +void DeviceListener::deregisterHotplugCallback(Handle handle) +{ +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) + m_listeners[0]->deregisterHotplugCallback(handle); +#else + if (m_listeners.contains(handle)) { + m_listeners[handle]->deregisterHotplugCallback(); + m_listeners.remove(handle); + } +#endif +} + +void DeviceListener::deregisterAllHotplugCallbacks() +{ +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) + m_listeners[0]->deregisterAllHotplugCallbacks(); +#else + while (!m_listeners.isEmpty()) { + deregisterHotplugCallback(m_listeners.constBegin().key()); + } +#endif +} diff --git a/src/gui/osutils/DeviceListener.h b/src/gui/osutils/DeviceListener.h new file mode 100644 index 000000000..831e6ddca --- /dev/null +++ b/src/gui/osutils/DeviceListener.h @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef DEVICELISTENER_H +#define DEVICELISTENER_H + +#include +#include +#include +#include + +#if defined(Q_OS_WIN) +#include "winutils/DeviceListenerWin.h" +#elif defined(Q_OS_MACOS) +#include "macutils/DeviceListenerMac.h" +#elif defined(Q_OS_UNIX) +#include "nixutils/DeviceListenerLibUsb.h" +#endif + +class QUuid; + +class DeviceListener : public QWidget +{ + Q_OBJECT + +public: + typedef qintptr Handle; + static constexpr int MATCH_ANY = -1; + + explicit DeviceListener(QWidget* parent); + DeviceListener(const DeviceListener&) = delete; + ~DeviceListener() override; + + /** + * Register a hotplug notification callback. + * + * Fires devicePlugged() or deviceUnplugged() when the state of a matching device changes. + * The signals are supplied with the platform-specific context and ID of the firing device. + * Registering a new callback with the same DeviceListener will unregister any previous callbacks. + * + * @param arrived listen for new devices + * @param left listen for device unplug + * @param vendorId vendor ID to listen for or DeviceListener::MATCH_ANY + * @param productId product ID to listen for or DeviceListener::MATCH_ANY + * @param deviceClass device class GUID (Windows only) + * @return callback handle + */ + Handle registerHotplugCallback(bool arrived, + bool left, + int vendorId = MATCH_ANY, + int productId = MATCH_ANY, + const QUuid* deviceClass = nullptr); + void deregisterHotplugCallback(Handle handle); + void deregisterAllHotplugCallbacks(); + +signals: + void devicePlugged(bool state, void* ctx, void* device); + +private: + QHash> m_listeners; + void connectSignals(DEVICELISTENER_IMPL* listener); +}; + +#endif // DEVICELISTENER_H diff --git a/src/gui/osutils/OSUtilsBase.cpp b/src/gui/osutils/OSUtilsBase.cpp index a8395bb74..8a95b7f55 100644 --- a/src/gui/osutils/OSUtilsBase.cpp +++ b/src/gui/osutils/OSUtilsBase.cpp @@ -22,12 +22,10 @@ OSUtilsBase::OSUtilsBase(QObject* parent) { } -OSUtilsBase::~OSUtilsBase() -{ -} +OSUtilsBase::~OSUtilsBase() = default; bool OSUtilsBase::setPreventScreenCapture(QWindow*, bool) const { // Do nothing by default - return false; + return true; } diff --git a/src/gui/osutils/OSUtilsBase.h b/src/gui/osutils/OSUtilsBase.h index 080a53413..11d739fde 100644 --- a/src/gui/osutils/OSUtilsBase.h +++ b/src/gui/osutils/OSUtilsBase.h @@ -56,6 +56,11 @@ public: */ virtual bool isCapslockEnabled() = 0; + /** + * @param enable Toggle protection on user input (if available). + */ + virtual void setUserInputProtection(bool enable) = 0; + virtual void registerNativeEventFilter() = 0; virtual bool registerGlobalShortcut(const QString& name, @@ -82,7 +87,7 @@ signals: protected: explicit OSUtilsBase(QObject* parent = nullptr); - virtual ~OSUtilsBase(); + ~OSUtilsBase() override; }; #endif // KEEPASSXC_OSUTILSBASE_H diff --git a/src/gui/osutils/ScreenLockListener.cpp b/src/gui/osutils/ScreenLockListener.cpp index 2c1ba055a..1e3e4e47c 100644 --- a/src/gui/osutils/ScreenLockListener.cpp +++ b/src/gui/osutils/ScreenLockListener.cpp @@ -25,6 +25,4 @@ ScreenLockListener::ScreenLockListener(QWidget* parent) connect(m_listener, SIGNAL(screenLocked()), this, SIGNAL(screenLocked())); } -ScreenLockListener::~ScreenLockListener() -{ -} +ScreenLockListener::~ScreenLockListener() = default; diff --git a/src/gui/osutils/ScreenLockListener.h b/src/gui/osutils/ScreenLockListener.h index 107d342a6..326bacd2e 100644 --- a/src/gui/osutils/ScreenLockListener.h +++ b/src/gui/osutils/ScreenLockListener.h @@ -26,8 +26,8 @@ class ScreenLockListener : public QObject Q_OBJECT public: - ScreenLockListener(QWidget* parent = nullptr); - ~ScreenLockListener(); + explicit ScreenLockListener(QWidget* parent); + ~ScreenLockListener() override; signals: void screenLocked(); diff --git a/src/gui/osutils/ScreenLockListenerPrivate.h b/src/gui/osutils/ScreenLockListenerPrivate.h index 8f509280b..34511f168 100644 --- a/src/gui/osutils/ScreenLockListenerPrivate.h +++ b/src/gui/osutils/ScreenLockListenerPrivate.h @@ -17,7 +17,7 @@ #ifndef SCREENLOCKLISTENERPRIVATE_H #define SCREENLOCKLISTENERPRIVATE_H -#include +#include class ScreenLockListenerPrivate : public QObject { @@ -26,7 +26,7 @@ public: static ScreenLockListenerPrivate* instance(QWidget* parent = nullptr); protected: - ScreenLockListenerPrivate(QWidget* parent = nullptr); + explicit ScreenLockListenerPrivate(QWidget* parent = nullptr); signals: void screenLocked(); diff --git a/src/gui/osutils/macutils/AppKit.h b/src/gui/osutils/macutils/AppKit.h index 309c05b90..260b6c208 100644 --- a/src/gui/osutils/macutils/AppKit.h +++ b/src/gui/osutils/macutils/AppKit.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2016 Lennart Glauer - * 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 @@ -19,8 +19,8 @@ #ifndef KEEPASSX_APPKIT_H #define KEEPASSX_APPKIT_H -#include #include +#include #include class QWindow; @@ -47,7 +47,7 @@ public: void setWindowSecurity(QWindow* window, bool state); signals: - void lockDatabases(); + void userSwitched(); void interfaceThemeChanged(); private: diff --git a/src/gui/osutils/macutils/AppKitImpl.mm b/src/gui/osutils/macutils/AppKitImpl.mm index a94d9efb6..a2b30e553 100644 --- a/src/gui/osutils/macutils/AppKitImpl.mm +++ b/src/gui/osutils/macutils/AppKitImpl.mm @@ -1,6 +1,6 @@ /* + * Copyright (C) 2024 KeePassXC Team * Copyright (C) 2016 Lennart Glauer - * 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 @@ -19,6 +19,9 @@ #import "AppKitImpl.h" #import #import +#if __clang_major__ >= 13 && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_VERSION_12_3 +#import +#endif @implementation AppKitImpl @@ -32,24 +35,13 @@ selector:@selector(didDeactivateApplicationObserver:) name:NSWorkspaceDidDeactivateApplicationNotification object:nil]; - + [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(userSwitchHandler:) name:NSWorkspaceSessionDidResignActiveNotification object:nil]; - [[NSDistributedNotificationCenter defaultCenter] addObserver:self - selector:@selector(interfaceThemeChanged:) - name:@"AppleInterfaceThemeChangedNotification" - object:nil]; - - // Unfortunately, there is no notification for a wallpaper change, which affects - // the status bar colour on macOS Big Sur, but we can at least subscribe to this. - [[NSDistributedNotificationCenter defaultCenter] addObserver:self - selector:@selector(interfaceThemeChanged:) - name:@"AppleColorPreferencesChangedNotification" - object:nil]; - + [NSApp addObserver:self forKeyPath:@"effectiveAppearance" options:NSKeyValueObservingOptionNew context:nil]; } return self; } @@ -67,14 +59,29 @@ } } -// -// Light / dark theme toggled -// -- (void) interfaceThemeChanged:(NSNotification*) notification +- (void) observeValueForKeyPath:(NSString *)keyPath + ofObject:(id)object + change:(NSDictionary *)change + context:(void *)context { - Q_UNUSED(notification); - if (m_appkit) { - emit m_appkit->interfaceThemeChanged(); + Q_UNUSED(object) + Q_UNUSED(change) + Q_UNUSED(context) + if ([keyPath isEqualToString:@"effectiveAppearance"]) { + if (m_appkit) { + + void (^emitBlock)(void) = ^{ + emit m_appkit->interfaceThemeChanged(); + }; + + if(@available(macOS 11.0, *)) { + // Not sure why exactly this call is needed, but Apple sample code uses it so it's best to use it here too + [NSApp.effectiveAppearance performAsCurrentDrawingAppearance:emitBlock]; + } + else { + emitBlock(); + } + } } } @@ -127,10 +134,7 @@ // - (bool) isDarkMode { - NSDictionary* dict = [[NSUserDefaults standardUserDefaults] persistentDomainForName:NSGlobalDomain]; - id style = [dict objectForKey:@"AppleInterfaceStyle"]; - return ( style && [style isKindOfClass:[NSString class]] - && NSOrderedSame == [style caseInsensitiveCompare:@"dark"] ); + return [NSApp.effectiveAppearance.name isEqualToString:NSAppearanceNameDarkAqua]; } @@ -159,7 +163,7 @@ { if ([[notification name] isEqualToString:NSWorkspaceSessionDidResignActiveNotification] && m_appkit) { - emit m_appkit->lockDatabases(); + emit m_appkit->userSwitched(); } } @@ -180,28 +184,37 @@ // // Check if screen recording is enabled, may show an popup asking for permissions // -- (bool) enableScreenRecording +- (bool) enableScreenRecording { -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 - if (@available(macOS 10.15, *)) { - // Request screen recording permission on macOS 10.15+ - // This is necessary to get the current window title - CGDisplayStreamRef stream = CGDisplayStreamCreate(CGMainDisplayID(), 1, 1, kCVPixelFormatType_32BGRA, nil, - ^(CGDisplayStreamFrameStatus status, uint64_t displayTime, - IOSurfaceRef frameSurface, CGDisplayStreamUpdateRef updateRef) { - Q_UNUSED(status); - Q_UNUSED(displayTime); - Q_UNUSED(frameSurface); - Q_UNUSED(updateRef); - }); - if (stream) { - CFRelease(stream); - } else { - return NO; - } +#if __clang_major__ >= 13 && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_VERSION_12_3 + if (@available(macOS 12.3, *)) { + __block BOOL hasPermission = NO; + dispatch_semaphore_t sema = dispatch_semaphore_create(0); + + // Attempt to use SCShareableContent to check for screen recording permission + [SCShareableContent getShareableContentWithCompletionHandler:^(SCShareableContent * _Nullable content, + NSError * _Nullable error) { + Q_UNUSED(error); + if (content) { + // Successfully obtained content, indicating permission is granted + hasPermission = YES; + } else { + // No permission or other error occurred + hasPermission = NO; + } + // Notify the semaphore that the asynchronous task is complete + dispatch_semaphore_signal(sema); + }]; + + // Wait for the asynchronous callback to complete + dispatch_time_t timeout = dispatch_time(DISPATCH_TIME_NOW, 5 * NSEC_PER_SEC); + dispatch_semaphore_wait(sema, timeout); + + // Return the final result + return hasPermission; } #endif - return YES; + return YES; // Return YES for macOS versions that do not support ScreenCaptureKit } - (void) toggleForegroundApp:(bool) foreground @@ -234,6 +247,7 @@ AppKit::~AppKit() { [[[NSWorkspace sharedWorkspace] notificationCenter] removeObserver:static_cast(self)]; [[NSDistributedNotificationCenter defaultCenter] removeObserver:static_cast(self)]; + [NSApp removeObserver:static_cast(self) forKeyPath:@"effectiveAppearance"]; [static_cast(self) dealloc]; } diff --git a/src/gui/osutils/macutils/DeviceListenerMac.cpp b/src/gui/osutils/macutils/DeviceListenerMac.cpp new file mode 100644 index 000000000..e3785a04a --- /dev/null +++ b/src/gui/osutils/macutils/DeviceListenerMac.cpp @@ -0,0 +1,95 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "DeviceListenerMac.h" + +#include +#include + +DeviceListenerMac::DeviceListenerMac(QObject* parent) + : QObject(parent) + , m_mgr(nullptr) +{ +} + +DeviceListenerMac::~DeviceListenerMac() +{ + if (m_mgr) { + IOHIDManagerUnscheduleFromRunLoop(m_mgr, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode); + IOHIDManagerClose(m_mgr, kIOHIDOptionsTypeNone); + CFRelease(m_mgr); + } +} + +void DeviceListenerMac::registerHotplugCallback(bool arrived, bool left, int vendorId, int productId, const QUuid*) +{ + if (!m_mgr) { + m_mgr = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDManagerOptionNone); + if (!m_mgr) { + qWarning("Failed to create IOHIDManager."); + return; + } + IOHIDManagerScheduleWithRunLoop(m_mgr, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode); + } + + if (vendorId > 0 || productId > 0) { + CFMutableDictionaryRef matchingDict = IOServiceMatching(kIOHIDDeviceKey); + if (vendorId > 0) { + auto vid = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &vendorId); + CFDictionaryAddValue(matchingDict, CFSTR(kIOHIDVendorIDKey), vid); + CFRelease(vid); + } + if (productId > 0) { + auto pid = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &productId); + CFDictionaryAddValue(matchingDict, CFSTR(kIOHIDProductIDKey), pid); + CFRelease(pid); + } + IOHIDManagerSetDeviceMatching(m_mgr, matchingDict); + CFRelease(matchingDict); + } else { + IOHIDManagerSetDeviceMatching(m_mgr, nullptr); + } + + QPointer that = this; + if (arrived) { + IOHIDManagerRegisterDeviceMatchingCallback(m_mgr, [](void* ctx, IOReturn, void*, IOHIDDeviceRef device) { + static_cast(ctx)->onDeviceStateChanged(true, device); + }, that); + } + if (left) { + IOHIDManagerRegisterDeviceRemovalCallback(m_mgr, [](void* ctx, IOReturn, void*, IOHIDDeviceRef device) { + static_cast(ctx)->onDeviceStateChanged(true, device); + }, that); + } + + if (IOHIDManagerOpen(m_mgr, kIOHIDOptionsTypeNone) != kIOReturnSuccess) { + qWarning("Could not open enumerated devices."); + } +} + +void DeviceListenerMac::deregisterHotplugCallback() +{ + if (m_mgr) { + IOHIDManagerRegisterDeviceMatchingCallback(m_mgr, nullptr, this); + IOHIDManagerRegisterDeviceRemovalCallback(m_mgr, nullptr, this); + } +} + +void DeviceListenerMac::onDeviceStateChanged(bool state, void* device) +{ + emit devicePlugged(state, m_mgr, device); +} diff --git a/src/gui/osutils/macutils/DeviceListenerMac.h b/src/gui/osutils/macutils/DeviceListenerMac.h new file mode 100644 index 000000000..dae0886e8 --- /dev/null +++ b/src/gui/osutils/macutils/DeviceListenerMac.h @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef DEVICELISTENER_MAC_H +#define DEVICELISTENER_MAC_H + +#define DEVICELISTENER_IMPL DeviceListenerMac + +#include +#include + +class QUuid; + +class DeviceListenerMac : public QObject +{ + Q_OBJECT + +public: + explicit DeviceListenerMac(QObject* parent); + DeviceListenerMac(const DeviceListenerMac&) = delete; + ~DeviceListenerMac() override; + + void registerHotplugCallback(bool arrived, + bool left, + int vendorId = -1, + int productId = -1, const QUuid* = nullptr); + void deregisterHotplugCallback(); + +signals: + void devicePlugged(bool state, void* ctx, void* device); + +private: + void onDeviceStateChanged(bool state, void* device); + IOHIDManagerRef m_mgr; +}; + +#endif // DEVICELISTENER_MAC_H diff --git a/src/core/MacPasteboard.cpp b/src/gui/osutils/macutils/MacPasteboard.cpp similarity index 100% rename from src/core/MacPasteboard.cpp rename to src/gui/osutils/macutils/MacPasteboard.cpp diff --git a/src/core/MacPasteboard.h b/src/gui/osutils/macutils/MacPasteboard.h similarity index 100% rename from src/core/MacPasteboard.h rename to src/gui/osutils/macutils/MacPasteboard.h diff --git a/src/gui/osutils/macutils/MacUtils.cpp b/src/gui/osutils/macutils/MacUtils.cpp index c7d91950f..893ec8fcc 100644 --- a/src/gui/osutils/macutils/MacUtils.cpp +++ b/src/gui/osutils/macutils/MacUtils.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * Copyright (C) 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 @@ -39,7 +39,7 @@ MacUtils::MacUtils(QObject* parent) : OSUtilsBase(parent) , m_appkit(new AppKit()) { - connect(m_appkit.data(), SIGNAL(lockDatabases()), SIGNAL(lockDatabases())); + connect(m_appkit.data(), SIGNAL(userSwitched()), SIGNAL(userSwitched())); connect(m_appkit.data(), SIGNAL(interfaceThemeChanged()), SIGNAL(interfaceThemeChanged())); connect(m_appkit.data(), &AppKit::interfaceThemeChanged, this, [this]() { // Emit with delay, since isStatusBarDark() still returns the old value @@ -130,6 +130,8 @@ void MacUtils::setLaunchAtStartup(bool enable) if (enable) { QSettings agent(getLaunchAgentFilename(), QSettings::NativeFormat); agent.setValue("Label", qApp->property("KPXC_QUALIFIED_APPNAME").toString()); + agent.setValue("AssociatedBundleIdentifiers", qApp->property("KPXC_QUALIFIED_APPNAME").toString()); + agent.setValue("Program", QApplication::applicationFilePath()); agent.setValue("ProgramArguments", QStringList() << QApplication::applicationFilePath()); agent.setValue("RunAtLoad", true); agent.setValue("StandardErrorPath", "/dev/null"); @@ -148,6 +150,15 @@ bool MacUtils::isCapslockEnabled() #endif } +void MacUtils::setUserInputProtection(bool enable) +{ + if (enable) { + EnableSecureEventInput(); + } else { + DisableSecureEventInput(); + } +} + /** * Toggle application state between foreground app and UIElement app. * Foreground apps have dock icons, UIElement apps do not. @@ -166,11 +177,9 @@ bool MacUtils::canPreventScreenCapture() const bool MacUtils::setPreventScreenCapture(QWindow* window, bool prevent) const { - if (!window) { - return false; + if (window) { + m_appkit->setWindowSecurity(window, prevent); } - - m_appkit->setWindowSecurity(window, prevent); return true; } @@ -185,7 +194,6 @@ void MacUtils::registerNativeEventFilter() bool MacUtils::registerGlobalShortcut(const QString& name, Qt::Key key, Qt::KeyboardModifiers modifiers, QString* error) { auto keycode = qtToNativeKeyCode(key); - auto modifierscode = qtToNativeModifiers(modifiers, false); if (keycode == INVALID_KEYCODE) { if (error) { *error = tr("Invalid key code"); @@ -193,6 +201,16 @@ bool MacUtils::registerGlobalShortcut(const QString& name, Qt::Key key, Qt::Keyb return false; } + // Qt inverts CMD and CTRL on macOS under the hood, undo this + if (modifiers & Qt::MetaModifier && !(modifiers & Qt::ControlModifier)) { + modifiers &= ~Qt::MetaModifier; + modifiers |= Qt::ControlModifier; + } else if (modifiers & Qt::ControlModifier && !(modifiers & Qt::MetaModifier)) { + modifiers &= ~Qt::ControlModifier; + modifiers |= Qt::MetaModifier; + } + auto modifierscode = qtToNativeModifiers(modifiers, false); + // Check if this key combo is registered to another shortcut QHashIterator> i(m_globalShortcuts); while (i.hasNext()) { @@ -440,7 +458,6 @@ uint16 MacUtils::qtToNativeKeyCode(Qt::Key key) return kVK_F16; default: - Q_ASSERT(false); return INVALID_KEYCODE; } } @@ -469,13 +486,13 @@ CGEventFlags MacUtils::qtToNativeModifiers(Qt::KeyboardModifiers modifiers, bool nativeModifiers = CGEventFlags(nativeModifiers | shiftMod); } if (modifiers & Qt::ControlModifier) { - nativeModifiers = CGEventFlags(nativeModifiers | cmdMod); + nativeModifiers = CGEventFlags(nativeModifiers | controlMod); } if (modifiers & Qt::AltModifier) { nativeModifiers = CGEventFlags(nativeModifiers | optionMod); } if (modifiers & Qt::MetaModifier) { - nativeModifiers = CGEventFlags(nativeModifiers | controlMod); + nativeModifiers = CGEventFlags(nativeModifiers | cmdMod); } return nativeModifiers; diff --git a/src/gui/osutils/macutils/MacUtils.h b/src/gui/osutils/macutils/MacUtils.h index 1281aa072..5e0e121d5 100644 --- a/src/gui/osutils/macutils/MacUtils.h +++ b/src/gui/osutils/macutils/MacUtils.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2012 Felix Geyer - * 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 @@ -40,6 +40,7 @@ public: bool isLaunchAtStartupEnabled() const override; void setLaunchAtStartup(bool enable) override; bool isCapslockEnabled() override; + void setUserInputProtection(bool enable) override; WId activeWindow(); bool raiseWindow(WId pid); @@ -66,7 +67,7 @@ public: bool setPreventScreenCapture(QWindow* window, bool prevent) const override; signals: - void lockDatabases(); + void userSwitched(); protected: explicit MacUtils(QObject* parent = nullptr); diff --git a/src/gui/osutils/nixutils/DeviceListenerLibUsb.cpp b/src/gui/osutils/nixutils/DeviceListenerLibUsb.cpp new file mode 100644 index 000000000..97233fbb0 --- /dev/null +++ b/src/gui/osutils/nixutils/DeviceListenerLibUsb.cpp @@ -0,0 +1,134 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "DeviceListenerLibUsb.h" +#include "core/Tools.h" + +#include +#include +#include +#include + +DeviceListenerLibUsb::DeviceListenerLibUsb(QWidget* parent) + : QObject(parent) + , m_ctx(nullptr) + , m_completed(false) +{ +} + +DeviceListenerLibUsb::~DeviceListenerLibUsb() +{ + if (m_ctx) { + deregisterAllHotplugCallbacks(); + libusb_exit(static_cast(m_ctx)); + m_ctx = nullptr; + } +} + +namespace +{ + void handleUsbEvents(libusb_context* ctx, QAtomicInt* completed) + { + while (!*completed) { + libusb_handle_events_completed(ctx, reinterpret_cast(completed)); + Tools::sleep(100); + } + } +} // namespace + +DeviceListenerLibUsb::Handle +DeviceListenerLibUsb::registerHotplugCallback(bool arrived, bool left, int vendorId, int productId, const QUuid*) +{ + if (!m_ctx) { + if (libusb_init(reinterpret_cast(&m_ctx)) != LIBUSB_SUCCESS) { + qWarning("Unable to initialize libusb. USB devices may not be detected properly."); + return 0; + } + } + + int events = 0; + if (arrived) { + events |= LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED; + } + if (left) { + events |= LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT; + } + + Handle handle = 0; + auto* handleNative = reinterpret_cast(&handle); + const QPointer that = this; + const int ret = libusb_hotplug_register_callback( + static_cast(m_ctx), + static_cast(events), + static_cast(0), + vendorId, + productId, + LIBUSB_HOTPLUG_MATCH_ANY, + [](libusb_context* ctx, libusb_device* device, libusb_hotplug_event event, void* userData) -> int { + if (!ctx) { + return true; + } + emit static_cast(userData)->devicePlugged( + event == LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED, ctx, device); + return false; + }, + that, + handleNative); + if (ret != LIBUSB_SUCCESS) { + qWarning("Failed to register USB listener callback."); + handle = 0; + } + + if (m_completed && m_usbEvents.isRunning()) { + // Avoid race conditions + m_usbEvents.waitForFinished(); + } + if (handle > 0) { + m_callbackHandles.insert(handle); + if (!m_usbEvents.isRunning()) { + m_completed = false; + m_usbEvents = QtConcurrent::run(handleUsbEvents, static_cast(m_ctx), &m_completed); + } + } + return handle; +} + +void DeviceListenerLibUsb::deregisterHotplugCallback(Handle handle) +{ + if (!m_ctx || !m_callbackHandles.contains(handle)) { + return; + } +#ifdef Q_OS_FREEBSD + auto* handleNative = reinterpret_cast(handle); +#else + auto handleNative = static_cast(handle); +#endif + libusb_hotplug_deregister_callback(static_cast(m_ctx), handleNative); + m_callbackHandles.remove(handle); + + if (m_callbackHandles.isEmpty() && m_usbEvents.isRunning()) { + m_completed = true; + m_usbEvents.waitForFinished(); + } +} + +void DeviceListenerLibUsb::deregisterAllHotplugCallbacks() +{ + while (!m_callbackHandles.isEmpty()) { + deregisterHotplugCallback(*m_callbackHandles.constBegin()); + } +} diff --git a/src/gui/osutils/nixutils/DeviceListenerLibUsb.h b/src/gui/osutils/nixutils/DeviceListenerLibUsb.h new file mode 100644 index 000000000..4d207c847 --- /dev/null +++ b/src/gui/osutils/nixutils/DeviceListenerLibUsb.h @@ -0,0 +1,55 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef DEVICELISTENER_LIBUSB_H +#define DEVICELISTENER_LIBUSB_H + +#define DEVICELISTENER_IMPL DeviceListenerLibUsb + +#include +#include +#include +#include + +class QUuid; + +class DeviceListenerLibUsb : public QObject +{ + Q_OBJECT + +public: + typedef qintptr Handle; + explicit DeviceListenerLibUsb(QWidget* parent); + DeviceListenerLibUsb(const DeviceListenerLibUsb&) = delete; + ~DeviceListenerLibUsb() override; + + Handle + registerHotplugCallback(bool arrived, bool left, int vendorId = -1, int productId = -1, const QUuid* = nullptr); + void deregisterHotplugCallback(Handle handle); + void deregisterAllHotplugCallbacks(); + +signals: + void devicePlugged(bool state, void* ctx, void* device); + +private: + void* m_ctx; + QSet m_callbackHandles; + QFuture m_usbEvents; + QAtomicInt m_completed; +}; + +#endif // DEVICELISTENER_LIBUSB_H diff --git a/src/gui/osutils/nixutils/NixUtils.cpp b/src/gui/osutils/nixutils/NixUtils.cpp index d0fa84f3c..30b7e21e4 100644 --- a/src/gui/osutils/nixutils/NixUtils.cpp +++ b/src/gui/osutils/nixutils/NixUtils.cpp @@ -17,13 +17,20 @@ #include "NixUtils.h" +#include "config-keepassx.h" +#include "core/Config.h" +#include "core/Global.h" + #include #include +#include #include #include +#include #include #include #include +#ifdef WITH_XC_X11 #include #include @@ -44,6 +51,7 @@ namespace return 1; } } // namespace +#endif QPointer NixUtils::m_instance = nullptr; @@ -59,8 +67,10 @@ NixUtils* NixUtils::instance() NixUtils::NixUtils(QObject* parent) : OSUtilsBase(parent) { +#ifdef WITH_XC_X11 dpy = QX11Info::display(); rootWindow = QX11Info::appRootWindow(); +#endif // notify about system color scheme changes QDBusConnection sessionBus = QDBusConnection::sessionBus(); @@ -70,16 +80,19 @@ NixUtils::NixUtils(QObject* parent) "SettingChanged", this, SLOT(handleColorSchemeChanged(QString, QString, QDBusVariant))); + + QDBusMessage msg = QDBusMessage::createMethodCall( + "org.freedesktop.portal.Desktop", "/org/freedesktop/portal/desktop", "org.freedesktop.portal.Settings", "Read"); + msg << QVariant("org.freedesktop.appearance") << QVariant("color-scheme"); + sessionBus.callWithCallback(msg, this, SLOT(handleColorSchemeRead(QDBusVariant))); } -NixUtils::~NixUtils() -{ -} +NixUtils::~NixUtils() = default; bool NixUtils::isDarkMode() const { // prefer freedesktop "org.freedesktop.appearance color-scheme" setting - if (m_systemColorschemePref != ColorschemePref::PreferNone) { + if (m_systemColorschemePrefExists) { return m_systemColorschemePref == ColorschemePref::PreferDark; } @@ -113,12 +126,16 @@ QString NixUtils::getAutostartDesktopFilename(bool createDirs) const bool NixUtils::isLaunchAtStartupEnabled() const { +#ifndef KEEPASSXC_DIST_FLATPAK return QFile::exists(getAutostartDesktopFilename()); - ; +#else + return config()->get(Config::GUI_LaunchAtStartup).toBool(); +#endif } void NixUtils::setLaunchAtStartup(bool enable) { +#ifndef KEEPASSXC_DIST_FLATPAK if (enable) { QFile desktopFile(getAutostartDesktopFilename(true)); if (!desktopFile.open(QIODevice::WriteOnly)) { @@ -128,15 +145,15 @@ void NixUtils::setLaunchAtStartup(bool enable) const QString appImagePath = QString::fromLocal8Bit(qgetenv("APPIMAGE")); const bool isAppImage = !appImagePath.isNull() && QFile::exists(appImagePath); - const QString executeablePath = isAppImage ? appImagePath : QApplication::applicationFilePath(); + const QString executeablePathOrName = isAppImage ? appImagePath : QApplication::applicationName().toLower(); QTextStream stream(&desktopFile); stream.setCodec("UTF-8"); stream << QStringLiteral("[Desktop Entry]") << '\n' << QStringLiteral("Name=") << QApplication::applicationDisplayName() << '\n' << QStringLiteral("GenericName=") << tr("Password Manager") << '\n' - << QStringLiteral("Exec=") << executeablePath << '\n' - << QStringLiteral("TryExec=") << executeablePath << '\n' + << QStringLiteral("Exec=") << executeablePathOrName << '\n' + << QStringLiteral("TryExec=") << executeablePathOrName << '\n' << QStringLiteral("Icon=") << QApplication::applicationName().toLower() << '\n' << QStringLiteral("StartupWMClass=keepassxc") << '\n' << QStringLiteral("StartupNotify=true") << '\n' @@ -148,15 +165,56 @@ void NixUtils::setLaunchAtStartup(bool enable) << QStringLiteral("X-GNOME-Autostart-enabled=true") << '\n' << QStringLiteral("X-GNOME-Autostart-Delay=2") << '\n' << QStringLiteral("X-KDE-autostart-after=panel") << '\n' - << QStringLiteral("X-LXQt-Need-Tray=true") << endl; + << QStringLiteral("X-LXQt-Need-Tray=true") << Qt::endl; desktopFile.close(); } else if (isLaunchAtStartupEnabled()) { QFile::remove(getAutostartDesktopFilename()); } +#else + QDBusConnection sessionBus = QDBusConnection::sessionBus(); + QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.portal.Desktop", + "/org/freedesktop/portal/desktop", + "org.freedesktop.portal.Background", + "RequestBackground"); + + QMap options; + options["autostart"] = QVariant(enable); + options["reason"] = QVariant("Launch KeePassXC at startup"); + int token = QRandomGenerator::global()->bounded(1000, 9999); + options["handle_token"] = QVariant(QString("org/keepassxc/KeePassXC/%1").arg(token)); + + msg << "" << options; + + QDBusMessage response = sessionBus.call(msg); + + QDBusObjectPath handle = response.arguments().at(0).value(); + + bool res = sessionBus.connect("org.freedesktop.portal.Desktop", + handle.path(), + "org.freedesktop.portal.Request", + "Response", + this, + SLOT(launchAtStartupRequested(uint, QVariantMap))); + + if (!res) { + qDebug() << "DBus Error: could not connect to org.freedesktop.portal.Request"; + } +#endif +} + +void NixUtils::launchAtStartupRequested(uint response, const QVariantMap& results) +{ + if (response > 0) { + qDebug() << "DBus Error: the request to autostart was cancelled."; + return; + } + + config()->set(Config::GUI_LaunchAtStartup, results["autostart"].value()); } bool NixUtils::isCapslockEnabled() { +#ifdef WITH_XC_X11 QPlatformNativeInterface* native = QGuiApplication::platformNativeInterface(); auto* display = native->nativeResourceForWindow("display", nullptr); if (!display) { @@ -170,12 +228,19 @@ bool NixUtils::isCapslockEnabled() return ((state & 1u) != 0); } } +#endif // TODO: Wayland return false; } +void NixUtils::setUserInputProtection(bool enable) +{ + // Linux does not support this feature + Q_UNUSED(enable) +} + void NixUtils::registerNativeEventFilter() { qApp->installNativeEventFilter(this); @@ -183,6 +248,7 @@ void NixUtils::registerNativeEventFilter() bool NixUtils::nativeEventFilter(const QByteArray& eventType, void* message, long*) { +#ifdef WITH_XC_X11 if (eventType != QByteArrayLiteral("xcb_generic_event_t")) { return false; } @@ -195,12 +261,16 @@ bool NixUtils::nativeEventFilter(const QByteArray& eventType, void* message, lon auto modifierMask = ControlMask | ShiftMask | Mod1Mask | Mod4Mask; return triggerGlobalShortcut(keyPressEvent->detail, keyPressEvent->state & modifierMask); } - +#else + Q_UNUSED(eventType) + Q_UNUSED(message) +#endif return false; } bool NixUtils::triggerGlobalShortcut(uint keycode, uint modifiers) { +#ifdef WITH_XC_X11 QHashIterator> i(m_globalShortcuts); while (i.hasNext()) { i.next(); @@ -209,11 +279,16 @@ bool NixUtils::triggerGlobalShortcut(uint keycode, uint modifiers) return true; } } +#else + Q_UNUSED(keycode) + Q_UNUSED(modifiers) +#endif return false; } bool NixUtils::registerGlobalShortcut(const QString& name, Qt::Key key, Qt::KeyboardModifiers modifiers, QString* error) { +#ifdef WITH_XC_X11 auto keycode = XKeysymToKeycode(dpy, qcharToNativeKeyCode(key)); auto modifierscode = qtToNativeModifiers(modifiers); @@ -254,11 +329,18 @@ bool NixUtils::registerGlobalShortcut(const QString& name, Qt::Key key, Qt::Keyb gs->nativeKeyCode = keycode; gs->nativeModifiers = modifierscode; m_globalShortcuts.insert(name, gs); +#else + Q_UNUSED(name) + Q_UNUSED(key) + Q_UNUSED(modifiers) + Q_UNUSED(error) +#endif return true; } bool NixUtils::unregisterGlobalShortcut(const QString& name) { +#ifdef WITH_XC_X11 if (!m_globalShortcuts.contains(name)) { return false; } @@ -270,13 +352,62 @@ bool NixUtils::unregisterGlobalShortcut(const QString& name) XUngrabKey(dpy, gs->nativeKeyCode, gs->nativeModifiers | Mod2Mask | LockMask, rootWindow); m_globalShortcuts.remove(name); +#else + Q_UNUSED(name) +#endif return true; } +void NixUtils::handleColorSchemeRead(QDBusVariant value) +{ + value = qvariant_cast(value.variant()); + setColorScheme(value); +} + void NixUtils::handleColorSchemeChanged(QString ns, QString key, QDBusVariant value) { if (ns == "org.freedesktop.appearance" && key == "color-scheme") { - m_systemColorschemePref = static_cast(value.variant().toInt()); - emit interfaceThemeChanged(); + setColorScheme(value); } } + +void NixUtils::setColorScheme(QDBusVariant value) +{ + m_systemColorschemePref = static_cast(value.variant().toInt()); + m_systemColorschemePrefExists = true; + emit interfaceThemeChanged(); +} + +quint64 NixUtils::getProcessStartTime() const +{ + QString processStatPath = QString("/proc/%1/stat").arg(QCoreApplication::applicationPid()); + QFile processStatFile(processStatPath); + + if (!processStatFile.open(QIODevice::ReadOnly | QIODevice::Text)) { + qDebug() << "nixutils: failed to open " << processStatPath; + return 0; + } + + QTextStream processStatStream(&processStatFile); + QString processStatInfo = processStatStream.readLine(); + processStatFile.close(); + + auto startIndex = processStatInfo.lastIndexOf(')'); + if (startIndex != -1) { + auto tokens = processStatInfo.midRef(startIndex + 2).split(' '); + if (tokens.size() >= 20) { + bool ok; + auto time = tokens[19].toULongLong(&ok); + if (!ok) { + qDebug() << "nixutils: failed to convert " << tokens[19] << " to an integer in " << processStatPath; + return 0; + } + return time; + } + qDebug() << "nixutils: failed to find at least 20 values in " << processStatPath; + return 0; + } + + qDebug() << "nixutils: failed to find ')' in " << processStatPath; + return 0; +} diff --git a/src/gui/osutils/nixutils/NixUtils.h b/src/gui/osutils/nixutils/NixUtils.h index ed54f9b53..9be835ff9 100644 --- a/src/gui/osutils/nixutils/NixUtils.h +++ b/src/gui/osutils/nixutils/NixUtils.h @@ -35,6 +35,7 @@ public: bool isLaunchAtStartupEnabled() const override; void setLaunchAtStartup(bool enable) override; bool isCapslockEnabled() override; + void setUserInputProtection(bool enable) override; void registerNativeEventFilter() override; @@ -49,8 +50,12 @@ public: return false; } + quint64 getProcessStartTime() const; + private slots: + void handleColorSchemeRead(QDBusVariant value); void handleColorSchemeChanged(QString ns, QString key, QDBusVariant value); + void launchAtStartupRequested(uint response, const QVariantMap& results); private: explicit NixUtils(QObject* parent = nullptr); @@ -79,6 +84,9 @@ private: PreferLight }; ColorschemePref m_systemColorschemePref = ColorschemePref::PreferNone; + bool m_systemColorschemePrefExists = false; + + void setColorScheme(QDBusVariant value); Q_DISABLE_COPY(NixUtils) }; diff --git a/src/gui/osutils/nixutils/ScreenLockListenerDBus.cpp b/src/gui/osutils/nixutils/ScreenLockListenerDBus.cpp index be9b59fd1..1da87b997 100644 --- a/src/gui/osutils/nixutils/ScreenLockListenerDBus.cpp +++ b/src/gui/osutils/nixutils/ScreenLockListenerDBus.cpp @@ -91,7 +91,7 @@ void ScreenLockListenerDBus::login1SessionObjectReceived(QDBusMessage response) qDebug() << "org.freedesktop.login1.Manager.GetSession did not return a QDBusObjectPath"; return; } - QDBusObjectPath path = arg0.value(); + auto path = arg0.value(); QDBusConnection systemBus = QDBusConnection::systemBus(); systemBus.connect("", // service diff --git a/src/gui/osutils/nixutils/ScreenLockListenerDBus.h b/src/gui/osutils/nixutils/ScreenLockListenerDBus.h index e8ba127aa..4ece8134f 100644 --- a/src/gui/osutils/nixutils/ScreenLockListenerDBus.h +++ b/src/gui/osutils/nixutils/ScreenLockListenerDBus.h @@ -17,6 +17,7 @@ #ifndef SCREENLOCKLISTENERDBUS_H #define SCREENLOCKLISTENERDBUS_H + #include "gui/osutils/ScreenLockListenerPrivate.h" #include @@ -24,7 +25,7 @@ class ScreenLockListenerDBus : public ScreenLockListenerPrivate { Q_OBJECT public: - explicit ScreenLockListenerDBus(QWidget* parent = nullptr); + explicit ScreenLockListenerDBus(QWidget* parent); private slots: void gnomeSessionStatusChanged(uint status); diff --git a/src/gui/osutils/winutils/DeviceListenerWin.cpp b/src/gui/osutils/winutils/DeviceListenerWin.cpp new file mode 100644 index 000000000..408bf9d06 --- /dev/null +++ b/src/gui/osutils/winutils/DeviceListenerWin.cpp @@ -0,0 +1,106 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "DeviceListenerWin.h" + +#include + +#include +#include + +#include + +DeviceListenerWin::DeviceListenerWin(QWidget* parent) + : QObject(parent) +{ + // Event listeners need a valid window reference + Q_ASSERT(parent); + QCoreApplication::instance()->installNativeEventFilter(this); +} + +DeviceListenerWin::~DeviceListenerWin() +{ + deregisterHotplugCallback(); +} + +void DeviceListenerWin::registerHotplugCallback(bool arrived, + bool left, + int vendorId, + int productId, + const QUuid* deviceClass) +{ + Q_ASSERT(deviceClass); + + if (m_deviceNotifyHandle) { + deregisterHotplugCallback(); + } + + QString regex = R"(^\\{2}\?\\[A-Z]+#)"; + if (vendorId > 0) { + regex += QString("VID_%1&").arg(vendorId, 0, 16).toUpper(); + if (productId > 0) { + regex += QString("PID_%1&").arg(productId, 0, 16).toUpper(); + } + } + regex += QString(".*$"); // Qt won't match otherwise + m_deviceIdMatch = QRegularExpression(regex); + + DEV_BROADCAST_DEVICEINTERFACE_W notificationFilter{ + sizeof(DEV_BROADCAST_DEVICEINTERFACE_W), DBT_DEVTYP_DEVICEINTERFACE, 0u, *deviceClass, {0x00}}; + auto w = reinterpret_cast(qobject_cast(parent())->winId()); + m_deviceNotifyHandle = RegisterDeviceNotificationW(w, ¬ificationFilter, DEVICE_NOTIFY_WINDOW_HANDLE); + if (!m_deviceNotifyHandle) { + qWarning("Failed to register device notification handle."); + return; + } + m_handleArrival = arrived; + m_handleRemoval = left; +} + +void DeviceListenerWin::deregisterHotplugCallback() +{ + if (m_deviceNotifyHandle) { + UnregisterDeviceNotification(m_deviceNotifyHandle); + m_deviceNotifyHandle = nullptr; + m_handleArrival = false; + m_handleRemoval = false; + } +} + +bool DeviceListenerWin::nativeEventFilter(const QByteArray& eventType, void* message, long*) +{ + if (eventType != "windows_generic_MSG") { + return false; + } + + const auto* m = static_cast(message); + if (m->message != WM_DEVICECHANGE) { + return false; + } + if ((m_handleArrival && m->wParam == DBT_DEVICEARRIVAL) + || (m_handleRemoval && m->wParam == DBT_DEVICEREMOVECOMPLETE)) { + const auto pBrHdr = reinterpret_cast(m->lParam); + const auto pDevIface = reinterpret_cast(pBrHdr); + const auto name = QString::fromWCharArray(pDevIface->dbcc_name, pDevIface->dbcc_size); + if (m_deviceIdMatch.match(name).hasMatch()) { + emit devicePlugged(m->wParam == DBT_DEVICEARRIVAL, nullptr, pDevIface); + return true; + } + } + + return false; +} diff --git a/src/gui/osutils/winutils/DeviceListenerWin.h b/src/gui/osutils/winutils/DeviceListenerWin.h new file mode 100644 index 000000000..527555d2f --- /dev/null +++ b/src/gui/osutils/winutils/DeviceListenerWin.h @@ -0,0 +1,63 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef DEVICELISTENER_WIN_H +#define DEVICELISTENER_WIN_H + +#define DEVICELISTENER_IMPL DeviceListenerWin + +#include +#include +#include +#include + +class DeviceListenerWin : public QObject, public QAbstractNativeEventFilter +{ + Q_OBJECT + +public: + static constexpr QUuid DEV_CLS_USB = + QUuid(0xa5dcbf10L, 0x6530, 0x11d2, 0x90, 0x1f, 0x00, 0xc0, 0x4f, 0xB9, 0x51, 0xed); + static constexpr QUuid DEV_CLS_KEYBOARD = + QUuid(0x884b96c3L, 0x56ef, 0x11d1, 0xbc, 0x8c, 0x00, 0xa0, 0xc9, 0x14, 0x05, 0xdd); + static constexpr QUuid DEV_CLS_CCID = + QUuid(0x50dd5230L, 0xba8a, 0x11d1, 0xbf, 0x5d, 0x00, 0x00, 0xf8, 0x05, 0xf5, 0x30); + + explicit DeviceListenerWin(QWidget* parent); + DeviceListenerWin(const DeviceListenerWin&) = delete; + ~DeviceListenerWin() override; + + void registerHotplugCallback(bool arrived, + bool left, + int vendorId = -1, + int productId = -1, + const QUuid* deviceClass = nullptr); + void deregisterHotplugCallback(); + + bool nativeEventFilter(const QByteArray& eventType, void* message, long*) override; + +signals: + void devicePlugged(bool state, void* ctx, void* device); + +private: + void* m_deviceNotifyHandle = nullptr; + bool m_handleArrival = false; + bool m_handleRemoval = false; + QRegularExpression m_deviceIdMatch; +}; + +#endif // DEVICELISTENER_WIN_H diff --git a/src/gui/osutils/winutils/ScreenLockListenerWin.h b/src/gui/osutils/winutils/ScreenLockListenerWin.h index edf6c2936..e33f0e354 100644 --- a/src/gui/osutils/winutils/ScreenLockListenerWin.h +++ b/src/gui/osutils/winutils/ScreenLockListenerWin.h @@ -17,8 +17,8 @@ #ifndef SCREENLOCKLISTENERWIN_H #define SCREENLOCKLISTENERWIN_H + #include -#include #include #include "gui/osutils/ScreenLockListenerPrivate.h" @@ -27,9 +27,9 @@ class ScreenLockListenerWin : public ScreenLockListenerPrivate, public QAbstract { Q_OBJECT public: - explicit ScreenLockListenerWin(QWidget* parent = nullptr); + explicit ScreenLockListenerWin(QWidget* parent); ~ScreenLockListenerWin(); - bool nativeEventFilter(const QByteArray& eventType, void* message, long*) override; + virtual bool nativeEventFilter(const QByteArray& eventType, void* message, long* result) override; private: void* m_powerNotificationHandle; diff --git a/src/gui/osutils/winutils/WinUtils.cpp b/src/gui/osutils/winutils/WinUtils.cpp index b2dd9b967..a15976932 100644 --- a/src/gui/osutils/winutils/WinUtils.cpp +++ b/src/gui/osutils/winutils/WinUtils.cpp @@ -58,11 +58,12 @@ bool WinUtils::canPreventScreenCapture() const bool WinUtils::setPreventScreenCapture(QWindow* window, bool prevent) const { + bool ret = true; if (window) { HWND handle = reinterpret_cast(window->winId()); - return SetWindowDisplayAffinity(handle, prevent ? WDA_EXCLUDEFROMCAPTURE : WDA_NONE); + ret = SetWindowDisplayAffinity(handle, prevent ? WDA_EXCLUDEFROMCAPTURE : WDA_NONE); } - return false; + return ret; } /** @@ -135,6 +136,12 @@ bool WinUtils::isCapslockEnabled() return GetKeyState(VK_CAPITAL) == 1; } +void WinUtils::setUserInputProtection(bool enable) +{ + // Windows does not support this feature + Q_UNUSED(enable) +} + bool WinUtils::isHighContrastMode() const { QSettings settings(R"(HKEY_CURRENT_USER\Control Panel\Accessibility\HighContrast)", QSettings::NativeFormat); @@ -233,6 +240,8 @@ WORD WinUtils::qtToNativeKeyCode(Qt::Key key) return VK_SHIFT; // 0x10 case Qt::Key_Control: return VK_CONTROL; // 0x11 + case Qt::Key_Alt: + return VK_MENU; // 0x12 case Qt::Key_Pause: return VK_PAUSE; // 0x13 case Qt::Key_CapsLock: diff --git a/src/gui/osutils/winutils/WinUtils.h b/src/gui/osutils/winutils/WinUtils.h index 9e4492a5f..9278c9d60 100644 --- a/src/gui/osutils/winutils/WinUtils.h +++ b/src/gui/osutils/winutils/WinUtils.h @@ -44,6 +44,7 @@ public: bool isLaunchAtStartupEnabled() const override; void setLaunchAtStartup(bool enable) override; bool isCapslockEnabled() override; + void setUserInputProtection(bool enable) override; bool isHighContrastMode() const; void registerNativeEventFilter() override; diff --git a/src/gui/passkeys/PasskeyExportDialog.cpp b/src/gui/passkeys/PasskeyExportDialog.cpp new file mode 100644 index 000000000..84e984df6 --- /dev/null +++ b/src/gui/passkeys/PasskeyExportDialog.cpp @@ -0,0 +1,91 @@ +/* + * Copyright (C) 2023 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "PasskeyExportDialog.h" +#include "ui_PasskeyExportDialog.h" + +#include "core/Entry.h" +#include "gui/FileDialog.h" + +PasskeyExportDialog::PasskeyExportDialog(QWidget* parent) + : QDialog(parent) + , m_ui(new Ui::PasskeyExportDialog()) +{ + setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint); + + m_ui->setupUi(this); + + connect(m_ui->exportButton, SIGNAL(clicked()), SLOT(accept())); + connect(m_ui->cancelButton, SIGNAL(clicked()), SLOT(reject())); + connect(m_ui->itemsTable->selectionModel(), + SIGNAL(selectionChanged(QItemSelection, QItemSelection)), + this, + SLOT(selectionChanged())); +} + +PasskeyExportDialog::~PasskeyExportDialog() +{ +} + +void PasskeyExportDialog::setEntries(const QList& items) +{ + m_ui->itemsTable->setRowCount(items.count()); + m_ui->itemsTable->setColumnCount(1); + + int row = 0; + for (const auto& entry : items) { + auto item = new QTableWidgetItem(); + item->setText(entry->title() + " - " + entry->username()); + item->setData(Qt::UserRole, row); + item->setFlags(item->flags() | Qt::ItemIsSelectable); + m_ui->itemsTable->setItem(row, 0, item); + + ++row; + } + m_ui->itemsTable->resizeColumnsToContents(); + m_ui->itemsTable->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch); + m_ui->itemsTable->selectAll(); + m_ui->exportButton->setFocus(); +} + +QList PasskeyExportDialog::getSelectedItems() const +{ + QList selected; + for (int i = 0; i < m_ui->itemsTable->rowCount(); ++i) { + auto item = m_ui->itemsTable->item(i, 0); + if (item->isSelected()) { + selected.append(item); + } + } + return selected; +} + +void PasskeyExportDialog::selectionChanged() +{ + auto indexes = m_ui->itemsTable->selectionModel()->selectedIndexes(); + m_ui->exportButton->setEnabled(!indexes.isEmpty()); + + if (indexes.isEmpty()) { + m_ui->exportButton->clearFocus(); + m_ui->cancelButton->setFocus(); + } +} + +QString PasskeyExportDialog::selectExportFolder() +{ + return fileDialog()->getExistingDirectory(this, tr("Export to folder"), FileDialog::getLastDir("passkey")); +} diff --git a/src/gui/passkeys/PasskeyExportDialog.h b/src/gui/passkeys/PasskeyExportDialog.h new file mode 100644 index 000000000..7104583ad --- /dev/null +++ b/src/gui/passkeys/PasskeyExportDialog.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2023 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_PASSKEYEXPORTDIALOG_H +#define KEEPASSXC_PASSKEYEXPORTDIALOG_H + +#include +#include + +class Entry; + +namespace Ui +{ + class PasskeyExportDialog; +} + +class PasskeyExportDialog : public QDialog +{ + Q_OBJECT + +public: + explicit PasskeyExportDialog(QWidget* parent = nullptr); + ~PasskeyExportDialog() override; + + void setEntries(const QList& items); + QList getSelectedItems() const; + QString selectExportFolder(); + +private slots: + void selectionChanged(); + +private: + QScopedPointer m_ui; + QList m_entriesToConfirm; + QList m_allowedEntries; +}; + +#endif // KEEPASSXC_PASSKEYEXPORTDIALOG_H diff --git a/src/gui/passkeys/PasskeyExportDialog.ui b/src/gui/passkeys/PasskeyExportDialog.ui new file mode 100644 index 000000000..bf9f4c42d --- /dev/null +++ b/src/gui/passkeys/PasskeyExportDialog.ui @@ -0,0 +1,121 @@ + + + PasskeyExportDialog + + + + 0 + 0 + 540 + 320 + + + + KeePassXC - Passkey Export + + + + + + + 75 + true + + + + Export the following passkey entries. + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 75 + true + + + + Filenames will be generated with title and .passkey file extension. + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + QAbstractItemView::ExtendedSelection + + + QAbstractItemView::SelectRows + + + false + + + false + + + false + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Cancel + + + true + + + + + + + Export entries + + + Export Selected + + + true + + + true + + + + + + + + + + diff --git a/src/gui/passkeys/PasskeyExporter.cpp b/src/gui/passkeys/PasskeyExporter.cpp new file mode 100644 index 000000000..4ff84e5f8 --- /dev/null +++ b/src/gui/passkeys/PasskeyExporter.cpp @@ -0,0 +1,112 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "PasskeyExporter.h" +#include "PasskeyExportDialog.h" + +#include "browser/BrowserPasskeys.h" +#include "browser/PasskeyUtils.h" +#include "core/Entry.h" +#include "core/EntryAttributes.h" +#include "core/Tools.h" +#include "gui/MessageBox.h" +#include +#include +#include + +PasskeyExporter::PasskeyExporter(QWidget* parent) + : m_parent(parent) +{ +} + +void PasskeyExporter::showExportDialog(const QList& items) +{ + if (items.isEmpty()) { + return; + } + + PasskeyExportDialog passkeyExportDialog(m_parent); + passkeyExportDialog.setEntries(items); + auto ret = passkeyExportDialog.exec(); + + if (ret == QDialog::Accepted) { + // Select folder + auto folder = passkeyExportDialog.selectExportFolder(); + if (folder.isEmpty()) { + return; + } + + const auto selectedItems = passkeyExportDialog.getSelectedItems(); + for (const auto& item : selectedItems) { + auto entry = items[item->row()]; + exportSelectedEntry(entry, folder); + } + } +} + +/** + * Creates an export file for a Passkey credential + * + * File contents in JSON: + * { + * "privateKey": , + * "relyingParty: , + * "url": , + * "userHandle": , + * "credentialId": , + * "username:" + * } + */ +void PasskeyExporter::exportSelectedEntry(const Entry* entry, const QString& folder) +{ + const auto fullPath = QString("%1/%2.passkey").arg(folder, Tools::cleanFilename(entry->title())); + if (QFile::exists(fullPath)) { + auto dialogResult = MessageBox::warning(m_parent, + tr("KeePassXC: Passkey Export"), + tr("File \"%1.passkey\" already exists.\n" + "Do you want to overwrite it?\n") + .arg(entry->title()), + MessageBox::Yes | MessageBox::No); + + if (dialogResult != MessageBox::Yes) { + return; + } + } + + QFile passkeyFile(fullPath); + if (!passkeyFile.open(QIODevice::WriteOnly)) { + MessageBox::information( + m_parent, tr("Cannot open file"), tr("Cannot open file \"%1\" for writing.").arg(fullPath)); + return; + } + + QJsonObject passkeyObject; + passkeyObject["relyingParty"] = entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY); + passkeyObject["url"] = entry->url(); + passkeyObject["username"] = passkeyUtils()->getUsernameFromEntry(entry); + passkeyObject["credentialId"] = passkeyUtils()->getCredentialIdFromEntry(entry); + passkeyObject["userHandle"] = entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_USER_HANDLE); + passkeyObject["privateKey"] = entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM); + + QJsonDocument document(passkeyObject); + if (passkeyFile.write(document.toJson()) < 0) { + MessageBox::information( + nullptr, tr("Cannot write to file"), tr("Cannot open file \"%1\" for writing.").arg(fullPath)); + } + + passkeyFile.close(); +} diff --git a/src/gui/passkeys/PasskeyExporter.h b/src/gui/passkeys/PasskeyExporter.h new file mode 100644 index 000000000..ca59ea4b3 --- /dev/null +++ b/src/gui/passkeys/PasskeyExporter.h @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_PASSKEYEXPORTER_H +#define KEEPASSXC_PASSKEYEXPORTER_H + +#include +#include +#include +#include + +class Entry; + +class PasskeyExporter : public QObject +{ + Q_OBJECT + +public: + explicit PasskeyExporter(QWidget* parent = nullptr); + + void showExportDialog(const QList& items); + +private: + void exportSelectedEntry(const Entry* entry, const QString& folder); + +private: + QPointer m_parent; +}; + +#endif // KEEPASSXC_PASSKEYEXPORTER_H diff --git a/src/gui/passkeys/PasskeyImportDialog.cpp b/src/gui/passkeys/PasskeyImportDialog.cpp new file mode 100644 index 000000000..179b2ed96 --- /dev/null +++ b/src/gui/passkeys/PasskeyImportDialog.cpp @@ -0,0 +1,200 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "PasskeyImportDialog.h" +#include "ui_PasskeyImportDialog.h" + +#include "browser/BrowserService.h" +#include "core/Metadata.h" +#include "gui/MainWindow.h" +#include +#include + +PasskeyImportDialog::PasskeyImportDialog(QWidget* parent) + : QDialog(parent) + , m_ui(new Ui::PasskeyImportDialog()) +{ + setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint); + + m_ui->setupUi(this); + + connect(this, SIGNAL(updateGroups()), this, SLOT(addGroups())); + connect(this, SIGNAL(updateEntries()), this, SLOT(addEntries())); + connect(m_ui->importButton, SIGNAL(clicked()), SLOT(accept())); + connect(m_ui->cancelButton, SIGNAL(clicked()), SLOT(reject())); + connect(m_ui->selectDatabaseCombobBox, SIGNAL(currentIndexChanged(int)), SLOT(changeDatabase(int))); + connect(m_ui->selectEntryComboBox, SIGNAL(currentIndexChanged(int)), SLOT(changeEntry(int))); + connect(m_ui->selectGroupComboBox, SIGNAL(currentIndexChanged(int)), SLOT(changeGroup(int))); +} + +PasskeyImportDialog::~PasskeyImportDialog() +{ +} + +void PasskeyImportDialog::setInfo(const QString& relyingParty, + const QString& username, + const QSharedPointer& database, + bool isEntry, + const QString& titleText, + const QString& infoText, + const QString& importButtonText) +{ + m_ui->relyingPartyLabel->setText(tr("Relying Party: %1").arg(relyingParty)); + m_ui->usernameLabel->setText(tr("Username: %1").arg(username)); + + if (isEntry) { + m_ui->verticalLayout->setSizeConstraint(QLayout::SetFixedSize); + m_ui->infoLabel->setText(tr("Import the following passkey to this entry:")); + m_ui->groupBox->setVisible(false); + } + + m_selectedDatabase = database; + addDatabases(); + addGroups(); + + auto openDatabaseCount = 0; + for (auto dbWidget : getMainWindow()->getOpenDatabases()) { + if (dbWidget && !dbWidget->isLocked()) { + openDatabaseCount++; + } + } + m_ui->selectDatabaseCombobBox->setEnabled(openDatabaseCount > 1); + + if (!titleText.isEmpty()) { + setWindowTitle(titleText); + } + + if (!infoText.isEmpty()) { + m_ui->infoLabel->setText(infoText); + } + + if (!importButtonText.isEmpty()) { + m_ui->importButton->setText(importButtonText); + } +} + +QSharedPointer PasskeyImportDialog::getSelectedDatabase() const +{ + return m_selectedDatabase; +} + +QUuid PasskeyImportDialog::getSelectedEntryUuid() const +{ + return m_selectedEntryUuid; +} + +QUuid PasskeyImportDialog::getSelectedGroupUuid() const +{ + return m_selectedGroupUuid; +} + +bool PasskeyImportDialog::useDefaultGroup() const +{ + return m_selectedGroupUuid.isNull(); +} + +bool PasskeyImportDialog::createNewEntry() const +{ + return m_selectedEntryUuid.isNull(); +} + +void PasskeyImportDialog::addDatabases() +{ + auto currentDatabaseIndex = 0; + const auto openDatabases = browserService()->getOpenDatabases(); + const auto currentDatabase = browserService()->getDatabase(); + + m_ui->selectDatabaseCombobBox->clear(); + for (const auto& db : openDatabases) { + m_ui->selectDatabaseCombobBox->addItem(db->metadata()->name(), db->rootGroup()->uuid()); + if (db->rootGroup()->uuid() == currentDatabase->rootGroup()->uuid()) { + currentDatabaseIndex = m_ui->selectDatabaseCombobBox->count() - 1; + } + } + + m_ui->selectDatabaseCombobBox->setCurrentIndex(currentDatabaseIndex); +} + +void PasskeyImportDialog::addEntries() +{ + if (!m_selectedDatabase || !m_selectedDatabase->rootGroup()) { + return; + } + + m_ui->selectEntryComboBox->clear(); + m_ui->selectEntryComboBox->addItem(tr("Create new entry"), {}); + + const auto group = m_selectedDatabase->rootGroup()->findGroupByUuid(m_selectedGroupUuid); + if (!group) { + return; + } + + // Collect all entries in the group and resolve the title + QList> entries; + for (const auto entry : group->entries()) { + if (!entry || entry->isRecycled()) { + continue; + } + entries.append({entry->resolveMultiplePlaceholders(entry->title()), entry->uuid()}); + } + + // Sort entries by title + std::sort(entries.begin(), entries.end(), [](const auto& a, const auto& b) { + return a.first.compare(b.first, Qt::CaseInsensitive) < 0; + }); + + // Add sorted entries to the combobox + for (const auto& pair : entries) { + m_ui->selectEntryComboBox->addItem(pair.first, pair.second); + } +} + +void PasskeyImportDialog::addGroups() +{ + if (!m_selectedDatabase) { + return; + } + + m_ui->selectGroupComboBox->clear(); + m_ui->selectGroupComboBox->addItem(tr("Default passkeys group (Imported Passkeys)"), {}); + + for (const auto& group : m_selectedDatabase->rootGroup()->groupsRecursive(true)) { + if (!group || group->isRecycled() || group == m_selectedDatabase->metadata()->recycleBin()) { + continue; + } + + m_ui->selectGroupComboBox->addItem(group->fullPath(), group->uuid()); + } +} + +void PasskeyImportDialog::changeDatabase(int index) +{ + m_selectedDatabaseUuid = m_ui->selectDatabaseCombobBox->itemData(index).value(); + m_selectedDatabase = browserService()->getDatabase(m_selectedDatabaseUuid); + emit updateGroups(); +} + +void PasskeyImportDialog::changeEntry(int index) +{ + m_selectedEntryUuid = m_ui->selectEntryComboBox->itemData(index).value(); +} + +void PasskeyImportDialog::changeGroup(int index) +{ + m_selectedGroupUuid = m_ui->selectGroupComboBox->itemData(index).value(); + emit updateEntries(); +} diff --git a/src/gui/passkeys/PasskeyImportDialog.h b/src/gui/passkeys/PasskeyImportDialog.h new file mode 100644 index 000000000..920a6a020 --- /dev/null +++ b/src/gui/passkeys/PasskeyImportDialog.h @@ -0,0 +1,74 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_PASSKEYIMPORTDIALOG_H +#define KEEPASSXC_PASSKEYIMPORTDIALOG_H + +#include "core/Database.h" +#include "core/Group.h" +#include +#include + +namespace Ui +{ + class PasskeyImportDialog; +} + +class PasskeyImportDialog : public QDialog +{ + Q_OBJECT + +public: + explicit PasskeyImportDialog(QWidget* parent = nullptr); + ~PasskeyImportDialog() override; + + void setInfo(const QString& relyingParty, + const QString& username, + const QSharedPointer& database, + bool isEntry, + const QString& titleText = {}, + const QString& infoText = {}, + const QString& importButtonText = {}); + QSharedPointer getSelectedDatabase() const; + QUuid getSelectedEntryUuid() const; + QUuid getSelectedGroupUuid() const; + bool useDefaultGroup() const; + bool createNewEntry() const; + +private: + void addDatabases(); + +signals: + void updateEntries(); + void updateGroups(); + +private slots: + void addEntries(); + void addGroups(); + void changeDatabase(int index); + void changeEntry(int index); + void changeGroup(int index); + +private: + QScopedPointer m_ui; + QSharedPointer m_selectedDatabase; + QUuid m_selectedDatabaseUuid; + QUuid m_selectedEntryUuid; + QUuid m_selectedGroupUuid; +}; + +#endif // KEEPASSXC_PASSKEYIMPORTDIALOG_H diff --git a/src/gui/passkeys/PasskeyImportDialog.ui b/src/gui/passkeys/PasskeyImportDialog.ui new file mode 100644 index 000000000..3b0080997 --- /dev/null +++ b/src/gui/passkeys/PasskeyImportDialog.ui @@ -0,0 +1,174 @@ + + + PasskeyImportDialog + + + + 0 + 0 + 500 + 300 + + + + + 0 + 0 + + + + + 400 + 300 + + + + KeePassXC - Passkey Import + + + + + + + + + true + + + + Import the following passkey: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Relying Party: %1 + + + Qt::PlainText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Username: %1 + + + Qt::PlainText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + + + + + Database + + + + + + + + + + Group + + + + + + + + + + Entry + + + + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 10 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Cancel + + + true + + + + + + + Import Passkey + + + Import + + + true + + + true + + + + + + + + + + diff --git a/src/gui/passkeys/PasskeyImporter.cpp b/src/gui/passkeys/PasskeyImporter.cpp new file mode 100644 index 000000000..df4042069 --- /dev/null +++ b/src/gui/passkeys/PasskeyImporter.cpp @@ -0,0 +1,177 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "PasskeyImporter.h" +#include "PasskeyImportDialog.h" +#include "browser/BrowserMessageBuilder.h" +#include "browser/BrowserPasskeys.h" +#include "browser/BrowserService.h" +#include "core/Entry.h" +#include "core/Group.h" +#include "core/Tools.h" +#include "gui/FileDialog.h" +#include "gui/MessageBox.h" +#include +#include + +static const QString IMPORTED_PASSKEYS_GROUP = QStringLiteral("Imported Passkeys"); + +PasskeyImporter::PasskeyImporter(QWidget* parent) + : m_parent(parent) +{ +} + +void PasskeyImporter::importPasskey(QSharedPointer& database, Entry* entry) +{ + auto filter = QString("%1 (*.passkey);;%2 (*)").arg(tr("Passkey file"), tr("All files")); + auto fileName = + fileDialog()->getOpenFileName(m_parent, tr("Open passkey file"), FileDialog::getLastDir("passkey"), filter); + if (fileName.isEmpty()) { + return; + } + + FileDialog::saveLastDir("passkey", fileName, true); + + QFile file(fileName); + if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { + MessageBox::information( + nullptr, tr("Cannot open file"), tr("Cannot open file \"%1\" for reading.").arg(fileName)); + return; + } + + importSelectedFile(file, database, entry); +} + +void PasskeyImporter::importSelectedFile(QFile& file, QSharedPointer& database, Entry* entry) +{ + const auto fileData = file.readAll(); + const auto passkeyObject = browserMessageBuilder()->getJsonObject(fileData); + if (passkeyObject.isEmpty()) { + MessageBox::information(m_parent, + tr("Cannot import passkey"), + tr("Cannot import passkey file \"%1\". Data is missing.").arg(file.fileName())); + return; + } + + const auto privateKey = passkeyObject["privateKey"].toString(); + const auto missingKeys = Tools::getMissingValuesFromList( + passkeyObject.keys(), + QStringList() << "relyingParty" << "url" << "username" << "credentialId" << "userHandle" << "privateKey"); + if (!missingKeys.isEmpty()) { + MessageBox::information(m_parent, + tr("Cannot import passkey"), + tr("Cannot import passkey file \"%1\".\nThe following data is missing:\n%2") + .arg(file.fileName(), missingKeys.join(", "))); + } else if (!privateKey.startsWith(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_START) + || !privateKey.trimmed().endsWith(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_END)) { + MessageBox::information( + m_parent, + tr("Cannot import passkey"), + tr("Cannot import passkey file \"%1\". Private key is missing or malformed.").arg(file.fileName())); + } else { + const auto relyingParty = passkeyObject["relyingParty"].toString(); + const auto url = passkeyObject["url"].toString(); + const auto username = passkeyObject["username"].toString(); + const auto credentialId = passkeyObject["credentialId"].toString(); + const auto userHandle = passkeyObject["userHandle"].toString(); + showImportDialog(database, entry, url, relyingParty, username, credentialId, userHandle, privateKey); + } +} + +bool PasskeyImporter::showImportDialog(QSharedPointer& database, + Entry* entry, + const QString& url, + const QString& relyingParty, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey, + const QString& titleText, + const QString& infoText, + const QString& importButtonText) +{ + PasskeyImportDialog passkeyImportDialog(m_parent); + passkeyImportDialog.setInfo( + relyingParty, username, database, entry != nullptr, titleText, infoText, importButtonText); + + auto ret = passkeyImportDialog.exec(); + if (ret != QDialog::Accepted) { + return false; + } + + auto db = passkeyImportDialog.getSelectedDatabase(); + if (!db) { + db = database; + } + + // Store to entry if given directly + if (entry) { + browserService()->addPasskeyToEntry( + entry, relyingParty, relyingParty, username, credentialId, userHandle, privateKey); + return true; + } + + // Import to entry selected instead of creating a new one + if (!passkeyImportDialog.createNewEntry()) { + auto groupUuid = passkeyImportDialog.getSelectedGroupUuid(); + auto group = db->rootGroup()->findGroupByUuid(groupUuid); + + if (group) { + auto selectedEntry = group->findEntryByUuid(passkeyImportDialog.getSelectedEntryUuid()); + if (selectedEntry) { + browserService()->addPasskeyToEntry( + selectedEntry, relyingParty, relyingParty, username, credentialId, userHandle, privateKey); + } + } + + return true; + } + + // Group settings. Use default group "Imported Passkeys" if user did not select a specific one. + Group* group = nullptr; + + // Attempt to use the selected group + if (!passkeyImportDialog.useDefaultGroup()) { + auto groupUuid = passkeyImportDialog.getSelectedGroupUuid(); + group = db->rootGroup()->findGroupByUuid(groupUuid); + } + + // Use default group if requested or if the selected group does not exist + if (!group) { + group = getDefaultGroup(db); + } + + browserService()->addPasskeyToGroup( + db, group, url, relyingParty, relyingParty, username, credentialId, userHandle, privateKey); + + return true; +} + +Group* PasskeyImporter::getDefaultGroup(QSharedPointer& database) const +{ + auto defaultGroup = database->rootGroup()->findGroupByPath(IMPORTED_PASSKEYS_GROUP); + + // Create the default group if it does not exist + if (!defaultGroup) { + defaultGroup = new Group(); + defaultGroup->setName(IMPORTED_PASSKEYS_GROUP); + defaultGroup->setUuid(QUuid::createUuid()); + defaultGroup->setParent(database->rootGroup()); + } + + return defaultGroup; +} diff --git a/src/gui/passkeys/PasskeyImporter.h b/src/gui/passkeys/PasskeyImporter.h new file mode 100644 index 000000000..9fd7097d5 --- /dev/null +++ b/src/gui/passkeys/PasskeyImporter.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2024 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef KEEPASSXC_PASSKEYIMPORTER_H +#define KEEPASSXC_PASSKEYIMPORTER_H + +#include "core/Database.h" +#include +#include +#include +#include +#include + +class Entry; + +class PasskeyImporter : public QObject +{ + Q_OBJECT + +public: + explicit PasskeyImporter(QWidget* parent = nullptr); + + void importPasskey(QSharedPointer& database, Entry* entry = nullptr); + bool showImportDialog(QSharedPointer& database, + Entry* entry, + const QString& url, + const QString& relyingParty, + const QString& username, + const QString& credentialId, + const QString& userHandle, + const QString& privateKey, + const QString& titleText = {}, + const QString& infoText = {}, + const QString& importButtonText = {}); + +private: + void importSelectedFile(QFile& file, QSharedPointer& database, Entry* entry); + Group* getDefaultGroup(QSharedPointer& database) const; + +private: + QPointer m_parent; +}; + +#endif // KEEPASSXC_PASSKEYIMPORTER_H diff --git a/src/gui/remote/DatabaseSettingsWidgetRemote.cpp b/src/gui/remote/DatabaseSettingsWidgetRemote.cpp new file mode 100644 index 000000000..f66edba7e --- /dev/null +++ b/src/gui/remote/DatabaseSettingsWidgetRemote.cpp @@ -0,0 +1,209 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "DatabaseSettingsWidgetRemote.h" +#include "ui_DatabaseSettingsWidgetRemote.h" + +#include "core/Global.h" +#include "core/Metadata.h" + +#include "RemoteHandler.h" +#include "RemoteSettings.h" +#include "gui/MessageBox.h" + +DatabaseSettingsWidgetRemote::DatabaseSettingsWidgetRemote(QWidget* parent) + : DatabaseSettingsWidget(parent) + , m_remoteSettings(new RemoteSettings(nullptr, this)) + , m_ui(new Ui::DatabaseSettingsWidgetRemote()) +{ + m_ui->setupUi(this); + m_ui->messageWidget->setHidden(true); + + connect(m_ui->saveSettingsButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetRemote::saveCurrentSettings); + connect( + m_ui->removeSettingsButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetRemote::removeCurrentSettings); + connect(m_ui->settingsListWidget, + &QListWidget::itemSelectionChanged, + this, + &DatabaseSettingsWidgetRemote::editCurrentSettings); + connect(m_ui->testDownloadCommandButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetRemote::testDownload); + + auto setModified = [this]() { m_modified = true; }; + connect(m_ui->nameLineEdit, &QLineEdit::textChanged, setModified); + connect(m_ui->downloadCommand, &QLineEdit::textChanged, setModified); + connect(m_ui->inputForDownload, &QPlainTextEdit::textChanged, setModified); + connect(m_ui->downloadTimeoutSec, QOverload::of(&QSpinBox::valueChanged), setModified); + connect(m_ui->uploadCommand, &QLineEdit::textChanged, setModified); + connect(m_ui->inputForUpload, &QPlainTextEdit::textChanged, setModified); + connect(m_ui->uploadTimeoutSec, QOverload::of(&QSpinBox::valueChanged), setModified); +} + +DatabaseSettingsWidgetRemote::~DatabaseSettingsWidgetRemote() = default; + +void DatabaseSettingsWidgetRemote::initialize() +{ + clearFields(); + m_remoteSettings->setDatabase(m_db); + updateSettingsList(); + if (m_ui->settingsListWidget->count() > 0) { + m_ui->settingsListWidget->setCurrentRow(0); + m_ui->removeSettingsButton->setEnabled(true); + } else { + m_ui->removeSettingsButton->setDisabled(true); + } +} + +void DatabaseSettingsWidgetRemote::uninitialize() +{ +} + +bool DatabaseSettingsWidgetRemote::saveSettings() +{ + if (m_modified) { + auto ans = MessageBox::question(this, + tr("Save Remote Settings"), + tr("You have unsaved changes. Do you want to save them?"), + MessageBox::Save | MessageBox::Discard | MessageBox::Cancel, + MessageBox::Save); + if (ans == MessageBox::Save) { + saveCurrentSettings(); + } else if (ans == MessageBox::Cancel) { + return false; + } + } + + m_remoteSettings->saveSettings(); + return true; +} + +void DatabaseSettingsWidgetRemote::saveCurrentSettings() +{ + QString name = m_ui->nameLineEdit->text(); + if (name.isEmpty()) { + m_ui->messageWidget->showMessage(tr("Name cannot be empty."), MessageWidget::Warning); + return; + } + + auto* params = new RemoteParams(); + params->name = m_ui->nameLineEdit->text(); + params->downloadCommand = m_ui->downloadCommand->text(); + params->downloadInput = m_ui->inputForDownload->toPlainText(); + params->downloadTimeoutMsec = m_ui->downloadTimeoutSec->value() * 1000; + params->uploadCommand = m_ui->uploadCommand->text(); + params->uploadInput = m_ui->inputForUpload->toPlainText(); + params->uploadTimeoutMsec = m_ui->uploadTimeoutSec->value() * 1000; + + m_remoteSettings->addRemoteParams(params); + updateSettingsList(); + + auto item = findItemByName(name); + m_ui->settingsListWidget->setCurrentItem(item); + m_ui->removeSettingsButton->setEnabled(true); + m_modified = false; +} + +QListWidgetItem* DatabaseSettingsWidgetRemote::findItemByName(const QString& name) +{ + return m_ui->settingsListWidget->findItems(name, Qt::MatchExactly).first(); +} + +void DatabaseSettingsWidgetRemote::removeCurrentSettings() +{ + m_remoteSettings->removeRemoteParams(m_ui->nameLineEdit->text()); + updateSettingsList(); + if (!m_remoteSettings->getAllRemoteParams().empty()) { + m_ui->settingsListWidget->setCurrentRow(0); + m_ui->removeSettingsButton->setEnabled(true); + } else { + clearFields(); + m_ui->removeSettingsButton->setDisabled(true); + } +} + +void DatabaseSettingsWidgetRemote::editCurrentSettings() +{ + if (!m_ui->settingsListWidget->currentItem()) { + return; + } + + QString name = m_ui->settingsListWidget->currentItem()->text(); + auto* params = m_remoteSettings->getRemoteParams(name); + if (!params) { + return; + } + + m_ui->nameLineEdit->setText(params->name); + m_ui->downloadCommand->setText(params->downloadCommand); + m_ui->inputForDownload->setPlainText(params->downloadInput); + m_ui->downloadTimeoutSec->setValue(params->downloadTimeoutMsec / 1000); + m_ui->uploadCommand->setText(params->uploadCommand); + m_ui->inputForUpload->setPlainText(params->uploadInput); + m_ui->uploadTimeoutSec->setValue(params->uploadTimeoutMsec / 1000); + m_modified = false; +} + +void DatabaseSettingsWidgetRemote::updateSettingsList() +{ + m_ui->settingsListWidget->clear(); + for (auto params : m_remoteSettings->getAllRemoteParams()) { + auto* item = new QListWidgetItem(m_ui->settingsListWidget); + item->setText(params->name); + m_ui->settingsListWidget->addItem(item); + } +} + +void DatabaseSettingsWidgetRemote::clearFields() +{ + m_ui->nameLineEdit->setText(""); + m_ui->downloadCommand->setText(""); + m_ui->inputForDownload->setPlainText(""); + m_ui->downloadTimeoutSec->setValue(10); + m_ui->uploadCommand->setText(""); + m_ui->inputForUpload->setPlainText(""); + m_ui->uploadTimeoutSec->setValue(10); + m_modified = false; +} + +void DatabaseSettingsWidgetRemote::testDownload() +{ + auto* params = new RemoteParams(); + params->name = m_ui->nameLineEdit->text(); + params->downloadCommand = m_ui->downloadCommand->text(); + params->downloadInput = m_ui->inputForDownload->toPlainText(); + params->downloadTimeoutMsec = m_ui->downloadTimeoutSec->value() * 1000; + + QScopedPointer remoteHandler(new RemoteHandler(this)); + if (params->downloadCommand.isEmpty()) { + m_ui->messageWidget->showMessage(tr("Download command cannot be empty."), MessageWidget::Warning); + return; + } + + RemoteHandler::RemoteResult result = remoteHandler->download(params); + if (!result.success) { + m_ui->messageWidget->showMessage(tr("Download failed with error: %1").arg(result.errorMessage), + MessageWidget::Error); + return; + } + + if (!QFile::exists(result.filePath)) { + m_ui->messageWidget->showMessage(tr("Download finished, but file %1 could not be found.").arg(result.filePath), + MessageWidget::Error); + return; + } + + m_ui->messageWidget->showMessage(tr("Download successful."), MessageWidget::Positive); +} diff --git a/src/gui/remote/DatabaseSettingsWidgetRemote.h b/src/gui/remote/DatabaseSettingsWidgetRemote.h new file mode 100644 index 000000000..6184e4bd9 --- /dev/null +++ b/src/gui/remote/DatabaseSettingsWidgetRemote.h @@ -0,0 +1,64 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSX_DATABASESETTINGSWIDGETREMOTE_H +#define KEEPASSX_DATABASESETTINGSWIDGETREMOTE_H + +#include "gui/dbsettings/DatabaseSettingsWidget.h" + +#include +#include + +class Database; +class RemoteSettings; + +namespace Ui +{ + class DatabaseSettingsWidgetRemote; +} + +class DatabaseSettingsWidgetRemote : public DatabaseSettingsWidget +{ + Q_OBJECT + +public: + explicit DatabaseSettingsWidgetRemote(QWidget* parent = nullptr); + Q_DISABLE_COPY(DatabaseSettingsWidgetRemote); + ~DatabaseSettingsWidgetRemote() override; + +public slots: + void initialize() override; + void uninitialize() override; + bool saveSettings() override; + +private slots: + void saveCurrentSettings(); + void removeCurrentSettings(); + void editCurrentSettings(); + void testDownload(); + +private: + void updateSettingsList(); + QListWidgetItem* findItemByName(const QString& name); + void clearFields(); + + QScopedPointer m_remoteSettings; + const QScopedPointer m_ui; + bool m_modified = false; +}; + +#endif // KEEPASSX_DATABASESETTINGSWIDGETREMOTE_H diff --git a/src/gui/remote/DatabaseSettingsWidgetRemote.ui b/src/gui/remote/DatabaseSettingsWidgetRemote.ui new file mode 100644 index 000000000..1ab5d8b8f --- /dev/null +++ b/src/gui/remote/DatabaseSettingsWidgetRemote.ui @@ -0,0 +1,306 @@ + + + DatabaseSettingsWidgetRemote + + + + 0 + 0 + 652 + 516 + + + + + 0 + 0 + + + + + 450 + 0 + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + + + + Sync Commands + + + + + + + + + + + Qt::LeftToRight + + + Remove + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + 0 + 0 + + + + Command Settings + + + + QLayout::SetMinimumSize + + + + + + + Name + + + + + + + + + + + + Save + + + + + + + + + 0 + + + + Download + + + + + + Input: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Command: + + + + + + + Download input field + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + + + + + + Download command field + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + + + + Test + + + + + + + + + Timeout: + + + + + + + seconds + + + 1 + + + 300 + + + 10 + + + + + + + + Upload + + + + + + Upload input field + + + e.g.: +put {TEMP_DATABASE} DatabaseOnRemote.kdbx +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last command `exit` has to be sent + + + + + + + + Input: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Upload command field + + + e.g.: "sftp user@hostname" or "scp {TEMP_DATABASE} user@hostname:DatabaseOnRemote.kdbx" + + + + + + + Command: + + + + + + + Timeout: + + + + + + + seconds + + + 1 + + + 300 + + + 10 + + + + + + + + + + + + + + + + + MessageWidget + QWidget +
    gui/MessageWidget.h
    + 1 +
    +
    + + +
    diff --git a/src/gui/remote/RemoteHandler.cpp b/src/gui/remote/RemoteHandler.cpp new file mode 100644 index 000000000..c3bb857dd --- /dev/null +++ b/src/gui/remote/RemoteHandler.cpp @@ -0,0 +1,145 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "RemoteHandler.h" + +#include "RemoteProcess.h" +#include "RemoteSettings.h" + +#include "core/AsyncTask.h" +#include "core/Database.h" + +namespace +{ + QString getTempFileLocation() + { + QString uuid = QUuid::createUuid().toString().remove(0, 1); + uuid.chop(1); + return QDir::toNativeSeparators(QDir::temp().absoluteFilePath("RemoteDatabase-" + uuid + ".kdbx")); + } +} // namespace + +std::function(QObject*)> RemoteHandler::m_createRemoteProcess([](QObject* parent) { + return QScopedPointer(new RemoteProcess(parent)); +}); + +RemoteHandler::RemoteHandler(QObject* parent) + : QObject(parent) +{ +} + +void RemoteHandler::setRemoteProcessFunc(std::function(QObject*)> func) +{ + m_createRemoteProcess = std::move(func); +} + +RemoteHandler::RemoteResult RemoteHandler::download(const RemoteParams* params) +{ + return AsyncTask::runAndWaitForFuture([params] { + RemoteResult result; + if (!params) { + result.success = false; + result.errorMessage = tr("Invalid download parameters provided."); + return result; + } + + auto filePath = getTempFileLocation(); + auto remoteProcess = m_createRemoteProcess(nullptr); // use nullptr parent, otherwise there is a warning + remoteProcess->setTempFileLocation(filePath); + remoteProcess->start(params->downloadCommand); + if (!params->downloadInput.isEmpty()) { + remoteProcess->write(params->downloadInput + "\n"); + remoteProcess->waitForBytesWritten(); + remoteProcess->closeWriteChannel(); + } + + bool finished = remoteProcess->waitForFinished(params->downloadTimeoutMsec); + int statusCode = remoteProcess->exitCode(); + + // TODO: For future use + result.stdOutput = remoteProcess->readOutput(); + result.stdError = remoteProcess->readError(); + + if (finished && statusCode == 0) { + // Check if the file actually downloaded + QFileInfo fileInfo(filePath); + if (!fileInfo.exists() || fileInfo.size() == 0) { + result.success = false; + result.errorMessage = tr("Command `%1` failed to download database.").arg(params->downloadCommand); + } else { + result.success = true; + result.filePath = filePath; + } + } else if (finished) { + result.success = false; + result.errorMessage = + tr("Command `%1` exited with status code: %2").arg(params->downloadCommand).arg(statusCode); + } else { + remoteProcess->kill(); + result.success = false; + result.errorMessage = + tr("Command `%1` did not finish in time. Process was killed.").arg(params->downloadCommand); + } + + return result; + }); +} + +RemoteHandler::RemoteResult RemoteHandler::upload(const QString& filePath, const RemoteParams* params) +{ + return AsyncTask::runAndWaitForFuture([filePath, params] { + RemoteResult result; + if (!params) { + result.success = false; + result.errorMessage = tr("Invalid database pointer or upload parameters provided."); + return result; + } + + auto remoteProcess = m_createRemoteProcess(nullptr); // use nullptr parent, otherwise there is a warning + remoteProcess->setTempFileLocation(filePath); + remoteProcess->start(params->uploadCommand); + if (!params->uploadInput.isEmpty()) { + remoteProcess->write(params->uploadInput + "\n"); + remoteProcess->waitForBytesWritten(); + remoteProcess->closeWriteChannel(); + } + + bool finished = remoteProcess->waitForFinished(params->uploadTimeoutMsec); + int statusCode = remoteProcess->exitCode(); + + // TODO: For future use + result.stdOutput = remoteProcess->readOutput(); + result.stdError = remoteProcess->readError(); + + if (finished && statusCode == 0) { + result.success = true; + } else if (finished) { + result.success = false; + result.errorMessage = tr("Failed to upload merged database. Command `%1` exited with status code: %2") + .arg(params->uploadCommand) + .arg(statusCode); + } else { + remoteProcess->kill(); + result.success = false; + result.errorMessage = + tr("Failed to upload merged database. Command `%1` did not finish in time. Process was killed.") + .arg(params->uploadCommand); + } + + return result; + }); +} diff --git a/src/gui/remote/RemoteHandler.h b/src/gui/remote/RemoteHandler.h new file mode 100644 index 000000000..a46ee8c19 --- /dev/null +++ b/src/gui/remote/RemoteHandler.h @@ -0,0 +1,57 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_REMOTEHANDLER_H +#define KEEPASSXC_REMOTEHANDLER_H + +#include + +class Database; +class RemoteProcess; +struct RemoteParams; + +class RemoteHandler : public QObject +{ + Q_OBJECT + +public: + explicit RemoteHandler(QObject* parent = nullptr); + ~RemoteHandler() override = default; + + struct RemoteResult + { + bool success; + QString errorMessage; + QString filePath; + QString stdOutput; + QString stdError; + }; + + RemoteResult download(const RemoteParams* params); + RemoteResult upload(const QString& filePath, const RemoteParams* params); + + // Used for testing only + static void setRemoteProcessFunc(std::function(QObject*)> func); + +private: + static std::function(QObject*)> m_createRemoteProcess; + static QString m_tempFileLocation; + + Q_DISABLE_COPY(RemoteHandler) +}; + +#endif // KEEPASSXC_REMOTEHANDLER_H diff --git a/src/gui/remote/RemoteProcess.cpp b/src/gui/remote/RemoteProcess.cpp new file mode 100644 index 000000000..6b2f60717 --- /dev/null +++ b/src/gui/remote/RemoteProcess.cpp @@ -0,0 +1,98 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "RemoteProcess.h" + +#include +#include + +RemoteProcess::RemoteProcess(QObject* parent) + : m_process(new QProcess(parent)) +{ +} + +RemoteProcess::~RemoteProcess() +{ +} + +void RemoteProcess::setTempFileLocation(const QString& tempFile) +{ + m_tempFileLocation = tempFile; +} + +void RemoteProcess::start(const QString& command) +{ + const QString commandResolved = resolveTemplateVariables(command); +#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) + QStringList cmdList = QProcess::splitCommand(commandResolved); + if (!cmdList.isEmpty()) { + const QString program = cmdList.takeFirst(); + m_process->start(program, cmdList); + } +#else + m_process->start(resolveTemplateVariables(commandResolved)); +#endif + + m_process->waitForStarted(); +} + +qint64 RemoteProcess::write(const QString& input) +{ + auto resolved = resolveTemplateVariables(input); + return m_process->write(resolved.toUtf8()); +} + +bool RemoteProcess::waitForBytesWritten() +{ + return m_process->waitForBytesWritten(); +} + +void RemoteProcess::closeWriteChannel() +{ + m_process->closeWriteChannel(); +} + +bool RemoteProcess::waitForFinished(int msecs) +{ + return m_process->waitForFinished(msecs); +} + +int RemoteProcess::exitCode() const +{ + return m_process->exitCode(); +} + +QString RemoteProcess::readOutput() +{ + return m_process->readAllStandardOutput(); +} + +QString RemoteProcess::readError() +{ + return m_process->readAllStandardError(); +} + +void RemoteProcess::kill() const +{ + m_process->kill(); +} + +QString RemoteProcess::resolveTemplateVariables(const QString& input) const +{ + QString resolved = input; + return resolved.replace("{TEMP_DATABASE}", m_tempFileLocation); +} diff --git a/src/gui/remote/RemoteProcess.h b/src/gui/remote/RemoteProcess.h new file mode 100644 index 000000000..fb43d0430 --- /dev/null +++ b/src/gui/remote/RemoteProcess.h @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_REMOTEPROCESS_H +#define KEEPASSXC_REMOTEPROCESS_H + +#include + +class RemoteProcess +{ +public: + explicit RemoteProcess(QObject* parent); + virtual ~RemoteProcess(); + + virtual void setTempFileLocation(const QString& tempFile); + + virtual void start(const QString& command); + virtual qint64 write(const QString& input); + virtual bool waitForBytesWritten(); + virtual void closeWriteChannel(); + virtual bool waitForFinished(int msecs); + virtual QString readOutput(); + virtual QString readError(); + virtual int exitCode() const; + void kill() const; + +protected: + QString m_tempFileLocation; + +private: + QString resolveTemplateVariables(const QString& input) const; + + QScopedPointer m_process; +}; + +#endif // KEEPASSXC_REMOTEPROCESS_H diff --git a/src/gui/remote/RemoteSettings.cpp b/src/gui/remote/RemoteSettings.cpp new file mode 100644 index 000000000..f5af3b1e1 --- /dev/null +++ b/src/gui/remote/RemoteSettings.cpp @@ -0,0 +1,120 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "RemoteSettings.h" + +#include "core/Database.h" +#include "core/Metadata.h" + +#include +#include +#include +#include + +RemoteSettings::RemoteSettings(const QSharedPointer& db, QObject* parent) + : QObject(parent) +{ + setDatabase(db); +} + +RemoteSettings::~RemoteSettings() = default; + +void RemoteSettings::setDatabase(const QSharedPointer& db) +{ + m_remoteParams.clear(); + m_db = db; + loadSettings(); +} + +void RemoteSettings::addRemoteParams(RemoteParams* params) +{ + if (params->name.isEmpty()) { + qWarning() << "RemoteSettings::addRemoteParams: Remote parameters name is empty"; + return; + } + m_remoteParams.insert(params->name, params); +} + +void RemoteSettings::removeRemoteParams(const QString& name) +{ + m_remoteParams.remove(name); +} + +RemoteParams* RemoteSettings::getRemoteParams(const QString& name) const +{ + if (m_remoteParams.contains(name)) { + return m_remoteParams.value(name); + } + return nullptr; +} + +QList RemoteSettings::getAllRemoteParams() const +{ + return m_remoteParams.values(); +} + +void RemoteSettings::loadSettings() +{ + if (m_db) { + fromConfig(m_db->metadata()->customData()->value(CustomData::RemoteProgramSettings)); + } +} + +void RemoteSettings::saveSettings() const +{ + if (m_db) { + m_db->metadata()->customData()->set(CustomData::RemoteProgramSettings, toConfig()); + } +} + +QString RemoteSettings::toConfig() const +{ + QJsonArray config; + for (const auto params : m_remoteParams.values()) { + QJsonObject object; + object["name"] = params->name; + object["downloadCommand"] = params->downloadCommand; + object["downloadCommandInput"] = params->downloadInput; + object["downloadTimeoutMsec"] = params->downloadTimeoutMsec; + object["uploadCommand"] = params->uploadCommand; + object["uploadCommandInput"] = params->uploadInput; + object["uploadTimeoutMsec"] = params->uploadTimeoutMsec; + config << object; + } + QJsonDocument doc(config); + return doc.toJson(QJsonDocument::Compact); +} + +void RemoteSettings::fromConfig(const QString& data) +{ + m_remoteParams.clear(); + + QJsonDocument json = QJsonDocument::fromJson(data.toUtf8()); + for (const auto& item : json.array().toVariantList()) { + auto itemMap = item.toMap(); + auto* params = new RemoteParams(); + params->name = itemMap["name"].toString(); + params->downloadCommand = itemMap["downloadCommand"].toString(); + params->downloadInput = itemMap["downloadCommandInput"].toString(); + params->downloadTimeoutMsec = itemMap.value("downloadTimeoutMsec", 10000).toInt(); + params->uploadCommand = itemMap["uploadCommand"].toString(); + params->uploadInput = itemMap["uploadCommandInput"].toString(); + params->uploadTimeoutMsec = itemMap.value("uploadTimeoutMsec", 10000).toInt(); + + m_remoteParams.insert(params->name, params); + } +} diff --git a/src/gui/remote/RemoteSettings.h b/src/gui/remote/RemoteSettings.h new file mode 100644 index 000000000..4b414494c --- /dev/null +++ b/src/gui/remote/RemoteSettings.h @@ -0,0 +1,63 @@ +/* + * Copyright (C) 2024 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 . + */ + +#ifndef KEEPASSXC_REMOTESETTINGS_H +#define KEEPASSXC_REMOTESETTINGS_H + +#include +#include + +class Database; + +struct RemoteParams +{ + QString name; + QString downloadCommand; + QString downloadInput; + int downloadTimeoutMsec; + QString uploadCommand; + QString uploadInput; + int uploadTimeoutMsec; +}; +Q_DECLARE_METATYPE(RemoteParams) + +class RemoteSettings : public QObject +{ + Q_OBJECT +public: + explicit RemoteSettings(const QSharedPointer& db, QObject* parent = nullptr); + ~RemoteSettings() override; + + void setDatabase(const QSharedPointer& db); + + void addRemoteParams(RemoteParams* params); + void removeRemoteParams(const QString& name); + RemoteParams* getRemoteParams(const QString& name) const; + QList getAllRemoteParams() const; + + void loadSettings(); + void saveSettings() const; + +private: + void fromConfig(const QString& data); + QString toConfig() const; + + QHash m_remoteParams; + QSharedPointer m_db; +}; + +#endif // KEEPASSXC_REMOTESETTINGS_H diff --git a/src/gui/reports/ReportsDialog.cpp b/src/gui/reports/ReportsDialog.cpp index e1da39839..1d32c2322 100644 --- a/src/gui/reports/ReportsDialog.cpp +++ b/src/gui/reports/ReportsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2023 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 @@ -25,14 +25,15 @@ #include "ReportsPageBrowserStatistics.h" #include "ReportsWidgetBrowserStatistics.h" #endif +#ifdef WITH_XC_BROWSER_PASSKEYS +#include "ReportsPagePasskeys.h" +#include "ReportsWidgetPasskeys.h" +#endif #include "ReportsWidgetHealthcheck.h" #include "ReportsWidgetHibp.h" #include "core/Global.h" #include "core/Group.h" -#ifdef Q_OS_MACOS -#include "touchid/TouchID.h" -#endif class ReportsDialog::ExtraPage { @@ -64,6 +65,9 @@ ReportsDialog::ReportsDialog(QWidget* parent) , m_statPage(new ReportsPageStatistics()) #ifdef WITH_XC_BROWSER , m_browserStatPage(new ReportsPageBrowserStatistics()) +#endif +#ifdef WITH_XC_BROWSER_PASSKEYS + , m_passkeysPage(new ReportsPagePasskeys()) #endif , m_editEntryWidget(new EditEntryWidget(this)) { @@ -71,10 +75,13 @@ ReportsDialog::ReportsDialog(QWidget* parent) connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject())); addPage(m_statPage); + addPage(m_healthPage); +#ifdef WITH_XC_BROWSER_PASSKEYS + addPage(m_passkeysPage); +#endif #ifdef WITH_XC_BROWSER addPage(m_browserStatPage); #endif - addPage(m_healthPage); addPage(m_hibpPage); m_ui->stackedWidget->setCurrentIndex(0); @@ -91,13 +98,15 @@ ReportsDialog::ReportsDialog(QWidget* parent) connect(m_browserStatPage->m_browserWidget, SIGNAL(entryActivated(Entry*)), SLOT(entryActivationSignalReceived(Entry*))); +#endif +#ifdef WITH_XC_BROWSER_PASSKEYS + connect( + m_passkeysPage->m_passkeysWidget, SIGNAL(entryActivated(Entry*)), SLOT(entryActivationSignalReceived(Entry*))); #endif connect(m_editEntryWidget, SIGNAL(editFinished(bool)), SLOT(switchToMainView(bool))); } -ReportsDialog::~ReportsDialog() -{ -} +ReportsDialog::~ReportsDialog() = default; void ReportsDialog::load(const QSharedPointer& db) { @@ -119,6 +128,24 @@ void ReportsDialog::addPage(QSharedPointer page) m_ui->categoryList->setCurrentCategory(category); } +void ReportsDialog::activatePasskeysPage() +{ +#ifdef WITH_XC_BROWSER_PASSKEYS + m_ui->stackedWidget->setCurrentWidget(m_passkeysPage->m_passkeysWidget); + auto index = m_ui->stackedWidget->currentIndex(); + m_ui->categoryList->setCurrentCategory(index); +#endif +} + +bool ReportsDialog::onPassKeysPage() +{ +#ifdef WITH_XC_BROWSER_PASSKEYS + return m_ui->stackedWidget->currentWidget() == m_passkeysPage->m_passkeysWidget; +#else + return false; +#endif +} + void ReportsDialog::reject() { emit editFinished(true); @@ -126,7 +153,7 @@ void ReportsDialog::reject() void ReportsDialog::entryActivationSignalReceived(Entry* entry) { - m_sender = static_cast(sender()); + m_sender = qobject_cast(sender()); m_editEntryWidget->loadEntry(entry, false, false, entry->group()->hierarchy().join(" > "), m_db); m_ui->stackedWidget->setCurrentWidget(m_editEntryWidget); } @@ -153,6 +180,11 @@ void ReportsDialog::switchToMainView(bool previousDialogAccepted) if (m_sender == m_browserStatPage->m_browserWidget) { m_browserStatPage->m_browserWidget->calculateBrowserStatistics(); } +#endif +#ifdef WITH_XC_BROWSER_PASSKEYS + if (m_sender == m_passkeysPage->m_passkeysWidget) { + m_passkeysPage->m_passkeysWidget->updateEntries(); + } #endif } diff --git a/src/gui/reports/ReportsDialog.h b/src/gui/reports/ReportsDialog.h index 25cb623eb..abeaab481 100644 --- a/src/gui/reports/ReportsDialog.h +++ b/src/gui/reports/ReportsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2023 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 @@ -32,6 +32,9 @@ class ReportsPageStatistics; #ifdef WITH_XC_BROWSER class ReportsPageBrowserStatistics; #endif +#ifdef WITH_XC_BROWSER_PASSKEYS +class ReportsPagePasskeys; +#endif namespace Ui { @@ -41,9 +44,7 @@ namespace Ui class IReportsPage { public: - virtual ~IReportsPage() - { - } + virtual ~IReportsPage() = default; virtual QString name() = 0; virtual QIcon icon() = 0; virtual QWidget* createWidget() = 0; @@ -62,6 +63,8 @@ public: void load(const QSharedPointer& db); void addPage(QSharedPointer page); + void activatePasskeysPage(); + bool onPassKeysPage(); signals: void editFinished(bool accepted); @@ -79,6 +82,9 @@ private: const QSharedPointer m_statPage; #ifdef WITH_XC_BROWSER const QSharedPointer m_browserStatPage; +#endif +#ifdef WITH_XC_BROWSER_PASSKEYS + const QSharedPointer m_passkeysPage; #endif QPointer m_editEntryWidget; QWidget* m_sender = nullptr; diff --git a/src/gui/reports/ReportsPagePasskeys.cpp b/src/gui/reports/ReportsPagePasskeys.cpp new file mode 100644 index 000000000..01af72266 --- /dev/null +++ b/src/gui/reports/ReportsPagePasskeys.cpp @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "ReportsPagePasskeys.h" +#include "ReportsWidgetPasskeys.h" +#include "gui/Icons.h" + +ReportsPagePasskeys::ReportsPagePasskeys() + : m_passkeysWidget(new ReportsWidgetPasskeys()) +{ +} + +QString ReportsPagePasskeys::name() +{ + return QObject::tr("Passkeys"); +} + +QIcon ReportsPagePasskeys::icon() +{ + return icons()->icon("passkey"); +} + +QWidget* ReportsPagePasskeys::createWidget() +{ + return m_passkeysWidget; +} + +void ReportsPagePasskeys::loadSettings(QWidget* widget, QSharedPointer db) +{ + const auto settingsWidget = reinterpret_cast(widget); + settingsWidget->loadSettings(db); +} + +void ReportsPagePasskeys::saveSettings(QWidget* widget) +{ + const auto settingsWidget = reinterpret_cast(widget); + settingsWidget->saveSettings(); +} diff --git a/src/keeshare/DatabaseSettingsPageKeeShare.h b/src/gui/reports/ReportsPagePasskeys.h similarity index 68% rename from src/keeshare/DatabaseSettingsPageKeeShare.h rename to src/gui/reports/ReportsPagePasskeys.h index 1de48eae8..8be0aa7d0 100644 --- a/src/keeshare/DatabaseSettingsPageKeeShare.h +++ b/src/gui/reports/ReportsPagePasskeys.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -15,14 +15,21 @@ * along with this program. If not, see . */ -#ifndef KEEPASSXC_DATABASESETTINGSPAGEKEESHARE_H -#define KEEPASSXC_DATABASESETTINGSPAGEKEESHARE_H +#ifndef KEEPASSXC_REPORTSPAGEPASSKEYS_H +#define KEEPASSXC_REPORTSPAGEPASSKEYS_H -#include "gui/dbsettings/DatabaseSettingsDialog.h" +#include "ReportsDialog.h" +#include "ReportsWidgetPasskeys.h" -class DatabaseSettingsPageKeeShare : public IDatabaseSettingsPage +class ReportsWidgetBrowserStatistics; + +class ReportsPagePasskeys : public IReportsPage { public: + ReportsWidgetPasskeys* m_passkeysWidget; + + ReportsPagePasskeys(); + QString name() override; QIcon icon() override; QWidget* createWidget() override; @@ -30,4 +37,4 @@ public: void saveSettings(QWidget* widget) override; }; -#endif // KEEPASSXC_DATABASESETTINGSPAGEKEESHARE_H +#endif // KEEPASSXC_REPORTSPAGEPASSKEYS_H diff --git a/src/gui/reports/ReportsPageStatistics.cpp b/src/gui/reports/ReportsPageStatistics.cpp index f7fb2f170..57497d19c 100644 --- a/src/gui/reports/ReportsPageStatistics.cpp +++ b/src/gui/reports/ReportsPageStatistics.cpp @@ -37,12 +37,12 @@ QWidget* ReportsPageStatistics::createWidget() void ReportsPageStatistics::loadSettings(QWidget* widget, QSharedPointer db) { - ReportsWidgetStatistics* settingsWidget = reinterpret_cast(widget); + auto settingsWidget = reinterpret_cast(widget); settingsWidget->loadSettings(db); } void ReportsPageStatistics::saveSettings(QWidget* widget) { - ReportsWidgetStatistics* settingsWidget = reinterpret_cast(widget); + auto settingsWidget = reinterpret_cast(widget); settingsWidget->saveSettings(); } diff --git a/src/gui/reports/ReportsWidget.cpp b/src/gui/reports/ReportsWidget.cpp index 184434116..c822f4782 100644 --- a/src/gui/reports/ReportsWidget.cpp +++ b/src/gui/reports/ReportsWidget.cpp @@ -22,9 +22,7 @@ ReportsWidget::ReportsWidget(QWidget* parent) { } -ReportsWidget::~ReportsWidget() -{ -} +ReportsWidget::~ReportsWidget() = default; /** * Load the database to be configured by this page and initialize the page. diff --git a/src/gui/reports/ReportsWidget.h b/src/gui/reports/ReportsWidget.h index 59609acf9..c80c5eb65 100644 --- a/src/gui/reports/ReportsWidget.h +++ b/src/gui/reports/ReportsWidget.h @@ -18,7 +18,7 @@ #ifndef KEEPASSXC_REPORTSWIDGET_H #define KEEPASSXC_REPORTSWIDGET_H -#include "gui/settings/SettingsWidget.h" +#include "gui/SettingsWidget.h" class Database; diff --git a/src/gui/reports/ReportsWidgetBrowserStatistics.cpp b/src/gui/reports/ReportsWidgetBrowserStatistics.cpp index 1a3ad5d7e..63267d77f 100644 --- a/src/gui/reports/ReportsWidgetBrowserStatistics.cpp +++ b/src/gui/reports/ReportsWidgetBrowserStatistics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -27,7 +27,6 @@ #include "gui/styles/StateColorPalette.h" #include -#include #include #include #include @@ -112,8 +111,8 @@ ReportsWidgetBrowserStatistics::ReportsWidgetBrowserStatistics(QWidget* parent) connect( m_ui->browserStatisticsTableView, SIGNAL(doubleClicked(QModelIndex)), SLOT(emitEntryActivated(QModelIndex))); connect(m_ui->showEntriesWithUrlOnlyCheckBox, SIGNAL(stateChanged(int)), this, SLOT(calculateBrowserStatistics())); - connect(m_ui->showConnectedOnlyCheckBox, SIGNAL(stateChanged(int)), this, SLOT(calculateBrowserStatistics())); - connect(m_ui->excludeExpired, SIGNAL(stateChanged(int)), this, SLOT(calculateBrowserStatistics())); + connect(m_ui->showAllowDenyCheckBox, SIGNAL(stateChanged(int)), this, SLOT(calculateBrowserStatistics())); + connect(m_ui->showExpired, SIGNAL(stateChanged(int)), this, SLOT(calculateBrowserStatistics())); new QShortcut(Qt::Key_Delete, this, SLOT(deleteSelectedEntries())); } @@ -144,6 +143,9 @@ void ReportsWidgetBrowserStatistics::addStatisticsRow(bool hasUrls, if (excluded) { title.append(tr(" (Excluded)")); } + if (entry->isExpired()) { + title.append(tr(" (Expired)")); + } auto row = QList(); row << new QStandardItem(Icons::entryIconPixmap(entry), title); @@ -196,16 +198,15 @@ void ReportsWidgetBrowserStatistics::calculateBrowserStatistics() const QScopedPointer browserStatistics( AsyncTask::runAndWaitForFuture([this] { return new BrowserStatistics(m_db); })); - const auto showExcluded = m_ui->showConnectedOnlyCheckBox->isChecked(); + const auto showExpired = m_ui->showExpired->isChecked(); const auto showEntriesWithUrlOnly = m_ui->showEntriesWithUrlOnlyCheckBox->isChecked(); - const auto showOnlyEntriesWithSettings = m_ui->showConnectedOnlyCheckBox->isChecked(); + const auto showOnlyEntriesWithSettings = m_ui->showAllowDenyCheckBox->isChecked(); // Display the entries m_rowToEntry.clear(); for (const auto& item : browserStatistics->items()) { - auto excluded = item->exclude || (item->entry->isExpired() && m_ui->excludeExpired->isChecked()); - if (excluded && !showExcluded) { - // Exclude this entry from the report + // Check if the entry should be displayed + if (!showExpired && item->entry->isExpired()) { continue; } @@ -274,10 +275,25 @@ void ReportsWidgetBrowserStatistics::customMenuRequested(QPoint pos) }); } + // Create the "expire entry" menu item + const auto expEntry = new QAction(icons()->icon("entry-expire"), tr("Expire Entry(s)…", "", selected.size()), this); + menu->addAction(expEntry); + connect(expEntry, &QAction::triggered, this, &ReportsWidgetBrowserStatistics::expireSelectedEntries); + // Create the "delete entry" menu item - const auto delEntry = new QAction(icons()->icon("entry-delete"), tr("Delete Entry(s)…", "", selected.size()), this); - menu->addAction(delEntry); - connect(delEntry, &QAction::triggered, this, &ReportsWidgetBrowserStatistics::deleteSelectedEntries); + const auto deleteEntry = + new QAction(icons()->icon("entry-delete"), tr("Delete Entry(s)…", "", selected.size()), this); + menu->addAction(deleteEntry); + connect(deleteEntry, &QAction::triggered, this, &ReportsWidgetBrowserStatistics::deleteSelectedEntries); + + // Create the "delete plugin data" menu item + const auto deletePluginData = + new QAction(icons()->icon("entry-delete"), tr("Delete plugin data from Entry(s)…", "", selected.size()), this); + menu->addAction(deletePluginData); + connect(deletePluginData, + &QAction::triggered, + this, + &ReportsWidgetBrowserStatistics::deletePluginDataFromSelectedEntries); // Create the "exclude from reports" menu item const auto exclude = new QAction(icons()->icon("reports-exclude"), tr("Exclude from reports"), this); @@ -316,7 +332,7 @@ void ReportsWidgetBrowserStatistics::saveSettings() // Nothing to do - the tab is passive } -void ReportsWidgetBrowserStatistics::deleteSelectedEntries() +QList ReportsWidgetBrowserStatistics::getSelectedEntries() { QList selectedEntries; for (auto index : m_ui->browserStatisticsTableView->selectionModel()->selectedRows()) { @@ -326,8 +342,23 @@ void ReportsWidgetBrowserStatistics::deleteSelectedEntries() selectedEntries << entry; } } + return selectedEntries; +} +void ReportsWidgetBrowserStatistics::expireSelectedEntries() +{ + for (auto entry : getSelectedEntries()) { + entry->expireNow(); + } + + calculateBrowserStatistics(); +} + +void ReportsWidgetBrowserStatistics::deleteSelectedEntries() +{ + const auto& selectedEntries = getSelectedEntries(); bool permanent = !m_db->metadata()->recycleBinEnabled(); + if (GuiTools::confirmDeleteEntries(this, selectedEntries, permanent)) { GuiTools::deleteEntriesResolveReferences(this, selectedEntries, permanent); } @@ -335,6 +366,18 @@ void ReportsWidgetBrowserStatistics::deleteSelectedEntries() calculateBrowserStatistics(); } +void ReportsWidgetBrowserStatistics::deletePluginDataFromSelectedEntries() +{ + const auto& selectedEntries = getSelectedEntries(); + if (GuiTools::confirmDeletePluginData(this, selectedEntries)) { + for (auto& entry : selectedEntries) { + browserService()->removePluginData(entry); + } + } + + calculateBrowserStatistics(); +} + QMap ReportsWidgetBrowserStatistics::getBrowserConfigFromEntry(Entry* entry) const { QMap configList; @@ -370,3 +413,17 @@ QMap ReportsWidgetBrowserStatistics::getBrowserConfigFromE return configList; } + +QList ReportsWidgetBrowserStatistics::getSelectedEntries() const +{ + QList selectedEntries; + for (auto index : m_ui->browserStatisticsTableView->selectionModel()->selectedRows()) { + auto row = m_modelProxy->mapToSource(index).row(); + auto entry = m_rowToEntry[row].second; + if (entry) { + selectedEntries << entry; + } + } + + return selectedEntries; +} diff --git a/src/gui/reports/ReportsWidgetBrowserStatistics.h b/src/gui/reports/ReportsWidgetBrowserStatistics.h index 8aa6651ee..9b1cc7d60 100644 --- a/src/gui/reports/ReportsWidgetBrowserStatistics.h +++ b/src/gui/reports/ReportsWidgetBrowserStatistics.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -53,10 +53,14 @@ public slots: void calculateBrowserStatistics(); void emitEntryActivated(const QModelIndex& index); void customMenuRequested(QPoint); + QList getSelectedEntries(); + void expireSelectedEntries(); void deleteSelectedEntries(); + void deletePluginDataFromSelectedEntries(); private: void addStatisticsRow(bool hasUrls, bool hasSettings, Group*, Entry*, bool); + QList getSelectedEntries() const; QMap getBrowserConfigFromEntry(Entry* entry) const; QScopedPointer m_ui; diff --git a/src/gui/reports/ReportsWidgetBrowserStatistics.ui b/src/gui/reports/ReportsWidgetBrowserStatistics.ui index 4236da6e1..9f631bef6 100644 --- a/src/gui/reports/ReportsWidgetBrowserStatistics.ui +++ b/src/gui/reports/ReportsWidgetBrowserStatistics.ui @@ -10,7 +10,7 @@ 379 - + 0 @@ -54,24 +54,27 @@ - - - - Exclude expired entries from the report - - - - Show only entries which have URL set + Only show entries that have a URL + + + true - + - Show only entries which have browser settings in custom data + Only show entries that have been explicitly allowed or denied + + + + + + + Show expired entries @@ -91,9 +94,8 @@ browserStatisticsTableView - excludeExpired showEntriesWithUrlOnlyCheckBox - showConnectedOnlyCheckBox + showAllowDenyCheckBox diff --git a/src/gui/reports/ReportsWidgetHealthcheck.cpp b/src/gui/reports/ReportsWidgetHealthcheck.cpp index d23829031..f6151dda4 100644 --- a/src/gui/reports/ReportsWidgetHealthcheck.cpp +++ b/src/gui/reports/ReportsWidgetHealthcheck.cpp @@ -64,16 +64,16 @@ namespace return m_items; } - bool anyKnownBad() const + bool anyExcludedEntries() const { - return m_anyKnownBad; + return m_anyExcludedEntries; } private: QSharedPointer m_db; HealthChecker m_checker; QList> m_items; - bool m_anyKnownBad = false; + bool m_anyExcludedEntries = false; }; class ReportSortProxyModel : public QSortFilterProxyModel @@ -121,7 +121,7 @@ Health::Health(QSharedPointer db) // Evaluate this entry const auto item = QSharedPointer(new Item(group, entry, m_checker.evaluate(entry))); if (item->exclude) { - m_anyKnownBad = true; + m_anyExcludedEntries = true; } // Add entry if its password isn't at least "good" @@ -152,57 +152,59 @@ ReportsWidgetHealthcheck::ReportsWidgetHealthcheck(QWidget* parent) connect(m_ui->healthcheckTableView, SIGNAL(customContextMenuRequested(QPoint)), SLOT(customMenuRequested(QPoint))); connect(m_ui->healthcheckTableView, SIGNAL(doubleClicked(QModelIndex)), SLOT(emitEntryActivated(QModelIndex))); - connect(m_ui->showKnownBadCheckBox, SIGNAL(stateChanged(int)), this, SLOT(calculateHealth())); - connect(m_ui->excludeExpired, SIGNAL(stateChanged(int)), this, SLOT(calculateHealth())); + connect(m_ui->showExcluded, SIGNAL(stateChanged(int)), this, SLOT(calculateHealth())); + connect(m_ui->showExpired, SIGNAL(stateChanged(int)), this, SLOT(calculateHealth())); new QShortcut(Qt::Key_Delete, this, SLOT(deleteSelectedEntries())); } -ReportsWidgetHealthcheck::~ReportsWidgetHealthcheck() -{ -} +ReportsWidgetHealthcheck::~ReportsWidgetHealthcheck() = default; void ReportsWidgetHealthcheck::addHealthRow(QSharedPointer health, Group* group, Entry* entry, - bool knownBad) + bool excluded) { - QString descr, tip; + QString tip; + QString iconName = "lock-question"; QColor qualityColor; StateColorPalette statePalette; const auto quality = health->quality(); switch (quality) { case PasswordHealth::Quality::Bad: - descr = tr("Bad", "Password quality"); tip = tr("Bad — password must be changed"); + iconName = "lock-open-alert"; qualityColor = statePalette.color(StateColorPalette::HealthCritical); break; - case PasswordHealth::Quality::Poor: - descr = tr("Poor", "Password quality"); tip = tr("Poor — password should be changed"); + iconName = "lock-open-alert"; qualityColor = statePalette.color(StateColorPalette::HealthBad); break; case PasswordHealth::Quality::Weak: - descr = tr("Weak", "Password quality"); tip = tr("Weak — consider changing the password"); + iconName = "lock-open"; qualityColor = statePalette.color(StateColorPalette::HealthWeak); break; case PasswordHealth::Quality::Good: case PasswordHealth::Quality::Excellent: + iconName = "lock"; qualityColor = statePalette.color(StateColorPalette::HealthOk); break; } auto title = entry->title(); - if (knownBad) { + if (excluded) { title.append(tr(" (Excluded)")); } + if (entry->isExpired()) { + title.append(tr(" (Expired)")); + } auto row = QList(); - row << new QStandardItem(descr); + row << new QStandardItem(Icons::instance()->icon(iconName, true, qualityColor), ""); row << new QStandardItem(Icons::entryIconPixmap(entry), title); row << new QStandardItem(Icons::groupIconPixmap(group), group->hierarchy().join("/")); row << new QStandardItem(QString::number(health->score())); @@ -213,11 +215,10 @@ void ReportsWidgetHealthcheck::addHealthRow(QSharedPointer healt // invisible, it's just for screen readers etc. QBrush brush(qualityColor); row[0]->setForeground(brush); - row[0]->setBackground(brush); // Set tooltips row[0]->setToolTip(tip); - if (knownBad) { + if (excluded) { row[1]->setToolTip(tr("This entry is being excluded from reports")); } row[4]->setToolTip(health->scoreDetails()); @@ -257,15 +258,12 @@ void ReportsWidgetHealthcheck::calculateHealth() // Perform the health check const QScopedPointer health(AsyncTask::runAndWaitForFuture([this] { return new Health(m_db); })); - // Display entries that are marked as "known bad"? - const auto showExcluded = m_ui->showKnownBadCheckBox->isChecked(); - // Display the entries m_rowToEntry.clear(); for (const auto& item : health->items()) { - auto excluded = item->exclude || (item->entry->isExpired() && m_ui->excludeExpired->isChecked()); - if (excluded && !showExcluded) { - // Exclude this entry from the report + // Check if the entry should be displayed + if ((!m_ui->showExcluded->isChecked() && item->exclude) + || (!m_ui->showExpired->isChecked() && item->entry->isExpired())) { continue; } @@ -285,13 +283,8 @@ void ReportsWidgetHealthcheck::calculateHealth() m_ui->healthcheckTableView->resizeColumnsToContents(); m_ui->healthcheckTableView->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Fixed); - // Show the "show known bad entries" checkbox if there's any known - // bad entry in the database. - if (health->anyKnownBad()) { - m_ui->showKnownBadCheckBox->show(); - } else { - m_ui->showKnownBadCheckBox->hide(); - } + // Only show the "show excluded" checkbox if there are any excluded entries in the database + m_ui->showExcluded->setVisible(health->anyExcludedEntries()); } void ReportsWidgetHealthcheck::emitEntryActivated(const QModelIndex& index) @@ -330,6 +323,11 @@ void ReportsWidgetHealthcheck::customMenuRequested(QPoint pos) }); } + // Create the "Expire entry" menu item + const auto expEntry = new QAction(icons()->icon("entry-expire"), tr("Expire Entry(s)…", "", selected.size()), this); + menu->addAction(expEntry); + connect(expEntry, &QAction::triggered, this, &ReportsWidgetHealthcheck::expireSelectedEntries); + // Create the "delete entry" menu item const auto delEntry = new QAction(icons()->icon("entry-delete"), tr("Delete Entry(s)…", "", selected.size()), this); menu->addAction(delEntry); @@ -372,7 +370,7 @@ void ReportsWidgetHealthcheck::saveSettings() // nothing to do - the tab is passive } -void ReportsWidgetHealthcheck::deleteSelectedEntries() +QList ReportsWidgetHealthcheck::getSelectedEntries() { QList selectedEntries; for (auto index : m_ui->healthcheckTableView->selectionModel()->selectedRows()) { @@ -382,7 +380,21 @@ void ReportsWidgetHealthcheck::deleteSelectedEntries() selectedEntries << entry; } } + return selectedEntries; +} +void ReportsWidgetHealthcheck::expireSelectedEntries() +{ + for (auto entry : getSelectedEntries()) { + entry->expireNow(); + } + + calculateHealth(); +} + +void ReportsWidgetHealthcheck::deleteSelectedEntries() +{ + QList selectedEntries = getSelectedEntries(); bool permanent = !m_db->metadata()->recycleBinEnabled(); if (GuiTools::confirmDeleteEntries(this, selectedEntries, permanent)) { GuiTools::deleteEntriesResolveReferences(this, selectedEntries, permanent); diff --git a/src/gui/reports/ReportsWidgetHealthcheck.h b/src/gui/reports/ReportsWidgetHealthcheck.h index 2046326a1..9a46b36b1 100644 --- a/src/gui/reports/ReportsWidgetHealthcheck.h +++ b/src/gui/reports/ReportsWidgetHealthcheck.h @@ -53,10 +53,12 @@ public slots: void calculateHealth(); void emitEntryActivated(const QModelIndex& index); void customMenuRequested(QPoint); + QList getSelectedEntries(); + void expireSelectedEntries(); void deleteSelectedEntries(); private: - void addHealthRow(QSharedPointer, Group*, Entry*, bool knownBad); + void addHealthRow(QSharedPointer, Group*, Entry*, bool excluded); QScopedPointer m_ui; diff --git a/src/gui/reports/ReportsWidgetHealthcheck.ui b/src/gui/reports/ReportsWidgetHealthcheck.ui index e2ed44e1b..5bc2aa118 100644 --- a/src/gui/reports/ReportsWidgetHealthcheck.ui +++ b/src/gui/reports/ReportsWidgetHealthcheck.ui @@ -55,16 +55,16 @@ - + - Exclude expired entries from the report + Show expired entries - + - Also show entries that have been excluded from reports + Show entries that have been excluded from reports @@ -84,7 +84,7 @@ healthcheckTableView - showKnownBadCheckBox + showExcluded diff --git a/src/gui/reports/ReportsWidgetHibp.cpp b/src/gui/reports/ReportsWidgetHibp.cpp index 86be3d92f..a559208aa 100644 --- a/src/gui/reports/ReportsWidgetHibp.cpp +++ b/src/gui/reports/ReportsWidgetHibp.cpp @@ -29,6 +29,8 @@ #include #include +#include + namespace { class ReportSortProxyModel : public QSortFilterProxyModel @@ -79,9 +81,7 @@ ReportsWidgetHibp::ReportsWidgetHibp(QWidget* parent) new QShortcut(Qt::Key_Delete, this, SLOT(deleteSelectedEntries())); } -ReportsWidgetHibp::~ReportsWidgetHibp() -{ -} +ReportsWidgetHibp::~ReportsWidgetHibp() = default; void ReportsWidgetHibp::loadSettings(QSharedPointer db) { @@ -133,8 +133,8 @@ void ReportsWidgetHibp::makeHibpTable() } } - // Sort decending by the number the password has been exposed - qSort(items.begin(), items.end(), [](QPair& lhs, QPair& rhs) { + // Sort descending by the number the password has been exposed + std::sort(items.begin(), items.end(), [](QPair& lhs, QPair& rhs) { return lhs.second > rhs.second; }); @@ -374,6 +374,11 @@ void ReportsWidgetHibp::customMenuRequested(QPoint pos) }); } + // Create the "Expire entry" menu item + const auto expEntry = new QAction(icons()->icon("entry-expire"), tr("Expire Entry(s)…", "", selected.size()), this); + menu->addAction(expEntry); + connect(expEntry, &QAction::triggered, this, &ReportsWidgetHibp::expireSelectedEntries); + // Create the "delete entry" menu item const auto delEntry = new QAction(icons()->icon("entry-delete"), tr("Delete Entry(s)…", "", selected.size()), this); menu->addAction(delEntry); @@ -411,7 +416,7 @@ void ReportsWidgetHibp::customMenuRequested(QPoint pos) menu->popup(m_ui->hibpTableView->viewport()->mapToGlobal(pos)); } -void ReportsWidgetHibp::deleteSelectedEntries() +QList ReportsWidgetHibp::getSelectedEntries() { QList selectedEntries; for (auto index : m_ui->hibpTableView->selectionModel()->selectedRows()) { @@ -421,7 +426,21 @@ void ReportsWidgetHibp::deleteSelectedEntries() selectedEntries << entry; } } + return selectedEntries; +} +void ReportsWidgetHibp::expireSelectedEntries() +{ + for (auto entry : getSelectedEntries()) { + entry->expireNow(); + } + + makeHibpTable(); +} + +void ReportsWidgetHibp::deleteSelectedEntries() +{ + QList selectedEntries = getSelectedEntries(); bool permanent = !m_db->metadata()->recycleBinEnabled(); if (GuiTools::confirmDeleteEntries(this, selectedEntries, permanent)) { GuiTools::deleteEntriesResolveReferences(this, selectedEntries, permanent); diff --git a/src/gui/reports/ReportsWidgetHibp.h b/src/gui/reports/ReportsWidgetHibp.h index 2955358ad..8e0d5e47b 100644 --- a/src/gui/reports/ReportsWidgetHibp.h +++ b/src/gui/reports/ReportsWidgetHibp.h @@ -24,7 +24,7 @@ #include #ifdef WITH_XC_NETWORKING -#include "core/HibpDownloader.h" +#include "networking/HibpDownloader.h" #endif class Database; @@ -43,7 +43,7 @@ class ReportsWidgetHibp : public QWidget Q_OBJECT public: explicit ReportsWidgetHibp(QWidget* parent = nullptr); - ~ReportsWidgetHibp(); + ~ReportsWidgetHibp() override; void loadSettings(QSharedPointer db); void saveSettings(); @@ -58,6 +58,8 @@ public slots: void fetchFailed(const QString& error); void makeHibpTable(); void customMenuRequested(QPoint); + QList getSelectedEntries(); + void expireSelectedEntries(); void deleteSelectedEntries(); private: diff --git a/src/gui/reports/ReportsWidgetPasskeys.cpp b/src/gui/reports/ReportsWidgetPasskeys.cpp new file mode 100644 index 000000000..831f4c721 --- /dev/null +++ b/src/gui/reports/ReportsWidgetPasskeys.cpp @@ -0,0 +1,307 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "ReportsWidgetPasskeys.h" +#include "ui_ReportsWidgetPasskeys.h" + +#include "browser/BrowserPasskeys.h" +#include "browser/PasskeyUtils.h" +#include "core/AsyncTask.h" +#include "core/EntryAttributes.h" +#include "core/Group.h" +#include "core/Metadata.h" +#include "gui/GuiTools.h" +#include "gui/Icons.h" +#include "gui/MessageBox.h" +#include "gui/passkeys/PasskeyExporter.h" +#include "gui/passkeys/PasskeyImporter.h" +#include "gui/styles/StateColorPalette.h" + +#include +#include +#include +#include + +namespace +{ + class PasskeyList + { + public: + struct Item + { + QPointer group; + QPointer entry; + + Item(Group* g, Entry* e) + : group(g) + , entry(e) + { + } + }; + + explicit PasskeyList(const QSharedPointer&); + + const QList>& items() const + { + return m_items; + } + + private: + QSharedPointer m_db; + QList> m_items; + }; +} // namespace + +PasskeyList::PasskeyList(const QSharedPointer& db) + : m_db(db) +{ + for (auto group : db->rootGroup()->groupsRecursive(true)) { + // Skip recycle bin + if (group->isRecycled()) { + continue; + } + + for (auto entry : group->entries()) { + if (entry->isRecycled() || !entry->attributes()->hasKey(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM)) { + continue; + } + + const auto item = QSharedPointer(new Item(group, entry)); + m_items.append(item); + } + } +} + +ReportsWidgetPasskeys::ReportsWidgetPasskeys(QWidget* parent) + : QWidget(parent) + , m_ui(new Ui::ReportsWidgetPasskeys()) + , m_referencesModel(new QStandardItemModel(this)) + , m_modelProxy(new QSortFilterProxyModel(this)) +{ + m_ui->setupUi(this); + + m_modelProxy->setSourceModel(m_referencesModel.data()); + m_modelProxy->setSortLocaleAware(true); + m_ui->passkeysTableView->setModel(m_modelProxy.data()); + m_ui->passkeysTableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Interactive); + m_ui->passkeysTableView->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + + connect(m_ui->passkeysTableView, SIGNAL(customContextMenuRequested(QPoint)), SLOT(customMenuRequested(QPoint))); + connect(m_ui->passkeysTableView, SIGNAL(doubleClicked(QModelIndex)), SLOT(emitEntryActivated(QModelIndex))); + connect(m_ui->passkeysTableView->selectionModel(), + SIGNAL(selectionChanged(QItemSelection, QItemSelection)), + this, + SLOT(selectionChanged())); + connect(m_ui->showExpired, SIGNAL(stateChanged(int)), this, SLOT(updateEntries())); + connect(m_ui->exportButton, SIGNAL(clicked(bool)), this, SLOT(exportPasskey())); + connect(m_ui->importButton, SIGNAL(clicked(bool)), this, SLOT(importPasskey())); + + m_ui->exportButton->setEnabled(false); + + new QShortcut(Qt::Key_Delete, this, SLOT(deleteSelectedEntries())); +} + +ReportsWidgetPasskeys::~ReportsWidgetPasskeys() +{ +} + +void ReportsWidgetPasskeys::addPasskeyRow(Group* group, Entry* entry) +{ + StateColorPalette statePalette; + + auto urlList = entry->getAllUrls(); + auto urlToolTip = tr("List of entry URLs"); + + auto title = entry->title(); + if (entry->isExpired()) { + title.append(tr(" (Expired)")); + } + + auto row = QList(); + row << new QStandardItem(Icons::entryIconPixmap(entry), title); + row << new QStandardItem(Icons::groupIconPixmap(group), group->hierarchy().join("/")); + row << new QStandardItem(passkeyUtils()->getUsernameFromEntry(entry)); + row << new QStandardItem(entry->attributes()->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY)); + row << new QStandardItem(urlList.join('\n')); + + // Set tooltips + row[2]->setToolTip(urlToolTip); + + // Store entry pointer per table row (used in double click handler) + m_referencesModel->appendRow(row); + m_rowToEntry.append({group, entry}); +} + +void ReportsWidgetPasskeys::loadSettings(QSharedPointer db) +{ + m_db = std::move(db); + m_entriesUpdated = false; + m_referencesModel->clear(); + m_rowToEntry.clear(); + + auto row = QList(); + row << new QStandardItem(tr("Please wait, list of entries with passkeys is being updated…")); + m_referencesModel->appendRow(row); +} + +void ReportsWidgetPasskeys::showEvent(QShowEvent* event) +{ + QWidget::showEvent(event); + + if (!m_entriesUpdated) { + // Perform stats calculation on next event loop to allow widget to appear + m_entriesUpdated = true; + QTimer::singleShot(0, this, SLOT(updateEntries())); + } +} + +void ReportsWidgetPasskeys::updateEntries() +{ + m_referencesModel->clear(); + + // Perform the statistics check + const QScopedPointer browserStatistics( + AsyncTask::runAndWaitForFuture([this] { return new PasskeyList(m_db); })); + + // Display the entries + m_rowToEntry.clear(); + for (const auto& item : browserStatistics->items()) { + // Exclude expired entries from report if not requested + if (!m_ui->showExpired->isChecked() && item->entry->isExpired()) { + continue; + } + + addPasskeyRow(item->group, item->entry); + } + + // Set the table header + if (m_referencesModel->rowCount() == 0) { + m_referencesModel->setHorizontalHeaderLabels(QStringList() << tr("No entries with passkeys.")); + } else { + m_referencesModel->setHorizontalHeaderLabels(QStringList() << tr("Title") << tr("Path") << tr("Username") + << tr("Relying Party") << tr("URLs")); + m_ui->passkeysTableView->sortByColumn(0, Qt::AscendingOrder); + } + + m_ui->passkeysTableView->resizeColumnsToContents(); +} + +void ReportsWidgetPasskeys::emitEntryActivated(const QModelIndex& index) +{ + if (!index.isValid()) { + return; + } + + auto mappedIndex = m_modelProxy->mapToSource(index); + const auto row = m_rowToEntry[mappedIndex.row()]; + const auto group = row.first; + const auto entry = row.second; + + if (group && entry) { + emit entryActivated(entry); + } +} + +void ReportsWidgetPasskeys::customMenuRequested(QPoint pos) +{ + auto selected = m_ui->passkeysTableView->selectionModel()->selectedRows(); + if (selected.isEmpty()) { + return; + } + + // Create the context menu + const auto menu = new QMenu(this); + + // Create the "edit entry" menu item (only if 1 row is selected) + if (selected.size() == 1) { + const auto edit = new QAction(icons()->icon("entry-edit"), tr("Edit Entry…"), this); + menu->addAction(edit); + connect(edit, &QAction::triggered, edit, [this, selected] { + auto row = m_modelProxy->mapToSource(selected[0]).row(); + auto entry = m_rowToEntry[row].second; + emit entryActivated(entry); + }); + } + + // Create the "delete entry" menu item + const auto delEntry = new QAction(icons()->icon("entry-delete"), tr("Delete Entry(s)…", "", selected.size()), this); + menu->addAction(delEntry); + connect(delEntry, &QAction::triggered, this, &ReportsWidgetPasskeys::deleteSelectedEntries); + + // Show the context menu + menu->popup(m_ui->passkeysTableView->viewport()->mapToGlobal(pos)); +} + +void ReportsWidgetPasskeys::saveSettings() +{ + // Nothing to do - the tab is passive +} + +void ReportsWidgetPasskeys::deleteSelectedEntries() +{ + auto selectedEntries = getSelectedEntries(); + bool permanent = !m_db->metadata()->recycleBinEnabled(); + + if (GuiTools::confirmDeleteEntries(this, selectedEntries, permanent)) { + GuiTools::deleteEntriesResolveReferences(this, selectedEntries, permanent); + } + + updateEntries(); +} + +QList ReportsWidgetPasskeys::getSelectedEntries() +{ + QList selectedEntries; + for (auto index : m_ui->passkeysTableView->selectionModel()->selectedRows()) { + auto row = m_modelProxy->mapToSource(index).row(); + auto entry = m_rowToEntry[row].second; + if (entry) { + selectedEntries << entry; + } + } + + return selectedEntries; +} + +void ReportsWidgetPasskeys::selectionChanged() +{ + m_ui->exportButton->setEnabled(!m_ui->passkeysTableView->selectionModel()->selectedIndexes().isEmpty()); +} + +void ReportsWidgetPasskeys::importPasskey() +{ + PasskeyImporter passkeyImporter(this); + passkeyImporter.importPasskey(m_db); + + updateEntries(); +} + +void ReportsWidgetPasskeys::exportPasskey() +{ + auto answer = MessageBox::question(this, + tr("Export Confirmation"), + tr("The passkey file will be vulnerable to theft and unauthorized use, if left " + "unsecured. Are you sure you want to continue?"), + MessageBox::Yes | MessageBox::No, + MessageBox::No); + if (answer != MessageBox::Yes) { + return; + } + + PasskeyExporter passkeyExporter(this); + passkeyExporter.showExportDialog(getSelectedEntries()); +} diff --git a/src/gui/reports/ReportsWidgetPasskeys.h b/src/gui/reports/ReportsWidgetPasskeys.h new file mode 100644 index 000000000..3d0593350 --- /dev/null +++ b/src/gui/reports/ReportsWidgetPasskeys.h @@ -0,0 +1,76 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_REPORTSWIDGETPASSKEYS_H +#define KEEPASSXC_REPORTSWIDGETPASSKEYS_H + +#include "gui/entry/EntryModel.h" +#include + +class Database; +class Entry; +class Group; +class PasswordHealth; +class QSortFilterProxyModel; +class QStandardItemModel; + +namespace Ui +{ + class ReportsWidgetPasskeys; +} + +class ReportsWidgetPasskeys : public QWidget +{ + Q_OBJECT +public: + explicit ReportsWidgetPasskeys(QWidget* parent = nullptr); + ~ReportsWidgetPasskeys() override; + + void loadSettings(QSharedPointer db); + void saveSettings(); + +protected: + void showEvent(QShowEvent* event) override; + +signals: + void entryActivated(Entry*); + +public slots: + void updateEntries(); + void emitEntryActivated(const QModelIndex& index); + void customMenuRequested(QPoint); + void deleteSelectedEntries(); + +private slots: + void selectionChanged(); + void importPasskey(); + void exportPasskey(); + +private: + void addPasskeyRow(Group*, Entry*); + QList getSelectedEntries(); + + QScopedPointer m_ui; + + bool m_entriesUpdated = false; + QScopedPointer m_referencesModel; + QScopedPointer m_modelProxy; + QSharedPointer m_db; + QList> m_rowToEntry; +}; + +#endif // KEEPASSXC_REPORTSWIDGETPASSKEYS_H diff --git a/src/gui/reports/ReportsWidgetPasskeys.ui b/src/gui/reports/ReportsWidgetPasskeys.ui new file mode 100644 index 000000000..c1e321fc8 --- /dev/null +++ b/src/gui/reports/ReportsWidgetPasskeys.ui @@ -0,0 +1,102 @@ + + + ReportsWidgetPasskeys + + + + 0 + 0 + 505 + 379 + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Qt::CustomContextMenu + + + QAbstractScrollArea::AdjustToContents + + + QAbstractItemView::NoEditTriggers + + + false + + + true + + + QAbstractItemView::SelectRows + + + Qt::ElideRight + + + true + + + true + + + false + + + + + + + Show expired entries + + + + + + + + + Import + + + + + + + Export + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + diff --git a/src/gui/reports/ReportsWidgetStatistics.cpp b/src/gui/reports/ReportsWidgetStatistics.cpp index 280ed4de5..2f1759cd7 100644 --- a/src/gui/reports/ReportsWidgetStatistics.cpp +++ b/src/gui/reports/ReportsWidgetStatistics.cpp @@ -19,6 +19,7 @@ #include "ui_ReportsWidgetStatistics.h" #include "core/AsyncTask.h" +#include "core/Clock.h" #include "core/DatabaseStats.h" #include "core/Group.h" #include "core/Metadata.h" @@ -41,9 +42,7 @@ ReportsWidgetStatistics::ReportsWidgetStatistics(QWidget* parent) m_ui->statisticsTableView->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); } -ReportsWidgetStatistics::~ReportsWidgetStatistics() -{ -} +ReportsWidgetStatistics::~ReportsWidgetStatistics() = default; void ReportsWidgetStatistics::addStatsRow(QString name, QString value, bool bad, QString badMsg) { @@ -88,9 +87,8 @@ void ReportsWidgetStatistics::calculateStats() addStatsRow(tr("Database name"), m_db->metadata()->name()); addStatsRow(tr("Description"), m_db->metadata()->description()); addStatsRow(tr("Location"), m_db->filePath()); - addStatsRow(tr("Database created"), - m_db->rootGroup()->timeInfo().creationTime().toString(Qt::DefaultLocaleShortDate)); - addStatsRow(tr("Last saved"), stats->modified.toString(Qt::DefaultLocaleShortDate)); + addStatsRow(tr("Database created"), Clock::toString(m_db->rootGroup()->timeInfo().creationTime())); + addStatsRow(tr("Last saved"), Clock::toString(stats->modified)); addStatsRow(tr("Unsaved changes"), m_db->isModified() ? tr("yes") : tr("no"), m_db->isModified(), diff --git a/src/gui/reports/ReportsWidgetStatistics.h b/src/gui/reports/ReportsWidgetStatistics.h index cc11a75f5..02931891c 100644 --- a/src/gui/reports/ReportsWidgetStatistics.h +++ b/src/gui/reports/ReportsWidgetStatistics.h @@ -34,7 +34,7 @@ class ReportsWidgetStatistics : public QWidget Q_OBJECT public: explicit ReportsWidgetStatistics(QWidget* parent = nullptr); - ~ReportsWidgetStatistics(); + ~ReportsWidgetStatistics() override; void loadSettings(QSharedPointer db); void saveSettings(); diff --git a/src/gui/settings/SettingsWidget.cpp b/src/gui/settings/SettingsWidget.cpp deleted file mode 100644 index 5053bf983..000000000 --- a/src/gui/settings/SettingsWidget.cpp +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 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 . - */ - -#include "SettingsWidget.h" - -SettingsWidget::SettingsWidget(QWidget* parent) - : QWidget(parent) -{ -} - -SettingsWidget::~SettingsWidget() -{ -} - -/** - * Switch between simple mode (the default) and advanced mode. - * Subclasses which implement an advanced mode, need to override this method, - * \link advancedMode() and \link hasAdvancedMode. - * - * When overriding this method, make sure to also emit the - * \link advancedModeChanged() signal. - * - * @param advanced whether advanced mode is enabled - */ -void SettingsWidget::setAdvancedMode(bool advanced) -{ - if (hasAdvancedMode() && advanced != advancedMode()) { - m_advancedMode = advanced; - emit advancedModeChanged(advanced); - } -} - -/** - * @return true if advanced mode is on (default: false) - */ -bool SettingsWidget::advancedMode() const -{ - return m_advancedMode; -} diff --git a/src/gui/styles/base/BaseStyle.cpp b/src/gui/styles/base/BaseStyle.cpp index ec3fd9b8a..8fa8f64bb 100644 --- a/src/gui/styles/base/BaseStyle.cpp +++ b/src/gui/styles/base/BaseStyle.cpp @@ -41,10 +41,8 @@ #ifdef Q_OS_MACOS #include -#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0) #include #endif -#endif #include "gui/Icons.h" @@ -52,15 +50,6 @@ QT_BEGIN_NAMESPACE Q_GUI_EXPORT int qt_defaultDpiX(); QT_END_NAMESPACE -// Redefine Q_FALLTHROUGH for older Qt versions -#ifndef Q_FALLTHROUGH -#if (defined(Q_CC_GNU) && Q_CC_GNU >= 700) && !defined(Q_CC_INTEL) -#define Q_FALLTHROUGH() __attribute__((fallthrough)) -#else -#define Q_FALLTHROUGH() (void)0 -#endif -#endif - namespace Phantom { namespace @@ -593,7 +582,7 @@ namespace Phantom } else { // Remove the oldest guy from the cache. Remember that because we may // re-enter QStyle functions multiple times when drawing or calculating - // something, we may have to load several swaitches derived from + // something, we may have to load several switches derived from // different QPalettes on different stack frames at the same time. But as // an extra cost-savings measure, we'll check and see if something else // has a reference to the removed guy. If there aren't any references to @@ -773,9 +762,7 @@ namespace Phantom static MenuItemMetrics ofFontHeight(int fontHeight); private: - MenuItemMetrics() - { - } + MenuItemMetrics() = default; }; MenuItemMetrics MenuItemMetrics::ofFontHeight(int fontHeight) @@ -788,7 +775,7 @@ namespace Phantom m.rightMarginForArrow = static_cast(fontHeight * MenuItem_RightMarginForArrowFontRatio); m.topMargin = static_cast(fontHeight * MenuItem_VerticalMarginsFontRatio); m.bottomMargin = static_cast(fontHeight * MenuItem_VerticalMarginsFontRatio); - int checkVMargin = static_cast(fontHeight * MenuItem_CheckMarkVerticalInsetFontRatio); + auto checkVMargin = static_cast(fontHeight * MenuItem_CheckMarkVerticalInsetFontRatio); int checkHeight = fontHeight - checkVMargin * 2; if (checkHeight < 0) checkHeight = 0; @@ -817,7 +804,7 @@ namespace Phantom menuItemCheckRect(const MenuItemMetrics& metrics, Qt::LayoutDirection direction, QRect itemRect, bool hasArrow) { QRect r = menuItemContentRect(metrics, itemRect, hasArrow); - int checkVMargin = static_cast(metrics.fontHeight * MenuItem_CheckMarkVerticalInsetFontRatio); + auto checkVMargin = static_cast(metrics.fontHeight * MenuItem_CheckMarkVerticalInsetFontRatio); if (checkVMargin < 0) checkVMargin = 0; r.setSize(QSize(metrics.checkWidth, metrics.fontHeight)); @@ -1035,15 +1022,6 @@ namespace Phantom painter->restore(); } - int fontMetricsWidth(const QFontMetrics& fontMetrics, const QString& text) - { -#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0) - return fontMetrics.width(text, text.size(), Qt::TextBypassShaping); -#else - return fontMetrics.horizontalAdvance(text); -#endif - } - // This always draws the arrow with the correct aspect ratio, even if the // provided bounding rect is non-square. The base edge of the triangle is // snapped to a whole pixel to avoid anti-aliasing making it look soft. @@ -1051,7 +1029,7 @@ namespace Phantom // Expected time (release): 5usecs for regular-sized arrows Q_NEVER_INLINE void drawArrow(QPainter* p, QRect rect, Qt::ArrowType arrowDirection, const QBrush& brush) { - const qreal ArrowBaseRatio = 0.70; + const qreal ArrowBaseRatio = 1.0; qreal irx, iry, irw, irh; QRectF(rect).getRect(&irx, &iry, &irw, &irh); if (irw < 1.0 || irh < 1.0) @@ -1156,11 +1134,11 @@ namespace Phantom points[0] = QPointF(0.0, 0.55); points[1] = QPointF(0.4, 1.0); points[2] = QPointF(1.0, 0); - for (int i = 0; i < 3; ++i) { - QPointF pnt = points[i]; + for (auto& point : points) { + QPointF pnt = point; pnt.setX(pnt.x() * dimx + x); pnt.setY(pnt.y() * dimy + y); - points[i] = pnt; + point = pnt; } scratchPen.setBrush(swatch.brush(color)); scratchPen.setCapStyle(Qt::RoundCap); @@ -1478,13 +1456,13 @@ void BaseStyle::drawPrimitive(PrimitiveElement elem, } case PE_FrameDockWidget: { painter->save(); - QColor softshadow = option->palette.background().color().darker(120); + QColor softshadow = option->palette.window().color().darker(120); QRect r = option->rect; painter->setPen(softshadow); painter->drawRect(r.adjusted(0, 0, -1, -1)); painter->setPen(QPen(option->palette.light(), 1)); painter->drawLine(QPoint(r.left() + 1, r.top() + 1), QPoint(r.left() + 1, r.bottom() - 1)); - painter->setPen(QPen(option->palette.background().color().darker(120))); + painter->setPen(QPen(option->palette.window().color().darker(120))); painter->drawLine(QPoint(r.left() + 1, r.bottom() - 1), QPoint(r.right() - 2, r.bottom() - 1)); painter->drawLine(QPoint(r.right() - 1, r.top() + 1), QPoint(r.right() - 1, r.bottom() - 1)); painter->restore(); @@ -1671,7 +1649,7 @@ void BaseStyle::drawPrimitive(PrimitiveElement elem, if (arrow == Qt::DownArrow && !qstyleoption_cast(option) && widget) { auto tbutton = qobject_cast(widget); if (tbutton && tbutton->popupMode() != QToolButton::InstantPopup && tbutton->defaultAction()) { - int dim = static_cast(qMin(rw, rh) * 0.25); + auto dim = static_cast(qMin(rw, rh) * 0.25); aw -= dim; ah -= dim; // We have another hack in PE_IndicatorButtonDropDown where we shift @@ -1736,12 +1714,12 @@ void BaseStyle::drawPrimitive(PrimitiveElement elem, // TODO replace with new code const int margin = 6; const int offset = r.height() / 2; - painter->setPen(QPen(option->palette.background().color().darker(110))); + painter->setPen(QPen(option->palette.window().color().darker(110))); painter->drawLine(r.topLeft().x() + margin, r.topLeft().y() + offset, r.topRight().x() - margin, r.topRight().y() + offset); - painter->setPen(QPen(option->palette.background().color().lighter(110))); + painter->setPen(QPen(option->palette.window().color().lighter(110))); painter->drawLine(r.topLeft().x() + margin, r.topLeft().y() + offset + 1, r.topRight().x() - margin, @@ -1938,7 +1916,7 @@ void BaseStyle::drawPrimitive(PrimitiveElement elem, auto fropt = qstyleoption_cast(option); if (!fropt) break; - //### check for d->alt_down + // ### check for d->alt_down if (!(fropt->state & State_KeyboardFocusChange)) return; if (fropt->state & State_Item) { @@ -2472,7 +2450,7 @@ void BaseStyle::drawControl(ControlElement element, QPixmap pixmap = header->icon.pixmap(window, QSize(iconExtent, iconExtent), (header->state & State_Enabled) ? QIcon::Normal : QIcon::Disabled); - int pixw = static_cast(pixmap.width() / pixmap.devicePixelRatio()); + auto pixw = static_cast(pixmap.width() / pixmap.devicePixelRatio()); QRect aligned = alignedRect( header->direction, QFlag(header->iconAlignment), pixmap.size() / pixmap.devicePixelRatio(), rect); QRect inter = aligned.intersected(rect); @@ -2658,7 +2636,21 @@ void BaseStyle::drawControl(ControlElement element, } break; } + case CE_MenuTearoff: { + if (option->state & State_Selected) { + painter->fillRect(option->rect, option->palette.brush(QPalette::Highlight)); + painter->setPen(QPen(option->palette.highlightedText().color(), 1, Qt::DashLine)); + } else { + painter->fillRect(option->rect, option->palette.brush(QPalette::Button)); + painter->setPen(QPen(option->palette.buttonText().color(), 1, Qt::DashLine)); + } + painter->drawLine(option->rect.x() + 2, + option->rect.y() + option->rect.height() / 2, + option->rect.x() + option->rect.width() - 4, + option->rect.y() + option->rect.height() / 2); + break; + } case CE_MenuItem: { auto menuItem = qstyleoption_cast(option); if (!menuItem) @@ -2745,8 +2737,8 @@ void BaseStyle::drawControl(ControlElement element, } QWindow* window = widget ? widget->windowHandle() : nullptr; QPixmap pixmap = menuItem->icon.pixmap(window, iconSize, mode, state); - const int pixw = static_cast(pixmap.width() / pixmap.devicePixelRatio()); - const int pixh = static_cast(pixmap.height() / pixmap.devicePixelRatio()); + const auto pixw = static_cast(pixmap.width() / pixmap.devicePixelRatio()); + const auto pixh = static_cast(pixmap.height() / pixmap.devicePixelRatio()); QRect pixmapRect = QStyle::alignedRect(option->direction, Qt::AlignCenter, QSize(pixw, pixh), iconRect); painter->drawPixmap(pixmapRect.topLeft(), pixmap); } @@ -2772,7 +2764,7 @@ void BaseStyle::drawControl(ControlElement element, // that when it is resolved against the device, this font will win. This // is mainly to handle cases where someone sets the font on the window // and then the combo inherits it and passes it onward. At that point the - // resolve mask is very, very weak. This makes it stonger. + // resolve mask is very, very weak. This makes it stronger. #if 0 QFont font = menuItem->font; font.setPointSizeF(QFontInfo(menuItem->font).pointSizeF()); @@ -2883,8 +2875,8 @@ void BaseStyle::drawControl(ControlElement element, QIcon::State state = button->state & State_On ? QIcon::On : QIcon::Off; auto window = widget ? widget->window()->windowHandle() : nullptr; QPixmap pixmap = button->icon.pixmap(window, button->iconSize, mode, state); - int pixmapWidth = static_cast(pixmap.width() / pixmap.devicePixelRatio()); - int pixmapHeight = static_cast(pixmap.height() / pixmap.devicePixelRatio()); + auto pixmapWidth = static_cast(pixmap.width() / pixmap.devicePixelRatio()); + auto pixmapHeight = static_cast(pixmap.height() / pixmap.devicePixelRatio()); int labelWidth = pixmapWidth; int labelHeight = pixmapHeight; // 4 is hardcoded in QPushButton::sizeHint() @@ -3270,13 +3262,13 @@ void BaseStyle::drawComplexControl(ComplexControl control, QColor outline = option->palette.dark().color(); QColor titleBarFrameBorder(active ? highlight.darker(180) : outline.darker(110)); - QColor titleBarHighlight(active ? highlight.lighter(120) : palette.background().color().lighter(120)); + QColor titleBarHighlight(active ? highlight.lighter(120) : palette.window().color().lighter(120)); QColor textColor(active ? 0xffffff : 0xff000000); QColor textAlphaColor(active ? 0xffffff : 0xff000000); { // Fill title - QColor titlebarColor = QColor(active ? highlight : palette.background().color()); + auto titlebarColor = QColor(active ? highlight : palette.window().color()); painter->fillRect(option->rect.adjusted(1, 1, -1, 0), titlebarColor); // Frame and rounded corners painter->setPen(titleBarFrameBorder); @@ -3888,11 +3880,9 @@ int BaseStyle::pixelMetric(PixelMetric metric, const QStyleOption* option, const case PM_DockWidgetTitleBarButtonMargin: val = 2; break; -#if (QT_VERSION >= QT_VERSION_CHECK(5, 8, 0)) case PM_TitleBarButtonSize: val = 19; break; -#endif case PM_MaximumDragDistance: return -1; // Do not dpi-scale because the value is magic case PM_TabCloseIndicatorWidth: @@ -3979,14 +3969,14 @@ QSize BaseStyle::sizeFromContents(ContentsType type, if (!btn->icon.isNull() || !btn->text.isEmpty()) margins = proxy()->pixelMetric(isRadio ? PM_RadioButtonLabelSpacing : PM_CheckBoxLabelSpacing, option, widget); - return QSize(size.width() + w + margins, qMax(size.height(), h)); + return {size.width() + w + margins, qMax(size.height(), h)}; } case CT_MenuBarItem: { int fontHeight = option ? option->fontMetrics.height() : size.height(); - int w = static_cast(fontHeight * Ph::MenuBar_HorizontalPaddingFontRatio); - int h = static_cast(fontHeight * Ph::MenuBar_VerticalPaddingFontRatio); + auto w = static_cast(fontHeight * Ph::MenuBar_HorizontalPaddingFontRatio); + auto h = static_cast(fontHeight * Ph::MenuBar_VerticalPaddingFontRatio); int line = Ph::dpiScaled(1); - return QSize(size.width() + w * 2, size.height() + h * 2 + line); + return {size.width() + w * 2, size.height() + h * 2 + line}; } case CT_MenuItem: { auto menuItem = qstyleoption_cast(option); @@ -4113,7 +4103,7 @@ QSize BaseStyle::sizeFromContents(ContentsType type, xadd += 2; yadd += 2; } - return QSize(size.width() + xadd, size.height() + yadd); + return {size.width() + xadd, size.height() + yadd}; } case CT_ItemViewItem: { auto vopt = qstyleoption_cast(option); @@ -4176,7 +4166,8 @@ QSize BaseStyle::sizeFromContents(ContentsType type, auto pbopt = qstyleoption_cast(option); if (!pbopt || pbopt->text.isEmpty()) break; - int hpad = static_cast(pbopt->fontMetrics.height() * Phantom::PushButton_HorizontalPaddingFontHeightRatio); + auto hpad = + static_cast(pbopt->fontMetrics.height() * Phantom::PushButton_HorizontalPaddingFontHeightRatio); newSize.rwidth() += hpad * 2; if (widget && qobject_cast(widget->parent())) { int dialogButtonMinWidth = Phantom::dpiScaled(80); @@ -4334,7 +4325,7 @@ QRect BaseStyle::subControlRect(ComplexControl control, break; case SC_SpinBoxDown: if (spinbox->buttonSymbols == QAbstractSpinBox::NoButtons) - return QRect(); + return {}; rect = QRect(x, center, buttonWidth, spinbox->rect.bottom() - center - fw + 1); break; @@ -4382,7 +4373,7 @@ QRect BaseStyle::subControlRect(ComplexControl control, int textHeight = option->fontMetrics.height(); // width()/horizontalAdvance() is faster than size() and good enough for // us, since we only support a single line of text here anyway. - int textWidth = Phantom::fontMetricsWidth(option->fontMetrics, groupBox->text); + int textWidth = option->fontMetrics.horizontalAdvance(groupBox->text); int indicatorWidth = proxy()->pixelMetric(PM_IndicatorWidth, option, widget); int indicatorHeight = proxy()->pixelMetric(PM_IndicatorHeight, option, widget); int margin = 0; @@ -4428,13 +4419,13 @@ QRect BaseStyle::subControlRect(ComplexControl control, case CC_ComboBox: { auto cb = qstyleoption_cast(option); if (!cb) - return QRect(); + return {}; int frame = cb->frame ? proxy()->pixelMetric(PM_ComboBoxFrameWidth, cb, widget) : 0; QRect r = option->rect; r.adjust(frame, frame, -frame, -frame); int dim = qMin(r.width(), r.height()); if (dim < 1) - return QRect(); + return {}; switch (subControl) { case SC_ComboBoxFrame: return cb->rect; @@ -4625,10 +4616,8 @@ int BaseStyle::styleHint(StyleHint hint, return Phantom::ShowItemViewDecorationSelected; case SH_ItemView_MovementWithoutUpdatingSelection: return 1; -#if (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)) case SH_ItemView_ScrollMode: return QAbstractItemView::ScrollPerPixel; -#endif case SH_ScrollBar_ContextMenu: #ifdef Q_OS_MAC return 0; diff --git a/src/gui/styles/base/basestyle.qss b/src/gui/styles/base/basestyle.qss index fa6858989..d5211e90a 100644 --- a/src/gui/styles/base/basestyle.qss +++ b/src/gui/styles/base/basestyle.qss @@ -17,40 +17,39 @@ QSpinBox { min-width: 90px; } -QDialogButtonBox QPushButton { - min-width: 55px; -} - QCheckBox, QRadioButton { spacing: 10px; } +ReportsDialog QTableView::item, +EntryAttachmentsWidget QTableView::item +{ + padding: 4px; +} + DatabaseWidget, DatabaseWidget #groupView, DatabaseWidget #tagView { background-color: palette(window); border: none; } -EntryPreviewWidget QLineEdit, EntryPreviewWidget QTextEdit, -EntryPreviewWidget TagsEdit +EntryPreviewWidget *[blendIn="true"] { background-color: palette(window); border: none; padding-left: 0px; } -DatabaseOpenWidget #centralStack { +DatabaseOpenWidget #centralStack, DatabaseOpenWidget #publicSummaryLabel { border: 1px solid palette(mid); background: palette(light); } QGroupBox { - margin-top: 1.4em; - margin-bottom: 1.4em; font-weight: bold; } QGroupBox::title { - margin-top: -3.35em; + margin-top: -.4em; margin-left: -.4em; subcontrol-origin: padding; } @@ -73,10 +72,6 @@ QPlainTextEdit, QTextEdit { padding-left: 4px; } -QStatusBar { - background-color: palette(window); -} - *[title="true"] { font-weight: bold; } diff --git a/src/gui/styles/base/classicstyle.qss b/src/gui/styles/base/classicstyle.qss index f7d3c0fb4..72308f39e 100644 --- a/src/gui/styles/base/classicstyle.qss +++ b/src/gui/styles/base/classicstyle.qss @@ -1,4 +1,4 @@ -DatabaseOpenWidget #centralStack { +DatabaseOpenWidget #centralStack, DatabaseOpenWidget #publicSummaryLabel { border: 2px groove palette(mid); background: palette(light); } @@ -9,8 +9,9 @@ QToolTip { DatabaseWidget #SearchBanner, DatabaseWidget #KeeShareBanner { font-weight: bold; - background-color: rgb(94, 161, 14); - border: 1px solid rgb(190, 190, 190); + background-color: palette(highlight); + color: palette(highlighted-text); + border: 1px solid palette(dark); padding: 2px; } diff --git a/src/gui/styles/base/phantomcolor.cpp b/src/gui/styles/base/phantomcolor.cpp index a11ab3c92..a53da3a46 100644 --- a/src/gui/styles/base/phantomcolor.cpp +++ b/src/gui/styles/base/phantomcolor.cpp @@ -27,8 +27,8 @@ */ #include "phantomcolor.h" +#include #include -#include namespace Phantom { @@ -398,9 +398,9 @@ namespace Phantom QColor qcolor_of_rgb(qreal r, qreal g, qreal b) { - int r_ = static_cast(std::lround(srgb_of_linear(r) * 255.0)); - int g_ = static_cast(std::lround(srgb_of_linear(g) * 255.0)); - int b_ = static_cast(std::lround(srgb_of_linear(b) * 255.0)); + auto r_ = static_cast(std::lround(srgb_of_linear(r) * 255.0)); + auto g_ = static_cast(std::lround(srgb_of_linear(g) * 255.0)); + auto b_ = static_cast(std::lround(srgb_of_linear(b) * 255.0)); return {r_, g_, b_}; } diff --git a/src/gui/styles/base/phantomcolor.h b/src/gui/styles/base/phantomcolor.h index f9573ba65..8eed357ab 100644 --- a/src/gui/styles/base/phantomcolor.h +++ b/src/gui/styles/base/phantomcolor.h @@ -42,9 +42,7 @@ namespace Phantom struct Rgb { qreal r, g, b; - Rgb() - { - } + Rgb() = default; Rgb(qreal r, qreal g, qreal b) : r(r) , g(g) @@ -78,9 +76,7 @@ namespace Phantom struct Hsl { qreal h, s, l; - Hsl() - { - } + Hsl() = default; Hsl(qreal h, qreal s, qreal l) : h(h) , s(s) @@ -113,7 +109,7 @@ namespace Phantom return (1.0 - a) * x + a * y; } - // Linearly interpolate two QColors after trasnforming them to linear color + // Linearly interpolate two QColors after transforming them to linear color // space, treating the QColor values as if they were in sRGB space. The // returned QColor is converted back to sRGB space. QColor lerpQColor(const QColor& x, const QColor& y, qreal a); diff --git a/src/gui/styles/dark/DarkStyle.cpp b/src/gui/styles/dark/DarkStyle.cpp index 3c4731b2d..daf16aaac 100644 --- a/src/gui/styles/dark/DarkStyle.cpp +++ b/src/gui/styles/dark/DarkStyle.cpp @@ -51,11 +51,9 @@ QPalette DarkStyle::standardPalette() const palette.setColor(QPalette::Inactive, QPalette::Text, QRgb(0xC8C8C6)); palette.setColor(QPalette::Disabled, QPalette::Text, QRgb(0x707070)); -#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0)) palette.setColor(QPalette::Active, QPalette::PlaceholderText, QRgb(0x7D7D82)); palette.setColor(QPalette::Inactive, QPalette::PlaceholderText, QRgb(0x87888C)); palette.setColor(QPalette::Disabled, QPalette::PlaceholderText, QRgb(0x737373)); -#endif palette.setColor(QPalette::Active, QPalette::BrightText, QRgb(0x252627)); palette.setColor(QPalette::Inactive, QPalette::BrightText, QRgb(0x2D2D2F)); @@ -115,7 +113,7 @@ QString DarkStyle::getAppStyleSheet() const void DarkStyle::polish(QWidget* widget) { if (qobject_cast(widget) || qobject_cast(widget) || qobject_cast(widget) - || qobject_cast(widget) || qobject_cast(widget)) { + || qobject_cast(widget)) { auto palette = widget->palette(); #if defined(Q_OS_MACOS) if (!osUtils->isDarkMode()) { diff --git a/src/gui/styles/dark/darkstyle.qss b/src/gui/styles/dark/darkstyle.qss index 23bcfd927..716430113 100644 --- a/src/gui/styles/dark/darkstyle.qss +++ b/src/gui/styles/dark/darkstyle.qss @@ -1,15 +1,24 @@ -DatabaseWidget:!active, GroupView:!active, -EntryPreviewWidget QLineEdit:!active, EntryPreviewWidget QTextEdit:!active, -EntryPreviewWidget TagsEdit:!active { +DatabaseWidget:!active, +DatabaseWidget #groupView:!active, DatabaseWidget #tagView:!active, +EntryPreviewWidget *:!active[blendIn="true"] { background-color: #404042; } -DatabaseWidget:disabled, GroupView:disabled, -EntryPreviewWidget QLineEdit:disabled, EntryPreviewWidget QTextEdit:disabled, -EntryPreviewWidget TagsEdit:disabled { +DatabaseWidget:disabled, +DatabaseWidget #groupView:disabled, DatabaseWidget #tagView:disabled, +EntryPreviewWidget *:disabled[blendIn="true"] { background-color: #424242; } +QMenu { + border: 1px solid #56565A; +} + +QMenu::separator { + height: 1px; + background-color: #56565A; +} + QPushButton:!default:hover { /* Using slightly darker shade from palette(button) */ background: #252528; @@ -20,6 +29,10 @@ QPushButton:default:hover, QPushButton:checked:hover { background: #2E582E; } +QSplitterHandle { + background-color: #56565A; +} + QToolTip { color: #BFBFBF; background-color: #2D532D; diff --git a/src/gui/styles/light/LightStyle.cpp b/src/gui/styles/light/LightStyle.cpp index 93cfeb632..f73995412 100644 --- a/src/gui/styles/light/LightStyle.cpp +++ b/src/gui/styles/light/LightStyle.cpp @@ -51,11 +51,9 @@ QPalette LightStyle::standardPalette() const palette.setColor(QPalette::Inactive, QPalette::Text, QRgb(0x252528)); palette.setColor(QPalette::Disabled, QPalette::Text, QRgb(0x8C8C92)); -#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0)) palette.setColor(QPalette::Active, QPalette::PlaceholderText, QRgb(0x71727D)); palette.setColor(QPalette::Inactive, QPalette::PlaceholderText, QRgb(0x878893)); palette.setColor(QPalette::Disabled, QPalette::PlaceholderText, QRgb(0xA3A4AC)); -#endif palette.setColor(QPalette::Active, QPalette::BrightText, QRgb(0xF3F3F4)); palette.setColor(QPalette::Inactive, QPalette::BrightText, QRgb(0xEAEAEB)); @@ -115,7 +113,7 @@ QString LightStyle::getAppStyleSheet() const void LightStyle::polish(QWidget* widget) { if (qobject_cast(widget) || qobject_cast(widget) || qobject_cast(widget) - || qobject_cast(widget) || qobject_cast(widget)) { + || qobject_cast(widget)) { auto palette = widget->palette(); #if defined(Q_OS_MACOS) if (osUtils->isDarkMode()) { diff --git a/src/gui/styles/light/lightstyle.qss b/src/gui/styles/light/lightstyle.qss index 2764a56b0..123267c30 100644 --- a/src/gui/styles/light/lightstyle.qss +++ b/src/gui/styles/light/lightstyle.qss @@ -1,12 +1,12 @@ -DatabaseWidget:!active, GroupView:!active, -EntryPreviewWidget QLineEdit:!active, EntryPreviewWidget QTextEdit:!active, -EntryPreviewWidget TagsEdit:!active { +DatabaseWidget:!active, +DatabaseWidget #groupView:!active, DatabaseWidget #tagView:!active, +EntryPreviewWidget *:!active[blendIn="true"] { background-color: #FCFCFC; } -DatabaseWidget:disabled, GroupView:disabled, -EntryPreviewWidget QLineEdit:disabled, EntryPreviewWidget QTextEdit:disabled, -EntryPreviewWidget TagsEdit:disabled { +DatabaseWidget:disabled, +DatabaseWidget #groupView:disabled, DatabaseWidget #tagView:disabled, +EntryPreviewWidget *:disabled[blendIn="true"] { background-color: #EDEDED; } diff --git a/src/gui/tag/TagModel.cpp b/src/gui/tag/TagModel.cpp index 023cb3498..dfa4e943d 100644 --- a/src/gui/tag/TagModel.cpp +++ b/src/gui/tag/TagModel.cpp @@ -18,26 +18,38 @@ #include "TagModel.h" #include "core/Database.h" +#include "core/Metadata.h" #include "gui/Icons.h" +#include "gui/MessageBox.h" -TagModel::TagModel(QSharedPointer db, QObject* parent) +#include +#include + +TagModel::TagModel(QObject* parent) : QAbstractListModel(parent) { - setDatabase(db); + m_defaultSearches << qMakePair(tr("Clear Search"), QString("")) << qMakePair(tr("All Entries"), QString("*")) + << qMakePair(tr("Expired"), QString("is:expired")) + << qMakePair(tr("Weak Passwords"), QString("is:weak")); } -TagModel::~TagModel() -{ -} +TagModel::~TagModel() = default; void TagModel::setDatabase(QSharedPointer db) { + if (m_db) { + disconnect(m_db.data()); + } + m_db = db; if (!m_db) { m_tagList.clear(); return; } + connect(m_db.data(), SIGNAL(tagListUpdated()), SLOT(updateTagList())); + connect(m_db->metadata()->customData(), SIGNAL(modified()), SLOT(updateTagList())); + updateTagList(); } @@ -45,10 +57,35 @@ void TagModel::updateTagList() { beginResetModel(); m_tagList.clear(); - m_tagList << tr("All") << tr("Expired") << tr("Weak Passwords") << m_db->tagList(); + + m_tagList << m_defaultSearches; + + auto savedSearches = m_db->metadata()->savedSearches(); + for (auto search : savedSearches.keys()) { + m_tagList << qMakePair(search, savedSearches[search].toString()); + } + + m_tagListStart = m_tagList.size(); + for (auto tag : m_db->tagList()) { + auto escapedTag = tag; + escapedTag.replace("\"", "\\\""); + m_tagList << qMakePair(tag, QString("tag:\"%1\"").arg(escapedTag)); + } + endResetModel(); } +TagModel::TagType TagModel::itemType(const QModelIndex& index) +{ + int row = index.row(); + if (row < m_defaultSearches.size()) { + return TagType::DEFAULT_SEARCH; + } else if (row < m_tagListStart) { + return TagType::SAVED_SEARCH; + } + return TagType::TAG; +} + int TagModel::rowCount(const QModelIndex& parent) const { Q_UNUSED(parent); @@ -61,29 +98,23 @@ QVariant TagModel::data(const QModelIndex& index, int role) const return {}; } + const auto row = index.row(); switch (role) { case Qt::DecorationRole: - if (index.row() <= 2) { - return icons()->icon("tag-search"); + if (row < m_tagListStart) { + return icons()->icon("database-search"); } return icons()->icon("tag"); case Qt::DisplayRole: - return m_tagList.at(index.row()); + return m_tagList.at(row).first; case Qt::UserRole: - if (index.row() == 0) { - return ""; - } else if (index.row() == 1) { - return "is:expired"; - } else if (index.row() == 2) { - return "is:weak"; + return m_tagList.at(row).second; + case Qt::UserRole + 1: + if (row == (m_defaultSearches.size() - 1)) { + return true; } - return QString("tag:%1").arg(m_tagList.at(index.row())); + return false; } return {}; } - -const QStringList& TagModel::tags() const -{ - return m_tagList; -} diff --git a/src/gui/tag/TagModel.h b/src/gui/tag/TagModel.h index 020f621f0..8eee0101b 100644 --- a/src/gui/tag/TagModel.h +++ b/src/gui/tag/TagModel.h @@ -28,21 +28,30 @@ class TagModel : public QAbstractListModel Q_OBJECT public: - explicit TagModel(QSharedPointer db, QObject* parent = nullptr); + explicit TagModel(QObject* parent = nullptr); ~TagModel() override; void setDatabase(QSharedPointer db); - const QStringList& tags() const; int rowCount(const QModelIndex& parent = QModelIndex()) const override; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + enum TagType + { + DEFAULT_SEARCH, + SAVED_SEARCH, + TAG + }; + TagType itemType(const QModelIndex& index); + private slots: void updateTagList(); private: QSharedPointer m_db; - QStringList m_tagList; + QList> m_defaultSearches; + QList> m_tagList; + int m_tagListStart = 0; }; #endif // KEEPASSX_TAGMODEL_H diff --git a/src/gui/tag/TagView.cpp b/src/gui/tag/TagView.cpp new file mode 100644 index 000000000..033061292 --- /dev/null +++ b/src/gui/tag/TagView.cpp @@ -0,0 +1,103 @@ +/* + * Copyright (C) 2022 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 . + */ + +#include "TagView.h" + +#include "TagModel.h" +#include "core/Database.h" +#include "core/Metadata.h" +#include "gui/Application.h" +#include "gui/Icons.h" +#include "gui/MessageBox.h" + +#include +#include +#include + +class TagItemDelegate : public QStyledItemDelegate +{ +public: + explicit TagItemDelegate(QObject* parent) + : QStyledItemDelegate(parent){}; + + void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override + { + QStyledItemDelegate::paint(painter, option, index); + if (index.data(Qt::UserRole + 1).toBool()) { + QRect bounds = option.rect; + bounds.setY(bounds.bottom()); + if (kpxcApp->isDarkTheme()) { + painter->fillRect(bounds, option.palette.mid().color().lighter(185)); + } else { + painter->fillRect(bounds, option.palette.mid()); + } + } + } +}; + +TagView::TagView(QWidget* parent) + : QListView(parent) + , m_model(new TagModel(this)) +{ + setModel(m_model); + setFrameStyle(QFrame::NoFrame); + setSelectionMode(QListView::ExtendedSelection); + setSelectionBehavior(QListView::SelectRows); + setContextMenuPolicy(Qt::CustomContextMenu); + setItemDelegate(new TagItemDelegate(this)); + + connect(this, &QListView::customContextMenuRequested, this, &TagView::contextMenuRequested); +} + +void TagView::setDatabase(QSharedPointer db) +{ + m_db = db; + m_model->setDatabase(db); + setCurrentIndex(m_model->index(0)); +} + +void TagView::contextMenuRequested(const QPoint& pos) +{ + auto index = indexAt(pos); + if (!index.isValid()) { + return; + } + + auto type = m_model->itemType(index); + if (type == TagModel::SAVED_SEARCH) { + // Allow deleting saved searches + QMenu menu; + auto action = menu.exec({new QAction(icons()->icon("trash"), tr("Remove Search"), nullptr)}, mapToGlobal(pos)); + if (action) { + m_db->metadata()->deleteSavedSearch(index.data(Qt::DisplayRole).toString()); + } + } else if (type == TagModel::TAG) { + // Allow removing tags from all entries in a database + QMenu menu; + auto action = menu.exec({new QAction(icons()->icon("trash"), tr("Remove Tag"), nullptr)}, mapToGlobal(pos)); + if (action) { + auto tag = index.data(Qt::DisplayRole).toString(); + auto ans = MessageBox::question(this, + tr("Confirm Remove Tag"), + tr("Remove tag \"%1\" from all entries in this database?").arg(tag), + MessageBox::Remove | MessageBox::Cancel); + if (ans == MessageBox::Remove) { + m_db->removeTag(tag); + } + } + } +} diff --git a/src/gui/tag/TagView.h b/src/gui/tag/TagView.h new file mode 100644 index 000000000..9a135aca3 --- /dev/null +++ b/src/gui/tag/TagView.h @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2022 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 . + */ + +#ifndef KEEPASSXC_TAGVIEW_H +#define KEEPASSXC_TAGVIEW_H + +#include +#include +#include + +class Database; +class QAbstractListModel; +class TagModel; + +class TagView : public QListView +{ + Q_OBJECT + +public: + explicit TagView(QWidget* parent = nullptr); + void setDatabase(QSharedPointer db); + +signals: + +private slots: + void contextMenuRequested(const QPoint& pos); + +private: + QSharedPointer m_db; + QPointer m_model; +}; + +#endif // KEEPASSX_ENTRYVIEW_H diff --git a/src/gui/tag/TagsEdit.cpp b/src/gui/tag/TagsEdit.cpp index ee668731a..1d6bcfa73 100644 --- a/src/gui/tag/TagsEdit.cpp +++ b/src/gui/tag/TagsEdit.cpp @@ -24,6 +24,7 @@ #include "TagsEdit.h" #include "gui/MainWindow.h" +#include #include #include #include @@ -38,12 +39,6 @@ #include -#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0) -#define FONT_METRICS_WIDTH(fmt, ...) fmt.width(__VA_ARGS__) -#else -#define FONT_METRICS_WIDTH(fmt, ...) fmt.horizontalAdvance(__VA_ARGS__) -#endif - namespace { @@ -238,11 +233,11 @@ struct TagsEdit::Impl auto const e = std::end(tags); if (cursorVisible()) { auto const m = b + static_cast(editing_index); - calcRects(lt, row, r, fm, std::make_pair(b, m)); + calcRects(lt, row, r, fm, std::pair(b, m)); calcEditorRect(lt, row, r, fm, m); - calcRects(lt, row, r, fm, std::make_pair(m + 1, e)); + calcRects(lt, row, r, fm, std::pair(m + 1, e)); } else { - calcRects(lt, row, r, fm, std::make_pair(b, e)); + calcRects(lt, row, r, fm, std::pair(b, e)); } r.setBottom(lt.y() + fm.height() + fm.leading() + tag_inner.top() + tag_inner.bottom() - 1); @@ -254,7 +249,7 @@ struct TagsEdit::Impl { for (auto it = range.first; it != range.second; ++it) { // calc text rect - const auto text_w = FONT_METRICS_WIDTH(fm, it->text); + const auto text_w = fm.horizontalAdvance(it->text); auto const text_h = fm.height() + fm.leading(); auto const w = cross_deleter ? tag_inner.left() + tag_inner.right() + tag_cross_padding * 2 + tag_cross_width @@ -279,7 +274,7 @@ struct TagsEdit::Impl template void calcEditorRect(QPoint& lt, size_t& row, QRect r, QFontMetrics const& fm, It it) const { - auto const text_w = FONT_METRICS_WIDTH(fm, text_layout.text()); + auto const text_w = fm.horizontalAdvance(text_layout.text()); auto const text_h = fm.height() + fm.leading(); auto const w = tag_inner.left() + tag_inner.right(); auto const h = tag_inner.top() + tag_inner.bottom(); @@ -342,7 +337,7 @@ struct TagsEdit::Impl assert(i < tags.size()); auto occurrencesOfCurrentText = std::count_if(tags.cbegin(), tags.cend(), [this](const auto& tag) { return tag.text == currentText(); }); - if (currentText().isEmpty() || occurrencesOfCurrentText > 1) { + if (tags.size() > 1 && (currentText().isEmpty() || occurrencesOfCurrentText > 1)) { tags.erase(std::next(tags.begin(), std::ptrdiff_t(editing_index))); if (editing_index <= i) { // Do we shift positions after `i`? --i; @@ -401,6 +396,7 @@ struct TagsEdit::Impl // and ensures Invariant-1. void editNewTag(int i) { + currentText() = currentText().trimmed(); tags.insert(std::next(std::begin(tags), static_cast(i)), Tag()); if (editing_index >= i) { ++editing_index; @@ -412,9 +408,10 @@ struct TagsEdit::Impl void setupCompleter() { completer->setWidget(ifce); - connect(completer.get(), static_cast(&QCompleter::activated), [this](QString const& text) { - currentText(text); - }); + completer->setCaseSensitivity(Qt::CaseInsensitive); + connect(completer.get(), + static_cast(&QCompleter::activated), + [this](QString const& text) { currentText(text); }); } QVector formatting() const @@ -646,6 +643,12 @@ void TagsEdit::focusOutEvent(QFocusEvent*) viewport()->update(); } +void TagsEdit::hideEvent(QHideEvent* event) +{ + Q_UNUSED(event) + impl->completer->popup()->hide(); +} + void TagsEdit::paintEvent(QPaintEvent*) { QPainter p(viewport()); @@ -660,8 +663,7 @@ void TagsEdit::paintEvent(QPaintEvent*) // tags impl->drawTags( - p, - std::make_pair(impl->tags.cbegin(), std::next(impl->tags.cbegin(), std::ptrdiff_t(impl->editing_index)))); + p, std::pair(impl->tags.cbegin(), std::next(impl->tags.cbegin(), std::ptrdiff_t(impl->editing_index)))); // draw not terminated tag auto const formatting = impl->formatting(); @@ -676,12 +678,10 @@ void TagsEdit::paintEvent(QPaintEvent*) // tags impl->drawTags( - p, - std::make_pair(std::next(impl->tags.cbegin(), std::ptrdiff_t(impl->editing_index + 1)), impl->tags.cend())); + p, std::pair(std::next(impl->tags.cbegin(), std::ptrdiff_t(impl->editing_index + 1)), impl->tags.cend())); } else { - impl->drawTags(p, - std::make_pair(EmptySkipIterator(impl->tags.begin(), impl->tags.end()), - EmptySkipIterator(impl->tags.end()))); + impl->drawTags( + p, std::pair(EmptySkipIterator(impl->tags.begin(), impl->tags.end()), EmptySkipIterator(impl->tags.end()))); } } @@ -854,10 +854,16 @@ void TagsEdit::keyPressEvent(QKeyEvent* event) case Qt::Key_Enter: case Qt::Key_Comma: case Qt::Key_Semicolon: + // If completer is visible, accept the selection or hide if no selection + if (impl->completer->popup()->isVisible() && impl->completer->popup()->selectionModel()->hasSelection()) { + break; + } + + // Make existing text into a tag if (!impl->currentText().isEmpty()) { impl->editNewTag(impl->editing_index + 1); + event->accept(); } - event->accept(); break; default: unknown = true; diff --git a/src/gui/tag/TagsEdit.h b/src/gui/tag/TagsEdit.h index 6c2a974cb..44297fb34 100644 --- a/src/gui/tag/TagsEdit.h +++ b/src/gui/tag/TagsEdit.h @@ -68,6 +68,7 @@ protected: void focusOutEvent(QFocusEvent* event) override; void keyPressEvent(QKeyEvent* event) override; void mouseMoveEvent(QMouseEvent* event) override; + void hideEvent(QHideEvent* event) override; private: bool isAcceptableInput(QKeyEvent const* event) const; diff --git a/src/gui/widgets/ElidedLabel.h b/src/gui/widgets/ElidedLabel.h index 5dd14891d..1f90d056e 100644 --- a/src/gui/widgets/ElidedLabel.h +++ b/src/gui/widgets/ElidedLabel.h @@ -51,7 +51,7 @@ private slots: void updateElidedText(); private: - void resizeEvent(QResizeEvent* event); + void resizeEvent(QResizeEvent* event) override; Qt::TextElideMode m_elideMode; QString m_rawText; diff --git a/src/autotype/ShortcutWidget.cpp b/src/gui/widgets/ShortcutWidget.cpp similarity index 81% rename from src/autotype/ShortcutWidget.cpp rename to src/gui/widgets/ShortcutWidget.cpp index 91b2fda93..4f9c14476 100644 --- a/src/autotype/ShortcutWidget.cpp +++ b/src/gui/widgets/ShortcutWidget.cpp @@ -20,13 +20,8 @@ #include #include -#include "autotype/AutoType.h" - ShortcutWidget::ShortcutWidget(QWidget* parent) : QLineEdit(parent) - , m_key(static_cast(0)) - , m_modifiers(nullptr) - , m_locked(false) { setReadOnly(true); } @@ -41,6 +36,11 @@ Qt::KeyboardModifiers ShortcutWidget::modifiers() const return m_modifiers; } +QKeySequence ShortcutWidget::sequence() const +{ + return (m_key == Qt::Key_unknown) ? QKeySequence() : QKeySequence(m_key | m_modifiers); +} + void ShortcutWidget::setShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers) { m_key = key; @@ -48,22 +48,15 @@ void ShortcutWidget::setShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers) m_locked = true; displayShortcut(m_key, m_modifiers); - - QString error; - if (autoType()->registerGlobalShortcut(m_key, m_modifiers, &error)) { - setStyleSheet(""); - } else { - QToolTip::showText(mapToGlobal(rect().bottomLeft()), error); - setStyleSheet("background-color: #FF9696;"); - } + emit shortcutChanged(m_key, m_modifiers); } void ShortcutWidget::resetShortcut() { - m_key = static_cast(0); - m_modifiers = nullptr; + m_key = Qt::Key_unknown; + m_modifiers = Qt::NoModifier; m_locked = false; - autoType()->unregisterGlobalShortcut(); + emit shortcutReset(); } void ShortcutWidget::keyPressEvent(QKeyEvent* event) @@ -90,7 +83,7 @@ void ShortcutWidget::keyEvent(QKeyEvent* event) return; } - Qt::Key key = static_cast(event->key()); + auto key = static_cast(event->key()); if (key <= 0 || key == Qt::Key_unknown) { return; @@ -116,13 +109,11 @@ void ShortcutWidget::keyEvent(QKeyEvent* event) setShortcut(key, modifiers); } else { resetShortcut(); - setStyleSheet(""); displayShortcut(key, modifiers); } } else { if (m_locked) { resetShortcut(); - setStyleSheet(""); } displayShortcut(static_cast(0), modifiers); diff --git a/src/autotype/ShortcutWidget.h b/src/gui/widgets/ShortcutWidget.h similarity index 82% rename from src/autotype/ShortcutWidget.h rename to src/gui/widgets/ShortcutWidget.h index 60898ab7e..6ff9b3d77 100644 --- a/src/autotype/ShortcutWidget.h +++ b/src/gui/widgets/ShortcutWidget.h @@ -18,6 +18,7 @@ #ifndef KEEPASSX_SHORTCUTWIDGET_H #define KEEPASSX_SHORTCUTWIDGET_H +#include #include class ShortcutWidget : public QLineEdit @@ -26,10 +27,17 @@ class ShortcutWidget : public QLineEdit public: explicit ShortcutWidget(QWidget* parent = nullptr); + Qt::Key key() const; Qt::KeyboardModifiers modifiers() const; + QKeySequence sequence() const; + void setShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers); +signals: + void shortcutChanged(Qt::Key key, Qt::KeyboardModifiers modifiers); + void shortcutReset(); + protected: void keyPressEvent(QKeyEvent* event) override; void keyReleaseEvent(QKeyEvent* event) override; @@ -39,9 +47,9 @@ private: void displayShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers); void resetShortcut(); - Qt::Key m_key; - Qt::KeyboardModifiers m_modifiers; - bool m_locked; + Qt::Key m_key = Qt::Key_unknown; + Qt::KeyboardModifiers m_modifiers = Qt::NoModifier; + bool m_locked = false; }; #endif // KEEPASSX_SHORTCUTWIDGET_H diff --git a/src/gui/wizard/ImportWizard.cpp b/src/gui/wizard/ImportWizard.cpp new file mode 100644 index 000000000..ff3769347 --- /dev/null +++ b/src/gui/wizard/ImportWizard.cpp @@ -0,0 +1,89 @@ +/* + * Copyright (C) 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 . + */ + +#include "ImportWizard.h" +#include "ImportWizardPageReview.h" +#include "ImportWizardPageSelect.h" + +#include "core/Global.h" +#include "core/Group.h" + +#include +#include + +ImportWizard::ImportWizard(QWidget* parent) + : QWizard(parent) + , m_pageSelect(new ImportWizardPageSelect) + , m_pageReview(new ImportWizardPageReview) +{ + setWizardStyle(MacStyle); + setOption(HaveHelpButton, false); + setOption(NoDefaultButton, false); // Needed for macOS + + addPage(m_pageSelect.data()); + addPage(m_pageReview.data()); + + setWindowTitle(tr("Import Wizard")); + + Q_INIT_RESOURCE(wizard); + setPixmap(BackgroundPixmap, QPixmap(":/wizard/background-pixmap.png")); + + // Fix MacStyle QWizard page frame too bright in dark mode (QTBUG-70346, QTBUG-71696) + QPalette defaultPalette; + auto windowColor = defaultPalette.color(QPalette::Window); + windowColor.setAlpha(153); + auto baseColor = defaultPalette.color(QPalette::Base); + baseColor.setAlpha(153); + + auto* pageFrame = findChildren()[0]; + auto framePalette = pageFrame->palette(); + framePalette.setBrush(QPalette::Window, windowColor.lighter(120)); + framePalette.setBrush(QPalette::Base, baseColor.lighter(120)); + pageFrame->setPalette(framePalette); +} + +ImportWizard::~ImportWizard() +{ +} + +bool ImportWizard::validateCurrentPage() +{ + bool ret = QWizard::validateCurrentPage(); + if (ret && currentPage() == m_pageReview) { + m_db = m_pageReview->database(); + } + return ret; +} + +ImportWizard::ImportIntoType ImportWizard::importIntoType() +{ + return static_cast(field("ImportIntoType").toInt()); +} + +QPair ImportWizard::importInto() +{ + auto list = field("ImportInto").toList(); + if (list.size() >= 2) { + return qMakePair(QUuid(list[0].toString()), QUuid(list[1].toString())); + } + return {}; +} + +QSharedPointer ImportWizard::database() +{ + return m_db; +} diff --git a/src/gui/wizard/ImportWizard.h b/src/gui/wizard/ImportWizard.h new file mode 100644 index 000000000..db27e3d5a --- /dev/null +++ b/src/gui/wizard/ImportWizard.h @@ -0,0 +1,72 @@ +/* + * Copyright (C) 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 . + */ + +#ifndef KEEPASSXC_IMPORTWIZARD_H +#define KEEPASSXC_IMPORTWIZARD_H + +#include +#include +#include + +class Database; +class ImportWizardPageSelect; +class ImportWizardPageReview; + +/** + * Setup wizard for importing a file into a database. + */ +class ImportWizard : public QWizard +{ + Q_OBJECT + +public: + explicit ImportWizard(QWidget* parent = nullptr); + ~ImportWizard() override; + + bool validateCurrentPage() override; + + QSharedPointer database(); + + enum ImportType + { + IMPORT_NONE = 0, + IMPORT_CSV, + IMPORT_OPVAULT, + IMPORT_OPUX, + IMPORT_BITWARDEN, + IMPORT_PROTONPASS, + IMPORT_KEEPASS1, + IMPORT_REMOTE, + }; + + enum ImportIntoType + { + NEW_DATABASE = 1, + EXISTING_DATABASE, + TEMPORARY_DATABASE, + }; + + ImportWizard::ImportIntoType importIntoType(); + QPair importInto(); + +private: + QSharedPointer m_db; + QPointer m_pageSelect; + QPointer m_pageReview; +}; + +#endif // KEEPASSXC_IMPORTWIZARD_H diff --git a/src/gui/wizard/ImportWizardPageReview.cpp b/src/gui/wizard/ImportWizardPageReview.cpp new file mode 100644 index 000000000..3c894e261 --- /dev/null +++ b/src/gui/wizard/ImportWizardPageReview.cpp @@ -0,0 +1,282 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "ImportWizardPageReview.h" +#include "ui_ImportWizardPageReview.h" + +#include "core/Database.h" +#include "core/Group.h" +#include "format/BitwardenReader.h" +#include "format/KeePass1Reader.h" +#include "format/OPUXReader.h" +#include "format/OpVaultReader.h" +#include "format/ProtonPassReader.h" +#include "gui/csvImport/CsvImportWidget.h" +#include "gui/wizard/ImportWizard.h" + +#include "cli/Utils.h" +#include "keys/FileKey.h" +#include "keys/PasswordKey.h" + +#include +#include +#include +#include + +#include "gui/remote/RemoteSettings.h" + +struct RemoteParams; + +ImportWizardPageReview::ImportWizardPageReview(QWidget* parent) + : QWizardPage(parent) + , m_ui(new Ui::ImportWizardPageReview) + , m_remoteHandler(new RemoteHandler(this)) +{ +} + +ImportWizardPageReview::~ImportWizardPageReview() +{ +} + +void ImportWizardPageReview::initializePage() +{ + m_db.reset(); + + // Reset the widget in case we changed the import type + for (auto child : children()) { + delete child; + } + m_ui->setupUi(this); + + auto filename = field("ImportFile").toString(); + m_ui->filenameLabel->setText(filename); + + m_ui->messageWidget->hideMessage(); + m_ui->messageWidget->setAnimate(false); + m_ui->messageWidget->setCloseButtonVisible(false); + + auto importType = field("ImportType").toInt(); + switch (importType) { + case ImportWizard::IMPORT_CSV: + setupCsvImport(filename); + break; + case ImportWizard::IMPORT_OPVAULT: + m_db = importOPVault(filename, field("ImportPassword").toString()); + break; + case ImportWizard::IMPORT_OPUX: + m_db = importOPUX(filename); + break; + case ImportWizard::IMPORT_KEEPASS1: + m_db = importKeePass1(filename, field("ImportPassword").toString(), field("ImportKeyFile").toString()); + break; + case ImportWizard::IMPORT_BITWARDEN: + m_db = importBitwarden(filename, field("ImportPassword").toString()); + break; + case ImportWizard::IMPORT_PROTONPASS: + m_db = importProtonPass(filename); + break; + case ImportWizard::IMPORT_REMOTE: + m_db = importRemote(field("DownloadCommand").toString(), + field("DownloadInput").toString(), + field("ImportPassword").toString(), + field("ImportKeyFile").toString()); + break; + default: + break; + } + + setupDatabasePreview(); +} + +bool ImportWizardPageReview::validatePage() +{ + if (isCsvImport()) { + m_db = m_csvWidget->buildDatabase(); + } + return !m_db.isNull(); +} + +QSharedPointer ImportWizardPageReview::database() +{ + return m_db; +} + +void ImportWizardPageReview::setupCsvImport(const QString& filename) +{ + // No need for this label with CSV + m_ui->previewLabel->hide(); + + m_csvWidget = new CsvImportWidget(); + connect(m_csvWidget, &CsvImportWidget::message, m_ui->messageWidget, [this](QString message) { + if (message.isEmpty()) { + m_ui->messageWidget->hideMessage(); + } else { + m_ui->messageWidget->showMessage(message, MessageWidget::Error, -1); + } + }); + + m_csvWidget->load(filename); +} + +void ImportWizardPageReview::setupDatabasePreview() +{ + // CSV preview is handled by the import widget + if (isCsvImport()) { + // Qt does not automatically resize a QScrollWidget in a QWizard... + m_ui->scrollAreaContents->layout()->addWidget(m_csvWidget); + m_ui->scrollArea->setMinimumSize(m_csvWidget->width() + 50, m_csvWidget->height() + 100); + return; + } + + if (!m_db) { + m_ui->scrollArea->setVisible(false); + return; + } + + auto entryList = m_db->rootGroup()->entriesRecursive(); + m_ui->previewLabel->setText(tr("Entry count: %1").arg(entryList.count())); + + QStringList headerLabels({tr("Group"), tr("Title"), tr("Username"), tr("Password"), tr("Url")}); + + auto tableWidget = new QTableWidget(entryList.count(), headerLabels.count()); + tableWidget->setHorizontalHeaderLabels(headerLabels); + + int row = 0; + for (auto entry : entryList) { + QList items({new QTableWidgetItem(entry->group()->name()), + new QTableWidgetItem(entry->title()), + new QTableWidgetItem(entry->username()), + new QTableWidgetItem(entry->password()), + new QTableWidgetItem(entry->url())}); + int column = 0; + for (auto item : items) { + tableWidget->setItem(row, column++, item); + } + ++row; + } + + tableWidget->setSortingEnabled(true); + tableWidget->setSelectionMode(QTableWidget::NoSelection); + tableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableWidget->setWordWrap(true); + tableWidget->horizontalHeader()->setMaximumSectionSize(200); + tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + tableWidget->horizontalHeader()->setStretchLastSection(true); + + m_ui->scrollAreaContents->layout()->addWidget(tableWidget); +} + +QSharedPointer ImportWizardPageReview::importOPUX(const QString& filename) +{ + OPUXReader reader; + auto db = reader.convert(filename); + if (reader.hasError()) { + m_ui->messageWidget->showMessage(reader.errorString(), KMessageWidget::Error, -1); + } + return db; +} + +QSharedPointer ImportWizardPageReview::importBitwarden(const QString& filename, const QString& password) +{ + BitwardenReader reader; + auto db = reader.convert(filename, password); + if (reader.hasError()) { + m_ui->messageWidget->showMessage(reader.errorString(), KMessageWidget::Error, -1); + } + return db; +} + +QSharedPointer ImportWizardPageReview::importOPVault(const QString& filename, const QString& password) +{ + OpVaultReader reader; + QDir opVault(filename); + auto db = reader.convert(opVault, password); + if (reader.hasError()) { + m_ui->messageWidget->showMessage(reader.errorString(), KMessageWidget::Error, -1); + } + return db; +} + +QSharedPointer +ImportWizardPageReview::importKeePass1(const QString& filename, const QString& password, const QString& keyfile) +{ + KeePass1Reader reader; + + // TODO: Handle case of empty password? + + auto db = reader.readDatabase(filename, password, keyfile); + if (reader.hasError()) { + m_ui->messageWidget->showMessage(reader.errorString(), KMessageWidget::Error, -1); + } + + return db; +} + +QSharedPointer ImportWizardPageReview::importProtonPass(const QString& filename) +{ + ProtonPassReader reader; + auto db = reader.convert(filename); + if (reader.hasError()) { + m_ui->messageWidget->showMessage(reader.errorString(), KMessageWidget::Error, -1); + } + return db; +} + +bool ImportWizardPageReview::isCsvImport() const +{ + return m_csvWidget && field("ImportType").toInt() == ImportWizard::IMPORT_CSV; +} + +QSharedPointer ImportWizardPageReview::importRemote(const QString& downloadCommand, + const QString& downloadInput, + const QString& password, + const QString& keyfile) +{ + auto* params = new RemoteParams(); + params->downloadCommand = downloadCommand; + params->downloadInput = downloadInput; + + auto result = m_remoteHandler->download(params); + + if (!result.success) { + m_ui->messageWidget->showMessage(result.errorMessage, KMessageWidget::Error, -1); + } + + auto key = QSharedPointer::create(); + + if (!password.isEmpty()) { + key->addKey(QSharedPointer::create(password)); + } + if (!keyfile.isEmpty()) { + QSharedPointer fileKey = QSharedPointer::create(); + if (Utils::loadFileKey(keyfile, fileKey)) { + key->addKey(fileKey); + } else { + m_ui->messageWidget->showMessage(tr("Could not load key file."), KMessageWidget::Error, -1); + } + } + + QString error; + QSharedPointer remoteDb = QSharedPointer::create(); + remoteDb->markAsTemporaryDatabase(); + if (!remoteDb->open(result.filePath, key, &error)) { + m_ui->messageWidget->showMessage( + tr("Could not open remote database. Password or key file may be incorrect."), KMessageWidget::Error, -1); + } + + return remoteDb; +} diff --git a/src/gui/wizard/ImportWizardPageReview.h b/src/gui/wizard/ImportWizardPageReview.h new file mode 100644 index 000000000..17f85a1a5 --- /dev/null +++ b/src/gui/wizard/ImportWizardPageReview.h @@ -0,0 +1,73 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_IMPORTWIZARDPAGEREVIEW_H +#define KEEPASSXC_IMPORTWIZARDPAGEREVIEW_H + +#include +#include + +#include +#include +#include + +#include "../remote/RemoteHandler.h" + +class CsvImportWidget; +class Database; +namespace Ui +{ + class ImportWizardPageReview; +}; + +class ImportWizardPageReview : public QWizardPage +{ + Q_OBJECT + +public: + explicit ImportWizardPageReview(QWidget* parent = nullptr); + Q_DISABLE_COPY(ImportWizardPageReview) + ~ImportWizardPageReview() override; + + void initializePage() override; + bool validatePage() override; + + QSharedPointer database(); + +private: + bool isCsvImport() const; + void setupCsvImport(const QString& filename); + QSharedPointer importOPUX(const QString& filename); + QSharedPointer importBitwarden(const QString& filename, const QString& password); + QSharedPointer importOPVault(const QString& filename, const QString& password); + QSharedPointer importKeePass1(const QString& filename, const QString& password, const QString& keyfile); + QSharedPointer importProtonPass(const QString& filename); + QSharedPointer importRemote(const QString& downloadCommand, + const QString& downloadInput, + const QString& password, + const QString& keyfile); + + void setupDatabasePreview(); + + QScopedPointer m_ui; + + QSharedPointer m_db; + QPointer m_csvWidget; + QPointer m_remoteHandler; +}; + +#endif diff --git a/src/gui/wizard/ImportWizardPageReview.ui b/src/gui/wizard/ImportWizardPageReview.ui new file mode 100644 index 000000000..6872ec4ea --- /dev/null +++ b/src/gui/wizard/ImportWizardPageReview.ui @@ -0,0 +1,95 @@ + + + ImportWizardPageReview + + + + 0 + 0 + 518 + 334 + + + + WizardPage + + + + + + + + + + 500 + 300 + + + + Qt::ScrollBarAlwaysOff + + + QAbstractScrollArea::AdjustToContentsOnFirstShow + + + true + + + + + 0 + 0 + 498 + 298 + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 75 + true + + + + filename + + + + + + + Entry count: %1 + + + + + + + + + + + + MessageWidget + QWidget +
    gui/MessageWidget.h
    + 1 +
    +
    + + +
    diff --git a/src/gui/wizard/ImportWizardPageSelect.cpp b/src/gui/wizard/ImportWizardPageSelect.cpp new file mode 100644 index 000000000..ba5f28521 --- /dev/null +++ b/src/gui/wizard/ImportWizardPageSelect.cpp @@ -0,0 +1,314 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "ImportWizardPageSelect.h" +#include "ui_ImportWizardPageSelect.h" + +#include "ImportWizard.h" + +#include "gui/DatabaseWidget.h" +#include "gui/FileDialog.h" +#include "gui/Icons.h" +#include "gui/MainWindow.h" + +#include + +ImportWizardPageSelect::ImportWizardPageSelect(QWidget* parent) + : QWizardPage(parent) + , m_ui(new Ui::ImportWizardPageSelect()) +{ + m_ui->setupUi(this); + + new QListWidgetItem(icons()->icon("csv"), tr("Comma Separated Values (.csv)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("onepassword"), tr("1Password Export (.1pux)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("onepassword"), tr("1Password Vault (.opvault)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("bitwarden"), tr("Bitwarden (.json)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("proton"), tr("Proton Pass (.json)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("web"), tr("Remote Database (.kdbx)"), m_ui->importTypeList); + new QListWidgetItem(icons()->icon("object-locked"), tr("KeePass 1 Database (.kdb)"), m_ui->importTypeList); + + m_ui->importTypeList->item(0)->setData(Qt::UserRole, ImportWizard::IMPORT_CSV); + m_ui->importTypeList->item(1)->setData(Qt::UserRole, ImportWizard::IMPORT_OPUX); + m_ui->importTypeList->item(2)->setData(Qt::UserRole, ImportWizard::IMPORT_OPVAULT); + m_ui->importTypeList->item(3)->setData(Qt::UserRole, ImportWizard::IMPORT_BITWARDEN); + m_ui->importTypeList->item(4)->setData(Qt::UserRole, ImportWizard::IMPORT_PROTONPASS); + m_ui->importTypeList->item(5)->setData(Qt::UserRole, ImportWizard::IMPORT_REMOTE); + m_ui->importTypeList->item(6)->setData(Qt::UserRole, ImportWizard::IMPORT_KEEPASS1); + + connect(m_ui->importTypeList, &QListWidget::currentItemChanged, this, &ImportWizardPageSelect::itemSelected); + m_ui->importTypeList->setCurrentRow(0); + + connect(m_ui->importFileButton, &QAbstractButton::clicked, this, &ImportWizardPageSelect::chooseImportFile); + connect(m_ui->keyFileButton, &QAbstractButton::clicked, this, &ImportWizardPageSelect::chooseKeyFile); + connect(m_ui->existingDatabaseRadio, &QRadioButton::toggled, this, [this](bool state) { + m_ui->existingDatabaseChoice->setEnabled(state); + }); + + updateDatabaseChoices(); + + m_ui->downloadCommandHelpButton->setIcon(icons()->icon("system-help")); + connect(m_ui->downloadCommandHelpButton, &QToolButton::clicked, this, [] { + QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs/KeePassXC_UserGuide#_remote_database_support")); + }); + + connect(m_ui->importFileEdit, &QLineEdit::textChanged, this, &QWizardPage::completeChanged); + connect(m_ui->downloadCommand, &QLineEdit::textChanged, this, &QWizardPage::completeChanged); + + registerField("ImportType", this); + registerField("ImportFile", m_ui->importFileEdit); + registerField("ImportIntoType", m_ui->importIntoGroupBox); // This is intentional + registerField("ImportInto", m_ui->importIntoLabel); // This is intentional + registerField("ImportPassword", m_ui->passwordEdit, "text", "textChanged"); + registerField("ImportKeyFile", m_ui->keyFileEdit); + registerField("DownloadCommand", m_ui->downloadCommand); + registerField("DownloadInput", m_ui->downloadCommandInput, "plainText", "textChanged"); +} + +ImportWizardPageSelect::~ImportWizardPageSelect() +{ +} + +void ImportWizardPageSelect::initializePage() +{ + setField("ImportType", m_ui->importTypeList->currentItem()->data(Qt::UserRole).toInt()); + adjustSize(); +} + +bool ImportWizardPageSelect::validatePage() +{ + if (m_ui->existingDatabaseRadio->isChecked()) { + if (m_ui->existingDatabaseChoice->currentIndex() == -1) { + return false; + } + setField("ImportIntoType", ImportWizard::EXISTING_DATABASE); + setField("ImportInto", m_ui->existingDatabaseChoice->currentData()); + } else if (m_ui->temporaryDatabaseRadio->isChecked()) { + setField("ImportIntoType", ImportWizard::TEMPORARY_DATABASE); + setField("ImportInto", {}); + } else { + setField("ImportIntoType", ImportWizard::NEW_DATABASE); + setField("ImportInto", {}); + } + + return true; +} + +bool ImportWizardPageSelect::isComplete() const +{ + if (field("ImportType").toInt() == ImportWizard::IMPORT_REMOTE) { + return !field("DownloadCommand").toString().isEmpty(); + } + return !field("ImportFile").toString().isEmpty(); +} + +void ImportWizardPageSelect::itemSelected(QListWidgetItem* current, QListWidgetItem* previous) +{ + Q_UNUSED(previous) + + if (!current) { + setCredentialState(false); + return; + } + + m_ui->importFileEdit->clear(); + m_ui->passwordEdit->clear(); + m_ui->keyFileEdit->clear(); + + auto type = current->data(Qt::UserRole).toInt(); + setField("ImportType", type); + switch (type) { + // Unencrypted types + case ImportWizard::IMPORT_CSV: + case ImportWizard::IMPORT_OPUX: + case ImportWizard::IMPORT_PROTONPASS: + setCredentialState(false); + setDownloadCommand(false); + break; + // Password may be required + case ImportWizard::IMPORT_BITWARDEN: + case ImportWizard::IMPORT_OPVAULT: + setCredentialState(true); + setDownloadCommand(false); + break; + // Password and/or Key File may be required + case ImportWizard::IMPORT_KEEPASS1: + setCredentialState(true, true); + setDownloadCommand(false); + break; + case ImportWizard::IMPORT_REMOTE: + setCredentialState(true, true); + setDownloadCommand(true); + break; + default: + Q_ASSERT(false); + } +} + +void ImportWizardPageSelect::updateDatabaseChoices() const +{ + m_ui->existingDatabaseChoice->clear(); + auto mainWindow = getMainWindow(); + if (mainWindow) { + for (auto dbWidget : mainWindow->getOpenDatabases()) { + // Remove all connections + disconnect(dbWidget, nullptr, this, nullptr); + + // Skip over locked databases + if (dbWidget->isLocked()) { + continue; + } + + connect(dbWidget, &DatabaseWidget::databaseLocked, this, &ImportWizardPageSelect::updateDatabaseChoices); + connect(dbWidget, &DatabaseWidget::databaseModified, this, &ImportWizardPageSelect::updateDatabaseChoices); + + // Enable the selection of an existing database + m_ui->existingDatabaseRadio->setEnabled(true); + m_ui->existingDatabaseRadio->setToolTip(""); + + // Add a separator between databases + if (m_ui->existingDatabaseChoice->count() > 0) { + m_ui->existingDatabaseChoice->insertSeparator(m_ui->existingDatabaseChoice->count()); + } + + // Add the root group as a special line item + auto db = dbWidget->database(); + m_ui->existingDatabaseChoice->addItem( + QString("%1 (%2)").arg(dbWidget->displayName(), db->rootGroup()->name()), + QList() << db->uuid() << db->rootGroup()->uuid()); + + if (dbWidget->isVisible()) { + m_ui->existingDatabaseChoice->setCurrentIndex(m_ui->existingDatabaseChoice->count() - 1); + } + + // Add remaining groups + for (const auto& group : db->rootGroup()->groupsRecursive(false)) { + if (!group->isRecycled()) { + auto path = group->hierarchy(); + path.removeFirst(); + m_ui->existingDatabaseChoice->addItem(QString(" / %1").arg(path.join(" / ")), + QList() << db->uuid() << group->uuid()); + } + } + } + } + + if (m_ui->existingDatabaseChoice->count() == 0) { + m_ui->existingDatabaseRadio->setEnabled(false); + m_ui->newDatabaseRadio->setChecked(true); + } +} + +void ImportWizardPageSelect::chooseImportFile() +{ + QString file; +#ifndef Q_OS_MACOS + // OPVault is a folder except on macOS + if (field("ImportType").toInt() == ImportWizard::IMPORT_OPVAULT) { + file = fileDialog()->getExistingDirectory(this, tr("Open OPVault"), QDir::homePath()); + } else { +#endif + file = fileDialog()->getOpenFileName(this, tr("Select import file"), QDir::homePath(), importFileFilter()); +#ifndef Q_OS_MACOS + } +#endif + + if (!file.isEmpty()) { + m_ui->importFileEdit->setText(file); + } +} + +void ImportWizardPageSelect::chooseKeyFile() +{ + auto filter = QString("%1 (*);;%2 (*.keyx; *.key)").arg(tr("All files"), tr("Key files")); + auto file = fileDialog()->getOpenFileName(this, tr("Select key file"), QDir::homePath(), filter); + if (!file.isEmpty()) { + m_ui->keyFileEdit->setText(file); + } +} + +void ImportWizardPageSelect::setCredentialState(bool passwordEnabled, bool keyFileEnable) +{ + bool passwordStateChanged = m_ui->passwordLabel->isVisible() != passwordEnabled; + m_ui->passwordLabel->setVisible(passwordEnabled); + m_ui->passwordEdit->setVisible(passwordEnabled); + + bool keyFileStateChanged = m_ui->keyFileLabel->isVisible() != keyFileEnable; + m_ui->keyFileLabel->setVisible(keyFileEnable); + m_ui->keyFileEdit->setVisible(keyFileEnable); + m_ui->keyFileButton->setVisible(keyFileEnable); + + // Workaround Qt bug where the wizard window is not updated when the internal layout changes + if (window()) { + int height = window()->height(); + if (passwordStateChanged) { + auto diff = m_ui->passwordEdit->height() + m_ui->inputFields->layout()->spacing(); + height += passwordEnabled ? diff : -diff; + } + if (keyFileStateChanged) { + auto diff = m_ui->keyFileEdit->height() + m_ui->inputFields->layout()->spacing(); + height += keyFileEnable ? diff : -diff; + } + window()->resize(window()->width(), height); + } +} + +void ImportWizardPageSelect::setDownloadCommand(bool downloadCommandEnabled) +{ + bool downloadCommandStateChanged = m_ui->downloadCommandLabel->isVisible() != downloadCommandEnabled; + m_ui->downloadCommandLabel->setVisible(downloadCommandEnabled); + m_ui->downloadCommand->setVisible(downloadCommandEnabled); + m_ui->downloadCommandInputLabel->setVisible(downloadCommandEnabled); + m_ui->downloadCommandInput->setVisible(downloadCommandEnabled); + m_ui->downloadCommandHelpButton->setVisible(downloadCommandEnabled); + + m_ui->temporaryDatabaseRadio->setVisible(downloadCommandEnabled); + + m_ui->importFileLabel->setVisible(!downloadCommandEnabled); + m_ui->importFileEdit->setVisible(!downloadCommandEnabled); + m_ui->importFileButton->setVisible(!downloadCommandEnabled); + + // Workaround Qt bug where the wizard window is not updated when the internal layout changes + if (window()) { + int height = window()->height(); + if (downloadCommandStateChanged) { + auto diff = m_ui->downloadCommand->height() + m_ui->downloadCommandInput->height() + + m_ui->temporaryDatabaseRadio->height() + m_ui->inputFields->layout()->spacing(); + height += downloadCommandEnabled ? diff : -diff; + } + window()->resize(window()->width(), height); + } +} + +QString ImportWizardPageSelect::importFileFilter() +{ + switch (field("ImportType").toInt()) { + case ImportWizard::IMPORT_CSV: + return QString("%1 (*.csv);;%2 (*)").arg(tr("Comma Separated Values"), tr("All files")); + case ImportWizard::IMPORT_OPUX: + return QString("%1 (*.1pux)").arg(tr("1Password Export")); + case ImportWizard::IMPORT_BITWARDEN: + return QString("%1 (*.json)").arg(tr("Bitwarden JSON Export")); + case ImportWizard::IMPORT_PROTONPASS: + return QString("%1 (*.json)").arg(tr("Proton Pass JSON Export")); + case ImportWizard::IMPORT_OPVAULT: + return QString("%1 (*.opvault)").arg(tr("1Password Vault")); + case ImportWizard::IMPORT_KEEPASS1: + return QString("%1 (*.kdb)").arg(tr("KeePass1 Database")); + default: + return {}; + } +} diff --git a/src/gui/wizard/ImportWizardPageSelect.h b/src/gui/wizard/ImportWizardPageSelect.h new file mode 100644 index 000000000..5c4024ea5 --- /dev/null +++ b/src/gui/wizard/ImportWizardPageSelect.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_IMPORTWIZARDPAGESELECT_H +#define KEEPASSXC_IMPORTWIZARDPAGESELECT_H + +#include +#include + +class QListWidgetItem; + +namespace Ui +{ + class ImportWizardPageSelect; +} + +class ImportWizardPageSelect : public QWizardPage +{ + Q_OBJECT + +public: + explicit ImportWizardPageSelect(QWidget* parent = nullptr); + Q_DISABLE_COPY(ImportWizardPageSelect) + ~ImportWizardPageSelect() override; + + void initializePage() override; + bool validatePage() override; + bool isComplete() const override; + +private slots: + void itemSelected(QListWidgetItem* current, QListWidgetItem* previous); + void chooseImportFile(); + void chooseKeyFile(); + void updateDatabaseChoices() const; + +private: + QString importFileFilter(); + void setCredentialState(bool passwordEnabled, bool keyFileEnable = false); + void setDownloadCommand(bool downloadCommandEnabled); + + QScopedPointer m_ui; +}; + +#endif diff --git a/src/gui/wizard/ImportWizardPageSelect.ui b/src/gui/wizard/ImportWizardPageSelect.ui new file mode 100644 index 000000000..ca37fec71 --- /dev/null +++ b/src/gui/wizard/ImportWizardPageSelect.ui @@ -0,0 +1,331 @@ + + + ImportWizardPageSelect + + + + 0 + 0 + 500 + 388 + + + + Form + + + Import File Selection + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 500 + 125 + + + + QAbstractScrollArea::AdjustToContents + + + QAbstractItemView::NoEditTriggers + + + true + + + QAbstractItemView::SelectRows + + + Qt::ElideNone + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 10 + + + + + + + + + 0 + 0 + + + + + 400 + 0 + + + + + QLayout::SetMinimumSize + + + + + Import File: + + + + + + + + + + + + Browse… + + + + + + + + + Password: + + + + + + + + + + Key File: + + + + + + + + + + + + Browse… + + + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 15 + + + + + + + + Import Into: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + 0 + 0 + + + + + 0 + 60 + + + + + + + + QLayout::SetMinimumSize + + + 6 + + + 6 + + + 6 + + + 6 + + + + + New Database + + + true + + + + + + + + + false + + + No unlocked databases available + + + Existing Database: + + + + + + + false + + + + + + + + + Temporary Database + + + + + + + + + + Command: + + + + + + + + + e.g.: "sftp user@hostname" or "scp user@hostname:DatabaseOnRemote.kdbx {TEMP_DATABASE}" + + + + + + + + + + + + + + + + Input: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + e.g.: +get DatabaseOnRemote.kdbx {TEMP_DATABASE} +exit +--- +{TEMP_DATABASE} is used as placeholder to store the database in a temporary location +The command has to exit. In case of `sftp` as last commend `exit` has to be sent + + + + + + + + + + + Qt::Vertical + + + QSizePolicy::MinimumExpanding + + + + 20 + 40 + + + + + + + + + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    + 1 +
    +
    + + +
    diff --git a/src/gui/wizard/NewDatabaseWizard.cpp b/src/gui/wizard/NewDatabaseWizard.cpp index 03bede632..7394e1fc5 100644 --- a/src/gui/wizard/NewDatabaseWizard.cpp +++ b/src/gui/wizard/NewDatabaseWizard.cpp @@ -63,9 +63,7 @@ NewDatabaseWizard::NewDatabaseWizard(QWidget* parent) pageFrame->setPalette(framePalette); } -NewDatabaseWizard::~NewDatabaseWizard() -{ -} +NewDatabaseWizard::~NewDatabaseWizard() = default; bool NewDatabaseWizard::validateCurrentPage() { diff --git a/src/gui/wizard/NewDatabaseWizardPage.cpp b/src/gui/wizard/NewDatabaseWizardPage.cpp index dd2d69d39..17dcaa673 100644 --- a/src/gui/wizard/NewDatabaseWizardPage.cpp +++ b/src/gui/wizard/NewDatabaseWizardPage.cpp @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -27,13 +27,9 @@ NewDatabaseWizardPage::NewDatabaseWizardPage(QWidget* parent) , m_ui(new Ui::NewDatabaseWizardPage()) { m_ui->setupUi(this); - - connect(m_ui->advancedSettingsButton, SIGNAL(clicked()), SLOT(toggleAdvancedSettings())); } -NewDatabaseWizardPage::~NewDatabaseWizardPage() -{ -} +NewDatabaseWizardPage::~NewDatabaseWizardPage() = default; /** * Set the database settings page widget for this wizard page. @@ -45,7 +41,6 @@ void NewDatabaseWizardPage::setPageWidget(DatabaseSettingsWidget* page) { m_pageWidget = page; m_ui->pageContent->setWidget(m_pageWidget); - m_ui->advancedSettingsButton->setVisible(m_pageWidget->hasAdvancedMode()); } /** @@ -74,7 +69,7 @@ void NewDatabaseWizardPage::initializePage() return; } - m_pageWidget->load(m_db); + m_pageWidget->loadSettings(m_db); } bool NewDatabaseWizardPage::validatePage() @@ -84,25 +79,7 @@ bool NewDatabaseWizardPage::validatePage() return false; } - bool valid = m_pageWidget->save(); + bool valid = m_pageWidget->saveSettings(); m_pageWidget->uninitialize(); return valid; } - -/** - * Toggle settings page widget between simple and advanced mode. - */ -void NewDatabaseWizardPage::toggleAdvancedSettings() -{ - if (!m_pageWidget || !m_pageWidget->hasAdvancedMode()) { - return; - } - - if (m_pageWidget->advancedMode()) { - m_pageWidget->setAdvancedMode(false); - m_ui->advancedSettingsButton->setText(tr("Advanced Settings")); - } else { - m_pageWidget->setAdvancedMode(true); - m_ui->advancedSettingsButton->setText(tr("Simple Settings")); - } -} diff --git a/src/gui/wizard/NewDatabaseWizardPage.h b/src/gui/wizard/NewDatabaseWizardPage.h index 185e6f8ca..2e26cfd10 100644 --- a/src/gui/wizard/NewDatabaseWizardPage.h +++ b/src/gui/wizard/NewDatabaseWizardPage.h @@ -47,9 +47,6 @@ public: void initializePage() override; bool validatePage() override; -public slots: - void toggleAdvancedSettings(); - protected: QPointer m_pageWidget; QSharedPointer m_db; diff --git a/src/gui/wizard/NewDatabaseWizardPage.ui b/src/gui/wizard/NewDatabaseWizardPage.ui index a91b653d0..1f347d059 100644 --- a/src/gui/wizard/NewDatabaseWizardPage.ui +++ b/src/gui/wizard/NewDatabaseWizardPage.ui @@ -25,7 +25,7 @@ Here you can adjust the database encryption settings. Don't worry, you can change them later in the database settings. - + @@ -66,49 +66,12 @@ QScrollArea > QWidget > QScrollBar { background: 1; } 0 0 560 - 349 + 392 - - - - Qt::Vertical - - - - 20 - 6 - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Advanced Settings - - - - - diff --git a/src/gui/wizard/NewDatabaseWizardPageDatabaseKey.cpp b/src/gui/wizard/NewDatabaseWizardPageDatabaseKey.cpp index 3cd2abd31..b8847a141 100644 --- a/src/gui/wizard/NewDatabaseWizardPageDatabaseKey.cpp +++ b/src/gui/wizard/NewDatabaseWizardPageDatabaseKey.cpp @@ -27,6 +27,4 @@ NewDatabaseWizardPageDatabaseKey::NewDatabaseWizardPageDatabaseKey(QWidget* pare setSubTitle(tr("A set of credentials known only to you that protects your database.")); } -NewDatabaseWizardPageDatabaseKey::~NewDatabaseWizardPageDatabaseKey() -{ -} +NewDatabaseWizardPageDatabaseKey::~NewDatabaseWizardPageDatabaseKey() = default; diff --git a/src/gui/wizard/NewDatabaseWizardPageEncryption.cpp b/src/gui/wizard/NewDatabaseWizardPageEncryption.cpp index 743f7bcc2..d97abf1f4 100644 --- a/src/gui/wizard/NewDatabaseWizardPageEncryption.cpp +++ b/src/gui/wizard/NewDatabaseWizardPageEncryption.cpp @@ -28,6 +28,4 @@ NewDatabaseWizardPageEncryption::NewDatabaseWizardPageEncryption(QWidget* parent "Don't worry, you can change them later in the database settings.")); } -NewDatabaseWizardPageEncryption::~NewDatabaseWizardPageEncryption() -{ -} +NewDatabaseWizardPageEncryption::~NewDatabaseWizardPageEncryption() = default; diff --git a/src/gui/wizard/NewDatabaseWizardPageMetaData.cpp b/src/gui/wizard/NewDatabaseWizardPageMetaData.cpp index f4e2712fb..309895703 100644 --- a/src/gui/wizard/NewDatabaseWizardPageMetaData.cpp +++ b/src/gui/wizard/NewDatabaseWizardPageMetaData.cpp @@ -27,6 +27,4 @@ NewDatabaseWizardPageMetaData::NewDatabaseWizardPageMetaData(QWidget* parent) setSubTitle(tr("Please fill in the display name and an optional description for your new database:")); } -NewDatabaseWizardPageMetaData::~NewDatabaseWizardPageMetaData() -{ -} \ No newline at end of file +NewDatabaseWizardPageMetaData::~NewDatabaseWizardPageMetaData() = default; \ No newline at end of file diff --git a/src/keeshare/CMakeLists.txt b/src/keeshare/CMakeLists.txt index a108b784b..5fe739b36 100644 --- a/src/keeshare/CMakeLists.txt +++ b/src/keeshare/CMakeLists.txt @@ -2,7 +2,6 @@ if(WITH_XC_KEESHARE) set(keeshare_SOURCES SettingsPageKeeShare.cpp SettingsWidgetKeeShare.cpp - DatabaseSettingsPageKeeShare.cpp DatabaseSettingsWidgetKeeShare.cpp group/EditGroupWidgetKeeShare.cpp group/EditGroupPageKeeShare.cpp @@ -13,9 +12,7 @@ if(WITH_XC_KEESHARE) ShareObserver.cpp ) - find_package(Minizip REQUIRED) - add_library(keeshare STATIC ${keeshare_SOURCES}) - target_link_libraries(keeshare PUBLIC Qt5::Core Qt5::Widgets ${BOTAN2_LIBRARIES} ${ZLIB_LIBRARIES} PRIVATE ${MINIZIP_LIBRARIES}) + target_link_libraries(keeshare PUBLIC Qt5::Core Qt5::Widgets ${BOTAN_LIBRARIES} ${ZLIB_LIBRARIES} PRIVATE ${MINIZIP_LIBRARIES}) include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) endif(WITH_XC_KEESHARE) diff --git a/src/keeshare/DatabaseSettingsPageKeeShare.cpp b/src/keeshare/DatabaseSettingsPageKeeShare.cpp deleted file mode 100644 index f197c3e66..000000000 --- a/src/keeshare/DatabaseSettingsPageKeeShare.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (C) 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 . - */ - -#include "DatabaseSettingsPageKeeShare.h" - -#include "core/Database.h" -#include "gui/Icons.h" -#include "keeshare/DatabaseSettingsWidgetKeeShare.h" - -QString DatabaseSettingsPageKeeShare::name() -{ - return "KeeShare"; -} - -QIcon DatabaseSettingsPageKeeShare::icon() -{ - return icons()->icon("preferences-system-network-sharing"); -} - -QWidget* DatabaseSettingsPageKeeShare::createWidget() -{ - return new DatabaseSettingsWidgetKeeShare(); -} - -void DatabaseSettingsPageKeeShare::loadSettings(QWidget* widget, QSharedPointer db) -{ - DatabaseSettingsWidgetKeeShare* settingsWidget = reinterpret_cast(widget); - settingsWidget->loadSettings(db); -} - -void DatabaseSettingsPageKeeShare::saveSettings(QWidget* widget) -{ - DatabaseSettingsWidgetKeeShare* settingsWidget = reinterpret_cast(widget); - settingsWidget->saveSettings(); -} diff --git a/src/keeshare/DatabaseSettingsWidgetKeeShare.cpp b/src/keeshare/DatabaseSettingsWidgetKeeShare.cpp index e72a86384..c0fdc4985 100644 --- a/src/keeshare/DatabaseSettingsWidgetKeeShare.cpp +++ b/src/keeshare/DatabaseSettingsWidgetKeeShare.cpp @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -36,7 +36,7 @@ DatabaseSettingsWidgetKeeShare::~DatabaseSettingsWidgetKeeShare() { } -void DatabaseSettingsWidgetKeeShare::loadSettings(QSharedPointer db) +void DatabaseSettingsWidgetKeeShare::loadSettings(const QSharedPointer& db) { m_db = db; diff --git a/src/keeshare/DatabaseSettingsWidgetKeeShare.h b/src/keeshare/DatabaseSettingsWidgetKeeShare.h index bebc0feeb..765bc3a36 100644 --- a/src/keeshare/DatabaseSettingsWidgetKeeShare.h +++ b/src/keeshare/DatabaseSettingsWidgetKeeShare.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 KeePassXC Team + * Copyright (C) 2023 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 @@ -37,7 +37,7 @@ public: explicit DatabaseSettingsWidgetKeeShare(QWidget* parent = nullptr); ~DatabaseSettingsWidgetKeeShare(); - void loadSettings(QSharedPointer db); + void loadSettings(const QSharedPointer& db); void saveSettings(); private: diff --git a/src/keeshare/ShareExport.cpp b/src/keeshare/ShareExport.cpp index d43ef73cb..1a64ccde0 100644 --- a/src/keeshare/ShareExport.cpp +++ b/src/keeshare/ShareExport.cpp @@ -53,7 +53,7 @@ namespace continue; } // We could do more sophisticated **** trying to point the reference to the next in-scope reference - // but those cases with high propability constructed examples and very rare in real usage + // but those cases with high probability constructed examples and very rare in real usage const auto* sourceReference = sourceDb->rootGroup()->findEntryByUuid(targetEntry->uuid()); const auto resolvedValue = sourceReference->resolveMultiplePlaceholders(standardValue); targetEntry->setUpdateTimeinfo(false); @@ -92,8 +92,7 @@ namespace key->addKey(QSharedPointer::create(reference.password)); targetDb->setKey(key); - auto* obsoleteRoot = targetDb->rootGroup(); - targetDb->setRootGroup(targetRoot); + auto obsoleteRoot = targetDb->setRootGroup(targetRoot); delete obsoleteRoot; targetDb->metadata()->setName(sourceRoot->name()); @@ -141,7 +140,7 @@ namespace { if (key.key->algo_name() == "RSA") { try { - Botan::PK_Signer signer(*key.key, "EMSA3(SHA-256)"); + Botan::PK_Signer signer(*key.key, *randomGen()->getRng(), "EMSA3(SHA-256)"); signer.update(reinterpret_cast(data.constData()), data.size()); auto s = signer.signature(*randomGen()->getRng()); @@ -173,7 +172,7 @@ ShareObserver::Result ShareExport::intoContainer(const QString& resolvedPath, KeePass2Writer writer; if (!writer.writeDatabase(&buffer, targetDb.data())) { - qWarning("Serializing export dabase failed: %s.", writer.errorString().toLatin1().data()); + qWarning("Serializing export database failed: %s.", writer.errorString().toLatin1().data()); return {reference.path, ShareObserver::Result::Error, writer.errorString()}; } @@ -202,7 +201,7 @@ ShareObserver::Result ShareExport::intoContainer(const QString& resolvedPath, } else { QString error; if (!targetDb->saveAs(resolvedPath, Database::Atomic, {}, &error)) { - qWarning("Exporting dabase failed: %s.", error.toLatin1().data()); + qWarning("Exporting database failed: %s.", error.toLatin1().data()); return {resolvedPath, ShareObserver::Result::Error, error}; } } diff --git a/src/keeshare/ShareImport.cpp b/src/keeshare/ShareImport.cpp index eb93912e7..da978423f 100644 --- a/src/keeshare/ShareImport.cpp +++ b/src/keeshare/ShareImport.cpp @@ -80,10 +80,12 @@ ShareObserver::Result ShareImport::containerInto(const QString& resolvedPath, auto key = QSharedPointer::create(); key->addKey(QSharedPointer::create(reference.password)); auto sourceDb = QSharedPointer::create(); + sourceDb->setEmitModified(false); if (!reader.readDatabase(&buffer, key, sourceDb.data())) { qCritical("Error while parsing the database: %s", qPrintable(reader.errorString())); return {reference.path, ShareObserver::Result::Error, reader.errorString()}; } + sourceDb->setEmitModified(true); qDebug("Synchronize %s %s with %s", qPrintable(reference.path), @@ -92,6 +94,7 @@ ShareObserver::Result ShareImport::containerInto(const QString& resolvedPath, Merger merger(sourceDb->rootGroup(), targetGroup); merger.setForcedMergeMode(Group::Synchronize); + merger.setSkipDatabaseCustomData(true); auto changelist = merger.merge(); if (!changelist.isEmpty()) { return {reference.path, ShareObserver::Result::Success, ShareImport::tr("Successful import")}; diff --git a/src/keeshare/ShareObserver.cpp b/src/keeshare/ShareObserver.cpp index ac1c44baa..5a0da292d 100644 --- a/src/keeshare/ShareObserver.cpp +++ b/src/keeshare/ShareObserver.cpp @@ -54,6 +54,7 @@ ShareObserver::ShareObserver(QSharedPointer db, QObject* parent) ShareObserver::~ShareObserver() { + m_db->disconnect(this); } void ShareObserver::deinitialize() diff --git a/src/keeshare/group/EditGroupWidgetKeeShare.ui b/src/keeshare/group/EditGroupWidgetKeeShare.ui index 9b87f963f..857ba61c8 100644 --- a/src/keeshare/group/EditGroupWidgetKeeShare.ui +++ b/src/keeshare/group/EditGroupWidgetKeeShare.ui @@ -51,9 +51,9 @@
    - + - + 0 0 @@ -64,12 +64,12 @@ 0 + + Qt::StrongFocus + Password field - - QLineEdit::Password - @@ -190,9 +190,9 @@ - PasswordEdit - QLineEdit -
    gui/PasswordEdit.h
    + PasswordWidget + QWidget +
    gui/PasswordWidget.h
    1
    diff --git a/src/keys/ChallengeResponseKey.cpp b/src/keys/ChallengeResponseKey.cpp index 6502e3714..eb52b7d09 100644 --- a/src/keys/ChallengeResponseKey.cpp +++ b/src/keys/ChallengeResponseKey.cpp @@ -30,7 +30,7 @@ ChallengeResponseKey::ChallengeResponseKey(YubiKeySlot keySlot) QByteArray ChallengeResponseKey::rawKey() const { - return QByteArray(m_key.data(), m_key.size()); + return {m_key.data(), static_cast(m_key.size())}; } void ChallengeResponseKey::setRawKey(const QByteArray&) diff --git a/src/keys/CompositeKey.cpp b/src/keys/CompositeKey.cpp index 0fdb2b32f..705491667 100644 --- a/src/keys/CompositeKey.cpp +++ b/src/keys/CompositeKey.cpp @@ -169,6 +169,36 @@ void CompositeKey::addKey(const QSharedPointer& key) m_keys.append(key); } +/** + * Get the \link Key with the specified ID. + * + * @param keyId the ID of the key to get. + */ +QSharedPointer CompositeKey::getKey(const QUuid keyId) const +{ + for (const QSharedPointer& key : m_keys) { + if (key->uuid() == keyId) { + return key; + } + } + return {}; +} + +/** + * Get the \link ChallengeResponseKey with the specified ID. + * + * @param keyId the ID of the key to get. + */ +QSharedPointer CompositeKey::getChallengeResponseKey(const QUuid keyId) const +{ + for (const QSharedPointer& key : m_challengeResponseKeys) { + if (key->uuid() == keyId) { + return key; + } + } + return {}; +} + /** * @return list of Keys which are part of this CompositeKey */ diff --git a/src/keys/CompositeKey.h b/src/keys/CompositeKey.h index 8db385c2c..451f88e4f 100644 --- a/src/keys/CompositeKey.h +++ b/src/keys/CompositeKey.h @@ -43,6 +43,8 @@ public: bool challenge(const QByteArray& seed, QByteArray& result, QString* error = nullptr) const; void addKey(const QSharedPointer& key); + QSharedPointer getKey(const QUuid keyType) const; + QSharedPointer getChallengeResponseKey(const QUuid keyType) const; const QList>& keys() const; void addChallengeResponseKey(const QSharedPointer& key); diff --git a/src/keys/FileKey.cpp b/src/keys/FileKey.cpp index b50ffb30a..167b0462d 100644 --- a/src/keys/FileKey.cpp +++ b/src/keys/FileKey.cpp @@ -161,7 +161,7 @@ bool FileKey::load(const QString& fileName, QString* errorMsg) */ QByteArray FileKey::rawKey() const { - return QByteArray(m_key.data(), m_key.size()); + return {m_key.data(), int(m_key.size())}; } void FileKey::setRawKey(const QByteArray& data) diff --git a/src/keys/FileKey.h b/src/keys/FileKey.h index 795f03bdb..65cd955a7 100644 --- a/src/keys/FileKey.h +++ b/src/keys/FileKey.h @@ -19,6 +19,7 @@ #ifndef KEEPASSX_FILEKEY_H #define KEEPASSX_FILEKEY_H +#include #include #include "keys/Key.h" diff --git a/src/keys/PasswordKey.cpp b/src/keys/PasswordKey.cpp index 60006dc30..7e0670647 100644 --- a/src/keys/PasswordKey.cpp +++ b/src/keys/PasswordKey.cpp @@ -44,7 +44,7 @@ QByteArray PasswordKey::rawKey() const if (!m_isInitialized) { return {}; } - return QByteArray(m_key.data(), m_key.size()); + return {m_key.data(), int(m_key.size())}; } void PasswordKey::setRawKey(const QByteArray& data) diff --git a/src/keys/drivers/YubiKey.cpp b/src/keys/drivers/YubiKey.cpp index f735c5dba..c07bcc072 100644 --- a/src/keys/drivers/YubiKey.cpp +++ b/src/keys/drivers/YubiKey.cpp @@ -20,10 +20,13 @@ #include "YubiKeyInterfacePCSC.h" #include "YubiKeyInterfaceUSB.h" +#include +#include #include +QMutex YubiKey::s_interfaceMutex; + YubiKey::YubiKey() - : m_interfaces_detect_mutex(QMutex::Recursive) { int num_interfaces = 0; @@ -70,78 +73,48 @@ bool YubiKey::isInitialized() bool YubiKey::findValidKeys() { - bool found = false; - if (m_interfaces_detect_mutex.tryLock(1000)) { - found |= YubiKeyInterfaceUSB::instance()->findValidKeys(); - found |= YubiKeyInterfacePCSC::instance()->findValidKeys(); - m_interfaces_detect_mutex.unlock(); - } - return found; + QMutexLocker lock(&s_interfaceMutex); + + findValidKeys(lock); + + return !m_usbKeys.isEmpty() || !m_pcscKeys.isEmpty(); +} + +void YubiKey::findValidKeys(const QMutexLocker& locker) +{ + // Check QMutexLocker since version 6.4 + Q_UNUSED(locker); + + m_connectedKeys = 0; + m_usbKeys = YubiKeyInterfaceUSB::instance()->findValidKeys(m_connectedKeys); + m_pcscKeys = YubiKeyInterfacePCSC::instance()->findValidKeys(m_connectedKeys); } void YubiKey::findValidKeysAsync() { - QtConcurrent::run([this] { - bool found = findValidKeys(); - emit detectComplete(found); - }); + QtConcurrent::run([this] { emit detectComplete(findValidKeys()); }); } -QList YubiKey::foundKeys() +YubiKey::KeyMap YubiKey::foundKeys() { - QList foundKeys; - - auto keys = YubiKeyInterfaceUSB::instance()->foundKeys(); - QList handledSerials = keys.uniqueKeys(); - for (auto serial : handledSerials) { - for (const auto& key : keys.values(serial)) { - foundKeys.append({serial, key.first}); - } - } - - keys = YubiKeyInterfacePCSC::instance()->foundKeys(); - for (auto serial : keys.uniqueKeys()) { - // Ignore keys that were detected on USB interface already - if (handledSerials.contains(serial)) { - continue; - } - - for (const auto& key : keys.values(serial)) { - foundKeys.append({serial, key.first}); - } - } + QMutexLocker lock(&s_interfaceMutex); + KeyMap foundKeys = m_usbKeys; + foundKeys.unite(m_pcscKeys); return foundKeys; } -QString YubiKey::getDisplayName(YubiKeySlot slot) +int YubiKey::connectedKeys() { - QString name; - name.clear(); + QMutexLocker lock(&s_interfaceMutex); - if (YubiKeyInterfaceUSB::instance()->hasFoundKey(slot)) { - name += YubiKeyInterfaceUSB::instance()->getDisplayName(slot); - } - - if (YubiKeyInterfacePCSC::instance()->hasFoundKey(slot)) { - // In some cases, the key might present on two interfaces - // This should usually never happen, because the PCSC interface - // filters the "virtual yubikey reader device". - if (!name.isNull()) { - name += " = "; - } - name += YubiKeyInterfacePCSC::instance()->getDisplayName(slot); - } - - if (!name.isNull()) { - return name; - } - - return tr("%1 No interface, slot %2").arg(QString::number(slot.first), QString::number(slot.second)); + return m_connectedKeys; } QString YubiKey::errorMessage() { + QMutexLocker lock(&s_interfaceMutex); + QString error; error.clear(); if (!m_error.isNull()) { @@ -177,11 +150,13 @@ QString YubiKey::errorMessage() */ bool YubiKey::testChallenge(YubiKeySlot slot, bool* wouldBlock) { - if (YubiKeyInterfaceUSB::instance()->hasFoundKey(slot)) { + QMutexLocker lock(&s_interfaceMutex); + + if (m_usbKeys.contains(slot)) { return YubiKeyInterfaceUSB::instance()->testChallenge(slot, wouldBlock); } - if (YubiKeyInterfacePCSC::instance()->hasFoundKey(slot)) { + if (m_pcscKeys.contains(slot)) { return YubiKeyInterfacePCSC::instance()->testChallenge(slot, wouldBlock); } @@ -200,23 +175,25 @@ bool YubiKey::testChallenge(YubiKeySlot slot, bool* wouldBlock) YubiKey::ChallengeResult YubiKey::challenge(YubiKeySlot slot, const QByteArray& challenge, Botan::secure_vector& response) { + QMutexLocker lock(&s_interfaceMutex); + m_error.clear(); // Make sure we tried to find available keys - if (foundKeys().isEmpty()) { - findValidKeys(); + if (m_usbKeys.isEmpty() && m_pcscKeys.isEmpty()) { + findValidKeys(lock); } - if (YubiKeyInterfaceUSB::instance()->hasFoundKey(slot)) { + if (m_usbKeys.contains(slot)) { return YubiKeyInterfaceUSB::instance()->challenge(slot, challenge, response); } - if (YubiKeyInterfacePCSC::instance()->hasFoundKey(slot)) { + if (m_pcscKeys.contains(slot)) { return YubiKeyInterfacePCSC::instance()->challenge(slot, challenge, response); } m_error = tr("Could not find interface for hardware key with serial number %1. Please connect it to continue.") .arg(slot.first); - return YubiKey::ChallengeResult::YCR_ERROR; + return ChallengeResult::YCR_ERROR; } diff --git a/src/keys/drivers/YubiKey.h b/src/keys/drivers/YubiKey.h index 312dea897..5578fd8df 100644 --- a/src/keys/drivers/YubiKey.h +++ b/src/keys/drivers/YubiKey.h @@ -20,9 +20,11 @@ #define KEEPASSX_YUBIKEY_H #include +#include #include #include #include + #include typedef QPair YubiKeySlot; @@ -36,6 +38,8 @@ class YubiKey : public QObject Q_OBJECT public: + using KeyMap = QMap; + enum class ChallengeResult : int { YCR_ERROR = 0, @@ -49,8 +53,8 @@ public: bool findValidKeys(); void findValidKeysAsync(); - QList foundKeys(); - QString getDisplayName(YubiKeySlot slot); + KeyMap foundKeys(); + int connectedKeys(); ChallengeResult challenge(YubiKeySlot slot, const QByteArray& challenge, Botan::secure_vector& response); bool testChallenge(YubiKeySlot slot, bool* wouldBlock = nullptr); @@ -80,12 +84,20 @@ signals: private: explicit YubiKey(); + void findValidKeys(const QMutexLocker& locker); + static YubiKey* m_instance; QTimer m_interactionTimer; bool m_initialized = false; QString m_error; - QMutex m_interfaces_detect_mutex; + + static QMutex s_interfaceMutex; + + KeyMap m_usbKeys; + KeyMap m_pcscKeys; + + int m_connectedKeys = 0; Q_DISABLE_COPY(YubiKey) }; diff --git a/src/keys/drivers/YubiKeyInterface.cpp b/src/keys/drivers/YubiKeyInterface.cpp index fe7f984b7..5f7487a91 100644 --- a/src/keys/drivers/YubiKeyInterface.cpp +++ b/src/keys/drivers/YubiKeyInterface.cpp @@ -19,10 +19,7 @@ #include "YubiKeyInterface.h" YubiKeyInterface::YubiKeyInterface() - : m_mutex(QMutex::Recursive) { - m_interactionTimer.setSingleShot(true); - m_interactionTimer.setInterval(300); } bool YubiKeyInterface::isInitialized() const @@ -30,36 +27,6 @@ bool YubiKeyInterface::isInitialized() const return m_initialized; } -QMultiMap> YubiKeyInterface::foundKeys() -{ - return m_foundKeys; -} - -bool YubiKeyInterface::hasFoundKey(YubiKeySlot slot) -{ - // A serial number of 0 implies use the first key - if (slot.first == 0 && !m_foundKeys.isEmpty()) { - return true; - } - - for (const auto& key : m_foundKeys.values(slot.first)) { - if (slot.second == key.first) { - return true; - } - } - return false; -} - -QString YubiKeyInterface::getDisplayName(YubiKeySlot slot) -{ - for (const auto& key : m_foundKeys.values(slot.first)) { - if (slot.second == key.first) { - return key.second; - } - } - return tr("%1 Invalid slot specified - %2").arg(QString::number(slot.first), QString::number(slot.second)); -} - QString YubiKeyInterface::errorMessage() { return m_error; diff --git a/src/keys/drivers/YubiKeyInterface.h b/src/keys/drivers/YubiKeyInterface.h index 6a7294616..276f520a6 100644 --- a/src/keys/drivers/YubiKeyInterface.h +++ b/src/keys/drivers/YubiKeyInterface.h @@ -20,7 +20,6 @@ #define KEEPASSX_YUBIKEY_INTERFACE_H #include "YubiKey.h" - #include /** @@ -32,11 +31,8 @@ class YubiKeyInterface : public QObject public: bool isInitialized() const; - QMultiMap> foundKeys(); - bool hasFoundKey(YubiKeySlot slot); - QString getDisplayName(YubiKeySlot slot); - virtual bool findValidKeys() = 0; + virtual YubiKey::KeyMap findValidKeys(int& connectedKeys) = 0; virtual YubiKey::ChallengeResult challenge(YubiKeySlot slot, const QByteArray& challenge, Botan::secure_vector& response) = 0; virtual bool testChallenge(YubiKeySlot slot, bool* wouldBlock) = 0; @@ -60,7 +56,6 @@ signals: protected: explicit YubiKeyInterface(); - virtual YubiKey::ChallengeResult performChallenge(void* key, int slot, bool mayBlock, @@ -68,10 +63,6 @@ protected: Botan::secure_vector& response) = 0; virtual bool performTestChallenge(void* key, int slot, bool* wouldBlock) = 0; - QMultiMap> m_foundKeys; - - QMutex m_mutex; - QTimer m_interactionTimer; bool m_initialized = false; QString m_error; diff --git a/src/keys/drivers/YubiKeyInterfacePCSC.cpp b/src/keys/drivers/YubiKeyInterfacePCSC.cpp index e871d63d4..765d3d0d8 100644 --- a/src/keys/drivers/YubiKeyInterfacePCSC.cpp +++ b/src/keys/drivers/YubiKeyInterfacePCSC.cpp @@ -20,6 +20,8 @@ #include "core/Tools.h" #include "crypto/Random.h" +#include + // MSYS2 does not define these macros // So set them to the value used by pcsc-lite #ifndef MAX_ATR_SIZE @@ -70,7 +72,8 @@ namespace rv = SCardListReaders(context, nullptr, nullptr, &dwReaders); // On windows, USB hot-plugging causes the underlying API server to die // So on every USB unplug event, the API context has to be recreated - if (rv == SCARD_E_SERVICE_STOPPED) { + // On Linux, restarting the pcsc daemon causes the API server to die as well + if (rv == SCARD_E_SERVICE_STOPPED || rv == SCARD_E_NO_SERVICE) { // Dont care if the release works since the handle might be broken SCardReleaseContext(context); rv = SCardEstablishContext(SCARD_SCOPE_SYSTEM, nullptr, nullptr, &context); @@ -107,7 +110,7 @@ namespace rv = SCardListReaders(context, nullptr, mszReaders, &dwReaders); if (rv == SCARD_S_SUCCESS) { char* readhead = mszReaders; - // Names are seperated by a null byte + // Names are separated by a null byte // The list is terminated by two null bytes while (*readhead != '\0') { QString reader = QString::fromUtf8(readhead); @@ -242,23 +245,68 @@ namespace if (rv == SCARD_S_SUCCESS) { // Write to and read from the card // pioRecvPci is nullptr because we do not expect any PCI response header + const SCUINT dwRecvBufferSize = dwRecvLength; rv = SCardTransmit(handle, pioSendPci, pbSendBuffer, dwSendLength, nullptr, pbRecvBuffer, &dwRecvLength); + + if (dwRecvLength < 2) { + // Any valid response should be at least 2 bytes (response status) + // However the protocol itself could fail + return SCARD_E_UNEXPECTED; + } + + uint8_t SW1 = pbRecvBuffer[dwRecvLength - 2]; + // Check for the MoreDataAvailable SW1 code. If present, send GetResponse command repeatedly, until success + // SW, or filling the receiving buffer. + if (SW1 == SW_MORE_DATA_HIGH) { + while (true) { + if (dwRecvBufferSize < dwRecvLength) { + // No free buffer space remaining + return SCARD_E_UNEXPECTED; + } + // Overwrite Status Word in the receiving buffer + dwRecvLength -= 2; + SCUINT dwRecvLength_sr = dwRecvBufferSize - dwRecvLength; // at least 2 bytes for SW are available + const uint8_t bRecvDataSize = + qBound(static_cast(0), dwRecvLength_sr - 2, static_cast(255)); + uint8_t pbSendBuffer_sr[] = {CLA_ISO, INS_GET_RESPONSE, 0, 0, bRecvDataSize}; + rv = SCardTransmit(handle, + pioSendPci, + pbSendBuffer_sr, + sizeof pbSendBuffer_sr, + nullptr, + pbRecvBuffer + dwRecvLength, + &dwRecvLength_sr); + + // Check if any new data are received. Break if the smart card's status is other than success, + // or no new bytes were received. + if (!(rv == SCARD_S_SUCCESS && dwRecvLength_sr >= 2)) { + break; + } + + dwRecvLength += dwRecvLength_sr; + SW1 = pbRecvBuffer[dwRecvLength - 2]; + // Break the loop if there is no continuation status + if (SW1 != SW_MORE_DATA_HIGH) { + break; + } + } + } + if (rv == SCARD_S_SUCCESS) { if (dwRecvLength < 2) { // Any valid response should be at least 2 bytes (response status) // However the protocol itself could fail rv = SCARD_E_UNEXPECTED; } else { - if (pbRecvBuffer[dwRecvLength - 2] == SW_OK_HIGH && pbRecvBuffer[dwRecvLength - 1] == SW_OK_LOW) { + const uint8_t SW_HIGH = pbRecvBuffer[dwRecvLength - 2]; + const uint8_t SW_LOW = pbRecvBuffer[dwRecvLength - 1]; + if (SW_HIGH == SW_OK_HIGH && SW_LOW == SW_OK_LOW) { rv = SCARD_S_SUCCESS; - } else if (pbRecvBuffer[dwRecvLength - 2] == SW_PRECOND_HIGH - && pbRecvBuffer[dwRecvLength - 1] == SW_PRECOND_LOW) { + } else if (SW_HIGH == SW_PRECOND_HIGH && SW_LOW == SW_PRECOND_LOW) { // This happens if the key requires eg. a button press or if the applet times out // Solution: Re-present the card to the reader rv = SCARD_W_CARD_NOT_AUTHENTICATED; - } else if ((pbRecvBuffer[dwRecvLength - 2] == SW_NOTFOUND_HIGH - && pbRecvBuffer[dwRecvLength - 1] == SW_NOTFOUND_LOW) - || pbRecvBuffer[dwRecvLength - 2] == SW_UNSUP_HIGH) { + } else if ((SW_HIGH == SW_NOTFOUND_HIGH && SW_LOW == SW_NOTFOUND_LOW) || SW_HIGH == SW_UNSUP_HIGH) { // This happens eg. during a select command when the AID is not found rv = SCARD_E_FILE_NOT_FOUND; } else { @@ -285,9 +333,10 @@ namespace auto pbSendBuffer = new uint8_t[5 + handle.second.size()]; memcpy(pbSendBuffer, pbSendBuffer_head, 5); memcpy(pbSendBuffer + 5, handle.second.constData(), handle.second.size()); - uint8_t pbRecvBuffer[12] = { + // Give it more space in case custom implementations have longer answer to select + uint8_t pbRecvBuffer[64] = { 0}; // 3 bytes version, 1 byte program counter, other stuff for various implementations, 2 bytes status - SCUINT dwRecvLength = 12; + SCUINT dwRecvLength = sizeof pbRecvBuffer; auto rv = transmit(handle.first, pbSendBuffer, 5 + handle.second.size(), pbRecvBuffer, dwRecvLength); @@ -420,40 +469,6 @@ namespace return SCARD_E_NO_SMARTCARD; } - /*** - * @brief Reads the status of a key - * - * The status is used for the firmware version only atm. - * - * @param handle Smartcard handle and applet ID bytestring pair - * @param version The firmware version in [major, minor, patch] format - * - * @return SCARD_S_SUCCESS on success - */ - RETVAL getStatus(const SCardAID& handle, uint8_t version[3]) - { - // Ensure the transmission is retransmitted after card resets - return transactRetry(handle.first, [&handle, &version]() { - auto rv = selectApplet(handle); - - // Ensure that the card is always selected before sending the command - if (rv != SCARD_S_SUCCESS) { - return rv; - } - - uint8_t pbSendBuffer[5] = {CLA_ISO, INS_STATUS, 0, 0, 6}; - uint8_t pbRecvBuffer[8] = {0}; // 4 bytes serial, 2 bytes other stuff, 2 bytes status - SCUINT dwRecvLength = 8; - - rv = transmit(handle.first, pbSendBuffer, 5, pbRecvBuffer, dwRecvLength); - if (rv == SCARD_S_SUCCESS && dwRecvLength >= 3) { - memcpy(version, pbRecvBuffer, 3); - } - - return rv; - }); - } - /*** * @brief Performs a challenge-response transmission * @@ -498,7 +513,6 @@ namespace return rv; }); } - } // namespace YubiKeyInterfacePCSC::YubiKeyInterfacePCSC() @@ -529,19 +543,17 @@ YubiKeyInterfacePCSC* YubiKeyInterfacePCSC::instance() return m_instance; } -bool YubiKeyInterfacePCSC::findValidKeys() +YubiKey::KeyMap YubiKeyInterfacePCSC::findValidKeys(int& connectedKeys) { m_error.clear(); if (!isInitialized()) { - return false; + return {}; } - // Remove all known keys - m_foundKeys.clear(); + + YubiKey::KeyMap foundKeys; // Connect to each reader and look for cards - auto readers_list = getReaders(m_sc_context); - foreach (const QString& reader_name, readers_list) { - + for (const auto& reader_name : getReaders(m_sc_context)) { /* Some Yubikeys present their PCSC interface via USB as well Although this would not be a problem in itself, we filter these connections because in USB mode, @@ -562,65 +574,74 @@ bool YubiKeyInterfacePCSC::findValidKeys() &hCard, &dwActiveProtocol); - if (rv == SCARD_S_SUCCESS) { - // Read the potocol and the ATR record - char pbReader[MAX_READERNAME] = {0}; - SCUINT dwReaderLen = sizeof(pbReader); - SCUINT dwState = 0; - SCUINT dwProt = SCARD_PROTOCOL_UNDEFINED; - uint8_t pbAtr[MAX_ATR_SIZE] = {0}; - SCUINT dwAtrLen = sizeof(pbAtr); + if (rv != SCARD_S_SUCCESS) { + // Cannot connect to the reader + continue; + } - rv = SCardStatus(hCard, pbReader, &dwReaderLen, &dwState, &dwProt, pbAtr, &dwAtrLen); - if (rv == SCARD_S_SUCCESS && (dwProt == SCARD_PROTOCOL_T0 || dwProt == SCARD_PROTOCOL_T1)) { - // Find which AID to use - SCardAID satr; - if (findAID(hCard, m_aid_codes, satr)) { - // Build the UI name using the display name found in the ATR map - QByteArray atr(reinterpret_cast(pbAtr), dwAtrLen); - QString name("Unknown Key"); - if (m_atr_names.contains(atr)) { - name = m_atr_names.value(atr); - } - // Add the firmware version and the serial number - uint8_t version[3] = {0}; - getStatus(satr, version); - name += - QString(" v%1.%2.%3") - .arg(QString::number(version[0]), QString::number(version[1]), QString::number(version[2])); + auto finally = qScopeGuard([hCard]() { SCardDisconnect(hCard, SCARD_LEAVE_CARD); }); - unsigned int serial = 0; - getSerial(satr, serial); + // Read the protocol and the ATR record + char pbReader[MAX_READERNAME] = {0}; + SCUINT dwReaderLen = sizeof(pbReader); + SCUINT dwState = 0; + SCUINT dwProt = SCARD_PROTOCOL_UNDEFINED; + uint8_t pbAtr[MAX_ATR_SIZE] = {0}; + SCUINT dwAtrLen = sizeof(pbAtr); - /* This variable indicates that the key is locked / timed out. - When using the key via NFC, the user has to re-present the key to clear the timeout. - Also, the key can be programmatically reset (see below). - When using the key via USB (where the Yubikey presents as a PCSC reader in itself), - the non-HMAC-SHA1 slots (eg. OTP) are incorrectly recognized as locked HMAC-SHA1 slots. - Due to this conundrum, we exclude "locked" keys from the key enumeration, - but only if the reader is the "virtual yubikey reader device". - This also has the nice side effect of de-duplicating interfaces when a key - Is connected via USB and also accessible via PCSC */ - bool wouldBlock = false; - /* When the key is used via NFC, the lock state / time-out is cleared when - the smartcard connection is re-established / the applet is selected - so the next call to performTestChallenge actually clears the lock. - Due to this the key is unlocked, and we display it as such. - When the key times out in the time between the key listing and - the database unlock /save, an interaction request will be displayed. */ - for (int slot = 1; slot <= 2; ++slot) { - if (performTestChallenge(&satr, slot, &wouldBlock)) { - auto display = tr("(PCSC) %1 [%2] Challenge-Response - Slot %3") - .arg(name, QString::number(serial), QString::number(slot)); - m_foundKeys.insert(serial, {slot, display}); - } - } + rv = SCardStatus(hCard, pbReader, &dwReaderLen, &dwState, &dwProt, pbAtr, &dwAtrLen); + if (rv != SCARD_S_SUCCESS || (dwProt != SCARD_PROTOCOL_T0 && dwProt != SCARD_PROTOCOL_T1)) { + // Could not read the ATR record or the protocol is not supported + continue; + } + + // Find which AID to use + SCardAID satr; + if (findAID(hCard, m_aid_codes, satr)) { + // Build the UI name using the display name found in the ATR map + QByteArray atr(reinterpret_cast(pbAtr), dwAtrLen); + QString name("Unknown Key"); + if (m_atr_names.contains(atr)) { + name = m_atr_names.value(atr); + } + + unsigned int serial = 0; + getSerial(satr, serial); + + ++connectedKeys; + + /* This variable indicates that the key is locked / timed out. + When using the key via NFC, the user has to re-present the key to clear the timeout. + Also, the key can be programmatically reset (see below). + When using the key via USB (where the Yubikey presents as a PCSC reader in itself), + the non-HMAC-SHA1 slots (eg. OTP) are incorrectly recognized as locked HMAC-SHA1 slots. + Due to this conundrum, we exclude "locked" keys from the key enumeration, + but only if the reader is the "virtual yubikey reader device". + This also has the nice side effect of de-duplicating interfaces when a key + Is connected via USB and also accessible via PCSC */ + bool wouldBlock = false; + /* When the key is used via NFC, the lock state / time-out is cleared when + the smartcard connection is re-established / the applet is selected + so the next call to performTestChallenge actually clears the lock. + Due to this the key is unlocked, and we display it as such. + When the key times out in the time between the key listing and + the database unlock /save, an interaction request will be displayed. */ + for (int slot = 1; slot <= 2; ++slot) { + if (performTestChallenge(&satr, slot, &wouldBlock)) { + auto display = + tr("(NFC) %1 [%2] - Slot %3, %4", "YubiKey display fields") + .arg(name, + QString::number(serial), + QString::number(slot), + wouldBlock ? tr("Press", "USB Challenge-Response Key interaction request") + : tr("Passive", "USB Challenge-Response Key no interaction required")); + foundKeys.insert({serial, slot}, display); } } } } - return !m_foundKeys.isEmpty(); + return foundKeys; } bool YubiKeyInterfacePCSC::testChallenge(YubiKeySlot slot, bool* wouldBlock) @@ -661,12 +682,6 @@ YubiKeyInterfacePCSC::challenge(YubiKeySlot slot, const QByteArray& challenge, B return YubiKey::ChallengeResult::YCR_ERROR; } - // Try to grab a lock for 1 second, fail out if not possible - if (!m_mutex.tryLock(1000)) { - m_error = tr("Hardware key is currently in use."); - return YubiKey::ChallengeResult::YCR_ERROR; - } - // Try for a few seconds to find the key emit challengeStarted(); @@ -683,10 +698,9 @@ YubiKeyInterfacePCSC::challenge(YubiKeySlot slot, const QByteArray& challenge, B So we wait for the user to re-present it to clear the time-out This condition usually only happens when the key times out after the initial key listing, because performTestChallenge implicitly - resets the key (see commnt above) */ + resets the key (see comment above) */ if (ret == YubiKey::ChallengeResult::YCR_SUCCESS) { emit challengeCompleted(); - m_mutex.unlock(); return ret; } } @@ -700,7 +714,6 @@ YubiKeyInterfacePCSC::challenge(YubiKeySlot slot, const QByteArray& challenge, B .arg(slot.first) + m_error; emit challengeCompleted(); - m_mutex.unlock(); return YubiKey::ChallengeResult::YCR_ERROR; } @@ -728,7 +741,7 @@ YubiKey::ChallengeResult YubiKeyInterfacePCSC::performChallenge(void* key, * configurations even work, some docs say avoid it. * * In fact, the Yubikey always assumes the last byte (nr. 64) - * and all bytes of the same value preceeding it to be padding. + * and all bytes of the same value preceding it to be padding. * This does not conform fully to PKCS7, because the the actual value * of the padding bytes is ignored. */ diff --git a/src/keys/drivers/YubiKeyInterfacePCSC.h b/src/keys/drivers/YubiKeyInterfacePCSC.h index 17e282111..b91efe38e 100644 --- a/src/keys/drivers/YubiKeyInterfacePCSC.h +++ b/src/keys/drivers/YubiKeyInterfacePCSC.h @@ -24,6 +24,7 @@ #define CLA_ISO 0x00 #define INS_SELECT 0xA4 +#define INS_GET_RESPONSE 0xC0 #define SEL_APP_AID 0x04 #define INS_API_REQ 0x01 #define INS_STATUS 0x03 @@ -37,6 +38,7 @@ #define SW_NOTFOUND_HIGH 0x6A #define SW_NOTFOUND_LOW 0x82 #define SW_UNSUP_HIGH 0x6D +#define SW_MORE_DATA_HIGH 0x61 typedef QPair SCardAID; @@ -50,7 +52,7 @@ class YubiKeyInterfacePCSC : public YubiKeyInterface public: static YubiKeyInterfacePCSC* instance(); - bool findValidKeys() override; + YubiKey::KeyMap findValidKeys(int& connectedKeys) override; YubiKey::ChallengeResult challenge(YubiKeySlot slot, const QByteArray& challenge, Botan::secure_vector& response) override; @@ -69,12 +71,13 @@ private: Botan::secure_vector& response) override; bool performTestChallenge(void* key, int slot, bool* wouldBlock) override; - SCARDCONTEXT m_sc_context; + SCARDCONTEXT m_sc_context{}; // This list contains all the AID (application identifier) codes for the Yubikey HMAC-SHA1 applet // and also for compatible third-party ones. They will be tried one by one. const QList m_aid_codes = { QByteArrayLiteral("\xA0\x00\x00\x05\x27\x20\x01"), // Yubico Yubikey + QByteArrayLiteral("\xA0\x00\x00\x05\x27\x21\x01"), // Yubico Yubikey OATH AID / Nitrokey 3 Secrets App QByteArrayLiteral("\xA0\x00\x00\x06\x17\x00\x07\x53\x4E\xAF\x01") // Fidesmo development }; @@ -83,16 +86,13 @@ private: const QHash m_atr_names = { // Yubico Yubikeys {QByteArrayLiteral("\x3B\x8C\x80\x01\x59\x75\x62\x69\x6B\x65\x79\x4E\x45\x4F\x72\x33\x58"), "YubiKey NEO"}, - {QByteArrayLiteral("\x3B\x8C\x80\x01\x59\x75\x62\x69\x6B\x65\x79\x4E\x45\x4F\x72\xFF\x94"), - "YubiKey NEO via NFC"}, - {QByteArrayLiteral("\x3B\x8D\x80\x01\x80\x73\xC0\x21\xC0\x57\x59\x75\x62\x69\x4B\x65\x79\xF9"), - "YubiKey 5 NFC via NFC"}, - {QByteArrayLiteral("\x3B\x8D\x80\x01\x80\x73\xC0\x21\xC0\x57\x59\x75\x62\x69\x4B\x65\xFF\x7F"), - "YubiKey 5 NFC via ACR122U"}, + {QByteArrayLiteral("\x3B\x8C\x80\x01\x59\x75\x62\x69\x6B\x65\x79\x4E\x45\x4F\x72\xFF\x94"), "YubiKey NEO"}, + {QByteArrayLiteral("\x3B\x8D\x80\x01\x80\x73\xC0\x21\xC0\x57\x59\x75\x62\x69\x4B\x65\x79\xF9"), "YubiKey 5"}, + {QByteArrayLiteral("\x3B\x8D\x80\x01\x80\x73\xC0\x21\xC0\x57\x59\x75\x62\x69\x4B\x65\xFF\x7F"), "YubiKey 5"}, {QByteArrayLiteral("\x3B\xF8\x13\x00\x00\x81\x31\xFE\x15\x59\x75\x62\x69\x6B\x65\x79\x34\xD4"), - "YubiKey 4 OTP+CCID"}, + "YubiKey 4 - OTP+CCID"}, {QByteArrayLiteral("\x3B\xF9\x18\x00\xFF\x81\x31\xFE\x45\x50\x56\x5F\x4A\x33\x41\x30\x34\x30\x40"), - "YubiKey NEO OTP+U2F+CCID (PKI)"}, + "YubiKey NEO - OTP+U2F+CCID (PKI)"}, {QByteArrayLiteral("\x3B\xFA\x13\x00\x00\x81\x31\xFE\x15\x59\x75\x62\x69\x6B\x65\x79\x4E\x45\x4F\xA6"), "YubiKey NEO"}, {QByteArrayLiteral("\x3B\xFC\x13\x00\x00\x81\x31\xFE\x15\x59\x75\x62\x69\x6B\x65\x79\x4E\x45\x4F\x72\x33\xE1"), @@ -101,12 +101,18 @@ private: "YubiKey NEO"}, {QByteArrayLiteral( "\x3B\xFD\x13\x00\x00\x81\x31\xFE\x15\x80\x73\xC0\x21\xC0\x57\x59\x75\x62\x69\x4B\x65\x79\x40"), - "YubiKey 5 NFC (PKI)"}, + "YubiKey 5 (PKI)"}, {QByteArrayLiteral( "\x3B\xFD\x13\x00\x00\x81\x31\xFE\x45\x41\x37\x30\x30\x36\x43\x47\x20\x32\x34\x32\x52\x31\xD6"), "YubiKey NEO (token)"}, // Other tokens implementing the Yubikey challenge-response protocol - {QByteArrayLiteral("\x3B\x80\x80\x01\x01"), "Fidesmo Card 2.0"}}; + {QByteArrayLiteral("\x3B\x80\x80\x01\x01"), "Fidesmo Card 2.0"}, + {QByteArrayLiteral("\x3B\x8A\x80\x01\x00\x31\xC1\x73\xC8\x40\x00\x00\x90\x00\x90"), "VivoKey Apex"}, + {QByteArrayLiteral("\x3B\x8D\x80\x01\x00\x31\xC1\x73\xC8\x40\x00\x52\xA5\x10\x00\x90\x00\x70"), + "Dangerous Things FlexSecure"}, + {QByteArrayLiteral("\x3b\x8f\x01\x80\x5d\x4e\x69\x74\x72\x6f\x6b\x65\x79\x00\x00\x00\x00\x00\x6a"), + "Nitrokey 3"}, + }; }; #endif // KEEPASSX_YUBIKEY_INTERFACE_PCSC_H diff --git a/src/keys/drivers/YubiKeyInterfaceUSB.cpp b/src/keys/drivers/YubiKeyInterfaceUSB.cpp index ffbceeebb..a39b39dce 100644 --- a/src/keys/drivers/YubiKeyInterfaceUSB.cpp +++ b/src/keys/drivers/YubiKeyInterfaceUSB.cpp @@ -18,17 +18,23 @@ #include "YubiKeyInterfaceUSB.h" -#include "core/Tools.h" #include "crypto/Random.h" #include "thirdparty/ykcore/ykcore.h" -#include "thirdparty/ykcore/ykdef.h" #include "thirdparty/ykcore/ykstatus.h" namespace { constexpr int MAX_KEYS = 4; - YK_KEY* openKey(int index) + void closeKey(YK_KEY* key) + { + yk_close_key(key); + } + + using Yubikey = std::unique_ptr; + using YubikeyStatus = std::unique_ptr; + + Yubikey openKey(int index) { static const int vids[] = {YUBICO_VID, ONLYKEY_VID}; static const int pids[] = {YUBIKEY_PID, @@ -43,46 +49,52 @@ namespace PLUS_U2F_OTP_PID, ONLYKEY_PID}; - return yk_open_key_vid_pid(vids, sizeof(vids) / sizeof(vids[0]), pids, sizeof(pids) / sizeof(pids[0]), index); + return Yubikey{ + yk_open_key_vid_pid(vids, sizeof(vids) / sizeof(vids[0]), pids, sizeof(pids) / sizeof(pids[0]), index), + &closeKey}; } - void closeKey(YK_KEY* key) + void printError() { - yk_close_key(key); + if (yk_errno == YK_EUSBERR) { + qWarning("Hardware key USB error: %s", yk_usb_strerror()); + } else { + qWarning("Hardware key error: %s", yk_strerror(yk_errno)); + } } unsigned int getSerial(YK_KEY* key) { unsigned int serial; - yk_get_serial(key, 1, 0, &serial); + if (!yk_get_serial(key, 1, 0, &serial)) { + printError(); + return 0; + } return serial; } - YK_KEY* openKeySerial(unsigned int serial) + Yubikey openKeySerial(unsigned int serial) { for (int i = 0; i < MAX_KEYS; ++i) { - auto* yk_key = openKey(i); - if (yk_key) { + auto key = openKey(i); + if (key) { // If the provided serial number is 0, or the key matches the serial, return it - if (serial == 0 || getSerial(yk_key) == serial) { - return yk_key; + if (serial == 0 || getSerial(key.get()) == serial) { + return key; } - closeKey(yk_key); } else if (yk_errno == YK_ENOKEY) { // No more connected keys break; - } else if (yk_errno == YK_EUSBERR) { - qWarning("Hardware key USB error: %s", yk_usb_strerror()); - } else { - qWarning("Hardware key error: %s", yk_strerror(yk_errno)); } + printError(); } - return nullptr; + + return Yubikey{nullptr, &closeKey}; } + } // namespace YubiKeyInterfaceUSB::YubiKeyInterfaceUSB() - : YubiKeyInterface() { if (!yk_init()) { qDebug("YubiKey: Failed to initialize USB interface."); @@ -107,69 +119,63 @@ YubiKeyInterfaceUSB* YubiKeyInterfaceUSB::instance() return m_instance; } -bool YubiKeyInterfaceUSB::findValidKeys() +YubiKey::KeyMap YubiKeyInterfaceUSB::findValidKeys(int& connectedKeys) { m_error.clear(); if (!isInitialized()) { - return false; + return {}; } - // Remove all known keys - m_foundKeys.clear(); + YubiKey::KeyMap keyMap; // Try to detect up to 4 connected hardware keys for (int i = 0; i < MAX_KEYS; ++i) { auto yk_key = openKey(i); if (yk_key) { - auto serial = getSerial(yk_key); + auto serial = getSerial(yk_key.get()); if (serial == 0) { - closeKey(yk_key); continue; } - auto st = ykds_alloc(); - yk_get_status(yk_key, st); + ++connectedKeys; + + YubikeyStatus st{ykds_alloc(), &ykds_free}; + yk_get_status(yk_key.get(), st.get()); int vid, pid; - yk_get_key_vid_pid(yk_key, &vid, &pid); + yk_get_key_vid_pid(yk_key.get(), &vid, &pid); QString name = m_pid_names.value(pid, tr("Unknown")); - if (vid == 0x1d50) { - name = QStringLiteral("OnlyKey"); + if (vid == ONLYKEY_VID) { + name = QStringLiteral("OnlyKey %ver"); + } + if (name.contains("%ver")) { + name = name.replace("%ver", QString::number(ykds_version_major(st.get()))); } - name += QString(" v%1.%2.%3") - .arg(QString::number(ykds_version_major(st)), - QString::number(ykds_version_minor(st)), - QString::number(ykds_version_build(st))); bool wouldBlock; for (int slot = 1; slot <= 2; ++slot) { auto config = (slot == 1 ? CONFIG1_VALID : CONFIG2_VALID); - if (!(ykds_touch_level(st) & config)) { + if (!(ykds_touch_level(st.get()) & config)) { // Slot is not configured continue; } // Don't actually challenge a YubiKey Neo or below, they always require button press // if it is enabled for the slot resulting in failed detection if (pid <= NEO_OTP_U2F_CCID_PID) { - auto display = tr("(USB) %1 [%2] Configured Slot - %3") + auto display = tr("%1 [%2] - Slot %3", "YubiKey NEO display fields") .arg(name, QString::number(serial), QString::number(slot)); - m_foundKeys.insert(serial, {slot, display}); - } else if (performTestChallenge(yk_key, slot, &wouldBlock)) { + keyMap.insert({serial, slot}, display); + } else if (performTestChallenge(yk_key.get(), slot, &wouldBlock)) { auto display = - tr("(USB) %1 [%2] Challenge-Response - Slot %3 - %4") + tr("%1 [%2] - Slot %3, %4", "YubiKey display fields") .arg(name, QString::number(serial), QString::number(slot), wouldBlock ? tr("Press", "USB Challenge-Response Key interaction request") : tr("Passive", "USB Challenge-Response Key no interaction required")); - m_foundKeys.insert(serial, {slot, display}); + keyMap.insert({serial, slot}, display); } } - - ykds_free(st); - closeKey(yk_key); - - Tools::wait(100); } else if (yk_errno == YK_ENOKEY) { // No more keys are connected break; @@ -180,7 +186,7 @@ bool YubiKeyInterfaceUSB::findValidKeys() } } - return !m_foundKeys.isEmpty(); + return keyMap; } /** @@ -194,10 +200,11 @@ bool YubiKeyInterfaceUSB::findValidKeys() bool YubiKeyInterfaceUSB::testChallenge(YubiKeySlot slot, bool* wouldBlock) { bool ret = false; - auto* yk_key = openKeySerial(slot.first); + auto yk_key = openKeySerial(slot.first); if (yk_key) { - ret = performTestChallenge(yk_key, slot.second, wouldBlock); + ret = performTestChallenge(yk_key.get(), slot.second, wouldBlock); } + return ret; } @@ -233,27 +240,18 @@ YubiKeyInterfaceUSB::challenge(YubiKeySlot slot, const QByteArray& challenge, Bo return YubiKey::ChallengeResult::YCR_ERROR; } - // Try to grab a lock for 1 second, fail out if not possible - if (!m_mutex.tryLock(1000)) { - m_error = tr("Hardware key is currently in use."); - return YubiKey::ChallengeResult::YCR_ERROR; - } - - auto* yk_key = openKeySerial(slot.first); + auto yk_key = openKeySerial(slot.first); if (!yk_key) { // Key with specified serial number is not connected m_error = tr("Could not find hardware key with serial number %1. Please plug it in to continue.").arg(slot.first); - m_mutex.unlock(); return YubiKey::ChallengeResult::YCR_ERROR; } emit challengeStarted(); - auto ret = performChallenge(yk_key, slot.second, true, challenge, response); + auto ret = performChallenge(yk_key.get(), slot.second, true, challenge, response); - closeKey(yk_key); emit challengeCompleted(); - m_mutex.unlock(); return ret; } diff --git a/src/keys/drivers/YubiKeyInterfaceUSB.h b/src/keys/drivers/YubiKeyInterfaceUSB.h index 885188615..9d5835f07 100644 --- a/src/keys/drivers/YubiKeyInterfaceUSB.h +++ b/src/keys/drivers/YubiKeyInterfaceUSB.h @@ -32,8 +32,10 @@ class YubiKeyInterfaceUSB : public YubiKeyInterface public: static YubiKeyInterfaceUSB* instance(); + static constexpr int YUBICO_USB_VID = YUBICO_VID; + static constexpr int ONLYKEY_USB_VID = ONLYKEY_VID; - bool findValidKeys() override; + YubiKey::KeyMap findValidKeys(int& connectedKeys) override; YubiKey::ChallengeResult challenge(YubiKeySlot slot, const QByteArray& challenge, Botan::secure_vector& response) override; @@ -53,22 +55,22 @@ private: bool performTestChallenge(void* key, int slot, bool* wouldBlock) override; // This map provides display names for the various USB PIDs of the Yubikeys - const QHash m_pid_names = {{YUBIKEY_PID, "YubiKey 1/2"}, - {NEO_OTP_PID, "YubiKey NEO - OTP only"}, - {NEO_OTP_CCID_PID, "YubiKey NEO - OTP and CCID"}, - {NEO_CCID_PID, "YubiKey NEO - CCID only"}, - {NEO_U2F_PID, "YubiKey NEO - U2F only"}, - {NEO_OTP_U2F_PID, "YubiKey NEO - OTP and U2F"}, - {NEO_U2F_CCID_PID, "YubiKey NEO - U2F and CCID"}, - {NEO_OTP_U2F_CCID_PID, "YubiKey NEO - OTP, U2F and CCID"}, - {YK4_OTP_PID, "YubiKey 4/5 - OTP only"}, - {YK4_U2F_PID, "YubiKey 4/5 - U2F only"}, - {YK4_OTP_U2F_PID, "YubiKey 4/5 - OTP and U2F"}, - {YK4_CCID_PID, "YubiKey 4/5 - CCID only"}, - {YK4_OTP_CCID_PID, "YubiKey 4/5 - OTP and CCID"}, - {YK4_U2F_CCID_PID, "YubiKey 4/5 - U2F and CCID"}, - {YK4_OTP_U2F_CCID_PID, "YubiKey 4/5 - OTP, U2F and CCID"}, - {PLUS_U2F_OTP_PID, "YubiKey plus - OTP+U2F"}}; + const QHash m_pid_names = {{YUBIKEY_PID, "YubiKey %ver"}, + {NEO_OTP_PID, "YubiKey NEO - OTP"}, + {NEO_OTP_CCID_PID, "YubiKey NEO - OTP+CCID"}, + {NEO_CCID_PID, "YubiKey NEO - CCID"}, + {NEO_U2F_PID, "YubiKey NEO - FIDO"}, + {NEO_OTP_U2F_PID, "YubiKey NEO - OTP+FIDO"}, + {NEO_U2F_CCID_PID, "YubiKey NEO - FIDO+CCID"}, + {NEO_OTP_U2F_CCID_PID, "YubiKey NEO - OTP+FIDO+CCID"}, + {YK4_OTP_PID, "YubiKey %ver - OTP"}, + {YK4_U2F_PID, "YubiKey %ver - U2F"}, + {YK4_OTP_U2F_PID, "YubiKey %ver - OTP+FIDO"}, + {YK4_CCID_PID, "YubiKey %ver - CCID"}, + {YK4_OTP_CCID_PID, "YubiKey %ver - OTP+CCID"}, + {YK4_U2F_CCID_PID, "YubiKey %ver - FIDO+CCID"}, + {YK4_OTP_U2F_CCID_PID, "YubiKey %ver - OTP+FIDO+CCID"}, + {PLUS_U2F_OTP_PID, "YubiKey plus - OTP+FIDO"}}; }; #endif // KEEPASSX_YUBIKEY_INTERFACE_USB_H diff --git a/src/keys/drivers/YubiKeyStub.cpp b/src/keys/drivers/YubiKeyStub.cpp index 5609c4b4a..64771e77d 100644 --- a/src/keys/drivers/YubiKeyStub.cpp +++ b/src/keys/drivers/YubiKeyStub.cpp @@ -18,9 +18,7 @@ #include "YubiKey.h" -YubiKey::YubiKey() -{ -} +YubiKey::YubiKey() = default; YubiKey* YubiKey::m_instance(Q_NULLPTR); @@ -47,15 +45,14 @@ void YubiKey::findValidKeysAsync() { } -QList YubiKey::foundKeys() +YubiKey::KeyMap YubiKey::foundKeys() { return {}; } -QString YubiKey::getDisplayName(YubiKeySlot slot) +int YubiKey::connectedKeys() { - Q_UNUSED(slot); - return {}; + return 0; } QString YubiKey::errorMessage() diff --git a/src/main.cpp b/src/main.cpp index 24d891a06..2c4da4c1f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,7 +17,9 @@ */ #include +#include #include +#include #include #include "cli/Utils.h" @@ -43,14 +45,16 @@ Q_IMPORT_PLUGIN(QXcbIntegrationPlugin) #endif #endif +#ifdef Q_OS_WIN +#include +#endif + int main(int argc, char** argv) { QT_REQUIRE_VERSION(argc, argv, QT_VERSION_STR) -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); -#endif #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) && defined(Q_OS_WIN) QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough); #endif @@ -61,6 +65,12 @@ int main(int argc, char** argv) Application::setApplicationVersion(KEEPASSXC_VERSION); app.setProperty("KPXC_QUALIFIED_APPNAME", "org.keepassxc.KeePassXC"); + // HACK: Prevent long-running threads from deadlocking the program with only 1 CPU + // See https://github.com/keepassxreboot/keepassxc/issues/10391 + if (QThreadPool::globalInstance()->maxThreadCount() < 2) { + QThreadPool::globalInstance()->setMaxThreadCount(2); + } + QCommandLineParser parser; parser.setApplicationDescription(QObject::tr("KeePassXC - cross-platform password manager")); parser.addPositionalArgument( @@ -73,7 +83,8 @@ int main(int argc, char** argv) QCommandLineOption keyfileOption("keyfile", QObject::tr("key file of the database"), "keyfile"); QCommandLineOption pwstdinOption("pw-stdin", QObject::tr("read password of the database from stdin")); QCommandLineOption allowScreenCaptureOption("allow-screencapture", - QObject::tr("allow app screen recordering and screenshots")); + QObject::tr("allow screenshots and app recording (Windows/macOS)")); + QCommandLineOption startMinimized("minimized", QObject::tr("start minimized to the system tray")); QCommandLineOption helpOption = parser.addHelpOption(); QCommandLineOption versionOption = parser.addVersionOption(); @@ -84,10 +95,8 @@ int main(int argc, char** argv) parser.addOption(keyfileOption); parser.addOption(pwstdinOption); parser.addOption(debugInfoOption); - - if (osUtils->canPreventScreenCapture()) { - parser.addOption(allowScreenCaptureOption); - } + parser.addOption(allowScreenCaptureOption); + parser.addOption(startMinimized); parser.process(app); @@ -100,7 +109,7 @@ int main(int argc, char** argv) if (parser.isSet(debugInfoOption)) { QTextStream out(stdout, QIODevice::WriteOnly); QString debugInfo = Tools::debugInfo().append("\n").append(Crypto::debugInfo()); - out << debugInfo << endl; + out << debugInfo << Qt::endl; return EXIT_SUCCESS; } @@ -109,13 +118,34 @@ int main(int argc, char** argv) Config::createConfigFromFile(parser.value(configOption), parser.value(localConfigOption)); } + // Extract file names provided on the command line for opening + QStringList fileNames; +#ifdef Q_OS_WIN + // Get correct case for Windows filenames (fixes #7139) + for (const auto& file : parser.positionalArguments()) { + const auto fileInfo = QFileInfo(file); + WIN32_FIND_DATAW findFileData; + HANDLE hFind; + const wchar_t* absolutePathWchar = reinterpret_cast(fileInfo.absoluteFilePath().utf16()); + hFind = FindFirstFileW(absolutePathWchar, &findFileData); + if (hFind != INVALID_HANDLE_VALUE) { + fileNames << QString("%1/%2").arg(fileInfo.absolutePath(), QString::fromWCharArray(findFileData.cFileName)); + FindClose(hFind); + } + } +#else + for (const auto& file : parser.positionalArguments()) { + if (QFile::exists(file)) { + fileNames << QDir::toNativeSeparators(file); + } + } +#endif + // Process single instance and early exit if already running - // FIXME: this is a *mess* and it is entirely my fault. --wundrweapon - const QStringList fileNames = parser.positionalArguments(); if (app.isAlreadyRunning()) { if (parser.isSet(lockOption)) { if (app.sendLockToInstance()) { - qInfo() << QObject::tr("Locked databases.").toUtf8().constData(); + qInfo() << QObject::tr("Databases have been locked.").toUtf8().constData(); } else { qWarning() << QObject::tr("Database failed to lock.").toUtf8().constData(); return EXIT_FAILURE; @@ -130,6 +160,14 @@ int main(int argc, char** argv) return EXIT_SUCCESS; } + if (parser.isSet(lockOption)) { + qWarning() << QObject::tr("KeePassXC is not running. No open database to lock").toUtf8().constData(); + + // still return with EXIT_SUCCESS because when used within a script for ensuring that there is no unlocked + // keepass database (e.g. screen locking) we can consider it as successful + return EXIT_SUCCESS; + } + if (!Crypto::init()) { QString error = QObject::tr("Fatal error while testing the cryptographic functions."); error.append("\n"); @@ -138,50 +176,44 @@ int main(int argc, char** argv) return EXIT_FAILURE; } + Utils::setDefaultTextStreams(); + // Apply the configured theme before creating any GUI elements app.applyTheme(); -#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) QGuiApplication::setDesktopFileName(app.property("KPXC_QUALIFIED_APPNAME").toString() + QStringLiteral(".desktop")); -#endif - Application::bootstrap(); + Application::bootstrap(config()->get(Config::GUI_Language).toString()); MainWindow mainWindow; - -#ifndef QT_DEBUG - // Disable screen capture if capable and not explicitly allowed - if (osUtils->canPreventScreenCapture() && !parser.isSet(allowScreenCaptureOption)) { - // This ensures any top-level windows (Main Window, Modal Dialogs, etc.) are excluded from screenshots - QObject::connect(&app, &QGuiApplication::focusWindowChanged, &mainWindow, [&](QWindow* window) { - if (window) { - if (!osUtils->setPreventScreenCapture(window, true)) { - mainWindow.displayGlobalMessage( - QObject::tr("Warning: Failed to prevent screenshots on a top level window!"), - MessageWidget::Error); - } - } - }); - } +#ifdef Q_OS_WIN + // Qt Hack - Prevent white flicker when showing window + mainWindow.setProperty("windowOpacity", 0.0); #endif + // Disable screen capture if not explicitly allowed + // This ensures any top-level windows (Main Window, Modal Dialogs, etc.) are excluded from screenshots + mainWindow.setAllowScreenCapture(parser.isSet(allowScreenCaptureOption)); + const bool pwstdin = parser.isSet(pwstdinOption); - if (!fileNames.isEmpty() && pwstdin) { - Utils::setDefaultTextStreams(); - } for (const QString& filename : fileNames) { QString password; if (pwstdin) { // we always need consume a line of STDIN if --pw-stdin is set to clear out the // buffer for native messaging, even if the specified file does not exist QTextStream out(stdout, QIODevice::WriteOnly); - out << QObject::tr("Database password: ") << flush; + out << QObject::tr("Database password: ") << Qt::flush; password = Utils::getPassword(); } + mainWindow.openDatabase(filename, password, parser.value(keyfileOption)); + } - if (!filename.isEmpty() && QFile::exists(filename) && !filename.endsWith(".json", Qt::CaseInsensitive)) { - mainWindow.openDatabase(filename, password, parser.value(keyfileOption)); - } + // start minimized if configured + if (parser.isSet(startMinimized) || config()->get(Config::GUI_MinimizeOnStartup).toBool()) { + mainWindow.hideWindow(); + } else { + mainWindow.bringToFront(); + Application::processEvents(); } int exitCode = Application::exec(); @@ -197,5 +229,7 @@ int main(int argc, char** argv) __lsan_disable(); #endif + Utils::resetTextStreams(); + return exitCode; } diff --git a/src/core/HibpDownloader.cpp b/src/networking/HibpDownloader.cpp similarity index 99% rename from src/core/HibpDownloader.cpp rename to src/networking/HibpDownloader.cpp index 9ff181093..8b09ce2c4 100644 --- a/src/core/HibpDownloader.cpp +++ b/src/networking/HibpDownloader.cpp @@ -16,7 +16,7 @@ */ #include "HibpDownloader.h" -#include "core/NetworkManager.h" +#include "NetworkManager.h" #include #include diff --git a/src/core/HibpDownloader.h b/src/networking/HibpDownloader.h similarity index 97% rename from src/core/HibpDownloader.h rename to src/networking/HibpDownloader.h index f8e66baf3..ccdc393ff 100644 --- a/src/core/HibpDownloader.h +++ b/src/networking/HibpDownloader.h @@ -62,8 +62,6 @@ private slots: void fetchReadyRead(); private: - void fetchPassword(const QString& password); - QStringList m_pwdsToTry; // The list of remaining passwords to validate QHash> m_replies; }; diff --git a/src/core/NetworkManager.cpp b/src/networking/NetworkManager.cpp similarity index 100% rename from src/core/NetworkManager.cpp rename to src/networking/NetworkManager.cpp diff --git a/src/core/NetworkManager.h b/src/networking/NetworkManager.h similarity index 100% rename from src/core/NetworkManager.h rename to src/networking/NetworkManager.h diff --git a/src/updatecheck/UpdateChecker.cpp b/src/networking/UpdateChecker.cpp similarity index 99% rename from src/updatecheck/UpdateChecker.cpp rename to src/networking/UpdateChecker.cpp index ff2240628..ea3d435df 100644 --- a/src/updatecheck/UpdateChecker.cpp +++ b/src/networking/UpdateChecker.cpp @@ -17,10 +17,10 @@ #include "UpdateChecker.h" +#include "NetworkManager.h" #include "config-keepassx.h" #include "core/Clock.h" #include "core/Config.h" -#include "core/NetworkManager.h" #include #include diff --git a/src/updatecheck/UpdateChecker.h b/src/networking/UpdateChecker.h similarity index 100% rename from src/updatecheck/UpdateChecker.h rename to src/networking/UpdateChecker.h diff --git a/src/post_install/CMakeLists.txt b/src/post_install/CMakeLists.txt index 359c891f3..1adc4740b 100644 --- a/src/post_install/CMakeLists.txt +++ b/src/post_install/CMakeLists.txt @@ -1,5 +1,5 @@ # The install commands in this subdirectory will be executed after all the install commands in the -# current scope are ran. It is required for correct functtioning of macdeployqt. +# current scope are ran. It is required for correct functioning of macdeployqt. if(APPLE AND WITH_APP_BUNDLE) # Run macdeloyqt on the main app and any extra binaries and plugins as specified by the diff --git a/src/proxy/CMakeLists.txt b/src/proxy/CMakeLists.txt old mode 100755 new mode 100644 index 15137f5b5..be756672d --- a/src/proxy/CMakeLists.txt +++ b/src/proxy/CMakeLists.txt @@ -21,7 +21,7 @@ if(WITH_XC_BROWSER) # Alloc must be defined in a static library to prevent clashing with clang ASAN definitions add_library(proxy_alloc STATIC ../core/Alloc.cpp) - target_link_libraries(proxy_alloc PRIVATE Qt5::Core ${BOTAN2_LIBRARIES}) + target_link_libraries(proxy_alloc PRIVATE Qt5::Core ${BOTAN_LIBRARIES}) add_executable(keepassxc-proxy ${proxy_SOURCES}) target_link_libraries(keepassxc-proxy proxy_alloc Qt5::Core Qt5::Network) diff --git a/src/quickunlock/Polkit.cpp b/src/quickunlock/Polkit.cpp new file mode 100644 index 000000000..d73a7c71b --- /dev/null +++ b/src/quickunlock/Polkit.cpp @@ -0,0 +1,247 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "Polkit.h" + +#include "crypto/CryptoHash.h" +#include "crypto/Random.h" +#include "crypto/SymmetricCipher.h" +#include "gui/osutils/nixutils/NixUtils.h" + +#include +#include +#include +#include +#include + +extern "C" { +#include +} + +const QString polkit_service = "org.freedesktop.PolicyKit1"; +const QString polkit_object = "/org/freedesktop/PolicyKit1/Authority"; + +namespace +{ + QString getKeyName(const QUuid& dbUuid) + { + static const QString keyPrefix = "keepassxc_polkit_keys_"; + return keyPrefix + dbUuid.toString(); + } +} // namespace + +Polkit::Polkit() +{ + PolkitSubject::registerMetaType(); + PolkitAuthorizationResults::registerMetaType(); + + /* Note we explicitly use our own dbus path here, as the ::systemBus() method could be overridden + through an environment variable to return an alternative bus path. This bus could have an application + pretending to be polkit running on it, which could approve every authentication request + + Most Linux distros place the system bus at this exact path, so it is hard-coded. + For any other distros, this path will need to be patched before compilation. + */ + QDBusConnection bus = + QDBusConnection::connectToBus("unix:path=/run/dbus/system_bus_socket", "keepassxc_polkit_dbus"); + + m_available = bus.isConnected(); + if (!m_available) { + qDebug() << "polkit: Failed to connect to system dbus (this may be due to a non-standard dbus path)"; + return; + } + + m_available = bus.interface()->isServiceRegistered(polkit_service); + + if (!m_available) { + qDebug() << "polkit: Polkit is not registered on dbus"; + return; + } + + m_polkit.reset(new org::freedesktop::PolicyKit1::Authority(polkit_service, polkit_object, bus)); +} + +Polkit::~Polkit() +{ +} + +void Polkit::reset(const QUuid& dbUuid) +{ + m_encryptedMasterKeys.remove(dbUuid); +} + +bool Polkit::isAvailable() const +{ + return m_available; +} + +QString Polkit::errorString() const +{ + return m_error; +} + +void Polkit::reset() +{ + m_encryptedMasterKeys.clear(); +} + +bool Polkit::setKey(const QUuid& dbUuid, const QByteArray& key) +{ + reset(dbUuid); + + // Generate a random iv/key pair to encrypt the master password with + QByteArray randomKey = randomGen()->randomArray(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); + QByteArray randomIV = randomGen()->randomArray(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); + QByteArray keychainKeyValue = randomKey + randomIV; + + SymmetricCipher aes256Encrypt; + if (!aes256Encrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Encrypt, randomKey, randomIV)) { + m_error = QObject::tr("AES initialization failed"); + return false; + } + + // Encrypt the master password + QByteArray encryptedMasterKey = key; + if (!aes256Encrypt.finish(encryptedMasterKey)) { + m_error = QObject::tr("AES encrypt failed"); + qDebug() << "polkit aes encrypt failed: " << aes256Encrypt.errorString(); + return false; + } + + // Add the iv/key pair into the linux keyring + key_serial_t key_serial = add_key("user", + getKeyName(dbUuid).toStdString().c_str(), + keychainKeyValue.constData(), + keychainKeyValue.size(), + KEY_SPEC_PROCESS_KEYRING); + if (key_serial < 0) { + m_error = QObject::tr("Failed to store in Linux Keyring"); + qDebug() << "polkit keyring failed to store: " << errno; + return false; + } + + // Scrub the keys from ram + Botan::secure_scrub_memory(randomKey.data(), randomKey.size()); + Botan::secure_scrub_memory(randomIV.data(), randomIV.size()); + Botan::secure_scrub_memory(keychainKeyValue.data(), keychainKeyValue.size()); + + // Store encrypted master password and return + m_encryptedMasterKeys.insert(dbUuid, encryptedMasterKey); + return true; +} + +bool Polkit::getKey(const QUuid& dbUuid, QByteArray& key) +{ + if (!m_polkit || !hasKey(dbUuid)) { + return false; + } + + PolkitSubject subject; + subject.kind = "unix-process"; + subject.details.insert("pid", static_cast(QCoreApplication::applicationPid())); + subject.details.insert("start-time", nixUtils()->getProcessStartTime()); + + QMap details; + + auto result = m_polkit->CheckAuthorization( + subject, + "org.keepassxc.KeePassXC.unlockDatabase", + details, + 0x00000001, + // AllowUserInteraction - wait for user to authenticate + // https://www.freedesktop.org/software/polkit/docs/0.105/eggdbus-interface-org.freedesktop.PolicyKit1.Authority.html#eggdbus-enum-CheckAuthorizationFlags + ""); + + // A general error occurred + if (result.isError()) { + auto msg = result.error().message(); + m_error = QObject::tr("Polkit returned an error: %1").arg(msg); + qDebug() << "polkit returned an error: " << msg; + return false; + } + + PolkitAuthorizationResults authResult = result.value(); + if (authResult.is_authorized) { + QByteArray encryptedMasterKey = m_encryptedMasterKeys.value(dbUuid); + key_serial_t keySerial = + find_key_by_type_and_desc("user", getKeyName(dbUuid).toStdString().c_str(), KEY_SPEC_PROCESS_KEYRING); + + if (keySerial == -1) { + m_error = QObject::tr("Could not locate key in keyring"); + qDebug() << "polkit keyring failed to find: " << errno; + return false; + } + + void* keychainBuffer; + long keychainDataSize = keyctl_read_alloc(keySerial, &keychainBuffer); + + if (keychainDataSize == -1) { + m_error = QObject::tr("Could not read key in keyring"); + qDebug() << "polkit keyring failed to read: " << errno; + return false; + } + + QByteArray keychainBytes(static_cast(keychainBuffer), keychainDataSize); + + Botan::secure_scrub_memory(keychainBuffer, keychainDataSize); + free(keychainBuffer); + + QByteArray keychainKey = keychainBytes.left(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); + QByteArray keychainIv = keychainBytes.right(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); + + SymmetricCipher aes256Decrypt; + if (!aes256Decrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Decrypt, keychainKey, keychainIv)) { + m_error = QObject::tr("AES initialization failed"); + qDebug() << "polkit aes init failed"; + return false; + } + + key = encryptedMasterKey; + if (!aes256Decrypt.finish(key)) { + key.clear(); + m_error = QObject::tr("AES decrypt failed"); + qDebug() << "polkit aes decrypt failed: " << aes256Decrypt.errorString(); + return false; + } + + // Scrub the keys from ram + Botan::secure_scrub_memory(keychainKey.data(), keychainKey.size()); + Botan::secure_scrub_memory(keychainIv.data(), keychainIv.size()); + Botan::secure_scrub_memory(keychainBytes.data(), keychainBytes.size()); + Botan::secure_scrub_memory(encryptedMasterKey.data(), encryptedMasterKey.size()); + + return true; + } + + // Failed to authenticate + if (authResult.is_challenge) { + m_error = QObject::tr("No Polkit authentication agent was available"); + } else { + m_error = QObject::tr("Polkit authorization failed"); + } + + return false; +} + +bool Polkit::hasKey(const QUuid& dbUuid) const +{ + if (!m_encryptedMasterKeys.contains(dbUuid)) { + return false; + } + + return find_key_by_type_and_desc("user", getKeyName(dbUuid).toStdString().c_str(), KEY_SPEC_PROCESS_KEYRING) != -1; +} diff --git a/src/quickunlock/Polkit.h b/src/quickunlock/Polkit.h new file mode 100644 index 000000000..7dfc2db7b --- /dev/null +++ b/src/quickunlock/Polkit.h @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSX_POLKIT_H +#define KEEPASSX_POLKIT_H + +#include "QuickUnlockInterface.h" +#include "polkit_dbus.h" +#include +#include + +class Polkit : public QuickUnlockInterface +{ +public: + Polkit(); + ~Polkit() override; + + bool isAvailable() const override; + QString errorString() const override; + + bool setKey(const QUuid& dbUuid, const QByteArray& key) override; + bool getKey(const QUuid& dbUuid, QByteArray& key) override; + bool hasKey(const QUuid& dbUuid) const override; + + void reset(const QUuid& dbUuid) override; + void reset() override; + +private: + bool m_available; + QString m_error; + QHash m_encryptedMasterKeys; + + QScopedPointer m_polkit; +}; + +#endif // KEEPASSX_POLKIT_H diff --git a/src/quickunlock/PolkitDbusTypes.cpp b/src/quickunlock/PolkitDbusTypes.cpp new file mode 100644 index 000000000..a4305dc44 --- /dev/null +++ b/src/quickunlock/PolkitDbusTypes.cpp @@ -0,0 +1,45 @@ +#include "PolkitDbusTypes.h" + +void PolkitSubject::registerMetaType() +{ + qRegisterMetaType("PolkitSubject"); + qDBusRegisterMetaType(); +} + +QDBusArgument& operator<<(QDBusArgument& argument, const PolkitSubject& subject) +{ + argument.beginStructure(); + argument << subject.kind << subject.details; + argument.endStructure(); + return argument; +} + +const QDBusArgument& operator>>(const QDBusArgument& argument, PolkitSubject& subject) +{ + argument.beginStructure(); + argument >> subject.kind >> subject.details; + argument.endStructure(); + return argument; +} + +void PolkitAuthorizationResults::registerMetaType() +{ + qRegisterMetaType("PolkitAuthorizationResults"); + qDBusRegisterMetaType(); +} + +QDBusArgument& operator<<(QDBusArgument& argument, const PolkitAuthorizationResults& res) +{ + argument.beginStructure(); + argument << res.is_authorized << res.is_challenge << res.details; + argument.endStructure(); + return argument; +} + +const QDBusArgument& operator>>(const QDBusArgument& argument, PolkitAuthorizationResults& res) +{ + argument.beginStructure(); + argument >> res.is_authorized >> res.is_challenge >> res.details; + argument.endStructure(); + return argument; +} diff --git a/src/quickunlock/PolkitDbusTypes.h b/src/quickunlock/PolkitDbusTypes.h new file mode 100644 index 000000000..83eb23889 --- /dev/null +++ b/src/quickunlock/PolkitDbusTypes.h @@ -0,0 +1,36 @@ +#ifndef KEEPASSX_POLKITDBUSTYPES_H +#define KEEPASSX_POLKITDBUSTYPES_H + +#include + +class PolkitSubject +{ +public: + QString kind; + QVariantMap details; + + static void registerMetaType(); + + friend QDBusArgument& operator<<(QDBusArgument& argument, const PolkitSubject& subject); + + friend const QDBusArgument& operator>>(const QDBusArgument& argument, PolkitSubject& subject); +}; + +class PolkitAuthorizationResults +{ +public: + bool is_authorized; + bool is_challenge; + QMap details; + + static void registerMetaType(); + + friend QDBusArgument& operator<<(QDBusArgument& argument, const PolkitAuthorizationResults& subject); + + friend const QDBusArgument& operator>>(const QDBusArgument& argument, PolkitAuthorizationResults& subject); +}; + +Q_DECLARE_METATYPE(PolkitSubject); +Q_DECLARE_METATYPE(PolkitAuthorizationResults); + +#endif // KEEPASSX_POLKITDBUSTYPES_H diff --git a/src/quickunlock/QuickUnlockInterface.cpp b/src/quickunlock/QuickUnlockInterface.cpp new file mode 100644 index 000000000..0e24736e8 --- /dev/null +++ b/src/quickunlock/QuickUnlockInterface.cpp @@ -0,0 +1,81 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include "QuickUnlockInterface.h" +#include + +#if defined(Q_OS_MACOS) +#include "TouchID.h" +#define QUICKUNLOCK_IMPLEMENTATION TouchID +#elif defined(Q_CC_MSVC) +#include "WindowsHello.h" +#define QUICKUNLOCK_IMPLEMENTATION WindowsHello +#elif defined(Q_OS_LINUX) +#include "Polkit.h" +#define QUICKUNLOCK_IMPLEMENTATION Polkit +#else +#define QUICKUNLOCK_IMPLEMENTATION NoQuickUnlock +#endif + +QUICKUNLOCK_IMPLEMENTATION* quickUnlockInstance = {nullptr}; + +QuickUnlockInterface* getQuickUnlock() +{ + if (!quickUnlockInstance) { + quickUnlockInstance = new QUICKUNLOCK_IMPLEMENTATION(); + } + return quickUnlockInstance; +} + +bool NoQuickUnlock::isAvailable() const +{ + return false; +} + +QString NoQuickUnlock::errorString() const +{ + return QObject::tr("No Quick Unlock provider is available"); +} + +void NoQuickUnlock::reset() +{ +} + +bool NoQuickUnlock::setKey(const QUuid& dbUuid, const QByteArray& key) +{ + Q_UNUSED(dbUuid) + Q_UNUSED(key) + return false; +} + +bool NoQuickUnlock::getKey(const QUuid& dbUuid, QByteArray& key) +{ + Q_UNUSED(dbUuid) + Q_UNUSED(key) + return false; +} + +bool NoQuickUnlock::hasKey(const QUuid& dbUuid) const +{ + Q_UNUSED(dbUuid) + return false; +} + +void NoQuickUnlock::reset(const QUuid& dbUuid) +{ + Q_UNUSED(dbUuid) +} diff --git a/src/quickunlock/QuickUnlockInterface.h b/src/quickunlock/QuickUnlockInterface.h new file mode 100644 index 000000000..54aeb8a62 --- /dev/null +++ b/src/quickunlock/QuickUnlockInterface.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_QUICKUNLOCKINTERFACE_H +#define KEEPASSXC_QUICKUNLOCKINTERFACE_H + +#include + +class QuickUnlockInterface +{ + Q_DISABLE_COPY(QuickUnlockInterface) + +public: + QuickUnlockInterface() = default; + virtual ~QuickUnlockInterface() = default; + + virtual bool isAvailable() const = 0; + virtual QString errorString() const = 0; + + virtual bool setKey(const QUuid& dbUuid, const QByteArray& key) = 0; + virtual bool getKey(const QUuid& dbUuid, QByteArray& key) = 0; + virtual bool hasKey(const QUuid& dbUuid) const = 0; + + virtual void reset(const QUuid& dbUuid) = 0; + virtual void reset() = 0; +}; + +class NoQuickUnlock : public QuickUnlockInterface +{ +public: + bool isAvailable() const override; + QString errorString() const override; + + bool setKey(const QUuid& dbUuid, const QByteArray& key) override; + bool getKey(const QUuid& dbUuid, QByteArray& key) override; + bool hasKey(const QUuid& dbUuid) const override; + + void reset(const QUuid& dbUuid) override; + void reset() override; +}; + +QuickUnlockInterface* getQuickUnlock(); + +#endif // KEEPASSXC_QUICKUNLOCKINTERFACE_H diff --git a/src/quickunlock/TouchID.h b/src/quickunlock/TouchID.h new file mode 100644 index 000000000..74e5d9474 --- /dev/null +++ b/src/quickunlock/TouchID.h @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSX_TOUCHID_H +#define KEEPASSX_TOUCHID_H + +#include "QuickUnlockInterface.h" +#include + +class TouchID : public QuickUnlockInterface +{ +public: + bool isAvailable() const override; + QString errorString() const override; + + bool setKey(const QUuid& dbUuid, const QByteArray& passwordKey) override; + bool getKey(const QUuid& dbUuid, QByteArray& passwordKey) override; + bool hasKey(const QUuid& dbUuid) const override; + + void reset(const QUuid& dbUuid = "") override; + void reset() override; + +private: + static bool isWatchAvailable(); + static bool isTouchIdAvailable(); + static bool isPasswordFallbackPossible(); + bool setKey(const QUuid& dbUuid, const QByteArray& passwordKey, const bool ignoreTouchID); + + static void deleteKeyEntry(const QString& accountName); + static QString databaseKeyName(const QUuid& dbUuid); + + QHash m_encryptedMasterKeys; +}; + +#endif // KEEPASSX_TOUCHID_H diff --git a/src/quickunlock/TouchID.mm b/src/quickunlock/TouchID.mm new file mode 100644 index 000000000..6368d7e6b --- /dev/null +++ b/src/quickunlock/TouchID.mm @@ -0,0 +1,408 @@ +#include "quickunlock/TouchID.h" + +#include "crypto/Random.h" +#include "crypto/SymmetricCipher.h" +#include "crypto/CryptoHash.h" +#include "config-keepassx.h" + +#include + +#include +#include +#include +#include + +#include +#include + +#define TOUCH_ID_ENABLE_DEBUG_LOGS() 0 +#if TOUCH_ID_ENABLE_DEBUG_LOGS() +#define debug(...) qWarning(__VA_ARGS__) +#else +inline void debug(const char *message, ...) +{ + Q_UNUSED(message); +} +#endif + +inline std::string StatusToErrorMessage(OSStatus status) +{ + CFStringRef text = SecCopyErrorMessageString(status, NULL); + if (!text) { + return std::to_string(status); + } + + auto msg = CFStringGetCStringPtr(text, kCFStringEncodingUTF8); + std::string result; + if (msg) { + result = msg; + } + CFRelease(text); + return result; +} + +inline void LogStatusError(const char *message, OSStatus status) +{ + if (!status) { + return; + } + + std::string msg = StatusToErrorMessage(status); + debug("%s: %s", message, msg.c_str()); +} + +inline CFMutableDictionaryRef makeDictionary() { + return CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); +} + +//! Try to delete an existing keychain entry +void TouchID::deleteKeyEntry(const QString& accountName) +{ + NSString* nsAccountName = accountName.toNSString(); // The NSString is released by Qt + + // try to delete an existing entry + CFMutableDictionaryRef query = makeDictionary(); + CFDictionarySetValue(query, kSecClass, kSecClassGenericPassword); + CFDictionarySetValue(query, kSecAttrAccount, (__bridge CFStringRef) nsAccountName); + CFDictionarySetValue(query, kSecReturnData, kCFBooleanFalse); + + // get data from the KeyChain + OSStatus status = SecItemDelete(query); + LogStatusError("TouchID::deleteKeyEntry - Status deleting existing entry", status); +} + +QString TouchID::databaseKeyName(const QUuid& dbUuid) +{ + static const QString keyPrefix = "KeepassXC_TouchID_Keys_"; + return keyPrefix + dbUuid.toString(); +} + +QString TouchID::errorString() const +{ + // TODO + return ""; +} + +void TouchID::reset() +{ + m_encryptedMasterKeys.clear(); +} + + + + +bool TouchID::setKey(const QUuid& dbUuid, const QByteArray& passwordKey, const bool ignoreTouchID) +{ + if (passwordKey.isEmpty()) { + debug("TouchID::setKey - illegal arguments"); + return false; + } + + if (m_encryptedMasterKeys.contains(dbUuid)) { + debug("TouchID::setKey - Already stored key for this database"); + return true; + } + + // generate random AES 256bit key and IV + QByteArray randomKey = randomGen()->randomArray(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); + QByteArray randomIV = randomGen()->randomArray(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); + + SymmetricCipher aes256Encrypt; + if (!aes256Encrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Encrypt, randomKey, randomIV)) { + debug("TouchID::setKey - AES initialisation failed"); + return false; + } + + // encrypt and keep result in memory + QByteArray encryptedMasterKey = passwordKey; + if (!aes256Encrypt.finish(encryptedMasterKey)) { + debug("TouchID::getKey - AES encrypt failed: %s", aes256Encrypt.errorString().toUtf8().constData()); + return false; + } + + const QString keyName = databaseKeyName(dbUuid); + + deleteKeyEntry(keyName); // Try to delete the existing key entry + + // prepare adding secure entry to the macOS KeyChain + CFErrorRef error = NULL; + + // We need both runtime and compile time checks here to solve the following problems: + // - Not all flags are available in all OS versions, so we have to check it at compile time + // - Requesting Biometry/TouchID/DevicePassword when to fingerprint sensor is available will result in runtime error + SecAccessControlCreateFlags accessControlFlags = 0; +#if XC_COMPILER_SUPPORT(APPLE_BIOMETRY) + // Needs a special check to work with SecItemAdd, when TouchID is not enrolled and the flag + // is set, the method call fails with an error. But we want to still set this flag if TouchID is + // enrolled but temporarily unavailable due to closed lid + // + // At least on a Hackintosh the enrolled-check does not work, there LAErrorBiometryNotAvailable gets returned instead of + // LAErrorBiometryNotEnrolled. + // + // Thats kinda unfortunate, because now you cannot know for sure if TouchID hardware is either temporarily unavailable or not present + // at all, because LAErrorBiometryNotAvailable is used for both cases. + // + // So to make quick unlock fallbacks possible on these machines you have to try to save the key a second time without this flag, if the + // first try fails with an error. + if (!ignoreTouchID) { + // Prefer the non-deprecated flag when available + accessControlFlags = kSecAccessControlBiometryCurrentSet; + } +#elif XC_COMPILER_SUPPORT(TOUCH_ID) + if (!ignoreTouchID) { + accessControlFlags = kSecAccessControlTouchIDCurrentSet; + } +#endif + +#if XC_COMPILER_SUPPORT(WATCH_UNLOCK) + accessControlFlags = accessControlFlags | kSecAccessControlOr | kSecAccessControlWatch; +#endif + +#if XC_COMPILER_SUPPORT(TOUCH_ID) + if (isPasswordFallbackPossible()) { + accessControlFlags = accessControlFlags | kSecAccessControlOr | kSecAccessControlDevicePasscode; + } +#endif + + SecAccessControlRef sacObject = SecAccessControlCreateWithFlags( + kCFAllocatorDefault, kSecAttrAccessibleWhenUnlockedThisDeviceOnly, accessControlFlags, &error); + + if (sacObject == NULL || error != NULL) { + NSError* e = (__bridge NSError*) error; + debug("TouchID::setKey - Error creating security flags: %s", e.localizedDescription.UTF8String); + return false; + } + + NSString *accountName = keyName.toNSString(); // The NSString is released by Qt + + // prepare data (key) to be stored + QByteArray keychainKeyValue = (randomKey + randomIV).toHex(); + CFDataRef keychainValueData = + CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast(keychainKeyValue.data()), + keychainKeyValue.length(), kCFAllocatorDefault); + + CFMutableDictionaryRef attributes = makeDictionary(); + CFDictionarySetValue(attributes, kSecClass, kSecClassGenericPassword); + CFDictionarySetValue(attributes, kSecAttrAccount, (__bridge CFStringRef) accountName); + CFDictionarySetValue(attributes, kSecValueData, (__bridge CFDataRef) keychainValueData); + CFDictionarySetValue(attributes, kSecAttrSynchronizable, kCFBooleanFalse); + CFDictionarySetValue(attributes, kSecUseAuthenticationUI, kSecUseAuthenticationUIAllow); + CFDictionarySetValue(attributes, kSecAttrAccessControl, sacObject); + + // add to KeyChain + OSStatus status = SecItemAdd(attributes, NULL); + LogStatusError("TouchID::setKey - Status adding new entry", status); + + CFRelease(sacObject); + CFRelease(attributes); + + // Cleanse the key information from the memory + Botan::secure_scrub_memory(randomKey.data(), randomKey.size()); + Botan::secure_scrub_memory(randomIV.data(), randomIV.size()); + + if (status != errSecSuccess) { + return false; + } + + // memorize which database the stored key is for + m_encryptedMasterKeys.insert(dbUuid, encryptedMasterKey); + debug("TouchID::setKey - Success!"); + return true; +} + +/** + * Generates a random AES 256bit key and uses it to encrypt the PasswordKey that + * protects the database. The encrypted PasswordKey is kept in memory while the + * AES key is stored in the macOS KeyChain protected by either TouchID or Apple Watch. + */ +bool TouchID::setKey(const QUuid& dbUuid, const QByteArray& passwordKey) +{ + if (!setKey(dbUuid,passwordKey, false)) { + debug("TouchID::setKey failed with error trying fallback method without TouchID flag"); + return setKey(dbUuid, passwordKey, true); + } else { + return true; + } +} + +/** + * Checks if an encrypted PasswordKey is available for the given database, tries to + * decrypt it using the KeyChain and if successful, returns it. + */ +bool TouchID::getKey(const QUuid& dbUuid, QByteArray& passwordKey) +{ + passwordKey.clear(); + + if (!hasKey(dbUuid)) { + debug("TouchID::getKey - No stored key found"); + return false; + } + + // query the KeyChain for the AES key + CFMutableDictionaryRef query = makeDictionary(); + + const QString keyName = databaseKeyName(dbUuid); + NSString* accountName = keyName.toNSString(); // The NSString is released by Qt + NSString* touchPromptMessage = + QCoreApplication::translate("DatabaseOpenWidget", "authenticate to access the database") + .toNSString(); // The NSString is released by Qt + + CFDictionarySetValue(query, kSecClass, kSecClassGenericPassword); + CFDictionarySetValue(query, kSecAttrAccount, (__bridge CFStringRef) accountName); + CFDictionarySetValue(query, kSecReturnData, kCFBooleanTrue); + CFDictionarySetValue(query, kSecUseOperationPrompt, (__bridge CFStringRef) touchPromptMessage); + + // get data from the KeyChain + CFTypeRef dataTypeRef = NULL; + OSStatus status = SecItemCopyMatching(query, &dataTypeRef); + CFRelease(query); + + if (status == errSecUserCanceled) { + // user canceled the authentication, return true with empty key + debug("TouchID::getKey - User canceled authentication"); + return true; + } else if (status != errSecSuccess || dataTypeRef == NULL) { + LogStatusError("TouchID::getKey - key query error", status); + return false; + } + + CFDataRef valueData = static_cast(dataTypeRef); + QByteArray dataBytes = QByteArray::fromHex(QByteArray(reinterpret_cast(CFDataGetBytePtr(valueData)), + CFDataGetLength(valueData))); + CFRelease(dataTypeRef); + + // extract AES key and IV from data bytes + QByteArray key = dataBytes.left(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); + QByteArray iv = dataBytes.right(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); + + SymmetricCipher aes256Decrypt; + if (!aes256Decrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Decrypt, key, iv)) { + debug("TouchID::getKey - AES initialization failed"); + return false; + } + + // decrypt PasswordKey from memory using AES + passwordKey = m_encryptedMasterKeys[dbUuid]; + if (!aes256Decrypt.finish(passwordKey)) { + passwordKey.clear(); + debug("TouchID::getKey - AES decrypt failed: %s", aes256Decrypt.errorString().toUtf8().constData()); + return false; + } + + // Cleanse the key information from the memory + Botan::secure_scrub_memory(key.data(), key.size()); + Botan::secure_scrub_memory(iv.data(), iv.size()); + + return true; +} + +bool TouchID::hasKey(const QUuid& dbUuid) const +{ + return m_encryptedMasterKeys.contains(dbUuid); +} + +// TODO: Both functions below should probably handle the returned errors to +// provide more information on availability. E.g.: the closed laptop lid results +// in an error (because touch id is not unavailable). That error could be +// displayed to the user when we first check for availability instead of just +// hiding the checkbox. + +//! @return true if Apple Watch is available for authentication. +bool TouchID::isWatchAvailable() +{ +#if XC_COMPILER_SUPPORT(WATCH_UNLOCK) + @try { + LAContext *context = [[LAContext alloc] init]; + + LAPolicy policyCode = LAPolicyDeviceOwnerAuthenticationWithWatch; + NSError *error; + + bool canAuthenticate = [context canEvaluatePolicy:policyCode error:&error]; + [context release]; + if (error) { + debug("Apple Wach available: %d (%ld / %s / %s)", canAuthenticate, + (long)error.code, error.description.UTF8String, + error.localizedDescription.UTF8String); + } else { + debug("Apple Wach available: %d", canAuthenticate); + } + return canAuthenticate; + } @catch (NSException *) { + return false; + } +#else + return false; +#endif +} + +//! @return true if Touch ID is available for authentication. +bool TouchID::isTouchIdAvailable() +{ +#if XC_COMPILER_SUPPORT(TOUCH_ID) + @try { + LAContext *context = [[LAContext alloc] init]; + + LAPolicy policyCode = LAPolicyDeviceOwnerAuthenticationWithBiometrics; + NSError *error; + + bool canAuthenticate = [context canEvaluatePolicy:policyCode error:&error]; + [context release]; + if (error) { + debug("Touch ID available: %d (%ld / %s / %s)", canAuthenticate, + (long)error.code, error.description.UTF8String, + error.localizedDescription.UTF8String); + } else { + debug("Touch ID available: %d", canAuthenticate); + } + return canAuthenticate; + } @catch (NSException *) { + return false; + } +#else + return false; +#endif +} + +bool TouchID::isPasswordFallbackPossible() +{ +#if XC_COMPILER_SUPPORT(TOUCH_ID) + @try { + LAContext *context = [[LAContext alloc] init]; + + LAPolicy policyCode = LAPolicyDeviceOwnerAuthentication; + NSError *error; + + bool canAuthenticate = [context canEvaluatePolicy:policyCode error:&error]; + [context release]; + if (error) { + debug("Password fallback available: %d (%ld / %s / %s)", canAuthenticate, + (long)error.code, error.description.UTF8String, + error.localizedDescription.UTF8String); + } else { + debug("Password fallback available: %d", canAuthenticate); + } + return canAuthenticate; + } @catch (NSException *) { + return false; + } +#else + return false; +#endif +} + +//! @return true if either TouchID or Apple Watch is available at the moment. +bool TouchID::isAvailable() const +{ + // note: we cannot cache the check results because the configuration + // is dynamic in its nature. User can close the laptop lid or take off + // the watch, thus making one (or both) of the authentication types unavailable. + return isWatchAvailable() || isTouchIdAvailable() || isPasswordFallbackPossible(); +} + +/** + * Resets the inner state either for all or for the given database + */ +void TouchID::reset(const QUuid& dbUuid) +{ + m_encryptedMasterKeys.remove(dbUuid); +} diff --git a/src/winhello/WindowsHello.cpp b/src/quickunlock/WindowsHello.cpp similarity index 58% rename from src/winhello/WindowsHello.cpp rename to src/quickunlock/WindowsHello.cpp index 7095c72ee..890e3499a 100644 --- a/src/winhello/WindowsHello.cpp +++ b/src/quickunlock/WindowsHello.cpp @@ -41,6 +41,7 @@ using namespace Windows::Storage::Streams; namespace { const std::wstring s_winHelloKeyName{L"keepassxc_winhello"}; + int g_promptFocusCount = 0; void queueSecurityPromptFocus(int delay = 500) { @@ -48,7 +49,11 @@ namespace auto hWnd = ::FindWindowA("Credential Dialog Xaml Host", nullptr); if (hWnd) { ::SetForegroundWindow(hWnd); + } else if (++g_promptFocusCount <= 3) { + queueSecurityPromptFocus(); + return; } + g_promptFocusCount = 0; }); } @@ -59,56 +64,45 @@ namespace array_view(reinterpret_cast(challenge.data()), challenge.size())); return AsyncTask::runAndWaitForFuture([&] { - // The first time this is used a key-pair will be generated using the common name - auto result = - KeyCredentialManager::RequestCreateAsync(s_winHelloKeyName, KeyCredentialCreationOption::FailIfExists) - .get(); + try { + // The first time this is used a key-pair will be generated using the common name + auto result = KeyCredentialManager::RequestCreateAsync(s_winHelloKeyName, + KeyCredentialCreationOption::FailIfExists) + .get(); - if (result.Status() == KeyCredentialStatus::CredentialAlreadyExists) { - result = KeyCredentialManager::OpenAsync(s_winHelloKeyName).get(); - } else if (result.Status() != KeyCredentialStatus::Success) { - error = QObject::tr("Failed to create Windows Hello credential."); + if (result.Status() == KeyCredentialStatus::CredentialAlreadyExists) { + result = KeyCredentialManager::OpenAsync(s_winHelloKeyName).get(); + } else if (result.Status() != KeyCredentialStatus::Success) { + error = QObject::tr("Failed to create Windows Hello credential."); + return false; + } + + const auto signature = result.Credential().RequestSignAsync(challengeBuffer).get(); + if (signature.Status() != KeyCredentialStatus::Success) { + if (signature.Status() != KeyCredentialStatus::UserCanceled) { + error = QObject::tr("Failed to sign challenge using Windows Hello."); + } + return false; + } + + // Use the SHA-256 hash of the challenge signature as the encryption key + const auto response = signature.Result(); + CryptoHash hasher(CryptoHash::Sha256); + hasher.addData({reinterpret_cast(response.data()), static_cast(response.Length())}); + key = hasher.result(); + return true; + } catch (winrt::hresult_error const& ex) { + error = QString::fromStdString(winrt::to_string(ex.message())); return false; } - - const auto signature = result.Credential().RequestSignAsync(challengeBuffer).get(); - if (signature.Status() != KeyCredentialStatus::Success) { - error = QObject::tr("Failed to sign challenge using Windows Hello."); - return false; - } - - // Use the SHA-256 hash of the challenge signature as the encryption key - const auto response = signature.Result(); - CryptoHash hasher(CryptoHash::Sha256); - hasher.addData({reinterpret_cast(response.data()), static_cast(response.Length())}); - key = hasher.result(); - return true; }); } } // namespace -WindowsHello* WindowsHello::m_instance{nullptr}; -WindowsHello* WindowsHello::instance() -{ - if (!m_instance) { - m_instance = new WindowsHello(); - } - return m_instance; -} - -WindowsHello::WindowsHello(QObject* parent) - : QObject(parent) -{ - concurrency::create_task([this] { - bool state = KeyCredentialManager::IsSupportedAsync().get(); - m_available = state; - emit availableChanged(m_available); - }); -} - bool WindowsHello::isAvailable() const { - return m_available; + auto task = concurrency::create_task([] { return KeyCredentialManager::IsSupportedAsync().get(); }); + return task.get(); } QString WindowsHello::errorString() const @@ -116,7 +110,7 @@ QString WindowsHello::errorString() const return m_error; } -bool WindowsHello::storeKey(const QString& dbPath, const QByteArray& data) +bool WindowsHello::setKey(const QUuid& dbUuid, const QByteArray& data) { queueSecurityPromptFocus(); @@ -132,26 +126,26 @@ bool WindowsHello::storeKey(const QString& dbPath, const QByteArray& data) // Encrypt the data using AES-256-CBC SymmetricCipher cipher; if (!cipher.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Encrypt, key, challenge)) { - m_error = tr("Failed to init KeePassXC crypto."); + m_error = QObject::tr("Failed to init KeePassXC crypto."); return false; } QByteArray encrypted = data; if (!cipher.finish(encrypted)) { - m_error = tr("Failed to encrypt key data."); + m_error = QObject::tr("Failed to encrypt key data."); return false; } // Prepend the challenge/IV to the encrypted data encrypted.prepend(challenge); - m_encryptedKeys.insert(dbPath, encrypted); + m_encryptedKeys.insert(dbUuid, encrypted); return true; } -bool WindowsHello::getKey(const QString& dbPath, QByteArray& data) +bool WindowsHello::getKey(const QUuid& dbUuid, QByteArray& data) { data.clear(); - if (!hasKey(dbPath)) { - m_error = tr("Failed to get Windows Hello credential."); + if (!hasKey(dbUuid)) { + m_error = QObject::tr("Failed to get Windows Hello credential."); return false; } @@ -159,7 +153,7 @@ bool WindowsHello::getKey(const QString& dbPath, QByteArray& data) // Read the previously used challenge and encrypted data auto ivSize = SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM); - const auto& keydata = m_encryptedKeys.value(dbPath); + const auto& keydata = m_encryptedKeys.value(dbUuid); auto challenge = keydata.left(ivSize); auto encrypted = keydata.mid(ivSize); QByteArray key; @@ -171,7 +165,7 @@ bool WindowsHello::getKey(const QString& dbPath, QByteArray& data) // Decrypt the data using the generated key and IV from above SymmetricCipher cipher; if (!cipher.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Decrypt, key, challenge)) { - m_error = tr("Failed to init KeePassXC crypto."); + m_error = QObject::tr("Failed to init KeePassXC crypto."); return false; } @@ -179,21 +173,21 @@ bool WindowsHello::getKey(const QString& dbPath, QByteArray& data) data = encrypted; if (!cipher.finish(data)) { data.clear(); - m_error = tr("Failed to decrypt key data."); + m_error = QObject::tr("Failed to decrypt key data."); return false; } return true; } -void WindowsHello::reset(const QString& dbPath) +void WindowsHello::reset(const QUuid& dbUuid) { - m_encryptedKeys.remove(dbPath); + m_encryptedKeys.remove(dbUuid); } -bool WindowsHello::hasKey(const QString& dbPath) const +bool WindowsHello::hasKey(const QUuid& dbUuid) const { - return m_encryptedKeys.contains(dbPath); + return m_encryptedKeys.contains(dbUuid); } void WindowsHello::reset() diff --git a/src/winhello/WindowsHello.h b/src/quickunlock/WindowsHello.h similarity index 57% rename from src/winhello/WindowsHello.h rename to src/quickunlock/WindowsHello.h index 5faf7eb25..9da6e4160 100644 --- a/src/winhello/WindowsHello.h +++ b/src/quickunlock/WindowsHello.h @@ -18,41 +18,28 @@ #ifndef KEEPASSXC_WINDOWSHELLO_H #define KEEPASSXC_WINDOWSHELLO_H +#include "QuickUnlockInterface.h" + #include #include -class WindowsHello : public QObject +class WindowsHello : public QuickUnlockInterface { - Q_OBJECT - public: - static WindowsHello* instance(); - bool isAvailable() const; - QString errorString() const; - void reset(); + WindowsHello() = default; + bool isAvailable() const override; + QString errorString() const override; + void reset() override; - bool storeKey(const QString& dbPath, const QByteArray& key); - bool getKey(const QString& dbPath, QByteArray& key); - bool hasKey(const QString& dbPath) const; - void reset(const QString& dbPath); - -signals: - void availableChanged(bool state); + bool setKey(const QUuid& dbUuid, const QByteArray& key) override; + bool getKey(const QUuid& dbUuid, QByteArray& key) override; + bool hasKey(const QUuid& dbUuid) const override; + void reset(const QUuid& dbUuid) override; private: - bool m_available = false; QString m_error; - QHash m_encryptedKeys; - - static WindowsHello* m_instance; - WindowsHello(QObject* parent = nullptr); - ~WindowsHello() override = default; + QHash m_encryptedKeys; Q_DISABLE_COPY(WindowsHello); }; -inline WindowsHello* getWindowsHello() -{ - return WindowsHello::instance(); -} - #endif // KEEPASSXC_WINDOWSHELLO_H diff --git a/src/quickunlock/dbus/org.freedesktop.PolicyKit1.Authority.xml b/src/quickunlock/dbus/org.freedesktop.PolicyKit1.Authority.xml new file mode 100644 index 000000000..d46d71d2a --- /dev/null +++ b/src/quickunlock/dbus/org.freedesktop.PolicyKit1.Authority.xml @@ -0,0 +1,16 @@ + + + + + + + + + > + + + + + + + diff --git a/src/sshagent/AgentSettingsWidget.cpp b/src/sshagent/AgentSettingsWidget.cpp index 1a55e14fa..bdad6e30e 100644 --- a/src/sshagent/AgentSettingsWidget.cpp +++ b/src/sshagent/AgentSettingsWidget.cpp @@ -90,9 +90,9 @@ void AgentSettingsWidget::loadSettings() void AgentSettingsWidget::saveSettings() { - auto sshAuthSockOverride = m_ui->sshAuthSockOverrideEdit->text(); + auto sshAuthSockOverride = m_ui->sshAuthSockOverrideEdit->text().trimmed(); sshAgent()->setAuthSockOverride(sshAuthSockOverride); - auto sshSecurityKeyProviderOverride = m_ui->sshSecurityKeyProviderOverrideEdit->text(); + auto sshSecurityKeyProviderOverride = m_ui->sshSecurityKeyProviderOverrideEdit->text().trimmed(); sshAgent()->setSecurityKeyProviderOverride(sshSecurityKeyProviderOverride); #ifdef Q_OS_WIN sshAgent()->setUsePageant(m_ui->usePageantRadioButton->isChecked() || m_ui->useBothRadioButton->isChecked()); diff --git a/src/sshagent/BinaryStream.cpp b/src/sshagent/BinaryStream.cpp index 3ba4c1a81..2ac93943c 100644 --- a/src/sshagent/BinaryStream.cpp +++ b/src/sshagent/BinaryStream.cpp @@ -21,14 +21,12 @@ BinaryStream::BinaryStream(QIODevice* device) : QObject(device) - , m_timeout(-1) , m_device(device) { } BinaryStream::BinaryStream(QByteArray* ba, QObject* parent) : QObject(parent) - , m_timeout(-1) { m_buffer.reset(new QBuffer(ba)); m_buffer->open(QIODevice::ReadWrite); diff --git a/src/sshagent/BinaryStream.h b/src/sshagent/BinaryStream.h index 0bc06e845..572f57427 100644 --- a/src/sshagent/BinaryStream.h +++ b/src/sshagent/BinaryStream.h @@ -55,7 +55,7 @@ protected: bool write(const char* ptr, qint64 len); private: - int m_timeout; + int m_timeout = 3000; QString m_error; QIODevice* m_device; QScopedPointer m_buffer; diff --git a/src/sshagent/CMakeLists.txt b/src/sshagent/CMakeLists.txt index 969467415..6bbb9c94d 100644 --- a/src/sshagent/CMakeLists.txt +++ b/src/sshagent/CMakeLists.txt @@ -8,6 +8,8 @@ if(WITH_XC_SSHAGENT) BinaryStream.cpp KeeAgentSettings.cpp OpenSSHKey.cpp + OpenSSHKeyGen.cpp + OpenSSHKeyGenDialog.cpp SSHAgent.cpp ) diff --git a/src/sshagent/KeeAgentSettings.cpp b/src/sshagent/KeeAgentSettings.cpp index c8e60e393..a794eac93 100644 --- a/src/sshagent/KeeAgentSettings.cpp +++ b/src/sshagent/KeeAgentSettings.cpp @@ -355,7 +355,11 @@ bool KeeAgentSettings::inEntryAttachments(const EntryAttachments* attachments) */ bool KeeAgentSettings::fromEntry(const Entry* entry) { - return fromXml(entry->attachments()->value("KeeAgent.settings")); + const auto attachments = entry->attachments(); + if (attachments->hasKey("KeeAgent.settings")) { + return fromXml(attachments->value("KeeAgent.settings")); + } + return false; } /** @@ -486,11 +490,7 @@ bool KeeAgentSettings::toOpenSSHKey(const QString& username, } if (key.comment().isEmpty()) { - key.setComment(username); - } - - if (key.comment().isEmpty()) { - key.setComment(fileName); + key.setComment(QString("%1@%2").arg(username, fileName)); } return true; diff --git a/src/sshagent/OpenSSHKey.cpp b/src/sshagent/OpenSSHKey.cpp index e7a2a9b85..7df1c4287 100644 --- a/src/sshagent/OpenSSHKey.cpp +++ b/src/sshagent/OpenSSHKey.cpp @@ -20,6 +20,8 @@ #include "ASN1Key.h" #include "BinaryStream.h" +#include "core/Global.h" +#include "crypto/Random.h" #include "crypto/SymmetricCipher.h" #include @@ -30,9 +32,11 @@ const QString OpenSSHKey::TYPE_DSA_PRIVATE = "DSA PRIVATE KEY"; const QString OpenSSHKey::TYPE_RSA_PRIVATE = "RSA PRIVATE KEY"; const QString OpenSSHKey::TYPE_OPENSSH_PRIVATE = "OPENSSH PRIVATE KEY"; +const QString OpenSSHKey::OPENSSH_CIPHER_SUFFIX = "@openssh.com"; OpenSSHKey::OpenSSHKey(QObject* parent) : QObject(parent) + , m_check(0) , m_type(QString()) , m_cipherName(QString("none")) , m_kdfName(QString("none")) @@ -48,6 +52,7 @@ OpenSSHKey::OpenSSHKey(QObject* parent) OpenSSHKey::OpenSSHKey(const OpenSSHKey& other) : QObject(nullptr) + , m_check(other.m_check) , m_type(other.m_type) , m_cipherName(other.m_cipherName) , m_kdfName(other.m_kdfName) @@ -80,7 +85,7 @@ const QString OpenSSHKey::type() const const QString OpenSSHKey::fingerprint(QCryptographicHash::Algorithm algo) const { if (m_rawPublicData.isEmpty()) { - return {}; + return tr("(encrypted)"); } QByteArray publicKey; @@ -125,6 +130,64 @@ const QString OpenSSHKey::publicKey() const return m_type + " " + QString::fromLatin1(publicKey.toBase64()) + " " + m_comment; } +const QString OpenSSHKey::privateKey() +{ + QByteArray sshKey; + BinaryStream stream(&sshKey); + + // magic + stream.write(QString("openssh-key-v1").toUtf8()); + stream.write(static_cast(0)); + + // cipher name + stream.writeString(QString("none")); + + // kdf name + stream.writeString(QString("none")); + + // kdf options + stream.writeString(QString("")); + + // number of keys + stream.write(static_cast(1)); + + // string wrapped public key + QByteArray publicKey; + BinaryStream publicStream(&publicKey); + writePublic(publicStream); + stream.writeString(publicKey); + + // string wrapper private key + QByteArray privateKey; + BinaryStream privateStream(&privateKey); + + // integrity check value + privateStream.write(m_check); + privateStream.write(m_check); + + writePrivate(privateStream); + + // padding for unencrypted key + for (quint8 i = 1; i <= privateKey.size() % 8; i++) { + privateStream.write(i); + } + + stream.writeString(privateKey); + + // encode to PEM format + QString out; + out += "-----BEGIN OPENSSH PRIVATE KEY-----\n"; + + auto base64Key = QString::fromUtf8(sshKey.toBase64()); + for (int i = 0; i < base64Key.size(); i += 70) { + out += base64Key.midRef(i, 70); + out += "\n"; + } + + out += "-----END OPENSSH PRIVATE KEY-----\n"; + return out; +} + const QString OpenSSHKey::errorString() const { return m_error; @@ -135,6 +198,11 @@ void OpenSSHKey::setType(const QString& type) m_type = type; } +void OpenSSHKey::setCheck(quint32 check) +{ + m_check = check; +} + void OpenSSHKey::setPublicData(const QByteArray& data) { m_rawPublicData = data; @@ -159,7 +227,7 @@ void OpenSSHKey::clearPrivate() bool OpenSSHKey::extractPEM(const QByteArray& in, QByteArray& out) { QString pem = QString::fromLatin1(in); - QStringList rows = pem.split(QRegularExpression("(?:\r?\n|\r)"), QString::SkipEmptyParts); + QStringList rows = pem.split(QRegularExpression("(?:\r?\n|\r)"), Qt::SkipEmptyParts); if (rows.length() < 3) { m_error = tr("Invalid key file, expecting an OpenSSH key"); @@ -284,6 +352,8 @@ bool OpenSSHKey::parsePKCS1PEM(const QByteArray& in) // load private if no encryption if (!encrypted()) { return openKey(); + } else { + m_comment = tr("(encrypted)"); } return true; @@ -310,9 +380,16 @@ bool OpenSSHKey::openKey(const QString& passphrase) QByteArray rawData = m_rawData; if (m_cipherName != "none") { - auto cipherMode = SymmetricCipher::stringToMode(m_cipherName); + QString l_cipherName(m_cipherName); + if (l_cipherName.endsWith(OPENSSH_CIPHER_SUFFIX)) { + l_cipherName.remove(OPENSSH_CIPHER_SUFFIX); + } + auto cipherMode = SymmetricCipher::stringToMode(l_cipherName); if (cipherMode == SymmetricCipher::InvalidMode) { - m_error = tr("Unknown cipher: %1").arg(m_cipherName); + m_error = tr("Unknown cipher: %1").arg(l_cipherName); + return false; + } else if (cipherMode == SymmetricCipher::Aes256_GCM) { + m_error = tr("AES-256/GCM is currently not supported"); return false; } @@ -325,7 +402,7 @@ bool OpenSSHKey::openKey(const QString& passphrase) } int keySize = cipher->keySize(cipherMode); - int blockSize = 16; + int ivSize = cipher->ivSize(cipherMode); BinaryStream optionStream(&m_kdfOptions); @@ -335,7 +412,7 @@ bool OpenSSHKey::openKey(const QString& passphrase) optionStream.readString(salt); optionStream.read(rounds); - QByteArray decryptKey(keySize + blockSize, '\0'); + QByteArray decryptKey(keySize + ivSize, '\0'); try { auto baPass = passphrase.toUtf8(); auto pwhash = Botan::PasswordHashFamily::create_or_throw("Bcrypt-PBKDF")->from_iterations(rounds); @@ -351,7 +428,7 @@ bool OpenSSHKey::openKey(const QString& passphrase) } keyData = decryptKey.left(keySize); - ivData = decryptKey.right(blockSize); + ivData = decryptKey.right(ivSize); } else if (m_kdfName == "md5") { if (m_cipherIV.length() < 8) { m_error = tr("Cipher IV is too short for MD5 kdf"); @@ -421,6 +498,8 @@ bool OpenSSHKey::openKey(const QString& passphrase) return false; } + m_check = checkInt1; + return readPrivate(keyStream); } diff --git a/src/sshagent/OpenSSHKey.h b/src/sshagent/OpenSSHKey.h index 78ccf7192..c2c831939 100644 --- a/src/sshagent/OpenSSHKey.h +++ b/src/sshagent/OpenSSHKey.h @@ -41,9 +41,11 @@ public: const QString fingerprint(QCryptographicHash::Algorithm algo = QCryptographicHash::Sha256) const; const QString comment() const; const QString publicKey() const; + const QString privateKey(); const QString errorString() const; void setType(const QString& type); + void setCheck(quint32 check); void setPublicData(const QByteArray& data); void setPrivateData(const QByteArray& data); void setComment(const QString& comment); @@ -58,6 +60,7 @@ public: static const QString TYPE_DSA_PRIVATE; static const QString TYPE_RSA_PRIVATE; static const QString TYPE_OPENSSH_PRIVATE; + static const QString OPENSSH_CIPHER_SUFFIX; private: enum KeyPart @@ -69,6 +72,7 @@ private: bool extractPEM(const QByteArray& in, QByteArray& out); + quint32 m_check; QString m_type; QString m_cipherName; QByteArray m_cipherIV; diff --git a/src/sshagent/OpenSSHKeyGen.cpp b/src/sshagent/OpenSSHKeyGen.cpp new file mode 100644 index 000000000..a3d88807f --- /dev/null +++ b/src/sshagent/OpenSSHKeyGen.cpp @@ -0,0 +1,146 @@ +/* + * Copyright (C) 2021 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 . + */ + +#include "OpenSSHKeyGen.h" +#include "BinaryStream.h" +#include "OpenSSHKey.h" +#include "config-keepassx.h" +#include "crypto/Random.h" + +#include +#include +#include + +namespace OpenSSHKeyGen +{ + namespace + { + void bigIntToStream(const Botan::BigInt& i, BinaryStream& stream, int padding = 0) + { + QByteArray ba(i.bytes() + padding, 0); + i.binary_encode(reinterpret_cast(ba.data() + padding), ba.size() - padding); + stream.writeString(ba); + } + + void vectorToStream(const std::vector& v, BinaryStream& stream) + { + QByteArray ba(reinterpret_cast(v.data()), v.size()); + stream.writeString(ba); + } + + void vectorToStream(const Botan::secure_vector& v, BinaryStream& stream) + { + QByteArray ba(reinterpret_cast(v.data()), v.size()); + stream.writeString(ba); + } + } // namespace + + bool generateRSA(OpenSSHKey& key, int bits) + { + auto rng = randomGen()->getRng(); + + try { + Botan::RSA_PrivateKey rsaKey(*rng, bits); + + QByteArray publicData; + BinaryStream publicStream(&publicData); + // intentionally flipped n e -> e n + bigIntToStream(rsaKey.get_e(), publicStream); + bigIntToStream(rsaKey.get_n(), publicStream, 1); + + QByteArray privateData; + BinaryStream privateStream(&privateData); + bigIntToStream(rsaKey.get_n(), privateStream, 1); + bigIntToStream(rsaKey.get_e(), privateStream); + bigIntToStream(rsaKey.get_d(), privateStream, 1); + bigIntToStream(rsaKey.get_c(), privateStream, 1); + bigIntToStream(rsaKey.get_p(), privateStream, 1); + bigIntToStream(rsaKey.get_q(), privateStream, 1); + + key.setType("ssh-rsa"); + key.setCheck(randomGen()->randomUInt(std::numeric_limits::max() - 1) + 1); + key.setPublicData(publicData); + key.setPrivateData(privateData); + key.setComment("id_rsa"); + return true; + } catch (std::exception& e) { + return false; + } + } + + bool generateECDSA(OpenSSHKey& key, int bits) + { + auto rng = randomGen()->getRng(); + QString group = QString("nistp%1").arg(bits); + + try { + Botan::EC_Group domain(QString("secp%1r1").arg(bits).toStdString()); + Botan::ECDSA_PrivateKey ecdsaKey(*rng, domain); + + QByteArray publicData; + BinaryStream publicStream(&publicData); + publicStream.writeString(group); + vectorToStream(ecdsaKey.public_key_bits(), publicStream); + + QByteArray privateData; + BinaryStream privateStream(&privateData); + privateStream.writeString(group); + vectorToStream(ecdsaKey.public_key_bits(), privateStream); + bigIntToStream(ecdsaKey.private_value(), privateStream, 1); + + key.setType("ecdsa-sha2-" + group); + key.setCheck(randomGen()->randomUInt(std::numeric_limits::max() - 1) + 1); + key.setPublicData(publicData); + key.setPrivateData(privateData); + key.setComment("id_ecdsa"); + return true; + } catch (std::exception& e) { + return false; + } + } + + bool generateEd25519(OpenSSHKey& key) + { + auto rng = randomGen()->getRng(); + + try { + Botan::Ed25519_PrivateKey ed25519Key(*rng); + + QByteArray publicData; + BinaryStream publicStream(&publicData); + vectorToStream(ed25519Key.get_public_key(), publicStream); + + QByteArray privateData; + BinaryStream privateStream(&privateData); + vectorToStream(ed25519Key.get_public_key(), privateStream); +#ifdef WITH_XC_BOTAN3 + vectorToStream(ed25519Key.raw_private_key_bits(), privateStream); +#else + vectorToStream(ed25519Key.get_private_key(), privateStream); +#endif + + key.setType("ssh-ed25519"); + key.setCheck(randomGen()->randomUInt(std::numeric_limits::max() - 1) + 1); + key.setPublicData(publicData); + key.setPrivateData(privateData); + key.setComment("id_ed25519"); + return true; + } catch (std::exception& e) { + return false; + } + } +} // namespace OpenSSHKeyGen diff --git a/src/core/ListDeleter.h b/src/sshagent/OpenSSHKeyGen.h similarity index 62% rename from src/core/ListDeleter.h rename to src/sshagent/OpenSSHKeyGen.h index 6f289546f..dfe122ac0 100644 --- a/src/core/ListDeleter.h +++ b/src/sshagent/OpenSSHKeyGen.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Felix Geyer + * Copyright (C) 2021 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 @@ -15,25 +15,16 @@ * along with this program. If not, see . */ -#ifndef KEEPASSX_LISTDELETER_H -#define KEEPASSX_LISTDELETER_H +#ifndef KEEPASSXC_OPENSSHKEYGEN_H +#define KEEPASSXC_OPENSSHKEYGEN_H -#include +class OpenSSHKey; -template class ListDeleter +namespace OpenSSHKeyGen { -public: - inline explicit ListDeleter(QList* list) - : m_list(list) - { - } - inline ~ListDeleter() - { - qDeleteAll(*m_list); - } + bool generateRSA(OpenSSHKey& key, int bits); + bool generateECDSA(OpenSSHKey& key, int bits); + bool generateEd25519(OpenSSHKey& key); +} // namespace OpenSSHKeyGen -private: - QList* m_list; -}; - -#endif // KEEPASSX_LISTDELETER_H +#endif diff --git a/src/sshagent/OpenSSHKeyGenDialog.cpp b/src/sshagent/OpenSSHKeyGenDialog.cpp new file mode 100644 index 000000000..df06879e9 --- /dev/null +++ b/src/sshagent/OpenSSHKeyGenDialog.cpp @@ -0,0 +1,99 @@ +/* + * Copyright (C) 2021 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 . + */ + +#include "OpenSSHKeyGenDialog.h" +#include "OpenSSHKey.h" +#include "OpenSSHKeyGen.h" +#include "gui/Icons.h" +#include "ui_OpenSSHKeyGenDialog.h" +#include +#include + +OpenSSHKeyGenDialog::OpenSSHKeyGenDialog(QWidget* parent) + : QDialog(parent) + , m_ui(new Ui::OpenSSHKeyGenDialog()) + , m_key(nullptr) +{ + setAttribute(Qt::WA_DeleteOnClose); + setWindowIcon(icons()->icon("password-generator")); + + m_ui->setupUi(this); + + m_ui->typeComboBox->clear(); + m_ui->typeComboBox->addItem("Ed25519"); + m_ui->typeComboBox->addItem("RSA"); + m_ui->typeComboBox->addItem("ECDSA"); + + QString user = QProcessEnvironment::systemEnvironment().value("USER"); + m_ui->commentLineEdit->setText(user + "@" + QHostInfo::localHostName()); + + connect(m_ui->typeComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(typeChanged())); + + typeChanged(); +} + +// Required for QScopedPointer +OpenSSHKeyGenDialog::~OpenSSHKeyGenDialog() +{ +} + +void OpenSSHKeyGenDialog::typeChanged() +{ + m_ui->bitsComboBox->clear(); + + if (m_ui->typeComboBox->currentText() == QString("Ed25519")) { + m_ui->bitsComboBox->addItem("32"); + } else if (m_ui->typeComboBox->currentText() == QString("RSA")) { + m_ui->bitsComboBox->addItem("2048"); + m_ui->bitsComboBox->addItem("3072"); + m_ui->bitsComboBox->addItem("4096"); + m_ui->bitsComboBox->setCurrentText("3072"); + } else if (m_ui->typeComboBox->currentText() == QString("ECDSA")) { + m_ui->bitsComboBox->addItem("256"); + m_ui->bitsComboBox->addItem("384"); + m_ui->bitsComboBox->addItem("521"); + m_ui->bitsComboBox->setCurrentText("256"); + } +} + +void OpenSSHKeyGenDialog::accept() +{ + // disable form and try to process this update before blocking in key generation + setEnabled(false); + QCoreApplication::processEvents(); + + int bits = m_ui->bitsComboBox->currentText().toInt(); + + if (m_ui->typeComboBox->currentText() == QString("Ed25519")) { + OpenSSHKeyGen::generateEd25519(*m_key); + } else if (m_ui->typeComboBox->currentText() == QString("RSA")) { + OpenSSHKeyGen::generateRSA(*m_key, bits); + } else if (m_ui->typeComboBox->currentText() == QString("ECDSA")) { + OpenSSHKeyGen::generateECDSA(*m_key, bits); + } else { + reject(); + return; + } + + m_key->setComment(m_ui->commentLineEdit->text()); + QDialog::accept(); +} + +void OpenSSHKeyGenDialog::setKey(OpenSSHKey* key) +{ + m_key = key; +} diff --git a/src/sshagent/OpenSSHKeyGenDialog.h b/src/sshagent/OpenSSHKeyGenDialog.h new file mode 100644 index 000000000..f46a1abe3 --- /dev/null +++ b/src/sshagent/OpenSSHKeyGenDialog.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2021 Team KeePassXC + * + * 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 . + */ + +#ifndef KEEPASSXC_OPENSSHKEYGENDIALOG_H +#define KEEPASSXC_OPENSSHKEYGENDIALOG_H + +#include +class OpenSSHKey; + +namespace Ui +{ + class OpenSSHKeyGenDialog; +} + +class OpenSSHKeyGenDialog : public QDialog +{ + Q_OBJECT + +public: + explicit OpenSSHKeyGenDialog(QWidget* parent = nullptr); + ~OpenSSHKeyGenDialog() override; + + void accept() override; + void setKey(OpenSSHKey* key); + +private slots: + void typeChanged(); + +private: + QScopedPointer m_ui; + OpenSSHKey* m_key; +}; + +#endif // KEEPASSXC_OPENSSHKEYGENDIALOG_H diff --git a/src/sshagent/OpenSSHKeyGenDialog.ui b/src/sshagent/OpenSSHKeyGenDialog.ui new file mode 100644 index 000000000..1f9e483dd --- /dev/null +++ b/src/sshagent/OpenSSHKeyGenDialog.ui @@ -0,0 +1,138 @@ + + + OpenSSHKeyGenDialog + + + + 0 + 0 + 200 + 100 + + + + + 0 + 0 + + + + SSH Key Generator + + + true + + + + + + + 0 + 0 + + + + QComboBox::AdjustToContents + + + + + + + + 0 + 0 + + + + Type + + + + + + + + 0 + 0 + + + + Bits + + + + + + + Comment + + + + + + + + 0 + 0 + + + + QComboBox::AdjustToContents + + + 4 + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + buttonBox + accepted() + OpenSSHKeyGenDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + OpenSSHKeyGenDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/sshagent/SSHAgent.cpp b/src/sshagent/SSHAgent.cpp index 2aff5f4cb..a8aa695ce 100644 --- a/src/sshagent/SSHAgent.cpp +++ b/src/sshagent/SSHAgent.cpp @@ -210,8 +210,8 @@ bool SSHAgent::sendMessagePageant(const QByteArray& in, QByteArray& out) return false; } - QByteArray mapName = - (QString("SSHAgentRequest") + reinterpret_cast(QThread::currentThreadId())).toLatin1(); + auto threadId = reinterpret_cast(QThread::currentThreadId()); + QByteArray mapName = (QString("SSHAgentRequest%1").arg(threadId, 8, 16, QChar('0'))).toLatin1(); HANDLE handle = CreateFileMappingA(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, AGENT_MAX_MSGLEN, mapName.data()); @@ -363,6 +363,48 @@ bool SSHAgent::removeIdentity(OpenSSHKey& key) return sendMessage(requestData, responseData); } +/** + * Remove all identities from the SSH agent. + * + * Since the agent might be forwarded, old or non-OpenSSH, when asked + * to remove all keys, attempt to remove both protocol v.1 and v.2 + * keys. + * + * @return true on success + */ +bool SSHAgent::clearAllAgentIdentities() +{ + if (!isAgentRunning()) { + m_error = tr("No agent running, cannot remove identity."); + return false; + } + + bool ret = true; + QByteArray requestData; + QByteArray responseData; + BinaryStream request(&requestData); + + // SSH2 Identity Removal + request.write(SSH2_AGENTC_REMOVE_ALL_IDENTITIES); + + if (!sendMessage(requestData, responseData)) { + m_error = tr("Failed to remove all SSH identities from agent."); + ret = false; + } + + request.flush(); + responseData.clear(); + + // SSH1 Identity Removal + request.write(SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES); + + // ignore error-code for ssh1 + sendMessage(requestData, responseData); + + m_error = tr("All SSH identities removed from agent."); + return ret; +} + /** * Get a list of identities from the SSH agent. * @@ -433,7 +475,7 @@ bool SSHAgent::listIdentities(QList>& list) * Check if this identity is loaded in the SSH Agent. * * @param key identity to remove - * @param loaded is the key laoded + * @param loaded is the key loaded * @return true on success */ bool SSHAgent::checkIdentity(const OpenSSHKey& key, bool& loaded) @@ -486,7 +528,7 @@ void SSHAgent::setAutoRemoveOnLock(const OpenSSHKey& key, bool autoRemove) } } -void SSHAgent::databaseLocked(QSharedPointer db) +void SSHAgent::databaseLocked(const QSharedPointer& db) { if (!db) { return; @@ -508,20 +550,20 @@ void SSHAgent::databaseLocked(QSharedPointer db) } } -void SSHAgent::databaseUnlocked(QSharedPointer db) +void SSHAgent::databaseUnlocked(const QSharedPointer& db) { if (!db || !isEnabled()) { return; } - for (Entry* e : db->rootGroup()->entriesRecursive()) { - if (db->metadata()->recycleBinEnabled() && e->group() == db->metadata()->recycleBin()) { + for (auto entry : db->rootGroup()->entriesRecursive()) { + if (entry->isRecycled()) { continue; } KeeAgentSettings settings; - if (!settings.fromEntry(e)) { + if (!settings.fromEntry(entry)) { continue; } @@ -531,7 +573,7 @@ void SSHAgent::databaseUnlocked(QSharedPointer db) OpenSSHKey key; - if (!settings.toOpenSSHKey(e, key, true)) { + if (!settings.toOpenSSHKey(entry, key, true)) { continue; } diff --git a/src/sshagent/SSHAgent.h b/src/sshagent/SSHAgent.h index 032438613..d3eeb4ebc 100644 --- a/src/sshagent/SSHAgent.h +++ b/src/sshagent/SSHAgent.h @@ -56,6 +56,7 @@ public: bool checkIdentity(const OpenSSHKey& key, bool& loaded); bool removeIdentity(OpenSSHKey& key); void removeAllIdentities(); + bool clearAllAgentIdentities(); void setAutoRemoveOnLock(const OpenSSHKey& key, bool autoRemove); signals: @@ -63,8 +64,8 @@ signals: void enabledChanged(bool enabled); public slots: - void databaseLocked(QSharedPointer db); - void databaseUnlocked(QSharedPointer db); + void databaseLocked(const QSharedPointer& db); + void databaseUnlocked(const QSharedPointer& db); private: const quint8 SSH_AGENT_FAILURE = 5; @@ -74,6 +75,8 @@ private: const quint8 SSH_AGENTC_ADD_IDENTITY = 17; const quint8 SSH_AGENTC_REMOVE_IDENTITY = 18; const quint8 SSH_AGENTC_ADD_ID_CONSTRAINED = 25; + const quint8 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES = 9; + const quint8 SSH2_AGENTC_REMOVE_ALL_IDENTITIES = 19; const quint8 SSH_AGENT_CONSTRAIN_LIFETIME = 1; const quint8 SSH_AGENT_CONSTRAIN_CONFIRM = 2; diff --git a/src/streams/HashedBlockStream.cpp b/src/streams/HashedBlockStream.cpp index 7cc25d1ea..d04b42dfb 100644 --- a/src/streams/HashedBlockStream.cpp +++ b/src/streams/HashedBlockStream.cpp @@ -126,7 +126,7 @@ bool HashedBlockStream::readHashedBlock() { bool ok; - quint32 index = Endian::readSizedInt(m_baseDevice, ByteOrder, &ok); + auto index = Endian::readSizedInt(m_baseDevice, ByteOrder, &ok); if (!ok || index != m_blockIndex) { m_error = true; setErrorString("Invalid block index."); diff --git a/src/streams/HashedBlockStream.h b/src/streams/HashedBlockStream.h index e107c2cce..dc1c16a1a 100644 --- a/src/streams/HashedBlockStream.h +++ b/src/streams/HashedBlockStream.h @@ -29,7 +29,7 @@ class HashedBlockStream : public LayeredStream public: explicit HashedBlockStream(QIODevice* baseDevice); HashedBlockStream(QIODevice* baseDevice, qint32 blockSize); - ~HashedBlockStream(); + ~HashedBlockStream() override; bool reset() override; void close() override; diff --git a/src/streams/HashingStream.cpp b/src/streams/HashingStream.cpp new file mode 100644 index 000000000..5139dae87 --- /dev/null +++ b/src/streams/HashingStream.cpp @@ -0,0 +1,101 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "HashingStream.h" + +HashingStream::HashingStream(QIODevice* baseDevice) + : LayeredStream(baseDevice) + , m_hash(QCryptographicHash::Md5) + , m_sizeToHash(0) +{ + init(); +} + +HashingStream::HashingStream(QIODevice* baseDevice, QCryptographicHash::Algorithm hashAlgo, qint64 sizeToHash) + : LayeredStream(baseDevice) + , m_hash(hashAlgo) + , m_sizeToHash(sizeToHash) +{ + init(); +} + +HashingStream::~HashingStream() +{ + close(); +} + +void HashingStream::init() +{ + m_sizeHashed = 0; + m_sizeStreamed = 0; + m_hashFinalized = false; +} + +bool HashingStream::reset() +{ + init(); + m_hash.reset(); + return LayeredStream::reset(); +} + +QByteArray HashingStream::hashingResult() +{ + if (m_sizeHashed <= 0 || (m_sizeToHash > 0 && m_sizeHashed != m_sizeToHash)) { + setErrorString("Not enough data to compute hash"); + return {}; + } + m_hashFinalized = true; + return m_hash.result(); +} + +qint64 HashingStream::readData(char* data, qint64 maxSize) +{ + auto sizeRead = LayeredStream::readData(data, maxSize); + if (sizeRead > 0) { + if (!m_hashFinalized) { + qint64 sizeToHash = sizeRead; + if (m_sizeToHash > 0) { + sizeToHash = qMin(m_sizeToHash - m_sizeStreamed, sizeRead); + } + if (sizeToHash > 0) { + m_hash.addData(data, sizeToHash); + m_sizeHashed += sizeToHash; + } + } + m_sizeStreamed += sizeRead; + } + return sizeRead; +} + +qint64 HashingStream::writeData(const char* data, qint64 maxSize) +{ + auto sizeWritten = LayeredStream::writeData(data, maxSize); + if (sizeWritten > 0) { + if (!m_hashFinalized) { + qint64 sizeToHash = sizeWritten; + if (m_sizeToHash > 0) { + sizeToHash = qMin(m_sizeToHash - m_sizeStreamed, sizeWritten); + } + if (sizeToHash > 0) { + m_hash.addData(data, sizeToHash); + m_sizeHashed += sizeToHash; + } + } + m_sizeStreamed += sizeWritten; + } + return sizeWritten; +} diff --git a/src/streams/HashingStream.h b/src/streams/HashingStream.h new file mode 100644 index 000000000..5f8c2ac3e --- /dev/null +++ b/src/streams/HashingStream.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2024 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 . + */ + +#ifndef KEEPASSX_HASHINGSTREAM_H +#define KEEPASSX_HASHINGSTREAM_H + +#include + +#include "streams/LayeredStream.h" + +class HashingStream : public LayeredStream +{ + Q_OBJECT + +public: + explicit HashingStream(QIODevice* baseDevice); + HashingStream(QIODevice* baseDevice, QCryptographicHash::Algorithm hashAlgo, qint64 sizeToHash); + ~HashingStream() override; + + bool reset() override; + + QByteArray hashingResult(); + +protected: + void init(); + + qint64 readData(char* data, qint64 maxSize) override; + qint64 writeData(const char* data, qint64 maxSize) override; + +protected: + QCryptographicHash m_hash; + bool m_hashFinalized; + qint64 m_sizeToHash; + qint64 m_sizeHashed; + qint64 m_sizeStreamed; +}; + +#endif // KEEPASSX_HASHINGSTREAM_H \ No newline at end of file diff --git a/src/streams/HmacBlockStream.h b/src/streams/HmacBlockStream.h index 18f5e5301..691aa1e16 100644 --- a/src/streams/HmacBlockStream.h +++ b/src/streams/HmacBlockStream.h @@ -29,7 +29,7 @@ class HmacBlockStream : public LayeredStream public: explicit HmacBlockStream(QIODevice* baseDevice, QByteArray key); HmacBlockStream(QIODevice* baseDevice, QByteArray key, qint32 blockSize); - ~HmacBlockStream(); + ~HmacBlockStream() override; bool reset() override; void close() override; diff --git a/src/streams/LayeredStream.h b/src/streams/LayeredStream.h index 0e1156d70..643ddfb45 100644 --- a/src/streams/LayeredStream.h +++ b/src/streams/LayeredStream.h @@ -26,7 +26,7 @@ class LayeredStream : public QIODevice public: explicit LayeredStream(QIODevice* baseDevice); - virtual ~LayeredStream(); + ~LayeredStream() override; bool isSequential() const override; bool open(QIODevice::OpenMode mode) override; diff --git a/src/streams/SymmetricCipherStream.h b/src/streams/SymmetricCipherStream.h index 3f11dc8bd..10c6e4774 100644 --- a/src/streams/SymmetricCipherStream.h +++ b/src/streams/SymmetricCipherStream.h @@ -30,7 +30,7 @@ class SymmetricCipherStream : public LayeredStream public: SymmetricCipherStream(QIODevice* baseDevice); - ~SymmetricCipherStream(); + ~SymmetricCipherStream() override; bool init(SymmetricCipher::Mode mode, SymmetricCipher::Direction direction, const QByteArray& key, const QByteArray& iv); bool open(QIODevice::OpenMode mode) override; diff --git a/src/streams/qtiocompressor.h b/src/streams/qtiocompressor.h index cebd98293..458b2991d 100644 --- a/src/streams/qtiocompressor.h +++ b/src/streams/qtiocompressor.h @@ -56,18 +56,20 @@ Q_OBJECT public: enum StreamFormat { ZlibFormat, GzipFormat, RawZipFormat }; QtIOCompressor(QIODevice *device, int compressionLevel = 6, int bufferSize = 65500); - ~QtIOCompressor(); + ~QtIOCompressor() override; void setStreamFormat(StreamFormat format); StreamFormat streamFormat() const; static bool isGzipSupported(); - bool isSequential() const; - bool open(OpenMode mode); - void close(); + bool isSequential() const override; + bool open(OpenMode mode) override; + void close() override; void flush(); - qint64 bytesAvailable() const; + qint64 bytesAvailable() const override; + protected: - qint64 readData(char * data, qint64 maxSize); - qint64 writeData(const char * data, qint64 maxSize); + qint64 readData(char* data, qint64 maxSize) override; + qint64 writeData(const char* data, qint64 maxSize) override; + private: static bool checkGzipSupport(const char * const versionString); QtIOCompressorPrivate *d_ptr; diff --git a/src/thirdparty/ykcore/CMakeLists.txt b/src/thirdparty/ykcore/CMakeLists.txt index 47191ea74..ecf3ab2b2 100644 --- a/src/thirdparty/ykcore/CMakeLists.txt +++ b/src/thirdparty/ykcore/CMakeLists.txt @@ -27,16 +27,18 @@ if(WIN32) elseif(UNIX AND NOT APPLE) target_sources(ykcore PRIVATE ykcore_libusb-1.0.c) + find_package(Threads REQUIRED) + find_library(LIBUSB_LIBRARY NAMES usb-1.0) find_path(LIBUSB_INCLUDE_DIR NAMES libusb.h PATH_SUFFIXES "libusb-1.0" "libusb") if(NOT LIBUSB_LIBRARY OR NOT LIBUSB_INCLUDE_DIR) message(FATAL_ERROR "libusb-1.0 dev package required, but not found") endif() - target_link_libraries(ykcore PRIVATE ${LIBUSB_LIBRARY}) + target_link_libraries(ykcore PRIVATE Threads::Threads ${LIBUSB_LIBRARY}) target_include_directories(ykcore PRIVATE ${LIBUSB_INCLUDE_DIR}) target_compile_definitions(ykcore PRIVATE _GNU_SOURCE) elseif(APPLE) target_sources(ykcore PRIVATE ykcore_osx.c) - target_link_libraries(ykcore PUBLIC "-framework IOKit") + target_link_libraries(ykcore PUBLIC "-framework IOKit -framework Foundation") endif() diff --git a/src/thirdparty/ykcore/ykcore.c b/src/thirdparty/ykcore/ykcore.c index cfab2425a..c4fc4f4d4 100644 --- a/src/thirdparty/ykcore/ykcore.c +++ b/src/thirdparty/ykcore/ykcore.c @@ -155,7 +155,7 @@ int yk_get_status(YK_KEY *k, YK_STATUS *status) } /* Read the factory programmed serial number from a YubiKey. - * The possibility to retreive the serial number might be disabled + * The possibility to retrieve the serial number might be disabled * using configuration, so it should not be considered a fatal error * to not be able to read the serial number using this function. * diff --git a/src/thirdparty/ykcore/ykcore.h b/src/thirdparty/ykcore/ykcore.h index 37e34e1f3..e0f3db5e3 100644 --- a/src/thirdparty/ykcore/ykcore.h +++ b/src/thirdparty/ykcore/ykcore.h @@ -78,7 +78,7 @@ extern int yk_release(void); * Functions to get and release the key itself. * ****/ -/* opens first key available. For backwards compatability */ +/* opens first key available. For backwards compatibility */ extern YK_KEY *yk_open_first_key(void); extern YK_KEY *yk_open_key(int); /* opens nth key available */ extern YK_KEY *yk_open_key_vid_pid(const int*, size_t, const int*, size_t, int); @@ -147,7 +147,7 @@ int yk_write_device_info(YK_KEY *yk, unsigned char *buf, unsigned int len); /************************************************************************* * - * Error handling fuctions + * Error handling functions * ****/ extern int * _yk_errno_location(void); diff --git a/src/thirdparty/ykcore/ykcore_lcl.h b/src/thirdparty/ykcore/ykcore_lcl.h index 53619acb9..783c1bfff 100644 --- a/src/thirdparty/ykcore/ykcore_lcl.h +++ b/src/thirdparty/ykcore/ykcore_lcl.h @@ -48,7 +48,7 @@ ** ** = = = = = = = = = B I G F A T W A R N I N G = = = = = = = = = ** - ** DO NOT USE THE FOLLOWING FUCTIONS DIRECTLY UNLESS YOU WRITE CORE ROUTINES! + ** DO NOT USE THE FOLLOWING FUNCTIONS DIRECTLY UNLESS YOU WRITE CORE ROUTINES! ** ** These functions are declared here only to make sure they get defined ** correctly internally. diff --git a/src/thirdparty/ykcore/ykdef.h b/src/thirdparty/ykcore/ykdef.h index b645dd996..80cdce6c9 100644 --- a/src/thirdparty/ykcore/ykdef.h +++ b/src/thirdparty/ykcore/ykdef.h @@ -146,7 +146,7 @@ struct config_st { /* Yubikey 2 and above */ #define CFGFLAG_SHORT_TICKET 0x02 /* Send truncated ticket (half length) */ #define CFGFLAG_STRONG_PW1 0x10 /* Strong password policy flag #1 (mixed case) */ -#define CFGFLAG_STRONG_PW2 0x40 /* Strong password policy flag #2 (subtitute 0..7 to digits) */ +#define CFGFLAG_STRONG_PW2 0x40 /* Strong password policy flag #2 (substitute 0..7 to digits) */ #define CFGFLAG_MAN_UPDATE 0x80 /* Allow manual (local) update of static OTP */ /* Yubikey 2.1 and above */ @@ -299,7 +299,7 @@ struct status_st { #define YK4_CAPA_TAG 0x01 /* TAG for capabilities */ #define YK4_SERIAL_TAG 0x02 /* TAG for serial number */ -#define YK4_CAPA1_OTP 0x01 /* Capability bit for OTP functonality */ +#define YK4_CAPA1_OTP 0x01 /* Capability bit for OTP functionality */ #define YK4_CAPA1_U2F 0x02 /* Capability bit for U2F functionality */ #define YK4_CAPA1_CCID 0x04 /* Capability bit for CCID functionality */ #define YK4_CAPA1_OPGP 0x08 /* Capability bit for OpenPGP functionality */ diff --git a/src/thirdparty/zxcvbn/CMakeLists.txt b/src/thirdparty/zxcvbn/CMakeLists.txt new file mode 100644 index 000000000..dcc2a5efd --- /dev/null +++ b/src/thirdparty/zxcvbn/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(zxcvbn STATIC zxcvbn.c) +# Disable error-level shadow issues +if(CC_HAS_Wshadow_compatible_local) + set_property(SOURCE zxcvbn.c APPEND PROPERTY COMPILE_OPTIONS "-Wno-shadow-compatible-local") +endif() +if(CC_HAS_Wshadow_local) + set_property(SOURCE zxcvbn.c APPEND PROPERTY COMPILE_OPTIONS "-Wno-shadow-local") +endif() +target_include_directories(zxcvbn PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) diff --git a/src/zxcvbn/dict-src.h b/src/thirdparty/zxcvbn/dict-src.h similarity index 100% rename from src/zxcvbn/dict-src.h rename to src/thirdparty/zxcvbn/dict-src.h diff --git a/src/zxcvbn/zxcvbn.c b/src/thirdparty/zxcvbn/zxcvbn.c similarity index 99% rename from src/zxcvbn/zxcvbn.c rename to src/thirdparty/zxcvbn/zxcvbn.c index 23792b4d6..28d53af22 100644 --- a/src/zxcvbn/zxcvbn.c +++ b/src/thirdparty/zxcvbn/zxcvbn.c @@ -60,7 +60,7 @@ /* Additional entropy to add when password is made of multiple matches. Use different * amounts depending on whether the match is at the end of the password, or in the - * middle. If the match is at the begining then there is no additional entropy. + * middle. If the match is at the beginning then there is no additional entropy. */ #define MULTI_END_ADDITION 1.0 #define MULTI_MID_ADDITION 1.75 @@ -169,7 +169,7 @@ static ZxcMatch_t *AllocMatch() static void AddResult(ZxcMatch_t **HeadRef, ZxcMatch_t *Nu, int MaxLen) { /* Adjust the entropy to be used for calculations depending on whether the passed match is - * at the begining, middle or end of the password + * at the beginning, middle or end of the password */ if (Nu->Begin) { @@ -546,7 +546,7 @@ static void AddLeetChr(uint8_t c, int IsLeet, uint8_t *Leeted, uint8_t *UnLeet) /********************************************************************************** * Given details of a word match, update it with the entropy (as natural log of - * number of possiblities) + * number of possibilities) */ static void DictionaryEntropy(ZxcMatch_t *m, DictMatchInfo_t *Extra, const uint8_t *Pwd) { @@ -1244,7 +1244,7 @@ static const char *Formats[] = 0 }; /* Possible separator characters that could be used */ -static const char DateSeperators[] = "/\\-_. "; +static const char DateSeparators[] = "/\\-_. "; /********************************************************************************** * Try to match the password with the formats above. @@ -1273,7 +1273,7 @@ static void DateMatch(ZxcMatch_t **Result, const uint8_t *Passwd, int Start, int { if (*Fmt == '?') { - if (!Sep && strchr(DateSeperators, *p)) + if (!Sep && strchr(DateSeparators, *p)) Sep = *p; Fail = (*p != Sep); } @@ -1370,7 +1370,7 @@ static void RepeatMatch(ZxcMatch_t **Result, const uint8_t *Passwd, int Start, i int Len, i; uint8_t c; Passwd += Start; - /* Remember first char and the count its occurances */ + /* Remember first char and the count its occurrences */ c = *Passwd; for(Len = 1; (Len < MaxLen) && (c == Passwd[Len]); ++Len) { } @@ -1533,9 +1533,9 @@ static void SequenceMatch(ZxcMatch_t **Result, const uint8_t *Passwd, int Start, /********************************************************************************** * Matching a password is treated as a problem of finding the minimum distance - * between two vertexes in a graph. This is solved using Dijkstra's algorithm. + * between two vertices in a graph. This is solved using Dijkstra's algorithm. * - * There are a series of nodes (or vertexes in graph terminology) which correspond + * There are a series of nodes (or vertices in graph terminology) which correspond * to points between each character of the password. Also there is a start node * before the first character and an end node after the last character. * @@ -1546,7 +1546,7 @@ static void SequenceMatch(ZxcMatch_t **Result, const uint8_t *Passwd, int Start, * end node. * * Dijkstra's algorithm finds the combination of these part matches (or paths) - * which gives the lowest entropy (or smallest distance) from begining to end + * which gives the lowest entropy (or smallest distance) from beginning to end * of the password. */ diff --git a/src/zxcvbn/zxcvbn.h b/src/thirdparty/zxcvbn/zxcvbn.h similarity index 95% rename from src/zxcvbn/zxcvbn.h rename to src/thirdparty/zxcvbn/zxcvbn.h index 9500c7a95..550680505 100644 --- a/src/zxcvbn/zxcvbn.h +++ b/src/thirdparty/zxcvbn/zxcvbn.h @@ -68,7 +68,7 @@ typedef enum /* Linked list of information returned in the Info arg to ZxcvbnMatch */ struct ZxcMatch { - int Begin; /* Char position of begining of match */ + int Begin; /* Char position of beginning of match */ int Length; /* Number of chars in the match */ double Entrpy; /* The entropy of the match */ double MltEnpy; /* Entropy with additional allowance for multipart password */ @@ -85,13 +85,13 @@ extern "C" { #ifdef USE_DICT_FILE /********************************************************************************** - * Read the dictionnary data from the given file. Returns 1 if OK, 0 if error. + * Read the dictionary data from the given file. Returns 1 if OK, 0 if error. * Called once at program startup. */ int ZxcvbnInit(const char *); /********************************************************************************** - * Free the dictionnary data after use. Called once at program shutdown. + * Free the dictionary data after use. Called once at program shutdown. */ void ZxcvbnUnInit(); @@ -107,7 +107,7 @@ void ZxcvbnUnInit(); * The main password matching function. May be called multiple times. * The parameters are: * Passwd The password to be tested. Null terminated string. - * UserDict User supplied dictionary words to be considered particulary bad. Passed + * UserDict User supplied dictionary words to be considered particularly bad. Passed * as a pointer to array of string pointers, with null last entry (like * the argv parameter to main()). May be null or point to empty array when * there are no user dictionary words. diff --git a/src/touchid/TouchID.h b/src/touchid/TouchID.h deleted file mode 100644 index a5e80f0f9..000000000 --- a/src/touchid/TouchID.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef KEEPASSX_TOUCHID_H -#define KEEPASSX_TOUCHID_H - -#define TOUCHID_UNDEFINED -1 -#define TOUCHID_AVAILABLE 1 -#define TOUCHID_NOT_AVAILABLE 0 - -#include - -class TouchID -{ -public: - static TouchID& getInstance(); - -private: - TouchID() - { - } - - // TouchID(TouchID const&); // Don't Implement - // void operator=(TouchID const&); // Don't implement - - QHash m_encryptedMasterKeys; - int m_available = TOUCHID_UNDEFINED; - -public: - TouchID(TouchID const&) = delete; - - void operator=(TouchID const&) = delete; - - bool storeKey(const QString& databasePath, const QByteArray& passwordKey); - - bool getKey(const QString& databasePath, QByteArray& passwordKey) const; - - bool containsKey(const QString& databasePath) const; - - bool isAvailable(); - - bool authenticate(const QString& message = "") const; - - void reset(const QString& databasePath = ""); -}; - -#endif // KEEPASSX_TOUCHID_H diff --git a/src/touchid/TouchID.mm b/src/touchid/TouchID.mm deleted file mode 100644 index e7539262e..000000000 --- a/src/touchid/TouchID.mm +++ /dev/null @@ -1,339 +0,0 @@ -#define SECURITY_ACCOUNT_PREFIX QString("KeepassXC_TouchID_Keys_") - -#include "touchid/TouchID.h" - -#include "crypto/Random.h" -#include "crypto/SymmetricCipher.h" -#include "crypto/CryptoHash.h" - -#include -#include -#include -#include - -#include - -inline void debug(const char* message, ...) -{ - Q_UNUSED(message); - // qWarning(...); -} - -inline QString hash(const QString& value) -{ - QByteArray result = CryptoHash::hash(value.toUtf8(), CryptoHash::Sha256).toHex(); - return QString(result); -} - -/** - * Singleton - */ -TouchID& TouchID::getInstance() -{ - static TouchID instance; // Guaranteed to be destroyed. - // Instantiated on first use. - return instance; -} - -/** - * Generates a random AES 256bit key and uses it to encrypt the PasswordKey that - * protects the database. The encrypted PasswordKey is kept in memory while the - * AES key is stored in the macOS KeyChain protected by TouchID. - */ -bool TouchID::storeKey(const QString& databasePath, const QByteArray& passwordKey) -{ - if (databasePath.isEmpty() || passwordKey.isEmpty()) { - // illegal arguments - debug("TouchID::storeKey - Illegal arguments: databasePath = %s, len(passwordKey) = %d", - databasePath.toUtf8().constData(), - passwordKey.length()); - return false; - } - - if (this->m_encryptedMasterKeys.contains(databasePath)) { - // already stored key for this database - debug("TouchID::storeKey - Already stored key for this database"); - return true; - } - - // generate random AES 256bit key and IV - QByteArray randomKey = randomGen()->randomArray(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); - QByteArray randomIV = randomGen()->randomArray(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); - - SymmetricCipher aes256Encrypt; - if (!aes256Encrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Encrypt, randomKey, randomIV)) { - debug("TouchID::storeKey - Error initializing encryption: %s", - aes256Encrypt.errorString().toUtf8().constData()); - return false; - } - - // encrypt and keep result in memory - QByteArray encryptedMasterKey = passwordKey; - if (!aes256Encrypt.finish(encryptedMasterKey)) { - debug("TouchID::storeKey - Error encrypting: %s", aes256Encrypt.errorString().toUtf8().constData()); - debug(aes256Encrypt.errorString().toUtf8().constData()); - return false; - } - - // memorize which database the stored key is for - m_encryptedMasterKeys.insert(databasePath, encryptedMasterKey); - - NSString* accountName = (SECURITY_ACCOUNT_PREFIX + hash(databasePath)).toNSString(); // autoreleased - - // try to delete an existing entry - CFMutableDictionaryRef - query = CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); - - CFDictionarySetValue(query, kSecClass, kSecClassGenericPassword); - CFDictionarySetValue(query, kSecAttrAccount, (__bridge CFStringRef) accountName); - CFDictionarySetValue(query, kSecReturnData, kCFBooleanFalse); - - // get data from the KeyChain - OSStatus status = SecItemDelete(query); - - debug("TouchID::storeKey - Status deleting existing entry: %d", status); - - // prepare adding secure entry to the macOS KeyChain - CFErrorRef error = NULL; - SecAccessControlRef sacObject; -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - if (@available(macOS 10.15, *)) { - // kSecAccessControlWatch is only available for macOS 10.15 and later - sacObject = SecAccessControlCreateWithFlags(kCFAllocatorDefault, - kSecAttrAccessibleWhenUnlockedThisDeviceOnly, - kSecAccessControlOr | kSecAccessControlBiometryCurrentSet | kSecAccessControlWatch, - &error); - } else { -#endif -#if MAC_OS_X_VERSION_MIN_REQUIRED >= 101201 - sacObject = SecAccessControlCreateWithFlags(kCFAllocatorDefault, - kSecAttrAccessibleWhenUnlockedThisDeviceOnly, - kSecAccessControlTouchIDCurrentSet, // depr: kSecAccessControlBiometryCurrentSet, - &error); -#endif -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - } -#endif - - - if (sacObject == NULL || error != NULL) { - NSError* e = (__bridge NSError*) error; - debug("TouchID::storeKey - Error creating security flags: %s", e.localizedDescription.UTF8String); - return false; - } - - CFMutableDictionaryRef attributes = - CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); - - // prepare data (key) to be stored - QByteArray dataBytes = (randomKey + randomIV).toHex(); - - CFDataRef valueData = - CFDataCreateWithBytesNoCopy(NULL, reinterpret_cast(dataBytes.data()), dataBytes.length(), NULL); - - CFDictionarySetValue(attributes, kSecClass, kSecClassGenericPassword); - CFDictionarySetValue(attributes, kSecAttrAccount, (__bridge CFStringRef) accountName); - CFDictionarySetValue(attributes, kSecValueData, valueData); - CFDictionarySetValue(attributes, kSecAttrSynchronizable, kCFBooleanFalse); - CFDictionarySetValue(attributes, kSecUseAuthenticationUI, kSecUseAuthenticationUIAllow); - CFDictionarySetValue(attributes, kSecAttrAccessControl, sacObject); - - // add to KeyChain - status = SecItemAdd(attributes, NULL); - - debug("TouchID::storeKey - Status adding new entry: %d", status); // read w/ e.g. "security error -50" in shell - - CFRelease(sacObject); - CFRelease(attributes); - - if (status != errSecSuccess) { - debug("TouchID::storeKey - Not successful, resetting TouchID"); - this->m_encryptedMasterKeys.remove(databasePath); - return false; - } - - return true; -} - -/** - * Checks if an encrypted PasswordKey is available for the given database, tries to - * decrypt it using the KeyChain and if successful, returns it. - */ -bool TouchID::getKey(const QString& databasePath, QByteArray& passwordKey) const -{ - passwordKey.clear(); - if (databasePath.isEmpty()) { - // illegal arguments - debug("TouchID::storeKey - Illegal argument: databasePath = %s", databasePath.toUtf8().constData()); - return false; - } - - // checks if encrypted PasswordKey is available and is stored for the given database - if (!containsKey(databasePath)) { - debug("TouchID::getKey - No stored key found"); - return false; - } - - // query the KeyChain for the AES key - CFMutableDictionaryRef - query = CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); - - NSString* accountName = (SECURITY_ACCOUNT_PREFIX + hash(databasePath)).toNSString(); // autoreleased - NSString* touchPromptMessage = - QCoreApplication::translate("DatabaseOpenWidget", "authenticate to access the database") - .toNSString(); // autoreleased - - CFDictionarySetValue(query, kSecClass, kSecClassGenericPassword); - CFDictionarySetValue(query, kSecAttrAccount, (__bridge CFStringRef) accountName); - CFDictionarySetValue(query, kSecReturnData, kCFBooleanTrue); - CFDictionarySetValue(query, kSecUseOperationPrompt, (__bridge CFStringRef) touchPromptMessage); - - // get data from the KeyChain - CFTypeRef dataTypeRef = NULL; - OSStatus status = SecItemCopyMatching(query, &dataTypeRef); - CFRelease(query); - - if (status == errSecUserCanceled) { - // user canceled the authentication, return true with empty key - debug("TouchID::getKey - User canceled authentication"); - return true; - } else if (status != errSecSuccess || dataTypeRef == NULL) { - debug("TouchID::getKey - Error retrieving result: %d", status); - return false; - } - - CFDataRef valueData = static_cast(dataTypeRef); - QByteArray dataBytes = QByteArray::fromHex(QByteArray(reinterpret_cast(CFDataGetBytePtr(valueData)), - CFDataGetLength(valueData))); - CFRelease(valueData); - - // extract AES key and IV from data bytes - QByteArray key = dataBytes.left(SymmetricCipher::keySize(SymmetricCipher::Aes256_GCM)); - QByteArray iv = dataBytes.right(SymmetricCipher::defaultIvSize(SymmetricCipher::Aes256_GCM)); - - SymmetricCipher aes256Decrypt; - if (!aes256Decrypt.init(SymmetricCipher::Aes256_GCM, SymmetricCipher::Decrypt, key, iv)) { - debug("TouchID::getKey - Error initializing decryption: %s", aes256Decrypt.errorString().toUtf8().constData()); - return false; - } - - // decrypt PasswordKey from memory using AES - passwordKey = m_encryptedMasterKeys[databasePath]; - if (!aes256Decrypt.finish(passwordKey)) { - passwordKey.clear(); - debug("TouchID::getKey - Error decryption: %s", aes256Decrypt.errorString().toUtf8().constData()); - return false; - } - - return true; -} - -bool TouchID::containsKey(const QString& dbPath) const -{ - return m_encryptedMasterKeys.contains(dbPath); -} - -/** - * Dynamic check if TouchID is available on the current machine. - */ -bool TouchID::isAvailable() -{ -#if MAC_OS_X_VERSION_MIN_REQUIRED < 101201 - return false; -#else - // cache result - if (this->m_available != TOUCHID_UNDEFINED) { - return (this->m_available == TOUCHID_AVAILABLE); - } - - @try { - LAContext* context = [[LAContext alloc] init]; - - LAPolicy policyCode; -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - if (@available(macOS 10.15, *)) { - policyCode = LAPolicyDeviceOwnerAuthenticationWithBiometricsOrWatch; - } else { -#endif - policyCode = LAPolicyDeviceOwnerAuthenticationWithBiometrics; -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - } -#endif - - bool canAuthenticate = [context canEvaluatePolicy:policyCode error:nil]; - [context release]; - this->m_available = canAuthenticate ? TOUCHID_AVAILABLE : TOUCHID_NOT_AVAILABLE; - return canAuthenticate; - } - @catch (NSException*) { - this->m_available = TOUCHID_NOT_AVAILABLE; - return false; - } -#endif -} - -typedef enum -{ - kTouchIDResultNone, - kTouchIDResultAllowed, - kTouchIDResultFailed -} TouchIDResult; - -/** - * Performs a simple authentication using TouchID. - */ -bool TouchID::authenticate(const QString& message) const -{ - // message must not be an empty string - QString msg = message; - if (message.length() == 0) - msg = QCoreApplication::translate("DatabaseOpenWidget", "authenticate a privileged operation"); - - @try { - LAContext* context = [[LAContext alloc] init]; - __block TouchIDResult result = kTouchIDResultNone; - NSString* authMessage = msg.toNSString(); // autoreleased - - LAPolicy policyCode; -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - if (@available(macOS 10.15, *)) { - policyCode = LAPolicyDeviceOwnerAuthenticationWithBiometricsOrWatch; - } else { -#endif -#if MAC_OS_X_VERSION_MIN_REQUIRED >= 101201 - policyCode = LAPolicyDeviceOwnerAuthenticationWithBiometrics; -#endif -#if __clang_major__ >= 9 && MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 - } -#endif - - [context evaluatePolicy:policyCode - localizedReason:authMessage reply:^(BOOL success, NSError* error) { - Q_UNUSED(error); - result = success ? kTouchIDResultAllowed : kTouchIDResultFailed; - CFRunLoopWakeUp(CFRunLoopGetCurrent()); - }]; - - while (result == kTouchIDResultNone) - CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true); - - [context release]; - return result == kTouchIDResultAllowed; - } - @catch (NSException*) { - return false; - } -} - -/** - * Resets the inner state either for all or for the given database - */ -void TouchID::reset(const QString& databasePath) -{ - if (databasePath.isEmpty()) { - this->m_encryptedMasterKeys.clear(); - return; - } - - this->m_encryptedMasterKeys.remove(databasePath); -} diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 325ff880e..25b116d8e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018 KeePassXC Team +# Copyright (C) 2023 KeePassXC Team # Copyright (C) 2010 Felix Geyer # # This program is free software: you can redistribute it and/or modify @@ -75,6 +75,8 @@ macro(add_unit_test) add_test(${_test_NAME} ${_test_LAUNCHER} ${_test_NAME}) endif(KDE4_TEST_OUTPUT STREQUAL "xml") + set_tests_properties(${_test_NAME} PROPERTIES ENVIRONMENT "LANG=en_US.UTF-8") + if(NOT MSVC_IDE) #not needed for the ide # if the tests are EXCLUDE_FROM_ALL, add a target "buildtests" to build all tests if(NOT WITH_TESTS) @@ -88,7 +90,7 @@ macro(add_unit_test) endif() endmacro(add_unit_test) -set(TEST_LIBRARIES keepassx_core Qt5::Test) +set(TEST_LIBRARIES keepassxc_gui Qt5::Test) set(testsupport_SOURCES modeltest.cpp @@ -140,8 +142,8 @@ add_unit_test(NAME testdeletedobjects SOURCES TestDeletedObjects.cpp add_unit_test(NAME testkeepass1reader SOURCES TestKeePass1Reader.cpp LIBS ${TEST_LIBRARIES}) -add_unit_test(NAME testopvaultreader SOURCES TestOpVaultReader.cpp - LIBS ${TEST_LIBRARIES}) +add_unit_test(NAME testimports SOURCES TestImports.cpp + LIBS ${TEST_LIBRARIES}) if(WITH_XC_NETWORKING) add_unit_test(NAME testupdatecheck SOURCES TestUpdateCheck.cpp @@ -152,16 +154,16 @@ endif() if(WITH_XC_AUTOTYPE) add_unit_test(NAME testautotype SOURCES TestAutoType.cpp - LIBS ${TEST_LIBRARIES}) + LIBS testsupport ${TEST_LIBRARIES}) set_target_properties(testautotype PROPERTIES ENABLE_EXPORTS ON) endif() if(WITH_XC_SSHAGENT) add_unit_test(NAME testopensshkey SOURCES TestOpenSSHKey.cpp - LIBS sshagent ${TEST_LIBRARIES}) + LIBS sshagent testsupport ${TEST_LIBRARIES}) if(NOT WIN32) add_unit_test(NAME testsshagent SOURCES TestSSHAgent.cpp - LIBS ${TEST_LIBRARIES}) + LIBS sshagent testsupport ${TEST_LIBRARIES}) endif() endif() @@ -193,7 +195,7 @@ add_unit_test(NAME testcsvparser SOURCES TestCsvParser.cpp LIBS ${TEST_LIBRARIES}) add_unit_test(NAME testrandomgenerator SOURCES TestRandomGenerator.cpp - LIBS testsupport ${TEST_LIBRARIES}) + LIBS testsupport ${TEST_LIBRARIES}) add_unit_test(NAME testentrysearcher SOURCES TestEntrySearcher.cpp LIBS ${TEST_LIBRARIES}) @@ -223,16 +225,26 @@ add_unit_test(NAME testconfig SOURCES TestConfig.cpp if(WITH_XC_FDOSECRETS) add_unit_test(NAME testfdosecrets SOURCES TestFdoSecrets.cpp - LIBS testsupport ${TEST_LIBRARIES}) + LIBS testsupport fdosecrets ${TEST_LIBRARIES}) endif() if(WITH_XC_BROWSER) add_unit_test(NAME testbrowser SOURCES TestBrowser.cpp - LIBS ${TEST_LIBRARIES}) + LIBS browser ${TEST_LIBRARIES}) + + if(WITH_XC_BROWSER_PASSKEYS) + add_unit_test(NAME testpasskeys SOURCES TestPasskeys.cpp + LIBS browser ${TEST_LIBRARIES}) + endif() +endif() + +if(WITH_XC_NETWORKING OR WITH_XC_BROWSER) + add_unit_test(NAME testurltools SOURCES TestUrlTools.cpp LIBS ${TEST_LIBRARIES}) endif() add_unit_test(NAME testcli SOURCES TestCli.cpp - LIBS testsupport cli ${TEST_LIBRARIES}) + LIBS testsupport cli ${ZXCVBN_LIBRARIES} ${TEST_LIBRARIES}) +target_compile_definitions(testcli PRIVATE KEEPASSX_CLI_PATH="$") if(WITH_GUI_TESTS) add_subdirectory(gui) diff --git a/tests/TestAutoType.cpp b/tests/TestAutoType.cpp index 235ba5a86..91bd7d0a4 100644 --- a/tests/TestAutoType.cpp +++ b/tests/TestAutoType.cpp @@ -30,13 +30,15 @@ #include "crypto/Crypto.h" #include "gui/MessageBox.h" #include "gui/osutils/OSUtils.h" +#include "util/TemporaryFile.h" QTEST_GUILESS_MAIN(TestAutoType) void TestAutoType::initTestCase() { QVERIFY(Crypto::init()); - Config::createTempFileInstance(); + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); config()->set(Config::AutoTypeDelay, 1); config()->set(Config::Security_AutoTypeAsk, false); AutoType::createTestInstance(); @@ -62,8 +64,7 @@ void TestAutoType::init() m_db = QSharedPointer::create(); m_dbList.clear(); m_dbList.append(m_db); - m_group = new Group(); - m_db->setRootGroup(m_group); + m_group = m_db->rootGroup(); AutoTypeAssociations::Association association; @@ -337,7 +338,7 @@ void TestAutoType::testAutoTypeSyntaxChecks() QVERIFY2(AutoType::verifyAutoTypeSyntax("{S:FOO}{S:HELLO WORLD}", entry, error), error.toLatin1()); QVERIFY2(!AutoType::verifyAutoTypeSyntax("{S:SPECIAL_TOKEN{}}", entry, error), error.toLatin1()); - QVERIFY2(!AutoType::verifyAutoTypeSyntax("{BEEP 3 3}", entry, error), error.toLatin1()); + QVERIFY2(AutoType::verifyAutoTypeSyntax("{BEEP 3 3}", entry, error), error.toLatin1()); QVERIFY2(AutoType::verifyAutoTypeSyntax("{BEEP 3}", entry, error), error.toLatin1()); QVERIFY2(AutoType::verifyAutoTypeSyntax("{VKEY 0x01}", entry, error), error.toLatin1()); diff --git a/tests/TestBrowser.cpp b/tests/TestBrowser.cpp index 6dcff3b74..f13c13c42 100644 --- a/tests/TestBrowser.cpp +++ b/tests/TestBrowser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2025 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 @@ -37,6 +37,7 @@ const QString SECRETKEY = "B8ei4ZjQJkWzZU2SK/tBsrYRwp+6ztEMf5GFQV+i0yI="; const QString SERVERPUBLICKEY = "lKnbLhrVCOqzEjuNoUz1xj9EZlz8xeO4miZBvLrUPVQ="; const QString SERVERSECRETKEY = "tbPQcghxfOgbmsnEqG2qMIj1W2+nh+lOJcNsHncaz1Q="; const QString NONCE = "zBKdvTjL5bgWaKMCTut/8soM/uoMrFoZ"; +const QString INCREMENTEDNONCE = "zRKdvTjL5bgWaKMCTut/8soM/uoMrFoZ"; const QString CLIENTID = "testClient"; void TestBrowser::initTestCase() @@ -107,55 +108,40 @@ void TestBrowser::testGetBase64FromKey() void TestBrowser::testIncrementNonce() { auto result = browserMessageBuilder()->incrementNonce(NONCE); - QCOMPARE(result, QString("zRKdvTjL5bgWaKMCTut/8soM/uoMrFoZ")); + QCOMPARE(result, INCREMENTEDNONCE); } -/** - * Tests for BrowserService - */ -void TestBrowser::testTopLevelDomain() +void TestBrowser::testBuildResponse() { - QString url1 = "https://another.example.co.uk"; - QString url2 = "https://www.example.com"; - QString url3 = "http://test.net"; - QString url4 = "http://so.many.subdomains.co.jp"; - QString url5 = "https://192.168.0.1"; - QString url6 = "https://192.168.0.1:8000"; + const auto object = QJsonObject{{"test", true}}; + const QJsonArray arr = {QJsonObject{{"test", true}}}; + const auto val = QString("value1"); - QString res1 = m_browserService->getTopLevelDomainFromUrl(url1); - QString res2 = m_browserService->getTopLevelDomainFromUrl(url2); - QString res3 = m_browserService->getTopLevelDomainFromUrl(url3); - QString res4 = m_browserService->getTopLevelDomainFromUrl(url4); - QString res5 = m_browserService->getTopLevelDomainFromUrl(url5); - QString res6 = m_browserService->getTopLevelDomainFromUrl(url6); + // Note: Passing a const QJsonObject will fail + const Parameters params{ + {"test-param-1", val}, {"test-param-2", 2}, {"test-param-3", false}, {"object", object}, {"arr", arr}}; - QCOMPARE(res1, QString("example.co.uk")); - QCOMPARE(res2, QString("example.com")); - QCOMPARE(res3, QString("test.net")); - QCOMPARE(res4, QString("subdomains.co.jp")); - QCOMPARE(res5, QString("192.168.0.1")); - QCOMPARE(res6, QString("192.168.0.1")); -} + const auto action = QString("test-action"); + const auto message = browserMessageBuilder()->buildResponse(action, NONCE, params, PUBLICKEY, SERVERSECRETKEY); + QVERIFY(!message.isEmpty()); + QCOMPARE(message["action"].toString(), action); + QCOMPARE(message["nonce"].toString(), NONCE); -void TestBrowser::testIsIpAddress() -{ - auto host1 = "example.com"; // Not valid - auto host2 = "192.168.0.1"; - auto host3 = "278.21.2.0"; // Not valid - auto host4 = "2001:0db8:85a3:0000:0000:8a2e:0370:7334"; - auto host5 = "2001:db8:0:1:1:1:1:1"; - auto host6 = "fe80::1ff:fe23:4567:890a"; - auto host7 = "2001:20::1"; - auto host8 = "2001:0db8:85y3:0000:0000:8a2e:0370:7334"; // Not valid + const auto decrypted = + browserMessageBuilder()->decryptMessage(message["message"].toString(), NONCE, PUBLICKEY, SERVERSECRETKEY); + QVERIFY(!decrypted.isEmpty()); + QCOMPARE(decrypted["test-param-1"].toString(), QString("value1")); + QCOMPARE(decrypted["test-param-2"].toInt(), 2); + QCOMPARE(decrypted["test-param-3"].toBool(), false); - QVERIFY(!m_browserService->isIpAddress(host1)); - QVERIFY(m_browserService->isIpAddress(host2)); - QVERIFY(!m_browserService->isIpAddress(host3)); - QVERIFY(m_browserService->isIpAddress(host4)); - QVERIFY(m_browserService->isIpAddress(host5)); - QVERIFY(m_browserService->isIpAddress(host6)); - QVERIFY(m_browserService->isIpAddress(host7)); - QVERIFY(!m_browserService->isIpAddress(host8)); + const auto objectResult = decrypted["object"].toObject(); + QCOMPARE(objectResult["test"].toBool(), true); + + const auto arrResult = decrypted["arr"].toArray(); + QCOMPARE(arrResult.size(), 1); + + const auto firstArr = arrResult[0].toObject(); + QCOMPARE(firstArr["test"].toBool(), true); } void TestBrowser::testSortPriority() @@ -168,8 +154,7 @@ void TestBrowser::testSortPriority() QScopedPointer entry(new Entry()); entry->setUrl(entryUrl); - QCOMPARE(m_browserService->sortPriority(m_browserService->getEntryURLs(entry.data()), siteUrl, formUrl), - expectedScore); + QCOMPARE(m_browserService->sortPriority(entry->getAllUrls(), siteUrl, formUrl), expectedScore); } void TestBrowser::testSortPriority_data() @@ -185,26 +170,22 @@ void TestBrowser::testSortPriority_data() QTest::newRow("Exact Match") << siteUrl << siteUrl << siteUrl << 100; QTest::newRow("Exact Match (site)") << siteUrl << siteUrl << formUrl << 100; QTest::newRow("Exact Match (form)") << siteUrl << "https://github.net" << siteUrl << 100; - QTest::newRow("Exact Match No Trailing Slash") << "https://github.com" - << "https://github.com/" << formUrl << 100; + QTest::newRow("Exact Match No Trailing Slash") << "https://github.com" << "https://github.com/" << formUrl << 100; QTest::newRow("Exact Match No Scheme") << "github.com/login" << siteUrl << formUrl << 100; - QTest::newRow("Exact Match with Query") << "https://github.com/login?test=test#fragment" - << "https://github.com/login?test=test" << formUrl << 100; + QTest::newRow("Exact Match with Query") + << "https://github.com/login?test=test#fragment" << "https://github.com/login?test=test" << formUrl << 100; QTest::newRow("Site Query Mismatch") << siteUrl << siteUrl + "?test=test" << formUrl << 90; QTest::newRow("Path Mismatch (site)") << "https://github.com/" << siteUrl << formUrl << 85; QTest::newRow("Path Mismatch (site) No Scheme") << "github.com" << siteUrl << formUrl << 85; - QTest::newRow("Path Mismatch (form)") << "https://github.com/" - << "https://github.net" << formUrl << 85; + QTest::newRow("Path Mismatch (form)") << "https://github.com/" << "https://github.net" << formUrl << 85; QTest::newRow("Path Mismatch (diff parent)") << "https://github.com/keepassxreboot" << siteUrl << formUrl << 80; - QTest::newRow("Path Mismatch (diff parent, form)") << "https://github.com/keepassxreboot" - << "https://github.net" << formUrl << 70; + QTest::newRow("Path Mismatch (diff parent, form)") + << "https://github.com/keepassxreboot" << "https://github.net" << formUrl << 70; - QTest::newRow("Subdomain Mismatch (site)") << siteUrl << "https://sub.github.com/" - << "https://github.net/" << 60; - QTest::newRow("Subdomain Mismatch (form)") << siteUrl << "https://github.net/" - << "https://sub.github.com/" << 50; + QTest::newRow("Subdomain Mismatch (site)") << siteUrl << "https://sub.github.com/" << "https://github.net/" << 60; + QTest::newRow("Subdomain Mismatch (form)") << siteUrl << "https://github.net/" << "https://sub.github.com/" << 50; QTest::newRow("Scheme Mismatch") << "http://github.com" << siteUrl << formUrl << 0; QTest::newRow("Scheme Mismatch w/path") << "http://github.com/login" << siteUrl << formUrl << 0; @@ -241,7 +222,7 @@ void TestBrowser::testSearchEntries() QCOMPARE(result[4]->url(), QString("http://github.com")); QCOMPARE(result[5]->url(), QString("http://github.com/login")); - // With matching there should be only 3 results + 4 without a scheme + // With matching there should be only 4 results + 4 without a scheme browserSettings()->setMatchUrlScheme(true); result = m_browserService->searchEntries(db, "https://github.com", "https://github.com/session"); QCOMPARE(result.length(), 7); @@ -281,7 +262,7 @@ void TestBrowser::compareEntriesByPath(QSharedPointer db, QListtitle(); /* Look for an entry with that path. First using handleEntry, then through the search */ - QCOMPARE(m_browserService->handleEntry(entry, testUrl, ""), true); + QCOMPARE(m_browserService->shouldIncludeEntry(entry, testUrl, ""), true); auto result = m_browserService->searchEntries(db, testUrl, ""); QCOMPARE(result.length(), 1); QCOMPARE(result[0], entry); @@ -310,8 +291,8 @@ void TestBrowser::testSearchEntriesByUUID() for (Entry* entry : entries) { QString testUrl = "keepassxc://by-uuid/" + entry->uuidToHex(); - /* Look for an entry with that UUID. First using handleEntry, then through the search */ - QCOMPARE(m_browserService->handleEntry(entry, testUrl, ""), true); + /* Look for an entry with that UUID. First using shouldIncludeEntry, then through the search */ + QCOMPARE(m_browserService->shouldIncludeEntry(entry, testUrl, ""), true); auto result = m_browserService->searchEntries(db, testUrl, ""); QCOMPARE(result.length(), 1); QCOMPARE(result[0], entry); @@ -329,7 +310,7 @@ void TestBrowser::testSearchEntriesByUUID() QString testUrl = "keepassxc://by-uuid/" + uuid; for (Entry* entry : entries) { - QCOMPARE(m_browserService->handleEntry(entry, testUrl, ""), false); + QCOMPARE(m_browserService->shouldIncludeEntry(entry, testUrl, ""), false); } auto result = m_browserService->searchEntries(db, testUrl, ""); @@ -337,6 +318,48 @@ void TestBrowser::testSearchEntriesByUUID() } } +void TestBrowser::testSearchEntriesByReference() +{ + auto db = QSharedPointer::create(); + auto* root = db->rootGroup(); + + /* The URLs don't really matter for this test, we just need some entries */ + QStringList urls = {"https://subdomain.example.com", + "example.com", // Only includes a partial URL for references + "https://another.domain.com", // Additional URL as full reference + "https://subdomain.somesite.com", // Additional URL as partial reference + "", // Full reference will be added to https://subdomain.example.com + "" // Partial reference will be added to https://subdomain.example.com + "https://www.notincluded.com"}; // Should not show in search + auto entries = createEntries(urls, root); + + auto firstEntryUuid = entries.first()->uuidToHex(); + auto secondEntryUuid = entries[1]->uuidToHex(); + auto fullReference = QString("{REF:A@I:%1}").arg(firstEntryUuid); + auto partialReference = QString("https://subdomain.{REF:A@I:%1}").arg(secondEntryUuid); + entries[2]->attributes()->set(EntryAttributes::AdditionalUrlAttribute, fullReference); + entries[3]->attributes()->set(EntryAttributes::AdditionalUrlAttribute, partialReference); + entries[4]->setUrl(fullReference); + entries[5]->setUrl(partialReference); + + auto result = m_browserService->searchEntries(db, "https://subdomain.example.com", ""); + QCOMPARE(result.length(), 6); + QCOMPARE(result[0]->url(), urls[0]); + QCOMPARE(result[1]->url(), urls[1]); + QCOMPARE(result[2]->url(), urls[2]); + QCOMPARE( + result[2]->resolveMultiplePlaceholders(result[2]->attributes()->value(EntryAttributes::AdditionalUrlAttribute)), + urls[0]); + QCOMPARE(result[3]->url(), urls[3]); + QCOMPARE( + result[3]->resolveMultiplePlaceholders(result[3]->attributes()->value(EntryAttributes::AdditionalUrlAttribute)), + urls[0]); + QCOMPARE(result[4]->url(), fullReference); + QCOMPARE(result[4]->resolveMultiplePlaceholders(result[4]->url()), urls[0]); // Should be resolved to the main entry + QCOMPARE(result[5]->url(), partialReference); + QCOMPARE(result[5]->resolveMultiplePlaceholders(result[5]->url()), urls[0]); // Should be resolved to the main entry +} + void TestBrowser::testSearchEntriesWithPort() { auto db = QSharedPointer::create(); @@ -361,7 +384,7 @@ void TestBrowser::testSearchEntriesWithAdditionalURLs() auto entries = createEntries(urls, root); // Add an additional URL to the first entry - entries.first()->attributes()->set(BrowserService::ADDITIONAL_URL, "https://keepassxc.org"); + entries.first()->attributes()->set(EntryAttributes::AdditionalUrlAttribute, "https://keepassxc.org"); auto result = m_browserService->searchEntries(db, "https://github.com", "https://github.com/session"); QCOMPARE(result.length(), 1); @@ -373,6 +396,121 @@ void TestBrowser::testSearchEntriesWithAdditionalURLs() QCOMPARE(additionalResult[0]->url(), QString("https://github.com/")); } +void TestBrowser::testSearchEntriesWithWildcardURLs() +{ + auto db = QSharedPointer::create(); + auto* root = db->rootGroup(); + + QStringList urls = { + "https://github.com/login_page/*", + "https://github.com/*/second", + "https://github.com/*", + "http://github.com/*", + "github.com/*", // Defaults to https + "https://*.github.com/*", + "https://subdomain.*.github.com/*/second", + "https://*.sub.github.com/*", + "https://********", // Invalid wildcard URL + "https://subdomain.yes.github.com/*", + "https://example.com:8448/*", + "https://example.com/*/*", + "https://example.com/$/*", + "https://127.128.129.*:8448/", + "https://127.128.*/", + "https://127.160.*.2/login", + "http://[2001:db8:85a3:8d3:1319:8a2e:370:*]/", + "https://[2001:db8:85a3:8d3:*]:443/", + "fe80::1ff:fe23:4567:890a", + "2001-db8-85a3-8d3-1319-8a2e-370-7348.ipv6-literal.net", + "\"https://thisisatest.com/login.php\"" // Exact URL + }; + + createEntries(urls, root, true); + browserSettings()->setMatchUrlScheme(false); + + // Return first Additional URL + auto firstUrl = [&](Entry* entry) { return entry->attributes()->value(EntryAttributes::AdditionalUrlAttribute); }; + + auto result = m_browserService->searchEntries( + db, "https://github.com/login_page/second", "https://github.com/login_page/second"); + QCOMPARE(result.length(), 6); + QCOMPARE(firstUrl(result[0]), QString("https://github.com/login_page/*")); + QCOMPARE(firstUrl(result[1]), QString("https://github.com/*/second")); + QCOMPARE(firstUrl(result[2]), QString("https://github.com/*")); + QCOMPARE(firstUrl(result[3]), QString("http://github.com/*")); + QCOMPARE(firstUrl(result[4]), QString("github.com/*")); + QCOMPARE(firstUrl(result[5]), QString("https://*.github.com/*")); + + result = m_browserService->searchEntries( + db, "https://subdomain.sub.github.com/login_page/second", "https://subdomain.sub.github.com/login_page/second"); + QCOMPARE(result.length(), 3); + QCOMPARE(firstUrl(result[0]), QString("https://*.github.com/*")); + QCOMPARE(firstUrl(result[1]), QString("https://subdomain.*.github.com/*/second")); + QCOMPARE(firstUrl(result[2]), QString("https://*.sub.github.com/*")); + + result = m_browserService->searchEntries( + db, "https://subdomain.sub.github.com/other_page", "https://subdomain.sub.github.com/other_page"); + QCOMPARE(result.length(), 2); + QCOMPARE(firstUrl(result[0]), QString("https://*.github.com/*")); + QCOMPARE(firstUrl(result[1]), QString("https://*.sub.github.com/*")); + + result = m_browserService->searchEntries( + db, "https://subdomain.yes.github.com/other_page/second", "https://subdomain.yes.github.com/other_page/second"); + QCOMPARE(result.length(), 3); + QCOMPARE(firstUrl(result[0]), QString("https://*.github.com/*")); + QCOMPARE(firstUrl(result[1]), QString("https://subdomain.*.github.com/*/second")); + QCOMPARE(firstUrl(result[2]), QString("https://subdomain.yes.github.com/*")); + + result = m_browserService->searchEntries( + db, "https://example.com:8448/login/page", "https://example.com:8448/login/page"); + QCOMPARE(result.length(), 2); + QCOMPARE(firstUrl(result[0]), QString("https://example.com:8448/*")); + QCOMPARE(firstUrl(result[1]), QString("https://example.com/*/*")); + + result = m_browserService->searchEntries( + db, "https://example.com:8449/login/page", "https://example.com:8449/login/page"); + QCOMPARE(result.length(), 1); + QCOMPARE(firstUrl(result[0]), QString("https://example.com/*/*")); + + result = + m_browserService->searchEntries(db, "https://example.com/$/login_page", "https://example.com/$/login_page"); + QCOMPARE(result.length(), 2); + QCOMPARE(firstUrl(result[0]), QString("https://example.com/*/*")); + QCOMPARE(firstUrl(result[1]), QString("https://example.com/$/*")); + + result = m_browserService->searchEntries(db, "https://127.128.129.130:8448/", "https://127.128.129.130:8448/"); + QCOMPARE(result.length(), 2); + + result = m_browserService->searchEntries(db, "https://127.128.129.130/", "https://127.128.129.130/"); + QCOMPARE(result.length(), 1); + QCOMPARE(firstUrl(result[0]), QString("https://127.128.*/")); + + result = m_browserService->searchEntries(db, "https://127.1.129.130/", "https://127.1.129.130/"); + QCOMPARE(result.length(), 0); + + result = m_browserService->searchEntries(db, "https://127.160.8.2/login", "https://127.160.8.2/login"); + QCOMPARE(result.length(), 1); + QCOMPARE(firstUrl(result[0]), QString("https://127.160.*.2/login")); + + // Exact URL + result = + m_browserService->searchEntries(db, "https://thisisatest.com/login.php", "https://thisisatest.com/login.php"); + QCOMPARE(result.length(), 1); + QCOMPARE(firstUrl(result[0]), QString("\"https://thisisatest.com/login.php\"")); + + // With scheme matching enabled + browserSettings()->setMatchUrlScheme(true); + result = m_browserService->searchEntries( + db, "https://github.com/login_page/second", "https://github.com/login_page/second"); + + QCOMPARE(result.length(), 5); + QCOMPARE(firstUrl(result[0]), QString("https://github.com/login_page/*")); + QCOMPARE(firstUrl(result[1]), QString("https://github.com/*/second")); + QCOMPARE(firstUrl(result[2]), QString("https://github.com/*")); + QCOMPARE(firstUrl(result[3]), QString("github.com/*")); // Defaults to https + QCOMPARE(firstUrl(result[4]), QString("https://*.github.com/*")); +} + void TestBrowser::testInvalidEntries() { auto db = QSharedPointer::create(); @@ -439,6 +577,16 @@ void TestBrowser::testSubdomainsAndPaths() QCOMPARE(result[2]->url(), QString("http://www.github.com")); QCOMPARE(result[3]->url(), QString("www.github.com/")); + // With www subdomain omitted + root->setCustomDataTriState(BrowserService::OPTION_OMIT_WWW, Group::Enable); + result = m_browserService->searchEntries(db, "https://github.com", "https://github.com/session"); + root->setCustomDataTriState(BrowserService::OPTION_OMIT_WWW, Group::Inherit); + QCOMPARE(result.length(), 4); + QCOMPARE(result[0]->url(), QString("https://www.github.com/login/page.xml")); + QCOMPARE(result[1]->url(), QString("https://github.com")); + QCOMPARE(result[2]->url(), QString("http://www.github.com")); + QCOMPARE(result[3]->url(), QString("www.github.com/")); + // With scheme matching there should be only 1 result browserSettings()->setMatchUrlScheme(true); result = m_browserService->searchEntries(db, "https://github.com", "https://github.com/session"); @@ -483,14 +631,18 @@ void TestBrowser::testSubdomainsAndPaths() QCOMPARE(result.length(), 1); } -QList TestBrowser::createEntries(QStringList& urls, Group* root) const +QList TestBrowser::createEntries(QStringList& urls, Group* root, bool additionalUrl) const { QList entries; for (int i = 0; i < urls.length(); ++i) { auto entry = new Entry(); entry->setGroup(root); entry->beginUpdate(); - entry->setUrl(urls[i]); + if (additionalUrl) { + entry->attributes()->set(EntryAttributes::AdditionalUrlAttribute, urls[i]); + } else { + entry->setUrl(urls[i]); + } entry->setUsername(QString("User %1").arg(i)); entry->setUuid(QUuid::createUuid()); entry->setTitle(QString("Name_%1").arg(entry->uuidToHex())); @@ -500,26 +652,6 @@ QList TestBrowser::createEntries(QStringList& urls, Group* root) const return entries; } -void TestBrowser::testValidURLs() -{ - QHash urls; - urls["https://github.com/login"] = true; - urls["https:///github.com/"] = false; - urls["http://github.com/**//*"] = false; - urls["http://*.github.com/login"] = false; - urls["//github.com"] = true; - urls["github.com/{}<>"] = false; - urls["http:/example.com"] = false; - urls["cmd://C:/Toolchains/msys2/usr/bin/mintty \"ssh jon@192.168.0.1:22\""] = true; - urls["file:///Users/testUser/Code/test.html"] = true; - urls["{REF:A@I:46C9B1FFBD4ABC4BBB260C6190BAD20C} "] = true; - - QHashIterator i(urls); - while (i.hasNext()) { - i.next(); - QCOMPARE(Tools::checkUrlValid(i.key()), i.value()); - } -} void TestBrowser::testBestMatchingCredentials() { @@ -648,7 +780,7 @@ void TestBrowser::testBestMatchingWithAdditionalURLs() browserSettings()->setBestMatchOnly(true); // Add an additional URL to the first entry - entries.first()->attributes()->set(BrowserService::ADDITIONAL_URL, "https://test.github.com/anotherpage"); + entries.first()->attributes()->set(EntryAttributes::AdditionalUrlAttribute, "https://test.github.com/anotherpage"); // The first entry should be triggered auto result = m_browserService->searchEntries( @@ -658,3 +790,68 @@ void TestBrowser::testBestMatchingWithAdditionalURLs() QCOMPARE(sorted.length(), 1); QCOMPARE(sorted[0]->url(), urls[0]); } + +void TestBrowser::testRestrictBrowserKey() +{ + auto db = QSharedPointer::create(); + auto* root = db->rootGroup(); + + // Group 0 (root): No browser key restriction given + QStringList urlsRoot = {"https://example.com/0"}; + auto entriesRoot = createEntries(urlsRoot, root); + + // Group 1: restricted to browser with 'key1' + auto* group1 = new Group(); + group1->setParent(root); + group1->setName("TestGroup1"); + group1->customData()->set(BrowserService::OPTION_RESTRICT_KEY, "key1"); + QStringList urls1 = {"https://example.com/1"}; + auto entries1 = createEntries(urls1, group1); + + // Group 2: restricted to browser with 'key2' + auto* group2 = new Group(); + group2->setParent(root); + group2->setName("TestGroup2"); + group2->customData()->set(BrowserService::OPTION_RESTRICT_KEY, "key2"); + QStringList urls2 = {"https://example.com/2"}; + auto entries2 = createEntries(urls2, group2); + + // Group 2b: inherits parent group (2) restriction + auto* group2b = new Group(); + group2b->setParent(group2); + group2b->setName("TestGroup2b"); + QStringList urls2b = {"https://example.com/2b"}; + auto entries2b = createEntries(urls2b, group2b); + + // Group 3: inherits parent group (root) - any browser can see + auto* group3 = new Group(); + group3->setParent(root); + group3->setName("TestGroup3"); + QStringList urls3 = {"https://example.com/3"}; + auto entries3 = createEntries(urls3, group3); + + // Browser 'key0': Groups 1 and 2 are excluded, so entries 0 and 3 will be found + auto siteUrl = QString("https://example.com"); + auto result = m_browserService->searchEntries(db, siteUrl, siteUrl, {"key0"}); + auto sorted = m_browserService->sortEntries(result, siteUrl, siteUrl); + QCOMPARE(sorted.size(), 2); + QCOMPARE(sorted[0]->url(), QString("https://example.com/3")); + QCOMPARE(sorted[1]->url(), QString("https://example.com/0")); + + // Browser 'key1': Group 2 will be excluded, so entries 0, 1, and 3 will be found + result = m_browserService->searchEntries(db, siteUrl, siteUrl, {"key1"}); + sorted = m_browserService->sortEntries(result, siteUrl, siteUrl); + QCOMPARE(sorted.size(), 3); + QCOMPARE(sorted[0]->url(), QString("https://example.com/3")); + QCOMPARE(sorted[1]->url(), QString("https://example.com/1")); + QCOMPARE(sorted[2]->url(), QString("https://example.com/0")); + + // Browser 'key2': Group 1 will be excluded, so entries 0, 2, 2b, 3 will be found + result = m_browserService->searchEntries(db, siteUrl, siteUrl, {"key2"}); + sorted = m_browserService->sortEntries(result, siteUrl, siteUrl); + QCOMPARE(sorted.size(), 4); + QCOMPARE(sorted[0]->url(), QString("https://example.com/3")); + QCOMPARE(sorted[1]->url(), QString("https://example.com/2b")); + QCOMPARE(sorted[2]->url(), QString("https://example.com/2")); + QCOMPARE(sorted[3]->url(), QString("https://example.com/0")); +} diff --git a/tests/TestBrowser.h b/tests/TestBrowser.h index c4bfb0471..6a99e085d 100644 --- a/tests/TestBrowser.h +++ b/tests/TestBrowser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2025 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 @@ -36,24 +36,24 @@ private slots: void testDecryptMessage(); void testGetBase64FromKey(); void testIncrementNonce(); - - void testTopLevelDomain(); - void testIsIpAddress(); + void testBuildResponse(); void testSortPriority(); void testSortPriority_data(); void testSearchEntries(); void testSearchEntriesByPath(); void testSearchEntriesByUUID(); + void testSearchEntriesByReference(); void testSearchEntriesWithPort(); void testSearchEntriesWithAdditionalURLs(); + void testSearchEntriesWithWildcardURLs(); void testInvalidEntries(); void testSubdomainsAndPaths(); - void testValidURLs(); void testBestMatchingCredentials(); void testBestMatchingWithAdditionalURLs(); + void testRestrictBrowserKey(); private: - QList createEntries(QStringList& urls, Group* root) const; + QList createEntries(QStringList& urls, Group* root, bool additionalUrl = false) const; void compareEntriesByPath(QSharedPointer db, QList entries, QString path); QScopedPointer m_browserAction; diff --git a/tests/TestCli.cpp b/tests/TestCli.cpp index b79b5357c..9b2e5ab8f 100644 --- a/tests/TestCli.cpp +++ b/tests/TestCli.cpp @@ -34,7 +34,9 @@ #include "cli/AttachmentImport.h" #include "cli/AttachmentRemove.h" #include "cli/Clip.h" -#include "cli/Create.h" +#include "cli/DatabaseCreate.h" +#include "cli/DatabaseEdit.h" +#include "cli/DatabaseInfo.h" #include "cli/Diceware.h" #include "cli/Edit.h" #include "cli/Estimate.h" @@ -42,7 +44,6 @@ #include "cli/Generate.h" #include "cli/Help.h" #include "cli/Import.h" -#include "cli/Info.h" #include "cli/List.h" #include "cli/Merge.h" #include "cli/Move.h" @@ -57,6 +58,7 @@ #include #include #include +#include QTEST_MAIN(TestCli) @@ -64,7 +66,10 @@ void TestCli::initTestCase() { QVERIFY(Crypto::init()); - Config::createTempFileInstance(); + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); + + QLocale::setDefault(QLocale::c()); Bootstrap::bootstrap(); m_devNull.reset(new QFile()); @@ -101,6 +106,9 @@ void TestCli::init() m_yubiKeyProtectedDbFile.reset(new TemporaryFile()); m_yubiKeyProtectedDbFile->copyFromFile(file.arg("YubiKeyProtectedPasswords.kdbx")); + m_nonAsciiDbFile.reset(new TemporaryFile()); + m_nonAsciiDbFile->copyFromFile(file.arg("NonAscii.kdbx")); + m_stdout.reset(new QBuffer()); m_stdout->open(QIODevice::ReadWrite); Utils::STDOUT.setDevice(m_stdout.data()); @@ -242,7 +250,7 @@ void TestCli::testBatchCommands() QVERIFY(Commands::getCommand("show")); QVERIFY(Commands::getCommand("search")); QVERIFY(!Commands::getCommand("doesnotexist")); - QCOMPARE(Commands::getCommands().size(), 25); + QCOMPARE(Commands::getCommands().size(), 26); } void TestCli::testInteractiveCommands() @@ -274,7 +282,7 @@ void TestCli::testInteractiveCommands() QVERIFY(Commands::getCommand("show")); QVERIFY(Commands::getCommand("search")); QVERIFY(!Commands::getCommand("doesnotexist")); - QCOMPARE(Commands::getCommands().size(), 25); + QCOMPARE(Commands::getCommands().size(), 26); } void TestCli::testAdd() @@ -644,6 +652,7 @@ void TestCli::testClip() || errorOutput.contains("No program defined for clipboard manipulation")) { QSKIP("Clip test skipped due to missing clipboard tool"); } + QVERIFY(!errorOutput.contains("All clipping programs failed")); m_stderr->readLine(); // Skip password prompt QCOMPARE(m_stderr->readAll(), QByteArray()); @@ -662,10 +671,16 @@ void TestCli::testClip() execCmd(clipCmd, {"clip", m_dbFile->fileName(), "/Sample Entry", "0", "-a", "username"}); QTRY_COMPARE(clipboard->text(), QString("User Name")); + // Uuid (top-level field) + setInput("a"); + execCmd(clipCmd, {"clip", m_dbFile->fileName(), "/Sample Entry", "0", "-a", "Uuid"}); + QTRY_COMPARE(clipboard->text(), QString("{9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}")); + // TOTP setInput("a"); execCmd(clipCmd, {"clip", m_dbFile->fileName(), "/Sample Entry", "0", "--totp"}); QTRY_VERIFY(isTotp(clipboard->text())); + QCOMPARE(m_stdout->readLine(), QByteArray("Entry's \"totp\" attribute copied to the clipboard!\n")); // Test Unicode setInput("a"); @@ -681,7 +696,7 @@ void TestCli::testClip() // clang-format on QTRY_COMPARE(clipboard->text(), QString("Password")); - QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString(""), 2000); + QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString(""), 3000); future.waitForFinished(); @@ -692,7 +707,7 @@ void TestCli::testClip() QStringList{"clip", m_dbFile->fileName(), "/Sample Entry", "1", "-t"}); QTRY_VERIFY(isTotp(clipboard->text())); - QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString(""), 2000); + QTRY_COMPARE_WITH_TIMEOUT(clipboard->text(), QString(""), 3000); future.waitForFinished(); @@ -726,7 +741,7 @@ void TestCli::testClip() void TestCli::testCreate() { - Create createCmd; + DatabaseCreate createCmd; QVERIFY(!createCmd.name.isEmpty()); QVERIFY(createCmd.getDescriptionLine().contains(createCmd.name)); @@ -842,9 +857,147 @@ void TestCli::testCreate() QVERIFY(db); } +void TestCli::testDatabaseEdit() +{ + TemporaryFile firstKeyFile; + firstKeyFile.open(); + firstKeyFile.write(QString("keyFilePassword").toLatin1()); + firstKeyFile.close(); + + TemporaryFile secondKeyFile; + secondKeyFile.open(); + secondKeyFile.write(QString("newKeyFilePassword").toLatin1()); + secondKeyFile.close(); + + QScopedPointer testDir(new QTemporaryDir()); + + DatabaseCreate createCmd; + DatabaseEdit editCmd; + QVERIFY(!editCmd.name.isEmpty()); + QVERIFY(editCmd.getDescriptionLine().contains(editCmd.name)); + + QString dbFilename; + dbFilename = testDir->path() + "/testDatabaseEdit.kdbx"; + + // Creating a database for testing + setInput({"a", "a"}); + execCmd(createCmd, {"db-create", dbFilename, "-p"}); + QCOMPARE(m_stdout->readLine(), QByteArray("Successfully created new database.\n")); + + // Sanity check. + auto db = readDatabase(dbFilename, "a"); + QVERIFY(!db.isNull()); + + setInput("a"); + execCmd(editCmd, {"db-edit", dbFilename, "-p", "--unset-password"}); + QCOMPARE(m_stdout->readAll(), QByteArray("")); + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("Cannot use p and unset-password at the same time.\n")); + + setInput("a"); + execCmd(editCmd, {"db-edit", dbFilename, "--set-key-file", "/key/file/path", "--unset-key-file"}); + QCOMPARE(m_stdout->readAll(), QByteArray("")); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("Cannot use set-key-file and unset-key-file at the same time.\n")); + + // Sanity check. + db = readDatabase(dbFilename, "a"); + QVERIFY(!db.isNull()); + + setInput({"a", "b", "b"}); + execCmd(editCmd, {"db-edit", dbFilename, "-p"}); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + // Sanity check + db = readDatabase(dbFilename, "b"); + QVERIFY(!db.isNull()); + + setInput("b"); + execCmd(editCmd, {"db-edit", dbFilename, "--set-key-file", firstKeyFile.fileName()}); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("")); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + // Sanity check + db = readDatabase(dbFilename, "b"); + QVERIFY(db.isNull()); + db = readDatabase(dbFilename, "b", firstKeyFile.fileName()); + QVERIFY(!db.isNull()); + + setInput("b"); + execCmd(editCmd, + {"db-edit", dbFilename, "-k", firstKeyFile.fileName(), "--set-key-file", secondKeyFile.fileName()}); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + // Sanity check + db = readDatabase(dbFilename, "b", firstKeyFile.fileName()); + QVERIFY(db.isNull()); + db = readDatabase(dbFilename, "b", secondKeyFile.fileName()); + QVERIFY(!db.isNull()); + + setInput("b"); + execCmd(editCmd, {"db-edit", dbFilename, "-k", secondKeyFile.fileName(), "--unset-password"}); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("")); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + execCmd(editCmd, + {"db-edit", + dbFilename, + "--no-password", + "-k", + secondKeyFile.fileName(), + "--set-key-file", + firstKeyFile.fileName()}); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("")); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + setInput({"b", "b"}); + execCmd(editCmd, {"db-edit", dbFilename, "-k", firstKeyFile.fileName(), "--no-password", "--set-password"}); + // Skipping over the password setting prompts. + m_stderr->readLine(); + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("")); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + setInput("b"); + execCmd(editCmd, {"db-edit", dbFilename, "-k", firstKeyFile.fileName(), "--unset-key-file"}); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readAll(), QByteArray("")); + QCOMPARE(m_stdout->readAll(), QByteArray("Successfully edited the database.\n")); + + // Sanity check + db = readDatabase(dbFilename, "b", firstKeyFile.fileName()); + QVERIFY(db.isNull()); + db = readDatabase(dbFilename, "b"); + QVERIFY(!db.isNull()); + + // Trying to remove the key file when there is none set should + // raise an error. + setInput("b"); + execCmd(editCmd, {"db-edit", dbFilename, "-p", "--unset-key-file"}); + QCOMPARE(m_stdout->readAll(), QByteArray("")); + m_stderr->readLine(); + QCOMPARE(m_stderr->readLine(), QByteArray("Cannot remove file key: The database does not have a file key.\n")); + QCOMPARE(m_stderr->readLine(), QByteArray("Could not change the database key.\n")); + + setInput("b"); + execCmd(editCmd, {"db-edit", dbFilename, "--unset-password"}); + QCOMPARE(m_stdout->readAll(), QByteArray("")); + // Skipping the password prompt. + m_stderr->readLine(); + QCOMPARE(m_stderr->readLine(), QByteArray("Cannot remove all the keys from a database.\n")); +} + void TestCli::testInfo() { - Info infoCmd; + DatabaseInfo infoCmd; QVERIFY(!infoCmd.name.isEmpty()); QVERIFY(infoCmd.getDescriptionLine().contains(infoCmd.name)); @@ -937,7 +1090,7 @@ void TestCli::testDiceware() smallWordFile.close(); execCmd(dicewareCmd, {"diceware", "-W", "11", "-w", smallWordFile.fileName()}); - QCOMPARE(m_stderr->readLine(), QByteArray("The word list is too small (< 1000 items)\n")); + QCOMPARE(m_stderr->readLine(), QByteArray("Cannot generate valid passphrases because the wordlist is too short\n")); } void TestCli::testEdit() @@ -1037,90 +1190,72 @@ void TestCli::testEdit() void TestCli::testEstimate_data() { + // clang-format off QTest::addColumn("input"); - QTest::addColumn("length"); - QTest::addColumn("entropy"); - QTest::addColumn("log10"); QTest::addColumn("searchStrings"); - QTest::newRow("Dictionary") << "password" - << "8" - << "1.0" - << "0.3" << QStringList{"Type: Dictionary", "\tpassword"}; + QTest::newRow("Dictionary") + << "password" + << QStringList{"Type: Dictionary", "\tpassword"}; - QTest::newRow("Spatial") << "zxcv" - << "4" - << "10.3" - << "3.1" << QStringList{"Type: Spatial", "\tzxcv"}; + QTest::newRow("Spatial") + << "sdfg" + << QStringList{"Type: Spatial", "\tsdfg"}; - QTest::newRow("Spatial(Rep)") << "sdfgsdfg" - << "8" - << "11.3" - << "3.4" << QStringList{"Type: Spatial(Rep)", "\tsdfgsdfg"}; + QTest::newRow("Spatial(Rep)") + << "sdfgsdfg" + << QStringList{"Type: Spatial(Rep)", "\tsdfgsdfg"}; QTest::newRow("Dictionary / Sequence") << "password123" - << "11" - << "4.5" - << "1.3" << QStringList{"Type: Dictionary", "Type: Sequence", "\tpassword", "\t123"}; + << QStringList{"Type: Dictionary", "Type: Sequence", "\tpassword", "\t123"}; - QTest::newRow("Dict+Leet") << "p455w0rd" - << "8" - << "2.5" - << "0.7" << QStringList{"Type: Dict+Leet", "\tp455w0rd"}; + QTest::newRow("Dict+Leet") + << "p455w0rd" + << QStringList{"Type: Dict+Leet", "\tp455w0rd"}; - QTest::newRow("Dictionary(Rep)") << "hellohello" - << "10" - << "7.3" - << "2.2" << QStringList{"Type: Dictionary(Rep)", "\thellohello"}; + QTest::newRow("Dictionary(Rep)") + << "hellohello" + << QStringList{"Type: Dictionary(Rep)", "\thellohello"}; QTest::newRow("Sequence(Rep) / Dictionary") << "456456foobar" - << "12" - << "16.7" - << "5.0" << QStringList{"Type: Sequence(Rep)", "Type: Dictionary", "\t456456", "\tfoobar"}; + << QStringList{"Type: Sequence(Rep)", "Type: Dictionary", "\t456456", "\tfoobar"}; QTest::newRow("Bruteforce(Rep) / Bruteforce") << "xzxzy" - << "5" - << "16.1" - << "4.8" << QStringList{"Type: Bruteforce(Rep)", "Type: Bruteforce", "\txzxz", "\ty"}; + << QStringList{"Type: Bruteforce(Rep)", "Type: Bruteforce", "\txzxz", "\ty"}; QTest::newRow("Dictionary / Date(Rep)") << "pass20182018" - << "12" - << "15.1" - << "4.56" << QStringList{"Type: Dictionary", "Type: Date(Rep)", "\tpass", "\t20182018"}; + << QStringList{"Type: Dictionary", "Type: Date(Rep)", "\tpass", "\t20182018"}; QTest::newRow("Dictionary / Date / Bruteforce") << "mypass2018-2" - << "12" - << "32.9" - << "9.9" << QStringList{"Type: Dictionary", "Type: Date", "Type: Bruteforce", "\tmypass", "\t2018", "\t-2"}; + << QStringList{"Type: Dictionary", "Type: Date", "Type: Bruteforce", "\tmypass", "\t2018", "\t-2"}; - QTest::newRow("Strong Password") << "E*!%.Qw{t.X,&bafw)\"Q!ah$%;U/" - << "28" - << "165.7" - << "49.8" << QStringList{"Type: Bruteforce", "\tE*"}; + QTest::newRow("Strong Password") + << "E*!%.Qw{t.X,&bafw)\"Q!ah$%;U/" + << QStringList{"Type: Bruteforce", "\tE*"}; // TODO: detect passphrases and adjust entropy calculation accordingly (issue #2347) QTest::newRow("Strong Passphrase") << "squint wooing resupply dangle isolation axis headsman" - << "53" - << "151.2" - << "45.5" - << QStringList{ - "Type: Dictionary", "Type: Bruteforce", "Multi-word extra bits 22.0", "\tsquint", "\t ", "\twooing"}; + << QStringList{"Type: Dictionary", "Type: Bruteforce", "Multi-word extra bits 22.0", "\tsquint", "\t ", "\twooing"}; + // clang-format on } void TestCli::testEstimate() { QFETCH(QString, input); - QFETCH(QString, length); - QFETCH(QString, entropy); - QFETCH(QString, log10); QFETCH(QStringList, searchStrings); + // Calculate expected values since zxcvbn output can vary by platform if different wordlists are used + const auto e = ZxcvbnMatch(input.toUtf8(), nullptr, nullptr); + auto length = QString::number(input.length()); + auto entropy = QString("%1").arg(e, 0, 'f', 3); + auto log10 = QString("%1").arg(e * 0.301029996, 0, 'f', 3); + Estimate estimateCmd; QVERIFY(!estimateCmd.name.isEmpty()); QVERIFY(estimateCmd.getDescriptionLine().contains(estimateCmd.name)); @@ -1178,6 +1313,18 @@ void TestCli::testExport() QVERIFY(csvData.contains(QByteArray( "\"NewDatabase\",\"Sample Entry\",\"User Name\",\"Password\",\"http://www.somesite.com/\",\"Notes\""))); + // HTML exporting + setInput("a"); + execCmd(exportCmd, {"export", "-f", "html", m_dbFile->fileName()}); + QByteArray htmlHeader = m_stdout->readLine(); + QVERIFY(htmlHeader.contains(QByteArray(""))); + QByteArray htmlBody = m_stdout->readAll(); + QVERIFY(htmlBody.contains(QByteArray("

    NewDatabase

    "))); + QVERIFY(htmlBody.contains(QByteArray("Sample Entry" + "User nameUser Name" + "PasswordPassword" + "URLhttp://www.somesite.com/"))); // test invalid format setInput("a"); execCmd(exportCmd, {"export", "-f", "yaml", m_dbFile->fileName()}); @@ -1607,7 +1754,7 @@ void TestCli::testMerge() void TestCli::testMergeWithKeys() { - Create createCmd; + DatabaseCreate createCmd; QVERIFY(!createCmd.name.isEmpty()); QVERIFY(createCmd.getDescriptionLine().contains(createCmd.name)); @@ -1649,7 +1796,8 @@ void TestCli::testMergeWithKeys() entry->setPassword("secretsecretsecret"); group->addEntry(entry); - sourceDatabase->setRootGroup(rootGroup); + auto oldGroup = sourceDatabase->setRootGroup(rootGroup); + delete oldGroup; auto* otherRootGroup = new Group(); otherRootGroup->setName("root"); @@ -1665,7 +1813,8 @@ void TestCli::testMergeWithKeys() otherEntry->setPassword("secretsecretsecret 2"); otherGroup->addEntry(otherEntry); - targetDatabase->setRootGroup(otherRootGroup); + oldGroup = targetDatabase->setRootGroup(otherRootGroup); + delete oldGroup; sourceDatabase->saveAs(sourceDatabaseFilename); targetDatabase->saveAs(targetDatabaseFilename); @@ -1937,7 +2086,9 @@ void TestCli::testShow() "UserName: User Name\n" "Password: PROTECTED\n" "URL: http://www.somesite.com/\n" - "Notes: Notes\n")); + "Notes: Notes\n" + "Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n" + "Tags: \n")); setInput("a"); execCmd(showCmd, {"show", "-s", m_dbFile->fileName(), "/Sample Entry"}); @@ -1946,7 +2097,9 @@ void TestCli::testShow() "UserName: User Name\n" "Password: Password\n" "URL: http://www.somesite.com/\n" - "Notes: Notes\n")); + "Notes: Notes\n" + "Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n" + "Tags: \n")); setInput("a"); execCmd(showCmd, {"show", m_dbFile->fileName(), "-q", "/Sample Entry"}); @@ -1956,7 +2109,9 @@ void TestCli::testShow() "UserName: User Name\n" "Password: PROTECTED\n" "URL: http://www.somesite.com/\n" - "Notes: Notes\n")); + "Notes: Notes\n" + "Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n" + "Tags: \n")); setInput("a"); execCmd(showCmd, {"show", m_dbFile->fileName(), "--show-attachments", "/Sample Entry"}); @@ -1968,9 +2123,11 @@ void TestCli::testShow() "Password: PROTECTED\n" "URL: http://www.somesite.com/\n" "Notes: Notes\n" + "Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n" + "Tags: \n" "\n" "Attachments:\n" - " Sample attachment.txt (15.0 B)\n")); + " Sample attachment.txt (15 B)\n")); setInput("a"); execCmd(showCmd, {"show", m_dbFile->fileName(), "--show-attachments", "/Homebanking/Subgroup/Subgroup Entry"}); @@ -1982,6 +2139,8 @@ void TestCli::testShow() "Password: PROTECTED\n" "URL: https://www.bank.com\n" "Notes: Important note\n" + "Uuid: {20b183fd-6878-4506-a50b-06d30792aa10}\n" + "Tags: \n" "\n" "No attachments present.\n")); @@ -1993,6 +2152,10 @@ void TestCli::testShow() execCmd(showCmd, {"show", "-a", "Password", m_dbFile->fileName(), "/Sample Entry"}); QCOMPARE(m_stdout->readAll(), QByteArray("Password\n")); + setInput("a"); + execCmd(showCmd, {"show", "-a", "Uuid", m_dbFile->fileName(), "/Sample Entry"}); + QCOMPARE(m_stdout->readAll(), QByteArray("{9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n")); + setInput("a"); execCmd(showCmd, {"show", "-a", "Title", "-a", "URL", m_dbFile->fileName(), "/Sample Entry"}); QCOMPARE(m_stdout->readAll(), @@ -2030,6 +2193,21 @@ void TestCli::testShow() execCmd(showCmd, {"show", m_dbFile->fileName(), "-a", "Testattribute1", "/Sample Entry"}); QCOMPARE(m_stdout->readAll(), QByteArray()); QVERIFY(m_stderr->readAll().contains("ERROR: attribute Testattribute1 is ambiguous")); + + setInput("a"); + execCmd(showCmd, {"show", "--all", m_dbFile->fileName(), "/Sample Entry"}); + QCOMPARE(m_stdout->readAll(), + QByteArray("Title: Sample Entry\n" + "UserName: User Name\n" + "Password: PROTECTED\n" + "URL: http://www.somesite.com/\n" + "Notes: Notes\n" + "Uuid: {9f4544c2-ab00-c74a-8a1a-6eaf26cf57e9}\n" + "Tags: \n" + "TOTP Seed: PROTECTED\n" + "TOTP Settings: 30;6\n" + "TestAttribute1: b\n" + "testattribute1: a\n")); } void TestCli::testInvalidDbFiles() @@ -2075,7 +2253,7 @@ void TestCli::testYubiKeyOption() YubiKey::instance()->findValidKeys(); - auto keys = YubiKey::instance()->foundKeys(); + const auto keys = YubiKey::instance()->foundKeys().keys(); if (keys.isEmpty()) { QSKIP("No YubiKey devices were detected."); } @@ -2142,6 +2320,29 @@ void TestCli::testYubiKeyOption() QCOMPARE(m_stdout->readAll(), QByteArray()); } +void TestCli::testNonAscii() +{ + QProcess process; + process.setProcessChannelMode(QProcess::MergedChannels); + process.start( + KEEPASSX_CLI_PATH, + QStringList( + {"show", "-a", "password", m_nonAsciiDbFile->fileName(), QString::fromUtf8("\xe7\xa7\x98\xe5\xaf\x86")})); + process.waitForStarted(); + QCOMPARE(process.state(), QProcess::ProcessState::Running); + + // Write password. + process.write("\xce\x94\xc3\xb6\xd8\xb6\n"); + process.closeWriteChannel(); + + process.waitForFinished(); + + process.readLine(); // skip password prompt + QByteArray password = process.readLine(); + QCOMPARE(QString::fromUtf8(password).trimmed(), + QString::fromUtf8("\xf0\x9f\x9a\x97\xf0\x9f\x90\x8e\xf0\x9f\x94\x8b\xf0\x9f\x93\x8e")); +} + void TestCli::testCommandParsing_data() { QTest::addColumn("input"); diff --git a/tests/TestCli.h b/tests/TestCli.h index bbe80a4b3..d33dde26c 100644 --- a/tests/TestCli.h +++ b/tests/TestCli.h @@ -54,6 +54,7 @@ private slots: void testCommandParsing_data(); void testCommandParsing(); void testCreate(); + void testDatabaseEdit(); void testDiceware(); void testEdit(); void testEstimate_data(); @@ -79,6 +80,7 @@ private slots: void testShow(); void testInvalidDbFiles(); void testYubiKeyOption(); + void testNonAscii(); private: QScopedPointer m_devNull; @@ -89,6 +91,7 @@ private: QScopedPointer m_keyFileProtectedDbFile; QScopedPointer m_keyFileProtectedNoPasswordDbFile; QScopedPointer m_yubiKeyProtectedDbFile; + QScopedPointer m_nonAsciiDbFile; QScopedPointer m_stdout; QScopedPointer m_stderr; diff --git a/tests/TestConfig.cpp b/tests/TestConfig.cpp index 1177ac585..b83a905d0 100644 --- a/tests/TestConfig.cpp +++ b/tests/TestConfig.cpp @@ -35,7 +35,6 @@ void TestConfig::testUpgrade() Config::createConfigFromFile(tempFile.fileName()); // value of new setting should be opposite the value of deprecated setting - QVERIFY(!config()->get(Config::Security_PasswordsRepeatVisible).toBool()); QVERIFY(!config()->get(Config::Security_PasswordsHidden).toBool()); QVERIFY(config()->get(Config::Security_PasswordEmptyPlaceholder).toBool()); diff --git a/tests/TestCsvExporter.cpp b/tests/TestCsvExporter.cpp index 4854da111..c4c937e5d 100644 --- a/tests/TestCsvExporter.cpp +++ b/tests/TestCsvExporter.cpp @@ -22,9 +22,9 @@ #include #include "core/Group.h" +#include "core/Totp.h" #include "crypto/Crypto.h" #include "format/CsvExporter.h" -#include "totp/totp.h" QTEST_GUILESS_MAIN(TestCsvExporter) diff --git a/tests/TestCsvParser.cpp b/tests/TestCsvParser.cpp index 758c31ecc..69401bfa9 100644 --- a/tests/TestCsvParser.cpp +++ b/tests/TestCsvParser.cpp @@ -22,6 +22,18 @@ QTEST_GUILESS_MAIN(TestCsvParser) +void TestCsvParser::writeToFile(const QString& contents) +{ + if (!file->open()) { + QFAIL("Cannot open temporary file!"); + } + QTextStream out(file.data()); + out.setCodec("UTF-8"); + out << contents; + out.flush(); + file->close(); +} + void TestCsvParser::initTestCase() { parser.reset(new CsvParser()); @@ -30,9 +42,7 @@ void TestCsvParser::initTestCase() void TestCsvParser::init() { file.reset(new QTemporaryFile()); - if (not file->open()) { - QFAIL("Cannot open file!"); - } + parser->setBackslashSyntax(false); parser->setComment('#'); parser->setFieldSeparator(','); @@ -47,37 +57,34 @@ void TestCsvParser::cleanup() /****************** TEST CASES ******************/ void TestCsvParser::testMissingQuote() { + writeToFile("A,B\n:BM,1"); parser->setTextQualifier(':'); - QTextStream out(file.data()); - out << "A,B\n:BM,1"; - QEXPECT_FAIL("", "Bad format", Continue); - QVERIFY(parser->parse(file.data())); - t = parser->getCsvTable(); + + QVERIFY(!parser->parse(file.data())); QWARN(parser->getStatus().toLatin1()); } void TestCsvParser::testMalformed() { + writeToFile("A,B,C\n:BM::,1,:2:"); parser->setTextQualifier(':'); - QTextStream out(file.data()); - out << "A,B,C\n:BM::,1,:2:"; - QEXPECT_FAIL("", "Bad format", Continue); - QVERIFY(parser->parse(file.data())); - t = parser->getCsvTable(); + + QVERIFY(!parser->parse(file.data())); QWARN(parser->getStatus().toLatin1()); } void TestCsvParser::testBackslashSyntax() { + // attended result: one"\t\"wo + writeToFile("Xone\\\"\\\\t\\\\\\\"w\noX\n" + "X13X,X2\\X,X,\"\"3\"X\r" + "3,X\"4\"X,,\n" + "XX\n" + "\\"); + parser->setBackslashSyntax(true); parser->setTextQualifier(QChar('X')); - QTextStream out(file.data()); - // attended result: one"\t\"wo - out << "Xone\\\"\\\\t\\\\\\\"w\noX\n" - << "X13X,X2\\X,X,\"\"3\"X\r" - << "3,X\"4\"X,,\n" - << "XX\n" - << "\\"; + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.at(0).at(0) == "one\"\\t\\\"w\no"); @@ -94,9 +101,9 @@ void TestCsvParser::testBackslashSyntax() void TestCsvParser::testQuoted() { - QTextStream out(file.data()); - out << "ro,w,\"end, of \"\"\"\"\"\"row\"\"\"\"\"\n" - << "2\n"; + writeToFile("ro,w,\"end, of \"\"\"\"\"\"row\"\"\"\"\"\n" + "2\n"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.at(0).at(0) == "ro"); @@ -108,8 +115,6 @@ void TestCsvParser::testQuoted() void TestCsvParser::testEmptySimple() { - QTextStream out(file.data()); - out << ""; QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.isEmpty()); @@ -117,8 +122,8 @@ void TestCsvParser::testEmptySimple() void TestCsvParser::testEmptyQuoted() { - QTextStream out(file.data()); - out << "\"\""; + writeToFile("\"\""); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.isEmpty()); @@ -126,8 +131,8 @@ void TestCsvParser::testEmptyQuoted() void TestCsvParser::testEmptyNewline() { - QTextStream out(file.data()); - out << "\"\n\""; + writeToFile("\"\n\""); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.isEmpty()); @@ -142,8 +147,8 @@ void TestCsvParser::testEmptyFile() void TestCsvParser::testNewline() { - QTextStream out(file.data()); - out << "1,2\n\n\n"; + writeToFile("1,2\n\n\n"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 1); @@ -153,8 +158,8 @@ void TestCsvParser::testNewline() void TestCsvParser::testCR() { - QTextStream out(file.data()); - out << "1,2\r3,4"; + writeToFile("1,2\r3,4"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 2); @@ -166,8 +171,8 @@ void TestCsvParser::testCR() void TestCsvParser::testLF() { - QTextStream out(file.data()); - out << "1,2\n3,4"; + writeToFile("1,2\n3,4"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 2); @@ -179,8 +184,8 @@ void TestCsvParser::testLF() void TestCsvParser::testCRLF() { - QTextStream out(file.data()); - out << "1,2\r\n3,4"; + writeToFile("1,2\r\n3,4"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 2); @@ -192,12 +197,12 @@ void TestCsvParser::testCRLF() void TestCsvParser::testComments() { - QTextStream out(file.data()); - out << " #one\n" - << " \t # two, three \r\n" - << " #, sing\t with\r" - << " #\t me!\n" - << "useful,text #1!"; + writeToFile(" #one\n" + " \t # two, three \r\n" + " #, sing\t with\r" + " #\t me!\n" + "useful,text #1!"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 1); @@ -207,10 +212,10 @@ void TestCsvParser::testComments() void TestCsvParser::testColumns() { - QTextStream out(file.data()); - out << "1,2\n" - << ",,,,,,,,,a\n" - << "a,b,c,d\n"; + writeToFile("1,2\n" + ",,,,,,,,,a\n" + "a,b,c,d\n"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(parser->getCsvCols() == 10); @@ -218,10 +223,10 @@ void TestCsvParser::testColumns() void TestCsvParser::testSimple() { - QTextStream out(file.data()); - out << ",,2\r,2,3\n" - << "A,,B\"\n" - << " ,,\n"; + writeToFile(",,2\r,2,3\n" + "A,,B\"\n" + " ,,\n"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 4); @@ -241,11 +246,12 @@ void TestCsvParser::testSimple() void TestCsvParser::testSeparator() { + writeToFile("\t\t2\r\t2\t3\n" + "A\t\tB\"\n" + " \t\t\n"); + parser->setFieldSeparator('\t'); - QTextStream out(file.data()); - out << "\t\t2\r\t2\t3\n" - << "A\t\tB\"\n" - << " \t\t\n"; + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 4); @@ -265,10 +271,11 @@ void TestCsvParser::testSeparator() void TestCsvParser::testMultiline() { + writeToFile(":1\r\n2a::b:,:3\r4:\n" + "2\n"); + parser->setTextQualifier(QChar(':')); - QTextStream out(file.data()); - out << ":1\r\n2a::b:,:3\r4:\n" - << "2\n"; + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.at(0).at(0) == "1\n2a:b"); @@ -277,42 +284,34 @@ void TestCsvParser::testMultiline() QVERIFY(t.size() == 2); } -void TestCsvParser::testEmptyReparsing() -{ - parser->parse(nullptr); - QVERIFY(parser->reparse()); - t = parser->getCsvTable(); - QVERIFY(t.isEmpty()); -} - void TestCsvParser::testReparsing() { - QTextStream out(file.data()); - out << ":te\r\nxt1:,:te\rxt2:,:end of \"this\n string\":\n" - << "2\n"; + writeToFile(":te\r\nxt1:,:te\rxt2:,:end of \"this\n string\":\n" + "2\n"); + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); - QEXPECT_FAIL("", "Wrong qualifier", Continue); - QVERIFY(t.at(0).at(0) == "te\nxt1"); + QCOMPARE(t.at(0).at(0), QString(":te")); parser->setTextQualifier(QChar(':')); QVERIFY(parser->reparse()); t = parser->getCsvTable(); - QVERIFY(t.at(0).at(0) == "te\nxt1"); - QVERIFY(t.at(0).at(1) == "te\nxt2"); - QVERIFY(t.at(0).at(2) == "end of \"this\n string\""); - QVERIFY(t.at(1).at(0) == "2"); - QVERIFY(t.size() == 2); + QCOMPARE(t.at(0).at(0), QString("te\nxt1")); + QCOMPARE(t.at(0).at(1), QString("te\nxt2")); + QCOMPARE(t.at(0).at(2), QString("end of \"this\n string\"")); + QCOMPARE(t.at(1).at(0), QString("2")); + QCOMPARE(t.size(), 2); } void TestCsvParser::testQualifier() { + writeToFile("X1X,X2XX,X,\"\"3\"\"\"X\r" + "3,X\"4\"X,,\n"); + parser->setTextQualifier(QChar('X')); - QTextStream out(file.data()); - out << "X1X,X2XX,X,\"\"3\"\"\"X\r" - << "3,X\"4\"X,,\n"; + QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); QVERIFY(t.size() == 2); @@ -331,10 +330,9 @@ void TestCsvParser::testUnicode() // CORRECT QString g("\u20AC"); // CORRECT QChar g(0x20AC); // ERROR QChar g("\u20AC"); + writeToFile("€1A2śA\"3śAż\"Ażac"); + parser->setFieldSeparator(QChar('A')); - QTextStream out(file.data()); - out.setCodec("UTF-8"); - out << QString("€1A2śA\"3śAż\"Ażac"); QVERIFY(parser->parse(file.data())); t = parser->getCsvTable(); diff --git a/tests/TestCsvParser.h b/tests/TestCsvParser.h index dc4429dec..0b1717a87 100644 --- a/tests/TestCsvParser.h +++ b/tests/TestCsvParser.h @@ -19,7 +19,6 @@ #ifndef KEEPASSX_TESTCSVPARSER_H #define KEEPASSX_TESTCSVPARSER_H -#include #include #include "format/CsvParser.h" @@ -38,7 +37,6 @@ private slots: void testUnicode(); void testLF(); - void testEmptyReparsing(); void testSimple(); void testEmptyQuoted(); void testEmptyNewline(); @@ -59,10 +57,11 @@ private slots: void testColumns(); private: + void writeToFile(const QString& contents); + QScopedPointer file; QScopedPointer parser; CsvTable t; - void dumpRow(CsvTable table, int row); }; #endif // KEEPASSX_TESTCSVPARSER_H diff --git a/tests/TestDatabase.cpp b/tests/TestDatabase.cpp index 3b5864273..78b6dac1d 100644 --- a/tests/TestDatabase.cpp +++ b/tests/TestDatabase.cpp @@ -30,6 +30,11 @@ #include "format/KeePass2Writer.h" #include "util/TemporaryFile.h" +#ifdef Q_OS_WIN +#include +#include +#endif + QTEST_GUILESS_MAIN(TestDatabase) static QString dbFileName = QStringLiteral(KEEPASSX_TEST_DATA_DIR).append("/NewDatabase.kdbx"); @@ -99,6 +104,40 @@ void TestDatabase::testSave() QVERIFY(!QFile::exists(backupFilePath)); } +void TestDatabase::testSaveAs() +{ + TemporaryFile tempFile; + QVERIFY(tempFile.copyFromFile(dbFileName)); + + auto db = QSharedPointer::create(); + auto key = QSharedPointer::create(); + key->addKey(QSharedPointer::create("a")); + + QString error; + QVERIFY(db->open(tempFile.fileName(), key, &error)); + + // Happy path case when try to save as new DB. + QSignalSpy spyFilePathChanged(db.data(), SIGNAL(filePathChanged(const QString&, const QString&))); + QString newDbFileName = QStringLiteral(KEEPASSX_TEST_DATA_DIR).append("/SaveAsNewDatabase.kdbx"); + QVERIFY2(db->saveAs(newDbFileName, Database::Atomic, QString(), &error), error.toLatin1()); + QVERIFY(!db->isModified()); + QCOMPARE(spyFilePathChanged.count(), 1); + QVERIFY(QFile::exists(newDbFileName)); +#ifdef Q_OS_WIN + QVERIFY(!QFileInfo(newDbFileName).isHidden()); + SetFileAttributes(newDbFileName.toStdString().c_str(), FILE_ATTRIBUTE_HIDDEN); + QVERIFY2(db->saveAs(newDbFileName, Database::Atomic, QString(), &error), error.toLatin1()); + QVERIFY(QFileInfo(newDbFileName).isHidden()); +#endif + QFile::remove(newDbFileName); + QVERIFY(!QFile::exists(newDbFileName)); + + // Negative case when try to save not initialized DB. + db->releaseData(); + QVERIFY2(!db->saveAs(newDbFileName, Database::Atomic, QString(), &error), error.toLatin1()); + QCOMPARE(error, QString("Could not save, database has not been initialized!")); +} + void TestDatabase::testSignals() { TemporaryFile tempFile; @@ -125,7 +164,7 @@ void TestDatabase::testSignals() // Short delay to allow file system settling to reduce test failures Tools::wait(100); - QSignalSpy spyFileChanged(db.data(), SIGNAL(databaseFileChanged())); + QSignalSpy spyFileChanged(db.data(), &Database::databaseFileChanged); QVERIFY(tempFile.copyFromFile(dbFileName)); QTRY_COMPARE(spyFileChanged.count(), 1); QTRY_VERIFY(!db->isModified()); @@ -229,3 +268,41 @@ void TestDatabase::testCustomIcons() QCOMPARE(iconData.name, QString("Test")); QCOMPARE(iconData.lastModified, date); } + +void TestDatabase::testExternallyModified() +{ + TemporaryFile tempFile; + QVERIFY(tempFile.copyFromFile(dbFileName)); + + auto db = QSharedPointer::create(); + auto key = QSharedPointer::create(); + key->addKey(QSharedPointer::create("a")); + + QString error; + QVERIFY(db->open(tempFile.fileName(), key, &error) == true); + db->metadata()->setName("test2"); + QVERIFY(db->save(Database::Atomic, {}, &error)); + + QSignalSpy spyFileChanged(db.data(), &Database::databaseFileChanged); + QVERIFY(tempFile.copyFromFile(dbFileName)); + QTRY_COMPARE(spyFileChanged.count(), 1); + // the first argument of the databaseFileChanged signal (triggeredBySave) should be false + QVERIFY(spyFileChanged.at(0).length() == 1); + QVERIFY(spyFileChanged.at(0).at(0).type() == QVariant::Bool); + QVERIFY(spyFileChanged.at(0).at(0).toBool() == false); + spyFileChanged.clear(); + // shouldn't be able to save due to external changes + QVERIFY(db->save(Database::Atomic, {}, &error) == false); + QApplication::processEvents(); + // save should have triggered another databaseFileChanged signal + QVERIFY(spyFileChanged.count() >= 1); + // the first argument of the databaseFileChanged signal (triggeredBySave) should be true + QVERIFY(spyFileChanged.at(0).at(0).type() == QVariant::Bool); + QVERIFY(spyFileChanged.at(0).at(0).toBool() == true); + + // should be able to overwrite externally modified changes when explicitly requested + db->setIgnoreFileChangesUntilSaved(true); + QVERIFY(db->save(Database::Atomic, {}, &error)); + // ignoreFileChangesUntilSaved should reset after save + QVERIFY(db->ignoreFileChangesUntilSaved() == false); +} diff --git a/tests/TestDatabase.h b/tests/TestDatabase.h index 511703849..e23b23cf8 100644 --- a/tests/TestDatabase.h +++ b/tests/TestDatabase.h @@ -29,12 +29,14 @@ private slots: void initTestCase(); void testOpen(); void testSave(); + void testSaveAs(); void testSignals(); void testEmptyRecycleBinOnDisabled(); void testEmptyRecycleBinOnNotCreated(); void testEmptyRecycleBinOnEmpty(); void testEmptyRecycleBinWithHierarchicalData(); void testCustomIcons(); + void testExternallyModified(); }; #endif // KEEPASSX_TESTDATABASE_H diff --git a/tests/TestDeletedObjects.cpp b/tests/TestDeletedObjects.cpp index 986ad6925..ab7d26078 100644 --- a/tests/TestDeletedObjects.cpp +++ b/tests/TestDeletedObjects.cpp @@ -37,7 +37,7 @@ void TestDeletedObjects::createAndDelete(QSharedPointer db, int delObj Group* root = db->rootGroup(); int rootChildrenCount = root->children().size(); - Group* g = new Group(); + auto g = new Group(); g->setParent(root); QUuid gUuid = QUuid::createUuid(); g->setUuid(gUuid); @@ -46,19 +46,19 @@ void TestDeletedObjects::createAndDelete(QSharedPointer db, int delObj QCOMPARE(db->deletedObjects().at(delObjectsSize - 1).uuid, gUuid); QCOMPARE(rootChildrenCount, root->children().size()); - Group* g1 = new Group(); + auto g1 = new Group(); g1->setParent(root); QUuid g1Uuid = QUuid::createUuid(); g1->setUuid(g1Uuid); - Entry* e1 = new Entry(); + auto e1 = new Entry(); e1->setGroup(g1); QUuid e1Uuid = QUuid::createUuid(); e1->setUuid(e1Uuid); - Group* g2 = new Group(); + auto g2 = new Group(); g2->setParent(g1); QUuid g2Uuid = QUuid::createUuid(); g2->setUuid(g2Uuid); - Entry* e2 = new Entry(); + auto e2 = new Entry(); e2->setGroup(g2); QUuid e2Uuid = QUuid::createUuid(); e2->setUuid(e2Uuid); @@ -73,7 +73,7 @@ void TestDeletedObjects::createAndDelete(QSharedPointer db, int delObj QCOMPARE(db->deletedObjects().at(delObjectsSize - 1).uuid, g1Uuid); QCOMPARE(rootChildrenCount, root->children().size()); - Entry* e3 = new Entry(); + auto e3 = new Entry(); e3->setGroup(root); QUuid e3Uuid = QUuid::createUuid(); e3->setUuid(e3Uuid); diff --git a/tests/TestEntry.cpp b/tests/TestEntry.cpp index 3983db101..51cb4799c 100644 --- a/tests/TestEntry.cpp +++ b/tests/TestEntry.cpp @@ -86,6 +86,7 @@ void TestEntry::testClone() { QScopedPointer entryOrg(new Entry()); entryOrg->setUuid(QUuid::createUuid()); + entryOrg->setPassword("pass"); entryOrg->setTitle("Original Title"); entryOrg->beginUpdate(); entryOrg->setTitle("New Title"); @@ -115,7 +116,7 @@ void TestEntry::testClone() QScopedPointer entryCloneRename(entryOrg->clone(Entry::CloneRenameTitle)); QCOMPARE(entryCloneRename->uuid(), entryOrg->uuid()); QCOMPARE(entryCloneRename->title(), QString("New Title - Clone")); - // Cloning should not modify time info unless explicity requested + // Cloning should not modify time info unless explicitly requested QCOMPARE(entryCloneRename->timeInfo(), entryOrg->timeInfo()); QScopedPointer entryCloneResetTime(entryOrg->clone(Entry::CloneResetTimeInfo)); @@ -320,10 +321,12 @@ void TestEntry::testResolveRecursivePlaceholders() entry7->setTitle(QString("{REF:T@I:%1} and something else").arg(entry3->uuidToHex())); entry7->setUsername(QString("{TITLE}")); entry7->setPassword(QString("PASSWORD")); + entry7->setNotes(QString("{lots} {of} {braces}")); QCOMPARE(entry7->resolvePlaceholder(entry7->title()), QString("Entry2Title and something else")); QCOMPARE(entry7->resolvePlaceholder(entry7->username()), QString("Entry2Title and something else")); QCOMPARE(entry7->resolvePlaceholder(entry7->password()), QString("PASSWORD")); + QCOMPARE(entry7->resolvePlaceholder(entry7->notes()), QString("{lots} {of} {braces}")); } void TestEntry::testResolveReferencePlaceholders() @@ -511,6 +514,86 @@ void TestEntry::testResolveNonIdPlaceholdersToUuid() } } +void TestEntry::testResolveConversionPlaceholders() +{ + Database db; + auto* root = db.rootGroup(); + + auto* entry1 = new Entry(); + entry1->setGroup(root); + entry1->setUuid(QUuid::createUuid()); + entry1->setTitle("Title1 {T-CONV:/{USERNAME}/lower/} {T-CONV:/{PASSWORD}/upper/}"); + entry1->setUsername("Username1"); + entry1->setPassword("Password1"); + entry1->setUrl("https://example.com/?test=3423&h=sdsds"); + + auto* entry2 = new Entry(); + entry2->setGroup(root); + entry2->setUuid(QUuid::createUuid()); + entry2->setTitle("Title2"); + entry2->setUsername(QString("{T-CONV:/{REF:U@I:%1}/UPPER/}").arg(entry1->uuidToHex())); + entry2->setPassword(QString("{REF:P@I:%1}").arg(entry1->uuidToHex())); + entry2->setUrl("cmd://ssh {USERNAME}@server.com -p {PASSWORD}"); + + // Test complicated and nested conversions + QCOMPARE(entry1->resolveMultiplePlaceholders(entry1->title()), QString("Title1 username1 PASSWORD1")); + QCOMPARE(entry2->resolveMultiplePlaceholders(entry2->url()), + QString("cmd://ssh USERNAME1@server.com -p Password1")); + // Test base64 and hex conversions + QCOMPARE(entry1->resolveMultiplePlaceholders("{T-CONV:/{PASSWORD}/base64/}"), QString("UGFzc3dvcmQx")); + QCOMPARE(entry1->resolveMultiplePlaceholders("{T-CONV:/{PASSWORD}/hex/}"), QString("50617373776f726431")); + // Test URL encode and decode + auto encodedURL = entry1->resolveMultiplePlaceholders("{T-CONV:/{URL}/uri/}"); + QCOMPARE(encodedURL, QString("https%3A%2F%2Fexample.com%2F%3Ftest%3D3423%26h%3Dsdsds")); + QCOMPARE(entry1->resolveMultiplePlaceholders( + "{T-CONV:/https%3A%2F%2Fexample.com%2F%3Ftest%3D3423%26h%3Dsdsds/uri-dec/}"), + entry1->url()); + // Test invalid syntax + QString error; + entry1->resolveConversionPlaceholder("{T-CONV:/{USERNAME}/junk/}", &error); + QVERIFY(!error.isEmpty()); + entry1->resolveConversionPlaceholder("{T-CONV:}", &error); + QVERIFY(!error.isEmpty()); + // Check that error gets cleared + entry1->resolveConversionPlaceholder("{T-CONV:/a/upper/}", &error); + QVERIFY(error.isEmpty()); +} + +void TestEntry::testResolveReplacePlaceholders() +{ + Database db; + auto* root = db.rootGroup(); + + auto* entry1 = new Entry(); + entry1->setGroup(root); + entry1->setUuid(QUuid::createUuid()); + entry1->setTitle("Title1"); + entry1->setUsername("Username1"); + entry1->setPassword("Password1"); + + auto* entry2 = new Entry(); + entry2->setGroup(root); + entry2->setUuid(QUuid::createUuid()); + entry2->setTitle("SAP server1 12345"); + entry2->setUsername(QString("{T-REPLACE-RX:/{REF:U@I:%1}/\\d$/2/}").arg(entry1->uuidToHex())); + entry2->setPassword(QString("{REF:P@I:%1}").arg(entry1->uuidToHex())); + entry2->setUrl( + R"(cmd://sap.exe -system={T-REPLACE-RX:/{Title}/(?i)^(.* )?(\w+(?=(\s* \d+$)))\3/$2/} -client={T-REPLACE-RX:/{Title}/(?i)^.* (?=\d+$)//} -user={USERNAME} -pw={PASSWORD})"); + + // Test complicated and nested replacements + QCOMPARE(entry2->resolveMultiplePlaceholders(entry2->url()), + QString("cmd://sap.exe -system=server1 -client=12345 -user=Username2 -pw=Password1")); + // Test invalid syntax + QString error; + entry1->resolveRegexPlaceholder("{T-REPLACE-RX:/{USERNAME}/.*+?/test/}", &error); // invalid regex + QVERIFY(!error.isEmpty()); + entry1->resolveRegexPlaceholder("{T-REPLACE-RX:/{USERNAME}/.*/}", &error); // no replacement + QVERIFY(!error.isEmpty()); + // Check that error gets cleared + entry1->resolveRegexPlaceholder("{T-REPLACE-RX:/{USERNAME}/\\d/2/}", &error); + QVERIFY(error.isEmpty()); +} + void TestEntry::testResolveClonedEntry() { Database db; @@ -591,7 +674,7 @@ void TestEntry::testResolveClonedEntry() void TestEntry::testIsRecycled() { - Entry* entry = new Entry(); + auto entry = new Entry(); QVERIFY(!entry->isRecycled()); Database db; @@ -604,10 +687,10 @@ void TestEntry::testIsRecycled() db.recycleEntry(entry); QVERIFY(entry->isRecycled()); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setParent(root); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setGroup(group1); QVERIFY(!entry1->isRecycled()); db.recycleGroup(group1); @@ -620,16 +703,16 @@ void TestEntry::testMoveUpDown() Group* root = db.rootGroup(); QVERIFY(root); - Entry* entry0 = new Entry(); + auto entry0 = new Entry(); QVERIFY(entry0); entry0->setGroup(root); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); QVERIFY(entry1); entry1->setGroup(root); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); QVERIFY(entry2); entry2->setGroup(root); - Entry* entry3 = new Entry(); + auto entry3 = new Entry(); QVERIFY(entry3); entry3->setGroup(root); // default order, straight diff --git a/tests/TestEntry.h b/tests/TestEntry.h index 3bfd8f52d..69f5b0d46 100644 --- a/tests/TestEntry.h +++ b/tests/TestEntry.h @@ -36,6 +36,8 @@ private slots: void testResolveRecursivePlaceholders(); void testResolveReferencePlaceholders(); void testResolveNonIdPlaceholdersToUuid(); + void testResolveConversionPlaceholders(); + void testResolveReplacePlaceholders(); void testResolveClonedEntry(); void testIsRecycled(); void testMoveUpDown(); diff --git a/tests/TestEntryModel.cpp b/tests/TestEntryModel.cpp index ce4b66881..e3cdb4a46 100644 --- a/tests/TestEntryModel.cpp +++ b/tests/TestEntryModel.cpp @@ -42,23 +42,23 @@ void TestEntryModel::initTestCase() void TestEntryModel::test() { - Group* group1 = new Group(); - Group* group2 = new Group(); + auto group1 = new Group(); + auto group2 = new Group(); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setGroup(group1); entry1->setTitle("testTitle1"); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setGroup(group1); entry2->setTitle("testTitle2"); - EntryModel* model = new EntryModel(this); + auto model = new EntryModel(this); QSignalSpy spyAboutToBeMoved(model, SIGNAL(rowsAboutToBeMoved(QModelIndex, int, int, QModelIndex, int))); QSignalSpy spyMoved(model, SIGNAL(rowsMoved(QModelIndex, int, int, QModelIndex, int))); - ModelTest* modelTest = new ModelTest(model, this); + auto modelTest = new ModelTest(model, this); model->setGroup(group1); @@ -79,7 +79,7 @@ void TestEntryModel::test() QSignalSpy spyAboutToRemove(model, SIGNAL(rowsAboutToBeRemoved(QModelIndex, int, int))); QSignalSpy spyRemoved(model, SIGNAL(rowsRemoved(QModelIndex, int, int))); - Entry* entry3 = new Entry(); + auto entry3 = new Entry(); entry3->setGroup(group1); QCOMPARE(spyAboutToBeMoved.count(), 0); @@ -130,10 +130,10 @@ void TestEntryModel::test() void TestEntryModel::testAttachmentsModel() { - EntryAttachments* entryAttachments = new EntryAttachments(this); + auto entryAttachments = new EntryAttachments(this); - EntryAttachmentsModel* model = new EntryAttachmentsModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new EntryAttachmentsModel(this); + auto modelTest = new ModelTest(model, this); QCOMPARE(model->rowCount(), 0); model->setEntryAttachments(entryAttachments); @@ -164,7 +164,7 @@ void TestEntryModel::testAttachmentsModel() QSignalSpy spyReset(model, SIGNAL(modelReset())); entryAttachments->clear(); - model->setEntryAttachments(0); + model->setEntryAttachments(nullptr); QCOMPARE(spyReset.count(), 2); QCOMPARE(model->rowCount(), 0); @@ -175,10 +175,10 @@ void TestEntryModel::testAttachmentsModel() void TestEntryModel::testAttributesModel() { - EntryAttributes* entryAttributes = new EntryAttributes(this); + auto entryAttributes = new EntryAttributes(this); - EntryAttributesModel* model = new EntryAttributesModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new EntryAttributesModel(this); + auto modelTest = new ModelTest(model, this); QCOMPARE(model->rowCount(), 0); model->setEntryAttributes(entryAttributes); @@ -201,6 +201,9 @@ void TestEntryModel::testAttributesModel() // make sure these don't generate messages entryAttributes->set("Title", "test"); + entryAttributes->set("UserName", "test"); + entryAttributes->set("Password", "test"); + entryAttributes->set("URL", "test"); entryAttributes->set("Notes", "test"); QCOMPARE(spyDataChanged.count(), 1); @@ -214,10 +217,20 @@ void TestEntryModel::testAttributesModel() entryAttributes->set("2nd", value, true); QVERIFY(entryAttributes->isProtected("2nd")); QCOMPARE(entryAttributes->value("2nd"), value); + entryAttributes->clear(); + + // test attribute sorting + entryAttributes->set("Test1", "1"); + entryAttributes->set("Test11", "11"); + entryAttributes->set("Test2", "2"); + QCOMPARE(model->rowCount(), 3); + QCOMPARE(model->data(model->index(0, 0)).toString(), QString("Test1")); + QCOMPARE(model->data(model->index(1, 0)).toString(), QString("Test2")); + QCOMPARE(model->data(model->index(2, 0)).toString(), QString("Test11")); QSignalSpy spyReset(model, SIGNAL(modelReset())); entryAttributes->clear(); - model->setEntryAttributes(0); + model->setEntryAttributes(nullptr); QCOMPARE(spyReset.count(), 2); QCOMPARE(model->rowCount(), 0); @@ -227,8 +240,8 @@ void TestEntryModel::testAttributesModel() void TestEntryModel::testDefaultIconModel() { - DefaultIconModel* model = new DefaultIconModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new DefaultIconModel(this); + auto modelTest = new ModelTest(model, this); QCOMPARE(model->rowCount(), databaseIcons()->count()); @@ -238,8 +251,8 @@ void TestEntryModel::testDefaultIconModel() void TestEntryModel::testCustomIconModel() { - CustomIconModel* model = new CustomIconModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new CustomIconModel(this); + auto modelTest = new ModelTest(model, this); QCOMPARE(model->rowCount(), 0); @@ -264,12 +277,12 @@ void TestEntryModel::testCustomIconModel() void TestEntryModel::testAutoTypeAssociationsModel() { - AutoTypeAssociationsModel* model = new AutoTypeAssociationsModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new AutoTypeAssociationsModel(this); + auto modelTest = new ModelTest(model, this); QCOMPARE(model->rowCount(), 0); - AutoTypeAssociations* associations = new AutoTypeAssociations(this); + auto associations = new AutoTypeAssociations(this); model->setAutoTypeAssociations(associations); QCOMPARE(model->rowCount(), 0); @@ -300,28 +313,24 @@ void TestEntryModel::testAutoTypeAssociationsModel() void TestEntryModel::testProxyModel() { - EntryModel* modelSource = new EntryModel(this); - SortFilterHideProxyModel* modelProxy = new SortFilterHideProxyModel(this); + auto modelSource = new EntryModel(this); + auto modelProxy = new SortFilterHideProxyModel(this); modelProxy->setSourceModel(modelSource); - ModelTest* modelTest = new ModelTest(modelProxy, this); + auto modelTest = new ModelTest(modelProxy, this); - Database* db = new Database(); - Entry* entry = new Entry(); + auto db = new Database(); + auto entry = new Entry(); entry->setTitle("Test Title"); entry->setGroup(db->rootGroup()); modelSource->setGroup(db->rootGroup()); - /** - * @author Fonic - * Update comparison value of modelProxy->columnCount() to account for - * additional columns 'Password', 'Notes', 'Expires', 'Created', 'Modified', - * 'Accessed', 'Paperclip', 'Attachments', and TOTP - */ + // Test hiding and showing a column + auto columnCount = modelProxy->columnCount(); QSignalSpy spyColumnRemove(modelProxy, SIGNAL(columnsAboutToBeRemoved(QModelIndex, int, int))); modelProxy->hideColumn(0, true); - QCOMPARE(modelProxy->columnCount(), 14); + QCOMPARE(modelProxy->columnCount(), columnCount - 1); QVERIFY(!spyColumnRemove.isEmpty()); int oldSpyColumnRemoveSize = spyColumnRemove.size(); @@ -335,15 +344,9 @@ void TestEntryModel::testProxyModel() entryList << entry; modelSource->setEntries(entryList); - /** - * @author Fonic - * Update comparison value of modelProxy->columnCount() to account for - * additional columns 'Password', 'Notes', 'Expires', 'Created', 'Modified', - * 'Accessed', 'Paperclip', 'Attachments', and TOTP - */ QSignalSpy spyColumnInsert(modelProxy, SIGNAL(columnsAboutToBeInserted(QModelIndex, int, int))); modelProxy->hideColumn(0, false); - QCOMPARE(modelProxy->columnCount(), 15); + QCOMPARE(modelProxy->columnCount(), columnCount); QVERIFY(!spyColumnInsert.isEmpty()); int oldSpyColumnInsertSize = spyColumnInsert.size(); @@ -358,18 +361,18 @@ void TestEntryModel::testProxyModel() void TestEntryModel::testDatabaseDelete() { - EntryModel* model = new EntryModel(this); - ModelTest* modelTest = new ModelTest(model, this); + auto model = new EntryModel(this); + auto modelTest = new ModelTest(model, this); - Database* db1 = new Database(); - Group* group1 = new Group(); + auto db1 = new Database(); + auto group1 = new Group(); group1->setParent(db1->rootGroup()); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setGroup(group1); - Database* db2 = new Database(); - Entry* entry2 = new Entry(); + auto db2 = new Database(); + auto entry2 = new Entry(); entry2->setGroup(db2->rootGroup()); model->setEntries(QList() << entry1 << entry2); diff --git a/tests/TestEntrySearcher.cpp b/tests/TestEntrySearcher.cpp index e9b49d6b7..7a7e45323 100644 --- a/tests/TestEntrySearcher.cpp +++ b/tests/TestEntrySearcher.cpp @@ -17,6 +17,7 @@ #include "TestEntrySearcher.h" #include "core/Group.h" +#include "core/Tools.h" #include @@ -44,21 +45,21 @@ void TestEntrySearcher::testSearch() * - group211 * - group2111 */ - Group* group1 = new Group(); - Group* group2 = new Group(); - Group* group3 = new Group(); + auto group1 = new Group(); + auto group2 = new Group(); + auto group3 = new Group(); group1->setParent(m_rootGroup); group2->setParent(m_rootGroup); group3->setParent(m_rootGroup); - Group* group11 = new Group(); + auto group11 = new Group(); group11->setParent(group1); - Group* group21 = new Group(); - Group* group211 = new Group(); - Group* group2111 = new Group(); + auto group21 = new Group(); + auto group211 = new Group(); + auto group2111 = new Group(); group21->setParent(group2); group211->setParent(group21); @@ -66,39 +67,39 @@ void TestEntrySearcher::testSearch() group1->setSearchingEnabled(Group::Disable); - Entry* eRoot = new Entry(); + auto eRoot = new Entry(); eRoot->setTitle("test search term test"); eRoot->setGroup(m_rootGroup); - Entry* eRoot2 = new Entry(); + auto eRoot2 = new Entry(); eRoot2->setNotes("test term test"); eRoot2->setGroup(m_rootGroup); // Searching is disabled for these - Entry* e1 = new Entry(); + auto e1 = new Entry(); e1->setUsername("test search term test"); e1->setGroup(group1); - Entry* e11 = new Entry(); + auto e11 = new Entry(); e11->setNotes("test search term test"); e11->setGroup(group11); // End searching disabled - Entry* e2111 = new Entry(); + auto e2111 = new Entry(); e2111->setTitle("test search term test"); e2111->setGroup(group2111); - Entry* e2111b = new Entry(); + auto e2111b = new Entry(); e2111b->setNotes("test search test"); e2111b->setUsername("user123"); e2111b->setPassword("testpass"); e2111b->setGroup(group2111); - Entry* e3 = new Entry(); + auto e3 = new Entry(); e3->setUrl("test search term test"); e3->setGroup(group3); - Entry* e3b = new Entry(); + auto e3b = new Entry(); e3b->setTitle("test search test 123"); e3b->setUsername("test@email.com"); e3b->setPassword("realpass"); @@ -153,7 +154,7 @@ void TestEntrySearcher::testSearch() void TestEntrySearcher::testAndConcatenationInSearch() { - Entry* entry = new Entry(); + auto entry = new Entry(); entry->setNotes("abc def ghi"); entry->setTitle("jkl"); entry->setGroup(m_rootGroup); @@ -179,7 +180,7 @@ void TestEntrySearcher::testAndConcatenationInSearch() void TestEntrySearcher::testAllAttributesAreSearched() { - Entry* entry = new Entry(); + auto entry = new Entry(); entry->setGroup(m_rootGroup); entry->setTitle("testTitle"); @@ -205,7 +206,7 @@ void TestEntrySearcher::testSearchTermParser() QCOMPARE(terms[0].exclude, true); QCOMPARE(terms[1].field, EntrySearcher::Field::Undefined); - QCOMPARE(terms[1].word, QString("quoted \\\"string\\\"")); + QCOMPARE(terms[1].word, QString("quoted \"string\"")); QCOMPARE(terms[1].exclude, false); QCOMPARE(terms[2].field, EntrySearcher::Field::Username); @@ -224,7 +225,7 @@ void TestEntrySearcher::testSearchTermParser() QCOMPARE(terms.length(), 2); QCOMPARE(terms[0].field, EntrySearcher::Field::Url); - QCOMPARE(terms[0].regex.pattern(), QString("^.*\\.google\\.com$")); + QCOMPARE(terms[0].regex.pattern(), QString("^(?:.*\\.google\\.com)$")); QCOMPARE(terms[1].field, EntrySearcher::Field::Username); QCOMPARE(terms[1].regex.pattern(), QString("\\d+\\w{2}")); @@ -237,7 +238,7 @@ void TestEntrySearcher::testSearchTermParser() QCOMPARE(terms[0].field, EntrySearcher::Field::AttributeValue); QCOMPARE(terms[0].word, QString("abc")); - QCOMPARE(terms[0].regex.pattern(), QString("^efg$")); + QCOMPARE(terms[0].regex.pattern(), QString("^(?:efg)$")); QCOMPARE(terms[1].field, EntrySearcher::Field::AttributeValue); QCOMPARE(terms[1].word, QString("def")); @@ -276,35 +277,35 @@ void TestEntrySearcher::testGroup() * - group2 * - subgroup2 (1 entry) */ - Group* group1 = new Group(); - Group* group2 = new Group(); + auto group1 = new Group(); + auto group2 = new Group(); group1->setParent(m_rootGroup); group1->setName("group1"); group2->setParent(m_rootGroup); group2->setName("group2"); - Group* subgroup1 = new Group(); + auto subgroup1 = new Group(); subgroup1->setName("subgroup1"); subgroup1->setParent(group1); - Group* subgroup2 = new Group(); + auto subgroup2 = new Group(); subgroup2->setName("subgroup2"); subgroup2->setParent(group2); - Entry* eGroup1 = new Entry(); + auto eGroup1 = new Entry(); eGroup1->setTitle("Entry Group 1"); eGroup1->setGroup(group1); - Entry* eSub1 = new Entry(); + auto eSub1 = new Entry(); eSub1->setTitle("test search term test"); eSub1->setGroup(subgroup1); - Entry* eSub2 = new Entry(); + auto eSub2 = new Entry(); eSub2->setNotes("test test"); eSub2->setGroup(subgroup1); - Entry* eSub3 = new Entry(); + auto eSub3 = new Entry(); eSub3->setNotes("test term test"); eSub3->setGroup(subgroup2); @@ -363,7 +364,7 @@ void TestEntrySearcher::testSkipProtected() m_entrySearcher.search("_testProtected:apple _testAttribute:testE1 _testAttribute:testE2", m_rootGroup); QCOMPARE(m_searchResult, {}); - // also move the protected term around to execurise the short-circut logic + // also move the protected term around to exercise the short-circuit logic m_searchResult = m_entrySearcher.search("_testAttribute:testE2 _testProtected:apple", m_rootGroup); QCOMPARE(m_searchResult, expectE2); m_searchResult = m_entrySearcher.search("_testAttribute:testE1 _testProtected:apple", m_rootGroup); @@ -372,3 +373,24 @@ void TestEntrySearcher::testSkipProtected() m_entrySearcher.search("_testAttribute:testE1 _testProtected:apple _testAttribute:testE2", m_rootGroup); QCOMPARE(m_searchResult, {}); } + +void TestEntrySearcher::testUUIDSearch() +{ + auto entry1 = new Entry(); + entry1->setGroup(m_rootGroup); + entry1->setTitle("testTitle"); + auto uuid1 = QUuid::createUuid(); + entry1->setUuid(uuid1); + + auto entry2 = new Entry(); + entry2->setGroup(m_rootGroup); + entry2->setTitle("testTitle2"); + auto uuid2 = QUuid::createUuid(); + entry2->setUuid(uuid2); + + m_searchResult = m_entrySearcher.search("uuid:", m_rootGroup); + QCOMPARE(m_searchResult.count(), 2); + + m_searchResult = m_entrySearcher.search("uuid:" + Tools::uuidToHex(uuid1), m_rootGroup); + QCOMPARE(m_searchResult.count(), 1); +} diff --git a/tests/TestEntrySearcher.h b/tests/TestEntrySearcher.h index becd5f20d..2ca81a742 100644 --- a/tests/TestEntrySearcher.h +++ b/tests/TestEntrySearcher.h @@ -38,6 +38,7 @@ private slots: void testCustomAttributesAreSearched(); void testGroup(); void testSkipProtected(); + void testUUIDSearch(); private: Group* m_rootGroup; diff --git a/tests/TestFdoSecrets.cpp b/tests/TestFdoSecrets.cpp index e4d8cca22..38a50af99 100644 --- a/tests/TestFdoSecrets.cpp +++ b/tests/TestFdoSecrets.cpp @@ -69,7 +69,7 @@ void TestFdoSecrets::testSpecialCharsInAttributeValue() e2->setTitle("titleB"); e2->attributes()->set("testAttribute", "Abc:*+.-"); - // search for custom entries via programatic API + // search for custom entries via programmatic API { const auto term = Collection::attributeToTerm("testAttribute", "OAuth::[test.name@gmail.com]"); const auto res = EntrySearcher().search({term}, root.data()); @@ -82,6 +82,11 @@ void TestFdoSecrets::testSpecialCharsInAttributeValue() QCOMPARE(res.count(), 1); QCOMPARE(res[0]->title(), QStringLiteral("titleB")); } + { + const auto term = Collection::attributeToTerm("testAttribute", "v|"); + const auto res = EntrySearcher().search({term}, root.data()); + QCOMPARE(res.count(), 0); + } } void TestFdoSecrets::testDBusPathParse() diff --git a/tests/TestGroup.cpp b/tests/TestGroup.cpp index 95f79de27..22807c878 100644 --- a/tests/TestGroup.cpp +++ b/tests/TestGroup.cpp @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * 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 @@ -56,9 +56,9 @@ void TestGroup::cleanup() void TestGroup::testParenting() { - Database* db = new Database(); + auto db = new Database(); QPointer rootGroup = db->rootGroup(); - Group* tmpRoot = new Group(); + auto tmpRoot = new Group(); QPointer g1 = new Group(); QPointer g2 = new Group(); @@ -98,8 +98,8 @@ void TestGroup::testParenting() QVERIFY(g1->children().at(1) == g3); QVERIFY(g3->children().contains(g4)); - Group* g5 = new Group(); - Group* g6 = new Group(); + auto g5 = new Group(); + auto g6 = new Group(); g5->setParent(db->rootGroup()); g6->setParent(db->rootGroup()); QVERIFY(db->rootGroup()->children().at(1) == g5); @@ -129,8 +129,8 @@ void TestGroup::testParenting() void TestGroup::testSignals() { - Database* db = new Database(); - Database* db2 = new Database(); + auto db = new Database(); + auto db2 = new Database(); QPointer root = db->rootGroup(); QSignalSpy spyAboutToAdd(db, SIGNAL(groupAboutToAdd(Group*, int))); @@ -147,8 +147,8 @@ void TestGroup::testSignals() QSignalSpy spyAboutToMove2(db2, SIGNAL(groupAboutToMove(Group*, Group*, int))); QSignalSpy spyMoved2(db2, SIGNAL(groupMoved())); - Group* g1 = new Group(); - Group* g2 = new Group(); + auto g1 = new Group(); + auto g2 = new Group(); g1->setParent(root); QCOMPARE(spyAboutToAdd.count(), 1); @@ -212,8 +212,8 @@ void TestGroup::testSignals() QCOMPARE(spyAboutToMove2.count(), 0); QCOMPARE(spyMoved2.count(), 0); - Group* g3 = new Group(); - Group* g4 = new Group(); + auto g3 = new Group(); + auto g4 = new Group(); g3->setParent(root); QCOMPARE(spyAboutToAdd.count(), 3); @@ -247,7 +247,7 @@ void TestGroup::testSignals() void TestGroup::testEntries() { - Group* group = new Group(); + auto group = new Group(); QPointer entry1 = new Entry(); entry1->setGroup(group); @@ -269,8 +269,8 @@ void TestGroup::testDeleteSignals() { QScopedPointer db(new Database()); Group* groupRoot = db->rootGroup(); - Group* groupChild = new Group(); - Group* groupChildChild = new Group(); + auto groupChild = new Group(); + auto groupChildChild = new Group(); groupRoot->setObjectName("groupRoot"); groupChild->setObjectName("groupChild"); groupChildChild->setObjectName("groupChildChild"); @@ -284,8 +284,8 @@ void TestGroup::testDeleteSignals() QCOMPARE(spyAboutToRemove.count(), 2); QCOMPARE(spyRemoved.count(), 2); - Group* group = new Group(); - Entry* entry = new Entry(); + auto group = new Group(); + auto entry = new Entry(); entry->setGroup(group); QSignalSpy spyEntryAboutToRemove(group, SIGNAL(entryAboutToRemove(Entry*))); QSignalSpy spyEntryRemoved(group, SIGNAL(entryRemoved(Entry*))); @@ -298,9 +298,9 @@ void TestGroup::testDeleteSignals() QScopedPointer db2(new Database()); Group* groupRoot2 = db2->rootGroup(); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setParent(groupRoot2); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setGroup(group2); QSignalSpy spyEntryAboutToRemove2(group2, SIGNAL(entryAboutToRemove(Entry*))); QSignalSpy spyEntryRemoved2(group2, SIGNAL(entryRemoved(Entry*))); @@ -476,15 +476,15 @@ void TestGroup::testFindEntry() { QScopedPointer db(new Database()); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setTitle(QString("entry1")); entry1->setGroup(db->rootGroup()); entry1->setUuid(QUuid::createUuid()); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setTitle(QString("entry2")); entry2->setGroup(group1); @@ -558,11 +558,11 @@ void TestGroup::testFindGroupByPath() { QScopedPointer db(new Database()); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); group1->setParent(db->rootGroup()); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setParent(group1); @@ -626,7 +626,7 @@ void TestGroup::testPrint() output = db->rootGroup()->print(true); QCOMPARE(output, QString("[empty]\n")); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setTitle(QString("entry1")); entry1->setGroup(db->rootGroup()); entry1->setUuid(QUuid::createUuid()); @@ -634,24 +634,24 @@ void TestGroup::testPrint() output = db->rootGroup()->print(); QCOMPARE(output, QString("entry1\n")); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); group1->setParent(db->rootGroup()); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setTitle(QString("entry2")); entry2->setGroup(group1); entry2->setUuid(QUuid::createUuid()); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setParent(db->rootGroup()); - Group* subGroup = new Group(); + auto subGroup = new Group(); subGroup->setName("subgroup"); subGroup->setParent(group2); - Entry* entry3 = new Entry(); + auto entry3 = new Entry(); entry3->setTitle(QString("entry3")); entry3->setGroup(subGroup); entry3->setUuid(QUuid::createUuid()); @@ -691,13 +691,13 @@ void TestGroup::testPrint() void TestGroup::testAddEntryWithPath() { - Database* db = new Database(); + auto db = new Database(); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); group1->setParent(db->rootGroup()); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setParent(group1); @@ -742,19 +742,19 @@ void TestGroup::testIsRecycled() Database db; db.metadata()->setRecycleBinEnabled(true); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); group1->setParent(db.rootGroup()); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setParent(db.rootGroup()); - Group* group3 = new Group(); + auto group3 = new Group(); group3->setName("group3"); group3->setParent(group2); - Group* group4 = new Group(); + auto group4 = new Group(); group4->setName("group4"); group4->setParent(db.rootGroup()); @@ -814,64 +814,64 @@ void TestGroup::testEquals() void TestGroup::testChildrenSort() { auto createTestGroupWithUnorderedChildren = []() -> Group* { - Group* parent = new Group(); + auto parent = new Group(); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("B"); group1->setParent(parent); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("e"); group2->setParent(parent); - Group* group3 = new Group(); + auto group3 = new Group(); group3->setName("Test999"); group3->setParent(parent); - Group* group4 = new Group(); + auto group4 = new Group(); group4->setName("A"); group4->setParent(parent); - Group* group5 = new Group(); + auto group5 = new Group(); group5->setName("z"); group5->setParent(parent); - Group* group6 = new Group(); + auto group6 = new Group(); group6->setName("045"); group6->setParent(parent); - Group* group7 = new Group(); + auto group7 = new Group(); group7->setName("60"); group7->setParent(parent); - Group* group8 = new Group(); + auto group8 = new Group(); group8->setName("04test"); group8->setParent(parent); - Group* group9 = new Group(); + auto group9 = new Group(); group9->setName("Test12"); group9->setParent(parent); - Group* group10 = new Group(); + auto group10 = new Group(); group10->setName("i"); group10->setParent(parent); - Group* subGroup1 = new Group(); + auto subGroup1 = new Group(); subGroup1->setName("sub_xte"); subGroup1->setParent(group10); - Group* subGroup2 = new Group(); + auto subGroup2 = new Group(); subGroup2->setName("sub_010"); subGroup2->setParent(group10); - Group* subGroup3 = new Group(); + auto subGroup3 = new Group(); subGroup3->setName("sub_000"); subGroup3->setParent(group10); - Group* subGroup4 = new Group(); + auto subGroup4 = new Group(); subGroup4->setName("sub_M"); subGroup4->setParent(group10); - Group* subGroup5 = new Group(); + auto subGroup5 = new Group(); subGroup5->setName("sub_p"); subGroup5->setParent(group10); - Group* subGroup6 = new Group(); + auto subGroup6 = new Group(); subGroup6->setName("sub_45p"); subGroup6->setParent(group10); - Group* subGroup7 = new Group(); + auto subGroup7 = new Group(); subGroup7->setName("sub_6p"); subGroup7->setParent(group10); - Group* subGroup8 = new Group(); + auto subGroup8 = new Group(); subGroup8->setName("sub_tt"); subGroup8->setParent(group10); - Group* subGroup9 = new Group(); + auto subGroup9 = new Group(); subGroup9->setName("sub_t0"); subGroup9->setParent(group10); @@ -996,11 +996,11 @@ void TestGroup::testHierarchy() Group group1; group1.setName("group1"); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setParent(&group1); - Group* group3 = new Group(); + auto group3 = new Group(); group3->setName("group3"); group3->setParent(group2); @@ -1028,12 +1028,12 @@ void TestGroup::testApplyGroupIconRecursively() // Create a database with two nested groups with one entry each Database database; - Group* subgroup = new Group(); + auto subgroup = new Group(); subgroup->setName("Subgroup"); subgroup->setParent(database.rootGroup()); QVERIFY(subgroup); - Group* subsubgroup = new Group(); + auto subsubgroup = new Group(); subsubgroup->setName("Subsubgroup"); subsubgroup->setParent(subgroup); QVERIFY(subsubgroup); @@ -1125,7 +1125,7 @@ void TestGroup::testUsernamesRecursive() Database database; // Create a subgroup - Group* subgroup = new Group(); + auto subgroup = new Group(); subgroup->setName("Subgroup"); subgroup->setParent(database.rootGroup()); @@ -1152,16 +1152,16 @@ void TestGroup::testMoveUpDown() Group* root = database.rootGroup(); QVERIFY(root); - Entry* entry0 = new Entry(); + auto entry0 = new Entry(); QVERIFY(entry0); entry0->setGroup(root); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); QVERIFY(entry1); entry1->setGroup(root); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); QVERIFY(entry2); entry2->setGroup(root); - Entry* entry3 = new Entry(); + auto entry3 = new Entry(); QVERIFY(entry3); entry3->setGroup(root); // default order, straight @@ -1293,3 +1293,29 @@ void TestGroup::testPreviousParentGroup() QVERIFY(group1->previousParentGroupUuid() == group2->uuid()); QVERIFY(group1->previousParentGroup() == group2); } + +void TestGroup::testAutoTypeState() +{ + Database db; + auto* root = db.rootGroup(); + + auto* entry1 = new Entry(); + entry1->setGroup(root); + + auto subGroup = new Group(); + subGroup->setParent(root); + auto* entry2 = new Entry(); + entry2->setGroup(subGroup); + + // Disable Auto-Type from root group + root->setAutoTypeEnabled(Group::TriState::Disable); + QVERIFY(!entry1->groupAutoTypeEnabled()); + QVERIFY(!entry2->groupAutoTypeEnabled()); + + // Enable Auto-Type for sub group + subGroup->setAutoTypeEnabled(Group::TriState::Enable); + QVERIFY(root->autoTypeEnabled() == Group::TriState::Disable); + QVERIFY(subGroup->autoTypeEnabled() == Group::TriState::Enable); + QVERIFY(!entry1->groupAutoTypeEnabled()); + QVERIFY(entry2->groupAutoTypeEnabled()); +} diff --git a/tests/TestGroup.h b/tests/TestGroup.h index 0c8fee937..d3326e464 100644 --- a/tests/TestGroup.h +++ b/tests/TestGroup.h @@ -1,6 +1,6 @@ /* + * Copyright (C) 2023 KeePassXC Team * Copyright (C) 2010 Felix Geyer - * 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 @@ -49,6 +49,7 @@ private slots: void testUsernamesRecursive(); void testMoveUpDown(); void testPreviousParentGroup(); + void testAutoTypeState(); }; #endif // KEEPASSX_TESTGROUP_H diff --git a/tests/TestGroupModel.cpp b/tests/TestGroupModel.cpp index 6d7e58c41..f9a0790fc 100644 --- a/tests/TestGroupModel.cpp +++ b/tests/TestGroupModel.cpp @@ -35,35 +35,35 @@ void TestGroupModel::initTestCase() void TestGroupModel::test() { - Database* db = new Database(); + auto db = new Database(); Group* groupRoot = db->rootGroup(); groupRoot->setObjectName("groupRoot"); groupRoot->setName("groupRoot"); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setObjectName("group1"); group1->setName("group1"); group1->setParent(groupRoot); - Group* group11 = new Group(); + auto group11 = new Group(); group1->setObjectName("group11"); group11->setName("group11"); group11->setParent(group1); - Group* group12 = new Group(); + auto group12 = new Group(); group1->setObjectName("group12"); group12->setName("group12"); group12->setParent(group1); - Group* group121 = new Group(); + auto group121 = new Group(); group1->setObjectName("group121"); group121->setName("group121"); group121->setParent(group12); - GroupModel* model = new GroupModel(db, this); + auto model = new GroupModel(db, this); - ModelTest* modelTest = new ModelTest(model, this); + auto modelTest = new ModelTest(model, this); QModelIndex indexRoot = model->index(0, 0); QModelIndex index1 = model->index(0, 0, indexRoot); @@ -90,7 +90,7 @@ void TestGroupModel::test() QSignalSpy spyAboutToMove(model, SIGNAL(rowsAboutToBeMoved(QModelIndex, int, int, QModelIndex, int))); QSignalSpy spyMoved(model, SIGNAL(rowsMoved(QModelIndex, int, int, QModelIndex, int))); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setObjectName("group2"); group2->setName("group2"); group2->setParent(groupRoot); diff --git a/tests/TestHibp.cpp b/tests/TestHibp.cpp index 65e858cbe..5e85f0728 100644 --- a/tests/TestHibp.cpp +++ b/tests/TestHibp.cpp @@ -89,22 +89,22 @@ void TestHibp::testPwned() Group* root = m_db->rootGroup(); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setPassword("foo"); entry1->setGroup(root); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setPassword("xyz"); entry2->setGroup(root); - Entry* entry3 = new Entry(); + auto entry3 = new Entry(); entry3->setPassword("foo"); m_db->recycleEntry(entry3); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setParent(root); - Entry* entry4 = new Entry(); + auto entry4 = new Entry(); entry4->setPassword("bar"); entry4->setGroup(group1); diff --git a/tests/TestIconDownloader.cpp b/tests/TestIconDownloader.cpp index a0a1fa491..676734ee6 100644 --- a/tests/TestIconDownloader.cpp +++ b/tests/TestIconDownloader.cpp @@ -1,6 +1,9 @@ #include "TestIconDownloader.h" + #include -#include + +#include "core/Config.h" +#include "gui/IconDownloader.h" QTEST_GUILESS_MAIN(TestIconDownloader) @@ -8,6 +11,7 @@ void TestIconDownloader::testIconDownloader() { QFETCH(QString, url); QFETCH(QStringList, expectation); + config()->set(Config::Security_IconDownloadFallback, false); IconDownloader downloader; downloader.setUrl(url); @@ -30,9 +34,11 @@ void TestIconDownloader::testIconDownloader_data() QTest::newRow("Unsupported schema") << "ftp://google.com" << QStringList{}; QTest::newRow("Missing schema") << "keepassxc.org" << QStringList{"https://keepassxc.org/favicon.ico"}; QTest::newRow("Missing host") << "https:///register" << QStringList{}; - QTest::newRow("URL with path") << "https://keepassxc.org/register/here" << QStringList{keepassxc_favicon}; + QTest::newRow("URL with path") << "https://keepassxc.org/register/here/" + << QStringList{"https://keepassxc.org/register/here/favicon.ico", keepassxc_favicon}; QTest::newRow("URL with path and query") - << "https://keepassxc.org/register/here?login=me" << QStringList{keepassxc_favicon}; + << "https://keepassxc.org/register/here?login=me" + << QStringList{"https://keepassxc.org/register/favicon.ico", keepassxc_favicon}; QTest::newRow("URL with port") << "https://keepassxc.org:8080" << QStringList{"https://keepassxc.org:8080/favicon.ico"}; QTest::newRow("2nd level domain") << "https://login.keepassxc.org" @@ -54,11 +60,14 @@ void TestIconDownloader::testIconDownloader_data() << QStringList{"https://134.130.155.184/favicon.ico"}; QTest::newRow("Raw IP") << "134.130.155.184" << QStringList{"https://134.130.155.184/favicon.ico"}; QTest::newRow("Raw IP with schema and path") - << "https://134.130.155.184/with/path" << QStringList{"https://134.130.155.184/favicon.ico"}; + << "https://134.130.155.184/with/path/" + << QStringList{"https://134.130.155.184/with/path/favicon.ico", "https://134.130.155.184/favicon.ico"}; QTest::newRow("Raw IP with schema (https), path, and port") - << "https://134.130.155.184:8080/test" << QStringList{"https://134.130.155.184:8080/favicon.ico"}; + << "https://134.130.155.184:8080/test/" + << QStringList{"https://134.130.155.184:8080/test/favicon.ico", "https://134.130.155.184:8080/favicon.ico"}; QTest::newRow("Raw IP with schema (http), path, and port") - << "134.130.155.184:8080/test" << QStringList{"https://134.130.155.184:8080/favicon.ico"}; + << "134.130.155.184:8080/test/" + << QStringList{"https://134.130.155.184:8080/test/favicon.ico", "https://134.130.155.184:8080/favicon.ico"}; QTest::newRow("URL with username and password") << "https://user:password@keepassxc.org" << QStringList{"https://user:password@keepassxc.org/favicon.ico"}; QTest::newRow("URL with username and password, several subdomains") @@ -68,4 +77,7 @@ void TestIconDownloader::testIconDownloader_data() "https://keepassxc.org/favicon.ico"}; QTest::newRow("Raw IP with username and password") << "https://user:password@134.130.155.184" << QStringList{"https://user:password@134.130.155.184/favicon.ico"}; + QTest::newRow("Relative path should be preserved") + << "https://test.com/rel-path/" + << QStringList{"https://test.com/rel-path/favicon.ico", "https://test.com/favicon.ico"}; } diff --git a/tests/TestImports.cpp b/tests/TestImports.cpp new file mode 100644 index 000000000..17ec2bef5 --- /dev/null +++ b/tests/TestImports.cpp @@ -0,0 +1,373 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "TestImports.h" + +#include "config-keepassx-tests.h" +#include "core/Group.h" +#include "core/Metadata.h" +#include "core/Totp.h" +#include "crypto/Crypto.h" +#include "format/BitwardenReader.h" +#include "format/OPUXReader.h" +#include "format/OpVaultReader.h" +#include "format/ProtonPassReader.h" + +#include +#include +#include + +QTEST_GUILESS_MAIN(TestImports) + +void TestImports::initTestCase() +{ + QVERIFY(Crypto::init()); +} + +void TestImports::testOPUX() +{ + auto opuxPath = QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/1PasswordExport.1pux")); + + OPUXReader reader; + auto db = reader.convert(opuxPath); + QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); + QVERIFY(db); + + // Confirm specific entry details are valid + auto entry = db->rootGroup()->findEntryByPath("/Personal/Login"); + QVERIFY(entry); + QCOMPARE(entry->title(), QStringLiteral("Login")); + QCOMPARE(entry->username(), QStringLiteral("team@keepassxc.org")); + QCOMPARE(entry->password(), QStringLiteral("password")); + QCOMPARE(entry->url(), QStringLiteral("https://keepassxc.org")); + QCOMPARE(entry->notes(), QStringLiteral("Note to self")); + // Check extra URL's + QCOMPARE(entry->attribute("KP2A_URL_1"), QStringLiteral("https://twitter.com")); + // Check TOTP + QVERIFY(entry->hasTotp()); + QVERIFY(!entry->attribute("otp_1").isEmpty()); + // Check tags + QVERIFY(entry->tagList().contains("Favorite")); + QVERIFY(entry->tagList().contains("website")); + + // Check attachments + entry = db->rootGroup()->findEntryByPath("/Personal/KeePassXC Logo"); + auto attachments = entry->attachments(); + QCOMPARE(attachments->keys().count(), 1); + QCOMPARE(attachments->keys()[0], QString("keepassxc.png")); + + // Confirm advanced attributes + // NOTE: 1PUX does not support an explicit expiration field + entry = db->rootGroup()->findEntryByPath("/Personal/Credit Card"); + QVERIFY(entry); + auto tmpl = QString("Credit Card Fields_%1"); + auto attr = entry->attributes(); + QCOMPARE(attr->value(tmpl.arg("cardholder name")), QStringLiteral("KeePassXC")); + QCOMPARE(attr->value(tmpl.arg("expiry date")), QStringLiteral("202206")); + QCOMPARE(attr->value(tmpl.arg("verification number")), QStringLiteral("123")); + QVERIFY(attr->isProtected(tmpl.arg("verification number"))); + + // Confirm address fields + entry = db->rootGroup()->findEntryByPath("/Personal/Identity"); + QVERIFY(entry); + attr = entry->attributes(); + QCOMPARE(attr->value("Address_address"), QStringLiteral("123 Avenue Rd\nBoston, MA 12345\nus")); + + // Check archived entries + entry = db->rootGroup()->findEntryByPath("/Personal/Login Archived"); + QVERIFY(entry); + QVERIFY(entry->tagList().contains("Archived")); + + // Check vault to group structure + entry = db->rootGroup()->findEntryByPath("/Shared/Bank Account"); + QVERIFY(entry); + // Check custom group icon + QVERIFY(!entry->group()->iconUuid().isNull()); + + // Check Category UUID 05 Passwords + entry = db->rootGroup()->findEntryByPath("/Personal/UUID 005 Password"); + QVERIFY(entry); + QCOMPARE(entry->password(), QStringLiteral("uuid005password")); +} + +void TestImports::testOPVault() +{ + auto opVaultPath = QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/keepassxc.opvault")); + + auto categories = QStringList({QStringLiteral("Login"), + QStringLiteral("Credit Card"), + QStringLiteral("Secure Note"), + QStringLiteral("Identity"), + QStringLiteral("Password"), + QStringLiteral("Tombstone"), + QStringLiteral("Software License"), + QStringLiteral("Bank Account"), + QStringLiteral("Database"), + QStringLiteral("Driver License"), + QStringLiteral("Outdoor License"), + QStringLiteral("Membership"), + QStringLiteral("Passport"), + QStringLiteral("Rewards"), + QStringLiteral("SSN"), + QStringLiteral("Router"), + QStringLiteral("Server"), + QStringLiteral("Email")}); + + QDir opVaultDir(opVaultPath); + + OpVaultReader reader; + auto db = reader.convert(opVaultDir, "a"); + QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); + QVERIFY(db); + + // Confirm specific entry details are valid + auto entry = db->rootGroup()->findEntryByPath("/Login/KeePassXC"); + QVERIFY(entry); + QCOMPARE(entry->title(), QStringLiteral("KeePassXC")); + QCOMPARE(entry->username(), QStringLiteral("keepassxc")); + QCOMPARE(entry->password(), QStringLiteral("opvault")); + QCOMPARE(entry->url(), QStringLiteral("https://www.keepassxc.org")); + QCOMPARE(entry->notes(), QStringLiteral("KeePassXC Account")); + // Check extra URL's + QCOMPARE(entry->attribute("KP2A_URL_1"), QStringLiteral("https://snapshot.keepassxc.org")); + // Check TOTP + QVERIFY(entry->hasTotp()); + // Check attachments + auto attachments = entry->attachments(); + QCOMPARE(attachments->keys().count(), 1); + QCOMPARE(*attachments->values().begin(), QByteArray("attachment")); + + // Confirm expired entries + entry = db->rootGroup()->findEntryByPath("/Login/Expired Login"); + QVERIFY(entry->isExpired()); + + // Confirm advanced attributes + entry = db->rootGroup()->findEntryByPath("/Credit Card/My Credit Card"); + QVERIFY(entry); + auto attr = entry->attributes(); + QCOMPARE(attr->value("cardholder name"), QStringLiteral("Team KeePassXC")); + QVERIFY(!attr->value("valid from").isEmpty()); + QCOMPARE(attr->value("Additional Details_PIN"), QStringLiteral("1234")); + QVERIFY(attr->isProtected("Additional Details_PIN")); + + // Confirm address fields + entry = db->rootGroup()->findEntryByPath("/Identity/Team KeePassXC"); + QVERIFY(entry); + attr = entry->attributes(); + QCOMPARE(attr->value("address_street"), QStringLiteral("123 Password Lane")); + + // Confirm complex passwords + entry = db->rootGroup()->findEntryByPath("/Password/Complex Password"); + QVERIFY(entry); + QCOMPARE(entry->password(), QStringLiteral("HfgcHjEL}iO}^3N!?*cv~O:9GJZQ0>oC")); + QVERIFY(entry->hasTotp()); + auto totpSettings = entry->totpSettings(); + QCOMPARE(totpSettings->digits, static_cast(8)); + QCOMPARE(totpSettings->step, static_cast(45)); + + // Add another OTP to this entry to confirm it doesn't overwrite the existing one + auto field = QJsonObject::fromVariantMap({{"n", "TOTP_SETTINGS"}, {"v", "otpauth://test.url?digits=6"}}); + reader.fillFromSectionField(entry, "", field); + QVERIFY(entry->hasTotp()); + totpSettings = entry->totpSettings(); + QCOMPARE(totpSettings->digits, static_cast(8)); + QCOMPARE(totpSettings->step, static_cast(45)); + QVERIFY(entry->attributes()->contains("otp_1")); + + // Confirm trashed entries are sent to the recycle bin + auto recycleBin = db->metadata()->recycleBin(); + QVERIFY(recycleBin); + QVERIFY(!recycleBin->isEmpty()); + QVERIFY(recycleBin->findEntryByPath("Trashed Password")); + + // Confirm created groups align with category names + for (const auto group : db->rootGroup()->children()) { + if (group == recycleBin) { + continue; + } + QVERIFY2(categories.contains(group->name()), + qPrintable(QStringLiteral("Invalid group name: %1").arg(group->name()))); + // Confirm each group is not empty + QVERIFY2(!group->isEmpty(), qPrintable(QStringLiteral("Group %1 is empty").arg(group->name()))); + } +} + +void TestImports::testBitwarden() +{ + auto bitwardenPath = QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/bitwarden_export.json")); + + BitwardenReader reader; + auto db = reader.convert(bitwardenPath); + QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); + QVERIFY(db); + + // Confirm Login fields + auto entry = db->rootGroup()->findEntryByPath("/My Folder/Login Name"); + QVERIFY(entry); + QCOMPARE(entry->title(), QStringLiteral("Login Name")); + QCOMPARE(entry->username(), QStringLiteral("myusername@gmail.com")); + QCOMPARE(entry->password(), QStringLiteral("mypassword")); + QCOMPARE(entry->url(), QStringLiteral("https://mail.google.com")); + QCOMPARE(entry->notes(), QStringLiteral("1st line of note text\n2nd Line of note text")); + // Check extra URL's + QCOMPARE(entry->attribute("KP2A_URL_1"), QStringLiteral("https://google.com")); + QCOMPARE(entry->attribute("KP2A_URL_2"), QStringLiteral("https://gmail.com")); + // Check TOTP + QVERIFY(entry->hasTotp()); + // NOTE: Bitwarden does not export attachments + // NOTE: Bitwarden does not export expiration dates + + // Confirm Identity fields + entry = db->rootGroup()->findEntryByPath("/My Folder/My Identity"); + QVERIFY(entry); + auto attr = entry->attributes(); + // NOTE: The extra spaces are deliberate to test unmodified ingest of data + QCOMPARE(attr->value("identity_address"), + QStringLiteral(" 1 North Calle Cesar Chavez \nSanta Barbara, CA 93103\nUnited States ")); + QCOMPARE(attr->value("identity_name"), QStringLiteral("Mrs Jane A Doe")); + QCOMPARE(attr->value("identity_ssn"), QStringLiteral("123-12-1234")); + QVERIFY(attr->isProtected("identity_ssn")); + + // Confirm Secure Note + entry = db->rootGroup()->findEntryByPath("/My Folder/My Secure Note"); + QVERIFY(entry); + QCOMPARE(entry->notes(), + QStringLiteral("1st line of secure note\n2nd line of secure note\n3rd line of secure note")); + + // Confirm Credit Card + entry = db->rootGroup()->findEntryByPath("/Second Folder/Card Name"); + QVERIFY(entry); + attr = entry->attributes(); + QCOMPARE(attr->value("card_cardholderName"), QStringLiteral("Jane Doe")); + QCOMPARE(attr->value("card_number"), QStringLiteral("1234567891011121")); + QCOMPARE(attr->value("card_code"), QStringLiteral("123")); + QVERIFY(attr->isProtected("card_code")); +} + +void TestImports::testBitwardenEncrypted() +{ + // We already tested the parser so just test that decryption works properly + + // First test PBKDF2 password stretching (KDF Type 0) + auto bitwardenPath = + QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/bitwarden_encrypted_export.json")); + + BitwardenReader reader; + auto db = reader.convert(bitwardenPath, "a"); + if (reader.hasError()) { + QFAIL(qPrintable(reader.errorString())); + } + QVERIFY(db); + + // Now test Argon2id password stretching (KDF Type 1) + bitwardenPath = QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, + QStringLiteral("/bitwarden_encrypted_argon2id_export.json")); + + db = reader.convert(bitwardenPath, "a"); + if (reader.hasError()) { + QFAIL(qPrintable(reader.errorString())); + } + QVERIFY(db); +} + +void TestImports::testBitwardenPasskey() +{ + auto bitwardenPath = + QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/bitwarden_passkey_export.json")); + + BitwardenReader reader; + auto db = reader.convert(bitwardenPath); + QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); + QVERIFY(db); + + // Confirm Login fields + auto entry = db->rootGroup()->findEntryByPath("/webauthn.io"); + QVERIFY(entry); + QCOMPARE(entry->title(), QStringLiteral("webauthn.io")); + QCOMPARE(entry->username(), QStringLiteral("KPXC_BITWARDEN")); + QCOMPARE(entry->url(), QStringLiteral("https://webauthn.io/")); + + // Confirm passkey attributes + auto attr = entry->attributes(); + QCOMPARE(attr->value(EntryAttributes::KPEX_PASSKEY_CREDENTIAL_ID), QStringLiteral("o-FfiyfBQq6Qz6YVrYeFTw")); + QCOMPARE( + attr->value(EntryAttributes::KPEX_PASSKEY_PRIVATE_KEY_PEM), + QStringLiteral( + "-----BEGIN PRIVATE " + "KEY-----" + "MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgmr4GQQjerojFuf0ZouOuUllMvAwxZSZAfB6gwDYcLiehRANCAAT0WR5zVS" + "p6ieusvjkLkzaGc7fjGBmwpiuLPxR/d+ZjqMI9L2DKh+takp6wGt2x0n4jzr1KA352NZg0vjZX9CHh-----END PRIVATE KEY-----")); + QCOMPARE(attr->value(EntryAttributes::KPEX_PASSKEY_USERNAME), QStringLiteral("KPXC_BITWARDEN")); + QCOMPARE(attr->value(EntryAttributes::KPEX_PASSKEY_RELYING_PARTY), QStringLiteral("webauthn.io")); + QCOMPARE(attr->value(EntryAttributes::KPEX_PASSKEY_USER_HANDLE), + QStringLiteral("aTFtdmFnOHYtS2dxVEJ0by1rSFpLWGg0enlTVC1iUVJReDZ5czJXa3c2aw")); +} + +void TestImports::testProtonPass() +{ + auto protonPassPath = + QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/protonpass_export.json")); + + ProtonPassReader reader; + auto db = reader.convert(protonPassPath); + QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); + QVERIFY(db); + + // Confirm Login fields + auto entry = db->rootGroup()->findEntryByPath("/Personal/Test Login"); + QVERIFY(entry); + QCOMPARE(entry->title(), QStringLiteral("Test Login")); + QCOMPARE(entry->username(), QStringLiteral("Username")); + QCOMPARE(entry->password(), QStringLiteral("Password")); + QCOMPARE(entry->url(), QStringLiteral("https://example.com/")); + QCOMPARE(entry->notes(), QStringLiteral("My login secure note.")); + // Check extra URL's + QCOMPARE(entry->attribute("KP2A_URL_1"), QStringLiteral("https://example2.com/")); + // Check TOTP + QVERIFY(entry->hasTotp()); + // Check attributes + auto attr = entry->attributes(); + QVERIFY(attr->isProtected("hidden field")); + QCOMPARE(attr->value("second 2fa secret"), QStringLiteral("TOTPCODE")); + // NOTE: Proton Pass does not export attachments + // NOTE: Proton Pass does not export expiration dates + + // Confirm Secure Note + entry = db->rootGroup()->findEntryByPath("/Personal/My Secure Note"); + QVERIFY(entry); + QCOMPARE(entry->notes(), QStringLiteral("Secure note contents.")); + + // Confirm Credit Card + entry = db->rootGroup()->findEntryByPath("/Personal/Test Card"); + QVERIFY(entry); + QCOMPARE(entry->username(), QStringLiteral("1234222233334444")); + QCOMPARE(entry->password(), QStringLiteral("333")); + attr = entry->attributes(); + QCOMPARE(attr->value("card_cardholderName"), QStringLiteral("Test name")); + QCOMPARE(attr->value("card_expirationDate"), QStringLiteral("2025-01")); + QCOMPARE(attr->value("card_pin"), QStringLiteral("1234")); + QVERIFY(attr->isProtected("card_pin")); + + // Confirm Expired (deleted) entry + entry = db->rootGroup()->findEntryByPath("/Personal/My Deleted Note"); + QVERIFY(entry); + QTRY_VERIFY(entry->isExpired()); + + // Confirm second group (vault) + entry = db->rootGroup()->findEntryByPath("/Test/Other vault login"); + QVERIFY(entry); +} diff --git a/src/gui/KeePass1OpenWidget.h b/tests/TestImports.h similarity index 63% rename from src/gui/KeePass1OpenWidget.h rename to tests/TestImports.h index 203b78632..728fa6377 100644 --- a/src/gui/KeePass1OpenWidget.h +++ b/tests/TestImports.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Felix Geyer + * Copyright (C) 2024 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 @@ -15,20 +15,23 @@ * along with this program. If not, see . */ -#ifndef KEEPASSX_KEEPASS1OPENWIDGET_H -#define KEEPASSX_KEEPASS1OPENWIDGET_H +#ifndef TEST_IMPORTS_H +#define TEST_IMPORTS_H -#include "gui/DatabaseOpenWidget.h" +#include -class KeePass1OpenWidget : public DatabaseOpenWidget +class TestImports : public QObject { Q_OBJECT -public: - explicit KeePass1OpenWidget(QWidget* parent = nullptr); - -protected: - void openDatabase() override; +private slots: + void initTestCase(); + void testOPUX(); + void testOPVault(); + void testBitwarden(); + void testBitwardenEncrypted(); + void testBitwardenPasskey(); + void testProtonPass(); }; -#endif // KEEPASSX_KEEPASS1OPENWIDGET_H +#endif /* TEST_IMPORTS_H */ diff --git a/tests/TestKdbx3.cpp b/tests/TestKdbx3.cpp index bcc3df77a..097fef6f9 100644 --- a/tests/TestKdbx3.cpp +++ b/tests/TestKdbx3.cpp @@ -169,3 +169,88 @@ void TestKdbx3::testBrokenHeaderHash() auto db = QSharedPointer::create(); QVERIFY(!db->open(filename, key, nullptr)); } + +void TestKdbx3::testAttachmentIndexStability() +{ + QScopedPointer db(new Database()); + db->changeKdf(fastKdf(KeePass2::uuidToKdf(KeePass2::KDF_AES_KDBX3))); + auto compositeKey = QSharedPointer::create(); + db->setKey(compositeKey); + QVERIFY(!db->uuid().isNull()); + + auto root = db->rootGroup(); + + auto group1 = new Group(); + group1->setUuid(QUuid::createUuid()); + QVERIFY(!group1->uuid().isNull()); + group1->setParent(root); + + auto attachment1 = QByteArray("qwerty"); + auto attachment2 = QByteArray("asdf"); + auto attachment3 = QByteArray("zxcv"); + + auto entry1 = new Entry(); + entry1->setUuid(QUuid::createUuid()); + QVERIFY(!entry1->uuid().isNull()); + auto uuid1 = entry1->uuid(); + entry1->attachments()->set("a", attachment1); + QCOMPARE(entry1->attachments()->keys().size(), 1); + QCOMPARE(entry1->attachments()->values().size(), 1); + entry1->setGroup(root); + + auto entry2 = new Entry(); + entry2->setUuid(QUuid::createUuid()); + QVERIFY(!entry2->uuid().isNull()); + auto uuid2 = entry2->uuid(); + entry2->attachments()->set("a", attachment1); + entry2->attachments()->set("b", attachment2); + QCOMPARE(entry2->attachments()->keys().size(), 2); + QCOMPARE(entry2->attachments()->values().size(), 2); + entry2->setGroup(group1); + + auto entry3 = new Entry(); + entry3->setUuid(QUuid::createUuid()); + QVERIFY(!entry3->uuid().isNull()); + auto uuid3 = entry3->uuid(); + entry3->attachments()->set("a", attachment1); + entry3->attachments()->set("b", attachment2); + entry3->attachments()->set("x", attachment3); + entry3->attachments()->set("y", attachment3); + QCOMPARE(entry3->attachments()->keys().size(), 4); + QCOMPARE(entry3->attachments()->values().size(), 3); + entry3->setGroup(group1); + + QBuffer buffer; + buffer.open(QBuffer::ReadWrite); + KeePass2Writer writer; + QVERIFY(writer.writeDatabase(&buffer, db.data())); + QCOMPARE(writer.version(), KeePass2::FILE_VERSION_3_1); + + buffer.seek(0); + KeePass2Reader reader; + + // Re-read database and check that all attachments are still correctly assigned + auto db2 = QSharedPointer::create(); + reader.readDatabase(&buffer, QSharedPointer::create(), db2.data()); + QVERIFY(!reader.hasError()); + QVERIFY(!db->uuid().isNull()); + + auto a1 = db2->rootGroup()->findEntryByUuid(uuid1)->attachments(); + QCOMPARE(a1->keys().size(), 1); + QCOMPARE(a1->values().size(), 1); + QCOMPARE(a1->value("a"), attachment1); + + auto a2 = db2->rootGroup()->findEntryByUuid(uuid2)->attachments(); + QCOMPARE(a2->keys().size(), 2); + QCOMPARE(a2->values().size(), 2); + QCOMPARE(a2->value("a"), attachment1); + QCOMPARE(a2->value("b"), attachment2); + + auto a3 = db2->rootGroup()->findEntryByUuid(uuid3)->attachments(); + QCOMPARE(a3->keys().size(), 4); + QCOMPARE(a3->values().size(), 3); + QCOMPARE(a3->value("a"), attachment1); + QCOMPARE(a3->value("b"), attachment2); + QCOMPARE(a3->value("x"), attachment3); + QCOMPARE(a3->value("y"), attachment3); +} diff --git a/tests/TestKdbx3.h b/tests/TestKdbx3.h index deb965d90..2994e355d 100644 --- a/tests/TestKdbx3.h +++ b/tests/TestKdbx3.h @@ -30,6 +30,7 @@ private slots: void testProtectedStrings(); void testBrokenHeaderHash(); void testFormat300(); + void testAttachmentIndexStability(); protected: void initTestCaseImpl() override; diff --git a/tests/TestKdbx4.cpp b/tests/TestKdbx4.cpp index a40bd1cdf..3233d570a 100644 --- a/tests/TestKdbx4.cpp +++ b/tests/TestKdbx4.cpp @@ -27,6 +27,7 @@ #include "keys/FileKey.h" #include "keys/PasswordKey.h" #include "mock/MockChallengeResponseKey.h" +#include "mock/MockClock.h" #include int main(int argc, char* argv[]) @@ -71,7 +72,7 @@ QSharedPointer TestKdbx4Argon2::readXml(QBuffer* buf, bool strictMode, void TestKdbx4Argon2::writeXml(QBuffer* buf, Database* db, bool& hasError, QString& errorString) { - KdbxXmlWriter writer(KeePass2::FILE_VERSION_4); + KdbxXmlWriter writer(KeePass2::FILE_VERSION_4, {}); writer.writeDatabase(buf, db); hasError = writer.hasError(); errorString = writer.errorString(); @@ -113,6 +114,17 @@ void TestKdbx4AesKdf::initTestCaseImpl() } Q_DECLARE_METATYPE(QUuid) + +void TestKdbx4Format::init() +{ + MockClock::setup(new MockClock()); +} + +void TestKdbx4Format::cleanup() +{ + MockClock::teardown(); +} + void TestKdbx4Format::testFormat400() { QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/Format400.kdbx"); @@ -405,6 +417,102 @@ void TestKdbx4Format::testUpgradeMasterKeyIntegrity_data() QTest::newRow("Upgrade (implicit): entry-customdata") << QString("entry-customdata") << KeePass2::FILE_VERSION_4; } +void TestKdbx4Format::testAttachmentIndexStability() +{ + QScopedPointer db(new Database()); + db->changeKdf(fastKdf(KeePass2::uuidToKdf(KeePass2::KDF_ARGON2ID))); + auto compositeKey = QSharedPointer::create(); + db->setKey(compositeKey); + QVERIFY(!db->uuid().isNull()); + + auto root = db->rootGroup(); + + auto group1 = new Group(); + group1->setUuid(QUuid::createUuid()); + QVERIFY(!group1->uuid().isNull()); + group1->setParent(root); + + // Simulate KeeShare group, which uses its own attachment namespace + auto group2 = new Group(); + group2->setUuid(QUuid::createUuid()); + QVERIFY(!group2->uuid().isNull()); + group2->setParent(group1); + group2->customData()->set("KeeShare/Reference", "value doesn't matter"); + QVERIFY(group2->isShared()); + + auto attachment1 = QByteArray("qwerty"); + auto attachment2 = QByteArray("asdf"); + auto attachment3 = QByteArray("zxcv"); + + auto entry1 = new Entry(); + entry1->setUuid(QUuid::createUuid()); + QVERIFY(!entry1->uuid().isNull()); + auto uuid1 = entry1->uuid(); + entry1->attachments()->set("a", attachment1); + QCOMPARE(entry1->attachments()->keys().size(), 1); + QCOMPARE(entry1->attachments()->values().size(), 1); + entry1->setGroup(root); + + auto entry2 = new Entry(); + entry2->setUuid(QUuid::createUuid()); + QVERIFY(!entry2->uuid().isNull()); + auto uuid2 = entry2->uuid(); + entry2->attachments()->set("a", attachment1); + entry2->attachments()->set("b", attachment2); + QCOMPARE(entry2->attachments()->keys().size(), 2); + QCOMPARE(entry2->attachments()->values().size(), 2); + entry2->setGroup(group1); + + auto entry3 = new Entry(); + entry3->setUuid(QUuid::createUuid()); + QVERIFY(!entry3->uuid().isNull()); + auto uuid3 = entry3->uuid(); + entry3->attachments()->set("a", attachment1); + entry3->attachments()->set("b", attachment2); + entry3->attachments()->set("x", attachment3); + entry3->attachments()->set("y", attachment3); + QCOMPARE(entry3->attachments()->keys().size(), 4); + QCOMPARE(entry3->attachments()->values().size(), 3); + entry3->setGroup(group2); + + QBuffer buffer; + buffer.open(QBuffer::ReadWrite); + KeePass2Writer writer; + QVERIFY(writer.writeDatabase(&buffer, db.data())); + QVERIFY(writer.version() >= KeePass2::FILE_VERSION_4); + + buffer.seek(0); + KeePass2Reader reader; + + // Re-read database and check that all attachments are still correctly assigned + auto db2 = QSharedPointer::create(); + reader.readDatabase(&buffer, QSharedPointer::create(), db2.data()); + QVERIFY(!reader.hasError()); + QVERIFY(!db->uuid().isNull()); + + auto a1 = db2->rootGroup()->findEntryByUuid(uuid1)->attachments(); + QCOMPARE(a1->keys().size(), 1); + QCOMPARE(a1->values().size(), 1); + QCOMPARE(a1->value("a"), attachment1); + + auto a2 = db2->rootGroup()->findEntryByUuid(uuid2)->attachments(); + QCOMPARE(a2->keys().size(), 2); + QCOMPARE(a2->values().size(), 2); + QCOMPARE(a2->value("a"), attachment1); + QCOMPARE(a2->value("b"), attachment2); + + auto sharedGroup = db2->rootGroup()->findEntryByUuid(uuid3)->group(); + QVERIFY(sharedGroup->isShared()); + + auto a3 = db2->rootGroup()->findEntryByUuid(uuid3)->attachments(); + QCOMPARE(a3->keys().size(), 4); + QCOMPARE(a3->values().size(), 3); + QCOMPARE(a3->value("a"), attachment1); + QCOMPARE(a3->value("b"), attachment2); + QCOMPARE(a3->value("x"), attachment3); + QCOMPARE(a3->value("y"), attachment3); +} + void TestKdbx4Format::testCustomData() { Database db; diff --git a/tests/TestKdbx4.h b/tests/TestKdbx4.h index 5d7f6cc50..cd5bc4788 100644 --- a/tests/TestKdbx4.h +++ b/tests/TestKdbx4.h @@ -56,12 +56,15 @@ class TestKdbx4Format : public QObject Q_OBJECT private slots: + void init(); + void cleanup(); void testFormat400(); void testFormat400Upgrade(); void testFormat400Upgrade_data(); void testFormat410Upgrade(); void testUpgradeMasterKeyIntegrity(); void testUpgradeMasterKeyIntegrity_data(); + void testAttachmentIndexStability(); void testCustomData(); }; diff --git a/tests/TestKeePass1Reader.cpp b/tests/TestKeePass1Reader.cpp index a3676a460..18b35b5c7 100644 --- a/tests/TestKeePass1Reader.cpp +++ b/tests/TestKeePass1Reader.cpp @@ -39,7 +39,7 @@ void TestKeePass1Reader::initTestCase() QString filename = QString(KEEPASSX_TEST_DATA_DIR).append("/basic.kdb"); KeePass1Reader reader; - m_db = reader.readDatabase(filename, "masterpw", 0); + m_db = reader.readDatabase(filename, "masterpw", nullptr); QVERIFY(m_db); QVERIFY(!reader.hasError()); } @@ -213,7 +213,7 @@ void TestKeePass1Reader::testTwofish() QString dbFilename = QString("%1/%2.kdb").arg(QString(KEEPASSX_TEST_DATA_DIR), name); - auto db = reader.readDatabase(dbFilename, "masterpw", 0); + auto db = reader.readDatabase(dbFilename, "masterpw", nullptr); QVERIFY(db); QVERIFY(!reader.hasError()); QCOMPARE(db->rootGroup()->children().size(), 1); @@ -229,7 +229,7 @@ void TestKeePass1Reader::testCP1252Password() QString dbFilename = QString("%1/%2.kdb").arg(QString(KEEPASSX_TEST_DATA_DIR), name); QString password = QString::fromUtf8("\xe2\x80\x9e\x70\x61\x73\x73\x77\x6f\x72\x64\xe2\x80\x9d"); - auto db = reader.readDatabase(dbFilename, password, 0); + auto db = reader.readDatabase(dbFilename, password, nullptr); QVERIFY(db); QVERIFY(!reader.hasError()); QCOMPARE(db->rootGroup()->children().size(), 1); @@ -244,7 +244,7 @@ QDateTime TestKeePass1Reader::genDT(int year, int month, int day, int hour, int { QDate date(year, month, day); QTime time(hour, min, 0); - return QDateTime(date, time, Qt::UTC); + return {date, time, Qt::UTC}; } void TestKeePass1Reader::reopenDatabase(QSharedPointer db, diff --git a/tests/TestKeePass2Format.cpp b/tests/TestKeePass2Format.cpp index dc928fa14..5451fb62b 100644 --- a/tests/TestKeePass2Format.cpp +++ b/tests/TestKeePass2Format.cpp @@ -576,11 +576,15 @@ void TestKeePass2Format::testKdbxKeyChange() buffer.seek(0); QSharedPointer db(new Database()); db->changeKdf(fastKdf(KeePass2::uuidToKdf(m_kdbxSourceDb->kdf()->uuid()))); - db->setRootGroup(m_kdbxSourceDb->rootGroup()->clone(Entry::CloneNoFlags, Group::CloneIncludeEntries)); + auto oldGroup = + db->setRootGroup(m_kdbxSourceDb->rootGroup()->clone(Entry::CloneNoFlags, Group::CloneIncludeEntries)); + delete oldGroup; db->setKey(key1); writeKdbx(&buffer, db.data(), hasError, errorString); - QVERIFY(!hasError); + if (hasError) { + QFAIL(qPrintable(QStringLiteral("Error while reading database: ").append(errorString))); + } // read database db = QSharedPointer::create(); @@ -597,7 +601,9 @@ void TestKeePass2Format::testKdbxKeyChange() // write database buffer.seek(0); writeKdbx(&buffer, db.data(), hasError, errorString); - QVERIFY(!hasError); + if (hasError) { + QFAIL(qPrintable(QStringLiteral("Error while reading database: ").append(errorString))); + } // read database db = QSharedPointer::create(); diff --git a/tests/TestMerge.cpp b/tests/TestMerge.cpp index 014f39f41..3dde3a063 100644 --- a/tests/TestMerge.cpp +++ b/tests/TestMerge.cpp @@ -29,13 +29,6 @@ QTEST_GUILESS_MAIN(TestMerge) namespace { - TimeInfo modificationTime(TimeInfo timeInfo, int years, int months, int days) - { - const QDateTime time = timeInfo.lastModificationTime(); - timeInfo.setLastModificationTime(time.addYears(years).addMonths(months).addDays(days)); - return timeInfo; - } - MockClock* m_clock = nullptr; } // namespace @@ -79,7 +72,7 @@ void TestMerge::testMergeIntoNew() } /** - * Merging when no changes occured should not + * Merging when no changes occurred should not * have any side effect. */ void TestMerge::testMergeNoChanges() @@ -94,18 +87,54 @@ void TestMerge::testMergeNoChanges() m_clock->advanceSecond(1); Merger merger1(dbSource.data(), dbDestination.data()); - merger1.merge(); + auto changes = merger1.merge(); + QVERIFY(changes.isEmpty()); QCOMPARE(dbDestination->rootGroup()->entriesRecursive().size(), 2); QCOMPARE(dbSource->rootGroup()->entriesRecursive().size(), 2); m_clock->advanceSecond(1); Merger merger2(dbSource.data(), dbDestination.data()); - merger2.merge(); + changes = merger2.merge(); + + QVERIFY(changes.isEmpty()); + QCOMPARE(dbDestination->rootGroup()->entriesRecursive().size(), 2); + QCOMPARE(dbSource->rootGroup()->entriesRecursive().size(), 2); +} + +/** + * Merging without database custom data (used by imports and KeeShare) + */ +void TestMerge::testMergeCustomData() +{ + QScopedPointer dbDestination(createTestDatabase()); + QScopedPointer dbSource( + createTestDatabaseStructureClone(dbDestination.data(), Entry::CloneNoFlags, Group::CloneIncludeEntries)); QCOMPARE(dbDestination->rootGroup()->entriesRecursive().size(), 2); QCOMPARE(dbSource->rootGroup()->entriesRecursive().size(), 2); + + dbDestination->metadata()->customData()->set("TEST_CUSTOM_DATA", "OLD TESTING"); + + m_clock->advanceSecond(1); + + dbSource->metadata()->customData()->set("TEST_CUSTOM_DATA", "TESTING"); + + // First check that the custom data is not merged when skipped + Merger merger1(dbSource.data(), dbDestination.data()); + merger1.setSkipDatabaseCustomData(true); + auto changes = merger1.merge(); + + QVERIFY(changes.isEmpty()); + QCOMPARE(dbDestination->metadata()->customData()->value("TEST_CUSTOM_DATA"), QString("OLD TESTING")); + + // Second check that the custom data is merged otherwise + Merger merger2(dbSource.data(), dbDestination.data()); + changes = merger2.merge(); + + QCOMPARE(changes.size(), 1); + QCOMPARE(dbDestination->metadata()->customData()->value("TEST_CUSTOM_DATA"), QString("TESTING")); } /** @@ -258,50 +287,6 @@ void TestMerge::testResolveConflictExisting() } } -/** - * Tests the KeepBoth merge mode. - */ -void TestMerge::testResolveConflictDuplicate() -{ - QScopedPointer dbDestination(createTestDatabase()); - QScopedPointer dbSource( - createTestDatabaseStructureClone(dbDestination.data(), Entry::CloneIncludeHistory, Group::CloneIncludeEntries)); - - // sanity check - QCOMPARE(dbDestination->rootGroup()->children().at(0)->entries().size(), 2); - - // make this entry newer than in original db - QPointer updatedDestinationEntry = dbDestination->rootGroup()->children().at(0)->entries().at(0); - const TimeInfo initialEntryTimeInfo = updatedDestinationEntry->timeInfo(); - const TimeInfo updatedEntryTimeInfo = modificationTime(initialEntryTimeInfo, 1, 0, 0); - - updatedDestinationEntry->setTimeInfo(updatedEntryTimeInfo); - - dbDestination->rootGroup()->setMergeMode(Group::MergeMode::Duplicate); - - // Make sure the merge changes have a different timestamp. - m_clock->advanceSecond(1); - - Merger merger(dbSource.data(), dbDestination.data()); - merger.merge(); - - // one entry is duplicated because of mode - QCOMPARE(dbDestination->rootGroup()->children().at(0)->entries().size(), 3); - QCOMPARE(dbDestination->rootGroup()->children().at(0)->entries().at(0)->historyItems().isEmpty(), false); - // the older entry was merged from the other db as last in the group - QPointer newerEntry = dbDestination->rootGroup()->children().at(0)->entries().at(0); - QPointer olderEntry = dbDestination->rootGroup()->children().at(0)->entries().at(2); - QVERIFY(newerEntry->title() == olderEntry->title()); - QVERIFY2(!newerEntry->attributes()->hasKey("merged"), "newer entry is not marked with an attribute \"merged\""); - QVERIFY2(olderEntry->attributes()->hasKey("merged"), "older entry is marked with an attribute \"merged\""); - QCOMPARE(olderEntry->historyItems().isEmpty(), false); - QCOMPARE(newerEntry->timeInfo(), updatedEntryTimeInfo); - // TODO HNH: this may be subject to discussions since the entry itself is newer but represents an older one - // QCOMPARE(olderEntry->timeInfo(), initialEntryTimeInfo); - QVERIFY2(olderEntry->uuidToHex() != updatedDestinationEntry->uuidToHex(), - "KeepBoth should not reuse the UUIDs when cloning."); -} - void TestMerge::testResolveConflictTemplate( int mergeMode, std::function&)> verification) @@ -310,7 +295,7 @@ void TestMerge::testResolveConflictTemplate( timestamps["initialTime"] = m_clock->currentDateTimeUtc(); QScopedPointer dbDestination(createTestDatabase()); - Entry* deletedEntry1 = new Entry(); + auto deletedEntry1 = new Entry(); deletedEntry1->setUuid(QUuid::createUuid()); deletedEntry1->beginUpdate(); @@ -318,7 +303,7 @@ void TestMerge::testResolveConflictTemplate( deletedEntry1->setTitle("deletedDestination"); deletedEntry1->endUpdate(); - Entry* deletedEntry2 = new Entry(); + auto deletedEntry2 = new Entry(); deletedEntry2->setUuid(QUuid::createUuid()); deletedEntry2->beginUpdate(); @@ -393,7 +378,7 @@ void TestMerge::testResolveConflictTemplate( m_clock->advanceMinute(1); - Entry* destinationEntrySingle = new Entry(); + auto destinationEntrySingle = new Entry(); destinationEntrySingle->setUuid(QUuid::createUuid()); destinationEntrySingle->beginUpdate(); @@ -401,7 +386,7 @@ void TestMerge::testResolveConflictTemplate( destinationEntrySingle->setTitle("entryDestination"); destinationEntrySingle->endUpdate(); - Entry* sourceEntrySingle = new Entry(); + auto sourceEntrySingle = new Entry(); sourceEntrySingle->setUuid(QUuid::createUuid()); sourceEntrySingle->beginUpdate(); @@ -455,7 +440,7 @@ void TestMerge::testDeletionConflictTemplate(int mergeMode, // entry indirectly deleted in target after updated in source auto createGroup = [&](const char* name, Group* parent) { - Group* group = new Group(); + auto group = new Group(); group->setUuid(QUuid::createUuid()); group->setName(name); group->setParent(parent, 0); @@ -463,7 +448,7 @@ void TestMerge::testDeletionConflictTemplate(int mergeMode, return group; }; auto createEntry = [&](const char* title, Group* parent) { - Entry* entry = new Entry(); + auto entry = new Entry(); entry->setUuid(QUuid::createUuid()); entry->setTitle(title); entry->setGroup(parent); @@ -584,7 +569,7 @@ void TestMerge::assertDeletionNewerOnly(Database* db, const QMap // newer deletion in source forces deletion QVERIFY(!mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInSourceAfterChangedInTarget"])); QVERIFY(db->containsDeletedObject(identifiers["EntryDeletedInSourceAfterChangedInTarget"])); - // newer change in source privents deletion + // newer change in source prevents deletion QVERIFY(mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInTargetBeforeChangedInSource"])); QVERIFY(!db->containsDeletedObject(identifiers["EntryDeletedInTargetBeforeChangedInSource"])); // newer deletion in target forces deletion @@ -600,7 +585,7 @@ void TestMerge::assertDeletionNewerOnly(Database* db, const QMap QVERIFY(db->containsDeletedObject(identifiers["GroupDeletedInSourceAfterEntryUpdatedInTarget"])); QVERIFY(!mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInSourceAfterEntryUpdatedInTarget"])); QVERIFY(db->containsDeletedObject(identifiers["EntryDeletedInSourceAfterEntryUpdatedInTarget"])); - // newer change in source privents deletion + // newer change in source prevents deletion QVERIFY(mergedRootGroup->findGroupByUuid(identifiers["GroupDeletedInTargetBeforeEntryUpdatedInSource"])); QVERIFY(!db->containsDeletedObject(identifiers["GroupDeletedInTargetBeforeEntryUpdatedInSource"])); QVERIFY(mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInTargetBeforeEntryUpdatedInSource"])); @@ -733,26 +718,11 @@ void TestMerge::testDeletionConflictEntry_Synchronized() testDeletionConflictTemplate(Group::Synchronize, &TestMerge::assertDeletionNewerOnly); } -void TestMerge::testDeletionConflictEntry_KeepLocal() -{ - testDeletionConflictTemplate(Group::KeepLocal, &TestMerge::assertDeletionLocalOnly); -} - -void TestMerge::testDeletionConflictEntry_KeepRemote() -{ - testDeletionConflictTemplate(Group::KeepRemote, &TestMerge::assertDeletionLocalOnly); -} - void TestMerge::testDeletionConflictEntry_KeepNewer() { testDeletionConflictTemplate(Group::KeepNewer, &TestMerge::assertDeletionLocalOnly); } -void TestMerge::testDeletionConflictEntry_Duplicate() -{ - testDeletionConflictTemplate(Group::Duplicate, &TestMerge::assertDeletionLocalOnly); -} - /** * Tests the KeepNewer mode concerning history. */ @@ -766,29 +736,6 @@ void TestMerge::testResolveConflictEntry_Synchronize() }); } -/** - * Tests the KeepExisting mode concerning history. - */ -void TestMerge::testResolveConflictEntry_KeepLocal() -{ - testResolveConflictTemplate(Group::KeepLocal, [](Database* db, const QMap& timestamps) { - QPointer mergedRootGroup = db->rootGroup(); - QPointer mergedGroup1 = mergedRootGroup->children().at(0); - TestMerge::assertUpdateMergedEntry1(mergedGroup1->entries().at(0), timestamps); - TestMerge::assertUpdateReappliedEntry2(mergedGroup1->entries().at(1), timestamps); - }); -} - -void TestMerge::testResolveConflictEntry_KeepRemote() -{ - testResolveConflictTemplate(Group::KeepRemote, [](Database* db, const QMap& timestamps) { - QPointer mergedRootGroup = db->rootGroup(); - QPointer mergedGroup1 = mergedRootGroup->children().at(0); - TestMerge::assertUpdateReappliedEntry1(mergedGroup1->entries().at(0), timestamps); - TestMerge::assertUpdateMergedEntry2(mergedGroup1->entries().at(1), timestamps); - }); -} - void TestMerge::testResolveConflictEntry_KeepNewer() { testResolveConflictTemplate(Group::KeepNewer, [](Database* db, const QMap& timestamps) { @@ -883,7 +830,7 @@ void TestMerge::testCreateNewGroups() m_clock->advanceSecond(1); - Group* groupSourceCreated = new Group(); + auto groupSourceCreated = new Group(); groupSourceCreated->setName("group3"); groupSourceCreated->setUuid(QUuid::createUuid()); groupSourceCreated->setParent(dbSource->rootGroup()); @@ -906,7 +853,7 @@ void TestMerge::testMoveEntryIntoNewGroup() m_clock->advanceSecond(1); - Group* groupSourceCreated = new Group(); + auto groupSourceCreated = new Group(); groupSourceCreated->setName("group3"); groupSourceCreated->setUuid(QUuid::createUuid()); groupSourceCreated->setParent(dbSource->rootGroup()); @@ -941,7 +888,7 @@ void TestMerge::testUpdateEntryDifferentLocation() QScopedPointer dbSource( createTestDatabaseStructureClone(dbDestination.data(), Entry::CloneNoFlags, Group::CloneIncludeEntries)); - Group* groupDestinationCreated = new Group(); + auto groupDestinationCreated = new Group(); groupDestinationCreated->setName("group3"); groupDestinationCreated->setUuid(QUuid::createUuid()); groupDestinationCreated->setParent(dbDestination->rootGroup()); @@ -979,7 +926,7 @@ void TestMerge::testUpdateEntryDifferentLocation() QCOMPARE(entryDestinationMerged->username(), QString("username")); QCOMPARE(entryDestinationMerged->group()->name(), QString("group3")); QCOMPARE(uuidBeforeSyncing, entryDestinationMerged->uuid()); - // default merge strategie is KeepNewer - therefore the older location is used! + // default merge strategy is KeepNewer - therefore the older location is used! QCOMPARE(entryDestinationMerged->timeInfo().locationChanged(), sourceLocationChanged); } @@ -1028,7 +975,7 @@ void TestMerge::testUpdateGroup() void TestMerge::testUpdateGroupLocation() { QScopedPointer dbDestination(createTestDatabase()); - Group* group3DestinationCreated = new Group(); + auto group3DestinationCreated = new Group(); QUuid group3Uuid = QUuid::createUuid(); group3DestinationCreated->setUuid(group3Uuid); group3DestinationCreated->setName("group3"); @@ -1284,7 +1231,7 @@ void TestMerge::testDeletedGroup() QPointer group2DestinationInitial = dbDestination->rootGroup()->findChildByName("group2"); QVERIFY(group2DestinationInitial != nullptr); - Entry* entry3DestinationCreated = new Entry(); + auto entry3DestinationCreated = new Entry(); entry3DestinationCreated->beginUpdate(); entry3DestinationCreated->setUuid(QUuid::createUuid()); entry3DestinationCreated->setGroup(group2DestinationInitial); @@ -1507,19 +1454,19 @@ void TestMerge::testMergeModified() Database* TestMerge::createTestDatabase() { - Database* db = new Database(); + auto db = new Database(); - Group* group1 = new Group(); + auto group1 = new Group(); group1->setName("group1"); group1->setUuid(QUuid::createUuid()); - Group* group2 = new Group(); + auto group2 = new Group(); group2->setName("group2"); group2->setUuid(QUuid::createUuid()); - Entry* entry1 = new Entry(); + auto entry1 = new Entry(); entry1->setUuid(QUuid::createUuid()); - Entry* entry2 = new Entry(); + auto entry2 = new Entry(); entry2->setUuid(QUuid::createUuid()); m_clock->advanceYear(1); @@ -1544,9 +1491,9 @@ Database* TestMerge::createTestDatabase() Database* TestMerge::createTestDatabaseStructureClone(Database* source, int entryFlags, int groupFlags) { - Database* db = new Database(); - // the old root group is deleted by QObject::parent relationship - db->setRootGroup(source->rootGroup()->clone(static_cast(entryFlags), - static_cast(groupFlags))); + auto db = new Database(); + auto oldGroup = db->setRootGroup(source->rootGroup()->clone(static_cast(entryFlags), + static_cast(groupFlags))); + delete oldGroup; return db; } diff --git a/tests/TestMerge.h b/tests/TestMerge.h index cb17ac8fb..b9ea54f72 100644 --- a/tests/TestMerge.h +++ b/tests/TestMerge.h @@ -30,20 +30,15 @@ private slots: void cleanup(); void testMergeIntoNew(); void testMergeNoChanges(); + void testMergeCustomData(); void testResolveConflictNewer(); void testResolveConflictExisting(); void testResolveGroupConflictOlder(); void testMergeNotModified(); void testMergeModified(); - void testResolveConflictDuplicate(); void testResolveConflictEntry_Synchronize(); - void testResolveConflictEntry_KeepLocal(); - void testResolveConflictEntry_KeepRemote(); void testResolveConflictEntry_KeepNewer(); - void testDeletionConflictEntry_Duplicate(); void testDeletionConflictEntry_Synchronized(); - void testDeletionConflictEntry_KeepLocal(); - void testDeletionConflictEntry_KeepRemote(); void testDeletionConflictEntry_KeepNewer(); void testMoveEntry(); void testMoveEntryPreserveChanges(); diff --git a/tests/TestOpVaultReader.cpp b/tests/TestOpVaultReader.cpp deleted file mode 100644 index aa95880a0..000000000 --- a/tests/TestOpVaultReader.cpp +++ /dev/null @@ -1,129 +0,0 @@ -/* - * Copyright (C) 2019 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 . - */ - -#include "TestOpVaultReader.h" - -#include "config-keepassx-tests.h" -#include "core/Group.h" -#include "core/Metadata.h" -#include "crypto/Crypto.h" -#include "format/OpVaultReader.h" -#include "totp/totp.h" - -#include -#include -#include - -QTEST_GUILESS_MAIN(TestOpVaultReader) - -void TestOpVaultReader::initTestCase() -{ - QVERIFY(Crypto::init()); - - m_opVaultPath = QStringLiteral("%1/%2").arg(KEEPASSX_TEST_DATA_DIR, QStringLiteral("/keepassxc.opvault")); - - m_categories = QStringList({QStringLiteral("Login"), - QStringLiteral("Credit Card"), - QStringLiteral("Secure Note"), - QStringLiteral("Identity"), - QStringLiteral("Password"), - QStringLiteral("Tombstone"), - QStringLiteral("Software License"), - QStringLiteral("Bank Account"), - QStringLiteral("Database"), - QStringLiteral("Driver License"), - QStringLiteral("Outdoor License"), - QStringLiteral("Membership"), - QStringLiteral("Passport"), - QStringLiteral("Rewards"), - QStringLiteral("SSN"), - QStringLiteral("Router"), - QStringLiteral("Server"), - QStringLiteral("Email")}); -} - -void TestOpVaultReader::testReadIntoDatabase() -{ - QDir opVaultDir(m_opVaultPath); - - OpVaultReader reader; - QScopedPointer db(reader.readDatabase(opVaultDir, "a")); - QVERIFY(db); - QVERIFY2(!reader.hasError(), qPrintable(reader.errorString())); - - // Confirm specific entry details are valid - auto entry = db->rootGroup()->findEntryByPath("/Login/KeePassXC"); - QVERIFY(entry); - QCOMPARE(entry->title(), QStringLiteral("KeePassXC")); - QCOMPARE(entry->username(), QStringLiteral("keepassxc")); - QCOMPARE(entry->password(), QStringLiteral("opvault")); - QCOMPARE(entry->url(), QStringLiteral("https://www.keepassxc.org")); - QCOMPARE(entry->notes(), QStringLiteral("KeePassXC Account")); - // Check extra URL's - QCOMPARE(entry->attribute("KP2A_URL_1"), QStringLiteral("https://snapshot.keepassxc.org")); - // Check TOTP - QVERIFY(entry->hasTotp()); - // Check attachments - auto attachments = entry->attachments(); - QCOMPARE(attachments->keys().count(), 1); - QCOMPARE(*attachments->values().begin(), QByteArray("attachment")); - - // Confirm expired entries - entry = db->rootGroup()->findEntryByPath("/Login/Expired Login"); - QVERIFY(entry->isExpired()); - - // Confirm advanced attributes - entry = db->rootGroup()->findEntryByPath("/Credit Card/My Credit Card"); - QVERIFY(entry); - auto attr = entry->attributes(); - QCOMPARE(attr->value("cardholder name"), QStringLiteral("Team KeePassXC")); - QVERIFY(!attr->value("valid from").isEmpty()); - QCOMPARE(attr->value("Additional Details_PIN"), QStringLiteral("1234")); - QVERIFY(attr->isProtected("Additional Details_PIN")); - - // Confirm address fields - entry = db->rootGroup()->findEntryByPath("/Identity/Team KeePassXC"); - QVERIFY(entry); - attr = entry->attributes(); - QCOMPARE(attr->value("address_street"), QStringLiteral("123 Password Lane")); - - // Confirm complex passwords - entry = db->rootGroup()->findEntryByPath("/Password/Complex Password"); - QVERIFY(entry); - QCOMPARE(entry->password(), QStringLiteral("HfgcHjEL}iO}^3N!?*cv~O:9GJZQ0>oC")); - QVERIFY(entry->hasTotp()); - auto totpSettings = entry->totpSettings(); - QCOMPARE(totpSettings->digits, static_cast(8)); - QCOMPARE(totpSettings->step, static_cast(45)); - - // Confirm trashed entries are sent to the recycle bin - auto recycleBin = db->metadata()->recycleBin(); - QVERIFY(recycleBin); - QVERIFY(!recycleBin->isEmpty()); - QVERIFY(recycleBin->findEntryByPath("Trashed Password")); - - // Confirm created groups align with category names - for (const auto group : db->rootGroup()->children()) { - if (group == recycleBin) { - continue; - } - QVERIFY2(m_categories.contains(group->name()), - qPrintable(QStringLiteral("Invalid group name: %1").arg(group->name()))); - // Confirm each group is not empty - QVERIFY2(!group->isEmpty(), qPrintable(QStringLiteral("Group %1 is empty").arg(group->name()))); - } -} diff --git a/tests/TestOpenSSHKey.cpp b/tests/TestOpenSSHKey.cpp index 1f0053474..a20b248ed 100644 --- a/tests/TestOpenSSHKey.cpp +++ b/tests/TestOpenSSHKey.cpp @@ -254,6 +254,7 @@ void TestOpenSSHKey::testParseRSACompare() QCOMPARE(oldKey.type(), newKey.type()); QCOMPARE(oldKey.fingerprint(), newKey.fingerprint()); QCOMPARE(oldPrivateKey, newPrivateKey); + QCOMPARE(newKeyString, newKey.privateKey()); } void TestOpenSSHKey::testParseECDSA256() @@ -277,6 +278,7 @@ void TestOpenSSHKey::testParseECDSA256() QCOMPARE(key.type(), QString("ecdsa-sha2-nistp256")); QCOMPARE(key.comment(), QString("opensshkey-test-ecdsa256@keepassxc")); QCOMPARE(key.fingerprint(), QString("SHA256:nwwovZmQbBeiR3GZRpK4OWHgCUE7E0wFtCN7Ng7eX5g")); + QCOMPARE(keyString, key.privateKey()); } void TestOpenSSHKey::testParseECDSA384() @@ -302,6 +304,7 @@ void TestOpenSSHKey::testParseECDSA384() QCOMPARE(key.type(), QString("ecdsa-sha2-nistp384")); QCOMPARE(key.comment(), QString("opensshkey-test-ecdsa384@keepassxc")); QCOMPARE(key.fingerprint(), QString("SHA256:B5tLMG976BZ6nyi/oRUmKaTJcaEaFagEjBfOAgru0OY")); + QCOMPARE(keyString, key.privateKey()); } void TestOpenSSHKey::testParseECDSA521() @@ -328,6 +331,7 @@ void TestOpenSSHKey::testParseECDSA521() QCOMPARE(key.type(), QString("ecdsa-sha2-nistp521")); QCOMPARE(key.comment(), QString("opensshkey-test-ecdsa521@keepassxc")); QCOMPARE(key.fingerprint(), QString("SHA256:m3LtA9MtZW8FN0R3vwA0AAI+YtegbggGCy3EGKWya+s")); + QCOMPARE(keyString, key.privateKey()); } void TestOpenSSHKey::testDecryptOpenSSHAES256CBC() @@ -533,6 +537,7 @@ void TestOpenSSHKey::testParseECDSASecurityKey() QCOMPARE(key.type(), QString("sk-ecdsa-sha2-nistp256@openssh.com")); QCOMPARE(key.comment(), QString("opensshkey-test-ecdsa-sk@keepassxc")); QCOMPARE(key.fingerprint(), QString("SHA256:ctOtAsPMqbtumGI41o2oeWfGDah4m1ACILRj+x0gx0E")); + QCOMPARE(keyString, key.privateKey()); } void TestOpenSSHKey::testParseED25519SecurityKey() @@ -557,4 +562,5 @@ void TestOpenSSHKey::testParseED25519SecurityKey() QCOMPARE(key.type(), QString("sk-ssh-ed25519@openssh.com")); QCOMPARE(key.comment(), QString("opensshkey-test-ed25519-sk@keepassxc")); QCOMPARE(key.fingerprint(), QString("SHA256:PGtS5WvbnYmNqFIeRbzO6cVP9GLh8eEzENgkHp02XIA")); + QCOMPARE(keyString, key.privateKey()); } diff --git a/tests/TestPasskeys.cpp b/tests/TestPasskeys.cpp new file mode 100644 index 000000000..1618dce28 --- /dev/null +++ b/tests/TestPasskeys.cpp @@ -0,0 +1,702 @@ +/* + * Copyright (C) 2024 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 . + */ + +#include "TestPasskeys.h" +#include "browser/BrowserCbor.h" +#include "browser/BrowserMessageBuilder.h" +#include "browser/BrowserPasskeysClient.h" +#include "browser/BrowserService.h" +#include "browser/PasskeyUtils.h" +#include "core/Database.h" +#include "core/Entry.h" +#include "core/Group.h" +#include "crypto/Crypto.h" + +#include +#include +#include +#include + +using namespace Botan::Sodium; + +QTEST_GUILESS_MAIN(TestPasskeys) + +// Register request +// clang-format off +const QString PublicKeyCredentialOptions = R"( + { + "attestation": "none", + "authenticatorSelection": { + "residentKey": "preferred", + "requireResidentKey": false, + "userVerification": "required" + }, + "challenge": "lVeHzVxWsr8MQxMkZF0ti6FXhdgMljqKzgA-q_zk2Mnii3eJ47VF97sqUoYktVC85WAZ1uIASm-a_lDFZwsLfw", + "pubKeyCredParams": [ + { + "type": "public-key", + "alg": -7 + }, + { + "type": "public-key", + "alg": -257 + } + ], + "rp": { + "name": "webauthn.io", + "id": "webauthn.io" + }, + "timeout": 60000, + "excludeCredentials": [], + "user": { + "displayName": "Test User", + "id": "VkdWemRDQlZjMlZ5", + "name": "Test User" + } + } +)"; + +// Register response +const QString PublicKeyCredential = R"( + { + "authenticatorAttachment": "platform", + "id": "yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8", + "rawId": "cabcc52799707294f060c39d5d29b11796f9718425a813336db53f77ea052cef", + "response": { + "attestationObject": "o2NmbXRkbm9uZWdhdHRTdG10oGhhdXRoRGF0YVikdKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvBFAAAAAP2xQbJdhEQ-ijVGmMIFpQIAIMq8xSeZcHKU8GDDnV0psReW-XGEJagTM221P3fqBSzvpQECAyYgASFYIAbsrzRbYpFhbRlZA6ZQKsoxxJWoaeXwh-XUuDLNCIXdIlgg4u5_6Q8O6R0Hg0oDCdtCJLEL0yX_GDLhU5m3HUIE54M", + "clientDataJSON": "eyJ0eXBlIjoid2ViYXV0aG4uY3JlYXRlIiwiY2hhbGxlbmdlIjoibFZlSHpWeFdzcjhNUXhNa1pGMHRpNkZYaGRnTWxqcUt6Z0EtcV96azJNbmlpM2VKNDdWRjk3c3FVb1lrdFZDODVXQVoxdUlBU20tYV9sREZad3NMZnciLCJvcmlnaW4iOiJodHRwczovL3dlYmF1dGhuLmlvIiwiY3Jvc3NPcmlnaW4iOmZhbHNlfQ" + }, + "type": "public-key" + } +)"; + +// Get request +const QString PublicKeyCredentialRequestOptions = R"( + { + "allowCredentials": [ + { + "id": "yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8", + "transports": ["internal"], + "type": "public-key" + } + ], + "challenge": "9z36vTfQTL95Lf7WnZgyte7ohGeF-XRiLxkL-LuGU1zopRmMIUA1LVwzGpyIm1fOBn1QnRa0QH27ADAaJGHysQ", + "rpId": "webauthn.io", + "timeout": 60000, + "userVerification": "required" + } +)"; + +const QJsonArray validPubKeyCredParams = { + QJsonObject({ + {"type", "public-key"}, + {"alg", -7} + }), + QJsonObject({ + {"type", "public-key"}, + {"alg", -257} + }), +}; + +// clang-format on + +void TestPasskeys::initTestCase() +{ + QVERIFY(Crypto::init()); +} + +void TestPasskeys::init() +{ +} + +void TestPasskeys::testBase64WithHexStrings() +{ + const size_t bufSize = 64; + unsigned char buf[bufSize] = {31, 141, 30, 29, 142, 73, 5, 239, 242, 84, 187, 202, 40, 54, 15, 223, + 201, 0, 108, 109, 209, 104, 207, 239, 160, 89, 208, 117, 134, 66, 42, 12, + 31, 66, 163, 248, 221, 88, 241, 164, 6, 55, 182, 97, 186, 243, 162, 162, + 81, 220, 55, 60, 93, 207, 170, 222, 56, 234, 227, 45, 115, 175, 138, 182}; + + auto base64FromArray = browserMessageBuilder()->getBase64FromArray(reinterpret_cast(buf), bufSize); + QCOMPARE(base64FromArray, + QString("H40eHY5JBe_yVLvKKDYP38kAbG3RaM_voFnQdYZCKgwfQqP43VjxpAY3tmG686KiUdw3PF3Pqt446uMtc6-Ktg")); + + auto arrayFromBase64 = browserMessageBuilder()->getArrayFromBase64(base64FromArray); + QCOMPARE(arrayFromBase64.size(), bufSize); + + for (size_t i = 0; i < bufSize; i++) { + QCOMPARE(static_cast(arrayFromBase64.at(i)), buf[i]); + } + + auto randomDataBase64 = browserMessageBuilder()->getRandomBytesAsBase64(24); + QCOMPARE(randomDataBase64.isEmpty(), false); +} + +void TestPasskeys::testDecodeResponseData() +{ + const auto publicKeyCredential = browserMessageBuilder()->getJsonObject(PublicKeyCredential.toUtf8()); + auto response = publicKeyCredential["response"].toObject(); + auto clientDataJson = response["clientDataJSON"].toString(); + auto attestationObject = response["attestationObject"].toString(); + + QVERIFY(!clientDataJson.isEmpty()); + QVERIFY(!attestationObject.isEmpty()); + + // Parse clientDataJSON + auto clientDataByteArray = browserMessageBuilder()->getArrayFromBase64(clientDataJson); + auto clientDataJsonObject = browserMessageBuilder()->getJsonObject(clientDataByteArray); + QCOMPARE(clientDataJsonObject["challenge"], + QString("lVeHzVxWsr8MQxMkZF0ti6FXhdgMljqKzgA-q_zk2Mnii3eJ47VF97sqUoYktVC85WAZ1uIASm-a_lDFZwsLfw")); + QCOMPARE(clientDataJsonObject["origin"], QString("https://webauthn.io")); + QCOMPARE(clientDataJsonObject["type"], QString("webauthn.create")); + + // Parse attestationObject (CBOR decoding needed) + BrowserCbor browserCbor; + auto attestationByteArray = browserMessageBuilder()->getArrayFromBase64(attestationObject); + auto attestationJsonObject = browserCbor.getJsonFromCborData(attestationByteArray); + + // Parse authData + auto authDataJsonObject = attestationJsonObject["authData"].toString(); + auto authDataArray = browserMessageBuilder()->getArrayFromBase64(authDataJsonObject); + QVERIFY(authDataArray.size() >= 37); + + auto authData = browserPasskeys()->parseAuthData(authDataArray); + auto credentialData = authData["credentialData"].toObject(); + auto flags = authData["flags"].toObject(); + auto publicKey = credentialData["publicKey"].toObject(); + + // The attestationObject should include the same ID after decoding with the response root + QCOMPARE(credentialData["credentialId"].toString(), publicKeyCredential["id"].toString()); + QCOMPARE(credentialData["aaguid"].toString(), QString("_bFBsl2ERD6KNUaYwgWlAg")); + QCOMPARE(authData["rpIdHash"].toString(), QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvA")); + QCOMPARE(flags["AT"], true); + QCOMPARE(flags["UP"], true); + QCOMPARE(publicKey["1"], 2); + QCOMPARE(publicKey["3"], -7); + QCOMPARE(publicKey["-1"], 1); + QCOMPARE(publicKey["-2"], QString("BuyvNFtikWFtGVkDplAqyjHElahp5fCH5dS4Ms0Ihd0")); + QCOMPARE(publicKey["-3"], QString("4u5_6Q8O6R0Hg0oDCdtCJLEL0yX_GDLhU5m3HUIE54M")); +} + +void TestPasskeys::testLoadingECPrivateKeyFromPem() +{ +#if BOTAN_VERSION_CODE < BOTAN_VERSION_CODE_FOR(2, 14, 0) + QSKIP("ECDSA Signature is broken on Botan < 2.14.0"); +#endif + const auto publicKeyCredentialRequestOptions = + browserMessageBuilder()->getJsonObject(PublicKeyCredentialRequestOptions.toUtf8()); + const auto privateKeyPem = QString("-----BEGIN PRIVATE KEY-----" + "MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg5DX2R6I37nMSZqCp" + "XfHlE3UeitkGGE03FqGsdfxIBoOhRANCAAQG7K80W2KRYW0ZWQOmUCrKMcSVqGnl" + "8Ifl1LgyzQiF3eLuf+kPDukdB4NKAwnbQiSxC9Ml/xgy4VOZtx1CBOeD" + "-----END PRIVATE KEY-----"); + + const auto authenticatorData = + browserMessageBuilder()->getArrayFromBase64("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvAFAAAAAA"); + const auto clientData = browserMessageBuilder()->getArrayFromBase64( + "eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiOXozNnZUZlFUTDk1TGY3V25aZ3l0ZTdvaEdlRi1YUmlMeGtMLUx1R1Uxem9wUm" + "1NSVVBMUxWd3pHcHlJbTFmT0JuMVFuUmEwUUgyN0FEQWFKR0h5c1EiLCJvcmlnaW4iOiJodHRwczovL3dlYmF1dGhuLmlvIiwiY3Jvc3NPcmln" + "aW4iOmZhbHNlfQ"); + + const auto signature = browserPasskeys()->buildSignature(authenticatorData, clientData, privateKeyPem); + QCOMPARE( + browserMessageBuilder()->getBase64FromArray(signature), + QString("MEYCIQCpbDaYJ4b2ofqWBxfRNbH3XCpsyao7Iui5lVuJRU9HIQIhAPl5moNZgJu5zmurkKK_P900Ct6wd3ahVIqCEqTeeRdE")); +} + +void TestPasskeys::testLoadingRSAPrivateKeyFromPem() +{ + const auto privateKeyPem = QString("-----BEGIN PRIVATE KEY-----" + "MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC5OHjBHQaRfxxX\n4WHRmqq7e7JgT" + "FRs1bd4dIOFAOZnhNE3vAg2IF5VurmeB+9ye9xh7frw8ubrL0cv\nsBWiJfN5CY3SYGRLbGTtBC0fZ6" + "OhhhjwvVM1GW6nVeRU66atzuo4NBfYXJWIYECd\npRBU4+xsDL4vJnn1mj05+v/Tqp6Uo1HrEPx9+Dc" + "oYJD+cw7+OQ83XeGmjD+Dtm5z\nNIyYdweaafVR4PEUlB3CYZuOq9xcpxay3ps2MuYT1zGoiQqk6fla" + "d+0tBWGY8Lwp\nCVulXCv7ljNJ4gxgQtOqWX8j2hC0hBxeqNYDYbrkECid3TsMTEMcV5uaVJXULg4t" + "\nn6UItA11AgMBAAECggEAC3B0WBxHuieIfllOOOC4H9/7S7fDH2f7+W2cFtQ6pqo9\nCq0WBmkYMmw" + "Xx9hpHoq4TnhhHyL9WzPzuKYD0Vx4gvacV/ckkppFScnQKJ2hF+99\nLax1DbU+UImSknfDDFPYbYld" + "b1CD2rpJG1i6X2fRQ6NuK+F7jE05mqcIyE+ZajK+\nIpx8XFmE+tI1EEWsn3CzxMLiTQfXyFt/drM9i" + "GYfcDjYY+q5vzGU3Kxj68gjc96A\nOra79DGOmwX+4zIwo5sSzI3noHnhWPLsaRtE5jWu21Qkb+1BvB" + "jPmbQfN274OQfy\n8/BNNR/NZM1mJm/8x4Mt+h5d946XlIo0AkyYZXY/UQKBgQDYI3G3BCwaYk6MDMe" + "T\nIamRZo25phPtr3if47dhT2xFWJplIt35sW+6KjD6c1Qpb2aGOUh7JPmb57H54OgJ\nmojkS5tv9Y" + "EQZFfgCCZoeuqBx+ArqtJdkXOiNEFS0dpt44I+eO3Do5pnwKRemH+Y\ncqJ/eMH96UMzYDO7WNsyOyo" + "5UQKBgQDbYU0KbGbTrMEV4T9Q41rZ2TnWzs5moqn2\nCRtB8LOdKAZUG7FRsw5KgC1CvFn3Xuk+qphY" + "GUQeJvv7FjxMRUv4BktNpXju6eUj\n3tWHzI2QOkHaeq/XibwbNomfkdyTjtLX2+v8DBHcZnCSlukxc" + "JISyPqZ6CnTjXGE\nEGB+itBI5QKBgQCA+gWttOusguVkZWvivL+3aH9CPXy+5WsR3o1boE13xDu+Bm" + "R3\n0A5gBTVc/t1GLJf9mMlL0vCwvD5UYoWU1YbC1OtYkCQIaBiYM8TXrCGseF2pMTJ/\na4CZVp10k" + "o3J7W2XYgpgKIzHRQnQ+SeLDT0y3BjHMB9N1SaJsah7/RphQQKBgQCr\nL+4yKAzFOJUjQbVqpT8Lp5" + "qeqJofNOdzef+vIOjHxafKkiF4I0UPlZ276cY6ZfGU\nWQKwHGcvMDSI5fz/d0OksySn3mvT4uhPaV8" + "urMv6s7sXhY0Zn/0NLy2NOwDolBar\nIo2vDKwTVEyb1u75CWKzDemfl66ryj++Uhk6JZAKkQKBgQCc" + "NYVe7m648DzD0nu9\n3lgetBTaAS1zZmMs8Cinj44v0ksfqxrRBzBZcO9kCQqiJZ7uCAaVYcQ+PwkY+" + "05C\n+w1+KvdGcKM+8TQYTQM3s2B9IyKExRS/dbQf9F7stJL+k5vbt6OUerwfmbNI9R3t\ngDZ4DEfo" + "pPivs9dnequ9wfaPOw==" + "-----END PRIVATE KEY-----"); + + const auto authenticatorData = + browserMessageBuilder()->getArrayFromBase64("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvAFAAAAAA"); + const auto clientData = browserMessageBuilder()->getArrayFromBase64( + "eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiOXozNnZUZlFUTDk1TGY3V25aZ3l0ZTdvaEdlRi1YUmlMeGtMLUx1R1Uxem9wUm" + "1NSVVBMUxWd3pHcHlJbTFmT0JuMVFuUmEwUUgyN0FEQWFKR0h5c1EiLCJvcmlnaW4iOiJodHRwczovL3dlYmF1dGhuLmlvIiwiY3Jvc3NPcmln" + "aW4iOmZhbHNlfQ"); + + const auto signature = browserPasskeys()->buildSignature(authenticatorData, clientData, privateKeyPem); + QCOMPARE( + browserMessageBuilder()->getBase64FromArray(signature), + QString("MOGw6KrerCgPf2mPig7FOTFIUDXYAU1v2uZj89_NgQTg2UddWnAB3JId3pa4zXghj8CkjjadVOI_LvweJGCEpmPQnRby71yFXnja6j" + "Y3woX2b2klG2fB2alGZHHrVg6yVEmnAii4kYSdmoWxI7SmzLftoZfCJNFPFHujx2Pbr-6dIB02sZhtncetT0cpyWobtj9r7C5dIGfm" + "J5n-LccP-F9gXGqtbN605VrIkC2WNztjdk3dAt5FGM_dlIwSe-vP1dKfIuNqAEbgr2IVZAUFn_ZfzUo-XbXTysksuz9JZfEopJBiUi" + "9tjQDNvrYQFqB6wDPqkZAomkbRCohUb3TzCg")); +} + +void TestPasskeys::testCreatingAttestationObjectWithEC() +{ + // Predefined values for a desired outcome + const auto id = QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8"); + const auto predefinedFirst = QString("BuyvNFtikWFtGVkDplAqyjHElahp5fCH5dS4Ms0Ihd0"); + const auto predefinedSecond = QString("4u5_6Q8O6R0Hg0oDCdtCJLEL0yX_GDLhU5m3HUIE54M"); + + const auto publicKeyCredentialOptions = browserMessageBuilder()->getJsonObject(PublicKeyCredentialOptions.toUtf8()); + QJsonObject credentialCreationOptions; + browserPasskeysClient()->getCredentialCreationOptions( + publicKeyCredentialOptions, QString("https://webauthn.io"), &credentialCreationOptions); + + auto rpIdHash = browserMessageBuilder()->getSha256HashAsBase64(QString("webauthn.io")); + QCOMPARE(rpIdHash, QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvA")); + + TestingVariables testingVariables = {id, predefinedFirst, predefinedSecond}; + const auto alg = browserPasskeys()->getAlgorithmFromPublicKey(credentialCreationOptions); + const auto credentialPrivateKey = + browserPasskeys()->buildCredentialPrivateKey(alg, predefinedFirst, predefinedSecond); + auto result = browserPasskeys()->buildAttestationObject( + credentialCreationOptions, "", id, credentialPrivateKey.cborEncodedPublicKey, testingVariables); + QCOMPARE( + result, + QString("\xA3" + "cfmtdnonegattStmt\xA0hauthDataX\xA4t\xA6\xEA\x92\x13\xC9\x9C/t\xB2$\x92\xB3 \xCF@&*\x94\xC1\xA9P\xA0" + "9\x7F)%\x0B`\x84\x1E\xF0" + "E\x00\x00\x00\x01\x01\x02\x03\x04\x05\x06\x07\b\x01\x02\x03\x04\x05\x06\x07\b\x00 \x8B\xB0\xCA" + "6\x17\xD6\xDE\x01\x11|\xEA\x94\r\xA0R\xC0\x80_\xF3r\xFBr\xB5\x02\x03:" + "\xBAr\x0Fi\x81\xFE\xA5\x01\x02\x03& \x01!X " + "e\xE2\xF2\x1F:cq\xD3G\xEA\xE0\xF7\x1F\xCF\xFA\\\xABO\xF6\x86\x88\x80\t\xAE\x81\x8BT\xB2\x9B\x15\x85~" + "\"X \\\x8E\x1E@\xDB\x97T-\xF8\x9B\xB0\xAD" + "5\xDC\x12^\xC3\x95\x05\xC6\xDF^\x03\xCB\xB4Q\x91\xFF|\xDB\x94\xB7")); + + // Double check that the result can be decoded + BrowserCbor browserCbor; + auto attestationJsonObject = browserCbor.getJsonFromCborData(result); + + // Parse authData + auto authDataJsonObject = attestationJsonObject["authData"].toString(); + auto authDataArray = browserMessageBuilder()->getArrayFromBase64(authDataJsonObject); + QVERIFY(authDataArray.size() >= 37); + + auto authData = browserPasskeys()->parseAuthData(authDataArray); + auto credentialData = authData["credentialData"].toObject(); + auto flags = authData["flags"].toObject(); + auto publicKey = credentialData["publicKey"].toObject(); + + // The attestationObject should include the same ID after decoding with the response root + QCOMPARE(credentialData["credentialId"].toString(), QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8")); + QCOMPARE(authData["rpIdHash"].toString(), QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvA")); + QCOMPARE(flags["AT"], true); + QCOMPARE(flags["UP"], true); + QCOMPARE(publicKey["1"], WebAuthnCoseKeyType::EC2); + QCOMPARE(publicKey["3"], WebAuthnAlgorithms::ES256); + QCOMPARE(publicKey["-1"], 1); + QCOMPARE(publicKey["-2"], predefinedFirst); + QCOMPARE(publicKey["-3"], predefinedSecond); +} + +void TestPasskeys::testCreatingAttestationObjectWithRSA() +{ + // Predefined values for a desired outcome + const auto id = QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8"); + const auto predefinedModulus = QString("vUhOZnyn8yn7U-nuHlsXZ6WDWLuYvevWWnwtoHxDEQq27vlp7yAfeVvAPkcvhxRcwoCEUespoa5" + "5IDbkpp2Ypd6b15KbB4C-_4gM4r2FK9gfXghLPAXsMhstYv4keNFb4ghdlY5oUU3JCqUSMyOpmd" + "HeX-RikLL0wgGv_tLT2DaDiWeyQCAtiDblr6COuTAU2kTpLc3Bn35geV9Iqw4iT8DwBQ-f8vjnI" + "EDANXKUiRPojfy1q7WwEl-zMv6Ke2jFHxf68u82BSy3u9DOQaa24FAHoCm8Yd0n5IazMyoxyttl" + "tRt8un8myVOGxcXMiR9_kQb9pu1RRLQMQLd-icE1Qw"); + const auto predefinedExponent = QString("AQAB"); + + // Force algorithm to RSA + QJsonArray pubKeyCredParams; + pubKeyCredParams.append(QJsonObject({{"type", "public-key"}, {"alg", -257}})); + + const auto publicKeyCredentialOptions = browserMessageBuilder()->getJsonObject(PublicKeyCredentialOptions.toUtf8()); + QJsonObject credentialCreationOptions; + browserPasskeysClient()->getCredentialCreationOptions( + publicKeyCredentialOptions, QString("https://webauthn.io"), &credentialCreationOptions); + credentialCreationOptions["credTypesAndPubKeyAlgs"] = pubKeyCredParams; + + auto rpIdHash = browserMessageBuilder()->getSha256HashAsBase64(QString("webauthn.io")); + QCOMPARE(rpIdHash, QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvA")); + + TestingVariables testingVariables = {id, predefinedModulus, predefinedExponent}; + const auto alg = browserPasskeys()->getAlgorithmFromPublicKey(credentialCreationOptions); + auto credentialPrivateKey = + browserPasskeys()->buildCredentialPrivateKey(alg, predefinedModulus, predefinedExponent); + auto result = browserPasskeys()->buildAttestationObject( + credentialCreationOptions, "", id, credentialPrivateKey.cborEncodedPublicKey, testingVariables); + + // Double check that the result can be decoded + BrowserCbor browserCbor; + auto attestationJsonObject = browserCbor.getJsonFromCborData(result); + + // Parse authData + auto authDataJsonObject = attestationJsonObject["authData"].toString(); + auto authDataArray = browserMessageBuilder()->getArrayFromBase64(authDataJsonObject); + QVERIFY(authDataArray.size() >= 37); + + auto authData = browserPasskeys()->parseAuthData(authDataArray); + auto credentialData = authData["credentialData"].toObject(); + auto flags = authData["flags"].toObject(); + auto publicKey = credentialData["publicKey"].toObject(); + + // The attestationObject should include the same ID after decoding with the response root + QCOMPARE(credentialData["credentialId"].toString(), QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8")); + QCOMPARE(authData["rpIdHash"].toString(), QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvA")); + QCOMPARE(flags["AT"], true); + QCOMPARE(flags["UP"], true); + QCOMPARE(publicKey["1"], WebAuthnCoseKeyType::RSA); + QCOMPARE(publicKey["3"], WebAuthnAlgorithms::RS256); + QCOMPARE(publicKey["-1"], predefinedModulus); + QCOMPARE(publicKey["-2"], predefinedExponent); +} + +void TestPasskeys::testRegister() +{ + // Predefined values for a desired outcome + const auto predefinedId = QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8"); + const auto predefinedX = QString("BuyvNFtikWFtGVkDplAqyjHElahp5fCH5dS4Ms0Ihd0"); + const auto predefinedY = QString("4u5_6Q8O6R0Hg0oDCdtCJLEL0yX_GDLhU5m3HUIE54M"); + const auto origin = QString("https://webauthn.io"); + const auto testDataPublicKey = browserMessageBuilder()->getJsonObject(PublicKeyCredential.toUtf8()); + const auto testDataResponse = testDataPublicKey["response"]; + const auto publicKeyCredentialOptions = browserMessageBuilder()->getJsonObject(PublicKeyCredentialOptions.toUtf8()); + + QJsonObject credentialCreationOptions; + const auto creationResult = browserPasskeysClient()->getCredentialCreationOptions( + publicKeyCredentialOptions, origin, &credentialCreationOptions); + QVERIFY(creationResult == 0); + + TestingVariables testingVariables = {predefinedId, predefinedX, predefinedY}; + auto result = browserPasskeys()->buildRegisterPublicKeyCredential(credentialCreationOptions, testingVariables); + auto publicKeyCredential = result.response; + QCOMPARE(publicKeyCredential["type"], QString("public-key")); + QCOMPARE(publicKeyCredential["authenticatorAttachment"], QString("platform")); + QCOMPARE(publicKeyCredential["id"], QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8")); + + auto response = publicKeyCredential["response"].toObject(); + auto attestationObject = response["attestationObject"].toString(); + auto clientDataJson = response["clientDataJSON"].toString(); + QCOMPARE(attestationObject, testDataResponse["attestationObject"].toString()); + + // Parse clientDataJSON + auto clientDataByteArray = browserMessageBuilder()->getArrayFromBase64(clientDataJson); + auto clientDataJsonObject = browserMessageBuilder()->getJsonObject(clientDataByteArray); + QCOMPARE(clientDataJsonObject["challenge"], + QString("lVeHzVxWsr8MQxMkZF0ti6FXhdgMljqKzgA-q_zk2Mnii3eJ47VF97sqUoYktVC85WAZ1uIASm-a_lDFZwsLfw")); + QCOMPARE(clientDataJsonObject["origin"], origin); + QCOMPARE(clientDataJsonObject["type"], QString("webauthn.create")); +} + +void TestPasskeys::testGet() +{ +#if BOTAN_VERSION_CODE < BOTAN_VERSION_CODE_FOR(2, 14, 0) + QSKIP("ECDSA Signature is broken on Botan < 2.14.0"); +#endif + const auto privateKeyPem = QString("-----BEGIN PRIVATE KEY-----" + "MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg5DX2R6I37nMSZqCp" + "XfHlE3UeitkGGE03FqGsdfxIBoOhRANCAAQG7K80W2KRYW0ZWQOmUCrKMcSVqGnl" + "8Ifl1LgyzQiF3eLuf+kPDukdB4NKAwnbQiSxC9Ml/xgy4VOZtx1CBOeD" + "-----END PRIVATE KEY-----"); + const auto origin = QString("https://webauthn.io"); + const auto id = QString("yrzFJ5lwcpTwYMOdXSmxF5b5cYQlqBMzbbU_d-oFLO8"); + const auto publicKeyCredentialRequestOptions = + browserMessageBuilder()->getJsonObject(PublicKeyCredentialRequestOptions.toUtf8()); + + QJsonObject assertionOptions; + const auto assertionResult = + browserPasskeysClient()->getAssertionOptions(publicKeyCredentialRequestOptions, origin, &assertionOptions); + QVERIFY(assertionResult == 0); + + auto publicKeyCredential = browserPasskeys()->buildGetPublicKeyCredential(assertionOptions, id, {}, privateKeyPem); + QVERIFY(!publicKeyCredential.isEmpty()); + QCOMPARE(publicKeyCredential["id"].toString(), id); + + auto response = publicKeyCredential["response"].toObject(); + QCOMPARE(response["authenticatorData"].toString(), QString("dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvAFAAAAAA")); + QCOMPARE(response["clientDataJSON"].toString(), + QString("eyJjaGFsbGVuZ2UiOiI5ejM2dlRmUVRMOTVMZjdXblpneXRlN29oR2VGLVhSaUx4a0wtTHVHVTF6b3BSbU1JVUExTFZ3ekdwe" + "UltMWZPQm4xUW5SYTBRSDI3QURBYUpHSHlzUSIsImNyb3NzT3JpZ2luIjpmYWxzZSwib3JpZ2luIjoiaHR0cHM6Ly93ZWJhdX" + "Robi5pbyIsInR5cGUiOiJ3ZWJhdXRobi5nZXQifQ")); + QCOMPARE( + response["signature"].toString(), + QString("MEUCIHFv0lOOGGloi_XoH5s3QDSs__8yAp9ZTMEjNiacMpOxAiEA04LAfO6TE7j12XNxd3zHQpn4kZN82jQFPntPiPBSD5c")); + + auto clientDataJson = response["clientDataJSON"].toString(); + auto clientDataByteArray = browserMessageBuilder()->getArrayFromBase64(clientDataJson); + auto clientDataJsonObject = browserMessageBuilder()->getJsonObject(clientDataByteArray); + QCOMPARE(clientDataJsonObject["challenge"].toString(), publicKeyCredentialRequestOptions["challenge"].toString()); +} + +void TestPasskeys::testExtensions() +{ + auto extensions = QJsonObject({{"credProps", true}, {"uvm", true}}); + auto result = passkeyUtils()->buildExtensionData(extensions); + + BrowserCbor cbor; + auto extensionJson = cbor.getJsonFromCborData(result.extensionData); + auto uvmArray = result.extensionObject["uvm"].toArray(); + QCOMPARE(result.extensionObject["credProps"].toObject()["rk"].toBool(), true); + QCOMPARE(uvmArray.size(), 1); + QCOMPARE(uvmArray.first().toArray().size(), 3); + + auto partial = QJsonObject({{"props", true}, {"uvm", true}}); + auto faulty = QJsonObject({{"uvx", true}}); + auto partialData = passkeyUtils()->buildExtensionData(partial); + auto faultyData = passkeyUtils()->buildExtensionData(faulty); + + auto partialJson = cbor.getJsonFromCborData(partialData.extensionData); + QCOMPARE(partialJson["uvm"].toArray().size(), 1); + + auto faultyJson = cbor.getJsonFromCborData(faultyData.extensionData); + QCOMPARE(faultyJson.size(), 0); +} + +void TestPasskeys::testParseFlags() +{ + auto registerResult = browserPasskeys()->parseFlags("\x45"); + QCOMPARE(registerResult["ED"], false); + QCOMPARE(registerResult["AT"], true); + QCOMPARE(registerResult["BS"], false); + QCOMPARE(registerResult["BE"], false); + QCOMPARE(registerResult["UV"], true); + QCOMPARE(registerResult["UP"], true); + + auto getResult = browserPasskeys()->parseFlags("\x05"); // Only UP and UV + QCOMPARE(getResult["ED"], false); + QCOMPARE(getResult["AT"], false); + QCOMPARE(getResult["BS"], false); + QCOMPARE(getResult["BE"], false); + QCOMPARE(getResult["UV"], true); + QCOMPARE(getResult["UP"], true); +} + +void TestPasskeys::testSetFlags() +{ + auto registerJson = + QJsonObject({{"ED", false}, {"AT", true}, {"BS", false}, {"BE", false}, {"UV", true}, {"UP", true}}); + auto registerResult = browserPasskeys()->setFlagsFromJson(registerJson); + QCOMPARE(registerResult, 0x45); + + auto getJson = + QJsonObject({{"ED", false}, {"AT", false}, {"BS", false}, {"BE", false}, {"UV", true}, {"UP", true}}); + auto getResult = browserPasskeys()->setFlagsFromJson(getJson); + QCOMPARE(getResult, 0x05); + + // With "discouraged", so UV is false + auto discouragedJson = + QJsonObject({{"ED", false}, {"AT", false}, {"BS", false}, {"BE", false}, {"UV", false}, {"UP", true}}); + auto discouragedResult = browserPasskeys()->setFlagsFromJson(discouragedJson); + QCOMPARE(discouragedResult, 0x01); +} + +void TestPasskeys::testEntry() +{ + Database db; + auto* root = db.rootGroup(); + root->setUuid(QUuid::createUuid()); + + auto* group1 = new Group(); + group1->setUuid(QUuid::createUuid()); + group1->setParent(root); + + auto* entry = new Entry(); + entry->setGroup(root); + + browserService()->addPasskeyToEntry(entry, + QString("example.com"), + QString("example.com"), + QString("username"), + QString("userId"), + QString("userHandle"), + QString("privateKey")); + + QVERIFY(entry->hasPasskey()); +} + +void TestPasskeys::testIsDomain() +{ + QVERIFY(passkeyUtils()->isDomain("test.example.com")); + QVERIFY(passkeyUtils()->isDomain("example.com")); + + QVERIFY(!passkeyUtils()->isDomain("exa[mple.org")); + QVERIFY(!passkeyUtils()->isDomain("example.com.")); + QVERIFY(!passkeyUtils()->isDomain("127.0.0.1")); + QVERIFY(!passkeyUtils()->isDomain("127.0.0.1.")); +} + +// List from https://html.spec.whatwg.org/multipage/browsers.html#is-a-registrable-domain-suffix-of-or-is-equal-to +void TestPasskeys::testRegistrableDomainSuffix() +{ + QVERIFY(passkeyUtils()->isRegistrableDomainSuffix(QString("example.com"), QString("example.com"))); + QVERIFY(!passkeyUtils()->isRegistrableDomainSuffix(QString("example.com"), QString("example.com."))); + QVERIFY(!passkeyUtils()->isRegistrableDomainSuffix(QString("example.com."), QString("example.com"))); + QVERIFY(passkeyUtils()->isRegistrableDomainSuffix(QString("example.com"), QString("www.example.com"))); + QVERIFY(!passkeyUtils()->isRegistrableDomainSuffix(QString("com"), QString("example.com"))); + QVERIFY(passkeyUtils()->isRegistrableDomainSuffix(QString("example"), QString("example"))); + QVERIFY( + !passkeyUtils()->isRegistrableDomainSuffix(QString("s3.amazonaws.com"), QString("example.s3.amazonaws.com"))); + QVERIFY(!passkeyUtils()->isRegistrableDomainSuffix(QString("example.compute.amazonaws.com"), + QString("www.example.compute.amazonaws.com"))); + QVERIFY(!passkeyUtils()->isRegistrableDomainSuffix(QString("amazonaws.com"), + QString("www.example.compute.amazonaws.com"))); + QVERIFY(passkeyUtils()->isRegistrableDomainSuffix(QString("amazonaws.com"), QString("test.amazonaws.com"))); +} + +void TestPasskeys::testRpIdValidation() +{ + QString result; + auto allowedIdentical = passkeyUtils()->validateRpId(QString("example.com"), QString("example.com"), &result); + QCOMPARE(result, QString("example.com")); + QVERIFY(allowedIdentical == PASSKEYS_SUCCESS); + + result.clear(); + auto allowedSubdomain = passkeyUtils()->validateRpId(QString("example.com"), QString("www.example.com"), &result); + QCOMPARE(result, QString("example.com")); + QVERIFY(allowedSubdomain == PASSKEYS_SUCCESS); + + result.clear(); + QJsonValue emptyValue; + auto emptyRpId = passkeyUtils()->validateRpId(emptyValue, QString("example.com"), &result); + QCOMPARE(result, QString("example.com")); + QVERIFY(emptyRpId == PASSKEYS_SUCCESS); + + result.clear(); + auto ipRpId = passkeyUtils()->validateRpId(QString("127.0.0.1"), QString("example.com"), &result); + QCOMPARE(result, QString("")); + QVERIFY(ipRpId == ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); + + result.clear(); + auto emptyOrigin = passkeyUtils()->validateRpId(QString("example.com"), QString(""), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(emptyOrigin, ERROR_PASSKEYS_ORIGIN_NOT_ALLOWED); + + result.clear(); + auto ipOrigin = passkeyUtils()->validateRpId(QString("example.com"), QString("127.0.0.1"), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(ipOrigin, ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); + + result.clear(); + auto invalidRpId = passkeyUtils()->validateRpId(QString(".com"), QString("example.com"), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(invalidRpId, ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); + + result.clear(); + auto malformedOrigin = passkeyUtils()->validateRpId(QString("example.com."), QString("example.com."), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(malformedOrigin, ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); + + result.clear(); + auto malformed = passkeyUtils()->validateRpId(QString("...com."), QString("example...com"), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(malformed, ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); + + result.clear(); + auto differentDomain = passkeyUtils()->validateRpId(QString("another.com"), QString("example.com"), &result); + QVERIFY(result.isEmpty()); + QCOMPARE(differentDomain, ERROR_PASSKEYS_DOMAIN_RPID_MISMATCH); +} + +void TestPasskeys::testParseAttestation() +{ + QVERIFY(passkeyUtils()->parseAttestation(QString("")) == QString("none")); + QVERIFY(passkeyUtils()->parseAttestation(QString("direct")) == QString("direct")); + QVERIFY(passkeyUtils()->parseAttestation(QString("none")) == QString("none")); + QVERIFY(passkeyUtils()->parseAttestation(QString("indirect")) == QString("none")); + QVERIFY(passkeyUtils()->parseAttestation(QString("invalidvalue")) == QString("none")); +} + +void TestPasskeys::testParseCredentialTypes() +{ + const QJsonArray invalidPubKeyCredParams = { + QJsonObject({{"type", "private-key"}, {"alg", -7}}), + QJsonObject({{"type", "private-key"}, {"alg", -257}}), + }; + + const QJsonArray partiallyInvalidPubKeyCredParams = { + QJsonObject({{"type", "private-key"}, {"alg", -7}}), + QJsonObject({{"type", "public-key"}, {"alg", -257}}), + }; + + auto validResponse = passkeyUtils()->parseCredentialTypes(validPubKeyCredParams); + QVERIFY(validResponse == validPubKeyCredParams); + + auto invalidResponse = passkeyUtils()->parseCredentialTypes(invalidPubKeyCredParams); + QVERIFY(invalidResponse.isEmpty()); + + auto partiallyInvalidResponse = passkeyUtils()->parseCredentialTypes(partiallyInvalidPubKeyCredParams); + QVERIFY(partiallyInvalidResponse != validPubKeyCredParams); + QVERIFY(partiallyInvalidResponse.size() == 1); + QVERIFY(partiallyInvalidResponse.first()["type"].toString() == QString("public-key")); + QVERIFY(partiallyInvalidResponse.first()["alg"].toInt() == -257); + + auto emptyResponse = passkeyUtils()->parseCredentialTypes({}); + QVERIFY(emptyResponse == validPubKeyCredParams); + + const auto publicKeyOptions = browserMessageBuilder()->getJsonObject(PublicKeyCredentialOptions.toUtf8()); + auto responseFromPublicKey = passkeyUtils()->parseCredentialTypes(publicKeyOptions["pubKeyCredParams"].toArray()); + QVERIFY(responseFromPublicKey == validPubKeyCredParams); +} + +void TestPasskeys::testIsAuthenticatorSelectionValid() +{ + QVERIFY(passkeyUtils()->isAuthenticatorSelectionValid({})); + QVERIFY(passkeyUtils()->isAuthenticatorSelectionValid(QJsonObject({{"authenticatorAttachment", "platform"}}))); + QVERIFY( + passkeyUtils()->isAuthenticatorSelectionValid(QJsonObject({{"authenticatorAttachment", "cross-platform"}}))); + QVERIFY(!passkeyUtils()->isAuthenticatorSelectionValid(QJsonObject({{"authenticatorAttachment", "something"}}))); +} + +void TestPasskeys::testIsResidentKeyRequired() +{ + QVERIFY(passkeyUtils()->isResidentKeyRequired(QJsonObject({{"residentKey", "required"}}))); + QVERIFY(passkeyUtils()->isResidentKeyRequired(QJsonObject({{"residentKey", "preferred"}}))); + QVERIFY(!passkeyUtils()->isResidentKeyRequired(QJsonObject({{"residentKey", "discouraged"}}))); + QVERIFY(passkeyUtils()->isResidentKeyRequired(QJsonObject({{"requireResidentKey", true}}))); +} + +void TestPasskeys::testIsUserVerificationRequired() +{ + QVERIFY(passkeyUtils()->isUserVerificationRequired(QJsonObject({{"userVerification", "required"}}))); + QVERIFY(passkeyUtils()->isUserVerificationRequired(QJsonObject({{"userVerification", "preferred"}}))); + QVERIFY(!passkeyUtils()->isUserVerificationRequired(QJsonObject({{"userVerification", "discouraged"}}))); +} + +void TestPasskeys::testAllowLocalhostWithPasskeys() +{ + QVERIFY(passkeyUtils()->isOriginAllowedWithLocalhost(false, "https://example.com")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(false, "http://example.com")); + QVERIFY(passkeyUtils()->isOriginAllowedWithLocalhost(true, "https://example.com")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(true, "http://example.com")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(false, "http://localhost")); + QVERIFY(passkeyUtils()->isOriginAllowedWithLocalhost(true, "http://localhost")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(true, "http://localhosting")); + QVERIFY(passkeyUtils()->isOriginAllowedWithLocalhost(true, "http://test.localhost")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(false, "http://test.localhost")); + QVERIFY(!passkeyUtils()->isOriginAllowedWithLocalhost(true, "http://localhost.example.com")); +} diff --git a/tests/TestPasskeys.h b/tests/TestPasskeys.h new file mode 100644 index 000000000..b1c8dbc4e --- /dev/null +++ b/tests/TestPasskeys.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2024 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 . + */ + +#ifndef KEEPASSXC_TESTPASSKEYS_H +#define KEEPASSXC_TESTPASSKEYS_H + +#include "browser/BrowserPasskeys.h" +#include +#include + +class TestPasskeys : public QObject +{ + Q_OBJECT + +private slots: + void initTestCase(); + void init(); + + void testBase64WithHexStrings(); + void testDecodeResponseData(); + + void testLoadingECPrivateKeyFromPem(); + void testLoadingRSAPrivateKeyFromPem(); + void testCreatingAttestationObjectWithEC(); + void testCreatingAttestationObjectWithRSA(); + void testRegister(); + void testGet(); + + void testExtensions(); + void testParseFlags(); + void testSetFlags(); + + void testEntry(); + void testIsDomain(); + void testRegistrableDomainSuffix(); + void testRpIdValidation(); + void testParseAttestation(); + void testParseCredentialTypes(); + void testIsAuthenticatorSelectionValid(); + void testIsResidentKeyRequired(); + void testIsUserVerificationRequired(); + void testAllowLocalhostWithPasskeys(); +}; +#endif // KEEPASSXC_TESTPASSKEYS_H diff --git a/tests/TestPassphraseGenerator.cpp b/tests/TestPassphraseGenerator.cpp index 9b1ed8ada..b27922a60 100644 --- a/tests/TestPassphraseGenerator.cpp +++ b/tests/TestPassphraseGenerator.cpp @@ -16,6 +16,7 @@ */ #include "TestPassphraseGenerator.h" +#include "config-keepassx-tests.h" #include "core/PassphraseGenerator.h" #include "crypto/Crypto.h" @@ -49,6 +50,21 @@ void TestPassphraseGenerator::testWordCase() generator.setWordCase(PassphraseGenerator::TITLECASE); passphrase = generator.generatePassphrase(); - QRegularExpression regex("^([A-Z][a-z]* ?)+$"); - QVERIFY(regex.match(passphrase).hasMatch()); + QRegularExpression regex("^(?:[A-Z][a-z-]* )*[A-Z][a-z-]*$"); + QVERIFY2(regex.match(passphrase).hasMatch(), qPrintable(passphrase)); +} + +void TestPassphraseGenerator::testUniqueEntriesInWordlist() +{ + PassphraseGenerator generator; + // set the limit down, so we don;t have to do a very large file + generator.m_minimum_wordlist_length = 4; + + // link to bad wordlist + QString path = QString(KEEPASSX_TEST_DATA_DIR).append("/wordlists/bad_wordlist_with_duplicate_entries.wordlist"); + + // setting will work, it creates the warning however, and isValid will fail + generator.setWordList(path); + // so this fails + QVERIFY(!generator.isValid()); } diff --git a/tests/TestPassphraseGenerator.h b/tests/TestPassphraseGenerator.h index ca0fd0664..a4d86055a 100644 --- a/tests/TestPassphraseGenerator.h +++ b/tests/TestPassphraseGenerator.h @@ -27,6 +27,7 @@ class TestPassphraseGenerator : public QObject private slots: void initTestCase(); void testWordCase(); + void testUniqueEntriesInWordlist(); }; #endif // KEEPASSXC_TESTPASSPHRASEGENERATOR_H diff --git a/tests/TestSSHAgent.cpp b/tests/TestSSHAgent.cpp index 3acf3352a..986def7b8 100644 --- a/tests/TestSSHAgent.cpp +++ b/tests/TestSSHAgent.cpp @@ -20,6 +20,7 @@ #include "core/Config.h" #include "crypto/Crypto.h" #include "sshagent/KeeAgentSettings.h" +#include "sshagent/OpenSSHKeyGen.h" #include "sshagent/SSHAgent.h" #include @@ -29,20 +30,21 @@ QTEST_GUILESS_MAIN(TestSSHAgent) void TestSSHAgent::initTestCase() { QVERIFY(Crypto::init()); - Config::createTempFileInstance(); - m_agentSocketFile.setAutoRemove(true); - QVERIFY(m_agentSocketFile.open()); + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); - m_agentSocketFileName = m_agentSocketFile.fileName(); + // default config must not enable agent + SSHAgent agent; + QVERIFY(!agent.isEnabled()); + + m_agentSocketFile.reset(new TemporaryFile(this)); + + m_agentSocketFileName = m_agentSocketFile->fileName(); QVERIFY(!m_agentSocketFileName.isEmpty()); - // let ssh-agent re-create it as a socket - QVERIFY(m_agentSocketFile.remove()); - QStringList arguments; - arguments << "-D" - << "-a" << m_agentSocketFileName; + arguments << "-D" << "-a" << m_agentSocketFileName; QElapsedTimer timer; timer.start(); @@ -56,7 +58,7 @@ void TestSSHAgent::initTestCase() QSKIP("ssh-agent could not be started"); } - qDebug() << "ssh-agent started as pid" << m_agentProcess.pid(); + qDebug() << "ssh-agent started as pid" << m_agentProcess.processId(); // we need to wait for the agent to open the socket before going into real tests QFileInfo socketFileInfo(m_agentSocketFileName); @@ -85,13 +87,18 @@ void TestSSHAgent::initTestCase() QVERIFY(m_key.parsePKCS1PEM(keyData)); } +void TestSSHAgent::init() +{ + // Reset the config state + SSHAgent agent; + agent.setEnabled(false); + QString empty; + agent.setAuthSockOverride(empty); +} + void TestSSHAgent::testConfiguration() { SSHAgent agent; - - // default config must not enable agent - QVERIFY(!agent.isEnabled()); - agent.setEnabled(true); QVERIFY(agent.isEnabled()); @@ -224,13 +231,71 @@ void TestSSHAgent::testToOpenSSHKey() QVERIFY(!key.publicKey().isEmpty()); } +void TestSSHAgent::testKeyGenRSA() +{ + SSHAgent agent; + agent.setEnabled(true); + agent.setAuthSockOverride(m_agentSocketFileName); + + QVERIFY(agent.isAgentRunning()); + + OpenSSHKey key; + KeeAgentSettings settings; + bool keyInAgent; + + QVERIFY(OpenSSHKeyGen::generateRSA(key, 2048)); + + QVERIFY(agent.addIdentity(key, settings, m_uuid)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && keyInAgent); + QVERIFY(agent.removeIdentity(key)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && !keyInAgent); +} + +void TestSSHAgent::testKeyGenECDSA() +{ + SSHAgent agent; + agent.setEnabled(true); + agent.setAuthSockOverride(m_agentSocketFileName); + + QVERIFY(agent.isAgentRunning()); + + OpenSSHKey key; + KeeAgentSettings settings; + bool keyInAgent; + + QVERIFY(OpenSSHKeyGen::generateECDSA(key, 256)); + + QVERIFY(agent.addIdentity(key, settings, m_uuid)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && keyInAgent); + QVERIFY(agent.removeIdentity(key)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && !keyInAgent); +} + +void TestSSHAgent::testKeyGenEd25519() +{ + SSHAgent agent; + agent.setEnabled(true); + agent.setAuthSockOverride(m_agentSocketFileName); + + QVERIFY(agent.isAgentRunning()); + + OpenSSHKey key; + KeeAgentSettings settings; + bool keyInAgent; + + QVERIFY(OpenSSHKeyGen::generateEd25519(key)); + + QVERIFY(agent.addIdentity(key, settings, m_uuid)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && keyInAgent); + QVERIFY(agent.removeIdentity(key)); + QVERIFY(agent.checkIdentity(key, keyInAgent) && !keyInAgent); +} + void TestSSHAgent::cleanupTestCase() { if (m_agentProcess.state() != QProcess::NotRunning) { - qDebug() << "Killing ssh-agent pid" << m_agentProcess.pid(); + qDebug() << "Killing ssh-agent pid" << m_agentProcess.processId(); m_agentProcess.terminate(); m_agentProcess.waitForFinished(); } - - m_agentSocketFile.remove(); } diff --git a/tests/TestSSHAgent.h b/tests/TestSSHAgent.h index 12c115b23..db06fd806 100644 --- a/tests/TestSSHAgent.h +++ b/tests/TestSSHAgent.h @@ -19,8 +19,8 @@ #define TESTSSHAGENT_H #include "sshagent/OpenSSHKey.h" +#include "util/TemporaryFile.h" #include -#include #include class TestSSHAgent : public QObject @@ -29,16 +29,20 @@ class TestSSHAgent : public QObject private slots: void initTestCase(); + void init(); void testConfiguration(); void testIdentity(); void testRemoveOnClose(); void testLifetimeConstraint(); void testConfirmConstraint(); void testToOpenSSHKey(); + void testKeyGenRSA(); + void testKeyGenECDSA(); + void testKeyGenEd25519(); void cleanupTestCase(); private: - QTemporaryFile m_agentSocketFile; + QScopedPointer m_agentSocketFile; QString m_agentSocketFileName; QProcess m_agentProcess; OpenSSHKey m_key; diff --git a/tests/TestSharing.cpp b/tests/TestSharing.cpp index 14a72b142..0b5414ea8 100644 --- a/tests/TestSharing.cpp +++ b/tests/TestSharing.cpp @@ -117,12 +117,9 @@ void TestSharing::testReferenceSerialization_data() QTest::addColumn("path"); QTest::addColumn("uuid"); QTest::addColumn("type"); - QTest::newRow("1") << "Password" - << "/some/path" << QUuid::createUuid() << int(KeeShareSettings::Inactive); - QTest::newRow("2") << "" - << "" << QUuid() << int(KeeShareSettings::SynchronizeWith); - QTest::newRow("3") << "" - << "/some/path" << QUuid() << int(KeeShareSettings::ExportTo); + QTest::newRow("1") << "Password" << "/some/path" << QUuid::createUuid() << int(KeeShareSettings::Inactive); + QTest::newRow("2") << "" << "" << QUuid() << int(KeeShareSettings::SynchronizeWith); + QTest::newRow("3") << "" << "/some/path" << QUuid() << int(KeeShareSettings::ExportTo); } void TestSharing::testSettingsSerialization() diff --git a/tests/TestTools.cpp b/tests/TestTools.cpp index 438606c7e..27a468929 100644 --- a/tests/TestTools.cpp +++ b/tests/TestTools.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -38,7 +38,7 @@ void TestTools::testHumanReadableFileSize() constexpr auto kibibyte = 1024u; using namespace Tools; - QCOMPARE(createDecimal("1", "00", "B"), humanReadableFileSize(1)); + QCOMPARE(QString("1 B"), humanReadableFileSize(1)); QCOMPARE(createDecimal("1", "00", "KiB"), humanReadableFileSize(kibibyte)); QCOMPARE(createDecimal("1", "00", "MiB"), humanReadableFileSize(kibibyte * kibibyte)); QCOMPARE(createDecimal("1", "00", "GiB"), humanReadableFileSize(kibibyte * kibibyte * kibibyte)); @@ -68,6 +68,14 @@ void TestTools::testIsBase64() QVERIFY(!Tools::isBase64(QByteArray("123"))); } +void TestTools::testIsAsciiString() +{ + QVERIFY(Tools::isAsciiString("abcd9876DEFGhijkMNO")); + QVERIFY(Tools::isAsciiString("-!&5a?`~")); + QVERIFY(!Tools::isAsciiString("Štest")); + QVERIFY(!Tools::isAsciiString("Ãß")); +} + void TestTools::testEnvSubstitute() { QProcessEnvironment environment; @@ -142,18 +150,22 @@ void TestTools::testBackupFilePatternSubstitution_data() QTest::newRow("Default time pattern (empty formatter)") << "{TIME:}" << DEFAULT_DB_FILE_PATH << DEFAULT_FORMATTED_TIME; QTest::newRow("Custom time pattern") << "{TIME:dd-ss}" << DEFAULT_DB_FILE_PATH << NOW.toString("dd-ss"); + QTest::newRow("Time pattern twice") << "{TIME:yy} {TIME}" << DEFAULT_DB_FILE_PATH + << NOW.toString("yy") + QStringLiteral(" ") + DEFAULT_FORMATTED_TIME; + QTest::newRow("Complex custom time pattern") + << "./{TIME:yy}/{DB_FILENAME}_{TIME:yyyyMMdd_HHmmss}.old.kdbx" << DEFAULT_DB_FILE_PATH + << QStringLiteral("./") + NOW.toString("yy") + QStringLiteral("/") + DEFAULT_DB_FILE_NAME + QStringLiteral("_") + + NOW.toString("yyyyMMdd_HHmmss") + QStringLiteral(".old.kdbx"); QTest::newRow("Invalid custom time pattern") << "{TIME:dd/-ss}" << DEFAULT_DB_FILE_PATH << NOW.toString("dd/-ss"); QTest::newRow("Recursive substitution") << "{TIME:'{TIME}'}" << DEFAULT_DB_FILE_PATH << DEFAULT_FORMATTED_TIME; QTest::newRow("{DB_FILENAME} substitution") << "some {DB_FILENAME} thing" << DEFAULT_DB_FILE_PATH << QStringLiteral("some ") + DEFAULT_DB_FILE_NAME + QStringLiteral(" thing"); - QTest::newRow("{DB_FILENAME} substitution with multiple extensions") << "some {DB_FILENAME} thing" - << "/tmp/KeePassXC.kdbx.ext" - << "some KeePassXC.kdbx thing"; + QTest::newRow("{DB_FILENAME} substitution with multiple extensions") + << "some {DB_FILENAME} thing" << "/tmp/KeePassXC.kdbx.ext" << "some KeePassXC.kdbx thing"; // Not relevant right now, added test anyway - QTest::newRow("There should be no substitution loops") << "{DB_FILENAME}" - << "{TIME:'{DB_FILENAME}'}.ext" - << "{DB_FILENAME}"; + QTest::newRow("There should be no substitution loops") + << "{DB_FILENAME}" << "{TIME:'{DB_FILENAME}'}.ext" << "{TIME:'{DB_FILENAME}'}"; } void TestTools::testBackupFilePatternSubstitution() @@ -165,6 +177,34 @@ void TestTools::testBackupFilePatternSubstitution() QCOMPARE(Tools::substituteBackupFilePath(pattern, dbFilePath), expectedSubstitution); } +void TestTools::testEscapeRegex_data() +{ + QTest::addColumn("input"); + QTest::addColumn("expected"); + + QString all_regular_characters = "0123456789"; + for (char c = 'a'; c != 'z'; ++c) { + all_regular_characters += QChar::fromLatin1(c); + } + for (char c = 'A'; c != 'Z'; ++c) { + all_regular_characters += QChar::fromLatin1(c); + } + + QTest::newRow("Regular characters should not be escaped") << all_regular_characters << all_regular_characters; + QTest::newRow("Special characters should be escaped") + << R"(.^$*+-?()[]{}|\)" << R"(\.\^\$\*\+\-\?\(\)\[\]\{\}\|\\)"; + QTest::newRow("Null character") << QString::fromLatin1("ab\0c", 4) << "ab\\0c"; +} + +void TestTools::testEscapeRegex() +{ + QFETCH(QString, input); + QFETCH(QString, expected); + + auto actual = Tools::escapeRegex(input); + QCOMPARE(actual, expected); +} + void TestTools::testConvertToRegex() { QFETCH(QString, input); @@ -185,16 +225,117 @@ void TestTools::testConvertToRegex_data() QTest::newRow("No Options") << input << static_cast(Tools::RegexConvertOpts::DEFAULT) << QString(R"(te|st*t?[5]^(test);',.)"); + // Escape regex + QTest::newRow("Escape Regex") << input << static_cast(Tools::RegexConvertOpts::ESCAPE_REGEX) + << Tools::escapeRegex(input); + QTest::newRow("Escape Regex and exact match") + << input << static_cast(Tools::RegexConvertOpts::ESCAPE_REGEX | Tools::RegexConvertOpts::EXACT_MATCH) + << "^(?:" + Tools::escapeRegex(input) + ")$"; + + // Exact match does not escape the pattern QTest::newRow("Exact Match") << input << static_cast(Tools::RegexConvertOpts::EXACT_MATCH) - << QString(R"(^te|st*t?[5]^(test);',.$)"); + << QString(R"(^(?:te|st*t?[5]^(test);',.)$)"); + + // Exact match with improper regex + QTest::newRow("Exact Match") << ")av(" << static_cast(Tools::RegexConvertOpts::EXACT_MATCH) + << QString(R"(^(?:)av()$)"); + QTest::newRow("Exact Match & Wildcard") << input << static_cast(Tools::RegexConvertOpts::EXACT_MATCH | Tools::RegexConvertOpts::WILDCARD_ALL) - << QString(R"(^te|st.*t.\[5\]\^\(test\);'\,\.$)"); + << QString(R"(^(?:te|st.*t.\[5\]\^\(test\)\;\'\,\.)$)"); QTest::newRow("Wildcard Single Match") << input << static_cast(Tools::RegexConvertOpts::WILDCARD_SINGLE_MATCH) - << QString(R"(te\|st\*t.\[5\]\^\(test\);'\,\.)"); + << QString(R"(te\|st\*t.\[5\]\^\(test\)\;\'\,\.)"); QTest::newRow("Wildcard OR") << input << static_cast(Tools::RegexConvertOpts::WILDCARD_LOGICAL_OR) - << QString(R"(te|st\*t\?\[5\]\^\(test\);'\,\.)"); + << QString(R"(te|st\*t\?\[5\]\^\(test\)\;\'\,\.)"); QTest::newRow("Wildcard Unlimited Match") << input << static_cast(Tools::RegexConvertOpts::WILDCARD_UNLIMITED_MATCH) - << QString(R"(te\|st.*t\?\[5\]\^\(test\);'\,\.)"); + << QString(R"(te\|st.*t\?\[5\]\^\(test\)\;\'\,\.)"); +} + +void TestTools::testArrayContainsValues() +{ + const auto values = QStringList() << "first" << "second" << "third"; + + // One missing + const auto result1 = + Tools::getMissingValuesFromList(values, QStringList() << "first" << "second" << "none"); + QCOMPARE(result1.length(), 1); + QCOMPARE(result1.first(), QString("none")); + + // All found + const auto result2 = + Tools::getMissingValuesFromList(values, QStringList() << "first" << "second" << "third"); + QCOMPARE(result2.length(), 0); + + // None are found + const auto numberValues = QList({1, 2, 3, 4, 5}); + const auto result3 = Tools::getMissingValuesFromList(numberValues, QList({6, 7, 8})); + QCOMPARE(result3.length(), 3); +} + +void TestTools::testMimeTypes() +{ + const QStringList TextMimeTypes = { + "text/plain", // Plain text + "text/html", // HTML documents + "text/css", // CSS stylesheets + "text/javascript", // JavaScript files + "text/markdown", // Markdown documents + "text/xml", // XML documents + "text/rtf", // Rich Text Format + "text/vcard", // vCard files + "text/tab-separated-values", // Tab-separated values + "application/json", // JSON data + "application/xml", // XML data + "application/soap+xml", // SOAP messages + "application/x-yaml", // YAML data + "application/protobuf", // Protocol Buffers + }; + + const QStringList ImageMimeTypes = { + "image/jpeg", // JPEG images + "image/png", // PNG images + "image/gif", // GIF images + "image/bmp", // BMP images + "image/webp", // WEBP images + "image/svg+xml" // SVG images + }; + + const QStringList UnknownMimeTypes = { + "audio/mpeg", // MPEG audio files + "video/mp4", // MP4 video files + "application/pdf", // PDF documents + "application/zip", // ZIP archives + "application/x-tar", // TAR archives + "application/x-rar-compressed", // RAR archives + "application/x-7z-compressed", // 7z archives + "application/x-shockwave-flash", // Adobe Flash files + "application/vnd.ms-excel", // Microsoft Excel files + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", // Microsoft Excel (OpenXML) files + "application/vnd.ms-powerpoint", // Microsoft PowerPoint files + "application/vnd.openxmlformats-officedocument.presentationml.presentation", // Microsoft PowerPoint (OpenXML) + // files + "application/msword", // Microsoft Word files + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", // Microsoft Word (OpenXML) files + "application/vnd.oasis.opendocument.text", // OpenDocument Text + "application/vnd.oasis.opendocument.spreadsheet", // OpenDocument Spreadsheet + "application/vnd.oasis.opendocument.presentation", // OpenDocument Presentation + "application/x-httpd-php", // PHP files + "application/x-perl", // Perl scripts + "application/x-python", // Python scripts + "application/x-ruby", // Ruby scripts + "application/x-shellscript", // Shell scripts + }; + + for (const auto& mime : TextMimeTypes) { + QCOMPARE(Tools::toMimeType(mime), Tools::MimeType::PlainText); + } + + for (const auto& mime : ImageMimeTypes) { + QCOMPARE(Tools::toMimeType(mime), Tools::MimeType::Image); + } + + for (const auto& mime : UnknownMimeTypes) { + QCOMPARE(Tools::toMimeType(mime), Tools::MimeType::Unknown); + } } diff --git a/tests/TestTools.h b/tests/TestTools.h index f590a53a1..5f4b6b6e0 100644 --- a/tests/TestTools.h +++ b/tests/TestTools.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 KeePassXC Team + * Copyright (C) 2024 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 @@ -27,12 +27,17 @@ private slots: void testHumanReadableFileSize(); void testIsHex(); void testIsBase64(); + void testIsAsciiString(); void testEnvSubstitute(); void testValidUuid(); void testBackupFilePatternSubstitution_data(); void testBackupFilePatternSubstitution(); + void testEscapeRegex(); + void testEscapeRegex_data(); void testConvertToRegex(); void testConvertToRegex_data(); + void testArrayContainsValues(); + void testMimeTypes(); }; #endif // KEEPASSX_TESTTOOLS_H diff --git a/tests/TestTotp.cpp b/tests/TestTotp.cpp index b83e7d296..0a323f457 100644 --- a/tests/TestTotp.cpp +++ b/tests/TestTotp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -19,8 +19,8 @@ #include "TestTotp.h" #include "core/Entry.h" +#include "core/Totp.h" #include "crypto/Crypto.h" -#include "totp/totp.h" #include @@ -40,11 +40,11 @@ void TestTotp::testParseSecret() auto settings = Totp::parseSettings(secret); QVERIFY(!settings.isNull()); QCOMPARE(settings->key, QString("HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ")); - QCOMPARE(settings->custom, false); QCOMPARE(settings->format, Totp::StorageFormat::OTPURL); QCOMPARE(settings->digits, 6u); QCOMPARE(settings->step, 30u); QCOMPARE(settings->algorithm, Totp::Algorithm::Sha1); + QCOMPARE(Totp::hasCustomSettings(settings), false); // OTP URL with non-default hash type secret = "otpauth://totp/" @@ -53,44 +53,58 @@ void TestTotp::testParseSecret() settings = Totp::parseSettings(secret); QVERIFY(!settings.isNull()); QCOMPARE(settings->key, QString("HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ")); - QCOMPARE(settings->custom, true); QCOMPARE(settings->format, Totp::StorageFormat::OTPURL); QCOMPARE(settings->digits, 6u); QCOMPARE(settings->step, 30u); QCOMPARE(settings->algorithm, Totp::Algorithm::Sha512); + QCOMPARE(Totp::hasCustomSettings(settings), true); + + // Max TOTP step of 24-hours + secret.replace("period=30", "period=90000"); + settings = Totp::parseSettings(secret); + QVERIFY(!settings.isNull()); + QCOMPARE(settings->step, 86400u); // KeeOTP Parsing secret = "key=HXDMVJECJJWSRBY%3d&step=25&size=8&otpHashMode=Sha256"; settings = Totp::parseSettings(secret); QVERIFY(!settings.isNull()); QCOMPARE(settings->key, QString("HXDMVJECJJWSRBY=")); - QCOMPARE(settings->custom, true); QCOMPARE(settings->format, Totp::StorageFormat::KEEOTP); QCOMPARE(settings->digits, 8u); QCOMPARE(settings->step, 25u); QCOMPARE(settings->algorithm, Totp::Algorithm::Sha256); + QCOMPARE(Totp::hasCustomSettings(settings), true); // Semi-colon delineated "TOTP Settings" secret = "gezdgnbvgy3tqojqgezdgnbvgy3tqojq"; settings = Totp::parseSettings("30;8", secret); QVERIFY(!settings.isNull()); QCOMPARE(settings->key, QString("gezdgnbvgy3tqojqgezdgnbvgy3tqojq")); - QCOMPARE(settings->custom, true); QCOMPARE(settings->format, Totp::StorageFormat::LEGACY); QCOMPARE(settings->digits, 8u); QCOMPARE(settings->step, 30u); QCOMPARE(settings->algorithm, Totp::Algorithm::Sha1); + QCOMPARE(Totp::hasCustomSettings(settings), true); // Bare secret (no "TOTP Settings" attribute) secret = "gezdgnbvgy3tqojqgezdgnbvgy3tqojq"; settings = Totp::parseSettings("", secret); QVERIFY(!settings.isNull()); QCOMPARE(settings->key, QString("gezdgnbvgy3tqojqgezdgnbvgy3tqojq")); - QCOMPARE(settings->custom, false); QCOMPARE(settings->format, Totp::StorageFormat::LEGACY); QCOMPARE(settings->digits, 6u); QCOMPARE(settings->step, 30u); QCOMPARE(settings->algorithm, Totp::Algorithm::Sha1); + QCOMPARE(Totp::hasCustomSettings(settings), false); + + // Blank settings (expected failure) + settings = Totp::parseSettings("", ""); + QVERIFY(settings.isNull()); + + // TOTP Settings with blank secret (expected failure) + settings = Totp::parseSettings("30;8", ""); + QVERIFY(settings.isNull()); } void TestTotp::testTotpCode() @@ -108,7 +122,6 @@ void TestTotp::testTotpCode() // Test 8 digit TOTP (custom) settings->digits = 8; - settings->custom = true; time = 1111111111; QCOMPARE(Totp::generateTotp(settings, time), QString("14050471")); @@ -118,11 +131,19 @@ void TestTotp::testTotpCode() void TestTotp::testSteamTotp() { + // Legacy parsing + auto settings = Totp::parseSettings("30;S", "63BEDWCQZKTQWPESARIERL5DTTQFCJTK"); + QCOMPARE(settings->key, QString("63BEDWCQZKTQWPESARIERL5DTTQFCJTK")); + QCOMPARE(settings->encoder.shortName, Totp::STEAM_SHORTNAME); + QCOMPARE(settings->format, Totp::StorageFormat::LEGACY); + QCOMPARE(settings->digits, Totp::STEAM_DIGITS); + QCOMPARE(settings->step, 30u); + // OTP URL Parsing QString secret = "otpauth://totp/" "test:test@example.com?secret=63BEDWCQZKTQWPESARIERL5DTTQFCJTK&issuer=Valve&algorithm=" "SHA1&digits=5&period=30&encoder=steam"; - auto settings = Totp::parseSettings(secret); + settings = Totp::parseSettings(secret); QCOMPARE(settings->key, QString("63BEDWCQZKTQWPESARIERL5DTTQFCJTK")); QCOMPARE(settings->encoder.shortName, Totp::STEAM_SHORTNAME); @@ -158,4 +179,44 @@ void TestTotp::testEntryHistory() entry.setTotp(settings); QCOMPARE(entry.historyItems().size(), 2); QCOMPARE(entry.totpSettings()->key, QString("foo")); + // Nullptr Settings (expected reset of TOTP) + entry.setTotp(nullptr); + QVERIFY(!entry.hasTotp()); + QCOMPARE(entry.historyItems().size(), 3); +} + +void TestTotp::testKeePass2() +{ + Entry entry; + auto attr = entry.attributes(); + + // Default settings + attr->set("TimeOtp-Secret-Base32", "GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ"); + + auto settings = entry.totpSettings(); + QVERIFY(settings); + QCOMPARE(settings->key, QString("GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ")); + QCOMPARE(settings->algorithm, Totp::Algorithm::Sha1); + QCOMPARE(settings->digits, 6u); + QCOMPARE(settings->step, 30u); + QCOMPARE(Totp::hasCustomSettings(settings), false); + + // Custom settings + attr->set("TimeOtp-Algorithm", "HMAC-SHA-256"); + attr->set("TimeOtp-Length", "8"); + + settings = entry.totpSettings(); + QVERIFY(settings); + QCOMPARE(settings->key, QString("GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ")); + QCOMPARE(settings->algorithm, Totp::Algorithm::Sha256); + QCOMPARE(settings->digits, 8u); + QCOMPARE(settings->step, 30u); + QCOMPARE(Totp::hasCustomSettings(settings), true); + + // Base64 and other encodings are not supported + attr->remove("TimeOtp-Secret-Base32"); + attr->set("TimeOtp-Secret-Base64", "GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ"); + + settings = entry.totpSettings(); + QVERIFY(!settings); } diff --git a/tests/TestTotp.h b/tests/TestTotp.h index 92fa7a0e1..f2e696734 100644 --- a/tests/TestTotp.h +++ b/tests/TestTotp.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Weslly Honorato <weslly@protonmail.com> + * Copyright (C) 2017 Weslly Honorato * Copyright (C) 2017 KeePassXC Team * * This program is free software: you can redistribute it and/or modify @@ -31,6 +31,7 @@ private slots: void testTotpCode(); void testSteamTotp(); void testEntryHistory(); + void testKeePass2(); }; #endif // KEEPASSX_TESTTOTP_H diff --git a/tests/TestUpdateCheck.cpp b/tests/TestUpdateCheck.cpp index df2643fad..f89757ea6 100644 --- a/tests/TestUpdateCheck.cpp +++ b/tests/TestUpdateCheck.cpp @@ -17,7 +17,7 @@ #include "TestUpdateCheck.h" #include "crypto/Crypto.h" -#include "updatecheck/UpdateChecker.h" +#include "networking/UpdateChecker.h" #include diff --git a/tests/TestUrlTools.cpp b/tests/TestUrlTools.cpp new file mode 100644 index 000000000..f6b637c65 --- /dev/null +++ b/tests/TestUrlTools.cpp @@ -0,0 +1,178 @@ +/* + * Copyright (C) 2025 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 . + */ + +#include "TestUrlTools.h" +#include + +QTEST_GUILESS_MAIN(TestUrlTools) + +void TestUrlTools::initTestCase() +{ + m_urlTools = urlTools(); +} + +void TestUrlTools::init() +{ +} + +void TestUrlTools::testTopLevelDomain() +{ + // Create list of URLs and expected TLD responses + QList> tldUrls{ + {QString("https://another.example.co.uk"), QString("co.uk")}, + {QString("https://www.example.com"), QString("com")}, + {QString("https://example.com"), QString("com")}, + {QString("https://github.com"), QString("com")}, + {QString("http://test.net"), QString("net")}, + {QString("http://so.many.subdomains.co.jp"), QString("co.jp")}, + {QString("https://192.168.0.1"), QString("192.168.0.1")}, + {QString("https://192.168.0.1:8000"), QString("192.168.0.1")}, + {QString("https://www.nic.ar"), QString("ar")}, + {QString("https://no.no.no"), QString("no")}, + {QString("https://www.blogspot.com.ar"), QString("blogspot.com.ar")}, // blogspot.com.ar is a TLD + {QString("https://jap.an.ide.kyoto.jp"), QString("ide.kyoto.jp")}, // ide.kyoto.jp is a TLD + {QString("ar"), QString("ar")}, + }; + + for (const auto& u : tldUrls) { + QCOMPARE(urlTools()->getTopLevelDomainFromUrl(u.first), u.second); + } + + // Create list of URLs and expected base URL responses + QList> baseUrls{ + {QString("https://another.example.co.uk"), QString("example.co.uk")}, + {QString("https://www.example.com"), QString("example.com")}, + {QString("http://test.net"), QString("test.net")}, + {QString("http://so.many.subdomains.co.jp"), QString("subdomains.co.jp")}, + {QString("https://192.168.0.1"), QString("192.168.0.1")}, + {QString("https://192.168.0.1:8000"), QString("192.168.0.1")}, + {QString("https://www.nic.ar"), QString("nic.ar")}, + {QString("https://www.blogspot.com.ar"), QString("www.blogspot.com.ar")}, // blogspot.com.ar is a TLD + {QString("https://www.arpa"), QString("www.arpa")}, + {QString("https://jap.an.ide.kyoto.jp"), QString("an.ide.kyoto.jp")}, // ide.kyoto.jp is a TLD + {QString("https://kobe.jp"), QString("kobe.jp")}, + }; + + for (const auto& u : baseUrls) { + QCOMPARE(urlTools()->getBaseDomainFromUrl(u.first), u.second); + } +} + +void TestUrlTools::testIsIpAddress() +{ + auto host1 = "example.com"; // Not valid + auto host2 = "192.168.0.1"; + auto host3 = "278.21.2.0"; // Not valid + auto host4 = "2001:0db8:85a3:0000:0000:8a2e:0370:7334"; + auto host5 = "2001:db8:0:1:1:1:1:1"; + auto host6 = "fe80::1ff:fe23:4567:890a"; + auto host7 = "2001:20::1"; + auto host8 = "2001:0db8:85y3:0000:0000:8a2e:0370:7334"; // Not valid + auto host9 = "[::]"; + auto host10 = "::"; + auto host11 = "[2001:20::1]"; + + QVERIFY(!urlTools()->isIpAddress(host1)); + QVERIFY(urlTools()->isIpAddress(host2)); + QVERIFY(!urlTools()->isIpAddress(host3)); + QVERIFY(urlTools()->isIpAddress(host4)); + QVERIFY(urlTools()->isIpAddress(host5)); + QVERIFY(urlTools()->isIpAddress(host6)); + QVERIFY(urlTools()->isIpAddress(host7)); + QVERIFY(!urlTools()->isIpAddress(host8)); + QVERIFY(urlTools()->isIpAddress(host9)); + QVERIFY(urlTools()->isIpAddress(host10)); + QVERIFY(urlTools()->isIpAddress(host11)); +} + +void TestUrlTools::testIsUrlIdentical() +{ + QVERIFY(urlTools()->isUrlIdentical("https://example.com", "https://example.com")); + QVERIFY(urlTools()->isUrlIdentical("https://example.com", " https://example.com ")); + QVERIFY(!urlTools()->isUrlIdentical("https://example.com", "https://example2.com")); + QVERIFY(!urlTools()->isUrlIdentical("https://example.com/", "https://example.com/#login")); + QVERIFY(urlTools()->isUrlIdentical("https://example.com", "https://example.com/")); + QVERIFY(urlTools()->isUrlIdentical("https://example.com/", "https://example.com")); + QVERIFY(urlTools()->isUrlIdentical("https://example.com/ ", " https://example.com")); + QVERIFY(!urlTools()->isUrlIdentical("https://example.com/", " example.com")); + QVERIFY(urlTools()->isUrlIdentical("https://example.com/path/to/nowhere", "https://example.com/path/to/nowhere/")); + QVERIFY(!urlTools()->isUrlIdentical("https://example.com/", "://example.com/")); + QVERIFY(urlTools()->isUrlIdentical("ftp://127.0.0.1/", "ftp://127.0.0.1")); +} + +void TestUrlTools::testIsUrlValid() +{ + QHash urls; + urls["https://github.com/login"] = true; + urls["https:///github.com/"] = false; + urls["http://github.com/**//*"] = false; + urls["http://*.github.com/login"] = false; + urls["//github.com"] = true; + urls["github.com/{}<>"] = false; + urls["http:/example.com"] = false; + urls["http:/example.com."] = false; + urls["cmd://C:/Toolchains/msys2/usr/bin/mintty \"ssh jon@192.168.0.1:22\""] = true; + urls["file:///Users/testUser/Code/test.html"] = true; + urls["{REF:A@I:46C9B1FFBD4ABC4BBB260C6190BAD20C} "] = true; + + QHashIterator i(urls); + while (i.hasNext()) { + i.next(); + QCOMPARE(urlTools()->isUrlValid(i.key()), i.value()); + } +} + +void TestUrlTools::testIsUrlValidWithLooseComparison() +{ + QHash urls; + urls[""] = true; + urls["\"https://github.com/login\""] = true; + urls["https://*.github.com/"] = true; + urls["*.github.com"] = true; + urls["https://*.com"] = false; + urls["https://*.computer.com"] = true; // TLD in domain (com) should not affect + urls["\"\""] = false; + urls["\"*.example.com\""] = false; + urls["http://*"] = false; + urls["*"] = false; + urls["****"] = false; + urls["*.co.jp"] = false; + urls["*.com"] = false; + urls["*.computer.com"] = true; + urls["*.computer.com/*com"] = true; // TLD in path should not affect this + urls["*com"] = false; + urls["*.com/"] = false; + urls["*.com/*"] = false; + urls["**.com/**"] = false; + urls["*.*"] = false; + urls["https://example.*"] = false; + urls["https://*.example.*"] = false; + urls["https://example.c*"] = false; + + QHashIterator i(urls); + while (i.hasNext()) { + i.next(); + QCOMPARE(urlTools()->isUrlValid(i.key(), true), i.value()); + } +} + +void TestUrlTools::testDomainHasIllegalCharacters() +{ + QVERIFY(!urlTools()->domainHasIllegalCharacters("example.com")); + QVERIFY(urlTools()->domainHasIllegalCharacters("domain has spaces.com")); + QVERIFY(urlTools()->domainHasIllegalCharacters("example#|.com")); +} diff --git a/tests/TestOpVaultReader.h b/tests/TestUrlTools.h similarity index 56% rename from tests/TestOpVaultReader.h rename to tests/TestUrlTools.h index feb904c6d..c2ba770b8 100644 --- a/tests/TestOpVaultReader.h +++ b/tests/TestUrlTools.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019 KeePassXC Team + * Copyright (C) 2025 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 @@ -15,31 +15,29 @@ * along with this program. If not, see . */ -#ifndef TEST_OPVAULT_READER_H_ -#define TEST_OPVAULT_READER_H_ +#ifndef KEEPASSXC_TESTURLTOOLS_H +#define KEEPASSXC_TESTURLTOOLS_H -#include +#include "gui/UrlTools.h" #include +#include -class TestOpVaultReader : public QObject +class TestUrlTools : public QObject { Q_OBJECT private slots: void initTestCase(); - void testReadIntoDatabase(); + void init(); + + void testTopLevelDomain(); + void testIsIpAddress(); + void testIsUrlIdentical(); + void testIsUrlValid(); + void testIsUrlValidWithLooseComparison(); + void testDomainHasIllegalCharacters(); private: - // absolute path to the .opvault directory - QString m_opVaultPath; - - /* - * Points to the file made by using the 1Password GUI to "Export all" - * to its text file format, which are almost key=value pairs - * except for multi-line strings. - */ - QString m_opVaultTextExportPath; - QStringList m_categories; + QPointer m_urlTools; }; - -#endif /* TEST_OPVAULT_READER_H_ */ +#endif // KEEPASSXC_TESTURLTOOLS_H diff --git a/tests/TestYkChallengeResponseKey.cpp b/tests/TestYkChallengeResponseKey.cpp index 341c90715..02a0b5bea 100644 --- a/tests/TestYkChallengeResponseKey.cpp +++ b/tests/TestYkChallengeResponseKey.cpp @@ -24,6 +24,7 @@ #include "keys/ChallengeResponseKey.h" #include +#include #include #include @@ -44,11 +45,15 @@ void TestYubiKeyChallengeResponse::testDetectDevices() YubiKey::instance()->findValidKeys(); // Look at the information retrieved from the key(s) - for (auto key : YubiKey::instance()->foundKeys()) { - auto displayName = YubiKey::instance()->getDisplayName(key); - QVERIFY(displayName.contains("Challenge-Response - Slot") || displayName.contains("Configured Slot -")); - QVERIFY(displayName.contains(QString::number(key.first))); - QVERIFY(displayName.contains(QString::number(key.second))); + const auto foundKeys = YubiKey::instance()->foundKeys(); + QRegularExpression exp{"\\w+\\s+\\[\\d+\\]\\s+-\\s+Slot\\s+\\d"}; + + for (auto i = foundKeys.cbegin(); i != foundKeys.cend(); ++i) { + const auto& displayName = i.value(); + auto match = exp.match(displayName); + QVERIFY(match.hasMatch()); + QVERIFY(displayName.contains(QString::number(i.key().first))); + QVERIFY(displayName.contains(QString::number(i.key().second))); } } @@ -59,7 +64,7 @@ void TestYubiKeyChallengeResponse::testDetectDevices() */ void TestYubiKeyChallengeResponse::testKeyChallenge() { - auto keys = YubiKey::instance()->foundKeys(); + auto keys = YubiKey::instance()->foundKeys().keys(); if (keys.isEmpty()) { QSKIP("No YubiKey devices were detected."); } diff --git a/tests/data/1PasswordExport.1pux b/tests/data/1PasswordExport.1pux new file mode 100644 index 000000000..12cfcb6c6 Binary files /dev/null and b/tests/data/1PasswordExport.1pux differ diff --git a/tests/data/NonAscii.kdbx b/tests/data/NonAscii.kdbx index 06aa5bf2c..8ebaac249 100644 Binary files a/tests/data/NonAscii.kdbx and b/tests/data/NonAscii.kdbx differ diff --git a/tests/data/SyncDatabase.kdbx b/tests/data/SyncDatabase.kdbx new file mode 100644 index 000000000..1a8ad9375 Binary files /dev/null and b/tests/data/SyncDatabase.kdbx differ diff --git a/tests/data/SyncDatabaseDifferentPassword.kdbx b/tests/data/SyncDatabaseDifferentPassword.kdbx new file mode 100644 index 000000000..372ead78c Binary files /dev/null and b/tests/data/SyncDatabaseDifferentPassword.kdbx differ diff --git a/tests/data/bitwarden_encrypted_argon2id_export.json b/tests/data/bitwarden_encrypted_argon2id_export.json new file mode 100644 index 000000000..67dea8dce --- /dev/null +++ b/tests/data/bitwarden_encrypted_argon2id_export.json @@ -0,0 +1,11 @@ +{ + "encrypted": true, + "passwordProtected": true, + "salt": "qQAdNzVGDjmIWIz3CLkMOg==", + "kdfType": 1, + "kdfIterations": 3, + "kdfMemory": 64, + "kdfParallelism": 4, + "encKeyValidation_DO_NOT_EDIT": "2.XohQSvVARSkNaL2eQ5cqSg==|EMUESMPFpYH3F7yww2SSfFPLTcerACPz3G29Q3LoQ2iJw33nutDg6lpDhCJ9bKXe|Qxf01Q7YB5kv4lmW58XOOuOWrPfUqocWKfIzRBDREWA=", + "data": "2.eQO+T8wrtxVlTPgQfZtWzg==|PHPF2TwVT4shA+F2LGd+Tz22LFpv0QmGW3PQUdeGxS0mdy5pIT/BL7bMw5+N/njOq/Y0oFru+xNklfVrAUxb4Bl4dgH7XDmW4iFMlcum7/qOThf7hHI2lhyTIzBBlma/dcADMjJcp2R4SQ3gVsZ2FrX5xgZgKfLgE1hL2kiwYrFOJ/mXUKXSCjgyHC4eSNdDOle9OzbcXiq4MaJHzdEAjEKaVqO5KFBDsZ2xCPOe/47wDJ5sxZp2I8/1zaZ56x4bYBp11p5TXDpQ46pLXxElsm3sxaxEzziZum7Boj9f1b/7TpRRzpZuP80OgjeW9CAZJ6UqR7gdtb7Bn00R+GlUyAFzHD9y6LkaF9HGBLlq0kz/lj6OkgePerXO/rJM2kuCGd/YZ6hQvXk75EHpZ3s/5/no1eUuMyhN/cH0SNtFlEPcsWL6wXzkKTeSlzVsq+fzKmlv9oprDjGwVuj0EgIyKQcmMavmE7aob5Ybz+ufkbtMfEVKAWVGo1ljvqCJoMXOehDUnub+p60THafAzlGR/G5/QWm+M1QRnI0pLJL/4aZIj3bk+oBRmfpDC5qdsXkyqmhEzkBwVgD+0zwWJ4UJaxWxgfewUoLhUvMqqjd59PORUWhqCG1GOmEMgCWJN9yI0G7/H6GhemWNQ7y4Kdeb+SS5QG0YQk6OVrvFJ6Ky0Tgaopp/h5CxPDrfJFgc/HdPPC3arEisyZkkO6uq+lVewiNsvFOfTakVeqxtjC1bKHhRQ33PG7UN9qWGHYwvc/NKMwJswJCgcWMwbiGN8VKPjx5/WzO7nPdCQByqCU/MMUcZUGVlDIYxemCPcvgS0cgP9rKc1ie/w6DAgnFmXhdhzKOPvYp7/OUE70+t/PzE8XrVd/ChOHkN3WQEVWFJzSdj0fMzZ8F60yrD0wxulI6u6RWWEHLw5m6zA2AreplkdaByuzRmuP2sHcsNmZ/ShySPivgelq25BxwCU2NThUnohvnTRXW5yB47v7uPn3ZPG2sR6Zt5q9ibrwrcd4N6AcitgiQYVvZmmIuKzzNJ98oDfpDxdPM/fTjlIMHCdM6WyX3C/bcADP6ivZkFRsyWEcnJyBOkuSp8j7MiEDQVgcXjGLU8MdtDL0c8qbPnAt66AADmvsAumN/e5mpXeS3KEVUSeNa/H+oWmy/ExXj17d/6fcDTym3dZ6Vc4CcAkVDlHlsVeFr5fUnSdxKgl/BPBX+gbD6rm7l4MGvjTdLnW9ZIcDwX+Dh4GthSVhrKwWBO//9q6Y2pguO5s1F+MPc/5CY9XFFaOdildr21GFeZh1ClxWARW0r2SdlH19GIz0gTurL4lqAsSwC5i8pxXweAOZLd|LuLnG7meb0T0i6uHmMg6p3Uj8rq4LEI43k6KQaaDnVw=" +} \ No newline at end of file diff --git a/tests/data/bitwarden_encrypted_export.json b/tests/data/bitwarden_encrypted_export.json new file mode 100644 index 000000000..0f759686c --- /dev/null +++ b/tests/data/bitwarden_encrypted_export.json @@ -0,0 +1,11 @@ +{ + "encrypted": true, + "passwordProtected": true, + "salt": "jxJdzv853aLmu0y/mCgSxg==", + "kdfType": 0, + "kdfIterations": 100000, + "kdfMemory": null, + "kdfParallelism": null, + "encKeyValidation_DO_NOT_EDIT": "2.6O5+RkqPRTCxGIjEIyqukQ==|J7Ks4QhjfOyt7qMU82XEuJoGw0GpQabv0vGerKC+YjSQWmaqbbyMDgba78vyRvSU|f0nwbY+JRc2KfkU6mY0dmiKNiDb00A0CngpF4TEEM0c=", + "data": "2.OA/bDI14kq+642rwmWYWxg==|216xw4kCZbqhVifzikzvzqLY2Er35tiYo+gl+hgf9dmLrPMf5vYcFgMe8IdTHXZCdUEuyEdpQeoAwGT8zG8d9GcwdKKOktccl04lE39Cb6XqKEr1PA3d4R8iPYTpeeFSm/cFLQlod5iymUkW4wxHTSIVn9KO/y0F8LWyKX7XxAdCEJykatSoUcC9SmFTPxEtR7BBgfkLTCgSZ9AUE0suKoYIUR6sJSlDq3IHP/09T8w0bbahBkRzevj5+JXawxn1DvBld00bVzo6GgrGojHz+VNa/crpLSaPqyR/IlD66+bS1DdIZ4UBODpZVZTxNKbWd7mPhkCcHF+NchCb47MR442dVQD9QjXk8q7E3SoK76JkYdOZsd3FIH8fZNdYTSOZsvLOYans74RyX1qCD5w3QVaR1cwRYD+kwCe0eFlHmzCLCx3IAuTfH1QdXvIvqaevYKikuKE8tfaAhrPJ2N4MHoKyxdF801jqslZdWrUrZvWsovdBZhp2siQZiWpd/fteJTSpy19sJ+J49+4SYEAfYe3lbz2K7ypKia8duffnV4+eh5tsK24MkExHO3ZQzQVkQdsX6eeFJmdqK4wONunSgnXIDti5rw/bWNtjVvAYiDMX+DNULML/opp9TPZUvrTgFhMsFFwbVzIjTxwE/PS9w+lD3etP195QkD717F87dClpkIrvm+UfQrQwCgDxOQ9PTPcUBVugq9MEflsiSn4NjCXdjWL1siSgxm2eJQ3k0OKJoN5bUInwG9i9njLh5fjxc4aiuvOOGAkqgX/mr3MxuuV8luKWRy884Reu8DdnZq6Vdq+yHgs7o9Ipxrtr8t85yBeU90yqyJrtmwDgEJiLK0TpJ1bY9ZwnqhYrtJGRrzxWrfvAGcJzEsWJ98aq9T+r/CnnsInyRTyptOgmsjmPlw0rTZ8//KI2afwRQRL+yIZ4817T+DekyF18QnYD607njiJb5igEy9MzYw04osr9yyQikheyuPDvD2UnGgGYdy04sHKVNgt0/xtzsJvxhsmy0mXknRcajExsKe6wH1jzTq6IxWo+08+5lnMmr05gtE8Y6HN2nsOAVdGU6x26MQVI|ASjBD0/F6Z61WSWc++RXhA6iQv8AziJO+/EXrj7GSVY=" +} \ No newline at end of file diff --git a/tests/data/bitwarden_export.json b/tests/data/bitwarden_export.json new file mode 100644 index 000000000..7d6a5de21 --- /dev/null +++ b/tests/data/bitwarden_export.json @@ -0,0 +1,180 @@ +{ + "folders": [ + { + "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "name": "My Folder" + }, + { + "id": "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy", + "name": "Second Folder" + } + ], + "items": [ + { + "id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaa", + "organizationId": null, + "folderId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "type": 2, + "name": "My Secure Note", + "notes": "1st line of secure note\n2nd line of secure note\n3rd line of secure note", + "favorite": false, + "fields": [ + { + "name": "Text Field", + "value": "text-field-value", + "type": 0 + }, + { + "name": "Hidden Field", + "value": "hidden-field-value", + "type": 1 + }, + { + "name": "Boolean Field", + "value": "false", + "type": 2 + } + ], + "secureNote": { + "type": 0 + }, + "collectionIds": [ + null + ] + }, + { + "id": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb", + "organizationId": null, + "folderId": "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy", + "type": 3, + "name": "Card Name", + "notes": "1st line of note text\n2nd line of note text", + "favorite": false, + "fields": [ + { + "name": "Text Field", + "value": "text-field-value", + "type": 0 + }, + { + "name": "Hidden Field", + "value": "hidden-field-value", + "type": 1 + }, + { + "name": "Boolean Field", + "value": "false", + "type": 2 + } + ], + "card": { + "cardholderName": "Jane Doe", + "brand": "Visa", + "number": "1234567891011121", + "expMonth": "10", + "expYear": "2021", + "code": "123" + }, + "collectionIds": [ + null + ] + }, + { + "id": "cccccccc-cccc-cccc-cccc-cccccccccccc", + "organizationId": null, + "folderId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "type": 4, + "name": "My Identity", + "notes": "1st line of a note\n2nd line of a note", + "favorite": false, + "fields": [ + { + "name": "Text Field", + "value": "text-field-value", + "type": 0 + }, + { + "name": "Hidden Field", + "value": "hidden-field-value", + "type": 1 + }, + { + "name": "Boolean Field", + "value": "true", + "type": 2 + } + ], + "identity": { + "title": "Mrs", + "firstName": "Jane", + "middleName": "A", + "lastName": "Doe", + "address1": " 1 North Calle Cesar Chavez ", + "address2": null, + "address3": null, + "city": "Santa Barbara", + "state": "CA", + "postalCode": "93103", + "country": "United States ", + "company": "My Employer", + "email": "myemail@gmail.com", + "phone": "123-123-1234", + "ssn": "123-12-1234", + "username": "myusername", + "passportNumber": "123456789", + "licenseNumber": "123456789" + }, + "collectionIds": [ + null + ] + }, + { + "id": "dddddddd-dddd-dddd-dddd-dddddddddddd", + "organizationId": null, + "folderId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "type": 1, + "name": "Login Name", + "notes": "1st line of note text\n2nd Line of note text", + "favorite": true, + "fields": [ + { + "name": "Text Field", + "value": "text-field-value", + "type": 0 + }, + { + "name": "Hidden Field", + "value": "hidden-field-value", + "type": 1 + }, + { + "name": "Boolean Field", + "value": "true", + "type": 2 + } + ], + "login": { + "uris": [ + { + "match": null, + "uri": "https://mail.google.com" + }, + { + "match": null, + "uri": "https://google.com" + }, + { + "match": null, + "uri": "https://gmail.com" + } + ], + "username": "myusername@gmail.com", + "password": "mypassword", + "totp": "otpauth://totp/Google:myusername%40gmail.com?secret=DFDFDEF%3D&period=30&digits=6&issuer=Google" + }, + "collectionIds": [ + null + ] + } + ] +} diff --git a/tests/data/bitwarden_passkey_export.json b/tests/data/bitwarden_passkey_export.json new file mode 100644 index 000000000..0044fc334 --- /dev/null +++ b/tests/data/bitwarden_passkey_export.json @@ -0,0 +1,49 @@ +{ + "encrypted": false, + "folders": [], + "items": [ + { + "passwordHistory": null, + "revisionDate": "2024-10-23T16:38:08.870Z", + "creationDate": "2024-10-23T16:38:08.606Z", + "deletedDate": null, + "id": "a8e579f0-98c2-4ac9-a126-b212011225f8", + "organizationId": null, + "folderId": null, + "type": 1, + "reprompt": 0, + "name": "webauthn.io", + "notes": null, + "favorite": false, + "login": { + "fido2Credentials": [ + { + "credentialId": "a3e15f8b-27c1-42ae-90cf-a615ad87854f", + "keyType": "public-key", + "keyAlgorithm": "ECDSA", + "keyCurve": "P-256", + "keyValue": "MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgmr4GQQjerojFuf0ZouOuUllMvAwxZSZAfB6gwDYcLiehRANCAAT0WR5zVSp6ieusvjkLkzaGc7fjGBmwpiuLPxR_d-ZjqMI9L2DKh-takp6wGt2x0n4jzr1KA352NZg0vjZX9CHh", + "rpId": "webauthn.io", + "userHandle": "aTFtdmFnOHYtS2dxVEJ0by1rSFpLWGg0enlTVC1iUVJReDZ5czJXa3c2aw", + "userName": "KPXC_BITWARDEN", + "counter": "0", + "rpName": "webauthn.io", + "userDisplayName": "KPXC_BITWARDEN", + "discoverable": "true", + "creationDate": "2024-10-23T16:38:08.617Z" + } + ], + "uris": [ + { + "match": null, + "uri": "https://webauthn.io/" + } + ], + "username": "KPXC_BITWARDEN", + "password": null, + "totp": null + }, + "collectionIds": null + } + ] +} \ No newline at end of file diff --git a/tests/data/protonpass_export.json b/tests/data/protonpass_export.json new file mode 100644 index 000000000..ef8235218 --- /dev/null +++ b/tests/data/protonpass_export.json @@ -0,0 +1,173 @@ +{ + "version": "1.21.2", + "userId": "USER_ID", + "encrypted": false, + "vaults": { + "VAULT_A": { + "name": "Personal", + "description": "Personal vault", + "display": { + "color": 0, + "icon": 0 + }, + "items": [ + { + "itemId": "yZENmDjtmZGODNy3Q_CZiPAF_IgINq8w-R-qazrOh-Nt9YJeVF3gu07ovzDS4jhYHoMdOebTw5JkYPGgIL1mwQ==", + "shareId": "SN5uWo4WZF2uT5wIDqtbdpkjuxCbNTOIdf-JQ_DYZcKYKURHiZB5csS1a1p9lklvju9ni42l08IKzwQG0B2ySg==", + "data": { + "metadata": { + "name": "Test Login", + "note": "My login secure note.", + "itemUuid": "e8ee1a0c" + }, + "extraFields": [ + { + "fieldName": "non-hidden field", + "type": "text", + "data": { + "content": "non-hidden field content" + } + }, + { + "fieldName": "hidden field", + "type": "hidden", + "data": { + "content": "hidden field content" + } + }, + { + "fieldName": "second 2fa secret", + "type": "totp", + "data": { + "totpUri": "TOTPCODE" + } + } + ], + "type": "login", + "content": { + "itemEmail": "Email", + "password": "Password", + "urls": [ + "https://example.com/", + "https://example2.com/" + ], + "totpUri": "otpauth://totp/Test%20Login%20-%20Personal%20Vault:Username?issuer=Test%20Login%20-%20Personal%20Vault&secret=TOTPCODE&algorithm=SHA1&digits=6&period=30", + "passkeys": [], + "itemUsername": "Username" + } + }, + "state": 1, + "aliasEmail": null, + "contentFormatVersion": 1, + "createTime": 1689182868, + "modifyTime": 1689182868, + "pinned": true + }, + { + "itemId": "xqq_Bh8RxNMBerkiMvRdH427yswZznjYwps-f6C5D8tmKiPgMxCSPNz1BOd4nRJ309gciDiPhXcCVWOyfJ66ZA==", + "shareId": "SN5uWo4WZF2uT5wIDqtbdpkjuxCbNTOIdf-JQ_DYZcKYKURHiZB5csS1a1p9lklvju9ni42l08IKzwQG0B2ySg==", + "data": { + "metadata": { + "name": "My Secure Note", + "note": "Secure note contents.", + "itemUuid": "ad618070" + }, + "extraFields": [], + "type": "note", + "content": {} + }, + "state": 1, + "aliasEmail": null, + "contentFormatVersion": 1, + "createTime": 1689182908, + "modifyTime": 1689182908, + "pinned": false + }, + { + "itemId": "ZmGzd-HNQYTr6wmfWlSfiStXQLqGic_PYB2Q2T_hmuRM2JIA4pKAPJcmFafxJrDpXxLZ2EPjgD6Noc9a0U6AVQ==", + "shareId": "SN5uWo4WZF2uT5wIDqtbdpkjuxCbNTOIdf-JQ_DYZcKYKURHiZB5csS1a1p9lklvju9ni42l08IKzwQG0B2ySg==", + "data": { + "metadata": { + "name": "Test Card", + "note": "Credit Card Note", + "itemUuid": "d8f45370" + }, + "extraFields": [], + "type": "creditCard", + "content": { + "cardholderName": "Test name", + "cardType": 0, + "number": "1234222233334444", + "verificationNumber": "333", + "expirationDate": "2025-01", + "pin": "1234" + } + }, + "state": 1, + "aliasEmail": null, + "contentFormatVersion": 1, + "createTime": 1691001643, + "modifyTime": 1691001643, + "pinned": true + }, + { + "itemId": "xqq_Bh8RxNMBerkiMvRdH427yswZznjYwps-f6C5D8tmKiPgMxCSPNz1BOd4nRJ309gciDiPhXcCVWOyfJ66ZA==", + "shareId": "SN5uWo4WZF2uT5wIDqtbdpkjuxCbNTOIdf-JQ_DYZcKYKURHiZB5csS1a1p9lklvju9ni42l08IKzwQG0B2ySg==", + "data": { + "metadata": { + "name": "My Deleted Note", + "note": "Secure note contents.", + "itemUuid": "ad618070" + }, + "extraFields": [], + "type": "note", + "content": {} + }, + "state": 2, + "aliasEmail": null, + "contentFormatVersion": 1, + "createTime": 1689182908, + "modifyTime": 1689182908, + "pinned": false + } + ] + }, + "VAULT_B": { + "name": "Test", + "description": "", + "display": { + "color": 4, + "icon": 2 + }, + "items": [ + { + "itemId": "U_J8-eUR15sC-PjUhjVcixDcayhjGuoerUZCr560RlAi0ZjBNkSaSKAytVzZn4E0hiFX1_y4qZbUetl6jO3aJw==", + "shareId": "OJz-4MnPqAuYnyemhctcGDlSLJrzsTnf2FnFSwxh1QP_oth9xyGDc2ZAqCv5FnqkVgTNHT5aPj62zcekNemfNw==", + "data": { + "metadata": { + "name": "Other vault login", + "note": "", + "itemUuid": "f3429d44" + }, + "extraFields": [], + "type": "login", + "content": { + "itemEmail": "other vault username", + "password": "other vault password", + "urls": [], + "totpUri": "JBSWY3DPEHPK3PXP", + "passkeys": [], + "itemUsername": "" + } + }, + "state": 1, + "aliasEmail": null, + "contentFormatVersion": 1, + "createTime": 1689182949, + "modifyTime": 1689182949, + "pinned": false + } + ] + } + } +} \ No newline at end of file diff --git a/tests/data/wordlists/bad_wordlist_with_duplicate_entries.wordlist b/tests/data/wordlists/bad_wordlist_with_duplicate_entries.wordlist new file mode 100644 index 000000000..50246c96a --- /dev/null +++ b/tests/data/wordlists/bad_wordlist_with_duplicate_entries.wordlist @@ -0,0 +1,4 @@ +abacus +abdomen +abdominal +abdominal diff --git a/tests/gui/CMakeLists.txt b/tests/gui/CMakeLists.txt index 3264da515..2734cf582 100644 --- a/tests/gui/CMakeLists.txt +++ b/tests/gui/CMakeLists.txt @@ -15,7 +15,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..) -add_unit_test(NAME testgui SOURCES TestGui.cpp ../util/TemporaryFile.cpp LIBS ${TEST_LIBRARIES}) +add_unit_test(NAME testgui SOURCES TestGui.cpp ../util/TemporaryFile.cpp ../mock/MockRemoteProcess.cpp LIBS ${TEST_LIBRARIES}) add_unit_test(NAME testguipixmaps SOURCES TestGuiPixmaps.cpp LIBS ${TEST_LIBRARIES}) if(WITH_XC_BROWSER) diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp index 19c4c6ac1..f711817d5 100644 --- a/tests/gui/TestGui.cpp +++ b/tests/gui/TestGui.cpp @@ -21,18 +21,24 @@ #include #include +#include +#include +#include #include #include #include #include #include #include +#include #include #include #include "config-keepassx-tests.h" +#include "core/PasswordHealth.h" #include "core/Tools.h" #include "crypto/Crypto.h" +#include "gui/ActionCollection.h" #include "gui/ApplicationSettingsWidget.h" #include "gui/CategoryListWidget.h" #include "gui/CloneDialog.h" @@ -40,22 +46,26 @@ #include "gui/EntryPreviewWidget.h" #include "gui/FileDialog.h" #include "gui/MessageBox.h" -#include "gui/PasswordEdit.h" #include "gui/PasswordGeneratorWidget.h" +#include "gui/PasswordWidget.h" #include "gui/SearchWidget.h" +#include "gui/ShortcutSettingsPage.h" #include "gui/TotpDialog.h" #include "gui/TotpSetupDialog.h" #include "gui/databasekey/KeyFileEditWidget.h" #include "gui/databasekey/PasswordEditWidget.h" #include "gui/dbsettings/DatabaseSettingsDialog.h" +#include "gui/dbsettings/DatabaseSettingsWidgetEncryption.h" #include "gui/entry/EditEntryWidget.h" #include "gui/entry/EntryView.h" #include "gui/group/EditGroupWidget.h" #include "gui/group/GroupModel.h" #include "gui/group/GroupView.h" +#include "gui/remote/RemoteHandler.h" #include "gui/tag/TagsEdit.h" #include "gui/wizard/NewDatabaseWizard.h" #include "keys/FileKey.h" +#include "mock/MockRemoteProcess.h" #define TEST_MODAL_NO_WAIT(TEST_CODE) \ bool dialogFinished = false; \ @@ -67,10 +77,8 @@ int main(int argc, char* argv[]) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); -#endif Application app(argc, argv); app.setApplicationName("KeePassXC"); app.setApplicationVersion(KEEPASSXC_VERSION); @@ -86,11 +94,16 @@ int main(int argc, char* argv[]) void TestGui::initTestCase() { QVERIFY(Crypto::init()); - Config::createTempFileInstance(); + + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); + + QLocale::setDefault(QLocale::c()); Application::bootstrap(); m_mainWindow.reset(new MainWindow()); m_tabWidget = m_mainWindow->findChild("tabWidget"); + m_statusBarLabel = m_mainWindow->findChild("statusBarLabel"); m_mainWindow->show(); m_mainWindow->resize(1024, 768); } @@ -109,6 +122,10 @@ void TestGui::init() config()->set(Config::UpdateCheckMessageShown, true); // Disable quick unlock config()->set(Config::Security_QuickUnlock, false); + // Disable atomic saves to prevent transient errors on some platforms + config()->set(Config::UseAtomicSaves, false); + // Disable showing expired entries on unlock + config()->set(Config::GUI_ShowExpiredEntriesOnDatabaseUnlock, false); // Copy the test database file to the temporary file auto origFilePath = QDir(KEEPASSX_TEST_DATA_DIR).absoluteFilePath("NewDatabase.kdbx"); @@ -129,9 +146,12 @@ void TestGui::init() m_dbWidget = m_tabWidget->currentDatabaseWidget(); auto* databaseOpenWidget = m_tabWidget->currentDatabaseWidget()->findChild("databaseOpenWidget"); QVERIFY(databaseOpenWidget); - auto* editPassword = databaseOpenWidget->findChild("editPassword"); + // editPassword is not QLineEdit anymore but PasswordWidget + auto* editPassword = + databaseOpenWidget->findChild("editPassword")->findChild("passwordEdit"); QVERIFY(editPassword); editPassword->setFocus(); + QTRY_VERIFY(editPassword->hasFocus()); QTest::keyClicks(editPassword, "a"); QTest::keyClick(editPassword, Qt::Key_Enter); @@ -145,14 +165,13 @@ void TestGui::init() // Every test ends with closing the temp database without saving void TestGui::cleanup() { - // DO NOT save the database - m_db->markAsClean(); - MessageBox::setNextAnswer(MessageBox::No); - triggerAction("actionDatabaseClose"); - QApplication::processEvents(); - MessageBox::setNextAnswer(MessageBox::NoButton); - - if (m_dbWidget) { + if (m_tabWidget->isVisible()) { + // DO NOT save the database + m_db->markAsClean(); + MessageBox::setNextAnswer(MessageBox::No); + triggerAction("actionDatabaseClose"); + QApplication::processEvents(); + MessageBox::setNextAnswer(MessageBox::NoButton); delete m_dbWidget; } } @@ -182,7 +201,7 @@ void TestGui::testSettingsDefaultTabOrder() QVERIFY(dbSettingsWidget->isVisible()); QCOMPARE(dbSettingsWidget->findChild("categoryList")->currentCategory(), 0); for (auto* w : dbSettingsWidget->findChildren()) { - if (w->currentIndex() != 0) { + if (w->currentIndex() != 0 && w->objectName() != "encryptionSettingsTabWidget") { QFAIL("Database settings contain QTabWidgets whose default index is not 0"); } } @@ -201,12 +220,16 @@ void TestGui::testCreateDatabase() QTest::keyClick(wizard, Qt::Key_Enter); QCOMPARE(wizard->currentId(), 1); + // Check that basic encryption settings are visible auto decryptionTimeSlider = wizard->currentPage()->findChild("decryptionTimeSlider"); auto algorithmComboBox = wizard->currentPage()->findChild("algorithmComboBox"); QTRY_VERIFY(decryptionTimeSlider->isVisible()); QVERIFY(!algorithmComboBox->isVisible()); - auto advancedToggle = wizard->currentPage()->findChild("advancedSettingsButton"); - QTest::mouseClick(advancedToggle, Qt::MouseButton::LeftButton); + + // Set the encryption settings to the advanced view + auto encryptionSettings = wizard->currentPage()->findChild("encryptionSettingsTabWidget"); + auto advancedTab = encryptionSettings->findChild("advancedTab"); + encryptionSettings->setCurrentWidget(advancedTab); QTRY_VERIFY(!decryptionTimeSlider->isVisible()); QVERIFY(algorithmComboBox->isVisible()); @@ -240,8 +263,10 @@ void TestGui::testCreateDatabase() // enter password auto* passwordWidget = wizard->currentPage()->findChild(); QCOMPARE(passwordWidget->visiblePage(), KeyFileEditWidget::Page::Edit); - auto* passwordEdit = passwordWidget->findChild("enterPasswordEdit"); - auto* passwordRepeatEdit = passwordWidget->findChild("repeatPasswordEdit"); + auto* passwordEdit = + passwordWidget->findChild("enterPasswordEdit")->findChild("passwordEdit"); + auto* passwordRepeatEdit = + passwordWidget->findChild("repeatPasswordEdit")->findChild("passwordEdit"); QTRY_VERIFY(passwordEdit->isVisible()); QTRY_VERIFY(passwordEdit->hasFocus()); QTest::keyClicks(passwordEdit, "test"); @@ -273,11 +298,18 @@ void TestGui::testCreateDatabase() tmpFile.close(); fileDialog()->setNextFileName(tmpFile.fileName()); + // click Continue on the warning due to weak password + MessageBox::setNextAnswer(MessageBox::ContinueWithWeakPass); QTest::keyClick(fileEdit, Qt::Key::Key_Enter); + tmpFile.remove();); triggerAction("actionDatabaseNew"); + QCOMPARE(m_tabWidget->count(), 2); + + checkStatusBarText("0 Ent"); + // there is a new empty db m_db = m_tabWidget->currentDatabaseWidget()->database(); QCOMPARE(m_db->rootGroup()->children().size(), 0); @@ -298,6 +330,15 @@ void TestGui::testCreateDatabase() compositeKey->addKey(fileKey); QCOMPARE(m_db->key()->rawKey(), compositeKey->rawKey()); + checkStatusBarText("0 Ent"); + + // Test the switching to other DB tab + m_tabWidget->setCurrentIndex(0); + checkStatusBarText("1 Ent"); + + m_tabWidget->setCurrentIndex(1); + checkStatusBarText("0 Ent"); + // close the new database MessageBox::setNextAnswer(MessageBox::No); triggerAction("actionDatabaseClose"); @@ -316,8 +357,9 @@ void TestGui::testMergeDatabase() fileDialog()->setNextFileName(QString(KEEPASSX_TEST_DATA_DIR).append("/MergeDatabase.kdbx")); triggerAction("actionDatabaseMerge"); - QTRY_COMPARE(QApplication::focusWidget()->objectName(), QString("editPassword")); auto* editPasswordMerge = QApplication::focusWidget(); + QVERIFY(editPasswordMerge); + QTRY_COMPARE(editPasswordMerge->objectName(), QString("passwordEdit")); QVERIFY(editPasswordMerge->isVisible()); QTest::keyClicks(editPasswordMerge, "a"); @@ -336,6 +378,158 @@ void TestGui::testMergeDatabase() QCOMPARE(m_db->rootGroup()->findChildByName("General")->entries().size(), 1); } +void TestGui::prepareAndTriggerRemoteSync() +{ + // create remote settings in settings dialog + triggerAction("actionDatabaseSettings"); + + auto dbSettingsDialog = m_dbWidget->findChild("databaseSettingsDialog"); + QVERIFY(dbSettingsDialog); + dbSettingsDialog->showRemoteSettings(); + + auto name = "testCommand"; + auto nameEdit = dbSettingsDialog->findChild("nameLineEdit"); + QVERIFY(nameEdit); + QVERIFY(nameEdit->isVisible()); + nameEdit->setText(name); + + auto downloadCommandEdit = dbSettingsDialog->findChild("downloadCommand"); + QVERIFY(downloadCommandEdit); + downloadCommandEdit->setText("sftp user@server:Database.kdbx"); + + auto saveSettingsButton = dbSettingsDialog->findChild("saveSettingsButton"); + QVERIFY(saveSettingsButton); + QTest::mouseClick(saveSettingsButton, Qt::LeftButton); + + auto okButton = dbSettingsDialog->findChild("buttonBox")->button(QDialogButtonBox::Ok); + QVERIFY(okButton); + QTest::mouseClick(okButton, Qt::LeftButton); + + QTRY_COMPARE(m_dbWidget->getRemoteParams().size(), 1); + + // Show menu to trigger populating with remote sync action + auto menuRemoteSync = m_mainWindow->findChild("menuRemoteSync"); + QVERIFY(menuRemoteSync); + menuRemoteSync->popup({0, 0}); + QApplication::processEvents(); + menuRemoteSync->close(); + + // Trigger the remote sync action + for (const auto remoteAction : menuRemoteSync->actions()) { + if (remoteAction->text() == name) { + remoteAction->trigger(); + return; + } + } + + // If we get here then something didn't work properly + QFAIL("Remote sync action not present in menu."); +} + +void TestGui::testRemoteSyncDatabaseSameKey() +{ + RemoteHandler::setRemoteProcessFunc([](QObject* parent) { + return QScopedPointer( + new MockRemoteProcess(parent, QString(KEEPASSX_TEST_DATA_DIR).append("/SyncDatabase.kdbx"))); + }); + QSignalSpy dbSyncSpy(m_dbWidget.data(), &DatabaseWidget::databaseSyncCompleted); + prepareAndTriggerRemoteSync(); + QTRY_COMPARE(dbSyncSpy.count(), 1); + + m_db = m_tabWidget->currentDatabaseWidget()->database(); + + // there are seven child groups of the root group + QCOMPARE(m_db->rootGroup()->children().size(), 7); + // the merged group should contain an entry + QCOMPARE(m_db->rootGroup()->children().at(6)->entries().size(), 1); + // the General group contains one entry merged from the other db + QCOMPARE(m_db->rootGroup()->findChildByName("General")->entries().size(), 1); +} + +void TestGui::testRemoteSyncDatabaseRequiresPassword() +{ + RemoteHandler::setRemoteProcessFunc([](QObject* parent) { + return QScopedPointer(new MockRemoteProcess( + parent, QString(KEEPASSX_TEST_DATA_DIR).append("/SyncDatabaseDifferentPassword.kdbx"))); + }); + QSignalSpy dbSyncSpy(m_dbWidget.data(), &DatabaseWidget::databaseSyncCompleted); + prepareAndTriggerRemoteSync(); + + // need to process more events as opening with the same key did not work and more events have been fired + QApplication::processEvents(QEventLoop::WaitForMoreEvents); + + auto* editPasswordSync = QApplication::focusWidget(); + QVERIFY(editPasswordSync); + QTRY_COMPARE(editPasswordSync->objectName(), QString("passwordEdit")); + QVERIFY(editPasswordSync->isVisible()); + + QTest::keyClicks(editPasswordSync, "b"); + QTest::keyClick(editPasswordSync, Qt::Key_Enter); + + QTRY_COMPARE(dbSyncSpy.count(), 1); + m_db = m_tabWidget->currentDatabaseWidget()->database(); + + // there are seven child groups of the root group + QCOMPARE(m_db->rootGroup()->children().size(), 7); + // the merged group should contain an entry + QCOMPARE(m_db->rootGroup()->children().at(6)->entries().size(), 1); + // the General group contains one entry merged from the other db + QCOMPARE(m_db->rootGroup()->findChildByName("General")->entries().size(), 1); +} + +void TestGui::testOpenRemoteDatabase() +{ + // close current database + cleanup(); + + QString sourceToSync = "sftp user@server:Database.kdbx"; + RemoteHandler::setRemoteProcessFunc([sourceToSync](QObject* parent) { + return QScopedPointer( + new MockRemoteProcess(parent, QString(KEEPASSX_TEST_DATA_DIR).append("/SyncDatabase.kdbx"))); + }); + auto* openRemoteButton = QApplication::activeWindow()->findChild("buttonImport"); + QVERIFY(openRemoteButton); + QVERIFY(openRemoteButton->isVisible()); + QTest::mouseClick(openRemoteButton, Qt::LeftButton); + QApplication::processEvents(); + + TEST_MODAL_NO_WAIT(ImportWizard * wizard; QTRY_VERIFY(wizard = m_tabWidget->findChild()); + + auto* importTypeList = wizard->currentPage()->findChild("importTypeList"); + QVERIFY(importTypeList); + + for (int i = 0; i < importTypeList->count(); ++i) { + auto item = importTypeList->item(i); + if (item->data(Qt::UserRole) == ImportWizard::IMPORT_REMOTE) { + importTypeList->setCurrentItem(item); + break; + } + } + + auto* downloadCommandEdit = wizard->currentPage()->findChild("downloadCommand"); + QVERIFY(downloadCommandEdit); + QTest::keyClicks(downloadCommandEdit, sourceToSync); + + auto* temporaryDatabaseRadio = + wizard->currentPage()->findChild("temporaryDatabaseRadio"); + QVERIFY(temporaryDatabaseRadio); + QTest::mouseClick(temporaryDatabaseRadio, Qt::LeftButton); + + auto* passwordEdit = wizard->currentPage()->findChild("passwordEdit"); + QVERIFY(passwordEdit); + QTest::keyClicks(passwordEdit, "a"); + QTest::keyClick(passwordEdit, Qt::Key_Enter); + + QApplication::processEvents(); + + QVERIFY(wizard->currentPage()->findChildren().count() > 0); + + QTest::keyClick(passwordEdit, Qt::Key_Enter);); + + // remote database has been opened + QTRY_COMPARE(m_tabWidget->tabText(m_tabWidget->currentIndex()), QString("SyncDatabase [Temporary]")); +} + void TestGui::testAutoreloadDatabase() { config()->set(Config::AutoReloadOnChange, false); @@ -420,7 +614,7 @@ void TestGui::testEditEntry() // Edit the first entry ("Sample Entry") QTest::mouseClick(entryEditWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); auto* titleEdit = editEntryWidget->findChild("titleEdit"); QTest::keyClicks(titleEdit, "_test"); @@ -435,13 +629,33 @@ void TestGui::testEditEntry() // Apply the edit QTRY_VERIFY(applyButton->isEnabled()); QTest::mouseClick(applyButton, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); QCOMPARE(entry->title(), QString("Sample Entry_test")); QCOMPARE(entry->historyItems().size(), ++editCount); QVERIFY(!applyButton->isEnabled()); + // Test viewing entry history + auto historyView = editEntryWidget->findChild("historyView"); + auto showButton = editEntryWidget->findChild("showButton"); + QVERIFY(historyView); + editEntryWidget->switchToPage(EditEntryWidget::Page::History); + QApplication::processEvents(); + QVERIFY(historyView->isVisible()); + QVERIFY(!showButton->isEnabled()); + // Select the second row in the history view + historyView->setCurrentIndex(historyView->model()->index(1, 0)); + QVERIFY(showButton->isEnabled()); + QTest::mouseClick(showButton, Qt::LeftButton); + // Verify that the entry history widget is shown + auto entryHistoryWidget = m_dbWidget->findChild("editEntryHistoryWidget"); + QVERIFY(entryHistoryWidget); + QVERIFY(entryHistoryWidget->isVisible()); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); + QTest::keyClick(entryHistoryWidget, Qt::Key_Escape); + QVERIFY(historyView->isVisible()); + // Test the "known bad" checkbox - editEntryWidget->setCurrentPage(1); + editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced); auto excludeReportsCheckBox = editEntryWidget->findChild("excludeReportsCheckBox"); QVERIFY(excludeReportsCheckBox); QCOMPARE(excludeReportsCheckBox->isChecked(), false); @@ -464,7 +678,7 @@ void TestGui::testEditEntry() QCOMPARE(tags->tags().last(), QString("tag 2_is!awesome")); // Test entry colors (simulate choosing a color) - editEntryWidget->setCurrentPage(1); + editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced); auto fgColor = QString("#FF0000"); auto bgColor = QString("#0000FF"); // Set foreground color @@ -481,7 +695,7 @@ void TestGui::testEditEntry() QCOMPARE(entry->historyItems().size(), ++editCount); // Test protected attributes - editEntryWidget->setCurrentPage(1); + editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced); auto* attrTextEdit = editEntryWidget->findChild("attributesEdit"); QTest::mouseClick(editEntryWidget->findChild("addAttributeButton"), Qt::LeftButton); QString attrText = "TEST TEXT"; @@ -491,7 +705,7 @@ void TestGui::testEditEntry() QVERIFY(attrTextEdit->toPlainText().contains("PROTECTED")); QTest::mouseClick(editEntryWidget->findChild("revealAttributeButton"), Qt::LeftButton); QCOMPARE(attrTextEdit->toPlainText(), attrText); - editEntryWidget->setCurrentPage(0); + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); // Save the edit (press OK) QTest::mouseClick(okButton, Qt::LeftButton); @@ -513,10 +727,10 @@ void TestGui::testEditEntry() QTest::mouseClick(entryEditWidget, Qt::LeftButton); okButton = editEntryWidgetButtonBox->button(QDialogButtonBox::Ok); QVERIFY(okButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); titleEdit->setText("multiline\ntitle"); editEntryWidget->findChild("usernameComboBox")->lineEdit()->setText("multiline\nusername"); - editEntryWidget->findChild("passwordEdit")->setText("multiline\npassword"); + editEntryWidget->findChild("passwordEdit")->setText("multiline\npassword"); editEntryWidget->findChild("urlEdit")->setText("multiline\nurl"); QTest::mouseClick(okButton, Qt::LeftButton); @@ -572,7 +786,7 @@ void TestGui::testSearchEditEntry() // Goto "Doggy"'s edit view QTest::keyClick(searchTextEdit, Qt::Key_Return); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Check the path in header is "parent-group > entry" QCOMPARE(m_dbWidget->findChild("editEntryWidget")->findChild("headerLabel")->text(), @@ -584,6 +798,9 @@ void TestGui::testAddEntry() auto* toolBar = m_mainWindow->findChild("toolBar"); auto* entryView = m_dbWidget->findChild("entryView"); + // Given the status bar label with initial number of entries. + checkStatusBarText("1 Ent"); + // Find the new entry action auto* entryNewAction = m_mainWindow->findChild("actionEntryNew"); QVERIFY(entryNewAction->isEnabled()); @@ -595,7 +812,7 @@ void TestGui::testAddEntry() // Click the new entry button and check that we enter edit mode QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Add entry "test" and confirm added auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); @@ -618,13 +835,17 @@ void TestGui::testAddEntry() m_db->updateCommonUsernames(); + // Then the status bar label should be updated with incremented number of entries. + checkStatusBarText("2 Ent"); + // Add entry "something 2" QTest::mouseClick(entryNewWidget, Qt::LeftButton); QTest::keyClicks(titleEdit, "something 2"); QTest::mouseClick(usernameComboBox, Qt::LeftButton); QTest::keyClicks(usernameComboBox, "Auto"); QTest::keyPress(usernameComboBox, Qt::Key_Right); - auto* passwordEdit = editEntryWidget->findChild("passwordEdit"); + auto* passwordEdit = + editEntryWidget->findChild("passwordEdit")->findChild("passwordEdit"); QTest::keyClicks(passwordEdit, "something 2"); QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); @@ -644,10 +865,58 @@ void TestGui::testAddEntry() QApplication::processEvents(); - // Confirm entry count + // Confirm no changed entry count QTRY_COMPARE(entryView->model()->rowCount(), 3); } +void TestGui::testPasswordEntryEntropy_data() +{ + QTest::addColumn("password"); + QTest::addColumn("expectedStrengthLabel"); + + QTest::newRow("Empty password") << "" << "Password Quality: Poor"; + + QTest::newRow("Well-known password") << "hello" << "Password Quality: Poor"; + + QTest::newRow("Password composed of well-known words.") << "helloworld" << "Password Quality: Poor"; + + QTest::newRow("Password composed of well-known words with number.") << "password1" << "Password Quality: Poor"; + + QTest::newRow("Password out of small character space.") << "D0g.................." << "Password Quality: Poor"; + + QTest::newRow("XKCD, easy substitutions.") << "Tr0ub4dour&3" << "Password Quality: Poor"; + + QTest::newRow("XKCD, word generator.") << "correcthorsebatterystaple" << "Password Quality: Weak"; + + QTest::newRow("Random characters, medium length.") << "YQC3kbXbjC652dTDH" << "Password Quality: Good"; + + QTest::newRow("Random characters, long.") << "Bs5ZFfthWzR8DGFEjaCM6bGqhmCT4km" << "Password Quality: Excellent"; + + QTest::newRow("Long password using Zxcvbn chunk estimation") + << "quintet-tamper-kinswoman-humility-vengeful-haven-tastiness-aspire-widget-ipad-cussed-reaffirm-ladylike-" + "ashamed-anatomy-daybed-jam-swear-strudel-neatness-stalemate-unbundle-flavored-relation-emergency-underrate-" + "registry-getting-award-unveiled-unshaken-stagnate-cartridge-magnitude-ointment-hardener-enforced-scrubbed-" + "radial-fiddling-envelope-unpaved-moisture-unused-crawlers-quartered-crushed-kangaroo-tiptop-doily" + << "Password Quality: Excellent"; + + QTest::newRow("Longer password above Zxcvbn threshold") + << "quintet-tamper-kinswoman-humility-vengeful-haven-tastiness-aspire-widget-ipad-cussed-reaffirm-ladylike-" + "ashamed-anatomy-daybed-jam-swear-strudel-neatness-stalemate-unbundle-flavored-relation-emergency-underrate-" + "registry-getting-award-unveiled-unshaken-stagnate-cartridge-magnitude-ointment-hardener-enforced-scrubbed-" + "radial-fiddling-envelope-unpaved-moisture-unused-crawlers-quartered-crushed-kangaroo-tiptop-doily-hefty-" + "untie-fidgeting-radiance-twilight-freebase-sulphuric-parrot-decree-monotype-nautical-pout-sip-geometric-" + "crunching-deviancy-festival-hacking-rage-unify-coronary-zigzagged-dwindle-possum-lilly-exhume-daringly-" + "barbell-rage-animate-lapel-emporium-renounce-justifier-relieving-gauze-arrive-alive-collected-immobile-" + "unleash-snowman-gift-expansion-marbles-requisite-excusable-flatness-displace-caloric-sensuous-moustache-" + "sensuous-capillary-aversion-contents-cadet-giggly-amenity-peddling-spotting-drier-mooned-rudder-peroxide-" + "posting-oppressor-scrabble-scorer-whomever-paprika-slapstick-said-spectacle-capture-debate-attire-emcee-" + "unfocused-sympathy-doily-election-ambulance-polish-subtype-grumbling-neon-stooge-reanalyze-rockfish-" + "disparate-decorated-washroom-threefold-muzzle-buckwheat-kerosene-swell-why-reprocess-correct-shady-" + "impatient-slit-banshee-scrubbed-dreadful-unlocking-urologist-hurried-citable-fragment-septic-lapped-" + "prankish-phantom-unpaved-moisture-unused-crawlers-quartered-crushed-kangaroo-lapel-emporium-renounce" + << "Password Quality: Excellent"; +} + void TestGui::testPasswordEntryEntropy() { auto* toolBar = m_mainWindow->findChild("toolBar"); @@ -663,7 +932,7 @@ void TestGui::testPasswordEntryEntropy() // Click the new entry button and check that we enter edit mode QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Add entry "test" and confirm added auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); @@ -671,7 +940,8 @@ void TestGui::testPasswordEntryEntropy() QTest::keyClicks(titleEdit, "test"); // Open the password generator - auto* passwordEdit = editEntryWidget->findChild(); + auto* passwordEdit = + editEntryWidget->findChild("passwordEdit")->findChild("passwordEdit"); QVERIFY(passwordEdit); QTest::mouseClick(passwordEdit, Qt::LeftButton); @@ -681,56 +951,32 @@ void TestGui::testPasswordEntryEntropy() QTest::keyClick(passwordEdit, Qt::Key_G, Qt::ControlModifier); #endif - TEST_MODAL(PasswordGeneratorWidget * pwGeneratorWidget; - QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild()); + TEST_MODAL( + PasswordGeneratorWidget * pwGeneratorWidget; + QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild()); - // Type in some password - auto* generatedPassword = pwGeneratorWidget->findChild("editNewPassword"); - auto* entropyLabel = pwGeneratorWidget->findChild("entropyLabel"); - auto* strengthLabel = pwGeneratorWidget->findChild("strengthLabel"); + // Type in some password + auto* generatedPassword = + pwGeneratorWidget->findChild("editNewPassword")->findChild("passwordEdit"); + auto* entropyLabel = pwGeneratorWidget->findChild("entropyLabel"); + auto* strengthLabel = pwGeneratorWidget->findChild("strengthLabel"); + auto* passwordLengthLabel = pwGeneratorWidget->findChild("passwordLengthLabel"); - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "hello"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 6.38 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Poor")); + QFETCH(QString, password); + QFETCH(QString, expectedStrengthLabel); - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "helloworld"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 13.10 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Poor")); + // Dynamically calculate entropy due to variances with zxcvbn wordlists + PasswordHealth health(password); + auto expectedEntropy = QString("Entropy: %1 bit").arg(QString::number(health.entropy(), 'f', 2)); + auto expectedPasswordLength = QString("Characters: %1").arg(QString::number(password.length())); - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "password1"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 4.00 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Poor")); + generatedPassword->setText(password); + QCOMPARE(entropyLabel->text(), expectedEntropy); + QCOMPARE(strengthLabel->text(), expectedStrengthLabel); + QCOMPARE(passwordLengthLabel->text(), expectedPasswordLength); - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "D0g.................."); - QCOMPARE(entropyLabel->text(), QString("Entropy: 19.02 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Poor")); - - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "Tr0ub4dour&3"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 30.87 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Poor")); - - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "correcthorsebatterystaple"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 47.98 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Weak")); - - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "YQC3kbXbjC652dTDH"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 95.83 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Good")); - - generatedPassword->setText(""); - QTest::keyClicks(generatedPassword, "Bs5ZFfthWzR8DGFEjaCM6bGqhmCT4km"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 174.59 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Excellent")); - - QTest::mouseClick(generatedPassword, Qt::LeftButton); - QTest::keyClick(generatedPassword, Qt::Key_Escape);); + QTest::mouseClick(generatedPassword, Qt::LeftButton); + QTest::keyClick(generatedPassword, Qt::Key_Escape);); } void TestGui::testDicewareEntryEntropy() @@ -748,7 +994,7 @@ void TestGui::testDicewareEntryEntropy() // Click the new entry button and check that we enter edit mode QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Add entry "test" and confirm added auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); @@ -756,7 +1002,7 @@ void TestGui::testDicewareEntryEntropy() QTest::keyClicks(titleEdit, "test"); // Open the password generator - auto* passwordEdit = editEntryWidget->findChild(); + auto* passwordEdit = editEntryWidget->findChild()->findChild("passwordEdit"); QVERIFY(passwordEdit); QTest::mouseClick(passwordEdit, Qt::LeftButton); @@ -766,32 +1012,37 @@ void TestGui::testDicewareEntryEntropy() QTest::keyClick(passwordEdit, Qt::Key_G, Qt::ControlModifier); #endif - TEST_MODAL(PasswordGeneratorWidget * pwGeneratorWidget; - QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild()); + TEST_MODAL( + PasswordGeneratorWidget * pwGeneratorWidget; + QTRY_VERIFY(pwGeneratorWidget = m_dbWidget->findChild()); - // Select Diceware - auto* generatedPassword = pwGeneratorWidget->findChild("editNewPassword"); - auto* tabWidget = pwGeneratorWidget->findChild("tabWidget"); - auto* dicewareWidget = pwGeneratorWidget->findChild("dicewareWidget"); - tabWidget->setCurrentWidget(dicewareWidget); + // Select Diceware + auto* generatedPassword = + pwGeneratorWidget->findChild("editNewPassword")->findChild("passwordEdit"); + auto* tabWidget = pwGeneratorWidget->findChild("tabWidget"); + auto* dicewareWidget = pwGeneratorWidget->findChild("dicewareWidget"); + tabWidget->setCurrentWidget(dicewareWidget); - auto* comboBoxWordList = dicewareWidget->findChild("comboBoxWordList"); - comboBoxWordList->setCurrentText("eff_large.wordlist"); - auto* spinBoxWordCount = dicewareWidget->findChild("spinBoxWordCount"); - spinBoxWordCount->setValue(6); + auto* comboBoxWordList = dicewareWidget->findChild("comboBoxWordList"); + comboBoxWordList->setCurrentText("eff_large.wordlist"); + auto* spinBoxWordCount = dicewareWidget->findChild("spinBoxWordCount"); + spinBoxWordCount->setValue(6); - // Confirm a password was generated - QVERIFY(!pwGeneratorWidget->getGeneratedPassword().isEmpty()); + // Confirm a password was generated + QVERIFY(!pwGeneratorWidget->getGeneratedPassword().isEmpty()); - // Verify entropy and strength - auto* entropyLabel = pwGeneratorWidget->findChild("entropyLabel"); - auto* strengthLabel = pwGeneratorWidget->findChild("strengthLabel"); + // Verify entropy and strength + auto* entropyLabel = pwGeneratorWidget->findChild("entropyLabel"); + auto* strengthLabel = pwGeneratorWidget->findChild("strengthLabel"); + auto* wordLengthLabel = pwGeneratorWidget->findChild("passwordLengthLabel"); - QCOMPARE(entropyLabel->text(), QString("Entropy: 77.55 bit")); - QCOMPARE(strengthLabel->text(), QString("Password Quality: Good")); + QTRY_COMPARE_WITH_TIMEOUT(entropyLabel->text(), QString("Entropy: 77.54 bit"), 200); + QCOMPARE(strengthLabel->text(), QString("Password Quality: Good")); + QCOMPARE(wordLengthLabel->text(), + QString("Characters: %1").arg(QString::number(pwGeneratorWidget->getGeneratedPassword().length()))); - QTest::mouseClick(generatedPassword, Qt::LeftButton); - QTest::keyClick(generatedPassword, Qt::Key_Escape);); + QTest::mouseClick(generatedPassword, Qt::LeftButton); + QTest::keyClick(generatedPassword, Qt::Key_Escape);); } void TestGui::testTotp() @@ -831,10 +1082,10 @@ void TestGui::testTotp() QVERIFY(entryEditWidget->isVisible()); QVERIFY(entryEditWidget->isEnabled()); QTest::mouseClick(entryEditWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); - editEntryWidget->setCurrentPage(1); + editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced); auto* attrTextEdit = editEntryWidget->findChild("attributesEdit"); QTest::mouseClick(editEntryWidget->findChild("revealAttributeButton"), Qt::LeftButton); QCOMPARE(attrTextEdit->toPlainText(), expectedFinalSeed); @@ -842,12 +1093,27 @@ void TestGui::testTotp() auto* editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + // Test the TOTP value triggerAction("actionEntryTotp"); auto* totpDialog = m_dbWidget->findChild("TotpDialog"); auto* totpLabel = totpDialog->findChild("totpLabel"); - QCOMPARE(totpLabel->text().replace(" ", ""), entry->totp()); + QTRY_COMPARE(totpLabel->text().replace(" ", ""), entry->totp()); + QTest::keyClick(totpDialog, Qt::Key_Escape); + + // Test the QR code + triggerAction("actionEntryTotpQRCode"); + auto* qrCodeDialog = m_mainWindow->findChild("entryQrCodeWidget"); + QVERIFY(qrCodeDialog); + QVERIFY(qrCodeDialog->isVisible()); + auto* qrCodeWidget = qrCodeDialog->findChild("squareSvgWidget"); + QVERIFY2(qrCodeWidget->geometry().width() == qrCodeWidget->geometry().height(), "Initial QR code is not square"); + + // Test the QR code window resizing, make the dialog bigger. + qrCodeDialog->setFixedSize(800, 600); + QVERIFY2(qrCodeWidget->geometry().width() == qrCodeWidget->geometry().height(), "Resized QR code is not square"); + QTest::keyClick(qrCodeDialog, Qt::Key_Escape); } void TestGui::testSearch() @@ -882,6 +1148,10 @@ void TestGui::testSearch() QApplication::processEvents(); helpButton->trigger(); QTRY_VERIFY(!helpPanel->isVisible()); + + // Need to re-activate the window after the help test + m_mainWindow->activateWindow(); + // Search for "ZZZ" QTest::keyClicks(searchTextEdit, "ZZZ"); QTRY_COMPARE(searchTextEdit->text(), QString("ZZZ")); @@ -928,15 +1198,15 @@ void TestGui::testSearch() searchedEntry->setPassword("password"); QClipboard* clipboard = QApplication::clipboard(); - // Attempt password copy with selected test (should fail) + // Copy to clipboard: should copy search text (not password) QTest::keyClick(searchTextEdit, Qt::Key_C, Qt::ControlModifier); - QVERIFY(clipboard->text() != searchedEntry->password()); + QCOMPARE(clipboard->text(), QString("someTHING")); // Deselect text and confirm password copies QTest::mouseClick(searchTextEdit, Qt::LeftButton); QTRY_VERIFY(searchTextEdit->selectedText().isEmpty()); QTRY_VERIFY(searchTextEdit->hasFocus()); QTest::keyClick(searchTextEdit, Qt::Key_C, Qt::ControlModifier); - QCOMPARE(searchedEntry->password(), clipboard->text()); + QCOMPARE(clipboard->text(), searchedEntry->password()); // Ensure Down focuses on entry view when search text is selected QTest::keyClick(searchTextEdit, Qt::Key_A, Qt::ControlModifier); QTest::keyClick(searchTextEdit, Qt::Key_Down); @@ -944,14 +1214,27 @@ void TestGui::testSearch() QCOMPARE(entryView->currentEntry(), searchedEntry); // Test that password copies with entry focused QTest::keyClick(entryView, Qt::Key_C, Qt::ControlModifier); - QCOMPARE(searchedEntry->password(), clipboard->text()); + QCOMPARE(clipboard->text(), searchedEntry->password()); // Refocus back to search edit QTest::mouseClick(searchTextEdit, Qt::LeftButton); QTRY_VERIFY(searchTextEdit->hasFocus()); - // Test that password does not copy + // Select search text and test that password does not copy searchTextEdit->selectAll(); QTest::keyClick(searchTextEdit, Qt::Key_C, Qt::ControlModifier); QTRY_COMPARE(clipboard->text(), QString("someTHING")); + // Ensure password copies when clicking on copy password button despite selected text + auto copyPasswordAction = m_mainWindow->findChild("actionEntryCopyPassword"); + QVERIFY(copyPasswordAction); + auto copyPasswordWidget = toolBar->widgetForAction(copyPasswordAction); + QVERIFY(copyPasswordWidget); + QTest::mouseClick(copyPasswordWidget, Qt::LeftButton); + QCOMPARE(clipboard->text(), searchedEntry->password()); + // Deselect text and deselect entry, Ctrl+C should now do nothing + clipboard->clear(); + QTest::mouseClick(searchTextEdit, Qt::LeftButton); + entryView->clearSelection(); + QTest::keyClick(searchTextEdit, Qt::Key_C, Qt::ControlModifier); + QCOMPARE(clipboard->text(), QString()); // Test case sensitive search searchWidget->setCaseSensitive(true); @@ -986,6 +1269,13 @@ void TestGui::testSearch() QCOMPARE(groupView->currentGroup(), m_db->rootGroup()); QVERIFY(!m_dbWidget->isSearchActive()); + // check if first entry is selected after search + QTest::keyClicks(searchTextEdit, "some"); + QTRY_VERIFY(m_dbWidget->isSearchActive()); + QTRY_COMPARE(entryView->selectedEntries().length(), 1); + QModelIndex index_current = entryView->indexFromEntry(entryView->currentEntry()); + QTRY_COMPARE(index_current.row(), 0); + // Try to edit the first entry from the search view // Refocus back to search edit QTest::mouseClick(searchTextEdit, Qt::LeftButton); @@ -996,7 +1286,7 @@ void TestGui::testSearch() QModelIndex item = entryView->model()->index(0, 1); Entry* entry = entryView->entryFromIndex(item); QTest::keyClick(searchTextEdit, Qt::Key_Return); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Perform the edit and save it EditEntryWidget* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); @@ -1019,6 +1309,7 @@ void TestGui::testDeleteEntry() { // Add canned entries for consistent testing addCannedEntries(); + checkStatusBarText("4 Ent"); auto* groupView = m_dbWidget->findChild("groupView"); auto* entryView = m_dbWidget->findChild("entryView"); @@ -1048,6 +1339,8 @@ void TestGui::testDeleteEntry() QCOMPARE(m_db->metadata()->recycleBin()->entries().size(), 1); } + checkStatusBarText("3 Ent"); + // Select multiple entries and move them to the recycling bin clickIndex(entryView->model()->index(1, 1), entryView, Qt::LeftButton); clickIndex(entryView->model()->index(2, 1), entryView, Qt::LeftButton, Qt::ControlModifier); @@ -1132,6 +1425,7 @@ void TestGui::testCloneEntry() Entry* entryClone = entryView->entryFromIndex(entryView->model()->index(1, 1)); QVERIFY(entryOrg->uuid() != entryClone->uuid()); QCOMPARE(entryClone->title(), entryOrg->title() + QString(" - Clone")); + QVERIFY(m_dbWidget->currentSelectedEntry()->uuid() == entryClone->uuid()); } void TestGui::testEntryPlaceholders() @@ -1150,7 +1444,7 @@ void TestGui::testEntryPlaceholders() // Click the new entry button and check that we enter edit mode QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); // Add entry "test" and confirm added auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); @@ -1315,18 +1609,14 @@ void TestGui::testSaveBackupPath_data() QTest::newRow("Absolute backup path") << tmpFile.fileName() << tmpFile.fileName(); // relative paths should be resolved to database parent directory - QTest::newRow("Relative backup path (implicit)") << "other_dir/test.old.kdbx" - << "other_dir/test.old.kdbx"; - QTest::newRow("Relative backup path (explicit)") << "./other_dir2/test2.old.kdbx" - << "other_dir2/test2.old.kdbx"; + QTest::newRow("Relative backup path (implicit)") << "other_dir/test.old.kdbx" << "other_dir/test.old.kdbx"; + QTest::newRow("Relative backup path (explicit)") << "./other_dir2/test2.old.kdbx" << "other_dir2/test2.old.kdbx"; - QTest::newRow("Path with placeholders") << "{DB_FILENAME}.old.kdbx" - << "KeePassXC.old.kdbx"; + QTest::newRow("Path with placeholders") << "{DB_FILENAME}.old.kdbx" << "KeePassXC.old.kdbx"; // empty path should be replaced with default pattern QTest::newRow("Empty path") << QString("") << config()->getDefault(Config::BackupFilePathPattern).toString(); // {DB_FILENAME} should be replaced with database filename - QTest::newRow("") << "{DB_FILENAME}_.old.kdbx" - << "{DB_FILENAME}_.old.kdbx"; + QTest::newRow("") << "{DB_FILENAME}_.old.kdbx" << "{DB_FILENAME}_.old.kdbx"; } void TestGui::testSaveBackupPath() @@ -1370,39 +1660,218 @@ void TestGui::testDatabaseSettings() m_db->metadata()->setName("testDatabaseSettings"); triggerAction("actionDatabaseSettings"); auto* dbSettingsDialog = m_dbWidget->findChild("databaseSettingsDialog"); - auto* transformRoundsSpinBox = dbSettingsDialog->findChild("transformRoundsSpinBox"); - auto advancedToggle = dbSettingsDialog->findChild("advancedSettingsToggle"); + auto* dbSettingsCategoryList = dbSettingsDialog->findChild("categoryList"); + auto* dbSettingsStackedWidget = dbSettingsDialog->findChild("stackedWidget"); + auto* autosaveDelayCheckBox = dbSettingsDialog->findChild("autosaveDelayCheckBox"); + auto* autosaveDelaySpinBox = dbSettingsDialog->findChild("autosaveDelaySpinBox"); + auto* dbSettingsButtonBox = dbSettingsDialog->findChild("buttonBox"); + int autosaveDelayTestValue = 2; - advancedToggle->setChecked(true); + dbSettingsCategoryList->setCurrentCategory(1); // go into security category + auto securityTabWidget = dbSettingsStackedWidget->findChild("securityTabWidget"); + QCOMPARE(securityTabWidget->currentIndex(), 0); + + // Interact with the password edit option + auto passwordEditWidget = securityTabWidget->findChild(); + QVERIFY(passwordEditWidget); + auto editPasswordButton = passwordEditWidget->findChild("changeButton"); + QVERIFY(editPasswordButton); + QVERIFY(editPasswordButton->isVisible()); + QTest::mouseClick(editPasswordButton, Qt::LeftButton); + QApplication::processEvents(); + auto passwordWidgets = dbSettingsDialog->findChildren(); + QVERIFY(passwordWidgets.count() == 2); + QVERIFY(passwordWidgets[0]->isVisible()); + passwordWidgets[0]->setText("b"); + passwordWidgets[1]->setText("b"); + + // Toggle between tabs to ensure the password remains + securityTabWidget->setCurrentIndex(1); + QApplication::processEvents(); + securityTabWidget->setCurrentIndex(0); + QApplication::processEvents(); + QCOMPARE(passwordWidgets[0]->text(), QString("b")); + + // Cancel password change and confirm password is cleared + auto cancelPasswordButton = passwordEditWidget->findChild("cancelButton"); + QVERIFY(cancelPasswordButton); + QTest::mouseClick(cancelPasswordButton, Qt::LeftButton); + QApplication::processEvents(); + QVERIFY(!passwordWidgets[0]->isVisible()); + QCOMPARE(passwordWidgets[0]->text(), QString("")); + QVERIFY(editPasswordButton->isVisible()); + + // Switch to encryption tab and interact with various settings + securityTabWidget->setCurrentIndex(1); QApplication::processEvents(); - QVERIFY(transformRoundsSpinBox != nullptr); + // Verify database is KDBX3 + auto compatibilitySelection = securityTabWidget->findChild("compatibilitySelection"); + QVERIFY(compatibilitySelection); + QVERIFY(compatibilitySelection->isEnabled()); + QCOMPARE(compatibilitySelection->currentText(), QString("KDBX 3")); + + // Verify advanced settings + auto encryptionSettings = securityTabWidget->findChild("encryptionSettingsTabWidget"); + auto advancedTab = encryptionSettings->findChild("advancedTab"); + encryptionSettings->setCurrentWidget(advancedTab); + QApplication::processEvents(); + + // Verify KDF is AES KDBX3 + auto kdfSelection = advancedTab->findChild("kdfComboBox"); + QVERIFY(kdfSelection->isVisible()); + QCOMPARE(kdfSelection->currentText(), QString("AES-KDF (KDBX 3)")); + + auto transformRoundsSpinBox = advancedTab->findChild("transformRoundsSpinBox"); + QVERIFY(transformRoundsSpinBox); + + // Adjust compatibility to KDBX4 and wait for KDF to update + compatibilitySelection->setCurrentIndex(0); + QTRY_VERIFY(transformRoundsSpinBox->isEnabled()); + QCOMPARE(compatibilitySelection->currentText().left(6), QString("KDBX 4")); + QCOMPARE(kdfSelection->currentText().left(7), QString("Argon2d")); + + // Switch to AES KDBX4, change rounds, then accept + kdfSelection->setCurrentIndex(2); + QCOMPARE(kdfSelection->currentText(), QString("AES-KDF (KDBX 4)")); transformRoundsSpinBox->setValue(123456); QTest::keyClick(transformRoundsSpinBox, Qt::Key_Enter); QTRY_COMPARE(m_db->kdf()->rounds(), 123456); + QVERIFY(m_db->formatVersion() >= KeePass2::FILE_VERSION_4); + QCOMPARE(m_db->kdf()->uuid(), KeePass2::KDF_AES_KDBX4); + + // Go back into database settings + triggerAction("actionDatabaseSettings"); + + // test disable and default values for maximum history items and size + auto* historyMaxItemsCheckBox = dbSettingsDialog->findChild("historyMaxItemsCheckBox"); + auto* historyMaxItemsSpinBox = dbSettingsDialog->findChild("historyMaxItemsSpinBox"); + auto* historyMaxSizeCheckBox = dbSettingsDialog->findChild("historyMaxSizeCheckBox"); + auto* historyMaxSizeSpinBox = dbSettingsDialog->findChild("historyMaxSizeSpinBox"); + // test defaults + QCOMPARE(historyMaxItemsSpinBox->value(), Metadata::DefaultHistoryMaxItems); + QCOMPARE(historyMaxSizeSpinBox->value(), qRound(Metadata::DefaultHistoryMaxSize / qreal(1024 * 1024))); + // disable and test setting as well + historyMaxItemsCheckBox->setChecked(false); + historyMaxSizeCheckBox->setChecked(false); + QTest::mouseClick(dbSettingsButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + QTRY_COMPARE(m_db->metadata()->historyMaxItems(), -1); + QTRY_COMPARE(m_db->metadata()->historyMaxSize(), -1); + // then open to check the saved disabled state in gui + triggerAction("actionDatabaseSettings"); + QCOMPARE(historyMaxItemsCheckBox->isChecked(), false); + QCOMPARE(historyMaxSizeCheckBox->isChecked(), false); + QTest::mouseClick(dbSettingsButtonBox->button(QDialogButtonBox::Cancel), Qt::LeftButton); + + // Test loading default values and setting autosaveDelay + triggerAction("actionDatabaseSettings"); + QVERIFY(autosaveDelayCheckBox->isChecked() == false); + autosaveDelayCheckBox->toggle(); + autosaveDelaySpinBox->setValue(autosaveDelayTestValue); + QTest::mouseClick(dbSettingsButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + QTRY_COMPARE(m_db->metadata()->autosaveDelayMin(), autosaveDelayTestValue); checkSaveDatabase(); -} -void TestGui::testKeePass1Import() -{ - fileDialog()->setNextFileName(QString(KEEPASSX_TEST_DATA_DIR).append("/basic.kdb")); - triggerAction("actionImportKeePass1"); + // Test loading autosaveDelay non-default values + triggerAction("actionDatabaseSettings"); + QTRY_COMPARE(autosaveDelayCheckBox->isChecked(), true); + QTRY_COMPARE(autosaveDelaySpinBox->value(), autosaveDelayTestValue); + QTest::mouseClick(dbSettingsButtonBox->button(QDialogButtonBox::Cancel), Qt::LeftButton); - auto* keepass1OpenWidget = m_tabWidget->currentDatabaseWidget()->findChild("keepass1OpenWidget"); - auto* editPassword = keepass1OpenWidget->findChild("editPassword"); - QVERIFY(editPassword); + // test autosave delay - QTest::keyClicks(editPassword, "masterpw"); - QTest::keyClick(editPassword, Qt::Key_Enter); + // 1 init + config()->set(Config::AutoSaveAfterEveryChange, true); + QSignalSpy writeDbSignalSpy(m_db.data(), &Database::databaseSaved); - QTRY_COMPARE(m_tabWidget->count(), 2); - QTRY_COMPARE(m_tabWidget->tabText(m_tabWidget->currentIndex()), QString("basic [New Database]*")); + // 2 create new entries - // Close the KeePass1 Database - MessageBox::setNextAnswer(MessageBox::No); - triggerAction("actionDatabaseClose"); - QApplication::processEvents(); + // 2.a) Click the new entry button and set the title + auto* entryNewAction = m_mainWindow->findChild("actionEntryNew"); + QVERIFY(entryNewAction->isEnabled()); + + auto* toolBar = m_mainWindow->findChild("toolBar"); + QVERIFY(toolBar); + + QWidget* entryNewWidget = toolBar->widgetForAction(entryNewAction); + + QTest::mouseClick(entryNewWidget, Qt::LeftButton); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); + + auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); + QVERIFY(editEntryWidget); + auto* titleEdit = editEntryWidget->findChild("titleEdit"); + QVERIFY(titleEdit); + + QTest::keyClicks(titleEdit, "Test autosaveDelay 1"); + + // 2.b) Save changes + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); + auto* editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); + QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + + // 2.c) Make sure file was not modified yet + Tools::wait(150); // due to modify timer + QTRY_COMPARE(writeDbSignalSpy.count(), 0); + + // 2.d) Create second entry to test delay timer reset + QTest::mouseClick(entryNewWidget, Qt::LeftButton); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); + QTest::keyClicks(titleEdit, "Test autosaveDelay 2"); + + // 2.e) Save changes + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); + editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); + QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + + // 3 Double check both true negative and true positive + // 3.a) Test unmodified prior to delay timeout + Tools::wait(150); // due to modify timer + QTRY_COMPARE(writeDbSignalSpy.count(), 0); + + // 3.b) Test modification time after expected + m_dbWidget->triggerAutosaveTimer(); + QTRY_COMPARE(writeDbSignalSpy.count(), 1); + + // 4 Test no delay when disabled autosave or autosaveDelay + // 4.a) create new entry + QTest::mouseClick(entryNewWidget, Qt::LeftButton); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); + QTest::keyClicks(titleEdit, "Test autosaveDelay 3"); + + // 4.b) Save changes + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); + editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); + QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + + // 4.c) Start timer + Tools::wait(150); // due to modify timer + + // 4.d) Disable autosave + config()->set(Config::AutoSaveAfterEveryChange, false); + + // 4.e) Make sure changes are not saved + m_dbWidget->triggerAutosaveTimer(); + QTRY_COMPARE(writeDbSignalSpy.count(), 1); + + // 4.f) Repeat for autosaveDelay + config()->set(Config::AutoSaveAfterEveryChange, true); + QTest::mouseClick(entryNewWidget, Qt::LeftButton); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); + QTest::keyClicks(titleEdit, "Test autosaveDelay 4"); + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); + editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); + QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); + Tools::wait(150); // due to modify timer + m_db->metadata()->setAutosaveDelayMin(0); + + // 4.g) Make sure changes are not saved + m_dbWidget->triggerAutosaveTimer(); + QTRY_COMPARE(writeDbSignalSpy.count(), 1); + + // 5 Cleanup + config()->set(Config::AutoSaveAfterEveryChange, false); } void TestGui::testDatabaseLocking() @@ -1422,7 +1891,8 @@ void TestGui::testDatabaseLocking() DatabaseWidget* dbWidget = m_tabWidget->currentDatabaseWidget(); QVERIFY(dbWidget->isLocked()); auto* unlockDatabaseWidget = dbWidget->findChild("databaseOpenWidget"); - QWidget* editPassword = unlockDatabaseWidget->findChild("editPassword"); + QWidget* editPassword = + unlockDatabaseWidget->findChild("editPassword")->findChild("passwordEdit"); QVERIFY(editPassword); QTest::keyClicks(editPassword, "a"); @@ -1597,6 +2067,52 @@ void TestGui::testTrayRestoreHide() #endif } +void TestGui::testShortcutConfig() +{ + // Action collection should not be empty + QVERIFY(!ActionCollection::instance()->actions().isEmpty()); + + // Add an action, make sure it gets added + QAction* a = new QAction(ActionCollection::instance()); + a->setObjectName("MyAction1"); + ActionCollection::instance()->addAction(a); + QVERIFY(ActionCollection::instance()->actions().contains(a)); + + const QKeySequence seq(Qt::CTRL + Qt::SHIFT + Qt::ALT + Qt::Key_N); + ActionCollection::instance()->setDefaultShortcut(a, seq); + QCOMPARE(ActionCollection::instance()->defaultShortcut(a), seq); + + bool v = false; + m_mainWindow->addAction(a); + connect(a, &QAction::triggered, ActionCollection::instance(), [&v] { v = !v; }); + QTest::keyClick(m_mainWindow.data(), Qt::Key_N, Qt::ControlModifier | Qt::ShiftModifier | Qt::AltModifier); + QVERIFY(v); + + // Change shortcut and save + const QKeySequence newSeq(Qt::CTRL + Qt::SHIFT + Qt::ALT + Qt::Key_M); + a->setShortcut(newSeq); + QVERIFY(a->shortcut() != ActionCollection::instance()->defaultShortcut(a)); + ActionCollection::instance()->saveShortcuts(); + QCOMPARE(a->shortcut(), newSeq); + const auto shortcuts = Config::instance()->getShortcuts(); + Config::ShortcutEntry entryForA; + for (const auto& s : shortcuts) { + if (s.name == a->objectName()) { + entryForA = s; + break; + } + } + QCOMPARE(entryForA.name, a->objectName()); + QCOMPARE(QKeySequence::fromString(entryForA.shortcut), a->shortcut()); + + // trigger the old shortcut + QTest::keyClick(m_mainWindow.data(), Qt::Key_N, Qt::ControlModifier | Qt::ShiftModifier | Qt::AltModifier); + QVERIFY(v); // value of v should not change + QTest::keyClick(m_mainWindow.data(), Qt::Key_M, Qt::ControlModifier | Qt::ShiftModifier | Qt::AltModifier); + QVERIFY(!v); + disconnect(a, nullptr, nullptr, nullptr); +} + void TestGui::testAutoType() { // Clear entries from root group to guarantee order @@ -1619,7 +2135,7 @@ void TestGui::testAutoType() QVERIFY(entryNewWidget->isEnabled()); QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); QVERIFY(editEntryWidget); @@ -1636,7 +2152,7 @@ void TestGui::testAutoType() QTest::keyClicks(usernameComboBox, "AutocompletionUsername"); // 1.b) Uncheck Auto-Type checkbox - editEntryWidget->setCurrentPage(3); + editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType); auto* enableAutoTypeButton = editEntryWidget->findChild("enableButton"); QVERIFY(enableAutoTypeButton); QVERIFY(enableAutoTypeButton->isVisible()); @@ -1646,7 +2162,7 @@ void TestGui::testAutoType() QVERIFY(!enableAutoTypeButton->isChecked()); // 1.c) Save changes - editEntryWidget->setCurrentPage(0); + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); auto* editEntryWidgetButtonBox = editEntryWidget->findChild("buttonBox"); QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); @@ -1654,32 +2170,32 @@ void TestGui::testAutoType() // 2.a) Click the new entry button and set the title QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); QTest::keyClicks(titleEdit, "2. Entry With Default Auto-Type Sequence"); QTest::mouseClick(usernameComboBox, Qt::LeftButton); QTest::keyClicks(usernameComboBox, "AutocompletionUsername"); // 2.b) Confirm AutoType is enabled and default - editEntryWidget->setCurrentPage(3); + editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType); QVERIFY(enableAutoTypeButton->isChecked()); auto* inheritSequenceButton = editEntryWidget->findChild("inheritSequenceButton"); QVERIFY(inheritSequenceButton->isChecked()); // 2.c) Save changes - editEntryWidget->setCurrentPage(0); + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); // 3. Create an entry with custom Auto-Type sequence // 3.a) Click the new entry button and set the title QTest::mouseClick(entryNewWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); QTest::keyClicks(titleEdit, "3. Entry With Custom Auto-Type Sequence"); QTest::mouseClick(usernameComboBox, Qt::LeftButton); QTest::keyClicks(usernameComboBox, "AutocompletionUsername"); // 3.b) Confirm AutoType is enabled and set custom sequence - editEntryWidget->setCurrentPage(3); + editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType); QVERIFY(enableAutoTypeButton->isChecked()); auto* customSequenceButton = editEntryWidget->findChild("customSequenceButton"); QTest::mouseClick(customSequenceButton, Qt::LeftButton); @@ -1692,7 +2208,7 @@ void TestGui::testAutoType() QTest::keyClicks(sequenceEdit, "{USERNAME}{TAB}{TAB}{PASSWORD}{ENTER}"); // 3.c) Save changes - editEntryWidget->setCurrentPage(0); + editEntryWidget->switchToPage(EditEntryWidget::Page::Main); QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton); QApplication::processEvents(); @@ -1750,6 +2266,155 @@ void TestGui::testAutoType() entryView->selectionModel()->clearSelection(); } +void TestGui::testMenuActionStates() +{ + auto isActionEnabled = [this](const QString& actionName) -> bool { + auto action = m_mainWindow->findChild(actionName); + if (!action) { + QTest::qFail(qPrintable(QString("Invalid action specified: %1").arg(actionName)), __FILE__, __LINE__); + return false; + } + return action->isEnabled(); + }; + + // Start with database open and unlocked + qInfo("Actions Test: Database open and unlocked"); + + QVERIFY(isActionEnabled("actionEntryNew")); + QVERIFY(isActionEnabled("actionGroupNew")); + QVERIFY(isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(isActionEnabled("actionDatabaseClose")); + QVERIFY(isActionEnabled("actionDatabaseMerge")); + QVERIFY(isActionEnabled("actionDatabaseSettings")); + QVERIFY(isActionEnabled("actionReports")); + QVERIFY(isActionEnabled("actionLockDatabase")); + QVERIFY(isActionEnabled("actionLockAllDatabases")); + QVERIFY(isActionEnabled("actionImport")); + QVERIFY(isActionEnabled("actionExportCsv")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Edit entry actions + qInfo("Actions Test: Editing an entry"); + + triggerAction("actionEntryEdit"); + + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(isActionEnabled("actionEntryCopyUsername")); + QVERIFY(!isActionEnabled("actionEntrySetupTotp")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(isActionEnabled("actionDatabaseClose")); + QVERIFY(!isActionEnabled("actionDatabaseMerge")); + QVERIFY(!isActionEnabled("actionDatabaseSettings")); + QVERIFY(!isActionEnabled("actionReports")); + QVERIFY(isActionEnabled("actionLockDatabase")); + QVERIFY(isActionEnabled("actionLockAllDatabases")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Special Case - Recycle Bin + qInfo("Actions Test: Special case - Recycle Bin"); + + m_dbWidget->switchToMainView(); + QApplication::processEvents(); + + QVERIFY(m_db->metadata()->recycleBinEnabled()); + triggerAction("actionEntryDelete"); + m_dbWidget->groupView()->setCurrentGroup(m_db->metadata()->recycleBin()); + QVERIFY(m_dbWidget->isRecycleBinSelected()); + QVERIFY(isActionEnabled("actionEntryRestore")); + QVERIFY(isActionEnabled("actionGroupEmptyRecycleBin")); + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(!isActionEnabled("actionEntryClone")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(!isActionEnabled("actionGroupClone")); + + // Database Settings + qInfo("Actions Test: Database settings"); + triggerAction("actionDatabaseSettings"); + + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(!isActionEnabled("actionEntrySetupTotp")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(isActionEnabled("actionDatabaseClose")); + QVERIFY(!isActionEnabled("actionDatabaseMerge")); + QVERIFY(isActionEnabled("actionDatabaseSettings")); + QVERIFY(isActionEnabled("actionDatabaseSecurity")); + QVERIFY(!isActionEnabled("actionReports")); + QVERIFY(isActionEnabled("actionLockDatabase")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Database Reports + qInfo("Actions Test: Database reports"); + + triggerAction("actionDatabaseSettings"); + triggerAction("actionReports"); + + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(!isActionEnabled("actionEntrySetupTotp")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(isActionEnabled("actionDatabaseClose")); + QVERIFY(!isActionEnabled("actionDatabaseMerge")); + QVERIFY(!isActionEnabled("actionDatabaseSettings")); + QVERIFY(!isActionEnabled("actionDatabaseSecurity")); + QVERIFY(isActionEnabled("actionReports")); + QVERIFY(isActionEnabled("actionLockDatabase")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Application Settings + qInfo("Actions Test: Application settings"); + + triggerAction("actionSettings"); + + QVERIFY(!isActionEnabled("actionDatabaseSettings")); + QVERIFY(!isActionEnabled("actionDatabaseSecurity")); + QVERIFY(!isActionEnabled("actionReports")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Locked Database + qInfo("Actions Test: Database locked"); + + triggerAction("actionSettings"); + MessageBox::setNextAnswer(MessageBox::Discard); + triggerAction("actionLockDatabase"); + + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(!isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(isActionEnabled("actionDatabaseClose")); + QVERIFY(!isActionEnabled("actionDatabaseMerge")); + QVERIFY(!isActionEnabled("actionDatabaseSettings")); + QVERIFY(!isActionEnabled("actionReports")); + QVERIFY(!isActionEnabled("actionLockDatabase")); + QVERIFY(!isActionEnabled("actionLockAllDatabases")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); + + // Welcome Screen + qInfo("Actions Test: Welcome screen"); + + triggerAction("actionDatabaseClose"); + + QVERIFY(!isActionEnabled("actionEntryNew")); + QVERIFY(!isActionEnabled("actionGroupNew")); + QVERIFY(!isActionEnabled("actionDatabaseSaveAs")); + QVERIFY(!isActionEnabled("actionDatabaseClose")); + QVERIFY(!isActionEnabled("actionDatabaseMerge")); + QVERIFY(!isActionEnabled("actionDatabaseSettings")); + QVERIFY(!isActionEnabled("actionReports")); + QVERIFY(!isActionEnabled("actionLockDatabase")); + QVERIFY(!isActionEnabled("actionLockAllDatabases")); + QVERIFY(isActionEnabled("actionImport")); + QVERIFY(isActionEnabled("actionSettings")); + QVERIFY(isActionEnabled("actionPasswordGenerator")); +} + void TestGui::addCannedEntries() { // Find buttons @@ -1757,7 +2422,8 @@ void TestGui::addCannedEntries() QWidget* entryNewWidget = toolBar->widgetForAction(m_mainWindow->findChild("actionEntryNew")); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); auto* titleEdit = editEntryWidget->findChild("titleEdit"); - auto* passwordEdit = editEntryWidget->findChild("passwordEdit"); + auto* passwordEdit = + editEntryWidget->findChild("passwordEdit")->findChild("passwordEdit"); // Add entry "test" and confirm added QTest::mouseClick(entryNewWidget, Qt::LeftButton); @@ -1812,11 +2478,19 @@ void TestGui::checkSaveDatabase() QFAIL("Could not save database."); } +void TestGui::checkStatusBarText(const QString& textFragment) +{ + QApplication::processEvents(); + QVERIFY(m_statusBarLabel->isVisible()); + QTRY_VERIFY2(m_statusBarLabel->text().startsWith(textFragment), + qPrintable(QString("'%1' doesn't start with '%2'").arg(m_statusBarLabel->text(), textFragment))); +} + void TestGui::triggerAction(const QString& name) { auto* action = m_mainWindow->findChild(name); - QVERIFY(action); - QVERIFY(action->isEnabled()); + QVERIFY2(action, qPrintable(QString("Action doesn't exist: %1").arg(name))); + QVERIFY2(action->isEnabled(), qPrintable(QString("Action is disabled: %1").arg(name))); action->trigger(); QApplication::processEvents(); } @@ -1850,5 +2524,6 @@ void TestGui::clickIndex(const QModelIndex& index, Qt::MouseButton button, Qt::KeyboardModifiers stateKey) { + view->scrollTo(index); QTest::mouseClick(view->viewport(), button, stateKey, view->visualRect(index).center()); } diff --git a/tests/gui/TestGui.h b/tests/gui/TestGui.h index 2a1baed2d..514f7ce95 100644 --- a/tests/gui/TestGui.h +++ b/tests/gui/TestGui.h @@ -40,12 +40,16 @@ private slots: void testSettingsDefaultTabOrder(); void testCreateDatabase(); void testMergeDatabase(); + void testRemoteSyncDatabaseSameKey(); + void testRemoteSyncDatabaseRequiresPassword(); + void testOpenRemoteDatabase(); void testAutoreloadDatabase(); void testTabs(); void testEditEntry(); void testSearchEditEntry(); void testAddEntry(); void testPasswordEntryEntropy(); + void testPasswordEntryEntropy_data(); void testDicewareEntryEntropy(); void testTotp(); void testSearch(); @@ -60,12 +64,13 @@ private slots: void testSaveBackupPath(); void testSaveBackupPath_data(); void testDatabaseSettings(); - void testKeePass1Import(); void testDatabaseLocking(); void testDragAndDropKdbxFiles(); void testSortGroups(); void testAutoType(); void testTrayRestoreHide(); + void testShortcutConfig(); + void testMenuActionStates(); private: void addCannedEntries(); @@ -81,10 +86,13 @@ private: void clickIndex(const QModelIndex& index, QAbstractItemView* view, Qt::MouseButton button, - Qt::KeyboardModifiers stateKey = 0); + Qt::KeyboardModifiers stateKey = {}); void checkSaveDatabase(); + void checkStatusBarText(const QString& textFragment); + void prepareAndTriggerRemoteSync(); QScopedPointer m_mainWindow; + QPointer m_statusBarLabel; QPointer m_tabWidget; QPointer m_dbWidget; QSharedPointer m_db; diff --git a/tests/gui/TestGuiBrowser.cpp b/tests/gui/TestGuiBrowser.cpp index bcc218240..26fd72690 100644 --- a/tests/gui/TestGuiBrowser.cpp +++ b/tests/gui/TestGuiBrowser.cpp @@ -35,15 +35,14 @@ #include "gui/DatabaseTabWidget.h" #include "gui/FileDialog.h" #include "gui/MessageBox.h" +#include "gui/PasswordWidget.h" #include "gui/entry/EditEntryWidget.h" #include "gui/entry/EntryView.h" int main(int argc, char* argv[]) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); -#endif Application app(argc, argv); app.setApplicationName("KeePassXC"); app.setApplicationVersion(KEEPASSXC_VERSION); @@ -59,16 +58,17 @@ int main(int argc, char* argv[]) void TestGuiBrowser::initTestCase() { QVERIFY(Crypto::init()); - Config::createTempFileInstance(); + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); // Disable autosave so we can test the modified file indicator config()->set(Config::AutoSaveAfterEveryChange, false); config()->set(Config::AutoSaveOnExit, false); // Enable the tray icon so we can test hiding/restoring the windowQByteArray config()->set(Config::GUI_ShowTrayIcon, true); - // Disable advanced settings mode (activate within individual tests to test advanced settings) - config()->set(Config::GUI_AdvancedSettings, false); // Disable the update check first time alert config()->set(Config::UpdateCheckMessageShown, true); + // Disable quick unlock + config()->set(Config::Security_QuickUnlock, false); m_mainWindow.reset(new MainWindow()); m_tabWidget = m_mainWindow->findChild("tabWidget"); @@ -90,7 +90,8 @@ void TestGuiBrowser::init() auto* databaseOpenWidget = m_tabWidget->currentDatabaseWidget()->findChild("databaseOpenWidget"); QVERIFY(databaseOpenWidget); - auto* editPassword = databaseOpenWidget->findChild("editPassword"); + auto* editPassword = + databaseOpenWidget->findChild("editPassword")->findChild("passwordEdit"); QVERIFY(editPassword); editPassword->setFocus(); @@ -142,7 +143,7 @@ void TestGuiBrowser::testEntrySettings() auto* entryEditAction = m_mainWindow->findChild("actionEntryEdit"); QWidget* entryEditWidget = toolBar->widgetForAction(entryEditAction); QTest::mouseClick(entryEditWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); // Switch to Properties page and select all rows from the custom data table @@ -186,7 +187,7 @@ void TestGuiBrowser::testAdditionalURLs() auto* entryEditAction = m_mainWindow->findChild("actionEntryEdit"); QWidget* entryEditWidget = toolBar->widgetForAction(entryEditAction); QTest::mouseClick(entryEditWidget, Qt::LeftButton); - QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditMode); + QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode); auto* editEntryWidget = m_dbWidget->findChild("editEntryWidget"); // Switch to Browser Integration page and add three URL's diff --git a/tests/gui/TestGuiBrowser.h b/tests/gui/TestGuiBrowser.h index d34a97f01..4d88a3a75 100644 --- a/tests/gui/TestGuiBrowser.h +++ b/tests/gui/TestGuiBrowser.h @@ -46,7 +46,7 @@ private: void clickIndex(const QModelIndex& index, QAbstractItemView* view, Qt::MouseButton button, - Qt::KeyboardModifiers stateKey = 0); + Qt::KeyboardModifiers stateKey = {}); QScopedPointer m_mainWindow; QPointer m_tabWidget; diff --git a/tests/gui/TestGuiFdoSecrets.cpp b/tests/gui/TestGuiFdoSecrets.cpp index a2b5647df..fc7e218ea 100644 --- a/tests/gui/TestGuiFdoSecrets.cpp +++ b/tests/gui/TestGuiFdoSecrets.cpp @@ -26,6 +26,7 @@ #include "config-keepassx-tests.h" +#include "core/Global.h" #include "core/Tools.h" #include "crypto/Crypto.h" #include "gui/Application.h" @@ -33,6 +34,7 @@ #include "gui/FileDialog.h" #include "gui/MainWindow.h" #include "gui/MessageBox.h" +#include "gui/PasswordWidget.h" #include "gui/wizard/NewDatabaseWizard.h" #include "util/FdoSecretsProxy.h" #include "util/TemporaryFile.h" @@ -45,10 +47,8 @@ int main(int argc, char* argv[]) { -#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); -#endif Application app(argc, argv); app.setApplicationName("KeePassXC"); app.setApplicationVersion(KEEPASSXC_VERSION); @@ -119,8 +119,8 @@ class FakeClient : public DBusClient public: explicit FakeClient(DBusMgr* dbus) : DBusClient( - dbus, - {QStringLiteral("local"), 0, true, {ProcInfo{0, 0, QStringLiteral("fake-client"), QString{}, QString{}}}}) + dbus, + {QStringLiteral("local"), 0, true, {ProcInfo{0, 0, QStringLiteral("fake-client"), QString{}, QString{}}}}) { } }; @@ -136,11 +136,14 @@ TestGuiFdoSecrets::~TestGuiFdoSecrets() = default; void TestGuiFdoSecrets::initTestCase() { VERIFY(Crypto::init()); - Config::createTempFileInstance(); + // Create temporary config file + Config::createConfigFromFile(TemporaryFile::createTempConfigFile(), {}); config()->set(Config::AutoSaveAfterEveryChange, false); config()->set(Config::AutoSaveOnExit, false); config()->set(Config::GUI_ShowTrayIcon, true); config()->set(Config::UpdateCheckMessageShown, true); + // Disable quick unlock + config()->set(Config::Security_QuickUnlock, false); // Disable secret service integration (activate within individual tests to test the plugin) FdoSecrets::settings()->setEnabled(false); // activate within individual tests @@ -182,7 +185,7 @@ void TestGuiFdoSecrets::init() m_dbFile.reset(new TemporaryFile()); // Write the temp storage to a temp database file for use in our tests VERIFY(m_dbFile->open()); - COMPARE(m_dbFile->write(m_dbData), static_cast((m_dbData.size()))); + COMPARE(m_dbFile->write(m_dbData), static_cast(m_dbData.size())); m_dbFile->close(); // make sure window is activated or focus tests may fail @@ -197,6 +200,12 @@ void TestGuiFdoSecrets::init() // by default expose the root group FdoSecrets::settings()->setExposedGroup(m_db, m_db->rootGroup()->uuid()); VERIFY(m_dbWidget->save()); + + // enforce consistent default settings at the beginning + FdoSecrets::settings()->setUnlockBeforeSearch(false); + FdoSecrets::settings()->setShowNotification(false); + FdoSecrets::settings()->setConfirmAccessItem(false); + FdoSecrets::settings()->setEnabled(false); } // Every test ends with closing the temp database without saving @@ -387,6 +396,62 @@ void TestGuiFdoSecrets::testServiceSearchBlockingUnlock() } } +void TestGuiFdoSecrets::testServiceSearchBlockingUnlockMultiple() +{ + // setup: two databases, both locked, one with exposed db, the other not. + + // add another database tab with a database with no exposed group + // to avoid modify the original, copy to a temp file first + QFile sourceDbFile(QStringLiteral(KEEPASSX_TEST_DATA_DIR "/NewDatabase2.kdbx")); + QByteArray dbData; + VERIFY(sourceDbFile.open(QIODevice::ReadOnly)); + VERIFY(Tools::readAllFromDevice(&sourceDbFile, dbData)); + sourceDbFile.close(); + + QTemporaryFile anotherFile; + VERIFY(anotherFile.open()); + COMPARE(anotherFile.write(dbData), static_cast(dbData.size())); + anotherFile.close(); + + m_tabWidget->addDatabaseTab(anotherFile.fileName(), false); + auto anotherWidget = m_tabWidget->currentDatabaseWidget(); + + auto service = enableService(); + VERIFY(service); + + // when there are multiple locked databases, + // repeatedly show the dialog until there is at least one unlocked collection + FdoSecrets::settings()->setUnlockBeforeSearch(true); + + // when only unlocking the one with no exposed group, a second dialog is shown + lockDatabaseInBackend(); + { + bool unlockDialogWorks = false; + QTimer::singleShot(50, [&]() { + unlockDialogWorks = driveUnlockDialog(anotherWidget); + QTimer::singleShot(50, [&]() { unlockDialogWorks &= driveUnlockDialog(); }); + }); + + DBUS_GET2(unlocked, locked, service->SearchItems({{"Title", "Sample Entry"}})); + VERIFY(unlockDialogWorks); + COMPARE(locked, {}); + COMPARE(unlocked.size(), 1); + } + + // when unlocking the one with exposed group, the other one remains locked + lockDatabaseInBackend(); + { + bool unlockDialogWorks = false; + QTimer::singleShot(50, [&]() { unlockDialogWorks = driveUnlockDialog(m_dbWidget); }); + + DBUS_GET2(unlocked, locked, service->SearchItems({{"Title", "Sample Entry"}})); + VERIFY(unlockDialogWorks); + COMPARE(locked, {}); + COMPARE(unlocked.size(), 1); + VERIFY(anotherWidget->isLocked()); + } +} + void TestGuiFdoSecrets::testServiceSearchForce() { auto service = enableService(); @@ -1093,6 +1158,31 @@ void TestGuiFdoSecrets::testItemCreate() } } +void TestGuiFdoSecrets::testItemCreateUnlock() +{ + auto service = enableService(); + VERIFY(service); + auto coll = getDefaultCollection(service); + VERIFY(coll); + auto sess = openSession(service, DhIetf1024Sha256Aes128CbcPkcs7::Algorithm); + VERIFY(sess); + + // NOTE: entries are no longer valid after locking + lockDatabaseInBackend(); + + QSignalSpy spyItemCreated(coll.data(), SIGNAL(ItemCreated(QDBusObjectPath))); + VERIFY(spyItemCreated.isValid()); + + // create item + StringStringMap attributes{ + {"application", "fdosecrets-test"}, + {"attr-i[bute]", "![some] -value*"}, + }; + + auto item = createItem(sess, coll, "abc", "Password", attributes, false, false, true); + VERIFY(item); +} + void TestGuiFdoSecrets::testItemChange() { auto service = enableService(); @@ -1158,7 +1248,7 @@ void TestGuiFdoSecrets::testItemReplace() { DBUS_GET2(unlocked, locked, service->SearchItems({{"application", "fdosecrets-test"}})); QSet expected{QDBusObjectPath(item1->path()), QDBusObjectPath(item2->path())}; - COMPARE(QSet::fromList(unlocked), expected); + COMPARE(Tools::asSet(unlocked), expected); } QSignalSpy spyItemCreated(coll.data(), SIGNAL(ItemCreated(QDBusObjectPath))); @@ -1175,7 +1265,7 @@ void TestGuiFdoSecrets::testItemReplace() // there are still 2 entries DBUS_GET2(unlocked, locked, service->SearchItems({{"application", "fdosecrets-test"}})); QSet expected{QDBusObjectPath(item1->path()), QDBusObjectPath(item2->path())}; - COMPARE(QSet::fromList(unlocked), expected); + COMPARE(Tools::asSet(unlocked), expected); VERIFY(waitForSignal(spyItemCreated, 0)); // there may be multiple changed signals, due to each item attribute is set separately @@ -1201,7 +1291,7 @@ void TestGuiFdoSecrets::testItemReplace() QDBusObjectPath(item2->path()), QDBusObjectPath(item4->path()), }; - COMPARE(QSet::fromList(unlocked), expected); + COMPARE(Tools::asSet(unlocked), expected); VERIFY(waitForSignal(spyItemCreated, 1)); { @@ -1529,7 +1619,7 @@ void TestGuiFdoSecrets::testExposeSubgroup() for (const auto& itemPath : itemPaths) { exposedEntries << m_plugin->dbus()->pathToObject(itemPath)->backend(); } - COMPARE(exposedEntries, QSet::fromList(subgroup->entries())); + COMPARE(exposedEntries, Tools::asSet(subgroup->entries())); } void TestGuiFdoSecrets::testModifyingExposedGroup() @@ -1564,9 +1654,42 @@ void TestGuiFdoSecrets::testModifyingExposedGroup() } } +void TestGuiFdoSecrets::testNoExposeRecycleBin() +{ + // when the recycle bin is underneath the exposed group + // be careful not to expose entries in there + + FdoSecrets::settings()->setExposedGroup(m_db, m_db->rootGroup()->uuid()); + m_db->metadata()->setRecycleBinEnabled(true); + + auto entry = m_db->rootGroup()->entries().first(); + VERIFY(entry); + m_db->recycleEntry(entry); + processEvents(); + + auto service = enableService(); + VERIFY(service); + + auto coll = getDefaultCollection(service); + VERIFY(coll); + + // exposing subgroup does not expose entries in other groups + DBUS_GET(itemPaths, coll->items()); + QSet exposedEntries; + for (const auto& itemPath : itemPaths) { + exposedEntries << m_plugin->dbus()->pathToObject(itemPath)->backend(); + } + VERIFY(!exposedEntries.contains(entry)); + + // searching should not return the entry + DBUS_GET2(unlocked, locked, service->SearchItems({{"Title", entry->title()}})); + COMPARE(locked, {}); + COMPARE(unlocked, {}); +} + void TestGuiFdoSecrets::lockDatabaseInBackend() { - m_dbWidget->lock(); + m_tabWidget->lockDatabases(); m_db.reset(); processEvents(); } @@ -1644,7 +1767,8 @@ QSharedPointer TestGuiFdoSecrets::createItem(const QSharedPointer TestGuiFdoSecrets::createItem(const QSharedPointerPrompt("")); + + bool unlockFound = driveUnlockDialog(); + COMPARE(unlockFound, expectUnlockPrompt); + bool found = driveAccessControlDialog(); COMPARE(found, expectPrompt); @@ -1735,8 +1863,10 @@ bool TestGuiFdoSecrets::driveNewDatabaseWizard() COMPARE(wizard->currentId(), 2); // enter password - auto* passwordEdit = wizard->findChild("enterPasswordEdit"); - auto* passwordRepeatEdit = wizard->findChild("repeatPasswordEdit"); + auto* passwordEdit = + wizard->findChild("enterPasswordEdit")->findChild("passwordEdit"); + auto* passwordRepeatEdit = + wizard->findChild("repeatPasswordEdit")->findChild("passwordEdit"); VERIFY(passwordEdit); VERIFY(passwordRepeatEdit); QTest::keyClicks(passwordEdit, "test"); @@ -1749,6 +1879,8 @@ bool TestGuiFdoSecrets::driveNewDatabaseWizard() tmpFile.close(); fileDialog()->setNextFileName(tmpFile.fileName()); + // click Continue on the warning due to weak password + MessageBox::setNextAnswer(MessageBox::ContinueWithWeakPass); wizard->accept(); tmpFile.remove(); @@ -1759,12 +1891,17 @@ bool TestGuiFdoSecrets::driveNewDatabaseWizard() return ret; } -bool TestGuiFdoSecrets::driveUnlockDialog() +bool TestGuiFdoSecrets::driveUnlockDialog(DatabaseWidget* target) { processEvents(); auto dbOpenDlg = m_tabWidget->findChild(); VERIFY(dbOpenDlg); - auto editPassword = dbOpenDlg->findChild("editPassword"); + if (!dbOpenDlg->isVisible()) { + return false; + } + dbOpenDlg->setActiveDatabaseTab(target); + + auto editPassword = dbOpenDlg->findChild("editPassword")->findChild("passwordEdit"); VERIFY(editPassword); editPassword->setFocus(); QTest::keyClicks(editPassword, "a"); diff --git a/tests/gui/TestGuiFdoSecrets.h b/tests/gui/TestGuiFdoSecrets.h index 03f84adce..1624eed49 100644 --- a/tests/gui/TestGuiFdoSecrets.h +++ b/tests/gui/TestGuiFdoSecrets.h @@ -67,6 +67,7 @@ private slots: void testServiceEnableNoExposedDatabase(); void testServiceSearch(); void testServiceSearchBlockingUnlock(); + void testServiceSearchBlockingUnlockMultiple(); void testServiceSearchForce(); void testServiceUnlock(); void testServiceUnlockDatabaseConcurrent(); @@ -84,6 +85,7 @@ private slots: void testCollectionChange(); void testItemCreate(); + void testItemCreateUnlock(); void testItemChange(); void testItemReplace(); void testItemReplaceExistingLocked(); @@ -97,12 +99,13 @@ private slots: void testExposeSubgroup(); void testModifyingExposedGroup(); + void testNoExposeRecycleBin(); void testHiddenFilename(); void testDuplicateName(); private: - bool driveUnlockDialog(); + bool driveUnlockDialog(DatabaseWidget* target = nullptr); bool driveNewDatabaseWizard(); bool driveAccessControlDialog(bool remember = true, bool includeFutureEntries = false); bool waitForSignal(QSignalSpy& spy, int expectedCount); @@ -121,7 +124,8 @@ private: const QString& pass, const FdoSecrets::wire::StringStringMap& attr, bool replace, - bool expectPrompt = false); + bool expectPrompt = false, + bool expectUnlockPrompt = false); FdoSecrets::wire::Secret encryptPassword(QByteArray value, QString contentType, const QSharedPointer& sess); template QSharedPointer getProxy(const QDBusObjectPath& path) const diff --git a/tests/mock/MockRemoteProcess.cpp b/tests/mock/MockRemoteProcess.cpp new file mode 100644 index 000000000..fe1770932 --- /dev/null +++ b/tests/mock/MockRemoteProcess.cpp @@ -0,0 +1,67 @@ +/* + * Copyright (C) 2023 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 . + */ + +#include + +#include "MockRemoteProcess.h" + +MockRemoteProcess::MockRemoteProcess(QObject* parent, QString dbPath) + : RemoteProcess(parent) + , m_dbPath(std::move(dbPath)) +{ +} + +void MockRemoteProcess::start(const QString&) +{ + QFile::copy(m_dbPath, m_tempFileLocation); +} + +qint64 MockRemoteProcess::write(const QString& data) +{ + m_data.append(data.toUtf8()); + return data.length(); +} + +bool MockRemoteProcess::waitForBytesWritten() +{ + return true; +} + +void MockRemoteProcess::closeWriteChannel() +{ + // nothing to do +} + +bool MockRemoteProcess::waitForFinished(int) +{ + return true; // no need to wait +} + +int MockRemoteProcess::exitCode() const +{ + return 0; // always return success +} + +QString MockRemoteProcess::readOutput() +{ + return {}; +} + +QString MockRemoteProcess::readError() +{ + return {}; +} diff --git a/tests/mock/MockRemoteProcess.h b/tests/mock/MockRemoteProcess.h new file mode 100644 index 000000000..c39b50cdf --- /dev/null +++ b/tests/mock/MockRemoteProcess.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2023 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 . + */ + +#ifndef KEEPASSXC_MOCKREMOTEPROCESS_H +#define KEEPASSXC_MOCKREMOTEPROCESS_H + +#include "gui/remote/RemoteProcess.h" + +class MockRemoteProcess : public RemoteProcess +{ +public: + explicit MockRemoteProcess(QObject* parent, QString dbPath); + ~MockRemoteProcess() override = default; + + void start(const QString& program) override; + qint64 write(const QString& data) override; + bool waitForBytesWritten() override; + void closeWriteChannel() override; + bool waitForFinished(int msecs) override; + [[nodiscard]] int exitCode() const override; + virtual QString readOutput() override; + virtual QString readError() override; + +private: + QByteArray m_data; + QString m_dbPath; +}; + +#endif // KEEPASSXC_MOCKREMOTEPROCESS_H diff --git a/tests/modeltest.cpp b/tests/modeltest.cpp index 8f7c95484..abbe546fa 100644 --- a/tests/modeltest.cpp +++ b/tests/modeltest.cpp @@ -452,12 +452,12 @@ void ModelTest::data() } // General Purpose roles that should return a QColor - QVariant colorVariant = model->data ( model->index ( 0, 0 ), Qt::BackgroundColorRole ); + QVariant colorVariant = model->data ( model->index ( 0, 0 ), Qt::BackgroundRole ); if ( colorVariant.isValid() ) { QVERIFY( colorVariant.canConvert() ); } - colorVariant = model->data ( model->index ( 0, 0 ), Qt::TextColorRole ); + colorVariant = model->data ( model->index ( 0, 0 ), Qt::ForegroundRole ); if ( colorVariant.isValid() ) { QVERIFY( colorVariant.canConvert() ); } diff --git a/tests/util/TemporaryFile.cpp b/tests/util/TemporaryFile.cpp index 413f03305..987852097 100644 --- a/tests/util/TemporaryFile.cpp +++ b/tests/util/TemporaryFile.cpp @@ -17,6 +17,29 @@ #include "TemporaryFile.h" +#include +#include +#include + +namespace +{ + QPointer g_tempConfigFile; +} + +QString TemporaryFile::createTempConfigFile() +{ + if (!qApp) { + Q_ASSERT(false); + return {}; + } + if (g_tempConfigFile) { + delete g_tempConfigFile; + } + auto tmpFileName = QString("%1/%2_settings.XXXXXX").arg(QDir::tempPath(), QCoreApplication::applicationName()); + g_tempConfigFile = new TemporaryFile(tmpFileName, qApp); + return g_tempConfigFile->fileName(); +} + TemporaryFile::TemporaryFile() : TemporaryFile(nullptr) { diff --git a/tests/util/TemporaryFile.h b/tests/util/TemporaryFile.h index 3c1cc6aa0..3f1707fda 100644 --- a/tests/util/TemporaryFile.h +++ b/tests/util/TemporaryFile.h @@ -34,6 +34,8 @@ public: using QFile::open; bool open(); bool copyFromFile(const QString& otherFileName); + + static QString createTempConfigFile(); }; #endif // KEEPASSXC_TEMPORARYFILE_H diff --git a/docs/FuzzTest.md b/utils/fuzz-testing/README.md similarity index 89% rename from docs/FuzzTest.md rename to utils/fuzz-testing/README.md index 542999841..9f2c1fc27 100644 --- a/docs/FuzzTest.md +++ b/utils/fuzz-testing/README.md @@ -19,7 +19,7 @@ Optionally, build AFL from source: ## Building KeePassXC For Fuzzing -A special "instrumented build" is used that allows the fuzzer to look into the program as it executes. We place it in its own build directory so it doesn't confused with the production build. +A special "instrumented build" is used that allows the fuzzer to look into the program as it executes. We place it in its own build directory so it doesn't get confused with the production build. $ cd your_keepassxc_source_directory $ mkdir buildafl @@ -27,7 +27,7 @@ A special "instrumented build" is used that allows the fuzzer to look into the p $ CXX=afl-g++ AFL_HARDEN=1 cmake -DWITH_XC_ALL=ON .. $ make -In the source code, special behavior for fuzz testing can be implemented with `#ifdef __AFL_COMPILER`. For example, in fuzz builds, the KeePassXC CLI takes the database password from environment variable `KEYPASSXC_AFL_PASSWORD` to allow non-interactive operation. +In the source code, special behavior for fuzz testing can be implemented with `#ifdef __AFL_COMPILER`. For example, in fuzz builds, the KeePassXC CLI takes the database password from environment variable `KEEPASSXC_AFL_PASSWORD` to allow non-interactive operation. ## Prepare Fuzzer Input @@ -35,18 +35,18 @@ To get the fuzzer started, we provide empty password database files (the passwor $ cd buildafl $ mkdir -p findings/testcases - $ cp ../share/empty*.kdbx findings/testcases + $ cp ../utils/fuzz-testing/empty*.kdbx findings/testcases The fuzzer works by running KeePassXC with variations of this input, mutated in ways that make the program crash or hang. ## Run The Fuzzer $ cd buildafl - $ KEYPASSXC_AFL_PASSWORD=secret afl-fuzz -i findings/testcases -o findings -m 2000 -t 1000 src/cli/keepassxc-cli ls @@ + $ KEEPASSXC_AFL_PASSWORD=secret afl-fuzz -i findings/testcases -o findings -m 2000 -t 1000 src/cli/keepassxc-cli ls @@ This fuzz-tests the `ls` command of the KeePassXC CLI, which loads and decrypts a database file and then lists its contents. The parameters mean: -* `KEYPASSXC_AFL_PASSWORD=secret`: In fuzz test builds, the KeePassXC CLI takes the database password from this environment variable. +* `KEEPASSXC_AFL_PASSWORD=secret`: In fuzz test builds, the KeePassXC CLI takes the database password from this environment variable. * `-i findings/testcases`: The directory which contains the initial fuzzer input. * `-o findings`: The directory in which to store fuzzer results. * `-m 2000`: Fuzzer memory (in megabytes). Adjust as required if the fuzzer fails to start up. diff --git a/share/empty3.kdbx b/utils/fuzz-testing/empty3.kdbx similarity index 100% rename from share/empty3.kdbx rename to utils/fuzz-testing/empty3.kdbx diff --git a/share/empty4.kdbx b/utils/fuzz-testing/empty4.kdbx similarity index 100% rename from share/empty4.kdbx rename to utils/fuzz-testing/empty4.kdbx diff --git a/utils/keepassxc-cr-recovery/go.mod b/utils/keepassxc-cr-recovery/go.mod index 89afe5e32..765244484 100644 --- a/utils/keepassxc-cr-recovery/go.mod +++ b/utils/keepassxc-cr-recovery/go.mod @@ -2,4 +2,4 @@ module github.com/keepassxreboot/keepassxc/keepassxc-cr-recovery go 1.13 -require golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 +require golang.org/x/crypto v0.31.0 diff --git a/utils/keepassxc-cr-recovery/go.sum b/utils/keepassxc-cr-recovery/go.sum index 452e5b0ad..4d67b17ea 100644 --- a/utils/keepassxc-cr-recovery/go.sum +++ b/utils/keepassxc-cr-recovery/go.sum @@ -1,8 +1,67 @@ +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 h1:sKJQZMuxjOAR/Uo2LBfU90onWEf1dF4C+0hPJCc9Mpc= -golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= +golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= +golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= +golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY= +golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= +golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/utils/keepassxc-flatpak-wrapper.sh b/utils/keepassxc-flatpak-wrapper.sh index 042acfb27..50b6360bd 100755 --- a/utils/keepassxc-flatpak-wrapper.sh +++ b/utils/keepassxc-flatpak-wrapper.sh @@ -23,26 +23,18 @@ # For format of parsed arguments, see "Connection-based messaging" at: # https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/Native_messaging -readonly appId='org.keepassxc.KeePassXC' # Chromium, Google Chrome, Vivaldi & Brave readonly arg1='chrome-extension://oboonakemofpalcgghocfoadofidjkkk' # Firefox & Tor Browser readonly arg2='keepassxc-browser@keepassxc.org' -# Browser integration is enabled if unix socket exists -if [[ -S "${XDG_RUNTIME_DIR}/app/${appId}/${appId}.BrowserServer" ]]; then - # Using the =~ operator is intended to allow small variations - # in the parameters, like and ending slash. - # shellcheck disable=2076 - if [[ "$1" =~ "${arg1}" ]] || [[ "$2" =~ "${arg2}" ]]; then - exec keepassxc-proxy "$@" - fi -fi - -# If the first argument is "cli", execute keepassxc-cli instead. -if [[ "$1" == "cli" ]]; then +# Check arguments to see if this was a proxy launch from the browser +# Use =~ to account for minor variations in the chrome extension +if [[ "$1" =~ "$arg1" || "$2" == "$arg2" ]]; then + exec keepassxc-proxy "$@" +elif [[ "$1" == "cli" ]]; then exec keepassxc-cli "${@:2}" +else + # If no arguments are matched or browser integration is off, execute keepassxc + exec keepassxc "$@" fi - -# If no arguments are matched or browser integration is off, execute keepassxc -exec keepassxc "$@" diff --git a/utils/keepassxc-keychain b/utils/keepassxc-keychain index 5a6093bdb..e671c5699 100755 --- a/utils/keepassxc-keychain +++ b/utils/keepassxc-keychain @@ -5,7 +5,7 @@ : ${KDBX_SEARCH:=~/.KeePass/*.kdbx} PROG=$(basename "$0") -KeePassXC=$(ls -f {/usr/local,/Applications}/KeePassXC.app/Contents/MacOS/KeePassXC 2>/dev/null | head -1) +KeePassXC=$(ls -f {/usr/local,/opt/homebrew,/Applications}/KeePassXC.app/Contents/MacOS/KeePassXC 2>/dev/null | head -1) daemon_main() { declare -A DBs diff --git a/utils/keepassxc-snap-helper.sh b/utils/keepassxc-snap-helper.sh index fac546212..82b8acba1 100755 --- a/utils/keepassxc-snap-helper.sh +++ b/utils/keepassxc-snap-helper.sh @@ -59,17 +59,7 @@ JSON_CHROME=$(cat << EOF EOF ) -askBrowserSnap() { - if (whiptail --title "Snap Choice" --defaultno \ - --yesno "Is this browser installed as a snap (usually NO)?" 8 60); then - # BASE_DIR="$1" - whiptail --title "Snap Choice" --msgbox "Sorry, browsers installed as snaps are not supported at this time" 8 50 - exit 0 - fi -} - setupFirefox() { - askBrowserSnap "./snap/firefox/common" JSON_OUT=${JSON_FIREFOX} INSTALL_DIR="${BASE_DIR}/.mozilla/native-messaging-hosts" } @@ -80,7 +70,6 @@ setupChrome() { } setupChromium() { - askBrowserSnap "./snap/chromium/current" JSON_OUT=${JSON_CHROME} INSTALL_DIR="${BASE_DIR}/.config/chromium/NativeMessagingHosts" } @@ -105,6 +94,11 @@ setupEdge() { INSTALL_DIR="${BASE_DIR}/.config/microsoft-edge/NativeMessagingHosts" } +setupLibreWolf() { + JSON_OUT=${JSON_FIREFOX} + INSTALL_DIR="${BASE_DIR}/.librewolf/native-messaging-hosts" +} + # -------------------------------- # Start of script # -------------------------------- @@ -120,11 +114,13 @@ BROWSER=$(whiptail \ "5" "Brave" \ "6" "Tor Browser" \ "7" "Microsoft Edge" \ + "8" "LibreWolf" \ 3>&1 1>&2 2>&3) +exitstatus=$? + clear -exitstatus=$? if [[ $exitstatus == 0 ]]; then # Configure settings for the chosen browser case $BROWSER in @@ -135,6 +131,7 @@ if [[ $exitstatus == 0 ]]; then 5) setupBrave ;; 6) setupTorBrowser ;; 7) setupEdge ;; + 8) setupLibreWolf ;; esac # Install the JSON file diff --git a/utils/transifex_translators.py b/utils/transifex_translators.py index a79553a9d..9170f04ba 100644 --- a/utils/transifex_translators.py +++ b/utils/transifex_translators.py @@ -25,7 +25,7 @@ LANGS = { "he" : "עברית (Hebrew)", "hr_HR" : "hrvatski jezik (Croatian)", "hu" : "magyar (Hungarian)", - "id" : "Bahasa (Indonesian)", + "id" : "Bahasa Indonesia (Indonesian)", "is_IS" : "Íslenska (Icelandic)", "it" : "Italiano (Italian)", "ja" : "日本語 (Japanese)", diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json new file mode 100644 index 000000000..1d21b2694 --- /dev/null +++ b/vcpkg-configuration.json @@ -0,0 +1,6 @@ +{ + "overlay-ports": [], + "overlay-triplets": [ + "vcpkg/triplets" + ] +} diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 000000000..baa40686c --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,81 @@ +{ + "name": "keepassxc", + "version-string": "2.8.0", + "builtin-baseline": "2a6371b01420d8820d158b4707e79931feba27aa", + "dependencies": [ + { + "name": "argon2", + "version>=": "20190702" + }, + { + "name": "botan", + "version>=": "3.1.1" + }, + { + "name": "minizip", + "version>=": "1.3" + }, + { + "name": "libqrencode", + "version>=": "4.1.1" + }, + { + "name": "libusb", + "version>=": "1.0.26.11791", + "platform": "linux | freebsd" + }, + { + "name": "libxi", + "version>=": "1.8", + "platform": "linux | freebsd" + }, + { + "name": "libxtst", + "version>=": "1.2.4", + "platform": "linux | freebsd" + }, + { + "name": "qt5", + "version>=": "5.15.11" + }, + { + "name": "qt5-imageformats", + "version>=": "5.15.11" + }, + { + "name": "qt5-macextras", + "version>=": "5.15.11", + "platform": "osx" + }, + { + "name": "qt5-svg", + "version>=": "5.15.11" + }, + { + "name": "qt5-tools", + "version>=": "5.15.11" + }, + { + "name": "qt5-translations", + "version>=": "5.15.11" + }, + { + "name": "qt5-wayland", + "version>=": "5.15.11", + "platform": "linux | freebsd" + }, + { + "name": "qt5-x11extras", + "version>=": "5.15.11", + "platform": "linux | freebsd" + }, + { + "name": "readline", + "version>=": "0#5" + }, + { + "name": "zlib", + "version>=": "1.3" + } + ] +} diff --git a/vcpkg/triplets/arm64-osx-dynamic-release.cmake b/vcpkg/triplets/arm64-osx-dynamic-release.cmake new file mode 100644 index 000000000..44637b2d9 --- /dev/null +++ b/vcpkg/triplets/arm64-osx-dynamic-release.cmake @@ -0,0 +1,9 @@ +set(VCPKG_TARGET_ARCHITECTURE arm64) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE dynamic) + +set(VCPKG_CMAKE_SYSTEM_NAME Darwin) +set(VCPKG_OSX_ARCHITECTURES arm64) + +set(VCPKG_BUILD_TYPE release) +set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0) diff --git a/vcpkg/triplets/arm64-osx-dynamic.cmake b/vcpkg/triplets/arm64-osx-dynamic.cmake new file mode 100644 index 000000000..429519b84 --- /dev/null +++ b/vcpkg/triplets/arm64-osx-dynamic.cmake @@ -0,0 +1,8 @@ +set(VCPKG_TARGET_ARCHITECTURE arm64) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE dynamic) + +set(VCPKG_CMAKE_SYSTEM_NAME Darwin) +set(VCPKG_OSX_ARCHITECTURES arm64) + +set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0) diff --git a/vcpkg/triplets/x64-osx-dynamic-release.cmake b/vcpkg/triplets/x64-osx-dynamic-release.cmake new file mode 100644 index 000000000..e3259a690 --- /dev/null +++ b/vcpkg/triplets/x64-osx-dynamic-release.cmake @@ -0,0 +1,9 @@ +set(VCPKG_TARGET_ARCHITECTURE x64) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE dynamic) + +set(VCPKG_CMAKE_SYSTEM_NAME Darwin) +set(VCPKG_OSX_ARCHITECTURES x86_64) + +set(VCPKG_BUILD_TYPE release) +set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15) diff --git a/vcpkg/triplets/x64-osx-dynamic.cmake b/vcpkg/triplets/x64-osx-dynamic.cmake new file mode 100644 index 000000000..01ce0307b --- /dev/null +++ b/vcpkg/triplets/x64-osx-dynamic.cmake @@ -0,0 +1,8 @@ +set(VCPKG_TARGET_ARCHITECTURE x64) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE dynamic) + +set(VCPKG_CMAKE_SYSTEM_NAME Darwin) +set(VCPKG_OSX_ARCHITECTURES x86_64) + +set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15)